From 54f074924dae35df02b8717afbb8fb242713badf Mon Sep 17 00:00:00 2001 From: abu14 Date: Tue, 21 Jan 2025 17:14:25 +0300 Subject: [PATCH 1/3] Done editing the clean tweets file --- ..._dataframe.py => clean_tweets_dataframe.py | 38 +++++++++++++------ eda.ipynb | 0 ...tract_dataframe.py => extract_dataframe.py | 0 3 files changed, 26 insertions(+), 12 deletions(-) rename fix_clean_tweets_dataframe.py => clean_tweets_dataframe.py (60%) create mode 100644 eda.ipynb rename fix_extract_dataframe.py => extract_dataframe.py (100%) diff --git a/fix_clean_tweets_dataframe.py b/clean_tweets_dataframe.py similarity index 60% rename from fix_clean_tweets_dataframe.py rename to clean_tweets_dataframe.py index 7b45a35..f5ebcc5 100644 --- a/fix_clean_tweets_dataframe.py +++ b/clean_tweets_dataframe.py @@ -15,22 +15,33 @@ def drop_unwanted_column(self, df:pd.DataFrame)->pd.DataFrame: df.drop(unwanted_rows , inplace=True) df = df[df['polarity'] != 'polarity'] - return df + return + + + def drop_duplicate(self, df:pd.DataFrame)->pd.DataFrame: """ - drop duplicate rows + drop duplicate rows from the DataFrame + + Parameters + df (pd.DataFrame): Dataframe from which to remove duplicates + + Returns: + pd.DataFrame: A Dataframe with duplicates remofved """ - --- + df = df.drop_duplicates(keep='first',inplace=False) + + print("Duplicate rows removed from the DataFrame.") return df + + def convert_to_datetime(self, df:pd.DataFrame)->pd.DataFrame: """ convert column to datetime """ - ---- - - ---- + df['created_at'] = pd.to_datetime(df['created_at']) df = df[df['created_at'] >= '2020-12-31' ] @@ -41,18 +52,21 @@ def convert_to_numbers(self, df:pd.DataFrame)->pd.DataFrame: convert columns like polarity, subjectivity, retweet_count favorite_count etc to numbers """ - df['polarity'] = pd.---- - - ---- - ---- + df['polarity'] = pd.to_numeric(df['polarity']) + df['subjectivity'] = pd.to_numeric(df['subjectivity']) + df['retweet_count'] = pd.to_numeric(df['retweet_count']) + df['favorite_count'] = pd.to_numeric(df['favorite_count']) + df['retweet_count'] = pd.to_numeric(df['retweet_count']) + #df['followers_count'] = pd.to_numeric(df['followers_count']) return df - + + def remove_non_english_tweets(self, df:pd.DataFrame)->pd.DataFrame: """ remove non english tweets from lang """ - df = ---- + df = pd.drop(df[df['lang'] == 'en']) return df \ No newline at end of file diff --git a/eda.ipynb b/eda.ipynb new file mode 100644 index 0000000..e69de29 diff --git a/fix_extract_dataframe.py b/extract_dataframe.py similarity index 100% rename from fix_extract_dataframe.py rename to extract_dataframe.py From 20c86cfa3c48711887faaf7a4a98f2b871e938f9 Mon Sep 17 00:00:00 2001 From: abu14 Date: Tue, 21 Jan 2025 17:33:16 +0300 Subject: [PATCH 2/3] Final Commit for name editing ranch --- extract_dataframe.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/extract_dataframe.py b/extract_dataframe.py index 3bd792d..51449bf 100644 --- a/extract_dataframe.py +++ b/extract_dataframe.py @@ -39,7 +39,11 @@ def find_statuses_count(self)->list: statuses_count def find_full_text(self)->list: - text = + """ + This funciton gets the entire text f rom the tweet strings + """ + text = full_text + return text def find_sentiments(self, text)->list: @@ -47,8 +51,14 @@ def find_sentiments(self, text)->list: return polarity, self.subjectivity def find_created_time(self)->list: + created_at = [] + for items in self.tweets_list: + created_at.append(items.get('craeted_at',None)) return created_at + + + def find_source(self)->list: source = From 2795037100b43aadcd284bf697566a8ed91a4ac3 Mon Sep 17 00:00:00 2001 From: abu14 Date: Wed, 22 Jan 2025 20:11:54 +0300 Subject: [PATCH 3/3] pull request and merge unit testing file --- clean_tweets_dataframe.py | 4 +- eda.ipynb | 2216 +++++++++++++++++++++++++++++++ extract_dataframe.py | 102 +- tests/test_df_twitter.json | 1 + tests/test_extract_dataframe.py | 31 +- 5 files changed, 2316 insertions(+), 38 deletions(-) create mode 100644 tests/test_df_twitter.json diff --git a/clean_tweets_dataframe.py b/clean_tweets_dataframe.py index f5ebcc5..88caa9d 100644 --- a/clean_tweets_dataframe.py +++ b/clean_tweets_dataframe.py @@ -1,3 +1,5 @@ +import pandas as pd + class Clean_Tweets: """ The PEP8 Standard AMAZING!!! @@ -57,7 +59,7 @@ def convert_to_numbers(self, df:pd.DataFrame)->pd.DataFrame: df['retweet_count'] = pd.to_numeric(df['retweet_count']) df['favorite_count'] = pd.to_numeric(df['favorite_count']) df['retweet_count'] = pd.to_numeric(df['retweet_count']) - #df['followers_count'] = pd.to_numeric(df['followers_count']) + df['followers_count'] = pd.to_numeric(df['followers_count']) return df diff --git a/eda.ipynb b/eda.ipynb index e69de29..19ce1f8 100644 --- a/eda.ipynb +++ b/eda.ipynb @@ -0,0 +1,2216 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd \n", + "import numpy as np \n", + "import extract_dataframe\n", + "import clean_tweets_dataframe\n", + "#from extract_dataframe import *\n", + "#from clean_tweets_dataframe import * \n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
created_atidid_strfull_texttruncateddisplay_text_rangeentitiesmetadatasourcein_reply_to_status_id...retweet_countfavorite_countfavoritedretweetedlangextended_entitiespossibly_sensitivequoted_status_idquoted_status_id_strquoted_status
02022-08-03 20:19:13+00:0015549248741661491201554924874166149120#Pelosi airplane landed safely in #Taiwan 🇹🇼 ...False[0, 222]{'hashtags': [{'text': 'Pelosi', 'indices': [0...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...00FalseFalseenNaNNaNNaNNaNNaN
12022-08-02 15:24:42+00:0015544883683476807711554488368347680768Watch the video of the beginning of the Chines...False[0, 250]{'hashtags': [{'text': 'Pelosi', 'indices': [1...{'iso_language_code': 'en', 'result_type': 're...<a href=\"https://mobile.twitter.com\" rel=\"nofo...NaN...03FalseFalseen{'media': [{'id': 1554487694776012800, 'id_str...0.0NaNNaNNaN
22022-08-02 15:02:35+00:0015544828025021276211554482802502127616#Pelosi \\n#Taipei \\n#taiwan\\n#XiJinping \\n#Chi...False[0, 71]{'hashtags': [{'text': 'Pelosi', 'indices': [0...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...02FalseFalseen{'media': [{'id': 1554482776140906497, 'id_str...0.0NaNNaNNaN
32022-08-01 13:51:42+00:0015541025736359321601554102573635932160#HOBIPALOOZA #LaAcademiaExpulsion #WEURO2022 #...False[0, 146]{'hashtags': [{'text': 'HOBIPALOOZA', 'indices...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...00FalseFalseen{'media': [{'id': 1554102566010732544, 'id_str...0.0NaNNaNNaN
42022-07-31 20:02:20+00:0015538334594409103381553833459440910336#Pelosi\\n#china\\nChina Time ✌️ https://t.co/tE...False[0, 28]{'hashtags': [{'text': 'Pelosi', 'indices': [0...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...02FalseFalseen{'media': [{'id': 1553833456853045256, 'id_str...0.0NaNNaNNaN
\n", + "

5 rows × 30 columns

\n", + "
" + ], + "text/plain": [ + " created_at id id_str \\\n", + "0 2022-08-03 20:19:13+00:00 1554924874166149120 1554924874166149120 \n", + "1 2022-08-02 15:24:42+00:00 1554488368347680771 1554488368347680768 \n", + "2 2022-08-02 15:02:35+00:00 1554482802502127621 1554482802502127616 \n", + "3 2022-08-01 13:51:42+00:00 1554102573635932160 1554102573635932160 \n", + "4 2022-07-31 20:02:20+00:00 1553833459440910338 1553833459440910336 \n", + "\n", + " full_text truncated \\\n", + "0 #Pelosi airplane landed safely in #Taiwan 🇹🇼 ... False \n", + "1 Watch the video of the beginning of the Chines... False \n", + "2 #Pelosi \\n#Taipei \\n#taiwan\\n#XiJinping \\n#Chi... False \n", + "3 #HOBIPALOOZA #LaAcademiaExpulsion #WEURO2022 #... False \n", + "4 #Pelosi\\n#china\\nChina Time ✌️ https://t.co/tE... False \n", + "\n", + " display_text_range entities \\\n", + "0 [0, 222] {'hashtags': [{'text': 'Pelosi', 'indices': [0... \n", + "1 [0, 250] {'hashtags': [{'text': 'Pelosi', 'indices': [1... \n", + "2 [0, 71] {'hashtags': [{'text': 'Pelosi', 'indices': [0... \n", + "3 [0, 146] {'hashtags': [{'text': 'HOBIPALOOZA', 'indices... \n", + "4 [0, 28] {'hashtags': [{'text': 'Pelosi', 'indices': [0... \n", + "\n", + " metadata \\\n", + "0 {'iso_language_code': 'en', 'result_type': 're... \n", + "1 {'iso_language_code': 'en', 'result_type': 're... \n", + "2 {'iso_language_code': 'en', 'result_type': 're... \n", + "3 {'iso_language_code': 'en', 'result_type': 're... \n", + "4 {'iso_language_code': 'en', 'result_type': 're... \n", + "\n", + " source in_reply_to_status_id \\\n", + "0 Twitter for Android',\n", + " 'Twitter Web App',\n", + " 'Twitter for Android',\n", + " 'Twitter for Android',\n", + " 'Twitter for Android']" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(df_twitter['source'].head())" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "def find_screen_name_test(self)->list:\n", + " screen_name = []\n", + " for items in self:\n", + " screen_name.append(items['user']['screen_name'])\n", + " return screen_name" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "ename": "TypeError", + "evalue": "string indices must be integers, not 'str'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[1;32mIn[24], line 4\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mextract_dataframe\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m TweetDfExtractor\n\u001b[0;32m 3\u001b[0m twiiter_sample \u001b[38;5;241m=\u001b[39m TweetDfExtractor(df_twitter)\n\u001b[1;32m----> 4\u001b[0m screenames_t \u001b[38;5;241m=\u001b[39m \u001b[43mtwiiter_sample\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfind_screen_name\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[1;32mc:\\Users\\Dell\\Twitter-Data-Analysis-Template\\extract_dataframe.py:103\u001b[0m, in \u001b[0;36mTweetDfExtractor.find_screen_name\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 101\u001b[0m screen_name \u001b[38;5;241m=\u001b[39m []\n\u001b[0;32m 102\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m items \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtweets_list:\n\u001b[1;32m--> 103\u001b[0m screen_name\u001b[38;5;241m.\u001b[39mappend(\u001b[43mitems\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43muser\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mscreen_name\u001b[39m\u001b[38;5;124m'\u001b[39m])\n\u001b[0;32m 104\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m screen_name\n", + "\u001b[1;31mTypeError\u001b[0m: string indices must be integers, not 'str'" + ] + } + ], + "source": [ + "from extract_dataframe import TweetDfExtractor\n", + "\n", + "twiiter_sample = TweetDfExtractor(df_twitter)\n", + "screenames_t = twiiter_sample.find_screen_name()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['DzCritical', 'toopsat', 'NassimaLilEmy', 'd_dhayae', 'Mohamme65404115']" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_twitter_sample = df_twitter['user'].apply(lambda x: x['screen_name'])\n", + "\n", + "list(df_twitter_sample.head())" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[318, 764, 64, 60, 39]" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_twitter_sample = df_twitter['user'].apply(lambda x: x['followers_count'])\n", + "\n", + "list(df_twitter_sample.head())" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[373, 144, 47, 463, 206]" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_twitter_sample = df_twitter['user'].apply(lambda x: x['friends_count'])\n", + "\n", + "list(df_twitter_sample.head())" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[Timestamp('2022-08-03 20:19:13+0000', tz='UTC'),\n", + " Timestamp('2022-08-02 15:24:42+0000', tz='UTC'),\n", + " Timestamp('2022-08-02 15:02:35+0000', tz='UTC'),\n", + " Timestamp('2022-08-01 13:51:42+0000', tz='UTC'),\n", + " Timestamp('2022-07-31 20:02:20+0000', tz='UTC')]" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(df_twitter['created_at'].head())" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[888, 1597, 2293, 44, 1313]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_twitter_sample = df_twitter['user'].apply(lambda x: x['statuses_count'])\n", + "\n", + "list(df_twitter_sample.head())" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[nan, 0.0, 0.0, 0.0, 0.0]" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(df_twitter['possibly_sensitive'].head())" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "\n", + "test_df_twitter = df_twitter.to_json()\n", + "\n", + "with open ('tests/test_df_twitter.json','w',encoding='utf-8') as f:\n", + " json.dump(test_df_twitter,f, ensure_ascii=False, indent=4)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Twitter for Android',\n", + " 'Twitter Web App',\n", + " 'Twitter for iPhone',\n", + " 'notice.com.ng',\n", + " 'IFTTT',\n", + " 'BobojayTV News',\n", + " 'Twitter for iPad',\n", + " 'WordPress.com',\n", + " 'dlvr.it',\n", + " 'Instagram',\n", + " 'TweetDeck',\n", + " 'Jokoshq',\n", + " 'Buffer',\n", + " 'Hootsuite Inc.',\n", + " 'Periscope',\n", + " 'Albatross for Twitter',\n", + " 'Blog2Social APP',\n", + " 'erased25052531_ogxIxCF7zJ',\n", + " 'erased25047992_VmR4Zfuw1q',\n", + " 'Twitter Ads'],\n", + " dtype=object)" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_twitter['source'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
created_atidid_strtexttruncatedentitiessourcein_reply_to_status_idin_reply_to_status_id_strin_reply_to_user_id...retweet_countfavorite_countfavoritedretweetedlangextended_entitiespossibly_sensitivequoted_status_idquoted_status_id_strquoted_status
02022-04-22 22:20:18+00:0015176293965757849611517629396575784960RT @nikitheblogger: Irre: Annalena Baerbock sa...False{'hashtags': [], 'symbols': [], 'user_mentions...<a href=\"http://twitter.com/download/android\" ...NaNNaNNaN...3550FalseFalsedeNaNNaNNaNNaNNaN
12022-04-22 22:19:16+00:0015176291340123996161517629134012399616RT @sagt_mit: Merkel schaffte es in 1 Jahr 1 M...False{'hashtags': [], 'symbols': [], 'user_mentions...<a href=\"http://twitter.com/download/android\" ...NaNNaNNaN...5050FalseFalsedeNaNNaNNaNNaNNaN
22022-04-22 22:17:28+00:0015176286826591068221517628682659106816RT @Kryptonoun: @WRi007 Pharma in Lebensmittel...False{'hashtags': [], 'symbols': [], 'user_mentions...<a href=\"http://twitter.com/download/android\" ...NaNNaNNaN...40FalseFalsedeNaNNaNNaNNaNNaN
32022-04-22 22:17:20+00:0015176286478925619241517628647892561920RT @WRi007: Die #Deutschen sind ein braves Vol...False{'hashtags': [{'text': 'Deutschen', 'indices':...<a href=\"http://twitter.com/download/android\" ...NaNNaNNaN...3320FalseFalsedeNaNNaNNaNNaNNaN
42022-04-22 22:13:15+00:0015176276211352371271517627621135237120RT @RolandTichy: Baerbock verkündet mal so neb...False{'hashtags': [], 'symbols': [], 'user_mentions...<a href=\"http://twitter.com/download/android\" ...NaNNaNNaN...3860FalseFalsedeNaNNaNNaNNaNNaN
\n", + "

5 rows × 29 columns

\n", + "
" + ], + "text/plain": [ + " created_at id id_str \\\n", + "0 2022-04-22 22:20:18+00:00 1517629396575784961 1517629396575784960 \n", + "1 2022-04-22 22:19:16+00:00 1517629134012399616 1517629134012399616 \n", + "2 2022-04-22 22:17:28+00:00 1517628682659106822 1517628682659106816 \n", + "3 2022-04-22 22:17:20+00:00 1517628647892561924 1517628647892561920 \n", + "4 2022-04-22 22:13:15+00:00 1517627621135237127 1517627621135237120 \n", + "\n", + " text truncated \\\n", + "0 RT @nikitheblogger: Irre: Annalena Baerbock sa... False \n", + "1 RT @sagt_mit: Merkel schaffte es in 1 Jahr 1 M... False \n", + "2 RT @Kryptonoun: @WRi007 Pharma in Lebensmittel... False \n", + "3 RT @WRi007: Die #Deutschen sind ein braves Vol... False \n", + "4 RT @RolandTichy: Baerbock verkündet mal so neb... False \n", + "\n", + " entities \\\n", + "0 {'hashtags': [], 'symbols': [], 'user_mentions... \n", + "1 {'hashtags': [], 'symbols': [], 'user_mentions... \n", + "2 {'hashtags': [], 'symbols': [], 'user_mentions... \n", + "3 {'hashtags': [{'text': 'Deutschen', 'indices':... \n", + "4 {'hashtags': [], 'symbols': [], 'user_mentions... \n", + "\n", + " source in_reply_to_status_id \\\n", + "0 \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0
0created_at
1id
2id_str
3text
4truncated
5entities
6source
7in_reply_to_status_id
8in_reply_to_status_id_str
9in_reply_to_user_id
10in_reply_to_user_id_str
11in_reply_to_screen_name
12user
13geo
14coordinates
15place
16contributors
17retweeted_status
18is_quote_status
19retweet_count
20favorite_count
21favorited
22retweeted
23lang
24extended_entities
25possibly_sensitive
26quoted_status_id
27quoted_status_id_str
28quoted_status
\n", + "" + ], + "text/plain": [ + " 0\n", + "0 created_at\n", + "1 id\n", + "2 id_str\n", + "3 text\n", + "4 truncated\n", + "5 entities\n", + "6 source\n", + "7 in_reply_to_status_id\n", + "8 in_reply_to_status_id_str\n", + "9 in_reply_to_user_id\n", + "10 in_reply_to_user_id_str\n", + "11 in_reply_to_screen_name\n", + "12 user\n", + "13 geo\n", + "14 coordinates\n", + "15 place\n", + "16 contributors\n", + "17 retweeted_status\n", + "18 is_quote_status\n", + "19 retweet_count\n", + "20 favorite_count\n", + "21 favorited\n", + "22 retweeted\n", + "23 lang\n", + "24 extended_entities\n", + "25 possibly_sensitive\n", + "26 quoted_status_id\n", + "27 quoted_status_id_str\n", + "28 quoted_status" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.DataFrame(df_africa.columns)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012
created_at2022-04-22 22:20:18+00:002022-04-22 22:19:16+00:002022-04-22 22:17:28+00:00
id151762939657578496115176291340123996161517628682659106822
id_str151762939657578496015176291340123996161517628682659106816
textRT @nikitheblogger: Irre: Annalena Baerbock sa...RT @sagt_mit: Merkel schaffte es in 1 Jahr 1 M...RT @Kryptonoun: @WRi007 Pharma in Lebensmittel...
truncatedFalseFalseFalse
entities{'hashtags': [], 'symbols': [], 'user_mentions...{'hashtags': [], 'symbols': [], 'user_mentions...{'hashtags': [], 'symbols': [], 'user_mentions...
source<a href=\"http://twitter.com/download/android\" ...<a href=\"http://twitter.com/download/android\" ...<a href=\"http://twitter.com/download/android\" ...
in_reply_to_status_idNaNNaNNaN
in_reply_to_status_id_strNaNNaNNaN
in_reply_to_user_idNaNNaNNaN
in_reply_to_user_id_strNaNNaNNaN
in_reply_to_screen_nameNoneNoneNone
user{'id': 1487174445248692233, 'id_str': '1487174...{'id': 1487174445248692233, 'id_str': '1487174...{'id': 1487174445248692233, 'id_str': '1487174...
geoNaNNaNNaN
coordinatesNaNNaNNaN
placeNoneNoneNone
contributorsNaNNaNNaN
retweeted_status{'created_at': 'Fri Apr 22 14:38:54 +0000 2022...{'created_at': 'Thu Apr 21 15:44:41 +0000 2022...{'created_at': 'Thu Apr 21 09:46:16 +0000 2022...
is_quote_statusFalseFalseFalse
retweet_count3555054
favorite_count000
favoritedFalseFalseFalse
retweetedFalseFalseFalse
langdedede
extended_entitiesNaNNaNNaN
possibly_sensitiveNaNNaNNaN
quoted_status_idNaNNaNNaN
quoted_status_id_strNaNNaNNaN
quoted_statusNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " 0 \\\n", + "created_at 2022-04-22 22:20:18+00:00 \n", + "id 1517629396575784961 \n", + "id_str 1517629396575784960 \n", + "text RT @nikitheblogger: Irre: Annalena Baerbock sa... \n", + "truncated False \n", + "entities {'hashtags': [], 'symbols': [], 'user_mentions... \n", + "source
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
created_atidid_strfull_texttruncateddisplay_text_rangeentitiesmetadatasourcein_reply_to_status_id...retweet_countfavorite_countfavoritedretweetedlangextended_entitiespossibly_sensitivequoted_status_idquoted_status_id_strquoted_status
02022-08-03 20:19:13+00:0015549248741661491201554924874166149120#Pelosi airplane landed safely in #Taiwan 🇹🇼 ...False[0, 222]{'hashtags': [{'text': 'Pelosi', 'indices': [0...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...00FalseFalseenNaNNaNNaNNaNNaN
12022-08-02 15:24:42+00:0015544883683476807711554488368347680768Watch the video of the beginning of the Chines...False[0, 250]{'hashtags': [{'text': 'Pelosi', 'indices': [1...{'iso_language_code': 'en', 'result_type': 're...<a href=\"https://mobile.twitter.com\" rel=\"nofo...NaN...03FalseFalseen{'media': [{'id': 1554487694776012800, 'id_str...0.0NaNNaNNaN
22022-08-02 15:02:35+00:0015544828025021276211554482802502127616#Pelosi \\n#Taipei \\n#taiwan\\n#XiJinping \\n#Chi...False[0, 71]{'hashtags': [{'text': 'Pelosi', 'indices': [0...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...02FalseFalseen{'media': [{'id': 1554482776140906497, 'id_str...0.0NaNNaNNaN
32022-08-01 13:51:42+00:0015541025736359321601554102573635932160#HOBIPALOOZA #LaAcademiaExpulsion #WEURO2022 #...False[0, 146]{'hashtags': [{'text': 'HOBIPALOOZA', 'indices...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...00FalseFalseen{'media': [{'id': 1554102566010732544, 'id_str...0.0NaNNaNNaN
42022-07-31 20:02:20+00:0015538334594409103381553833459440910336#Pelosi\\n#china\\nChina Time ✌️ https://t.co/tE...False[0, 28]{'hashtags': [{'text': 'Pelosi', 'indices': [0...{'iso_language_code': 'en', 'result_type': 're...<a href=\"http://twitter.com/download/android\" ...NaN...02FalseFalseen{'media': [{'id': 1553833456853045256, 'id_str...0.0NaNNaNNaN
\n", + "

5 rows × 30 columns

\n", + "" + ], + "text/plain": [ + " created_at id id_str \\\n", + "0 2022-08-03 20:19:13+00:00 1554924874166149120 1554924874166149120 \n", + "1 2022-08-02 15:24:42+00:00 1554488368347680771 1554488368347680768 \n", + "2 2022-08-02 15:02:35+00:00 1554482802502127621 1554482802502127616 \n", + "3 2022-08-01 13:51:42+00:00 1554102573635932160 1554102573635932160 \n", + "4 2022-07-31 20:02:20+00:00 1553833459440910338 1553833459440910336 \n", + "\n", + " full_text truncated \\\n", + "0 #Pelosi airplane landed safely in #Taiwan 🇹🇼 ... False \n", + "1 Watch the video of the beginning of the Chines... False \n", + "2 #Pelosi \\n#Taipei \\n#taiwan\\n#XiJinping \\n#Chi... False \n", + "3 #HOBIPALOOZA #LaAcademiaExpulsion #WEURO2022 #... False \n", + "4 #Pelosi\\n#china\\nChina Time ✌️ https://t.co/tE... False \n", + "\n", + " display_text_range entities \\\n", + "0 [0, 222] {'hashtags': [{'text': 'Pelosi', 'indices': [0... \n", + "1 [0, 250] {'hashtags': [{'text': 'Pelosi', 'indices': [1... \n", + "2 [0, 71] {'hashtags': [{'text': 'Pelosi', 'indices': [0... \n", + "3 [0, 146] {'hashtags': [{'text': 'HOBIPALOOZA', 'indices... \n", + "4 [0, 28] {'hashtags': [{'text': 'Pelosi', 'indices': [0... \n", + "\n", + " metadata \\\n", + "0 {'iso_language_code': 'en', 'result_type': 're... \n", + "1 {'iso_language_code': 'en', 'result_type': 're... \n", + "2 {'iso_language_code': 'en', 'result_type': 're... \n", + "3 {'iso_language_code': 'en', 'result_type': 're... \n", + "4 {'iso_language_code': 'en', 'result_type': 're... \n", + "\n", + " source in_reply_to_status_id \\\n", + "0
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012
created_at2022-08-03 20:19:13+00:002022-08-02 15:24:42+00:002022-08-02 15:02:35+00:00
id155492487416614912015544883683476807711554482802502127621
id_str155492487416614912015544883683476807681554482802502127616
full_text#Pelosi airplane landed safely in #Taiwan 🇹🇼 ...Watch the video of the beginning of the Chines...#Pelosi \\n#Taipei \\n#taiwan\\n#XiJinping \\n#Chi...
truncatedFalseFalseFalse
display_text_range[0, 222][0, 250][0, 71]
entities{'hashtags': [{'text': 'Pelosi', 'indices': [0...{'hashtags': [{'text': 'Pelosi', 'indices': [1...{'hashtags': [{'text': 'Pelosi', 'indices': [0...
metadata{'iso_language_code': 'en', 'result_type': 're...{'iso_language_code': 'en', 'result_type': 're...{'iso_language_code': 'en', 'result_type': 're...
source<a href=\"http://twitter.com/download/android\" ...<a href=\"https://mobile.twitter.com\" rel=\"nofo...<a href=\"http://twitter.com/download/android\" ...
in_reply_to_status_idNaNNaNNaN
in_reply_to_status_id_strNaNNaNNaN
in_reply_to_user_idNaNNaNNaN
in_reply_to_user_id_strNaNNaNNaN
in_reply_to_screen_nameNoneNoneNone
user{'id': 1183669359396511744, 'id_str': '1183669...{'id': 746340422994235392, 'id_str': '74634042...{'id': 1138076883399188480, 'id_str': '1138076...
geoNaNNaNNaN
coordinatesNaNNaNNaN
placeNoneNoneNone
contributorsNaNNaNNaN
is_quote_statusFalseFalseFalse
retweet_count000
favorite_count032
favoritedFalseFalseFalse
retweetedFalseFalseFalse
langenenen
extended_entitiesNaN{'media': [{'id': 1554487694776012800, 'id_str...{'media': [{'id': 1554482776140906497, 'id_str...
possibly_sensitiveNaN0.00.0
quoted_status_idNaNNaNNaN
quoted_status_id_strNaNNaNNaN
quoted_statusNaNNaNNaN
\n", + "" + ], + "text/plain": [ + " 0 \\\n", + "created_at 2022-08-03 20:19:13+00:00 \n", + "id 1554924874166149120 \n", + "id_str 1554924874166149120 \n", + "full_text #Pelosi airplane landed safely in #Taiwan 🇹🇼 ... \n", + "truncated False \n", + "display_text_range [0, 222] \n", + "entities {'hashtags': [{'text': 'Pelosi', 'indices': [0... \n", + "metadata {'iso_language_code': 'en', 'result_type': 're... \n", + "source
\n", + "RangeIndex: 1000 entries, 0 to 999\n", + "Data columns (total 15 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 created_at 1000 non-null datetime64[ns, UTC]\n", + " 1 id 1000 non-null int64 \n", + " 2 id_str 1000 non-null int64 \n", + " 3 full_text 1000 non-null object \n", + " 4 truncated 1000 non-null bool \n", + " 5 display_text_range 1000 non-null object \n", + " 6 entities 1000 non-null object \n", + " 7 metadata 1000 non-null object \n", + " 8 source 1000 non-null object \n", + " 9 in_reply_to_status_id 103 non-null float64 \n", + " 10 in_reply_to_status_id_str 103 non-null float64 \n", + " 11 in_reply_to_user_id 120 non-null float64 \n", + " 12 in_reply_to_user_id_str 120 non-null float64 \n", + " 13 in_reply_to_screen_name 120 non-null object \n", + " 14 user 1000 non-null object \n", + "dtypes: bool(1), datetime64[ns, UTC](1), float64(4), int64(2), object(7)\n", + "memory usage: 110.5+ KB\n" + ] + } + ], + "source": [ + "# Since the number of columns are too many, we won't be able to see the entire info. So we can see half at a time.\n", + "\n", + "half = len(df_twitter.columns) // 2\n", + "\n", + "df_twitter.iloc[:, :half].info()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 1000 entries, 0 to 999\n", + "Data columns (total 15 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 geo 0 non-null float64\n", + " 1 coordinates 0 non-null float64\n", + " 2 place 107 non-null object \n", + " 3 contributors 0 non-null float64\n", + " 4 is_quote_status 1000 non-null bool \n", + " 5 retweet_count 1000 non-null int64 \n", + " 6 favorite_count 1000 non-null int64 \n", + " 7 favorited 1000 non-null bool \n", + " 8 retweeted 1000 non-null bool \n", + " 9 lang 1000 non-null object \n", + " 10 extended_entities 631 non-null object \n", + " 11 possibly_sensitive 763 non-null float64\n", + " 12 quoted_status_id 37 non-null float64\n", + " 13 quoted_status_id_str 37 non-null float64\n", + " 14 quoted_status 37 non-null object \n", + "dtypes: bool(3), float64(6), int64(2), object(4)\n", + "memory usage: 96.8+ KB\n" + ] + } + ], + "source": [ + "df_twitter.iloc[:, half:].info()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0
0created_at
1id
2id_str
3full_text
4truncated
5display_text_range
6entities
7metadata
8source
9in_reply_to_status_id
10in_reply_to_status_id_str
11in_reply_to_user_id
12in_reply_to_user_id_str
13in_reply_to_screen_name
14user
15geo
16coordinates
17place
18contributors
19is_quote_status
20retweet_count
21favorite_count
22favorited
23retweeted
24lang
25extended_entities
26possibly_sensitive
27quoted_status_id
28quoted_status_id_str
29quoted_status
\n", + "
" + ], + "text/plain": [ + " 0\n", + "0 created_at\n", + "1 id\n", + "2 id_str\n", + "3 full_text\n", + "4 truncated\n", + "5 display_text_range\n", + "6 entities\n", + "7 metadata\n", + "8 source\n", + "9 in_reply_to_status_id\n", + "10 in_reply_to_status_id_str\n", + "11 in_reply_to_user_id\n", + "12 in_reply_to_user_id_str\n", + "13 in_reply_to_screen_name\n", + "14 user\n", + "15 geo\n", + "16 coordinates\n", + "17 place\n", + "18 contributors\n", + "19 is_quote_status\n", + "20 retweet_count\n", + "21 favorite_count\n", + "22 favorited\n", + "23 retweeted\n", + "24 lang\n", + "25 extended_entities\n", + "26 possibly_sensitive\n", + "27 quoted_status_id\n", + "28 quoted_status_id_str\n", + "29 quoted_status" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.DataFrame(df_twitter.columns)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "lang\n", + "en 1000\n", + "Name: count, dtype: int64" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_twitter['lang'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/extract_dataframe.py b/extract_dataframe.py index 51449bf..b755214 100644 --- a/extract_dataframe.py +++ b/extract_dataframe.py @@ -19,13 +19,11 @@ def read_json(json_file: str)->list: for tweets in open(json_file,'r'): tweets_data.append(json.loads(tweets)) - return len(tweets_data), tweets_data class TweetDfExtractor: """ this function will parse tweets json into a pandas dataframe - Return ------ dataframe @@ -33,66 +31,132 @@ class TweetDfExtractor: def __init__(self, tweets_list): self.tweets_list = tweets_list - - # an example function + def find_statuses_count(self)->list: - statuses_count - + """ + Get the status count for the tweets + """ + statuses_count = [] + for items in self.tweets_list: + statuses_count.append(items.get('statuses_count',None)) + return statuses_count + + + def find_full_text(self)->list: """ - This funciton gets the entire text f rom the tweet strings + This funciton gets the entire tweet/text from the tweet strings """ - text = full_text + text = [] + for items in self.tweets_list: + text.append(items.get('full_text',None)) return text def find_sentiments(self, text)->list: + """ + extract the sentiments of the tweets using TextBlob + """ + polarity = [] + self.subjectivity = [] + for items in text: + self.subjectivity.append(TextBlob(items).sentiment.subjectivity) + polarity.append(TextBlob(items).sentiment.subjectivity) + # polarity = TextBlob(text).sentiment.polarity + # subjectivity = TextBlob(text).sentiment.subjectivity return polarity, self.subjectivity + + def find_created_time(self)->list: + """ + The created time gets the tweeted createtion specific time + """ created_at = [] for items in self.tweets_list: - created_at.append(items.get('craeted_at',None)) + created_at.append(items.get('created_at',None)) return created_at - def find_source(self)->list: - source = - + """ + Source of the tweet or Retweet. + eg. mobile, web + """ + source = [] + for items in self.tweets_list: + source.append(items.get('source',None)) return source + + def find_screen_name(self)->list: - screen_name = + """ + Get the screen name from the column user + Return: screen name item from the dictionary + """ + screen_name = [] + for items in self.tweets_list: + screen_name.append(items['user']['screen_name']) + return screen_name + + def find_followers_count(self)->list: - followers_count = + """ + extracts the number of followers a user / tweet account has + Returns: a count of followers + """ + followers_count = [] + for items in self.tweets_list: + followers_count.append(items['user']['followers_count']) + + return followers_count + def find_friends_count(self)->list: - friends_count = + friends_count = [] + for items in self.tweets_list: + friends_count.append(items['user']['friends_count']) + return friends_count + def is_sensitive(self)->list: try: is_sensitive = [x['possibly_sensitive'] for x in self.tweets_list] except KeyError: is_sensitive = None - return is_sensitive + def find_favourite_count(self)->list: + favourite_count = [] + for items in self.tweets_list: + favourite_count.append(items['user']['favourites_count']) + return favourite_count def find_retweet_count(self)->list: - retweet_count = + retweet_count = [] + for items in self.tweets_list: + retweet_count.append(items.get('retweet_count',None)) + def find_hashtags(self)->list: - hashtags = + hashtags = [] + for items in self.tweets_list: + hashtags.append(items['user']['hashtags']) + return hashtags + def find_mentions(self)->list: - mentions = + mentions = [] + for items in self.tweets_list: + mentions.append(items['user']['mentions']) + return mentions def find_location(self)->list: diff --git a/tests/test_df_twitter.json b/tests/test_df_twitter.json new file mode 100644 index 0000000..fdc11d4 --- /dev/null +++ b/tests/test_df_twitter.json @@ -0,0 +1 @@ +"{\"created_at\":{\"0\":1659557953000,\"1\":1659453882000,\"2\":1659452555000,\"3\":1659361902000,\"4\":1659297740000,\"5\":1659273742000,\"6\":1659851754000,\"7\":1659577344000,\"8\":1659546347000,\"9\":1659451547000,\"10\":1659444809000,\"11\":1659388731000,\"12\":1659381407000,\"13\":1659365443000,\"14\":1659332115000,\"15\":1659911619000,\"16\":1659911435000,\"17\":1659892934000,\"18\":1659889249000,\"19\":1659882890000,\"20\":1659876706000,\"21\":1659871741000,\"22\":1659871385000,\"23\":1659867628000,\"24\":1659867151000,\"25\":1659857408000,\"26\":1659856398000,\"27\":1659849053000,\"28\":1659845052000,\"29\":1659844958000,\"30\":1659824305000,\"31\":1659816738000,\"32\":1659813254000,\"33\":1659813172000,\"34\":1659812465000,\"35\":1659810656000,\"36\":1659802369000,\"37\":1659800038000,\"38\":1659796330000,\"39\":1659795595000,\"40\":1659795366000,\"41\":1659795207000,\"42\":1659793445000,\"43\":1659791451000,\"44\":1659790899000,\"45\":1659787234000,\"46\":1659787196000,\"47\":1659786065000,\"48\":1659782043000,\"49\":1659780756000,\"50\":1659780168000,\"51\":1659774582000,\"52\":1659774259000,\"53\":1659773711000,\"54\":1659773687000,\"55\":1659773409000,\"56\":1659772131000,\"57\":1659758420000,\"58\":1659755024000,\"59\":1659753249000,\"60\":1659753031000,\"61\":1659743778000,\"62\":1659738563000,\"63\":1659736406000,\"64\":1659733590000,\"65\":1659731764000,\"66\":1659729992000,\"67\":1659729862000,\"68\":1659729856000,\"69\":1659729681000,\"70\":1659729616000,\"71\":1659729566000,\"72\":1659729111000,\"73\":1659728991000,\"74\":1659728949000,\"75\":1659726672000,\"76\":1659726374000,\"77\":1659719890000,\"78\":1659719316000,\"79\":1659718791000,\"80\":1659718676000,\"81\":1659718006000,\"82\":1659715281000,\"83\":1659714604000,\"84\":1659714514000,\"85\":1659714319000,\"86\":1659711728000,\"87\":1659711416000,\"88\":1659711211000,\"89\":1659710881000,\"90\":1659708703000,\"91\":1659708514000,\"92\":1659706866000,\"93\":1659706780000,\"94\":1659704178000,\"95\":1659703922000,\"96\":1659703885000,\"97\":1659703843000,\"98\":1659703790000,\"99\":1659703742000,\"100\":1659703713000,\"101\":1659703188000,\"102\":1659703184000,\"103\":1659703021000,\"104\":1659702355000,\"105\":1659701913000,\"106\":1659701640000,\"107\":1659701358000,\"108\":1659701358000,\"109\":1659699683000,\"110\":1659696881000,\"111\":1659692563000,\"112\":1659692426000,\"113\":1659692007000,\"114\":1659691687000,\"115\":1659691477000,\"116\":1659691423000,\"117\":1659691377000,\"118\":1659691292000,\"119\":1659690892000,\"120\":1659689664000,\"121\":1659689195000,\"122\":1659688281000,\"123\":1659687417000,\"124\":1659687412000,\"125\":1659686581000,\"126\":1659686007000,\"127\":1659683960000,\"128\":1659683451000,\"129\":1659683402000,\"130\":1659682516000,\"131\":1659680794000,\"132\":1659678964000,\"133\":1659678601000,\"134\":1659678485000,\"135\":1659678350000,\"136\":1659678017000,\"137\":1659677710000,\"138\":1659677159000,\"139\":1659676929000,\"140\":1659676748000,\"141\":1659676134000,\"142\":1659674677000,\"143\":1659674647000,\"144\":1659674022000,\"145\":1659673094000,\"146\":1659672966000,\"147\":1659672286000,\"148\":1659672172000,\"149\":1659671946000,\"150\":1659671673000,\"151\":1659671466000,\"152\":1659669984000,\"153\":1659669623000,\"154\":1659669122000,\"155\":1659668013000,\"156\":1659665437000,\"157\":1659664132000,\"158\":1659663034000,\"159\":1659662649000,\"160\":1659661293000,\"161\":1659660327000,\"162\":1659659751000,\"163\":1659659750000,\"164\":1659659557000,\"165\":1659659328000,\"166\":1659658836000,\"167\":1659658480000,\"168\":1659657397000,\"169\":1659657243000,\"170\":1659656866000,\"171\":1659656708000,\"172\":1659656089000,\"173\":1659655936000,\"174\":1659655443000,\"175\":1659655034000,\"176\":1659654635000,\"177\":1659654098000,\"178\":1659653367000,\"179\":1659652868000,\"180\":1659652333000,\"181\":1659651952000,\"182\":1659651817000,\"183\":1659651452000,\"184\":1659651410000,\"185\":1659651368000,\"186\":1659650992000,\"187\":1659650711000,\"188\":1659650650000,\"189\":1659650642000,\"190\":1659650510000,\"191\":1659649789000,\"192\":1659649727000,\"193\":1659649666000,\"194\":1659649494000,\"195\":1659649095000,\"196\":1659649019000,\"197\":1659648155000,\"198\":1659647814000,\"199\":1659647696000,\"200\":1659647275000,\"201\":1659647031000,\"202\":1659647016000,\"203\":1659646965000,\"204\":1659646727000,\"205\":1659646522000,\"206\":1659645985000,\"207\":1659645838000,\"208\":1659645821000,\"209\":1659645709000,\"210\":1659645073000,\"211\":1659645040000,\"212\":1659644996000,\"213\":1659644784000,\"214\":1659644703000,\"215\":1659644540000,\"216\":1659644314000,\"217\":1659644122000,\"218\":1659643898000,\"219\":1659643897000,\"220\":1659643573000,\"221\":1659642993000,\"222\":1659642618000,\"223\":1659642562000,\"224\":1659642260000,\"225\":1659642124000,\"226\":1659641509000,\"227\":1659641434000,\"228\":1659641395000,\"229\":1659641284000,\"230\":1659641250000,\"231\":1659641105000,\"232\":1659640963000,\"233\":1659640881000,\"234\":1659640651000,\"235\":1659640469000,\"236\":1659640409000,\"237\":1659640345000,\"238\":1659640274000,\"239\":1659640168000,\"240\":1659639366000,\"241\":1659638962000,\"242\":1659637217000,\"243\":1659636992000,\"244\":1659636731000,\"245\":1659636368000,\"246\":1659636174000,\"247\":1659635939000,\"248\":1659635824000,\"249\":1659635794000,\"250\":1659635640000,\"251\":1659635493000,\"252\":1659635208000,\"253\":1659634948000,\"254\":1659634898000,\"255\":1659634840000,\"256\":1659634778000,\"257\":1659634539000,\"258\":1659634479000,\"259\":1659634388000,\"260\":1659633401000,\"261\":1659633247000,\"262\":1659632865000,\"263\":1659632827000,\"264\":1659632532000,\"265\":1659632487000,\"266\":1659632324000,\"267\":1659632172000,\"268\":1659632156000,\"269\":1659632070000,\"270\":1659631756000,\"271\":1659631677000,\"272\":1659631057000,\"273\":1659631040000,\"274\":1659631038000,\"275\":1659631025000,\"276\":1659631000000,\"277\":1659630989000,\"278\":1659630959000,\"279\":1659630953000,\"280\":1659630692000,\"281\":1659630401000,\"282\":1659630297000,\"283\":1659630230000,\"284\":1659630158000,\"285\":1659629607000,\"286\":1659629364000,\"287\":1659629260000,\"288\":1659629232000,\"289\":1659629139000,\"290\":1659628819000,\"291\":1659628371000,\"292\":1659628328000,\"293\":1659628293000,\"294\":1659628265000,\"295\":1659628131000,\"296\":1659628118000,\"297\":1659628071000,\"298\":1659627924000,\"299\":1659627903000,\"300\":1659627896000,\"301\":1659627349000,\"302\":1659626891000,\"303\":1659626715000,\"304\":1659626703000,\"305\":1659626500000,\"306\":1659626354000,\"307\":1659626256000,\"308\":1659626161000,\"309\":1659626103000,\"310\":1659625207000,\"311\":1659624682000,\"312\":1659624601000,\"313\":1659624545000,\"314\":1659624480000,\"315\":1659624440000,\"316\":1659624404000,\"317\":1659624310000,\"318\":1659624289000,\"319\":1659624251000,\"320\":1659624201000,\"321\":1659623997000,\"322\":1659623973000,\"323\":1659623881000,\"324\":1659623780000,\"325\":1659623104000,\"326\":1659623011000,\"327\":1659622904000,\"328\":1659622814000,\"329\":1659622777000,\"330\":1659622371000,\"331\":1659622194000,\"332\":1659622140000,\"333\":1659622036000,\"334\":1659621682000,\"335\":1659621625000,\"336\":1659621534000,\"337\":1659621428000,\"338\":1659621426000,\"339\":1659621024000,\"340\":1659620969000,\"341\":1659620944000,\"342\":1659620277000,\"343\":1659620196000,\"344\":1659619953000,\"345\":1659619890000,\"346\":1659619856000,\"347\":1659619470000,\"348\":1659619138000,\"349\":1659618896000,\"350\":1659618889000,\"351\":1659618292000,\"352\":1659618020000,\"353\":1659617606000,\"354\":1659617580000,\"355\":1659617394000,\"356\":1659617341000,\"357\":1659617170000,\"358\":1659616530000,\"359\":1659616345000,\"360\":1659616245000,\"361\":1659616236000,\"362\":1659615985000,\"363\":1659615933000,\"364\":1659615868000,\"365\":1659615584000,\"366\":1659615406000,\"367\":1659615284000,\"368\":1659615250000,\"369\":1659614721000,\"370\":1659614659000,\"371\":1659614305000,\"372\":1659614016000,\"373\":1659613699000,\"374\":1659613543000,\"375\":1659613511000,\"376\":1659613312000,\"377\":1659613230000,\"378\":1659612927000,\"379\":1659612885000,\"380\":1659612839000,\"381\":1659612726000,\"382\":1659612648000,\"383\":1659612498000,\"384\":1659612375000,\"385\":1659612314000,\"386\":1659612264000,\"387\":1659612249000,\"388\":1659612134000,\"389\":1659612127000,\"390\":1659612117000,\"391\":1659611920000,\"392\":1659611861000,\"393\":1659611770000,\"394\":1659611683000,\"395\":1659611557000,\"396\":1659611484000,\"397\":1659611368000,\"398\":1659611103000,\"399\":1659610928000,\"400\":1659610592000,\"401\":1659610482000,\"402\":1659610251000,\"403\":1659610187000,\"404\":1659610168000,\"405\":1659610127000,\"406\":1659609694000,\"407\":1659609558000,\"408\":1659609392000,\"409\":1659609190000,\"410\":1659609137000,\"411\":1659609109000,\"412\":1659609041000,\"413\":1659608964000,\"414\":1659608892000,\"415\":1659608769000,\"416\":1659608412000,\"417\":1659608301000,\"418\":1659608251000,\"419\":1659608251000,\"420\":1659608043000,\"421\":1659607889000,\"422\":1659607744000,\"423\":1659607672000,\"424\":1659607495000,\"425\":1659607168000,\"426\":1659607144000,\"427\":1659607072000,\"428\":1659606656000,\"429\":1659606467000,\"430\":1659606408000,\"431\":1659606300000,\"432\":1659606136000,\"433\":1659606012000,\"434\":1659606001000,\"435\":1659605984000,\"436\":1659605958000,\"437\":1659605950000,\"438\":1659605364000,\"439\":1659605196000,\"440\":1659605157000,\"441\":1659605050000,\"442\":1659604240000,\"443\":1659603162000,\"444\":1659603014000,\"445\":1659602874000,\"446\":1659602690000,\"447\":1659602357000,\"448\":1659602270000,\"449\":1659602245000,\"450\":1659601907000,\"451\":1659601884000,\"452\":1659601797000,\"453\":1659601631000,\"454\":1659601502000,\"455\":1659601169000,\"456\":1659601127000,\"457\":1659601067000,\"458\":1659600999000,\"459\":1659600797000,\"460\":1659600743000,\"461\":1659600691000,\"462\":1659600545000,\"463\":1659600446000,\"464\":1659600201000,\"465\":1659599986000,\"466\":1659599978000,\"467\":1659599756000,\"468\":1659599476000,\"469\":1659599252000,\"470\":1659599180000,\"471\":1659598990000,\"472\":1659598981000,\"473\":1659598886000,\"474\":1659598881000,\"475\":1659598769000,\"476\":1659598686000,\"477\":1659598674000,\"478\":1659598667000,\"479\":1659598642000,\"480\":1659598620000,\"481\":1659598564000,\"482\":1659598532000,\"483\":1659598505000,\"484\":1659598481000,\"485\":1659598456000,\"486\":1659598435000,\"487\":1659598419000,\"488\":1659598392000,\"489\":1659598391000,\"490\":1659598377000,\"491\":1659598353000,\"492\":1659598306000,\"493\":1659598286000,\"494\":1659598273000,\"495\":1659598244000,\"496\":1659598239000,\"497\":1659598202000,\"498\":1659598186000,\"499\":1659598177000,\"500\":1659598129000,\"501\":1659598105000,\"502\":1659598073000,\"503\":1659598014000,\"504\":1659597935000,\"505\":1659597789000,\"506\":1659597671000,\"507\":1659597510000,\"508\":1659597320000,\"509\":1659597233000,\"510\":1659597213000,\"511\":1659597135000,\"512\":1659596920000,\"513\":1659596831000,\"514\":1659596579000,\"515\":1659596547000,\"516\":1659596540000,\"517\":1659596315000,\"518\":1659596140000,\"519\":1659596131000,\"520\":1659596016000,\"521\":1659595999000,\"522\":1659595984000,\"523\":1659595657000,\"524\":1659595468000,\"525\":1659595347000,\"526\":1659595341000,\"527\":1659594729000,\"528\":1659594555000,\"529\":1659594469000,\"530\":1659594452000,\"531\":1659594155000,\"532\":1659593957000,\"533\":1659593681000,\"534\":1659593345000,\"535\":1659593318000,\"536\":1659593295000,\"537\":1659593287000,\"538\":1659593284000,\"539\":1659593263000,\"540\":1659593246000,\"541\":1659593230000,\"542\":1659593177000,\"543\":1659592975000,\"544\":1659592886000,\"545\":1659592419000,\"546\":1659592385000,\"547\":1659590640000,\"548\":1659590486000,\"549\":1659589223000,\"550\":1659585600000,\"551\":1659584788000,\"552\":1659584521000,\"553\":1659583426000,\"554\":1659581629000,\"555\":1659580706000,\"556\":1659579525000,\"557\":1659579369000,\"558\":1659578400000,\"559\":1659578264000,\"560\":1659576764000,\"561\":1659575484000,\"562\":1659574306000,\"563\":1659573364000,\"564\":1659572350000,\"565\":1659572100000,\"566\":1659570585000,\"567\":1659570547000,\"568\":1659568395000,\"569\":1659568140000,\"570\":1659567588000,\"571\":1659567377000,\"572\":1659567332000,\"573\":1659567141000,\"574\":1659565429000,\"575\":1659565226000,\"576\":1659565189000,\"577\":1659565186000,\"578\":1659565081000,\"579\":1659564940000,\"580\":1659564673000,\"581\":1659564587000,\"582\":1659564503000,\"583\":1659564386000,\"584\":1659563274000,\"585\":1659563269000,\"586\":1659563260000,\"587\":1659562963000,\"588\":1659562503000,\"589\":1659561672000,\"590\":1659560700000,\"591\":1659560590000,\"592\":1659559656000,\"593\":1659559374000,\"594\":1659559118000,\"595\":1659558565000,\"596\":1659558175000,\"597\":1659558096000,\"598\":1659558063000,\"599\":1659557991000,\"600\":1659557823000,\"601\":1659557459000,\"602\":1659557208000,\"603\":1659557058000,\"604\":1659556902000,\"605\":1659556849000,\"606\":1659556742000,\"607\":1659556689000,\"608\":1659556684000,\"609\":1659556518000,\"610\":1659556481000,\"611\":1659556389000,\"612\":1659556233000,\"613\":1659556159000,\"614\":1659556060000,\"615\":1659556038000,\"616\":1659555984000,\"617\":1659555858000,\"618\":1659555580000,\"619\":1659555447000,\"620\":1659555397000,\"621\":1659555363000,\"622\":1659555219000,\"623\":1659554616000,\"624\":1659554576000,\"625\":1659554574000,\"626\":1659554456000,\"627\":1659554295000,\"628\":1659554253000,\"629\":1659554227000,\"630\":1659554178000,\"631\":1659553994000,\"632\":1659553945000,\"633\":1659553935000,\"634\":1659553839000,\"635\":1659553734000,\"636\":1659553554000,\"637\":1659553321000,\"638\":1659553242000,\"639\":1659553059000,\"640\":1659553049000,\"641\":1659553014000,\"642\":1659552958000,\"643\":1659552769000,\"644\":1659552393000,\"645\":1659551847000,\"646\":1659551563000,\"647\":1659550956000,\"648\":1659550955000,\"649\":1659550836000,\"650\":1659550739000,\"651\":1659550614000,\"652\":1659550553000,\"653\":1659550324000,\"654\":1659550272000,\"655\":1659549936000,\"656\":1659549791000,\"657\":1659549761000,\"658\":1659549538000,\"659\":1659549509000,\"660\":1659549355000,\"661\":1659549230000,\"662\":1659549084000,\"663\":1659549027000,\"664\":1659548384000,\"665\":1659548343000,\"666\":1659548064000,\"667\":1659548011000,\"668\":1659547992000,\"669\":1659547843000,\"670\":1659547784000,\"671\":1659547595000,\"672\":1659547506000,\"673\":1659547341000,\"674\":1659547227000,\"675\":1659547149000,\"676\":1659546616000,\"677\":1659546513000,\"678\":1659546357000,\"679\":1659546190000,\"680\":1659546125000,\"681\":1659546124000,\"682\":1659546090000,\"683\":1659546072000,\"684\":1659545804000,\"685\":1659545793000,\"686\":1659545474000,\"687\":1659545407000,\"688\":1659545366000,\"689\":1659545231000,\"690\":1659544864000,\"691\":1659544669000,\"692\":1659544561000,\"693\":1659544418000,\"694\":1659544162000,\"695\":1659544011000,\"696\":1659544002000,\"697\":1659543507000,\"698\":1659543474000,\"699\":1659543295000,\"700\":1659543265000,\"701\":1659543221000,\"702\":1659543167000,\"703\":1659543123000,\"704\":1659542917000,\"705\":1659542814000,\"706\":1659542763000,\"707\":1659542688000,\"708\":1659542360000,\"709\":1659542098000,\"710\":1659541948000,\"711\":1659541864000,\"712\":1659541777000,\"713\":1659541644000,\"714\":1659541598000,\"715\":1659541441000,\"716\":1659541159000,\"717\":1659541131000,\"718\":1659540957000,\"719\":1659540936000,\"720\":1659540804000,\"721\":1659540773000,\"722\":1659540466000,\"723\":1659540337000,\"724\":1659539904000,\"725\":1659539829000,\"726\":1659539558000,\"727\":1659539463000,\"728\":1659539430000,\"729\":1659539125000,\"730\":1659539111000,\"731\":1659538959000,\"732\":1659538918000,\"733\":1659538887000,\"734\":1659538650000,\"735\":1659538561000,\"736\":1659537924000,\"737\":1659537901000,\"738\":1659537860000,\"739\":1659537728000,\"740\":1659537698000,\"741\":1659537587000,\"742\":1659537513000,\"743\":1659537469000,\"744\":1659537452000,\"745\":1659537326000,\"746\":1659537247000,\"747\":1659537169000,\"748\":1659537105000,\"749\":1659536992000,\"750\":1659536647000,\"751\":1659536589000,\"752\":1659536578000,\"753\":1659536564000,\"754\":1659536560000,\"755\":1659536555000,\"756\":1659536400000,\"757\":1659535905000,\"758\":1659535660000,\"759\":1659535649000,\"760\":1659535540000,\"761\":1659535325000,\"762\":1659535290000,\"763\":1659535116000,\"764\":1659534711000,\"765\":1659534323000,\"766\":1659534302000,\"767\":1659534295000,\"768\":1659534279000,\"769\":1659534279000,\"770\":1659534239000,\"771\":1659534211000,\"772\":1659534163000,\"773\":1659534147000,\"774\":1659534138000,\"775\":1659534115000,\"776\":1659534112000,\"777\":1659534101000,\"778\":1659534094000,\"779\":1659534081000,\"780\":1659534066000,\"781\":1659534052000,\"782\":1659533998000,\"783\":1659533987000,\"784\":1659533976000,\"785\":1659533960000,\"786\":1659533901000,\"787\":1659533724000,\"788\":1659533697000,\"789\":1659533658000,\"790\":1659533628000,\"791\":1659533587000,\"792\":1659533416000,\"793\":1659533249000,\"794\":1659533137000,\"795\":1659533124000,\"796\":1659533118000,\"797\":1659533076000,\"798\":1659533043000,\"799\":1659533031000,\"800\":1659532510000,\"801\":1659532146000,\"802\":1659532098000,\"803\":1659532062000,\"804\":1659531981000,\"805\":1659531874000,\"806\":1659531758000,\"807\":1659531667000,\"808\":1659531639000,\"809\":1659531497000,\"810\":1659531473000,\"811\":1659531453000,\"812\":1659531420000,\"813\":1659531352000,\"814\":1659531322000,\"815\":1659531265000,\"816\":1659531249000,\"817\":1659531233000,\"818\":1659531215000,\"819\":1659531151000,\"820\":1659531065000,\"821\":1659531054000,\"822\":1659531012000,\"823\":1659530994000,\"824\":1659530775000,\"825\":1659530716000,\"826\":1659530572000,\"827\":1659530455000,\"828\":1659530015000,\"829\":1659529981000,\"830\":1659529977000,\"831\":1659529751000,\"832\":1659529741000,\"833\":1659529719000,\"834\":1659529635000,\"835\":1659529635000,\"836\":1659529409000,\"837\":1659529248000,\"838\":1659529184000,\"839\":1659529091000,\"840\":1659528624000,\"841\":1659528480000,\"842\":1659528372000,\"843\":1659528245000,\"844\":1659528144000,\"845\":1659527896000,\"846\":1659527748000,\"847\":1659527677000,\"848\":1659527622000,\"849\":1659527457000,\"850\":1659527431000,\"851\":1659527367000,\"852\":1659527302000,\"853\":1659527267000,\"854\":1659527063000,\"855\":1659526922000,\"856\":1659526910000,\"857\":1659526736000,\"858\":1659526607000,\"859\":1659526579000,\"860\":1659526500000,\"861\":1659526452000,\"862\":1659526132000,\"863\":1659526027000,\"864\":1659525952000,\"865\":1659525926000,\"866\":1659525885000,\"867\":1659525871000,\"868\":1659525764000,\"869\":1659525723000,\"870\":1659525663000,\"871\":1659525633000,\"872\":1659525556000,\"873\":1659525551000,\"874\":1659525385000,\"875\":1659525341000,\"876\":1659525287000,\"877\":1659525215000,\"878\":1659525193000,\"879\":1659525168000,\"880\":1659525069000,\"881\":1659524868000,\"882\":1659524775000,\"883\":1659524724000,\"884\":1659524631000,\"885\":1659524568000,\"886\":1659524404000,\"887\":1659524337000,\"888\":1659524275000,\"889\":1659524228000,\"890\":1659524201000,\"891\":1659524021000,\"892\":1659524006000,\"893\":1659523913000,\"894\":1659523899000,\"895\":1659523889000,\"896\":1659523800000,\"897\":1659523789000,\"898\":1659523571000,\"899\":1659523540000,\"900\":1659523451000,\"901\":1659523369000,\"902\":1659523342000,\"903\":1659523104000,\"904\":1659523091000,\"905\":1659523039000,\"906\":1659523000000,\"907\":1659522970000,\"908\":1659522969000,\"909\":1659522968000,\"910\":1659522960000,\"911\":1659522948000,\"912\":1659522833000,\"913\":1659522832000,\"914\":1659522800000,\"915\":1659522782000,\"916\":1659522781000,\"917\":1659522753000,\"918\":1659522605000,\"919\":1659522578000,\"920\":1659522460000,\"921\":1659522407000,\"922\":1659522395000,\"923\":1659522377000,\"924\":1659522349000,\"925\":1659522252000,\"926\":1659522244000,\"927\":1659522148000,\"928\":1659521981000,\"929\":1659521919000,\"930\":1659521902000,\"931\":1659521825000,\"932\":1659521750000,\"933\":1659521663000,\"934\":1659521656000,\"935\":1659521617000,\"936\":1659521510000,\"937\":1659521306000,\"938\":1659521296000,\"939\":1659521264000,\"940\":1659521203000,\"941\":1659521013000,\"942\":1659520991000,\"943\":1659520860000,\"944\":1659520702000,\"945\":1659520628000,\"946\":1659520518000,\"947\":1659520413000,\"948\":1659520151000,\"949\":1659520111000,\"950\":1659520040000,\"951\":1659519929000,\"952\":1659519904000,\"953\":1659519856000,\"954\":1659519826000,\"955\":1659519668000,\"956\":1659519565000,\"957\":1659519370000,\"958\":1659519206000,\"959\":1659519194000,\"960\":1659519169000,\"961\":1659519060000,\"962\":1659519015000,\"963\":1659518907000,\"964\":1659518798000,\"965\":1659518671000,\"966\":1659518670000,\"967\":1659518518000,\"968\":1659518404000,\"969\":1659518389000,\"970\":1659518326000,\"971\":1659518278000,\"972\":1659518239000,\"973\":1659518003000,\"974\":1659517958000,\"975\":1659517902000,\"976\":1659517867000,\"977\":1659517633000,\"978\":1659517455000,\"979\":1659517438000,\"980\":1659517308000,\"981\":1659517202000,\"982\":1659517061000,\"983\":1659517028000,\"984\":1659516841000,\"985\":1659516791000,\"986\":1659516475000,\"987\":1659516439000,\"988\":1659516379000,\"989\":1659516355000,\"990\":1659516345000,\"991\":1659516300000,\"992\":1659516269000,\"993\":1659516254000,\"994\":1659516250000,\"995\":1659516137000,\"996\":1659516092000,\"997\":1659515970000,\"998\":1659515832000,\"999\":1659515819000,\"1000\":1659515805000,\"1001\":1659515790000,\"1002\":1659515775000,\"1003\":1659515758000,\"1004\":1659515743000,\"1005\":1659515726000,\"1006\":1659515675000,\"1007\":1659515629000,\"1008\":1659515604000,\"1009\":1659515404000,\"1010\":1659515230000,\"1011\":1659515181000,\"1012\":1659515147000,\"1013\":1659515056000,\"1014\":1659514998000,\"1015\":1659514729000,\"1016\":1659514714000,\"1017\":1659514656000,\"1018\":1659514265000,\"1019\":1659513906000,\"1020\":1659513858000,\"1021\":1659513761000,\"1022\":1659513631000,\"1023\":1659513612000,\"1024\":1659513530000,\"1025\":1659513366000,\"1026\":1659513219000,\"1027\":1659512914000,\"1028\":1659512910000,\"1029\":1659512910000,\"1030\":1659512865000,\"1031\":1659512792000,\"1032\":1659512789000,\"1033\":1659512638000,\"1034\":1659512534000,\"1035\":1659512511000,\"1036\":1659512282000,\"1037\":1659512220000,\"1038\":1659512105000,\"1039\":1659512047000,\"1040\":1659511914000,\"1041\":1659511649000,\"1042\":1659511542000,\"1043\":1659511387000,\"1044\":1659511326000,\"1045\":1659511276000,\"1046\":1659511243000,\"1047\":1659510991000,\"1048\":1659510739000,\"1049\":1659510679000,\"1050\":1659510623000,\"1051\":1659510404000,\"1052\":1659510387000,\"1053\":1659510106000,\"1054\":1659510054000,\"1055\":1659509782000,\"1056\":1659509668000,\"1057\":1659509465000,\"1058\":1659509185000,\"1059\":1659508980000,\"1060\":1659508855000,\"1061\":1659508575000,\"1062\":1659508536000,\"1063\":1659508529000,\"1064\":1659508318000,\"1065\":1659508245000,\"1066\":1659507940000,\"1067\":1659507852000,\"1068\":1659507748000,\"1069\":1659507691000,\"1070\":1659507589000,\"1071\":1659507401000,\"1072\":1659507175000,\"1073\":1659507153000,\"1074\":1659507068000,\"1075\":1659506943000,\"1076\":1659506935000,\"1077\":1659506871000,\"1078\":1659506543000,\"1079\":1659506475000,\"1080\":1659506394000,\"1081\":1659506237000,\"1082\":1659506146000,\"1083\":1659506112000,\"1084\":1659505875000,\"1085\":1659505840000,\"1086\":1659505776000,\"1087\":1659505351000,\"1088\":1659505319000,\"1089\":1659505056000,\"1090\":1659504895000,\"1091\":1659504607000,\"1092\":1659504600000,\"1093\":1659504524000,\"1094\":1659503735000,\"1095\":1659503460000,\"1096\":1659503206000,\"1097\":1659503195000,\"1098\":1659503164000,\"1099\":1659503147000,\"1100\":1659503125000,\"1101\":1659503059000,\"1102\":1659503044000,\"1103\":1659502926000,\"1104\":1659502901000,\"1105\":1659502788000,\"1106\":1659502736000,\"1107\":1659502707000,\"1108\":1659502683000,\"1109\":1659502652000,\"1110\":1659502644000,\"1111\":1659502636000,\"1112\":1659502535000,\"1113\":1659502115000,\"1114\":1659502028000,\"1115\":1659501867000,\"1116\":1659501852000,\"1117\":1659501835000,\"1118\":1659501812000,\"1119\":1659501731000,\"1120\":1659501694000,\"1121\":1659501683000,\"1122\":1659501644000,\"1123\":1659501612000,\"1124\":1659501595000,\"1125\":1659501534000,\"1126\":1659501295000,\"1127\":1659500739000,\"1128\":1659500636000,\"1129\":1659500453000,\"1130\":1659500435000,\"1131\":1659500417000,\"1132\":1659500158000,\"1133\":1659500141000,\"1134\":1659499738000,\"1135\":1659499224000,\"1136\":1659499202000,\"1137\":1659499147000,\"1138\":1659498624000,\"1139\":1659498558000,\"1140\":1659498462000,\"1141\":1659498342000,\"1142\":1659497810000,\"1143\":1659496214000,\"1144\":1659495720000,\"1145\":1659495107000,\"1146\":1659494277000,\"1147\":1659493942000,\"1148\":1659493466000,\"1149\":1659493081000,\"1150\":1659492141000,\"1151\":1659491060000,\"1152\":1659490688000,\"1153\":1659489662000,\"1154\":1659489629000,\"1155\":1659489528000,\"1156\":1659489335000,\"1157\":1659488948000,\"1158\":1659487761000,\"1159\":1659487220000,\"1160\":1659485240000,\"1161\":1659485174000,\"1162\":1659484807000,\"1163\":1659484301000,\"1164\":1659484046000,\"1165\":1659483877000,\"1166\":1659483853000,\"1167\":1659483560000,\"1168\":1659483184000,\"1169\":1659483027000,\"1170\":1659482814000,\"1171\":1659482650000,\"1172\":1659482345000,\"1173\":1659482056000,\"1174\":1659482009000,\"1175\":1659481347000,\"1176\":1659481172000,\"1177\":1659481010000,\"1178\":1659480991000,\"1179\":1659480813000,\"1180\":1659480647000,\"1181\":1659480442000,\"1182\":1659480373000,\"1183\":1659479947000,\"1184\":1659479913000,\"1185\":1659479795000,\"1186\":1659479786000,\"1187\":1659479256000,\"1188\":1659478993000,\"1189\":1659478443000,\"1190\":1659478387000,\"1191\":1659478265000,\"1192\":1659477948000,\"1193\":1659477914000,\"1194\":1659477880000,\"1195\":1659477752000,\"1196\":1659477631000,\"1197\":1659477609000,\"1198\":1659477244000,\"1199\":1659477058000,\"1200\":1659476991000,\"1201\":1659476781000,\"1202\":1659476640000,\"1203\":1659476449000,\"1204\":1659476443000,\"1205\":1659476391000,\"1206\":1659476364000,\"1207\":1659476332000,\"1208\":1659476222000,\"1209\":1659476183000,\"1210\":1659476123000,\"1211\":1659476104000,\"1212\":1659476025000,\"1213\":1659475970000,\"1214\":1659475844000,\"1215\":1659475571000,\"1216\":1659475525000,\"1217\":1659475397000,\"1218\":1659475396000,\"1219\":1659475230000,\"1220\":1659475174000,\"1221\":1659475022000,\"1222\":1659474961000,\"1223\":1659474924000,\"1224\":1659474807000,\"1225\":1659474779000,\"1226\":1659474661000,\"1227\":1659474659000,\"1228\":1659474658000,\"1229\":1659474629000,\"1230\":1659474622000,\"1231\":1659474613000,\"1232\":1659474581000,\"1233\":1659474539000,\"1234\":1659474511000,\"1235\":1659474487000,\"1236\":1659474457000,\"1237\":1659474426000,\"1238\":1659474412000,\"1239\":1659474352000,\"1240\":1659474318000,\"1241\":1659474281000,\"1242\":1659474279000,\"1243\":1659474255000,\"1244\":1659474252000,\"1245\":1659474248000,\"1246\":1659474231000,\"1247\":1659474211000,\"1248\":1659474171000,\"1249\":1659474151000,\"1250\":1659474138000,\"1251\":1659474021000,\"1252\":1659474012000,\"1253\":1659473973000,\"1254\":1659473940000,\"1255\":1659473922000,\"1256\":1659473860000,\"1257\":1659473819000,\"1258\":1659473792000,\"1259\":1659473756000,\"1260\":1659473736000,\"1261\":1659473703000,\"1262\":1659473672000,\"1263\":1659473666000,\"1264\":1659473569000,\"1265\":1659473551000,\"1266\":1659473429000,\"1267\":1659473368000,\"1268\":1659473303000,\"1269\":1659473010000,\"1270\":1659472702000,\"1271\":1659472675000,\"1272\":1659472659000,\"1273\":1659472587000,\"1274\":1659472477000,\"1275\":1659472438000,\"1276\":1659472364000,\"1277\":1659472301000,\"1278\":1659472298000,\"1279\":1659472270000,\"1280\":1659472242000,\"1281\":1659472157000,\"1282\":1659472104000,\"1283\":1659472074000,\"1284\":1659472053000,\"1285\":1659471925000,\"1286\":1659471875000,\"1287\":1659471807000,\"1288\":1659471735000,\"1289\":1659471699000,\"1290\":1659471025000,\"1291\":1659471001000,\"1292\":1659470997000,\"1293\":1659470980000,\"1294\":1659470801000,\"1295\":1659470731000,\"1296\":1659470730000,\"1297\":1659470477000,\"1298\":1659470388000,\"1299\":1659470218000,\"1300\":1659470139000,\"1301\":1659470042000,\"1302\":1659469997000,\"1303\":1659469968000,\"1304\":1659469922000,\"1305\":1659469886000,\"1306\":1659469746000,\"1307\":1659469733000,\"1308\":1659469685000,\"1309\":1659469684000,\"1310\":1659469510000,\"1311\":1659469429000,\"1312\":1659469415000,\"1313\":1659469406000,\"1314\":1659469351000,\"1315\":1659469344000,\"1316\":1659469302000,\"1317\":1659469290000,\"1318\":1659469255000,\"1319\":1659469207000,\"1320\":1659469140000,\"1321\":1659469126000,\"1322\":1659469031000,\"1323\":1659468893000,\"1324\":1659468892000,\"1325\":1659468797000,\"1326\":1659468743000,\"1327\":1659468680000,\"1328\":1659468659000,\"1329\":1659468512000,\"1330\":1659468491000,\"1331\":1659468443000,\"1332\":1659468424000,\"1333\":1659468262000,\"1334\":1659467962000,\"1335\":1659467945000,\"1336\":1659467852000,\"1337\":1659467690000,\"1338\":1659467575000,\"1339\":1659467562000,\"1340\":1659467553000,\"1341\":1659467430000,\"1342\":1659467310000,\"1343\":1659467279000,\"1344\":1659467275000,\"1345\":1659467258000,\"1346\":1659467204000,\"1347\":1659467145000,\"1348\":1659467076000,\"1349\":1659466964000,\"1350\":1659466964000,\"1351\":1659466895000,\"1352\":1659466886000,\"1353\":1659466821000,\"1354\":1659466713000,\"1355\":1659466690000,\"1356\":1659466642000,\"1357\":1659466438000,\"1358\":1659466345000,\"1359\":1659466316000,\"1360\":1659466261000,\"1361\":1659466234000,\"1362\":1659466213000,\"1363\":1659466203000,\"1364\":1659466029000,\"1365\":1659466005000,\"1366\":1659466003000,\"1367\":1659465993000,\"1368\":1659465981000,\"1369\":1659465968000,\"1370\":1659465958000,\"1371\":1659465956000,\"1372\":1659465928000,\"1373\":1659465924000,\"1374\":1659465906000,\"1375\":1659465901000,\"1376\":1659465900000,\"1377\":1659465896000,\"1378\":1659465889000,\"1379\":1659465886000,\"1380\":1659465881000,\"1381\":1659465780000,\"1382\":1659465628000,\"1383\":1659465464000,\"1384\":1659465413000,\"1385\":1659465298000,\"1386\":1659465243000,\"1387\":1659465207000,\"1388\":1659465096000,\"1389\":1659464973000,\"1390\":1659464958000,\"1391\":1659464852000,\"1392\":1659464798000,\"1393\":1659464705000,\"1394\":1659464554000,\"1395\":1659464500000,\"1396\":1659464467000,\"1397\":1659464349000,\"1398\":1659464339000,\"1399\":1659463860000,\"1400\":1659463571000,\"1401\":1659463513000,\"1402\":1659463487000,\"1403\":1659463473000,\"1404\":1659463445000,\"1405\":1659463308000,\"1406\":1659463281000,\"1407\":1659463244000,\"1408\":1659462965000,\"1409\":1659462621000,\"1410\":1659462608000,\"1411\":1659462504000,\"1412\":1659462481000,\"1413\":1659462316000,\"1414\":1659462281000,\"1415\":1659462257000,\"1416\":1659462161000,\"1417\":1659461974000,\"1418\":1659461869000,\"1419\":1659461806000,\"1420\":1659461701000,\"1421\":1659461543000,\"1422\":1659461540000,\"1423\":1659461502000,\"1424\":1659461306000,\"1425\":1659461293000,\"1426\":1659461283000,\"1427\":1659461267000,\"1428\":1659461226000,\"1429\":1659461123000,\"1430\":1659461010000,\"1431\":1659460924000,\"1432\":1659460860000,\"1433\":1659460783000,\"1434\":1659460747000,\"1435\":1659460628000,\"1436\":1659460627000,\"1437\":1659460547000,\"1438\":1659460481000,\"1439\":1659460427000,\"1440\":1659460408000,\"1441\":1659460329000,\"1442\":1659460254000,\"1443\":1659460218000,\"1444\":1659460133000,\"1445\":1659460053000,\"1446\":1659459876000,\"1447\":1659459777000,\"1448\":1659459730000,\"1449\":1659459542000,\"1450\":1659459510000,\"1451\":1659459502000,\"1452\":1659459410000,\"1453\":1659459214000,\"1454\":1659459001000,\"1455\":1659458986000,\"1456\":1659458976000,\"1457\":1659458916000,\"1458\":1659458689000,\"1459\":1659458614000,\"1460\":1659458488000,\"1461\":1659458484000,\"1462\":1659458414000,\"1463\":1659458313000,\"1464\":1659458157000,\"1465\":1659458149000,\"1466\":1659458053000,\"1467\":1659457949000,\"1468\":1659457875000,\"1469\":1659457807000,\"1470\":1659457615000,\"1471\":1659457377000,\"1472\":1659457342000,\"1473\":1659457275000,\"1474\":1659457229000,\"1475\":1659457221000,\"1476\":1659457179000,\"1477\":1659456973000,\"1478\":1659456927000,\"1479\":1659456895000,\"1480\":1659456890000,\"1481\":1659456864000,\"1482\":1659456722000,\"1483\":1659456705000,\"1484\":1659456694000,\"1485\":1659456620000,\"1486\":1659456297000,\"1487\":1659456264000,\"1488\":1659455985000,\"1489\":1659455972000,\"1490\":1659455921000,\"1491\":1659455679000,\"1492\":1659455627000,\"1493\":1659455540000,\"1494\":1659455537000,\"1495\":1659455427000,\"1496\":1659455393000,\"1497\":1659455270000,\"1498\":1659455146000,\"1499\":1659455134000,\"1500\":1659454973000,\"1501\":1659454858000,\"1502\":1659454773000,\"1503\":1659454712000,\"1504\":1659454646000,\"1505\":1659454640000,\"1506\":1659454621000,\"1507\":1659454515000,\"1508\":1659454496000,\"1509\":1659454447000,\"1510\":1659454434000,\"1511\":1659454433000,\"1512\":1659454427000,\"1513\":1659454391000,\"1514\":1659454386000,\"1515\":1659454375000,\"1516\":1659454356000,\"1517\":1659454292000,\"1518\":1659454285000,\"1519\":1659454116000,\"1520\":1659454068000,\"1521\":1659454036000,\"1522\":1659454006000,\"1523\":1659453929000,\"1524\":1659453883000,\"1525\":1659453747000,\"1526\":1659453727000,\"1527\":1659453681000,\"1528\":1659453670000,\"1529\":1659453564000,\"1530\":1659453426000,\"1531\":1659453396000,\"1532\":1659453347000,\"1533\":1659453263000,\"1534\":1659453151000,\"1535\":1659453110000,\"1536\":1659453056000,\"1537\":1659453022000,\"1538\":1659452997000,\"1539\":1659452991000,\"1540\":1659452939000,\"1541\":1659452924000,\"1542\":1659452906000,\"1543\":1659452877000,\"1544\":1659452867000,\"1545\":1659452845000,\"1546\":1659452822000,\"1547\":1659452821000,\"1548\":1659452705000,\"1549\":1659452696000,\"1550\":1659452691000,\"1551\":1659452687000,\"1552\":1659452552000,\"1553\":1659452509000,\"1554\":1659452359000,\"1555\":1659452357000,\"1556\":1659452338000,\"1557\":1659452329000,\"1558\":1659452322000,\"1559\":1659452296000,\"1560\":1659452287000,\"1561\":1659452219000,\"1562\":1659452204000,\"1563\":1659452177000,\"1564\":1659452169000,\"1565\":1659452147000,\"1566\":1659452133000,\"1567\":1659452114000,\"1568\":1659452105000,\"1569\":1659452090000,\"1570\":1659452047000,\"1571\":1659452046000,\"1572\":1659451999000,\"1573\":1659451888000,\"1574\":1659451883000,\"1575\":1659451883000,\"1576\":1659451854000,\"1577\":1659451838000,\"1578\":1659451836000,\"1579\":1659451830000,\"1580\":1659451727000,\"1581\":1659451668000,\"1582\":1659451633000,\"1583\":1659451601000,\"1584\":1659451580000,\"1585\":1659451519000,\"1586\":1659451497000,\"1587\":1659451463000,\"1588\":1659451440000,\"1589\":1659451437000,\"1590\":1659451430000,\"1591\":1659451384000,\"1592\":1659451348000,\"1593\":1659451338000,\"1594\":1659451302000,\"1595\":1659451231000,\"1596\":1659451227000,\"1597\":1659451225000,\"1598\":1659451188000,\"1599\":1659451071000,\"1600\":1659451052000,\"1601\":1659451049000,\"1602\":1659450983000,\"1603\":1659450879000,\"1604\":1659450876000,\"1605\":1659450715000,\"1606\":1659450691000,\"1607\":1659450682000,\"1608\":1659450652000,\"1609\":1659450645000,\"1610\":1659450583000,\"1611\":1659450567000,\"1612\":1659450531000,\"1613\":1659450525000,\"1614\":1659450426000,\"1615\":1659450373000,\"1616\":1659450289000,\"1617\":1659450220000,\"1618\":1659450208000,\"1619\":1659450132000,\"1620\":1659450024000,\"1621\":1659450001000,\"1622\":1659449965000,\"1623\":1659449875000,\"1624\":1659449835000,\"1625\":1659449811000,\"1626\":1659449793000,\"1627\":1659449766000,\"1628\":1659449720000,\"1629\":1659449714000,\"1630\":1659449571000,\"1631\":1659449499000,\"1632\":1659449484000,\"1633\":1659449449000,\"1634\":1659449429000,\"1635\":1659449394000,\"1636\":1659449376000,\"1637\":1659449365000,\"1638\":1659449293000,\"1639\":1659449276000,\"1640\":1659449106000,\"1641\":1659449057000,\"1642\":1659449009000,\"1643\":1659448965000,\"1644\":1659448837000,\"1645\":1659448664000,\"1646\":1659448603000,\"1647\":1659448600000,\"1648\":1659448529000,\"1649\":1659448484000,\"1650\":1659448440000,\"1651\":1659448350000,\"1652\":1659448190000,\"1653\":1659448157000,\"1654\":1659448096000,\"1655\":1659448050000,\"1656\":1659447944000,\"1657\":1659447927000,\"1658\":1659447923000,\"1659\":1659447872000,\"1660\":1659447756000,\"1661\":1659447703000,\"1662\":1659447622000,\"1663\":1659447498000,\"1664\":1659447494000,\"1665\":1659447451000,\"1666\":1659447380000,\"1667\":1659447290000,\"1668\":1659447232000,\"1669\":1659447049000,\"1670\":1659446990000,\"1671\":1659446983000,\"1672\":1659446964000,\"1673\":1659446917000,\"1674\":1659446882000,\"1675\":1659446856000,\"1676\":1659446808000,\"1677\":1659446742000,\"1678\":1659446729000,\"1679\":1659446516000,\"1680\":1659446425000,\"1681\":1659446274000,\"1682\":1659446205000,\"1683\":1659445917000,\"1684\":1659445902000,\"1685\":1659445843000,\"1686\":1659445795000,\"1687\":1659445762000,\"1688\":1659445741000,\"1689\":1659445709000,\"1690\":1659445677000,\"1691\":1659445645000,\"1692\":1659445612000,\"1693\":1659445593000,\"1694\":1659445578000,\"1695\":1659445488000,\"1696\":1659445478000,\"1697\":1659445442000,\"1698\":1659445417000,\"1699\":1659445402000,\"1700\":1659445355000,\"1701\":1659445330000,\"1702\":1659445292000,\"1703\":1659445276000,\"1704\":1659445119000,\"1705\":1659445057000,\"1706\":1659444989000,\"1707\":1659444885000,\"1708\":1659444852000,\"1709\":1659444819000,\"1710\":1659444674000,\"1711\":1659444640000,\"1712\":1659444596000,\"1713\":1659444551000,\"1714\":1659444532000,\"1715\":1659444396000,\"1716\":1659444289000,\"1717\":1659444028000,\"1718\":1659443744000,\"1719\":1659443622000,\"1720\":1659443457000,\"1721\":1659443357000,\"1722\":1659443214000,\"1723\":1659443202000,\"1724\":1659443123000,\"1725\":1659442870000,\"1726\":1659442827000,\"1727\":1659442652000,\"1728\":1659442621000,\"1729\":1659442302000,\"1730\":1659442266000,\"1731\":1659442134000,\"1732\":1659442084000,\"1733\":1659441910000,\"1734\":1659441805000,\"1735\":1659441740000,\"1736\":1659441731000,\"1737\":1659441680000,\"1738\":1659441571000,\"1739\":1659441410000,\"1740\":1659441395000,\"1741\":1659441347000,\"1742\":1659441341000,\"1743\":1659441197000,\"1744\":1659441189000,\"1745\":1659441058000,\"1746\":1659440965000,\"1747\":1659440956000,\"1748\":1659440866000,\"1749\":1659440545000,\"1750\":1659440447000,\"1751\":1659440391000,\"1752\":1659440352000,\"1753\":1659440295000,\"1754\":1659440199000,\"1755\":1659440138000,\"1756\":1659440135000,\"1757\":1659440086000,\"1758\":1659440021000,\"1759\":1659439867000,\"1760\":1659439723000,\"1761\":1659439502000,\"1762\":1659439320000,\"1763\":1659439187000,\"1764\":1659438860000,\"1765\":1659438757000,\"1766\":1659438734000,\"1767\":1659438666000,\"1768\":1659438488000,\"1769\":1659438383000,\"1770\":1659438336000,\"1771\":1659438282000,\"1772\":1659438074000,\"1773\":1659437724000,\"1774\":1659437675000,\"1775\":1659437672000,\"1776\":1659437501000,\"1777\":1659437464000,\"1778\":1659437444000,\"1779\":1659437432000,\"1780\":1659437420000,\"1781\":1659437206000,\"1782\":1659437080000,\"1783\":1659437060000,\"1784\":1659436950000,\"1785\":1659436922000,\"1786\":1659436460000,\"1787\":1659436187000,\"1788\":1659436107000,\"1789\":1659435911000,\"1790\":1659435864000,\"1791\":1659435787000,\"1792\":1659435722000,\"1793\":1659435496000,\"1794\":1659435263000,\"1795\":1659435212000,\"1796\":1659435182000,\"1797\":1659434927000,\"1798\":1659434732000,\"1799\":1659434649000,\"1800\":1659434609000,\"1801\":1659434533000,\"1802\":1659434358000,\"1803\":1659434264000,\"1804\":1659434137000,\"1805\":1659433998000,\"1806\":1659433952000,\"1807\":1659433897000,\"1808\":1659433745000,\"1809\":1659433590000,\"1810\":1659433578000,\"1811\":1659432818000,\"1812\":1659432803000,\"1813\":1659432469000,\"1814\":1659432226000,\"1815\":1659432129000,\"1816\":1659432013000,\"1817\":1659431727000,\"1818\":1659430876000,\"1819\":1659430558000,\"1820\":1659430453000,\"1821\":1659430186000,\"1822\":1659429321000,\"1823\":1659427791000,\"1824\":1659425063000,\"1825\":1659424828000,\"1826\":1659420774000,\"1827\":1659418460000,\"1828\":1659417544000,\"1829\":1659416659000,\"1830\":1659416230000,\"1831\":1659416095000,\"1832\":1659414582000,\"1833\":1659414022000,\"1834\":1659413329000,\"1835\":1659411424000,\"1836\":1659411380000,\"1837\":1659410971000,\"1838\":1659408401000,\"1839\":1659408290000,\"1840\":1659405974000,\"1841\":1659403735000,\"1842\":1659403602000,\"1843\":1659403234000,\"1844\":1659400624000,\"1845\":1659400304000,\"1846\":1659399374000,\"1847\":1659399371000,\"1848\":1659398286000,\"1849\":1659397934000,\"1850\":1659397711000,\"1851\":1659397028000,\"1852\":1659396468000,\"1853\":1659396347000,\"1854\":1659394592000,\"1855\":1659393917000,\"1856\":1659393609000,\"1857\":1659393608000,\"1858\":1659393560000,\"1859\":1659393362000,\"1860\":1659393242000,\"1861\":1659393144000,\"1862\":1659393130000,\"1863\":1659393102000,\"1864\":1659392918000,\"1865\":1659392658000,\"1866\":1659392602000,\"1867\":1659391764000,\"1868\":1659391517000,\"1869\":1659391441000,\"1870\":1659391163000,\"1871\":1659389969000,\"1872\":1659389911000,\"1873\":1659389417000,\"1874\":1659389375000,\"1875\":1659388685000,\"1876\":1659387814000,\"1877\":1659387785000,\"1878\":1659387371000,\"1879\":1659386814000,\"1880\":1659386626000,\"1881\":1659386242000,\"1882\":1659386050000,\"1883\":1659384764000,\"1884\":1659384344000,\"1885\":1659384326000,\"1886\":1659384305000,\"1887\":1659383659000,\"1888\":1659383537000,\"1889\":1659383157000,\"1890\":1659382964000,\"1891\":1659382812000,\"1892\":1659382594000,\"1893\":1659382100000,\"1894\":1659381902000,\"1895\":1659381622000,\"1896\":1659381407000,\"1897\":1659381190000,\"1898\":1659381027000,\"1899\":1659380810000,\"1900\":1659380736000,\"1901\":1659380565000,\"1902\":1659380482000,\"1903\":1659379698000,\"1904\":1659379389000,\"1905\":1659379328000,\"1906\":1659379308000,\"1907\":1659378797000,\"1908\":1659378708000,\"1909\":1659378284000,\"1910\":1659378257000,\"1911\":1659377910000,\"1912\":1659377793000,\"1913\":1659377729000,\"1914\":1659377715000,\"1915\":1659377174000,\"1916\":1659377124000,\"1917\":1659376976000,\"1918\":1659376976000,\"1919\":1659376972000,\"1920\":1659376930000,\"1921\":1659376880000,\"1922\":1659376829000,\"1923\":1659376810000,\"1924\":1659376537000,\"1925\":1659376486000,\"1926\":1659376305000,\"1927\":1659376287000,\"1928\":1659376206000,\"1929\":1659376200000,\"1930\":1659376183000,\"1931\":1659376178000,\"1932\":1659376168000,\"1933\":1659376161000,\"1934\":1659376156000,\"1935\":1659376146000,\"1936\":1659376139000,\"1937\":1659376127000,\"1938\":1659376111000,\"1939\":1659376091000,\"1940\":1659376088000,\"1941\":1659376030000,\"1942\":1659375994000,\"1943\":1659375693000,\"1944\":1659375575000,\"1945\":1659375531000,\"1946\":1659375523000,\"1947\":1659375518000,\"1948\":1659375501000,\"1949\":1659375485000,\"1950\":1659375456000,\"1951\":1659375402000,\"1952\":1659375374000,\"1953\":1659375265000,\"1954\":1659375231000,\"1955\":1659375197000,\"1956\":1659375194000,\"1957\":1659375174000,\"1958\":1659375155000,\"1959\":1659375109000,\"1960\":1659375019000,\"1961\":1659374906000,\"1962\":1659374761000,\"1963\":1659374734000,\"1964\":1659374720000,\"1965\":1659374654000,\"1966\":1659374633000,\"1967\":1659374619000,\"1968\":1659374587000,\"1969\":1659374541000,\"1970\":1659374532000,\"1971\":1659374523000,\"1972\":1659374461000,\"1973\":1659374451000,\"1974\":1659374420000,\"1975\":1659374400000,\"1976\":1659374336000,\"1977\":1659374310000,\"1978\":1659374301000,\"1979\":1659374288000,\"1980\":1659374278000,\"1981\":1659374262000,\"1982\":1659374234000,\"1983\":1659374214000,\"1984\":1659374154000,\"1985\":1659374115000,\"1986\":1659374069000,\"1987\":1659374056000,\"1988\":1659374040000,\"1989\":1659374023000,\"1990\":1659374019000,\"1991\":1659373959000,\"1992\":1659373949000,\"1993\":1659373933000,\"1994\":1659373920000,\"1995\":1659373907000,\"1996\":1659373776000,\"1997\":1659373765000,\"1998\":1659373673000,\"1999\":1659373614000,\"2000\":1659373599000,\"2001\":1659373569000,\"2002\":1659373546000,\"2003\":1659373533000,\"2004\":1659373500000,\"2005\":1659373472000,\"2006\":1659373449000,\"2007\":1659373438000,\"2008\":1659373403000,\"2009\":1659373402000,\"2010\":1659373371000,\"2011\":1659373364000,\"2012\":1659373330000,\"2013\":1659373303000,\"2014\":1659373278000,\"2015\":1659373248000,\"2016\":1659373078000,\"2017\":1659372735000,\"2018\":1659372544000,\"2019\":1659372463000,\"2020\":1659372144000,\"2021\":1659372139000,\"2022\":1659372121000,\"2023\":1659372110000,\"2024\":1659372091000,\"2025\":1659372028000,\"2026\":1659372018000,\"2027\":1659372012000,\"2028\":1659371979000,\"2029\":1659371967000,\"2030\":1659371931000,\"2031\":1659371922000,\"2032\":1659371876000,\"2033\":1659371855000,\"2034\":1659371808000,\"2035\":1659371791000,\"2036\":1659371779000,\"2037\":1659371768000,\"2038\":1659371720000,\"2039\":1659371701000,\"2040\":1659371673000,\"2041\":1659371649000,\"2042\":1659371637000,\"2043\":1659371620000,\"2044\":1659371607000,\"2045\":1659371600000,\"2046\":1659371585000,\"2047\":1659371550000,\"2048\":1659371490000,\"2049\":1659371467000,\"2050\":1659371463000,\"2051\":1659371441000,\"2052\":1659371293000,\"2053\":1659371108000,\"2054\":1659370958000,\"2055\":1659370944000,\"2056\":1659370887000,\"2057\":1659370639000,\"2058\":1659369836000,\"2059\":1659369616000,\"2060\":1659367916000,\"2061\":1659367775000,\"2062\":1659367686000,\"2063\":1659367676000,\"2064\":1659367194000,\"2065\":1659366860000,\"2066\":1659366680000,\"2067\":1659366225000,\"2068\":1659366216000,\"2069\":1659366211000,\"2070\":1659366210000,\"2071\":1659365842000,\"2072\":1659365572000,\"2073\":1659365464000,\"2074\":1659365183000,\"2075\":1659364775000,\"2076\":1659364492000,\"2077\":1659364370000,\"2078\":1659364135000,\"2079\":1659362049000,\"2080\":1659361517000,\"2081\":1659361200000,\"2082\":1659361076000,\"2083\":1659361071000,\"2084\":1659360955000,\"2085\":1659360709000,\"2086\":1659360559000,\"2087\":1659360505000,\"2088\":1659360395000,\"2089\":1659360283000,\"2090\":1659360068000,\"2091\":1659359970000,\"2092\":1659359959000,\"2093\":1659359932000,\"2094\":1659359655000,\"2095\":1659359202000,\"2096\":1659359181000,\"2097\":1659359152000,\"2098\":1659359145000,\"2099\":1659359131000,\"2100\":1659358488000,\"2101\":1659358333000,\"2102\":1659358238000,\"2103\":1659358119000,\"2104\":1659358113000,\"2105\":1659358048000,\"2106\":1659357976000,\"2107\":1659357950000,\"2108\":1659357905000,\"2109\":1659357815000,\"2110\":1659357807000,\"2111\":1659357799000,\"2112\":1659357776000,\"2113\":1659357758000,\"2114\":1659357728000,\"2115\":1659357643000,\"2116\":1659357601000,\"2117\":1659357510000,\"2118\":1659357367000,\"2119\":1659357301000,\"2120\":1659356431000,\"2121\":1659356426000,\"2122\":1659355591000,\"2123\":1659355564000,\"2124\":1659355514000,\"2125\":1659355499000,\"2126\":1659355459000,\"2127\":1659355425000,\"2128\":1659355385000,\"2129\":1659355320000,\"2130\":1659355278000,\"2131\":1659355247000,\"2132\":1659355220000,\"2133\":1659355177000,\"2134\":1659355129000,\"2135\":1659355115000,\"2136\":1659355075000,\"2137\":1659355063000,\"2138\":1659355018000,\"2139\":1659355008000,\"2140\":1659354998000,\"2141\":1659354938000,\"2142\":1659354889000,\"2143\":1659354881000,\"2144\":1659354873000,\"2145\":1659354859000,\"2146\":1659354845000,\"2147\":1659354812000,\"2148\":1659354805000,\"2149\":1659354791000,\"2150\":1659354778000,\"2151\":1659354580000,\"2152\":1659354572000,\"2153\":1659354509000,\"2154\":1659354455000,\"2155\":1659354415000,\"2156\":1659354397000,\"2157\":1659354080000,\"2158\":1659354076000,\"2159\":1659354071000,\"2160\":1659354065000,\"2161\":1659354059000,\"2162\":1659354050000,\"2163\":1659354020000,\"2164\":1659354014000,\"2165\":1659354009000,\"2166\":1659353999000,\"2167\":1659353995000,\"2168\":1659353984000,\"2169\":1659353958000,\"2170\":1659353945000,\"2171\":1659353938000,\"2172\":1659353934000,\"2173\":1659353920000,\"2174\":1659353901000,\"2175\":1659353893000,\"2176\":1659353887000,\"2177\":1659353874000,\"2178\":1659353799000,\"2179\":1659353408000,\"2180\":1659353373000,\"2181\":1659353331000,\"2182\":1659353293000,\"2183\":1659353252000,\"2184\":1659353243000,\"2185\":1659353235000,\"2186\":1659353166000,\"2187\":1659353124000,\"2188\":1659353106000,\"2189\":1659353081000,\"2190\":1659353057000,\"2191\":1659352896000,\"2192\":1659352882000,\"2193\":1659352874000,\"2194\":1659352121000,\"2195\":1659352114000,\"2196\":1659352057000,\"2197\":1659352050000,\"2198\":1659352041000,\"2199\":1659351891000,\"2200\":1659351876000,\"2201\":1659351870000,\"2202\":1659351865000,\"2203\":1659351851000,\"2204\":1659351745000,\"2205\":1659351726000,\"2206\":1659351708000,\"2207\":1659351702000,\"2208\":1659351694000,\"2209\":1659351682000,\"2210\":1659351658000,\"2211\":1659351650000,\"2212\":1659351646000,\"2213\":1659351641000,\"2214\":1659351627000,\"2215\":1659351613000,\"2216\":1659350911000,\"2217\":1659349602000,\"2218\":1659349408000,\"2219\":1659348926000,\"2220\":1659348486000,\"2221\":1659348074000,\"2222\":1659347952000,\"2223\":1659347860000,\"2224\":1659347801000,\"2225\":1659347747000,\"2226\":1659347100000,\"2227\":1659346301000,\"2228\":1659346113000,\"2229\":1659345488000,\"2230\":1659345291000,\"2231\":1659344805000,\"2232\":1659344759000,\"2233\":1659344473000,\"2234\":1659344431000,\"2235\":1659343966000,\"2236\":1659343768000,\"2237\":1659342915000,\"2238\":1659340701000,\"2239\":1659339243000,\"2240\":1659339230000,\"2241\":1659339222000,\"2242\":1659339130000,\"2243\":1659339080000,\"2244\":1659339022000,\"2245\":1659337419000,\"2246\":1659337347000,\"2247\":1659337274000,\"2248\":1659337267000,\"2249\":1659337263000,\"2250\":1659337257000,\"2251\":1659337233000,\"2252\":1659337014000,\"2253\":1659337002000,\"2254\":1659336991000,\"2255\":1659336983000,\"2256\":1659336745000,\"2257\":1659336729000,\"2258\":1659335527000,\"2259\":1659335134000,\"2260\":1659335055000,\"2261\":1659334421000,\"2262\":1659334419000,\"2263\":1659333963000,\"2264\":1659333254000,\"2265\":1659333017000,\"2266\":1659332838000,\"2267\":1659332809000,\"2268\":1659326177000,\"2269\":1659326161000,\"2270\":1659325993000,\"2271\":1659325936000,\"2272\":1659325930000,\"2273\":1659325921000,\"2274\":1659325860000,\"2275\":1659325668000,\"2276\":1659324038000,\"2277\":1659323737000,\"2278\":1659322439000,\"2279\":1659322431000,\"2280\":1659322427000,\"2281\":1659322415000,\"2282\":1659322408000,\"2283\":1659322398000,\"2284\":1659322394000,\"2285\":1659316109000,\"2286\":1659316087000,\"2287\":1659316071000,\"2288\":1659316020000,\"2289\":1659315960000,\"2290\":1659315803000,\"2291\":1659301286000,\"2292\":1659297149000,\"2293\":1659293459000,\"2294\":1659287082000,\"2295\":1659285600000,\"2296\":1659282677000,\"2297\":1659278344000,\"2298\":1659277833000,\"2299\":1659277628000,\"2300\":1659277515000,\"2301\":1659277500000,\"2302\":1659277494000,\"2303\":1659277338000,\"2304\":1659276898000,\"2305\":1659276311000,\"2306\":1659275245000,\"2307\":1659274758000,\"2308\":1659274555000,\"2309\":1659273478000,\"2310\":1659273316000,\"2311\":1659273010000,\"2312\":1659272870000,\"2313\":1659272296000,\"2314\":1659270836000,\"2315\":1659270742000,\"2316\":1659270180000,\"2317\":1659270057000,\"2318\":1659269977000,\"2319\":1659269790000,\"2320\":1659269710000,\"2321\":1659269622000,\"2322\":1659269522000,\"2323\":1659269277000,\"2324\":1659269174000,\"2325\":1659269085000,\"2326\":1659268878000,\"2327\":1659268696000,\"2328\":1659268449000,\"2329\":1659267883000,\"2330\":1659267188000,\"2331\":1659266496000,\"2332\":1659266121000,\"2333\":1659266098000,\"2334\":1659265382000,\"2335\":1659265166000,\"2336\":1659264621000,\"2337\":1659264448000,\"2338\":1659264422000,\"2339\":1659264413000,\"2340\":1659264213000,\"2341\":1659263865000,\"2342\":1659263330000,\"2343\":1659263321000,\"2344\":1659263313000,\"2345\":1659263110000,\"2346\":1659263074000,\"2347\":1659263012000,\"2348\":1659262988000,\"2349\":1659262977000,\"2350\":1659262940000,\"2351\":1659262917000,\"2352\":1659262883000,\"2353\":1659262874000,\"2354\":1659262572000,\"2355\":1659262551000,\"2356\":1659262513000,\"2357\":1659262391000,\"2358\":1659262065000,\"2359\":1659261877000,\"2360\":1659261738000,\"2361\":1659261446000,\"2362\":1659261400000,\"2363\":1659260982000,\"2364\":1659260981000,\"2365\":1659260549000,\"2366\":1659260523000,\"2367\":1659260466000,\"2368\":1659260395000,\"2369\":1659260076000,\"2370\":1659259853000,\"2371\":1659259366000,\"2372\":1659259258000,\"2373\":1659259034000,\"2374\":1659258959000,\"2375\":1659258362000,\"2376\":1659258338000,\"2377\":1659258264000,\"2378\":1659257497000,\"2379\":1659257454000,\"2380\":1659257304000,\"2381\":1659257029000,\"2382\":1659257010000,\"2383\":1659256855000,\"2384\":1659256835000,\"2385\":1659256494000,\"2386\":1659256236000,\"2387\":1659255831000,\"2388\":1659255734000,\"2389\":1659255514000,\"2390\":1659254714000,\"2391\":1659254684000,\"2392\":1659254504000,\"2393\":1659254012000,\"2394\":1659253653000,\"2395\":1659253611000,\"2396\":1659253264000,\"2397\":1659252945000,\"2398\":1659252691000,\"2399\":1659252056000,\"2400\":1659252033000,\"2401\":1659251272000,\"2402\":1659251216000,\"2403\":1659251063000,\"2404\":1659250013000,\"2405\":1659248354000,\"2406\":1659248182000,\"2407\":1659247981000,\"2408\":1659246925000,\"2409\":1659244915000,\"2410\":1659244475000,\"2411\":1659244432000,\"2412\":1659244392000,\"2413\":1659244351000,\"2414\":1659244343000,\"2415\":1659244325000,\"2416\":1659243913000,\"2417\":1659243868000,\"2418\":1659243472000,\"2419\":1659243455000,\"2420\":1659243418000,\"2421\":1659243090000,\"2422\":1659243075000,\"2423\":1659243058000,\"2424\":1659242977000,\"2425\":1659242898000,\"2426\":1659242202000,\"2427\":1659242188000,\"2428\":1659242177000,\"2429\":1659242169000,\"2430\":1659242158000,\"2431\":1659242147000,\"2432\":1659242132000,\"2433\":1659242107000,\"2434\":1659242054000,\"2435\":1659242045000,\"2436\":1659242037000,\"2437\":1659241962000,\"2438\":1659241811000,\"2439\":1659241799000,\"2440\":1659241684000,\"2441\":1659241531000,\"2442\":1659241424000,\"2443\":1659241358000,\"2444\":1659241323000,\"2445\":1659241301000,\"2446\":1659241238000,\"2447\":1659241193000,\"2448\":1659241186000,\"2449\":1659241176000,\"2450\":1659237896000,\"2451\":1659233660000,\"2452\":1659233266000,\"2453\":1659233223000,\"2454\":1659232573000,\"2455\":1659232490000,\"2456\":1659231975000,\"2457\":1659230496000,\"2458\":1659222595000,\"2459\":1659222456000,\"2460\":1659222287000,\"2461\":1659222017000,\"2462\":1659221090000,\"2463\":1659211443000,\"2464\":1659211415000,\"2465\":1659211397000,\"2466\":1659211383000,\"2467\":1659211371000,\"2468\":1659211357000,\"2469\":1659211322000,\"2470\":1659211310000,\"2471\":1659211267000,\"2472\":1659211257000,\"2473\":1659211237000,\"2474\":1659211229000,\"2475\":1659211224000,\"2476\":1659211200000,\"2477\":1659211169000,\"2478\":1659211127000,\"2479\":1659211111000,\"2480\":1659211090000,\"2481\":1659211074000,\"2482\":1659211055000,\"2483\":1659211022000,\"2484\":1659211006000,\"2485\":1659210994000,\"2486\":1659210985000,\"2487\":1659210923000,\"2488\":1659210908000,\"2489\":1659210902000,\"2490\":1659210891000,\"2491\":1659210835000,\"2492\":1659210810000,\"2493\":1659210391000,\"2494\":1659210385000,\"2495\":1659210366000,\"2496\":1659210356000,\"2497\":1659210326000,\"2498\":1659210317000,\"2499\":1659210230000,\"2500\":1659210222000,\"2501\":1659210214000,\"2502\":1659210194000,\"2503\":1659210185000,\"2504\":1659210174000,\"2505\":1659210161000,\"2506\":1659210154000,\"2507\":1659210134000,\"2508\":1659210087000,\"2509\":1659210075000,\"2510\":1659210063000,\"2511\":1659210046000,\"2512\":1659210036000,\"2513\":1659210027000,\"2514\":1659209996000,\"2515\":1659209973000,\"2516\":1659209965000,\"2517\":1659209937000,\"2518\":1659209923000,\"2519\":1659209918000,\"2520\":1659209900000,\"2521\":1659209892000,\"2522\":1659209865000,\"2523\":1659209853000,\"2524\":1659209821000,\"2525\":1659209812000,\"2526\":1659209796000,\"2527\":1659209783000,\"2528\":1659209771000,\"2529\":1659209737000,\"2530\":1659209510000,\"2531\":1659209493000,\"2532\":1659209444000,\"2533\":1659209426000,\"2534\":1659209398000,\"2535\":1659209363000,\"2536\":1659209311000,\"2537\":1659209302000,\"2538\":1659209239000,\"2539\":1659209137000,\"2540\":1659209094000,\"2541\":1659208950000,\"2542\":1659208907000,\"2543\":1659208851000,\"2544\":1659208830000,\"2545\":1659208771000,\"2546\":1659208728000,\"2547\":1659208667000,\"2548\":1659196125000,\"2549\":1659196000000,\"2550\":1659193070000,\"2551\":1659192145000,\"2552\":1659190666000,\"2553\":1659190029000,\"2554\":1659189122000,\"2555\":1659188804000,\"2556\":1659187891000,\"2557\":1659174318000,\"2558\":1659144789000,\"2559\":1659144729000,\"2560\":1659144676000,\"2561\":1659142953000,\"2562\":1659142786000,\"2563\":1659134048000,\"2564\":1659126187000,\"2565\":1659125129000,\"2566\":1659125030000,\"2567\":1659124903000,\"2568\":1659124881000,\"2569\":1659124770000,\"2570\":1659124202000,\"2571\":1659124139000,\"2572\":1659124080000,\"2573\":1659101255000,\"2574\":1659101196000,\"2575\":1659093822000,\"2576\":1659093420000,\"2577\":1659085971000,\"2578\":1659084704000,\"2579\":1659084659000,\"2580\":1659084487000,\"2581\":1659084468000,\"2582\":1659084448000,\"2583\":1659084415000,\"2584\":1659084389000,\"2585\":1659084372000,\"2586\":1659084351000,\"2587\":1659084329000,\"2588\":1659084310000,\"2589\":1659084247000,\"2590\":1659084214000,\"2591\":1659084193000,\"2592\":1659084168000,\"2593\":1659084141000,\"2594\":1659084114000,\"2595\":1659084094000,\"2596\":1659084070000,\"2597\":1659083868000,\"2598\":1659881627000,\"2599\":1659867135000,\"2600\":1659854746000,\"2601\":1659854701000,\"2602\":1659790070000,\"2603\":1659786885000,\"2604\":1659780331000,\"2605\":1659775705000,\"2606\":1659773928000,\"2607\":1659773909000,\"2608\":1659773894000,\"2609\":1659768568000,\"2610\":1659763922000,\"2611\":1659763001000,\"2612\":1659727323000,\"2613\":1659725495000,\"2614\":1659725292000,\"2615\":1659682723000,\"2616\":1659682617000,\"2617\":1659676312000,\"2618\":1659673627000,\"2619\":1659655449000,\"2620\":1659647299000,\"2621\":1659641805000,\"2622\":1659640384000,\"2623\":1659634166000,\"2624\":1659633078000,\"2625\":1659632821000,\"2626\":1659630911000,\"2627\":1659630693000,\"2628\":1659628821000,\"2629\":1659628742000,\"2630\":1659628608000,\"2631\":1659628418000,\"2632\":1659626919000,\"2633\":1659626503000,\"2634\":1659623538000,\"2635\":1659622709000,\"2636\":1659619347000,\"2637\":1659619195000,\"2638\":1659617753000,\"2639\":1659613635000,\"2640\":1659611820000,\"2641\":1659610266000,\"2642\":1659608986000,\"2643\":1659604036000,\"2644\":1659602094000,\"2645\":1659601961000,\"2646\":1659599009000,\"2647\":1659593018000,\"2648\":1659580837000,\"2649\":1659565557000,\"2650\":1659564325000,\"2651\":1659561968000,\"2652\":1659561766000,\"2653\":1659558214000,\"2654\":1659556957000,\"2655\":1659556060000,\"2656\":1659555012000,\"2657\":1659554711000,\"2658\":1659553635000,\"2659\":1659552772000,\"2660\":1659552667000,\"2661\":1659551126000,\"2662\":1659550564000,\"2663\":1659548645000,\"2664\":1659543483000,\"2665\":1659543013000,\"2666\":1659541634000,\"2667\":1659541052000,\"2668\":1659539725000,\"2669\":1659537566000,\"2670\":1659534431000,\"2671\":1659533741000,\"2672\":1659533628000,\"2673\":1659532257000,\"2674\":1659528102000,\"2675\":1659527843000,\"2676\":1659526853000,\"2677\":1659526580000,\"2678\":1659525698000,\"2679\":1659523932000,\"2680\":1659523029000,\"2681\":1659522918000,\"2682\":1659522536000,\"2683\":1659522500000,\"2684\":1659521783000,\"2685\":1659520537000,\"2686\":1659520152000,\"2687\":1659519716000,\"2688\":1659519632000,\"2689\":1659519416000,\"2690\":1659519262000,\"2691\":1659518955000,\"2692\":1659518626000,\"2693\":1659518556000,\"2694\":1659517790000,\"2695\":1659515934000,\"2696\":1659513843000,\"2697\":1659513123000,\"2698\":1659512656000,\"2699\":1659512380000,\"2700\":1659512263000,\"2701\":1659511978000,\"2702\":1659509755000,\"2703\":1659509545000,\"2704\":1659509544000,\"2705\":1659509544000,\"2706\":1659509543000,\"2707\":1659509541000,\"2708\":1659509108000,\"2709\":1659509032000,\"2710\":1659508976000,\"2711\":1659508376000,\"2712\":1659507613000,\"2713\":1659507414000,\"2714\":1659503389000,\"2715\":1659503257000,\"2716\":1659503190000,\"2717\":1659502547000,\"2718\":1659502325000,\"2719\":1659499628000,\"2720\":1659498551000,\"2721\":1659495146000,\"2722\":1659491450000,\"2723\":1659490547000,\"2724\":1659484390000,\"2725\":1659482439000,\"2726\":1659477215000,\"2727\":1659476992000,\"2728\":1659475666000,\"2729\":1659475384000,\"2730\":1659475381000,\"2731\":1659474424000,\"2732\":1659473218000,\"2733\":1659472397000,\"2734\":1659470870000,\"2735\":1659469406000,\"2736\":1659468575000,\"2737\":1659466504000,\"2738\":1659466288000,\"2739\":1659466106000,\"2740\":1659465911000,\"2741\":1659465789000,\"2742\":1659465065000,\"2743\":1659464385000,\"2744\":1659464355000,\"2745\":1659464111000,\"2746\":1659464057000,\"2747\":1659464037000,\"2748\":1659463975000,\"2749\":1659463920000,\"2750\":1659463464000,\"2751\":1659462635000,\"2752\":1659460967000,\"2753\":1659460860000,\"2754\":1659460787000,\"2755\":1659460375000,\"2756\":1659459857000,\"2757\":1659459534000,\"2758\":1659459098000,\"2759\":1659458989000,\"2760\":1659458154000,\"2761\":1659458075000,\"2762\":1659457782000,\"2763\":1659456767000,\"2764\":1659456698000,\"2765\":1659455646000,\"2766\":1659455293000,\"2767\":1659455112000,\"2768\":1659454766000,\"2769\":1659454582000,\"2770\":1659454310000,\"2771\":1659454239000,\"2772\":1659454206000,\"2773\":1659453483000,\"2774\":1659453222000,\"2775\":1659453013000,\"2776\":1659452432000,\"2777\":1659452199000,\"2778\":1659451891000,\"2779\":1659451855000,\"2780\":1659451703000,\"2781\":1659451693000,\"2782\":1659451674000,\"2783\":1659451623000,\"2784\":1659451434000,\"2785\":1659451405000,\"2786\":1659449625000,\"2787\":1659449279000,\"2788\":1659447075000,\"2789\":1659446448000,\"2790\":1659445808000,\"2791\":1659444539000,\"2792\":1659444430000,\"2793\":1659444213000,\"2794\":1659444120000,\"2795\":1659443823000,\"2796\":1659443673000,\"2797\":1659443231000,\"2798\":1659443186000,\"2799\":1659443150000,\"2800\":1659442705000,\"2801\":1659441284000,\"2802\":1659440203000,\"2803\":1659439721000,\"2804\":1659439449000,\"2805\":1659437051000,\"2806\":1659436251000,\"2807\":1659436024000,\"2808\":1659435722000,\"2809\":1659433652000,\"2810\":1659432653000,\"2811\":1659431348000,\"2812\":1659430614000,\"2813\":1659430407000,\"2814\":1659430122000,\"2815\":1659426107000,\"2816\":1659416841000,\"2817\":1659416568000,\"2818\":1659412541000,\"2819\":1659399114000,\"2820\":1659384736000,\"2821\":1659380056000,\"2822\":1659377372000,\"2823\":1659377346000,\"2824\":1659376395000,\"2825\":1659375671000,\"2826\":1659365088000,\"2827\":1659364537000,\"2828\":1659361712000,\"2829\":1659361591000,\"2830\":1659359860000,\"2831\":1659358061000,\"2832\":1659355658000,\"2833\":1659355657000,\"2834\":1659349394000,\"2835\":1659347726000,\"2836\":1659274367000,\"2837\":1659262352000,\"2838\":1659262035000,\"2839\":1659256441000,\"2840\":1659207965000,\"2841\":1659187657000,\"2842\":1659171750000,\"2843\":1659167744000,\"2844\":1659162847000,\"2845\":1659126479000,\"2846\":1659103385000,\"2847\":1659077824000,\"2848\":1659876706000,\"2849\":1659857408000,\"2850\":1659847079000,\"2851\":1659845052000,\"2852\":1659844958000,\"2853\":1659816738000,\"2854\":1659812465000,\"2855\":1659810656000,\"2856\":1659802139000,\"2857\":1659800038000,\"2858\":1659795595000,\"2859\":1659795366000,\"2860\":1659795207000,\"2861\":1659791451000,\"2862\":1659787234000,\"2863\":1659787196000,\"2864\":1659773409000,\"2865\":1659772131000,\"2866\":1659758420000,\"2867\":1659755024000,\"2868\":1659736406000,\"2869\":1659729862000,\"2870\":1659729856000,\"2871\":1659729681000,\"2872\":1659729111000,\"2873\":1659728991000,\"2874\":1659719316000,\"2875\":1659718791000,\"2876\":1659718676000,\"2877\":1659714604000,\"2878\":1659711728000,\"2879\":1659708703000,\"2880\":1659701358000,\"2881\":1659701358000,\"2882\":1659699683000,\"2883\":1659696881000,\"2884\":1659691423000,\"2885\":1659689195000,\"2886\":1659687417000,\"2887\":1659687412000,\"2888\":1659686581000,\"2889\":1659686007000,\"2890\":1659680794000,\"2891\":1659678964000,\"2892\":1659678350000,\"2893\":1659678017000,\"2894\":1659677710000,\"2895\":1659677159000,\"2896\":1659676929000,\"2897\":1659676748000,\"2898\":1659676134000,\"2899\":1659674647000,\"2900\":1659674022000,\"2901\":1659673094000,\"2902\":1659672286000,\"2903\":1659672172000,\"2904\":1659671466000,\"2905\":1659669984000,\"2906\":1659665437000,\"2907\":1659664132000,\"2908\":1659662649000,\"2909\":1659657397000,\"2910\":1659657243000,\"2911\":1659655443000,\"2912\":1659654635000,\"2913\":1659651452000,\"2914\":1659651410000,\"2915\":1659650711000,\"2916\":1659650650000,\"2917\":1659650642000,\"2918\":1659650510000,\"2919\":1659649666000,\"2920\":1659648155000,\"2921\":1659647275000,\"2922\":1659647031000,\"2923\":1659647016000,\"2924\":1659645040000,\"2925\":1659644784000,\"2926\":1659644122000,\"2927\":1659642618000,\"2928\":1659642562000,\"2929\":1659641250000,\"2930\":1659641105000,\"2931\":1659640963000,\"2932\":1659640881000,\"2933\":1659640409000,\"2934\":1659640345000,\"2935\":1659636731000,\"2936\":1659636368000,\"2937\":1659635640000,\"2938\":1659635493000,\"2939\":1659635208000,\"2940\":1659634948000,\"2941\":1659634778000,\"2942\":1659634479000,\"2943\":1659633401000,\"2944\":1659633247000,\"2945\":1659632865000,\"2946\":1659632487000,\"2947\":1659632172000,\"2948\":1659632070000,\"2949\":1659631040000,\"2950\":1659630953000,\"2951\":1659630471000,\"2952\":1659629364000,\"2953\":1659628131000,\"2954\":1659626715000,\"2955\":1659626161000,\"2956\":1659624545000,\"2957\":1659624480000,\"2958\":1659624404000,\"2959\":1659624310000,\"2960\":1659624289000,\"2961\":1659624251000,\"2962\":1659624201000,\"2963\":1659623973000,\"2964\":1659623011000,\"2965\":1659622814000,\"2966\":1659622777000,\"2967\":1659621625000,\"2968\":1659621426000,\"2969\":1659620944000,\"2970\":1659619856000,\"2971\":1659618896000,\"2972\":1659618020000,\"2973\":1659617606000,\"2974\":1659617580000,\"2975\":1659617394000,\"2976\":1659617170000,\"2977\":1659616236000,\"2978\":1659615933000,\"2979\":1659615250000,\"2980\":1659614305000,\"2981\":1659613312000,\"2982\":1659612726000,\"2983\":1659612264000,\"2984\":1659611557000,\"2985\":1659611484000,\"2986\":1659611368000,\"2987\":1659610482000,\"2988\":1659610251000,\"2989\":1659609694000,\"2990\":1659609558000,\"2991\":1659609392000,\"2992\":1659609190000,\"2993\":1659609041000,\"2994\":1659608892000,\"2995\":1659608412000,\"2996\":1659608301000,\"2997\":1659608251000,\"2998\":1659608043000,\"2999\":1659607744000,\"3000\":1659607495000,\"3001\":1659607072000,\"3002\":1659606656000,\"3003\":1659606467000,\"3004\":1659606408000,\"3005\":1659606300000,\"3006\":1659606136000,\"3007\":1659605196000,\"3008\":1659605050000,\"3009\":1659604240000,\"3010\":1659603162000,\"3011\":1659603014000,\"3012\":1659602270000,\"3013\":1659601884000,\"3014\":1659601169000,\"3015\":1659600797000,\"3016\":1659600743000,\"3017\":1659600691000,\"3018\":1659600545000,\"3019\":1659600446000,\"3020\":1659599986000,\"3021\":1659599978000,\"3022\":1659599756000,\"3023\":1659599476000,\"3024\":1659599180000,\"3025\":1659598990000,\"3026\":1659598620000,\"3027\":1659598456000,\"3028\":1659598014000,\"3029\":1659597935000,\"3030\":1659597320000,\"3031\":1659597213000,\"3032\":1659597135000,\"3033\":1659596579000,\"3034\":1659596131000,\"3035\":1659596016000,\"3036\":1659594555000,\"3037\":1659594469000,\"3038\":1659594155000,\"3039\":1659593681000,\"3040\":1659593287000,\"3041\":1659592975000,\"3042\":1659584521000,\"3043\":1659583426000,\"3044\":1659580706000,\"3045\":1659579525000,\"3046\":1659576719000,\"3047\":1659575484000,\"3048\":1659574306000,\"3049\":1659573364000,\"3050\":1659572100000,\"3051\":1659570585000,\"3052\":1659568395000,\"3053\":1659568140000,\"3054\":1659567588000,\"3055\":1659567377000,\"3056\":1659565226000,\"3057\":1659565186000,\"3058\":1659565081000,\"3059\":1659564673000,\"3060\":1659564587000,\"3061\":1659564386000,\"3062\":1659562963000,\"3063\":1659559656000,\"3064\":1659559374000,\"3065\":1659559118000,\"3066\":1659558096000,\"3067\":1659556902000,\"3068\":1659556689000,\"3069\":1659556684000,\"3070\":1659556060000,\"3071\":1659555447000,\"3072\":1659555219000,\"3073\":1659554576000,\"3074\":1659554456000,\"3075\":1659553839000,\"3076\":1659553321000,\"3077\":1659551132000,\"3078\":1659550956000,\"3079\":1659550739000,\"3080\":1659550553000,\"3081\":1659549936000,\"3082\":1659549538000,\"3083\":1659549355000,\"3084\":1659549084000,\"3085\":1659548384000,\"3086\":1659548343000,\"3087\":1659548011000,\"3088\":1659547843000,\"3089\":1659547784000,\"3090\":1659547506000,\"3091\":1659547227000,\"3092\":1659547149000,\"3093\":1659547092000,\"3094\":1659546513000,\"3095\":1659546125000,\"3096\":1659546090000,\"3097\":1659546072000,\"3098\":1659545793000,\"3099\":1659545149000,\"3100\":1659544864000,\"3101\":1659544669000,\"3102\":1659544376000,\"3103\":1659542360000,\"3104\":1659542098000,\"3105\":1659541777000,\"3106\":1659541644000,\"3107\":1659541598000,\"3108\":1659541441000,\"3109\":1659541159000,\"3110\":1659540936000,\"3111\":1659540337000,\"3112\":1659539904000,\"3113\":1659538959000,\"3114\":1659538561000,\"3115\":1659537924000,\"3116\":1659537698000,\"3117\":1659537587000,\"3118\":1659537452000,\"3119\":1659537326000,\"3120\":1659537105000,\"3121\":1659536992000,\"3122\":1659536647000,\"3123\":1659536589000,\"3124\":1659536578000,\"3125\":1659536564000,\"3126\":1659536560000,\"3127\":1659536555000,\"3128\":1659535116000,\"3129\":1659534323000,\"3130\":1659534295000,\"3131\":1659534101000,\"3132\":1659534066000,\"3133\":1659533901000,\"3134\":1659533697000,\"3135\":1659533628000,\"3136\":1659533137000,\"3137\":1659533118000,\"3138\":1659533076000,\"3139\":1659532510000,\"3140\":1659531352000,\"3141\":1659531322000,\"3142\":1659531215000,\"3143\":1659529409000,\"3144\":1659529184000,\"3145\":1659529091000,\"3146\":1659528624000,\"3147\":1659528480000,\"3148\":1659528372000,\"3149\":1659528245000,\"3150\":1659527896000,\"3151\":1659527748000,\"3152\":1659527677000,\"3153\":1659527622000,\"3154\":1659527457000,\"3155\":1659527302000,\"3156\":1659526922000,\"3157\":1659526736000,\"3158\":1659526607000,\"3159\":1659526500000,\"3160\":1659526452000,\"3161\":1659526027000,\"3162\":1659525952000,\"3163\":1659525885000,\"3164\":1659525556000,\"3165\":1659525385000,\"3166\":1659525193000,\"3167\":1659525069000,\"3168\":1659524775000,\"3169\":1659524631000,\"3170\":1659524404000,\"3171\":1659524228000,\"3172\":1659523899000,\"3173\":1659523789000,\"3174\":1659523451000,\"3175\":1659523369000,\"3176\":1659522833000,\"3177\":1659522781000,\"3178\":1659521981000,\"3179\":1659521750000,\"3180\":1659521617000,\"3181\":1659521306000,\"3182\":1659521296000,\"3183\":1659521264000,\"3184\":1659521013000,\"3185\":1659520702000,\"3186\":1659520628000,\"3187\":1659520413000,\"3188\":1659519929000,\"3189\":1659519856000,\"3190\":1659519565000,\"3191\":1659519370000,\"3192\":1659519169000,\"3193\":1659519060000,\"3194\":1659518671000,\"3195\":1659518518000,\"3196\":1659518389000,\"3197\":1659518326000,\"3198\":1659518003000,\"3199\":1659517958000,\"3200\":1659517455000,\"3201\":1659517202000,\"3202\":1659516379000,\"3203\":1659516345000,\"3204\":1659516300000,\"3205\":1659515675000,\"3206\":1659515404000,\"3207\":1659515230000,\"3208\":1659515181000,\"3209\":1659515147000,\"3210\":1659514729000,\"3211\":1659514714000,\"3212\":1659513858000,\"3213\":1659513761000,\"3214\":1659513631000,\"3215\":1659513219000,\"3216\":1659512910000,\"3217\":1659512910000,\"3218\":1659512865000,\"3219\":1659512789000,\"3220\":1659512282000,\"3221\":1659512220000,\"3222\":1659511914000,\"3223\":1659511387000,\"3224\":1659511276000,\"3225\":1659511243000,\"3226\":1659510739000,\"3227\":1659510404000,\"3228\":1659510387000,\"3229\":1659510054000,\"3230\":1659509782000,\"3231\":1659509668000,\"3232\":1659509030000,\"3233\":1659508980000,\"3234\":1659508855000,\"3235\":1659508529000,\"3236\":1659508318000,\"3237\":1659508245000,\"3238\":1659507940000,\"3239\":1659507852000,\"3240\":1659507748000,\"3241\":1659507691000,\"3242\":1659507589000,\"3243\":1659507153000,\"3244\":1659506871000,\"3245\":1659506394000,\"3246\":1659506146000,\"3247\":1659506112000,\"3248\":1659505875000,\"3249\":1659505840000,\"3250\":1659505319000,\"3251\":1659505153000,\"3252\":1659504895000,\"3253\":1659504607000,\"3254\":1659504600000,\"3255\":1659504524000,\"3256\":1659504302000,\"3257\":1659503460000,\"3258\":1659503206000,\"3259\":1659503195000,\"3260\":1659503164000,\"3261\":1659503147000,\"3262\":1659503125000,\"3263\":1659503068000,\"3264\":1659502926000,\"3265\":1659502901000,\"3266\":1659502788000,\"3267\":1659502736000,\"3268\":1659502707000,\"3269\":1659502683000,\"3270\":1659502652000,\"3271\":1659502535000,\"3272\":1659502115000,\"3273\":1659502028000,\"3274\":1659501867000,\"3275\":1659501852000,\"3276\":1659501835000,\"3277\":1659501812000,\"3278\":1659501731000,\"3279\":1659501683000,\"3280\":1659501644000,\"3281\":1659501612000,\"3282\":1659501295000,\"3283\":1659500158000,\"3284\":1659500141000,\"3285\":1659498653000,\"3286\":1659497810000,\"3287\":1659496423000,\"3288\":1659495720000,\"3289\":1659495107000,\"3290\":1659490688000,\"3291\":1659489335000,\"3292\":1659487761000,\"3293\":1659483560000,\"3294\":1659483027000,\"3295\":1659482650000,\"3296\":1659481347000,\"3297\":1659481172000,\"3298\":1659481010000,\"3299\":1659480647000,\"3300\":1659480442000,\"3301\":1659480373000,\"3302\":1659479947000,\"3303\":1659479913000,\"3304\":1659479795000,\"3305\":1659479786000,\"3306\":1659479256000,\"3307\":1659478993000,\"3308\":1659478387000,\"3309\":1659477948000,\"3310\":1659477880000,\"3311\":1659477631000,\"3312\":1659477609000,\"3313\":1659477244000,\"3314\":1659477058000,\"3315\":1659476991000,\"3316\":1659476443000,\"3317\":1659476123000,\"3318\":1659476104000,\"3319\":1659475571000,\"3320\":1659475230000,\"3321\":1659475022000,\"3322\":1659474806000,\"3323\":1659474259000,\"3324\":1659474211000,\"3325\":1659473819000,\"3326\":1659473792000,\"3327\":1659473736000,\"3328\":1659473672000,\"3329\":1659473666000,\"3330\":1659473569000,\"3331\":1659473551000,\"3332\":1659472659000,\"3333\":1659472438000,\"3334\":1659472298000,\"3335\":1659472270000,\"3336\":1659472157000,\"3337\":1659472104000,\"3338\":1659472053000,\"3339\":1659471925000,\"3340\":1659471807000,\"3341\":1659471735000,\"3342\":1659471699000,\"3343\":1659471001000,\"3344\":1659470980000,\"3345\":1659470731000,\"3346\":1659470388000,\"3347\":1659470042000,\"3348\":1659469968000,\"3349\":1659469922000,\"3350\":1659469886000,\"3351\":1659469746000,\"3352\":1659469733000,\"3353\":1659469255000,\"3354\":1659469140000,\"3355\":1659469126000,\"3356\":1659469031000,\"3357\":1659468892000,\"3358\":1659468797000,\"3359\":1659468512000,\"3360\":1659468491000,\"3361\":1659468443000,\"3362\":1659467962000,\"3363\":1659467430000,\"3364\":1659467275000,\"3365\":1659467076000,\"3366\":1659466821000,\"3367\":1659466690000,\"3368\":1659466438000,\"3369\":1659466345000,\"3370\":1659466316000,\"3371\":1659466261000,\"3372\":1659466213000,\"3373\":1659465956000,\"3374\":1659465924000,\"3375\":1659465628000,\"3376\":1659465243000,\"3377\":1659465096000,\"3378\":1659464973000,\"3379\":1659464958000,\"3380\":1659464852000,\"3381\":1659464554000,\"3382\":1659464467000,\"3383\":1659464349000,\"3384\":1659464339000,\"3385\":1659463445000,\"3386\":1659462965000,\"3387\":1659462608000,\"3388\":1659462316000,\"3389\":1659461974000,\"3390\":1659461869000,\"3391\":1659461701000,\"3392\":1659460924000,\"3393\":1659460860000,\"3394\":1659460747000,\"3395\":1659460547000,\"3396\":1659460408000,\"3397\":1659459730000,\"3398\":1659459510000,\"3399\":1659459410000,\"3400\":1659458689000,\"3401\":1659458614000,\"3402\":1659457807000,\"3403\":1659457769000,\"3404\":1659457494000,\"3405\":1659457229000,\"3406\":1659457221000,\"3407\":1659457179000,\"3408\":1659456973000,\"3409\":1659456864000,\"3410\":1659456722000,\"3411\":1659456694000,\"3412\":1659456297000,\"3413\":1659455540000,\"3414\":1659455537000,\"3415\":1659455270000,\"3416\":1659455146000,\"3417\":1659455134000,\"3418\":1659454646000,\"3419\":1659454447000,\"3420\":1659454386000,\"3421\":1659454292000,\"3422\":1659454116000,\"3423\":1659453929000,\"3424\":1659453347000,\"3425\":1659452991000,\"3426\":1659452877000,\"3427\":1659452867000,\"3428\":1659452845000,\"3429\":1659452687000,\"3430\":1659452509000,\"3431\":1659452359000,\"3432\":1659452322000,\"3433\":1659452296000,\"3434\":1659452287000,\"3435\":1659452177000,\"3436\":1659452133000,\"3437\":1659452105000,\"3438\":1659452090000,\"3439\":1659452047000,\"3440\":1659451999000,\"3441\":1659451883000,\"3442\":1659451883000,\"3443\":1659451854000,\"3444\":1659451836000,\"3445\":1659451302000,\"3446\":1659451244000,\"3447\":1659451227000,\"3448\":1659451061000,\"3449\":1659450715000,\"3450\":1659450567000,\"3451\":1659450531000,\"3452\":1659450373000,\"3453\":1659450208000,\"3454\":1659450024000,\"3455\":1659449835000,\"3456\":1659449811000,\"3457\":1659449365000,\"3458\":1659449295000,\"3459\":1659448600000,\"3460\":1659448440000,\"3461\":1659448190000,\"3462\":1659447927000,\"3463\":1659447923000,\"3464\":1659447756000,\"3465\":1659447494000,\"3466\":1659447380000,\"3467\":1659446964000,\"3468\":1659446516000,\"3469\":1659445917000,\"3470\":1659445645000,\"3471\":1659445612000,\"3472\":1659445593000,\"3473\":1659445578000,\"3474\":1659445478000,\"3475\":1659445276000,\"3476\":1659445057000,\"3477\":1659444989000,\"3478\":1659444551000,\"3479\":1659444396000,\"3480\":1659443457000,\"3481\":1659443202000,\"3482\":1659441740000,\"3483\":1659441347000,\"3484\":1659440956000,\"3485\":1659440138000,\"3486\":1659438336000,\"3487\":1659437724000,\"3488\":1659437672000,\"3489\":1659437464000,\"3490\":1659435864000,\"3491\":1659434732000,\"3492\":1659434533000,\"3493\":1659434264000,\"3494\":1659433998000,\"3495\":1659433952000,\"3496\":1659433897000,\"3497\":1659433745000,\"3498\":1659433590000,\"3499\":1659432469000,\"3500\":1659432226000,\"3501\":1659432013000,\"3502\":1659430186000,\"3503\":1659424828000,\"3504\":1659416659000,\"3505\":1659410028000,\"3506\":1659403234000,\"3507\":1659397934000,\"3508\":1659397028000,\"3509\":1659393917000,\"3510\":1659393608000,\"3511\":1659393102000,\"3512\":1659392918000,\"3513\":1659391441000,\"3514\":1659389969000,\"3515\":1659389375000,\"3516\":1659387582000,\"3517\":1659386626000,\"3518\":1659384764000,\"3519\":1659384344000,\"3520\":1659383659000,\"3521\":1659383537000,\"3522\":1659383157000,\"3523\":1659382964000,\"3524\":1659381902000,\"3525\":1659381622000,\"3526\":1659381190000,\"3527\":1659380810000,\"3528\":1659379328000,\"3529\":1659378257000,\"3530\":1659377750000,\"3531\":1659377729000,\"3532\":1659376810000,\"3533\":1659376305000,\"3534\":1659376161000,\"3535\":1659376088000,\"3536\":1659375402000,\"3537\":1659375265000,\"3538\":1659372735000,\"3539\":1659372121000,\"3540\":1659370887000,\"3541\":1659369836000,\"3542\":1659369616000,\"3543\":1659367775000,\"3544\":1659367686000,\"3545\":1659367194000,\"3546\":1659366860000,\"3547\":1659366680000,\"3548\":1659365842000,\"3549\":1659365572000,\"3550\":1659365464000,\"3551\":1659364135000,\"3552\":1659362049000,\"3553\":1659360709000,\"3554\":1659360395000,\"3555\":1659359959000,\"3556\":1659359932000,\"3557\":1659359655000,\"3558\":1659358333000,\"3559\":1659358048000,\"3560\":1659357950000,\"3561\":1659357905000,\"3562\":1659357815000,\"3563\":1659357799000,\"3564\":1659357776000,\"3565\":1659357758000,\"3566\":1659357728000,\"3567\":1659357643000,\"3568\":1659357601000,\"3569\":1659356431000,\"3570\":1659355294000,\"3571\":1659355278000,\"3572\":1659354778000,\"3573\":1659354014000,\"3574\":1659350911000,\"3575\":1659347952000,\"3576\":1659346301000,\"3577\":1659346113000,\"3578\":1659344805000,\"3579\":1659344473000,\"3580\":1659343966000,\"3581\":1659343768000,\"3582\":1659333963000,\"3583\":1659332838000,\"3584\":1659301286000,\"3585\":1659297149000,\"3586\":1659282677000,\"3587\":1659277833000,\"3588\":1659277628000,\"3589\":1659277338000,\"3590\":1659275245000,\"3591\":1659274555000,\"3592\":1659272870000,\"3593\":1659270180000,\"3594\":1659269977000,\"3595\":1659268696000,\"3596\":1659268449000,\"3597\":1659266496000,\"3598\":1659265382000,\"3599\":1659263865000,\"3600\":1659262874000,\"3601\":1659262065000,\"3602\":1659261877000,\"3603\":1659261738000,\"3604\":1659261446000,\"3605\":1659260549000,\"3606\":1659260466000,\"3607\":1659259853000,\"3608\":1659259366000,\"3609\":1659259258000,\"3610\":1659259034000,\"3611\":1659258959000,\"3612\":1659258362000,\"3613\":1659258338000,\"3614\":1659257497000,\"3615\":1659255831000,\"3616\":1659255734000,\"3617\":1659254504000,\"3618\":1659252033000,\"3619\":1659251216000,\"3620\":1659244915000,\"3621\":1659233660000,\"3622\":1659222287000,\"3623\":1659187891000,\"3624\":1659158244000,\"3625\":1659157722000,\"3626\":1659142953000,\"3627\":1659093822000,\"3628\":1659085971000,\"3629\":1659911619000,\"3630\":1659911435000,\"3631\":1659892934000,\"3632\":1659889249000,\"3633\":1659882890000,\"3634\":1659876706000,\"3635\":1659872673000,\"3636\":1659871741000,\"3637\":1659871385000,\"3638\":1659867628000,\"3639\":1659867151000,\"3640\":1659857408000,\"3641\":1659856398000,\"3642\":1659845052000,\"3643\":1659844958000,\"3644\":1659824305000,\"3645\":1659816738000,\"3646\":1659813254000,\"3647\":1659813172000,\"3648\":1659812465000,\"3649\":1659810656000,\"3650\":1659802369000,\"3651\":1659800038000,\"3652\":1659796330000,\"3653\":1659795595000,\"3654\":1659795366000,\"3655\":1659795207000,\"3656\":1659793445000,\"3657\":1659791451000,\"3658\":1659790899000,\"3659\":1659787234000,\"3660\":1659787196000,\"3661\":1659786065000,\"3662\":1659782043000,\"3663\":1659780756000,\"3664\":1659780168000,\"3665\":1659774259000,\"3666\":1659773409000,\"3667\":1659772131000,\"3668\":1659758420000,\"3669\":1659755024000,\"3670\":1659753249000,\"3671\":1659753031000,\"3672\":1659743778000,\"3673\":1659738563000,\"3674\":1659736406000,\"3675\":1659733590000,\"3676\":1659729992000,\"3677\":1659729862000,\"3678\":1659729856000,\"3679\":1659729681000,\"3680\":1659729566000,\"3681\":1659729111000,\"3682\":1659728991000,\"3683\":1659728949000,\"3684\":1659726672000,\"3685\":1659726374000,\"3686\":1659719890000,\"3687\":1659719316000,\"3688\":1659718791000,\"3689\":1659718676000,\"3690\":1659715281000,\"3691\":1659714604000,\"3692\":1659714514000,\"3693\":1659714319000,\"3694\":1659711416000,\"3695\":1659711211000,\"3696\":1659710881000,\"3697\":1659708703000,\"3698\":1659708514000,\"3699\":1659706780000,\"3700\":1659703922000,\"3701\":1659703885000,\"3702\":1659703843000,\"3703\":1659703790000,\"3704\":1659703742000,\"3705\":1659703713000,\"3706\":1659703188000,\"3707\":1659703184000,\"3708\":1659703021000,\"3709\":1659702355000,\"3710\":1659701913000,\"3711\":1659701640000,\"3712\":1659701358000,\"3713\":1659701358000,\"3714\":1659699683000,\"3715\":1659696881000,\"3716\":1659692563000,\"3717\":1659692426000,\"3718\":1659692007000,\"3719\":1659691687000,\"3720\":1659691477000,\"3721\":1659691423000,\"3722\":1659691377000,\"3723\":1659691292000,\"3724\":1659689664000,\"3725\":1659689195000,\"3726\":1659688281000,\"3727\":1659687417000,\"3728\":1659687412000,\"3729\":1659683960000,\"3730\":1659683402000,\"3731\":1659682516000,\"3732\":1659680794000,\"3733\":1659678964000,\"3734\":1659678601000,\"3735\":1659678485000,\"3736\":1659678350000,\"3737\":1659678017000,\"3738\":1659677710000,\"3739\":1659677159000,\"3740\":1659676929000,\"3741\":1659676748000,\"3742\":1659676134000,\"3743\":1659674677000,\"3744\":1659674647000,\"3745\":1659674022000,\"3746\":1659673094000,\"3747\":1659672966000,\"3748\":1659672286000,\"3749\":1659672172000,\"3750\":1659671946000,\"3751\":1659671673000,\"3752\":1659671466000,\"3753\":1659669984000,\"3754\":1659669623000,\"3755\":1659669122000,\"3756\":1659668013000,\"3757\":1659665437000,\"3758\":1659664132000,\"3759\":1659663034000,\"3760\":1659662649000,\"3761\":1659661293000,\"3762\":1659660327000,\"3763\":1659659751000,\"3764\":1659659750000,\"3765\":1659659557000,\"3766\":1659659328000,\"3767\":1659658836000,\"3768\":1659658480000,\"3769\":1659657397000,\"3770\":1659657243000,\"3771\":1659656866000,\"3772\":1659656708000,\"3773\":1659656089000,\"3774\":1659655936000,\"3775\":1659655443000,\"3776\":1659655034000,\"3777\":1659654635000,\"3778\":1659654098000,\"3779\":1659653367000,\"3780\":1659652868000,\"3781\":1659652333000,\"3782\":1659651952000,\"3783\":1659651817000,\"3784\":1659651452000,\"3785\":1659651410000,\"3786\":1659650992000,\"3787\":1659650711000,\"3788\":1659650650000,\"3789\":1659650510000,\"3790\":1659649789000,\"3791\":1659649727000,\"3792\":1659649666000,\"3793\":1659649494000,\"3794\":1659649095000,\"3795\":1659649019000,\"3796\":1659648155000,\"3797\":1659647814000,\"3798\":1659647696000,\"3799\":1659647275000,\"3800\":1659647031000,\"3801\":1659647016000,\"3802\":1659646965000,\"3803\":1659646727000,\"3804\":1659645985000,\"3805\":1659645838000,\"3806\":1659645821000,\"3807\":1659645709000,\"3808\":1659645040000,\"3809\":1659644996000,\"3810\":1659644784000,\"3811\":1659644703000,\"3812\":1659644540000,\"3813\":1659644314000,\"3814\":1659644126000,\"3815\":1659644122000,\"3816\":1659643898000,\"3817\":1659643897000,\"3818\":1659643573000,\"3819\":1659642993000,\"3820\":1659642618000,\"3821\":1659642562000,\"3822\":1659642260000,\"3823\":1659642124000,\"3824\":1659641509000,\"3825\":1659641434000,\"3826\":1659641395000,\"3827\":1659641284000,\"3828\":1659641250000,\"3829\":1659641105000,\"3830\":1659640963000,\"3831\":1659640881000,\"3832\":1659640651000,\"3833\":1659640469000,\"3834\":1659640409000,\"3835\":1659640345000,\"3836\":1659640274000,\"3837\":1659639366000,\"3838\":1659638962000,\"3839\":1659637217000,\"3840\":1659636731000,\"3841\":1659636368000,\"3842\":1659636174000,\"3843\":1659635939000,\"3844\":1659635794000,\"3845\":1659635640000,\"3846\":1659635493000,\"3847\":1659635208000,\"3848\":1659634948000,\"3849\":1659634904000,\"3850\":1659634898000,\"3851\":1659634840000,\"3852\":1659634778000,\"3853\":1659634539000,\"3854\":1659634388000,\"3855\":1659633401000,\"3856\":1659633247000,\"3857\":1659632865000,\"3858\":1659632827000,\"3859\":1659632532000,\"3860\":1659632487000,\"3861\":1659632172000,\"3862\":1659632156000,\"3863\":1659632070000,\"3864\":1659631756000,\"3865\":1659631677000,\"3866\":1659631057000,\"3867\":1659631040000,\"3868\":1659631038000,\"3869\":1659631025000,\"3870\":1659631000000,\"3871\":1659630989000,\"3872\":1659630953000,\"3873\":1659630692000,\"3874\":1659630471000,\"3875\":1659630401000,\"3876\":1659630297000,\"3877\":1659630230000,\"3878\":1659630158000,\"3879\":1659629607000,\"3880\":1659629364000,\"3881\":1659628819000,\"3882\":1659628371000,\"3883\":1659628328000,\"3884\":1659628293000,\"3885\":1659628265000,\"3886\":1659628118000,\"3887\":1659628071000,\"3888\":1659627924000,\"3889\":1659627903000,\"3890\":1659627896000,\"3891\":1659627349000,\"3892\":1659626891000,\"3893\":1659626715000,\"3894\":1659626703000,\"3895\":1659626500000,\"3896\":1659626354000,\"3897\":1659626256000,\"3898\":1659626161000,\"3899\":1659626103000,\"3900\":1659625207000,\"3901\":1659624682000,\"3902\":1659624601000,\"3903\":1659624545000,\"3904\":1659624480000,\"3905\":1659624440000,\"3906\":1659624404000,\"3907\":1659624310000,\"3908\":1659624289000,\"3909\":1659624251000,\"3910\":1659624201000,\"3911\":1659623997000,\"3912\":1659623973000,\"3913\":1659623881000,\"3914\":1659623780000,\"3915\":1659623200000,\"3916\":1659623011000,\"3917\":1659622904000,\"3918\":1659622777000,\"3919\":1659622371000,\"3920\":1659622140000,\"3921\":1659622036000,\"3922\":1659621682000,\"3923\":1659621625000,\"3924\":1659621428000,\"3925\":1659621426000,\"3926\":1659621024000,\"3927\":1659620969000,\"3928\":1659620944000,\"3929\":1659619953000,\"3930\":1659619890000,\"3931\":1659619856000,\"3932\":1659619470000,\"3933\":1659619138000,\"3934\":1659618896000,\"3935\":1659618889000,\"3936\":1659618490000,\"3937\":1659618292000,\"3938\":1659618020000,\"3939\":1659617606000,\"3940\":1659617580000,\"3941\":1659617394000,\"3942\":1659617341000,\"3943\":1659617170000,\"3944\":1659616530000,\"3945\":1659616345000,\"3946\":1659616236000,\"3947\":1659615985000,\"3948\":1659615933000,\"3949\":1659615868000,\"3950\":1659615406000,\"3951\":1659615284000,\"3952\":1659615250000,\"3953\":1659614721000,\"3954\":1659614659000,\"3955\":1659614305000,\"3956\":1659613699000,\"3957\":1659613543000,\"3958\":1659613511000,\"3959\":1659613312000,\"3960\":1659613230000,\"3961\":1659612927000,\"3962\":1659612885000,\"3963\":1659612839000,\"3964\":1659612726000,\"3965\":1659612648000,\"3966\":1659612375000,\"3967\":1659612314000,\"3968\":1659612264000,\"3969\":1659612249000,\"3970\":1659612134000,\"3971\":1659612127000,\"3972\":1659612117000,\"3973\":1659611920000,\"3974\":1659611861000,\"3975\":1659611770000,\"3976\":1659611683000,\"3977\":1659611557000,\"3978\":1659611484000,\"3979\":1659611368000,\"3980\":1659611103000,\"3981\":1659610482000,\"3982\":1659610251000,\"3983\":1659610187000,\"3984\":1659610168000,\"3985\":1659610127000,\"3986\":1659609694000,\"3987\":1659609558000,\"3988\":1659609392000,\"3989\":1659609190000,\"3990\":1659609137000,\"3991\":1659609109000,\"3992\":1659609041000,\"3993\":1659608964000,\"3994\":1659608892000,\"3995\":1659608769000,\"3996\":1659608412000,\"3997\":1659608301000,\"3998\":1659608251000,\"3999\":1659608251000,\"4000\":1659608043000,\"4001\":1659607889000,\"4002\":1659607744000,\"4003\":1659607672000,\"4004\":1659607168000,\"4005\":1659607144000,\"4006\":1659607072000,\"4007\":1659606656000,\"4008\":1659606467000,\"4009\":1659606408000,\"4010\":1659606300000,\"4011\":1659606136000,\"4012\":1659606012000,\"4013\":1659606001000,\"4014\":1659605984000,\"4015\":1659605958000,\"4016\":1659605950000,\"4017\":1659605196000,\"4018\":1659605157000,\"4019\":1659605050000,\"4020\":1659604240000,\"4021\":1659603162000,\"4022\":1659603014000,\"4023\":1659602874000,\"4024\":1659602690000,\"4025\":1659602357000,\"4026\":1659602270000,\"4027\":1659602245000,\"4028\":1659601907000,\"4029\":1659601884000,\"4030\":1659601797000,\"4031\":1659601631000,\"4032\":1659601502000,\"4033\":1659601169000,\"4034\":1659601127000,\"4035\":1659601067000,\"4036\":1659600999000,\"4037\":1659600797000,\"4038\":1659600743000,\"4039\":1659600691000,\"4040\":1659600545000,\"4041\":1659600201000,\"4042\":1659599986000,\"4043\":1659599978000,\"4044\":1659599756000,\"4045\":1659599476000,\"4046\":1659599252000,\"4047\":1659599180000,\"4048\":1659598990000,\"4049\":1659598981000,\"4050\":1659598881000,\"4051\":1659598769000,\"4052\":1659598686000,\"4053\":1659598674000,\"4054\":1659598667000,\"4055\":1659598642000,\"4056\":1659598620000,\"4057\":1659598564000,\"4058\":1659598532000,\"4059\":1659598505000,\"4060\":1659598481000,\"4061\":1659598456000,\"4062\":1659598435000,\"4063\":1659598419000,\"4064\":1659598392000,\"4065\":1659598391000,\"4066\":1659598377000,\"4067\":1659598353000,\"4068\":1659598306000,\"4069\":1659598286000,\"4070\":1659598273000,\"4071\":1659598244000,\"4072\":1659598239000,\"4073\":1659598202000,\"4074\":1659598186000,\"4075\":1659598177000,\"4076\":1659598129000,\"4077\":1659598105000,\"4078\":1659598073000,\"4079\":1659598014000,\"4080\":1659597935000,\"4081\":1659597789000,\"4082\":1659597671000,\"4083\":1659597510000,\"4084\":1659597320000,\"4085\":1659597233000,\"4086\":1659597213000,\"4087\":1659597135000,\"4088\":1659596920000,\"4089\":1659596831000,\"4090\":1659596579000,\"4091\":1659596547000,\"4092\":1659596540000,\"4093\":1659596315000,\"4094\":1659596140000,\"4095\":1659596131000,\"4096\":1659596016000,\"4097\":1659595999000,\"4098\":1659595984000,\"4099\":1659595657000,\"4100\":1659595468000,\"4101\":1659595347000,\"4102\":1659595341000,\"4103\":1659594729000,\"4104\":1659594555000,\"4105\":1659594469000,\"4106\":1659594452000,\"4107\":1659594155000,\"4108\":1659593957000,\"4109\":1659593681000,\"4110\":1659593345000,\"4111\":1659593318000,\"4112\":1659593295000,\"4113\":1659593287000,\"4114\":1659593284000,\"4115\":1659593263000,\"4116\":1659593246000,\"4117\":1659593230000,\"4118\":1659593177000,\"4119\":1659592975000,\"4120\":1659592886000,\"4121\":1659592419000,\"4122\":1659592385000,\"4123\":1659590640000,\"4124\":1659590486000,\"4125\":1659589223000,\"4126\":1659585600000,\"4127\":1659584788000,\"4128\":1659584521000,\"4129\":1659583426000,\"4130\":1659581629000,\"4131\":1659580706000,\"4132\":1659579525000,\"4133\":1659579369000,\"4134\":1659578400000,\"4135\":1659578264000,\"4136\":1659576764000,\"4137\":1659575484000,\"4138\":1659573364000,\"4139\":1659572350000,\"4140\":1659572100000,\"4141\":1659570585000,\"4142\":1659570547000,\"4143\":1659568395000,\"4144\":1659568140000,\"4145\":1659567588000,\"4146\":1659567377000,\"4147\":1659567141000,\"4148\":1659565226000,\"4149\":1659565189000,\"4150\":1659565186000,\"4151\":1659565081000,\"4152\":1659564940000,\"4153\":1659564673000,\"4154\":1659564587000,\"4155\":1659564503000,\"4156\":1659564386000,\"4157\":1659563274000,\"4158\":1659563269000,\"4159\":1659563260000,\"4160\":1659562963000,\"4161\":1659562503000,\"4162\":1659561672000,\"4163\":1659560590000,\"4164\":1659559656000,\"4165\":1659559374000,\"4166\":1659559118000,\"4167\":1659558565000,\"4168\":1659558175000,\"4169\":1659558096000,\"4170\":1659558063000,\"4171\":1659557991000,\"4172\":1659557823000,\"4173\":1659557459000,\"4174\":1659557208000,\"4175\":1659557058000,\"4176\":1659556902000,\"4177\":1659556849000,\"4178\":1659556742000,\"4179\":1659556689000,\"4180\":1659556684000,\"4181\":1659556518000,\"4182\":1659556481000,\"4183\":1659556389000,\"4184\":1659556233000,\"4185\":1659556159000,\"4186\":1659556060000,\"4187\":1659556038000,\"4188\":1659555984000,\"4189\":1659555858000,\"4190\":1659555580000,\"4191\":1659555447000,\"4192\":1659555397000,\"4193\":1659555363000,\"4194\":1659555219000,\"4195\":1659554616000,\"4196\":1659554576000,\"4197\":1659554574000,\"4198\":1659554456000,\"4199\":1659554295000,\"4200\":1659554253000,\"4201\":1659554227000,\"4202\":1659554178000,\"4203\":1659553994000,\"4204\":1659553945000,\"4205\":1659553935000,\"4206\":1659553839000,\"4207\":1659553734000,\"4208\":1659553554000,\"4209\":1659553321000,\"4210\":1659553242000,\"4211\":1659553059000,\"4212\":1659553049000,\"4213\":1659553014000,\"4214\":1659552958000,\"4215\":1659552769000,\"4216\":1659552393000,\"4217\":1659551847000,\"4218\":1659551563000,\"4219\":1659550956000,\"4220\":1659550955000,\"4221\":1659550836000,\"4222\":1659550739000,\"4223\":1659550614000,\"4224\":1659550553000,\"4225\":1659550324000,\"4226\":1659550272000,\"4227\":1659549936000,\"4228\":1659549791000,\"4229\":1659549509000,\"4230\":1659549355000,\"4231\":1659549230000,\"4232\":1659549084000,\"4233\":1659549027000,\"4234\":1659548343000,\"4235\":1659548064000,\"4236\":1659547992000,\"4237\":1659547843000,\"4238\":1659547784000,\"4239\":1659547595000,\"4240\":1659547506000,\"4241\":1659547341000,\"4242\":1659547149000,\"4243\":1659546513000,\"4244\":1659546357000,\"4245\":1659546190000,\"4246\":1659546125000,\"4247\":1659546124000,\"4248\":1659546090000,\"4249\":1659546072000,\"4250\":1659545804000,\"4251\":1659545793000,\"4252\":1659545474000,\"4253\":1659545407000,\"4254\":1659545231000,\"4255\":1659544864000,\"4256\":1659544669000,\"4257\":1659544162000,\"4258\":1659544011000,\"4259\":1659544002000,\"4260\":1659543507000,\"4261\":1659543474000,\"4262\":1659543295000,\"4263\":1659543265000,\"4264\":1659543221000,\"4265\":1659543167000,\"4266\":1659543123000,\"4267\":1659542917000,\"4268\":1659542814000,\"4269\":1659542763000,\"4270\":1659542688000,\"4271\":1659542360000,\"4272\":1659542098000,\"4273\":1659541948000,\"4274\":1659541864000,\"4275\":1659541777000,\"4276\":1659541644000,\"4277\":1659541598000,\"4278\":1659541441000,\"4279\":1659541159000,\"4280\":1659541131000,\"4281\":1659540957000,\"4282\":1659540936000,\"4283\":1659540804000,\"4284\":1659540773000,\"4285\":1659540466000,\"4286\":1659540337000,\"4287\":1659539904000,\"4288\":1659539558000,\"4289\":1659539463000,\"4290\":1659539430000,\"4291\":1659539125000,\"4292\":1659539111000,\"4293\":1659538918000,\"4294\":1659538887000,\"4295\":1659538650000,\"4296\":1659538561000,\"4297\":1659537924000,\"4298\":1659537901000,\"4299\":1659537860000,\"4300\":1659537728000,\"4301\":1659537698000,\"4302\":1659537587000,\"4303\":1659537513000,\"4304\":1659537469000,\"4305\":1659537326000,\"4306\":1659537247000,\"4307\":1659537169000,\"4308\":1659537105000,\"4309\":1659536992000,\"4310\":1659536647000,\"4311\":1659536589000,\"4312\":1659536578000,\"4313\":1659536564000,\"4314\":1659536560000,\"4315\":1659536555000,\"4316\":1659535649000,\"4317\":1659535540000,\"4318\":1659535325000,\"4319\":1659535290000,\"4320\":1659535116000,\"4321\":1659534711000,\"4322\":1659534323000,\"4323\":1659534302000,\"4324\":1659534295000,\"4325\":1659534279000,\"4326\":1659534279000,\"4327\":1659534239000,\"4328\":1659534211000,\"4329\":1659534163000,\"4330\":1659534138000,\"4331\":1659534115000,\"4332\":1659534112000,\"4333\":1659534101000,\"4334\":1659534094000,\"4335\":1659534081000,\"4336\":1659534066000,\"4337\":1659534052000,\"4338\":1659533998000,\"4339\":1659533987000,\"4340\":1659533976000,\"4341\":1659533960000,\"4342\":1659533901000,\"4343\":1659533724000,\"4344\":1659533697000,\"4345\":1659533658000,\"4346\":1659533628000,\"4347\":1659533587000,\"4348\":1659533416000,\"4349\":1659533249000,\"4350\":1659533137000,\"4351\":1659533118000,\"4352\":1659533076000,\"4353\":1659533043000,\"4354\":1659533031000,\"4355\":1659532146000,\"4356\":1659532098000,\"4357\":1659532062000,\"4358\":1659531981000,\"4359\":1659531874000,\"4360\":1659531758000,\"4361\":1659531667000,\"4362\":1659531639000,\"4363\":1659531542000,\"4364\":1659531497000,\"4365\":1659531473000,\"4366\":1659531453000,\"4367\":1659531420000,\"4368\":1659531352000,\"4369\":1659531322000,\"4370\":1659531265000,\"4371\":1659531249000,\"4372\":1659531233000,\"4373\":1659531215000,\"4374\":1659531151000,\"4375\":1659531065000,\"4376\":1659531054000,\"4377\":1659531012000,\"4378\":1659530994000,\"4379\":1659530775000,\"4380\":1659530716000,\"4381\":1659530572000,\"4382\":1659530015000,\"4383\":1659529981000,\"4384\":1659529977000,\"4385\":1659529751000,\"4386\":1659529741000,\"4387\":1659529719000,\"4388\":1659529635000,\"4389\":1659529635000,\"4390\":1659529409000,\"4391\":1659529248000,\"4392\":1659529184000,\"4393\":1659529091000,\"4394\":1659528624000,\"4395\":1659528480000,\"4396\":1659528372000,\"4397\":1659528245000,\"4398\":1659528144000,\"4399\":1659527896000,\"4400\":1659527748000,\"4401\":1659527677000,\"4402\":1659527622000,\"4403\":1659527457000,\"4404\":1659527431000,\"4405\":1659527367000,\"4406\":1659527302000,\"4407\":1659527267000,\"4408\":1659527063000,\"4409\":1659526922000,\"4410\":1659526910000,\"4411\":1659526736000,\"4412\":1659526607000,\"4413\":1659526500000,\"4414\":1659526452000,\"4415\":1659526132000,\"4416\":1659526027000,\"4417\":1659525952000,\"4418\":1659525926000,\"4419\":1659525885000,\"4420\":1659525871000,\"4421\":1659525764000,\"4422\":1659525723000,\"4423\":1659525663000,\"4424\":1659525633000,\"4425\":1659525556000,\"4426\":1659525551000,\"4427\":1659525385000,\"4428\":1659525341000,\"4429\":1659525287000,\"4430\":1659525215000,\"4431\":1659525193000,\"4432\":1659525168000,\"4433\":1659525069000,\"4434\":1659524868000,\"4435\":1659524775000,\"4436\":1659524724000,\"4437\":1659524631000,\"4438\":1659524568000,\"4439\":1659524404000,\"4440\":1659524337000,\"4441\":1659524275000,\"4442\":1659524228000,\"4443\":1659524201000,\"4444\":1659524021000,\"4445\":1659524006000,\"4446\":1659523913000,\"4447\":1659523899000,\"4448\":1659523889000,\"4449\":1659523789000,\"4450\":1659523571000,\"4451\":1659523451000,\"4452\":1659523369000,\"4453\":1659523342000,\"4454\":1659523104000,\"4455\":1659523091000,\"4456\":1659523039000,\"4457\":1659523000000,\"4458\":1659522970000,\"4459\":1659522969000,\"4460\":1659522968000,\"4461\":1659522960000,\"4462\":1659522948000,\"4463\":1659522833000,\"4464\":1659522800000,\"4465\":1659522782000,\"4466\":1659522781000,\"4467\":1659522605000,\"4468\":1659522578000,\"4469\":1659522460000,\"4470\":1659522407000,\"4471\":1659522395000,\"4472\":1659522377000,\"4473\":1659522252000,\"4474\":1659522244000,\"4475\":1659522148000,\"4476\":1659521981000,\"4477\":1659521919000,\"4478\":1659521902000,\"4479\":1659521825000,\"4480\":1659521750000,\"4481\":1659521663000,\"4482\":1659521656000,\"4483\":1659521617000,\"4484\":1659521510000,\"4485\":1659521306000,\"4486\":1659521296000,\"4487\":1659521264000,\"4488\":1659521203000,\"4489\":1659521013000,\"4490\":1659520702000,\"4491\":1659520628000,\"4492\":1659520518000,\"4493\":1659520413000,\"4494\":1659520151000,\"4495\":1659520111000,\"4496\":1659520040000,\"4497\":1659519929000,\"4498\":1659519904000,\"4499\":1659519856000,\"4500\":1659519826000,\"4501\":1659519668000,\"4502\":1659519565000,\"4503\":1659519370000,\"4504\":1659519206000,\"4505\":1659519194000,\"4506\":1659519060000,\"4507\":1659519015000,\"4508\":1659518798000,\"4509\":1659518671000,\"4510\":1659518670000,\"4511\":1659518518000,\"4512\":1659518404000,\"4513\":1659518389000,\"4514\":1659518326000,\"4515\":1659518278000,\"4516\":1659518239000,\"4517\":1659518003000,\"4518\":1659517958000,\"4519\":1659517867000,\"4520\":1659517633000,\"4521\":1659517455000,\"4522\":1659517438000,\"4523\":1659517308000,\"4524\":1659517202000,\"4525\":1659517028000,\"4526\":1659516841000,\"4527\":1659516791000,\"4528\":1659516439000,\"4529\":1659516355000,\"4530\":1659516345000,\"4531\":1659516300000,\"4532\":1659516269000,\"4533\":1659516254000,\"4534\":1659516250000,\"4535\":1659516137000,\"4536\":1659516092000,\"4537\":1659515970000,\"4538\":1659515832000,\"4539\":1659515819000,\"4540\":1659515805000,\"4541\":1659515790000,\"4542\":1659515775000,\"4543\":1659515758000,\"4544\":1659515743000,\"4545\":1659515726000,\"4546\":1659515629000,\"4547\":1659515604000,\"4548\":1659515230000,\"4549\":1659515181000,\"4550\":1659515147000,\"4551\":1659515056000,\"4552\":1659514729000,\"4553\":1659514714000,\"4554\":1659514656000,\"4555\":1659514265000,\"4556\":1659513906000,\"4557\":1659513858000,\"4558\":1659513761000,\"4559\":1659513631000,\"4560\":1659513612000,\"4561\":1659513366000,\"4562\":1659513219000,\"4563\":1659512914000,\"4564\":1659512910000,\"4565\":1659512910000,\"4566\":1659512865000,\"4567\":1659512792000,\"4568\":1659512789000,\"4569\":1659512638000,\"4570\":1659512534000,\"4571\":1659512511000,\"4572\":1659512282000,\"4573\":1659512220000,\"4574\":1659512105000,\"4575\":1659512047000,\"4576\":1659511914000,\"4577\":1659511649000,\"4578\":1659511542000,\"4579\":1659511387000,\"4580\":1659511276000,\"4581\":1659511243000,\"4582\":1659510991000,\"4583\":1659510739000,\"4584\":1659510679000,\"4585\":1659510623000,\"4586\":1659510404000,\"4587\":1659510387000,\"4588\":1659510106000,\"4589\":1659510054000,\"4590\":1659509782000,\"4591\":1659509668000,\"4592\":1659509465000,\"4593\":1659509185000,\"4594\":1659508980000,\"4595\":1659508855000,\"4596\":1659508575000,\"4597\":1659508536000,\"4598\":1659508529000,\"4599\":1659508318000,\"4600\":1659508245000,\"4601\":1659507940000,\"4602\":1659507852000,\"4603\":1659507748000,\"4604\":1659507691000,\"4605\":1659507589000,\"4606\":1659507401000,\"4607\":1659507175000,\"4608\":1659507153000,\"4609\":1659507068000,\"4610\":1659506943000,\"4611\":1659506935000,\"4612\":1659506543000,\"4613\":1659506475000,\"4614\":1659506394000,\"4615\":1659506237000,\"4616\":1659506146000,\"4617\":1659506112000,\"4618\":1659505875000,\"4619\":1659505840000,\"4620\":1659505776000,\"4621\":1659505351000,\"4622\":1659505319000,\"4623\":1659505056000,\"4624\":1659504895000,\"4625\":1659504607000,\"4626\":1659504600000,\"4627\":1659504524000,\"4628\":1659503965000,\"4629\":1659503735000,\"4630\":1659503721000,\"4631\":1659503460000,\"4632\":1659503206000,\"4633\":1659503195000,\"4634\":1659503164000,\"4635\":1659503147000,\"4636\":1659503125000,\"4637\":1659503044000,\"4638\":1659502926000,\"4639\":1659502901000,\"4640\":1659502788000,\"4641\":1659502736000,\"4642\":1659502707000,\"4643\":1659502683000,\"4644\":1659502652000,\"4645\":1659502644000,\"4646\":1659502636000,\"4647\":1659502535000,\"4648\":1659502115000,\"4649\":1659502028000,\"4650\":1659501867000,\"4651\":1659501852000,\"4652\":1659501835000,\"4653\":1659501812000,\"4654\":1659501731000,\"4655\":1659501694000,\"4656\":1659501683000,\"4657\":1659501644000,\"4658\":1659501612000,\"4659\":1659501534000,\"4660\":1659500739000,\"4661\":1659500636000,\"4662\":1659500453000,\"4663\":1659500435000,\"4664\":1659500417000,\"4665\":1659500158000,\"4666\":1659499224000,\"4667\":1659499202000,\"4668\":1659499147000,\"4669\":1659498624000,\"4670\":1659498558000,\"4671\":1659498462000,\"4672\":1659498342000,\"4673\":1659497810000,\"4674\":1659496214000,\"4675\":1659495720000,\"4676\":1659495107000,\"4677\":1659493466000,\"4678\":1659493081000,\"4679\":1659492141000,\"4680\":1659490688000,\"4681\":1659489662000,\"4682\":1659489629000,\"4683\":1659489528000,\"4684\":1659489335000,\"4685\":1659488948000,\"4686\":1659487761000,\"4687\":1659485240000,\"4688\":1659484807000,\"4689\":1659484301000,\"4690\":1659484046000,\"4691\":1659483853000,\"4692\":1659483560000,\"4693\":1659483027000,\"4694\":1659482814000,\"4695\":1659482650000,\"4696\":1659482345000,\"4697\":1659482056000,\"4698\":1659482009000,\"4699\":1659481347000,\"4700\":1659481172000,\"4701\":1659481010000,\"4702\":1659480991000,\"4703\":1659480813000,\"4704\":1659480647000,\"4705\":1659480442000,\"4706\":1659480373000,\"4707\":1659479947000,\"4708\":1659479913000,\"4709\":1659479795000,\"4710\":1659479786000,\"4711\":1659479256000,\"4712\":1659478993000,\"4713\":1659478443000,\"4714\":1659478387000,\"4715\":1659478265000,\"4716\":1659477948000,\"4717\":1659477914000,\"4718\":1659477880000,\"4719\":1659477752000,\"4720\":1659477631000,\"4721\":1659477244000,\"4722\":1659477058000,\"4723\":1659476991000,\"4724\":1659476781000,\"4725\":1659476640000,\"4726\":1659476449000,\"4727\":1659476443000,\"4728\":1659476364000,\"4729\":1659476332000,\"4730\":1659476222000,\"4731\":1659476183000,\"4732\":1659476104000,\"4733\":1659476025000,\"4734\":1659475970000,\"4735\":1659475571000,\"4736\":1659475525000,\"4737\":1659475397000,\"4738\":1659475396000,\"4739\":1659475230000,\"4740\":1659475174000,\"4741\":1659475022000,\"4742\":1659474807000,\"4743\":1659474779000,\"4744\":1659474661000,\"4745\":1659474658000,\"4746\":1659474629000,\"4747\":1659474613000,\"4748\":1659474412000,\"4749\":1659474352000,\"4750\":1659474281000,\"4751\":1659474248000,\"4752\":1659474231000,\"4753\":1659474211000,\"4754\":1659474171000,\"4755\":1659474151000,\"4756\":1659474138000,\"4757\":1659474012000,\"4758\":1659473860000,\"4759\":1659473819000,\"4760\":1659473792000,\"4761\":1659473756000,\"4762\":1659473736000,\"4763\":1659473703000,\"4764\":1659473672000,\"4765\":1659473666000,\"4766\":1659473569000,\"4767\":1659473551000,\"4768\":1659473429000,\"4769\":1659473368000,\"4770\":1659473303000,\"4771\":1659473010000,\"4772\":1659472702000,\"4773\":1659472675000,\"4774\":1659472659000,\"4775\":1659472587000,\"4776\":1659472477000,\"4777\":1659472438000,\"4778\":1659472364000,\"4779\":1659472301000,\"4780\":1659472298000,\"4781\":1659472270000,\"4782\":1659472242000,\"4783\":1659472157000,\"4784\":1659472104000,\"4785\":1659472053000,\"4786\":1659471925000,\"4787\":1659471875000,\"4788\":1659471807000,\"4789\":1659471735000,\"4790\":1659471699000,\"4791\":1659471025000,\"4792\":1659471001000,\"4793\":1659470997000,\"4794\":1659470980000,\"4795\":1659470801000,\"4796\":1659470731000,\"4797\":1659470730000,\"4798\":1659470477000,\"4799\":1659470139000,\"4800\":1659470042000,\"4801\":1659469997000,\"4802\":1659469922000,\"4803\":1659469886000,\"4804\":1659469746000,\"4805\":1659469733000,\"4806\":1659469684000,\"4807\":1659469510000,\"4808\":1659469429000,\"4809\":1659469415000,\"4810\":1659469351000,\"4811\":1659469344000,\"4812\":1659469302000,\"4813\":1659469290000,\"4814\":1659469140000,\"4815\":1659469126000,\"4816\":1659469031000,\"4817\":1659468893000,\"4818\":1659468892000,\"4819\":1659468797000,\"4820\":1659468743000,\"4821\":1659468680000,\"4822\":1659468512000,\"4823\":1659468491000,\"4824\":1659468443000,\"4825\":1659468424000,\"4826\":1659468262000,\"4827\":1659467962000,\"4828\":1659467945000,\"4829\":1659467852000,\"4830\":1659467690000,\"4831\":1659467562000,\"4832\":1659467553000,\"4833\":1659467430000,\"4834\":1659467275000,\"4835\":1659467258000,\"4836\":1659467076000,\"4837\":1659466964000,\"4838\":1659466964000,\"4839\":1659466895000,\"4840\":1659466821000,\"4841\":1659466690000,\"4842\":1659466642000,\"4843\":1659466438000,\"4844\":1659466345000,\"4845\":1659466316000,\"4846\":1659466261000,\"4847\":1659466234000,\"4848\":1659466213000,\"4849\":1659466203000,\"4850\":1659466029000,\"4851\":1659466005000,\"4852\":1659466003000,\"4853\":1659465993000,\"4854\":1659465981000,\"4855\":1659465968000,\"4856\":1659465958000,\"4857\":1659465956000,\"4858\":1659465928000,\"4859\":1659465924000,\"4860\":1659465906000,\"4861\":1659465901000,\"4862\":1659465900000,\"4863\":1659465896000,\"4864\":1659465889000,\"4865\":1659465886000,\"4866\":1659465881000,\"4867\":1659465780000,\"4868\":1659465628000,\"4869\":1659465464000,\"4870\":1659465413000,\"4871\":1659465298000,\"4872\":1659465207000,\"4873\":1659465096000,\"4874\":1659464973000,\"4875\":1659464958000,\"4876\":1659464798000,\"4877\":1659464705000,\"4878\":1659464467000,\"4879\":1659464349000,\"4880\":1659464339000,\"4881\":1659463860000,\"4882\":1659463571000,\"4883\":1659463513000,\"4884\":1659463487000,\"4885\":1659463445000,\"4886\":1659463308000,\"4887\":1659463281000,\"4888\":1659463244000,\"4889\":1659462965000,\"4890\":1659462621000,\"4891\":1659462608000,\"4892\":1659462504000,\"4893\":1659462481000,\"4894\":1659462316000,\"4895\":1659462281000,\"4896\":1659462257000,\"4897\":1659462161000,\"4898\":1659461974000,\"4899\":1659461869000,\"4900\":1659461806000,\"4901\":1659461701000,\"4902\":1659461543000,\"4903\":1659461540000,\"4904\":1659461502000,\"4905\":1659461293000,\"4906\":1659461283000,\"4907\":1659461267000,\"4908\":1659461226000,\"4909\":1659461123000,\"4910\":1659461010000,\"4911\":1659460860000,\"4912\":1659460783000,\"4913\":1659460628000,\"4914\":1659460627000,\"4915\":1659460547000,\"4916\":1659460481000,\"4917\":1659460427000,\"4918\":1659460408000,\"4919\":1659460329000,\"4920\":1659460254000,\"4921\":1659460218000,\"4922\":1659460133000,\"4923\":1659460053000,\"4924\":1659459777000,\"4925\":1659459730000,\"4926\":1659459542000,\"4927\":1659459510000,\"4928\":1659459502000,\"4929\":1659459410000,\"4930\":1659459214000,\"4931\":1659459001000,\"4932\":1659458986000,\"4933\":1659458976000,\"4934\":1659458916000,\"4935\":1659458689000,\"4936\":1659458614000,\"4937\":1659458488000,\"4938\":1659458484000,\"4939\":1659458414000,\"4940\":1659458313000,\"4941\":1659458149000,\"4942\":1659457949000,\"4943\":1659457875000,\"4944\":1659457377000,\"4945\":1659457342000,\"4946\":1659457229000,\"4947\":1659457221000,\"4948\":1659457179000,\"4949\":1659456973000,\"4950\":1659456927000,\"4951\":1659456895000,\"4952\":1659456890000,\"4953\":1659456864000,\"4954\":1659456722000,\"4955\":1659456705000,\"4956\":1659456694000,\"4957\":1659456620000,\"4958\":1659456297000,\"4959\":1659456264000,\"4960\":1659455985000,\"4961\":1659455679000,\"4962\":1659455540000,\"4963\":1659455537000,\"4964\":1659455427000,\"4965\":1659455270000,\"4966\":1659455134000,\"4967\":1659454973000,\"4968\":1659454858000,\"4969\":1659454773000,\"4970\":1659454712000,\"4971\":1659454646000,\"4972\":1659454640000,\"4973\":1659454621000,\"4974\":1659454515000,\"4975\":1659454496000,\"4976\":1659454447000,\"4977\":1659454434000,\"4978\":1659454433000,\"4979\":1659454427000,\"4980\":1659454391000,\"4981\":1659454386000,\"4982\":1659454375000,\"4983\":1659454356000,\"4984\":1659454292000,\"4985\":1659454285000,\"4986\":1659454116000,\"4987\":1659454068000,\"4988\":1659454036000,\"4989\":1659454006000,\"4990\":1659453929000,\"4991\":1659453883000,\"4992\":1659453747000,\"4993\":1659453727000,\"4994\":1659453681000,\"4995\":1659453670000,\"4996\":1659453564000,\"4997\":1659453426000,\"4998\":1659453396000,\"4999\":1659453347000},\"id\":{\"0\":1554924874166149120,\"1\":1554488368347680771,\"2\":1554482802502127621,\"3\":1554102573635932160,\"4\":1553833459440910338,\"5\":1553732806152536066,\"6\":1556157165639016448,\"7\":1555006203310268417,\"8\":1554876194293776384,\"9\":1554478574903726080,\"10\":1554450310860398592,\"11\":1554215106191376384,\"12\":1554184385556926466,\"13\":1554117425968254976,\"14\":1553977640557625345,\"15\":1556408255517270016,\"16\":1556407483953987586,\"17\":1556329884342960129,\"18\":1556314427712061440,\"19\":1556287756858540032,\"20\":1556261821971140608,\"21\":1556240994328510465,\"22\":1556239501667799043,\"23\":1556223742959058945,\"24\":1556221742439616514,\"25\":1556180877264273410,\"26\":1556176640069324801,\"27\":1556145835871768579,\"28\":1556129053480030209,\"29\":1556128657495801861,\"30\":1556042033915101184,\"31\":1556010296069718016,\"32\":1555995682586169352,\"33\":1555995337352962049,\"34\":1555992372194021376,\"35\":1555984785004281857,\"36\":1555950028279410688,\"37\":1555940250551259136,\"38\":1555924699447582720,\"39\":1555921613857492993,\"40\":1555920654368575488,\"41\":1555919988610830337,\"42\":1555912598461157377,\"43\":1555904235451158529,\"44\":1555901917523591168,\"45\":1555886548486443008,\"46\":1555886386380775425,\"47\":1555881643566854144,\"48\":1555864776286556160,\"49\":1555859377038524416,\"50\":1555856910280433665,\"51\":1555833481262993409,\"52\":1555832124401504257,\"53\":1555829826132615168,\"54\":1555829725901295617,\"55\":1555828561424121857,\"56\":1555823200457695233,\"57\":1555765691919261696,\"58\":1555751448482398209,\"59\":1555744004817358848,\"60\":1555743088366260224,\"61\":1555704281352773633,\"62\":1555682404433543188,\"63\":1555673358125105153,\"64\":1555661549276217345,\"65\":1555653889436913664,\"66\":1555646456811425793,\"67\":1555645910100631559,\"68\":1555645888277762050,\"69\":1555645152223543297,\"70\":1555644880520708097,\"71\":1555644670729920514,\"72\":1555642763491901441,\"73\":1555642259760205824,\"74\":1555642082022522881,\"75\":1555632533563482114,\"76\":1555631282817798144,\"77\":1555604087411974144,\"78\":1555601679147446272,\"79\":1555599475577704449,\"80\":1555598994277023744,\"81\":1555596182440771584,\"82\":1555584754224873472,\"83\":1555581916308389889,\"84\":1555581535969050624,\"85\":1555580719384215552,\"86\":1555569850168352770,\"87\":1555568544460439552,\"88\":1555567685156708352,\"89\":1555566301048889348,\"90\":1555557164986548224,\"91\":1555556372212695040,\"92\":1555549458250743809,\"93\":1555549100615077888,\"94\":1555538183483432963,\"95\":1555537110584725506,\"96\":1555536958012653569,\"97\":1555536781621215233,\"98\":1555536558866022401,\"99\":1555536358143397888,\"100\":1555536233526353928,\"101\":1555534034532540417,\"102\":1555534015318335489,\"103\":1555533331395186690,\"104\":1555530540459012096,\"105\":1555528686379859970,\"106\":1555527538163605504,\"107\":1555526355747569665,\"108\":1555526355739090944,\"109\":1555519330288287746,\"110\":1555507581048741889,\"111\":1555489466692911104,\"112\":1555488894203953154,\"113\":1555487138241724421,\"114\":1555485792801259522,\"115\":1555484911703920641,\"116\":1555484687623245825,\"117\":1555484493095604224,\"118\":1555484137737306113,\"119\":1555482458912595969,\"120\":1555477308634546176,\"121\":1555475343321944064,\"122\":1555471508130111490,\"123\":1555467883769110528,\"124\":1555467862516666371,\"125\":1555464376261672960,\"126\":1555461969481801729,\"127\":1555453386195177473,\"128\":1555451251588059136,\"129\":1555451042678071296,\"130\":1555447329133629440,\"131\":1555440103807504385,\"132\":1555432430298882049,\"133\":1555430906868994051,\"134\":1555430421051195393,\"135\":1555429855797428224,\"136\":1555428458246848513,\"137\":1555427170872352768,\"138\":1555424860263927808,\"139\":1555423894001143809,\"140\":1555423133896695808,\"141\":1555420559139393537,\"142\":1555414450961879040,\"143\":1555414324369391616,\"144\":1555411699708092421,\"145\":1555407811441467393,\"146\":1555407272267976704,\"147\":1555404418757103617,\"148\":1555403943349714944,\"149\":1555402994233008129,\"150\":1555401847589978113,\"151\":1555400982259179520,\"152\":1555394763100246017,\"153\":1555393250051194880,\"154\":1555391148688084992,\"155\":1555386497611845633,\"156\":1555375695559380994,\"157\":1555370218377166853,\"158\":1555365612645277701,\"159\":1555363998995988483,\"160\":1555358310815105026,\"161\":1555354262238105601,\"162\":1555351846230921216,\"163\":1555351841726205962,\"164\":1555351032011571202,\"165\":1555350072656896000,\"166\":1555348006265933825,\"167\":1555346514528051200,\"168\":1555341970872090626,\"169\":1555341323653242880,\"170\":1555339745286299649,\"171\":1555339081378324480,\"172\":1555336486056333315,\"173\":1555335843501441030,\"174\":1555333776250703872,\"175\":1555332059526225920,\"176\":1555330385654996994,\"177\":1555328135914201088,\"178\":1555325067273314305,\"179\":1555322974445641741,\"180\":1555320730925015041,\"181\":1555319132786200577,\"182\":1555318567473651713,\"183\":1555317037097951233,\"184\":1555316858437484544,\"185\":1555316682222084099,\"186\":1555315108515123205,\"187\":1555313928296665088,\"188\":1555313672704196608,\"189\":1555313638717530113,\"190\":1555313085501652992,\"191\":1555310059139354627,\"192\":1555309799948034048,\"193\":1555309544292630528,\"194\":1555308825040879622,\"195\":1555307151958188036,\"196\":1555306832515719170,\"197\":1555303207236255744,\"198\":1555301777603543040,\"199\":1555301283451609089,\"200\":1555299516613627904,\"201\":1555298493316665346,\"202\":1555298430469246977,\"203\":1555298215204978690,\"204\":1555297218936115202,\"205\":1555296356348084225,\"206\":1555294104325459968,\"207\":1555293488253747200,\"208\":1555293418661855232,\"209\":1555292946374819841,\"210\":1555290279619563520,\"211\":1555290140561625090,\"212\":1555289958906200064,\"213\":1555289069831311363,\"214\":1555288728205139968,\"215\":1555288045670354950,\"216\":1555287099267551234,\"217\":1555286290148589571,\"218\":1555285352222441474,\"219\":1555285347994583041,\"220\":1555283991019884546,\"221\":1555281558004695040,\"222\":1555279982598946821,\"223\":1555279750452715525,\"224\":1555278483777114112,\"225\":1555277911216848898,\"226\":1555275331761852416,\"227\":1555275017306472449,\"228\":1555274853632319489,\"229\":1555274388391579649,\"230\":1555274246074548227,\"231\":1555273639754334210,\"232\":1555273042221502464,\"233\":1555272697474588673,\"234\":1555271731555848193,\"235\":1555270969526308864,\"236\":1555270720502087680,\"237\":1555270449935810565,\"238\":1555270151976763398,\"239\":1555269706269052931,\"240\":1555266345528434689,\"241\":1555264649989324802,\"242\":1555257331738353667,\"243\":1555256386870657024,\"244\":1555255293524729857,\"245\":1555253770518405123,\"246\":1555252957658112000,\"247\":1555251968133808135,\"248\":1555251488053772289,\"249\":1555251362195247104,\"250\":1555250716188581893,\"251\":1555250097927110658,\"252\":1555248905692086274,\"253\":1555247814728470528,\"254\":1555247603641712640,\"255\":1555247359264784394,\"256\":1555247100291870720,\"257\":1555246099278995456,\"258\":1555245847591403520,\"259\":1555245463124824069,\"260\":1555241326807060480,\"261\":1555240679495929856,\"262\":1555239078848765957,\"263\":1555238918651629571,\"264\":1555237679377399809,\"265\":1555237490612731906,\"266\":1555236809046728704,\"267\":1555236168366686208,\"268\":1555236101505355777,\"269\":1555235741848010753,\"270\":1555234426979770369,\"271\":1555234093394190336,\"272\":1555231492674134016,\"273\":1555231420993478661,\"274\":1555231414681014273,\"275\":1555231357957185538,\"276\":1555231253607194624,\"277\":1555231206953963520,\"278\":1555231080936099842,\"279\":1555231056076410880,\"280\":1555229961732194307,\"281\":1555228742951256064,\"282\":1555228303707017217,\"283\":1555228026228588551,\"284\":1555227723748065282,\"285\":1555225412145405952,\"286\":1555224391016931329,\"287\":1555223955497271296,\"288\":1555223839545630720,\"289\":1555223446975569920,\"290\":1555222105674977281,\"291\":1555220227746664448,\"292\":1555220046305181696,\"293\":1555219900653862913,\"294\":1555219782856851458,\"295\":1555219220975308802,\"296\":1555219165115551747,\"297\":1555218967303753729,\"298\":1555218350619430914,\"299\":1555218263872765955,\"300\":1555218235380875266,\"301\":1555215938898755585,\"302\":1555214019400810498,\"303\":1555213282570514433,\"304\":1555213231454552069,\"305\":1555212380228960256,\"306\":1555211768405827584,\"307\":1555211358597160961,\"308\":1555210958066294784,\"309\":1555210716088598530,\"310\":1555206957140680704,\"311\":1555204755034722304,\"312\":1555204414499164162,\"313\":1555204178976423938,\"314\":1555203906069741570,\"315\":1555203741317566464,\"316\":1555203587046887425,\"317\":1555203195563118592,\"318\":1555203105435836416,\"319\":1555202945276329986,\"320\":1555202736710422528,\"321\":1555201883526107141,\"322\":1555201781013028867,\"323\":1555201393216131076,\"324\":1555200972980371458,\"325\":1555198138029412353,\"326\":1555197747762020353,\"327\":1555197297847328768,\"328\":1555196918137069570,\"329\":1555196763736342531,\"330\":1555195061092196352,\"331\":1555194321330180096,\"332\":1555194091448811520,\"333\":1555193658546294784,\"334\":1555192171078340608,\"335\":1555191931197693954,\"336\":1555191551189557253,\"337\":1555191107436290050,\"338\":1555191096170479617,\"339\":1555189409909276680,\"340\":1555189182955503616,\"341\":1555189075602178049,\"342\":1555186278202806276,\"343\":1555185939084972032,\"344\":1555184920984682497,\"345\":1555184653732028418,\"346\":1555184514900582401,\"347\":1555182895467315200,\"348\":1555181501632942083,\"349\":1555180488222035973,\"350\":1555180458555613184,\"351\":1555177954409332740,\"352\":1555176811369218049,\"353\":1555175075380338689,\"354\":1555174968110878720,\"355\":1555174187639209984,\"356\":1555173963566915584,\"357\":1555173247641161729,\"358\":1555170564452515840,\"359\":1555169785113182209,\"360\":1555169367872118786,\"361\":1555169329624371201,\"362\":1555168278548471814,\"363\":1555168058779525126,\"364\":1555167787605233664,\"365\":1555166595865055232,\"366\":1555165846510751746,\"367\":1555165337112530944,\"368\":1555165192924831744,\"369\":1555162977254391809,\"370\":1555162714733006849,\"371\":1555161230607777793,\"372\":1555160016973209600,\"373\":1555158687773229056,\"374\":1555158033004724225,\"375\":1555157899948818433,\"376\":1555157065131298817,\"377\":1555156719885492224,\"378\":1555155450995556352,\"379\":1555155274020917248,\"380\":1555155081980411905,\"381\":1555154606044454912,\"382\":1555154282038657026,\"383\":1555153649315241984,\"384\":1555153135496478720,\"385\":1555152879358459904,\"386\":1555152668116533248,\"387\":1555152605470662656,\"388\":1555152122827751425,\"389\":1555152097120755713,\"390\":1555152053936201730,\"391\":1555151225103982592,\"392\":1555150978747432963,\"393\":1555150597149433864,\"394\":1555150232064860161,\"395\":1555149702697476101,\"396\":1555149398035906561,\"397\":1555148913782493185,\"398\":1555147801557962753,\"399\":1555147066300563456,\"400\":1555145656502722561,\"401\":1555145195234148352,\"402\":1555144224714231809,\"403\":1555143956614111232,\"404\":1555143876838670338,\"405\":1555143706495356930,\"406\":1555141891812900864,\"407\":1555141319676366848,\"408\":1555140625653186560,\"409\":1555139778533888000,\"410\":1555139554767769602,\"411\":1555139435934654464,\"412\":1555139152135561218,\"413\":1555138829111156736,\"414\":1555138525649043457,\"415\":1555138012203335680,\"416\":1555136512567697408,\"417\":1555136048174440449,\"418\":1555135839843352576,\"419\":1555135838857609217,\"420\":1555134964127121408,\"421\":1555134319928156162,\"422\":1555133713612169216,\"423\":1555133411550969856,\"424\":1555132666793840641,\"425\":1555131296053170177,\"426\":1555131195222069249,\"427\":1555130893794267138,\"428\":1555129146388500482,\"429\":1555128354340233217,\"430\":1555128108503732224,\"431\":1555127655908970497,\"432\":1555126966491152384,\"433\":1555126445692768256,\"434\":1555126401535287299,\"435\":1555126328071946240,\"436\":1555126221201096704,\"437\":1555126188162654208,\"438\":1555123728350158849,\"439\":1555123024881500161,\"440\":1555122862587105280,\"441\":1555122411443478528,\"442\":1555119013126094848,\"443\":1555114494996660224,\"444\":1555113873476313088,\"445\":1555113286785531905,\"446\":1555112511707533313,\"447\":1555111116220628992,\"448\":1555110753358708737,\"449\":1555110646349430789,\"450\":1555109230616649728,\"451\":1555109135024328704,\"452\":1555108769641762816,\"453\":1555108071277531139,\"454\":1555107530749218816,\"455\":1555106135442702339,\"456\":1555105959676100608,\"457\":1555105707715862528,\"458\":1555105421039484929,\"459\":1555104574884683777,\"460\":1555104345552715776,\"461\":1555104127406989312,\"462\":1555103518092140545,\"463\":1555103100406534145,\"464\":1555102075922563074,\"465\":1555101170439438337,\"466\":1555101138512486401,\"467\":1555100209516056576,\"468\":1555099031281537026,\"469\":1555098095113089025,\"470\":1555097790358904834,\"471\":1555096995492204546,\"472\":1555096954962583552,\"473\":1555096557204213760,\"474\":1555096536874455040,\"475\":1555096065774436352,\"476\":1555095720570621954,\"477\":1555095670616461312,\"478\":1555095639494623233,\"479\":1555095534242877440,\"480\":1555095444807712806,\"481\":1555095209926598658,\"482\":1555095075570556929,\"483\":1555094959266713600,\"484\":1555094858410463233,\"485\":1555094753410170880,\"486\":1555094665124274176,\"487\":1555094597881192448,\"488\":1555094485511585792,\"489\":1555094484245008386,\"490\":1555094421896663040,\"491\":1555094324123209728,\"492\":1555094124021309440,\"493\":1555094043893415946,\"494\":1555093987098345472,\"495\":1555093867774476288,\"496\":1555093842822660097,\"497\":1555093689298468865,\"498\":1555093622894104576,\"499\":1555093582700322816,\"500\":1555093382518693889,\"501\":1555093282232860672,\"502\":1555093146769432576,\"503\":1555092899624325120,\"504\":1555092571201888256,\"505\":1555091958321844224,\"506\":1555091460365639680,\"507\":1555090787318353920,\"508\":1555089988752113666,\"509\":1555089627396149250,\"510\":1555089541727457282,\"511\":1555089213820993540,\"512\":1555088313282957315,\"513\":1555087937699815425,\"514\":1555086880462577664,\"515\":1555086748367179778,\"516\":1555086720407928832,\"517\":1555085774076477441,\"518\":1555085041222524928,\"519\":1555085002794205186,\"520\":1555084522563293184,\"521\":1555084450165407746,\"522\":1555084387833856005,\"523\":1555083016980111362,\"524\":1555082220565569536,\"525\":1555081712870326273,\"526\":1555081688241381377,\"527\":1555079122791055360,\"528\":1555078393535897600,\"529\":1555078032158855169,\"530\":1555077961669382144,\"531\":1555076714312699904,\"532\":1555075883454664704,\"533\":1555074729022717955,\"534\":1555073319896076289,\"535\":1555073206578470912,\"536\":1555073109618819074,\"537\":1555073073103118337,\"538\":1555073061468110848,\"539\":1555072972540485632,\"540\":1555072903242211330,\"541\":1555072836330524672,\"542\":1555072614292488192,\"543\":1555071764933361665,\"544\":1555071392021897217,\"545\":1555069433441402883,\"546\":1555069289308241927,\"547\":1555061972483588096,\"548\":1555061325436420096,\"549\":1555056027233824768,\"550\":1555040833744691200,\"551\":1555037428884307968,\"552\":1555036308552253440,\"553\":1555031716372381696,\"554\":1555024176137781250,\"555\":1555020307894878208,\"556\":1555015354488954880,\"557\":1555014696524288002,\"558\":1555010634030383108,\"559\":1555010062569046016,\"560\":1555003770404306945,\"561\":1554998401888141312,\"562\":1554993460956073984,\"563\":1554989512484331520,\"564\":1554985257119760390,\"565\":1554984208589885441,\"566\":1554977853988560896,\"567\":1554977697398267904,\"568\":1554968669574283264,\"569\":1554967602467938307,\"570\":1554965283621806085,\"571\":1554964398757773312,\"572\":1554964209598881792,\"573\":1554963409325752321,\"574\":1554956228828319744,\"575\":1554955376927416320,\"576\":1554955224967684102,\"577\":1554955209960329216,\"578\":1554954769776656385,\"579\":1554954179222839299,\"580\":1554953058412527616,\"581\":1554952696884494336,\"582\":1554952346110775301,\"583\":1554951856362819584,\"584\":1554947190027681792,\"585\":1554947171329376257,\"586\":1554947130447495172,\"587\":1554945886744186880,\"588\":1554943957313912833,\"589\":1554940473357344770,\"590\":1554936394639986690,\"591\":1554935935300665344,\"592\":1554932017342578692,\"593\":1554930832753807365,\"594\":1554929759095869440,\"595\":1554927439276548105,\"596\":1554925804731207680,\"597\":1554925470789025797,\"598\":1554925335430533121,\"599\":1554925033604128768,\"600\":1554924328852094976,\"601\":1554922799667503106,\"602\":1554921749074026496,\"603\":1554921120905760778,\"604\":1554920465453535234,\"605\":1554920240940826626,\"606\":1554919792158691329,\"607\":1554919572913930240,\"608\":1554919550172495872,\"609\":1554918854165422082,\"610\":1554918698191831044,\"611\":1554918313272266753,\"612\":1554917658948255750,\"613\":1554917350310395911,\"614\":1554916934776487936,\"615\":1554916841855848448,\"616\":1554916614562275333,\"617\":1554916086897934338,\"618\":1554914919761453056,\"619\":1554914363928100864,\"620\":1554914152052817920,\"621\":1554914010465800194,\"622\":1554913407270354947,\"623\":1554910877131984898,\"624\":1554910708340490244,\"625\":1554910701755502595,\"626\":1554910206764765184,\"627\":1554909529577512960,\"628\":1554909353592860674,\"629\":1554909245790896128,\"630\":1554909038470746114,\"631\":1554908266764931072,\"632\":1554908064335237122,\"633\":1554908019191943175,\"634\":1554907619403485185,\"635\":1554907177579528192,\"636\":1554906423393386496,\"637\":1554905444610703361,\"638\":1554905114531577859,\"639\":1554904346176929792,\"640\":1554904303579660289,\"641\":1554904155625558016,\"642\":1554903921407266824,\"643\":1554903129673666560,\"644\":1554901550665015298,\"645\":1554899262617653248,\"646\":1554898069640151042,\"647\":1554895525392138241,\"648\":1554895519801024513,\"649\":1554895023048630272,\"650\":1554894614267568128,\"651\":1554894090600325120,\"652\":1554893836513599488,\"653\":1554892872708669440,\"654\":1554892656282681346,\"655\":1554891245608210433,\"656\":1554890637715054593,\"657\":1554890515123937280,\"658\":1554889578019946496,\"659\":1554889457706434560,\"660\":1554888810739154949,\"661\":1554888288187596801,\"662\":1554887674498007040,\"663\":1554887434168573952,\"664\":1554884737327681545,\"665\":1554884564845297664,\"666\":1554883393925554177,\"667\":1554883174987079681,\"668\":1554883093852479491,\"669\":1554882467999408132,\"670\":1554882223177965572,\"671\":1554881430416723970,\"672\":1554881056008187904,\"673\":1554880361267593217,\"674\":1554879886778634243,\"675\":1554879559425822721,\"676\":1554877321890467847,\"677\":1554876888396562433,\"678\":1554876236282863616,\"679\":1554875536480018433,\"680\":1554875263674187778,\"681\":1554875260260044807,\"682\":1554875116768608256,\"683\":1554875042147827712,\"684\":1554873915180302344,\"685\":1554873871156723712,\"686\":1554872532582400001,\"687\":1554872252679815169,\"688\":1554872078981029889,\"689\":1554871513584701440,\"690\":1554869975638474752,\"691\":1554869155698016263,\"692\":1554868702105030657,\"693\":1554868104890548224,\"694\":1554867028175069184,\"695\":1554866394885488640,\"696\":1554866358986444800,\"697\":1554864281786748928,\"698\":1554864142984642564,\"699\":1554863391801577475,\"700\":1554863265620049922,\"701\":1554863081024589824,\"702\":1554862857627598849,\"703\":1554862669466853387,\"704\":1554861807709339648,\"705\":1554861376585220096,\"706\":1554861159978770438,\"707\":1554860847461179392,\"708\":1554859470001475584,\"709\":1554858371622359044,\"710\":1554857741767802884,\"711\":1554857391572795395,\"712\":1554857027855335426,\"713\":1554856466481307648,\"714\":1554856273216241674,\"715\":1554855618275676162,\"716\":1554854432843747328,\"717\":1554854317353586690,\"718\":1554853584608673792,\"719\":1554853500152336384,\"720\":1554852946457812992,\"721\":1554852816983937028,\"722\":1554851525855526912,\"723\":1554850987222917128,\"724\":1554849169902297088,\"725\":1554848854914351105,\"726\":1554847720237588483,\"727\":1554847318733688835,\"728\":1554847181386940416,\"729\":1554845904175259648,\"730\":1554845844062470145,\"731\":1554845204703854592,\"732\":1554845034851213314,\"733\":1554844905943564290,\"734\":1554843910261932034,\"735\":1554843537736351744,\"736\":1554840867164360706,\"737\":1554840769541840897,\"738\":1554840595432177666,\"739\":1554840044241911810,\"740\":1554839916168859648,\"741\":1554839451213381632,\"742\":1554839139752652802,\"743\":1554838957422219265,\"744\":1554838885879906304,\"745\":1554838355950637056,\"746\":1554838024537509889,\"747\":1554837697813917699,\"748\":1554837432276684811,\"749\":1554836957687005186,\"750\":1554835507216994312,\"751\":1554835264660328449,\"752\":1554835221819731969,\"753\":1554835162839465992,\"754\":1554835145458212865,\"755\":1554835123329064961,\"756\":1554834472549244937,\"757\":1554832397509672961,\"758\":1554831369179516928,\"759\":1554831323415490560,\"760\":1554830864189575175,\"761\":1554829962636472322,\"762\":1554829815449931777,\"763\":1554829087671169028,\"764\":1554827387468058628,\"765\":1554825762682769413,\"766\":1554825674224910341,\"767\":1554825642171961345,\"768\":1554825577894330369,\"769\":1554825577231552513,\"770\":1554825410940002307,\"771\":1554825293419778048,\"772\":1554825089337606144,\"773\":1554825025114345473,\"774\":1554824984425480199,\"775\":1554824889399250947,\"776\":1554824875520299010,\"777\":1554824829877989378,\"778\":1554824799146323969,\"779\":1554824748428697602,\"780\":1554824681747664899,\"781\":1554824624193474563,\"782\":1554824399785586690,\"783\":1554824354432552960,\"784\":1554824304205766656,\"785\":1554824240989319168,\"786\":1554823991629451264,\"787\":1554823249082605570,\"788\":1554823137191010304,\"789\":1554822970660360192,\"790\":1554822847855337472,\"791\":1554822673993068546,\"792\":1554821956616146947,\"793\":1554821258285502465,\"794\":1554820786933735425,\"795\":1554820732747558913,\"796\":1554820709485928450,\"797\":1554820531186286592,\"798\":1554820392237248512,\"799\":1554820342190948353,\"800\":1554818157616852993,\"801\":1554816629770444804,\"802\":1554816429769252864,\"803\":1554816276471681024,\"804\":1554815936988856320,\"805\":1554815491369324544,\"806\":1554815003668135939,\"807\":1554814620853993475,\"808\":1554814505036693506,\"809\":1554813907788877827,\"810\":1554813806672596994,\"811\":1554813725508571137,\"812\":1554813586194792448,\"813\":1554813299744800768,\"814\":1554813174087655424,\"815\":1554812936102838272,\"816\":1554812868356349954,\"817\":1554812801448902656,\"818\":1554812726647611393,\"819\":1554812455939092480,\"820\":1554812098168754176,\"821\":1554812049401778177,\"822\":1554811872351866882,\"823\":1554811798313918464,\"824\":1554810881116078080,\"825\":1554810633786466306,\"826\":1554810030259568640,\"827\":1554809537802260482,\"828\":1554807692920766467,\"829\":1554807550247313408,\"830\":1554807534371966981,\"831\":1554806583829446656,\"832\":1554806541835968512,\"833\":1554806450366681088,\"834\":1554806099894747138,\"835\":1554806099471208448,\"836\":1554805150509944835,\"837\":1554804475784740865,\"838\":1554804208410497028,\"839\":1554803817425899520,\"840\":1554801857461207042,\"841\":1554801255620530179,\"842\":1554800801729724418,\"843\":1554800267329159170,\"844\":1554799845730390018,\"845\":1554798804939206656,\"846\":1554798185935261696,\"847\":1554797887225307137,\"848\":1554797655632510976,\"849\":1554796964734189569,\"850\":1554796856193974273,\"851\":1554796586932248578,\"852\":1554796314440916992,\"853\":1554796164574285829,\"854\":1554795312786669568,\"855\":1554794720462766080,\"856\":1554794668562554881,\"857\":1554793938686562304,\"858\":1554793400167272450,\"859\":1554793282881847297,\"860\":1554792947694112770,\"861\":1554792747147706370,\"862\":1554791408111951874,\"863\":1554790964002168853,\"864\":1554790650343718916,\"865\":1554790540369174529,\"866\":1554790368180322305,\"867\":1554790310588317699,\"868\":1554789862812880899,\"869\":1554789690523410436,\"870\":1554789438236069888,\"871\":1554789312625090561,\"872\":1554788988187283456,\"873\":1554788967979126784,\"874\":1554788274752847874,\"875\":1554788088794292230,\"876\":1554787860460494848,\"877\":1554787558718144512,\"878\":1554787465952641029,\"879\":1554787362571419648,\"880\":1554786948564353026,\"881\":1554786103110078465,\"882\":1554785715841646592,\"883\":1554785500401106948,\"884\":1554785109202665476,\"885\":1554784847402598401,\"886\":1554784157557051392,\"887\":1554783877993988097,\"888\":1554783617787875334,\"889\":1554783418755325953,\"890\":1554783305131753472,\"891\":1554782552447139840,\"892\":1554782489037742083,\"893\":1554782100057899013,\"894\":1554782041039945728,\"895\":1554782000061583360,\"896\":1554781623891046400,\"897\":1554781577946742785,\"898\":1554780662858760192,\"899\":1554780535892971521,\"900\":1554780161714917376,\"901\":1554779819296137217,\"902\":1554779705676648449,\"903\":1554778707788795906,\"904\":1554778649164976129,\"905\":1554778433309245441,\"906\":1554778267999240193,\"907\":1554778141675196417,\"908\":1554778138995040256,\"909\":1554778135379562496,\"910\":1554778101862879242,\"911\":1554778051082436608,\"912\":1554777567802040321,\"913\":1554777563842633728,\"914\":1554777432208588801,\"915\":1554777354395951105,\"916\":1554777349111029760,\"917\":1554777235554435072,\"918\":1554776611374989313,\"919\":1554776497801629696,\"920\":1554776004161314816,\"921\":1554775783595544576,\"922\":1554775733179916290,\"923\":1554775658554920960,\"924\":1554775538765529090,\"925\":1554775131767046144,\"926\":1554775098518712320,\"927\":1554774694976536576,\"928\":1554773996087943168,\"929\":1554773735835664384,\"930\":1554773665497202690,\"931\":1554773340077817857,\"932\":1554773028235608064,\"933\":1554772663498711040,\"934\":1554772632880521218,\"935\":1554772467201327104,\"936\":1554772019346022407,\"937\":1554771164572049408,\"938\":1554771123782524929,\"939\":1554770988902109186,\"940\":1554770731585589248,\"941\":1554769934298791937,\"942\":1554769842128969731,\"943\":1554769293211889666,\"944\":1554768633062215691,\"945\":1554768321983422464,\"946\":1554767858600513536,\"947\":1554767417963954176,\"948\":1554766319274393601,\"949\":1554766153855254529,\"950\":1554765853220036608,\"951\":1554765387874590722,\"952\":1554765285294542850,\"953\":1554765082739056641,\"954\":1554764958662942720,\"955\":1554764294016737280,\"956\":1554763861085093888,\"957\":1554763044194058240,\"958\":1554762358064648193,\"959\":1554762305824378881,\"960\":1554762201919012864,\"961\":1554761745159409664,\"962\":1554761554939322368,\"963\":1554761100834521090,\"964\":1554760645769306112,\"965\":1554760110320271360,\"966\":1554760106612367360,\"967\":1554759468705005570,\"968\":1554758991976202241,\"969\":1554758927639781377,\"970\":1554758665240018946,\"971\":1554758462952833025,\"972\":1554758300004237313,\"973\":1554757312325246977,\"974\":1554757121086001152,\"975\":1554756888679555072,\"976\":1554756741191057412,\"977\":1554755756930568193,\"978\":1554755014110969856,\"979\":1554754941398519808,\"980\":1554754395887247361,\"981\":1554753949986525184,\"982\":1554753358573060096,\"983\":1554753222811721728,\"984\":1554752436572667904,\"985\":1554752228992368641,\"986\":1554750902178877440,\"987\":1554750752471584774,\"988\":1554750497139089408,\"989\":1554750398535110657,\"990\":1554750357292650496,\"991\":1554750169228492801,\"992\":1554750035895545858,\"993\":1554749973744521216,\"994\":1554749956875067392,\"995\":1554749484063760384,\"996\":1554749294770413568,\"997\":1554748781551288321,\"998\":1554748203605565441,\"999\":1554748151734624256,\"1000\":1554748090858479616,\"1001\":1554748026547310592,\"1002\":1554747966161920002,\"1003\":1554747896305795078,\"1004\":1554747830568353792,\"1005\":1554747760276127745,\"1006\":1554747547788484608,\"1007\":1554747351927033856,\"1008\":1554747247434366977,\"1009\":1554746410469318657,\"1010\":1554745680635338754,\"1011\":1554745475730968580,\"1012\":1554745332243767296,\"1013\":1554744948796399617,\"1014\":1554744706357112837,\"1015\":1554743578127212544,\"1016\":1554743515757903873,\"1017\":1554743273234829312,\"1018\":1554741633626816513,\"1019\":1554740126550560773,\"1020\":1554739926125760512,\"1021\":1554739517940195329,\"1022\":1554738972546539520,\"1023\":1554738893982932993,\"1024\":1554738550238838786,\"1025\":1554737862293209089,\"1026\":1554737243566362625,\"1027\":1554735966472085504,\"1028\":1554735948960784384,\"1029\":1554735947413176320,\"1030\":1554735759818620928,\"1031\":1554735453118529537,\"1032\":1554735443136192512,\"1033\":1554734810131734530,\"1034\":1554734371969662976,\"1035\":1554734274032590850,\"1036\":1554733314564554752,\"1037\":1554733053494403074,\"1038\":1554732574689443840,\"1039\":1554732329196740609,\"1040\":1554731771115225088,\"1041\":1554730661495410688,\"1042\":1554730211597586433,\"1043\":1554729562080174081,\"1044\":1554729307204947968,\"1045\":1554729093857435649,\"1046\":1554728958880612353,\"1047\":1554727898711576576,\"1048\":1554726841772023808,\"1049\":1554726590654959616,\"1050\":1554726355853627394,\"1051\":1554725439599435777,\"1052\":1554725366044004359,\"1053\":1554724189541744641,\"1054\":1554723970548699137,\"1055\":1554722830654242816,\"1056\":1554722351207616512,\"1057\":1554721500996984836,\"1058\":1554720326709288960,\"1059\":1554719466797293568,\"1060\":1554718940496105473,\"1061\":1554717766523015169,\"1062\":1554717604618575872,\"1063\":1554717574407020547,\"1064\":1554716689337655297,\"1065\":1554716381962293253,\"1066\":1554715101596467202,\"1067\":1554714732828950531,\"1068\":1554714297980395521,\"1069\":1554714059471200258,\"1070\":1554713631694233600,\"1071\":1554712843437723649,\"1072\":1554711896250634240,\"1073\":1554711804013576192,\"1074\":1554711445836816384,\"1075\":1554710920110252032,\"1076\":1554710888313196544,\"1077\":1554710620532084741,\"1078\":1554709244364132352,\"1079\":1554708959176675329,\"1080\":1554708618041298944,\"1081\":1554707960097828864,\"1082\":1554707579426992128,\"1083\":1554707436271026177,\"1084\":1554706442460037120,\"1085\":1554706296670195713,\"1086\":1554706027442241537,\"1087\":1554704243826823170,\"1088\":1554704111563595776,\"1089\":1554703008604102656,\"1090\":1554702333577150466,\"1091\":1554701125781176321,\"1092\":1554701092881108993,\"1093\":1554700773983911936,\"1094\":1554697466905350146,\"1095\":1554696312964218880,\"1096\":1554695248365985792,\"1097\":1554695199330340864,\"1098\":1554695069982228480,\"1099\":1554695001199841280,\"1100\":1554694907486502912,\"1101\":1554694632860274688,\"1102\":1554694569500897282,\"1103\":1554694071809105922,\"1104\":1554693967874244608,\"1105\":1554693495687974912,\"1106\":1554693275319246848,\"1107\":1554693154535784451,\"1108\":1554693052094087168,\"1109\":1554692925602365441,\"1110\":1554692889975947264,\"1111\":1554692857457508352,\"1112\":1554692432574533632,\"1113\":1554690673508581376,\"1114\":1554690307333160963,\"1115\":1554689632960499717,\"1116\":1554689566824620033,\"1117\":1554689495647363073,\"1118\":1554689401086787584,\"1119\":1554689059997597696,\"1120\":1554688904581857281,\"1121\":1554688861569171457,\"1122\":1554688695550504960,\"1123\":1554688562922135555,\"1124\":1554688491207925760,\"1125\":1554688236685082624,\"1126\":1554687233462251521,\"1127\":1554684901747818497,\"1128\":1554684467146792962,\"1129\":1554683698901041153,\"1130\":1554683625207209984,\"1131\":1554683551077273600,\"1132\":1554682464236437505,\"1133\":1554682393843359744,\"1134\":1554680702549086209,\"1135\":1554678544923594753,\"1136\":1554678453177286656,\"1137\":1554678221798400000,\"1138\":1554676028567863297,\"1139\":1554675750741356544,\"1140\":1554675349258371072,\"1141\":1554674844339675136,\"1142\":1554672615503060992,\"1143\":1554665920831832066,\"1144\":1554663850615742467,\"1145\":1554661276697100289,\"1146\":1554657797245222912,\"1147\":1554656391226441729,\"1148\":1554654394930577419,\"1149\":1554652780295495681,\"1150\":1554648838211833856,\"1151\":1554644302789222406,\"1152\":1554642745213558785,\"1153\":1554638440527962112,\"1154\":1554638302266941441,\"1155\":1554637878625542146,\"1156\":1554637068256559105,\"1157\":1554635445933334530,\"1158\":1554630465654505472,\"1159\":1554628198813540352,\"1160\":1554619892044861441,\"1161\":1554619614025375746,\"1162\":1554618074481016832,\"1163\":1554615955405275137,\"1164\":1554614885547393024,\"1165\":1554614174243868673,\"1166\":1554614076109737985,\"1167\":1554612845341540353,\"1168\":1554611268228710402,\"1169\":1554610609047670785,\"1170\":1554609718651506689,\"1171\":1554609029619523584,\"1172\":1554607749148905474,\"1173\":1554606539872288769,\"1174\":1554606340001173504,\"1175\":1554603566140198912,\"1176\":1554602830664802305,\"1177\":1554602151254556680,\"1178\":1554602070724026370,\"1179\":1554601323043377152,\"1180\":1554600627451449345,\"1181\":1554599767337992197,\"1182\":1554599480476975104,\"1183\":1554597692801794053,\"1184\":1554597548131745793,\"1185\":1554597054571225088,\"1186\":1554597018705747968,\"1187\":1554594793111654402,\"1188\":1554593692190752768,\"1189\":1554591385281593347,\"1190\":1554591147208675329,\"1191\":1554590639408484353,\"1192\":1554589306408341507,\"1193\":1554589166352187393,\"1194\":1554589021396824064,\"1195\":1554588484404449289,\"1196\":1554587978223288320,\"1197\":1554587886007320577,\"1198\":1554586355518300166,\"1199\":1554585575214272513,\"1200\":1554585295580004355,\"1201\":1554584412356050948,\"1202\":1554583820158001152,\"1203\":1554583020010901504,\"1204\":1554582994836414465,\"1205\":1554582779278548993,\"1206\":1554582665101180930,\"1207\":1554582530015248384,\"1208\":1554582068595724289,\"1209\":1554581905239969792,\"1210\":1554581653745348608,\"1211\":1554581573659410433,\"1212\":1554581240686297088,\"1213\":1554581013409546248,\"1214\":1554580482276335617,\"1215\":1554579339567661056,\"1216\":1554579142963863555,\"1217\":1554578608420683782,\"1218\":1554578605518249987,\"1219\":1554577906474655744,\"1220\":1554577672927416320,\"1221\":1554577036416618496,\"1222\":1554576778512982016,\"1223\":1554576626133999616,\"1224\":1554576134330896392,\"1225\":1554576016806387712,\"1226\":1554575519135440899,\"1227\":1554575513427091457,\"1228\":1554575508922400768,\"1229\":1554575385966297088,\"1230\":1554575356857819138,\"1231\":1554575319453032448,\"1232\":1554575184077942784,\"1233\":1554575008814583808,\"1234\":1554574892447764484,\"1235\":1554574791742562305,\"1236\":1554574666353754117,\"1237\":1554574534572924928,\"1238\":1554574477953990657,\"1239\":1554574225763090434,\"1240\":1554574083785986048,\"1241\":1554573928336691206,\"1242\":1554573919285288961,\"1243\":1554573819876081668,\"1244\":1554573806513143810,\"1245\":1554573789152813056,\"1246\":1554573719493910528,\"1247\":1554573632428449801,\"1248\":1554573466669662208,\"1249\":1554573380803764224,\"1250\":1554573326240071681,\"1251\":1554572838216114182,\"1252\":1554572799079071747,\"1253\":1554572637136887820,\"1254\":1554572499039526913,\"1255\":1554572423453970432,\"1256\":1554572159581814787,\"1257\":1554571989330710528,\"1258\":1554571875455483911,\"1259\":1554571726410981377,\"1260\":1554571640062763015,\"1261\":1554571502409981952,\"1262\":1554571371363041284,\"1263\":1554571349196242944,\"1264\":1554570941488840704,\"1265\":1554570866075217920,\"1266\":1554570354005360645,\"1267\":1554570096919646214,\"1268\":1554569825044905986,\"1269\":1554568595971215362,\"1270\":1554567302422609920,\"1271\":1554567192582258688,\"1272\":1554567123468443649,\"1273\":1554566822401277954,\"1274\":1554566359635435522,\"1275\":1554566196808269825,\"1276\":1554565885150609412,\"1277\":1554565623275044867,\"1278\":1554565609727397888,\"1279\":1554565491808784386,\"1280\":1554565373692747777,\"1281\":1554565016489279498,\"1282\":1554564794887421954,\"1283\":1554564668982808579,\"1284\":1554564582940844036,\"1285\":1554564046287953921,\"1286\":1554563834324652032,\"1287\":1554563551221760001,\"1288\":1554563249894555648,\"1289\":1554563096756293633,\"1290\":1554560269271048199,\"1291\":1554560172017811465,\"1292\":1554560151427993602,\"1293\":1554560080577794048,\"1294\":1554559331294756866,\"1295\":1554559036997226499,\"1296\":1554559032274345993,\"1297\":1554557971069374464,\"1298\":1554557599009234949,\"1299\":1554556886346776577,\"1300\":1554556555688910849,\"1301\":1554556148744916993,\"1302\":1554555960462565376,\"1303\":1554555838387220480,\"1304\":1554555643092140034,\"1305\":1554555495012343808,\"1306\":1554554904034811906,\"1307\":1554554849752223744,\"1308\":1554554648719245312,\"1309\":1554554644755632129,\"1310\":1554553914145529857,\"1311\":1554553577816920067,\"1312\":1554553518006075392,\"1313\":1554553478462279681,\"1314\":1554553249323253761,\"1315\":1554553221947002887,\"1316\":1554553045366853634,\"1317\":1554552991683936257,\"1318\":1554552848750346241,\"1319\":1554552644525604865,\"1320\":1554552365029724160,\"1321\":1554552307462938626,\"1322\":1554551906302820352,\"1323\":1554551329720340485,\"1324\":1554551325458849794,\"1325\":1554550925813075971,\"1326\":1554550700868247553,\"1327\":1554550433070415873,\"1328\":1554550345572958212,\"1329\":1554549729916223488,\"1330\":1554549643740061697,\"1331\":1554549440316317697,\"1332\":1554549359580160003,\"1333\":1554548681818488832,\"1334\":1554547421912485888,\"1335\":1554547350294740996,\"1336\":1554546962938171393,\"1337\":1554546282605207553,\"1338\":1554545801929555968,\"1339\":1554545745671647232,\"1340\":1554545706051969025,\"1341\":1554545190920245250,\"1342\":1554544689168224257,\"1343\":1554544560809951233,\"1344\":1554544542657003523,\"1345\":1554544471437606920,\"1346\":1554544243770900482,\"1347\":1554543995967229953,\"1348\":1554543708581797888,\"1349\":1554543237129535493,\"1350\":1554543236122804227,\"1351\":1554542950096543744,\"1352\":1554542909042696192,\"1353\":1554542637566332931,\"1354\":1554542183092555779,\"1355\":1554542089882435588,\"1356\":1554541886446178305,\"1357\":1554541029298212864,\"1358\":1554540643040591873,\"1359\":1554540517962178561,\"1360\":1554540287493562369,\"1361\":1554540176826945538,\"1362\":1554540087072804864,\"1363\":1554540044010110978,\"1364\":1554539314142388225,\"1365\":1554539214624153605,\"1366\":1554539206222946305,\"1367\":1554539165949349888,\"1368\":1554539112664817665,\"1369\":1554539059573293061,\"1370\":1554539019513495552,\"1371\":1554539007748579328,\"1372\":1554538894305234946,\"1373\":1554538875758022656,\"1374\":1554538800491233280,\"1375\":1554538780253634560,\"1376\":1554538774037667843,\"1377\":1554538758644580352,\"1378\":1554538727535435776,\"1379\":1554538715862765568,\"1380\":1554538696090714112,\"1381\":1554538271279128581,\"1382\":1554537633778483209,\"1383\":1554536944335552513,\"1384\":1554536733772984325,\"1385\":1554536249469321217,\"1386\":1554536017058840578,\"1387\":1554535866445402112,\"1388\":1554535404321251331,\"1389\":1554534886828122112,\"1390\":1554534825268215809,\"1391\":1554534379522871298,\"1392\":1554534153915359234,\"1393\":1554533761794072582,\"1394\":1554533131067494400,\"1395\":1554532902226087938,\"1396\":1554532762673111045,\"1397\":1554532268265377798,\"1398\":1554532226620178433,\"1399\":1554530216835534849,\"1400\":1554529005164023808,\"1401\":1554528762456379392,\"1402\":1554528652737536000,\"1403\":1554528594168348673,\"1404\":1554528478372007936,\"1405\":1554527905132253184,\"1406\":1554527789856051200,\"1407\":1554527634888982532,\"1408\":1554526464267227136,\"1409\":1554525020025720832,\"1410\":1554524966569271296,\"1411\":1554524532714635264,\"1412\":1554524433955569664,\"1413\":1554523740372959235,\"1414\":1554523595962974210,\"1415\":1554523496755216387,\"1416\":1554523092919148545,\"1417\":1554522306642202624,\"1418\":1554521869461618688,\"1419\":1554521604608196614,\"1420\":1554521163749023744,\"1421\":1554520500147200000,\"1422\":1554520489074327552,\"1423\":1554520326926655490,\"1424\":1554519504427909120,\"1425\":1554519449943818243,\"1426\":1554519410077061123,\"1427\":1554519341718450176,\"1428\":1554519169512660994,\"1429\":1554518736563994624,\"1430\":1554518265938026503,\"1431\":1554517903122243588,\"1432\":1554517635156656128,\"1433\":1554517312392368131,\"1434\":1554517160407572485,\"1435\":1554516660421365762,\"1436\":1554516659997736961,\"1437\":1554516323786526720,\"1438\":1554516046807179264,\"1439\":1554515819991801859,\"1440\":1554515738001563650,\"1441\":1554515408891305984,\"1442\":1554515092099796994,\"1443\":1554514940857401344,\"1444\":1554514586954596353,\"1445\":1554514249975828480,\"1446\":1554513509953708033,\"1447\":1554513092356227072,\"1448\":1554512895039373319,\"1449\":1554512107630116864,\"1450\":1554511972942626817,\"1451\":1554511937723146242,\"1452\":1554511554326179840,\"1453\":1554510730334011399,\"1454\":1554509836968427521,\"1455\":1554509776431742976,\"1456\":1554509732836171779,\"1457\":1554509479911346176,\"1458\":1554508531159760897,\"1459\":1554508215945142273,\"1460\":1554507686431150081,\"1461\":1554507669574131715,\"1462\":1554507374265786369,\"1463\":1554506952306204673,\"1464\":1554506299714437123,\"1465\":1554506265904160768,\"1466\":1554505864144363523,\"1467\":1554505425168568320,\"1468\":1554505114249052162,\"1469\":1554504829770219520,\"1470\":1554504025030201345,\"1471\":1554503024973938690,\"1472\":1554502879318315018,\"1473\":1554502600539750401,\"1474\":1554502403889807362,\"1475\":1554502371946172416,\"1476\":1554502196384993280,\"1477\":1554501332723179524,\"1478\":1554501137616740353,\"1479\":1554501006838431744,\"1480\":1554500983060893696,\"1481\":1554500874185089025,\"1482\":1554500278094905347,\"1483\":1554500207177596928,\"1484\":1554500163846262789,\"1485\":1554499852234637313,\"1486\":1554498498958987264,\"1487\":1554498360329003010,\"1488\":1554497190243864577,\"1489\":1554497133776175104,\"1490\":1554496920214769664,\"1491\":1554495902836031493,\"1492\":1554495686971953157,\"1493\":1554495320146337792,\"1494\":1554495310986203141,\"1495\":1554494846739615744,\"1496\":1554494703873232901,\"1497\":1554494190842691584,\"1498\":1554493668454719492,\"1499\":1554493620186669056,\"1500\":1554492944031399938,\"1501\":1554492463200571395,\"1502\":1554492105506304000,\"1503\":1554491850052014084,\"1504\":1554491572502372353,\"1505\":1554491545810014208,\"1506\":1554491467485298689,\"1507\":1554491022822064128,\"1508\":1554490944380354560,\"1509\":1554490738594938883,\"1510\":1554490681925713922,\"1511\":1554490676796354561,\"1512\":1554490652188082177,\"1513\":1554490500526350336,\"1514\":1554490480792068096,\"1515\":1554490433421590529,\"1516\":1554490355508191232,\"1517\":1554490086099718145,\"1518\":1554490055917436929,\"1519\":1554489348749463552,\"1520\":1554489145971572737,\"1521\":1554489012190150658,\"1522\":1554488888789536768,\"1523\":1554488563089162242,\"1524\":1554488372730683392,\"1525\":1554487803244847104,\"1526\":1554487719132282880,\"1527\":1554487524592164868,\"1528\":1554487480501559300,\"1529\":1554487035519442944,\"1530\":1554486456894242817,\"1531\":1554486328292741121,\"1532\":1554486121865912320,\"1533\":1554485769305202690,\"1534\":1554485299530854400,\"1535\":1554485128256229376,\"1536\":1554484902371926017,\"1537\":1554484758859894785,\"1538\":1554484654056640514,\"1539\":1554484632254545920,\"1540\":1554484413584609280,\"1541\":1554484350129156097,\"1542\":1554484275310989313,\"1543\":1554484152132673536,\"1544\":1554484110638436353,\"1545\":1554484017214492674,\"1546\":1554483923031318528,\"1547\":1554483917431996416,\"1548\":1554483430116790272,\"1549\":1554483391562661893,\"1550\":1554483373045063680,\"1551\":1554483355172933641,\"1552\":1554482789952925702,\"1553\":1554482608142254083,\"1554\":1554481978132635648,\"1555\":1554481970180227072,\"1556\":1554481892346445824,\"1557\":1554481852064440334,\"1558\":1554481825128521729,\"1559\":1554481716479381506,\"1560\":1554481678243995650,\"1561\":1554481393891172352,\"1562\":1554481327583666176,\"1563\":1554481216363061253,\"1564\":1554481183542878210,\"1565\":1554481091553157121,\"1566\":1554481031083859973,\"1567\":1554480953665495040,\"1568\":1554480912464859138,\"1569\":1554480850598764547,\"1570\":1554480671648792578,\"1571\":1554480667806863362,\"1572\":1554480471052017664,\"1573\":1554480005857832962,\"1574\":1554479982822543361,\"1575\":1554479982432362496,\"1576\":1554479863389626368,\"1577\":1554479793499955201,\"1578\":1554479786671702017,\"1579\":1554479761736572929,\"1580\":1554479329631178753,\"1581\":1554479079415496704,\"1582\":1554478933676277760,\"1583\":1554478802495066112,\"1584\":1554478712212656129,\"1585\":1554478454774665216,\"1586\":1554478363896684544,\"1587\":1554478223240601602,\"1588\":1554478124385148928,\"1589\":1554478111659622400,\"1590\":1554478083818008581,\"1591\":1554477888380063744,\"1592\":1554477740459544579,\"1593\":1554477695626612742,\"1594\":1554477546430992384,\"1595\":1554477248228507648,\"1596\":1554477230218248192,\"1597\":1554477224597897216,\"1598\":1554477066317627397,\"1599\":1554476578226438144,\"1600\":1554476498580656129,\"1601\":1554476483275624450,\"1602\":1554476209135820800,\"1603\":1554475770491330564,\"1604\":1554475757921259521,\"1605\":1554475085347655681,\"1606\":1554474982901784577,\"1607\":1554474945828519936,\"1608\":1554474820515110914,\"1609\":1554474792052555777,\"1610\":1554474529778548737,\"1611\":1554474461608419328,\"1612\":1554474310529597445,\"1613\":1554474287431823362,\"1614\":1554473870941618176,\"1615\":1554473651499683840,\"1616\":1554473298892935169,\"1617\":1554473008533757957,\"1618\":1554472955907825667,\"1619\":1554472637530869763,\"1620\":1554472187469467649,\"1621\":1554472090736230401,\"1622\":1554471940013887494,\"1623\":1554471561867952128,\"1624\":1554471394880225281,\"1625\":1554471292803452928,\"1626\":1554471218316705796,\"1627\":1554471104647151617,\"1628\":1554470911432179717,\"1629\":1554470884785721348,\"1630\":1554470286439124993,\"1631\":1554469984067362817,\"1632\":1554469920737476608,\"1633\":1554469774306189312,\"1634\":1554469690512220161,\"1635\":1554469545678618624,\"1636\":1554469468939911171,\"1637\":1554469421036576769,\"1638\":1554469118824300546,\"1639\":1554469047181475841,\"1640\":1554468337685512193,\"1641\":1554468130847879169,\"1642\":1554467930699603970,\"1643\":1554467746057953281,\"1644\":1554467209052930048,\"1645\":1554466482536718336,\"1646\":1554466225077555206,\"1647\":1554466213534769152,\"1648\":1554465914535514115,\"1649\":1554465726966419456,\"1650\":1554465540617506818,\"1651\":1554465166091231233,\"1652\":1554464494855798784,\"1653\":1554464354522828803,\"1654\":1554464100889071616,\"1655\":1554463907498139649,\"1656\":1554463462511853568,\"1657\":1554463390118121475,\"1658\":1554463372409700353,\"1659\":1554463159053950976,\"1660\":1554462671868674048,\"1661\":1554462452871569411,\"1662\":1554462112042610688,\"1663\":1554461590401032193,\"1664\":1554461575834107905,\"1665\":1554461394799837184,\"1666\":1554461094823034885,\"1667\":1554460717239226369,\"1668\":1554460476540653574,\"1669\":1554459706919649283,\"1670\":1554459460155867138,\"1671\":1554459431022333953,\"1672\":1554459353293492227,\"1673\":1554459155066413056,\"1674\":1554459008093806592,\"1675\":1554458899335479296,\"1676\":1554458697904029697,\"1677\":1554458420522123265,\"1678\":1554458365471907841,\"1679\":1554457473960103938,\"1680\":1554457091351486467,\"1681\":1554456457743339520,\"1682\":1554456169065992194,\"1683\":1554454961697820673,\"1684\":1554454897709690881,\"1685\":1554454651621314560,\"1686\":1554454447773949952,\"1687\":1554454310074957825,\"1688\":1554454222472904705,\"1689\":1554454089001582593,\"1690\":1554453954469191680,\"1691\":1554453817449750530,\"1692\":1554453682267250688,\"1693\":1554453598989426688,\"1694\":1554453538280988672,\"1695\":1554453161360125952,\"1696\":1554453118456369153,\"1697\":1554452967595692035,\"1698\":1554452864642289666,\"1699\":1554452801647935488,\"1700\":1554452602141786113,\"1701\":1554452497489694721,\"1702\":1554452339570114560,\"1703\":1554452270414274561,\"1704\":1554451611594149888,\"1705\":1554451354311180290,\"1706\":1554451066577641472,\"1707\":1554450631997407235,\"1708\":1554450492344123392,\"1709\":1554450355085516800,\"1710\":1554449748328865792,\"1711\":1554449602358689792,\"1712\":1554449420179374080,\"1713\":1554449229145415680,\"1714\":1554449149210279943,\"1715\":1554448582018826241,\"1716\":1554448129986011137,\"1717\":1554447036694798337,\"1718\":1554445847362150401,\"1719\":1554445335958659072,\"1720\":1554444641898057728,\"1721\":1554444221481996288,\"1722\":1554443623445700608,\"1723\":1554443572098760704,\"1724\":1554443241701150727,\"1725\":1554442180621901825,\"1726\":1554441999188496384,\"1727\":1554441266129420289,\"1728\":1554441136730767363,\"1729\":1554439797590355969,\"1730\":1554439645601185792,\"1731\":1554439093714845697,\"1732\":1554438884162822146,\"1733\":1554438153251000321,\"1734\":1554437713725882368,\"1735\":1554437438944288768,\"1736\":1554437404425166849,\"1737\":1554437187680497665,\"1738\":1554436730748534786,\"1739\":1554436054303870978,\"1740\":1554435994178420736,\"1741\":1554435793162223616,\"1742\":1554435766381846528,\"1743\":1554435164159238144,\"1744\":1554435128239312896,\"1745\":1554434581587267586,\"1746\":1554434190367924224,\"1747\":1554434151935262720,\"1748\":1554433775152828416,\"1749\":1554432428823162881,\"1750\":1554432018653519873,\"1751\":1554431780777754630,\"1752\":1554431620068802563,\"1753\":1554431379676487681,\"1754\":1554430976977149953,\"1755\":1554430723054096386,\"1756\":1554430707279208449,\"1757\":1554430501720563713,\"1758\":1554430230638563329,\"1759\":1554429585126989825,\"1760\":1554428980417241089,\"1761\":1554428055309156352,\"1762\":1554427291438313472,\"1763\":1554426733033832448,\"1764\":1554425361986977793,\"1765\":1554424929483132928,\"1766\":1554424830598021121,\"1767\":1554424546412924929,\"1768\":1554423799193665536,\"1769\":1554423362092683265,\"1770\":1554423164620492804,\"1771\":1554422937109024772,\"1772\":1554422065523990528,\"1773\":1554420594107727873,\"1774\":1554420391254589441,\"1775\":1554420378725916672,\"1776\":1554419662112563200,\"1777\":1554419505178312704,\"1778\":1554419422303240192,\"1779\":1554419373040979969,\"1780\":1554419319517372416,\"1781\":1554418424105037824,\"1782\":1554417894028607488,\"1783\":1554417810398654464,\"1784\":1554417348752429060,\"1785\":1554417232633012224,\"1786\":1554415293648224257,\"1787\":1554414150473977856,\"1788\":1554413814560563201,\"1789\":1554412993764524032,\"1790\":1554412793348194306,\"1791\":1554412471301046272,\"1792\":1554412198910468097,\"1793\":1554411253086519298,\"1794\":1554410274458947587,\"1795\":1554410061333729280,\"1796\":1554409933545816064,\"1797\":1554408865386610688,\"1798\":1554408047849644034,\"1799\":1554407698711678981,\"1800\":1554407529739964417,\"1801\":1554407210029031424,\"1802\":1554406477242195968,\"1803\":1554406081807503360,\"1804\":1554405551567667201,\"1805\":1554404970153263105,\"1806\":1554404773209821186,\"1807\":1554404543022206981,\"1808\":1554403907895496704,\"1809\":1554403258466172928,\"1810\":1554403204703703043,\"1811\":1554400016898445312,\"1812\":1554399955682557952,\"1813\":1554398553136562180,\"1814\":1554397534994501634,\"1815\":1554397130789457921,\"1816\":1554396643776151552,\"1817\":1554395441390915585,\"1818\":1554391872516362240,\"1819\":1554390539612684290,\"1820\":1554390099101712384,\"1821\":1554388980841463808,\"1822\":1554385350532939777,\"1823\":1554378933935771649,\"1824\":1554367492620959747,\"1825\":1554366504594030592,\"1826\":1554349502894596096,\"1827\":1554339795895488513,\"1828\":1554335953795293184,\"1829\":1554332241710534657,\"1830\":1554330444191207425,\"1831\":1554329878681604096,\"1832\":1554323533551095813,\"1833\":1554321183327375362,\"1834\":1554318274493825025,\"1835\":1554310286135513088,\"1836\":1554310101896466433,\"1837\":1554308386270986240,\"1838\":1554297604602793984,\"1839\":1554297140318445568,\"1840\":1554287425572290564,\"1841\":1554278034739544067,\"1842\":1554277477400330240,\"1843\":1554275934634737666,\"1844\":1554264989053091843,\"1845\":1554263646557147138,\"1846\":1554259745455865856,\"1847\":1554259730595561472,\"1848\":1554255179482107909,\"1849\":1554253705226162176,\"1850\":1554252770030637056,\"1851\":1554249904695959556,\"1852\":1554247555311099904,\"1853\":1554247048693784579,\"1854\":1554239689049120772,\"1855\":1554236858175037440,\"1856\":1554235564337012736,\"1857\":1554235561086525440,\"1858\":1554235358044372995,\"1859\":1554234529786765317,\"1860\":1554234023555338241,\"1861\":1554233611955720195,\"1862\":1554233553948491776,\"1863\":1554233435941634058,\"1864\":1554232665645191170,\"1865\":1554231575642079232,\"1866\":1554231340572311553,\"1867\":1554227827758833664,\"1868\":1554226787793702913,\"1869\":1554226471153065985,\"1870\":1554225305946054656,\"1871\":1554220296223211523,\"1872\":1554220055071711233,\"1873\":1554217980183076865,\"1874\":1554217804924174337,\"1875\":1554214912381050880,\"1876\":1554211256982245376,\"1877\":1554211137880834050,\"1878\":1554209400348450820,\"1879\":1554207064611856384,\"1880\":1554206276476870658,\"1881\":1554204666476609545,\"1882\":1554203858104197124,\"1883\":1554198465030258689,\"1884\":1554196703078653952,\"1885\":1554196630576025600,\"1886\":1554196542646620162,\"1887\":1554193831683309570,\"1888\":1554193318900277248,\"1889\":1554191726797012992,\"1890\":1554190915283066882,\"1891\":1554190277384015873,\"1892\":1554189363269050369,\"1893\":1554187293942075394,\"1894\":1554186459778801664,\"1895\":1554185285428191232,\"1896\":1554184386718965761,\"1897\":1554183475233693697,\"1898\":1554182790769516548,\"1899\":1554181881100472323,\"1900\":1554181569841184771,\"1901\":1554180854993272835,\"1902\":1554180507532988416,\"1903\":1554177218670108673,\"1904\":1554175923339026432,\"1905\":1554175663430684679,\"1906\":1554175582669312001,\"1907\":1554173437576372230,\"1908\":1554173065260564481,\"1909\":1554171286401826818,\"1910\":1554171172924825601,\"1911\":1554169718545780738,\"1912\":1554169225371127813,\"1913\":1554168957476773888,\"1914\":1554168898118975491,\"1915\":1554166628996333570,\"1916\":1554166420669448197,\"1917\":1554165799585185792,\"1918\":1554165799518076928,\"1919\":1554165782267002883,\"1920\":1554165608027152385,\"1921\":1554165396932001793,\"1922\":1554165185652424705,\"1923\":1554165103947399179,\"1924\":1554163959963521024,\"1925\":1554163745198333952,\"1926\":1554162987136651265,\"1927\":1554162910569631744,\"1928\":1554162571162394625,\"1929\":1554162546009149442,\"1930\":1554162476425662464,\"1931\":1554162451985272833,\"1932\":1554162413368446977,\"1933\":1554162380900376582,\"1934\":1554162363049414661,\"1935\":1554162318321352705,\"1936\":1554162291150659589,\"1937\":1554162238826610688,\"1938\":1554162172825051139,\"1939\":1554162087911456770,\"1940\":1554162076708372480,\"1941\":1554161832084099072,\"1942\":1554161682028658689,\"1943\":1554160417123061760,\"1944\":1554159924636155905,\"1945\":1554159740980191232,\"1946\":1554159708000456704,\"1947\":1554159685770559496,\"1948\":1554159615314649089,\"1949\":1554159547547373568,\"1950\":1554159424687800320,\"1951\":1554159199227101185,\"1952\":1554159079597260800,\"1953\":1554158622007037960,\"1954\":1554158482215018498,\"1955\":1554158338165858305,\"1956\":1554158326921023489,\"1957\":1554158241143209987,\"1958\":1554158163796152325,\"1959\":1554157968475787268,\"1960\":1554157592150155264,\"1961\":1554157118214873089,\"1962\":1554156509096968193,\"1963\":1554156394990952449,\"1964\":1554156337164161026,\"1965\":1554156061208330240,\"1966\":1554155973849321474,\"1967\":1554155916219392001,\"1968\":1554155781121052674,\"1969\":1554155589260959748,\"1970\":1554155547875807233,\"1971\":1554155510454259713,\"1972\":1554155251414044676,\"1973\":1554155210708320257,\"1974\":1554155078939967489,\"1975\":1554154995360190464,\"1976\":1554154725465067520,\"1977\":1554154616530640896,\"1978\":1554154582548381698,\"1979\":1554154525354778626,\"1980\":1554154484095500289,\"1981\":1554154417359822848,\"1982\":1554154299894235136,\"1983\":1554154217631371272,\"1984\":1554153966249906177,\"1985\":1554153802437201920,\"1986\":1554153609151004674,\"1987\":1554153551542292480,\"1988\":1554153487897878531,\"1989\":1554153416124940288,\"1990\":1554153399435812865,\"1991\":1554153146733166593,\"1992\":1554153105998192642,\"1993\":1554153037572280334,\"1994\":1554152982660485123,\"1995\":1554152929128550402,\"1996\":1554152378248708101,\"1997\":1554152330882326529,\"1998\":1554151948420628480,\"1999\":1554151701061550080,\"2000\":1554151637190680577,\"2001\":1554151508459098116,\"2002\":1554151415202910211,\"2003\":1554151360488247301,\"2004\":1554151220746534912,\"2005\":1554151103260151815,\"2006\":1554151009047482368,\"2007\":1554150962050342913,\"2008\":1554150814318460930,\"2009\":1554150809616654336,\"2010\":1554150682122502144,\"2011\":1554150651785089024,\"2012\":1554150506620223490,\"2013\":1554150395164999681,\"2014\":1554150289522958336,\"2015\":1554150162666225664,\"2016\":1554149452386078721,\"2017\":1554148011684630528,\"2018\":1554147209268035584,\"2019\":1554146871735631872,\"2020\":1554145533769424897,\"2021\":1554145514744053763,\"2022\":1554145439221485568,\"2023\":1554145392002056193,\"2024\":1554145312154992641,\"2025\":1554145045518893056,\"2026\":1554145005391978505,\"2027\":1554144978326228994,\"2028\":1554144842988519425,\"2029\":1554144793172873216,\"2030\":1554144640634429440,\"2031\":1554144602579509248,\"2032\":1554144408303415296,\"2033\":1554144321040941058,\"2034\":1554144124483280896,\"2035\":1554144053943468032,\"2036\":1554144003691614209,\"2037\":1554143954660114433,\"2038\":1554143756340830219,\"2039\":1554143677005660160,\"2040\":1554143557019205632,\"2041\":1554143457693810693,\"2042\":1554143406988853252,\"2043\":1554143335866056707,\"2044\":1554143282321674241,\"2045\":1554143252734943233,\"2046\":1554143187475828737,\"2047\":1554143040394108934,\"2048\":1554142791177064449,\"2049\":1554142693298786306,\"2050\":1554142677066825735,\"2051\":1554142584922071043,\"2052\":1554141965847068672,\"2053\":1554141190374785024,\"2054\":1554140559530463243,\"2055\":1554140500617224192,\"2056\":1554140260837208064,\"2057\":1554139221434273799,\"2058\":1554135854083457024,\"2059\":1554134928413134848,\"2060\":1554127798662561792,\"2061\":1554127208016379906,\"2062\":1554126833754554375,\"2063\":1554126795406016512,\"2064\":1554124771629174786,\"2065\":1554123369699852291,\"2066\":1554122616927125504,\"2067\":1554120707235250176,\"2068\":1554120671277588482,\"2069\":1554120649664348164,\"2070\":1554120646363435008,\"2071\":1554119100007333888,\"2072\":1554117969579581440,\"2073\":1554117517681074177,\"2074\":1554116335331934210,\"2075\":1554114627029581825,\"2076\":1554113437529251848,\"2077\":1554112929057968130,\"2078\":1554111942238904324,\"2079\":1554103194170626049,\"2080\":1554100962473680899,\"2081\":1554099630031470599,\"2082\":1554099110021668864,\"2083\":1554099088576110592,\"2084\":1554098602829570048,\"2085\":1554097572062662663,\"2086\":1554096943260999681,\"2087\":1554096718039465985,\"2088\":1554096254057172996,\"2089\":1554095786073460738,\"2090\":1554094882452553729,\"2091\":1554094474044870657,\"2092\":1554094425059590144,\"2093\":1554094314493468674,\"2094\":1554093149756297219,\"2095\":1554091249518477312,\"2096\":1554091162939662337,\"2097\":1554091040545640453,\"2098\":1554091010006781953,\"2099\":1554090954361036803,\"2100\":1554088256739893248,\"2101\":1554087607235215361,\"2102\":1554087205588566017,\"2103\":1554086710476259330,\"2104\":1554086683938889728,\"2105\":1554086408649936901,\"2106\":1554086108291600387,\"2107\":1554085998321192961,\"2108\":1554085812974899202,\"2109\":1554085432538841090,\"2110\":1554085399433302016,\"2111\":1554085368139583489,\"2112\":1554085268386447361,\"2113\":1554085193945849858,\"2114\":1554085067063967744,\"2115\":1554084711147995137,\"2116\":1554084536727863387,\"2117\":1554084153997524993,\"2118\":1554083555277422593,\"2119\":1554083275743891456,\"2120\":1554079628473602049,\"2121\":1554079606923223040,\"2122\":1554076106587774981,\"2123\":1554075993832390656,\"2124\":1554075783550980096,\"2125\":1554075720112037888,\"2126\":1554075553191399425,\"2127\":1554075409389600768,\"2128\":1554075239486742529,\"2129\":1554074968434114560,\"2130\":1554074794538291201,\"2131\":1554074660807008258,\"2132\":1554074549607698438,\"2133\":1554074369344905216,\"2134\":1554074168936865792,\"2135\":1554074106810736641,\"2136\":1554073942297657346,\"2137\":1554073891424927745,\"2138\":1554073700638547969,\"2139\":1554073658590695425,\"2140\":1554073616253440002,\"2141\":1554073366595866624,\"2142\":1554073161267830787,\"2143\":1554073128036442112,\"2144\":1554073092602855424,\"2145\":1554073033735913472,\"2146\":1554072974986199047,\"2147\":1554072839904526336,\"2148\":1554072806933102592,\"2149\":1554072751568306181,\"2150\":1554072695142338561,\"2151\":1554071866947637251,\"2152\":1554071831103119362,\"2153\":1554071565159075841,\"2154\":1554071339392278528,\"2155\":1554071171108376577,\"2156\":1554071096693071873,\"2157\":1554069768092762112,\"2158\":1554069751105814528,\"2159\":1554069731795140612,\"2160\":1554069702963564547,\"2161\":1554069681429954560,\"2162\":1554069641496076288,\"2163\":1554069516224716800,\"2164\":1554069490706665473,\"2165\":1554069468984365057,\"2166\":1554069428022788096,\"2167\":1554069410045992963,\"2168\":1554069365032632320,\"2169\":1554069255288758279,\"2170\":1554069202520227840,\"2171\":1554069170899324930,\"2172\":1554069153807740928,\"2173\":1554069098438529025,\"2174\":1554069017303867394,\"2175\":1554068983141351424,\"2176\":1554068959913295877,\"2177\":1554068903223037952,\"2178\":1554068589812060173,\"2179\":1554066948257976320,\"2180\":1554066803277570049,\"2181\":1554066624776478720,\"2182\":1554066466076606465,\"2183\":1554066292814004226,\"2184\":1554066258135482370,\"2185\":1554066223343845383,\"2186\":1554065933974622215,\"2187\":1554065760007475200,\"2188\":1554065684287705088,\"2189\":1554065578704486402,\"2190\":1554065475990167552,\"2191\":1554064803391479809,\"2192\":1554064741911363586,\"2193\":1554064707400744960,\"2194\":1554061552902443015,\"2195\":1554061523215126529,\"2196\":1554061284441735168,\"2197\":1554061253802426369,\"2198\":1554061215067930628,\"2199\":1554060587981836289,\"2200\":1554060523473346562,\"2201\":1554060498605428736,\"2202\":1554060475305951237,\"2203\":1554060418125074435,\"2204\":1554059972773908480,\"2205\":1554059893845417986,\"2206\":1554059818243088384,\"2207\":1554059792641134593,\"2208\":1554059758113624068,\"2209\":1554059711552577537,\"2210\":1554059607689011200,\"2211\":1554059575447506947,\"2212\":1554059557365858304,\"2213\":1554059539787423744,\"2214\":1554059477044928515,\"2215\":1554059421889724417,\"2216\":1554056477404438528,\"2217\":1554050986079043586,\"2218\":1554050171725647874,\"2219\":1554048149836242944,\"2220\":1554046306125025281,\"2221\":1554044577601961985,\"2222\":1554044064462413826,\"2223\":1554043678859186176,\"2224\":1554043432997371904,\"2225\":1554043206584733696,\"2226\":1554040492173791232,\"2227\":1554037139071025155,\"2228\":1554036352378888192,\"2229\":1554033731681263617,\"2230\":1554032902287007744,\"2231\":1554030867332431873,\"2232\":1554030670829199360,\"2233\":1554029474986991618,\"2234\":1554029296246788096,\"2235\":1554027348588216324,\"2236\":1554026517906083841,\"2237\":1554022939816869895,\"2238\":1554013652801421313,\"2239\":1554007537032257536,\"2240\":1554007480312762368,\"2241\":1554007448150839296,\"2242\":1554007063314980866,\"2243\":1554006854887522306,\"2244\":1554006608274984960,\"2245\":1553999884700745728,\"2246\":1553999585055571969,\"2247\":1553999277222989825,\"2248\":1553999248043216896,\"2249\":1553999231727374336,\"2250\":1553999205986869249,\"2251\":1553999104182820865,\"2252\":1553998188150915072,\"2253\":1553998136875573248,\"2254\":1553998092579512320,\"2255\":1553998057670430720,\"2256\":1553997060524974080,\"2257\":1553996991767748610,\"2258\":1553991949765513217,\"2259\":1553990303949983745,\"2260\":1553989969529692162,\"2261\":1553987312983351297,\"2262\":1553987304494178306,\"2263\":1553985391123906560,\"2264\":1553982415793754115,\"2265\":1553981422863634432,\"2266\":1553980672951422976,\"2267\":1553980550456778752,\"2268\":1553952736131121152,\"2269\":1553952667315146753,\"2270\":1553951963691319296,\"2271\":1553951723777040389,\"2272\":1553951698720276480,\"2273\":1553951658769620998,\"2274\":1553951402447491072,\"2275\":1553950600894812161,\"2276\":1553943761692008449,\"2277\":1553942498871054338,\"2278\":1553937056858005504,\"2279\":1553937024037576704,\"2280\":1553937005091995648,\"2281\":1553936954030432258,\"2282\":1553936925572141056,\"2283\":1553936884853870593,\"2284\":1553936866772238338,\"2285\":1553910507551293440,\"2286\":1553910414551007233,\"2287\":1553910347039490048,\"2288\":1553910134157484032,\"2289\":1553909881194905603,\"2290\":1553909223918112768,\"2291\":1553848334531457026,\"2292\":1553830981844406273,\"2293\":1553815505366032385,\"2294\":1553788759413428225,\"2295\":1553782543664590849,\"2296\":1553770279918358529,\"2297\":1553752107890663425,\"2298\":1553749966664916992,\"2299\":1553749106207739904,\"2300\":1553748631311761411,\"2301\":1553748569122816000,\"2302\":1553748544615550979,\"2303\":1553747889687609351,\"2304\":1553746043455635458,\"2305\":1553743581202063361,\"2306\":1553739108215885829,\"2307\":1553737066978189314,\"2308\":1553736217761648640,\"2309\":1553731700131336192,\"2310\":1553731018003185664,\"2311\":1553729735066370049,\"2312\":1553729147326930945,\"2313\":1553726741201518593,\"2314\":1553720615332454400,\"2315\":1553720220753215488,\"2316\":1553717865894780935,\"2317\":1553717350351896576,\"2318\":1553717013650063360,\"2319\":1553716228899880960,\"2320\":1553715895171686402,\"2321\":1553715524625960960,\"2322\":1553715104738414594,\"2323\":1553714076899053568,\"2324\":1553713648203403264,\"2325\":1553713272943165440,\"2326\":1553712403652775937,\"2327\":1553711639521812482,\"2328\":1553710607052029953,\"2329\":1553708230559371264,\"2330\":1553705315069313025,\"2331\":1553702415223881731,\"2332\":1553700842909335552,\"2333\":1553700746067165186,\"2334\":1553697740307238913,\"2335\":1553696834677268480,\"2336\":1553694550820065285,\"2337\":1553693823787728896,\"2338\":1553693713779630080,\"2339\":1553693677083660289,\"2340\":1553692837576904704,\"2341\":1553691378995142659,\"2342\":1553689135201849345,\"2343\":1553689097427996672,\"2344\":1553689061503664128,\"2345\":1553688209787420672,\"2346\":1553688061355200512,\"2347\":1553687801325142016,\"2348\":1553687699017666560,\"2349\":1553687653085749248,\"2350\":1553687498500571136,\"2351\":1553687400823545856,\"2352\":1553687259580432384,\"2353\":1553687223261954050,\"2354\":1553685954757533696,\"2355\":1553685867511816192,\"2356\":1553685709936119810,\"2357\":1553685195752198145,\"2358\":1553683829377957888,\"2359\":1553683040357982209,\"2360\":1553682457970593792,\"2361\":1553681233913298944,\"2362\":1553681037603278848,\"2363\":1553679287097638913,\"2364\":1553679283079585792,\"2365\":1553677470389469186,\"2366\":1553677361119379456,\"2367\":1553677120257277953,\"2368\":1553676823921311744,\"2369\":1553675484914917376,\"2370\":1553674549207748609,\"2371\":1553672509446397953,\"2372\":1553672054062342144,\"2373\":1553671116941672449,\"2374\":1553670803262160897,\"2375\":1553668298004480000,\"2376\":1553668196879814656,\"2377\":1553667887533023232,\"2378\":1553664668815835136,\"2379\":1553664489668632577,\"2380\":1553663860518912002,\"2381\":1553662704761593856,\"2382\":1553662625409548290,\"2383\":1553661975992967168,\"2384\":1553661894002704385,\"2385\":1553660462243397632,\"2386\":1553659378573737984,\"2387\":1553657682518835200,\"2388\":1553657275822350338,\"2389\":1553656350227447809,\"2390\":1553652996982071297,\"2391\":1553652872394440705,\"2392\":1553652117272944640,\"2393\":1553650050949173250,\"2394\":1553648546276118528,\"2395\":1553648371872702466,\"2396\":1553646913114832896,\"2397\":1553645577602310144,\"2398\":1553644510101377025,\"2399\":1553641847523889152,\"2400\":1553641752690663424,\"2401\":1553638557931245568,\"2402\":1553638323977166849,\"2403\":1553637683955728384,\"2404\":1553633279730933761,\"2405\":1553626320474701824,\"2406\":1553625599792619520,\"2407\":1553624754371837952,\"2408\":1553620325119803395,\"2409\":1553611898549161984,\"2410\":1553610050782076928,\"2411\":1553609871366529025,\"2412\":1553609701358706688,\"2413\":1553609530671599616,\"2414\":1553609497049972736,\"2415\":1553609421149933569,\"2416\":1553607692270374913,\"2417\":1553607506462752770,\"2418\":1553605844150935552,\"2419\":1553605772403171328,\"2420\":1553605618401005569,\"2421\":1553604239871582210,\"2422\":1553604180216102913,\"2423\":1553604109332267009,\"2424\":1553603766032777216,\"2425\":1553603434733002752,\"2426\":1553600518479613952,\"2427\":1553600458807283717,\"2428\":1553600414389608449,\"2429\":1553600378561773569,\"2430\":1553600334366400516,\"2431\":1553600286681341954,\"2432\":1553600224039428096,\"2433\":1553600118653423616,\"2434\":1553599894912483328,\"2435\":1553599859877462018,\"2436\":1553599825026899969,\"2437\":1553599511213314048,\"2438\":1553598876107563009,\"2439\":1553598828086902786,\"2440\":1553598343900700672,\"2441\":1553597700972609536,\"2442\":1553597254413557760,\"2443\":1553596979099361281,\"2444\":1553596830524575745,\"2445\":1553596737540980738,\"2446\":1553596474465869825,\"2447\":1553596284187058176,\"2448\":1553596256974475265,\"2449\":1553596212997226499,\"2450\":1553582458779607040,\"2451\":1553564690663481344,\"2452\":1553563037239500801,\"2453\":1553562856213422083,\"2454\":1553560129127288833,\"2455\":1553559781524242432,\"2456\":1553557621470179330,\"2457\":1553551419822809090,\"2458\":1553518278382862336,\"2459\":1553517697660493825,\"2460\":1553516988647063553,\"2461\":1553515856822517761,\"2462\":1553511967301804033,\"2463\":1553471504549117952,\"2464\":1553471388723421186,\"2465\":1553471312378601472,\"2466\":1553471254937669632,\"2467\":1553471203792273414,\"2468\":1553471142081478656,\"2469\":1553470998946652164,\"2470\":1553470946203385862,\"2471\":1553470767588835335,\"2472\":1553470724777693186,\"2473\":1553470641382334464,\"2474\":1553470607928475648,\"2475\":1553470585476464640,\"2476\":1553470484481806336,\"2477\":1553470354781360129,\"2478\":1553470180138926086,\"2479\":1553470111700377603,\"2480\":1553470023884210178,\"2481\":1553469955542335488,\"2482\":1553469876232151044,\"2483\":1553469739359404037,\"2484\":1553469671323713538,\"2485\":1553469620941737985,\"2486\":1553469583465426944,\"2487\":1553469324073091072,\"2488\":1553469262622253056,\"2489\":1553469234470076418,\"2490\":1553469189054242817,\"2491\":1553468956567998465,\"2492\":1553468848942235648,\"2493\":1553467093294764039,\"2494\":1553467065264181249,\"2495\":1553466987153702914,\"2496\":1553466946183634946,\"2497\":1553466818437812226,\"2498\":1553466781393731585,\"2499\":1553466415302250496,\"2500\":1553466382947434502,\"2501\":1553466350294937600,\"2502\":1553466264403705857,\"2503\":1553466227699376130,\"2504\":1553466183722180608,\"2505\":1553466127380086785,\"2506\":1553466098439307266,\"2507\":1553466012762259458,\"2508\":1553465816103911432,\"2509\":1553465765604593670,\"2510\":1553465718104117248,\"2511\":1553465645290950657,\"2512\":1553465601863127041,\"2513\":1553465563715862529,\"2514\":1553465437572272136,\"2515\":1553465340151095296,\"2516\":1553465306768703489,\"2517\":1553465189391015937,\"2518\":1553465130633109504,\"2519\":1553465108743036928,\"2520\":1553465034935779328,\"2521\":1553464999099629569,\"2522\":1553464888239988737,\"2523\":1553464837858103296,\"2524\":1553464700612001794,\"2525\":1553464665166028802,\"2526\":1553464596345851907,\"2527\":1553464540796489728,\"2528\":1553464491727360007,\"2529\":1553464350609924096,\"2530\":1553463398058393600,\"2531\":1553463324939108354,\"2532\":1553463121259466758,\"2533\":1553463044709163011,\"2534\":1553462926991826946,\"2535\":1553462780036108291,\"2536\":1553462564020953094,\"2537\":1553462523806056455,\"2538\":1553462262509326336,\"2539\":1553461831611588608,\"2540\":1553461650707169280,\"2541\":1553461047947837442,\"2542\":1553460866183561216,\"2543\":1553460631533195264,\"2544\":1553460545545707520,\"2545\":1553460296752287746,\"2546\":1553460116296503296,\"2547\":1553459860771053568,\"2548\":1553407255604670464,\"2549\":1553406731371159552,\"2550\":1553394444744925184,\"2551\":1553390565147934725,\"2552\":1553384358341496833,\"2553\":1553381686959800321,\"2554\":1553377884361953280,\"2555\":1553376548132093957,\"2556\":1553372722490638336,\"2557\":1553315791545712640,\"2558\":1553191936890212354,\"2559\":1553191687257817089,\"2560\":1553191462849896448,\"2561\":1553184238345736192,\"2562\":1553183538513690626,\"2563\":1553146885581393920,\"2564\":1553113913146875904,\"2565\":1553109478647676931,\"2566\":1553109062644105216,\"2567\":1553108531498426379,\"2568\":1553108436681981952,\"2569\":1553107973840543744,\"2570\":1553105590691536898,\"2571\":1553105325687033860,\"2572\":1553105079309402112,\"2573\":1553009343188058115,\"2574\":1553009094386241536,\"2575\":1552978168629366784,\"2576\":1552976481231544323,\"2577\":1552945235566755842,\"2578\":1552939921320574976,\"2579\":1552939734720286721,\"2580\":1552939013761269760,\"2581\":1552938933390024705,\"2582\":1552938850904834049,\"2583\":1552938712727785472,\"2584\":1552938602165932032,\"2585\":1552938529428312066,\"2586\":1552938442442653696,\"2587\":1552938352101539840,\"2588\":1552938268290957313,\"2589\":1552938005060624387,\"2590\":1552937865994199041,\"2591\":1552937780292030466,\"2592\":1552937675891548160,\"2593\":1552937559654801408,\"2594\":1552937446366748673,\"2595\":1552937366108733442,\"2596\":1552937264216514561,\"2597\":1552936415889063936,\"2598\":1556282459435794432,\"2599\":1556221677712941056,\"2600\":1556169714837196803,\"2601\":1556169524197703680,\"2602\":1555898441544392704,\"2603\":1555885084292616194,\"2604\":1555857595021377536,\"2605\":1555838191055290370,\"2606\":1555830737336688642,\"2607\":1555830656126550017,\"2608\":1555830595237855234,\"2609\":1555808258216058880,\"2610\":1555788768275202048,\"2611\":1555784905770078210,\"2612\":1555635262117617664,\"2613\":1555627593084411906,\"2614\":1555626743444144136,\"2615\":1555448195425206272,\"2616\":1555447751944577029,\"2617\":1555421307927511042,\"2618\":1555410043557871621,\"2619\":1555333799654866944,\"2620\":1555299616568246272,\"2621\":1555276574668296193,\"2622\":1555270615329824768,\"2623\":1555244534702948353,\"2624\":1555239970033524739,\"2625\":1555238891585773568,\"2626\":1555230882155438080,\"2627\":1555229965905526785,\"2628\":1555222113929334786,\"2629\":1555221785049808898,\"2630\":1555221222669033478,\"2631\":1555220426757967875,\"2632\":1555214138334498818,\"2633\":1555212390723117064,\"2634\":1555199957417721856,\"2635\":1555196478406131713,\"2636\":1555182378418683905,\"2637\":1555181740389502976,\"2638\":1555175693843054597,\"2639\":1555158422194192390,\"2640\":1555150806978105344,\"2641\":1555144289734299649,\"2642\":1555138922048618496,\"2643\":1555118160688435206,\"2644\":1555110012040658944,\"2645\":1555109457838981120,\"2646\":1555097074634473472,\"2647\":1555071946458644480,\"2648\":1555020854425174016,\"2649\":1554956767964135425,\"2650\":1554951598547271680,\"2651\":1554941711880781826,\"2652\":1554940866858565634,\"2653\":1554925967994396676,\"2654\":1554920695259451393,\"2655\":1554916933467869185,\"2656\":1554912535903707136,\"2657\":1554911276299591684,\"2658\":1554906763010478081,\"2659\":1554903140855697409,\"2660\":1554902702018240513,\"2661\":1554896237291339776,\"2662\":1554893882336415744,\"2663\":1554885832791793665,\"2664\":1554864179533733888,\"2665\":1554862209565696004,\"2666\":1554856427742715904,\"2667\":1554853983251988480,\"2668\":1554848418639536128,\"2669\":1554839364391280642,\"2670\":1554826214237413376,\"2671\":1554823318758248450,\"2672\":1554822844885807105,\"2673\":1554817095803838469,\"2674\":1554799666973253634,\"2675\":1554798580753469440,\"2676\":1554794430921687043,\"2677\":1554793285134213120,\"2678\":1554789584948662274,\"2679\":1554782179963568128,\"2680\":1554778392322621440,\"2681\":1554777927241302016,\"2682\":1554776322890768385,\"2683\":1554776173900693506,\"2684\":1554773164550397955,\"2685\":1554767939320119296,\"2686\":1554766324185939971,\"2687\":1554764497340039168,\"2688\":1554764141822447619,\"2689\":1554763238784569344,\"2690\":1554762590605266945,\"2691\":1554761301947293696,\"2692\":1554759922285518849,\"2693\":1554759628918992897,\"2694\":1554756416698810368,\"2695\":1554748634524258306,\"2696\":1554739863139786754,\"2697\":1554736840787345408,\"2698\":1554734881942405121,\"2699\":1554733728110354437,\"2700\":1554733235262722048,\"2701\":1554732037910798336,\"2702\":1554722716070060032,\"2703\":1554721835383750657,\"2704\":1554721833018183682,\"2705\":1554721829809319938,\"2706\":1554721826340732928,\"2707\":1554721819067912192,\"2708\":1554720003840266242,\"2709\":1554719683806363650,\"2710\":1554719449856765952,\"2711\":1554716933810896896,\"2712\":1554713733607342080,\"2713\":1554712896839589894,\"2714\":1554696017110507520,\"2715\":1554695462292176896,\"2716\":1554695178677534720,\"2717\":1554692483484991489,\"2718\":1554691552722698240,\"2719\":1554680242102767617,\"2720\":1554675724656807942,\"2721\":1554661441558351872,\"2722\":1554645939704528897,\"2723\":1554642152919126016,\"2724\":1554616325926002688,\"2725\":1554608145334403072,\"2726\":1554586233602539522,\"2727\":1554585298876747776,\"2728\":1554579735673454595,\"2729\":1554578552779046912,\"2730\":1554578542633140224,\"2731\":1554574527270641664,\"2732\":1554569467585339395,\"2733\":1554566026423066626,\"2734\":1554559619569270785,\"2735\":1554553478655221760,\"2736\":1554549995378036738,\"2737\":1554541309792329729,\"2738\":1554540400534294535,\"2739\":1554539640404811780,\"2740\":1554538822553190409,\"2741\":1554538310940360706,\"2742\":1554535272053874695,\"2743\":1554532419591716864,\"2744\":1554532296241418240,\"2745\":1554531270889291777,\"2746\":1554531043562213377,\"2747\":1554530961043427338,\"2748\":1554530700992430081,\"2749\":1554530469592682497,\"2750\":1554528555404611587,\"2751\":1554525081367461889,\"2752\":1554518083112353792,\"2753\":1554517633654980609,\"2754\":1554517329492459521,\"2755\":1554515599321079809,\"2756\":1554513428588511232,\"2757\":1554512073127735297,\"2758\":1554510243580755971,\"2759\":1554509787680935950,\"2760\":1554506287647543299,\"2761\":1554505952807772166,\"2762\":1554504724329775106,\"2763\":1554500469648756738,\"2764\":1554500178157228033,\"2765\":1554495766860800002,\"2766\":1554494286749630469,\"2767\":1554493526662152193,\"2768\":1554492076292726784,\"2769\":1554491304507228160,\"2770\":1554490164868792320,\"2771\":1554489863310827521,\"2772\":1554489728468123649,\"2773\":1554486695206297601,\"2774\":1554485597875671040,\"2775\":1554484722197299203,\"2776\":1554482286632001538,\"2777\":1554481307194908674,\"2778\":1554480017861758985,\"2779\":1554479864937422849,\"2780\":1554479228913127425,\"2781\":1554479187783729155,\"2782\":1554479105642479621,\"2783\":1554478892198625286,\"2784\":1554478100343316481,\"2785\":1554477978792370176,\"2786\":1554470512138534913,\"2787\":1554469061697982466,\"2788\":1554459816478769157,\"2789\":1554457188806049793,\"2790\":1554454502534676480,\"2791\":1554449181854601220,\"2792\":1554448724914585600,\"2793\":1554447814922493954,\"2794\":1554447424743145473,\"2795\":1554446177004920833,\"2796\":1554445549478330370,\"2797\":1554443692014010369,\"2798\":1554443507082862600,\"2799\":1554443355383373824,\"2800\":1554441486313431041,\"2801\":1554435529688682496,\"2802\":1554430992928178182,\"2803\":1554428973517529092,\"2804\":1554427832314564609,\"2805\":1554417773526355970,\"2806\":1554414418879979521,\"2807\":1554413467653873667,\"2808\":1554412198834872322,\"2809\":1554403516042694659,\"2810\":1554399326910152705,\"2811\":1554393853423230976,\"2812\":1554390773868658688,\"2813\":1554389905765269504,\"2814\":1554388712401674240,\"2815\":1554371870522314752,\"2816\":1554333005891739648,\"2817\":1554331863069646849,\"2818\":1554314970006945794,\"2819\":1554258652554579968,\"2820\":1554198347140972548,\"2821\":1554178720222642177,\"2822\":1554167460856832000,\"2823\":1554167352694120451,\"2824\":1554163364196225025,\"2825\":1554160326706438147,\"2826\":1554115937758072832,\"2827\":1554113629376626689,\"2828\":1554101779733913603,\"2829\":1554101272650850304,\"2830\":1554094011962597381,\"2831\":1554086466686427141,\"2832\":1554076385941098496,\"2833\":1554076383554506753,\"2834\":1554050111839297537,\"2835\":1554043117896192005,\"2836\":1553735425621168131,\"2837\":1553685034183364610,\"2838\":1553683702181494786,\"2839\":1553660238896812033,\"2840\":1553456916604518400,\"2841\":1553371739631112192,\"2842\":1553305021168615424,\"2843\":1553288217084010497,\"2844\":1553267678663557120,\"2845\":1553115138626129922,\"2846\":1553018275403104258,\"2847\":1552911064886550528,\"2848\":1556261821971140608,\"2849\":1556180877264273410,\"2850\":1556137553518272512,\"2851\":1556129053480030209,\"2852\":1556128657495801861,\"2853\":1556010296069718016,\"2854\":1555992372194021376,\"2855\":1555984785004281857,\"2856\":1555949064885342209,\"2857\":1555940250551259136,\"2858\":1555921613857492993,\"2859\":1555920654368575488,\"2860\":1555919988610830337,\"2861\":1555904235451158529,\"2862\":1555886548486443008,\"2863\":1555886386380775425,\"2864\":1555828561424121857,\"2865\":1555823200457695233,\"2866\":1555765691919261696,\"2867\":1555751448482398209,\"2868\":1555673358125105153,\"2869\":1555645910100631559,\"2870\":1555645888277762050,\"2871\":1555645152223543297,\"2872\":1555642763491901441,\"2873\":1555642259760205824,\"2874\":1555601679147446272,\"2875\":1555599475577704449,\"2876\":1555598994277023744,\"2877\":1555581916308389889,\"2878\":1555569850168352770,\"2879\":1555557164986548224,\"2880\":1555526355747569665,\"2881\":1555526355739090944,\"2882\":1555519330288287746,\"2883\":1555507581048741889,\"2884\":1555484687623245825,\"2885\":1555475343321944064,\"2886\":1555467883769110528,\"2887\":1555467862516666371,\"2888\":1555464376261672960,\"2889\":1555461969481801729,\"2890\":1555440103807504385,\"2891\":1555432430298882049,\"2892\":1555429855797428224,\"2893\":1555428458246848513,\"2894\":1555427170872352768,\"2895\":1555424860263927808,\"2896\":1555423894001143809,\"2897\":1555423133896695808,\"2898\":1555420559139393537,\"2899\":1555414324369391616,\"2900\":1555411699708092421,\"2901\":1555407811441467393,\"2902\":1555404418757103617,\"2903\":1555403943349714944,\"2904\":1555400982259179520,\"2905\":1555394763100246017,\"2906\":1555375695559380994,\"2907\":1555370218377166853,\"2908\":1555363998995988483,\"2909\":1555341970872090626,\"2910\":1555341323653242880,\"2911\":1555333776250703872,\"2912\":1555330385654996994,\"2913\":1555317037097951233,\"2914\":1555316858437484544,\"2915\":1555313928296665088,\"2916\":1555313672704196608,\"2917\":1555313638717530113,\"2918\":1555313085501652992,\"2919\":1555309544292630528,\"2920\":1555303207236255744,\"2921\":1555299516613627904,\"2922\":1555298493316665346,\"2923\":1555298430469246977,\"2924\":1555290140561625090,\"2925\":1555289069831311363,\"2926\":1555286290148589571,\"2927\":1555279982598946821,\"2928\":1555279750452715525,\"2929\":1555274246074548227,\"2930\":1555273639754334210,\"2931\":1555273042221502464,\"2932\":1555272697474588673,\"2933\":1555270720502087680,\"2934\":1555270449935810565,\"2935\":1555255293524729857,\"2936\":1555253770518405123,\"2937\":1555250716188581893,\"2938\":1555250097927110658,\"2939\":1555248905692086274,\"2940\":1555247814728470528,\"2941\":1555247100291870720,\"2942\":1555245847591403520,\"2943\":1555241326807060480,\"2944\":1555240679495929856,\"2945\":1555239078848765957,\"2946\":1555237490612731906,\"2947\":1555236168366686208,\"2948\":1555235741848010753,\"2949\":1555231420993478661,\"2950\":1555231056076410880,\"2951\":1555229033520062465,\"2952\":1555224391016931329,\"2953\":1555219220975308802,\"2954\":1555213282570514433,\"2955\":1555210958066294784,\"2956\":1555204178976423938,\"2957\":1555203906069741570,\"2958\":1555203587046887425,\"2959\":1555203195563118592,\"2960\":1555203105435836416,\"2961\":1555202945276329986,\"2962\":1555202736710422528,\"2963\":1555201781013028867,\"2964\":1555197747762020353,\"2965\":1555196918137069570,\"2966\":1555196763736342531,\"2967\":1555191931197693954,\"2968\":1555191096170479617,\"2969\":1555189075602178049,\"2970\":1555184514900582401,\"2971\":1555180488222035973,\"2972\":1555176811369218049,\"2973\":1555175075380338689,\"2974\":1555174968110878720,\"2975\":1555174187639209984,\"2976\":1555173247641161729,\"2977\":1555169329624371201,\"2978\":1555168058779525126,\"2979\":1555165192924831744,\"2980\":1555161230607777793,\"2981\":1555157065131298817,\"2982\":1555154606044454912,\"2983\":1555152668116533248,\"2984\":1555149702697476101,\"2985\":1555149398035906561,\"2986\":1555148913782493185,\"2987\":1555145195234148352,\"2988\":1555144224714231809,\"2989\":1555141891812900864,\"2990\":1555141319676366848,\"2991\":1555140625653186560,\"2992\":1555139778533888000,\"2993\":1555139152135561218,\"2994\":1555138525649043457,\"2995\":1555136512567697408,\"2996\":1555136048174440449,\"2997\":1555135839843352576,\"2998\":1555134964127121408,\"2999\":1555133713612169216,\"3000\":1555132666793840641,\"3001\":1555130893794267138,\"3002\":1555129146388500482,\"3003\":1555128354340233217,\"3004\":1555128108503732224,\"3005\":1555127655908970497,\"3006\":1555126966491152384,\"3007\":1555123024881500161,\"3008\":1555122411443478528,\"3009\":1555119013126094848,\"3010\":1555114494996660224,\"3011\":1555113873476313088,\"3012\":1555110753358708737,\"3013\":1555109135024328704,\"3014\":1555106135442702339,\"3015\":1555104574884683777,\"3016\":1555104345552715776,\"3017\":1555104127406989312,\"3018\":1555103518092140545,\"3019\":1555103100406534145,\"3020\":1555101170439438337,\"3021\":1555101138512486401,\"3022\":1555100209516056576,\"3023\":1555099031281537026,\"3024\":1555097790358904834,\"3025\":1555096995492204546,\"3026\":1555095444807712806,\"3027\":1555094753410170880,\"3028\":1555092899624325120,\"3029\":1555092571201888256,\"3030\":1555089988752113666,\"3031\":1555089541727457282,\"3032\":1555089213820993540,\"3033\":1555086880462577664,\"3034\":1555085002794205186,\"3035\":1555084522563293184,\"3036\":1555078393535897600,\"3037\":1555078032158855169,\"3038\":1555076714312699904,\"3039\":1555074729022717955,\"3040\":1555073073103118337,\"3041\":1555071764933361665,\"3042\":1555036308552253440,\"3043\":1555031716372381696,\"3044\":1555020307894878208,\"3045\":1555015354488954880,\"3046\":1555003584068009987,\"3047\":1554998401888141312,\"3048\":1554993460956073984,\"3049\":1554989512484331520,\"3050\":1554984208589885441,\"3051\":1554977853988560896,\"3052\":1554968669574283264,\"3053\":1554967602467938307,\"3054\":1554965283621806085,\"3055\":1554964398757773312,\"3056\":1554955376927416320,\"3057\":1554955209960329216,\"3058\":1554954769776656385,\"3059\":1554953058412527616,\"3060\":1554952696884494336,\"3061\":1554951856362819584,\"3062\":1554945886744186880,\"3063\":1554932017342578692,\"3064\":1554930832753807365,\"3065\":1554929759095869440,\"3066\":1554925470789025797,\"3067\":1554920465453535234,\"3068\":1554919572913930240,\"3069\":1554919550172495872,\"3070\":1554916934776487936,\"3071\":1554914363928100864,\"3072\":1554913407270354947,\"3073\":1554910708340490244,\"3074\":1554910206764765184,\"3075\":1554907619403485185,\"3076\":1554905444610703361,\"3077\":1554896263388495872,\"3078\":1554895525392138241,\"3079\":1554894614267568128,\"3080\":1554893836513599488,\"3081\":1554891245608210433,\"3082\":1554889578019946496,\"3083\":1554888810739154949,\"3084\":1554887674498007040,\"3085\":1554884737327681545,\"3086\":1554884564845297664,\"3087\":1554883174987079681,\"3088\":1554882467999408132,\"3089\":1554882223177965572,\"3090\":1554881056008187904,\"3091\":1554879886778634243,\"3092\":1554879559425822721,\"3093\":1554879316705816576,\"3094\":1554876888396562433,\"3095\":1554875263674187778,\"3096\":1554875116768608256,\"3097\":1554875042147827712,\"3098\":1554873871156723712,\"3099\":1554871167894183936,\"3100\":1554869975638474752,\"3101\":1554869155698016263,\"3102\":1554867926930313216,\"3103\":1554859470001475584,\"3104\":1554858371622359044,\"3105\":1554857027855335426,\"3106\":1554856466481307648,\"3107\":1554856273216241674,\"3108\":1554855618275676162,\"3109\":1554854432843747328,\"3110\":1554853500152336384,\"3111\":1554850987222917128,\"3112\":1554849169902297088,\"3113\":1554845204703854592,\"3114\":1554843537736351744,\"3115\":1554840867164360706,\"3116\":1554839916168859648,\"3117\":1554839451213381632,\"3118\":1554838885879906304,\"3119\":1554838355950637056,\"3120\":1554837432276684811,\"3121\":1554836957687005186,\"3122\":1554835507216994312,\"3123\":1554835264660328449,\"3124\":1554835221819731969,\"3125\":1554835162839465992,\"3126\":1554835145458212865,\"3127\":1554835123329064961,\"3128\":1554829087671169028,\"3129\":1554825762682769413,\"3130\":1554825642171961345,\"3131\":1554824829877989378,\"3132\":1554824681747664899,\"3133\":1554823991629451264,\"3134\":1554823137191010304,\"3135\":1554822847855337472,\"3136\":1554820786933735425,\"3137\":1554820709485928450,\"3138\":1554820531186286592,\"3139\":1554818157616852993,\"3140\":1554813299744800768,\"3141\":1554813174087655424,\"3142\":1554812726647611393,\"3143\":1554805150509944835,\"3144\":1554804208410497028,\"3145\":1554803817425899520,\"3146\":1554801857461207042,\"3147\":1554801255620530179,\"3148\":1554800801729724418,\"3149\":1554800267329159170,\"3150\":1554798804939206656,\"3151\":1554798185935261696,\"3152\":1554797887225307137,\"3153\":1554797655632510976,\"3154\":1554796964734189569,\"3155\":1554796314440916992,\"3156\":1554794720462766080,\"3157\":1554793938686562304,\"3158\":1554793400167272450,\"3159\":1554792947694112770,\"3160\":1554792747147706370,\"3161\":1554790964002168853,\"3162\":1554790650343718916,\"3163\":1554790368180322305,\"3164\":1554788988187283456,\"3165\":1554788274752847874,\"3166\":1554787465952641029,\"3167\":1554786948564353026,\"3168\":1554785715841646592,\"3169\":1554785109202665476,\"3170\":1554784157557051392,\"3171\":1554783418755325953,\"3172\":1554782041039945728,\"3173\":1554781577946742785,\"3174\":1554780161714917376,\"3175\":1554779819296137217,\"3176\":1554777567802040321,\"3177\":1554777349111029760,\"3178\":1554773996087943168,\"3179\":1554773028235608064,\"3180\":1554772467201327104,\"3181\":1554771164572049408,\"3182\":1554771123782524929,\"3183\":1554770988902109186,\"3184\":1554769934298791937,\"3185\":1554768633062215691,\"3186\":1554768321983422464,\"3187\":1554767417963954176,\"3188\":1554765387874590722,\"3189\":1554765082739056641,\"3190\":1554763861085093888,\"3191\":1554763044194058240,\"3192\":1554762201919012864,\"3193\":1554761745159409664,\"3194\":1554760110320271360,\"3195\":1554759468705005570,\"3196\":1554758927639781377,\"3197\":1554758665240018946,\"3198\":1554757312325246977,\"3199\":1554757121086001152,\"3200\":1554755014110969856,\"3201\":1554753949986525184,\"3202\":1554750497139089408,\"3203\":1554750357292650496,\"3204\":1554750169228492801,\"3205\":1554747547788484608,\"3206\":1554746410469318657,\"3207\":1554745680635338754,\"3208\":1554745475730968580,\"3209\":1554745332243767296,\"3210\":1554743578127212544,\"3211\":1554743515757903873,\"3212\":1554739926125760512,\"3213\":1554739517940195329,\"3214\":1554738972546539520,\"3215\":1554737243566362625,\"3216\":1554735948960784384,\"3217\":1554735947413176320,\"3218\":1554735759818620928,\"3219\":1554735443136192512,\"3220\":1554733314564554752,\"3221\":1554733053494403074,\"3222\":1554731771115225088,\"3223\":1554729562080174081,\"3224\":1554729093857435649,\"3225\":1554728958880612353,\"3226\":1554726841772023808,\"3227\":1554725439599435777,\"3228\":1554725366044004359,\"3229\":1554723970548699137,\"3230\":1554722830654242816,\"3231\":1554722351207616512,\"3232\":1554719675711234049,\"3233\":1554719466797293568,\"3234\":1554718940496105473,\"3235\":1554717574407020547,\"3236\":1554716689337655297,\"3237\":1554716381962293253,\"3238\":1554715101596467202,\"3239\":1554714732828950531,\"3240\":1554714297980395521,\"3241\":1554714059471200258,\"3242\":1554713631694233600,\"3243\":1554711804013576192,\"3244\":1554710620532084741,\"3245\":1554708618041298944,\"3246\":1554707579426992128,\"3247\":1554707436271026177,\"3248\":1554706442460037120,\"3249\":1554706296670195713,\"3250\":1554704111563595776,\"3251\":1554703414864490496,\"3252\":1554702333577150466,\"3253\":1554701125781176321,\"3254\":1554701092881108993,\"3255\":1554700773983911936,\"3256\":1554699844798775298,\"3257\":1554696312964218880,\"3258\":1554695248365985792,\"3259\":1554695199330340864,\"3260\":1554695069982228480,\"3261\":1554695001199841280,\"3262\":1554694907486502912,\"3263\":1554694670470352896,\"3264\":1554694071809105922,\"3265\":1554693967874244608,\"3266\":1554693495687974912,\"3267\":1554693275319246848,\"3268\":1554693154535784451,\"3269\":1554693052094087168,\"3270\":1554692925602365441,\"3271\":1554692432574533632,\"3272\":1554690673508581376,\"3273\":1554690307333160963,\"3274\":1554689632960499717,\"3275\":1554689566824620033,\"3276\":1554689495647363073,\"3277\":1554689401086787584,\"3278\":1554689059997597696,\"3279\":1554688861569171457,\"3280\":1554688695550504960,\"3281\":1554688562922135555,\"3282\":1554687233462251521,\"3283\":1554682464236437505,\"3284\":1554682393843359744,\"3285\":1554676151293022209,\"3286\":1554672615503060992,\"3287\":1554666798372380672,\"3288\":1554663850615742467,\"3289\":1554661276697100289,\"3290\":1554642745213558785,\"3291\":1554637068256559105,\"3292\":1554630465654505472,\"3293\":1554612845341540353,\"3294\":1554610609047670785,\"3295\":1554609029619523584,\"3296\":1554603566140198912,\"3297\":1554602830664802305,\"3298\":1554602151254556680,\"3299\":1554600627451449345,\"3300\":1554599767337992197,\"3301\":1554599480476975104,\"3302\":1554597692801794053,\"3303\":1554597548131745793,\"3304\":1554597054571225088,\"3305\":1554597018705747968,\"3306\":1554594793111654402,\"3307\":1554593692190752768,\"3308\":1554591147208675329,\"3309\":1554589306408341507,\"3310\":1554589021396824064,\"3311\":1554587978223288320,\"3312\":1554587886007320577,\"3313\":1554586355518300166,\"3314\":1554585575214272513,\"3315\":1554585295580004355,\"3316\":1554582994836414465,\"3317\":1554581653745348608,\"3318\":1554581573659410433,\"3319\":1554579339567661056,\"3320\":1554577906474655744,\"3321\":1554577036416618496,\"3322\":1554576130962866176,\"3323\":1554573835566923776,\"3324\":1554573632428449801,\"3325\":1554571989330710528,\"3326\":1554571875455483911,\"3327\":1554571640062763015,\"3328\":1554571371363041284,\"3329\":1554571349196242944,\"3330\":1554570941488840704,\"3331\":1554570866075217920,\"3332\":1554567123468443649,\"3333\":1554566196808269825,\"3334\":1554565609727397888,\"3335\":1554565491808784386,\"3336\":1554565016489279498,\"3337\":1554564794887421954,\"3338\":1554564582940844036,\"3339\":1554564046287953921,\"3340\":1554563551221760001,\"3341\":1554563249894555648,\"3342\":1554563096756293633,\"3343\":1554560172017811465,\"3344\":1554560080577794048,\"3345\":1554559036997226499,\"3346\":1554557599009234949,\"3347\":1554556148744916993,\"3348\":1554555838387220480,\"3349\":1554555643092140034,\"3350\":1554555495012343808,\"3351\":1554554904034811906,\"3352\":1554554849752223744,\"3353\":1554552848750346241,\"3354\":1554552365029724160,\"3355\":1554552307462938626,\"3356\":1554551906302820352,\"3357\":1554551325458849794,\"3358\":1554550925813075971,\"3359\":1554549729916223488,\"3360\":1554549643740061697,\"3361\":1554549440316317697,\"3362\":1554547421912485888,\"3363\":1554545190920245250,\"3364\":1554544542657003523,\"3365\":1554543708581797888,\"3366\":1554542637566332931,\"3367\":1554542089882435588,\"3368\":1554541029298212864,\"3369\":1554540643040591873,\"3370\":1554540517962178561,\"3371\":1554540287493562369,\"3372\":1554540087072804864,\"3373\":1554539007748579328,\"3374\":1554538875758022656,\"3375\":1554537633778483209,\"3376\":1554536017058840578,\"3377\":1554535404321251331,\"3378\":1554534886828122112,\"3379\":1554534825268215809,\"3380\":1554534379522871298,\"3381\":1554533131067494400,\"3382\":1554532762673111045,\"3383\":1554532268265377798,\"3384\":1554532226620178433,\"3385\":1554528478372007936,\"3386\":1554526464267227136,\"3387\":1554524966569271296,\"3388\":1554523740372959235,\"3389\":1554522306642202624,\"3390\":1554521869461618688,\"3391\":1554521163749023744,\"3392\":1554517903122243588,\"3393\":1554517635156656128,\"3394\":1554517160407572485,\"3395\":1554516323786526720,\"3396\":1554515738001563650,\"3397\":1554512895039373319,\"3398\":1554511972942626817,\"3399\":1554511554326179840,\"3400\":1554508531159760897,\"3401\":1554508215945142273,\"3402\":1554504829770219520,\"3403\":1554504669308674048,\"3404\":1554503515556327425,\"3405\":1554502403889807362,\"3406\":1554502371946172416,\"3407\":1554502196384993280,\"3408\":1554501332723179524,\"3409\":1554500874185089025,\"3410\":1554500278094905347,\"3411\":1554500163846262789,\"3412\":1554498498958987264,\"3413\":1554495320146337792,\"3414\":1554495310986203141,\"3415\":1554494190842691584,\"3416\":1554493668454719492,\"3417\":1554493620186669056,\"3418\":1554491572502372353,\"3419\":1554490738594938883,\"3420\":1554490480792068096,\"3421\":1554490086099718145,\"3422\":1554489348749463552,\"3423\":1554488563089162242,\"3424\":1554486121865912320,\"3425\":1554484632254545920,\"3426\":1554484152132673536,\"3427\":1554484110638436353,\"3428\":1554484017214492674,\"3429\":1554483355172933641,\"3430\":1554482608142254083,\"3431\":1554481978132635648,\"3432\":1554481825128521729,\"3433\":1554481716479381506,\"3434\":1554481678243995650,\"3435\":1554481216363061253,\"3436\":1554481031083859973,\"3437\":1554480912464859138,\"3438\":1554480850598764547,\"3439\":1554480671648792578,\"3440\":1554480471052017664,\"3441\":1554479982822543361,\"3442\":1554479982432362496,\"3443\":1554479863389626368,\"3444\":1554479786671702017,\"3445\":1554477546430992384,\"3446\":1554477302364663808,\"3447\":1554477230218248192,\"3448\":1554476534375026688,\"3449\":1554475085347655681,\"3450\":1554474461608419328,\"3451\":1554474310529597445,\"3452\":1554473651499683840,\"3453\":1554472955907825667,\"3454\":1554472187469467649,\"3455\":1554471394880225281,\"3456\":1554471292803452928,\"3457\":1554469421036576769,\"3458\":1554469128194375682,\"3459\":1554466213534769152,\"3460\":1554465540617506818,\"3461\":1554464494855798784,\"3462\":1554463390118121475,\"3463\":1554463372409700353,\"3464\":1554462671868674048,\"3465\":1554461575834107905,\"3466\":1554461094823034885,\"3467\":1554459353293492227,\"3468\":1554457473960103938,\"3469\":1554454961697820673,\"3470\":1554453817449750530,\"3471\":1554453682267250688,\"3472\":1554453598989426688,\"3473\":1554453538280988672,\"3474\":1554453118456369153,\"3475\":1554452270414274561,\"3476\":1554451354311180290,\"3477\":1554451066577641472,\"3478\":1554449229145415680,\"3479\":1554448582018826241,\"3480\":1554444641898057728,\"3481\":1554443572098760704,\"3482\":1554437438944288768,\"3483\":1554435793162223616,\"3484\":1554434151935262720,\"3485\":1554430723054096386,\"3486\":1554423164620492804,\"3487\":1554420594107727873,\"3488\":1554420378725916672,\"3489\":1554419505178312704,\"3490\":1554412793348194306,\"3491\":1554408047849644034,\"3492\":1554407210029031424,\"3493\":1554406081807503360,\"3494\":1554404970153263105,\"3495\":1554404773209821186,\"3496\":1554404543022206981,\"3497\":1554403907895496704,\"3498\":1554403258466172928,\"3499\":1554398553136562180,\"3500\":1554397534994501634,\"3501\":1554396643776151552,\"3502\":1554388980841463808,\"3503\":1554366504594030592,\"3504\":1554332241710534657,\"3505\":1554304430375313412,\"3506\":1554275934634737666,\"3507\":1554253705226162176,\"3508\":1554249904695959556,\"3509\":1554236858175037440,\"3510\":1554235561086525440,\"3511\":1554233435941634058,\"3512\":1554232665645191170,\"3513\":1554226471153065985,\"3514\":1554220296223211523,\"3515\":1554217804924174337,\"3516\":1554210285132697603,\"3517\":1554206276476870658,\"3518\":1554198465030258689,\"3519\":1554196703078653952,\"3520\":1554193831683309570,\"3521\":1554193318900277248,\"3522\":1554191726797012992,\"3523\":1554190915283066882,\"3524\":1554186459778801664,\"3525\":1554185285428191232,\"3526\":1554183475233693697,\"3527\":1554181881100472323,\"3528\":1554175663430684679,\"3529\":1554171172924825601,\"3530\":1554169045934538752,\"3531\":1554168957476773888,\"3532\":1554165103947399179,\"3533\":1554162987136651265,\"3534\":1554162380900376582,\"3535\":1554162076708372480,\"3536\":1554159199227101185,\"3537\":1554158622007037960,\"3538\":1554148011684630528,\"3539\":1554145439221485568,\"3540\":1554140260837208064,\"3541\":1554135854083457024,\"3542\":1554134928413134848,\"3543\":1554127208016379906,\"3544\":1554126833754554375,\"3545\":1554124771629174786,\"3546\":1554123369699852291,\"3547\":1554122616927125504,\"3548\":1554119100007333888,\"3549\":1554117969579581440,\"3550\":1554117517681074177,\"3551\":1554111942238904324,\"3552\":1554103194170626049,\"3553\":1554097572062662663,\"3554\":1554096254057172996,\"3555\":1554094425059590144,\"3556\":1554094314493468674,\"3557\":1554093149756297219,\"3558\":1554087607235215361,\"3559\":1554086408649936901,\"3560\":1554085998321192961,\"3561\":1554085812974899202,\"3562\":1554085432538841090,\"3563\":1554085368139583489,\"3564\":1554085268386447361,\"3565\":1554085193945849858,\"3566\":1554085067063967744,\"3567\":1554084711147995137,\"3568\":1554084536727863387,\"3569\":1554079628473602049,\"3570\":1554074860963315713,\"3571\":1554074794538291201,\"3572\":1554072695142338561,\"3573\":1554069490706665473,\"3574\":1554056477404438528,\"3575\":1554044064462413826,\"3576\":1554037139071025155,\"3577\":1554036352378888192,\"3578\":1554030867332431873,\"3579\":1554029474986991618,\"3580\":1554027348588216324,\"3581\":1554026517906083841,\"3582\":1553985391123906560,\"3583\":1553980672951422976,\"3584\":1553848334531457026,\"3585\":1553830981844406273,\"3586\":1553770279918358529,\"3587\":1553749966664916992,\"3588\":1553749106207739904,\"3589\":1553747889687609351,\"3590\":1553739108215885829,\"3591\":1553736217761648640,\"3592\":1553729147326930945,\"3593\":1553717865894780935,\"3594\":1553717013650063360,\"3595\":1553711639521812482,\"3596\":1553710607052029953,\"3597\":1553702415223881731,\"3598\":1553697740307238913,\"3599\":1553691378995142659,\"3600\":1553687223261954050,\"3601\":1553683829377957888,\"3602\":1553683040357982209,\"3603\":1553682457970593792,\"3604\":1553681233913298944,\"3605\":1553677470389469186,\"3606\":1553677120257277953,\"3607\":1553674549207748609,\"3608\":1553672509446397953,\"3609\":1553672054062342144,\"3610\":1553671116941672449,\"3611\":1553670803262160897,\"3612\":1553668298004480000,\"3613\":1553668196879814656,\"3614\":1553664668815835136,\"3615\":1553657682518835200,\"3616\":1553657275822350338,\"3617\":1553652117272944640,\"3618\":1553641752690663424,\"3619\":1553638323977166849,\"3620\":1553611898549161984,\"3621\":1553564690663481344,\"3622\":1553516988647063553,\"3623\":1553372722490638336,\"3624\":1553248373011914753,\"3625\":1553246181140008960,\"3626\":1553184238345736192,\"3627\":1552978168629366784,\"3628\":1552945235566755842,\"3629\":1556408255517270016,\"3630\":1556407483953987586,\"3631\":1556329884342960129,\"3632\":1556314427712061440,\"3633\":1556287756858540032,\"3634\":1556261821971140608,\"3635\":1556244905474801664,\"3636\":1556240994328510465,\"3637\":1556239501667799043,\"3638\":1556223742959058945,\"3639\":1556221742439616514,\"3640\":1556180877264273410,\"3641\":1556176640069324801,\"3642\":1556129053480030209,\"3643\":1556128657495801861,\"3644\":1556042033915101184,\"3645\":1556010296069718016,\"3646\":1555995682586169352,\"3647\":1555995337352962049,\"3648\":1555992372194021376,\"3649\":1555984785004281857,\"3650\":1555950028279410688,\"3651\":1555940250551259136,\"3652\":1555924699447582720,\"3653\":1555921613857492993,\"3654\":1555920654368575488,\"3655\":1555919988610830337,\"3656\":1555912598461157377,\"3657\":1555904235451158529,\"3658\":1555901917523591168,\"3659\":1555886548486443008,\"3660\":1555886386380775425,\"3661\":1555881643566854144,\"3662\":1555864776286556160,\"3663\":1555859377038524416,\"3664\":1555856910280433665,\"3665\":1555832124401504257,\"3666\":1555828561424121857,\"3667\":1555823200457695233,\"3668\":1555765691919261696,\"3669\":1555751448482398209,\"3670\":1555744004817358848,\"3671\":1555743088366260224,\"3672\":1555704281352773633,\"3673\":1555682404433543188,\"3674\":1555673358125105153,\"3675\":1555661549276217345,\"3676\":1555646456811425793,\"3677\":1555645910100631559,\"3678\":1555645888277762050,\"3679\":1555645152223543297,\"3680\":1555644670729920514,\"3681\":1555642763491901441,\"3682\":1555642259760205824,\"3683\":1555642082022522881,\"3684\":1555632533563482114,\"3685\":1555631282817798144,\"3686\":1555604087411974144,\"3687\":1555601679147446272,\"3688\":1555599475577704449,\"3689\":1555598994277023744,\"3690\":1555584754224873472,\"3691\":1555581916308389889,\"3692\":1555581535969050624,\"3693\":1555580719384215552,\"3694\":1555568544460439552,\"3695\":1555567685156708352,\"3696\":1555566301048889348,\"3697\":1555557164986548224,\"3698\":1555556372212695040,\"3699\":1555549100615077888,\"3700\":1555537110584725506,\"3701\":1555536958012653569,\"3702\":1555536781621215233,\"3703\":1555536558866022401,\"3704\":1555536358143397888,\"3705\":1555536233526353928,\"3706\":1555534034532540417,\"3707\":1555534015318335489,\"3708\":1555533331395186690,\"3709\":1555530540459012096,\"3710\":1555528686379859970,\"3711\":1555527538163605504,\"3712\":1555526355747569665,\"3713\":1555526355739090944,\"3714\":1555519330288287746,\"3715\":1555507581048741889,\"3716\":1555489466692911104,\"3717\":1555488894203953154,\"3718\":1555487138241724421,\"3719\":1555485792801259522,\"3720\":1555484911703920641,\"3721\":1555484687623245825,\"3722\":1555484493095604224,\"3723\":1555484137737306113,\"3724\":1555477308634546176,\"3725\":1555475343321944064,\"3726\":1555471508130111490,\"3727\":1555467883769110528,\"3728\":1555467862516666371,\"3729\":1555453386195177473,\"3730\":1555451042678071296,\"3731\":1555447329133629440,\"3732\":1555440103807504385,\"3733\":1555432430298882049,\"3734\":1555430906868994051,\"3735\":1555430421051195393,\"3736\":1555429855797428224,\"3737\":1555428458246848513,\"3738\":1555427170872352768,\"3739\":1555424860263927808,\"3740\":1555423894001143809,\"3741\":1555423133896695808,\"3742\":1555420559139393537,\"3743\":1555414450961879040,\"3744\":1555414324369391616,\"3745\":1555411699708092421,\"3746\":1555407811441467393,\"3747\":1555407272267976704,\"3748\":1555404418757103617,\"3749\":1555403943349714944,\"3750\":1555402994233008129,\"3751\":1555401847589978113,\"3752\":1555400982259179520,\"3753\":1555394763100246017,\"3754\":1555393250051194880,\"3755\":1555391148688084992,\"3756\":1555386497611845633,\"3757\":1555375695559380994,\"3758\":1555370218377166853,\"3759\":1555365612645277701,\"3760\":1555363998995988483,\"3761\":1555358310815105026,\"3762\":1555354262238105601,\"3763\":1555351846230921216,\"3764\":1555351841726205962,\"3765\":1555351032011571202,\"3766\":1555350072656896000,\"3767\":1555348006265933825,\"3768\":1555346514528051200,\"3769\":1555341970872090626,\"3770\":1555341323653242880,\"3771\":1555339745286299649,\"3772\":1555339081378324480,\"3773\":1555336486056333315,\"3774\":1555335843501441030,\"3775\":1555333776250703872,\"3776\":1555332059526225920,\"3777\":1555330385654996994,\"3778\":1555328135914201088,\"3779\":1555325067273314305,\"3780\":1555322974445641741,\"3781\":1555320730925015041,\"3782\":1555319132786200577,\"3783\":1555318567473651713,\"3784\":1555317037097951233,\"3785\":1555316858437484544,\"3786\":1555315108515123205,\"3787\":1555313928296665088,\"3788\":1555313672704196608,\"3789\":1555313085501652992,\"3790\":1555310059139354627,\"3791\":1555309799948034048,\"3792\":1555309544292630528,\"3793\":1555308825040879622,\"3794\":1555307151958188036,\"3795\":1555306832515719170,\"3796\":1555303207236255744,\"3797\":1555301777603543040,\"3798\":1555301283451609089,\"3799\":1555299516613627904,\"3800\":1555298493316665346,\"3801\":1555298430469246977,\"3802\":1555298215204978690,\"3803\":1555297218936115202,\"3804\":1555294104325459968,\"3805\":1555293488253747200,\"3806\":1555293418661855232,\"3807\":1555292946374819841,\"3808\":1555290140561625090,\"3809\":1555289958906200064,\"3810\":1555289069831311363,\"3811\":1555288728205139968,\"3812\":1555288045670354950,\"3813\":1555287099267551234,\"3814\":1555286309412909056,\"3815\":1555286290148589571,\"3816\":1555285352222441474,\"3817\":1555285347994583041,\"3818\":1555283991019884546,\"3819\":1555281558004695040,\"3820\":1555279982598946821,\"3821\":1555279750452715525,\"3822\":1555278483777114112,\"3823\":1555277911216848898,\"3824\":1555275331761852416,\"3825\":1555275017306472449,\"3826\":1555274853632319489,\"3827\":1555274388391579649,\"3828\":1555274246074548227,\"3829\":1555273639754334210,\"3830\":1555273042221502464,\"3831\":1555272697474588673,\"3832\":1555271731555848193,\"3833\":1555270969526308864,\"3834\":1555270720502087680,\"3835\":1555270449935810565,\"3836\":1555270151976763398,\"3837\":1555266345528434689,\"3838\":1555264649989324802,\"3839\":1555257331738353667,\"3840\":1555255293524729857,\"3841\":1555253770518405123,\"3842\":1555252957658112000,\"3843\":1555251968133808135,\"3844\":1555251362195247104,\"3845\":1555250716188581893,\"3846\":1555250097927110658,\"3847\":1555248905692086274,\"3848\":1555247814728470528,\"3849\":1555247630825013252,\"3850\":1555247603641712640,\"3851\":1555247359264784394,\"3852\":1555247100291870720,\"3853\":1555246099278995456,\"3854\":1555245463124824069,\"3855\":1555241326807060480,\"3856\":1555240679495929856,\"3857\":1555239078848765957,\"3858\":1555238918651629571,\"3859\":1555237679377399809,\"3860\":1555237490612731906,\"3861\":1555236168366686208,\"3862\":1555236101505355777,\"3863\":1555235741848010753,\"3864\":1555234426979770369,\"3865\":1555234093394190336,\"3866\":1555231492674134016,\"3867\":1555231420993478661,\"3868\":1555231414681014273,\"3869\":1555231357957185538,\"3870\":1555231253607194624,\"3871\":1555231206953963520,\"3872\":1555231056076410880,\"3873\":1555229961732194307,\"3874\":1555229033520062465,\"3875\":1555228742951256064,\"3876\":1555228303707017217,\"3877\":1555228026228588551,\"3878\":1555227723748065282,\"3879\":1555225412145405952,\"3880\":1555224391016931329,\"3881\":1555222105674977281,\"3882\":1555220227746664448,\"3883\":1555220046305181696,\"3884\":1555219900653862913,\"3885\":1555219782856851458,\"3886\":1555219165115551747,\"3887\":1555218967303753729,\"3888\":1555218350619430914,\"3889\":1555218263872765955,\"3890\":1555218235380875266,\"3891\":1555215938898755585,\"3892\":1555214019400810498,\"3893\":1555213282570514433,\"3894\":1555213231454552069,\"3895\":1555212380228960256,\"3896\":1555211768405827584,\"3897\":1555211358597160961,\"3898\":1555210958066294784,\"3899\":1555210716088598530,\"3900\":1555206957140680704,\"3901\":1555204755034722304,\"3902\":1555204414499164162,\"3903\":1555204178976423938,\"3904\":1555203906069741570,\"3905\":1555203741317566464,\"3906\":1555203587046887425,\"3907\":1555203195563118592,\"3908\":1555203105435836416,\"3909\":1555202945276329986,\"3910\":1555202736710422528,\"3911\":1555201883526107141,\"3912\":1555201781013028867,\"3913\":1555201393216131076,\"3914\":1555200972980371458,\"3915\":1555198537226387460,\"3916\":1555197747762020353,\"3917\":1555197297847328768,\"3918\":1555196763736342531,\"3919\":1555195061092196352,\"3920\":1555194091448811520,\"3921\":1555193658546294784,\"3922\":1555192171078340608,\"3923\":1555191931197693954,\"3924\":1555191107436290050,\"3925\":1555191096170479617,\"3926\":1555189409909276680,\"3927\":1555189182955503616,\"3928\":1555189075602178049,\"3929\":1555184920984682497,\"3930\":1555184653732028418,\"3931\":1555184514900582401,\"3932\":1555182895467315200,\"3933\":1555181501632942083,\"3934\":1555180488222035973,\"3935\":1555180458555613184,\"3936\":1555178785083113473,\"3937\":1555177954409332740,\"3938\":1555176811369218049,\"3939\":1555175075380338689,\"3940\":1555174968110878720,\"3941\":1555174187639209984,\"3942\":1555173963566915584,\"3943\":1555173247641161729,\"3944\":1555170564452515840,\"3945\":1555169785113182209,\"3946\":1555169329624371201,\"3947\":1555168278548471814,\"3948\":1555168058779525126,\"3949\":1555167787605233664,\"3950\":1555165846510751746,\"3951\":1555165337112530944,\"3952\":1555165192924831744,\"3953\":1555162977254391809,\"3954\":1555162714733006849,\"3955\":1555161230607777793,\"3956\":1555158687773229056,\"3957\":1555158033004724225,\"3958\":1555157899948818433,\"3959\":1555157065131298817,\"3960\":1555156719885492224,\"3961\":1555155450995556352,\"3962\":1555155274020917248,\"3963\":1555155081980411905,\"3964\":1555154606044454912,\"3965\":1555154282038657026,\"3966\":1555153135496478720,\"3967\":1555152879358459904,\"3968\":1555152668116533248,\"3969\":1555152605470662656,\"3970\":1555152122827751425,\"3971\":1555152097120755713,\"3972\":1555152053936201730,\"3973\":1555151225103982592,\"3974\":1555150978747432963,\"3975\":1555150597149433864,\"3976\":1555150232064860161,\"3977\":1555149702697476101,\"3978\":1555149398035906561,\"3979\":1555148913782493185,\"3980\":1555147801557962753,\"3981\":1555145195234148352,\"3982\":1555144224714231809,\"3983\":1555143956614111232,\"3984\":1555143876838670338,\"3985\":1555143706495356930,\"3986\":1555141891812900864,\"3987\":1555141319676366848,\"3988\":1555140625653186560,\"3989\":1555139778533888000,\"3990\":1555139554767769602,\"3991\":1555139435934654464,\"3992\":1555139152135561218,\"3993\":1555138829111156736,\"3994\":1555138525649043457,\"3995\":1555138012203335680,\"3996\":1555136512567697408,\"3997\":1555136048174440449,\"3998\":1555135839843352576,\"3999\":1555135838857609217,\"4000\":1555134964127121408,\"4001\":1555134319928156162,\"4002\":1555133713612169216,\"4003\":1555133411550969856,\"4004\":1555131296053170177,\"4005\":1555131195222069249,\"4006\":1555130893794267138,\"4007\":1555129146388500482,\"4008\":1555128354340233217,\"4009\":1555128108503732224,\"4010\":1555127655908970497,\"4011\":1555126966491152384,\"4012\":1555126445692768256,\"4013\":1555126401535287299,\"4014\":1555126328071946240,\"4015\":1555126221201096704,\"4016\":1555126188162654208,\"4017\":1555123024881500161,\"4018\":1555122862587105280,\"4019\":1555122411443478528,\"4020\":1555119013126094848,\"4021\":1555114494996660224,\"4022\":1555113873476313088,\"4023\":1555113286785531905,\"4024\":1555112511707533313,\"4025\":1555111116220628992,\"4026\":1555110753358708737,\"4027\":1555110646349430789,\"4028\":1555109230616649728,\"4029\":1555109135024328704,\"4030\":1555108769641762816,\"4031\":1555108071277531139,\"4032\":1555107530749218816,\"4033\":1555106135442702339,\"4034\":1555105959676100608,\"4035\":1555105707715862528,\"4036\":1555105421039484929,\"4037\":1555104574884683777,\"4038\":1555104345552715776,\"4039\":1555104127406989312,\"4040\":1555103518092140545,\"4041\":1555102075922563074,\"4042\":1555101170439438337,\"4043\":1555101138512486401,\"4044\":1555100209516056576,\"4045\":1555099031281537026,\"4046\":1555098095113089025,\"4047\":1555097790358904834,\"4048\":1555096995492204546,\"4049\":1555096954962583552,\"4050\":1555096536874455040,\"4051\":1555096065774436352,\"4052\":1555095720570621954,\"4053\":1555095670616461312,\"4054\":1555095639494623233,\"4055\":1555095534242877440,\"4056\":1555095444807712806,\"4057\":1555095209926598658,\"4058\":1555095075570556929,\"4059\":1555094959266713600,\"4060\":1555094858410463233,\"4061\":1555094753410170880,\"4062\":1555094665124274176,\"4063\":1555094597881192448,\"4064\":1555094485511585792,\"4065\":1555094484245008386,\"4066\":1555094421896663040,\"4067\":1555094324123209728,\"4068\":1555094124021309440,\"4069\":1555094043893415946,\"4070\":1555093987098345472,\"4071\":1555093867774476288,\"4072\":1555093842822660097,\"4073\":1555093689298468865,\"4074\":1555093622894104576,\"4075\":1555093582700322816,\"4076\":1555093382518693889,\"4077\":1555093282232860672,\"4078\":1555093146769432576,\"4079\":1555092899624325120,\"4080\":1555092571201888256,\"4081\":1555091958321844224,\"4082\":1555091460365639680,\"4083\":1555090787318353920,\"4084\":1555089988752113666,\"4085\":1555089627396149250,\"4086\":1555089541727457282,\"4087\":1555089213820993540,\"4088\":1555088313282957315,\"4089\":1555087937699815425,\"4090\":1555086880462577664,\"4091\":1555086748367179778,\"4092\":1555086720407928832,\"4093\":1555085774076477441,\"4094\":1555085041222524928,\"4095\":1555085002794205186,\"4096\":1555084522563293184,\"4097\":1555084450165407746,\"4098\":1555084387833856005,\"4099\":1555083016980111362,\"4100\":1555082220565569536,\"4101\":1555081712870326273,\"4102\":1555081688241381377,\"4103\":1555079122791055360,\"4104\":1555078393535897600,\"4105\":1555078032158855169,\"4106\":1555077961669382144,\"4107\":1555076714312699904,\"4108\":1555075883454664704,\"4109\":1555074729022717955,\"4110\":1555073319896076289,\"4111\":1555073206578470912,\"4112\":1555073109618819074,\"4113\":1555073073103118337,\"4114\":1555073061468110848,\"4115\":1555072972540485632,\"4116\":1555072903242211330,\"4117\":1555072836330524672,\"4118\":1555072614292488192,\"4119\":1555071764933361665,\"4120\":1555071392021897217,\"4121\":1555069433441402883,\"4122\":1555069289308241927,\"4123\":1555061972483588096,\"4124\":1555061325436420096,\"4125\":1555056027233824768,\"4126\":1555040833744691200,\"4127\":1555037428884307968,\"4128\":1555036308552253440,\"4129\":1555031716372381696,\"4130\":1555024176137781250,\"4131\":1555020307894878208,\"4132\":1555015354488954880,\"4133\":1555014696524288002,\"4134\":1555010634030383108,\"4135\":1555010062569046016,\"4136\":1555003770404306945,\"4137\":1554998401888141312,\"4138\":1554989512484331520,\"4139\":1554985257119760390,\"4140\":1554984208589885441,\"4141\":1554977853988560896,\"4142\":1554977697398267904,\"4143\":1554968669574283264,\"4144\":1554967602467938307,\"4145\":1554965283621806085,\"4146\":1554964398757773312,\"4147\":1554963409325752321,\"4148\":1554955376927416320,\"4149\":1554955224967684102,\"4150\":1554955209960329216,\"4151\":1554954769776656385,\"4152\":1554954179222839299,\"4153\":1554953058412527616,\"4154\":1554952696884494336,\"4155\":1554952346110775301,\"4156\":1554951856362819584,\"4157\":1554947190027681792,\"4158\":1554947171329376257,\"4159\":1554947130447495172,\"4160\":1554945886744186880,\"4161\":1554943957313912833,\"4162\":1554940473357344770,\"4163\":1554935935300665344,\"4164\":1554932017342578692,\"4165\":1554930832753807365,\"4166\":1554929759095869440,\"4167\":1554927439276548105,\"4168\":1554925804731207680,\"4169\":1554925470789025797,\"4170\":1554925335430533121,\"4171\":1554925033604128768,\"4172\":1554924328852094976,\"4173\":1554922799667503106,\"4174\":1554921749074026496,\"4175\":1554921120905760778,\"4176\":1554920465453535234,\"4177\":1554920240940826626,\"4178\":1554919792158691329,\"4179\":1554919572913930240,\"4180\":1554919550172495872,\"4181\":1554918854165422082,\"4182\":1554918698191831044,\"4183\":1554918313272266753,\"4184\":1554917658948255750,\"4185\":1554917350310395911,\"4186\":1554916934776487936,\"4187\":1554916841855848448,\"4188\":1554916614562275333,\"4189\":1554916086897934338,\"4190\":1554914919761453056,\"4191\":1554914363928100864,\"4192\":1554914152052817920,\"4193\":1554914010465800194,\"4194\":1554913407270354947,\"4195\":1554910877131984898,\"4196\":1554910708340490244,\"4197\":1554910701755502595,\"4198\":1554910206764765184,\"4199\":1554909529577512960,\"4200\":1554909353592860674,\"4201\":1554909245790896128,\"4202\":1554909038470746114,\"4203\":1554908266764931072,\"4204\":1554908064335237122,\"4205\":1554908019191943175,\"4206\":1554907619403485185,\"4207\":1554907177579528192,\"4208\":1554906423393386496,\"4209\":1554905444610703361,\"4210\":1554905114531577859,\"4211\":1554904346176929792,\"4212\":1554904303579660289,\"4213\":1554904155625558016,\"4214\":1554903921407266824,\"4215\":1554903129673666560,\"4216\":1554901550665015298,\"4217\":1554899262617653248,\"4218\":1554898069640151042,\"4219\":1554895525392138241,\"4220\":1554895519801024513,\"4221\":1554895023048630272,\"4222\":1554894614267568128,\"4223\":1554894090600325120,\"4224\":1554893836513599488,\"4225\":1554892872708669440,\"4226\":1554892656282681346,\"4227\":1554891245608210433,\"4228\":1554890637715054593,\"4229\":1554889457706434560,\"4230\":1554888810739154949,\"4231\":1554888288187596801,\"4232\":1554887674498007040,\"4233\":1554887434168573952,\"4234\":1554884564845297664,\"4235\":1554883393925554177,\"4236\":1554883093852479491,\"4237\":1554882467999408132,\"4238\":1554882223177965572,\"4239\":1554881430416723970,\"4240\":1554881056008187904,\"4241\":1554880361267593217,\"4242\":1554879559425822721,\"4243\":1554876888396562433,\"4244\":1554876236282863616,\"4245\":1554875536480018433,\"4246\":1554875263674187778,\"4247\":1554875260260044807,\"4248\":1554875116768608256,\"4249\":1554875042147827712,\"4250\":1554873915180302344,\"4251\":1554873871156723712,\"4252\":1554872532582400001,\"4253\":1554872252679815169,\"4254\":1554871513584701440,\"4255\":1554869975638474752,\"4256\":1554869155698016263,\"4257\":1554867028175069184,\"4258\":1554866394885488640,\"4259\":1554866358986444800,\"4260\":1554864281786748928,\"4261\":1554864142984642564,\"4262\":1554863391801577475,\"4263\":1554863265620049922,\"4264\":1554863081024589824,\"4265\":1554862857627598849,\"4266\":1554862669466853387,\"4267\":1554861807709339648,\"4268\":1554861376585220096,\"4269\":1554861159978770438,\"4270\":1554860847461179392,\"4271\":1554859470001475584,\"4272\":1554858371622359044,\"4273\":1554857741767802884,\"4274\":1554857391572795395,\"4275\":1554857027855335426,\"4276\":1554856466481307648,\"4277\":1554856273216241674,\"4278\":1554855618275676162,\"4279\":1554854432843747328,\"4280\":1554854317353586690,\"4281\":1554853584608673792,\"4282\":1554853500152336384,\"4283\":1554852946457812992,\"4284\":1554852816983937028,\"4285\":1554851525855526912,\"4286\":1554850987222917128,\"4287\":1554849169902297088,\"4288\":1554847720237588483,\"4289\":1554847318733688835,\"4290\":1554847181386940416,\"4291\":1554845904175259648,\"4292\":1554845844062470145,\"4293\":1554845034851213314,\"4294\":1554844905943564290,\"4295\":1554843910261932034,\"4296\":1554843537736351744,\"4297\":1554840867164360706,\"4298\":1554840769541840897,\"4299\":1554840595432177666,\"4300\":1554840044241911810,\"4301\":1554839916168859648,\"4302\":1554839451213381632,\"4303\":1554839139752652802,\"4304\":1554838957422219265,\"4305\":1554838355950637056,\"4306\":1554838024537509889,\"4307\":1554837697813917699,\"4308\":1554837432276684811,\"4309\":1554836957687005186,\"4310\":1554835507216994312,\"4311\":1554835264660328449,\"4312\":1554835221819731969,\"4313\":1554835162839465992,\"4314\":1554835145458212865,\"4315\":1554835123329064961,\"4316\":1554831323415490560,\"4317\":1554830864189575175,\"4318\":1554829962636472322,\"4319\":1554829815449931777,\"4320\":1554829087671169028,\"4321\":1554827387468058628,\"4322\":1554825762682769413,\"4323\":1554825674224910341,\"4324\":1554825642171961345,\"4325\":1554825577894330369,\"4326\":1554825577231552513,\"4327\":1554825410940002307,\"4328\":1554825293419778048,\"4329\":1554825089337606144,\"4330\":1554824984425480199,\"4331\":1554824889399250947,\"4332\":1554824875520299010,\"4333\":1554824829877989378,\"4334\":1554824799146323969,\"4335\":1554824748428697602,\"4336\":1554824681747664899,\"4337\":1554824624193474563,\"4338\":1554824399785586690,\"4339\":1554824354432552960,\"4340\":1554824304205766656,\"4341\":1554824240989319168,\"4342\":1554823991629451264,\"4343\":1554823249082605570,\"4344\":1554823137191010304,\"4345\":1554822970660360192,\"4346\":1554822847855337472,\"4347\":1554822673993068546,\"4348\":1554821956616146947,\"4349\":1554821258285502465,\"4350\":1554820786933735425,\"4351\":1554820709485928450,\"4352\":1554820531186286592,\"4353\":1554820392237248512,\"4354\":1554820342190948353,\"4355\":1554816629770444804,\"4356\":1554816429769252864,\"4357\":1554816276471681024,\"4358\":1554815936988856320,\"4359\":1554815491369324544,\"4360\":1554815003668135939,\"4361\":1554814620853993475,\"4362\":1554814505036693506,\"4363\":1554814099069882369,\"4364\":1554813907788877827,\"4365\":1554813806672596994,\"4366\":1554813725508571137,\"4367\":1554813586194792448,\"4368\":1554813299744800768,\"4369\":1554813174087655424,\"4370\":1554812936102838272,\"4371\":1554812868356349954,\"4372\":1554812801448902656,\"4373\":1554812726647611393,\"4374\":1554812455939092480,\"4375\":1554812098168754176,\"4376\":1554812049401778177,\"4377\":1554811872351866882,\"4378\":1554811798313918464,\"4379\":1554810881116078080,\"4380\":1554810633786466306,\"4381\":1554810030259568640,\"4382\":1554807692920766467,\"4383\":1554807550247313408,\"4384\":1554807534371966981,\"4385\":1554806583829446656,\"4386\":1554806541835968512,\"4387\":1554806450366681088,\"4388\":1554806099894747138,\"4389\":1554806099471208448,\"4390\":1554805150509944835,\"4391\":1554804475784740865,\"4392\":1554804208410497028,\"4393\":1554803817425899520,\"4394\":1554801857461207042,\"4395\":1554801255620530179,\"4396\":1554800801729724418,\"4397\":1554800267329159170,\"4398\":1554799845730390018,\"4399\":1554798804939206656,\"4400\":1554798185935261696,\"4401\":1554797887225307137,\"4402\":1554797655632510976,\"4403\":1554796964734189569,\"4404\":1554796856193974273,\"4405\":1554796586932248578,\"4406\":1554796314440916992,\"4407\":1554796164574285829,\"4408\":1554795312786669568,\"4409\":1554794720462766080,\"4410\":1554794668562554881,\"4411\":1554793938686562304,\"4412\":1554793400167272450,\"4413\":1554792947694112770,\"4414\":1554792747147706370,\"4415\":1554791408111951874,\"4416\":1554790964002168853,\"4417\":1554790650343718916,\"4418\":1554790540369174529,\"4419\":1554790368180322305,\"4420\":1554790310588317699,\"4421\":1554789862812880899,\"4422\":1554789690523410436,\"4423\":1554789438236069888,\"4424\":1554789312625090561,\"4425\":1554788988187283456,\"4426\":1554788967979126784,\"4427\":1554788274752847874,\"4428\":1554788088794292230,\"4429\":1554787860460494848,\"4430\":1554787558718144512,\"4431\":1554787465952641029,\"4432\":1554787362571419648,\"4433\":1554786948564353026,\"4434\":1554786103110078465,\"4435\":1554785715841646592,\"4436\":1554785500401106948,\"4437\":1554785109202665476,\"4438\":1554784847402598401,\"4439\":1554784157557051392,\"4440\":1554783877993988097,\"4441\":1554783617787875334,\"4442\":1554783418755325953,\"4443\":1554783305131753472,\"4444\":1554782552447139840,\"4445\":1554782489037742083,\"4446\":1554782100057899013,\"4447\":1554782041039945728,\"4448\":1554782000061583360,\"4449\":1554781577946742785,\"4450\":1554780662858760192,\"4451\":1554780161714917376,\"4452\":1554779819296137217,\"4453\":1554779705676648449,\"4454\":1554778707788795906,\"4455\":1554778649164976129,\"4456\":1554778433309245441,\"4457\":1554778267999240193,\"4458\":1554778141675196417,\"4459\":1554778138995040256,\"4460\":1554778135379562496,\"4461\":1554778101862879242,\"4462\":1554778051082436608,\"4463\":1554777567802040321,\"4464\":1554777432208588801,\"4465\":1554777354395951105,\"4466\":1554777349111029760,\"4467\":1554776611374989313,\"4468\":1554776497801629696,\"4469\":1554776004161314816,\"4470\":1554775783595544576,\"4471\":1554775733179916290,\"4472\":1554775658554920960,\"4473\":1554775131767046144,\"4474\":1554775098518712320,\"4475\":1554774694976536576,\"4476\":1554773996087943168,\"4477\":1554773735835664384,\"4478\":1554773665497202690,\"4479\":1554773340077817857,\"4480\":1554773028235608064,\"4481\":1554772663498711040,\"4482\":1554772632880521218,\"4483\":1554772467201327104,\"4484\":1554772019346022407,\"4485\":1554771164572049408,\"4486\":1554771123782524929,\"4487\":1554770988902109186,\"4488\":1554770731585589248,\"4489\":1554769934298791937,\"4490\":1554768633062215691,\"4491\":1554768321983422464,\"4492\":1554767858600513536,\"4493\":1554767417963954176,\"4494\":1554766319274393601,\"4495\":1554766153855254529,\"4496\":1554765853220036608,\"4497\":1554765387874590722,\"4498\":1554765285294542850,\"4499\":1554765082739056641,\"4500\":1554764958662942720,\"4501\":1554764294016737280,\"4502\":1554763861085093888,\"4503\":1554763044194058240,\"4504\":1554762358064648193,\"4505\":1554762305824378881,\"4506\":1554761745159409664,\"4507\":1554761554939322368,\"4508\":1554760645769306112,\"4509\":1554760110320271360,\"4510\":1554760106612367360,\"4511\":1554759468705005570,\"4512\":1554758991976202241,\"4513\":1554758927639781377,\"4514\":1554758665240018946,\"4515\":1554758462952833025,\"4516\":1554758300004237313,\"4517\":1554757312325246977,\"4518\":1554757121086001152,\"4519\":1554756741191057412,\"4520\":1554755756930568193,\"4521\":1554755014110969856,\"4522\":1554754941398519808,\"4523\":1554754395887247361,\"4524\":1554753949986525184,\"4525\":1554753222811721728,\"4526\":1554752436572667904,\"4527\":1554752228992368641,\"4528\":1554750752471584774,\"4529\":1554750398535110657,\"4530\":1554750357292650496,\"4531\":1554750169228492801,\"4532\":1554750035895545858,\"4533\":1554749973744521216,\"4534\":1554749956875067392,\"4535\":1554749484063760384,\"4536\":1554749294770413568,\"4537\":1554748781551288321,\"4538\":1554748203605565441,\"4539\":1554748151734624256,\"4540\":1554748090858479616,\"4541\":1554748026547310592,\"4542\":1554747966161920002,\"4543\":1554747896305795078,\"4544\":1554747830568353792,\"4545\":1554747760276127745,\"4546\":1554747351927033856,\"4547\":1554747247434366977,\"4548\":1554745680635338754,\"4549\":1554745475730968580,\"4550\":1554745332243767296,\"4551\":1554744948796399617,\"4552\":1554743578127212544,\"4553\":1554743515757903873,\"4554\":1554743273234829312,\"4555\":1554741633626816513,\"4556\":1554740126550560773,\"4557\":1554739926125760512,\"4558\":1554739517940195329,\"4559\":1554738972546539520,\"4560\":1554738893982932993,\"4561\":1554737862293209089,\"4562\":1554737243566362625,\"4563\":1554735966472085504,\"4564\":1554735948960784384,\"4565\":1554735947413176320,\"4566\":1554735759818620928,\"4567\":1554735453118529537,\"4568\":1554735443136192512,\"4569\":1554734810131734530,\"4570\":1554734371969662976,\"4571\":1554734274032590850,\"4572\":1554733314564554752,\"4573\":1554733053494403074,\"4574\":1554732574689443840,\"4575\":1554732329196740609,\"4576\":1554731771115225088,\"4577\":1554730661495410688,\"4578\":1554730211597586433,\"4579\":1554729562080174081,\"4580\":1554729093857435649,\"4581\":1554728958880612353,\"4582\":1554727898711576576,\"4583\":1554726841772023808,\"4584\":1554726590654959616,\"4585\":1554726355853627394,\"4586\":1554725439599435777,\"4587\":1554725366044004359,\"4588\":1554724189541744641,\"4589\":1554723970548699137,\"4590\":1554722830654242816,\"4591\":1554722351207616512,\"4592\":1554721500996984836,\"4593\":1554720326709288960,\"4594\":1554719466797293568,\"4595\":1554718940496105473,\"4596\":1554717766523015169,\"4597\":1554717604618575872,\"4598\":1554717574407020547,\"4599\":1554716689337655297,\"4600\":1554716381962293253,\"4601\":1554715101596467202,\"4602\":1554714732828950531,\"4603\":1554714297980395521,\"4604\":1554714059471200258,\"4605\":1554713631694233600,\"4606\":1554712843437723649,\"4607\":1554711896250634240,\"4608\":1554711804013576192,\"4609\":1554711445836816384,\"4610\":1554710920110252032,\"4611\":1554710888313196544,\"4612\":1554709244364132352,\"4613\":1554708959176675329,\"4614\":1554708618041298944,\"4615\":1554707960097828864,\"4616\":1554707579426992128,\"4617\":1554707436271026177,\"4618\":1554706442460037120,\"4619\":1554706296670195713,\"4620\":1554706027442241537,\"4621\":1554704243826823170,\"4622\":1554704111563595776,\"4623\":1554703008604102656,\"4624\":1554702333577150466,\"4625\":1554701125781176321,\"4626\":1554701092881108993,\"4627\":1554700773983911936,\"4628\":1554698429091442688,\"4629\":1554697466905350146,\"4630\":1554697407363153920,\"4631\":1554696312964218880,\"4632\":1554695248365985792,\"4633\":1554695199330340864,\"4634\":1554695069982228480,\"4635\":1554695001199841280,\"4636\":1554694907486502912,\"4637\":1554694569500897282,\"4638\":1554694071809105922,\"4639\":1554693967874244608,\"4640\":1554693495687974912,\"4641\":1554693275319246848,\"4642\":1554693154535784451,\"4643\":1554693052094087168,\"4644\":1554692925602365441,\"4645\":1554692889975947264,\"4646\":1554692857457508352,\"4647\":1554692432574533632,\"4648\":1554690673508581376,\"4649\":1554690307333160963,\"4650\":1554689632960499717,\"4651\":1554689566824620033,\"4652\":1554689495647363073,\"4653\":1554689401086787584,\"4654\":1554689059997597696,\"4655\":1554688904581857281,\"4656\":1554688861569171457,\"4657\":1554688695550504960,\"4658\":1554688562922135555,\"4659\":1554688236685082624,\"4660\":1554684901747818497,\"4661\":1554684467146792962,\"4662\":1554683698901041153,\"4663\":1554683625207209984,\"4664\":1554683551077273600,\"4665\":1554682464236437505,\"4666\":1554678544923594753,\"4667\":1554678453177286656,\"4668\":1554678221798400000,\"4669\":1554676028567863297,\"4670\":1554675750741356544,\"4671\":1554675349258371072,\"4672\":1554674844339675136,\"4673\":1554672615503060992,\"4674\":1554665920831832066,\"4675\":1554663850615742467,\"4676\":1554661276697100289,\"4677\":1554654394930577419,\"4678\":1554652780295495681,\"4679\":1554648838211833856,\"4680\":1554642745213558785,\"4681\":1554638440527962112,\"4682\":1554638302266941441,\"4683\":1554637878625542146,\"4684\":1554637068256559105,\"4685\":1554635445933334530,\"4686\":1554630465654505472,\"4687\":1554619892044861441,\"4688\":1554618074481016832,\"4689\":1554615955405275137,\"4690\":1554614885547393024,\"4691\":1554614076109737985,\"4692\":1554612845341540353,\"4693\":1554610609047670785,\"4694\":1554609718651506689,\"4695\":1554609029619523584,\"4696\":1554607749148905474,\"4697\":1554606539872288769,\"4698\":1554606340001173504,\"4699\":1554603566140198912,\"4700\":1554602830664802305,\"4701\":1554602151254556680,\"4702\":1554602070724026370,\"4703\":1554601323043377152,\"4704\":1554600627451449345,\"4705\":1554599767337992197,\"4706\":1554599480476975104,\"4707\":1554597692801794053,\"4708\":1554597548131745793,\"4709\":1554597054571225088,\"4710\":1554597018705747968,\"4711\":1554594793111654402,\"4712\":1554593692190752768,\"4713\":1554591385281593347,\"4714\":1554591147208675329,\"4715\":1554590639408484353,\"4716\":1554589306408341507,\"4717\":1554589166352187393,\"4718\":1554589021396824064,\"4719\":1554588484404449289,\"4720\":1554587978223288320,\"4721\":1554586355518300166,\"4722\":1554585575214272513,\"4723\":1554585295580004355,\"4724\":1554584412356050948,\"4725\":1554583820158001152,\"4726\":1554583020010901504,\"4727\":1554582994836414465,\"4728\":1554582665101180930,\"4729\":1554582530015248384,\"4730\":1554582068595724289,\"4731\":1554581905239969792,\"4732\":1554581573659410433,\"4733\":1554581240686297088,\"4734\":1554581013409546248,\"4735\":1554579339567661056,\"4736\":1554579142963863555,\"4737\":1554578608420683782,\"4738\":1554578605518249987,\"4739\":1554577906474655744,\"4740\":1554577672927416320,\"4741\":1554577036416618496,\"4742\":1554576134330896392,\"4743\":1554576016806387712,\"4744\":1554575519135440899,\"4745\":1554575508922400768,\"4746\":1554575385966297088,\"4747\":1554575319453032448,\"4748\":1554574477953990657,\"4749\":1554574225763090434,\"4750\":1554573928336691206,\"4751\":1554573789152813056,\"4752\":1554573719493910528,\"4753\":1554573632428449801,\"4754\":1554573466669662208,\"4755\":1554573380803764224,\"4756\":1554573326240071681,\"4757\":1554572799079071747,\"4758\":1554572159581814787,\"4759\":1554571989330710528,\"4760\":1554571875455483911,\"4761\":1554571726410981377,\"4762\":1554571640062763015,\"4763\":1554571502409981952,\"4764\":1554571371363041284,\"4765\":1554571349196242944,\"4766\":1554570941488840704,\"4767\":1554570866075217920,\"4768\":1554570354005360645,\"4769\":1554570096919646214,\"4770\":1554569825044905986,\"4771\":1554568595971215362,\"4772\":1554567302422609920,\"4773\":1554567192582258688,\"4774\":1554567123468443649,\"4775\":1554566822401277954,\"4776\":1554566359635435522,\"4777\":1554566196808269825,\"4778\":1554565885150609412,\"4779\":1554565623275044867,\"4780\":1554565609727397888,\"4781\":1554565491808784386,\"4782\":1554565373692747777,\"4783\":1554565016489279498,\"4784\":1554564794887421954,\"4785\":1554564582940844036,\"4786\":1554564046287953921,\"4787\":1554563834324652032,\"4788\":1554563551221760001,\"4789\":1554563249894555648,\"4790\":1554563096756293633,\"4791\":1554560269271048199,\"4792\":1554560172017811465,\"4793\":1554560151427993602,\"4794\":1554560080577794048,\"4795\":1554559331294756866,\"4796\":1554559036997226499,\"4797\":1554559032274345993,\"4798\":1554557971069374464,\"4799\":1554556555688910849,\"4800\":1554556148744916993,\"4801\":1554555960462565376,\"4802\":1554555643092140034,\"4803\":1554555495012343808,\"4804\":1554554904034811906,\"4805\":1554554849752223744,\"4806\":1554554644755632129,\"4807\":1554553914145529857,\"4808\":1554553577816920067,\"4809\":1554553518006075392,\"4810\":1554553249323253761,\"4811\":1554553221947002887,\"4812\":1554553045366853634,\"4813\":1554552991683936257,\"4814\":1554552365029724160,\"4815\":1554552307462938626,\"4816\":1554551906302820352,\"4817\":1554551329720340485,\"4818\":1554551325458849794,\"4819\":1554550925813075971,\"4820\":1554550700868247553,\"4821\":1554550433070415873,\"4822\":1554549729916223488,\"4823\":1554549643740061697,\"4824\":1554549440316317697,\"4825\":1554549359580160003,\"4826\":1554548681818488832,\"4827\":1554547421912485888,\"4828\":1554547350294740996,\"4829\":1554546962938171393,\"4830\":1554546282605207553,\"4831\":1554545745671647232,\"4832\":1554545706051969025,\"4833\":1554545190920245250,\"4834\":1554544542657003523,\"4835\":1554544471437606920,\"4836\":1554543708581797888,\"4837\":1554543237129535493,\"4838\":1554543236122804227,\"4839\":1554542950096543744,\"4840\":1554542637566332931,\"4841\":1554542089882435588,\"4842\":1554541886446178305,\"4843\":1554541029298212864,\"4844\":1554540643040591873,\"4845\":1554540517962178561,\"4846\":1554540287493562369,\"4847\":1554540176826945538,\"4848\":1554540087072804864,\"4849\":1554540044010110978,\"4850\":1554539314142388225,\"4851\":1554539214624153605,\"4852\":1554539206222946305,\"4853\":1554539165949349888,\"4854\":1554539112664817665,\"4855\":1554539059573293061,\"4856\":1554539019513495552,\"4857\":1554539007748579328,\"4858\":1554538894305234946,\"4859\":1554538875758022656,\"4860\":1554538800491233280,\"4861\":1554538780253634560,\"4862\":1554538774037667843,\"4863\":1554538758644580352,\"4864\":1554538727535435776,\"4865\":1554538715862765568,\"4866\":1554538696090714112,\"4867\":1554538271279128581,\"4868\":1554537633778483209,\"4869\":1554536944335552513,\"4870\":1554536733772984325,\"4871\":1554536249469321217,\"4872\":1554535866445402112,\"4873\":1554535404321251331,\"4874\":1554534886828122112,\"4875\":1554534825268215809,\"4876\":1554534153915359234,\"4877\":1554533761794072582,\"4878\":1554532762673111045,\"4879\":1554532268265377798,\"4880\":1554532226620178433,\"4881\":1554530216835534849,\"4882\":1554529005164023808,\"4883\":1554528762456379392,\"4884\":1554528652737536000,\"4885\":1554528478372007936,\"4886\":1554527905132253184,\"4887\":1554527789856051200,\"4888\":1554527634888982532,\"4889\":1554526464267227136,\"4890\":1554525020025720832,\"4891\":1554524966569271296,\"4892\":1554524532714635264,\"4893\":1554524433955569664,\"4894\":1554523740372959235,\"4895\":1554523595962974210,\"4896\":1554523496755216387,\"4897\":1554523092919148545,\"4898\":1554522306642202624,\"4899\":1554521869461618688,\"4900\":1554521604608196614,\"4901\":1554521163749023744,\"4902\":1554520500147200000,\"4903\":1554520489074327552,\"4904\":1554520326926655490,\"4905\":1554519449943818243,\"4906\":1554519410077061123,\"4907\":1554519341718450176,\"4908\":1554519169512660994,\"4909\":1554518736563994624,\"4910\":1554518265938026503,\"4911\":1554517635156656128,\"4912\":1554517312392368131,\"4913\":1554516660421365762,\"4914\":1554516659997736961,\"4915\":1554516323786526720,\"4916\":1554516046807179264,\"4917\":1554515819991801859,\"4918\":1554515738001563650,\"4919\":1554515408891305984,\"4920\":1554515092099796994,\"4921\":1554514940857401344,\"4922\":1554514586954596353,\"4923\":1554514249975828480,\"4924\":1554513092356227072,\"4925\":1554512895039373319,\"4926\":1554512107630116864,\"4927\":1554511972942626817,\"4928\":1554511937723146242,\"4929\":1554511554326179840,\"4930\":1554510730334011399,\"4931\":1554509836968427521,\"4932\":1554509776431742976,\"4933\":1554509732836171779,\"4934\":1554509479911346176,\"4935\":1554508531159760897,\"4936\":1554508215945142273,\"4937\":1554507686431150081,\"4938\":1554507669574131715,\"4939\":1554507374265786369,\"4940\":1554506952306204673,\"4941\":1554506265904160768,\"4942\":1554505425168568320,\"4943\":1554505114249052162,\"4944\":1554503024973938690,\"4945\":1554502879318315018,\"4946\":1554502403889807362,\"4947\":1554502371946172416,\"4948\":1554502196384993280,\"4949\":1554501332723179524,\"4950\":1554501137616740353,\"4951\":1554501006838431744,\"4952\":1554500983060893696,\"4953\":1554500874185089025,\"4954\":1554500278094905347,\"4955\":1554500207177596928,\"4956\":1554500163846262789,\"4957\":1554499852234637313,\"4958\":1554498498958987264,\"4959\":1554498360329003010,\"4960\":1554497190243864577,\"4961\":1554495902836031493,\"4962\":1554495320146337792,\"4963\":1554495310986203141,\"4964\":1554494846739615744,\"4965\":1554494190842691584,\"4966\":1554493620186669056,\"4967\":1554492944031399938,\"4968\":1554492463200571395,\"4969\":1554492105506304000,\"4970\":1554491850052014084,\"4971\":1554491572502372353,\"4972\":1554491545810014208,\"4973\":1554491467485298689,\"4974\":1554491022822064128,\"4975\":1554490944380354560,\"4976\":1554490738594938883,\"4977\":1554490681925713922,\"4978\":1554490676796354561,\"4979\":1554490652188082177,\"4980\":1554490500526350336,\"4981\":1554490480792068096,\"4982\":1554490433421590529,\"4983\":1554490355508191232,\"4984\":1554490086099718145,\"4985\":1554490055917436929,\"4986\":1554489348749463552,\"4987\":1554489145971572737,\"4988\":1554489012190150658,\"4989\":1554488888789536768,\"4990\":1554488563089162242,\"4991\":1554488372730683392,\"4992\":1554487803244847104,\"4993\":1554487719132282880,\"4994\":1554487524592164868,\"4995\":1554487480501559300,\"4996\":1554487035519442944,\"4997\":1554486456894242817,\"4998\":1554486328292741121,\"4999\":1554486121865912320},\"id_str\":{\"0\":1554924874166149120,\"1\":1554488368347680768,\"2\":1554482802502127616,\"3\":1554102573635932160,\"4\":1553833459440910336,\"5\":1553732806152536064,\"6\":1556157165639016448,\"7\":1555006203310268416,\"8\":1554876194293776384,\"9\":1554478574903726080,\"10\":1554450310860398592,\"11\":1554215106191376384,\"12\":1554184385556926464,\"13\":1554117425968254976,\"14\":1553977640557625344,\"15\":1556408255517270016,\"16\":1556407483953987584,\"17\":1556329884342960128,\"18\":1556314427712061440,\"19\":1556287756858540032,\"20\":1556261821971140608,\"21\":1556240994328510464,\"22\":1556239501667799040,\"23\":1556223742959058944,\"24\":1556221742439616512,\"25\":1556180877264273408,\"26\":1556176640069324800,\"27\":1556145835871768576,\"28\":1556129053480030208,\"29\":1556128657495801856,\"30\":1556042033915101184,\"31\":1556010296069718016,\"32\":1555995682586169344,\"33\":1555995337352962048,\"34\":1555992372194021376,\"35\":1555984785004281856,\"36\":1555950028279410688,\"37\":1555940250551259136,\"38\":1555924699447582720,\"39\":1555921613857492992,\"40\":1555920654368575488,\"41\":1555919988610830336,\"42\":1555912598461157376,\"43\":1555904235451158528,\"44\":1555901917523591168,\"45\":1555886548486443008,\"46\":1555886386380775424,\"47\":1555881643566854144,\"48\":1555864776286556160,\"49\":1555859377038524416,\"50\":1555856910280433664,\"51\":1555833481262993408,\"52\":1555832124401504256,\"53\":1555829826132615168,\"54\":1555829725901295616,\"55\":1555828561424121856,\"56\":1555823200457695232,\"57\":1555765691919261696,\"58\":1555751448482398208,\"59\":1555744004817358848,\"60\":1555743088366260224,\"61\":1555704281352773632,\"62\":1555682404433543168,\"63\":1555673358125105152,\"64\":1555661549276217344,\"65\":1555653889436913664,\"66\":1555646456811425792,\"67\":1555645910100631552,\"68\":1555645888277762048,\"69\":1555645152223543296,\"70\":1555644880520708096,\"71\":1555644670729920512,\"72\":1555642763491901440,\"73\":1555642259760205824,\"74\":1555642082022522880,\"75\":1555632533563482112,\"76\":1555631282817798144,\"77\":1555604087411974144,\"78\":1555601679147446272,\"79\":1555599475577704448,\"80\":1555598994277023744,\"81\":1555596182440771584,\"82\":1555584754224873472,\"83\":1555581916308389888,\"84\":1555581535969050624,\"85\":1555580719384215552,\"86\":1555569850168352768,\"87\":1555568544460439552,\"88\":1555567685156708352,\"89\":1555566301048889344,\"90\":1555557164986548224,\"91\":1555556372212695040,\"92\":1555549458250743808,\"93\":1555549100615077888,\"94\":1555538183483432960,\"95\":1555537110584725504,\"96\":1555536958012653568,\"97\":1555536781621215232,\"98\":1555536558866022400,\"99\":1555536358143397888,\"100\":1555536233526353920,\"101\":1555534034532540416,\"102\":1555534015318335488,\"103\":1555533331395186688,\"104\":1555530540459012096,\"105\":1555528686379859968,\"106\":1555527538163605504,\"107\":1555526355747569664,\"108\":1555526355739090944,\"109\":1555519330288287744,\"110\":1555507581048741888,\"111\":1555489466692911104,\"112\":1555488894203953152,\"113\":1555487138241724416,\"114\":1555485792801259520,\"115\":1555484911703920640,\"116\":1555484687623245824,\"117\":1555484493095604224,\"118\":1555484137737306112,\"119\":1555482458912595968,\"120\":1555477308634546176,\"121\":1555475343321944064,\"122\":1555471508130111488,\"123\":1555467883769110528,\"124\":1555467862516666368,\"125\":1555464376261672960,\"126\":1555461969481801728,\"127\":1555453386195177472,\"128\":1555451251588059136,\"129\":1555451042678071296,\"130\":1555447329133629440,\"131\":1555440103807504384,\"132\":1555432430298882048,\"133\":1555430906868994048,\"134\":1555430421051195392,\"135\":1555429855797428224,\"136\":1555428458246848512,\"137\":1555427170872352768,\"138\":1555424860263927808,\"139\":1555423894001143808,\"140\":1555423133896695808,\"141\":1555420559139393536,\"142\":1555414450961879040,\"143\":1555414324369391616,\"144\":1555411699708092416,\"145\":1555407811441467392,\"146\":1555407272267976704,\"147\":1555404418757103616,\"148\":1555403943349714944,\"149\":1555402994233008128,\"150\":1555401847589978112,\"151\":1555400982259179520,\"152\":1555394763100246016,\"153\":1555393250051194880,\"154\":1555391148688084992,\"155\":1555386497611845632,\"156\":1555375695559380992,\"157\":1555370218377166848,\"158\":1555365612645277696,\"159\":1555363998995988480,\"160\":1555358310815105024,\"161\":1555354262238105600,\"162\":1555351846230921216,\"163\":1555351841726205952,\"164\":1555351032011571200,\"165\":1555350072656896000,\"166\":1555348006265933824,\"167\":1555346514528051200,\"168\":1555341970872090624,\"169\":1555341323653242880,\"170\":1555339745286299648,\"171\":1555339081378324480,\"172\":1555336486056333312,\"173\":1555335843501441024,\"174\":1555333776250703872,\"175\":1555332059526225920,\"176\":1555330385654996992,\"177\":1555328135914201088,\"178\":1555325067273314304,\"179\":1555322974445641728,\"180\":1555320730925015040,\"181\":1555319132786200576,\"182\":1555318567473651712,\"183\":1555317037097951232,\"184\":1555316858437484544,\"185\":1555316682222084096,\"186\":1555315108515123200,\"187\":1555313928296665088,\"188\":1555313672704196608,\"189\":1555313638717530112,\"190\":1555313085501652992,\"191\":1555310059139354624,\"192\":1555309799948034048,\"193\":1555309544292630528,\"194\":1555308825040879616,\"195\":1555307151958188032,\"196\":1555306832515719168,\"197\":1555303207236255744,\"198\":1555301777603543040,\"199\":1555301283451609088,\"200\":1555299516613627904,\"201\":1555298493316665344,\"202\":1555298430469246976,\"203\":1555298215204978688,\"204\":1555297218936115200,\"205\":1555296356348084224,\"206\":1555294104325459968,\"207\":1555293488253747200,\"208\":1555293418661855232,\"209\":1555292946374819840,\"210\":1555290279619563520,\"211\":1555290140561625088,\"212\":1555289958906200064,\"213\":1555289069831311360,\"214\":1555288728205139968,\"215\":1555288045670354944,\"216\":1555287099267551232,\"217\":1555286290148589568,\"218\":1555285352222441472,\"219\":1555285347994583040,\"220\":1555283991019884544,\"221\":1555281558004695040,\"222\":1555279982598946816,\"223\":1555279750452715520,\"224\":1555278483777114112,\"225\":1555277911216848896,\"226\":1555275331761852416,\"227\":1555275017306472448,\"228\":1555274853632319488,\"229\":1555274388391579648,\"230\":1555274246074548224,\"231\":1555273639754334208,\"232\":1555273042221502464,\"233\":1555272697474588672,\"234\":1555271731555848192,\"235\":1555270969526308864,\"236\":1555270720502087680,\"237\":1555270449935810560,\"238\":1555270151976763392,\"239\":1555269706269052928,\"240\":1555266345528434688,\"241\":1555264649989324800,\"242\":1555257331738353664,\"243\":1555256386870657024,\"244\":1555255293524729856,\"245\":1555253770518405120,\"246\":1555252957658112000,\"247\":1555251968133808128,\"248\":1555251488053772288,\"249\":1555251362195247104,\"250\":1555250716188581888,\"251\":1555250097927110656,\"252\":1555248905692086272,\"253\":1555247814728470528,\"254\":1555247603641712640,\"255\":1555247359264784384,\"256\":1555247100291870720,\"257\":1555246099278995456,\"258\":1555245847591403520,\"259\":1555245463124824064,\"260\":1555241326807060480,\"261\":1555240679495929856,\"262\":1555239078848765952,\"263\":1555238918651629568,\"264\":1555237679377399808,\"265\":1555237490612731904,\"266\":1555236809046728704,\"267\":1555236168366686208,\"268\":1555236101505355776,\"269\":1555235741848010752,\"270\":1555234426979770368,\"271\":1555234093394190336,\"272\":1555231492674134016,\"273\":1555231420993478656,\"274\":1555231414681014272,\"275\":1555231357957185536,\"276\":1555231253607194624,\"277\":1555231206953963520,\"278\":1555231080936099840,\"279\":1555231056076410880,\"280\":1555229961732194304,\"281\":1555228742951256064,\"282\":1555228303707017216,\"283\":1555228026228588544,\"284\":1555227723748065280,\"285\":1555225412145405952,\"286\":1555224391016931328,\"287\":1555223955497271296,\"288\":1555223839545630720,\"289\":1555223446975569920,\"290\":1555222105674977280,\"291\":1555220227746664448,\"292\":1555220046305181696,\"293\":1555219900653862912,\"294\":1555219782856851456,\"295\":1555219220975308800,\"296\":1555219165115551744,\"297\":1555218967303753728,\"298\":1555218350619430912,\"299\":1555218263872765952,\"300\":1555218235380875264,\"301\":1555215938898755584,\"302\":1555214019400810496,\"303\":1555213282570514432,\"304\":1555213231454552064,\"305\":1555212380228960256,\"306\":1555211768405827584,\"307\":1555211358597160960,\"308\":1555210958066294784,\"309\":1555210716088598528,\"310\":1555206957140680704,\"311\":1555204755034722304,\"312\":1555204414499164160,\"313\":1555204178976423936,\"314\":1555203906069741568,\"315\":1555203741317566464,\"316\":1555203587046887424,\"317\":1555203195563118592,\"318\":1555203105435836416,\"319\":1555202945276329984,\"320\":1555202736710422528,\"321\":1555201883526107136,\"322\":1555201781013028864,\"323\":1555201393216131072,\"324\":1555200972980371456,\"325\":1555198138029412352,\"326\":1555197747762020352,\"327\":1555197297847328768,\"328\":1555196918137069568,\"329\":1555196763736342528,\"330\":1555195061092196352,\"331\":1555194321330180096,\"332\":1555194091448811520,\"333\":1555193658546294784,\"334\":1555192171078340608,\"335\":1555191931197693952,\"336\":1555191551189557248,\"337\":1555191107436290048,\"338\":1555191096170479616,\"339\":1555189409909276672,\"340\":1555189182955503616,\"341\":1555189075602178048,\"342\":1555186278202806272,\"343\":1555185939084972032,\"344\":1555184920984682496,\"345\":1555184653732028416,\"346\":1555184514900582400,\"347\":1555182895467315200,\"348\":1555181501632942080,\"349\":1555180488222035968,\"350\":1555180458555613184,\"351\":1555177954409332736,\"352\":1555176811369218048,\"353\":1555175075380338688,\"354\":1555174968110878720,\"355\":1555174187639209984,\"356\":1555173963566915584,\"357\":1555173247641161728,\"358\":1555170564452515840,\"359\":1555169785113182208,\"360\":1555169367872118784,\"361\":1555169329624371200,\"362\":1555168278548471808,\"363\":1555168058779525120,\"364\":1555167787605233664,\"365\":1555166595865055232,\"366\":1555165846510751744,\"367\":1555165337112530944,\"368\":1555165192924831744,\"369\":1555162977254391808,\"370\":1555162714733006848,\"371\":1555161230607777792,\"372\":1555160016973209600,\"373\":1555158687773229056,\"374\":1555158033004724224,\"375\":1555157899948818432,\"376\":1555157065131298816,\"377\":1555156719885492224,\"378\":1555155450995556352,\"379\":1555155274020917248,\"380\":1555155081980411904,\"381\":1555154606044454912,\"382\":1555154282038657024,\"383\":1555153649315241984,\"384\":1555153135496478720,\"385\":1555152879358459904,\"386\":1555152668116533248,\"387\":1555152605470662656,\"388\":1555152122827751424,\"389\":1555152097120755712,\"390\":1555152053936201728,\"391\":1555151225103982592,\"392\":1555150978747432960,\"393\":1555150597149433856,\"394\":1555150232064860160,\"395\":1555149702697476096,\"396\":1555149398035906560,\"397\":1555148913782493184,\"398\":1555147801557962752,\"399\":1555147066300563456,\"400\":1555145656502722560,\"401\":1555145195234148352,\"402\":1555144224714231808,\"403\":1555143956614111232,\"404\":1555143876838670336,\"405\":1555143706495356928,\"406\":1555141891812900864,\"407\":1555141319676366848,\"408\":1555140625653186560,\"409\":1555139778533888000,\"410\":1555139554767769600,\"411\":1555139435934654464,\"412\":1555139152135561216,\"413\":1555138829111156736,\"414\":1555138525649043456,\"415\":1555138012203335680,\"416\":1555136512567697408,\"417\":1555136048174440448,\"418\":1555135839843352576,\"419\":1555135838857609216,\"420\":1555134964127121408,\"421\":1555134319928156160,\"422\":1555133713612169216,\"423\":1555133411550969856,\"424\":1555132666793840640,\"425\":1555131296053170176,\"426\":1555131195222069248,\"427\":1555130893794267136,\"428\":1555129146388500480,\"429\":1555128354340233216,\"430\":1555128108503732224,\"431\":1555127655908970496,\"432\":1555126966491152384,\"433\":1555126445692768256,\"434\":1555126401535287296,\"435\":1555126328071946240,\"436\":1555126221201096704,\"437\":1555126188162654208,\"438\":1555123728350158848,\"439\":1555123024881500160,\"440\":1555122862587105280,\"441\":1555122411443478528,\"442\":1555119013126094848,\"443\":1555114494996660224,\"444\":1555113873476313088,\"445\":1555113286785531904,\"446\":1555112511707533312,\"447\":1555111116220628992,\"448\":1555110753358708736,\"449\":1555110646349430784,\"450\":1555109230616649728,\"451\":1555109135024328704,\"452\":1555108769641762816,\"453\":1555108071277531136,\"454\":1555107530749218816,\"455\":1555106135442702336,\"456\":1555105959676100608,\"457\":1555105707715862528,\"458\":1555105421039484928,\"459\":1555104574884683776,\"460\":1555104345552715776,\"461\":1555104127406989312,\"462\":1555103518092140544,\"463\":1555103100406534144,\"464\":1555102075922563072,\"465\":1555101170439438336,\"466\":1555101138512486400,\"467\":1555100209516056576,\"468\":1555099031281537024,\"469\":1555098095113089024,\"470\":1555097790358904832,\"471\":1555096995492204544,\"472\":1555096954962583552,\"473\":1555096557204213760,\"474\":1555096536874455040,\"475\":1555096065774436352,\"476\":1555095720570621952,\"477\":1555095670616461312,\"478\":1555095639494623232,\"479\":1555095534242877440,\"480\":1555095444807712768,\"481\":1555095209926598656,\"482\":1555095075570556928,\"483\":1555094959266713600,\"484\":1555094858410463232,\"485\":1555094753410170880,\"486\":1555094665124274176,\"487\":1555094597881192448,\"488\":1555094485511585792,\"489\":1555094484245008384,\"490\":1555094421896663040,\"491\":1555094324123209728,\"492\":1555094124021309440,\"493\":1555094043893415936,\"494\":1555093987098345472,\"495\":1555093867774476288,\"496\":1555093842822660096,\"497\":1555093689298468864,\"498\":1555093622894104576,\"499\":1555093582700322816,\"500\":1555093382518693888,\"501\":1555093282232860672,\"502\":1555093146769432576,\"503\":1555092899624325120,\"504\":1555092571201888256,\"505\":1555091958321844224,\"506\":1555091460365639680,\"507\":1555090787318353920,\"508\":1555089988752113664,\"509\":1555089627396149248,\"510\":1555089541727457280,\"511\":1555089213820993536,\"512\":1555088313282957312,\"513\":1555087937699815424,\"514\":1555086880462577664,\"515\":1555086748367179776,\"516\":1555086720407928832,\"517\":1555085774076477440,\"518\":1555085041222524928,\"519\":1555085002794205184,\"520\":1555084522563293184,\"521\":1555084450165407744,\"522\":1555084387833856000,\"523\":1555083016980111360,\"524\":1555082220565569536,\"525\":1555081712870326272,\"526\":1555081688241381376,\"527\":1555079122791055360,\"528\":1555078393535897600,\"529\":1555078032158855168,\"530\":1555077961669382144,\"531\":1555076714312699904,\"532\":1555075883454664704,\"533\":1555074729022717952,\"534\":1555073319896076288,\"535\":1555073206578470912,\"536\":1555073109618819072,\"537\":1555073073103118336,\"538\":1555073061468110848,\"539\":1555072972540485632,\"540\":1555072903242211328,\"541\":1555072836330524672,\"542\":1555072614292488192,\"543\":1555071764933361664,\"544\":1555071392021897216,\"545\":1555069433441402880,\"546\":1555069289308241920,\"547\":1555061972483588096,\"548\":1555061325436420096,\"549\":1555056027233824768,\"550\":1555040833744691200,\"551\":1555037428884307968,\"552\":1555036308552253440,\"553\":1555031716372381696,\"554\":1555024176137781248,\"555\":1555020307894878208,\"556\":1555015354488954880,\"557\":1555014696524288000,\"558\":1555010634030383104,\"559\":1555010062569046016,\"560\":1555003770404306944,\"561\":1554998401888141312,\"562\":1554993460956073984,\"563\":1554989512484331520,\"564\":1554985257119760384,\"565\":1554984208589885440,\"566\":1554977853988560896,\"567\":1554977697398267904,\"568\":1554968669574283264,\"569\":1554967602467938304,\"570\":1554965283621806080,\"571\":1554964398757773312,\"572\":1554964209598881792,\"573\":1554963409325752320,\"574\":1554956228828319744,\"575\":1554955376927416320,\"576\":1554955224967684096,\"577\":1554955209960329216,\"578\":1554954769776656384,\"579\":1554954179222839296,\"580\":1554953058412527616,\"581\":1554952696884494336,\"582\":1554952346110775296,\"583\":1554951856362819584,\"584\":1554947190027681792,\"585\":1554947171329376256,\"586\":1554947130447495168,\"587\":1554945886744186880,\"588\":1554943957313912832,\"589\":1554940473357344768,\"590\":1554936394639986688,\"591\":1554935935300665344,\"592\":1554932017342578688,\"593\":1554930832753807360,\"594\":1554929759095869440,\"595\":1554927439276548096,\"596\":1554925804731207680,\"597\":1554925470789025792,\"598\":1554925335430533120,\"599\":1554925033604128768,\"600\":1554924328852094976,\"601\":1554922799667503104,\"602\":1554921749074026496,\"603\":1554921120905760768,\"604\":1554920465453535232,\"605\":1554920240940826624,\"606\":1554919792158691328,\"607\":1554919572913930240,\"608\":1554919550172495872,\"609\":1554918854165422080,\"610\":1554918698191831040,\"611\":1554918313272266752,\"612\":1554917658948255744,\"613\":1554917350310395904,\"614\":1554916934776487936,\"615\":1554916841855848448,\"616\":1554916614562275328,\"617\":1554916086897934336,\"618\":1554914919761453056,\"619\":1554914363928100864,\"620\":1554914152052817920,\"621\":1554914010465800192,\"622\":1554913407270354944,\"623\":1554910877131984896,\"624\":1554910708340490240,\"625\":1554910701755502592,\"626\":1554910206764765184,\"627\":1554909529577512960,\"628\":1554909353592860672,\"629\":1554909245790896128,\"630\":1554909038470746112,\"631\":1554908266764931072,\"632\":1554908064335237120,\"633\":1554908019191943168,\"634\":1554907619403485184,\"635\":1554907177579528192,\"636\":1554906423393386496,\"637\":1554905444610703360,\"638\":1554905114531577856,\"639\":1554904346176929792,\"640\":1554904303579660288,\"641\":1554904155625558016,\"642\":1554903921407266816,\"643\":1554903129673666560,\"644\":1554901550665015296,\"645\":1554899262617653248,\"646\":1554898069640151040,\"647\":1554895525392138240,\"648\":1554895519801024512,\"649\":1554895023048630272,\"650\":1554894614267568128,\"651\":1554894090600325120,\"652\":1554893836513599488,\"653\":1554892872708669440,\"654\":1554892656282681344,\"655\":1554891245608210432,\"656\":1554890637715054592,\"657\":1554890515123937280,\"658\":1554889578019946496,\"659\":1554889457706434560,\"660\":1554888810739154944,\"661\":1554888288187596800,\"662\":1554887674498007040,\"663\":1554887434168573952,\"664\":1554884737327681536,\"665\":1554884564845297664,\"666\":1554883393925554176,\"667\":1554883174987079680,\"668\":1554883093852479488,\"669\":1554882467999408128,\"670\":1554882223177965568,\"671\":1554881430416723968,\"672\":1554881056008187904,\"673\":1554880361267593216,\"674\":1554879886778634240,\"675\":1554879559425822720,\"676\":1554877321890467840,\"677\":1554876888396562432,\"678\":1554876236282863616,\"679\":1554875536480018432,\"680\":1554875263674187776,\"681\":1554875260260044800,\"682\":1554875116768608256,\"683\":1554875042147827712,\"684\":1554873915180302336,\"685\":1554873871156723712,\"686\":1554872532582400000,\"687\":1554872252679815168,\"688\":1554872078981029888,\"689\":1554871513584701440,\"690\":1554869975638474752,\"691\":1554869155698016256,\"692\":1554868702105030656,\"693\":1554868104890548224,\"694\":1554867028175069184,\"695\":1554866394885488640,\"696\":1554866358986444800,\"697\":1554864281786748928,\"698\":1554864142984642560,\"699\":1554863391801577472,\"700\":1554863265620049920,\"701\":1554863081024589824,\"702\":1554862857627598848,\"703\":1554862669466853376,\"704\":1554861807709339648,\"705\":1554861376585220096,\"706\":1554861159978770432,\"707\":1554860847461179392,\"708\":1554859470001475584,\"709\":1554858371622359040,\"710\":1554857741767802880,\"711\":1554857391572795392,\"712\":1554857027855335424,\"713\":1554856466481307648,\"714\":1554856273216241664,\"715\":1554855618275676160,\"716\":1554854432843747328,\"717\":1554854317353586688,\"718\":1554853584608673792,\"719\":1554853500152336384,\"720\":1554852946457812992,\"721\":1554852816983937024,\"722\":1554851525855526912,\"723\":1554850987222917120,\"724\":1554849169902297088,\"725\":1554848854914351104,\"726\":1554847720237588480,\"727\":1554847318733688832,\"728\":1554847181386940416,\"729\":1554845904175259648,\"730\":1554845844062470144,\"731\":1554845204703854592,\"732\":1554845034851213312,\"733\":1554844905943564288,\"734\":1554843910261932032,\"735\":1554843537736351744,\"736\":1554840867164360704,\"737\":1554840769541840896,\"738\":1554840595432177664,\"739\":1554840044241911808,\"740\":1554839916168859648,\"741\":1554839451213381632,\"742\":1554839139752652800,\"743\":1554838957422219264,\"744\":1554838885879906304,\"745\":1554838355950637056,\"746\":1554838024537509888,\"747\":1554837697813917696,\"748\":1554837432276684800,\"749\":1554836957687005184,\"750\":1554835507216994304,\"751\":1554835264660328448,\"752\":1554835221819731968,\"753\":1554835162839465984,\"754\":1554835145458212864,\"755\":1554835123329064960,\"756\":1554834472549244928,\"757\":1554832397509672960,\"758\":1554831369179516928,\"759\":1554831323415490560,\"760\":1554830864189575168,\"761\":1554829962636472320,\"762\":1554829815449931776,\"763\":1554829087671169024,\"764\":1554827387468058624,\"765\":1554825762682769408,\"766\":1554825674224910336,\"767\":1554825642171961344,\"768\":1554825577894330368,\"769\":1554825577231552512,\"770\":1554825410940002304,\"771\":1554825293419778048,\"772\":1554825089337606144,\"773\":1554825025114345472,\"774\":1554824984425480192,\"775\":1554824889399250944,\"776\":1554824875520299008,\"777\":1554824829877989376,\"778\":1554824799146323968,\"779\":1554824748428697600,\"780\":1554824681747664896,\"781\":1554824624193474560,\"782\":1554824399785586688,\"783\":1554824354432552960,\"784\":1554824304205766656,\"785\":1554824240989319168,\"786\":1554823991629451264,\"787\":1554823249082605568,\"788\":1554823137191010304,\"789\":1554822970660360192,\"790\":1554822847855337472,\"791\":1554822673993068544,\"792\":1554821956616146944,\"793\":1554821258285502464,\"794\":1554820786933735424,\"795\":1554820732747558912,\"796\":1554820709485928448,\"797\":1554820531186286592,\"798\":1554820392237248512,\"799\":1554820342190948352,\"800\":1554818157616852992,\"801\":1554816629770444800,\"802\":1554816429769252864,\"803\":1554816276471681024,\"804\":1554815936988856320,\"805\":1554815491369324544,\"806\":1554815003668135936,\"807\":1554814620853993472,\"808\":1554814505036693504,\"809\":1554813907788877824,\"810\":1554813806672596992,\"811\":1554813725508571136,\"812\":1554813586194792448,\"813\":1554813299744800768,\"814\":1554813174087655424,\"815\":1554812936102838272,\"816\":1554812868356349952,\"817\":1554812801448902656,\"818\":1554812726647611392,\"819\":1554812455939092480,\"820\":1554812098168754176,\"821\":1554812049401778176,\"822\":1554811872351866880,\"823\":1554811798313918464,\"824\":1554810881116078080,\"825\":1554810633786466304,\"826\":1554810030259568640,\"827\":1554809537802260480,\"828\":1554807692920766464,\"829\":1554807550247313408,\"830\":1554807534371966976,\"831\":1554806583829446656,\"832\":1554806541835968512,\"833\":1554806450366681088,\"834\":1554806099894747136,\"835\":1554806099471208448,\"836\":1554805150509944832,\"837\":1554804475784740864,\"838\":1554804208410497024,\"839\":1554803817425899520,\"840\":1554801857461207040,\"841\":1554801255620530176,\"842\":1554800801729724416,\"843\":1554800267329159168,\"844\":1554799845730390016,\"845\":1554798804939206656,\"846\":1554798185935261696,\"847\":1554797887225307136,\"848\":1554797655632510976,\"849\":1554796964734189568,\"850\":1554796856193974272,\"851\":1554796586932248576,\"852\":1554796314440916992,\"853\":1554796164574285824,\"854\":1554795312786669568,\"855\":1554794720462766080,\"856\":1554794668562554880,\"857\":1554793938686562304,\"858\":1554793400167272448,\"859\":1554793282881847296,\"860\":1554792947694112768,\"861\":1554792747147706368,\"862\":1554791408111951872,\"863\":1554790964002168832,\"864\":1554790650343718912,\"865\":1554790540369174528,\"866\":1554790368180322304,\"867\":1554790310588317696,\"868\":1554789862812880896,\"869\":1554789690523410432,\"870\":1554789438236069888,\"871\":1554789312625090560,\"872\":1554788988187283456,\"873\":1554788967979126784,\"874\":1554788274752847872,\"875\":1554788088794292224,\"876\":1554787860460494848,\"877\":1554787558718144512,\"878\":1554787465952641024,\"879\":1554787362571419648,\"880\":1554786948564353024,\"881\":1554786103110078464,\"882\":1554785715841646592,\"883\":1554785500401106944,\"884\":1554785109202665472,\"885\":1554784847402598400,\"886\":1554784157557051392,\"887\":1554783877993988096,\"888\":1554783617787875328,\"889\":1554783418755325952,\"890\":1554783305131753472,\"891\":1554782552447139840,\"892\":1554782489037742080,\"893\":1554782100057899008,\"894\":1554782041039945728,\"895\":1554782000061583360,\"896\":1554781623891046400,\"897\":1554781577946742784,\"898\":1554780662858760192,\"899\":1554780535892971520,\"900\":1554780161714917376,\"901\":1554779819296137216,\"902\":1554779705676648448,\"903\":1554778707788795904,\"904\":1554778649164976128,\"905\":1554778433309245440,\"906\":1554778267999240192,\"907\":1554778141675196416,\"908\":1554778138995040256,\"909\":1554778135379562496,\"910\":1554778101862879232,\"911\":1554778051082436608,\"912\":1554777567802040320,\"913\":1554777563842633728,\"914\":1554777432208588800,\"915\":1554777354395951104,\"916\":1554777349111029760,\"917\":1554777235554435072,\"918\":1554776611374989312,\"919\":1554776497801629696,\"920\":1554776004161314816,\"921\":1554775783595544576,\"922\":1554775733179916288,\"923\":1554775658554920960,\"924\":1554775538765529088,\"925\":1554775131767046144,\"926\":1554775098518712320,\"927\":1554774694976536576,\"928\":1554773996087943168,\"929\":1554773735835664384,\"930\":1554773665497202688,\"931\":1554773340077817856,\"932\":1554773028235608064,\"933\":1554772663498711040,\"934\":1554772632880521216,\"935\":1554772467201327104,\"936\":1554772019346022400,\"937\":1554771164572049408,\"938\":1554771123782524928,\"939\":1554770988902109184,\"940\":1554770731585589248,\"941\":1554769934298791936,\"942\":1554769842128969728,\"943\":1554769293211889664,\"944\":1554768633062215680,\"945\":1554768321983422464,\"946\":1554767858600513536,\"947\":1554767417963954176,\"948\":1554766319274393600,\"949\":1554766153855254528,\"950\":1554765853220036608,\"951\":1554765387874590720,\"952\":1554765285294542848,\"953\":1554765082739056640,\"954\":1554764958662942720,\"955\":1554764294016737280,\"956\":1554763861085093888,\"957\":1554763044194058240,\"958\":1554762358064648192,\"959\":1554762305824378880,\"960\":1554762201919012864,\"961\":1554761745159409664,\"962\":1554761554939322368,\"963\":1554761100834521088,\"964\":1554760645769306112,\"965\":1554760110320271360,\"966\":1554760106612367360,\"967\":1554759468705005568,\"968\":1554758991976202240,\"969\":1554758927639781376,\"970\":1554758665240018944,\"971\":1554758462952833024,\"972\":1554758300004237312,\"973\":1554757312325246976,\"974\":1554757121086001152,\"975\":1554756888679555072,\"976\":1554756741191057408,\"977\":1554755756930568192,\"978\":1554755014110969856,\"979\":1554754941398519808,\"980\":1554754395887247360,\"981\":1554753949986525184,\"982\":1554753358573060096,\"983\":1554753222811721728,\"984\":1554752436572667904,\"985\":1554752228992368640,\"986\":1554750902178877440,\"987\":1554750752471584768,\"988\":1554750497139089408,\"989\":1554750398535110656,\"990\":1554750357292650496,\"991\":1554750169228492800,\"992\":1554750035895545856,\"993\":1554749973744521216,\"994\":1554749956875067392,\"995\":1554749484063760384,\"996\":1554749294770413568,\"997\":1554748781551288320,\"998\":1554748203605565440,\"999\":1554748151734624256,\"1000\":1554748090858479616,\"1001\":1554748026547310592,\"1002\":1554747966161920000,\"1003\":1554747896305795072,\"1004\":1554747830568353792,\"1005\":1554747760276127744,\"1006\":1554747547788484608,\"1007\":1554747351927033856,\"1008\":1554747247434366976,\"1009\":1554746410469318656,\"1010\":1554745680635338752,\"1011\":1554745475730968576,\"1012\":1554745332243767296,\"1013\":1554744948796399616,\"1014\":1554744706357112832,\"1015\":1554743578127212544,\"1016\":1554743515757903872,\"1017\":1554743273234829312,\"1018\":1554741633626816512,\"1019\":1554740126550560768,\"1020\":1554739926125760512,\"1021\":1554739517940195328,\"1022\":1554738972546539520,\"1023\":1554738893982932992,\"1024\":1554738550238838784,\"1025\":1554737862293209088,\"1026\":1554737243566362624,\"1027\":1554735966472085504,\"1028\":1554735948960784384,\"1029\":1554735947413176320,\"1030\":1554735759818620928,\"1031\":1554735453118529536,\"1032\":1554735443136192512,\"1033\":1554734810131734528,\"1034\":1554734371969662976,\"1035\":1554734274032590848,\"1036\":1554733314564554752,\"1037\":1554733053494403072,\"1038\":1554732574689443840,\"1039\":1554732329196740608,\"1040\":1554731771115225088,\"1041\":1554730661495410688,\"1042\":1554730211597586432,\"1043\":1554729562080174080,\"1044\":1554729307204947968,\"1045\":1554729093857435648,\"1046\":1554728958880612352,\"1047\":1554727898711576576,\"1048\":1554726841772023808,\"1049\":1554726590654959616,\"1050\":1554726355853627392,\"1051\":1554725439599435776,\"1052\":1554725366044004352,\"1053\":1554724189541744640,\"1054\":1554723970548699136,\"1055\":1554722830654242816,\"1056\":1554722351207616512,\"1057\":1554721500996984832,\"1058\":1554720326709288960,\"1059\":1554719466797293568,\"1060\":1554718940496105472,\"1061\":1554717766523015168,\"1062\":1554717604618575872,\"1063\":1554717574407020544,\"1064\":1554716689337655296,\"1065\":1554716381962293248,\"1066\":1554715101596467200,\"1067\":1554714732828950528,\"1068\":1554714297980395520,\"1069\":1554714059471200256,\"1070\":1554713631694233600,\"1071\":1554712843437723648,\"1072\":1554711896250634240,\"1073\":1554711804013576192,\"1074\":1554711445836816384,\"1075\":1554710920110252032,\"1076\":1554710888313196544,\"1077\":1554710620532084736,\"1078\":1554709244364132352,\"1079\":1554708959176675328,\"1080\":1554708618041298944,\"1081\":1554707960097828864,\"1082\":1554707579426992128,\"1083\":1554707436271026176,\"1084\":1554706442460037120,\"1085\":1554706296670195712,\"1086\":1554706027442241536,\"1087\":1554704243826823168,\"1088\":1554704111563595776,\"1089\":1554703008604102656,\"1090\":1554702333577150464,\"1091\":1554701125781176320,\"1092\":1554701092881108992,\"1093\":1554700773983911936,\"1094\":1554697466905350144,\"1095\":1554696312964218880,\"1096\":1554695248365985792,\"1097\":1554695199330340864,\"1098\":1554695069982228480,\"1099\":1554695001199841280,\"1100\":1554694907486502912,\"1101\":1554694632860274688,\"1102\":1554694569500897280,\"1103\":1554694071809105920,\"1104\":1554693967874244608,\"1105\":1554693495687974912,\"1106\":1554693275319246848,\"1107\":1554693154535784448,\"1108\":1554693052094087168,\"1109\":1554692925602365440,\"1110\":1554692889975947264,\"1111\":1554692857457508352,\"1112\":1554692432574533632,\"1113\":1554690673508581376,\"1114\":1554690307333160960,\"1115\":1554689632960499712,\"1116\":1554689566824620032,\"1117\":1554689495647363072,\"1118\":1554689401086787584,\"1119\":1554689059997597696,\"1120\":1554688904581857280,\"1121\":1554688861569171456,\"1122\":1554688695550504960,\"1123\":1554688562922135552,\"1124\":1554688491207925760,\"1125\":1554688236685082624,\"1126\":1554687233462251520,\"1127\":1554684901747818496,\"1128\":1554684467146792960,\"1129\":1554683698901041152,\"1130\":1554683625207209984,\"1131\":1554683551077273600,\"1132\":1554682464236437504,\"1133\":1554682393843359744,\"1134\":1554680702549086208,\"1135\":1554678544923594752,\"1136\":1554678453177286656,\"1137\":1554678221798400000,\"1138\":1554676028567863296,\"1139\":1554675750741356544,\"1140\":1554675349258371072,\"1141\":1554674844339675136,\"1142\":1554672615503060992,\"1143\":1554665920831832064,\"1144\":1554663850615742464,\"1145\":1554661276697100288,\"1146\":1554657797245222912,\"1147\":1554656391226441728,\"1148\":1554654394930577408,\"1149\":1554652780295495680,\"1150\":1554648838211833856,\"1151\":1554644302789222400,\"1152\":1554642745213558784,\"1153\":1554638440527962112,\"1154\":1554638302266941440,\"1155\":1554637878625542144,\"1156\":1554637068256559104,\"1157\":1554635445933334528,\"1158\":1554630465654505472,\"1159\":1554628198813540352,\"1160\":1554619892044861440,\"1161\":1554619614025375744,\"1162\":1554618074481016832,\"1163\":1554615955405275136,\"1164\":1554614885547393024,\"1165\":1554614174243868672,\"1166\":1554614076109737984,\"1167\":1554612845341540352,\"1168\":1554611268228710400,\"1169\":1554610609047670784,\"1170\":1554609718651506688,\"1171\":1554609029619523584,\"1172\":1554607749148905472,\"1173\":1554606539872288768,\"1174\":1554606340001173504,\"1175\":1554603566140198912,\"1176\":1554602830664802304,\"1177\":1554602151254556672,\"1178\":1554602070724026368,\"1179\":1554601323043377152,\"1180\":1554600627451449344,\"1181\":1554599767337992192,\"1182\":1554599480476975104,\"1183\":1554597692801794048,\"1184\":1554597548131745792,\"1185\":1554597054571225088,\"1186\":1554597018705747968,\"1187\":1554594793111654400,\"1188\":1554593692190752768,\"1189\":1554591385281593344,\"1190\":1554591147208675328,\"1191\":1554590639408484352,\"1192\":1554589306408341504,\"1193\":1554589166352187392,\"1194\":1554589021396824064,\"1195\":1554588484404449280,\"1196\":1554587978223288320,\"1197\":1554587886007320576,\"1198\":1554586355518300160,\"1199\":1554585575214272512,\"1200\":1554585295580004352,\"1201\":1554584412356050944,\"1202\":1554583820158001152,\"1203\":1554583020010901504,\"1204\":1554582994836414464,\"1205\":1554582779278548992,\"1206\":1554582665101180928,\"1207\":1554582530015248384,\"1208\":1554582068595724288,\"1209\":1554581905239969792,\"1210\":1554581653745348608,\"1211\":1554581573659410432,\"1212\":1554581240686297088,\"1213\":1554581013409546240,\"1214\":1554580482276335616,\"1215\":1554579339567661056,\"1216\":1554579142963863552,\"1217\":1554578608420683776,\"1218\":1554578605518249984,\"1219\":1554577906474655744,\"1220\":1554577672927416320,\"1221\":1554577036416618496,\"1222\":1554576778512982016,\"1223\":1554576626133999616,\"1224\":1554576134330896384,\"1225\":1554576016806387712,\"1226\":1554575519135440896,\"1227\":1554575513427091456,\"1228\":1554575508922400768,\"1229\":1554575385966297088,\"1230\":1554575356857819136,\"1231\":1554575319453032448,\"1232\":1554575184077942784,\"1233\":1554575008814583808,\"1234\":1554574892447764480,\"1235\":1554574791742562304,\"1236\":1554574666353754112,\"1237\":1554574534572924928,\"1238\":1554574477953990656,\"1239\":1554574225763090432,\"1240\":1554574083785986048,\"1241\":1554573928336691200,\"1242\":1554573919285288960,\"1243\":1554573819876081664,\"1244\":1554573806513143808,\"1245\":1554573789152813056,\"1246\":1554573719493910528,\"1247\":1554573632428449792,\"1248\":1554573466669662208,\"1249\":1554573380803764224,\"1250\":1554573326240071680,\"1251\":1554572838216114176,\"1252\":1554572799079071744,\"1253\":1554572637136887808,\"1254\":1554572499039526912,\"1255\":1554572423453970432,\"1256\":1554572159581814784,\"1257\":1554571989330710528,\"1258\":1554571875455483904,\"1259\":1554571726410981376,\"1260\":1554571640062763008,\"1261\":1554571502409981952,\"1262\":1554571371363041280,\"1263\":1554571349196242944,\"1264\":1554570941488840704,\"1265\":1554570866075217920,\"1266\":1554570354005360640,\"1267\":1554570096919646208,\"1268\":1554569825044905984,\"1269\":1554568595971215360,\"1270\":1554567302422609920,\"1271\":1554567192582258688,\"1272\":1554567123468443648,\"1273\":1554566822401277952,\"1274\":1554566359635435520,\"1275\":1554566196808269824,\"1276\":1554565885150609408,\"1277\":1554565623275044864,\"1278\":1554565609727397888,\"1279\":1554565491808784384,\"1280\":1554565373692747776,\"1281\":1554565016489279488,\"1282\":1554564794887421952,\"1283\":1554564668982808576,\"1284\":1554564582940844032,\"1285\":1554564046287953920,\"1286\":1554563834324652032,\"1287\":1554563551221760000,\"1288\":1554563249894555648,\"1289\":1554563096756293632,\"1290\":1554560269271048192,\"1291\":1554560172017811456,\"1292\":1554560151427993600,\"1293\":1554560080577794048,\"1294\":1554559331294756864,\"1295\":1554559036997226496,\"1296\":1554559032274345984,\"1297\":1554557971069374464,\"1298\":1554557599009234944,\"1299\":1554556886346776576,\"1300\":1554556555688910848,\"1301\":1554556148744916992,\"1302\":1554555960462565376,\"1303\":1554555838387220480,\"1304\":1554555643092140032,\"1305\":1554555495012343808,\"1306\":1554554904034811904,\"1307\":1554554849752223744,\"1308\":1554554648719245312,\"1309\":1554554644755632128,\"1310\":1554553914145529856,\"1311\":1554553577816920064,\"1312\":1554553518006075392,\"1313\":1554553478462279680,\"1314\":1554553249323253760,\"1315\":1554553221947002880,\"1316\":1554553045366853632,\"1317\":1554552991683936256,\"1318\":1554552848750346240,\"1319\":1554552644525604864,\"1320\":1554552365029724160,\"1321\":1554552307462938624,\"1322\":1554551906302820352,\"1323\":1554551329720340480,\"1324\":1554551325458849792,\"1325\":1554550925813075968,\"1326\":1554550700868247552,\"1327\":1554550433070415872,\"1328\":1554550345572958208,\"1329\":1554549729916223488,\"1330\":1554549643740061696,\"1331\":1554549440316317696,\"1332\":1554549359580160000,\"1333\":1554548681818488832,\"1334\":1554547421912485888,\"1335\":1554547350294740992,\"1336\":1554546962938171392,\"1337\":1554546282605207552,\"1338\":1554545801929555968,\"1339\":1554545745671647232,\"1340\":1554545706051969024,\"1341\":1554545190920245248,\"1342\":1554544689168224256,\"1343\":1554544560809951232,\"1344\":1554544542657003520,\"1345\":1554544471437606912,\"1346\":1554544243770900480,\"1347\":1554543995967229952,\"1348\":1554543708581797888,\"1349\":1554543237129535488,\"1350\":1554543236122804224,\"1351\":1554542950096543744,\"1352\":1554542909042696192,\"1353\":1554542637566332928,\"1354\":1554542183092555776,\"1355\":1554542089882435584,\"1356\":1554541886446178304,\"1357\":1554541029298212864,\"1358\":1554540643040591872,\"1359\":1554540517962178560,\"1360\":1554540287493562368,\"1361\":1554540176826945536,\"1362\":1554540087072804864,\"1363\":1554540044010110976,\"1364\":1554539314142388224,\"1365\":1554539214624153600,\"1366\":1554539206222946304,\"1367\":1554539165949349888,\"1368\":1554539112664817664,\"1369\":1554539059573293056,\"1370\":1554539019513495552,\"1371\":1554539007748579328,\"1372\":1554538894305234944,\"1373\":1554538875758022656,\"1374\":1554538800491233280,\"1375\":1554538780253634560,\"1376\":1554538774037667840,\"1377\":1554538758644580352,\"1378\":1554538727535435776,\"1379\":1554538715862765568,\"1380\":1554538696090714112,\"1381\":1554538271279128576,\"1382\":1554537633778483200,\"1383\":1554536944335552512,\"1384\":1554536733772984320,\"1385\":1554536249469321216,\"1386\":1554536017058840576,\"1387\":1554535866445402112,\"1388\":1554535404321251328,\"1389\":1554534886828122112,\"1390\":1554534825268215808,\"1391\":1554534379522871296,\"1392\":1554534153915359232,\"1393\":1554533761794072576,\"1394\":1554533131067494400,\"1395\":1554532902226087936,\"1396\":1554532762673111040,\"1397\":1554532268265377792,\"1398\":1554532226620178432,\"1399\":1554530216835534848,\"1400\":1554529005164023808,\"1401\":1554528762456379392,\"1402\":1554528652737536000,\"1403\":1554528594168348672,\"1404\":1554528478372007936,\"1405\":1554527905132253184,\"1406\":1554527789856051200,\"1407\":1554527634888982528,\"1408\":1554526464267227136,\"1409\":1554525020025720832,\"1410\":1554524966569271296,\"1411\":1554524532714635264,\"1412\":1554524433955569664,\"1413\":1554523740372959232,\"1414\":1554523595962974208,\"1415\":1554523496755216384,\"1416\":1554523092919148544,\"1417\":1554522306642202624,\"1418\":1554521869461618688,\"1419\":1554521604608196608,\"1420\":1554521163749023744,\"1421\":1554520500147200000,\"1422\":1554520489074327552,\"1423\":1554520326926655488,\"1424\":1554519504427909120,\"1425\":1554519449943818240,\"1426\":1554519410077061120,\"1427\":1554519341718450176,\"1428\":1554519169512660992,\"1429\":1554518736563994624,\"1430\":1554518265938026496,\"1431\":1554517903122243584,\"1432\":1554517635156656128,\"1433\":1554517312392368128,\"1434\":1554517160407572480,\"1435\":1554516660421365760,\"1436\":1554516659997736960,\"1437\":1554516323786526720,\"1438\":1554516046807179264,\"1439\":1554515819991801856,\"1440\":1554515738001563648,\"1441\":1554515408891305984,\"1442\":1554515092099796992,\"1443\":1554514940857401344,\"1444\":1554514586954596352,\"1445\":1554514249975828480,\"1446\":1554513509953708032,\"1447\":1554513092356227072,\"1448\":1554512895039373312,\"1449\":1554512107630116864,\"1450\":1554511972942626816,\"1451\":1554511937723146240,\"1452\":1554511554326179840,\"1453\":1554510730334011392,\"1454\":1554509836968427520,\"1455\":1554509776431742976,\"1456\":1554509732836171776,\"1457\":1554509479911346176,\"1458\":1554508531159760896,\"1459\":1554508215945142272,\"1460\":1554507686431150080,\"1461\":1554507669574131712,\"1462\":1554507374265786368,\"1463\":1554506952306204672,\"1464\":1554506299714437120,\"1465\":1554506265904160768,\"1466\":1554505864144363520,\"1467\":1554505425168568320,\"1468\":1554505114249052160,\"1469\":1554504829770219520,\"1470\":1554504025030201344,\"1471\":1554503024973938688,\"1472\":1554502879318315008,\"1473\":1554502600539750400,\"1474\":1554502403889807360,\"1475\":1554502371946172416,\"1476\":1554502196384993280,\"1477\":1554501332723179520,\"1478\":1554501137616740352,\"1479\":1554501006838431744,\"1480\":1554500983060893696,\"1481\":1554500874185089024,\"1482\":1554500278094905344,\"1483\":1554500207177596928,\"1484\":1554500163846262784,\"1485\":1554499852234637312,\"1486\":1554498498958987264,\"1487\":1554498360329003008,\"1488\":1554497190243864576,\"1489\":1554497133776175104,\"1490\":1554496920214769664,\"1491\":1554495902836031488,\"1492\":1554495686971953152,\"1493\":1554495320146337792,\"1494\":1554495310986203136,\"1495\":1554494846739615744,\"1496\":1554494703873232896,\"1497\":1554494190842691584,\"1498\":1554493668454719488,\"1499\":1554493620186669056,\"1500\":1554492944031399936,\"1501\":1554492463200571392,\"1502\":1554492105506304000,\"1503\":1554491850052014080,\"1504\":1554491572502372352,\"1505\":1554491545810014208,\"1506\":1554491467485298688,\"1507\":1554491022822064128,\"1508\":1554490944380354560,\"1509\":1554490738594938880,\"1510\":1554490681925713920,\"1511\":1554490676796354560,\"1512\":1554490652188082176,\"1513\":1554490500526350336,\"1514\":1554490480792068096,\"1515\":1554490433421590528,\"1516\":1554490355508191232,\"1517\":1554490086099718144,\"1518\":1554490055917436928,\"1519\":1554489348749463552,\"1520\":1554489145971572736,\"1521\":1554489012190150656,\"1522\":1554488888789536768,\"1523\":1554488563089162240,\"1524\":1554488372730683392,\"1525\":1554487803244847104,\"1526\":1554487719132282880,\"1527\":1554487524592164864,\"1528\":1554487480501559296,\"1529\":1554487035519442944,\"1530\":1554486456894242816,\"1531\":1554486328292741120,\"1532\":1554486121865912320,\"1533\":1554485769305202688,\"1534\":1554485299530854400,\"1535\":1554485128256229376,\"1536\":1554484902371926016,\"1537\":1554484758859894784,\"1538\":1554484654056640512,\"1539\":1554484632254545920,\"1540\":1554484413584609280,\"1541\":1554484350129156096,\"1542\":1554484275310989312,\"1543\":1554484152132673536,\"1544\":1554484110638436352,\"1545\":1554484017214492672,\"1546\":1554483923031318528,\"1547\":1554483917431996416,\"1548\":1554483430116790272,\"1549\":1554483391562661888,\"1550\":1554483373045063680,\"1551\":1554483355172933632,\"1552\":1554482789952925696,\"1553\":1554482608142254080,\"1554\":1554481978132635648,\"1555\":1554481970180227072,\"1556\":1554481892346445824,\"1557\":1554481852064440320,\"1558\":1554481825128521728,\"1559\":1554481716479381504,\"1560\":1554481678243995648,\"1561\":1554481393891172352,\"1562\":1554481327583666176,\"1563\":1554481216363061248,\"1564\":1554481183542878208,\"1565\":1554481091553157120,\"1566\":1554481031083859968,\"1567\":1554480953665495040,\"1568\":1554480912464859136,\"1569\":1554480850598764544,\"1570\":1554480671648792576,\"1571\":1554480667806863360,\"1572\":1554480471052017664,\"1573\":1554480005857832960,\"1574\":1554479982822543360,\"1575\":1554479982432362496,\"1576\":1554479863389626368,\"1577\":1554479793499955200,\"1578\":1554479786671702016,\"1579\":1554479761736572928,\"1580\":1554479329631178752,\"1581\":1554479079415496704,\"1582\":1554478933676277760,\"1583\":1554478802495066112,\"1584\":1554478712212656128,\"1585\":1554478454774665216,\"1586\":1554478363896684544,\"1587\":1554478223240601600,\"1588\":1554478124385148928,\"1589\":1554478111659622400,\"1590\":1554478083818008576,\"1591\":1554477888380063744,\"1592\":1554477740459544576,\"1593\":1554477695626612736,\"1594\":1554477546430992384,\"1595\":1554477248228507648,\"1596\":1554477230218248192,\"1597\":1554477224597897216,\"1598\":1554477066317627392,\"1599\":1554476578226438144,\"1600\":1554476498580656128,\"1601\":1554476483275624448,\"1602\":1554476209135820800,\"1603\":1554475770491330560,\"1604\":1554475757921259520,\"1605\":1554475085347655680,\"1606\":1554474982901784576,\"1607\":1554474945828519936,\"1608\":1554474820515110912,\"1609\":1554474792052555776,\"1610\":1554474529778548736,\"1611\":1554474461608419328,\"1612\":1554474310529597440,\"1613\":1554474287431823360,\"1614\":1554473870941618176,\"1615\":1554473651499683840,\"1616\":1554473298892935168,\"1617\":1554473008533757952,\"1618\":1554472955907825664,\"1619\":1554472637530869760,\"1620\":1554472187469467648,\"1621\":1554472090736230400,\"1622\":1554471940013887488,\"1623\":1554471561867952128,\"1624\":1554471394880225280,\"1625\":1554471292803452928,\"1626\":1554471218316705792,\"1627\":1554471104647151616,\"1628\":1554470911432179712,\"1629\":1554470884785721344,\"1630\":1554470286439124992,\"1631\":1554469984067362816,\"1632\":1554469920737476608,\"1633\":1554469774306189312,\"1634\":1554469690512220160,\"1635\":1554469545678618624,\"1636\":1554469468939911168,\"1637\":1554469421036576768,\"1638\":1554469118824300544,\"1639\":1554469047181475840,\"1640\":1554468337685512192,\"1641\":1554468130847879168,\"1642\":1554467930699603968,\"1643\":1554467746057953280,\"1644\":1554467209052930048,\"1645\":1554466482536718336,\"1646\":1554466225077555200,\"1647\":1554466213534769152,\"1648\":1554465914535514112,\"1649\":1554465726966419456,\"1650\":1554465540617506816,\"1651\":1554465166091231232,\"1652\":1554464494855798784,\"1653\":1554464354522828800,\"1654\":1554464100889071616,\"1655\":1554463907498139648,\"1656\":1554463462511853568,\"1657\":1554463390118121472,\"1658\":1554463372409700352,\"1659\":1554463159053950976,\"1660\":1554462671868674048,\"1661\":1554462452871569408,\"1662\":1554462112042610688,\"1663\":1554461590401032192,\"1664\":1554461575834107904,\"1665\":1554461394799837184,\"1666\":1554461094823034880,\"1667\":1554460717239226368,\"1668\":1554460476540653568,\"1669\":1554459706919649280,\"1670\":1554459460155867136,\"1671\":1554459431022333952,\"1672\":1554459353293492224,\"1673\":1554459155066413056,\"1674\":1554459008093806592,\"1675\":1554458899335479296,\"1676\":1554458697904029696,\"1677\":1554458420522123264,\"1678\":1554458365471907840,\"1679\":1554457473960103936,\"1680\":1554457091351486464,\"1681\":1554456457743339520,\"1682\":1554456169065992192,\"1683\":1554454961697820672,\"1684\":1554454897709690880,\"1685\":1554454651621314560,\"1686\":1554454447773949952,\"1687\":1554454310074957824,\"1688\":1554454222472904704,\"1689\":1554454089001582592,\"1690\":1554453954469191680,\"1691\":1554453817449750528,\"1692\":1554453682267250688,\"1693\":1554453598989426688,\"1694\":1554453538280988672,\"1695\":1554453161360125952,\"1696\":1554453118456369152,\"1697\":1554452967595692032,\"1698\":1554452864642289664,\"1699\":1554452801647935488,\"1700\":1554452602141786112,\"1701\":1554452497489694720,\"1702\":1554452339570114560,\"1703\":1554452270414274560,\"1704\":1554451611594149888,\"1705\":1554451354311180288,\"1706\":1554451066577641472,\"1707\":1554450631997407232,\"1708\":1554450492344123392,\"1709\":1554450355085516800,\"1710\":1554449748328865792,\"1711\":1554449602358689792,\"1712\":1554449420179374080,\"1713\":1554449229145415680,\"1714\":1554449149210279936,\"1715\":1554448582018826240,\"1716\":1554448129986011136,\"1717\":1554447036694798336,\"1718\":1554445847362150400,\"1719\":1554445335958659072,\"1720\":1554444641898057728,\"1721\":1554444221481996288,\"1722\":1554443623445700608,\"1723\":1554443572098760704,\"1724\":1554443241701150720,\"1725\":1554442180621901824,\"1726\":1554441999188496384,\"1727\":1554441266129420288,\"1728\":1554441136730767360,\"1729\":1554439797590355968,\"1730\":1554439645601185792,\"1731\":1554439093714845696,\"1732\":1554438884162822144,\"1733\":1554438153251000320,\"1734\":1554437713725882368,\"1735\":1554437438944288768,\"1736\":1554437404425166848,\"1737\":1554437187680497664,\"1738\":1554436730748534784,\"1739\":1554436054303870976,\"1740\":1554435994178420736,\"1741\":1554435793162223616,\"1742\":1554435766381846528,\"1743\":1554435164159238144,\"1744\":1554435128239312896,\"1745\":1554434581587267584,\"1746\":1554434190367924224,\"1747\":1554434151935262720,\"1748\":1554433775152828416,\"1749\":1554432428823162880,\"1750\":1554432018653519872,\"1751\":1554431780777754624,\"1752\":1554431620068802560,\"1753\":1554431379676487680,\"1754\":1554430976977149952,\"1755\":1554430723054096384,\"1756\":1554430707279208448,\"1757\":1554430501720563712,\"1758\":1554430230638563328,\"1759\":1554429585126989824,\"1760\":1554428980417241088,\"1761\":1554428055309156352,\"1762\":1554427291438313472,\"1763\":1554426733033832448,\"1764\":1554425361986977792,\"1765\":1554424929483132928,\"1766\":1554424830598021120,\"1767\":1554424546412924928,\"1768\":1554423799193665536,\"1769\":1554423362092683264,\"1770\":1554423164620492800,\"1771\":1554422937109024768,\"1772\":1554422065523990528,\"1773\":1554420594107727872,\"1774\":1554420391254589440,\"1775\":1554420378725916672,\"1776\":1554419662112563200,\"1777\":1554419505178312704,\"1778\":1554419422303240192,\"1779\":1554419373040979968,\"1780\":1554419319517372416,\"1781\":1554418424105037824,\"1782\":1554417894028607488,\"1783\":1554417810398654464,\"1784\":1554417348752429056,\"1785\":1554417232633012224,\"1786\":1554415293648224256,\"1787\":1554414150473977856,\"1788\":1554413814560563200,\"1789\":1554412993764524032,\"1790\":1554412793348194304,\"1791\":1554412471301046272,\"1792\":1554412198910468096,\"1793\":1554411253086519296,\"1794\":1554410274458947584,\"1795\":1554410061333729280,\"1796\":1554409933545816064,\"1797\":1554408865386610688,\"1798\":1554408047849644032,\"1799\":1554407698711678976,\"1800\":1554407529739964416,\"1801\":1554407210029031424,\"1802\":1554406477242195968,\"1803\":1554406081807503360,\"1804\":1554405551567667200,\"1805\":1554404970153263104,\"1806\":1554404773209821184,\"1807\":1554404543022206976,\"1808\":1554403907895496704,\"1809\":1554403258466172928,\"1810\":1554403204703703040,\"1811\":1554400016898445312,\"1812\":1554399955682557952,\"1813\":1554398553136562176,\"1814\":1554397534994501632,\"1815\":1554397130789457920,\"1816\":1554396643776151552,\"1817\":1554395441390915584,\"1818\":1554391872516362240,\"1819\":1554390539612684288,\"1820\":1554390099101712384,\"1821\":1554388980841463808,\"1822\":1554385350532939776,\"1823\":1554378933935771648,\"1824\":1554367492620959744,\"1825\":1554366504594030592,\"1826\":1554349502894596096,\"1827\":1554339795895488512,\"1828\":1554335953795293184,\"1829\":1554332241710534656,\"1830\":1554330444191207424,\"1831\":1554329878681604096,\"1832\":1554323533551095808,\"1833\":1554321183327375360,\"1834\":1554318274493825024,\"1835\":1554310286135513088,\"1836\":1554310101896466432,\"1837\":1554308386270986240,\"1838\":1554297604602793984,\"1839\":1554297140318445568,\"1840\":1554287425572290560,\"1841\":1554278034739544064,\"1842\":1554277477400330240,\"1843\":1554275934634737664,\"1844\":1554264989053091840,\"1845\":1554263646557147136,\"1846\":1554259745455865856,\"1847\":1554259730595561472,\"1848\":1554255179482107904,\"1849\":1554253705226162176,\"1850\":1554252770030637056,\"1851\":1554249904695959552,\"1852\":1554247555311099904,\"1853\":1554247048693784576,\"1854\":1554239689049120768,\"1855\":1554236858175037440,\"1856\":1554235564337012736,\"1857\":1554235561086525440,\"1858\":1554235358044372992,\"1859\":1554234529786765312,\"1860\":1554234023555338240,\"1861\":1554233611955720192,\"1862\":1554233553948491776,\"1863\":1554233435941634048,\"1864\":1554232665645191168,\"1865\":1554231575642079232,\"1866\":1554231340572311552,\"1867\":1554227827758833664,\"1868\":1554226787793702912,\"1869\":1554226471153065984,\"1870\":1554225305946054656,\"1871\":1554220296223211520,\"1872\":1554220055071711232,\"1873\":1554217980183076864,\"1874\":1554217804924174336,\"1875\":1554214912381050880,\"1876\":1554211256982245376,\"1877\":1554211137880834048,\"1878\":1554209400348450816,\"1879\":1554207064611856384,\"1880\":1554206276476870656,\"1881\":1554204666476609536,\"1882\":1554203858104197120,\"1883\":1554198465030258688,\"1884\":1554196703078653952,\"1885\":1554196630576025600,\"1886\":1554196542646620160,\"1887\":1554193831683309568,\"1888\":1554193318900277248,\"1889\":1554191726797012992,\"1890\":1554190915283066880,\"1891\":1554190277384015872,\"1892\":1554189363269050368,\"1893\":1554187293942075392,\"1894\":1554186459778801664,\"1895\":1554185285428191232,\"1896\":1554184386718965760,\"1897\":1554183475233693696,\"1898\":1554182790769516544,\"1899\":1554181881100472320,\"1900\":1554181569841184768,\"1901\":1554180854993272832,\"1902\":1554180507532988416,\"1903\":1554177218670108672,\"1904\":1554175923339026432,\"1905\":1554175663430684672,\"1906\":1554175582669312000,\"1907\":1554173437576372224,\"1908\":1554173065260564480,\"1909\":1554171286401826816,\"1910\":1554171172924825600,\"1911\":1554169718545780736,\"1912\":1554169225371127808,\"1913\":1554168957476773888,\"1914\":1554168898118975488,\"1915\":1554166628996333568,\"1916\":1554166420669448192,\"1917\":1554165799585185792,\"1918\":1554165799518076928,\"1919\":1554165782267002880,\"1920\":1554165608027152384,\"1921\":1554165396932001792,\"1922\":1554165185652424704,\"1923\":1554165103947399168,\"1924\":1554163959963521024,\"1925\":1554163745198333952,\"1926\":1554162987136651264,\"1927\":1554162910569631744,\"1928\":1554162571162394624,\"1929\":1554162546009149440,\"1930\":1554162476425662464,\"1931\":1554162451985272832,\"1932\":1554162413368446976,\"1933\":1554162380900376576,\"1934\":1554162363049414656,\"1935\":1554162318321352704,\"1936\":1554162291150659584,\"1937\":1554162238826610688,\"1938\":1554162172825051136,\"1939\":1554162087911456768,\"1940\":1554162076708372480,\"1941\":1554161832084099072,\"1942\":1554161682028658688,\"1943\":1554160417123061760,\"1944\":1554159924636155904,\"1945\":1554159740980191232,\"1946\":1554159708000456704,\"1947\":1554159685770559488,\"1948\":1554159615314649088,\"1949\":1554159547547373568,\"1950\":1554159424687800320,\"1951\":1554159199227101184,\"1952\":1554159079597260800,\"1953\":1554158622007037952,\"1954\":1554158482215018496,\"1955\":1554158338165858304,\"1956\":1554158326921023488,\"1957\":1554158241143209984,\"1958\":1554158163796152320,\"1959\":1554157968475787264,\"1960\":1554157592150155264,\"1961\":1554157118214873088,\"1962\":1554156509096968192,\"1963\":1554156394990952448,\"1964\":1554156337164161024,\"1965\":1554156061208330240,\"1966\":1554155973849321472,\"1967\":1554155916219392000,\"1968\":1554155781121052672,\"1969\":1554155589260959744,\"1970\":1554155547875807232,\"1971\":1554155510454259712,\"1972\":1554155251414044672,\"1973\":1554155210708320256,\"1974\":1554155078939967488,\"1975\":1554154995360190464,\"1976\":1554154725465067520,\"1977\":1554154616530640896,\"1978\":1554154582548381696,\"1979\":1554154525354778624,\"1980\":1554154484095500288,\"1981\":1554154417359822848,\"1982\":1554154299894235136,\"1983\":1554154217631371264,\"1984\":1554153966249906176,\"1985\":1554153802437201920,\"1986\":1554153609151004672,\"1987\":1554153551542292480,\"1988\":1554153487897878528,\"1989\":1554153416124940288,\"1990\":1554153399435812864,\"1991\":1554153146733166592,\"1992\":1554153105998192640,\"1993\":1554153037572280320,\"1994\":1554152982660485120,\"1995\":1554152929128550400,\"1996\":1554152378248708096,\"1997\":1554152330882326528,\"1998\":1554151948420628480,\"1999\":1554151701061550080,\"2000\":1554151637190680576,\"2001\":1554151508459098112,\"2002\":1554151415202910208,\"2003\":1554151360488247296,\"2004\":1554151220746534912,\"2005\":1554151103260151808,\"2006\":1554151009047482368,\"2007\":1554150962050342912,\"2008\":1554150814318460928,\"2009\":1554150809616654336,\"2010\":1554150682122502144,\"2011\":1554150651785089024,\"2012\":1554150506620223488,\"2013\":1554150395164999680,\"2014\":1554150289522958336,\"2015\":1554150162666225664,\"2016\":1554149452386078720,\"2017\":1554148011684630528,\"2018\":1554147209268035584,\"2019\":1554146871735631872,\"2020\":1554145533769424896,\"2021\":1554145514744053760,\"2022\":1554145439221485568,\"2023\":1554145392002056192,\"2024\":1554145312154992640,\"2025\":1554145045518893056,\"2026\":1554145005391978496,\"2027\":1554144978326228992,\"2028\":1554144842988519424,\"2029\":1554144793172873216,\"2030\":1554144640634429440,\"2031\":1554144602579509248,\"2032\":1554144408303415296,\"2033\":1554144321040941056,\"2034\":1554144124483280896,\"2035\":1554144053943468032,\"2036\":1554144003691614208,\"2037\":1554143954660114432,\"2038\":1554143756340830208,\"2039\":1554143677005660160,\"2040\":1554143557019205632,\"2041\":1554143457693810688,\"2042\":1554143406988853248,\"2043\":1554143335866056704,\"2044\":1554143282321674240,\"2045\":1554143252734943232,\"2046\":1554143187475828736,\"2047\":1554143040394108928,\"2048\":1554142791177064448,\"2049\":1554142693298786304,\"2050\":1554142677066825728,\"2051\":1554142584922071040,\"2052\":1554141965847068672,\"2053\":1554141190374785024,\"2054\":1554140559530463232,\"2055\":1554140500617224192,\"2056\":1554140260837208064,\"2057\":1554139221434273792,\"2058\":1554135854083457024,\"2059\":1554134928413134848,\"2060\":1554127798662561792,\"2061\":1554127208016379904,\"2062\":1554126833754554368,\"2063\":1554126795406016512,\"2064\":1554124771629174784,\"2065\":1554123369699852288,\"2066\":1554122616927125504,\"2067\":1554120707235250176,\"2068\":1554120671277588480,\"2069\":1554120649664348160,\"2070\":1554120646363435008,\"2071\":1554119100007333888,\"2072\":1554117969579581440,\"2073\":1554117517681074176,\"2074\":1554116335331934208,\"2075\":1554114627029581824,\"2076\":1554113437529251840,\"2077\":1554112929057968128,\"2078\":1554111942238904320,\"2079\":1554103194170626048,\"2080\":1554100962473680896,\"2081\":1554099630031470592,\"2082\":1554099110021668864,\"2083\":1554099088576110592,\"2084\":1554098602829570048,\"2085\":1554097572062662656,\"2086\":1554096943260999680,\"2087\":1554096718039465984,\"2088\":1554096254057172992,\"2089\":1554095786073460736,\"2090\":1554094882452553728,\"2091\":1554094474044870656,\"2092\":1554094425059590144,\"2093\":1554094314493468672,\"2094\":1554093149756297216,\"2095\":1554091249518477312,\"2096\":1554091162939662336,\"2097\":1554091040545640448,\"2098\":1554091010006781952,\"2099\":1554090954361036800,\"2100\":1554088256739893248,\"2101\":1554087607235215360,\"2102\":1554087205588566016,\"2103\":1554086710476259328,\"2104\":1554086683938889728,\"2105\":1554086408649936896,\"2106\":1554086108291600384,\"2107\":1554085998321192960,\"2108\":1554085812974899200,\"2109\":1554085432538841088,\"2110\":1554085399433302016,\"2111\":1554085368139583488,\"2112\":1554085268386447360,\"2113\":1554085193945849856,\"2114\":1554085067063967744,\"2115\":1554084711147995136,\"2116\":1554084536727863296,\"2117\":1554084153997524992,\"2118\":1554083555277422592,\"2119\":1554083275743891456,\"2120\":1554079628473602048,\"2121\":1554079606923223040,\"2122\":1554076106587774976,\"2123\":1554075993832390656,\"2124\":1554075783550980096,\"2125\":1554075720112037888,\"2126\":1554075553191399424,\"2127\":1554075409389600768,\"2128\":1554075239486742528,\"2129\":1554074968434114560,\"2130\":1554074794538291200,\"2131\":1554074660807008256,\"2132\":1554074549607698432,\"2133\":1554074369344905216,\"2134\":1554074168936865792,\"2135\":1554074106810736640,\"2136\":1554073942297657344,\"2137\":1554073891424927744,\"2138\":1554073700638547968,\"2139\":1554073658590695424,\"2140\":1554073616253440000,\"2141\":1554073366595866624,\"2142\":1554073161267830784,\"2143\":1554073128036442112,\"2144\":1554073092602855424,\"2145\":1554073033735913472,\"2146\":1554072974986199040,\"2147\":1554072839904526336,\"2148\":1554072806933102592,\"2149\":1554072751568306176,\"2150\":1554072695142338560,\"2151\":1554071866947637248,\"2152\":1554071831103119360,\"2153\":1554071565159075840,\"2154\":1554071339392278528,\"2155\":1554071171108376576,\"2156\":1554071096693071872,\"2157\":1554069768092762112,\"2158\":1554069751105814528,\"2159\":1554069731795140608,\"2160\":1554069702963564544,\"2161\":1554069681429954560,\"2162\":1554069641496076288,\"2163\":1554069516224716800,\"2164\":1554069490706665472,\"2165\":1554069468984365056,\"2166\":1554069428022788096,\"2167\":1554069410045992960,\"2168\":1554069365032632320,\"2169\":1554069255288758272,\"2170\":1554069202520227840,\"2171\":1554069170899324928,\"2172\":1554069153807740928,\"2173\":1554069098438529024,\"2174\":1554069017303867392,\"2175\":1554068983141351424,\"2176\":1554068959913295872,\"2177\":1554068903223037952,\"2178\":1554068589812060160,\"2179\":1554066948257976320,\"2180\":1554066803277570048,\"2181\":1554066624776478720,\"2182\":1554066466076606464,\"2183\":1554066292814004224,\"2184\":1554066258135482368,\"2185\":1554066223343845376,\"2186\":1554065933974622208,\"2187\":1554065760007475200,\"2188\":1554065684287705088,\"2189\":1554065578704486400,\"2190\":1554065475990167552,\"2191\":1554064803391479808,\"2192\":1554064741911363584,\"2193\":1554064707400744960,\"2194\":1554061552902443008,\"2195\":1554061523215126528,\"2196\":1554061284441735168,\"2197\":1554061253802426368,\"2198\":1554061215067930624,\"2199\":1554060587981836288,\"2200\":1554060523473346560,\"2201\":1554060498605428736,\"2202\":1554060475305951232,\"2203\":1554060418125074432,\"2204\":1554059972773908480,\"2205\":1554059893845417984,\"2206\":1554059818243088384,\"2207\":1554059792641134592,\"2208\":1554059758113624064,\"2209\":1554059711552577536,\"2210\":1554059607689011200,\"2211\":1554059575447506944,\"2212\":1554059557365858304,\"2213\":1554059539787423744,\"2214\":1554059477044928512,\"2215\":1554059421889724416,\"2216\":1554056477404438528,\"2217\":1554050986079043584,\"2218\":1554050171725647872,\"2219\":1554048149836242944,\"2220\":1554046306125025280,\"2221\":1554044577601961984,\"2222\":1554044064462413824,\"2223\":1554043678859186176,\"2224\":1554043432997371904,\"2225\":1554043206584733696,\"2226\":1554040492173791232,\"2227\":1554037139071025152,\"2228\":1554036352378888192,\"2229\":1554033731681263616,\"2230\":1554032902287007744,\"2231\":1554030867332431872,\"2232\":1554030670829199360,\"2233\":1554029474986991616,\"2234\":1554029296246788096,\"2235\":1554027348588216320,\"2236\":1554026517906083840,\"2237\":1554022939816869888,\"2238\":1554013652801421312,\"2239\":1554007537032257536,\"2240\":1554007480312762368,\"2241\":1554007448150839296,\"2242\":1554007063314980864,\"2243\":1554006854887522304,\"2244\":1554006608274984960,\"2245\":1553999884700745728,\"2246\":1553999585055571968,\"2247\":1553999277222989824,\"2248\":1553999248043216896,\"2249\":1553999231727374336,\"2250\":1553999205986869248,\"2251\":1553999104182820864,\"2252\":1553998188150915072,\"2253\":1553998136875573248,\"2254\":1553998092579512320,\"2255\":1553998057670430720,\"2256\":1553997060524974080,\"2257\":1553996991767748608,\"2258\":1553991949765513216,\"2259\":1553990303949983744,\"2260\":1553989969529692160,\"2261\":1553987312983351296,\"2262\":1553987304494178304,\"2263\":1553985391123906560,\"2264\":1553982415793754112,\"2265\":1553981422863634432,\"2266\":1553980672951422976,\"2267\":1553980550456778752,\"2268\":1553952736131121152,\"2269\":1553952667315146752,\"2270\":1553951963691319296,\"2271\":1553951723777040384,\"2272\":1553951698720276480,\"2273\":1553951658769620992,\"2274\":1553951402447491072,\"2275\":1553950600894812160,\"2276\":1553943761692008448,\"2277\":1553942498871054336,\"2278\":1553937056858005504,\"2279\":1553937024037576704,\"2280\":1553937005091995648,\"2281\":1553936954030432256,\"2282\":1553936925572141056,\"2283\":1553936884853870592,\"2284\":1553936866772238336,\"2285\":1553910507551293440,\"2286\":1553910414551007232,\"2287\":1553910347039490048,\"2288\":1553910134157484032,\"2289\":1553909881194905600,\"2290\":1553909223918112768,\"2291\":1553848334531457024,\"2292\":1553830981844406272,\"2293\":1553815505366032384,\"2294\":1553788759413428224,\"2295\":1553782543664590848,\"2296\":1553770279918358528,\"2297\":1553752107890663424,\"2298\":1553749966664916992,\"2299\":1553749106207739904,\"2300\":1553748631311761408,\"2301\":1553748569122816000,\"2302\":1553748544615550976,\"2303\":1553747889687609344,\"2304\":1553746043455635456,\"2305\":1553743581202063360,\"2306\":1553739108215885824,\"2307\":1553737066978189312,\"2308\":1553736217761648640,\"2309\":1553731700131336192,\"2310\":1553731018003185664,\"2311\":1553729735066370048,\"2312\":1553729147326930944,\"2313\":1553726741201518592,\"2314\":1553720615332454400,\"2315\":1553720220753215488,\"2316\":1553717865894780928,\"2317\":1553717350351896576,\"2318\":1553717013650063360,\"2319\":1553716228899880960,\"2320\":1553715895171686400,\"2321\":1553715524625960960,\"2322\":1553715104738414592,\"2323\":1553714076899053568,\"2324\":1553713648203403264,\"2325\":1553713272943165440,\"2326\":1553712403652775936,\"2327\":1553711639521812480,\"2328\":1553710607052029952,\"2329\":1553708230559371264,\"2330\":1553705315069313024,\"2331\":1553702415223881728,\"2332\":1553700842909335552,\"2333\":1553700746067165184,\"2334\":1553697740307238912,\"2335\":1553696834677268480,\"2336\":1553694550820065280,\"2337\":1553693823787728896,\"2338\":1553693713779630080,\"2339\":1553693677083660288,\"2340\":1553692837576904704,\"2341\":1553691378995142656,\"2342\":1553689135201849344,\"2343\":1553689097427996672,\"2344\":1553689061503664128,\"2345\":1553688209787420672,\"2346\":1553688061355200512,\"2347\":1553687801325142016,\"2348\":1553687699017666560,\"2349\":1553687653085749248,\"2350\":1553687498500571136,\"2351\":1553687400823545856,\"2352\":1553687259580432384,\"2353\":1553687223261954048,\"2354\":1553685954757533696,\"2355\":1553685867511816192,\"2356\":1553685709936119808,\"2357\":1553685195752198144,\"2358\":1553683829377957888,\"2359\":1553683040357982208,\"2360\":1553682457970593792,\"2361\":1553681233913298944,\"2362\":1553681037603278848,\"2363\":1553679287097638912,\"2364\":1553679283079585792,\"2365\":1553677470389469184,\"2366\":1553677361119379456,\"2367\":1553677120257277952,\"2368\":1553676823921311744,\"2369\":1553675484914917376,\"2370\":1553674549207748608,\"2371\":1553672509446397952,\"2372\":1553672054062342144,\"2373\":1553671116941672448,\"2374\":1553670803262160896,\"2375\":1553668298004480000,\"2376\":1553668196879814656,\"2377\":1553667887533023232,\"2378\":1553664668815835136,\"2379\":1553664489668632576,\"2380\":1553663860518912000,\"2381\":1553662704761593856,\"2382\":1553662625409548288,\"2383\":1553661975992967168,\"2384\":1553661894002704384,\"2385\":1553660462243397632,\"2386\":1553659378573737984,\"2387\":1553657682518835200,\"2388\":1553657275822350336,\"2389\":1553656350227447808,\"2390\":1553652996982071296,\"2391\":1553652872394440704,\"2392\":1553652117272944640,\"2393\":1553650050949173248,\"2394\":1553648546276118528,\"2395\":1553648371872702464,\"2396\":1553646913114832896,\"2397\":1553645577602310144,\"2398\":1553644510101377024,\"2399\":1553641847523889152,\"2400\":1553641752690663424,\"2401\":1553638557931245568,\"2402\":1553638323977166848,\"2403\":1553637683955728384,\"2404\":1553633279730933760,\"2405\":1553626320474701824,\"2406\":1553625599792619520,\"2407\":1553624754371837952,\"2408\":1553620325119803392,\"2409\":1553611898549161984,\"2410\":1553610050782076928,\"2411\":1553609871366529024,\"2412\":1553609701358706688,\"2413\":1553609530671599616,\"2414\":1553609497049972736,\"2415\":1553609421149933568,\"2416\":1553607692270374912,\"2417\":1553607506462752768,\"2418\":1553605844150935552,\"2419\":1553605772403171328,\"2420\":1553605618401005568,\"2421\":1553604239871582208,\"2422\":1553604180216102912,\"2423\":1553604109332267008,\"2424\":1553603766032777216,\"2425\":1553603434733002752,\"2426\":1553600518479613952,\"2427\":1553600458807283712,\"2428\":1553600414389608448,\"2429\":1553600378561773568,\"2430\":1553600334366400512,\"2431\":1553600286681341952,\"2432\":1553600224039428096,\"2433\":1553600118653423616,\"2434\":1553599894912483328,\"2435\":1553599859877462016,\"2436\":1553599825026899968,\"2437\":1553599511213314048,\"2438\":1553598876107563008,\"2439\":1553598828086902784,\"2440\":1553598343900700672,\"2441\":1553597700972609536,\"2442\":1553597254413557760,\"2443\":1553596979099361280,\"2444\":1553596830524575744,\"2445\":1553596737540980736,\"2446\":1553596474465869824,\"2447\":1553596284187058176,\"2448\":1553596256974475264,\"2449\":1553596212997226496,\"2450\":1553582458779607040,\"2451\":1553564690663481344,\"2452\":1553563037239500800,\"2453\":1553562856213422080,\"2454\":1553560129127288832,\"2455\":1553559781524242432,\"2456\":1553557621470179328,\"2457\":1553551419822809088,\"2458\":1553518278382862336,\"2459\":1553517697660493824,\"2460\":1553516988647063552,\"2461\":1553515856822517760,\"2462\":1553511967301804032,\"2463\":1553471504549117952,\"2464\":1553471388723421184,\"2465\":1553471312378601472,\"2466\":1553471254937669632,\"2467\":1553471203792273408,\"2468\":1553471142081478656,\"2469\":1553470998946652160,\"2470\":1553470946203385856,\"2471\":1553470767588835328,\"2472\":1553470724777693184,\"2473\":1553470641382334464,\"2474\":1553470607928475648,\"2475\":1553470585476464640,\"2476\":1553470484481806336,\"2477\":1553470354781360128,\"2478\":1553470180138926080,\"2479\":1553470111700377600,\"2480\":1553470023884210176,\"2481\":1553469955542335488,\"2482\":1553469876232151040,\"2483\":1553469739359404032,\"2484\":1553469671323713536,\"2485\":1553469620941737984,\"2486\":1553469583465426944,\"2487\":1553469324073091072,\"2488\":1553469262622253056,\"2489\":1553469234470076416,\"2490\":1553469189054242816,\"2491\":1553468956567998464,\"2492\":1553468848942235648,\"2493\":1553467093294764032,\"2494\":1553467065264181248,\"2495\":1553466987153702912,\"2496\":1553466946183634944,\"2497\":1553466818437812224,\"2498\":1553466781393731584,\"2499\":1553466415302250496,\"2500\":1553466382947434496,\"2501\":1553466350294937600,\"2502\":1553466264403705856,\"2503\":1553466227699376128,\"2504\":1553466183722180608,\"2505\":1553466127380086784,\"2506\":1553466098439307264,\"2507\":1553466012762259456,\"2508\":1553465816103911424,\"2509\":1553465765604593664,\"2510\":1553465718104117248,\"2511\":1553465645290950656,\"2512\":1553465601863127040,\"2513\":1553465563715862528,\"2514\":1553465437572272128,\"2515\":1553465340151095296,\"2516\":1553465306768703488,\"2517\":1553465189391015936,\"2518\":1553465130633109504,\"2519\":1553465108743036928,\"2520\":1553465034935779328,\"2521\":1553464999099629568,\"2522\":1553464888239988736,\"2523\":1553464837858103296,\"2524\":1553464700612001792,\"2525\":1553464665166028800,\"2526\":1553464596345851904,\"2527\":1553464540796489728,\"2528\":1553464491727360000,\"2529\":1553464350609924096,\"2530\":1553463398058393600,\"2531\":1553463324939108352,\"2532\":1553463121259466752,\"2533\":1553463044709163008,\"2534\":1553462926991826944,\"2535\":1553462780036108288,\"2536\":1553462564020953088,\"2537\":1553462523806056448,\"2538\":1553462262509326336,\"2539\":1553461831611588608,\"2540\":1553461650707169280,\"2541\":1553461047947837440,\"2542\":1553460866183561216,\"2543\":1553460631533195264,\"2544\":1553460545545707520,\"2545\":1553460296752287744,\"2546\":1553460116296503296,\"2547\":1553459860771053568,\"2548\":1553407255604670464,\"2549\":1553406731371159552,\"2550\":1553394444744925184,\"2551\":1553390565147934720,\"2552\":1553384358341496832,\"2553\":1553381686959800320,\"2554\":1553377884361953280,\"2555\":1553376548132093952,\"2556\":1553372722490638336,\"2557\":1553315791545712640,\"2558\":1553191936890212352,\"2559\":1553191687257817088,\"2560\":1553191462849896448,\"2561\":1553184238345736192,\"2562\":1553183538513690624,\"2563\":1553146885581393920,\"2564\":1553113913146875904,\"2565\":1553109478647676928,\"2566\":1553109062644105216,\"2567\":1553108531498426368,\"2568\":1553108436681981952,\"2569\":1553107973840543744,\"2570\":1553105590691536896,\"2571\":1553105325687033856,\"2572\":1553105079309402112,\"2573\":1553009343188058112,\"2574\":1553009094386241536,\"2575\":1552978168629366784,\"2576\":1552976481231544320,\"2577\":1552945235566755840,\"2578\":1552939921320574976,\"2579\":1552939734720286720,\"2580\":1552939013761269760,\"2581\":1552938933390024704,\"2582\":1552938850904834048,\"2583\":1552938712727785472,\"2584\":1552938602165932032,\"2585\":1552938529428312064,\"2586\":1552938442442653696,\"2587\":1552938352101539840,\"2588\":1552938268290957312,\"2589\":1552938005060624384,\"2590\":1552937865994199040,\"2591\":1552937780292030464,\"2592\":1552937675891548160,\"2593\":1552937559654801408,\"2594\":1552937446366748672,\"2595\":1552937366108733440,\"2596\":1552937264216514560,\"2597\":1552936415889063936,\"2598\":1556282459435794432,\"2599\":1556221677712941056,\"2600\":1556169714837196800,\"2601\":1556169524197703680,\"2602\":1555898441544392704,\"2603\":1555885084292616192,\"2604\":1555857595021377536,\"2605\":1555838191055290368,\"2606\":1555830737336688640,\"2607\":1555830656126550016,\"2608\":1555830595237855232,\"2609\":1555808258216058880,\"2610\":1555788768275202048,\"2611\":1555784905770078208,\"2612\":1555635262117617664,\"2613\":1555627593084411904,\"2614\":1555626743444144128,\"2615\":1555448195425206272,\"2616\":1555447751944577024,\"2617\":1555421307927511040,\"2618\":1555410043557871616,\"2619\":1555333799654866944,\"2620\":1555299616568246272,\"2621\":1555276574668296192,\"2622\":1555270615329824768,\"2623\":1555244534702948352,\"2624\":1555239970033524736,\"2625\":1555238891585773568,\"2626\":1555230882155438080,\"2627\":1555229965905526784,\"2628\":1555222113929334784,\"2629\":1555221785049808896,\"2630\":1555221222669033472,\"2631\":1555220426757967872,\"2632\":1555214138334498816,\"2633\":1555212390723117056,\"2634\":1555199957417721856,\"2635\":1555196478406131712,\"2636\":1555182378418683904,\"2637\":1555181740389502976,\"2638\":1555175693843054592,\"2639\":1555158422194192384,\"2640\":1555150806978105344,\"2641\":1555144289734299648,\"2642\":1555138922048618496,\"2643\":1555118160688435200,\"2644\":1555110012040658944,\"2645\":1555109457838981120,\"2646\":1555097074634473472,\"2647\":1555071946458644480,\"2648\":1555020854425174016,\"2649\":1554956767964135424,\"2650\":1554951598547271680,\"2651\":1554941711880781824,\"2652\":1554940866858565632,\"2653\":1554925967994396672,\"2654\":1554920695259451392,\"2655\":1554916933467869184,\"2656\":1554912535903707136,\"2657\":1554911276299591680,\"2658\":1554906763010478080,\"2659\":1554903140855697408,\"2660\":1554902702018240512,\"2661\":1554896237291339776,\"2662\":1554893882336415744,\"2663\":1554885832791793664,\"2664\":1554864179533733888,\"2665\":1554862209565696000,\"2666\":1554856427742715904,\"2667\":1554853983251988480,\"2668\":1554848418639536128,\"2669\":1554839364391280640,\"2670\":1554826214237413376,\"2671\":1554823318758248448,\"2672\":1554822844885807104,\"2673\":1554817095803838464,\"2674\":1554799666973253632,\"2675\":1554798580753469440,\"2676\":1554794430921687040,\"2677\":1554793285134213120,\"2678\":1554789584948662272,\"2679\":1554782179963568128,\"2680\":1554778392322621440,\"2681\":1554777927241302016,\"2682\":1554776322890768384,\"2683\":1554776173900693504,\"2684\":1554773164550397952,\"2685\":1554767939320119296,\"2686\":1554766324185939968,\"2687\":1554764497340039168,\"2688\":1554764141822447616,\"2689\":1554763238784569344,\"2690\":1554762590605266944,\"2691\":1554761301947293696,\"2692\":1554759922285518848,\"2693\":1554759628918992896,\"2694\":1554756416698810368,\"2695\":1554748634524258304,\"2696\":1554739863139786752,\"2697\":1554736840787345408,\"2698\":1554734881942405120,\"2699\":1554733728110354432,\"2700\":1554733235262722048,\"2701\":1554732037910798336,\"2702\":1554722716070060032,\"2703\":1554721835383750656,\"2704\":1554721833018183680,\"2705\":1554721829809319936,\"2706\":1554721826340732928,\"2707\":1554721819067912192,\"2708\":1554720003840266240,\"2709\":1554719683806363648,\"2710\":1554719449856765952,\"2711\":1554716933810896896,\"2712\":1554713733607342080,\"2713\":1554712896839589888,\"2714\":1554696017110507520,\"2715\":1554695462292176896,\"2716\":1554695178677534720,\"2717\":1554692483484991488,\"2718\":1554691552722698240,\"2719\":1554680242102767616,\"2720\":1554675724656807936,\"2721\":1554661441558351872,\"2722\":1554645939704528896,\"2723\":1554642152919126016,\"2724\":1554616325926002688,\"2725\":1554608145334403072,\"2726\":1554586233602539520,\"2727\":1554585298876747776,\"2728\":1554579735673454592,\"2729\":1554578552779046912,\"2730\":1554578542633140224,\"2731\":1554574527270641664,\"2732\":1554569467585339392,\"2733\":1554566026423066624,\"2734\":1554559619569270784,\"2735\":1554553478655221760,\"2736\":1554549995378036736,\"2737\":1554541309792329728,\"2738\":1554540400534294528,\"2739\":1554539640404811776,\"2740\":1554538822553190400,\"2741\":1554538310940360704,\"2742\":1554535272053874688,\"2743\":1554532419591716864,\"2744\":1554532296241418240,\"2745\":1554531270889291776,\"2746\":1554531043562213376,\"2747\":1554530961043427328,\"2748\":1554530700992430080,\"2749\":1554530469592682496,\"2750\":1554528555404611584,\"2751\":1554525081367461888,\"2752\":1554518083112353792,\"2753\":1554517633654980608,\"2754\":1554517329492459520,\"2755\":1554515599321079808,\"2756\":1554513428588511232,\"2757\":1554512073127735296,\"2758\":1554510243580755968,\"2759\":1554509787680935936,\"2760\":1554506287647543296,\"2761\":1554505952807772160,\"2762\":1554504724329775104,\"2763\":1554500469648756736,\"2764\":1554500178157228032,\"2765\":1554495766860800000,\"2766\":1554494286749630464,\"2767\":1554493526662152192,\"2768\":1554492076292726784,\"2769\":1554491304507228160,\"2770\":1554490164868792320,\"2771\":1554489863310827520,\"2772\":1554489728468123648,\"2773\":1554486695206297600,\"2774\":1554485597875671040,\"2775\":1554484722197299200,\"2776\":1554482286632001536,\"2777\":1554481307194908672,\"2778\":1554480017861758976,\"2779\":1554479864937422848,\"2780\":1554479228913127424,\"2781\":1554479187783729152,\"2782\":1554479105642479616,\"2783\":1554478892198625280,\"2784\":1554478100343316480,\"2785\":1554477978792370176,\"2786\":1554470512138534912,\"2787\":1554469061697982464,\"2788\":1554459816478769152,\"2789\":1554457188806049792,\"2790\":1554454502534676480,\"2791\":1554449181854601216,\"2792\":1554448724914585600,\"2793\":1554447814922493952,\"2794\":1554447424743145472,\"2795\":1554446177004920832,\"2796\":1554445549478330368,\"2797\":1554443692014010368,\"2798\":1554443507082862592,\"2799\":1554443355383373824,\"2800\":1554441486313431040,\"2801\":1554435529688682496,\"2802\":1554430992928178176,\"2803\":1554428973517529088,\"2804\":1554427832314564608,\"2805\":1554417773526355968,\"2806\":1554414418879979520,\"2807\":1554413467653873664,\"2808\":1554412198834872320,\"2809\":1554403516042694656,\"2810\":1554399326910152704,\"2811\":1554393853423230976,\"2812\":1554390773868658688,\"2813\":1554389905765269504,\"2814\":1554388712401674240,\"2815\":1554371870522314752,\"2816\":1554333005891739648,\"2817\":1554331863069646848,\"2818\":1554314970006945792,\"2819\":1554258652554579968,\"2820\":1554198347140972544,\"2821\":1554178720222642176,\"2822\":1554167460856832000,\"2823\":1554167352694120448,\"2824\":1554163364196225024,\"2825\":1554160326706438144,\"2826\":1554115937758072832,\"2827\":1554113629376626688,\"2828\":1554101779733913600,\"2829\":1554101272650850304,\"2830\":1554094011962597376,\"2831\":1554086466686427136,\"2832\":1554076385941098496,\"2833\":1554076383554506752,\"2834\":1554050111839297536,\"2835\":1554043117896192000,\"2836\":1553735425621168128,\"2837\":1553685034183364608,\"2838\":1553683702181494784,\"2839\":1553660238896812032,\"2840\":1553456916604518400,\"2841\":1553371739631112192,\"2842\":1553305021168615424,\"2843\":1553288217084010496,\"2844\":1553267678663557120,\"2845\":1553115138626129920,\"2846\":1553018275403104256,\"2847\":1552911064886550528,\"2848\":1556261821971140608,\"2849\":1556180877264273408,\"2850\":1556137553518272512,\"2851\":1556129053480030208,\"2852\":1556128657495801856,\"2853\":1556010296069718016,\"2854\":1555992372194021376,\"2855\":1555984785004281856,\"2856\":1555949064885342208,\"2857\":1555940250551259136,\"2858\":1555921613857492992,\"2859\":1555920654368575488,\"2860\":1555919988610830336,\"2861\":1555904235451158528,\"2862\":1555886548486443008,\"2863\":1555886386380775424,\"2864\":1555828561424121856,\"2865\":1555823200457695232,\"2866\":1555765691919261696,\"2867\":1555751448482398208,\"2868\":1555673358125105152,\"2869\":1555645910100631552,\"2870\":1555645888277762048,\"2871\":1555645152223543296,\"2872\":1555642763491901440,\"2873\":1555642259760205824,\"2874\":1555601679147446272,\"2875\":1555599475577704448,\"2876\":1555598994277023744,\"2877\":1555581916308389888,\"2878\":1555569850168352768,\"2879\":1555557164986548224,\"2880\":1555526355747569664,\"2881\":1555526355739090944,\"2882\":1555519330288287744,\"2883\":1555507581048741888,\"2884\":1555484687623245824,\"2885\":1555475343321944064,\"2886\":1555467883769110528,\"2887\":1555467862516666368,\"2888\":1555464376261672960,\"2889\":1555461969481801728,\"2890\":1555440103807504384,\"2891\":1555432430298882048,\"2892\":1555429855797428224,\"2893\":1555428458246848512,\"2894\":1555427170872352768,\"2895\":1555424860263927808,\"2896\":1555423894001143808,\"2897\":1555423133896695808,\"2898\":1555420559139393536,\"2899\":1555414324369391616,\"2900\":1555411699708092416,\"2901\":1555407811441467392,\"2902\":1555404418757103616,\"2903\":1555403943349714944,\"2904\":1555400982259179520,\"2905\":1555394763100246016,\"2906\":1555375695559380992,\"2907\":1555370218377166848,\"2908\":1555363998995988480,\"2909\":1555341970872090624,\"2910\":1555341323653242880,\"2911\":1555333776250703872,\"2912\":1555330385654996992,\"2913\":1555317037097951232,\"2914\":1555316858437484544,\"2915\":1555313928296665088,\"2916\":1555313672704196608,\"2917\":1555313638717530112,\"2918\":1555313085501652992,\"2919\":1555309544292630528,\"2920\":1555303207236255744,\"2921\":1555299516613627904,\"2922\":1555298493316665344,\"2923\":1555298430469246976,\"2924\":1555290140561625088,\"2925\":1555289069831311360,\"2926\":1555286290148589568,\"2927\":1555279982598946816,\"2928\":1555279750452715520,\"2929\":1555274246074548224,\"2930\":1555273639754334208,\"2931\":1555273042221502464,\"2932\":1555272697474588672,\"2933\":1555270720502087680,\"2934\":1555270449935810560,\"2935\":1555255293524729856,\"2936\":1555253770518405120,\"2937\":1555250716188581888,\"2938\":1555250097927110656,\"2939\":1555248905692086272,\"2940\":1555247814728470528,\"2941\":1555247100291870720,\"2942\":1555245847591403520,\"2943\":1555241326807060480,\"2944\":1555240679495929856,\"2945\":1555239078848765952,\"2946\":1555237490612731904,\"2947\":1555236168366686208,\"2948\":1555235741848010752,\"2949\":1555231420993478656,\"2950\":1555231056076410880,\"2951\":1555229033520062464,\"2952\":1555224391016931328,\"2953\":1555219220975308800,\"2954\":1555213282570514432,\"2955\":1555210958066294784,\"2956\":1555204178976423936,\"2957\":1555203906069741568,\"2958\":1555203587046887424,\"2959\":1555203195563118592,\"2960\":1555203105435836416,\"2961\":1555202945276329984,\"2962\":1555202736710422528,\"2963\":1555201781013028864,\"2964\":1555197747762020352,\"2965\":1555196918137069568,\"2966\":1555196763736342528,\"2967\":1555191931197693952,\"2968\":1555191096170479616,\"2969\":1555189075602178048,\"2970\":1555184514900582400,\"2971\":1555180488222035968,\"2972\":1555176811369218048,\"2973\":1555175075380338688,\"2974\":1555174968110878720,\"2975\":1555174187639209984,\"2976\":1555173247641161728,\"2977\":1555169329624371200,\"2978\":1555168058779525120,\"2979\":1555165192924831744,\"2980\":1555161230607777792,\"2981\":1555157065131298816,\"2982\":1555154606044454912,\"2983\":1555152668116533248,\"2984\":1555149702697476096,\"2985\":1555149398035906560,\"2986\":1555148913782493184,\"2987\":1555145195234148352,\"2988\":1555144224714231808,\"2989\":1555141891812900864,\"2990\":1555141319676366848,\"2991\":1555140625653186560,\"2992\":1555139778533888000,\"2993\":1555139152135561216,\"2994\":1555138525649043456,\"2995\":1555136512567697408,\"2996\":1555136048174440448,\"2997\":1555135839843352576,\"2998\":1555134964127121408,\"2999\":1555133713612169216,\"3000\":1555132666793840640,\"3001\":1555130893794267136,\"3002\":1555129146388500480,\"3003\":1555128354340233216,\"3004\":1555128108503732224,\"3005\":1555127655908970496,\"3006\":1555126966491152384,\"3007\":1555123024881500160,\"3008\":1555122411443478528,\"3009\":1555119013126094848,\"3010\":1555114494996660224,\"3011\":1555113873476313088,\"3012\":1555110753358708736,\"3013\":1555109135024328704,\"3014\":1555106135442702336,\"3015\":1555104574884683776,\"3016\":1555104345552715776,\"3017\":1555104127406989312,\"3018\":1555103518092140544,\"3019\":1555103100406534144,\"3020\":1555101170439438336,\"3021\":1555101138512486400,\"3022\":1555100209516056576,\"3023\":1555099031281537024,\"3024\":1555097790358904832,\"3025\":1555096995492204544,\"3026\":1555095444807712768,\"3027\":1555094753410170880,\"3028\":1555092899624325120,\"3029\":1555092571201888256,\"3030\":1555089988752113664,\"3031\":1555089541727457280,\"3032\":1555089213820993536,\"3033\":1555086880462577664,\"3034\":1555085002794205184,\"3035\":1555084522563293184,\"3036\":1555078393535897600,\"3037\":1555078032158855168,\"3038\":1555076714312699904,\"3039\":1555074729022717952,\"3040\":1555073073103118336,\"3041\":1555071764933361664,\"3042\":1555036308552253440,\"3043\":1555031716372381696,\"3044\":1555020307894878208,\"3045\":1555015354488954880,\"3046\":1555003584068009984,\"3047\":1554998401888141312,\"3048\":1554993460956073984,\"3049\":1554989512484331520,\"3050\":1554984208589885440,\"3051\":1554977853988560896,\"3052\":1554968669574283264,\"3053\":1554967602467938304,\"3054\":1554965283621806080,\"3055\":1554964398757773312,\"3056\":1554955376927416320,\"3057\":1554955209960329216,\"3058\":1554954769776656384,\"3059\":1554953058412527616,\"3060\":1554952696884494336,\"3061\":1554951856362819584,\"3062\":1554945886744186880,\"3063\":1554932017342578688,\"3064\":1554930832753807360,\"3065\":1554929759095869440,\"3066\":1554925470789025792,\"3067\":1554920465453535232,\"3068\":1554919572913930240,\"3069\":1554919550172495872,\"3070\":1554916934776487936,\"3071\":1554914363928100864,\"3072\":1554913407270354944,\"3073\":1554910708340490240,\"3074\":1554910206764765184,\"3075\":1554907619403485184,\"3076\":1554905444610703360,\"3077\":1554896263388495872,\"3078\":1554895525392138240,\"3079\":1554894614267568128,\"3080\":1554893836513599488,\"3081\":1554891245608210432,\"3082\":1554889578019946496,\"3083\":1554888810739154944,\"3084\":1554887674498007040,\"3085\":1554884737327681536,\"3086\":1554884564845297664,\"3087\":1554883174987079680,\"3088\":1554882467999408128,\"3089\":1554882223177965568,\"3090\":1554881056008187904,\"3091\":1554879886778634240,\"3092\":1554879559425822720,\"3093\":1554879316705816576,\"3094\":1554876888396562432,\"3095\":1554875263674187776,\"3096\":1554875116768608256,\"3097\":1554875042147827712,\"3098\":1554873871156723712,\"3099\":1554871167894183936,\"3100\":1554869975638474752,\"3101\":1554869155698016256,\"3102\":1554867926930313216,\"3103\":1554859470001475584,\"3104\":1554858371622359040,\"3105\":1554857027855335424,\"3106\":1554856466481307648,\"3107\":1554856273216241664,\"3108\":1554855618275676160,\"3109\":1554854432843747328,\"3110\":1554853500152336384,\"3111\":1554850987222917120,\"3112\":1554849169902297088,\"3113\":1554845204703854592,\"3114\":1554843537736351744,\"3115\":1554840867164360704,\"3116\":1554839916168859648,\"3117\":1554839451213381632,\"3118\":1554838885879906304,\"3119\":1554838355950637056,\"3120\":1554837432276684800,\"3121\":1554836957687005184,\"3122\":1554835507216994304,\"3123\":1554835264660328448,\"3124\":1554835221819731968,\"3125\":1554835162839465984,\"3126\":1554835145458212864,\"3127\":1554835123329064960,\"3128\":1554829087671169024,\"3129\":1554825762682769408,\"3130\":1554825642171961344,\"3131\":1554824829877989376,\"3132\":1554824681747664896,\"3133\":1554823991629451264,\"3134\":1554823137191010304,\"3135\":1554822847855337472,\"3136\":1554820786933735424,\"3137\":1554820709485928448,\"3138\":1554820531186286592,\"3139\":1554818157616852992,\"3140\":1554813299744800768,\"3141\":1554813174087655424,\"3142\":1554812726647611392,\"3143\":1554805150509944832,\"3144\":1554804208410497024,\"3145\":1554803817425899520,\"3146\":1554801857461207040,\"3147\":1554801255620530176,\"3148\":1554800801729724416,\"3149\":1554800267329159168,\"3150\":1554798804939206656,\"3151\":1554798185935261696,\"3152\":1554797887225307136,\"3153\":1554797655632510976,\"3154\":1554796964734189568,\"3155\":1554796314440916992,\"3156\":1554794720462766080,\"3157\":1554793938686562304,\"3158\":1554793400167272448,\"3159\":1554792947694112768,\"3160\":1554792747147706368,\"3161\":1554790964002168832,\"3162\":1554790650343718912,\"3163\":1554790368180322304,\"3164\":1554788988187283456,\"3165\":1554788274752847872,\"3166\":1554787465952641024,\"3167\":1554786948564353024,\"3168\":1554785715841646592,\"3169\":1554785109202665472,\"3170\":1554784157557051392,\"3171\":1554783418755325952,\"3172\":1554782041039945728,\"3173\":1554781577946742784,\"3174\":1554780161714917376,\"3175\":1554779819296137216,\"3176\":1554777567802040320,\"3177\":1554777349111029760,\"3178\":1554773996087943168,\"3179\":1554773028235608064,\"3180\":1554772467201327104,\"3181\":1554771164572049408,\"3182\":1554771123782524928,\"3183\":1554770988902109184,\"3184\":1554769934298791936,\"3185\":1554768633062215680,\"3186\":1554768321983422464,\"3187\":1554767417963954176,\"3188\":1554765387874590720,\"3189\":1554765082739056640,\"3190\":1554763861085093888,\"3191\":1554763044194058240,\"3192\":1554762201919012864,\"3193\":1554761745159409664,\"3194\":1554760110320271360,\"3195\":1554759468705005568,\"3196\":1554758927639781376,\"3197\":1554758665240018944,\"3198\":1554757312325246976,\"3199\":1554757121086001152,\"3200\":1554755014110969856,\"3201\":1554753949986525184,\"3202\":1554750497139089408,\"3203\":1554750357292650496,\"3204\":1554750169228492800,\"3205\":1554747547788484608,\"3206\":1554746410469318656,\"3207\":1554745680635338752,\"3208\":1554745475730968576,\"3209\":1554745332243767296,\"3210\":1554743578127212544,\"3211\":1554743515757903872,\"3212\":1554739926125760512,\"3213\":1554739517940195328,\"3214\":1554738972546539520,\"3215\":1554737243566362624,\"3216\":1554735948960784384,\"3217\":1554735947413176320,\"3218\":1554735759818620928,\"3219\":1554735443136192512,\"3220\":1554733314564554752,\"3221\":1554733053494403072,\"3222\":1554731771115225088,\"3223\":1554729562080174080,\"3224\":1554729093857435648,\"3225\":1554728958880612352,\"3226\":1554726841772023808,\"3227\":1554725439599435776,\"3228\":1554725366044004352,\"3229\":1554723970548699136,\"3230\":1554722830654242816,\"3231\":1554722351207616512,\"3232\":1554719675711234048,\"3233\":1554719466797293568,\"3234\":1554718940496105472,\"3235\":1554717574407020544,\"3236\":1554716689337655296,\"3237\":1554716381962293248,\"3238\":1554715101596467200,\"3239\":1554714732828950528,\"3240\":1554714297980395520,\"3241\":1554714059471200256,\"3242\":1554713631694233600,\"3243\":1554711804013576192,\"3244\":1554710620532084736,\"3245\":1554708618041298944,\"3246\":1554707579426992128,\"3247\":1554707436271026176,\"3248\":1554706442460037120,\"3249\":1554706296670195712,\"3250\":1554704111563595776,\"3251\":1554703414864490496,\"3252\":1554702333577150464,\"3253\":1554701125781176320,\"3254\":1554701092881108992,\"3255\":1554700773983911936,\"3256\":1554699844798775296,\"3257\":1554696312964218880,\"3258\":1554695248365985792,\"3259\":1554695199330340864,\"3260\":1554695069982228480,\"3261\":1554695001199841280,\"3262\":1554694907486502912,\"3263\":1554694670470352896,\"3264\":1554694071809105920,\"3265\":1554693967874244608,\"3266\":1554693495687974912,\"3267\":1554693275319246848,\"3268\":1554693154535784448,\"3269\":1554693052094087168,\"3270\":1554692925602365440,\"3271\":1554692432574533632,\"3272\":1554690673508581376,\"3273\":1554690307333160960,\"3274\":1554689632960499712,\"3275\":1554689566824620032,\"3276\":1554689495647363072,\"3277\":1554689401086787584,\"3278\":1554689059997597696,\"3279\":1554688861569171456,\"3280\":1554688695550504960,\"3281\":1554688562922135552,\"3282\":1554687233462251520,\"3283\":1554682464236437504,\"3284\":1554682393843359744,\"3285\":1554676151293022208,\"3286\":1554672615503060992,\"3287\":1554666798372380672,\"3288\":1554663850615742464,\"3289\":1554661276697100288,\"3290\":1554642745213558784,\"3291\":1554637068256559104,\"3292\":1554630465654505472,\"3293\":1554612845341540352,\"3294\":1554610609047670784,\"3295\":1554609029619523584,\"3296\":1554603566140198912,\"3297\":1554602830664802304,\"3298\":1554602151254556672,\"3299\":1554600627451449344,\"3300\":1554599767337992192,\"3301\":1554599480476975104,\"3302\":1554597692801794048,\"3303\":1554597548131745792,\"3304\":1554597054571225088,\"3305\":1554597018705747968,\"3306\":1554594793111654400,\"3307\":1554593692190752768,\"3308\":1554591147208675328,\"3309\":1554589306408341504,\"3310\":1554589021396824064,\"3311\":1554587978223288320,\"3312\":1554587886007320576,\"3313\":1554586355518300160,\"3314\":1554585575214272512,\"3315\":1554585295580004352,\"3316\":1554582994836414464,\"3317\":1554581653745348608,\"3318\":1554581573659410432,\"3319\":1554579339567661056,\"3320\":1554577906474655744,\"3321\":1554577036416618496,\"3322\":1554576130962866176,\"3323\":1554573835566923776,\"3324\":1554573632428449792,\"3325\":1554571989330710528,\"3326\":1554571875455483904,\"3327\":1554571640062763008,\"3328\":1554571371363041280,\"3329\":1554571349196242944,\"3330\":1554570941488840704,\"3331\":1554570866075217920,\"3332\":1554567123468443648,\"3333\":1554566196808269824,\"3334\":1554565609727397888,\"3335\":1554565491808784384,\"3336\":1554565016489279488,\"3337\":1554564794887421952,\"3338\":1554564582940844032,\"3339\":1554564046287953920,\"3340\":1554563551221760000,\"3341\":1554563249894555648,\"3342\":1554563096756293632,\"3343\":1554560172017811456,\"3344\":1554560080577794048,\"3345\":1554559036997226496,\"3346\":1554557599009234944,\"3347\":1554556148744916992,\"3348\":1554555838387220480,\"3349\":1554555643092140032,\"3350\":1554555495012343808,\"3351\":1554554904034811904,\"3352\":1554554849752223744,\"3353\":1554552848750346240,\"3354\":1554552365029724160,\"3355\":1554552307462938624,\"3356\":1554551906302820352,\"3357\":1554551325458849792,\"3358\":1554550925813075968,\"3359\":1554549729916223488,\"3360\":1554549643740061696,\"3361\":1554549440316317696,\"3362\":1554547421912485888,\"3363\":1554545190920245248,\"3364\":1554544542657003520,\"3365\":1554543708581797888,\"3366\":1554542637566332928,\"3367\":1554542089882435584,\"3368\":1554541029298212864,\"3369\":1554540643040591872,\"3370\":1554540517962178560,\"3371\":1554540287493562368,\"3372\":1554540087072804864,\"3373\":1554539007748579328,\"3374\":1554538875758022656,\"3375\":1554537633778483200,\"3376\":1554536017058840576,\"3377\":1554535404321251328,\"3378\":1554534886828122112,\"3379\":1554534825268215808,\"3380\":1554534379522871296,\"3381\":1554533131067494400,\"3382\":1554532762673111040,\"3383\":1554532268265377792,\"3384\":1554532226620178432,\"3385\":1554528478372007936,\"3386\":1554526464267227136,\"3387\":1554524966569271296,\"3388\":1554523740372959232,\"3389\":1554522306642202624,\"3390\":1554521869461618688,\"3391\":1554521163749023744,\"3392\":1554517903122243584,\"3393\":1554517635156656128,\"3394\":1554517160407572480,\"3395\":1554516323786526720,\"3396\":1554515738001563648,\"3397\":1554512895039373312,\"3398\":1554511972942626816,\"3399\":1554511554326179840,\"3400\":1554508531159760896,\"3401\":1554508215945142272,\"3402\":1554504829770219520,\"3403\":1554504669308674048,\"3404\":1554503515556327424,\"3405\":1554502403889807360,\"3406\":1554502371946172416,\"3407\":1554502196384993280,\"3408\":1554501332723179520,\"3409\":1554500874185089024,\"3410\":1554500278094905344,\"3411\":1554500163846262784,\"3412\":1554498498958987264,\"3413\":1554495320146337792,\"3414\":1554495310986203136,\"3415\":1554494190842691584,\"3416\":1554493668454719488,\"3417\":1554493620186669056,\"3418\":1554491572502372352,\"3419\":1554490738594938880,\"3420\":1554490480792068096,\"3421\":1554490086099718144,\"3422\":1554489348749463552,\"3423\":1554488563089162240,\"3424\":1554486121865912320,\"3425\":1554484632254545920,\"3426\":1554484152132673536,\"3427\":1554484110638436352,\"3428\":1554484017214492672,\"3429\":1554483355172933632,\"3430\":1554482608142254080,\"3431\":1554481978132635648,\"3432\":1554481825128521728,\"3433\":1554481716479381504,\"3434\":1554481678243995648,\"3435\":1554481216363061248,\"3436\":1554481031083859968,\"3437\":1554480912464859136,\"3438\":1554480850598764544,\"3439\":1554480671648792576,\"3440\":1554480471052017664,\"3441\":1554479982822543360,\"3442\":1554479982432362496,\"3443\":1554479863389626368,\"3444\":1554479786671702016,\"3445\":1554477546430992384,\"3446\":1554477302364663808,\"3447\":1554477230218248192,\"3448\":1554476534375026688,\"3449\":1554475085347655680,\"3450\":1554474461608419328,\"3451\":1554474310529597440,\"3452\":1554473651499683840,\"3453\":1554472955907825664,\"3454\":1554472187469467648,\"3455\":1554471394880225280,\"3456\":1554471292803452928,\"3457\":1554469421036576768,\"3458\":1554469128194375680,\"3459\":1554466213534769152,\"3460\":1554465540617506816,\"3461\":1554464494855798784,\"3462\":1554463390118121472,\"3463\":1554463372409700352,\"3464\":1554462671868674048,\"3465\":1554461575834107904,\"3466\":1554461094823034880,\"3467\":1554459353293492224,\"3468\":1554457473960103936,\"3469\":1554454961697820672,\"3470\":1554453817449750528,\"3471\":1554453682267250688,\"3472\":1554453598989426688,\"3473\":1554453538280988672,\"3474\":1554453118456369152,\"3475\":1554452270414274560,\"3476\":1554451354311180288,\"3477\":1554451066577641472,\"3478\":1554449229145415680,\"3479\":1554448582018826240,\"3480\":1554444641898057728,\"3481\":1554443572098760704,\"3482\":1554437438944288768,\"3483\":1554435793162223616,\"3484\":1554434151935262720,\"3485\":1554430723054096384,\"3486\":1554423164620492800,\"3487\":1554420594107727872,\"3488\":1554420378725916672,\"3489\":1554419505178312704,\"3490\":1554412793348194304,\"3491\":1554408047849644032,\"3492\":1554407210029031424,\"3493\":1554406081807503360,\"3494\":1554404970153263104,\"3495\":1554404773209821184,\"3496\":1554404543022206976,\"3497\":1554403907895496704,\"3498\":1554403258466172928,\"3499\":1554398553136562176,\"3500\":1554397534994501632,\"3501\":1554396643776151552,\"3502\":1554388980841463808,\"3503\":1554366504594030592,\"3504\":1554332241710534656,\"3505\":1554304430375313408,\"3506\":1554275934634737664,\"3507\":1554253705226162176,\"3508\":1554249904695959552,\"3509\":1554236858175037440,\"3510\":1554235561086525440,\"3511\":1554233435941634048,\"3512\":1554232665645191168,\"3513\":1554226471153065984,\"3514\":1554220296223211520,\"3515\":1554217804924174336,\"3516\":1554210285132697600,\"3517\":1554206276476870656,\"3518\":1554198465030258688,\"3519\":1554196703078653952,\"3520\":1554193831683309568,\"3521\":1554193318900277248,\"3522\":1554191726797012992,\"3523\":1554190915283066880,\"3524\":1554186459778801664,\"3525\":1554185285428191232,\"3526\":1554183475233693696,\"3527\":1554181881100472320,\"3528\":1554175663430684672,\"3529\":1554171172924825600,\"3530\":1554169045934538752,\"3531\":1554168957476773888,\"3532\":1554165103947399168,\"3533\":1554162987136651264,\"3534\":1554162380900376576,\"3535\":1554162076708372480,\"3536\":1554159199227101184,\"3537\":1554158622007037952,\"3538\":1554148011684630528,\"3539\":1554145439221485568,\"3540\":1554140260837208064,\"3541\":1554135854083457024,\"3542\":1554134928413134848,\"3543\":1554127208016379904,\"3544\":1554126833754554368,\"3545\":1554124771629174784,\"3546\":1554123369699852288,\"3547\":1554122616927125504,\"3548\":1554119100007333888,\"3549\":1554117969579581440,\"3550\":1554117517681074176,\"3551\":1554111942238904320,\"3552\":1554103194170626048,\"3553\":1554097572062662656,\"3554\":1554096254057172992,\"3555\":1554094425059590144,\"3556\":1554094314493468672,\"3557\":1554093149756297216,\"3558\":1554087607235215360,\"3559\":1554086408649936896,\"3560\":1554085998321192960,\"3561\":1554085812974899200,\"3562\":1554085432538841088,\"3563\":1554085368139583488,\"3564\":1554085268386447360,\"3565\":1554085193945849856,\"3566\":1554085067063967744,\"3567\":1554084711147995136,\"3568\":1554084536727863296,\"3569\":1554079628473602048,\"3570\":1554074860963315712,\"3571\":1554074794538291200,\"3572\":1554072695142338560,\"3573\":1554069490706665472,\"3574\":1554056477404438528,\"3575\":1554044064462413824,\"3576\":1554037139071025152,\"3577\":1554036352378888192,\"3578\":1554030867332431872,\"3579\":1554029474986991616,\"3580\":1554027348588216320,\"3581\":1554026517906083840,\"3582\":1553985391123906560,\"3583\":1553980672951422976,\"3584\":1553848334531457024,\"3585\":1553830981844406272,\"3586\":1553770279918358528,\"3587\":1553749966664916992,\"3588\":1553749106207739904,\"3589\":1553747889687609344,\"3590\":1553739108215885824,\"3591\":1553736217761648640,\"3592\":1553729147326930944,\"3593\":1553717865894780928,\"3594\":1553717013650063360,\"3595\":1553711639521812480,\"3596\":1553710607052029952,\"3597\":1553702415223881728,\"3598\":1553697740307238912,\"3599\":1553691378995142656,\"3600\":1553687223261954048,\"3601\":1553683829377957888,\"3602\":1553683040357982208,\"3603\":1553682457970593792,\"3604\":1553681233913298944,\"3605\":1553677470389469184,\"3606\":1553677120257277952,\"3607\":1553674549207748608,\"3608\":1553672509446397952,\"3609\":1553672054062342144,\"3610\":1553671116941672448,\"3611\":1553670803262160896,\"3612\":1553668298004480000,\"3613\":1553668196879814656,\"3614\":1553664668815835136,\"3615\":1553657682518835200,\"3616\":1553657275822350336,\"3617\":1553652117272944640,\"3618\":1553641752690663424,\"3619\":1553638323977166848,\"3620\":1553611898549161984,\"3621\":1553564690663481344,\"3622\":1553516988647063552,\"3623\":1553372722490638336,\"3624\":1553248373011914752,\"3625\":1553246181140008960,\"3626\":1553184238345736192,\"3627\":1552978168629366784,\"3628\":1552945235566755840,\"3629\":1556408255517270016,\"3630\":1556407483953987584,\"3631\":1556329884342960128,\"3632\":1556314427712061440,\"3633\":1556287756858540032,\"3634\":1556261821971140608,\"3635\":1556244905474801664,\"3636\":1556240994328510464,\"3637\":1556239501667799040,\"3638\":1556223742959058944,\"3639\":1556221742439616512,\"3640\":1556180877264273408,\"3641\":1556176640069324800,\"3642\":1556129053480030208,\"3643\":1556128657495801856,\"3644\":1556042033915101184,\"3645\":1556010296069718016,\"3646\":1555995682586169344,\"3647\":1555995337352962048,\"3648\":1555992372194021376,\"3649\":1555984785004281856,\"3650\":1555950028279410688,\"3651\":1555940250551259136,\"3652\":1555924699447582720,\"3653\":1555921613857492992,\"3654\":1555920654368575488,\"3655\":1555919988610830336,\"3656\":1555912598461157376,\"3657\":1555904235451158528,\"3658\":1555901917523591168,\"3659\":1555886548486443008,\"3660\":1555886386380775424,\"3661\":1555881643566854144,\"3662\":1555864776286556160,\"3663\":1555859377038524416,\"3664\":1555856910280433664,\"3665\":1555832124401504256,\"3666\":1555828561424121856,\"3667\":1555823200457695232,\"3668\":1555765691919261696,\"3669\":1555751448482398208,\"3670\":1555744004817358848,\"3671\":1555743088366260224,\"3672\":1555704281352773632,\"3673\":1555682404433543168,\"3674\":1555673358125105152,\"3675\":1555661549276217344,\"3676\":1555646456811425792,\"3677\":1555645910100631552,\"3678\":1555645888277762048,\"3679\":1555645152223543296,\"3680\":1555644670729920512,\"3681\":1555642763491901440,\"3682\":1555642259760205824,\"3683\":1555642082022522880,\"3684\":1555632533563482112,\"3685\":1555631282817798144,\"3686\":1555604087411974144,\"3687\":1555601679147446272,\"3688\":1555599475577704448,\"3689\":1555598994277023744,\"3690\":1555584754224873472,\"3691\":1555581916308389888,\"3692\":1555581535969050624,\"3693\":1555580719384215552,\"3694\":1555568544460439552,\"3695\":1555567685156708352,\"3696\":1555566301048889344,\"3697\":1555557164986548224,\"3698\":1555556372212695040,\"3699\":1555549100615077888,\"3700\":1555537110584725504,\"3701\":1555536958012653568,\"3702\":1555536781621215232,\"3703\":1555536558866022400,\"3704\":1555536358143397888,\"3705\":1555536233526353920,\"3706\":1555534034532540416,\"3707\":1555534015318335488,\"3708\":1555533331395186688,\"3709\":1555530540459012096,\"3710\":1555528686379859968,\"3711\":1555527538163605504,\"3712\":1555526355747569664,\"3713\":1555526355739090944,\"3714\":1555519330288287744,\"3715\":1555507581048741888,\"3716\":1555489466692911104,\"3717\":1555488894203953152,\"3718\":1555487138241724416,\"3719\":1555485792801259520,\"3720\":1555484911703920640,\"3721\":1555484687623245824,\"3722\":1555484493095604224,\"3723\":1555484137737306112,\"3724\":1555477308634546176,\"3725\":1555475343321944064,\"3726\":1555471508130111488,\"3727\":1555467883769110528,\"3728\":1555467862516666368,\"3729\":1555453386195177472,\"3730\":1555451042678071296,\"3731\":1555447329133629440,\"3732\":1555440103807504384,\"3733\":1555432430298882048,\"3734\":1555430906868994048,\"3735\":1555430421051195392,\"3736\":1555429855797428224,\"3737\":1555428458246848512,\"3738\":1555427170872352768,\"3739\":1555424860263927808,\"3740\":1555423894001143808,\"3741\":1555423133896695808,\"3742\":1555420559139393536,\"3743\":1555414450961879040,\"3744\":1555414324369391616,\"3745\":1555411699708092416,\"3746\":1555407811441467392,\"3747\":1555407272267976704,\"3748\":1555404418757103616,\"3749\":1555403943349714944,\"3750\":1555402994233008128,\"3751\":1555401847589978112,\"3752\":1555400982259179520,\"3753\":1555394763100246016,\"3754\":1555393250051194880,\"3755\":1555391148688084992,\"3756\":1555386497611845632,\"3757\":1555375695559380992,\"3758\":1555370218377166848,\"3759\":1555365612645277696,\"3760\":1555363998995988480,\"3761\":1555358310815105024,\"3762\":1555354262238105600,\"3763\":1555351846230921216,\"3764\":1555351841726205952,\"3765\":1555351032011571200,\"3766\":1555350072656896000,\"3767\":1555348006265933824,\"3768\":1555346514528051200,\"3769\":1555341970872090624,\"3770\":1555341323653242880,\"3771\":1555339745286299648,\"3772\":1555339081378324480,\"3773\":1555336486056333312,\"3774\":1555335843501441024,\"3775\":1555333776250703872,\"3776\":1555332059526225920,\"3777\":1555330385654996992,\"3778\":1555328135914201088,\"3779\":1555325067273314304,\"3780\":1555322974445641728,\"3781\":1555320730925015040,\"3782\":1555319132786200576,\"3783\":1555318567473651712,\"3784\":1555317037097951232,\"3785\":1555316858437484544,\"3786\":1555315108515123200,\"3787\":1555313928296665088,\"3788\":1555313672704196608,\"3789\":1555313085501652992,\"3790\":1555310059139354624,\"3791\":1555309799948034048,\"3792\":1555309544292630528,\"3793\":1555308825040879616,\"3794\":1555307151958188032,\"3795\":1555306832515719168,\"3796\":1555303207236255744,\"3797\":1555301777603543040,\"3798\":1555301283451609088,\"3799\":1555299516613627904,\"3800\":1555298493316665344,\"3801\":1555298430469246976,\"3802\":1555298215204978688,\"3803\":1555297218936115200,\"3804\":1555294104325459968,\"3805\":1555293488253747200,\"3806\":1555293418661855232,\"3807\":1555292946374819840,\"3808\":1555290140561625088,\"3809\":1555289958906200064,\"3810\":1555289069831311360,\"3811\":1555288728205139968,\"3812\":1555288045670354944,\"3813\":1555287099267551232,\"3814\":1555286309412909056,\"3815\":1555286290148589568,\"3816\":1555285352222441472,\"3817\":1555285347994583040,\"3818\":1555283991019884544,\"3819\":1555281558004695040,\"3820\":1555279982598946816,\"3821\":1555279750452715520,\"3822\":1555278483777114112,\"3823\":1555277911216848896,\"3824\":1555275331761852416,\"3825\":1555275017306472448,\"3826\":1555274853632319488,\"3827\":1555274388391579648,\"3828\":1555274246074548224,\"3829\":1555273639754334208,\"3830\":1555273042221502464,\"3831\":1555272697474588672,\"3832\":1555271731555848192,\"3833\":1555270969526308864,\"3834\":1555270720502087680,\"3835\":1555270449935810560,\"3836\":1555270151976763392,\"3837\":1555266345528434688,\"3838\":1555264649989324800,\"3839\":1555257331738353664,\"3840\":1555255293524729856,\"3841\":1555253770518405120,\"3842\":1555252957658112000,\"3843\":1555251968133808128,\"3844\":1555251362195247104,\"3845\":1555250716188581888,\"3846\":1555250097927110656,\"3847\":1555248905692086272,\"3848\":1555247814728470528,\"3849\":1555247630825013248,\"3850\":1555247603641712640,\"3851\":1555247359264784384,\"3852\":1555247100291870720,\"3853\":1555246099278995456,\"3854\":1555245463124824064,\"3855\":1555241326807060480,\"3856\":1555240679495929856,\"3857\":1555239078848765952,\"3858\":1555238918651629568,\"3859\":1555237679377399808,\"3860\":1555237490612731904,\"3861\":1555236168366686208,\"3862\":1555236101505355776,\"3863\":1555235741848010752,\"3864\":1555234426979770368,\"3865\":1555234093394190336,\"3866\":1555231492674134016,\"3867\":1555231420993478656,\"3868\":1555231414681014272,\"3869\":1555231357957185536,\"3870\":1555231253607194624,\"3871\":1555231206953963520,\"3872\":1555231056076410880,\"3873\":1555229961732194304,\"3874\":1555229033520062464,\"3875\":1555228742951256064,\"3876\":1555228303707017216,\"3877\":1555228026228588544,\"3878\":1555227723748065280,\"3879\":1555225412145405952,\"3880\":1555224391016931328,\"3881\":1555222105674977280,\"3882\":1555220227746664448,\"3883\":1555220046305181696,\"3884\":1555219900653862912,\"3885\":1555219782856851456,\"3886\":1555219165115551744,\"3887\":1555218967303753728,\"3888\":1555218350619430912,\"3889\":1555218263872765952,\"3890\":1555218235380875264,\"3891\":1555215938898755584,\"3892\":1555214019400810496,\"3893\":1555213282570514432,\"3894\":1555213231454552064,\"3895\":1555212380228960256,\"3896\":1555211768405827584,\"3897\":1555211358597160960,\"3898\":1555210958066294784,\"3899\":1555210716088598528,\"3900\":1555206957140680704,\"3901\":1555204755034722304,\"3902\":1555204414499164160,\"3903\":1555204178976423936,\"3904\":1555203906069741568,\"3905\":1555203741317566464,\"3906\":1555203587046887424,\"3907\":1555203195563118592,\"3908\":1555203105435836416,\"3909\":1555202945276329984,\"3910\":1555202736710422528,\"3911\":1555201883526107136,\"3912\":1555201781013028864,\"3913\":1555201393216131072,\"3914\":1555200972980371456,\"3915\":1555198537226387456,\"3916\":1555197747762020352,\"3917\":1555197297847328768,\"3918\":1555196763736342528,\"3919\":1555195061092196352,\"3920\":1555194091448811520,\"3921\":1555193658546294784,\"3922\":1555192171078340608,\"3923\":1555191931197693952,\"3924\":1555191107436290048,\"3925\":1555191096170479616,\"3926\":1555189409909276672,\"3927\":1555189182955503616,\"3928\":1555189075602178048,\"3929\":1555184920984682496,\"3930\":1555184653732028416,\"3931\":1555184514900582400,\"3932\":1555182895467315200,\"3933\":1555181501632942080,\"3934\":1555180488222035968,\"3935\":1555180458555613184,\"3936\":1555178785083113472,\"3937\":1555177954409332736,\"3938\":1555176811369218048,\"3939\":1555175075380338688,\"3940\":1555174968110878720,\"3941\":1555174187639209984,\"3942\":1555173963566915584,\"3943\":1555173247641161728,\"3944\":1555170564452515840,\"3945\":1555169785113182208,\"3946\":1555169329624371200,\"3947\":1555168278548471808,\"3948\":1555168058779525120,\"3949\":1555167787605233664,\"3950\":1555165846510751744,\"3951\":1555165337112530944,\"3952\":1555165192924831744,\"3953\":1555162977254391808,\"3954\":1555162714733006848,\"3955\":1555161230607777792,\"3956\":1555158687773229056,\"3957\":1555158033004724224,\"3958\":1555157899948818432,\"3959\":1555157065131298816,\"3960\":1555156719885492224,\"3961\":1555155450995556352,\"3962\":1555155274020917248,\"3963\":1555155081980411904,\"3964\":1555154606044454912,\"3965\":1555154282038657024,\"3966\":1555153135496478720,\"3967\":1555152879358459904,\"3968\":1555152668116533248,\"3969\":1555152605470662656,\"3970\":1555152122827751424,\"3971\":1555152097120755712,\"3972\":1555152053936201728,\"3973\":1555151225103982592,\"3974\":1555150978747432960,\"3975\":1555150597149433856,\"3976\":1555150232064860160,\"3977\":1555149702697476096,\"3978\":1555149398035906560,\"3979\":1555148913782493184,\"3980\":1555147801557962752,\"3981\":1555145195234148352,\"3982\":1555144224714231808,\"3983\":1555143956614111232,\"3984\":1555143876838670336,\"3985\":1555143706495356928,\"3986\":1555141891812900864,\"3987\":1555141319676366848,\"3988\":1555140625653186560,\"3989\":1555139778533888000,\"3990\":1555139554767769600,\"3991\":1555139435934654464,\"3992\":1555139152135561216,\"3993\":1555138829111156736,\"3994\":1555138525649043456,\"3995\":1555138012203335680,\"3996\":1555136512567697408,\"3997\":1555136048174440448,\"3998\":1555135839843352576,\"3999\":1555135838857609216,\"4000\":1555134964127121408,\"4001\":1555134319928156160,\"4002\":1555133713612169216,\"4003\":1555133411550969856,\"4004\":1555131296053170176,\"4005\":1555131195222069248,\"4006\":1555130893794267136,\"4007\":1555129146388500480,\"4008\":1555128354340233216,\"4009\":1555128108503732224,\"4010\":1555127655908970496,\"4011\":1555126966491152384,\"4012\":1555126445692768256,\"4013\":1555126401535287296,\"4014\":1555126328071946240,\"4015\":1555126221201096704,\"4016\":1555126188162654208,\"4017\":1555123024881500160,\"4018\":1555122862587105280,\"4019\":1555122411443478528,\"4020\":1555119013126094848,\"4021\":1555114494996660224,\"4022\":1555113873476313088,\"4023\":1555113286785531904,\"4024\":1555112511707533312,\"4025\":1555111116220628992,\"4026\":1555110753358708736,\"4027\":1555110646349430784,\"4028\":1555109230616649728,\"4029\":1555109135024328704,\"4030\":1555108769641762816,\"4031\":1555108071277531136,\"4032\":1555107530749218816,\"4033\":1555106135442702336,\"4034\":1555105959676100608,\"4035\":1555105707715862528,\"4036\":1555105421039484928,\"4037\":1555104574884683776,\"4038\":1555104345552715776,\"4039\":1555104127406989312,\"4040\":1555103518092140544,\"4041\":1555102075922563072,\"4042\":1555101170439438336,\"4043\":1555101138512486400,\"4044\":1555100209516056576,\"4045\":1555099031281537024,\"4046\":1555098095113089024,\"4047\":1555097790358904832,\"4048\":1555096995492204544,\"4049\":1555096954962583552,\"4050\":1555096536874455040,\"4051\":1555096065774436352,\"4052\":1555095720570621952,\"4053\":1555095670616461312,\"4054\":1555095639494623232,\"4055\":1555095534242877440,\"4056\":1555095444807712768,\"4057\":1555095209926598656,\"4058\":1555095075570556928,\"4059\":1555094959266713600,\"4060\":1555094858410463232,\"4061\":1555094753410170880,\"4062\":1555094665124274176,\"4063\":1555094597881192448,\"4064\":1555094485511585792,\"4065\":1555094484245008384,\"4066\":1555094421896663040,\"4067\":1555094324123209728,\"4068\":1555094124021309440,\"4069\":1555094043893415936,\"4070\":1555093987098345472,\"4071\":1555093867774476288,\"4072\":1555093842822660096,\"4073\":1555093689298468864,\"4074\":1555093622894104576,\"4075\":1555093582700322816,\"4076\":1555093382518693888,\"4077\":1555093282232860672,\"4078\":1555093146769432576,\"4079\":1555092899624325120,\"4080\":1555092571201888256,\"4081\":1555091958321844224,\"4082\":1555091460365639680,\"4083\":1555090787318353920,\"4084\":1555089988752113664,\"4085\":1555089627396149248,\"4086\":1555089541727457280,\"4087\":1555089213820993536,\"4088\":1555088313282957312,\"4089\":1555087937699815424,\"4090\":1555086880462577664,\"4091\":1555086748367179776,\"4092\":1555086720407928832,\"4093\":1555085774076477440,\"4094\":1555085041222524928,\"4095\":1555085002794205184,\"4096\":1555084522563293184,\"4097\":1555084450165407744,\"4098\":1555084387833856000,\"4099\":1555083016980111360,\"4100\":1555082220565569536,\"4101\":1555081712870326272,\"4102\":1555081688241381376,\"4103\":1555079122791055360,\"4104\":1555078393535897600,\"4105\":1555078032158855168,\"4106\":1555077961669382144,\"4107\":1555076714312699904,\"4108\":1555075883454664704,\"4109\":1555074729022717952,\"4110\":1555073319896076288,\"4111\":1555073206578470912,\"4112\":1555073109618819072,\"4113\":1555073073103118336,\"4114\":1555073061468110848,\"4115\":1555072972540485632,\"4116\":1555072903242211328,\"4117\":1555072836330524672,\"4118\":1555072614292488192,\"4119\":1555071764933361664,\"4120\":1555071392021897216,\"4121\":1555069433441402880,\"4122\":1555069289308241920,\"4123\":1555061972483588096,\"4124\":1555061325436420096,\"4125\":1555056027233824768,\"4126\":1555040833744691200,\"4127\":1555037428884307968,\"4128\":1555036308552253440,\"4129\":1555031716372381696,\"4130\":1555024176137781248,\"4131\":1555020307894878208,\"4132\":1555015354488954880,\"4133\":1555014696524288000,\"4134\":1555010634030383104,\"4135\":1555010062569046016,\"4136\":1555003770404306944,\"4137\":1554998401888141312,\"4138\":1554989512484331520,\"4139\":1554985257119760384,\"4140\":1554984208589885440,\"4141\":1554977853988560896,\"4142\":1554977697398267904,\"4143\":1554968669574283264,\"4144\":1554967602467938304,\"4145\":1554965283621806080,\"4146\":1554964398757773312,\"4147\":1554963409325752320,\"4148\":1554955376927416320,\"4149\":1554955224967684096,\"4150\":1554955209960329216,\"4151\":1554954769776656384,\"4152\":1554954179222839296,\"4153\":1554953058412527616,\"4154\":1554952696884494336,\"4155\":1554952346110775296,\"4156\":1554951856362819584,\"4157\":1554947190027681792,\"4158\":1554947171329376256,\"4159\":1554947130447495168,\"4160\":1554945886744186880,\"4161\":1554943957313912832,\"4162\":1554940473357344768,\"4163\":1554935935300665344,\"4164\":1554932017342578688,\"4165\":1554930832753807360,\"4166\":1554929759095869440,\"4167\":1554927439276548096,\"4168\":1554925804731207680,\"4169\":1554925470789025792,\"4170\":1554925335430533120,\"4171\":1554925033604128768,\"4172\":1554924328852094976,\"4173\":1554922799667503104,\"4174\":1554921749074026496,\"4175\":1554921120905760768,\"4176\":1554920465453535232,\"4177\":1554920240940826624,\"4178\":1554919792158691328,\"4179\":1554919572913930240,\"4180\":1554919550172495872,\"4181\":1554918854165422080,\"4182\":1554918698191831040,\"4183\":1554918313272266752,\"4184\":1554917658948255744,\"4185\":1554917350310395904,\"4186\":1554916934776487936,\"4187\":1554916841855848448,\"4188\":1554916614562275328,\"4189\":1554916086897934336,\"4190\":1554914919761453056,\"4191\":1554914363928100864,\"4192\":1554914152052817920,\"4193\":1554914010465800192,\"4194\":1554913407270354944,\"4195\":1554910877131984896,\"4196\":1554910708340490240,\"4197\":1554910701755502592,\"4198\":1554910206764765184,\"4199\":1554909529577512960,\"4200\":1554909353592860672,\"4201\":1554909245790896128,\"4202\":1554909038470746112,\"4203\":1554908266764931072,\"4204\":1554908064335237120,\"4205\":1554908019191943168,\"4206\":1554907619403485184,\"4207\":1554907177579528192,\"4208\":1554906423393386496,\"4209\":1554905444610703360,\"4210\":1554905114531577856,\"4211\":1554904346176929792,\"4212\":1554904303579660288,\"4213\":1554904155625558016,\"4214\":1554903921407266816,\"4215\":1554903129673666560,\"4216\":1554901550665015296,\"4217\":1554899262617653248,\"4218\":1554898069640151040,\"4219\":1554895525392138240,\"4220\":1554895519801024512,\"4221\":1554895023048630272,\"4222\":1554894614267568128,\"4223\":1554894090600325120,\"4224\":1554893836513599488,\"4225\":1554892872708669440,\"4226\":1554892656282681344,\"4227\":1554891245608210432,\"4228\":1554890637715054592,\"4229\":1554889457706434560,\"4230\":1554888810739154944,\"4231\":1554888288187596800,\"4232\":1554887674498007040,\"4233\":1554887434168573952,\"4234\":1554884564845297664,\"4235\":1554883393925554176,\"4236\":1554883093852479488,\"4237\":1554882467999408128,\"4238\":1554882223177965568,\"4239\":1554881430416723968,\"4240\":1554881056008187904,\"4241\":1554880361267593216,\"4242\":1554879559425822720,\"4243\":1554876888396562432,\"4244\":1554876236282863616,\"4245\":1554875536480018432,\"4246\":1554875263674187776,\"4247\":1554875260260044800,\"4248\":1554875116768608256,\"4249\":1554875042147827712,\"4250\":1554873915180302336,\"4251\":1554873871156723712,\"4252\":1554872532582400000,\"4253\":1554872252679815168,\"4254\":1554871513584701440,\"4255\":1554869975638474752,\"4256\":1554869155698016256,\"4257\":1554867028175069184,\"4258\":1554866394885488640,\"4259\":1554866358986444800,\"4260\":1554864281786748928,\"4261\":1554864142984642560,\"4262\":1554863391801577472,\"4263\":1554863265620049920,\"4264\":1554863081024589824,\"4265\":1554862857627598848,\"4266\":1554862669466853376,\"4267\":1554861807709339648,\"4268\":1554861376585220096,\"4269\":1554861159978770432,\"4270\":1554860847461179392,\"4271\":1554859470001475584,\"4272\":1554858371622359040,\"4273\":1554857741767802880,\"4274\":1554857391572795392,\"4275\":1554857027855335424,\"4276\":1554856466481307648,\"4277\":1554856273216241664,\"4278\":1554855618275676160,\"4279\":1554854432843747328,\"4280\":1554854317353586688,\"4281\":1554853584608673792,\"4282\":1554853500152336384,\"4283\":1554852946457812992,\"4284\":1554852816983937024,\"4285\":1554851525855526912,\"4286\":1554850987222917120,\"4287\":1554849169902297088,\"4288\":1554847720237588480,\"4289\":1554847318733688832,\"4290\":1554847181386940416,\"4291\":1554845904175259648,\"4292\":1554845844062470144,\"4293\":1554845034851213312,\"4294\":1554844905943564288,\"4295\":1554843910261932032,\"4296\":1554843537736351744,\"4297\":1554840867164360704,\"4298\":1554840769541840896,\"4299\":1554840595432177664,\"4300\":1554840044241911808,\"4301\":1554839916168859648,\"4302\":1554839451213381632,\"4303\":1554839139752652800,\"4304\":1554838957422219264,\"4305\":1554838355950637056,\"4306\":1554838024537509888,\"4307\":1554837697813917696,\"4308\":1554837432276684800,\"4309\":1554836957687005184,\"4310\":1554835507216994304,\"4311\":1554835264660328448,\"4312\":1554835221819731968,\"4313\":1554835162839465984,\"4314\":1554835145458212864,\"4315\":1554835123329064960,\"4316\":1554831323415490560,\"4317\":1554830864189575168,\"4318\":1554829962636472320,\"4319\":1554829815449931776,\"4320\":1554829087671169024,\"4321\":1554827387468058624,\"4322\":1554825762682769408,\"4323\":1554825674224910336,\"4324\":1554825642171961344,\"4325\":1554825577894330368,\"4326\":1554825577231552512,\"4327\":1554825410940002304,\"4328\":1554825293419778048,\"4329\":1554825089337606144,\"4330\":1554824984425480192,\"4331\":1554824889399250944,\"4332\":1554824875520299008,\"4333\":1554824829877989376,\"4334\":1554824799146323968,\"4335\":1554824748428697600,\"4336\":1554824681747664896,\"4337\":1554824624193474560,\"4338\":1554824399785586688,\"4339\":1554824354432552960,\"4340\":1554824304205766656,\"4341\":1554824240989319168,\"4342\":1554823991629451264,\"4343\":1554823249082605568,\"4344\":1554823137191010304,\"4345\":1554822970660360192,\"4346\":1554822847855337472,\"4347\":1554822673993068544,\"4348\":1554821956616146944,\"4349\":1554821258285502464,\"4350\":1554820786933735424,\"4351\":1554820709485928448,\"4352\":1554820531186286592,\"4353\":1554820392237248512,\"4354\":1554820342190948352,\"4355\":1554816629770444800,\"4356\":1554816429769252864,\"4357\":1554816276471681024,\"4358\":1554815936988856320,\"4359\":1554815491369324544,\"4360\":1554815003668135936,\"4361\":1554814620853993472,\"4362\":1554814505036693504,\"4363\":1554814099069882368,\"4364\":1554813907788877824,\"4365\":1554813806672596992,\"4366\":1554813725508571136,\"4367\":1554813586194792448,\"4368\":1554813299744800768,\"4369\":1554813174087655424,\"4370\":1554812936102838272,\"4371\":1554812868356349952,\"4372\":1554812801448902656,\"4373\":1554812726647611392,\"4374\":1554812455939092480,\"4375\":1554812098168754176,\"4376\":1554812049401778176,\"4377\":1554811872351866880,\"4378\":1554811798313918464,\"4379\":1554810881116078080,\"4380\":1554810633786466304,\"4381\":1554810030259568640,\"4382\":1554807692920766464,\"4383\":1554807550247313408,\"4384\":1554807534371966976,\"4385\":1554806583829446656,\"4386\":1554806541835968512,\"4387\":1554806450366681088,\"4388\":1554806099894747136,\"4389\":1554806099471208448,\"4390\":1554805150509944832,\"4391\":1554804475784740864,\"4392\":1554804208410497024,\"4393\":1554803817425899520,\"4394\":1554801857461207040,\"4395\":1554801255620530176,\"4396\":1554800801729724416,\"4397\":1554800267329159168,\"4398\":1554799845730390016,\"4399\":1554798804939206656,\"4400\":1554798185935261696,\"4401\":1554797887225307136,\"4402\":1554797655632510976,\"4403\":1554796964734189568,\"4404\":1554796856193974272,\"4405\":1554796586932248576,\"4406\":1554796314440916992,\"4407\":1554796164574285824,\"4408\":1554795312786669568,\"4409\":1554794720462766080,\"4410\":1554794668562554880,\"4411\":1554793938686562304,\"4412\":1554793400167272448,\"4413\":1554792947694112768,\"4414\":1554792747147706368,\"4415\":1554791408111951872,\"4416\":1554790964002168832,\"4417\":1554790650343718912,\"4418\":1554790540369174528,\"4419\":1554790368180322304,\"4420\":1554790310588317696,\"4421\":1554789862812880896,\"4422\":1554789690523410432,\"4423\":1554789438236069888,\"4424\":1554789312625090560,\"4425\":1554788988187283456,\"4426\":1554788967979126784,\"4427\":1554788274752847872,\"4428\":1554788088794292224,\"4429\":1554787860460494848,\"4430\":1554787558718144512,\"4431\":1554787465952641024,\"4432\":1554787362571419648,\"4433\":1554786948564353024,\"4434\":1554786103110078464,\"4435\":1554785715841646592,\"4436\":1554785500401106944,\"4437\":1554785109202665472,\"4438\":1554784847402598400,\"4439\":1554784157557051392,\"4440\":1554783877993988096,\"4441\":1554783617787875328,\"4442\":1554783418755325952,\"4443\":1554783305131753472,\"4444\":1554782552447139840,\"4445\":1554782489037742080,\"4446\":1554782100057899008,\"4447\":1554782041039945728,\"4448\":1554782000061583360,\"4449\":1554781577946742784,\"4450\":1554780662858760192,\"4451\":1554780161714917376,\"4452\":1554779819296137216,\"4453\":1554779705676648448,\"4454\":1554778707788795904,\"4455\":1554778649164976128,\"4456\":1554778433309245440,\"4457\":1554778267999240192,\"4458\":1554778141675196416,\"4459\":1554778138995040256,\"4460\":1554778135379562496,\"4461\":1554778101862879232,\"4462\":1554778051082436608,\"4463\":1554777567802040320,\"4464\":1554777432208588800,\"4465\":1554777354395951104,\"4466\":1554777349111029760,\"4467\":1554776611374989312,\"4468\":1554776497801629696,\"4469\":1554776004161314816,\"4470\":1554775783595544576,\"4471\":1554775733179916288,\"4472\":1554775658554920960,\"4473\":1554775131767046144,\"4474\":1554775098518712320,\"4475\":1554774694976536576,\"4476\":1554773996087943168,\"4477\":1554773735835664384,\"4478\":1554773665497202688,\"4479\":1554773340077817856,\"4480\":1554773028235608064,\"4481\":1554772663498711040,\"4482\":1554772632880521216,\"4483\":1554772467201327104,\"4484\":1554772019346022400,\"4485\":1554771164572049408,\"4486\":1554771123782524928,\"4487\":1554770988902109184,\"4488\":1554770731585589248,\"4489\":1554769934298791936,\"4490\":1554768633062215680,\"4491\":1554768321983422464,\"4492\":1554767858600513536,\"4493\":1554767417963954176,\"4494\":1554766319274393600,\"4495\":1554766153855254528,\"4496\":1554765853220036608,\"4497\":1554765387874590720,\"4498\":1554765285294542848,\"4499\":1554765082739056640,\"4500\":1554764958662942720,\"4501\":1554764294016737280,\"4502\":1554763861085093888,\"4503\":1554763044194058240,\"4504\":1554762358064648192,\"4505\":1554762305824378880,\"4506\":1554761745159409664,\"4507\":1554761554939322368,\"4508\":1554760645769306112,\"4509\":1554760110320271360,\"4510\":1554760106612367360,\"4511\":1554759468705005568,\"4512\":1554758991976202240,\"4513\":1554758927639781376,\"4514\":1554758665240018944,\"4515\":1554758462952833024,\"4516\":1554758300004237312,\"4517\":1554757312325246976,\"4518\":1554757121086001152,\"4519\":1554756741191057408,\"4520\":1554755756930568192,\"4521\":1554755014110969856,\"4522\":1554754941398519808,\"4523\":1554754395887247360,\"4524\":1554753949986525184,\"4525\":1554753222811721728,\"4526\":1554752436572667904,\"4527\":1554752228992368640,\"4528\":1554750752471584768,\"4529\":1554750398535110656,\"4530\":1554750357292650496,\"4531\":1554750169228492800,\"4532\":1554750035895545856,\"4533\":1554749973744521216,\"4534\":1554749956875067392,\"4535\":1554749484063760384,\"4536\":1554749294770413568,\"4537\":1554748781551288320,\"4538\":1554748203605565440,\"4539\":1554748151734624256,\"4540\":1554748090858479616,\"4541\":1554748026547310592,\"4542\":1554747966161920000,\"4543\":1554747896305795072,\"4544\":1554747830568353792,\"4545\":1554747760276127744,\"4546\":1554747351927033856,\"4547\":1554747247434366976,\"4548\":1554745680635338752,\"4549\":1554745475730968576,\"4550\":1554745332243767296,\"4551\":1554744948796399616,\"4552\":1554743578127212544,\"4553\":1554743515757903872,\"4554\":1554743273234829312,\"4555\":1554741633626816512,\"4556\":1554740126550560768,\"4557\":1554739926125760512,\"4558\":1554739517940195328,\"4559\":1554738972546539520,\"4560\":1554738893982932992,\"4561\":1554737862293209088,\"4562\":1554737243566362624,\"4563\":1554735966472085504,\"4564\":1554735948960784384,\"4565\":1554735947413176320,\"4566\":1554735759818620928,\"4567\":1554735453118529536,\"4568\":1554735443136192512,\"4569\":1554734810131734528,\"4570\":1554734371969662976,\"4571\":1554734274032590848,\"4572\":1554733314564554752,\"4573\":1554733053494403072,\"4574\":1554732574689443840,\"4575\":1554732329196740608,\"4576\":1554731771115225088,\"4577\":1554730661495410688,\"4578\":1554730211597586432,\"4579\":1554729562080174080,\"4580\":1554729093857435648,\"4581\":1554728958880612352,\"4582\":1554727898711576576,\"4583\":1554726841772023808,\"4584\":1554726590654959616,\"4585\":1554726355853627392,\"4586\":1554725439599435776,\"4587\":1554725366044004352,\"4588\":1554724189541744640,\"4589\":1554723970548699136,\"4590\":1554722830654242816,\"4591\":1554722351207616512,\"4592\":1554721500996984832,\"4593\":1554720326709288960,\"4594\":1554719466797293568,\"4595\":1554718940496105472,\"4596\":1554717766523015168,\"4597\":1554717604618575872,\"4598\":1554717574407020544,\"4599\":1554716689337655296,\"4600\":1554716381962293248,\"4601\":1554715101596467200,\"4602\":1554714732828950528,\"4603\":1554714297980395520,\"4604\":1554714059471200256,\"4605\":1554713631694233600,\"4606\":1554712843437723648,\"4607\":1554711896250634240,\"4608\":1554711804013576192,\"4609\":1554711445836816384,\"4610\":1554710920110252032,\"4611\":1554710888313196544,\"4612\":1554709244364132352,\"4613\":1554708959176675328,\"4614\":1554708618041298944,\"4615\":1554707960097828864,\"4616\":1554707579426992128,\"4617\":1554707436271026176,\"4618\":1554706442460037120,\"4619\":1554706296670195712,\"4620\":1554706027442241536,\"4621\":1554704243826823168,\"4622\":1554704111563595776,\"4623\":1554703008604102656,\"4624\":1554702333577150464,\"4625\":1554701125781176320,\"4626\":1554701092881108992,\"4627\":1554700773983911936,\"4628\":1554698429091442688,\"4629\":1554697466905350144,\"4630\":1554697407363153920,\"4631\":1554696312964218880,\"4632\":1554695248365985792,\"4633\":1554695199330340864,\"4634\":1554695069982228480,\"4635\":1554695001199841280,\"4636\":1554694907486502912,\"4637\":1554694569500897280,\"4638\":1554694071809105920,\"4639\":1554693967874244608,\"4640\":1554693495687974912,\"4641\":1554693275319246848,\"4642\":1554693154535784448,\"4643\":1554693052094087168,\"4644\":1554692925602365440,\"4645\":1554692889975947264,\"4646\":1554692857457508352,\"4647\":1554692432574533632,\"4648\":1554690673508581376,\"4649\":1554690307333160960,\"4650\":1554689632960499712,\"4651\":1554689566824620032,\"4652\":1554689495647363072,\"4653\":1554689401086787584,\"4654\":1554689059997597696,\"4655\":1554688904581857280,\"4656\":1554688861569171456,\"4657\":1554688695550504960,\"4658\":1554688562922135552,\"4659\":1554688236685082624,\"4660\":1554684901747818496,\"4661\":1554684467146792960,\"4662\":1554683698901041152,\"4663\":1554683625207209984,\"4664\":1554683551077273600,\"4665\":1554682464236437504,\"4666\":1554678544923594752,\"4667\":1554678453177286656,\"4668\":1554678221798400000,\"4669\":1554676028567863296,\"4670\":1554675750741356544,\"4671\":1554675349258371072,\"4672\":1554674844339675136,\"4673\":1554672615503060992,\"4674\":1554665920831832064,\"4675\":1554663850615742464,\"4676\":1554661276697100288,\"4677\":1554654394930577408,\"4678\":1554652780295495680,\"4679\":1554648838211833856,\"4680\":1554642745213558784,\"4681\":1554638440527962112,\"4682\":1554638302266941440,\"4683\":1554637878625542144,\"4684\":1554637068256559104,\"4685\":1554635445933334528,\"4686\":1554630465654505472,\"4687\":1554619892044861440,\"4688\":1554618074481016832,\"4689\":1554615955405275136,\"4690\":1554614885547393024,\"4691\":1554614076109737984,\"4692\":1554612845341540352,\"4693\":1554610609047670784,\"4694\":1554609718651506688,\"4695\":1554609029619523584,\"4696\":1554607749148905472,\"4697\":1554606539872288768,\"4698\":1554606340001173504,\"4699\":1554603566140198912,\"4700\":1554602830664802304,\"4701\":1554602151254556672,\"4702\":1554602070724026368,\"4703\":1554601323043377152,\"4704\":1554600627451449344,\"4705\":1554599767337992192,\"4706\":1554599480476975104,\"4707\":1554597692801794048,\"4708\":1554597548131745792,\"4709\":1554597054571225088,\"4710\":1554597018705747968,\"4711\":1554594793111654400,\"4712\":1554593692190752768,\"4713\":1554591385281593344,\"4714\":1554591147208675328,\"4715\":1554590639408484352,\"4716\":1554589306408341504,\"4717\":1554589166352187392,\"4718\":1554589021396824064,\"4719\":1554588484404449280,\"4720\":1554587978223288320,\"4721\":1554586355518300160,\"4722\":1554585575214272512,\"4723\":1554585295580004352,\"4724\":1554584412356050944,\"4725\":1554583820158001152,\"4726\":1554583020010901504,\"4727\":1554582994836414464,\"4728\":1554582665101180928,\"4729\":1554582530015248384,\"4730\":1554582068595724288,\"4731\":1554581905239969792,\"4732\":1554581573659410432,\"4733\":1554581240686297088,\"4734\":1554581013409546240,\"4735\":1554579339567661056,\"4736\":1554579142963863552,\"4737\":1554578608420683776,\"4738\":1554578605518249984,\"4739\":1554577906474655744,\"4740\":1554577672927416320,\"4741\":1554577036416618496,\"4742\":1554576134330896384,\"4743\":1554576016806387712,\"4744\":1554575519135440896,\"4745\":1554575508922400768,\"4746\":1554575385966297088,\"4747\":1554575319453032448,\"4748\":1554574477953990656,\"4749\":1554574225763090432,\"4750\":1554573928336691200,\"4751\":1554573789152813056,\"4752\":1554573719493910528,\"4753\":1554573632428449792,\"4754\":1554573466669662208,\"4755\":1554573380803764224,\"4756\":1554573326240071680,\"4757\":1554572799079071744,\"4758\":1554572159581814784,\"4759\":1554571989330710528,\"4760\":1554571875455483904,\"4761\":1554571726410981376,\"4762\":1554571640062763008,\"4763\":1554571502409981952,\"4764\":1554571371363041280,\"4765\":1554571349196242944,\"4766\":1554570941488840704,\"4767\":1554570866075217920,\"4768\":1554570354005360640,\"4769\":1554570096919646208,\"4770\":1554569825044905984,\"4771\":1554568595971215360,\"4772\":1554567302422609920,\"4773\":1554567192582258688,\"4774\":1554567123468443648,\"4775\":1554566822401277952,\"4776\":1554566359635435520,\"4777\":1554566196808269824,\"4778\":1554565885150609408,\"4779\":1554565623275044864,\"4780\":1554565609727397888,\"4781\":1554565491808784384,\"4782\":1554565373692747776,\"4783\":1554565016489279488,\"4784\":1554564794887421952,\"4785\":1554564582940844032,\"4786\":1554564046287953920,\"4787\":1554563834324652032,\"4788\":1554563551221760000,\"4789\":1554563249894555648,\"4790\":1554563096756293632,\"4791\":1554560269271048192,\"4792\":1554560172017811456,\"4793\":1554560151427993600,\"4794\":1554560080577794048,\"4795\":1554559331294756864,\"4796\":1554559036997226496,\"4797\":1554559032274345984,\"4798\":1554557971069374464,\"4799\":1554556555688910848,\"4800\":1554556148744916992,\"4801\":1554555960462565376,\"4802\":1554555643092140032,\"4803\":1554555495012343808,\"4804\":1554554904034811904,\"4805\":1554554849752223744,\"4806\":1554554644755632128,\"4807\":1554553914145529856,\"4808\":1554553577816920064,\"4809\":1554553518006075392,\"4810\":1554553249323253760,\"4811\":1554553221947002880,\"4812\":1554553045366853632,\"4813\":1554552991683936256,\"4814\":1554552365029724160,\"4815\":1554552307462938624,\"4816\":1554551906302820352,\"4817\":1554551329720340480,\"4818\":1554551325458849792,\"4819\":1554550925813075968,\"4820\":1554550700868247552,\"4821\":1554550433070415872,\"4822\":1554549729916223488,\"4823\":1554549643740061696,\"4824\":1554549440316317696,\"4825\":1554549359580160000,\"4826\":1554548681818488832,\"4827\":1554547421912485888,\"4828\":1554547350294740992,\"4829\":1554546962938171392,\"4830\":1554546282605207552,\"4831\":1554545745671647232,\"4832\":1554545706051969024,\"4833\":1554545190920245248,\"4834\":1554544542657003520,\"4835\":1554544471437606912,\"4836\":1554543708581797888,\"4837\":1554543237129535488,\"4838\":1554543236122804224,\"4839\":1554542950096543744,\"4840\":1554542637566332928,\"4841\":1554542089882435584,\"4842\":1554541886446178304,\"4843\":1554541029298212864,\"4844\":1554540643040591872,\"4845\":1554540517962178560,\"4846\":1554540287493562368,\"4847\":1554540176826945536,\"4848\":1554540087072804864,\"4849\":1554540044010110976,\"4850\":1554539314142388224,\"4851\":1554539214624153600,\"4852\":1554539206222946304,\"4853\":1554539165949349888,\"4854\":1554539112664817664,\"4855\":1554539059573293056,\"4856\":1554539019513495552,\"4857\":1554539007748579328,\"4858\":1554538894305234944,\"4859\":1554538875758022656,\"4860\":1554538800491233280,\"4861\":1554538780253634560,\"4862\":1554538774037667840,\"4863\":1554538758644580352,\"4864\":1554538727535435776,\"4865\":1554538715862765568,\"4866\":1554538696090714112,\"4867\":1554538271279128576,\"4868\":1554537633778483200,\"4869\":1554536944335552512,\"4870\":1554536733772984320,\"4871\":1554536249469321216,\"4872\":1554535866445402112,\"4873\":1554535404321251328,\"4874\":1554534886828122112,\"4875\":1554534825268215808,\"4876\":1554534153915359232,\"4877\":1554533761794072576,\"4878\":1554532762673111040,\"4879\":1554532268265377792,\"4880\":1554532226620178432,\"4881\":1554530216835534848,\"4882\":1554529005164023808,\"4883\":1554528762456379392,\"4884\":1554528652737536000,\"4885\":1554528478372007936,\"4886\":1554527905132253184,\"4887\":1554527789856051200,\"4888\":1554527634888982528,\"4889\":1554526464267227136,\"4890\":1554525020025720832,\"4891\":1554524966569271296,\"4892\":1554524532714635264,\"4893\":1554524433955569664,\"4894\":1554523740372959232,\"4895\":1554523595962974208,\"4896\":1554523496755216384,\"4897\":1554523092919148544,\"4898\":1554522306642202624,\"4899\":1554521869461618688,\"4900\":1554521604608196608,\"4901\":1554521163749023744,\"4902\":1554520500147200000,\"4903\":1554520489074327552,\"4904\":1554520326926655488,\"4905\":1554519449943818240,\"4906\":1554519410077061120,\"4907\":1554519341718450176,\"4908\":1554519169512660992,\"4909\":1554518736563994624,\"4910\":1554518265938026496,\"4911\":1554517635156656128,\"4912\":1554517312392368128,\"4913\":1554516660421365760,\"4914\":1554516659997736960,\"4915\":1554516323786526720,\"4916\":1554516046807179264,\"4917\":1554515819991801856,\"4918\":1554515738001563648,\"4919\":1554515408891305984,\"4920\":1554515092099796992,\"4921\":1554514940857401344,\"4922\":1554514586954596352,\"4923\":1554514249975828480,\"4924\":1554513092356227072,\"4925\":1554512895039373312,\"4926\":1554512107630116864,\"4927\":1554511972942626816,\"4928\":1554511937723146240,\"4929\":1554511554326179840,\"4930\":1554510730334011392,\"4931\":1554509836968427520,\"4932\":1554509776431742976,\"4933\":1554509732836171776,\"4934\":1554509479911346176,\"4935\":1554508531159760896,\"4936\":1554508215945142272,\"4937\":1554507686431150080,\"4938\":1554507669574131712,\"4939\":1554507374265786368,\"4940\":1554506952306204672,\"4941\":1554506265904160768,\"4942\":1554505425168568320,\"4943\":1554505114249052160,\"4944\":1554503024973938688,\"4945\":1554502879318315008,\"4946\":1554502403889807360,\"4947\":1554502371946172416,\"4948\":1554502196384993280,\"4949\":1554501332723179520,\"4950\":1554501137616740352,\"4951\":1554501006838431744,\"4952\":1554500983060893696,\"4953\":1554500874185089024,\"4954\":1554500278094905344,\"4955\":1554500207177596928,\"4956\":1554500163846262784,\"4957\":1554499852234637312,\"4958\":1554498498958987264,\"4959\":1554498360329003008,\"4960\":1554497190243864576,\"4961\":1554495902836031488,\"4962\":1554495320146337792,\"4963\":1554495310986203136,\"4964\":1554494846739615744,\"4965\":1554494190842691584,\"4966\":1554493620186669056,\"4967\":1554492944031399936,\"4968\":1554492463200571392,\"4969\":1554492105506304000,\"4970\":1554491850052014080,\"4971\":1554491572502372352,\"4972\":1554491545810014208,\"4973\":1554491467485298688,\"4974\":1554491022822064128,\"4975\":1554490944380354560,\"4976\":1554490738594938880,\"4977\":1554490681925713920,\"4978\":1554490676796354560,\"4979\":1554490652188082176,\"4980\":1554490500526350336,\"4981\":1554490480792068096,\"4982\":1554490433421590528,\"4983\":1554490355508191232,\"4984\":1554490086099718144,\"4985\":1554490055917436928,\"4986\":1554489348749463552,\"4987\":1554489145971572736,\"4988\":1554489012190150656,\"4989\":1554488888789536768,\"4990\":1554488563089162240,\"4991\":1554488372730683392,\"4992\":1554487803244847104,\"4993\":1554487719132282880,\"4994\":1554487524592164864,\"4995\":1554487480501559296,\"4996\":1554487035519442944,\"4997\":1554486456894242816,\"4998\":1554486328292741120,\"4999\":1554486121865912320},\"full_text\":{\"0\":\"#Pelosi airplane landed safely in #Taiwan \\ud83c\\uddf9\\ud83c\\uddfc \\n1) - Both \\ud83c\\udde8\\ud83c\\uddf3 & \\ud83c\\uddfa\\ud83c\\uddf8 are playing \\\"win win\\\" on financial markets. 2) - Taiwan may be the future Asian Cuba 3) - \\ud83c\\uddfa\\ud83c\\uddf8 & \\ud83c\\udde8\\ud83c\\uddf3 need an Asian #NATO \\/ #5G\\nWhat's your thoughts?\",\"1\":\"Watch the video of the beginning of the Chinese bombing of Taiwan during Pelosi visit from here : https:\\/\\/t.co\\/twah6WU4fZ\\n\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\u0640\\n#Pelosi #\\u30de\\u30c4\\u30b3\\u306e\\u77e5\\u3089\\u306a\\u3044\\u4e16\\u754c #Yediiklim #BadDecisionsTrailer1 #LawnBowls #\\u795d_CALL119_MV900\\u4e07\\u56de #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/m4CXfyZRS7\",\"2\":\"#Pelosi \\n#Taipei \\n#taiwan\\n#XiJinping \\n#China \\nOn a verge of another war https:\\/\\/t.co\\/DuqDiSnWcd\",\"3\":\"#HOBIPALOOZA #LaAcademiaExpulsion #WEURO2022 #jhopeAtLollapalooza #SuzukiPakistan #Fantastico #Taiwan #breastfeeding #Kosovo #BORNPINK strong \\u270d\\ufe0f\\ud83d\\udc9c https:\\/\\/t.co\\/GtZeNL24rm\",\"4\":\"#Pelosi\\n#china\\nChina Time \\u270c\\ufe0f https:\\/\\/t.co\\/tEDjzTlszu\",\"5\":\"V382 Intro Logo Animation Blue Smoke \\ud83d\\udc99\\n\\nIf you are looking for a professional logo animation or introduction \\/ outro for your business then your in the right place will animate your logo professionally with super fast turning on time.\\n\\nhttps:\\/\\/t.co\\/CGH6TCZ2DL\\n\\n#YK #Taiwan https:\\/\\/t.co\\/406MoDCb4u\",\"6\":\"TWINNING FOR \\\"AFRO IN SPACE\\\"\\ud83d\\udef0\\ufe0f\\n\\\"SENORITA\\\" COUNTDOWN \\ud83d\\udc83\\u2764\\ufe0f\\ud83d\\udd7a\\n12 DAYS TO GO \\ud83d\\ude80\\ud83d\\udc97\\nPre-Save here\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/p4wmtyOZGp\\n#fashion #Twins #models #RETWEEET #PRESALE #sellingcontent #Sales #Taiwan #andAUDITION #BB24 #BBNajia #OhmNanon1stFM #music #INDvsWI #art https:\\/\\/t.co\\/p1MDqaftsm\",\"7\":\"When you're missing her but she's far.\\n#Taiwan\\n#CoupleGoals https:\\/\\/t.co\\/SjxicXQG2L\",\"8\":\"\\ud83e\\udd14\\n\\n#China's Mortgage Crisis, Banks are Failing, Protests Everywhere. China's... https:\\/\\/t.co\\/cVpMoxMuos \\n\\n#ChinaTaiwanCrisis\",\"9\":\"Twitter will make laugh and scared on the #Pelosi Taiwan visit\",\"10\":\"@flightradar24 I hope she makes it, otherwise it will be the official start of the #WWIII\",\"11\":\"Who invited Mrs #Pelosi to Taiwan\",\"12\":\"There is nothing to worry about it. We have Instagram Facebook & Tiktok\\n#WW3 #WWIII https:\\/\\/t.co\\/E2LjgrjORE\",\"13\":\"That would be a grave mistake.\\n#Pelosi #NancyPelosi https:\\/\\/t.co\\/2hK2izpvZf\",\"14\":\"Everyone knows #HongKong #Taiwan #Micau are part of #China, #America needs to stop this unnecessary meddling in other countries affairs, you will never hear china meddling in countries that what to break away from America or Britain,the world does not need another conflict\",\"15\":\"@renoomokri ...turns people off ke\\nYou are a learner. We multiply daily. The youths are taking back their country. Atiku can imortalize himself by stepping down to #Obidatti2023.\\n#TakeBackNaija \\n#Free&Fair election\\n#Consumption2ProductionFormular\\n@PeterObi \\n#UKNews \\n@BBCWorld \\n#Pelosi\",\"16\":\"Wilson Chinonso Blog: Nigerian tribes, the list and facts https:\\/\\/t.co\\/E58nxeVz0j \\n\\n#China #ChinaTaiwan #ManUnited\",\"17\":\"@SpeakerPelosi And weren\\u2019t you leading #Jan6 hearings just a few weeks ago and then hopped a plane to #Taiwan? Why are we running interference for foreign countries while our own hemorrhages?\",\"18\":\"China is constantly provoking Taiwan.\\nScenes from the #Chinese air exercises in the #Taiwan Strait.\\n#ChinaTaiwanCrisis https:\\/\\/t.co\\/Fe9ayldxZS\",\"19\":\"China- PLA army in #Fujian again carried DF-26 ballistic missiles through the city at night!\\n\\n#China #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/P5UbQYI0Yq\",\"20\":\"China\\u2019s Largest-Ever #Taiwan Military Drills Draw To A Close. #NewsUpdate \\n\\nhttps:\\/\\/t.co\\/J23E2xwI7w\",\"21\":\"China- Pontoon erection drill! The boat bridge team built a 100-meter pontoon bridge across the Yellow River! #Taiwan is just around the corner! \\n#ChinaTaiwanCrisis #China https:\\/\\/t.co\\/IRw2ftT9nz\",\"22\":\"America won\\u2019t allow China threaten Taiwan \\u2013 Nancy Pelosi - https:\\/\\/t.co\\/EXVN1DOIf0 #News #china #NancyPelosi #Taiwan #US #BBnaija #Messi #Wizkid #Davido\",\"23\":\"A delegation of #Lithuanian officials, including Minister of Transport and Communications Agne Vaiciukevi\\u010di\\u016bt\\u0117, arrived in #Taiwan on a five-day visit. https:\\/\\/t.co\\/r7FkYFYnCe\",\"24\":\"#Latest-A 100-second review of the third day of the PLA's joint military drills around #Taiwan island on. The drills included mock anti-ship attacks, comprehensive offense and defense, and joint anti-submarine warfare maneuvers: state broadcaster\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/w5wrwDt9cT\",\"25\":\"PowerUpNG: RT @Asabari_CC: @IBEDC_NG is not concerned about customer's plight in Saki. Businesses are being destroyed by incompetent ibedc. 20mins of supply today after more than 1week blackout. Very unfortunate. @NERCNG do something now.\\n@PowerUpNG\\n#Taiwan\\n#CommonwealthGame\\u2026\",\"26\":\"With the arrival of remote working and its adoption, you'll soon be able to work from anywhere around the world, you can work and travel to the places you love, by becoming a digital nomad. Follow @Codemonk -tweets for info\\n\\n#remoteworking #dev #NFTs #Taiwan #China\\n#Solana\",\"27\":\"Sad that people who are either senile or approaching senility are deciding the fate of a world full of young people! #RussiaUkraineWar #Taiwan #Baiden\",\"28\":\"And #china got a perfect excuse to do military drills in Taiwan. #ChinaTaiwan #TaiwanStraitsCrisis #BidenRecession #ChinaTaiwanConflict #NancyPelosi\",\"29\":\"It's either @POTUS and #xinping played the world or its #china but the truth is #china won massively against #taiwan and @POTUS . @POTUS revealed @SpeakerPelosi travel arrangements knowing she won't back down or cancel her plans to travel to taiwan\",\"30\":\"This is the way I will fight government out of post if they don\\u2019t end ASUU strike in one week\\ud83d\\ude21\\n#Elections2022 #Taiwan #PremierLeague #doggy #nyayostadium #noelshouseparty #ASUU #ASUUstrike #BuhariMustGo https:\\/\\/t.co\\/5e7StO4jfZ\",\"31\":\"MY SET DIARY: EPISODE 4 |The hustle continues| https:\\/\\/t.co\\/6R4h5j9Gi7 via @YouTube \\n#GazaUnderAttack #PreyMovie #Taiwan #BBNajiaS7 #nsfwtwt #Wars1stBDFanmeet\",\"32\":\"@XHNews This is not surprising from China.Governor @PR_Paul_BIYA leadership reflects the #dictatorship in #China where they are trying to colonize #Taiwan but are being warn by America of which #Polosi visits the #country and left no matter the #noises from China.\",\"33\":\"This is not surprising from China.Governor @PR_Paul_BIYA leadership reflects the #dictatorship in #China where they are trying to colonize #Taiwan but are being warn by America of which #Polosi visits the #country and left no matter the #noises from China. https:\\/\\/t.co\\/cV2MAbz9si\",\"34\":\"Ou Yang Li-hsing, deputy head of Taiwan's defense ministry's research and development unit and head of Taiwan's missile program, was found dead in his hotel room in Pingtung, southern Taiwan.\\n\\n#Taiwan https:\\/\\/t.co\\/DiKgxF4oTL\",\"35\":\"The Israeli Air Force is working on targets in Gaza using GBU-31 JDAM guided bombs.\\n\\n#Israel #Kasarani #nyayostadium #Gaza #BadDecisions #Taiwan #Ukraine #TREASURE #Trending #trend https:\\/\\/t.co\\/Fh3oav9sPe\",\"36\":\"#Pelosi: \\\"When I was a little girl, I was told at the beach if I dug a hole deep enough we would reach #China. So we've always felt a connection there.\\\"\\n\\nhttps:\\/\\/t.co\\/fvGw0XdsYP https:\\/\\/t.co\\/C3z0q89HkK\",\"37\":\"Did you know you can raise funds for your incomplete project, health, and any other emergency online? Click the link for more https:\\/\\/t.co\\/ojVDaqT6Ck #Indiana #JUNGKOOK #nyayostadium #Nunez #LFC #andAUDITION #SitaRamam #FOREVER1 #WAFC #RHOBH #Taiwan #GoFundMe #help #TREASURE https:\\/\\/t.co\\/rPmfa5ojNK\",\"38\":\"After provoking #Taiwan, #NancyPelosi switched sides.\\n\\nPelosi's weird 'connection': Dig hole = Reach China\\n\\nPelosi says she has always felt a connection with #China through childhood hole digging... take from that what you will.\\n\\n#ChinaTaiwanCrisis #Pelosi https:\\/\\/t.co\\/fvGw0WVjKH\",\"39\":\"Taiwan: Chinese planes, ships carry out attack simulation exercise\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/iFl0xbm0Ow\\n\\nPlease follow us & retweet\\n#China #Drone #Foreign #Gist #news #Taiwan #US #bobojay #bobojaytv https:\\/\\/t.co\\/Jt6aduFcg8\",\"40\":\"Taiwan accuses Beijing of simulating invasion as US-China relations nosedive\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/IortearyBW\\n\\nPlease follow us & retweet\\n#Beijing #China #Foreign #news #Taiwan #bobojay https:\\/\\/t.co\\/cpsTb251y5\",\"41\":\"UN chief warns nuclear weapons are \\u2018loaded gun\\u2019 for humanity\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/cSMbwgBTbO\\n\\nPlease follow us & retweet\\n#AntonioGuterres #China #Foreign #news #Taiwan #UN #bobojay #bobojaytv\",\"42\":\"TAIPEI The deputy head of #Taiwan defence ministry's research and development unit was found dead on Saturday morning in a hotel room, succumbing to a heart attack.\\n#China #ChinaTaiwanConflict https:\\/\\/t.co\\/VDLfQwhCt5\",\"43\":\"I used to like China because of their industriousness and rich culture (and Kung Fu); but what is all this fuss about risking #WWIII over having to govern Taiwan? 1.4billion people not enough for you to govern?\\nAnd not giving good advice to Russia?\\nAlso, freedom of speech.\",\"44\":\"Saw this quote by Martin Luther King and I turned it to a song on the spot. I will call it Warriors \\ud83e\\udd77... #PreyMovie Soro Soke #BBNaija7 #LALISA #MUFC #binance @tyewoolove @KizzDaniel @DONJAZZY @olaoluwasanmi @BrymOlawale @HypeMan_Jay #Ukraine #Taiwan #FOREVER1 https:\\/\\/t.co\\/GdXquO0e9H\",\"45\":\"No matter how small do your part \\ud83e\\udd17 #BadDecisions #FULLIV #UkrainianArmy #Taiwan https:\\/\\/t.co\\/7S8nXC3rt6\",\"46\":\"Calls from USA Defense Ministry to Top Chinese Military officials being ignored \\u2013 Report https:\\/\\/t.co\\/SoAbONf1yX\\n#China #USA #Taiwan #Pelosi\",\"47\":\"North Korea has condemned US House Speaker Nancy #Pelosi\\u2019s recent visit to the Demilitarized Zone separating the two #Koreas, calling the American hero the \\\"Worst Destroyer of International #Peace and #Stability.\\n#NorthKorea #KimJongUn #Taiwan https:\\/\\/t.co\\/icicexbejC\",\"48\":\"The #Chinese IRBM DF-17 hypersonic warhead during the exercises of the #PLA Eastern Command Forces in the #Taiwan Strait. August 5, 2022.\\n\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/fv4KP5uO0f\",\"49\":\"Whatever your needs may be...\\n\\nGET at least 1 acre of farmland NOW,\\nClick here\\u27a1\\ufe0f\\u00a0 https:\\/\\/t.co\\/yhBXWin2rz\\n\\n#TOGFG #agrolyfe #agro #realestate #nigeria\\u00a0 #westafrica #Niger #Taiwan #China #BBNaija #investment #agriculture #agribusiness #africa #investor\\u00a0#farm #Chelsea #Fireboy https:\\/\\/t.co\\/M6OH6kpv3d\",\"50\":\"China's PLA released close-up images of the coastline of the country's #Taiwan region taken during military drills.\\n\\nThe exercises from August 4 to 7 around Taiwan island serve as a strong deterrent to collusion between the U.S. and Taiwan region.\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/oOXsd2vbNZ\",\"51\":\"Good morning people \\ud83e\\udd29\\n\\nHow about these baskets on your shopping list\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#SS9inManila #OP_FILMRED\\u30ad\\u30e3\\u30f3\\u30da\\u30fc\\u30f3 #Taiwan #binance #LALISA #FOREVER1 #\\u0e2a\\u0e30\\u0e43\\u0e20\\u0e49\\u0e23\\u0e48\\u0e21\\u0e44\\u0e17\\u0e23\\u0e17\\u0e2d\\u0e07 #\\u0e2a\\u0e30\\u0e43\\u0e20\\u0e49\\u0e27\\u0e31\\u0e12\\u0e19\\u0e01\\u0e34\\u0e15\\u0e34\\u0e1e\\u0e31\\u0e12\\u0e19\\u0e4c #\\u063a\\u0632\\u0629_\\u062a\\u062d\\u062a_\\u0627\\u0644\\u0642\\u0635\\u0641 #kruklaopenclass #ShopMyCloset #shopping #AmazonSpecials #AmazonPrime #AmazonWi https:\\/\\/t.co\\/s9I9YhCxlo\",\"52\":\"@SmallAlhaji_ @officialABAT If you check all the campaign videos of 2014 and 2019... You will see Asiwaju and Adams, very active and vocal promising impossible things. Now you are all removing yourselves from the disaster you brought on us. #EnoughIsEnough #PeterObi #Cheating #Taiwan #\",\"53\":\"Jankerewa\\ud83c\\udf4e\\ud83c\\udf39\\ud83d\\udc90\\ud83d\\udc90\\ud83d\\udc90\\ud83d\\ude47\\u200d\\u2640 available on EVERY PLATFORMS link \\ud83d\\udd17 on my bio.\\n.\\n.\\n#Taiwan #Cheating #PremierLeague #music #StrayKids https:\\/\\/t.co\\/ynx2fozb5i\",\"54\":\"@CaksusDas @Transfor108 goes deep on @MaameGraceGH #Cheating #Taiwan #FOREVER1 https:\\/\\/t.co\\/NCMJ0q5giu\",\"55\":\"Still taking practice audios from this coaching tip!\\n#VocalcarCoach\\nKanye Northerners Shettima Jackie Aina #TheChi Channels TV Soro Soke #BBNaijaJohnnieWalker #BB24 #Cheating #PremierLeague #Taiwan Obasanjo #BryannOnly #PiConsensus #binance #Sandman #weekendvibes #USA #Ukraine https:\\/\\/t.co\\/RsGGLqKP4f\",\"56\":\"The White House summoned Chinese ambassador Qin Gang on Thursday to condemn escalating actions against Taiwan and reiterate that the United States does not want a crisis in the region.\\n\\n#Taiwan\",\"57\":\"Did you know you can raise funds for your incomplete project, health, and any other emergency online? Click the link for more https:\\/\\/t.co\\/ojVDaqT6Ck #Pelosi #PLLOriginalSin #helpinghand #donate #KarachiRains #BB24 #RHOBH #midjourney #TREASUREinManila #Trending #trend #Yankees https:\\/\\/t.co\\/lpzUJdfPzo\",\"58\":\"\\ud83d\\udd25\\u2764\\ufe0f\\ud83e\\udd81 Out on all platforms globally.\\n\\n#Taiwan #PremierLeague #BBNaijaS7 #newsongalert #Naijaleaks #Afrobeats\\n#lovesongs #worldmusic #Trending\\n\\nhttps:\\/\\/t.co\\/XujdyI76mw via @amuse_io\",\"59\":\"After Ukraine, US fishes for new war in Taiwanese waters\\n'IN Nigeria, there are people who traditionally rejoice at the prospect of war. '\\n@lagmetropolitan\\n#Taiwan #Pelosi #US #lm #lagosmetropolitan #lagmetro #metro #lagos https:\\/\\/t.co\\/bWugJKdw4Z\",\"60\":\"#US & #NATO should leave us alone please with the present damages it created of war, insecurity, killed our leaders & stole our resources . Focus on your #Ukraine #Taiwan proxy war\\ud83e\\udd21\\ud83e\\udd21\\ud83e\\udd21 https:\\/\\/t.co\\/Ysaisq3VjW\",\"61\":\"The #Zionists blood thirsty vampires are back striking and killing defenseless #Palestinians, they get away with it, the West is silent busy with #RussiaInvadedUkraine #ChinaTaiwan. Hypocrisy of the highest order \\ud83e\\udd21\\ud83e\\udd21\\ud83e\\udd21 https:\\/\\/t.co\\/DasyV6eZOj\",\"62\":\"Xiaomi has created a helmet to control the smart home with the power of thought | Awixy's Blog\\n#Xiaomi #tech #TechNews #Google #UnitedKingdom #ChinaTaiwan #Russia #trend #Trending #ASUUstrike #viral \\n\\n https:\\/\\/t.co\\/aYrFdrVxNO https:\\/\\/t.co\\/mHTArfiaQM\",\"63\":\"@AJEnglish Hypocrisy! They were busy condemning #PLA military exercise in the #Taiwan strait.\",\"64\":\"The world has gone digital and the Gospel of our God must be preached in and out of season to the uttermost part of the Earth equipments and others are a need now, you can at your capacity be a Blessing in donation\\n\\n#Taiwan The United States Hamas Retire Chinese Valentine's Day https:\\/\\/t.co\\/PKT4eETeIw\",\"65\":\"@FoxNews Who cares! #SpeakerPelosi got to visit #Taiwan. Nancy had wanted to go for a long time and soon it had been too late for Nancy. So Nancy faced the now or never situation and jumped accordingly. Cause Nancy really wanted to go.\\n#Democrats #China\",\"66\":\"Once you find your person, there's nobody else you want \\ud83d\\udcaf\\n\\n#Kuda #Ashawo #trenches #BadDecisions #TheSandman #TaiwanStraitsCrisis #binance #wrestling #FOREVER1\",\"67\":\"Fine boy \\u2764\\u2764\\u2764\\u2764\\ud83d\\udc8b\\ud83d\\udc8b\\ud83d\\udc8b\\ud83d\\udc8b\\n@morrishills_ @kiaramoontv @davido @iamcardib \\n#KenyaDecides2022 #\\u30dd\\u30b1\\u30e2\\u30f3 #LALISA #FOREVER1_OUTNOW #China #BadDecisions #TheSandman #TaiwanStraitsCrisis #BadDecisionswithBTS #binance #FOREVER1 #WeLoveYouBamBam #BajrangPunia https:\\/\\/t.co\\/G0zzCuKFup\",\"68\":\"#MarvinInu token is still very much on track to invade mars!\\nWhen you have $Marvin safely secured in your crypto wallet, you can be assured of #1000x profit very soon\\n\\nhttps:\\/\\/t.co\\/CrEIDE4VLU\\n#BNB\\u00a0 #BSC @Marvin_Inu #ETH #BTC #WeLoveYouBamBam #TaiwanStraitsCrisis #BajrangPunia https:\\/\\/t.co\\/RPgFeJQ0op\",\"69\":\"Comment your opinion\\n#BadDecisions #TheSandman #TaiwanStraitsCrisis #BadDecisionswithBTS #binance #FOREVER1 #KenyaDecides2022 https:\\/\\/t.co\\/Cp9nEotCf4\",\"70\":\"Twitter said four\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\ude0d\\n\\nIsssa fridNight #BBNaija #BoycottRakshaBandhanMovie #Taiwan #knust https:\\/\\/t.co\\/HSqyDHXoAt\",\"71\":\"Performance can be measured in many ways... rounding up the week's project using @figma software. Remains one of my best tools...\\n#designer #uiuxdesign #DigitalMarketing #SEO #BBNaijaS7 #TaiwanStraitsCrisis #binance https:\\/\\/t.co\\/bu6Z3O81kg\",\"72\":\"The greatest mistake Bola Ahmed make, making Nigerian to believe on Buhari #BadDecisions #TheSandman #TaiwanStraitsCrisis #binance #FOREVER1 #BadDecisionswithBTS kuda #wrestling\",\"73\":\"Hellooooo, WE. ARE. HIRING! \\nAnd we are looking for YOU! Do you need some first working experience? Would you like to help us stopping child abuse? If the answer is YES, find out more on our Insta and FB page @NGOELITESTAR (Elite Star Foundation)\\n #TaiwanStraitsCrisis #Children https:\\/\\/t.co\\/541B1PcgCb\",\"74\":\"NEW: US-based #Snickers chocolate bar maker apologizes to #China for suggesting #Taiwan is a country.\\n#BadDecisions https:\\/\\/t.co\\/WAEr6vJVGb\",\"75\":\"Here I'm I Praying the Current ruckus between Israel \\ud83c\\uddee\\ud83c\\uddf1 and Gaza Strip ongoing right now does not get blown into #WWIII, \\n\\nI already identified a Snitch Country tho.......\\n#OOMQUOTES https:\\/\\/t.co\\/oEx6eiMows\",\"76\":\"We are always here to service you, book a session with us. Our results are guaranteed to satisfy you.\\n\\n.\\n.\\n.\\n.\\n.\\n#saynotopests|#BBNaijaLevelUp|#PeterObi4President2023 |#Taiwan |#pestcontrol |#BBNajiaS7 | https:\\/\\/t.co\\/dPuTvMfq4q\",\"77\":\"Hi guys\\u2026i am sirbiggie,I run a sparepart company were we sell car parts and accessories we also into major upgrades that will blow ya mind..we are CAC registered too #iphone14 #lagosstate #ChinaTaiwanCrisis #BBNajiaS7 pls help me retweet so I can pay salaries and feed family https:\\/\\/t.co\\/C2TDgF7Nrg\",\"78\":\"Appeasement is a poor strategy, as history has shown, most recently in Ukraine. But intentional provocation is also dangerous. @SpeakerPelosi\\u2019s #Taiwan trip seems to be exactly that. She needs to take several seats and leave foreign policy to the experts.\\n\\nhttps:\\/\\/t.co\\/LFgTD6WFrg\",\"79\":\"JS Tips: what's d best text-editor 4 JS\\n#Python #BigData #Analytics #AI #DataScience #IoT #Azure #RStats #DotNet #C #CPP #Java #CSharp #Flutter #SQL #PHP #BBNaijaS7 #JavaScript #ReactJS #Pelosi #MachineLearning #Serverless #DataScientist #Linux #Programming #Coding #100DaysofCode https:\\/\\/t.co\\/PTk5Jmo7kY\",\"80\":\"What's that one tech biz you'd love to start?\\n#Python #BigData #Analytics #AI #DataScience #IoT #Azure #RStats #DotNet #C #CPP #Java #CSharp #Flutter #SQL #PHP #BBNaijaS7 #JavaScript #ReactJS #MachineLearning #Serverless #DataScientist #Linux #pelosi #game #Coding #100DaysofCode https:\\/\\/t.co\\/6PzTwoecxo\",\"81\":\"@guardian Who cares. #SpeakerPelosi got her #Taiwan visit and that\\u2019s what counts here! She needed it.\\n#Democrats\",\"82\":\"Call me for your car upgrades\\u2026#lagosstate #BBNajiaS7 #ChinaTaiwanCrisis #Lexus https:\\/\\/t.co\\/ohdatFGn7a\",\"83\":\"#NEWS #NancyPelosi #Taiwan Pelosi praises Taiwan, says Asian trip wasn\\u2019t to change status quo https:\\/\\/t.co\\/K5tn3bZYek\",\"84\":\"Register at https:\\/\\/t.co\\/IIHcFl9pHm and use CODE;RL3271 to get a discount \\ud83d\\ude0d\\n\\nChina is holding its biggest-ever show of military force around Taiwan, including the firing of ballistic missiles. #ChinaTaiwanCrisis #\\uc18c\\ub140\\uc2dc\\ub300 #\\u8a2d\\u55b6\\u5b8c\\u4e86 https:\\/\\/t.co\\/49jpK5z2UX\",\"85\":\"As a pioneer of Pi ecosystem, intuitively, and with the brains behind it, I have always seen Pi as a success to top the chart in the crypto currency world; and that's what is playing out.\\nIt's a pity if you didn't key in. #ChinaTaiwanCrisis #binance #ChelseaFC #cryptocurrencies https:\\/\\/t.co\\/Okuj69KLRS\",\"86\":\"Question: The US, UN & some EU countries + all China allies supports 1 China & that Taiwan is part of China. So why the outcry if China holds military drills around China? Will the world react if US holds military drill around Hawai? A neutral question\\u270c\\ud83c\\udffc #TaiwanStraitsCrisis\",\"87\":\"https:\\/\\/t.co\\/cWiARiZKhE\\nThe E4C Solutions Library is a living database of products and services that are intended to be accessible and appropriate for those living in resource-constrained environments.\\n#davido #Pelosi #PeterObiForPresident2023 https:\\/\\/t.co\\/LrtIRHqFxS https:\\/\\/t.co\\/ehsicFJyep\",\"88\":\"#TaiwanStraitsCrisis\\nIg for sale 25k only #BBNaija #Ashawo https:\\/\\/t.co\\/2TBY9tpG5s\",\"89\":\"https:\\/\\/t.co\\/SjJ0J1Jrfr\\nThe E4C Solutions Library is a living database of products and services that are intended to be accessible and appropriate for those living in resource-constrained environments.\\n#Davido #Pelosi # https:\\/\\/t.co\\/LrtIRHqFxS https:\\/\\/t.co\\/ODS0jH3UZK\",\"90\":\"VOTE PETER OBI FOR PRESIDENT 2023.\\n\\n#BadDecisions #BadDecisionswithBTS #ChelseaFC #BibleSumett #ChinaTaiwanCrisis #Chinese #PeterObi4President2023 #Obidiots #OBIdientlyYUSful #OBIDIENTS #obikin https:\\/\\/t.co\\/89wMCfK63b\",\"91\":\"China is constantly provoking Taiwan.\\n\\nMore footages of the joint combat training exercises around Taiwan island conducted by #PLA Eastern Theater Command were released on Friday.\\n#China #Taiwan #Pelosi https:\\/\\/t.co\\/t3aiIMBGzU\",\"92\":\"@goal The premier league is back, now can y'all stop trending #WWIII because you were bored on Twitter. https:\\/\\/t.co\\/iOLLErI3Zk\",\"93\":\"The US and China out there in the china sea playing a mean game of Battleship. \\n#TaiwanStraitsCrisis\",\"94\":\"@idreesali114 @leeferran But at least #SpeakerPelosi got to visit #Taiwan. She was obsessed about it and the clock was ticking for Nancy\\ud83d\\ude44\\n#China #USA\",\"95\":\"Why Dr Sid & PETER obi is trending. Click to watch \\ud83d\\udc47 \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"96\":\"Why\\n #exoneratepingexpress is trending.\\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"97\":\"Dr Sid speaks to Nigerian youth about Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023 \\n\\n #OBIDIENTS\",\"98\":\"Dr Sid & Donjazzy endorses Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"99\":\"Tacha speaks & endorses Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023 \\n\\n #Ashawo\",\"100\":\"Fire boy dml endorses Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"101\":\"Like this tweet for a follow \\nGabriel Jesus Arsenal Manchester City Haaland Chainsawman #goodmorning #GoodFriday #fridaymorning #AskKTR #TheGreatIndianrun #Taiwan Qixi Festival Chines Valentine\\u2019s Day #\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3 #M\\u30b9\\u30c6 https:\\/\\/t.co\\/FcFymJMhdH\",\"102\":\"Like this tweet for a follow \\nGabriel Jesus Arsenal Manchester City Haaland Chainsawman #goodmorning #GoodFriday #fridaymorning #AskKTR #TheGreatIndianrun #Taiwan Qixi Festival Chines Valentine\\u2019s Day #\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3 #M\\u30b9\\u30c6 https:\\/\\/t.co\\/E6XPmZ4pnd\",\"103\":\"Life stay beautiful regardless of #TaiwanStraitsCrisis #Obidiots jackie Ainas galvanizing content even Big Wiz big bag as long as #Mandem #Badness stay #PoweredByData we keep the numbers numbering on... https:\\/\\/t.co\\/SNcjXSw4pD\",\"104\":\"Taiwan on high alert.\\n#Taiwan's government has condemned #China's war games around its main island, saying #Beijing is acting like Pyongyang by firing missiles into the Taiwan Strait.\\n#ChinaTaiwanConflict https:\\/\\/t.co\\/uqc3FNHJL9\",\"105\":\"Live scenes from Taiwanese parliament when #China imposes a trade embargo.\\n\\n #Taiwan #ChinaTaiwanCrisis #News https:\\/\\/t.co\\/ZIj4k14Ftz\",\"106\":\"The aircraft carrier USS Ronald Reagan has been ordered to remain in the #Taiwan area and monitor the situation, the White House said.\\n\\n#China #TaiwanStraitsCrisis https:\\/\\/t.co\\/IIOx4MDAOm\",\"107\":\"Taiwan Ministry of Defense:\\nA number of Chinese Navy ships and fighters cross the dividing line in the Taiwan Strait.\\nOur army has issued warnings and deployed missile systems on the ground to monitor the situation.\\n#Taiwan\",\"108\":\"Chinese Foreign Ministry:\\n\\n*We have decided to stop cooperation with the USA in the field of maritime safety.\\n\\n*We will cancel the dialogue between our military leaders and their American counterparts.\\n\\n*We will suspend the climate talks between Beijing and Washington.\\n#Taiwan\",\"109\":\"JUST IN: World Champion and Record holder, Tobi Amusan (@Evaglobal01), has qualified for the final of the Women\\u2019s 100m Hurdles at the ongoing 2022 Commonwealth Games (@birminghamcg22) with an easy win, clocking 12.40s in the process.\\n\\nTucker David Hundeyin #TaiwanStraitsCrisis https:\\/\\/t.co\\/8Xqw6R7zay\",\"110\":\"#China imposes sanctions on US speaker over visit to #Taiwan | TheCable https:\\/\\/t.co\\/mSmZKXqiuw https:\\/\\/t.co\\/k5tjgsoLCv\",\"111\":\"3. Has a bonder in it which keeps your hair from thinning or breaking.\\nAnd it strengthens the hair during bleaching.\\n\\n4. Does not contain Ammonia.\\n\\n \\ud83d\\udc49Send us a DM to get this product.\\n\\n#capitec #Taiwan\",\"112\":\"Let me be your Architectural Designer\\n#damola #Taiwan #Ashawo #Prey #BadDecisionsTODAY #Cucurella https:\\/\\/t.co\\/9fUMgjIO6g\",\"113\":\"Diane why!\\ud83d\\ude29\\n\\n#olamide #Modella #Taiwan #ASUU #BBNajiaS7 #BBNaijaS7 #BBNaija #Diana #ibadan https:\\/\\/t.co\\/aM3C65Hhkl\",\"114\":\"@thuanphat1975 @FWCOMMUNITY_Q2T @bsc_daily Fwc to the moon\\n#Taiwan \\n#Cryptocurency \\n#binance \\n#capitec \\n#bennyXBTSXSnoopDogg \\n#China \\n#BulletTrainMovie \\n#NFTGiveaway \\n#news \\n#Prey \\n#fwcarmy\",\"115\":\"Foreign used \\nGS350 AWD\\n2008\\nFull option \\nV6\\nAccident free \\n4.9m \\n@Anambra_girl @Obbyanuju @EOkala @oku_yungx @mr_geff1 @_debbii3e @ChefPreem @Abiike_Chopstix @chisomagbodike #EPL2022 #BulletTrainMovie #China #Cryptocurency #Taiwan @geme_nonyalim @Wizarab10 #ARSCRY #FridayVibe https:\\/\\/t.co\\/hRrooPQ70U\",\"116\":\"China's response to Pelosi's visit to #Taiwan so far:\\n1. Trade sanctions on Taiwanese goods and certain export ban to Taiwan . \\n2. Unprecedented military drills around Taiwan with missiles flying over the Island. \\n3. Sanction on Speaker Pelosi and immediate family. \\n4.....\",\"117\":\"Visionaries see no failure \\ud83e\\uddff\\n#Taiwan #BulletTrainMovie\",\"118\":\"Foreigner are giving us problem in this Nigeria #IPOB #Taiwan #iphone14 #peterpurrey #ondo https:\\/\\/t.co\\/6enx4qzLKR\",\"119\":\"KNUST where you people dey ? You boy drop #Attention it's \\ud83d\\udd25\\nFinally it's out \\ud83d\\udd25. #Attention @Swanskid_\\n https:\\/\\/t.co\\/kvy8Xksedh\\n\\nhttps:\\/\\/t.co\\/04yQI24Dnf\\n\\nhttps:\\/\\/t.co\\/aLHIAC5V1d\\n\\n#5thAugust6 Lyrical Joe #Taiwan #\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35 #YOUNGJAE_SUGAR_FansignInBKK #Prey #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 https:\\/\\/t.co\\/UeoFemMdYJ\",\"120\":\"We're not done with ukraine \\nNow Taiwan\\n\\n#Taiwan\",\"121\":\"Breaking: #China announces sanctions against U.S. Speaker #NancyPelosi and her immediate family following her controversial trip to #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 \\ud83c\\uddfa\\ud83c\\uddf8 \\ud83c\\uddf9\\ud83c\\uddfc https:\\/\\/t.co\\/iPJ7C81tQH\",\"122\":\"China-Taiwan: Tensions Rise As China Fires Missiles Into Taiwan Strait After Pelosi\\u2019s Visit #TaiwanStraitsCrisis #TaiwanStrait #TaiwanChinaCrisis #TaiwanChinaWar #Taiwan https:\\/\\/t.co\\/m9JAcVU9w4\",\"123\":\"The Taiwanese army has started the transfer of 155-mm howitzers M114 &amp;120-mm mortars closer to the areas of the exercises of the #PLA\\n\\nGround-based missile systems have also been deployed.\\n#Taiwan #China #ChinaTaiwanCrisis \\n\\nhttps:\\/\\/t.co\\/0x9UZXqgs4\",\"124\":\"If there is war between #China and #Taiwan, who you think they will blame again? https:\\/\\/t.co\\/SMudtOtjrp\",\"125\":\"First, the line of progress is never straight. For a period a movement may follow a straight line and then it encounters obstacles and the path bends. It is like curving around a mountain when you are approaching a city. \\n#Conzummate #marketing #Taiwan #Russia #Trump https:\\/\\/t.co\\/ux84VrdNeJ\",\"126\":\"@USUN @USAmbUN @biannagolodryga @AmanpourCoPBS we the so called Russia's unprovoked war, was provoked like the #Pelosi's visit to Taiwan, by #NATO expansionism and justified by US-EU intention to hide behind #Ukraine to fight the growing power of Russia and China.. we know everything behind the scene\",\"127\":\"For Enquiries\\n*Call: 09037284473\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 oshiomole tgif https:\\/\\/t.co\\/ZLI73IE4TU\",\"128\":\"\\ud83d\\udde8\\ufe0f Comment if you agree \\u2764\\ufe0f\\n______________________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more Premier Christian Contents \\u203c\\ufe0f\\n____________________________\\n#GospelEmpireGh #StrictlyGospel #capitec\\n#Taiwan #AllOrNothingArsenal #AONArsenal #ZamaZamas #Explosion #LISA #Ask\\u0130cin #China https:\\/\\/t.co\\/cavrx7ZAgt\",\"129\":\"Building a global team? Join Deel to hire in 150 countries in minutes without worrying about local laws, opening a new entity, or managing international payroll. #Taiwan #BBNaijaS7 #WarnerBrosDiscovery #BulletTrainMovie https:\\/\\/t.co\\/qzcuSQPSrV\",\"130\":\"@Blacckk_j Baba go and mine and look for referal, it is a shame on all of you who once called #PiNetwork scam looking for who & where to buy from now. May God help you in your fruitless effort. #StopSellingPi #PiConsensus #Taiwan\",\"131\":\"The funny thing about nigerians is that they forget easily. \\n\\nCheck this video out! \\n,\\u274cNo vote Tinubu \\u274c No vote for ATIKU..they r the same.\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 https:\\/\\/t.co\\/MaKgKNoo2B\",\"132\":\"Who's is interested to marry me.\\nYoruba sweet boy.\\nI'm in Lagos \\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 https:\\/\\/t.co\\/MBGIPebu1u\",\"133\":\"Some of the things you need to know about our drink are right here in this video. Check it now!\\n\\n#BulletTrainMovie \\n#DLconversations \\n#GlobalCrusadewithKumuyi \\n#ImpactAcademywithKumuyi \\n#dlcfhq\\n#Taiwan \\n#GCK\\n#PastorKumuyiSaid https:\\/\\/t.co\\/7aelyfUXh4\",\"134\":\"Today's Update!! (24hrs)\\nBitcoin\\n$23,112 + 0.01%\\nEthereum\\n$1,654 - 0.05%\\nBinance coin (BNB)\\n$313 + 2.76%\\nShiba inu\\n$0.0000012 + 0.84%\\nPlease note: the above prices are not stable it changes any moment.\\n\\nDavid Hundeyin Rema Reno #Taiwan Ashawo Apple music #ElonMusk\",\"135\":\"IPHONE \\uf8ff CHARGING PACKAGE \\nEXCLUSIVE INCLUDES\\n\\n\\u2714\\ufe0fAirpods 3 \\uf8ff\\n\\u2714\\ufe0f Magnetic Power bank \\uf8ff\\n\\u2714\\ufe0f TYPE C Charger \\uf8ff\\n\\u2714\\ufe0f Transparent MAG Case \\uf8ff\\n\\u2714\\ufe0f Magnetic Charger \\uf8ff\\n \\nPRICE: N65,000\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 congratulations Arise tv https:\\/\\/t.co\\/aEzpnS8MzB\",\"136\":\"my husband is cheating on me \\ud83d\\ude02\\ud83d\\ude02 #BulletTrainMovie #BadDecisionswithBTS #bennyXBTSXSnoopDogg #capitec #Taiwan #BattleForNo10 #\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50 #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #ZamaZamas #AONArsenal #China #Ask\\u0130cin #Explosion #LISA https:\\/\\/t.co\\/daV6xVvXdF\",\"137\":\"This day is coming soon!!!\\n\\n#Taiwan #IPPIS #PiConsensus #iphone14 #BBNaija #Arewatwitter https:\\/\\/t.co\\/YAElbkZ8X3\",\"138\":\"This is the most #OBIDIENT question. \\n\\n#davidhundeyin #Taiwan #Sabinus https:\\/\\/t.co\\/gBR7IocNaC\",\"139\":\"Good Morning the people of this street.\\n\\n#IPPIS #PiConsensus #Taiwan #iphone14 #BBNaija #BadDecisions #cryptocurrency https:\\/\\/t.co\\/Ro62VgHGk2\",\"140\":\"Let everything within me sing unto Adonai!\\n\\nPeace to the nations!\\nCall to worship!\\n\\nLet there be light!\\n\\nMake the world a better place! \\n\\n#BulletTrainMovie #WarnerBrosDiscovery #Taiwan #Ask\\u0130cin #AONArsenal #China #BadDecisions #\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35 #\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50 #BattleForNo10 https:\\/\\/t.co\\/0AcEwTwWsz\",\"141\":\"Sales\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\nSolidly Built 5bedrooms duplex\\nLocation: Dawaki -Abuja.\\nPrice: NGN80m or nearest offer \\nFor enquiries and inspection pls call F.Fayankinnu&Co Estate Surveyors and Valuers on\\n08068854919\\n07066672143\\n#Taiwan | Oshiomole | David Hundeyin | Trenches | Burna https:\\/\\/t.co\\/rpnWM9UjaN\",\"142\":\"Never Gone \\ud83d\\udcaa #BulletTrainMovie #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059 #brunardo #WarnerBrosDiscovery #Taiwan #capitec #TheGrandFallout #AllOrNothingArsenal #BBNajia #BBNaijaS7 #fireboydml #boiflex #BulletTrainMovie #VMAs #Ask\\u0130cin #ASUUstrike #AEWDynamite https:\\/\\/t.co\\/gp0PMGENjL\",\"143\":\"Online sessions for the weekend\\nUK 1 &2 Sessions\\nDubai 1 &2 Sessions,\\nScotland 1 session,\\nAfrica Sessions online,\\nChoir Capacity Sessions 1 - 4, etc\\nHoliday Sessions for children continues today. #onstorm #Online\\n#Vocalcarecoach #ChoirCapacityCoach\\n#Taiwan #China #Birmingham2022 https:\\/\\/t.co\\/8APk6oYuGN\",\"144\":\"Chris Brown can act, sing, write, paint, dance, a talented basketball player, designing, etc. solid guy \\ud83d\\udc4d\\ud83e\\udd1d\\n#Asuu #BulletTrainMovie #Taiwan\",\"145\":\"Be good always. Know what is right and do what is good.\\n#BBNaija7 #Taiwan #HBOMax #capitec #nig https:\\/\\/t.co\\/kdtxBAi7ug\",\"146\":\"The world \\ud83c\\udf0e start from wherever you started! #CourierHub to the World @CourierHub_ \\n#poweredbydata\\n#Fireboy #BBNaijaS7 #JapaToPrimeVideo #BulletTrainMovie \\n#BadDecisions \\n#WarnerBrosDiscovery #BattleForNo10 #Taiwan #BattleForNo10 #WarnerBrosDiscovery #BadDecisionswithBTS #HBOMax https:\\/\\/t.co\\/hDA6NESMyP\",\"147\":\"Stake what you can lose\\n\\n5odd\\n\\nA3C3A35\\n\\nToday\\n\\nEdit | Play | Ignore | Retweet \\ud83d\\udd1e\\n\\n#trenches #EFCC #Rema #Taiwan #Fireboy #olamide\",\"148\":\"Sheikh Zakzaky: \\\"America's constitution isn't suitable to our country (Nigeria).\\n\\n#Taiwan https:\\/\\/t.co\\/zltNrcYkjY\",\"149\":\"Job Vacancy for Teachers | salary $1000(8,500cedis) | How to Apply\\nWatch n learn how to apply\\nhttps:\\/\\/t.co\\/cJg7uISFsd\\n#jobsearch #JobVacancy #jobvacancy_alert #jobvacancies #BulletTrainMovie #WarnerBrosDiscovery #Taiwan #BadDecisions #capitec #BattleForNo10 #BadDecisionswithBTS\",\"150\":\"https:\\/\\/t.co\\/kW36xQFx0g\\nDaily Powered Word Devotional Podcast: Friday 5th August, 2022.\\n#BulletTrainMovie #Taiwan #capitec #BadDecisions #BattleForNo10 #AllOrNothingArsenal #BadDecisionswithBTS #ZamaZamas #FireBoy #Niger #BBNajiaS7 #BBNaijaS7 #ChrisBrown #Afrobeats\",\"151\":\"Taiwan been surrounded by china shortly after U.S House Speaker Nancy Pelosi\\u2019s arrival in capital of Taiwan. Taipei. #Xi Jinping #World War III #WWIII #UkraineWar https:\\/\\/t.co\\/enFmEAy2gz\",\"152\":\"@estressecurado HELLO EVERYONE! My name is Samuel , I will do campaign creation and viral organic marketing for your pets on Kickstarter, Indiegogo, and Gofundme using the best-recommended marketing means or strategy to get donations. \\n#Chelsea #China #Taiwan #BattleForNo10 #Amnesty\",\"153\":\"Despite the uncertainty, I have no fears.\\nI trust @unboundfinance \\n\\n#unboundfinance #UNB #DeFi #crypto #machala #Taiwan #Web3 https:\\/\\/t.co\\/IxSU6u1XwJ\",\"154\":\"Please what in the name of agbado is pharmaceutical vegetable\\ud83d\\ude02\\ud83d\\ude02.. can someone tell this octogenarian to go and rest.\\ud83e\\udd7a\\ud83e\\udd7a\\n#pitobi\\n#tinubu\\n#BAT2023 #reno #PeterObiForPresident2023 #bella #arsenal #Taiwan #Fireboy #PremierLeague https:\\/\\/t.co\\/VQmy6B6d5G\",\"155\":\"The consolidation on #Crypto market is crazy\\u2026 how many more days \\ud83e\\udd26\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\n\\n#BTC #BBNaijaS7 #Taiwan\",\"156\":\"@TherealUGman Follow us for balance updates on #NigeriaDecides2023 #BATSHET2023 #PeterObi4President2023 #Obidatti2023 #Taiwan #China https:\\/\\/t.co\\/NwtOsx7Z7p\",\"157\":\"\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f Crystal Palace vs Arsenal\\n\\u23f020:00\\n#PremierLeague \\n\\nAs was the case last year, the 2022-23 Premier League season kicks off with a London derby, as\\u00a0Crystal Palace welcome Arsenal\\u00a0to Selhurst Park tonight.\\n\\n\\ud83d\\udcf6 Over 2 \\u27051.45\\n\\nBest Odds \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #Taiwan https:\\/\\/t.co\\/SK3JMA9FMG\",\"158\":\"Building a global team? Join Deel to hire in 150 countries in minutes without worrying about local laws, opening a new entity, or managing international payroll. #Taiwan #BBNaijaS7 #WarnerBrosDiscovery #BulletTrainMovie https:\\/\\/t.co\\/qzcuSR7tjt\",\"159\":\"Thank you for your unending love and Support. Much love from here \\u2764\\ufe0f\\n\\n#brandorx #EverythingBranding #Taiwan Chi Chi #BBNaijaS7 https:\\/\\/t.co\\/0NAHWhR8MZ\",\"160\":\"I be wan go sleep before but I say make i remind una say make una presave #SoloAlbum by @Dunkishrock \\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#capitec #BulletTrainMovie #Taiwan #WarnerBrosDiscovery #Ask\\u0130cin #BBNaijaS7 #thursdayvibes #NINJAWARRIORSFC\",\"161\":\"And don't forget to stream #Obalende \\n\\n#BulletTrainMovie #Taiwan #capitec #TheGrandFallout \\n#NINJAWARRIORSFC\\nhttps:\\/\\/t.co\\/jBk0P7D9BU\",\"162\":\"Please remind them \\ud83e\\udd20\\ud83e\\udd20\\n.\\n#Taiwan #BulletTrainMovie #AllOrNothingArsenal #BBNaijaS7 #Explosion #PeterObi #kagiso https:\\/\\/t.co\\/j62UIGDzHd\",\"163\":\"#SoloAlbum is coming too. By @Dunkishrock\\nPresave the Album now \\ud83d\\udd25\\ud83d\\udd25\\n\\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n#BulletTrainMovie #Taiwan #WarnerBrosDiscovery #JKLive #PokemonScarletViolet #NINJAWARRIORSFC\",\"164\":\"\\ud83d\\ude48\\ud83d\\ude48\\ud83c\\udfc3\\ud83c\\udfc3\\ud83c\\udfc3\\ud83c\\udfc3Wake up wake up .... #tgif #BulletTrainMovie #BBNaijaS7 #BB24 #Explosion #Trending #twitter #Taiwan #BadDecisions #AONArsenal #EPL #ExtraordinaryAttorneyWoo #EPL2022 #BeautyTukura https:\\/\\/t.co\\/R8GzyJsaar\",\"165\":\"Presave #SoloAlbum\\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#BulletTrainMovie #Taiwan #WarnerBrosDiscovery #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #TheGrandFallout #Ask\\u0130cin \\n#NINJAWARRIORSFC\",\"166\":\"Stop playing!!!\\nAs you're streaming Fireboy 's Playboy album... Presave this masterpiece piece too by @Dunkishrock \\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#Taiwan #AllOrNothingArsenal #China #skynews #thursdayvibes #BBNaijaS7 #NINJAWARRIORSFC\",\"167\":\"Up next on the list is #SoloAlbum \\ud83e\\udd70\\nAnother masterpiece by @Dunkishrock\\n\\n#BulletTrainMovie #capitec #Taiwan #WarnerBrosDiscovery #TheGrandFallout #thursdayvibes #BBNaijaS7 #NINJAWARRIORSFC https:\\/\\/t.co\\/Lwq6cEPuqR\",\"168\":\"For Rent - Spacious Office Apace Available. \\n\\n\\ud83d\\udccdLocation - Area 11 Abuja. \\n\\nRent - N1,300,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Chelsea #Taiwan https:\\/\\/t.co\\/2ueIR9txeq\",\"169\":\"#Taiwan One China https:\\/\\/t.co\\/iAL0HSO7tQ\",\"170\":\"Day 03 FYB week \\nIn advance to me \\n#AllOrNothingArsenal #China #BBNaijaS7 #thursdayvibes #thursdayvibes #Taiwan #WarnerBrosDiscovery #skynews https:\\/\\/t.co\\/roiz2SlXMs\",\"171\":\"There will be serious chaos and bad economic recession if there is a war with china and tiawan... please let everyone think it over the four horsemen are here #Taiwan #China #WorldWarIII #war #\",\"172\":\"I really don\\u2019t know why all these countries keeps playing into the deceit of the United States and believe that they will help them. Even though they eventually helped you, at what cost? United States Will always profit from war and destabilisation of regions. #Taiwan\",\"173\":\"Watch how this lady used strangers to accomplish her selfish aim.\\nhttps:\\/\\/t.co\\/rmRGxznAIg\\n\\n#Apple Music #Spotify #iphone14 #thursdayvibes #China #Taiwan\",\"174\":\"Osun Election: APC Moves To Tribunal To Challenge PDP Adeleke's Victory\\n\\n#fireboydml #Taiwan #WarnerBrosDiscovery #ASUU\\nRead more\\u300bhttps:\\/\\/t.co\\/GmJsQslGLp\",\"175\":\"Look at the police who are rigorously protecting #Taiwan https:\\/\\/t.co\\/7e9OC26Hdi\",\"176\":\"His Excellency Peter Obi And Senator Yusuf Datti Baba-Ahmed. Met with the British High Commissioner to Nigeria, @CatrionaLaing1 \\nWhen A Better Government Takes Over A Well Structured EFCC Will Be Built... If you Agree LIKE\\n #Taiwan https:\\/\\/t.co\\/BaA2cMeVdn\",\"177\":\"Make 17years old girl dey talk say she no fit love again\\ud83d\\udc94 Oju werey tiri ibi lati kekere\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n#BulletTrainMovie\\u00a0 #Taiwan #AllOrNothingArsenal #BadDecisionsTODAY #BBNaijaS7 #ModijiOpensSRH #Machala #newmonth #timesupolivia #capitec #Explosion #UkraineRussiaWar #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"178\":\"China allegedly prepares to invade Taiwan barely 24 hour after America\\u2019s Pelosi visit https:\\/\\/t.co\\/aFGYYLQf7u #nosablog #life #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #TaiwanStraitsCrisis #OBIDIENTS #bbnaija\",\"179\":\"Follow for follow back \\ud83d\\udd19 \\nRetweet and Share #BulletTrainMovie #Taiwan #capitec #AllOrNothingArsenal #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #ExtraordinaryAttorneyWooEp11 #BadDecisionsTODAY #BibleSumett #PokemonPresents #PokemonScarletViolet #BBNaijaS7 #skynews #Explosion #onstorm #foryou https:\\/\\/t.co\\/cEGxjhHBpI\",\"180\":\"Never look down on God \\n \\ud83c\\udf3a\\ud83c\\udf3a\\ud83c\\udf3a. \\n #BulletTrainMovie #Taiwan #BadDecisions\",\"181\":\"On the 7th day when God was resting, satan created Nigerian leaders \\ud83d\\ude12\\n\\n#Taiwan #AllOrNothingArsenal #capitec \\n#2023Elections\",\"182\":\"#Adekunle #Wizkid #Taiwan \\nJob Done installation of rain gutter at ibadan Oyo state #Whatsapp 08085310359\\nEFCC Doyin and cyph Rahman Jago Chi Chi Egbon Ali baba https:\\/\\/t.co\\/G9GAtpSjXN\",\"183\":\"Do you think the Ethereum Merge will attract institutional Adoption??\\n#ETH #Ethereum #CryptoNews #DeFi #Metaverse #Poshmark #BBNaija #Taiwan #nftart #NFT #BTC #institutions #AdoptATeacher https:\\/\\/t.co\\/ud1UpF6RVS\",\"184\":\"#BBNaijaS7 #Taiwan #BigBrother #BigBrotherNaijaS7 #BBNajia #BBNaija it\\u2019s getting lit pool party https:\\/\\/t.co\\/npACZaYBZJ\",\"185\":\"Our Parents Used To Say \\\"You will Understand When You Grow Up\\\"\\nDo You Understand Now??\\ud83e\\udd37\\u200d\\u2640\\ufe0f\\ud83e\\udd37\\ud83e\\udd23\\ud83d\\ude02\\n\\n#maufemor Legon #BulletTrainMovie #Taiwan #capitec #AllOrNothingArsenal #ExtraordinaryAttorneyWooEp11 #BBNaijaS7 #BadDecisionsTODAY\",\"186\":\"Popping \\ud83c\\udf7e some bottles of champagne \\ud83c\\udf7e\\ud83e\\udd42 Last night \\ud83c\\udf77\\ud83c\\udf77\\ud83c\\udf77\\ud83c\\udf77\\n#BulletTrainMovie #Taiwan #BadDecisions #skynews #AllOrNothingArsenal #ExtraordinaryAttorneyWooEp11 #ExtraordinaryAttorneyWooEp11 https:\\/\\/t.co\\/VHp1KIltN6\",\"187\":\"\\ud83d\\ude02\\ud83d\\ude02\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 \\nNo be only me go see this thing o!\\nThis man thinks we're in 1910, always talking about food.\\n\\nThe 3 | EFCC Fabio David Hundeyin Here we go Garnacho Premier league Niger #Taiwan Campaign DG Leicester https:\\/\\/t.co\\/sGrgwMYnR0\",\"188\":\"Risk nothing , Gain Nothing !!! \\n\\n#BulletTrainMovie #Taiwan #AllOrNothingArsenal\",\"189\":\"https:\\/\\/t.co\\/Se7h95ajvo\\n\\n27 YEARS STRONK! #birthday #streaming w\\/ mah homies!\\n\\n#smallstreamers #Taiwan #BulletTrainMovie #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #twitch #twitchstreamer\",\"190\":\"May Almighty God Bless Our hustling\\n #Taiwan #Bullish #iphone14 #PiConsensus #BBNaija https:\\/\\/t.co\\/J5gc59nY80\",\"191\":\"Make the new month amazing one. \\n\\n#ThinkBIGSundayWithMarsha #dailyinspiration #Taiwan #heralddigitals #enterpreneur #WebsiteDesign #graphicdesign #branding #herald_digitals #businessconsulting #business \\n#wisdomtidbit #PAG https:\\/\\/t.co\\/yPQQwkGuw0\",\"192\":\"#cryptocurrencies trending with #PiConsensus at the top is not a coincidence. The world is about to witness the greatest revolution of all time with #PiNetwork and #Pioneers. You are not too late to be part of history. Retweet till it gets to #Taiwan and #China Reno Omokri Obiano https:\\/\\/t.co\\/gbEdagmUIq\",\"193\":\"Just a freestyle #Taiwan #BBNaijaS7 #BadDecisionsTODAY #BadDecisionsTODAY https:\\/\\/t.co\\/pHWTp7I5mJ\",\"194\":\"Here is how to start a conversation with a girl you like;\\n\\nA Thread;\\n\\nWhatever will happen between the both of you is heavily dependent on that first conversation and the impression you leave on her.\\n\\niPhone 14 EFCC ASUU #Taiwan Tinubu Obi https:\\/\\/t.co\\/NuKqOdXZll\",\"195\":\"I will be speaking at the #SiBANP2PCONFERENCE happening on the 6th of August 2022. #Bitcoin #Coinbase #Binance @ARISEtv @channelstv #Taiwan Blackrock The FBI Chi Chi EFCC https:\\/\\/t.co\\/2bK4aGnVAU\",\"196\":\"The worst pain is getting hurt \\ud83d\\ude1e by someone you explain your pain too\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n#BulletTrainMovie #Taiwan #AllOrNothingArsenal #BadDecisionsTODAY #BBNaijaS7 #ModijiOpensSRH #Machala #newmonth #timesupolivia #capitec #Explosion #UkraineRussiaWar #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"197\":\"For the first time ever, PLA missiles have flown directly over Taiwan. \\n\\nThey hit targets in waters east of the island.\\n\\nThe next two days of military exercises will see many more such firsts.\\n\\n#Taiwan \\/ One China\\/ Dino melaye\\/ Iphone 14 https:\\/\\/t.co\\/cbSE372zmL\",\"198\":\"You get mind ooo, you unfollow @elonmusk the owner of the app..\\n\\n#model #LeverageRedemption #Taiwan - #BadDecisionsTODAY #BBNaijaS7 #EPL2022\",\"199\":\"Ever notice when your doing good, people love digging up and talking about your past trying to hurt you? \\n\\n#Deborah #Taiwan #bigbrother24\",\"200\":\"Bucket prank by me the trouble maker \\ud83d\\ude02\\ud83d\\udc94\\n#prank #trender_sam #explore #ManUnited #China #Taiwan #capitec #Birmingham2022 #trendingvideos https:\\/\\/t.co\\/XmsWKco1NS\",\"201\":\"Is your choir a choir of songwriters or a choir of 'copyright' singers\\/musicians or a choir of non songwriters&non copyright singers\\/musicians?\\nThe answer to this is key to choral performances&effectiveness musically&Vocally.\\n#Taiwan #capitec #China #onstorm #AllOrNothingArsenal https:\\/\\/t.co\\/Na4Yekzzmu\",\"202\":\"Once @FabrizioRomano confirmed your relationship to be real with HERE WE GO. Just go and get ready for marriage. I fear that man.\\nASUU #Taiwan\",\"203\":\"@eajorng you people should please pay me my money since last week Friday #eajor or what kind of delay is this. I would advise people not to use that app anymore #BidenHasCancer #Taiwan #BB24 #BreakingNews\",\"204\":\"Please how do I start a clothing brand in Nigeria \\ud83c\\uddf3\\ud83c\\uddec #Taiwan #capitec #AllOrNothingArsenal #AtikuOkowa2023 #osun #eoa #NigeriaDecides2023 #KoffeeWithKaran https:\\/\\/t.co\\/eUgJVcdOgP\",\"205\":\"Vacancy ! !\\u00a0 Vacancy ! !\\n\\u2022Bilingual Secretary ( @Golden_Star_Res)\\n\\n\\u2022For more information kindly send us a message\\n\\nKindly share this opportunity to individuals in your contact list.\\n\\n#ghanajobs #ghananews #ghtrending #missmalaika22 #gmb22 #showbizgh #job #jobsearch #Taiwan https:\\/\\/t.co\\/VYuBdgVeCI\",\"206\":\"...on the rise.\\nFifth Seal- The Saints are almost filled seeing our current realities and the World Situations now.\\nSixth Seal- We are about to enter this seal. #WWIII et al,\\nDon't forget I predicted Christ Jesus coming might be during this time.\\n\\nSource- Revelation 6\",\"207\":\"Trending sticker #Taiwan #AllOrNothingArsenal #capitec #KoffeeWithKaran #onstorm #PokemonPresents #Birmingham2022 #\\u0e04\\u0e37\\u0e2d\\u0e40\\u0e18\\u0e2dEP6 #BBN https:\\/\\/t.co\\/YPAKeLtsly\",\"208\":\"#TAIWAN @taiwanfoucs \\n I love you! Please as a matter of urgency you have to develop NU-CLEAR WEA.PON as soon as possible to DEFEND your sovereignty against the bully #CHINA. I know you have civilian nuclear power house. #TAIWAN do something now!!!\",\"209\":\"#TAIWAN @taiwandefense I love you! Please as a matter of urgency you have to develop NU-CLEAR WEA.PON as soon as possible to DEFEND your sovereignty against the bully #CHINA. I know you have civilian nuclear power house. #TAIWAN do something now!!!\",\"210\":\"Vacancy ! !\\u00a0 Vacancy ! !\\n\\u2022Telesales Consultant ( @growformeafrica )\\n\\n\\u2022For more information kindly send us a message\\n\\nKindly share this opportunity to individuals in your contact list.\\n.\\n#ghanajobs #ghananews #ghtrending #missmalaika22 #gmb22 #showbizgh #job #jobsearch #Taiwan https:\\/\\/t.co\\/y0Ti6phRF5\",\"211\":\"@httpxellise Did you know you can raise funds for any of your challenges online? I'll teach you EVERYTHING you need to know through this link https:\\/\\/t.co\\/ojVDaqT6Ck #crowdfundingcampaign #Kickstarter #GoFundMe #support #Taiwan #TejRan #TREASUREinManila #ExtraordinaryAttorneyWoo #YEONJUN https:\\/\\/t.co\\/7rnj6pp7NE\",\"212\":\"Power of black \\u26ab \\ud83d\\udcaa is exceptional \\ud83d\\udc4c \\ud83d\\udc4f so unique. She kill it \\ud83d\\ude0d \\ud83d\\udc96\\ud83d\\udc96\\ud83d\\udc96 #Ankaradress #Ankara #Taiwan #BulletTrainMovie #capitec #recession https:\\/\\/t.co\\/Ws8Ki9CFt1\",\"213\":\"Started Coaching Peculiar Voices last year in Choir Capacity Sessions. We recently had an awesome experience at their concert. \\nKudos friends!\\n#BulletTrainMovie #Taiwan #capitec #onstorm #recession #news #PokemonPresents #ChelseaFC #Birmingham2022 #music #Musica #vocalcarecoach https:\\/\\/t.co\\/48lu9wGaF4\",\"214\":\"Web 3.0 #PiConsensus Binance #Taiwan never allow yourself to be left behind. https:\\/\\/t.co\\/Rrh4VyRrHk\",\"215\":\"My recent artwork of @_kehindebankole, beauty personafied \\ud83d\\ude0a\\ud83d\\udcaf... Pls tag her, I would love her to see it.\\nhttps:\\/\\/t.co\\/M6oEDZjc76\\n\\n#wizkid #Taiwan #Alibaba #Sabinus #art #smudgepainting #Giveaway #actress https:\\/\\/t.co\\/XvDzDntGau\",\"216\":\"No caption \\n#GlazersOut #BulletTrainMovie \\n#Taiwan #MUFC #capitec https:\\/\\/t.co\\/wq0Y1ftS4q\",\"217\":\"\\u201cI never reach 5 star \\u2b50\\ufe0f yet, i go manage 333\\u201d \\ud83e\\udd13\\u2764\\ufe0f\\u200d\\ud83d\\udd25\\n\\ud83d\\udc49\\ud83c\\udffbSo guys here\\u2019s #my5starstory \\ud83d\\ude0e, more like a 3starstory tho haha \\ud83d\\ude05. Please help RT and tag @adekunleGOLD till he sees this \\ud83e\\udd32\\ud83c\\udffb\\ud83e\\udd7a\\n.\\n#capitec #Taiwan #BulletTrainMovie #onstorm #music #BB24 #BBNaijaS7 #BulletTrain https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"218\":\"When you commit a crime that even the inmates are afraid of you @ConvergenceFin \\n\\nCheck out their telegram channel https:\\/\\/t.co\\/5NHIvfXkRL\\n\\n#BulletTrainMovie #Taiwan #capitec #PokemonPresents #PokemonScarletViolet #Birmingham2022 #onstorm #recession # https:\\/\\/t.co\\/1M5P4K2WZ9\",\"219\":\"7 days after applying for change of phone number in my NIN with the total sum of 9k, I can't still login into the app so I can get the plastic ID ..\\n\\nIt seems everything in this country is just scam \\n#Taiwan #nimc #nin\",\"220\":\"I will credit 5 people with 2k each. Answer the questions of the night and drop your account details, \\n#\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ichmachenichtmehrmit #BulletTrainMovie #\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059 #Taiwan #capitec\",\"221\":\"Congratulations to you once more my namesake Goodness Chiemerie Nwachukwu\\n#Birmingham2022 #BulletTrainMovie #Taiwan\\n\\n Doyin #BBNaija ELOSWAG https:\\/\\/t.co\\/MlRna6pnb9\",\"222\":\"OMG \\ud83d\\ude02\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02\\nThis is so funny @morrishills_ \\n\\n#\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ichmachenichtmehrmit #BulletTrainMovie #\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059 #Taiwan #capitec #Sismo #\\u0633\\u0643\\u0631\\u0628\\u062a78 #\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a #\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a #\\u0643\\u0644\\u0646\\u0627_\\u0627\\u0644\\u0634\\u064a\\u062e_\\u0628\\u0646_\\u062d\\u0645\\u064a\\u062f #\\u0633\\u0643\\u0631\\u0628\\u062a77 https:\\/\\/t.co\\/eggArJK1mA\",\"223\":\"Different shades of colour of crocs!!!\\n#BulletTrainMovie #Taiwan ,#capitec #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #trends \\n15000 only.\\nhttps:\\/\\/t.co\\/8EIbvwItzv\\nkindly Rt\\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f https:\\/\\/t.co\\/9CheKrqxvu\",\"224\":\"Relax your body with this tea and feel like a baby. Watch recipe here \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/Bvw6JKda5c\\n\\n#BulletTrainMovie #Taiwan #capitec #Birmingham2022 #BulletTrain #Food https:\\/\\/t.co\\/5XQk1GZOUr\",\"225\":\"\\ud83d\\udd25\\ud83d\\udd25TWO WORLD RECORDS & A GOLD MEDAL! Nigeria's Goodness Chiemerie Nwachukwu was on a different level, clinching the GOLD medal in women's Discus F42-44\\/61-64 event with an unprecedented throw of 36.56m.\\n#CommonwealthGames2022 #wizkid Iphone 14 Dave TG OMORI Omah lay #Taiwan https:\\/\\/t.co\\/ZoGToaumXh\",\"226\":\"Product designers in the house, what are your BEST 3 fonts? I urgently need better fonts \\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83d\\udcbb\\n\\n#adeyyytweets #capitec #BulletTrainMovie #Taiwan #ASUUstrike #uiuxdesign #uiux #uidesigner #uxdesigner #uxdesign #thursdayvibes #UI #ux #Designers #GraphicDesign\",\"227\":\"A Designers Gate made of Wrought Iron @veryaffordable Price \\nWe are located @ Pilgrim junction off MCC\\/Uratta Road Owerri Imo State. #BBNaijaGuinnessSmooth \\n#GogoSkhotheni #Taiwan @Naija_PR @PeterObi @PeterPsquare https:\\/\\/t.co\\/i6xB8ONfRb https:\\/\\/t.co\\/vDqCjp8ZKd\",\"228\":\"A Designers Gate made of Wrought Iron @veryaffordable Price \\nWe are located @ Pilgrim junction off MCC\\/Uratta Road Owerri Imo State. #BBNaijaGuinnessSmooth \\n#GogoSkhotheni #Taiwan @Naija_PR @PeterObi @PeterPsquare https:\\/\\/t.co\\/i6xB8ONfRb https:\\/\\/t.co\\/mFSHpbLkRV\",\"229\":\"Must watch, you need to check this movie out\\n#monsterwemade coming out soon\\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan \\n#BBNaija \\n@BrymOlawale \\n@DavidHundeyin \\n\\nRahman Jago USSD Ali baba David hundeyin Deborah benue state https:\\/\\/t.co\\/YEWbHC5Yma\",\"230\":\"Street protests took place in Lebanon on the anniversary of the August 4, 2020 bombing at Beirut's seaport. Participants demanded that those responsible for the tragedy be brought to justice.\\n#Lebanon #Taiwan #crime #WHO #recession #BulletTrainMovie #TrendingNow #Trending #viral https:\\/\\/t.co\\/XLJzMjNhun\",\"231\":\"Nigerian Doughnuts Filled With Jam, Recipe, Method, History, Types || David Hundeyin #Taiwan #MohaleOTR https:\\/\\/t.co\\/Rvk8u5qP58\",\"232\":\"Join us as we start to analyze top 5 Europe teams\\nhttps:\\/\\/t.co\\/pwBvCavfgl\\n#BBNaija #BulletTrainMovie #Taiwan #Wizkid ASUU\",\"233\":\"Azerbaijan's embassy in London was attacked by religious radicals.\\n\\nThe diplomats were not injured in the incident, the Azerbaijani Foreign Ministry said. \\n\\nThe perpetrators were detained.\\n#Azerbaijan #london #Diplomacy #BulletTrainMovie #Taiwan #PokemonPresents #Trending #viral https:\\/\\/t.co\\/A84bZqVB2K\",\"234\":\"@SpiceRadioNg Every Thursday from 4 pm - 5 pm on The Drive Time Show... Bringing throwback songs to the table.\\n\\n#thursdayvibes #BulletTrainMovie #Taiwan #spiceradiong https:\\/\\/t.co\\/Zm4XzZzg1A\",\"235\":\"Working on some creatives for one of the fastest growing online marketplace@ https:\\/\\/t.co\\/MMTYoLhpx6\\n#justsaleonline #BBNaija #BulletTrainMovie #Taiwan #thursdayvibes #uiuxdesign #design https:\\/\\/t.co\\/p6XojkDsrJ\",\"236\":\"PHOTOS: Pantami Meets Reps Of Facebook, Google, Others\\n\\nThe Minister of Communications and Digital Economy, Professor Isa Pantami has held a meeting with the representatives of Social Media giants such as Facebook (Meta), Twitter, TikTok & Google.\\n\\n#Pantami #Taiwan #NigerRepublic https:\\/\\/t.co\\/6pDOTY9uKU\",\"237\":\"MUST SEE: AERIAL VIEWS OF THE NEWLY COMPLETED UGBOR-AMAGBA ROAD CONSTRUCTED BY GOVERNOR GODWIN OBASEKI...\\n\\nPic Credits: EICO MEDIA \\n#Taiwan \\n#pere\\n#RahmanJago\\n#eico https:\\/\\/t.co\\/6P0zhqhVwx\",\"238\":\"MUST SEE: AERIAL VIEWS OF THE NEWLY COMPLETED UGBOR-AMAGBA ROAD CONSTRUCTED BY GOVERNOR GODWIN OBASEKI...\\n\\nPic Credits: EICO MEDIA \\n#Taiwan \\n#pere\\n#RahmanJago\\n#eico https:\\/\\/t.co\\/ZQ91j8EQaP\",\"239\":\"Our verse on @LASMIDOFFICIAL1 Friday night @kwadwosheldon @LASMIDOFFICIAL1 @drpoundsgh @onua_zionfelix @shattawalegh @codemickey78 #fridaynightfunkin #BulletTrainMovie #Taiwan #MohaleOTR #capitec #PokemonScarletViolet #PokemonPresents #recession #thursdayvibes #fridaynightfunkin https:\\/\\/t.co\\/FSywjczyav\",\"240\":\"Taiwan Cancels Flights As China Holds Military Drills Upon Pelosi Visit: https:\\/\\/t.co\\/YZjghmRyBR \\n#China #Pelosi #Taiwan #WorldNews\\nhttps:\\/\\/t.co\\/YZjghmRyBR\",\"241\":\"When our makes are different and our target vary from each other's.\\n#HappyEnding #BulletTrainMovie #Taiwan #MohaleOTR #capitec #PokemonScarletViolet #PokemonPresents #thursdayvibes #MilePhakphum #BibleBuild #Sismo #Explosion https:\\/\\/t.co\\/Jathe02eyN\",\"242\":\"GIVEAWAY TIME\\ud83d\\udc83\\ud83d\\udc83\\ud83d\\udc83\\nMake sure you follow all instructions in the video to qualify.\\nFor individuals in Lagos only.\\n\\n#dice #ladiesfirst \\n#Wizkid #Taiwan #sabinus https:\\/\\/t.co\\/jNc3fqiUtH https:\\/\\/t.co\\/5MALG8kSIN\",\"243\":\"Pelosi pokes China with Taiwan visit as she defies Biden https:\\/\\/t.co\\/kOEMsDu3fO #WorldNews #Biden #China #defies #Pelosi\",\"244\":\"This picture already told us the winner of #BBNaija this year \\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan https:\\/\\/t.co\\/RMj7g6MMC1\",\"245\":\"Do it like this don turn to position like this......#Wizkid #Deborah #iphone14 #RahmanJago #Taiwan https:\\/\\/t.co\\/vEn321p0T2\",\"246\":\"Don't be the guy who's good at sounding smart but hasn't done anything with his life-@fineboytunde_ @OtakhorEmmanuel \\n\\n#Taiwan #BulletTrainMovie #capitec #sabinus #thursdayvibes\",\"247\":\"Dear Queens,,\\n\\nTelling a guy U have a boifriend wont chase him away..\\n\\nJust tell him U need 50k,,\\n\\nLa hin go ask U whether U lo get Boifriend..\\n\\n\\ud83d\\ude02\\ud83e\\udd23\\n\\nDavid Hundeyin Shaw iPhone 14 iPhone 6 Arisetv #Taiwan Everton Tanzania Rahman\",\"248\":\"The weather is preventing me from bathing. I have been indoors the whole day \\ud83d\\ude0e\\n#FoundersDay #Taiwan #PatrioticSpaces #Brighten #Fabrizio\",\"249\":\"While U are busy consoling her on her menstrual pain..\\n\\nAnoda guy is happy she is not pregnant..\\n\\n\\ud83d\\ude01\\ud83d\\ude01\\n\\n#lifedrama #BulletTrainMovie #Taiwan iPhone 14 iPhone 7 Shaw Arisetv David Hundeyin iPhone 6 Zainab\",\"250\":\"#BBNaija this year without Bryann would be so boring \\nWho agrees!! Drop an Emoji if you agree \\u2764\\ufe0f\\u200d\\ud83d\\udd25\\ud83d\\udcaf\\n\\nPere Rahman Jago #Taiwan #VIBRYANNTS https:\\/\\/t.co\\/EfUaut9kOK\",\"251\":\"Make una de try get conscience. Dz M\\u00f8\\u00f1ey go com, bt no be to rush am #Repost #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #PokemonScarletViolet #kagiso @davido @SpyroTheDragon #Billing https:\\/\\/t.co\\/kzmzAnO5vv\",\"252\":\"This picture already told us the winner of #BBNaija this year \\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan https:\\/\\/t.co\\/cmaB04hQQc\",\"253\":\"Drop any emoji if you\\u2019re on team #VIBRYANNTS \\n\\u2764\\ufe0f\\u200d\\ud83d\\udd25\\u2764\\ufe0f\\n\\n#BulletTrainMovie #BBNaija #Taiwan https:\\/\\/t.co\\/UPSQQiIjql\",\"254\":\"Top 5 copywriting mistakes \\n\\n1. Not knowing your audience\\n2. Lacking focus\\n3. Focusing on yourself\\n4. Trying too hard to sell\\n5. Not having enough content.\\n\\n#Taiwan #Marketing #affiliateprogram\",\"255\":\"B\\/Fast: Corn + pharmaceutical vegetables\\n\\nLunch: Ewa agonyin + pharmaceutical vegetables\\n\\nDinner: cassava + pharmaceutical vegetables\\n\\nNo wonder BATISTS always have the strength & patience to wear you out with silly arguments \\ud83d\\ude01\\ud83d\\ude02\\ud83d\\ude02\\n\\n #davidhundeyin #Taiwan #Cucurella #Bants https:\\/\\/t.co\\/F4ipVGpGv7\",\"256\":\"Nothing mirrors life like trading. Combat sport is second. \\n\\n#forex #Taiwan #onstorm\",\"257\":\"I don't want peace #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #onstorm #PokemonScarletViolet #onstorm #PokemonScarletViolet #kagiso #sabinus #BibleBuild #MilePhakphum #thursdayvibes #recession #Grunewald #AditiShankar https:\\/\\/t.co\\/HRaxg8lwmS\",\"258\":\"Fabrizio: Here we Go\\n Brighton: wey una dey go\\n\\n#Taiwan #thursdayvibes #BulletTrainMovie #capitec #timesupolivia #BibleSumett #PokemonScarletViolet https:\\/\\/t.co\\/ifvkYa4wvx\",\"259\":\"But why haven't you watched and retweeted my new videos??\\n\\n Oya go watch am \\n\\n#BBNaija #Taiwan #timesupolivia #thursdayvibes #mtvbase #AfrobeatmeetsBerlin https:\\/\\/t.co\\/fBWDJy3vow\",\"260\":\"Three Malian ex-ministers named in international arrest warrants for alleged fraud have denied any guilt and say they are willing to clear their names.\\n#Taiwan #inflation https:\\/\\/t.co\\/DGoLBK68RJ\",\"261\":\"I know am handsome. \\n.\\n.\\n#BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"262\":\"Who remembers this match? #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #onstorm #PokemonScarletViolet #BBNaija #sabinus #kagiso #MilePhakphum #thursdayvibes #Grunewald #fyp #Trending #sports https:\\/\\/t.co\\/1UsANAgJJV\",\"263\":\"#Awkgraphicdesigner #iPhone 14 #Taiwan \\nI'm the designer https:\\/\\/t.co\\/TjKUhKr0q4\",\"264\":\"#realestate \\n#realestateagents \\n#realestatesales \\n#realestateagent #realestateinvestor #houseforsale #houseforrent\\n#OfficeSpace #office\\n#Taiwan #thursdayvibes \\n#capitec #Deborah #Arise TV\\niPhone 14\\n#BibleBuild #PokemonScarletViolet https:\\/\\/t.co\\/QRvVsLNQfS\",\"265\":\"In the spirit of collaborating with relevant stakeholders across the agricultural value chain to promote sustainable & profitable agribusiness across Africa, Nicert Expert Consulting Limited meets with Hectare by Hectare. \\n#Taiwan #capitec #NECL https:\\/\\/t.co\\/ii0ZYtyYog\",\"266\":\"Girls will be like-\\n'Right there, Don't stop'\\n'Ouch babe'\\nWhen ever men we hear it.. Den it means we reach ur destination \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude1c\\n\\n#Taiwan #capitec #thursdayvibes\",\"267\":\"mother killed her son because of money what a world \\ud83d\\ude02\\ud83d\\ude02 #Taiwan #capitec #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #timesupolivia #BibleSumett #PokemonScarletViolet #onstorm #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #PokemonPresents #kagiso #MilePhakphum #JKLive #BibleBuild #TASYAXTRAFARASYA #thursdayvibes https:\\/\\/t.co\\/q3EnTanOHT\",\"268\":\"One of the names this generation ought to give their unborn children is: God Abeg\\ud83e\\uddce\\ud83c\\udffd\\ud83d\\ude2b #Taiwan #Cucurella #bellashmurda #GodAbeg\",\"269\":\"If you can eat 2 times in a day in the present day Nigeria, you are rich\\ud83d\\ude2b. Hunger is another unrest #Taiwan #capitec #thursdayvibes\",\"270\":\"@_Tiga_b @opekingfrosh @PELSAUTOS @oris616 @isellnbuycars @Autorush2 @Gidi_Traffic\\n@AutosGidi @KingFadAutos @kazxyautos @KingsmenAuto\\n@bims6_0\\n@Mr_uncle_jide @CarsConnectNG #Elonmusk #Davido jobseeker #PVC #Taiwan 2023 #PeterObiForPresident2023 #Cars https:\\/\\/t.co\\/GJKiqpU2cD\",\"271\":\"@OfficialPDPNig is not a Muslim party but the presidential candidate north, party chairman north, BOT chairman North PDP youth leader North , PDP women leader north . Can we say PDP is northern party. \\n\\n#Taiwan #Cucurella #azpilicueta #chelaea\",\"272\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/UO64XhzpvI\",\"273\":\"Remember this Advert?\\ud83e\\udd70\\ud83d\\ude05 #omojesucfr #followme #Taiwan #capitec #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #timesupolivia #BibleSumett #PokemonScarletViolet #onstorm #PokemonPresents #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #kagiso #MilePhakphum #JKLive #BibleBuild #thursdayvibes #TASYAXTRAFARASYA https:\\/\\/t.co\\/0VeX3MpLGa\",\"274\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/d5rnh3a4WW\",\"275\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/YwJk1hdhUC\",\"276\":\"This life no balance #BurnaBoy #burna #Wizkid #beautytukura #Taiwan #capitec #BBNaija #Doyin Burnaboy common person cover by Tusure https:\\/\\/t.co\\/zh5UqmwfBT\",\"277\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #tinubu #Ronaldo #rufai #sabinus #china#PrimeVideoNaija https:\\/\\/t.co\\/ADtTix2zjx\",\"278\":\"Join This Chariot...... Our Man Of God Is Poised To Given Unto Treasures Laud Up in Heaven For Us Through The Delivery of The Word And Demonstration Of Power..... Your Word Awaits You! \\n#TGA #PKOG #RHEMADOSAGE #Twitter #instagram #Tomorrow #Friday #Taiwan #capitec #JESUS https:\\/\\/t.co\\/SqnyiqaVVv\",\"279\":\"The United Arab Emirates expresses support for China's sovereignty and says that the \\\"One China\\\" principle must be respected.\\n#Taiwan\",\"280\":\"@officialABAT safe journey Jagaban, heading for medical Trip\\ud83d\\ude1e\\n\\n@officialABAT you should be at home playing with your grand kids and not contesting for presidential election.\\nYou really need some rest sir\\n\\nIphone14|Dino| Ike Ekweremadu|IPPIS\\n@UchePOkoye #Taiwan #TableShaker https:\\/\\/t.co\\/HvUJEYPLT4\",\"281\":\"How you are carefree with little things kept in your care is just same way people will be carefree with yours. \\n\\nAlways be accountable & Responsible at all times. \\ud83d\\udc4c\\n\\nWhat goes around surely comes around. Might not be now but surely will. Some call it KARMA anyways.\\ud83e\\udd1d\\n\\n#Taiwan\",\"282\":\"Abeg who go follow me swap for my iPhone\\ud83d\\ude2a the hunger wae dae this country now eh #iphone14 #Taiwan #Wizkid https:\\/\\/t.co\\/xTV2UtbAoO\",\"283\":\"@BBCAfrica has the best investigative journalist in the world and their information is accurate and top-notch. Even though the journalist risk their lives to uncover the truth \\ud83d\\udcaf\\ud83d\\udcaf\\ud83d\\udcaf\\n\\n#Taiwan #capitec #thursdayvibes\\n#kagiso #Zamfarabandits\\nhttps:\\/\\/t.co\\/SvB8yG3fRB\",\"284\":\"Nobody is coming to save you, put your cross on your neck and head to Calvary. \\n\\n#BBNaija Nigerien iPhone 14 Deborah IPPIS TG Omori ASUU #Taiwan\",\"285\":\"Amheed aka Rio Art don come again with another design. \\n@Badboytimz\\n@officialABAT\\n@Olamide\\n#bat #BB24 #APC #chelsea #Taiwan https:\\/\\/t.co\\/d7KWZW8o6P\",\"286\":\"Update on the Taiwan-China Crisis https:\\/\\/t.co\\/2NvI1GWAPI\\n\\n#Taiwan #ChinaTaiwanCrisis #news https:\\/\\/t.co\\/W1gUdkdJgc\",\"287\":\"Have you subscribed to my YouTube channel yet?\\ud83e\\udd2f\\nClick this link \\ud83d\\udc47\\ud83c\\udffeto subscribe now\\nhttps:\\/\\/t.co\\/6jVhbeLzd8\\n\\nI\\u2019ve got amazing contents for you\\ud83e\\udd29\\n\\n#edwindela #ghanayoutubers #Taiwan #sabinus #BBNaija\\u00a0 #BBNajiaS7 #Ghana iPhone 14 Sheffield Ronaldo Apple Pharmsavi #capitec #JKLive https:\\/\\/t.co\\/UvghxtWYEz\",\"288\":\"Have you subscribed to my YouTube channel yet?\\ud83e\\udd2f\\nClick this link \\ud83d\\udc47\\ud83c\\udffeto subscribe now\\nhttps:\\/\\/t.co\\/6jVhbeLzd8\\n\\nI\\u2019ve got amazing contents for you\\ud83e\\udd29\\n\\n#edwindela #ghanayoutubers #Taiwan #sabinus #BBNaija\\u00a0 #BBNajiaS7 #Ghana iPhone 14 Sheffield Ronaldo Apple Pharmsavi #capitec #JKLive https:\\/\\/t.co\\/8Ztx1T4t1Z\",\"289\":\"Have you subscribed to my YouTube channel yet?\\ud83e\\udd2f\\nClick this link \\ud83d\\udc47\\ud83c\\udffe\\ud83d\\udc47\\ud83c\\udffeto subscribe now\\nhttps:\\/\\/t.co\\/pNHbl2XZj6\\n\\nI\\u2019ve got amazing contents for you\\ud83e\\udd29\\n\\n#edwindela #ghanayoutubers #Taiwan #sabinus #BBNaija #BBNajiaS7 #Ghana iPhone 14 Sheffield Ronaldo Apple Pharmsavi #capitec #JKLive\",\"290\":\"Thank you so much for the retweet\\ud83d\\ude4f \\u2764\\n\\n#Taiwan #capitec #timesupolivia #CommonwealthGames2022 #thursdayvibes #ExtraordinaryAttorneyWooEp12 #onstorm #BibleSumett #PokemonScarletViolet #winmetawin #BBNaija #sabinus https:\\/\\/t.co\\/o5jZCnFs9l\",\"291\":\"Listen to this.\\n.\\n.\\n#PrimeVideoNaija Congratulations Nastyblaq #BBNaija #Taiwan #BbnaijaS7 Niger https:\\/\\/t.co\\/jSCunSLu3Z\",\"292\":\"Uduak Akpam, the Killer of a job seeker, trying to escape from court. \\n\\n #PrimeVideoNaija Congratulations Nastyblaq #BBNaija #Taiwan #BbnaijaS7 https:\\/\\/t.co\\/lScNEVABlX\",\"293\":\"........how many times do I have to say it gonna be ok \\ud83d\\udc4c \\ud83e\\udd7a\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\n#thursdayvibes \\n#Taiwan \\n#\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"294\":\"@Remmzor__ Boss it\\u2019s your boi again \\ud83d\\ude4c\\ud83d\\ude4c\\ud83d\\ude02\\ud83d\\ude4f\\ud83c\\udffb\\ud83e\\udd72\\nShow love retweet Abeg \\ud83e\\udd79\\n@Olamide @DONJAZZY @cruelsantino \\n@cuppymusic @TemiOtedola @mreazi \\n@iamtheOsagie @FrankHasAPlan @Badboytimz @fireboydml #Taiwan #BIGWIZ #Don't Look Up #ASUU #twins #DoctorWho #Burnaboy https:\\/\\/t.co\\/9IwrKho6D7\",\"295\":\"One man Army. \\n13 Vs 1. \\n#BreakingNews #Taiwan #AsifGhafoor #HelicopterCrash #AhadRazaMir https:\\/\\/t.co\\/s1bj2Id58o\",\"296\":\"Come for your problems to be solve. If you want your husband or wife back, childleness, Court Case, bring back lost items and more. What'sap Kofi oo Kofi powers +233545375629!!. #Taiwan #ExtraordinaryAttorneyWooEp12 #capitec #CommonwealthGames2022\",\"297\":\"@davido @primevideonaija @davido am ur number 1 fans, I made stand strong cover please sir just watch the video \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f #davido #sabinus #thursdayvibes #Taiwan #ExtraordinaryAttorneyWooEp12 #BibleSumett #BBNaija #Trending #TrendingTopics https:\\/\\/t.co\\/RVZHJv4Dq9\",\"298\":\"Do you know why Neither APC Presidential candidate or PDP candidate nor Kwankwanso can make a better President is.\\nGreatness is Being accepted by the people and not protecting yourself from the people : #IkeEkweremadu\\n#sabinus #iphone14 #Dino #Taiwan\",\"299\":\"Today was \\ud83e\\udd26\\u200d\\u2640\\ufe0f\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\nMorning: I was in Ibadan \\nAfternoon: I was in Ogun state \\nEvening: Am in Ibadan \\ud83d\\ude1c\\n\\nAliamdulillai \\ud83d\\ude4f\\ud83c\\udffb\\n\\ud83d\\udc63\\ud83d\\udc40\\n#MUFC #Taiwan #thursdayvibes\",\"300\":\"@davido @primevideonaija @davido am ur number 1 fans, I made stand strong cover please sir just watch the video \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f #davido #sabinus #thursdayvibes #Taiwan #ExtraordinaryAttorneyWooEp12 #BibleSumett #BBNaija #Trending #TrendingTopics https:\\/\\/t.co\\/eP39dmYkk0\",\"301\":\"Chase it!\\nFrom @ateaseauto \\n\\n#Taiwan #ExtraordinaryAttorneyWooEp12 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #capitec #timesupolivia #timesupolivia #onstorm #BibleSumett #PokemonScarletViolet #winmetawin #thursdayvibes #sabinus #kagiso https:\\/\\/t.co\\/IcB3qoU3yo\",\"302\":\"Chase it!\\n#Taiwan #sabinus #capitec\\n#BibleSumett #bala #lexsus #automoblie #blackownedbusiness #black #blackgirlmagic #money #newmonthnewgoals #lagosbusiness #ibadan https:\\/\\/t.co\\/zeEkduujDv\",\"303\":\"Ini Umoren\\u2019s Killer Attempts To Escape After Sentencing\\nUduak Akpan, the convicted killer of Akwa Ibom jobseeker, Iniobong Umoren, attempted to escape after he was sentenced to death at the Akwa Ibom State High Court on Thursday. 1\\/2\\n#Taiwan #Sheggz #ASUU #arisetv #buhari #wizkid https:\\/\\/t.co\\/2T16mzm66j\",\"304\":\"I've been working on this painting for a while now\\n\\n#art #oilpainting #painting #color #oiloncanvas #artwork #exploremore #explorepage #fyp #viral #explore #Taiwan #explorer #artist #NFT #buyart #ExtraordinaryAttorneyWooEp12 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #visualart #fineart #EndSARS https:\\/\\/t.co\\/6jLeVt1HGi\",\"305\":\"Remember this?\\n\\\"Cn i still tell yah,U the finest in my vineyard\\n@DONJAZZY @ubifranklin1 @davido @NICKIMINAJ @patorankingfire @temsbaby @Iam_Magixx @alhajitekno @wizkidayo @patorankingfire @Olamide @kanyewest @officialnairam1 @PeterObi\\n#Taiwan #BBNaija #BBC #AfrobeatsTheBackstory https:\\/\\/t.co\\/0jgRDDdSbU\",\"306\":\"Let this white people just rest abeg #NATO na only una get problems \\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\ud83d\\udeb6\\u200d\\u2642\\ufe0f#russia #WWIII #RussiaInvadedUkraine https:\\/\\/t.co\\/V3fftrZIm3\",\"307\":\"Here's an opportunity to create wealth through land banking.\\nJoin us THIS SATURDAY for A-Z of Buy2Flip with Mr. Opeoluwa Oni.\\nDate: August 6, 2022\\nVenue: Zoom \\nTime: 7PM \\nClick https:\\/\\/t.co\\/7gLvZAzOZg to register now.\\nDon't Miss It!#Taiwan, #PeterObi2023, #landbanking #landscape https:\\/\\/t.co\\/Yn4c3dWBGh\",\"308\":\"8 30 Tonight, we be live on Twitter Space on \\\"Football Analysis on Top 5 Europe teams, where football Analysts expert gonna be available to analyze details about each teams. Don't miss it \\n#Taiwan #capitec #CommonwealthGames2022 ASUU #iphone14 #Wizkid #Cucurella De Jong #BBNaija https:\\/\\/t.co\\/ttOTCeFsTr\",\"309\":\"I hope Western sponsored media is preparing to cover war stories now that Nancy Pelosi had visited Taiwan? Another Ukraine loading \\n\\n#Taiwan \\n#PelosiVisit \\n#UkraineRussiaWar\",\"310\":\"As premiere league and other leagues wan start this weekend so ehn. Wahala go de plenty households. Ndi bb9ja vs Ndi Football vs Ndi Telemundo\\n\\nSesko | Garnacho | Simp | ASUU | Jovic\\n#Taiwan #timesupolivia #AllOrNothingArsenal #winmetawin #PokemonScarletViolet #SheggzOlu #onstorm\",\"311\":\"All available as seen\\nLocation Portharcourt and Umuahia \\nDelivery is never a problem darling \\n\\n#AllOrNothingArsenal #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #BBCOurNextPM #BBNaijaLevelUp\\n#umuahia #SheggzOlu\\n#MONEY #phtwittercommunity\\n#sabinus\\n#Taiwan\\n#Simp\\/\\/ Niger\\/\\/ASUU https:\\/\\/t.co\\/SI0FBo6nXP\",\"312\":\"Nigeria banks pls fix your employees attitude most especially @myaccessbank \\n\\nOn top my money \\u2026 oga o. #AllOrNothingArsenal #Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #PokemonScarletViolet\",\"313\":\"Asian Markets Risen Despite Optimism On Economic Data, Earnings\\n\\n#Taiwan #ASUUstrike #ASUU #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\\nRead more\\u300bhttps:\\/\\/t.co\\/4dhL4QTvks\",\"314\":\"Organ Harvesting: Again, UK Court Remands Ekweremadu In Prison Till October 31\\n\\n#Taiwan #timesupolivia\\nRead more\\u300bhttps:\\/\\/t.co\\/OsWwjgB9jA\",\"315\":\"The only thing you should be saving up for is relocation\\u2708\\ufe0f\\nRelocate and again i say relocate\\ud83d\\udde3\\ufe0f\\n#BBNaija \\n#Taiwan \\n#MONEY\",\"316\":\"Nigerian groom was lost in thought as his bride showed off her dance skill at their wedding reception.\\nFollow @GistHubNaija\\n\\n#iphone11\\n#Taiwan \\n#AllOrNothingArsenal \\n#AamirKhan \\n#MONEY \\n#sabinus \\n#SheggzOlu \\n#onstorm https:\\/\\/t.co\\/Qjge4pwSaL\",\"317\":\"Nigeria Super Eagles To Face Cristiano Ronaldo In Friendly Match\\n\\n#Taiwan #Simp #superettan #SuperEagles #AllOrNothingArsenal #CristianoRonaldo #iPhone13\\nRead more\\u300bhttps:\\/\\/t.co\\/P0plKFZF5o\",\"318\":\"I can't stop laughing \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\n#Taiwan #piconsensus2022 IPOB iphone14 https:\\/\\/t.co\\/LcDAYcTaY0\",\"319\":\"Success doesn't just find you. You have to go out and get it. \\n\\n#Taiwan #LovelyINU #iphone14 #iphone6 #piConsen #Slimp #Bone #JustinBieber #Taiwan #MONEY #Airtel #London #NeverAgain #SquidGame\",\"320\":\"The View From Taiwan: 'We've Had This For 70 Years\\n\\n#Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ChinaTaiwanCrisis #ChinaTaiwan #iPhone #AllOrNothingArsenal\\nRead more \\u300bhttps:\\/\\/t.co\\/fwteHWjrmq\",\"321\":\"Meet the new vice chancellor of tai solarin university of education.\\nProf. Sikiru banjo\\n#iphone14 #BBNaija #ChelseaFC #Taiwan https:\\/\\/t.co\\/0X1IN17Ti6\",\"322\":\"BREAKING: Court Sentences Uduak Akpan To Death For Murder Of UNIUYO Graduate\\n\\n#Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ASUUstrike #Simp #iPhone13 #IPPIS\\nRead more\\u300bhttps:\\/\\/t.co\\/WGP9is3TsK\",\"323\":\"This is the official commencement of the #LebokuInternationalNewYamfestival of the #Ugep people. \\n\\nFollow and turn on the notification to have all the information on the most enriched culture in the 21st Century. \\n\\nYam is is not just yam.\\n\\n#boomplayptm\\n#Taiwan \\n#BBNaija https:\\/\\/t.co\\/AGjMoC7ohM\",\"324\":\"Another beautiful design. I need a client for this beautiful design #Construction #design #Taiwan https:\\/\\/t.co\\/yAwMxajutT\",\"325\":\"#Attention is dropping tomorrow please follow @Swanskid_'s @Spotify\\nAccount to be the first person to get it \\ud83d\\udd25\\ud83d\\udccc\\ud83d\\ude4f. Please support GH music \\ud83c\\udfbc.\\n\\nhttps:\\/\\/t.co\\/sBlVQCd1IW\\n\\nAzamati iphone 14\\n#GranFinalTheVoice #Taiwan #\\u0633\\u0643\\u0631\\u0628\\u062a77 #onstorm #SheggzOlu #sabinus #winmetawin\",\"326\":\"But guess what? \\nThey go jam Festus Keyamo for traffic and dey go hear am from that Warri boy woto woto!\\nA single Keyamo is a million times brilliant than a quest!ionable certificate Dino and a confused Bwala!\\n\\nLet's go there! #Taiwan #timesupolivia #TEAMWANGdesignTHAILAND\",\"327\":\"Loading of Longspan Aluminium Roofing Sheet to Ifo Ogun State\\n\\nColour: Blue\\n0.45mm \\nUdank Frank Akpan Iphone 14 Mompha #Taiwan #wizkid Simp Agbado London Jaruma Chomzy God abeg teni frenkie Sweden and finland Bella Shmurda ike Doyin\\nWhatsapp 08085310359\\n\\nWATCH VIDEO HERE \\ud83d\\udc49\\ud83c\\udfff\\ud83d\\udc49\\ud83c\\udfff https:\\/\\/t.co\\/GLfJo7ie3U\",\"328\":\"Do not watch news. It can give me heart attack #ChinaTaiwan #UkraineRussiaWar\",\"329\":\"Congratulations my girl All the way from Botswana \\ud83c\\udde7\\ud83c\\uddfc, I worked for her 4 days ago. She is forever Rich. #PokemonPresents #Pelosi https:\\/\\/t.co\\/LonB0rDlm4\",\"330\":\"Sign up for the Mara Wallet waitlist and receive rewards in USD and crypto for future use on Mara Wallet\\nhttps:\\/\\/t.co\\/PnV883N3cb\\n\\n2$ after successful registration\\n#Taiwan #tzuyuedit #twice #taipei #thailand #usa #france #nft \\n#Enjin\",\"331\":\"#Attention is dropping tomorrow please follow my @Spotify\\nAccount @Swanskid_ to be the first person to get it \\ud83d\\udd25\\ud83d\\udccc\\ud83d\\ude4f. Please support Ghana Music and let's push African music to the top\\n\\nhttps:\\/\\/t.co\\/Yw7hXKvPbK\\n\\nAzamati iphone 14\\n#GranFinalTheVoice #Taiwan #\\u0633\\u0643\\u0631\\u0628\\u062a77 #onstorm\",\"332\":\"Soup is ready \\n\\n#Taiwan #AllOrNothingArsenal #PokemonScarletViolet #AamirKhan #onstorm #SheggzOlu # https:\\/\\/t.co\\/ywYK05ZX3w\",\"333\":\"TVL is an important metric to consider when inverting into DeFi projects and here\\u2019s how to calculate it.\\ud83d\\udc47\\ud83c\\udffe\\ud83d\\udc47\\ud83c\\udffe\\ud83d\\udc47\\ud83c\\udffe\\n\\n#DeFi #MONEY #NIO #Taiwan https:\\/\\/t.co\\/4eKCDVL1AF\",\"334\":\"How to make your laptop faster \\n\\nVideo Credit- @tiktok_us \\n\\n#onstorm #Taiwan #timesupolivia #SheggzOlu #sabinus #PokemonPresents #CommonwealthGames2022 #B2022Netball iPhone 14 Uduak Frank Akpan Mompha Zainab Ahmed ASUU Doyin https:\\/\\/t.co\\/qRPNMgIwn5\",\"335\":\"Breaking: China Fires Missiles near Taiwan in Drills after Pelosi Visit #NancyPelosiTaiwanVisit #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/BQhNvR2qE4\",\"336\":\"Happy Founders Day to all Ghanaians \\ud83c\\uddec\\ud83c\\udded. \\n\\n#FoundersDay Bernard Avle #fabrizio #cucurella Chelsea Ghana #designandbuild #homedecor #interiordesign #Taiwan #PokemonPresents #ghana #kwamenkrumah #thebigsix https:\\/\\/t.co\\/OjJXKjIxaW\",\"337\":\"My Itoku arewa friend in Abeokuta doing Bureau De Change said a dollar as at today to a naira is now 595.\\n1$ = N595.\\nAre you happy, fine\\nBut \\nIf you are sad about this check your conscience.\\nAPC, Buhari and Tinubu\\/Shettima shall succeed.\\n#arisetv\\n#sabinus\\n#Taiwan\",\"338\":\"BREAKING: Japan defense chief says five missiles launches by China during military drills near Taiwan fell into Japan\\u2019s exclusive economic zone.\\n#Peace #Taiwan #China #war https:\\/\\/t.co\\/geJezowyMb\",\"339\":\"Summer collection \\ud83d\\ude0d\\ud83d\\ude0d\\nSend a dm to order\\n#Taiwan #PokemonScarletViolet #BBNaija https:\\/\\/t.co\\/Wj1lzHDUbI\",\"340\":\"After my baby promised to buy me \\nAn iPhone 14,I sent him my ass catalogue showing my appreciation.\\n\\n#BadDecisions \\n#MONEY \\nonstorm \\nBrighton \\nlondon\\nJustin Bieber\\nniger\\nWizkid \\nChelsea \\nmartial \\n#Taiwan \\n#\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a \\n#Sheggz https:\\/\\/t.co\\/X3b0pY8Jui\",\"341\":\"Who Noticed That Diana Has Been So Quiet And Lonely And Moody Not just reminiscing and soliloquizing on her own alone #Taiwan #BBNaija #BBNajia #BBNaijaS7 #BBNaijaLevelUp #BBNaijaQuidax\",\"342\":\"This song is crazy \\u201csaa saa\\u201d y\\u2019all join the challenge #Wizkid #Adekunle #Taiwan #iphone14 #Mreazi #Machala https:\\/\\/t.co\\/8gHhmPcWNY\",\"343\":\"Where I wanna be right now. You can call it space \\n#Taiwan \\n#timesupolivia \\n#onstorm \\n#SheggzOlu \\n#kagiso \\n#sabinus \\n#MONEY https:\\/\\/t.co\\/KwJ1pfCXAO\",\"344\":\"if you're living in Nigeria nd u are not angry with this current government..you are definitely part of our problem\\n#Niger #Taiwan #BigBrother #SheggzOlu #sabinus #BadDecisions #MONEY\",\"345\":\"LISTEN TO PEOPLE BECAUSE LISTENING AFFECTS PEOPLE.\\n\\n#iphone14 iphone14 #Taiwan #timesupolivia #sabinus https:\\/\\/t.co\\/XWcnYOEdSF\",\"346\":\"My manger said I should post more videos of me Djing, so here we go #SheggzOlu #Taiwan bbnaija https:\\/\\/t.co\\/wyrlRD1y4C\",\"347\":\"Confession out on all platforms now !!!! Go stream and please share \\ud83d\\ude4f\\u26a1\\ufe0f\\u26a1\\ufe0f\\ud83c\\udfa7 #PeacefulRebelGang\\ud83d\\udd4a #Machala #Wizkid #Wizkidfc #Afrofusion #AFROBEAT #sabinus #2023election #Taiwan #BBNaija https:\\/\\/t.co\\/GQjxi8VaEt https:\\/\\/t.co\\/EbvZMC6t5w\",\"348\":\"#China conducts the largest-ever missile drills in the waters off #Taiwan.\\n\\nA day after U.S. House of Representatives Speaker Nancy #Pelosi's visit to the self-governing island, which Beijing views as its sovereign territory, China on Thursday undertook extraordinary military https:\\/\\/t.co\\/cXf8ss8bW0\",\"349\":\"Behind the scenes making the Electrified Amapiano Dance Video #mobilevideography #musicvideo #music #Taiwan #LoveIslandUSA #blackpanther #zeeteroliver #Amapiano https:\\/\\/t.co\\/1bcXMsNLWA\",\"350\":\"Need To Fund Your NaijaBet Account?\\n\\n\\ud83d\\udc49Dial our Unique USSD CODES to fund your account INSTANTLY and STAKE on your Favourite!\\n\\n\\ud83d\\udcf2GTBANK USERS *737*50*Amount*46#\\n\\n\\ud83d\\udcf2FIRSTBANK *894*89402543*Amount#\\n\\n\\ud83d\\udcf2OTHER BANKS *402*89402543*Amount# \\n\\n#Taiwan #HopeAgain2023 Brighton https:\\/\\/t.co\\/kBSGuw5lAF\",\"351\":\"#Judge waives wig requirements for #Lawyers\\n#BadDecisions\\n#Taiwan\\nhttps_daddyy:\\/\\/agbakablog.com\\/2022\\/08\\/04\\/kenya-lawyers-may-do-without-wigs\\/\",\"352\":\"We are all blessed with tremendous potential, the only thing holding you back is SELF DOUBT. \\n\\n#Motivation #Taiwan\",\"353\":\"@Qdpaper2 Come see @adams_oshiomole looking for his relevance in the Pit Latrine. Chai what will politicians not do\\/say for Money and relevance? #davidhundeyin #Mompha #Obidatti023 #Taiwan\",\"354\":\"This me but not my music #Taiwan #LoveIslandUSA #AllOrNothingArsenal #AllOrNothingArsenal #AllOrNothingArsenal #timesupolivia #PokemonPresents #onstorm #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #kagiso #kpss2022iptaledilsin https:\\/\\/t.co\\/OwCNmTJy2S\",\"355\":\"Here is my invitation code for Alpha Network. Use the invitation code: yinqah. Download the app at https:\\/\\/t.co\\/8sgE1PQYKE and get 1 Alpha Coin for free!\\n\\n#Taiwan #PiConsensus #PiNetworkUpdates\",\"356\":\"Guess what? Our designs are affordable \\ud83e\\udd29\\ud83e\\udd29\\nDistance isn't a barrier \\ud83e\\udd29\\n#Taiwan \\n#EndAsuuStrikeNow \\n#JKLive\",\"357\":\"The Taiwanese army began moving 155 mm M114 howitzers and 120 mm mortars closer to PLA training areas.\\n\\n#Taiwan #TaiwanIsaCountry #ChinaTaiwanCrisis #LoveIslandUSA #AllOrNothingArsenal #timesupolivia #Trending #trekkerterroristen https:\\/\\/t.co\\/1k4n29zj8M\",\"358\":\"God\\u2019s not Dead \\ud83d\\ude4c\\ud83c\\udffe #Taiwan #LoveIslandUSA #AllOrNothingArsenal\",\"359\":\"Portrait study\\n#art #NFT #NFTs #scribbleart #onlyfansgirl #LoveIslandUSA #PokemonPresents #Trending #USA #portraits #artwork #viral #Taiwan https:\\/\\/t.co\\/nqu1JUJBNW\",\"360\":\"An open reading of the\\\"motion of destiny\\\" written by Osagyefo Dr.Kwame Nkrumah at all public schools on this day #FoundersDay and on #FounderDay will be a step in the right direction. @OfficialCAAfeku \\n\\n#CitiCBS Bawumia erick Ofori antwi\\n#ManUnited #NickiMinaj #Taiwan \\nLondon\",\"361\":\"Goke failed his exam and then killed himself in Kwara\\n#Taiwan #Gombe \\nhttps:\\/\\/t.co\\/VSqloXTTN7\",\"362\":\"Available in Black size 38\\n5000naira only\\nDM or Comment to order\\n\\n#Taiwan \\n#iphone14\\n#sabinus https:\\/\\/t.co\\/maVn9omPE3\",\"363\":\"Today at kenyatta market Enugu. It is well\\ud83d\\ude13\\nThe government is demolishing the electrical market.\\n\\n#Eloswag Gombe datti #davidhundeyin \\n#Taiwan \\n#Obidatti023 https:\\/\\/t.co\\/U63Lw3koX1\",\"364\":\"Winners don\\u2019t quit and quitters don\\u2019t win! \\ud83d\\udcaa\\ud83c\\udffd\\n\\nYou can reach us for crypto exchange or investment tips on WhatsApp\\/Telegram - 07082448201.\\n\\n#Bitcoin #Taiwan #BTC #Crypto #cryptocurrencies #bulls #Bears #quote #MotivationalQuotes #tradingcrypto https:\\/\\/t.co\\/JD9k0lRhKe\",\"365\":\"Ashaiwo season but your dms dry pass Sahara desert \\ud83d\\ude02\\ud83d\\ude02\\n\\n#maufemor #Taiwan #timesupolivia #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #AllOrNothingArsenal\",\"366\":\"It is tall. \\u2705\\nIt has big battery. \\u2705\\nIt can Call & WhatsApp. \\u2705\\nIt is under \\u20a650,000. \\u2705\\nCheck it: https:\\/\\/t.co\\/RiL8U7EDdz\\n\\n#affordable #Taiwan iPhone 14 Android 13 God Abeg Apple Airtel Mompha Eloswag ASUU #PiConsensus #Wizkid Airtel Toyota Lord Jesus Kenyatta Common Person https:\\/\\/t.co\\/fUqpTBJqZB\",\"367\":\"Barr. Chijioke Edeoga is the authentic Governorship candidate of @NgLabour \\n@Chude__ @drpenking @Jack_ng01 \\n\\n#Taiwan #Niger #davidhundeyin #ENUGU #southeast https:\\/\\/t.co\\/aJyefnJaPq\",\"368\":\"HURRAAYYY!!!!! Master Tea Hibiscus won the 2022 Great Taste Award in the UK!\\ud83d\\udc83\\ud83c\\udffb\\ud83d\\udc83\\ud83c\\udffb\\n\\nNicert Expert Consulting Limited (NECL) trained them on Food Safety Standards.\\n\\nWhereas Nicert Limited certified them for HACCP and ISO 22000.\\nThink HEALTH! Think MASTER TEA!!\\n#Taiwan #sabinus https:\\/\\/t.co\\/Brr9ZnDADz\",\"369\":\"Pls, if you see this tweet save a soul it's btw life and death 55k pls no amount is small account no 0116996610 Gtb sunny #sabinus #Taiwan Toyota man u #CommonwealthGames2022\",\"370\":\"BREAKING NEWS : #China's Ministry of Defense releases an official infographic. which involved #military #exercises around the island of #Taiwan today (August 4, 2022). https:\\/\\/t.co\\/UhSpASo6FT\\n\\nThe chicken is coming home to roost. https:\\/\\/t.co\\/qazOjUwnZ7\",\"371\":\"Save more on @gobarta_ . Download the Gobarta app today!\\n\\n#gobarta #barter #trading #tradebybarter #BBNajiaS7 #Taiwan https:\\/\\/t.co\\/C2HwqBfqlE\",\"372\":\"Team Captain, Derek Abrefa and Cynthia Kwabi have just beaten gritty Jamaica 3-1 in the mixed doubles event.\\nThe victory means they advance to the next stage of the table tennis competition. #CWG2022 #CWG #AllOrNothingArsenal #Taiwan #CommonwealthGames2022 https:\\/\\/t.co\\/rcqbW43LcE\",\"373\":\"@ChimarokeNamani Greetings #Taiwan\",\"374\":\"Happy birthday King \\ud83d\\udc51 Shuga #Taiwan #Trending @shuga https:\\/\\/t.co\\/CN3kYOdU36\",\"375\":\"Support Ijoko Project\\nSupport Child Tech Education\\nSupport Rubies Technologies\\n\\n#abuja #Taiwan God abeg https:\\/\\/t.co\\/Gx6T3vHHf5\",\"376\":\"Enjoy Life while you still have a heartbeat. We don't know the day or the hour it will end. Take that step. Come on. You can do it. Good job. #abeggod #AllOrNothingArsenal #Archie #Taiwan #PokemonPresents #erica #BBNaija7 https:\\/\\/t.co\\/gliY1QIjih\",\"377\":\"God Abeg spare the life of David Hundeyin. I Abuja will be after him because of this leaked Bubu's approval for N1.4b to buy cars for Niger Republic thru Kaura Motors allegedly owned by Usman Liman in H of Reps.\\n\\nSam Omatseye\\nOshiomole\\nReno\\n#sabinus\\n#Taiwan\\n#BadDecisions https:\\/\\/t.co\\/yDtdwBf7Nr\",\"378\":\"Chinese military helicopters fly over Pingtan Island, one of the closest points to #Taiwan.\\n\\n#China has begun massive military #exercises off Taiwan after US House Speaker Nancy #Pelosi's visited. https:\\/\\/t.co\\/0XVPeJqRkf\",\"379\":\"@Consigliere909 What\\u2019s best for her ko\\u2026She was brought into the house has fake house to carry out a task for Biggie\\u2019s house\\u2026Plus it\\u2019s Biggie\\u2019s house and he can give her a task\\u2026If she wants to do what\\u2019s best for her then she should go to her own house #Taiwan\",\"380\":\"Pi's 1.5m followers in 3 years of existence on Twitter. #Ethereum and other #cryptocurrencies didn't have such a record at age 3. Join Pi Network at link - https:\\/\\/t.co\\/Xlq8xpezyU, and make your own research. Use my referral code: formulacode \\n#Piconsensus #Taiwan #Sol #AVAX https:\\/\\/t.co\\/z9GfttvsFn\",\"381\":\"@minorta China is just been merciful to you,since you don\\u2019t know the meaning of independence,who gave you independence. You still have mouth to come here and talk \\nIf I was china\\u2019s president #Taiwan would be a think if the past\",\"382\":\"JUST OUT NOW\\ud83c\\udfe0\\ud83d\\ude4b\\u200d\\u2642\\ufe0f\\n\\nPAY AND PACK IN\\ud83e\\uddf3\\ud83e\\udd73\\n\\nRoom selfcon *@ Abeokuta street Bariga \\n480k per annum\\nTiled road \\n20hours electricity \\nWater is available \\n#modella #sabinus #timesupolivia #Wizkid #teni #ibadan #BBNaija #BBNajiaS7 #bellashmurda #EFCC #BigBrotherNaija #SheggzOlu #Taiwan https:\\/\\/t.co\\/sdWjMuziSQ\",\"383\":\"The way Ghanaians love this Buga song ehh you'll think it is their President that sang it\\ud83d\\ude05\\nKizz should definitely do a show in Ghana. Man will sell out any arena in seconds\\ud83d\\udcaf\\ud83d\\udcaa\\n#Taiwan #Emily #Nigerrepublic\",\"384\":\"BREAKING: Chinese forces fired \\\"multiple\\\" ballistic missiles into waters around Taiwan\\n\\n#China #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/JMx7Icb0oM\",\"385\":\"https:\\/\\/t.co\\/k9d3nD6BGb\\nI have a new YouTube channel on my https:\\/\\/t.co\\/dDL1CbPJy1 to watch!\\n#Taiwan #AllOrNothingArsenal #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"386\":\"Can you give us an oculus device to shop? \\ud83c\\udf1a\\ud83c\\udf1a\\n\\n#spacemallio #spacemallshopping #spacemallapp #iphone11 #Iphone14ProMax #BeautyTukura #Taiwan #Entrepreneur #BusinessOwners #SMESupportHour #SMEs https:\\/\\/t.co\\/WOacyTORbz\",\"387\":\"After Taiwan, Nancy Pelosi in South Korea to meet political leaders.\\n\\nIn #SouthKorea, #Pelosi avoids public comments on #ChinaTaiwanConflict \\n\\n#Taiwan #China https:\\/\\/t.co\\/kGhTbqimX7\",\"388\":\"Come get solutions to building structures of your desires. \\n\\n#building #Taiwan #nigeria #lekki #construction #projectmanagement #Structures https:\\/\\/t.co\\/gtYI0jeg8Q\",\"389\":\"Peaceful dialogue with terrorist.\\n#JusticeForAlikaOgorchukwu #Taiwan Niger Republic #Finmin https:\\/\\/t.co\\/UsgUnSpj84\",\"390\":\"HEALTH is WEALTH \\n Know this and know peace !!!!!!\\n\\n#Taiwan #HealthCareCrisis #healthylifestyle #Motivation\",\"391\":\"It is quite unfortunate how the followers of Tinubu are trying to reframe his purpose for running for presidency. He clearly said that he is running because it is his turn. His ambition is for his selfish interest. Followers cannot superimpose the intent of their leaders. #Taiwan\",\"392\":\"Thursdays are for Throwbacks!\\nWe're paying homage to the 1950s retro checkered kitchen.\\nThe checkered floor was a thing then\\nTo the present day ultramodern fully fitted kitchen with sleek designs&marble countertops.\\n #ThrowbackThursday #tbt #GodAbeg #Datti #Taiwan #ASUU #Finland https:\\/\\/t.co\\/Y6MLUjktPI\",\"393\":\"Joseph Paul Amoah is up next\\u27a1 in 200m men's in heat 5.\\n\\n#CommonwealthGames2022 #Taiwan #Accra2023 #GTVSports https:\\/\\/t.co\\/lHlF5DsSgw\",\"394\":\"Sometimes ago, we were opportune to reach out to secondary school students to engage them with the basic lessons related to their respective department. \\n\\nLet's make the world a better place! \\n\\n#impact #Depay #mali #art #science #commercial #giveback #throwback #Taiwan #Assu https:\\/\\/t.co\\/DMcAlLylSy\",\"395\":\"Another set ready to ship. \\nStoree doesn't let you pay from or ship to Nigeria? \\nNo worries, just send us a DM. We got you covered \\n\\n#Taiwan #timesupolivia #CommonwealthGames2022 #Nigeria #shopping https:\\/\\/t.co\\/k24n6sdcoO\",\"396\":\"Designer Changing a last minute design during Presentation...\\n\\n@Nabhel_ @pixelyut @Big_Heeazy\\n#designers #Taiwan #CommonwealthGames2022 #timesupolivia https:\\/\\/t.co\\/UWW30ahzr7\",\"397\":\"You need a platform for,\\nDeriv Funding and Withdrawal ?\\n\\nLog on to our website at https:\\/\\/t.co\\/VJMnsXbNYd we offer the best affordable rate.\\n\\n#wizkid #festac #iPhone13 #Taiwan #invest #capitec #teni #explore #BBNajiaS7 #BBNaija https:\\/\\/t.co\\/vJ5ijjcRis\",\"398\":\"It's been 4 good years of God's blessings to this union. Here's a toast to more beautiful memories together in one accord. #Happyweddinganniversary #love #moodidit #couplegoals #Taiwan #Uyajola99 #CommonwealthGames2022 # https:\\/\\/t.co\\/dCa6J36MmD\",\"399\":\"\\ud83c\\uddfa\\ud83c\\uddf3@UN Secretary-General @antonioguterres: Our position is very clear. We abide by General Assembly resolutions, by the #OneChinaPolicy, and that is the orientation that we have in everything we do.\\n#China #Taiwan #UNGA https:\\/\\/t.co\\/dHyQAsHk3y\",\"400\":\"I know of only one founder and he is the one and only Dr Kwame Nkrumah,he never dies!!!! #YLPghana #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #AllOrNothingArsenal #economy https:\\/\\/t.co\\/cNnNedVSHp\",\"401\":\"Check out my new single \\\"Jaiye\\\" distributed by @DistroKid and live on Apple Music!\\n#Taiwan #AppleMusic #AppleEvent\\n#AppleMusicRT #portapottydubai \\n#portharcourt #lagos #AbujaTwitterCommunity #Kano\\n#timesupolivia #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #CommonwealthGames2022 #AFROBEAT\\n\\nhttps:\\/\\/t.co\\/SEd4udv6bm\",\"402\":\"Need a home ? Talk to us today.\\n\\n#zigproperties ASUU CHINA iPhone 14 Real Estate Investment Abuja Nasarawa NIGERIA #sabinus #Taiwan #CommonwealthGames2022 https:\\/\\/t.co\\/ZFgC36Ucpe\",\"403\":\"It is hard to see the frame \\ud83d\\uddbc when you are in the picture #Taiwan #30BG\",\"404\":\"@FreddyNtafumila Let\\u2019s be Mutual \\ud83e\\udd79\\ud83e\\udd79#Taiwan\",\"405\":\"Dropping tomorrow morning a\\n\\nGet ready to wiggle what mama gave you \\ud83d\\ude0e\\n\\n@Zlatan_Ibile @gutier_navarro @SnoopDogg @mreazi \\n\\n#Taiwan #AllOrNothingArsenal #BB24 #timesupolivia #onstorm https:\\/\\/t.co\\/p3OU4EnjKl\",\"406\":\"As expected: - The Chinese just added another area around Taiwan , the seventh in number, where their exercise will be held - and extended it until Monday.\\n#Taiwan\",\"407\":\"Taiwan's Ministry of Defense announced that some of its air defense systems were activated in response to China's launch of ballistic missiles towards the Taiwan Strait.\\n#Taiwan\",\"408\":\"Reports says that some of these multiple guided missile systems, launched from their PCL191 launcher, from the Xiamen Island, Fujian, China have entered the airspace of Taiwan, before hitting the ocean on the other side of the country. #Taiwan https:\\/\\/t.co\\/GeyHHH3sFh\",\"409\":\"China fires missiles towards the straits of Taiwan for the first time since 1995. This is part of their exercise.\\n#Taiwan\",\"410\":\"\\ud83d\\udc9cWe stan a healthy and beautiful hair \\ud83d\\udcaf.\\n\\n@simplyshumba is sure serving us good hair vibes.\\n\\n\\ud83d\\udc9cLike and retweet if you love this hair.\\n\\n#nectarbeauty #naturalhair #beauty #Taiwan #AsiaCup2022 https:\\/\\/t.co\\/CNv51CwZVQ\",\"411\":\"Patronize my friend @mira_wealth TODAY for any Graphic Design Services \\n#GraphicDesigner \\n#Graphicsdesign \\n#graphics \\n#sabinus #Datti #CynthiaOkereke #davidhundeyin #Taiwan https:\\/\\/t.co\\/ixkeriaLRu\",\"412\":\"Meanwhile, Edo South APC Senatorial Candidate Collected His Wotowoto on Tuesday at #SapeleRoadMatters, #FixSapeleRoad Protest.\\n\\n@FMWHNIG @tundefashola @MBuhari @channelstv @MobilePunch @thecableng \\n\\n#Taiwan #PokemonPresents #onstorm #timesupolivia #GizliSakli #Niger #PDP #ASUU https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"413\":\"For sale!!\\n\\nPinnock beach \\nPalatial 4bd detached house with 2bq , study, laundry room, pool etc \\nOn 860msplot \\nPrice. 600m\\n#Taiwan #PokemonPresents #onstorm #AsiaCup2022 #lagos #Obidatti2023 #TinubuShettima2023 #AtikuOkowa2023 https:\\/\\/t.co\\/1hkrhZ6FGP\",\"414\":\"What a true love \\n#Taiwan #PokemonPresents #onstorm #PokemonScarletViolet #timesupolivia #CommonwealthGames2022 https:\\/\\/t.co\\/FkCxF40SeP\",\"415\":\"Fluted panel are sustainable solutions to your interior cladding project for both residential and commercial\\u2764\\ufe0f #Taiwan #Biden in 2024 #AsiaCup2022 https:\\/\\/t.co\\/qFRoP3l7x1\",\"416\":\"Strategic location\\n\\nSerene business environment \\n\\nWide Client Reach \\n\\nAdequate security\\n\\n24\\/7 Power Supply etc.\\n\\nDon't sleep on this \\n\\nBENIN CITY MALL is NOW LEASING\\n\\nOpens January 2023\\n\\nFor more, see details on flyer\\n#benincitymall \\n#iPhone14\\n#Taiwan\\n#Oshiomole\\n\\ud83d\\udd25 \\ud83d\\udd25 \\ud83d\\udd25 https:\\/\\/t.co\\/WeK9AczT9n\",\"417\":\"It is not about you providing SERVICE, it is about you providing QUALITY SERVICE.\\n\\nGood Morning \\n\\n#sabinus #Taiwan #badagry #socialmediamarketing #socialmedia #dabrandcity #socialbrandcity #ThrowbackThursday\",\"418\":\"Retweet For me please my helper fit Dey your timeline I never work in a while #CannabisCommunity #party #HypeBeast #Taiwan https:\\/\\/t.co\\/E8Qdn5xljL\",\"419\":\"Tribalism is a serious crime in Rwanda. They banned the recognition of tribes after the 1994 Rwandan Genocide, which led to the deaths of one million people. Nobody is allowed to identify or discriminate based on tribes. #HopeAgain2023 #Taiwan #CommonwealthGames2022 #AsiaCup2022 https:\\/\\/t.co\\/30gXogxS1T\",\"420\":\"My drawing of @BarackObama \\ud83e\\udd29\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#sabinus #Taiwan @yabaleftonline @legitngnews Iphone 14 ASUU Bella Shmurda @BarackObama @BBCBreaking @channelstv https:\\/\\/t.co\\/zsZ4X2xvtX\",\"421\":\"Today is a new day and Evey day is a day to begin again\\n#Taiwan\\n#CommonwealthGames2022\",\"422\":\"@IBEDC_NG is not concerned about customer's plight in Saki. Businesses are being destroyed by incompetent ibedc. 20mins of supply today after more than 1week blackout. Very unfortunate. @NERCNG do something now.\\n@PowerUpNG\\n#Taiwan\\n#CommonwealthGames2022 #thursdayvibes #GoldMedal\",\"423\":\"\\ud83d\\udcafThe protein and vitamins in the mayonnaise make hair super shiny.\\n\\n\\ud83d\\udc49Send us a DM now to get this product.\\n\\n#nectar #nectarbeauty #beautiful #PokemonPresents #Taiwan #onstorm\",\"424\":\"Chinese social media is awash with similar videos & posts calling for violence against Taiwan and this man was even upset that the Chinese government allowed #NancyPelosi plane to land in #Taiwan instead of shooting it down. \\ud83d\\ude1e\\nIf #WW3 happens, that would be the end of humanity https:\\/\\/t.co\\/zduT6xE89u\",\"425\":\"@vdjtflexx Who relationship nor favour go still day drop quote\\nComrade \\ud83e\\udd20\\ud83e\\udd20\\ud83e\\udd20\\n#Taiwan\\n#CommonwealthGames2022\\n#davidhundeyin\\n#iphone14\",\"426\":\"CIS Video Lectures https:\\/\\/t.co\\/qY8EJ70kOG \\n\\nNO LEAVE NO TRANSFER EFCC Datti iPhone 14 David Hundeyin \\n #Wizkid #sabinus #Taiwan #BeninCityMall https:\\/\\/t.co\\/ZBTWkZT89P\",\"427\":\"Repression against women is weaved around the social norms that over the years have pushed even modern-day women to agree with the systemic and structural attack on women. \\n#china #Finland #Taiwan #PokemonPresents #onstorm #Tinubu #SDGs #OBIDIENTS #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #onstorm https:\\/\\/t.co\\/I3KElydxVd\",\"428\":\"Order your bitter kola today we deliver nationwide. 6k per kilo Call or Chat 08138432456. #bellashmurda #Finance #Wizkid #Taiwan #BBNaija #davido #iphone14 https:\\/\\/t.co\\/2LLXk50s2F\",\"429\":\"Taiwan should wise up and not let their country be thrown into crisis... Ukraine should be a lesson to all concerned. America only cares about America, everything else is a charade. \\n#ChinaTaiwanCrisis\",\"430\":\"We need to change the current change\\ud83e\\udd14\\n#Taiwan #OBIdientlyYUSful\",\"431\":\"Apple you no go allow our gyals puna rest?..\\niPhone 14 #Wizkid 1.4B #Taiwan #PokemonScarletViolet #YEEZYDAY #Nigeria https:\\/\\/t.co\\/AzpwIvRGzg\",\"432\":\"Feel free to fall in love over again with our impeccable service, our environment and everything about @SupremeContine1\\n\\nThis should be your next stop for comfortability and luxury\\ud83d\\ude09\\n\\n #bbnaija #Taiwan https:\\/\\/t.co\\/GkUDEs2ebr\",\"433\":\"#BBNaija \\ud83c\\udfb6\\ud83d\\udd25 @Pa_J \\u2013 \\\"PVC\\\" : #Mp3 . Have you registered for your own. If no please do. \\nStream \\ud83d\\udc47 \\nhttps:\\/\\/t.co\\/0h70sKlwAD\\n#trending #pvcnigeria #Taiwan\\n#Sheggsolu #iPhone #iphone14 #PeterObi #BBNaijaS7 https:\\/\\/t.co\\/sGvJ9HSAsQ\",\"434\":\"It was my Alfa wedding, sincerely it\\u2019s good to be kind people really turn up for him. I enjoyed every bit of my stay at the party.\\n#iphone14 #SheggzOlu #Taiwan #CommonwealthGames2022 #DONBELLEmpire https:\\/\\/t.co\\/HNT6a2AlZU\",\"435\":\"Baby I will not touch you untill we get married does such a man still exist \\n\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude48 #efcc #Taiwan #Gistlover\",\"436\":\"Made this customized handmade two piece.\\nIt costs $0.00 to retweet & help me grow my small business please \\ud83e\\udd7a\\ud83e\\uddf6\\n\\n#Taiwan #SheggzFC #bella #BigBrother #BBNaija #onstorm #crochet https:\\/\\/t.co\\/d0ZFWDIRHW\",\"437\":\"Owe is different From Own!\\n\\nI would advise you spend more on education and less on makeup kits.\\n\\nIPhone 14 #SheggzOlu David Hundeyin EFCC Bella Shmurda NO LEAVE NO TRANSFER Innoson Jaruma #BBNaijaS7 Datti Dangote ASUU #LagosSwindlers Mama Dollaz #CommonwealthGames2022 #Taiwan\",\"438\":\"Greetings Ghanaians \\ud83c\\uddec\\ud83c\\udded, The way I was looking for President Edward Akufo-Addo. Oh naa maybe he was President of Ghana in 2069.\\n\\n#Alienscomplianceorder #Taiwan \\nRest in peace Sammy Gyamfi #KNUST Big Ivy Daniella Prampram Umtiti Emily Kanye Tottenham Osman Bukari Iniesta https:\\/\\/t.co\\/wtcps5fqDU\",\"439\":\"\\\"What Sector of Your Country's Economy Do You Think Blockchain Technology Can Impact and Improve Greatly?\\\"\\n\\n#Binance #BNB #onstorm #CommonwealthGames2022 #Finance #Coinbase #CryptocurrencyNews #Taiwan #r4today #YEEZYDAY #blockchaintechnology #BlockchainCentral #BBNaija https:\\/\\/t.co\\/VjXGAOwrhN\",\"440\":\"You carry huge sum of 1.4billion to buy just 10 SUV for another sovereign state \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\n#sackbuhari\\n#Taiwan \\n#PokemonScarletViolet\",\"441\":\"Who will rescue Nigeria? #Taiwan #CommonwealthGames2022 #ASUU #BBNajia #AsiaCup2022 #Ukraine https:\\/\\/t.co\\/MICtAAyTx6\",\"442\":\"China begins live-fire military drills around Taiwan, Taiwan says \\u201cBallistic Missiles\\u201d fired https:\\/\\/t.co\\/CizsNSzYIK\\n#Taiwan #China #Taipei #Beijing #Pelosi\",\"443\":\"To the best of my knowledge, only Priests can wear Birreta (cap) inside the Church. The man speaking here is Chairman of a political party in Nigeria. Shameful!! #ASUU #BBNajia #AsiaCup2022 #ChinaTaiwanCrisis #Pelosi #CommonwealthGames2022 #COVID19 https:\\/\\/t.co\\/6FJESNlTb5\",\"444\":\"NEW TYPE BEAT \\n\\n#Taiwan #PokemonPresents #PokemonScarletViolet #onstorm #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #timesupolivia #knust #kpss2022iptaledilsin #DonBelle #FOREVER1 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #DONBELLEmpire #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Pakistan #AsiaCup2022 #SheggzOlu #Wizkid #Ethereum https:\\/\\/t.co\\/o5Pmz3XLfc\",\"445\":\"That's the kind of connection someone needed in Nigeria to flourish \\ud83d\\ude02 \\ud83d\\ude0b \\n#Connecticut #Nigerian #Messi #FIFA23 #BoycottAliaBhatt #PokemonPresents #comicbooks #Comedyvideos #ComeBackHome #KenyaDecides2022 #ChinaTaiwanCrisis #Russia #UkraineWar #BBNajiaS7\\nhttps:\\/\\/t.co\\/woD6hSDUtq https:\\/\\/t.co\\/9CAwdKId3g\",\"446\":\"Ask Niger Republic to immediately refund N1.4 billion and use it to offset ASUU funding - SERAP tells Buhari administration\\n\\nRead More: https:\\/\\/t.co\\/Jxvlw23nix\\nASUU NOLEAVENOTRANSFER Nigerien AriseTV Deji MamaDollaz Somizi DangoteBellaShmurda #Buhari Jaruma CynthiaOkereke #Taiwan https:\\/\\/t.co\\/P2QH6zdN0t\",\"447\":\"I think Jacintha Ocansey and Adina look alike, anaa ? \\ud83e\\udd14\\n\\n#Taiwan #FoundersDay #TheBigBreakfast\",\"448\":\"The total cancellation of #Batgirl is really sad and disheartening.\\nPlus they were in the final stages of post-production! Bilall Fallah & Adil El Abri \\ud83d\\ude1e\\nI think there's a hex on WB \\n#Batgirl\\n#batgirlmovie\\n#BatgirlForever\\n#LeakBatgirl\\n#LeakBatgirlMovie\\n#Taiwan \\n#AsiaCup2022\",\"449\":\"UPDATE: Kidnapped Nollywood actors regains freedom\\n\\nRead More: https:\\/\\/t.co\\/W6IqLtac4r\\nASUU NOLEAVENOTRANSFER Nigerien AriseTV MamaDollaz Deji Somizi Dangote BellaShmurda #Buhari Jaruma CynthiaOkereke Boehly #Taiwan Pheelz DavidHundeyin #jobsthathavethemostsex NATO https:\\/\\/t.co\\/z7XRdlIub1\",\"450\":\"Happy Birthday to the first Black U.S President, Barack Obama.\\n\\n#happybirthday\\n#happybirthdaybarackobama\\n#visa\\n#travel\\n#visaapplication\\n#Taiwan\\n#USA https:\\/\\/t.co\\/OaqxnPnlHT\",\"451\":\"I have harnessed myself\\nI think am Ready For a RECORD DEAL\\ud83e\\udd7a\\n\\nCc: @choccitymusic @MI_Abaga @thisisAQ\\n#Wizkid #Zamazamas #Afrobeats #TheGuy #onstorm #Taiwan https:\\/\\/t.co\\/njEI0I4SGm\",\"452\":\"year sef is almost as good as wasted \\ud83e\\udd14.\\n\\n All ye that want next year I give you all one bottle of Guinness\\ud83d\\ude02\\ud83d\\ude02 as una dey shout next year, get 2024 for mind too\\ud83d\\ude0e\\nTwo years will be wasted\\u2668\\ufe0f\\u2716\\ufe0f, I come in peace \\u270c\\ufe0f\\u270c\\ufe0f\\ud83d\\ude05#onstorm #Taiwan #FOREVER1 #GiveUsPeterObi2023\",\"453\":\"\\\"As speculation mounts that she will retire, @SpeakerPelosi visited #Taiwan & stood with its first #female #president in another show of opposition to #China.\\\" | @NBCNews \\n\\nWill the #USA will be there to offer support, should #China go on full offensive?\\n\\nhttps:\\/\\/t.co\\/l2EOshHwDE\",\"454\":\"Fake Bishops: Christian group to issue identification numbers to clerics in Nigeria\\n \\nRead More: https:\\/\\/t.co\\/8tQA6sDt07\\nASUU Nigerien AriseTV MamaDollaz Deji Somizi Dangote BellaShmurda #Buhari Jaruma CynthiaOkereke Boehly #Taiwan Pheelz DavidHundeyin NATO#jobsthathavethemostsex https:\\/\\/t.co\\/V3L2YpfZBh\",\"455\":\"My first debut album will be out on the 15th of august\\ud83d\\udd25\\n\\n#FYP #DonBelle #Taiwan #knust #artistsontwitter #AsiaCup2022 https:\\/\\/t.co\\/lFLvUy6837\",\"456\":\"Tagged @Sia that her music unstoppable is trending in Nigeria wonderful\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\n\\nArise TV Innoson Mama Dollaz Cynthia Okereke ASUU Sam Omatseye Rufai Oshiomole Jaruma Mompha Datti Toyota Big Bella All or Nothing David Hundeyin Deji #sia #Taiwan #onstorm #AsiaCup2022 https:\\/\\/t.co\\/DwOAbXEW0R\",\"457\":\"Washing Machine With Shoe Washer.\\n\\nPrice - N45,500\\n\\nNationwide delivery \\ud83d\\ude9a \\ud83c\\uddf3\\ud83c\\uddec\\n\\nDM to order or send us a message on WhatsApp, numbers on our bio.\\n\\n#AonArsenal #AllOrNothing #Taiwan #PokemonPresents\\nNO LEAVE NO TRANSFER \\/ All Or Nothing \\/ Premier League \\/ David Hundeyin https:\\/\\/t.co\\/S5AXrskrPQ\",\"458\":\"Who has ever been in this situation?\\nAnd what was the feelings like?\\n#onstorm #FOREVER1 #PokemonPresents #Taiwan https:\\/\\/t.co\\/232AciVFo1\",\"459\":\"Nigeria should come out openly and announce they don't have a President.. Maybe, just maybe Help will come from somewhere\\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/LFmXT3mSmp\",\"460\":\"Quick one from your analyst\\u2026 #RYE #ryeci #Bitcoin #cryptocurrencies #Crypto #analysis \\n\\n#triclown #PokemonPresents #Taiwan #knust https:\\/\\/t.co\\/adGWS5HU7U\",\"461\":\"But how do you wake up every day with Buhari as your President and Tinubu again as your next choice?\\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/mWBy6AU7IA\",\"462\":\"I love the much you guys are doing. Lets keep it up. \\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music. https:\\/\\/t.co\\/SGhptaePzL\",\"463\":\"We are alive today and guess what it a great day to follow @safrootics to make that cash through video games P2E #PokemonPresents #NFT #P2EGame #videogames #onstorm #DONBELLEmpire #Taiwan #PokemonPresents\",\"464\":\"Travel cosmetic bag, available in large quantity. Perfect souvenir for your guests \\n\\nWholesale price:2500\\nNationwide delivery \\n\\nTo order send us a Dm or call\\/WhatsApp 08033772577\\n\\n#BBNaija #Taiwan #Buhari #sabinus jaruma \\nCongratulations ozo https:\\/\\/t.co\\/D0Htk1x0hm\",\"465\":\"China hits Taiwan with penalties in wake of Pelosi\\u2019s visit https:\\/\\/t.co\\/p7udXGzOWk\\n#Taiwan #China #Taipei #Beijing #Pelosi\",\"466\":\"Ukraine \\ud83c\\uddfa\\ud83c\\udde6 lost the WAR to RUSSIA \\ud83c\\uddf7\\ud83c\\uddfa...... the media will keep hiding this from people, the billions sent to Ukraine was never used form weapons purchase\\ud83d\\udca5\\n\\n#UkraineRussiaWar #Ukraine #Russia #Taiwan #UkraineWillWin #UkraineWar\",\"467\":\"Minister of Finance, Budget and National Planning, Zainab Ahmed justifies the Federal Government's approval of N1.4B for the purchase of vehicles for Niger Republic. \\n \\n#Taiwan #NigerRepublic #Nigeria #Buhari #SUV https:\\/\\/t.co\\/gmCqDCXAtU\",\"468\":\"Challenges and obstacles are not the bad things of life, they are the food of champions!\\n#personaldevelopment \\n#Taiwan \\n#Beintentional\",\"469\":\"Utterly humiliated and exposed for its bluff, #China continues to toothlessly bark and endanger the lives of its own citizens by firing on the #Taiwan Strait, while Chinese beachgoers are nearby.\\n\\n#ChinaTaiwanCrisis https:\\/\\/t.co\\/fq3guErmgy\",\"470\":\"Wtf was he thinking \\ud83d\\ude02\\n#ASSU #Taiwan #AsiaCup2022 https:\\/\\/t.co\\/r19nkT6Hvz\",\"471\":\"Violence, inability to negotiate safe sex and lack of access to sexual and reproductive health information and services increase HIV vulnerability among sex workers \\n\\n@HivosWiL @gwheri @VSI_ng #timesupolivia #Taiwan #sexworkiswork\",\"472\":\"THE CROCS!!! 78 years young riding a motorcycle with 200hp daily #bikelife #bike #Taiwan https:\\/\\/t.co\\/mW0mCdPwZM\",\"473\":\"Dear @NAkufoAddo Can you please implement a policy that can help regulate the prices of goods and services in the country? Things are too expensive.. We can't take it anymore..\\n\\n#Ukraine #Taiwan #FixTheCountry\",\"474\":\"@instablog9ja It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"475\":\"Join us to wish the bosslady and CEO of Maximum Joy Foundation a happy birthday \\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#ChinaTaiwanCrisis\\n#Taiwan #Pelosi https:\\/\\/t.co\\/gYHpkxwPcE\",\"476\":\"@nigeriandailies @barratahmed It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"477\":\"@renoomokri It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"478\":\"@segalink It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"479\":\"@atiku @BUAgroup It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"480\":\"NEW MUSIC ALERT \\ud83d\\udea8\\ud83d\\udea8\\nMy latest song TERMINATOR is out \\ud83d\\udd25\\ud83d\\udd25\\nGo stream it\\ud83c\\udf0d\\n#Taiwan #AppleMusicRT #applestoashesgame #applemusic\\u0e23\\u0e32\\u0e04\\u0e32\\u0e16\\u0e39\\u0e01 #iTunes #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #PokemonPresents #appleiphones #airpodsgen2 #applemusicnigeria #applemusicaustralia #applemusicUK #iphone14pro #iPhones\",\"481\":\"@instablog9ja It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"482\":\"@triclowns It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"483\":\"@Chude__ @WillieMObiano It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"484\":\"@emersonpalmieri It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"485\":\"You just have to love @kwinmusic_ one of Africans finest Artist out of the south East . 16th of August her song Temper would be out, I can\\u2019t wait \\ud83d\\ude1c \\n#kwintemper #Taiwan #PokemonPresents #enugu #anambra #imostate #abia https:\\/\\/t.co\\/GWdlCnhlVA\",\"486\":\"@MobilePunch It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"487\":\"@NGRLabourParty It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"488\":\"@EfuaIsEnuf It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"489\":\"@MobilePunch I pray that doesn't include murdering\\/framing INNOCENT YOUTHS.\\n#ImoState #EbubeaguMustGo \\n#UN #FreeNnamdiKanuNow \\n#Taiwan #PeterObiForPresident2023 \\nIFB.\\n gwaz\\u1ecb\\u0301\\u00e9 nd\\u1ecb yardi g\\u1ecb\",\"490\":\"@GovSamuelOrtom @Austinokai It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"491\":\"@GazetteNGR @ifamobarin It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"492\":\"@IAOkowa @OfficialPDPNig It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"493\":\"@LeadershipNGA It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"494\":\"@Roland_speaks @emmaikumeh It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"495\":\"\\ud835\\udc4a\\u210e\\ud835\\udc66 \\ud835\\udc50\\ud835\\udc5c\\ud835\\udc5a\\ud835\\udc5d\\ud835\\udc5f\\ud835\\udc52\\ud835\\udc60\\ud835\\udc60\\ud835\\udc56\\ud835\\udc5b\\ud835\\udc54 \\ud835\\udc66\\ud835\\udc5c\\ud835\\udc62\\ud835\\udc5f \\ud835\\udc53\\ud835\\udc62\\ud835\\udc61\\ud835\\udc62\\ud835\\udc5f\\ud835\\udc52 \\ud835\\udc64\\ud835\\udc56\\ud835\\udc61\\u210e \\ud835\\udc61\\u210e\\ud835\\udc52 \\ud835\\udc5d\\ud835\\udc5f\\ud835\\udc52\\ud835\\udc60\\ud835\\udc52\\ud835\\udc5b\\ud835\\udc61??\\ud83d\\ude36\\n\\n\\ud835\\udc43\\ud835\\udc4e\\ud835\\udc61\\ud835\\udc56\\ud835\\udc52\\ud835\\udc5b\\ud835\\udc50\\ud835\\udc52 \\ud835\\udc4f\\ud835\\udc5f\\ud835\\udc5c\\ud83d\\udccc \\n#BBNaija #Taiwan #thursdayvibes\",\"496\":\"@BBNaija @EnochMonu2 @quidax It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"497\":\"@instablog9ja It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"498\":\"@daily_trust It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsSqtlV\",\"499\":\"@OBIMAKAMA2023 @firstladyship @PeterObi @doyinokupe @Dawa419 @Coalitionforpo @Amanafm98_1 @dudugombe @NgLabour It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"500\":\"@KAFTAN_TV It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"501\":\"@GazetteNGR It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"502\":\"@MobilePunch It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"503\":\"If you have Taiwan Scholarship Program Award Certificate from the Embassy in Nigeria to study in Taiwan and no admission yet. Or all admissions applied for are rejected you. DM pls.\\n#Taiwan #Scholarship #stipend https:\\/\\/t.co\\/P4cWauuqsP\",\"504\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/IaOMul24J1\",\"505\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/f16Z7WzVXa\",\"506\":\"Coward hands the enemy victory on a platter of gold \\ud83e\\ude99\\n\\nDon't stop!!!\\ud83d\\udcaa\\n\\n#Taiwan #onstorm #AsiaCup2022 #PiConsensus ASUU arise tv Chelsea MUFC aubameyang neves isco mama dollarz bella shmurda #Ronaldo Sam omatseye deji Khalid ozo innoson boehly nato jaruma CONGRATULATIONS OZO\",\"507\":\"Pelosi flew to Taiwan and then south Korea.\\nWhat a threat to world peace!\\n\\n#Pelosi #Taiwan #peterobi #WWIII #Russia #UkraineRussiaWar\",\"508\":\"Them aunties used to say its good for a man to know you have options. It keeps the relationship healthy & balanced. Don't be that person without options. #Taiwan #PokemonPresents #AONArsenal #FOREVER1 https:\\/\\/t.co\\/H8t6rTCD5X\",\"509\":\"Nigeria needs to export products, skills and services to improve our balance of trade surplus!\\nGet your teens in this conversation early enough!\\nWe are building an Export army!\\n#Taiwan #Japa #globalnews #Nigeria #youths #teens #inflation #AfCFTA #exports #youthevelopment #mindset https:\\/\\/t.co\\/x7WL4aotsa\",\"510\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/2nqfH7Fu77\",\"511\":\"For trainers and sneakers lovers \\ud83d\\ude0d\\n#Taiwan \\n#Fabrizio #Nike https:\\/\\/t.co\\/xVic1GMEyb\",\"512\":\"The day is finally here\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\nMJF official launch and golf tourney\\n\\n#ChinaTaiwanCrisis #Taiwan #Pelosi #USA https:\\/\\/t.co\\/2nxIWDaKrM\",\"513\":\"\\ud835\\udc38\\ud835\\udc63\\ud835\\udc52\\ud835\\udc5b \\ud835\\udc4f\\ud835\\udc59\\ud835\\udc4e\\ud835\\udc50\\ud835\\udc58 \\ud835\\udc56\\ud835\\udc60 \\ud835\\udc4f\\ud835\\udc52\\ud835\\udc4e\\ud835\\udc62\\ud835\\udc61\\ud835\\udc56\\ud835\\udc53\\ud835\\udc62\\ud835\\udc59 \\ud835\\udc51\\ud835\\udc5c\\ud835\\udc5b \\ud835\\udc51\\ud835\\udc52\\ud835\\udc66 \\ud835\\udc4f\\ud835\\udc59\\ud835\\udc52\\ud835\\udc4e\\ud835\\udc50\\u210e\\ud83e\\udd23\\ud83e\\udd23 #BBNaija #Taiwan #PokemonPresents\",\"514\":\"Hey\\nHit me up for your music productions\\n\\n#Taiwan #PokemonPresents #onstorm #songwriter #artist #ArtistOnTwitter https:\\/\\/t.co\\/hkLJd20xwd\",\"515\":\"Be amazing today, believe in yourself, anything is possible never give up.\\n#Taiwan #kpss2022iptaledilsin #AsiaCup2022 #motivate #FOREVER1 #\\u30dd\\u30b1\\u30e2\\u30f3 https:\\/\\/t.co\\/J0Q2VTOlIU\",\"516\":\"Hi, \\nI know you are a good singer but your songs are still yet to reach your targeted audience \\ud83e\\udee4, you can make that happen by getting yourself an expert in promoting your songs.\\nClick the link below to know more or dm me\\nhttps:\\/\\/t.co\\/KXpOweXhPK\\n#DONBELLEmpire #GoldMedal #Taiwan\",\"517\":\"All this @davido fans we no get joy ho \\ud83d\\ude06\\ud83d\\ude06 even for Facebook OBO still win the vote \\ud83d\\ude06\\n#Taiwan #PokemonPresents #FOREVER1 #obo #AsiaCup2022 #mamadollar #Asuu #BigBella https:\\/\\/t.co\\/LL5EZHwqwo\",\"518\":\"BBNaija S7: Khalid Grants Daniella Midnight Ecstasy \\u2018Under D Duvet\\u2019 #Taiwan #onstorm #BBNaija #BBNajiaS7 https:\\/\\/t.co\\/UeSYtTkBBL\",\"519\":\"Good Morning My Neighbors!!!\\n\\n#AllorNothing #arisetv #cynithaokereke #Asuu #Taiwan #AsiaCup2022 #BBNaija #ChinaTaiwanCrisis #DONBELLEmpire \\n\\nFollow for Follow Back\",\"520\":\"BBNaija S7: Khalid Grants Daniella Midnight Ecstasy \\u2018Under D Duvet\\u2019 #Taiwan #BBNaija #BBNajiaS7 https:\\/\\/t.co\\/q5ihXkZI0y\",\"521\":\"Before you join police or army, they scrutinize your medical report.\\nWhat does @inecnigeria do to presidential candidates to ensure they are strong enough for the task ahead.\\nWe cannot have an expected obituary change the dynamics of our country overnight.\\n#thursdayvibes #Taiwan https:\\/\\/t.co\\/8M1sLd7Yq1\",\"522\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"523\":\"@SkyNews #pelosi don buy market for Taiwan\\nTheir pain is America gain\\nMore weapon market for the US\",\"524\":\"Buhari be like man wey no get food for house but de still send sidechixk money.\\nOmo see brother...\\nSee #ASUUstrike\\nSee #insecurity\\n\\ud83d\\ude2d \\ud83d\\ude2d \\ud83d\\ude2d \\ud83d\\ude2d \\ud83d\\ude2d\\nThem just de treat us like #Taiwan.\\nOkay ooh\\n#thursdayvibes #thursdaymorning\",\"525\":\".For business English learners.\\n\\n#Taiwan #PokemonPresents\\n#onstorm #timesupolivia #HarGharTiranga #boycottrakshabandhan\\n#AONArsenal #Uyajola99 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631\\u1160\\n\\nClick this \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\n\\n https:\\/\\/t.co\\/1Ixb4QKQFK\",\"526\":\"The satisfaction and fitness made him flood my dm with pictures..\\n\\nI really appreciate your patronage long man wey sabi Rock. \\ud83d\\ude4c\\ud83d\\ude4c\\ud83d\\ude4c\\n\\n@Abbeyolaa1 \\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\n\\n#Taiwan #suede #Bata #FOREVER1 #timesupolivia #CRAFTMASTER #FolloMe #follo4follo #TheView #snapwhore #TheHundred #SNEAKERS https:\\/\\/t.co\\/8LOMy5FUWk\",\"527\":\"..You have come this far in your business English learning journey.\\n\\nWhat's next?\\n\\nP.S. Use these sneaky hints and see for yourself. \\n\\nIf you want more.\\n\\n#Taiwan #FOREVER1 #PokemonPresents #onstorm #timesupolivia #AONArsenal #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"528\":\"For Rent - Standard Selfcon Available. \\n\\n\\ud83d\\udccdLocation - Lokogoma Abuja. \\n\\nRent - N550,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Taiwan #davidhundeyin https:\\/\\/t.co\\/Cs1HxMDA4O\",\"529\":\"UTC tomatoes \\nDM or whatsApp 09137901977\\n#Taiwan @_theladymo @Abdulhermeed001 @Ameengwaska @cuppymusic @Abdoulmaleek001 @muftahu_E @AhmadCeleh https:\\/\\/t.co\\/ie1QIkk4Ul\",\"530\":\"Don't waste your time, use these three sneaky hints for your business English fluency.\\n\\nWho is interested in time wastage?\\n\\nWell, I'm not.\\nWhat about you?\\nThere are a lot of .\\ud83d\\udc47\\n#Taiwan #onstorm #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #FOREVER1 #PokemonPresents #timesupolivia #\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631 #\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"531\":\"Passing The Phone Challenge | Liverpool FC\\n\\n#Khalid #Deji @Videosnwhatever @LFC #Taiwan #timesupolivia https:\\/\\/t.co\\/A812edBOgl\",\"532\":\"Life is not a coincidence But your own actions.\\n\\n#Taiwan\\n#thursdayvibes https:\\/\\/t.co\\/ymqkzeEgXl\",\"533\":\"All I DO IS CREATE MOTION GRAPHICS. Like what you see? @akanscript on Instagram @fiverr @Upwork @anoncontent @AdobeVideo @motionpictures #BLACKPINK #Taiwan #PokemonPresents #arisetv #ExtraordinaryAttorneyWooEp12 #onstorm #timesupolivia #AONArsenal #FOREVER1 #GoldMedal https:\\/\\/t.co\\/nPzDVBq45i\",\"534\":\"@BBCWorld If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian https:\\/\\/t.co\\/8SUtRVlRBh\",\"535\":\"@iyaboawokoya If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"536\":\"@essteeem If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"537\":\"Wait for it \\ud83d\\udd25@carterefe__ @davido #Taiwan #PokemonPresents #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #HarGharTiranga #Pakistan #Uyajola99 #boycottrakshabandhan #EndAsuuStrikeNow please retweet https:\\/\\/t.co\\/0A2Y7575z3\",\"538\":\"@Darasimi__ If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"539\":\"@chiiinnnyyy_ If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"540\":\"@symplyDAPO If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"541\":\"@Letter_to_Jack If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"542\":\"Be a good human. Leave religious beliefs, be the reason someone believe good human still exists. #Taiwan #PokemonPresents #AONArsenal\",\"543\":\"We move in style...\\n#AONArsenal #FOREVER1 #mopar #onstorm #Taiwan https:\\/\\/t.co\\/sqJJe9gm0r\",\"544\":\"Over 10,000 passionate youth interned at IMUN since 2020. Will you be the next IMUN Ambassador?\\ud83c\\udfaf\\n.\\nLimited seats\\u2705 Sign up now at https:\\/\\/t.co\\/VZsxxT1HSB or at https:\\/\\/t.co\\/IIHcFl9pHm \\ud83d\\udca5\\n\\n#Taiwan #Haaland #PokemonPresents #boycottrakshabandhan #onstorm #BBNaijaS7\",\"545\":\"Do something by loving this quote \\ud83e\\udd70\\ud83d\\udcaf\\n#Taiwan #BBNajiaS7 #OBIdientlyYUSful #Viral #quote #PokemonPresents https:\\/\\/t.co\\/TbGoJWGBu3\",\"546\":\"So Pelocalypse left #Taiwan after pinching the dragon, what defense capabilities is that against mighty #PLA ? \\ud83e\\udd72\\ud83e\\udd72\\ud83e\\udd72 https:\\/\\/t.co\\/gW1JTcjuze\",\"547\":\"The #China air defense team recently conducted day and night live-fire drills over waters to the west of South China's Guangdong Province near #Taiwan \\n\\n#ChinaTaiwanCrisis https:\\/\\/t.co\\/pvMPXhug9C\",\"548\":\"Who else love this water \\ud83d\\udca6 Eva good to go #PokemonPresents #timesupolivia @evawater111 #AONArsenal #ChinaTaiwanCrisis #FOREVER1 #HarGharTiranga #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #kpss2022iptaledilsin #ExtraordinaryAttorneyWooEp12 @EvaWatson_ #JKLive @ModenaFyne https:\\/\\/t.co\\/yzzjjHM8Iz\",\"549\":\"A brigade of #China's #PLA 80th Group Army carried out a live-fire assessment of heavy firearms rapid strike. The assessment was conducted by day and night under complex conditions and set a new record for short- and middle-range strikes.\\n#Taiwan #TaiwanStraitsCrisis https:\\/\\/t.co\\/7BptZ4Zon2\",\"550\":\"For a government enabling brave & stunning women, they were too chicken over @SpeakerPelosi being so, speaking on behalf of their ally #Taiwan. Either way, #China is still considering grabbing that country like #Tibet, #EastTurkestan & #HongKong.\\n\\n\\u2014 #\\u4e2d\\u56fd #\\u53f0\\u6e7e #\\u0627\\u0644\\u0635\\u064a\\u0646 #\\u062a\\u064a\\u0648\\u0627\\u0646 https:\\/\\/t.co\\/GlfdeTfWYC\",\"551\":\"@Secominfo Ambazonia: It is time for our leadership to engage with diplomacy with #Somaliland in order to seek help for them to link us with #Taiwan. When this happen Taiwan will recognize Ambazonia and that will be a big diplomatic win for us. @BohHerbert @MariantaNjomia\",\"552\":\"Are you struggling to understand how to run Successful Kickstarter or Indiegogo campaign?\\nI'll teach you EVERYTHING you need to know through this link https:\\/\\/t.co\\/ojVDaqT6Ck #talkximg #taiwan #Batgirl #AlexJones #BadDecisionsTrailer2 #PokemonScarletViolet #LoveIslandUSA #RHOBH https:\\/\\/t.co\\/pgTYOBpEWl\",\"553\":\"Wow!!!\\n@intelfin_global platform is making it possible for me, to earn at ease .\\nPlease do not miss out!\\n\\ud83d\\udc49 https:\\/\\/t.co\\/qYeuwDzdf0\\n#Intelfin #Cosmos #Giveaway #web3 #NFTCommumity #P2E #Metaverse #CryptocurrencyNews #CryptoGems #Crypto #nftnews $JUNO $ATOM #Pelosi #BNB #invest. https:\\/\\/t.co\\/jd5z1wrXPL\",\"554\":\"Stream #Obalende \\nhttps:\\/\\/t.co\\/jBk0P7D9BU\\n\\n#PokemonPresents #Taiwan #onstorm #ExtraordinaryAttorneyWoo #timesupolivia\",\"555\":\"The show N tell in you is not necessary in this part of the game, the need to overly explain urself, ur decisions. calm down the urge to do the most you've the right to remain silence in this time of noise.\\n\\n#Taiwan #China #InspirationalQuotes #Motivation #PokemonPresents https:\\/\\/t.co\\/0farobJifY\",\"556\":\"The @PeterObi campeign Team should publish a master blueprint on how he intends run the country. Policies, plans, areas of focus etc. It's important. We need it.\\n\\n#PeterObi4President2023 \\n#PeterObi \\n#peterobicampaignfund \\n#BBNaija \\n#Taiwan \\n#PeterObi4President\",\"557\":\"If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"558\":\"@MaGeAuNaturel \\nGlowing skin tip 2\\n#facecare #skinlove #skintips #skincareluxury #skincaretips\\n#LoveIsland2022 #Hulk #loveislandNL #Taiwan #HungarianGP #EURO2022 https:\\/\\/t.co\\/k424DZXWBz\",\"559\":\"Modeled this yesterday and rendered it some minutes ago. \\n\\n#Blender3d #blender #blendercommunity #blendercycles Mompha EFCC #Taiwan #PokemonPresents https:\\/\\/t.co\\/kN5UXILpuU\",\"560\":\"MUSIC \\ud83d\\udd25 ( @fineboybella ) Bella Shmurda -\\\"New Born Fela\\u201d #Mp3\\nDownload \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/7dlgJ31KEY\\n\\n #PokemonPresents #ChinaTaiwanCrisis #GoldMedal #BadDecisionsTrailer2 #music https:\\/\\/t.co\\/qCDwWwJr79 https:\\/\\/t.co\\/niaDffdl4p\",\"561\":\"DO you have the intention to build best clickbank affiliate marketing sales funnel clickbank landing page?\\n\\nContact me \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47:-\\n\\nhttps:\\/\\/t.co\\/4WdBuXkpqb\\n\\n#twitch #SidHearts #whatwevalue #Putin #Taiwan #clickbanklinkpromotion #clickbankaffiliate #amazonaffiliate #websitetraffic https:\\/\\/t.co\\/kTip6QKDfX\",\"562\":\"@SpeakerPelosi What you did is just criminal. If there is ever a war in #Taiwan You should not seat there sipping your cocktails and claim that Taiwan has the right to its defense. War causes deaths and destructions. Why do U need to fan up the fire \\ud83d\\udd25\",\"563\":\"Happy Thursday! Let\\u2019s get another #writerslift going drop those #wips #arts #books #blogs #poetry down below! And let\\u2019s follow each other :) #WritingCommunity #explore #AuthorsOfTwitter #bloggers #PokemonScarletViolet #ChinaTaiwanCrisis\",\"564\":\"Do you notice when he talks spit comes out madly check this out @carterefe__ your spit is too much ooooo #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #YEEZYDAY #BBNaijaS7 #YEEZYDAY https:\\/\\/t.co\\/4HLIhejxeK\",\"565\":\"\\ud83c\\udfdf Malmo vs Dudelange\\n\\u23f0 18:00\\n#UELQualifier \\n\\nTwo Champions League drop-outs meet today, as\\u00a0Malmo\\u00a0welcome Dudelange\\u00a0to Eleda Stadion in the third qualifying round of the\\u00a0Europa League.\\n\\n\\ud83d\\udcf6 GG \\u2705 2.31 Odds\\n\\nBest Odds \\ud83d\\udc49 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #BoostedOdds #UEL #Taiwan https:\\/\\/t.co\\/j2WZpXricW\",\"566\":\"Hey #WritingCommunity.\\nIt's been a while since the last #writerslift.\\nLet's try #ShamelessSelfpromoThursday.\\nDrop ur: #links #books #arts #blogs #articles #fiction #peoms #poetry #YouTube #Drama #podcasts #Wips and all you got.\\n#AuthorsOfTwitter #bloggers #Pelosi #BBNaija https:\\/\\/t.co\\/unVdsQqRLp\",\"567\":\"Everybody dey japa. You too want to japa. What if you are destined to be in Nigeria? What if you are what Nigeria needs to be great again? \\n\\n#BadDecisionsTrailer2 #Taiwan #PeterObi4President2023 #BBNaijaLevelUp\",\"568\":\"Why would i meet with them but my account balance is \\ud83d\\ude23 @KashimSM @AlikoDangote @DangoteGroup @DangoteCement @atiku @davido #NationalBoobDay #APCPresidentialPrimaries #Taiwan #ASUU #Tinubu #blackchully #andasuu #PokemonPresents https:\\/\\/t.co\\/1AfxgSgqgn\",\"569\":\"Can the situation between The US, China and Taiwan be likened to the popular African Adage that says \\u201cWhen two Elephant fights, the grass suffers\\u201d? #Taiwan #USChinaTaiwanTussle #Internationaltrade #EconomicDiplomacy\",\"570\":\"Ohmen all this views wey una dey get for Twitter how una dey take do am?chineke Twitter hard pass pregnancy\\ud83d\\ude04\\n#NationalBoobDay #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonPresents #onstorm #BoycottAliaBhatt #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #boycottrakshabandhan\",\"571\":\"VIDEO\\n\\nWH Secretary Karine Jean-Pierre has said - and repeated several times - that Nacy Pelosi\\u2019s visit to Taiwan doesn\\u2019t change the \\u2018One China\\u2019 policy in no way, and \\u2018there is no reason for Beijing to turn Pelosi's Taiwan visit into some sort of crisis\\u2019. #Taiwan #Pelosi #Beijing https:\\/\\/t.co\\/Um1CyfI94W\",\"572\":\"Say less,do more\\ud83d\\udcaf\\u2764\\ufe0f\\u270c\\ud83c\\udffb\\ud83c\\udfb6\\ud83c\\udfb6\\n#ehu2022 #NationalBoobDay #Taiwan #PokemonPresents #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #onstorm #BoycottAliaBhatt #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #timesupolivia #Prabhas #boycottrakshabandhan #FOREVER1 #BadDecisionsTrailer2 #JeffBarcode #BibleBuild https:\\/\\/t.co\\/kvLvW5vIhD\",\"573\":\"A kind poet\\n#BBNajiaS7 #BishopSpaces# DLConversations #LagosSwindlers #NationalBoobDay #Taiwan #FOREVER1 #WritingCommunity #fabrizioromano #Ghostingstory #LagosSwindlers #poetrycommunity #PekinExpress https:\\/\\/t.co\\/6wVGkuCveM\",\"574\":\"Can't wait to drop this Mad tune on Friday 5th August \\ud83d\\udccc\\ud83d\\ude4f\\ud83d\\udd25. \\n#Attention gonna be CRAZZY \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25. I need some massive retweet and kindly pay attention to my lyrics\\n\\u2022\\n@kwadwosheldon \\n\\n#Taiwan #knust Prampram Mr Eazi Baddest #BigBrotherNaijaS7 #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #onstorm https:\\/\\/t.co\\/eIhgXy20uR\",\"575\":\"Assuming madam Pelosi visit to #Taiwan trigger #WWIII...\\n\\nIt will be on record that a woman was the cause of WWIII \\n\\nIs humanity going to learn?\",\"576\":\"Breaking news!! Bubu don dash Nigeria to Niger republic #Niger #bubu #Taiwan #EndSARS\",\"577\":\"Don\\u2019t let yesterday take up too much of today \\n\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #timesupolivia\",\"578\":\"Are you thinking what I am thinking???\\n\\n#Taiwan #PokemonPresents #BadDecisionsTrailer2 #Pelosi #twitterclarets https:\\/\\/t.co\\/9g4czDBj9I\",\"579\":\"#SoloAlbum is coming *Ku lo sa\\\" \\ud83e\\udd70, in oxlade's voice. \\nI'm more than ready for the album. \\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#PokemonScarletViolet #Pelosi #BadDecisionsTrailer2 #GoldMedal #DonBelle #Ninjawarriorsfc\",\"580\":\"@the_big_4lf @bod_republic \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n\\nYou talk say youna like vawulence\\nOya let's meet for Twitagram9ja\\n\\nKindly click the link below with your name\\nAlot of entertainment here https:\\/\\/t.co\\/s4uVx9u2lp\\n\\n#Pelosi #timesupolivia #AsiaCup2022 #BadDecisionsTrailer2 #PokemonPresents https:\\/\\/t.co\\/hL3D2W2oyh\",\"581\":\"@wizkidayo @Gamers8GG_AR @Gamers8GG You talk say youna like vawulence\\nOya let's meet for Twitagram9ja\\n\\nKindly click the link with your name\\nAlot of entertainment here https:\\/\\/t.co\\/s4uVx9u2lp\\n\\n#Pelosi #timesupolivia #AsiaCup2022 #BadDecisionsTrailer2 #PokemonPresents\",\"582\":\"Uber will make it harder for drivers to cancel your rides | Awixy's Blog\\n#Abuja #Taiwan #Gistlover #trenches \\n#Trending #Viruman\\n\\nhttps:\\/\\/t.co\\/Py4MEBlgdJ https:\\/\\/t.co\\/LRNy2gV78s\",\"583\":\"See how stress affects the brain with possible solutions\\u2026\\nhttps:\\/\\/t.co\\/uoEikCochW\\n\\n#davidhundeyin #bolatinubu #room1 #Taiwan #BB24 #davidhundeyin #stress #remedy https:\\/\\/t.co\\/rGiGx9nfeD\",\"584\":\"Man's name is just every where. Every one is catching the vibes already \\ud83d\\udd25\\ud83e\\udd75.\\nExpect greatness from S.O.L.O ALBUM.\\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n#PokemonPresents #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #timesupolivia #Pelosi #FOREVER1 \\n#Ninjawarriorsfc\",\"585\":\"To join the Agrolyfe\\ud83c\\udf31 Revolution.\\n\\nGET at least 1 acre of farmland NOW,\\nClick here\\u27a1\\ufe0f\\u00a0 https:\\/\\/t.co\\/yhBXWin2rz\\n\\n#chelsea #niger #Peterobi #Brighton David Hundeyin #BBNaijaS7 #BBNaijaLevelUp Here We Go #ASUU #Taiwan #Fabrizio #Emily Buhari #Obituary De jong #Biden Africans #Pelosi https:\\/\\/t.co\\/oULUzjYdc0\",\"586\":\"\\ud83d\\udd10The NEW SECRET product service of AGRICULTURE in West Africa today that surpasses the INCOME RATE from Real Estate. \\nLimited Farmlands in these FARM ESTATES are available and Selling NOW across West Africa. \\nhttps:\\/\\/t.co\\/yhBXWin2rz\\n\\n#agrolyfe #realestate #Niger #Taiwan #China https:\\/\\/t.co\\/biyg4c2idH\",\"587\":\"Here, I \\u201cget lost\\u201d \\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00. \\n\\nSo help me God. \\n\\n#Pelosi | Jaruma | #BBNajia | Toyota | Big Bella | Shower | Datti | #BBNaijaS7 | Abuja | #AbujaTwitterCommunity | https:\\/\\/t.co\\/Qaayb0KgnM\",\"588\":\"Available to purchase!\\n Send a dm\\n\\n#BolaTinubu #davidhundeyin\\n#Pelosi #AtikuOkowa2023 #PeterObi #BBNaijaS7 #decor #homedecor #arisetv #Buhari #Niger https:\\/\\/t.co\\/Tp3tQJz3KK\",\"589\":\"The US govt has to trigger its 'great power conflict' against RUS or CHN, to maintain its addictive and profitable WAR industry. That official's visit to #Taiwan is bait, the clip is in Taiwan's stance, not whatever rhetoric that US rep went in the cover of night to push.\",\"590\":\"\\ud83c\\udfac Cc: @victoriaorenze\\nWatch Full Video on YouTube \\u203c\\ufe0f\\n____________________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more Premier Christian Contents \\u203c\\ufe0f\\n______________________________\\n#GospelEmpireGh #StrictlyGospel #Pelosi\\n#onstorm #JeffBarcode #KNUST #Viruman #life #VCS #F1 #YENA https:\\/\\/t.co\\/NOjNbrnPYB\",\"591\":\"When my mum wants to know about my investments @ConvergenceFin \\n\\nCheck out their telegram channel https:\\/\\/t.co\\/5NHIvfXkRL\\n\\n#PokemonPresents #Pelosi #timesupolivia #ExtraordinaryAttorneyWoo #KNUST #boycottrakshabandhan #BadDecisionsTrailer2 #Viruman https:\\/\\/t.co\\/yvGKPNEaxP\",\"592\":\"A plea for mercy by a sinful country!! #Pelosi #BBNajia #BBNaijaS7 #ASUU #ObiDatti #PeterObi #Taiwanchina #chaina #ChinaTaiwanCrisis #CommonwealthGames2022 https:\\/\\/t.co\\/5hephg70Dx\",\"593\":\"A young Nigerian man made this beautiful designer light with Peter Obi, Labour Party presidential candidate name for all Obidients .... If you need it DM us but you will pay for it to encourage him ooh #Taiwan #Birmingham2022 #Obidatti023 #BBNaija #ExtraordinaryAttorneyWoo https:\\/\\/t.co\\/MqQNE0DluW\",\"594\":\"Spokesperson of Ministry of National Defense makes remarks on Pelosi's visit to Taiwan #China #Taiwan #WuQian https:\\/\\/t.co\\/Et8VA4DuOx\",\"595\":\"When ya think small, it means ya re looking up to gods. But when u think Big, ya re looking up To GOD. Bcoz GOD do big things and add no sorrow. #Taiwan #PokemonPresents #AamirKhan #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #boycottrakshabandhan #davido #Davido #Bod\",\"596\":\"The Only problem Nigeria is facing is this idiot old man @MBuhari @NGRPresident @BashirAhmaad @officialABAT \\n\\n#NightCoppers #Taiwan #NigeriaDecides2023 https:\\/\\/t.co\\/1RGXU28Mr5\",\"597\":\"@rovercrc No model is true model since no one can correctly predict the direction of #BTC and the #Crypto market \\n\\n#Taiwan #Pelosi #ETH\",\"598\":\"If the cryptocurrency market is the new gold rush, then get ready for a wild ride. If you\\u2019re of a confrontational nature, it\\u2019s going to be a bumpy ride. But if you have a little #ASUU #China #Taiwan #BBNaija\",\"599\":\"The art I made a while ago\\n\\n#PeterObi #PeterObiForPresident2023 #Taiwan #PokemonScarletViolet #Pelosi #PokemonPresents https:\\/\\/t.co\\/x8ToWVOlaG\",\"600\":\"@FabrizioRomano u too loud dis transfer o. I dey fear make @FCBarcelona no go hear am o \\ud83d\\ude02 \\ud83d\\ude02 \\ud83d\\ude02 \\ud83d\\ude02\\n\\n#Taiwan #PokemonScarletViolet #PokemonPresents #Pelosi #boycottrakshabandhan #AamirKhan #MeghanMcCainMeltdown #PrabhasForSitaRamam https:\\/\\/t.co\\/iaDXI553hM\",\"601\":\"I don't how to tell my kids that this man was disappointed \\ud83d\\ude14 #Taiwan #lufc #EPL #PokemonScarletViolet #tundeednut #BBNaija #trans #trendingnow #GoViral #Twitter #vawlencesspace #SummerSlam #Pelosi #pepsi #LateNightTwitter #goodnight https:\\/\\/t.co\\/Ny7cGtBNlr\",\"602\":\"Niger Republic\\n\\n#Taiwan #MeghanMcCainMeltdown #boycottrakshabandhan #PokemonScarletViolet #LagosSwindlers #BBNaija https:\\/\\/t.co\\/pP196UHxJd\",\"603\":\"Borrowing for consumption is foolishness enough but using same money to buy vehicles for another country for whatever reason while your citizens are suffering day in day out is another level of #mumulity beyond me...\\n#Obidatti023 #Taiwan #BBNaija #PokemonPresents #2023Elections https:\\/\\/t.co\\/UeFEo5kC0H\",\"604\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #AlexJones #SandyHook #Pokemon #PokemonPresents #Kansas #fidough #Discord #Discovery #HBOMax #colwill #FreakyGirl #Woody #Taiwan #timesupolivia #talkximg #Pelosi #LoveIsland https:\\/\\/t.co\\/a58nuGIcuj\",\"605\":\"2022 Executive Sprinter \\nBullet Proof Bus\\nLekki\\nNow 482m\\n\\n#BBNaija #Taiwan #Pelosi #AamirKhan #PokemonPresents https:\\/\\/t.co\\/rJZOdn65Dw\",\"606\":\"Mrs Harris goes to Paris -2022 #ASUU #MinisterofFinance #Taiwan\\nhttps:\\/\\/t.co\\/Hu8zBwbNnw\",\"607\":\"Fear women oooo\\n\\n#Taiwan #PokemonScarletViolet #PokemonPresents #boycottrakshabandhan #bbnaija #BigBrotherNaija ASUU EFCC Money Heist Here we go \\n\\nFollow us for more https:\\/\\/t.co\\/L5naFHzNv6\",\"608\":\"Follow me I follow back them don finally hack person Instagram #Wizkid #massage #Machala #Taiwan #Davido #burnaboy\",\"609\":\"Taiwan: U.S.-China Tensions Flare As Pelosi Leaves Taiwan #Taiwan #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #AamirKhan https:\\/\\/t.co\\/EKNbMVUSuP\",\"610\":\"Life Would Be Incomplete Without a Good Music To Calm The Souls \\u2764\\ufe0f\\u2764\\ufe0f #music #Taiwan #PokemonScarletViolet #Pelosi #boycottrakshabandhan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #kpss2022iptaledilsin #Trending https:\\/\\/t.co\\/b0ZKsnRgJ6\",\"611\":\"#OUROPINION\\n#apc government has taken this country backward by 30 years . #NigerRepublic\\nIs not our country so investing in them is a waste on us.\\n#Buhari is a waste of time.\\n#endbuhari now\\n\\n#Taiwan #USA #zainab_fatemaa \\n#RenosNuggets\",\"612\":\"It's all about how? #JakePaul #\\u0e42\\u0e0a\\u0e04\\u0e23\\u0e16\\u0e41\\u0e2b\\u0e48 #PokemonScarletViolet #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #Pelosi #boycottrakshabandhan #kpss2022iptaledilsin #grace #Trending #godblessings https:\\/\\/t.co\\/2OrZy9A1BQ\",\"613\":\"\\u2764 If u see any of these OCCULT SIGNS in your church, leave that church immediately, they're worshipping Satan... \\n\\nRetweet.... \\n#facts #LoveIsland #jesus #Christianity #Taiwan #PokemonScarletViolet #PokemonPresents #Pelosi https:\\/\\/t.co\\/XTI7MngazT\",\"614\":\"WikiFX Live: 10 Essential Skills for New Trader\\n\\nhttps:\\/\\/t.co\\/OZRROchuBC\\n#forex #wikifx #trading #MONEY #Crypto #news #skills #beginners #PokemonScarletViolet #PokemonPresents #Pelosi https:\\/\\/t.co\\/uNm3Dqi46R\",\"615\":\"DSTV, Trust TV, Others Fined N5m Over Terrorism Documentaries\\n\\n#PeterObi4President2023 minister of finance\\/ Reno Omokri\\/David hundeyin #BBNaija #nbcDSTV282 #BBC #Terrorists #Taiwan https:\\/\\/t.co\\/Ndvbo56Cix\",\"616\":\"Watch Full Black Chully 5 New Videos #Taiwan #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #olosho #BBNaija https:\\/\\/t.co\\/l3lvWc50x6\",\"617\":\"Price 12k\\n\\nKindly Dm or\\nWhatsApp 08138512629\\n\\nDelivery Nationwide\\n\\n#NigerRepublic #benincitymall #BBNajiaS7 #ChinaTaiwanCrisis https:\\/\\/t.co\\/PTmFmJSnik\",\"618\":\"ASUU has been on strike over poor funding, but Buhari is busy dashing money to Niger Republic. Buhari is evil. 90% of Northern politicians are investing in Niger Republic, instead of in Nigeria.#Taiwan #LabourParty #Obidatti023 #BBNaija #Pelosi https:\\/\\/t.co\\/jCOYntTTXc\",\"619\":\"@iam_timotee x @rexxiepondabeat \\nPls retweet guys \\ud83e\\udd32\\u2764\\ufe0f. @DONJAZZY @Alex_Houseof308 @Iam_Magixx @MAVINRECORDS @Ebuka #Taiwan #PokemonScarletViolet #PokemonPresents #Bbnaija @DanielRegha https:\\/\\/t.co\\/60kyNTYdVC\",\"620\":\"You and biko #Taiwan #PokemonPresents #twitter https:\\/\\/t.co\\/yiNSoKgXQY\",\"621\":\"What I\\u2019m hungry for this season doesn\\u2019t have fupa! \\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\n\\n#PokemonPresents #ChinaTaiwanCrisis #boycottrakshabandhan #AamirKhan #timesupolivia\",\"622\":\"Did you know that there are Igbo people in Equatorial Guinea?They occupy a small area in Bioko, an island of the African nation. Bioko is the largest region in Equatorial Guinea. The inhabitants speak Pidgin English, Spanish, Fang, Bubi and Igbo indigenous languages.#Taiwan https:\\/\\/t.co\\/FVS92zEuL3\",\"623\":\"Buhari Govt. Confirms Purchase of N1.4 billion Worth Of Vehicles For Niger Republic #davidhundeyin David Hundeyin #Taiwan Buhari https:\\/\\/t.co\\/GUeM5Ldh6Q\",\"624\":\"Hatem Ben Arfa \\ud83c\\uddeb\\ud83c\\uddf7\\nAndrea Belotti \\ud83c\\uddee\\ud83c\\uddf9\\nJuan Mata \\ud83c\\uddea\\ud83c\\uddf8\\nMarcelo \\ud83c\\udde7\\ud83c\\uddf7\\nEdison Cavani\\ud83c\\uddfa\\ud83c\\uddfe\\nIsco \\ud83c\\uddea\\ud83c\\uddf8\\nDries Mertens\\ud83c\\udde7\\ud83c\\uddea\\nAdnan Januzaj\\ud83c\\udde7\\ud83c\\uddea\\nDiego Costa \\ud83c\\uddea\\ud83c\\uddf8\\n\\nAll these Veterans are still Free Agents\\n#transfers #EPL #Taiwan\",\"625\":\"My party guest from two weeks ago this dress is classy and so simple,it\\u2019s giving everything\\ud83d\\ude0d\\ud83e\\udd70 #Taiwan #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonPresents #BBNaija7 #BBNajia https:\\/\\/t.co\\/2pB4Kcv0fP\",\"626\":\"My Ray of sunshine Chidiebere Aneke \\nNo matter the number of Arguments\\nand Quarrels we have\\u2026 \\nMy Heart shall forever love and Cherish you, \\nHaving you as My Twin Sister \\nis one of The Greatest Blessings of My Life. \\nI Love you \\ud83d\\udc99\\n\\nWe Rep 06\\n\\n#Taiwan #aneketwins #worldbesttwins https:\\/\\/t.co\\/t83z7KgCZE\",\"627\":\"Peter Obi congratulates Mrs Dudu Manuga of Gombe state on her nomination as National Woman Leader of Labour Party. \\n#Taiwan #Niger #BBNaija https:\\/\\/t.co\\/7oFsDeYTsH\",\"628\":\"Asuu is on strike\\nYouths are at home\\nDays are going by\\nDreams are dying\\nAnd here is this\\ud83d\\ude2d\\ud83e\\udd7a\\n#therewasacountry#\\n#bringbacknigeria\\n#PeterObiForPresident2023 \\n#channelstv\\n#Taiwan \\n#ASUUStrikeUpdate \\n#BuhariMustGo \\n#BBNaija https:\\/\\/t.co\\/httCZHSxTe\",\"629\":\"Those of you engaging on my post, God will give you surprise testimonies. \\n\\nMdee Mide Martins Biggie Minister of Finance EFCC Money Heist #SkeemSaam Khalid Abuja-Kaduna Mr. Peter Obi Piggyvest Onitsa World War III #breastfeeding #BBNaija #EndSARS #Messi\\ud80c\\udcf5 Endsars Marriage #Taiwan\",\"630\":\"What you hear you doubt,but what you see sticks #Taiwan #PokemonPresents #ChinaTaiwanCrisis #boycottrakshabandhan\",\"631\":\"Your father is the Landlord, your mother is the Landlady, what are you? \\n\\n Mdee Mide Martins Biggie Minister of Finance EFCC Money Heist #SkeemSaam Khalid Abuja-Kaduna Mr. Peter Obi Piggyvest Onitsa World War III #breastfeeding #BambamSorry #EndSARS #Messi\\ud80c\\udcf5 Endsars #Taiwan\",\"632\":\"Talent can make you but attitude will break you. \\n\\nMdee Mide Martins Biggie Minister of Finance EFCC Money Heist #SkeemSaam Khalid Abuja-Kaduna Mr. Peter Obi Piggyvest Onitsa World War III #breastfeeding #BambamSorry #EndSARS #Messi\\ud80c\\udcf5 Endsars Marriage Carter Efe Dubai #Taiwan\",\"633\":\"Souls who are capable of love are also capable of immense happiness and joy. Joy is the path that leads to both love and happiness. Once we devote ourselves to cultivating joy, we discover that we are surrounded by love.\\n#yorubavibechurch #Reno #davidhundeyin #WWIII\",\"634\":\"The car Nigeria bought for Republic of Niger to fight insecurity \\n VS \\ncar Nigeria is using to fight Insecurity\\n\\n#Taiwan #minister #midemartins #PokemonPresents #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #Nigeria https:\\/\\/t.co\\/M99iJe53I1\",\"635\":\"If this comes across your tl,kindly retweet,let\\u2019s save a soul,no amount is too small #lagosswindlers #BBNaijaS7 #Taiwan @instablog9ja @GistReel @MobilePunch https:\\/\\/t.co\\/I2g2AcUXoz\",\"636\":\"If you are invited for a job interview, at the entrance of the gate or within the Organization's premises:\\n\\n#thread #Taiwan #PokemonScarletViolet #AamirKhan #KNUST #tiboinshape #kpss2022iptaledilsin\",\"637\":\"Don\\u2019t miss out on this \\u2764\\ufe0f\\ud83d\\udccc\\ud83d\\udcaf\\ud83d\\udd25 #Taiwan #PokemonPresents #ChinaTaiwanCrisis #organics #Nengi #trending\\n\\nWhat is Peter obi Okoye trending Abuja IF Bbnaija https:\\/\\/t.co\\/jriEwqsvvJ\",\"638\":\"DonJazzy by Dejavu_Dmj out now on Audiomack \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udc9f please Help tag @DONJAZZY\\nAnd help retweet Abeg \\ud83d\\ude4f\\ud83d\\ude2b @crayonthis @heisrema @rugerofficial @ayrastarr @Iam_Magixx @DPRINCEMAVIN \\n\\nhttps:\\/\\/t.co\\/mzzNbsFPxT\\n\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 https:\\/\\/t.co\\/sLgaVkZN1d\",\"639\":\"PRICE SLASHED \\ud83d\\udcb0\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udcb0\\nMercedes Benz Executive Sprinter 2022\\nBrand new \\nBullet Proof Bus\\nLocation: Lekki\\nPrice: 540m \\u274c\\u2026490m\\u2705\\n08024592965 kindly retweet \\n#Taiwan #PokemonPresents #Obidatti023 #BBNaija #LabourParty #Auto #CarDealership https:\\/\\/t.co\\/c7Zb8bjK1h\",\"640\":\"I'm very good at what I do mehnnn..\\n\\nSee my work na...\\n\\nKindly like and retweet\\ud83e\\udd32\\n\\n#crochet #Crochet_Sweater #Taiwan #BBNaija #ASUU #KNUST https:\\/\\/t.co\\/QGEWk8hri8\",\"641\":\"Considering Nigeria's economic situation, this is the worst time to be an adult...\\n\\n#BigBrother #Hermes #Taiwan #AamirKhan\",\"642\":\"Evening Twitter, it's 13 days away from the deadline. #ChinaTaiwanCrisis #Taiwan @ChelseaFC Hello Kolade, your Migo loan is now late. You have been charged a late fee of N. Your new balance of N871,698 must be repaid by Tuesday, Aug 16, 2022. If you have challenges with repayment\",\"643\":\"Transaction successful is the only English that makes me happy\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02. \\n#BBNaija, #Taiwan #PokemonScarletViolet, #PokemonPresents #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 https:\\/\\/t.co\\/JfkK4p5kHo\",\"644\":\"Some of them are laughing taking it as a joke .... #Buhari #Taiwan #MoneyHeist #JARUMA #China #IPOB https:\\/\\/t.co\\/VjiXPWbX4f\",\"645\":\"The President was given a 6 weeks ultimatum by the National Assembly to deal with insecurity and the same National Assembly members have all gone home for a 7 weeks holiday.\\n\\nThis story no clear at all.\\n\\nCucurella . Money Heist . Minister of Finance . #Taiwan #Pelosi #Machala https:\\/\\/t.co\\/W1zrNyyBd4\",\"646\":\"Have you ever slept so well that you couldn't tell if it was morning or night? \\ud83d\\ude02\\n@FabrizioRomano #BulletTrainMovie #Taiwan #PokemonScarletViolet #China #Chelsea\",\"647\":\"Azerbaijani Defense Ministry publishes new footage of UAV strikes on Armenian positions.\\n\\nThe Azerbaijani authorities demand the complete disarmament of Artsakh's defense and the withdrawal of the Armenian military from Karabakh. #Azerbaijan #Armenia #Taiwan #Asia #Pelosi #viral https:\\/\\/t.co\\/sSTeJQYgcQ\",\"648\":\"Buhari led administration approved 1.4 billion to purchase vehicle for Niger republic and ASUU is on strike for the past five month\\nWhat a ashame. \\n\\n#BbnNaija #Taiwan #\",\"649\":\"y'all OBZS out now only on audiomack for now\\ud83d\\udd25\\u2764\\ufe0f\\ud83d\\udd25... kindly stream and follow..link below\\nhttps:\\/\\/t.co\\/a2WtXyLF9J\\n@DONJAZZY @MAVINRECORDS @DPRINCEMAVIN @Olamide \\n#Taiwan #BulletTrainMovie\\n#PokemonPresents #BBNaija #BBNajiaS7 #sabinus #BB24 https:\\/\\/t.co\\/tA7oQLvgD9\",\"650\":\"The Australian Space Agency has confirmed that debris from the SpaceX spacecraft has crashed on Australian territory. The wreckage is considered to be the largest of those found in Australia since 1979.\\n#SpaceX #Australia #Space #Taiwan #Pelosi #TrendingNow #trending #viral https:\\/\\/t.co\\/14nNwxrVUq\",\"651\":\"The car the Nigeria force is using vs the car Buhari bought for security personnel in Niger Republic.\\nIf you still want to vote APC then you really need to be cautioned by loved ones\\n\\n#Taiwan #BulletTrainMovie #PokemonScarletViolet #Pelosi #BadDecisionsTrailer1 #Wizkid Biggie https:\\/\\/t.co\\/4cLztckKId\",\"652\":\"Can u join my FPL draft league, it's a new way to test skills and improve Ur FPL experience\\n#PremierLeague #FPL #ManUtd #ManUtdFreeCristianoRonaldo #BulletTrainMovie #Pelosi #Taiwan https:\\/\\/t.co\\/q13uXAXOhv\",\"653\":\"@PeterObi The message is clear. \\n#BBNaija \\n#BulletTrainMovie \\n#PeterObiForPresident2023 \\n#Taiwan https:\\/\\/t.co\\/48uTAiwxOg\",\"654\":\"Which movie do the actor make used of the word? \\\"You have failed the city\\\" #BulletTrainMovie #Taiwan #PokemonScarletViolet #PokemonPresents #Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"655\":\"Well well well...\\n\\nWhat do we have here?\\nhttps:\\/\\/t.co\\/J34HrbVp1r\\n\\n|| David Hundeyin #BadDecisionsTrailer1 #Taiwan #Pelosi||\",\"656\":\"It keep making sense\\n@MBuhari we just can\\u2019t thank you enough. Pls can someone remind pls how much asuu is demanding for them to go back to school?\\n#BulletTrainMovie #Taiwan #BadDecisionsTrailer1 #BAT2023 #Buhari https:\\/\\/t.co\\/4WJLqys2lZ\",\"657\":\"\\ud83d\\udde8\\ufe0f Sometimes you need the reassurance \\ud83e\\udd72\\n\\ud83c\\udfac VC: Roly Poly 23\\n_______________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more Premier Christian Contents \\u203c\\ufe0f\\n________________________\\n#GospelEmpireGh #StrictlyGospel #reels #PokemonScarletViolet\\n#PokemonPresents #Taiwan #timesupolivia https:\\/\\/t.co\\/xTBRxanutb\",\"658\":\"I use Allah beg you Pls retweet my hustle\\nAIRPOD PRO CLONE \\nwith All the original features \\nPrice 15000\\nLocation kano \\n08065825667\\n\\n#Taiwan #Isco #BadDecisionsTrailer1 @nurasabitu @el_uthmaan @Arewa_Business_ @MalamKaybee @Maroup_ @najeebweederjr pls retweet https:\\/\\/t.co\\/28fwuQEWf3\",\"659\":\"Seen this offer?\\n\\nPeter Drury | DeJong | Hermes | Sesko | Cynthia Okereke | Teni | Shekere | Isco | 2 Naira | McFred | Mama Dollaz | Memphis Depay | Minister of Finance #BBNaijaS7 #PokemonPresents #Taiwan #massage https:\\/\\/t.co\\/wimkbaMp6p\",\"660\":\"#china if you need man power of the #Taiwan war happens am here I have experience in making and radiocalls\",\"661\":\"I\\u2019m still trying to understand Nigeria \\ud83c\\uddf3\\ud83c\\uddec \\ud83d\\ude29\\ud83d\\ude29\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\n Man no fit dine twice a day again \\ud83d\\ude22\\ud83e\\udd26\\u200d\\u2640\\ufe0f #ASUU #Taiwan #BBNaija #BBNaija7 #Awful #Asake https:\\/\\/t.co\\/xC6K2kPOD5\",\"662\":\"USA is going to continue spirking fire between countries till war happens see #UkraineRussiaWar now #Taiwan and #China\",\"663\":\"What I ordered What I got \\ud83e\\udd26\\ud83c\\udffe\\u200d\\u2642\\ufe0f\\n\\n#Taiwan https:\\/\\/t.co\\/Etcy2TXr2z\",\"664\":\"Please patronize my hustle and do not scroll without like or tweeting my customer may be on your timeline.\\n\\nSize: 42 and 43.\\n\\nContact: 07035885232\\n\\n#Kano\\n#sabinus \\n#BBNaija \\n#Gistlover \\n#UkraineRussiaWar \\n#WWIII\\n#Buhari \\n#Datti \\n#Ministeroffinace\\n#Shettima https:\\/\\/t.co\\/jxVFtbB6WP\",\"665\":\"Pre-save my new single \\\"Terminator\\\" on Spotify:\\n#NewMusic #Taiwan #NewMusicDaily #newmusic2022\\n#appleiphones #PokemonPresents \\n#applemusic #Spotify #boomplaymusic #audiomack #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #latestmusic #applemusicnigeria \\n\\nhttps:\\/\\/t.co\\/8QlKDYh454 (powered by @distrokid)\",\"666\":\"Dollar don enter 710 o \\ud83d\\ude02\\n#Taiwan #BBNaija #BBNajiaS7 #Machala #Phyna https:\\/\\/t.co\\/hYyok6F3by\",\"667\":\"@PressSec Democratic press secretary press briefing is just as awful a disaster as Biden in her speech this morning. Karine Pierre CANT EVEN prounounce the word \\u201cRall-y-ing\\u201d. God help America \\ud83e\\udd21\\ud83d\\ude05 #Taiwan #trump2024 #Democrat disaster #BidenDestroysAmerica https:\\/\\/t.co\\/MQc53z0gzG\",\"668\":\"#GBPUSD \\n\\nI campaign with facts and figures \\u2705\\n+84.6pips completed on this pair\\u2705\\n\\n#Taiwan #CryptocurrencyNews #NFTs #trade #StocksMarket #wednesdaythought https:\\/\\/t.co\\/mux6JrXWZj https:\\/\\/t.co\\/tyAdCFsssb\",\"669\":\"4. It helps strengthen the immune system: Strong immune system is important as it helps you stay healthy. Consuming yogurt, especially if it contains probiotics, on a regular basis may strengthen your immune system and reduce your chances of contracting an illness.\\n\\n#Taiwan\",\"670\":\"The federal government intention is to fight corruption but knowingly they re allowing youths to engage in fraudulent activities coz an idle hand is the devils workshop. Unemployment couple with ASUU strike for over 5month. FG help the youth \\n#Taiwan #koundeisblue #Chelsea\",\"671\":\"They post my babe keh \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\nWe must fight \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n#Taiwan #China #WorldWarIII https:\\/\\/t.co\\/tspuOt2IEp\",\"672\":\"Nigerian is in a dirty state to be honest, how come travelling to Ukraine \\ud83c\\uddfa\\ud83c\\udde6 is now a big Win \\ud83d\\ude22\\n#Wizkid #Taiwan #PokemonPresents #wednesdaythought #Davido #BBNaija https:\\/\\/t.co\\/NZ3ygeIhwq\",\"673\":\"Join this fantasy premier league. ...\\ud83d\\udc4c .\\nSeason starts on Friday \\n\\nJoin \\nhttps:\\/\\/t.co\\/SHfiNDUPTG\\n\\nAlso \\nU can use this invitational code 1fjmg4. #taiwan #BuhariMustGo #EndSARS #enassustrike. Rufai #BBNajiaS7\",\"674\":\"The FG imposed a fine of N5 million on Trust TV over the broadcasting of a documentary with the title Nigerian\\u2019s Banditry.\\nThis was contained in a letter signed by the director of NBC, Shehu Illela, and sent to the management of Trust TV on August 3, 2022.\\n#Trusttv #Taiwan #Army https:\\/\\/t.co\\/1TfAEXCXbe\",\"675\":\"The best time to start something new was 10 years ago; the second best time is NOW!\\n\\n#Taiwan #PokemonPresents #midjourney #adventure #Growth #learn #learning #selfcare #Selfdevelopment #LearnToEarn #LearningAndDevelopment\",\"676\":\"\\ud83d\\udcfd\\ufe0fA short #Documentary of the #OneChinaPrinciple & the #Taiwan question:\\n#China #PRC #Japan #UnitedStates #UnitedKingdom #UnitedNations \\nhttps:\\/\\/t.co\\/Gxa9pVNLl6\",\"677\":\"It is also reported that NAFDAC charges bakers N154,000 penalty on late renewal of certificates. \\nAs a stakeholder within this agricultural value chain, how can your business contribute in solving this myriad of problems? \\n\\nCREDIT: @vanguardngrnews\\n#Taiwan #davidhundeyin #China\",\"678\":\"Obi to the world \\n\\n#OBIDIENTS #Taiwan #Wizkid #EbubeaguMustGo https:\\/\\/t.co\\/l9TrkZDPB3\",\"679\":\"Learn how to subtitle a film and earn your money \\nhttps:\\/\\/t.co\\/WvuevmThJO\\n\\n#Taiwan #sabinus #Buhari\",\"680\":\"Pre-save my new single \\\"Terminator\\\" on Spotify:\\n#Terminator #applemusic #SpotifyPlaylist #Taiwan #audiomack #iTunes #applemusicnigeria #AfrobeatRadio #BulletTrainMovie\\n#Terminal21Korat #lagos #NewYorkCity #CaliforniaAdventure \\n\\nhttps:\\/\\/t.co\\/8QlKDYh454 (powered by @distrokid)\",\"681\":\"Girl when a man tells you \\u201cwe need to take a break\\u201d mf saying \\u201cI been hoping you\\u2019ll dump me, but it not working, so here\\u2019s your breakfast \\u201d\\n\\n #Pelosi\",\"682\":\"Where are my #P2Egaming\\nFans, check out @WarpBond \\n\\nThe season 2 promises to be epic, get your #Whitelist\\nSpot NOW.\\n#NFTGiveaways #CryptoNews\\n#Taiwan #BulletTrainMovie\\nWebsite: https:\\/\\/t.co\\/TVq8PkZ7EX\\nDemo: https:\\/\\/t.co\\/oWoGOLR8El\\nWL page: https:\\/\\/t.co\\/3OQiWdyaN6 https:\\/\\/t.co\\/0abiCiufk2\",\"683\":\"What is this \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 #PeterDrury #PeterObi #PremierLeague #BBNaija #Taiwan #China https:\\/\\/t.co\\/Nz9c0LorqE\",\"684\":\"Here's my winnings from yesterday's games. Mr William your games are quite impressive sir, you are really doing a great job.Thank you so much @betsmasterspro.\\n#Taiwan #Taipei #Boehly #Mamadollarz #ASUU #PeterDrury #Room1 #Osimhem #Vitinha #China #Shower #Isco #kovacic #Buhari https:\\/\\/t.co\\/2NDXPRWunF\",\"685\":\"#NEWS #NancyPelosi #Taiwan #USHouseSpeakerNancyPelosi #Washington U.S. Speaker Pelosi wraps up Taiwan visit, heads to South Korea https:\\/\\/t.co\\/C2jJb4l4lU\",\"686\":\"The Chinese Air Force sends fighter jets to the island of Taiwan to protect its national sovereignty and territorial integrity, said Shen Jinke, spokesman for the Chinese People's Liberation Army Air Force.\\n\\n#obidients #Taiwan #BBNaija https:\\/\\/t.co\\/scYmhRCniz\",\"687\":\"\\u26a1\\nIn Colombia, a bus driver was shot and killed during his workday.\\n\\n#BBNaija #Taiwan #boycottrakshabandhan https:\\/\\/t.co\\/ewQV3c6jLC\",\"688\":\"\\u25aa\\ufe0fMore Details at https:\\/\\/t.co\\/mzW0HzUjVl\\n______________________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more Premier Christian Contents \\u203c\\ufe0f\\n______________________________\\n#GospelEmpireGh #StrictlyGospel #GospelNews #PokemonPresents #BulletTrainMovie #Taiwan #sabinus #Pokemon https:\\/\\/t.co\\/izGrTYjyjz\",\"689\":\"Success is walking from failure to failure with no loss of enthusiasm\\u2026. \\n\\n#Taiwan #BBNaija\",\"690\":\"This may be your case, but hang in there! God is coming through for you...\\n#Taiwan #Godisworking #thingsout #VirumanAudioLaunch #sermon #audio https:\\/\\/t.co\\/fuKr5l8Xzy\",\"691\":\"@accessbank_help You never checked?\\n\\nDoes it take a year to check DM \\n\\nA life depends on this please respond ASAP\\n\\nDavido | #Taiwan | #BigBrotherNaijaS7\",\"692\":\"Soldier at war \\n\\n#Taiwan #BulletTrainMovie #PokemonPresents #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #boycottrakshabandhan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #PrabhasForSitaRamam #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #AreYouTubedIn #art #Pokemon #massage #kpss2022iptaledilsin #ArtistoftheSummer #artist https:\\/\\/t.co\\/JeHaRLhQQf\",\"693\":\"Ceramic break pads for sale #Taiwan https:\\/\\/t.co\\/s1IPlki5HP\",\"694\":\"You said you want a God fearing man\\nBut Bro. Taiwo is always praying in Tongues\\nBro. Femi is always going for retreats\\nBro. Daniel is constantly in one fasting or another\\nSis. Joy, talk to me, I won't tell anybody, what do you actually want?\\n\\n#Taiwan #LoveIsland2022\",\"695\":\"$500,000, we\\u2019d be able to achieve 1000 SMEs facilities scattered all over Anambra State, which would jump-start aggressive economic growth within the State, especially as income from oil is coming to an end\\u201d.\\n\\n#OBIdientlyYUSful #PeterObi #Taiwan \\n\\nCredit: https:\\/\\/t.co\\/sFqLr7SfdN\",\"696\":\"New Audio on YouTube SOON Kindly Subscribe to ma YouTube Channel and be the first to watch \\n\\nhttps:\\/\\/t.co\\/8qxrUmffmR\\n\\n#knust #GHOneNews #TV3GH #BulletTrainMovie #PokemonPresents #Taiwan #sabinus #massage #burnaboy\",\"697\":\"I'm gonna put you in seven positions for seventy minutes\\nYou get it, babe?\\n\\nNa dem be this\\ud83d\\ude02\\ud83d\\ude02\\ud83e\\udd0c\\ud83c\\udffe\\n\\nRoom 1 || #Taiwan || #Wizkid || Shower || ASUU || Deji \\n https:\\/\\/t.co\\/kuHBbuIPqq\",\"698\":\"#Sportivation\\n\\nMarcellinus Anyanwu Joins NFF Presidential Race, Reveals Plans For Nigerian Football\\n https:\\/\\/t.co\\/u9ttZck0yO\\n\\n#Taiwan \\n#BulletTrainMovie \\n#PokemonPresents \\n#sabinus \\n#massage\\n#PrabhasForSitaRamam\",\"699\":\"Maximum Joy Foundation - Creating hope and equal opportunity for teenage mothers and underprivileged children\\n\\nAugust 4th is almost here \\ud83d\\udcaa\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#Taiwan #Taipei #China #ChinaTaiwanCrisis #NancyPelosi #asantekotoko #GFA https:\\/\\/t.co\\/IpIJS16Q0a\",\"700\":\"According the minister of finance \\\"President Buhari, whose actions she cannot question, has d right to make his own assessment of situations and give directives accordingly\\\" Are this people for real? Oh Lord pls save us from this disaster come 2023.#Taiwan #Pelosi #davidhundeyin\",\"701\":\"What will you call thi\\ud83e\\udd23\\ud83d\\ude02#CAKEGOD #BulletTrainMovie #Taiwan #BBNaijaGuinnessSmooth #comedy #NigerianIdol https:\\/\\/t.co\\/X0g1q2rmkP\",\"702\":\"OUT SOON on YOUTUBE !!!! \\n\\n#Bigivy #trans\\n#Sarkodie #shattawaleinnungua\\n#KwesiArthur #Taiwan #sabinus https:\\/\\/t.co\\/kFuvOwtASi\",\"703\":\"This is Crazy \\nRUFAI OSENI\\n#16children\\n#PeterObi4President2023 \\n#Pelosi https:\\/\\/t.co\\/HdEwRH6iPT\",\"704\":\"I finally give up on the country matter, like WTF? When @DavidHundeyin broke the news hours ago some idiots started calling him names. Please what is going on with this govt?#davidhundeyin #sabinus #Taiwan https:\\/\\/t.co\\/XYMuG4d0yL\",\"705\":\"Trading 1.Icewing 2.BlueSeer 3.NightBlade\\n\\nLeave your offers #mm2 #mm2trading #AamirKhan #Taiwan #ROBLOX #offer\",\"706\":\"Good evening\\n#Taiwan #Pelosi #PokemonScarletViolet #AamirKhan #\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a\",\"707\":\"Told her to take a walk with me while I follow @lionheart1759 to #Illorin to #EndPolio . She took her first step thanks to our medical devices but I can\\u2019t deny the fact that it\\u2019s burdensome but it can help. #Taiwan #orthosis https:\\/\\/t.co\\/bVQg5LLuqJ\",\"708\":\"For Rent - 3 Bedrooms Flat Available. \\n\\n\\ud83d\\udccdLocation - Dawaki Abuja. \\n\\nRent - N1,300,000 Yearly. \\nRCD - N100,000. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Taiwan https:\\/\\/t.co\\/serqHvJW2C\",\"709\":\"So today I was listening to some good Naija songs and found out that @Lojaymusic and @beatsbysarz #Monalisa Has the same beats as @Iam_Magixx -Saye. They\\u2019re just on different keys.\\n#GoodmusicGoodTalk \\n#Taiwan #BBNajia7 #Wizkid #Pelosi #China https:\\/\\/t.co\\/vG6i0EOIPN\",\"710\":\"BURNa boy was right #Taiwan https:\\/\\/t.co\\/0kYIZoEshx https:\\/\\/t.co\\/hXTkpuKOb9\",\"711\":\"If you watch this video, you know a Chelsea fan. #Pelosi https:\\/\\/t.co\\/lucqefmX72 https:\\/\\/t.co\\/M0Ay75iMpk\",\"712\":\"We were made to believe that when @MBuhari eventually wins the 2015 election, we're going to have a soft and stress free life but we never had it easy talk more of stress free or soft.\\n#ASUUStrikeUpdate #Pelosi #2023Elections #ASUUstrike #NaijaNews #Obidatti2023 #BAT2023 #Atiku\",\"713\":\"Boys need money #Taiwan\\n#Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"714\":\"Girls need love\\nBut never say it out\\n#Pelosi #Taiwan #PokemonScarletViolet\",\"715\":\"Nobody can love you like a mother can #Taiwan #Pelosi #sabinus\",\"716\":\"Some Of Us Have Never Been To A Club B4,Yes We Exist \\n#Taiwan #Pelosi\",\"717\":\"Designing success through creative web design, digital marketing, content creation and social media marketing #Taiwan #helicopter #BBNajia https:\\/\\/t.co\\/QXoeE58mqd\",\"718\":\"When you have a dream, you've got to grab it and never let it go. We are here to answer questions related to your business growth. \\n\\nAre you a business owner looking out for visibility, growth and an increase in sales?\\n\\n#ASUU #Taiwan #businessowner #businesstips #businessgrowth https:\\/\\/t.co\\/XaBB0uU303\",\"719\":\"BUY NOW, AND PAY LATER\\n#Taiwan #Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonScarletViolet #AamirKhan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 https:\\/\\/t.co\\/SFtmooG4n4\",\"720\":\"Friday is gonna be hot \\nAsake dropping Terminator \\ud83d\\udd25\\nPremier league \\ud83d\\udd25\\n Can\\u2019t wait \\n\\n#Wizkid #Taiwan #helicopter #BBNaija7 #Machala #recession #Pelosi #Gistlover #instagram #sabinus #PokemonScarletViolet\",\"721\":\"Dont cry out too loud about having persistent breakdown from malaria. Just click the link for a quick tip...\\n https:\\/\\/t.co\\/ZiEdkQUDPj\\n#Taiwan #DonBelle #Pelosi #sabinus #malariagenomics #malaria #Health\",\"722\":\"Put am for status \\n\\n#davidhundeyin #Pelosi #samomatseye #Taiwan https:\\/\\/t.co\\/DREK7qMgFy\",\"723\":\"For Rent - 2 Bedrooms Flat Available. \\n\\n\\ud83d\\udccdLocation - Mabushi Abuja. \\n\\nRent - N1,500,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #Chelsea #Buhar #China #Taiwan https:\\/\\/t.co\\/cHw8nDiKoF\",\"724\":\"Your Bank account will be loaded with cash this week, in Jesus name\\n#\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Taiwan #kpss2022iptaledilsin #BlueJays #DonnyPangilinan #Pelosi #BadDecisionsTrailer1 #music #musique #Musica https:\\/\\/t.co\\/z92cabRhki\",\"725\":\"Get ready as they fly at 6:10pm #Bayern #over1.5 #shattawaleinnungua #oshorla #Taiwan https:\\/\\/t.co\\/ge2P8pQXNC\",\"726\":\"Design of Petrol Station. \\nStarting a new project? The first thing u need is a perfect design. \\nWhatsApp: 08138359656\\nFollow us on \\nTwitter: @Geogem_Contrs\\nIG\\/Fb: @geogemcontractors for more updates \\n\\nOshiomole Room 1 Ronaldo #Cubana Arewa Zone 12 #Taiwan Witcher Gaskiya #Pelosi https:\\/\\/t.co\\/cpMeY6l4qn\",\"727\":\"You all need to see this wow\\ud83d\\ude31\\ud83d\\ude31\\ud83d\\ude31...we not messing around...\\n@my234Radio @Oba_peejay @KeinzGrm_ @Dareal_Pterslim @Big__Derah @roque55O @HipHopDX @mtmedia_uk @DailyMail @MTVBaseAfrica @_EstherOnyinye @PsychoYP @JAE5_ @Santandave1 @YAWTOG_ \\n#drill #Pelosi #MUFC https:\\/\\/t.co\\/Vhy6XUmv6N\",\"728\":\"What is massive LinkedIn profile views without a good and well constructed CV?\\n\\nDM to get a solid CV that will get you your dream job. \\n\\nKindly send your Cv or Mail to : \\ngetcv@jobblasts.com let\\u2019s get started!\\n\\nvisit our website https:\\/\\/t.co\\/LDDvWm5FAU for more updates. #Pelosi https:\\/\\/t.co\\/ERYYncJ91y\",\"729\":\"Life has taught me to believe in two things\\n\\nTIME AND GOD.\\n\\n#Taiwan #Pelosi #AamirKhan #PokemonScarletViolet #BadDecisionsTrailer1 #BlueJays #BBC #BBNaijaSeason7 #music #LoveIslandUSA #Colorado #PepsiBlue https:\\/\\/t.co\\/8rhcyAquDi\",\"730\":\"Peru cover by wise king\\n@fireboydml @davido @DONJAZZY @stefflondon @EMPIRE @WiseKingoffici1 #EmpiresSMP #EndSARS\\n#Taiwan\\n#AamirKhan #PokemonScarletViolet #Mnakwethu #mavin #30BG #supportingartist https:\\/\\/t.co\\/lomyxzo19t\",\"731\":\"Before After \\nOn my way. Kidnappers \\nKADUNA ABJ are on the Way\\nroad i need ur Prayer \\n#helicopter #Taiwan #bankole #vabulance https:\\/\\/t.co\\/SOq1sp6GTV\",\"732\":\"Uti Nwachukwu celebrates 40th birthday #Batgirl #Taiwan \\n\\nhttps:\\/\\/t.co\\/C9ax86h1qt\",\"733\":\"Download Valucares App\\n#kano #Oshiomole #Room1 #Napoli #Taiwan \\n#arisetv #witcher https:\\/\\/t.co\\/U490y2rN72\",\"734\":\"a dictator #XiJinping i s \\n'the Sorest Loser of All Time' - #China - #Taiwan #Pelosi https:\\/\\/t.co\\/COouUZAqTK\",\"735\":\"Man of the year \\ud83d\\ude02\\ud83d\\udcaf\\n#obituary #Room1 #Wizkid #oshiomole #witcher #ASUU #Taiwan #ifb https:\\/\\/t.co\\/xYqiMXKCQi\",\"736\":\"When 2 bully talented Singers go at it on stage with none stepping down for the other to be heard, the audience bears the brunt. #Noise.\\n\\nWitcher Room 1 Diana Pioneers Rufai oseni Mbah Biggie Ronaldo Dubai What God Big Ivy #Wizkid #helicopter #Taiwan #UkraineRussiaWar #Russia\",\"737\":\"This is just so amazing \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n\\nSong is Empath , 4th track off my new EP \\nLink in my bio \\ud83d\\udd25\\n#Taiwan #Pelosi #PokemonScarletViolet #Viruman #helicopter #Machala #Trending #festac https:\\/\\/t.co\\/HrGoPtUEdp\",\"738\":\"@Naija_PR Nuclear weapon don ready\\n\\n#WWIII https:\\/\\/t.co\\/M52dtXFSPt\",\"739\":\"Freestyle\\n Cc @officialnairam1\\n@zinoleesky01 @Olamide @davido @wizkidayo\\n@burnaboy @miabaga \\n#sapa #MotivationalQuotes #Taiwan #music #Birmingham2022 \\nPls help retweet\\ud83d\\ude4f https:\\/\\/t.co\\/Ed0hyzm5a0\",\"740\":\"We still got this ice cream wafers.\\n\\ud83d\\udcf1A21s.\\n\\n#Pelosi ASUU\\n\\n\\\"Arise TV\\\" #helicopter Jaruma Oshiomole Room 1 https:\\/\\/t.co\\/QOKS8yZiEf\",\"741\":\"We still got this ice cream wafers.\\n\\ud83d\\udcf1A21s.\\n\\n#Pelosi ASUU https:\\/\\/t.co\\/ccitKgxKdW\",\"742\":\"You see me doing professor look just know I\\u2019m upto something \\ud83d\\udc68\\u200d\\ud83c\\udfeb \\ud83d\\ude02 orin ni sha #Taiwan #professora #Pelosi #akanda https:\\/\\/t.co\\/ziFs7wdpro\",\"743\":\"The only thing I can afford now is \\u201cAble\\u201d so in case of any necessity please \\u201cam affordable\\u201d\\n#BBNajia #Taiwan #GGA\",\"744\":\"@DavidHundeyin @WestAfricaWeek @MBuhari https:\\/\\/t.co\\/i3YYdzIee8\\n\\nMassive inflated prices on the cost of the vehicles. \\n@MBuhari and @OfficialAPCNg said they are fighting corruption but will close their eyes to this type of deals.\\n\\n#NigerRepublic #Obituary #bbns7 #Taiwan #samomatseye\",\"745\":\"Singing &lead singing is a thing if the mind &mental activity.\\nI have seen singers who practically bully their co-lead vocalists into silence on stage through their skillful runs & powerful singing colours.\\nIt's all shades of wrong.\\n#Sabinus #Taiwan #China #Russia #Ukraine #uk\",\"746\":\"@davido X @Pheelz\\nComing with a hard jam \\nMusic for the soul \\nHappy music \\n\\nRoom 1 peter Dury Ronaldo Ten hag jackie chan de jong #30BG #davido #Taiwan #PokemonScarletViolet #AamirKhan #DonBelle #sabinus #helicopter #DonnyPangilinan https:\\/\\/t.co\\/VPSRUhRh8v\",\"747\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/s3pbNoQAGP\",\"748\":\"To co lead songs effectively its key for singers to not be get carried away with their level of skill to the point of over dominating the addlibs. Do what you can at your level in a way to help the other person deliver at their level\\n#music #Taiwan #UK #USA #sabinus #JackInTheBox\",\"749\":\"China starts military exercises as Nancy Pelosi meets Taiwan\\u2019s president\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/7TgVmLgnwK\\n\\nPlease follow us & retweet\\n#China #Foreign #NancyPelosi #Taiwan #US #bobojay #bobojaytv https:\\/\\/t.co\\/X4VdFxKEE2\",\"750\":\"When leading songs with other lead singers, it's important to avoid crowded addlibs. This happens when both of you do addlibs without space or rest particularly with singing a lot of words into your addlibs at the same time. \\n#Taiwan #music #AamirKhan Demi Lovato #nsfwtwt\",\"751\":\"US House Speaker Nancy Pelosi lands in Taiwan amid threats of Chinese retaliation\\n\\n#WesternPost #NancyPelosi #Taiwan #USA #China\\n\\nhttps:\\/\\/t.co\\/i8u27vB1bD\",\"752\":\"In Russia, near Moscow, there was a major fire in a warehouse. The area of the fire was up to 35,000 square meters. One person died, 6 were injured.\\n#Russia #russiaisaterrorisstate #Taiwan #Pelosi #Trending #Viral https:\\/\\/t.co\\/XPenvRyXEc\",\"753\":\"Kremlin: Tension over Nancy Pelosi\\u2019s Taiwan visit \\u2018should not be underestimated\\u2019\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/Cx1vEaqwqu\\n\\nPlease follow us & retweet\\n#Foreign #Kremlin #news #Taiwan #bobojay https:\\/\\/t.co\\/lbgqYYK7r6\",\"754\":\"Track 3.#moneymadness ft SpLamar on(Simple Lyrics) the Ep out already link below \\ud83d\\udc47 https:\\/\\/t.co\\/RKTnxgtKzB. #africa #Taiwan #Pelosi #news #NEW #music #Demi Lovato #MONEY #moneymadness https:\\/\\/t.co\\/AVYQjSFrmC\",\"755\":\"@PiCoreTeam Pi to the moon. Slow and steady.\\n\\nCheck out CORE Mining too. Wonderful project. @CoreMining_1\\n\\n#pi #core #SatoshiPlusConsensus #btcs #btc #Bitcoin #Taiwan #Solana https:\\/\\/t.co\\/MkpeC7yxpc\",\"756\":\"The \\ud83c\\uddfa\\ud83c\\uddf3#UnitedNations on Tuesday reiterated its support for the #OneChina \\ud83c\\udde8\\ud83c\\uddf3 principle, noting that it follows the #UNGA Resolution 2758 of 1971, said Stephane Dujarric, spokesperson for @UN Secretary-General Antonio Guterres @antonioguterres.\\n#China #Taiwan #Pelosi https:\\/\\/t.co\\/cMXki88fQe\",\"757\":\"Show of might #Taiwan #ChinaTaiwanCrisis\\nhttps:\\/\\/t.co\\/u6tMQDCudX\",\"758\":\"The best pizza in Ghana \\n#Binnaparlour \\n#food #FastFood #Taiwan #sabinus #Birmingham2022 #PeterObi https:\\/\\/t.co\\/oUEy7JsXqy\",\"759\":\"Me looking at USA trying to play a dirty game with the Chinese #Taiwan #Xi Jinping #Kano https:\\/\\/t.co\\/EL3gICOawv\",\"760\":\"Book a shortlet apartment with ease on Rentic.\\n\\nSign up on our bio link to begin today.\\n\\n#renticapartment #lagosnigeria \\n#BBNaija\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 #BBNajia CONGRATULATIONS OZO Hermes Obi-tuary Emily Niger Republic Sam Omatseye Room 1 #Pelosi Amen Tinubu Deji God Abeg Daniella china\\u2019s taiwan https:\\/\\/t.co\\/MWfCcGsFBl\",\"761\":\"Most of the saved reference pins I saved from Pinterest I have managed to draw or sketch everything!!!! #Pinterest #artists #Taiwan\",\"762\":\"27 Chinese warplanes enter Taiwan's air defence zone: Taipei.\\n\\n#Taiwan #China\",\"763\":\"Travelling by Flight is N150k, while by road is N30M to N100M depending on your kidnapper asking price \\ud83e\\udd7a\\ud83e\\udd7a\\n\\n#Wizkid #Taiwan #bellathorne #PeterObi #abuja\",\"764\":\"Where i can Intern to Work and learn from senior designers in this fields. I would appreciate your Retweets and recommendations.\\n#Solana #sabinus #Pelosi #internships #designthinking #designinspiration\",\"765\":\"Finally, I have found the video \\ud83d\\ude05\\n\\nObi-tuary | Arise TV | #Taiwan #RCCGConvention | #helicopter | #WWIII #Pelosi #Xi Jinping #World War III #Reno #TinubuShettima2023 #Tinubu #Atiku #IPOB | #Hausas #fulani | #Yorubas #Igbos #Nigerians #BBNajia #Buhari #PeterObiForPresident2023 https:\\/\\/t.co\\/1GLM8ZiUMW\",\"766\":\"Copied from @ENIBOY , I only added the right person picture.\\n\\nThe person is #PeterObi4President2023 \\n#davidhundeyin \\n#congratulationsozo\\n#arisetv \\n#transhumancoin \\n#oshiomole \\n#Taiwan \\n#Ronaldo \\n#Messi \\n#TakeBackNaija\",\"767\":\"Check out my new single \\\"Adulthood Anthem II\\\" distributed by @DistroKid and live on Apple Music!\\n#Taiwan #appledaily #sabinus #applemusicrt #ApplePay\\n#ApplePencil #applemusic #applemusicnigeria #Pelosi #BlueJays #LagosSwindlers #applemusicamerica #Haiti \\n\\nhttps:\\/\\/t.co\\/SR7gmdCcUq\",\"768\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/T5NqupYC6a\",\"769\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/UkfME0jLGW\",\"770\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/XbSVyWeGe9\",\"771\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/ImtNlfKkxu\",\"772\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/qpHGdNJgKE\",\"773\":\"\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\udcf8\\nShot by me \\ud83d\\ude04\\n#Taiwan #Xi Jinping #World War III #AMVCA8 #BBNaija #BlackPantherWakandaForever #Burnaboy https:\\/\\/t.co\\/aTBOgsEADr\",\"774\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/t5nQgp3nRr\",\"775\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/0mDVY3VN2i\",\"776\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/3vCdF9DKEy\",\"777\":\"Peace \\u270c\\ufe0f@ @ukr @Ukraine @china @PDChinaLife @Taiwan_Today \\n#peacefulTaiwan #Taiwan #ChinaTaiwanCrisis\",\"778\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/HR0p122ocB\",\"779\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/cNMzR9WUeH\",\"780\":\"Osimhen Napoli Future In Doubt After Comments From President Over African Stars \\n\\n#osimhen #Taiwan #HelicopterCrash #DonnyPangilinan https:\\/\\/t.co\\/2g4Wc7gzYP\",\"781\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/UyhQgGwCHt\",\"782\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/HhjcNkXvoR\",\"783\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/0yfepVxBdt\",\"784\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/mfd7tNgXeb\",\"785\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/jvcuksjZIE\",\"786\":\"For home lessons for your children, primary schools students, Secondary school students in commercial class and computer tutorial (Ms Office and graphics design) around ketu, Ojota, Ogudu, Mile 12, Owode and Irawo. Contact AOI on: 08166205451 and 09078463024. #Cucurella #Taiwan\",\"787\":\"Movie coming out this August \\n#Gavi #WorldwarIII #sabinus #movies #Taiwan #Ukraine #brighton https:\\/\\/t.co\\/GNZfMrWyoH\",\"788\":\"Book your Private Jet charter & Helicopter shuttle services with amazing discount\\u2019s \\u2708\\ufe0f contact us on +2349038190834\\n.\\n.\\n.\\n#helicopter #PrivateJet #Taiwan #Pelosi #travel #Aviation Kano World War III https:\\/\\/t.co\\/uN0H1vPHWE\",\"789\":\"How long does it take you to understand this picture \\ud83e\\udd23\\n#Taiwan #Trending #Viral #LoveIsland2022 #Pelosi #sabinus #DonBelle #massage #helicopter #Birmingham2022 #BelleMariano https:\\/\\/t.co\\/dYbMkB0eWO\",\"790\":\"Check out my new single \\\"Adulthood Anthem II\\\" distributed by @DistroKid and live on iTunes!\\n#iTunes #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #itunes\\u914d\\u5e03\\n#itunesafrica #iPadPro #itunesghana #Taiwan #sabinus \\n#Solana #UkraineRussiaWar #PeterObi4President2023 \\n\\nhttps:\\/\\/t.co\\/D9BKh8azwH\",\"791\":\"1000 Naira free BET\\u26bd\\ufe0f\\ud83c\\udfc0\\ud83c\\udfc8\\nILOT sport Bet \\ud83e\\udd3e\\u200d\\u2642\\ufe0f\\ud83e\\udd3e\\u200d\\u2642\\ufe0f1000 naira free Bet for all.\\nSign up now \\ud83d\\udc49https:\\/\\/t.co\\/eu6MfQUQWL\\n#helicopter #Japa #XiJinping #ChelseaFC #BHAFC #CFC https:\\/\\/t.co\\/S9yDKiqfdh\",\"792\":\"If Governor El rufai was the President of Nigeria , Asuu wouldn't be doing all these nonsense they're doing.\\n#ASUUStrikeUpdate #Taiwan #EndAsuuStrikeNow\",\"793\":\"Portable X Burna Boy X Afrobeat Type Beat | Amapiano - \\u201cZEHH\\u201d - Afrobeat Instrumenta 2022\\nNOW AVAILABLE PON MY YOUTUBE\\u2694\\ufe0f\\nhttps:\\/\\/t.co\\/QQdshVYR8Y\\n\\ud83d\\udd17Follow me on IG \\u279c https:\\/\\/t.co\\/nY84jN4orE\\n#wednesdaythought #esreicht #Taiwan #YENA_SMARTPHONE #BBNaija #Pelosi #sabinus #DonBelle\",\"794\":\"Stop pronouncing the \\\"T\\\" when you speak English \\n#Taiwan #Pelosi #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BlueJays #helicopter #UkraineRussiaWar #DonnyPangilinan #UkraineRussiaWar https:\\/\\/t.co\\/PLgY1dIXk6\",\"795\":\"SHS: 1 student, 2 loaves Despite the school food crisis, the prefect candidate makes pledges to the pupils.\\n\\nhttps:\\/\\/t.co\\/O9ukvE85zh\\n\\nBribe Start \\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02. #Taiwan #knust\",\"796\":\"Stop pronouncing the \\\"T\\\" when you speak English \\n#Taiwan #Pelosi #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BlueJays #helicopter #UkraineRussiaWar #DonnyPangilinan #UkraineRussiaWar https:\\/\\/t.co\\/TaQtXc29sS\",\"797\":\"INSTRUCTIONS BELOW\\u2935\\ufe0f\\nClick link below to register \\nClick second link to subscribe via our YouTube channel the come back here & dm me your bank details \\nhttps:\\/\\/t.co\\/V95Z1YzYt7\\n\\nhttps:\\/\\/t.co\\/7RLDwaJ1Q9\\n\\n#BBNaijaS7 #Bbnaija #sabinus #SheggzFC #Machala #Bryann #Pelosi https:\\/\\/t.co\\/b6Klbwjbg0\",\"798\":\"We all gat that atom of pride and self-esteem it all goes down \\ud83d\\udc47\\ud83d\\udc47 to how you tends to go about it #Wizkid #LoveIsland2022 #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LoveIsland2022 #sabinus https:\\/\\/t.co\\/YnkSN8AI7d\",\"799\":\"We are Obidient and Yusful.\\nObi-tuary is not our portion.\\nSam and those that wish us that back to sender.\\nKano is Obidient\\nLagos is Obidient\\nAkwa Ibom\\nNigeria is Obidient\\n#Pelosi\\n#PeterObi4President\\nOZO AND HAP WHISKEY \\nCONGRATULATIONS OZO\\n#HapWhiskeyXOZO\\n#OzoemenaChukwuOZO https:\\/\\/t.co\\/zKU1MjgFni\",\"800\":\"So i just came across dis sec school and heard \\\"question 1 A,Q2 A Q3 B and so so...now believe it or not u er connected to corruption one way or the other in dis country. #asuu #Taiwan #Kano\",\"801\":\"Procrastination is like a credit card. It's a lot of fun until you get the bill \\ud83e\\udd26\\ud83c\\udffc\\u200d\\u2642\\ufe0f\\n\\nGet good at doing small tasks every day, this trains you to become an executioner. \\n\\nThen when those bigger tasks come along, you\\u2019re prepared to crush them \\n\\n#Taiwan #Machala #WednesdayMotivation\",\"802\":\"Visit Chronicare today to formulate a suitable treatment plan or call 09055790892\\n\\n#diabetes #herbalife_nutrition #Taiwan https:\\/\\/t.co\\/JBIOiMjpRc\",\"803\":\"DonJazzy by Dejavu_Dmj out now on Audiomack \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udc9f please help tag @DONJAZZY\\nTill he sees and hear this \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f\\u2665\\ufe0f\\u2665\\ufe0f\\u2665\\ufe0f\\n\\nhttps:\\/\\/t.co\\/mzzNbsFPxT\\n\\n#Taiwan #Pelosi #sabinus #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a https:\\/\\/t.co\\/sYSZHcYIuU\",\"804\":\"#citicbs\\n#\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 \\n#tiboinshape \\n#Taiwan \\n#\\u0633\\u0643\\u0631\\u0628\\u062a76 \\nSubscribe now!!!!!\\nORACLE 12C SQL: https:\\/\\/t.co\\/rCH5mVvNNM\",\"805\":\"My hard working idolo Davido\\nMaking five jams not just a song a night .\\nCan you fave ever\\n\\nTen hag Ronaldo De jong Jackie chan #Davido #sabinus #Taiwan https:\\/\\/t.co\\/2hrwFNjoTy\",\"806\":\"Rising dollar exchange rate, doom for Nigeria's aviation industry, others-Expert #Taiwan \\n\\nThis is just as he insisted that the situation was scary for all business entities in the country and appealed to the government to force a change. https:\\/\\/t.co\\/gibonV5QKp\",\"807\":\"Female jerseys available\\nwhatsapp\\/call:08026182997\\nPrice:6,000\\nNationwide delivery \\n\\nNiger Republic | Tiwan | Ronaldo | #BeninCityMall | #Taiwan | #sabinus | #BibleBuild | #Pelosi https:\\/\\/t.co\\/V1HrxtBzz9\",\"808\":\"16 passengers feared dead, five injured in Lagos auto crash #Taiwan \\n\\nAt least 16 passengers have been confirmed to have died, with five others sustaining varying degrees of injuries during an auto crash that occurred in Epe Local Government Area in Lagos. https:\\/\\/t.co\\/hXgO9IeAYb\",\"809\":\"I long for something that's safe and warm..\\nBut all I have is all that's gone...\\nIt's helpless and hopeless like a feather \\ud83e\\udeb6 on the Clyde....\\n\\nGod knows I've failed but He knows that I've tried \\ud83e\\udd26\\n#davidhundeyin #ChinaTaiwan #Nigeria #level2 https:\\/\\/t.co\\/JioBYqDFhh\",\"810\":\"#\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #Taiwan #LoveDamini #LoveIsland2022 #BurnaBoy #music #DONBELLEmpire \\n\\n@DONJAZZY @Olamide @ubifranklin1 @_AsiwajuLerry @Iampelga_ @officialnairam1 @davido @burnaboy @burnaboy @SOUNDCITYtv\\n@AtlanticRecords\\n@MAVINRECORDS\\n@AtlanticRcrdsUK\\n\\nPlease \\ud83d\\ude4f\\ud83d\\ude4f retweet abeg https:\\/\\/t.co\\/2Shx63fCq9\",\"811\":\"@Debhieofficial has released the video of her much anticipated single titled #AS_I_dey.. Some said she was beefing somepeople in the song.. Kindly watch the full video using YouTube link below and drop your own comment.\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/XjTVjKPsm0\\n\\n#Taiwan #debhie #AsIDey #sabinus https:\\/\\/t.co\\/estdPqJOQ4\",\"812\":\"Obasanjo to youths: Don't allow present challenges deter you from achieving your goals #Taiwan \\n\\nFormer President Olusegun Obasanjo has advised Nigerian youths not to allow educational challenges deter them from achieving their goals. https:\\/\\/t.co\\/n0O3V41onu\",\"813\":\"*BEST TIME TO CONCEIVE A MALE CHILD.* \\n\\nThe sex of a child is determined by the father. The father carries both male and female sperm chromosomes XY. If the father releases the Y, male child is \\n\\n#ASUU #MamaDollaz #Racism #Taiwan #JackieChan https:\\/\\/t.co\\/iXZauOmaOF\",\"814\":\"CONGRATULATIONS TO ALL WINNERS YESTERDAY.TODAYS FIXED MATCHES ARE NOW AVAILABLE. YOU CAN CONTACT ME DIRECTLY ON \\ud83d\\udcde +2349095386137\\n#Osimhen #Chukwuemeka #JackieChan #declan #Obituary #Kano #Cubana #Tinubu #NnamdiKanu #davidhundeyin #airtel #Mourinho #Mount #Taiwan #arisetv #ASUU https:\\/\\/t.co\\/ijo5LBjCky\",\"815\":\"Verve partners uLesson to offer cardholders 10% discount #Taiwan \\n\\nVerve is committed to creating rewarding experiences for its cardholders while supporting their lifestyle needs and availing them a seamless and secure payment solution. https:\\/\\/t.co\\/8b4mXYiRXi\",\"816\":\"Can you hear wedding bells \\ud83d\\udd14 already?\\ud83d\\ude09\\n\\nCongratulations @Sabinus1_ \\n\\n#Taiwan #Solana #Ukraine #Wizkid #BibleBuild #news #BigBrotherNaijaS7 #BBNajiaS7 https:\\/\\/t.co\\/eImPrKR2Vs\",\"817\":\"It\\u2019s communion service knocking. Keep sending orders for your communion materials.\\n#Church #Taiwan #biblewonderland https:\\/\\/t.co\\/LfYSxPZruW\",\"818\":\"It\\u2019s great for your sex life\\u2026. Yes!! \\ud83d\\ude09\\n\\n#DonnyPangilinan #sabinus #helicopter #Twitter #TREASURE #Pelosi #Taiwan #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BlueJays #BelleMariano #AbujaTwitterCommunity #massage #LoveDamini https:\\/\\/t.co\\/BWJR5IVhyG\",\"819\":\"85% of Nigerian children suffer violent discipline in schools - UNICEF #Taiwan \\n\\nWhile noting the impact of corporal punishment on children is devastating, she said children are left with both physical and psychological wounds. https:\\/\\/t.co\\/8wVAc3JTrI\",\"820\":\"Lagos on red alert, as police say 'we\\u2019re working to prevent terrorists\\u2019 attack' #Taiwan \\n\\nThe Lagos State Police Command says it is not taking lightly, the security threats against the state being reported in the media lately. https:\\/\\/t.co\\/aFCQiipXKe\",\"821\":\"Ever since sapa hook me , i no dey too last for bed again, 25mins - 30mins i don finish, sapa can\\u2019t be showing me shege make i still come die on top toto\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a #Taiwan #sabinus #asuu #ASUU #dejong #machala #Trending\",\"822\":\"How can Sam Omatseye, in his column on the Nation newspaper write such an offensive article at the former Governor of Anambra State and Presidential candidate of the Labour Party, Peter Obi. May God Judge him. #helicopter #Taiwan #sabinus #Obidatti2023 \\nNice wallpaper #BBNajiaS7 https:\\/\\/t.co\\/5gYFCbiciT\",\"823\":\"Still thinking how Nigeria become broke that they can't resolve the ongoing strike.. \\nBoom \\ud83d\\udca5\\n\\nNigeria president approved 1.4 billion naira to buy car for Niger republic\\n\\nMay God help us \\n#Taiwan #Pelosi #Solana #ASUUstrike\",\"824\":\"Napoli owner Aurelio De Laurentiis has said he wouldn't sign any more African players unless they agreed to not take part in the Africa Cup of Nations.\\n\\nNiger Republic Obituary Sam Omatseye Taiwan #Pelosi #BBNaijaLevelUp #BBNaijaS7 #BBNaija https:\\/\\/t.co\\/MTTKUFXeL5\",\"825\":\"Register for the AFRH 12th Annual International Conference 2022! (hybrid).\\nLess than 20 physical slots are left\\nTo register, please visit https:\\/\\/t.co\\/c5IRIQTAQ1 \\n#Infertility #Taiwan #NigerRepublic #BBNaijaS7 #Obituary #Emily #BeninCityMall #Ronaldo #SamOmatseye #Leno #PeterObi https:\\/\\/t.co\\/dSvzH9zKm6\",\"826\":\"I find it rather interesting why some people think their only cultural heritage is their tribe and language. Why can\\u2019t we say we are Nigerians , Ghanaians and Malians instead of Ewes, Asantis, Igbos or Dogon people . \\ud83e\\udd26\\ud83c\\udffd\\u200d\\u2642\\ufe0f#knust #Taiwan #UkraineRussiaWar\",\"827\":\"Which food are you craving for now? #food #Taiwan #sabinus #Batgirl\",\"828\":\"#ASUU #Taiwan #Oshimen #Solana #helicopter #sabinus \\n\\ud83d\\ude2d #Lautech \\nIt unfortunate, our hearts \\ud83d\\udc94 are heavy, we have lost Rachel...\\nGod why \\ud83d\\ude2d \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d https:\\/\\/t.co\\/c4YyJ55VCk\",\"829\":\"How's ur day going \\ud83d\\udc95 #Taiwan #Solana #ASUUstrike #sabinus #Wizkid #Machala https:\\/\\/t.co\\/ON0Rt9DZRR\",\"830\":\"If you dey cap say until you get big bag before you can chase ur dream na ur time you dey delay....\\n#rorajaye on all platforms link below \\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\nhttps:\\/\\/t.co\\/awDqNWkeWB\\n\\n#Taiwan #Batgirl #Wizkid \\ud83c\\udfb6 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 https:\\/\\/t.co\\/gEEUK9uuNT\",\"831\":\"MTN - 1500\\n2386543808601207\\n\\nPlease don't tell me it didn't enter oh, because i tried it and it entered \\n\\ud83e\\udd28\\ud83e\\udd28\\n#sabinus #Tinubu #Hermes #Taiwan #Jaruma #racism #NnamdiKanu\",\"832\":\"Google removes 3.4bn Ads, suspends 5.6m accounts #Taiwan \\n\\nAs the digital world evolves, Google's policy development and enforcement strategies evolve with it to prevent abuse. https:\\/\\/t.co\\/VHF846Ucn9\",\"833\":\"If your bf\\/gf open Mouth praise either Atiku(Dubai CrossFit) or Tinubu (Agbado master)\\n\\nDump him\\/her.\\nIn the long run, they will disappoint you.\\n\\n#Taiwan #PeterObiForPresident2023 \\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/Rh4GEKiBzb\",\"834\":\"Tinubu is a PLACE HOLDER for gov Shettima, the earlier you people realize this the better oo.\\n#Taiwan #Obidatti2023 #Ukraine #sabinus #Wizkid #helicopter #BBNajiaS7 https:\\/\\/t.co\\/zhcpeyoRtP\",\"835\":\"Is this one camera madness or what ?? I hope this isn\\u2019t how the iPhone 14 looks like ooh \\ud83e\\udd26\\ud83c\\udffb. It better not. #Taiwan \\u2018ASUU\\u2019. Mummy dollarz #Solana #BBNaijaS7 https:\\/\\/t.co\\/0BiTIgaSYO\",\"836\":\"Iphone 14 unbox \\nWhat do you think? Drop a comment below\\nWe are the best gadget \\ud83d\\udd0c \\n08087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/GMKUgiJkav\",\"837\":\"Memphis Good both in pitch and off pitch\\ud83e\\udd70\\ud83e\\udd70\\n\\nThe girl got a fresh inspiration \\ud83d\\udcaa\\n\\n#davidhundeyin \\n#Aristv \\n#Ronaldo \\n#Taiwan https:\\/\\/t.co\\/DbuVmtLuX0\",\"838\":\"@KyivIndependent Ukrainians launching HIMARS missiles from a wheat field.\\n#Ukraine #UkraineRussiaWar #UkraineWillWin #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Solana #CloserWithDonBelle #russiaisaterrorisstate #RussiaInvadedUkraine https:\\/\\/t.co\\/DLkbtWYTnR\",\"839\":\"If this message applies to you, then I'm talking to you: \\n\\n\\\"Stop doubting yourself and give your dream-career a jump\\\". \\n\\n\\\"The world awaits your potential\\\"\\n\\n\\\"You're enough!\\\"\\u270c\\ufe0f\\n\\nI'm routing for you \\ud83d\\udc4d\\n\\n#Taiwan #Pelosi #china #WWIII #Scholarships #UK #Cheveningscholarship https:\\/\\/t.co\\/TxY6NW7rGy\",\"840\":\"Slimtalker the journalist \\ud83d\\ude02\\ud83d\\ude02 \\n\\nCc @Sabinus1_ @DONJAZZY @yabaleftonline @instablog9ja \\n\\n#Taiwan #Solana #CloserWithDonBelle #Wizkid #Batgirl https:\\/\\/t.co\\/9RTAmNicmh\",\"841\":\"Check my profile for my link to order!!!\\n#Solana #CloserWithDonBelle #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Ukraine #Batgirl #Wizkid #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #helicopter #BlueJays #Taiwan #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Italy #ChrisBrown #Trending #TREASUREinManila #TREASURE #CFC https:\\/\\/t.co\\/o6BiiEBYiS\",\"842\":\"Your hair is important to us\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Solana #CloserWithDonBelle #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus https:\\/\\/t.co\\/icrt1AKjYF\",\"843\":\"Check my profile for my link\\n\\n#\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #businessopportunityprevi #bookaholics #celebrityfitnessindonesia #bookaddiction #bookaccount #photoofthedaygallery #businesswomanlife #bookaddicted #celebrityfashion #photooftheday\\u2764\\ufe0f #bookalicious #bookaesthetic #Taiwan https:\\/\\/t.co\\/UZZgqgILDK\",\"844\":\"This is what we do\\ud83e\\udd85\\ud83c\\udf10\\n\\n#Taiwan \\n#mummydollaz https:\\/\\/t.co\\/EW1947qUVk\",\"845\":\"start of the competition with her opening throw of 57.33m.\\n\\nThe Nigerian, who opened with 55.82m, knew she needed more than the 58.19m she threw to win the African Championships gold last June in Mauritius.\\n\\n#Taiwan #samomatseye #Ronaldo https:\\/\\/t.co\\/LkMKDvqJve\",\"846\":\"Hey, having issues with your PC? Why not let us take that burden off you.\\n2348087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/cGChk2NcVy\",\"847\":\"You can't separate Nurses and unemployed man. This professional sisters can feed niggas\\n\\n#Taiwan #sabinus\",\"848\":\"Social media advert for a photographer \\n\\nGet exclusive designs at the coolest rate \\n\\nWe deliver quality designs \\n\\n#glowhub #gd #Taiwan #branding #photographer #CloserWithDonBelle https:\\/\\/t.co\\/PG3TnovTVs\",\"849\":\"Massive pump incoming for #MarvinInu\\n\\n Don't miss $Marvin, holders would be rewarded soon\\n\\n#MarvinInu @Marvin_Inu #Taiwan #helicopter #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #tuesdayvibe #Bitcoin\\u00a0 #altcoin #CloserWithDonBelle #BNB #sabinus #Batgirl https:\\/\\/t.co\\/nSVh0YDIcv\",\"850\":\"America politicians have zero integrity and ethics. The world must be careful how they want to deal with the country. What they said and do are two different things. They cannot not be TRUSTED!\\n#OneChina \\n#OneChinaPolicy \\n#OneChinaPrinciple \\n#Taiwanchina \\n#ChinaTaiwan\",\"851\":\"Your best fashion plug \\n\\u25aa\\ufe0fOrder as seen in sizes \\n\\u25aa\\ufe0fto order kindly click on link in our bio\\n\\u25aa\\ufe0f call\\/WhatsApp :+2348138512629\\nDM is open 24\\/7\\n#NigerRepublic #benincitymall #BBNajiaS7 #ChinaTaiwanCrisis https:\\/\\/t.co\\/G78fRR0Nhi\",\"852\":\"You can call her \\\"Menstrual Hygiene Ambassador\\\" \\ud83d\\ude01\\ud83e\\udd2a #StarGirl \\n.\\n.\\n\\ud83c\\udfa5\\ud83c\\udfbc\\ud83c\\udf99\\ud83c\\udfb5 @ugoccie \\n.\\n.\\n.\\n#starGirl #wizkid #Solana #BBNaijaSeason7 #Taiwan #BibleBuild #helicopter #BlueJays #oesym #wednesdaythought #AbujaTwitterCommunity https:\\/\\/t.co\\/rfTY04O9Pw\",\"853\":\"Wait for it \\ud83d\\ude02\\ud83d\\ude02 #Taiwan #trending #EndSARS https:\\/\\/t.co\\/pQkRLWUnmy\",\"854\":\"BIRTHDAY PORTRAIT\\n\\ud83d\\udcf8:@larrieoluks \\n\\n#Taiwan #photooftheday https:\\/\\/t.co\\/p0ziCwgJI7\",\"855\":\"After Chelsea signs @DeJongFrenkie21, @cucurella3 \\nThen I will eat this, no time to waste time...\\n\\n#kante #Taiwan #Cucurella #GodAbeg https:\\/\\/t.co\\/8La4uS2TFA\",\"856\":\"Bookmark this tweet #ChelseaFC is winning the premier league this coming season.\\n#Taiwan #ASUU #NnamdiKanu\",\"857\":\"Battery capacity of our 400w and 250w SMK FLOOD LIGHT\\n*400W - 3.2V : 40AH\\n*250W - 3.2V : 20AH\\n@MarsSolar__\\n\\nJaruma | Ronaldo | Nnamdi Kanu | Datti | Sam Omatseye | Mama Dollars | Sign | Racism | World War III | BRT Lane\\n#XiJinping https:\\/\\/t.co\\/6Nun516WPx\",\"858\":\"...Agricultural Research Council of Nigeria (ARCN), ONIDA, ASTA irrigation & other stakeholders. \\n\\n#nicert\\n#nicertgroup \\n#wenainitiative\\n#fmard\\n#Agriculture\\n#Export\\n#womenbusinesses\\n#Taiwan #davidhundeyin #samomatseye #Tinubu #arisetv https:\\/\\/t.co\\/S3lEOp6zY1\",\"859\":\"Shatta don reply Mama Dollarz \\ud83e\\udd23\\ud83d\\ude05\\ud83d\\ude05 and Big Ivy dema beef \\ud83e\\udd23\\n\\n#\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Taiwan https:\\/\\/t.co\\/9AL6ZpIaGF\",\"860\":\"Let's have your Premier League winner and the teams that will qualify for the UEFA Champions League by the end of the season.\\n\\nKindly drop your comments below \\ud83d\\ude01\\ud83d\\ude01\\n\\nLeggo \\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\n\\n#NaijaBet #Taiwan #PremierLeague #ChelseaFC #ManCity #Spurs #ManUnited #Arsenal #Liverpool https:\\/\\/t.co\\/Vz160FKf2U\",\"861\":\"Is Buhari aware that the two weeks he gave for strike to be resolved have passed \\ud83d\\ude44? Someone should please remind him.\\n\\n#kwankwaso #Taiwan #davidhundeyin\",\"862\":\"Please the world does not need another war or tension or whatever#Taiwan #ChinaTaiwan\",\"863\":\"4 bedroom terrace townhouse with BQ \\nLocation: lekki phase 1\\nPrice: 150M\\nAgency: 5.5M\\nContact: Whatsapp or call 07043373145\\n#Taiwan #Phyna #Mama #Daniella #BBNajiaS7 #SheggzFC #JackieChan #Jaruma #Kalid #RCCGConvention #RCTID #Solana #helicopter #PokemonScarletViolet #BibleBuild https:\\/\\/t.co\\/Ce01378CRB\",\"864\":\"This is 21\\ud83c\\udf89 \\nMade in August 3rd. Happy birthday to me \\ud83e\\udd70\\ud83e\\udd73\\ud83e\\udd73\\ud83e\\udd73 \\n\\n#Taiwan #Trending #Trending #explorepage #TrendingNow https:\\/\\/t.co\\/amIdgP6uAv\",\"865\":\"And that smile could either start or ends wars - Suhaib Rumi \\n#expression \\n#hifyqoutes\\n#lovequotes \\n\\n#BeninCityMall #BBNajiaS7 #Taiwan #Solana https:\\/\\/t.co\\/zsA7jZ4Y9U\",\"866\":\"Does anyone know if Ukrainian embassy here in Nigeria is still working? Those who submitted their passport before Russia invaded them, have they collected their passports ? Please need to know @UKRinNGA \\n\\n#Taiwan #helicopter #BBNajiaS7 #BBN\",\"867\":\"Khalid the gentleman \\nBut the hottest man under the duvets\\nSee as Daniella dey open mouth and enjoying herself \\ud83e\\udd23 #BNB #Taiwan #BBNajiaS7 #BBNaijaLevelUp\",\"868\":\"As Pelocalypse depart s #Taipei Anyone who believes #PLA encircled #Taiwan drill to start @ 12:00 is an ordinary military drill is deluded. The entire encircled island with air defenses left them vulnerable for anyone to intervene \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\",\"869\":\"PROTEST AS KIDNAPPERS KILL LAUTECH STUDENT\\n\\nhttps:\\/\\/t.co\\/Jefhbd4wr1\\n\\n#Hotjist #Hotjistnaija #Kidnappers #Protest #Lautech \\n\\n#Obituary \\n#Ronaldo \\n#Taiwan \\n#Emily \\n#BBNaijaS7\",\"870\":\"What a better way to start up this new month\\n#Taiwan #PeterObi4President2023 \\n#PeterObiForPresident2023 #PeterObi #PeterObi2023 #PETERMJ #dril #rap \\n@Apeteofafrika https:\\/\\/t.co\\/mYK0GhyoiC\",\"871\":\"NEWS UPDATE: IGP MEETS CPs, OTHERS OVER RISING INSECURITY IN THE COUNTRY\\n\\nhttps:\\/\\/t.co\\/V4h2C5viZS\\n\\n#hotjist #Nigeria #IGP #Insecurity \\n\\n#BBNaijaS7 \\n#Obituary \\n#Taiwan \\n#Ronldo \\n#Emily\",\"872\":\"GafexianArts (c2021)\\nA Biro art of @samkerr1 by me.\\nHow do you rate it?\\nPls help repost till.\\n#gafexianart #gafexianzone #Taiwan #Solana #Chelsea #ChelseaFC @ChelseaFCW @AbsoluteChelsea @ChelseaFCinUSA #biro #explorepage #explore #Explorer #ExploreUganda @ChelseaWomenSG #artist https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"873\":\"To know more about this you can read the book called - The Compound Effect by Darren Hardy\\nHave a great day ahead guys \\ud83e\\udd17\\u2665\\ufe0f\\n\\n#helicopter #Solana #Taiwan #China #ASUUstrike #samomatseye #Finance #Selfdevelopment #cnc\",\"874\":\"**Okay Nah... CATCH ME LIVE* *For real For real\\ud83d\\udcaf* Go get your ticket money ready Because Expensive DJ NAS is gonna be on the whillz\\ud83d\\udca5\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\n#Taiwan #Solana #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #PokemonScarletViolet #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BlueJays #partytime #jbankz https:\\/\\/t.co\\/qyHhxvm1w1\",\"875\":\"Come join me \\ud83d\\ude0e #Foodie #FoodieBeauty #Taiwan https:\\/\\/t.co\\/6Sm8j0zWgv\",\"876\":\"#Btc \\n\\n$28k projection a visible on BTC, quite early but ''is rather early than late''.\\n\\nTriggered \\u2705\\n#Crypto #NFTCommunity #Taiwan #TradeDeadline #trade #stocks #charts https:\\/\\/t.co\\/3TZ2RkalOS https:\\/\\/t.co\\/LEK6lTXB14\",\"877\":\"In all you do, avoid being chased by a turkey on the streets of Lagos. I go explain later.\\n#Taiwan #ASUU #AriseTV\",\"878\":\"Keeping customers in perpetual darkness is something @IBEDC_NG does to us in Saki. It's a week of darkness & no explanation whatsoever. Very poor service.\\n#ibedc #DistributingDarkness @via_iure @PowerUpNG @fccpcnigeria @NERCNG\\n#wednesdaythought #Solana #Taiwan #helicopter\",\"879\":\"Moses Desire Kouyo writes:\\u00a0Ponderings of a King\\u00a0\\ufffc https:\\/\\/t.co\\/27lPlh1K4s\\n\\nAkufo-Addo | #Taiwan #Knust | Accra Hearts of Oak | Taiwan\",\"880\":\"Follow him on IG.\\n\\nhttps:\\/\\/t.co\\/VEa4WP9DO0 \\n#EmmanuelUmoh #Pelosi https:\\/\\/t.co\\/XnWs6XKBaB\",\"881\":\"Them say why I no love \\n\\nMe I have injuries in my heart #Taiwan #bpa\",\"882\":\"[CONGRATULATIONS]\\nOnyekwere Chioma finish with a Gold medal, while Amaechi Obiageri finish with a Bronze medal in the Women's Discus event.\\n#CommonwealthGames2022 #Taiwan https:\\/\\/t.co\\/Rb6M4G9bfV\",\"883\":\"FOLLOW OUR PAGE @nnheadlines \\nFOR MORE EXCLUSIVE REPORTS\\ud83d\\udce3\\n\\n#Solana #Taiwan #PokemonScarletViolet #BibleBuild #helicopter #BlueJays #oesym #Bbnaija\",\"884\":\"Everyone is giving their analysis but here is what you have to look out for\\u2026.\\n\\nIf the MACD crosses on the weekly then we could witness a +$10,000 rally, \\n\\nYou heard it hear first \\n#Solana #btc #binance #Taiwan @rovercrc @MMCrypto @CrypToomas @elonmusk @StonksReddit https:\\/\\/t.co\\/2VAX1kKY7q\",\"885\":\"History is about to be made on 1 3 0 8... It's GAMEATHON!!! Follow and join @gamicguild for more exciting gaming adventures.\\n\\n#Taiwan #gamingnationxznn #August2022 https:\\/\\/t.co\\/uMhwIVcM6q\",\"886\":\"Congratulations @PiCoreTeam on reaching 1.5 million followers. We, the Pioneers, look forward to the future and have full confidence in @nkokkalis and the entire PCT. #Taiwan #Pionners #Pinetwork #sabinus #cryptocurrency https:\\/\\/t.co\\/E9xunsffM1\",\"887\":\"Your best fashion plug \\n\\u25aa\\ufe0fOrder as seen in sizes \\n\\u25aa\\ufe0fto order kindly click on link in our bio\\n\\u25aa\\ufe0f call\\/WhatsApp :+2348138512629\\nDM is open 24\\/7\\n#NigerRepublic #benincitymall #BBNajiaS7 #ChinaTaiwanCrisis https:\\/\\/t.co\\/vcPnlUHPAk\",\"888\":\"Well, it worth the stress tho.....\\n#Taiwan https:\\/\\/t.co\\/ncKzoU40Ie\",\"889\":\"#NEWS #China #NancyPelosi #Taiwan Pelosi arrives in Taiwan, voicing U.S. \\u2018solidarity\\u2019 as China fumes https:\\/\\/t.co\\/7zorY8BGJn\",\"890\":\"U will need this to handle me \\n#GodAbeg #Taiwan #China #Pelosi #Solana #sabinus #SpeedDatingWithSelema https:\\/\\/t.co\\/Flwl4VS17Y\",\"891\":\"A lot can be expressed through art!!... Sadness, happiness. #art #artistontwittter #Taiwan https:\\/\\/t.co\\/5H5czNmAdA\",\"892\":\"Am a certified #Wizkidfc \\ud83d\\udd39 for life \\ud83e\\udd85\\ud83d\\udda4... But on a second thoughts without shades this #davido verse with #spyro isn't bad!.\\n Reality check\\ud83d\\udccc\\ud83e\\udd8b\\n\\n#WizKid\\ud80c\\udcf5 #Wizkid #BBNaija #BBNajiaS7 #Cubana #JARUMA #Deji #bread #CardiB #Tinubu #Dubai #Daniella #NnamdiKanu #ASUU #Taiwan #TAG https:\\/\\/t.co\\/OBs0ZqYaLT\",\"893\":\"@EuropaLeague don post @Cristiano \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n\\n#ronaldo\\n#Europa \\n#PremierLeague \\n#Taiwan https:\\/\\/t.co\\/UMTv580EMA\",\"894\":\"Create a website and earn $50\\nFor signing up link \\ud83d\\udc47\\n\\ud83d\\udc49https:\\/\\/t.co\\/cOFgBjIkqz\\n.\\n.\\n.\\n.\\n.#Taiwan #Pelosi #China #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #helicopter #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #oesym #SpeedDatingWithSelema #UkraineRussiaWar\",\"895\":\"TBH I really wan blow this year and I know God hears my prayers and will lead me to my helper #grateful #Taiwan #China #sabinus #Nowaydown #BBNaija #Machala \\n#Retweet #rt abeg ps. The song is original https:\\/\\/t.co\\/VgI8iwpoFf\",\"896\":\"\\ud83c\\udf99\\ufe0fQuote from \\ud83c\\udde8\\ud83c\\uddf3#Chinese State Councilor and Foreign Minister Wang Yi:\\n#China #Taiwan #OneChina #USA #House #Pelosi https:\\/\\/t.co\\/aY5dPHwbQl\",\"897\":\"The EP has dropped, its on all streaming sites.\\n\\nIF EP.\\n\\nCheck out Tipcy Jaej on #SoundCloud\\nhttps:\\/\\/t.co\\/24snMEgLsL\\n\\nAND SPREAD THE LOVE ON SOUNDCLOUD\\n\\n#NewMusic #China #Taiwan #sabinus #LoveIsland2022 https:\\/\\/t.co\\/MrqMUbG8P6\",\"898\":\"Check her out\\n#Taiwan #Pelosi #China #BigBrother #bigbrother24 https:\\/\\/t.co\\/owN4hSgzG2\",\"899\":\"2\\/2 Tap on this link to register for the webinar for free!\\nhttps:\\/\\/t.co\\/opNxEovc6q\\n\\n#firmusadvisory #easystart #InspiredToDeliverValue #startnowstarteasy #customersatisfaction #businessgrowth #socialmedia #CitiCBS #Pelosi\",\"900\":\"@DayoAmusa I will donate the #20k to a course mate who needs surgery. Anyone who also wish to help can send to the account in the screenshot.#benincitymall. #Pelosi #Taiwan #SpeedDatingWithSelema https:\\/\\/t.co\\/f2CdRuT9tm\",\"901\":\"Dey guided #Pelosi #helicopter #Ukraine https:\\/\\/t.co\\/EhISr3PULD\",\"902\":\"Getting what you go after is called Success but enjoying it while getting it is called happiness.\\n\\n#BBNaija #Taiwan #sabinus #LoveIsland2022\",\"903\":\"What's this? Niger Republic #Niger #Obituary #BeninCityMall #Taiwan #samomatseye https:\\/\\/t.co\\/P62lLRP3fo\",\"904\":\"Collect money at ease on monthly basis when you list your apartments on Rentic.\\n\\nSign up on our bio link to begin today.\\n\\n#renticapartment #lagosbusiness \\n\\n#BBNaija\\u00a0\\u00a0\\u00a0\\u00a0 #BBNajia Obituary Emily Niger Republic Sam Omatseye #Pelosi Amen Tinubu Deji God Abeg Daniella china\\u2019s taiwan https:\\/\\/t.co\\/HMeHrLovHg\",\"905\":\"In a debate between the Enugu state Gubernatorial Candidates: Frank Nweke Jr of Apga, Perter Mbah of PDP and Uche Nnaji of APC, who do you think will win?\\n\\n#Enugu2023 #PeterObi #wike #Taiwan \\n\\n@IamAwesomeJosh @ejykmykel1 @julietkego @Chude__ @flexzyltd\",\"906\":\"Seimens mobile x-ray machines sale.\\nCall (WhatsApp) us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/EiH8c1kCf0\",\"907\":\"CR digitizer machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/xCMNWCnUTt\",\"908\":\"Mobile x-ray machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/g2fU0tPcr9\",\"909\":\"CR digitizer machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/aBCGFemwUN\",\"910\":\"Brand new iPhone 13 pro max available in all GB . \\n\\nAvailable Pick up, delivery , Swaps \\n\\n5, Somoye Osundairo street, off Ola ayeni street . Computer village ,Ikeja Lagos \\nDavido #wizkid Burnaboy Abuja-Kaduna Cubana ASUU Bella #OBIDIENTS Sheggz Money Racism #helicopter #Pelosi https:\\/\\/t.co\\/7Bz4WI63Tr\",\"911\":\"Ultrasound machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/BH4bmjuQyh\",\"912\":\"@carterefe__ @carterefe__ I use your song do video I tag you tire for IG but you no notice me, make I try my luck for here too\\ud83e\\udd32\\ud83e\\udd32 #Carterefe #Machala #Wizkidfc #WizKid\\ud80c\\udcf5 #funnyvideos #lucasdusky #trendingvideos #sabinus #Taiwan https:\\/\\/t.co\\/a4BmMkUray\",\"913\":\"Remarks of \\ud83c\\udde8\\ud83c\\uddf3#Chinese State Councilor and Foreign Minister Wang Yi:\\nhttps:\\/\\/t.co\\/d4Q6tD1tDW\\n#China #Taiwan #USA #Pelosi #OneChina #House #UnitedStates #UnitedNations https:\\/\\/t.co\\/hmoegiq9xp\",\"914\":\"Jae5 ft BNXN ft Dave remix #PeterObi ABEG GOD #Pelosi https:\\/\\/t.co\\/p3ARF0hJXT\",\"915\":\"This!!\\nThe whole reverse psychology!!\\nMan's got over 35k views. The power of copywriting. \\ud83d\\udca5\\ud83d\\udca5\\nImagine the conversions he got from these!! \\n#racism #realhousewivesofabuja #ASUU #Governor #Taiwan #RCCGConvention #Ronaldo #witcher #JARUMA #geralt #Affiliates #Pelo #BeautyWithBrains https:\\/\\/t.co\\/oihYETkxg9\",\"916\":\"BREAKING: U.S Speaker Pelosi departs Taiwan amid Chinese threats, military drills https:\\/\\/t.co\\/uagVKfdbEO\\n#Taiwan #China #Pelosi\",\"917\":\"Friday 5th August @swanskid_ drops #Attention y'all anticipate give this it's a Banger \\ud83d\\udca5\\ud83d\\udca5\\ud83e\\udd42\\ud83d\\udd25. #Knust squad, you people for support your boy @Swanskid_ . We dey need retweet and please share it \\ud83c\\udf8a\\ud83c\\udf89\\ud83d\\ude4f and please follow him.\\n\\n#Taiwan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #helicopter #Pelosi https:\\/\\/t.co\\/VH50Y4pAYn\",\"918\":\"GET UNBEATABLE DISCOUNT on kitchen tools right now. Don't let this opportunity pass you by. \\n\\ud83d\\udc49 https:\\/\\/t.co\\/LE8VV0jLMS \\ud83d\\uded2 \\n#Big_Ivy #ASUU #Phyna_and_Amaka #Big_Bella #Taiwan #Daniella #God_Abeg #Osimhen https:\\/\\/t.co\\/9wplK02TX4\",\"919\":\"Social media is a rented apartment for your business. Let's help you build a secured apartment for your business. Your customers deserves the best shopping experience. \\n#Taiwan \\n#Pelosi \\n#WebsiteDesign \\n#WebsiteBuilder https:\\/\\/t.co\\/GoCuemQe8s\",\"920\":\"Contact: https:\\/\\/t.co\\/fQRKX5Dt5Q\\n#amazon #Taiwan #Pelosi #China #Solana #Amazon #amazonsales #shopifymarketing #wears #Ukraine #shopifytips #Shopify #AmazonAffiliate #affiliateprogram #Affiliates #affiliatemarketing #shopifywebsite #shopifydesign #shopifyexpert\",\"921\":\"Good morning mommas \\ud83e\\udd17\\n\\nHuman hair unit.\\nShe's 28k\\n\\nLet your hair do they talking, show them what you got.\\nAvailable @MonalisNg\\n\\nWe deliver nation wide.\\n.\\n.#Taiwan \\n#SpeedDatingWithSelema \\n#LoveIsland2022 \\n#BBNaijaLevelUp \\n#BBNaija \\n#Slaytheprincess https:\\/\\/t.co\\/eIFdhakjaV\",\"922\":\"These people can't just take half of what they dish out to ordinary Nigerians on daily basis...\\n\\nOsimhen Arise TV Obidient Kwakwanso Tinubu Atiku Wike Osibanjo Amaechi David Hundeyin jaruma racism #RCCGConvention #Pelosi #BBNaija #Taiwan https:\\/\\/t.co\\/RNIQwboUkK\",\"923\":\"Abeg make una help me retweet till @Skiibii sees it,@davido @Olamide @DONJAZZY #sabinus #helicopter #Ukraine #Wizkid #TrendingTopics #Trending #micheal_jackson #Racism #Burna #Taiwan #BBNaija #BBNajiaS7 #Twitter #matic #matiasdelrio #fashion #LoveIsland2022 #music #trendingmusic https:\\/\\/t.co\\/64cx3wVqvf\",\"924\":\"Friday 5th August @Swanskid_ drops #Attention y'all anticipate give this it's a Banger \\ud83d\\udca5\\ud83d\\udca5\\ud83e\\udd42\\ud83d\\udd25\\n\\nShatta Death Toll Prince Yawson #Taiwan #China #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 @kwadwosheldon #BibleBuild #Ukraine #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/zSmQMCzoZO\",\"925\":\"Like for @atiku \\nRetweet for @PeterObi \\nComments for @officialABAT \\n \\nWho's ur presidency.\\nAtikuokowa23 l God abeg l\\nArise TV l Burna l Ibadan \\nDubai l Ronaldo l prince Aso\\n#Wizkid #Pelosi #Taiwan https:\\/\\/t.co\\/v3DBR8PCOb\",\"926\":\"EXCLUSIVE: #PLA Eastern Theater Command organizes actual combat joint #exercises around #Taiwan Island.\\n\\n#China #ChinaTaiwanCrisis #Pelosi \\n\\nVideo Via- CGTN https:\\/\\/t.co\\/gY9D4euHGU\",\"927\":\"MINIONS; THE RISE OF GRU\\nIs out for downloads \\n\\n#Minions2 #Taiwan #China #knust Eric Ofori Antwi Bawumia #CitiCBS frederick asare Mr President Holy Spirit #Sunkwa22 https:\\/\\/t.co\\/vNymkx9byA\",\"928\":\"In Rwanda, public schools are better than private schools by far. Many private schools have closed because of the quality of public schools in the country.\\n#Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #RwandaBirds \\n#helicopter #PeterObiForPresident2023 #Buhari https:\\/\\/t.co\\/o97l2VTsqf\",\"929\":\"#sabinus\\n#helicopter\\n#Pelosi\\n\\n@Montefiore\\n@MontefioreNYC\\n\\nDr. Philip O. Ozuah Donates $1m to University of Ibadan Medical School https:\\/\\/t.co\\/4zqEsOVY8V\",\"930\":\"FEDERAL GOVERNMENT SEEKS COLLECTIVE EFFORTS TO FIGHT INSECURITY\\u00a0\\n\\nhttps:\\/\\/t.co\\/OiH6YOif4U\\n\\n#Hotjist #Hotjistnaija #Insecurity #FederalGovernment \\n\\n#Obituary \\n#Taiwan \\n#DeJong \\n#NigerRepublic \\n#BBNaijaS7\",\"931\":\"Patronize me #Pelosi #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #corset #fashion #fashionblogger #tops #Trending #bbn #fashionstyle https:\\/\\/t.co\\/5uMO3VBzLw\",\"932\":\"Like for Home Alone \\u2764\\ufe0f\\n Or \\nRetweet for Baby Day Out \\nLet know your favorite movie \\n\\nCardi Khalid #helicopter Italy Daniella God Abeg Essence #Wizkid #Pelosi #Taiwan #BBNaija https:\\/\\/t.co\\/2LOHC6yOJF\",\"933\":\"Finally Nancy Pelosi's plane took off from #Taip\\u00e9i Airport Safely. She was supposed to leave on Friday.\\n\\n#USA #China #Taiwan #America #Pelosi https:\\/\\/t.co\\/N7nn8Fz6vq\",\"934\":\"You will get a Professional Brochure Design for your Business \\n#Taiwan #VinScully #Batgirl\\n#Pelosi #Merrifield\\n#padres\\n\\nhttps:\\/\\/t.co\\/bOmdvPOT5P https:\\/\\/t.co\\/X86S5nOBSN\",\"935\":\"Please Save me frm DEPRESSION... I am dying please...My Creditors are after my life\\n\\nPlease come to my aid\\nPlease help me please I beg you with GOD\\n\\nBaba Voss, Niger Republic Obituary\\nSam Omatseye De Jong Taiwan #BBNaijaS7 Emily Emily Leno Rufai\\nGeralt China #Pelosi Tinubu\",\"936\":\"Me Watching People Talking Abou World War 3 #Taiwan #WorldWarIII #WorldWar3 #Obituary https:\\/\\/t.co\\/IYplsoT20R\",\"937\":\"... @OnorSandy for Governor of Cross River State, 2023. \\n@JJarigbe (Mr. Projects) for Senate, Cross River North. \\nBarr. Godwin Offiono for @HouseNGR, Ogoja\\/Yala Federal Constituency \\nPeter Akpanker for HoR OBO Federal Constituency. #Umbrella is the sure bet. \\n\\n#Taiwan #Cucurella https:\\/\\/t.co\\/RoMv1LAzEx\",\"938\":\"Dear Cross Riverians, Make no mistake @OfficialPDPNig is the real deal for 2023. After clueless leadership of the @OfficialAPCNg and @MBuhari , 2023 avail us the opportunity to reposition things for Nigeria and Nigerians. @atiku Presidency is more promising than others\\n\\n#Pelosi https:\\/\\/t.co\\/cp64FzEmdM\",\"939\":\"Pls patronize me o. I sell quality duvets and wall papers. The weather is cold enough you need a duvet\\n\\n#Taiwan #Phyna #BBNaija # https:\\/\\/t.co\\/nXdsbYslPa\",\"940\":\"Countries That Recognize #Taiwan 2022\\n\\nBelize, eSwatini, Guatemala, Haiti, the Holy See (the central administration of the Roman Catholic Church), Honduras, Marshall Islands, Nauru, Palau, Paraguay, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines & Tuvalu. https:\\/\\/t.co\\/rZNuI5h5Ot\",\"941\":\"Please Save me frm DEPRESSION... I am dying please...My Creditors are after my life\\n\\nPlease come to my aid\\nPlease help me please I beg you with GOD\\n\\nBaba Voss, Niger Republic Obituary\\nSam Omatseye De Jong Taiwan #BBNaijaS7 Emily Emily Leno Rufai\\nGeralt China #Pelosi\\nWorld\",\"942\":\"How @SpeakerPelosi was received in #Taiwan even with #China conducting military exercises in the region. Profoundly,#Pelosi hits at critics asking why they did not talk when the men made such similar trips. #ChinaTaiwan\\nhttps:\\/\\/t.co\\/RpW3XLZ6NP\",\"943\":\"Quote from \\ud83c\\udde8\\ud83c\\uddf3#Chinese State Councilor and Foreign Minister Wang Yi:\\n#China #Taiwan https:\\/\\/t.co\\/0Vg5hcq12u\",\"944\":\"Dear Folks, \\n\\nPoverty does not die by fire.\\n\\nBuild a BRAND and sell a PRODUCT.\\n\\nI have nice shoes for sale. \\n\\nDavid Hundeyin\\nArise tv \\nReuben Abati\\nMachala\\n#Taiwan \\n#Pelosi \\n#Solana \\n#China \\n#sabinus \\n#helicopter \\n#BlueJays \\n#Ukraine https:\\/\\/t.co\\/WrVic4OPRi\",\"945\":\"Success \\n#SuccesQuotes #Taiwan #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BibleBuild #NFTCommunity #NFTGiveaways #Pelosi #China #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #LoveIsland2022 #USA #Ukraine #UkraineRussiaWar https:\\/\\/t.co\\/opacZr7G7c\",\"946\":\"Nancy Pelosi departs #Taiwan after her controversial visit to #Taiwan, she was supposed to leave on Friday.\\n\\n#USA #China #Pelosi https:\\/\\/t.co\\/1c7AflzQAb\",\"947\":\"It's a beautiful day\\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70.\\nSlide into my DM and let's deal so that we can make something exactly like this for you. \\n\\nMan utd, DE Jong #Taiwan #China #Wizkid #nerves https:\\/\\/t.co\\/5WfsWNTfQ2\",\"948\":\"Bless your morning\\u2764\\ufe0f.... It's a new month of blessings!!\\n#August2022 #HappyNewMonth #Davido #PeterObiForPresident2023 #China #sabinus #Taiwan https:\\/\\/t.co\\/iyrgkHSvxW\",\"949\":\"Nigeria will send troops to defend Taiwan .\\n\\\"China's Taiwan\\\" #war\\n#Pelosi\\n#Pelosi https:\\/\\/t.co\\/wFSwJE45to\",\"950\":\"The Cough is my forth coming unusual ep. Wait for it!\\n\\n--\\n#china #Taiwan #Pelosi #Solana #sabinus #asuu #BBNaija #TheCough #Newmusic #wizkid #davido #billboard #applemusic https:\\/\\/t.co\\/tVKiTCZMPw\",\"951\":\"Hello I know I said I was back before\\nI'm fully back now.\\nFollow and I'd definitely follow you back.\\n#Taiwan #China #sabinus\",\"952\":\"Samory Toure was the founder of the Wassoulou Empire, which was an Islamic state that is located in present day Guinea. Toure is best remembered for his resistance against French colonial expansion in West Africa. #WWENXT #sabinus #Ukraine #Taiwan https:\\/\\/t.co\\/6kGd3EkX1b\",\"953\":\"Hey y\\u2019all, it\\u2019s been a while I\\u2019ve dropped my personal pictures and videos, so I decided to take a day off posting bout crypto projects \\n#China #Taiwan #Solana #sabinus #helicopter #BibleBuild https:\\/\\/t.co\\/UWvwP9LxNe\",\"954\":\"Nancy's plane will fly in a while from now. waiting for air clearance.\\n\\n#Taiwan #NancyPelosi #Taipei #ChinaTaiwanCrisis #China #pelositaiwan https:\\/\\/t.co\\/CR7C9DFv93\",\"955\":\"Nancy Pelosi is flying from Taiwan to #SouthKorea \\n\\n#Taiwan #China #Pelosi https:\\/\\/t.co\\/xCNhf8f5EP\",\"956\":\"@JeffreyGuterman @PeterObi Please find attached some @PeterObi #PeterObi4President2023 materials for your use, thank you and best regards. #Taiwan #Pelosi #China #Solana #sabinus https:\\/\\/t.co\\/T9QE10b0yh\",\"957\":\"Labour party @NgLabour is now verified on twitter. This shows that we are making progress. God Abeg\\ud83d\\ude4f.\\n#PeterObi4President2023 #PeterObiForPresident2023 #peterobi #LabourParty #davidhundeyin #plateau #helicopter #Osimhen #Tuchel #Taiwan #Pelosi #Solana #sabinus #BlueJays #GodAbeg https:\\/\\/t.co\\/1PxDqmYaXY\",\"958\":\"Last Month's Collection...\\n\\n August discount %.. Get your portraits done at a cheaper rate. WhatsApp @09093869126 or call 08104150260 or send a mail to @egodfred31@gmail.com\\n\\n#art #color #artwork #watercolorart #painting #VisualArt #NFTCommunity #Taiwan #Pelosi #China #Solana https:\\/\\/t.co\\/ESqUhfwge8\",\"959\":\"Taipei - US house of representatives speaker #NancyPelosi to depart from airport.\\n\\n#Taiwan #China #Pelosi #pelositaiwan https:\\/\\/t.co\\/dg9cm1VN2l\",\"960\":\"@dixon_davie They wouldn't dare, bro. Besides, the game of threats and intimidation doesn't faze #Pelosi one bit. \\nTaiwan could bear the brunt of ensuing repercussions but #Pelosi is undoubtedly untouchable.\",\"961\":\"Because the #ministerforsoupaffairs cares deeply about your health...\\nShe's providing good and quality Soup and Stew just for you!\\nOrder now 08142315364(Call\\/WhatsApp)\\n#ministerforsoupaffairs #Pelosi #Stew #eathealthy #HealthyFood #Health https:\\/\\/t.co\\/ZzXoicSwjA\",\"962\":\"I'm alryt too.\\n\\n#Taiwan #sabinus #MentalHealthMatters https:\\/\\/t.co\\/awt1ppOpID\",\"963\":\"Watch this MJ video if you\\u2019re busy comparing someone to @michaeljackson \\n\\nLong live MJ \\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80 #dejong #China #Taiwan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/w65YScUBCN\",\"964\":\"Bandana cover by mozizy,Like comment and repost #LoveIsland2022 #China #Taiwan #Trending #trendingreels #Essence #sabinus #wizkid #helicopter #AllorNothing #GodAbeg #MONEY #BBNaija #Influencer #MondayMotivation #fashion #naijamusic #luxury #explorepage #NowPlaying #ChrisBrown https:\\/\\/t.co\\/NEgkLhxrKk\",\"965\":\"Nigeria still has a market where trade is by barter system but it is about going into extinction due to neglect. Click to read and share.\\n#Taiwan #Pelosi #China #sabinus #helicopter #Ukraine # https:\\/\\/t.co\\/SLBHGR3jvE\",\"966\":\"Funny- Chinese soldiers dance as Nancy Pelosi returns.\\n\\n#Taiwan #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan # https:\\/\\/t.co\\/5UnH7vNTLv\",\"967\":\"Please read and share our report on how Calabar, one of Nigeria's cleanest cities has turned to a huge expanse of open defecation centre. One shame at a time. \\n#Pelosi #sabinus #helicopter #China #OBIdientlyYUSful https:\\/\\/t.co\\/pXP9ujMIMP\",\"968\":\"3 killed in a Chinese Kindergarten #school violence\\n#Pelosi\\n#Taiwan\\nhttps:\\/\\/t.co\\/lPNFb4LFii\",\"969\":\"Take advantage of this free class to end your money troubles.\\n\\n\\ud83d\\udc47Join class\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/UnB0AzoKHG\\n\\n#Taiwan #dejong #nigerrepublic #Obituary #Emily #Rufai https:\\/\\/t.co\\/2ZhUtWf8xb\",\"970\":\"@AT13Oficial \\ud83d\\ude0d\\u263a\\ufe0f\\nWishing you a successful loan spell @SevillaFC_ENG \\u2705\\n#MUFC \\ud83d\\udc4a\\ud83d\\udd34\\ud83d\\udc79 #Taiwan #Pelosi #sabinus https:\\/\\/t.co\\/91z84gia5m\",\"971\":\"*Self care tips: Be mindful of who you allow into your circle. Keep your circle small and your mind at peace. Be mindful of which people's circles you become part of also. Some wolves walk in sheep's clothing.*\\n~Weyacrypto\\n#BTC #Taiwan #Pelosi #Solana\",\"972\":\"We all know that one friend that does this every time !!! #Pelosi https:\\/\\/t.co\\/jNjKO4A0JW\",\"973\":\"Rufai's issue is Settled. \\nHe has apologised on live TV and was also fined by a Court in Lagos. \\n#Rufai #Taiwan #GodAbeg #arisetv #nigerrepublic \\nhttps:\\/\\/t.co\\/hQIkNcxJDz https:\\/\\/t.co\\/s8oGfNaHs6\",\"974\":\"We face a lot just to put food \\ud83e\\udd58 on the table...... this country deserves a better leader. #BBNaija #BBNajiaS7 #Chelsea #Khalid #dejong #Deji #Taiwan #Nigeria\",\"975\":\"Start each day by affirming peaceful, contented and happy attitudes and your day will tend to be pleasant and successful\\nNkrumah\\/ #CitiCBS \\/ #Taiwan \\/ #MichaelJackson\\/ #Bawumia\\/ #Pelosi\",\"976\":\"#Ambazonia: It is time for our leadership to engage with diplomacy with #Somaliland in order to seek help for them to link us with #Taiwan. When this happen Taiwan will recognize Ambazonia and that will be a big diplomatic win for us. @AbdulKarimaliSC @BohHerbert @MariantaNjomia\",\"977\":\"On set #Sweetgirl #Pelosi #Solana #Taiwan #DonBelle #DOB https:\\/\\/t.co\\/okJ4mPo0Zj\",\"978\":\"Does fashion stinks? #EpitomeStores wants to know\\n\\n#Pelosi #helicopter #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #Ukraine #UkraineRussiaWar #kpssdeikincifetoskandali #oesym #Guerrilla1stWin #wednesdaythought #fashionstyle #Viruman #Piastri\",\"979\":\"UNIVERSITY OF IBADAN (UI) PROMISES STUDENTS WITH MARKS BELOW 200 ADMISSION\\n\\nhttps:\\/\\/t.co\\/bOA5eXnBbt\\n\\n#Hotjist #Hotjistnaija #UniversityOfIbadan #Admission \\n\\n#Obituary \\n#SamOmatseye \\n#Taiwan \\n#BBNaijaS7 \\n#Leno\",\"980\":\"Too early for this abeg \\ud83d\\ude02 \\n\\nIbadan #BBNajiaS7 #Rufai #Taiwan #MichaelJackson #davidhundeyin she\\u2019s 40 #Khalid https:\\/\\/t.co\\/PyNUmil5YE\",\"981\":\"I know say life hard, but take am easy. \\n\\n#lifequotes #Taiwan #OBIdient2023 https:\\/\\/t.co\\/Cync8O1w12\",\"982\":\"China nears a war situation with Taiwan, as Chinese military breach their territory..sources say. The global economic implications could be huge. #UkraineRussiaWar #ChinaTaiwanCrisis @bftghana @Verheul_Jeroen\",\"983\":\"Who dey follow who??\\n#Taiwan https:\\/\\/t.co\\/Q5tlxYu3Bj\",\"984\":\"I pray we all receive a phone \\ud83d\\udcf1 call that we change our life's for good like the way OBO change @Dremodrizzy life \\ud83e\\udd0d\\ud83e\\udd0d\\ud83e\\udd0d\\ud83e\\udd0d #Taiwan #Davido #WednesdayMotivation https:\\/\\/t.co\\/DyHldauMMV\",\"985\":\"Niger Republic Obituary Emily Sam Omatseye Taiwan #sabinus Leno Brighton China #Pelosi Tinubu Amen #helicopter She's 40vChelsea #wonderqoute https:\\/\\/t.co\\/ovHXa0hzlB\",\"986\":\"We'vegot better stuff to do and @NAkufoAddo is still battling with entitlement and e-slavery tax.\\nNigga, Grow up.\\nWhy did President Nkrumah go to Hanoi? A proactive President participates in achieving World peace not demanding 'lazy' money.\\n \\nReparations #ChinaTaiwan #KNUST https:\\/\\/t.co\\/A28ZFjx7fh\",\"987\":\"E reach my turn to do laundry the earth moved away from the sun \\ud83c\\udf1e\\ud83e\\udd7a. #BBNaija #Taiwan\",\"988\":\"#DirtyNancy as @POTUS45 used to call Nancy #Pelosi. Does someone remember that, is she dirty or clean? prove Donald #Trump wrong...\",\"989\":\"Taiwan's armed forces to China: \\\"We are not eager for a fight, nor will we shy away from one.\\\"\\n\\n#Taiwan #China #pelositaiwan #Pelosi #ChinaTaiwanCrisis https:\\/\\/t.co\\/FoQKyOEd9r\",\"990\":\"Why We Dey Vote? EP2 \\nThe six important human rights you go need to consider before you vote.\\nLink for full video: https:\\/\\/t.co\\/WOaKtGkKsD\\nTrend tags (pls retweet.)\\nNiger Republic Nnamdi Kanu Sam Omatseye She's 40 Jaruma Peter Obi #Obidatti2023 #Taiwan Datti #NigeriaDecides2023 https:\\/\\/t.co\\/L1J8YWRhY5\",\"991\":\"You don't have to be a millionaire to change a life. Even the simplest act of generosity can go a long way in bringing relief to a broken heart.\\n\\n| Sam omatseye | #China | she's a 40 | #Taiwan | Rufai | Nkem Owoh | Modella | #BBNaijaS7 | #Sabinus | khalid\",\"992\":\"New footage of Chinese Military #drilling in the Taiwan Strait.\\n\\n#Taiwan #China #Pelosi #pelositaiwan https:\\/\\/t.co\\/xABIkq4zud\",\"993\":\"Send us a DM today to get started.\\ud83d\\udc4d\\ud83c\\udffe\\n#Pelosi #Khalid \\n#audacity #wednesday #memes #bananaisland #realestate #property #landsinlagos #landsinibadan #lekki #epe #audaciaprimerealty\",\"994\":\"Order for your customized CONVENTION t shirts today and get it delivered to your door step in 2days.\\n#Taiwan #BibleBuild #sabinus #Wizkid #Obidatti2023 #naughy #Essence #omatseye #Tinubu https:\\/\\/t.co\\/1jI8BGtAOK\",\"995\":\"America politicians have zero integrity and ethics. The world must be careful how they want to deal with the country. What they said and do are two different things. They cannot not be TRUSTED!\\n#OneChina \\n#OneChinaPolicy \\n#OneChinaPrinciple \\n#Taiwan\",\"996\":\"Chinese state media reporting visuals of how #China may destabilizing the region with military actions due to visit of US house speaker #Pelosi to #Taiwan as part of normal democratic engagement between 2 countries. https:\\/\\/t.co\\/uWbWNr9sVl\",\"997\":\"I made this post in march 2022 and it's beginning to become even clearer from here! Pray people pray\\n#Taiwan #Pelosi #Ukraine #bread #Jungkook https:\\/\\/t.co\\/5FPEyppr3w\",\"998\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/GBrgjulvEy\",\"999\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/D2mWMiFPdB\",\"1000\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/pDyetVMxPe\",\"1001\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/Db8KAoBCa0\",\"1002\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/cJKMI6dV2E\",\"1003\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/nELAMJq4aT\",\"1004\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/7spSTcsOvF\",\"1005\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/1Wd4CxaVCP\",\"1006\":\"#Pelosi of #US has NOT come in peace in #TaiwanIsNotChina #TaiwanStraitsCrisis. US wants to see China and Russia fall and is ready to start a war outside of US and destroy others' nation serving a battle ground against Chino-Russia! may US accept the fate when separatism is home\",\"1007\":\"It helps you relax your mind and soul and reduces your chance of falling ill.\\n\\n\\ud83e\\udd17Today, make a date to visit the spa not as a luxury, but as a necessity for your body.\\n\\n#nectarbeauty #Taiwan #Pelosi #Solana #Jungkook #BlueJays #BibleBuild #LoveIsland2022\",\"1008\":\"Let\\u2019s get it \\ud83d\\udcf8\\ud83d\\udcf8 Active always \\n\\n#Pelosi #BBNaija7 #LoveIsland2022 #Beyonce #julydump #BBNaija https:\\/\\/t.co\\/MElRLNOy44\",\"1009\":\"#US light the fire in #Ukraine against #Russia by ill-advising #Zelensky into war support. now same #US is lighting another fire in #Taiwan against #China . Proxy-War is exposing the blamers of #Putin who had invaded other nations and destabilizing fast growing economies.\",\"1010\":\"Fellow Nigerians, let's SEET for @atiku as President come 2023.\\nSEET means:\\nS - Security\\nE - Education\\nE- Economy\\nT - True Federalism.\\nAs one we can get it done.\\n\\n@OfficialPDPNig @IAOkowa @Ecowas4atiku23\\n#Pelosi \\n#BBNaijaS7 \\n#BBNaija \\n#Chelsea \\n#AtikuOkowa2023 \\n#Tinubu https:\\/\\/t.co\\/tj6Iz3obts\",\"1011\":\"@OjaDaddy7 ft @Se_unofficial official video for the tune TOXIC is out,Tell a friend to tell a Friend,Video banging hot \\ud83e\\udd75 click on link to watch https:\\/\\/t.co\\/S7kMwohQM4\\n\\n#ToxicByOjaDaddy #Pelosi #helicopter #LoveIsland2022 https:\\/\\/t.co\\/7y4Kb7qmrv\",\"1012\":\"Let me source that mineral for you.\\n@MineralSorcerer is your go-to person.\\nLepidolite site. Available in commercial quantities with analysis report.\\n#Pelosi #UkraineRussiaWar #ChinaTaiwan #AbujaTwitterCommunity #abujaRTBOT #Chelsea #ASUU https:\\/\\/t.co\\/tP7gEqnV9g\",\"1013\":\"The greatest asset is the Mind. #writerscommunity #Pelosi #helicopter #iamwriting\",\"1014\":\"China has repeatedly warned on how egregious the nature of the visit and how serious the consequences could be.But #Pelosi turned a deaf ear, neither did Washington take effective measures to stop it, which triggered a new round of tension and severe challenges across the straits https:\\/\\/t.co\\/mn7ZA7TbpO\",\"1015\":\"Long distance relationships works as long as the four of u are happy \\n\\ud83e\\udd23 #Niger #oesym #famemma15 #Pelosi #relationships\",\"1016\":\"God's grace is IMMEASURABLE, his mercy is INEXHASUSTIBLE, his peace is INEXPRESSIBLE. Every praise be to our God of all comfort.\\nGood morning \\ud83d\\ude0d\\n\\n#Pelosi \\n#PeterObi2023 \\n#wcw\\n#asuu \\n#Ukraine \\n#chiomaonyekwere \\n#GoldMedal https:\\/\\/t.co\\/PWYGApAmQx\",\"1017\":\"Foreign used \\nFord Explorer 2013 Sport\\nAccident free \\nUntouched \\nPrice: 8.5m\\nOpen for conversation \\n#Taiwan #Pelosi #wike #MONEY #Ukraine https:\\/\\/t.co\\/DnbCkbojsl\",\"1018\":\"You could earn extra income when you list your vacant space on our platform.\\nCreate an account for free today on https:\\/\\/t.co\\/OTHPfDhA0A\\n\\n#BBNaija\\u00a0\\u00a0\\u00a0\\u00a0 #BBNajia She's 40 Khalid Obituary Emily Niger Republic Sam Omatseye Tinubu #Pelosi Amen Saheed Balogun Tinubu https:\\/\\/t.co\\/2zQh46RCfU\",\"1019\":\"AVATAR (the last airbender) #Machala #Pelosi https:\\/\\/t.co\\/A5RIiMeVU0\",\"1020\":\"You needa service? We find it for you at no cost with just a DM. Easy and convenient #helicopter #WWIII #ASUUStrikeUpdate https:\\/\\/t.co\\/gWlbMkTYBc\",\"1021\":\"China\\u2019s drills violates our sovereignty, amounts to air and sea blockade \\u2013 Taiwan\\u2019s defence ministry https:\\/\\/t.co\\/J8wIhsxckV\\n#Taiwan #China #Pelosi\",\"1022\":\"\\u201cSometimes the questions are complicated and the answers are simple.\\u201d \\n\\nNaughty || Niger Republic || Khalid || #Pelosi\",\"1023\":\"Remember the strength of every bond is in the little things we do to show how much we care. \\n\\nOrder here https:\\/\\/t.co\\/yFlgAbP7Ot\\n\\n#EndSarsNow \\n#surprise \\n#cakes \\n#RedVelvet \\n#Pelosi \\n#PeterObiForPresident2023 https:\\/\\/t.co\\/yQCdyCX3NF\",\"1024\":\"It\\u2019s Wednesday! #WIN \\ud83d\\udcaa\\ud83c\\udffe\\n#yellowTux \\ud83e\\udd35\\u200d\\u2642\\ufe0f\\n\\n#BBNajiaS7 #Bestfit #Pelosi #LoveIsland2022 https:\\/\\/t.co\\/IjwqYpiRBY\",\"1025\":\"Political apathy is never a character found in those who want a better society\\nI hope we all get to use our PVC to vote for a competent candidate\\nArise Oh Compatriots!\\n#2023Elections #NigeriaDecides2023 #Pelosi https:\\/\\/t.co\\/2cCusH98nf\",\"1026\":\"Good morning world\\n\\n\\\"You are to Good to be left behind\\\"\\n\\n#Pelosi #helicopter #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"1027\":\"We render Shortlet services in Lagos Nigeria \\nClass : Luxury\\n\\u2705 Available for shoot\\n\\u2705 Smart TV \\ud83d\\udcfa \\n\\u270524\\/7 Electricity \\ud83c\\udf09\\n\\u2705 Top Notch Security \\ud83d\\udc6e\\u200d\\u2640\\ufe0f \\n\\u2705DSTV \\ud83d\\udce1\\n\\u2705WiFi \\ud83d\\udcf6\\nCall\\/Watshapp:-+2348137623065\\n\\n#sabinus #Bread #Hermes #obituaries #Ramsdale #China #Pelosi #helicopter #Messi\\ud80c\\udcf5 https:\\/\\/t.co\\/vrGvaoP6W1\",\"1028\":\"Reno how market? So after foolishly trying to use Bbn to distract us you ended up being distracted. Mind you this movement is more than a tsunami and not can stop it!! #Datti #saraki Saraki Jaruma Niger Republic #sabinus #BBNaija #Pelosi https:\\/\\/t.co\\/05qgfyGbKI\",\"1029\":\"Joint LIMOSIRIS today for cheap and affordable prices.. #Khalid #Taiwan #Nigerrepublic #Ebubeagu #sabinus #NNPC #Jubril #welcometochelsea #shes40 #Jaruma #Daniella #obituaries #2Naira #EmmanuelUmoh #BeautyWithBrains #Asaba #Shameless #Wizkid #caterefe #Machala https:\\/\\/t.co\\/kwr5SYLOaz\",\"1030\":\"Amazing Art really story\\n\\n He Designed his girlfriend because he is love her so much as museum chair have u ever seen like this.\\n#2Naira #Buhari #Racism #Nigerrepublic #Jaruma #datti #sabinus #ChinaTaiwan https:\\/\\/t.co\\/B1ILEk1MbJ\",\"1031\":\"Small data that I asked for ooh\\ud83d\\ude02\\ud83d\\ude02\\n@Yhudiee8 won\\u2019t just let lines go\\ud83d\\ude02\\ud83d\\ude2d\\n\\n#Pelosi #BlueJays #LoveIsland2022 #oesym https:\\/\\/t.co\\/cnV6ldQ2ua\",\"1032\":\"Make the most out of your stay\\ud83e\\udd42\\n\\nPlease, call 0909 002 4813 or visit our website to see the different packages we have for you. The link is in our bio.\\n\\n#classsuites #hotelsandapartmentsinlagos #apartmentsinlagos #LoveIsland2022 #hotelsinnigeria #accomodationinlagos #Pelosi https:\\/\\/t.co\\/pOOwEAlBEc\",\"1033\":\"#Flashback Wednesday:\\nSome of us learn to walk in those good old days in this manner. If you experienced this retweet or like!\\n\\nJaruma \\u2022 Bread \\u2022 Real Housewives of Abuja \\u2022 Phyna and Amaka \\u2022 She\\u2019s 40 \\u2022 Khalid #Pelosi #BBNaija #BBNajiaS7 https:\\/\\/t.co\\/EUng3m4l60\",\"1034\":\"This is how I sleep now\\ud83d\\ude44\\ud83d\\ude44\\nMake one girl no con burn me for house\\ud83e\\udd23\\ud83d\\udc94\\n\\n#sabinus \\n#Badminton \\n#Pelosi https:\\/\\/t.co\\/pCuQbu6Ysx\",\"1035\":\"We can not afford to continue like this ooooo. \\n\\nVote wisely. Vote to retire APC PDP old men and women. \\n\\nVOTE PETER OBI FOR PRESIDENT\\n\\n#Pelosi #helicopter # https:\\/\\/t.co\\/R1s7OnW7dm\",\"1036\":\"Book a ride with us @Limosiris1\\u2026also become a driver and get so many mouth watering benefits #BBNajiaS7 #Pelosi #China #Tielemans #Fulani #ASUU #Roma #shes40 #wordwarIII #Naughty #Cubana #racism #OKOWA #welcometochelsea #Emerson #Bokoharam #Taiwanchina #Taiwan #BBNajia https:\\/\\/t.co\\/svknsySMh6\",\"1037\":\"Under the influence of my own #Amapiano #Pelosi #WonderWoman https:\\/\\/t.co\\/xRALFAqC3I\",\"1038\":\"@burnaboy goodmorning...let me bring this image to your screen again #shortfilm #found #festivals #award #taiwan #portable #china #khalid #asuu #WorldWarIII #shes40 #sudan #brighton #sabinus #wizkid #machala #carterefe #davido #tinubu #obituary #datti #BurnaBoy #Modella #BBNaija #Amaka https:\\/\\/t.co\\/DWwoN9Sc4V\",\"1039\":\"After months and months of countdown. \\nIt all comes down to this.\\n\\nMaximum Joy Foundation golf tournament and official launching\\n \\n1 DAY MORE, AKA DA BAAKO \\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa \\n\\nBok Nam Kim golf course are you ready\\n\\n#China #Pelosi #Reparations #Taiwan #Heartsofoak https:\\/\\/t.co\\/dzITwqWjp7\",\"1040\":\"Hello guys, good morning, I am an OAP, voice actor, music producer and copywriter. Kindly retweet this, you could help me pay my bills this week. Here\\u2019s one of my recent jobs. I make original music for all my jobs to avoid copyright issues. #Pelosi #voiceactor #voiceover https:\\/\\/t.co\\/bN4xCQw4No\",\"1041\":\"You ve not tasted this wine , you are really missing a lot.\\nSomerset Wine from cape town.\\nBehold our brand Ambassador Igwe 2pac.\\nWe have lady (blush) somerset champagne and Lord (red wine) somerset .\\nFor Inquiries call :08143989513\\n\\n#BBNajia ASUU #Pelosi #thiefnubu https:\\/\\/t.co\\/7FooxwIVkO\",\"1042\":\"Breaking: A Lagos based journalist was caught sexually molesting a goat. Details shortly....\\nSam Omatseye\\n#Pelosi\\n#Taiwan\\n# https:\\/\\/t.co\\/1VYFNTg3hP\",\"1043\":\"Is Taiwan a part of China? A short history of Taiwan https:\\/\\/t.co\\/D5JkwYXMuh\\n#Taiwan #China #Pelosi\",\"1044\":\"Y\\u2019all should be listening to this\\uff01\\ud83d\\udd25\\ud83d\\udea8@ #Taiwan https:\\/\\/t.co\\/ry22NVKkUJ\",\"1045\":\"NEW TYPE BEAT \\n\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #BadDecisionsTrailer1 #BlueJays #helicopter #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BadmintonMalaysia #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #MONEY #UkraineRussiaWar #kpssdeikincifetoskandali #Wizkid #SABCNews #sabinus https:\\/\\/t.co\\/bINlXjK7kw\",\"1046\":\"For a better NIGERIA you and me dream of.\\n\\n#Yorubas #samomatseye #Taiwan\\n#sabinus #Datti #Obidatti2023 https:\\/\\/t.co\\/dPgOSI5xlD\",\"1047\":\"The damage @MBuhari has caused to Nigeria will take a century to recover from. Borrowed money to dash Afghanistan, built rail track for Niger and now sponsoring their govt. Who we offend?\\nNiger republic Saraki #Pelosi #Taiwan\",\"1048\":\"thought I was in the beach chilling, until I woke up\\ud83d\\ude33\\n\\n#BlueJays #Taiwan #goodmorning #wednesdaythought #MONEY #UkraineRussiaWar #BadmintonMalaysia https:\\/\\/t.co\\/00jFWrl2SL\",\"1049\":\"Aughhhhh\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\nThis verse hits Different on a bottle of Henny \\ud83e\\udd43 listen to full song here https:\\/\\/t.co\\/XxPcFL25r1\\n\\n#wednesdaythought #WednesdayMotivation \\n#BadDecisionsTrailer1 #China #Taiwan #NewMusic #MONEY #BlueJays #Ukraine #Pelosi #hiphopculture #Nigerianmusic https:\\/\\/t.co\\/GCVr1rxFO5\",\"1050\":\"Nigeria Is At a Cross Road And The Choice That Lay Before Us Is To Either Continue On a Path That Brought Us To This Fruitless Point \\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #CORxFLA #Pelosi #China #kpssdeikincifetoskandali #\\u062d\\u0645\\u062f\\u0627\\u0644\\u0644\\u0647 #MAIDinMALACANANG https:\\/\\/t.co\\/QYu1R1lLjy\",\"1051\":\"Residential design: 4 units of 2 bedroom ensuite apartments.\\n\\nLocation: Ogun State, Nigeria.\\n\\nConsultant: Gbenga Adene and Associates \\n\\n#architecture #construction #Taiwan \\n\\nKindly retweet \\ud83d\\ude4f https:\\/\\/t.co\\/iBJGDUp0bv\",\"1052\":\"FOR SALE\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\n\\nSpacious 5 Bedroom Fully Detached Duplex\\n\\nLOCATION: \\ud83d\\udccdOrchid, Lekki\\n\\nPRICE\\ud83d\\udccc: 125million\\n\\nFOR MORE ENQUIRIES\\/INSPECTION\\nKINDLY \\u260e\\ufe0f SAID OR DM : +2348147079900\\n\\ud83d\\udce7: info@tariqproperties.com.ng\\n#Taiwan #China #BadDecisionsTrailer1 #helicopter https:\\/\\/t.co\\/BXH2s1EcF2\",\"1053\":\"Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration!\\n#BigThingsComingThrough #Pelosi #august #AugustWish\",\"1054\":\"\\ud83c\\udfdf Riga FC vs Gil Vicente\\n\\u23f0 18:00\\n#UECLQualification\\n\\nSkonto stadions will host tonight\\u2019s Conference League qualifier between Riga @ 3.36 and Gil Vicente @ 2.10.\\n\\n\\ud83d\\udcf6 Double Chance \\u2705 1.30\\n\\nGet involved here \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #BoostedOdds #HighestOdds #Taiwan https:\\/\\/t.co\\/te9gZGngXO\",\"1055\":\"Pastor Paul Eneche declared full support for Labour Party presidential candidate Peter Obi #BlueJays\\n#China Watch #Pelosi subscribe #MONEY\\n\\nhttps:\\/\\/t.co\\/5xpaEHg8ce\",\"1056\":\"Don't look for a virgin as a wife, Get a woman with good manners. Virginity ends in one night but good manners last forever. #Taiwan #Niger Republic #Emily\",\"1057\":\"We build beautiful and sustainable structures. \\n#structures #build #Pelosi #lagos #nigeria #lekki #construction #build #projects https:\\/\\/t.co\\/pCr4hW9X7X\",\"1058\":\"I just say make I motivate person today\\nY'all Good morning \\n#Taiwan #Pelosi #kpssdeikincifetoskandali #BBNajia https:\\/\\/t.co\\/EK0Gc5UCOx\",\"1059\":\"Nigeria is when the system favour you, its right, but when it doesn't, its totally the worst govt.#government #Taiwan #BadDecisionsTrailer1 #EndSARS #NigeriaDecides2023 #vote #BBNaija\",\"1060\":\"\\ud83c\\uddea\\ud83c\\uddfa Bodo\\/Glimt vs FK Zalgiris\\n\\u23f0 17:00\\n#UCLQualifiers \\n\\nBodo\\/Glimt\\u00a0and\\u00a0FK Zalgiris\\u00a0continue their pursuit of a place in the\\u00a0Champions League\\u00a0group stage tonight.\\n\\n\\ud83d\\udcf6 Away Team To Score (Yes) \\u2705 1.84\\n\\nBoosted Odds \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #MONEY #Taiwan #HighestOdds https:\\/\\/t.co\\/026mVX7MRE\",\"1061\":\"What a smart move @BEEJAYSPECIAL_C @Sabinus1_ @mrmacaronii @yabaleftonline #2naira #shes40 #sabinus Niger Republic #Osuofia #Pelosi #CloserWithDonBelle #ASUU https:\\/\\/t.co\\/PtDVpyIb3c\",\"1062\":\"I cannot categorically understand how #US neocons warmongers can protect #Taiwan from #China imminent invasion. They crossed the redline intentionally now must face the consequences \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\",\"1063\":\"YOUR PROBLEM IS NOT THE PROBLEM, YOUR REACTION IS THE PROBLEM #Pelosi #China #MONEY #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/ApThT4W86Q\",\"1064\":\"I'm working so hard these days on projects that may not work out \\ud83d\\ude2d life hard...\\n#Live #Taiwan\",\"1065\":\"Music and Art are therapeutic, hence I merged the idea and created an #NFT piece. I will be very happy to have a kind person collect this art\\ud83e\\udd70.\\n\\n#Pelosi #NFTcollections #NFTCommmunity\\n#nftcollector\\nhttps:\\/\\/t.co\\/0L9xVWRVfW via @opensea https:\\/\\/t.co\\/uFYpJZTqZn\",\"1066\":\"Olamide's record label, YBNL, is the best in Africa.\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #MONEY #BBNaija https:\\/\\/t.co\\/p19mVRa2AF\",\"1067\":\"\\\"I don't know if I can marry again... I like my space. Before I had to tone down my craze small... I don't think I'm gonna ever marry again in my life.\\\" - Korra Obidi.\\nNigerian dancer Korra Obidi says she might never marry again after her failed marriage. #Taiwan #Pelosi #BBNajia https:\\/\\/t.co\\/3NV2jjlWqk\",\"1068\":\"Israel DMW and 'My Oga' chilling in Accra Ghana!\\n\\nDavido always taking his people along\\ud83e\\udd70\\n\\n\\ud83d\\udcf8: @isrealdmw \\n#Taiwan #Pelosi #China #CloserWithDonBelle #BBNaija https:\\/\\/t.co\\/HcavykGv4z\",\"1069\":\"\\\"Price of daily bread don rise.\\\" - Timaya\\n\\nPapichulo shares a major concern affecting Nigerians!\\n\\nHow una dey cope?\\n\\n\\ud83d\\udcf8: @timayatimaya \\n#Taiwan #Pelosi #China #helicopter #BBNaija https:\\/\\/t.co\\/nIr7rFMsXP\",\"1070\":\"Mr Ibu's wife starts a search for her father! \\n\\nHer mother is late, she's never met her father and would love to meet him someday.\\n\\nThe role of fathers in our lives can't be overemphasized.\\n\\nMay God grant her heart desires\\ud83d\\ude4f\\n#Taiwan #Pelosi #China #MONEY https:\\/\\/t.co\\/BtUY195DPp\",\"1071\":\"SUMMER TIME \\u23f0 \\n\\nAt the beach, life is different. Time doesn\\u2019t move hour to hour but mood to moment. #Taiwan #Pelosi #China #helicopter #HelicopterCrash #BBNaija #BBNaija7 #LALISA #adventure https:\\/\\/t.co\\/Mc7MtdXw7X\",\"1072\":\"My people here we come. 2023 no be play #Taiwan #China #EndAsuuStrikeNow #Buhari #GoodGovernance https:\\/\\/t.co\\/0TNrKS9IkU\",\"1073\":\"Cum\\ud83d\\udca6in her when she's on Top,& she won't get pregnant\\n\\nWhy:\\u201cGravity\\u201dBro\\ud83d\\ude39\\n\\n#FalzKneeDown #Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #CloserWithDonBelle #MONEY #Ukraine #sabinus\",\"1074\":\"Nigeria must be better with Peter obi #OBIDIENT #Taiwan #CloserWithDonBelle #PeterObiForPresident2023 https:\\/\\/t.co\\/XpJ4IMt8Ke\",\"1075\":\"Body mechanics animation test. #Taiwan #China #anime #animation #lookdev #3d #3Danimation #autodesk https:\\/\\/t.co\\/w9hnwCxg17\",\"1076\":\"This is terrible and to say we have a national assembly that allows anything is even worse.\\nNigeria Republic #Taiwan #NancyPelosi #JusticeForAlikaOgorchukwu #ChelseaFC #PeterObiForPresident2023 #Obidatti2023 https:\\/\\/t.co\\/a0j6A1nMAQ\",\"1077\":\"@SpeakerPelosi's visit to #Taiwan is more for her own interests than anything else since her Husband Paul Pelosi has business in Taiwan...\\n\\nBy the way there are demonstrations in Taiwan for the arrival of #pelositaiwan they want him to leave...\",\"1078\":\"God has done it again,I woke up strong and Healthy \\nGod did\\n@djkhaled #GODDID #Taiwan #China @PastorEAAdeboye @endsarsbot_ #EndSARS p\",\"1079\":\"Which Kind BIG BROTHER Be This One?\\n\\n#Pelosi \\n#BBNaija https:\\/\\/t.co\\/yPLk1iZ8xb\",\"1080\":\"Putting A Smile On Strangers Face Part 2 \\u2764\\ufe0f\\ud83d\\udcaa.\\n\\n#Popular\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #CloserWithDonBelle #helicopter #MONEY #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #Ukraine #kpssdeikincifetoskandali #NancyPelosi #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #mbstorm #sabinus https:\\/\\/t.co\\/PX6DaVUJWp\",\"1081\":\"Today morning near the industrial area in Tainan, #Taiwan, a large number of helicopters seen flying over the city.\\n\\n#China #Pelosi #pelositaiwan https:\\/\\/t.co\\/wVaAVdwSYq\",\"1082\":\"Preeq \\ud83c\\udf46Wake Up Wake Up\\n\\nCollect Your Kpekus Collect Your Kpekus\\n\\nUna Good Morning\\u2764\\ufe0f\\u263a\\ufe0f \\n\\n#sabinus #Jaruma #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Pelosi #LALISA #CloserWithDonBelle #helicopter #MONEY #Ukraine #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #mbstorm #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"1083\":\"@Neatioking @neat_io Now is the time to buy $neat before the price skyrocket. Grab the opportunity now #NEAT #cryptocurrency #Pelosi\",\"1084\":\"@TECNOMobileNG How do you plan making legit extra money in Nigeria?! You can be a volunteer fundraiser with Humanaidng by signing up at https:\\/\\/t.co\\/TZulVTSfrW. #MONEY #parttimejob #womenempowerment #Pelosi #LALISA #CloserWithDonBelle #Ukraine #mbstorm https:\\/\\/t.co\\/qIoG1x8dre\",\"1085\":\"GYB Model Science Sch Adankolo delivered. GYB Model Science Sch Ogaminana to follow, then GYB Model Science Sch Isanlu and Anyigba for the 1ST phase. @OfficialGYBKogi #Taiwan #Obituary #samomatseye #China @OvieNews #speedDatingwithSelema #Pelosi #Education #UNICE https:\\/\\/t.co\\/48GopfIQ7l\",\"1086\":\"Reports - \\n\\nPRC coastline in #Fujian lit up with anti-aircraft fire as the #PLA carries out #drills in the proximity of #Taiwan\\n\\n#China #Pelosi #pelositaiwan https:\\/\\/t.co\\/Qb10wIRB3M\",\"1087\":\"Help spread the gospel, nothing is too great or small. #gospel #WordPress #stevey #asia #Taiwan\\n#China\\n#Ukraine\\n@nathanielblow \\nhttps:\\/\\/t.co\\/idG7fjpya1 https:\\/\\/t.co\\/Hu0fPeWVzN\",\"1088\":\"Thank you for your anonymous donations to support Blockchain Central\\n \\n#Coinbase\\n#trustwalletpizza #nsfwtwt #Pelosi #Taiwan #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #BadmintonMalaysia #JacksonWang #NancyPelosi #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #cryptomarket #NFTs #blockchain\",\"1089\":\"China has released footage of drills and training to mark 95 years of its military, the People's Liberation Army.\\n\\n#China #Taiwan #pelositaiwan #Pelosi #ChinaTaiwanConflict https:\\/\\/t.co\\/mUSyx7YyU8\",\"1090\":\"Good morning \\u2763\\ufe0f\\u2763\\ufe0f\\n#China #Pelosi #Asake #goodmorning https:\\/\\/t.co\\/uCudsKYuHQ\",\"1091\":\"How to handle co-leading singing session in live Performances or in the studio\\n-Timing & interpretation\\n-Find duet points\\n-Do call &response in Addlibs\\n-Do complimenting range output\\n-lead when the other follow, vice versa\\n#Taiwan #Pelosi #China #MONEY #Ukraine #wednesdaythought https:\\/\\/t.co\\/KCCNsnv0Bv\",\"1092\":\"There's never a perfect time to get things done. Just do it. Start now!\\n\\n#WednesdayMotivation\\n#China #Pelosi #Taiwan #snackstime #peanutburger #greatpeanuts https:\\/\\/t.co\\/h8OpDyPKzx\",\"1093\":\"Thousands of human beings will be created by the Chinese Government. \\nThey were not conceived by copulation. They will have flesh & blood; they can talk and reason.\\n\\nThey will be sent to #Taiwan as a soldiers! #taiwanwars\\n\\nThis will happen \\ud83d\\udccc\",\"1094\":\"Coconut head generation\\n#Taiwan #Pelosi #China #welcometochelsea #jaruma https:\\/\\/t.co\\/EDUnzkz6ar\",\"1095\":\"R.I.P. OBITUARY. Sam Omatseye a mumu at 61 is a mumulism forever- Wike. Brown envelope journalist part of Nigeria problems we shall eradicate them all #PeterObiForPresident2023 #BBNaija #Rufai #China #Taiwan #Nigeria https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"1096\":\"@DJ_TUNEZ @wandecoal Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1097\":\"@Badboytimz Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1098\":\"@Halcy1023 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1099\":\"@dennisblessed42 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1100\":\"@zeenatmikail2 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1101\":\"\\ud83d\\udde8\\ufe0f The joy of the Lord is our strength \\u2764\\ufe0f\\ud83d\\ude4f\\ud83c\\udffd\\n\\ud83c\\udfac Mike Todd | IG\\n______________________________\\n\\ud83d\\udd34 Follow @gospelempiregh \\n______________________________\\n#GospelEmpireGh #StrictlyGospel #Pelosi\\n#China #LALISA #TUINUANE #NancyPelosi #kpssdeikincifetoskandali #Vanakkam_Modi #Jesus https:\\/\\/t.co\\/SZoWb3ncZR\",\"1102\":\"Meanwhile in #Taiwan \\n\\n#Taipei #Pelosi #China https:\\/\\/t.co\\/qKQVzBdYm4\",\"1103\":\"@KAFTAN_TV Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1104\":\"@ShehuSani Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1105\":\"@RealMrumaDrive Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1106\":\"@HenshawKate Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1107\":\"@Sabinus1_ Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1108\":\"@ManUtd Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1109\":\"@bbchausa Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1110\":\"@DerekJGrossman Am calling it contextual democracy #US #Pelosi\",\"1111\":\"\\\"Family is everything\\\". Well, not in all cases. It is only Jesus Christ that is everything in all cases or situations. So, I prefer Jesus Christ to be everything to me than family because he is consistent in all his ways.\\n#HelicopterCrash #Taiwan #Pelosi #BadmintonMalaysia\",\"1112\":\"@Arsenal Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1113\":\"Life \\ud83c\\udf3b #TrendingNow #model #Taiwan #viral #fyp #grateful #extraordinary #agency #modelingagency #amirate #arabemirate #airhostess #airlines #obident #love https:\\/\\/t.co\\/mroIj14ie6\",\"1114\":\"Ekaro ooo, eyin ara Twitter. \\n\\nRep your own.\\n\\nProudly #OndoEkitiboy \\ud83e\\udd70\\u2764\\ud83e\\udd70\\n\\n#Taiwan #Nigeria #Wizkidfc #African #ibile #Depay #DJKhaled #Taiwan #China #Pelosi #LALISA #WWERaw https:\\/\\/t.co\\/gb3t8xLJMa\",\"1115\":\"@dawisu @MBuhari Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"1116\":\"@DrOlusesan Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"1117\":\"@IAmENISA Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"1118\":\"@UmmyAbdullahi Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"1119\":\"@DavidHundeyin @WestAfricaWeek @MBuhari Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"1120\":\"Some girls Cry \\ud83e\\udd9a\\nSome girls Ride \\ud83d\\ude0e\\n\\n#NancyPelosi \\n#Pelosi \\n#WWERaw \\n#BurnaBoy\",\"1121\":\"@capitalcom Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"1122\":\"@vanguardngrnews Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZEd7\",\"1123\":\"@UBAGroup Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"1124\":\"Lady Gets The Attention Of Netizens; Which Kind Of Exercise Is This? (VIDEO) \\ud83d\\ude33\\ud83d\\ude33\\ud83d\\ude33\\n\\n#Taiwan #Pelosi #China #LALISA #WWERaw #NancyPelosi\\n https:\\/\\/t.co\\/3i1UHpTCkU\",\"1125\":\"Lady Gets The Attention Of Netizens; Which Kind Of Exercise Is This? (VIDEO) \\ud83d\\ude33\\ud83d\\ude33\\ud83d\\ude33\\n\\n#Taiwan #Pelosi #China #LALISA #WWERaw #NancyPelosi\\n https:\\/\\/t.co\\/3ZqX1zkCc4\",\"1126\":\"#Taiwan #Taipei \\n\\nXing Ping reaction after Pelosi entered Taiwan........ https:\\/\\/t.co\\/L8esduYBU5\",\"1127\":\"AFFILIATE MARKETING is an advertising model in which a\\ncompany compensates third-party publishers to generate\\ntraffic or leads to their business.\\nBENEFITS\\n\\u25cf Easy Tracking\\n\\u25cf Grow Brand Awareness\\n\\u25cf Low cost to start up\\n\\u25cf Increase Traffic flow\\n#taiwan #AffiliateMarketing https:\\/\\/t.co\\/K71xuM0B4K\",\"1128\":\"Nancy #Pelosi waves at reporters from a legislature in #Taiwan.\\n\\n#NancyPelosi #Taipei #ChinaTaiwanCrisis #China #pelositaiwan https:\\/\\/t.co\\/bbtfnREtHs\",\"1129\":\"SUMMER TIME \\u23f0 \\n\\nAt the beach, life is different. Time doesn\\u2019t move hour to hour but mood to moment. Let\\u2019s live by the currents, plan by the tides and follow the sun``` \\ud83e\\udd29 #Taiwan #Pelosi #China #helicopter #HelicopterCrash #BBNaija #BBNaija7 #LALISA https:\\/\\/t.co\\/QP8Bzs3UKv\",\"1130\":\"Nawedeyhere \\ud83c\\udf79\\ud83c\\udf79\\nAugust Special\\nHappy birthday mate \\n@caleb_nwanneka \\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\n#ochicanadocares \\n\\nCourtesy @Birthdaysng @TwitterSupport \\n\\n#HelicopterCrash #Pelosi #Taiwan https:\\/\\/t.co\\/YkNNVYgUND\",\"1131\":\"Taiwan said the military has increased its alertness level and authorities will make plans to ensure safety and stability around the island, after #China announced a series of military exercises in response to U.S. House Speaker Nancy #Pelosi's arrival in #Taipei. #Taiwan https:\\/\\/t.co\\/t4WEyvpAVd\",\"1132\":\"Yo \\nMorris Hills here \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n.\\n.\\n.\\n.\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #helicopter #TUINUANE #BadmintonMalaysia #WWERaw #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #NancyPelosi #HelicopterCrash #kpssdeikincifetoskandali #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/nKjT1dfk9O\",\"1133\":\"His period and his followers \\ud83d\\ude41\\ud83e\\udd14\\ud83d\\ude30 please don't go to see mine \\ud83e\\udee3\\ud83e\\udee3\\ud83d\\ude21 #Taiwan #FolloMe #SoutienBooba https:\\/\\/t.co\\/OwaPX1mvFZ\",\"1134\":\"\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f \\ud83d\\ude05 Wait for his reaction \\n\\ud83c\\udfac VC: DerekLipp | IG\\n______________________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more posts like this\\n______________________________\\n#GospelEmpireGh #StrictlyGospel #Taiwan\\n#Pelosi #LALISA #helicopter #WWERaw #NancyPelosi #HelicopterCrash https:\\/\\/t.co\\/7BqCMFuyWa\",\"1135\":\"https:\\/\\/t.co\\/zpHYmKO1iM\\nDaily Powered Word Devotional Podcast: Wednesday 3rd August, 2022.\\n#SpeedDatingWithSelema #Obituary #Taiwan #SamOmatseye #BBNajia #BBNaija #BBNajiaS7 #Pelosi #Bernd #Rufai #HappyNewMonth #Cucurella #SaheedBalogun #helicopter #Tinubu\",\"1136\":\"The all-in-one platform for companies selling to local businesses. Find products to sell, market with ease, and fulfil under your brand. With Vendasta, you can deliver an amazing experience for your customers and truly make a difference. \\ud83d\\udc47\\ud83d\\udc47 #Taiwan \\n\\nhttps:\\/\\/t.co\\/VAPowqw2M6\",\"1137\":\"China, we are with you\\\"- #Russia \\n\\nDonetsk decided to support the People's Republic of China today.\\n\\n#China #Pelosi #pelositaiwan #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/3ZlCFgyKk7\",\"1138\":\"US House Speaker Nancy #Pelosi and #Taiwan President Tsai Ing-wen: August 3.\\n\\n #PelosiinTaiwan #China #ChinaTaiwanCrisis https:\\/\\/t.co\\/oddZSMJqci\",\"1139\":\"It is reported by netizens that Tanks units are being moved by trucks from Fuzhou Depot of People's Liberation Army located in the city, which is in Central #Fujian, Southeastern #China.\\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #pelositaiwan #Taiwan https:\\/\\/t.co\\/lFax7HJS5c\",\"1140\":\"Moment when the President of Taiwan awards him the \\\"Order of Auspicious Clouds with Great Special Cordon\\\", for playing a key role in promoting relations between Taiwan and the US #Taiwan #Pelosi #China #NancyPelosi https:\\/\\/t.co\\/yh8YBUNbtJ\",\"1141\":\"Taiwan: US House Speaker Nancy Pelosi meets President of Taiwan Tsai Ing-wen in Taipei.\\n\\n#Taiwan #China #Pelosi #pelositaiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/P3V7zJX26c\",\"1142\":\"Young John _DADA cover by me Morris Hills link\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/9NItNsYwPM\\n.\\n.\\n.\\n.\\n.#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #LALISA #NancyPelosi #IndiaWithLaalSinghChaddha #BibleBuild #mbstorm #mbstorm #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BoycottRakshaBandhanMovie https:\\/\\/t.co\\/PPFuzmH34P\",\"1143\":\"Up & grateful.\\n\\n#Taiwan\",\"1144\":\"#Pelosi visit to #Taipei: US warships cruise near #Taiwan; #China 2 hold live fire exercises off Taiwan coast\\n\\nThe exercises will include joint air & sea drills missiles test-launches in north, southwest, northeast of Taiwan, long range live firing in ,https:\\/\\/t.co\\/TVZdxlyg5T https:\\/\\/t.co\\/WOAC3Y4qkx\",\"1145\":\"#Taiwan and #China when are you fighting am bored @SpeakerPelosi DM me when you're free\",\"1146\":\"Ghana \\ud83c\\uddec\\ud83c\\udded reconstructs a 44yr-old Maternity and Children\\u2019s block at KATH-... https:\\/\\/t.co\\/2sJ2iBq23C via @YouTube\\n#accra #ghana #Abena Korkor #abuja #Trending #news #Taiwan #NancyPelosi #Black Sherif\",\"1147\":\"Amaka and the mirror is like Bella and Sheggz \\ud83d\\ude02, she can\\u2019t live a minute without watching herself in that mirror \\ud83d\\ude02\\ud83d\\ude02 #BBNaija #Taiwan\",\"1148\":\"MY BIGGEST FEARS IS GETTING HURT BY SOMEONE I ALREADY EXPLAINED MY PAIN TO \\ud83d\\ude2a\\ud83d\\udeb6\\n#Taiwan #helicopter #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #BadmintonMalaysia #JacksonWang #IndiaWithLaalSinghChaddha #BoycottBollywood #Badminton #pains #toxic #life #harsh https:\\/\\/t.co\\/h4c38mQP8m\",\"1149\":\"Happy new month guys \\ud83d\\udca5\\u2764\\ufe0f\\ud83e\\udd8b\\nI wish you all the best in Life, in good health and wealth \\u2764\\ufe0f\\n#Pelosi #Tuinuane #Mnakwethu #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #BlueJays #JacksonWang #MorningLive #goodmorning #sweet #beautiful #beautifulgirls #sweetlove #love https:\\/\\/t.co\\/AFriQxiHsH\",\"1150\":\"What in the bbnaija worldis going on?#BBNaija #Pelosi #pharmsavi #christyo #beauty https:\\/\\/t.co\\/TwxxzFGRHo\",\"1151\":\"What do you think? \\n\\nWho are the most insulted group in Ghana?\\n\\nMe: Ghana Police \\n\\n@official_gavnah #Pelosi @clixmartgh\",\"1152\":\"Guess the artist \\n#Pelosi #Machala https:\\/\\/t.co\\/OBdiJp9HTM\",\"1153\":\"Thanks to IKD for showing me love . Till we meet again @BlueNunWines #she\\u2019s40\\n#Taiwan #Davido #Pelosi #ikorodu https:\\/\\/t.co\\/ajYFtXFLD2\",\"1154\":\"#pelosi in Taiwan... what are these ill old magus making out of these Generation\",\"1155\":\"Never give in to autocrats......UNLESS IT'S ISRAEL! Pelosi defends Taiwan visit amid China tensions: \\u2018Never give in to autocrats\\u2019 https:\\/\\/t.co\\/rqaX0Oh1Et #PelosiVisit #BoycottIsrael #Taiwanchina #ApartheidIsrael #Taiwan #provacateurs #doublestandards\",\"1156\":\"STILL ON INTRO\\nI don't know how to start saying plenty just being attentive makes it easier.\\nPc: @EmemEdema1 \\n\\nTinubu StopsellingPi #WWIII Don't Look Up #BBNaija https:\\/\\/t.co\\/PKifp64k9P\",\"1157\":\"LOYAL OUT IN 2 DAYS\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #giddyfia https:\\/\\/t.co\\/xbluBJ1Bzl\",\"1158\":\"Just bring this to the table ,leave the rest for me #Taiwan #tuesdayvibe #Mnakwethu #BBNaija https:\\/\\/t.co\\/YVk6rRhGYx\",\"1159\":\"The Twins Meat #China #viral #Taiwan #Pelosi #Ghana #iamyahayaadam #destinyetikosister https:\\/\\/t.co\\/m64YpYaeDU\",\"1160\":\"Rate & retweet my freestyle cover on @adekunleGOLD #FIVESTAR pls help me retweet and tag @adekunleGOLD till he sees this\\ud83d\\ude4f\\ud83c\\udffb\\n#Trending #bernd #taiwan #BBNajia #NigeriaDecides2023 #SheggzFC #BBNajiaS7 #PeterObiForPresident2023 @SympLySimi @DONJAZZY @mreazi @Olamide #ASUU #bbillkin https:\\/\\/t.co\\/Iv9ZvgYBiO\",\"1161\":\"The #XiJinping memes are wild..\",\"1162\":\"Feminist say something \\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06#WWIII https:\\/\\/t.co\\/AV7wAnvbfr\",\"1163\":\"\\\"War is young men dying and old men talking.\\\" - TROY, otherwise why would 80 years old #NancyPelosi and 79 years old President Biden drag the whole world into another war in the Asia-Pacific, undermined Russian now undermining #China. #ChinaTaiwanCrisis\",\"1164\":\"Sponsor a child to school this season...there are orphans, fatherless and many less opportune children in our midst that needs go to school.... \\n\\nAbuja-Kaduna China World War III Chioma Onyekwere #sabinus Tinubu Nancy Pelosi Cash Cubana #Lekki #Taiwan https:\\/\\/t.co\\/HZJCflsta5\",\"1165\":\"\\u201cIt\\u2019s because of her beauty a woman hold her breast when she runs not because it will fall\\u201d\\n\\n*Ghanaian Proverb*\\n\\n#proverb #sincerelyaccra #Pelosi #China\",\"1166\":\"How to end your journalism: Write nonsense about @peterobi for @OfficialAPCNg or @OfficialPDPNig\\n#Obituary #samomatseye #Bernd #Pelosi\",\"1167\":\"Build your websites with all the tools you need integrated in one funnel and make the world a better place\\nhttps:\\/\\/t.co\\/k6pXz4KtCA\\n#groovefreedomday #freedomdayevent #freedomday\\n #WWIII #WorldWar3 #WWIILIVE #Taiwan #Pelosi #China #WWIII\",\"1168\":\"Just hear me out \\ud83d\\ude02 #Pelosi #Taiwan #China #WWIII #Memes https:\\/\\/t.co\\/s8CNiIL5ig\",\"1169\":\"GafexianArt\\nWarrior stare\\nMuse: @rihanna\\nPencil on paper\\nHow do you rate it?.\\nPls help share\\n#gafexianzone #gafexianart #Rihanna #Taiwan #Pelosi #China #helicopter #tuesdayvibe #explorepage #explore #ExploreUganda #NationalGirlfriendDay #artists #ArtOfTheDay #ArtistOnTwitter #art https:\\/\\/t.co\\/mI2CAEvgD3\",\"1170\":\"Before you kill your Husband because of Side chick,\\nYou have to know that Side chick will not be a Widow..\\ud83e\\udd37\\u200d\\u2642\\ufe0f #loveright #loveyourhusband #love #China #helicopter #tuesdayvibe #BoycottBollywood #BORNPINK #Taiwan #Pelosi #IndiaWithLaalSinghChaddha #\",\"1171\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 6splus\\n\\u26a0\\ufe0fCapacity: 64GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:68K\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n\\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry She\\u2019s 40 china World War III https:\\/\\/t.co\\/k8OQNbybAR\",\"1172\":\"After party meals for your events...\\nWe are definitely your \\ud83d\\udd0c \\n\\n#Pelosi \\n#Taiwan \\n#BBNajiaS7 #BBNaija7 #BBNaijaSeason7 https:\\/\\/t.co\\/4xz5V4RVAT\",\"1173\":\"3. but in the very heart of Agbaragwu village in Osaa Ukwu community.\\n\\n#AbiaState\\n##Nigeria\\n#AlexOtti\\n#DrAlexOtti\\n#LabourParty\\n#ObiNgwa\\n#Taiwan \\n#PeterObi\\n#PeterObi4President2023 \\n#PeterObi2023 https:\\/\\/t.co\\/ZkJhDKtoXy\",\"1174\":\"DOLLAR \\ud83d\\udcb5 GOT LOTS OF QUESTIONS TO ANSWER NOW #Web3 #BBNajiaS7 #sabinus #Wednesday #MidweekMadness #MONEY #Twitter #ElonMusk #Taiwan #China #BoycottBollywood #Trending #NEW #NewJeans #Dollar #BibleBuild #bitcoins #ElectionTwitter #Tinubu https:\\/\\/t.co\\/c4hYMDSAaq\",\"1175\":\"Freestyle \\ud83d\\udcaa\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n#morrishills #morrishillsentertainment \\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #tuesdayvibe #BORNPINK #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8 https:\\/\\/t.co\\/G5tXbMi8JI\",\"1176\":\"Is this true ???\\n\\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #tuesdayvibe #BORNPINK #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/e54sgy8pxo\",\"1177\":\"Say no to drug abuse \\ud83d\\udeab\\ud83d\\ude32\\n#BORNPINK #drugabuse #China #Pelosi #helicopter #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #tuesdayvibe https:\\/\\/t.co\\/qtcJ27cTDc\",\"1178\":\"Why is #WWIII trending?\\ud83e\\udd2f\\nAbeg oo God I never marry \\ud83d\\ude2d\",\"1179\":\"J-20 stealth fighter jets join #PLA drills surrounding Taiwan.\\n\\nChinese media: the command of the People's Liberation Army of #China in the east of the country begins an operation (exercises) around the island of #Taiwan.\\n#ChinaTaiwan https:\\/\\/t.co\\/evluzp5XOj\",\"1180\":\"Why my shakara no go too much \\nCheck me nah fine boy i be \\ud83e\\udd17\\u2764\\u2764\\u2764\\n.\\n.\\n.#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo https:\\/\\/t.co\\/2QbWRdDCYQ\",\"1181\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #Warner #Piastri #Corbyn #Monaco #TheBachelorette #Taiwan #support #Webradio #Cannes #France #Listen #Listennow #Followus #Donate #TrumpTreason #\\u0130stanbul #fanart #Biden #west https:\\/\\/t.co\\/cz3d3iBHCW\",\"1182\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 12pro Max\\n\\u26a0\\ufe0fCapacity: 128GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:493k\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n\\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry She\\u2019s 40 World War III https:\\/\\/t.co\\/Y6uBqjHALV\",\"1183\":\"SHE WAS NICE TRENDING \\ud83d\\ude0e\\nHit link to view on YouTube\\n\\nhttps:\\/\\/t.co\\/0nAHvzGYAu\\n\\n#Tinubu\\n#China\\n#Pelosi\\n#\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\\n#Wizkid\\n#Taiwan\",\"1184\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #Alpine #Donation #helicopter #helpinghand #Help #TailorMade #Tommy #Cina #Taiwan #Pelosi #boss #McLaren #Alonso #Verdi #ayr\\u0131lmazikili #BetterCallSaul #China #crowdfunding #OOTT https:\\/\\/t.co\\/FhfDGunyTi\",\"1185\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 11pro\\n\\u26a0\\ufe0fCapacity: 256GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:293k\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry World War III modella ilebaye https:\\/\\/t.co\\/uDd8WrJ4ea\",\"1186\":\"One of the abductees of the Kaduna train attack, Dr Mustapha Umar Imam who was among the victims released today describes the harrowing conditions at terrorists camp.\\n\\nHe says he was the official doctor in the at camp.\\n\\n#Pelosi\\/#Taiwan\\/#China\\/Obituary\\/#BBNajiaS7\\/#Obidatti023 https:\\/\\/t.co\\/RtVmnAvt1C\",\"1187\":\"GO THE EXTRA MILE (The secret to rising above your contemporaries).\\n\\nThe Chinese | World War III | Over 1.5 | China | Sam Omatseye | ASUU | Chioma Onyekwere | Reno | Canelo | Bobo Chicago | Mr. Peter Obi | Thiefnubu | omo agege | #Cubana | #Beijing | #WWIII https:\\/\\/t.co\\/PBdTHFPCJc\",\"1188\":\"The second best thing to happen to me this year is stumbling on @basket_mouth #PapaBenji series.....damnnn.....I laugh \\ud83d\\ude05 my sorrows away with each episode, give it a try guys you'll love it. \\n#PapaBenji \\n#WWIII\",\"1189\":\"Nancy Pelosi arrives Taiwan #Pelosi #Taiwan #Xi Jinping #WWIII let\\u2019s see how the thing goes https:\\/\\/t.co\\/ShfbN1sSL9\",\"1190\":\"AVengers run it up\\nFollow this account \\n#Pelosi #China #helicopter #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/DjXznjVYU3\",\"1191\":\"We go still cash out these show even during the World War \\n#Pelosi #China #JacksonWang #WorldWarIII #WorldWar3 #Carterefe #Wizkid #AtikuOkowa2023 https:\\/\\/t.co\\/lJPjiWEKfZ\",\"1192\":\"Pls help beg Daniel Regha not to go & share those controversial opinions on this China & USA diplomat showdown over Pelosi's Taiwan visit. Let's focus on dealing with bandits & Boko Haram. Let's not bear the wrath of two world powers. #WorldWarIII #ChinaTaiwan #ChinaTaiwanCrisis\",\"1193\":\"#sheggzandbella \\n#Taiwan \\n#saheedbalogun\\n#phyna\\n#doyin\\n#BB24 \\n#BBNajia \\n#BBN \\n#BBNaijaSeason7 \\n#BBNaijaLevelUp \\n#modella\\nBBNajia S7: Trouble Looms For Love Shippers As Biggie Assigns Task(Video) | https:\\/\\/t.co\\/VtjshNhCgN https:\\/\\/t.co\\/4qOh0Bcriz\",\"1194\":\"@Quicktake And all this for her husband\\u2019s stock deal. We\\u2019ll see what the fallout is\\u2026 #Taiwan #Pelosi\",\"1195\":\"#Taiwan #Pelosi #Xi Jinping #BBNaija #World War III https:\\/\\/t.co\\/Y0fdqSTitx\",\"1196\":\"USA \\ud83c\\uddfa\\ud83c\\uddf8 trying to so hard to keep Russia and China busy \\ud83e\\udd23 .\\n\\n#WWIII World War III China https:\\/\\/t.co\\/4o2OIyw7oL\",\"1197\":\"How to make money without a job\\nhttps:\\/\\/t.co\\/NdQQwu4ypZ #money #businessideas #moneymaking #Taiwan #Pelosi #makeoneyonline\",\"1198\":\"Both sex Caucasian puppies for sale. \\n6wks first shot \\ud83d\\udc89 taken\\nPrice180k\\nCall\\/watapp 08064781867\\nWaybill (nationwide)@EkeneUzochukwu1 @AkunneChinyere4 @AmakaVirginia1 @PalmykennelJos @richmoh600 #Taiwan #bangalorerains #China https:\\/\\/t.co\\/d3aa5a3f0V\",\"1199\":\"After God fear woman I use God beg u \\ud83d\\ude4f\\n\\n#Taiwan #BBNaijaS7 #BBNajia #World War III #doggy\",\"1200\":\"VIDEO: Pastor Visits Native Doctor In His Shrine For A Charm For Her Church\\n\\n#China #Pelosi #ASUUstrike #USA\\nRead more \\u300bhttps:\\/\\/t.co\\/PtryLuVyTO\",\"1201\":\"Wow! Thank God I saw this video\\ud83e\\udd76\\ud83e\\udd76\\ud83e\\udd76\\n\\nASUU Davido #Modella #Taiwan Sheggz and Bella https:\\/\\/t.co\\/bmG4W5Hwwy\",\"1202\":\"Thank God Kwankaso was stubborn not to accept the VP ticket under Peter Obi, this is how we would have missed out on Datti Yusuf Ahmed. God we thank u o. #Taiwan #Lekki #China #Obidatti023 #PeterObi4President2023 https:\\/\\/t.co\\/zaYOx6IOCb\",\"1203\":\"Unconfirmed reporter are coming from #China -\\n#PLA start military exercise in #Xiamen, Fujian, China. \\n\\n.\\n\\n #PelosiinTaiwan #China #ChinaTaiwanCrisis #ChinaTaiwan #USA https:\\/\\/t.co\\/F075q1h4GA\",\"1204\":\"I\\u2019m sure they will sell weapons to Taiwan too \\ud83d\\ude14\\n\\n#Taiwan #Pelosi World War III\",\"1205\":\"For exotic destinations and adventure travel, we at Jopas Travel can provide you with a chauffeur driven service. Our services include airport pickups and drop offs, tour services, business & private transport.+233547794253\\n#Hosmer #Padres #emily #Taiwan #LoveIsland #instagood https:\\/\\/t.co\\/Kd5k8OVcfa\",\"1206\":\"@CNN @selinawangtv #China: no way #Pelossi land in #Taiwan\\n#USA: we ban #Aliexpress\\nChina: OK.\",\"1207\":\"#China: no way #Pelossi land in #Taiwan\\n#USA: we ban #Aliexpress\\nChina: OK.\",\"1208\":\"Call me rum but please add PELOSI to my nick name .. craziest mind set I have ever seen in my life #pelosi #china #biden #usa\",\"1209\":\"The #Chinese Army\\u2019s Eastern Theatre Command announced joint military action surrounding #Taiwan, starting TONIGHT:\\n\\n1. Joint maritime-aerial drills at northern, SW and SE parts of TW\\n\\n2. Long-range firing on Taiwan Strait\\n\\n3. Conventional missile firing in waters east of Taiwan https:\\/\\/t.co\\/UT5Uy5HRvJ\",\"1210\":\"@CGMeifangZhang America must now accept that it can no longer coerce anyone, no matter what country they are #Taiwan\",\"1211\":\"Law of the Lantern is rise n lift others! Only u can\\u2019t do the convoy my brr\\ud83d\\ude43\\ud83e\\udd32 #China #Taiwan #HappyNewMonth #ASSU\",\"1212\":\"Let\\u2019s make it louder, \\u270a\\u270a\\u270a2023 must be a start of something good. #Pelosi #China #Taiwan #OBIDIENTS #helicopter #HelicopterCrash #JacksonWang #Obidatti023 https:\\/\\/t.co\\/NFhyoMAUlk\",\"1213\":\"@QUEENOFDBLUES1 This is your answer. Is this not a death threat? \\n\\nOkowa Rescue Nigeria Akure Datti Obidients ASUU Omo Agege Obituary Mr. Peter Obi Sporty Bet Obidiots Piggyvest Burna Boy China sabinus Over 1.5 ASUU Ibadan #Pelosi #AtikuOkowa2023 #Lekki Asaba https:\\/\\/t.co\\/4VG90Qm9JZ\",\"1214\":\"Are you travelling to Ghana and needs chauffeured driven car, Airport pickups, Tour Services, Business & Private Transport? Jopas travels is here to help\\n#Taiwan #Pelosi #China #travelbloggers #Padres #Batgirl #Hosmer #Dodgers #Soto #explorepage #Explore #TravelTuesday #trip https:\\/\\/t.co\\/47N7oXkD21\",\"1215\":\"Announcement \\ud83d\\udea8\\ud83d\\udea8\\ud83d\\udea8\\n\\nVery excited to announce my next single...\\n\\nMore details soon just watch this space \\n\\n#brend #Taiwan #Pelosi #helicopter https:\\/\\/t.co\\/YMztRiBL5u\",\"1216\":\"War or not.\\nNigerians are ready \\ud83d\\ude02..\\n\\n#WWIII #China #Pelosi https:\\/\\/t.co\\/y3iBe7Z5xR\",\"1217\":\"Job Vacancy For Lab Scientists \\/ Midwives \\/ Registered Nurses\\n\\nQualification: Certificate \\/ Diploma \\/ Degree\\n\\nBenefits \\n* Free Accommodation\\n* Attractive salary package \\n\\nApply Here\\u2935\\ufe0f\\nhttps:\\/\\/t.co\\/uwy7TfitIh\\n#Pelosi Fabrizio Umtiti Men\\u2019s 100 Over 1.5 World War III \\n #KNUST\",\"1218\":\"Poet are sad.\\n#AudacyAOTS #SalarioRosaVePorMas #CommonwealthGames2022 #taiwan #worldwar #GuinnessAugustMeeting #ifb #WritingCommunity #sad #ToyinAbrahamkiddies #BBNajiaS7 #BeautyWithBrains #tuesdayvibe #twitterpoet https:\\/\\/t.co\\/acD1l2dqBM\",\"1219\":\"@Cristiano meet your youngest fan and mentee. He is 2 years old. \\n#WorldAthleticsChamps #WorldWarIII #China #PeterObi #Taiwan https:\\/\\/t.co\\/WKf1KfCP3I\",\"1220\":\"World war III\\nSabinus\\nOver 1.5\\n#Taiwan \\n\\nhttps:\\/\\/t.co\\/z6pouwofQl\",\"1221\":\"Crazy things are happening\\ud83c\\udf0d\\n\\n#sheggzandbella #China #WWIII #Wizkid #shes40 #Machala https:\\/\\/t.co\\/g8U8HCWEfs\",\"1222\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/mvGvintwOT\",\"1223\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/GDIib6rNwr\",\"1224\":\"Serving you some Yellloooowwww\\ud83d\\udc9b\\ud83d\\udc9b\\ud83d\\udc9b \\n\\n#Taiwan #helicopter #Lekki #over1.5 #asuu #abujakaduna #ibadan #ibadanphotographer #arikeimagery #arikephotography https:\\/\\/t.co\\/xLLxCmylHy\",\"1225\":\"#BBNaija #Taiwan please who takes Fluoxetine, and what are the dos and don'ts attached to it.. Dm please\",\"1226\":\"#ikorodu #StopSellingPi #AkwaIbomTwitter #BORNPINK #China #Pelosi \\n\\nI will meet you at the Lounge, I will come with 2 friends. https:\\/\\/t.co\\/tXMNBZl0y9\",\"1227\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/aknpVNtG19\",\"1228\":\"Are you playing what type of play is this \\n#MEMES #code #Taiwan #joblife #technology https:\\/\\/t.co\\/sto3iBuaWX\",\"1229\":\"When I'm try to shoot on a girl @ConvergenceFin \\n\\n Check out their telegram channel https:\\/\\/t.co\\/5NHIvfXkRL\\n\\n#kpssdeikincifetoskandali #fcklive #Taiwan #China #chatsekscerita #helicopter #Pelosi #ShowtimeAugust2Natin https:\\/\\/t.co\\/2z0WSFjajx\",\"1230\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/OVo7RdTbNm\",\"1231\":\"@iamhmmad1 How Simpsons foretells the fall of #BAT consumed in the burning furnace..#BAT2023 \\nPeter Obi all the way..\\n#Worldwar #PeterObiForPresident2023 #Taiwan #Pelosi https:\\/\\/t.co\\/XYDehFbf1r\",\"1232\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/IF09vhNimK\",\"1233\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/7x4wQHpUl5\",\"1234\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/kAl66ZYcDa\",\"1235\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/pYklckKHCJ\",\"1236\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/L4gWB6rZW5\",\"1237\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/hk60yqk58R\",\"1238\":\"@iamhmmad1 If US are recruiting Army for free am enlisting myself...\\nPeter obi #Pelosi #Taiwan #Obituary .. https:\\/\\/t.co\\/WaXLSMGJWu\",\"1239\":\"@thecableng Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/GW42HxaUGK\",\"1240\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/7XLEmrezDO\",\"1241\":\"The audacity \\nWe Dey 2022 oo \\n\\n#China #Taiwan #MUFC #Lagos https:\\/\\/t.co\\/sivn4BF0Lt\",\"1242\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/UaQsyLi9a5\",\"1243\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/24KJVW97Xw\",\"1244\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/RaBGcfCvPt\",\"1245\":\"@AishaYesufu Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"1246\":\"Hi!add up for your cakes\\ud83d\\ude01name it!foodtray,pastries,finger foods....I\\u2019m here for you\\ud83d\\ude48\\u2764\\ufe0f\\ud83d\\udcaf Hit me up and tell me what you need \\u263a\\ufe0fhttps:\\/\\/t.co\\/FN0kSz1WoA\\n#Taiwan #China #Pelosi #helicopter #BBNaijaLevelUp #BBNaijaSeason7 #BORNPINK #Dollar #SheggzFC #abeokuta https:\\/\\/t.co\\/b3nGbPJ6WI\",\"1247\":\"The former super eagles player Christian Obodo just confirmed he is Obidient. #PeterObi #PeterObi2023 #PeterObiForPresident2023 #Reno #Pelosi #Tinubu2023 https:\\/\\/t.co\\/mcz8JzpAuh\",\"1248\":\"@KamalaHarris Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"1249\":\"will sing praises unto thy name.\\u201d & HolySpirit for preserving me,my biological mother & her biological children,my biological father\\u2019s children,our destined children & spouses In Jesus name,Amen! #Pelosi #WATCHTOEARN #WWERaw #Web3 #reMARKable24years #ElonMusk #helicopter #China\",\"1250\":\"@thecableng Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"1251\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/QUy8Tho8qn\",\"1252\":\"Mood\\ud83d\\ude02\\ud83d\\udd25\\nNew skit tomorrow \\ud83d\\udc40\\u270a\\n#Taiwan #China #AVFC #trending #helicopter #FolloMe #hongbesh https:\\/\\/t.co\\/HQwbISDLcM\",\"1253\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/QBiBWr8r2O\",\"1254\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/Yx2jEA1msh\",\"1255\":\"Over 1.5 Umtiti Kwesi Arthur Ferran Announce Cucurella Asamoah Gyan Arteta Declan Rice Memphis Braithwaite Anfield #Pelosi Rwanda Sesko #5StarAlbum Neves Depay Endrick Manchester United \\n\\nhttps:\\/\\/t.co\\/LA1LjnkP2G\",\"1256\":\"His Grace all we wanted #Taiwan #Machala https:\\/\\/t.co\\/tcuRoXXAF3\",\"1257\":\"@carterefe__ Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvN6PV\",\"1258\":\"@lawrencekitema Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1259\":\"All your men's shirt available in store\\n#tuesdayvibe #Pelosi #China #Taiwan #Obidatti023 #TakeBackNaija https:\\/\\/t.co\\/hLI1uuGvKv\",\"1260\":\"@delick_manzi @sammiemanini1 @bamwinejnr @MrrChapter @LilyNampa @CanaanArinda @ArthurMuhwezi12 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1261\":\"For those asking, #thenextfour is coming! Ibadan get ready.\\n\\n#China #Pelosi #NancyPelosi https:\\/\\/t.co\\/3fvdTVhxz3\",\"1262\":\"@instablog9ja Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1263\":\"Main chick: I'm sorry I can't make it, it's raining \\nSide chick: \\ud83d\\udc47\\ud83d\\udc47\\nSide chicks are one of the most reliable individuals.\\n\\nChina\\nObidiots\\nOver 1.5\\nCubana\\nWorld War III\\nObituary\\nSimeon Ekpa\\n#Davido \\n#EndSARS \\n#StopSellingPi \\n#Taiwan \\n#Pelosi \\n#China \\n#helicopter https:\\/\\/t.co\\/StLsLPAdY2\",\"1264\":\"Oyo State TESCOM Led By Akinade Alamu Defrauds NYSC Members Withholds State Allowance for 4 Months\\n\\nhttps:\\/\\/t.co\\/RjAIU2Hqlb\\n\\nModella China Obituary #Pelosi #Obidiots @oyostategovt\",\"1265\":\"@gyaigyyimii Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvN6PV\",\"1266\":\"@SpeakerPelosi Why don't you visit #Taiwan yourself.... like how @RealDonaldTrump visited #NorthKorea #NuclearWar\",\"1267\":\"Viewers Are Advised \\ud83d\\udd1e\\ud83d\\ude02\\n\\nThat situation when his tall, handsome and mighty but got a \\ud83e\\udd55 instead of \\ud83e\\udd52\\ud83d\\ude29\\n\\n#China #BBNaija\\n#Cubana #helicopter #BellaOkagbue #Trending #Tinubu #PeterObiForPresident2023 #fun #bread #Ilebaye #China #Taiwan #ASUU #cruise #Wizkidfc #Wizkid https:\\/\\/t.co\\/g210vExw4h\",\"1268\":\"BREAKING: Naira Appreciate N665 To A Dollar At Black Market\\u00a0#Naira #Pelosi #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #China https:\\/\\/t.co\\/O6bpvTJjJ6\",\"1269\":\"@ShehuSani Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/GW42HxaUGK\",\"1270\":\"Wow I just want to say thank you to my 1m follow \\ud83c\\udf89\\u2764\\ufe0f\\ud83d\\ude4c\\ud83c\\udffe #Machala #Taiwan #Obidatti2023 #Wizkidfc #30BG https:\\/\\/t.co\\/5QOb1BIQY2\",\"1271\":\"\\ud835\\udc7a\\ud835\\udc82\\ud835\\udc8f\\ud835\\udc84\\ud835\\udc95\\ud835\\udc96\\ud835\\udc82\\ud835\\udc93\\ud835\\udc9a \\n\\ud83d\\udccdcalabar \\n\\n\\ud83d\\udcf8 \\u00a9Macdavis Ken \\nShot on @Xiaomi @XiaomiNigeria \\nNote10s \\n\\nI won't stop exploring with my lens .\\n\\n#XiaomiImagery #macdavisken \\n#China #helicopter #Pelosi #JacksonWang https:\\/\\/t.co\\/sfUGAQ8nua\",\"1272\":\"There is a riot against the government in South Africa.\\n\\nRoads were blocked, fires and cars burned in Tembisa because of exorbitant electricity rates and the rising cost of living. Several demonstrators were killed by police.\\n#SouthAfrica #Taiwan #Pelosi #China #GistLoverStory https:\\/\\/t.co\\/LG5PfsgYol\",\"1273\":\"Hi everyone follow @3KMOfficial to stay updated about the project \\nYou're entitled to enjoy fun games and earn amazing prizes \\ud83d\\ude09\\n\\nThat's fun right?\\n#3km\\n#PlayToEarn #NFTGiveaway #blockchain #cryptocurrency #Taiwan #helicopter #WIN https:\\/\\/t.co\\/wNxSYmMpWT\",\"1274\":\"Newest addition to the oxford dictionary.\\n\\nDefinition of an OLD FOOL!!! \\nTinubu Wike atiku Junkjournalism\\n#obituary\\n#PeterObiForPresident2023\\n#OBIdient2023 \\n#Pelosi https:\\/\\/t.co\\/G4k25DjFCh\",\"1275\":\"Near the Grand Hyatt Hotel, where Pelosi was staying, a group of people disgruntled by her visit gathered. The sign read, \\\"Warmonger Nancy Pelosi: We Don't Need You, We Need Peace.\\n#Pelosi #NancyPelosi #China #helicopter #taiwanischina #Taipei https:\\/\\/t.co\\/SiynnzbSTC\",\"1276\":\"Cop this sneaks with just 5500naira only\\nSize 39 \\nAvailable &New\\n\\nDM,Comment to order\\nWhat you see is what you get!\\nNo scam zone\\u274c\\n#Pelosi \\n#China \\n#Worldwar111 https:\\/\\/t.co\\/OCxbv6UNJE\",\"1277\":\"Please can anyone help with a free iPhone app I can use in editing PDF documents, Text inclusive. My laptop crashed\\ud83d\\ude2d please guys help me retweet this if you can see this on your timeline\\ud83d\\ude4f \\n\\n#China #Pelosi #WorldWarIII over 1.5 #NancyPelosi #MrPeterObi\",\"1278\":\"Freestyle for my FAMZ !!\\n#NancyPelosi #Pelosi #Freestyle #RAP #newtrend https:\\/\\/t.co\\/I0oRy79J6S\",\"1279\":\"The situation at Taipei airport as we speak.\\n\\nJournalists and locals with placards are waiting for the speaker of the U.S. House of Representatives, and Pelosi is also waiting outside the Grand Hyatt Taipei, where she plans to stay.\\n#Pelosi #China #taiwanischina #NancyPelosi https:\\/\\/t.co\\/DMOVY73bxJ\",\"1280\":\"Trump Says Pelosi \\u2018Always Causing Trouble\\u2019 Amid Her Controversial Visit to #Taiwan \\n\\n\\u201cWhy is Crazy #NancyPelosi in Taiwan? Always causing trouble. Nothing she does turn out well.\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/LK9Tgqbfpo\",\"1281\":\"The video is believed to be from the port city of Xiamen in Fujian Province, closest to Taiwan. #China #taiwanischina #TaiwanIsaCountry #Pelosi #NancyPelosi #helicopter #Trending #TrendingNow https:\\/\\/t.co\\/3keenBlNEu\",\"1282\":\"Nobody fine pass me \\n#Pelosi #China #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/09SipiAiwx\",\"1283\":\"Sturborn Academy we like to shootu \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23.\\n\\nWorld War III Akufo-Addo US Air Force Over 1.5 #XiJinping Taiwan The Chinese BREAKING NEWS Asante Kotoko https:\\/\\/t.co\\/2VrIbfuJiq\",\"1284\":\"Hello Twitter \\ud83e\\udd17\\n\\nI drew H.E @PeterObi using charcoal pencils under 25 hours.\\n\\nPlease support me with RETWEETS.\\ud83d\\ude4f\\ud83e\\udd7a\\n\\nMr. Peter Obi #OBIdient2023 Obituary Davido #wizkid China Over 1.5 Burnaboy Abuja-Kaduna Cubana Rema ASUU Bella #OBIDIENTS Sheggz Money Racism #helicopter #Pelosi https:\\/\\/t.co\\/pX0MuTq0lp\",\"1285\":\"Activists from pro-Iranian Shiite organizations went to downtown Baghdad to demonstrate in defense of law and order. Police used water cannons against them. \\n\\n#Iran #Baghdad #Gistlover #Pelosi #China #NancyPelosi #Trending #TrendingNow https:\\/\\/t.co\\/4GXSetMpTG\",\"1286\":\"This man is 5 years older than \\ud83e\\udd87\\n\\nEde beru Olorun\\n\\nSe won sepe awon \\\"atoku ma rorun fun yin ni\\\"?\\n\\n#BBNaija #helicopter #NancyPelosi #Taiwan https:\\/\\/t.co\\/tESlr2Og8O\",\"1287\":\"This seems to be the latest trendy song, I also vibes to it \\ud83e\\udd0f\\n\\nSaheed Balogun Rufai #Taiwan #BBNajiaS7 #BBNaijaSeason7 https:\\/\\/t.co\\/JY1Tr0L5rC\",\"1288\":\"@intelfin_global platform shows a greater opportunities to all traders to earn even in a bear market.\\n@intelfin_global #airdropalert #BSCGems #Crypto #Giveaway #NFTGiveaway #NFTAirdrop #NFTCommumity #NFTfamily #NFTProject #Metaverse #GameFi #P2E\\n #BSC #Pelosi #Web3 #Crypto. https:\\/\\/t.co\\/9viU1HDss1\",\"1289\":\"Our client needs a female business developer who has a reasonable experience in e-commerce and sales.\\n\\n- Must be very fluent\\n- Must look very presentable and smart\\n- Must be highly proactive and ready to take decision\\n\\nSalary: 150k\\nLocation: Lagos\\n\\nBenefit: Pension, HMO\\n\\n#Pelosi\",\"1290\":\"Sam Omatseye a tribal bigot has been convicted to life in penury in abyss.\\n\\n#Taiwan #China #BBNaija #PeterObiForPresident2023 # https:\\/\\/t.co\\/j6e1GbRdG3\",\"1291\":\"People of plateau\\n2023 gubernatorial race \\nIt's time\\n#Pelosi #NancyPelosi \\n@nentawe1 iss our choice https:\\/\\/t.co\\/szWcNq2iac\",\"1292\":\"Wordsss\\nRead thru and choose accordingly \\n#BeautyWithBrains #Bbnaija #Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/Sjbw8y0IwH\",\"1293\":\"#Taiwan\\nDoes Taiwan province belongs to China ???\",\"1294\":\"Is education truly the bedrock of knowledge?\\nJust thinking about the way some peoples act and talk.\\n#helicopter #BBNaijaLevelUp #SuperTuna_Jin #Pelosi #NancyPelosi\",\"1295\":\"Emotional Damage\\ud83d\\ude02\\n#China #Pelosi #helicopter #BBNaija https:\\/\\/t.co\\/vrjqi5d14o\",\"1296\":\"\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f\\ud83d\\udd25 \\nNew stock \\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f #anime #Nigeria #manga #new #Pelosi #naija https:\\/\\/t.co\\/FEUIKswiB5\",\"1297\":\"Can we test something\\ud83d\\ude09\\ud83d\\ude09\\n\\nWho's having your vote?\\n\\nOkowa\\n\\nShettima\\n\\nAhmed Baba\\n\\n????\\n\\nLet see who wins\\n\\n#Pelosi \\n#NancyPelosi \\n#PeterObiForPresident2023 \\n#Obidatti023 \\n#Obidatti2023 \\n#OBIdientlyYUSful \\n#BBNaija\\n\\n@PeterObi https:\\/\\/t.co\\/dR7enXaCX9\",\"1298\":\"@CGMeifangZhang China is well within its rights. It should always defend its people & territories. \\n#Taiwan\",\"1299\":\"More fire \\ud83d\\udd25 @stonebwoy #bhimnationgloba #China #Pelosi #helicopter https:\\/\\/t.co\\/7K0kAP7QF5\",\"1300\":\"No one among the other candidates is more suited to lead Nigeria than Peter Obi. No one has as much experience. - Dr. Yusuf Baba-Ahmed, vice-presidential #Taiwan #China #BBNaija #Obidatti023 #PeterObi4President2023 https:\\/\\/t.co\\/aEHGtnzasE\",\"1301\":\"Savings or current?\\n\\n#Pelosi #China #AbujaTwitterCommunity\",\"1302\":\"On the 28th of July,we talked about HEPATITIS and everything you need to know about it in a simple way.#Hepatitis #ASUUStrikeUpdate\\nToday,we are bursting some widespread myth about hepatitis.\\nClick on the link below to read more about it.\\n#China\\n#Pelosi\\nhttps:\\/\\/t.co\\/saVxYVwPVi\",\"1303\":\"@RT_com Nancy Pelosi is willing to risk starting a war with China so that she can make massive profits on her husband's insider trading deals on computer chips. #Taiwan\",\"1304\":\"Music For The #Summer #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\\n #kpssdeikincifetoskandali #CharlotteXRica #\\u0e1e\\u0e34\\u0e28\\u0e27\\u0e32\\u0e2a\\u0e06\\u0e32\\u0e15\\u0e40\\u0e01\\u0e21\\u0e2a\\u0e4cep10 #Taiwan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Pelosi #\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08 #\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08 #oesym #China #JacksonWang #explorepage #explore #indiemusic \\n\\nNow Out Worldwide\\ud83c\\udf0f https:\\/\\/t.co\\/2liLRM6tlC\",\"1305\":\"Feminist when they realize a woman will cause World War III \\nChina || WWII || #XiJinping https:\\/\\/t.co\\/AhTJ0ySCrx\",\"1306\":\"Research shows that just thinking about a Plan B\\ncan make it less likely\\nthat you'll achieve Plan A.\\n#Pelosi \\n#psychologyfact https:\\/\\/t.co\\/Raxmh0ZXgW\",\"1307\":\"Soon you wil come back and say I told you so \\n\\n#heartbreakonaweekend ep soon #yungskizzy #promphizy #Taiwan #China #YEEZYDAY #helicopter https:\\/\\/t.co\\/5JBEDQOcD7\",\"1308\":\"Time is not money. Dropping tonight. #Taiwan #Pelosi #over1.5 #knust https:\\/\\/t.co\\/Ah8fWjdhTv\",\"1309\":\"Click on The Link Below To Hire A professional web designer\\nGet it cheap for 10% discount\\nhttps:\\/\\/t.co\\/w9fxUoTjHc\\n#Soto\\n#Gallo\\n#Taiwan\\n#Happy Birthday Emily\\n#Dolphins\\n#China\\n#thatsmoney\\n#Dane Cook\\n#Alpine\\n#McLaren\\n#NO NICKI NO CAREER\\n#Yeezy\\n#MLBTradeDeadline\",\"1310\":\"I\\u2019m loving every bit of Beauty and Groovy \\ud83d\\udd25 the fights, the conversations, the makeups, affections etc! Nothing can be more reality TV than this \\ud83d\\udc4c#Taiwan BBNaija\",\"1311\":\"Insecurity: My Solution Will Be Decisive And Immediate, Says Peter Obi https:\\/\\/t.co\\/o5wQdeTGtV https:\\/\\/t.co\\/ZkxAtQ2d0G\\n@NgLabour #Taiwan #China #Obidatti023 #PeterObi4President2023 https:\\/\\/t.co\\/alCbOqU2TQ\",\"1312\":\"Guys pls support what I love doing. Help like and retweet\\n\\n@fb: Ehizcomedytv @IG: ehizcomedytv\\n\\n#sabinus #Machala #Taiwan #PeterObiForPresident2023 #BBNaijaLevelUp #BBNaija7 #BAT2023 #China #helicopter #PremierLeague https:\\/\\/t.co\\/NhsBTtDwFP\",\"1313\":\"Bringers of tears: With Ukraine still boiling up, the war drums are beating up with China mobilsing the PLA. Something spectacular shaping up? \\n\\n#Ukraine #Taiwan #Pelosi #China\",\"1314\":\"Azal's freestyle session...\\nHappiness&Joy.\\n5. Destiny\\n\\n@davido @burnaboy @patorankingfire @yemialadee @PeterPsquare @rudeboypsquare @DONJAZZY @mreazi\\nASUU Agbado #Hermes #Taiwan #YEEZYDAY #BBNajiaS7 #BBNaijaLevelUp #bbrightvc burna boy NO NICKI NO CAREER SHE's 40 https:\\/\\/t.co\\/Ze5IxvlGee\",\"1315\":\"Sometimes all you need is to get high and vibe \\ud83e\\udd42\\n\\n#WWIII #helicopter #ASUU #bbnajia\",\"1316\":\"FOR SALE SERVICED 5 BEDROOM DETACHED HOUSE WITH A ROOM BQ.\\nLocation: Orchid road, Lekki Lagos \\nPrice: 95M\\nFeatures:\\n- All rooms En-suite \\n- 24hrs electricity \\n- 24hrs security \\n- Cctv Camera \\n- Fitted kitchen \\n- Jacuzzi \\nCall\\/WhatsApp 08154029096\\n#Igbo #lekki #Lagos #Pelosi https:\\/\\/t.co\\/V2ui30jamm\",\"1317\":\"Education is the passport to the future, for tomorrow belongs to those who prepare for it today.\\n #ObiDatti2023 @PeterObi\\n@NgLabour #Taiwan #China #BBNajiaS7 #Obidatti023 https:\\/\\/t.co\\/Kovj709BMT\",\"1318\":\"Amazing Summer Time for building digital safety awareness for kids in Kano.\\n#digitalsafety\\n#internetsafety\\n#technology\\n#edunovativeconceptng\\n#smartclicksng\\n#Taiwan #Pelosi #China #JacksonWang https:\\/\\/t.co\\/8Xu2ljAYTk\",\"1319\":\"President Obama World War III Asamoah Gyan Nana Addo BREAKING NEWS #XiJinping Waakye China Africans Odoi\\nGhana Card phyna and amaka https:\\/\\/t.co\\/Mpvt8jWeV3\",\"1320\":\"This princess needs no prince fr\\ud83d\\ude02#Pelosi #helicopter #JacksonWang https:\\/\\/t.co\\/aQw7WbalFJ\",\"1321\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/LCSaSYlEaZ\",\"1322\":\"Hello there! Elite Star calling you to be part of our amazing projects that prevent child abuse. Come along and discover more about this topic on Instagram, facebook and LinkedIn!\\nWe are @NGOELITESTAR (Elite Star Foundation)!\\n#Taiwan #Pelosi #China #WorldWar3 #Africa #Italy\",\"1323\":\"I no fit do therapists o ,if I tell my own Clients my own story, na she go console me with breast \\ud83d\\ude00\\ud83d\\ude0c.\\n\\n#Bbnaija #Taiwan #Hermes #PeterObi2023\",\"1324\":\"In a world full of trends, I want to remain a classic\\ud83d\\ude29#Taiwan https:\\/\\/t.co\\/lp2xxqa7u3\",\"1325\":\"These days we should be earning and talking in dollars \\ud83d\\udcb0\\n\\nForex has been on your mind but you don't know where and how to go about it \\ud83d\\ude1e\\n\\nLearn the basics and technical analysis of Forex in the group below \\ud83d\\udc47\\ud83c\\udffc with just $40\\nhttps:\\/\\/t.co\\/pHFT0TbZNT\\n\\n#Taiwan #bbnaija #ASUU\",\"1326\":\"On #Pelosi visit to Taiwan... https:\\/\\/t.co\\/dkwjpnxd1V\",\"1327\":\"The truth is, any act of aggression; specifically between two super powers will cause a great havoc within the global economy and hence no one would dare to cause a World War III. I am not a security expert but that will have a dire consequences. #XiJinping Taiwan Pelosi\",\"1328\":\"Couple goals\\nTom x Zendaya. @desiadenyo97 x @CalinaMark \\n\\nWorld War III Asamoah Gyan Nana Addo BREAKING NEWS Taiwan\\n#XiJinping Africans China #helicopter https:\\/\\/t.co\\/qxUf8OEmum\",\"1329\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0|| World war III || Peter Obi || #Pelosi #Taiwan https:\\/\\/t.co\\/tqxgegF4it\",\"1330\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"1331\":\"Using Obituary on the said headlines is very wrong, I'm a journalist \\n\\n#Taiwan #helicopter #Lekki #Pelosi\",\"1332\":\"1 Peter 1:14\\nAs #obedient children, do not be conformed to the passions of your former ignorance.\\nIn other words, we have been passionate for the wrong tins and people, \\nNever again.\\n\\nMr. Peter Obi\\nDe gea\\n#WWIII \\n#obituary\",\"1333\":\"No Follows \\ud83d\\ude1e\\ud83d\\ude36\\nI hope something changes after this tweet\\ud83d\\ude1e #Taiwan\",\"1334\":\"@KarenBassLA @KamalaHarris You're honestly not alone on this topic. I have never been impressed by any leader like those duo since assumption of office. I prayed God's strength for them to do more for their nation. #Pelosi #Biden\",\"1335\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"1336\":\"How it started vs how its going\\n#Taiwan .... https:\\/\\/t.co\\/p1QUU5yEVY https:\\/\\/t.co\\/SQ7SoQkXfY\",\"1337\":\"We're getting bigger every day \\ud83d\\udd25\\ud83e\\udd75\\ud83e\\udd75Join the movement now!!!\\n#Ninjawarriorsfc \\n\\n#Taiwan #Pelosi #China #YEEZYDAY #LowerPassingRate #Kep1er https:\\/\\/t.co\\/VOuUsPJWID\",\"1338\":\"BREAKING NEWS\\n\\n@nanaaddookyere features @EugeneZuta on his maiden single AHENE MU HENE \\n\\nFollow @CBCInc_hypes\\n\\n#ClementAfreh \\n#HisVessel \\nBurna Boy Asamoah Gyan Waakye Renato Sanches Memphis Kwesi Arthur Nana Addo Shaw #Taiwan #China #helicopter #YEEZYDAY #Pelosi https:\\/\\/t.co\\/BFLWak5IhB\",\"1339\":\"Video Near the Grand Hyatt Hotel, where Nancy #Pelosi stay during #Taiwan visit.\\n\\n #PelosiinTaiwan #China #ChinaTaiwanCrisis #ChinaTaiwan #USA https:\\/\\/t.co\\/LM6VSMyzjG\",\"1340\":\"This one #WWIII is trending, what\\u2019s going on \\ud83d\\ude33\",\"1341\":\"Say no more\\nThe structure has been erected all over.\\nWorld War III ASUU #Taiwan #Pelosi https:\\/\\/t.co\\/900QcCpy8i\",\"1342\":\"Vacancy ! !\\u00a0 Vacancy ! !\\n\\u2022Senior Manager ( @DeloitteGhana )\\n\\n\\u2022For more information kindly send us a message\\n\\nKindly share this opportunity to individuals in your contact list.\\n.\\n#ghanajobs #ghananews #ghtrending #missmalaika22 #gmb22 #showbizgh #job #jobsearch #Taiwan https:\\/\\/t.co\\/jNCRtfsYxu\",\"1343\":\"Snail Farming | How To Sterilize Soil for Snail Farming | Complete Begin... https:\\/\\/t.co\\/I9yK4OCRbh via @YouTube\\n\\nKindly click on the link to be educated and inspired \\ud83d\\ude0a\\n\\nSarkodie #China #Pelosi Waakye Grammy SHES 40 Todd Boehly Chelsea Frenkies R2bees #helicopter #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Kep1er https:\\/\\/t.co\\/DDh6VrtdWh\",\"1344\":\"Iphone X very clean and sharp \\nStorage:256gb \\nPrice:145k \\nBattery:78%\\nFace ID : perfect \\n\\nPlease retweet \\u2764\\ufe0f\\ud83d\\ude4f\\ud83c\\udffb\\n\\nPhil jones lingard Dean Henderson Renato sanches Odoi #BBNajiaS7 #Taiwan https:\\/\\/t.co\\/xjsA30und4\",\"1345\":\"Sam Omatseye collecting it wotowoto from ObiDient supporters with Obituary posters. #Taiwan #Pelosi #China https:\\/\\/t.co\\/nSesxfnDTK\",\"1346\":\"Vacancy ! !\\u00a0 Vacancy ! !\\n\\u2022Investment Associate ( @GhanaTechLab )\\n\\n\\u2022For more information kindly send us a message\\n\\nKindly share this opportunity to individuals in your contact list.\\n.\\n#ghanajobs #ghananews #ghtrending #missmalaika22 #gmb22 #showbizgh #job #jobsearch #Taiwan https:\\/\\/t.co\\/uGMcyDN5DT\",\"1347\":\"\\ud83d\\udd25\\ud83d\\udd25Milan LongSleeves Shirts \\ud83d\\udd25\\ud83d\\udd25\\n\\n\\ud83d\\udd25\\ud83d\\udd25Available in different sizes \\ud83d\\udd25\\ud83d\\udd25\\n\\n\\ud83d\\udd25\\ud83d\\udd25Price : 75 cedis \\ud83d\\udd25\\ud83d\\udd25\\n\\n\\ud83d\\udd25\\ud83d\\udd25Dm to order \\ud83d\\udd25\\ud83d\\udd25\\n\\nAsamoah Gyan Waakye Welcome To Chelsea BREAKING NEWS Over 1.5 R2Bees Eeii gh5 Kumasi Odoi Nana Addo #China #Pelosi https:\\/\\/t.co\\/qwQ0nkqakn\",\"1348\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#Pelosi #Taiwan #China #JacksonWang #helicopter #YEEZYDAY #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/tqxgegF4it\",\"1349\":\"Oh leaders of the world,\\n\\nhear our cries. \\n\\nFrom miles away, we cry to bed. \\n\\nEconomies are crushing.\\n\\nJobs are being lost. \\n\\nLives too.\\n\\nProperties destroyed.\\n\\nWe cannot afford another escalation.\\n\\nPlease! Please!! Please!! \\n\\nHear our cries.\\n\\n#Taiwan #Peace\\n@UN @ghanamissionun\",\"1350\":\"I need a sugar Zaddy \\n@Obaji_007\\n\\n #Pelosi #China #JACKSONWANGxCartierTH #YEEZYDAY #tuesdayvibe #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/1alsIAGmpL\",\"1351\":\"\\ud83d\\udcdd \\ud835\\udc03\\ud835\\udc04\\ud835\\udc00\\ud835\\udc0b \\ud835\\udc03\\ud835\\udc0e\\ud835\\udc0d\\ud835\\udc04: @ManUtd have signed Tom Huddlestone on a free transfer.\\n\\nThe 35-year old will join the u21 squad in a player\\/coach role\\n\\n(Source: Manchester United\\n\\n#Taiwan #China \\nASUU\\/World War III\\/ Omo Agege\\/ #Rascism\\/ #WWIII\\/ Mr. Peter Obi #Lekki\\/ Deji\\/Governor\\/ Datti https:\\/\\/t.co\\/aLAPq2Ps0u\",\"1352\":\"Vacancy ! !\\u00a0 Vacancy ! !\\n\\u2022Sales Assistant ( @jobswithlois )\\n\\n\\u2022For more information kindly send us a message\\n\\nKindly share this opportunity to individuals in your contact list.\\n.\\n#ghanajobs #ghananews #ghtrending #missmalaika22 #gmb22 #showbizgh #job #jobsearch #Taiwan https:\\/\\/t.co\\/l2WiT7tNEA\",\"1353\":\"I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones. - Albert Einstein \\n\\n#WWIII #WorldWar3 #Taiwan #Pelosi #China #WW3 https:\\/\\/t.co\\/crUGc0k2UF\",\"1354\":\"Vacancy ! !\\u00a0 Vacancy ! !\\n\\u2022Delivery Personnel ( @jollykartgh )\\n\\n\\u2022For more information kindly send us a message\\n\\nKindly share this opportunity to individuals in your contact list.\\n\\n#ghanajobs #ghananews #ghtrending #missmalaika22 #gmb22 #showbizgh #job #jobsearch #Taiwan https:\\/\\/t.co\\/SlABzIMvPC\",\"1355\":\"Wow, what's happening for crying out loud. World War III\\n#WWIII https:\\/\\/t.co\\/6DEiwtv3NU\",\"1356\":\"God is great\\ud83e\\udd2f #Taiwan #Pelosi #helicopter #chatsekscerita #JACKSONWANGxCartierTH #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #YEEZYDAY #tuesdayvibe #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #NCT127 ,#SuperTuna_Jin #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a https:\\/\\/t.co\\/r7UJdM5Vc3\",\"1357\":\"Trending Video of Police Officer Beating Man With A Machete In Cross River\\n The video of a police officer assaulting a yet-to-be-identified man by hitting\\u2026\\n\\nhttps:\\/\\/t.co\\/y1caKEYuCw\\n\\nASUU #Taiwan #helicopter Racism IPOB #Datti\",\"1358\":\"Youths in Aba Stage Protests Demanding an End to Ebubeagu Militia in Igboland (photos\\/video)\\n Youths in Aba in Abia state this morning took to the streets to demand\\u2026\\n\\nhttps:\\/\\/t.co\\/NcqTO5kOSy\\n\\nASUU #Taiwan #helicopter Racism IPOB\",\"1359\":\"\\u2757\\ufe0fHere's a military comparison of China & Taiwan\\n#Pelosi #Taiwan #helicopter https:\\/\\/t.co\\/bdasAJa1dE\",\"1360\":\"High taper fade so clean\\ud83d\\udd25\\ud83d\\udc88\\n\\n#Pelosi #helicopter #chatsekscerita #JACKSONWANGxCartierTH #tuesdayvibe #YEEZYDAY #NCT127 #kpssdeikincifetoskandali https:\\/\\/t.co\\/CIOjlFCbwK\",\"1361\":\"We are good at what we do..\\n\\n#Pelosi #OmoAgege #Abuja-Kaduna #helicopter #Grammy #machala #Racism #foden #StartMount https:\\/\\/t.co\\/fZIwB0I43e\",\"1362\":\"Nancy Pelosi: Why I\\u2019m leading a congressional delegation to #Taiwan \\nWill Taiwan become China's #Ukraine\\ufe0f\\nhttps:\\/\\/t.co\\/IWCxu2HLYp\",\"1363\":\"Nigeria is broke because Nigeria is broken by Looters! \\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02\\n\\u00b0\\n\\u00b0\\n#chatsekscerita #kpssdeikincifetoskandali ASUU Mbaka World War III Omo Agege #helicopter #Taiwan #Pelosi #oesym #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a @Pres_Adebayo @atiku @edwinbushJnr https:\\/\\/t.co\\/GW42HxaUGK\",\"1364\":\"I need a female bestie here in Lagos\\n#Taiwan #Pelosi #JACKSONWANGxCartierTH #chatsekscerita #tuesdayvibe #BBNaija7 https:\\/\\/t.co\\/7XISsANW5B\",\"1365\":\"\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2dLIFE HARD \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d. #Taiwan #Trending\",\"1366\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/3sZQZxnKak\",\"1367\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/JoInBfSZQN\",\"1368\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/zNr4ata000\",\"1369\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/rYMBkaPkQH\",\"1370\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/Y3LUJdpeAc\",\"1371\":\"My sweet twins, am so blessed to have you in my life\\n\\nI want to thank you for all your love, you are my best friend I couldn\\u2019t have made it this far without you. I love you\\ud83d\\udc9c\\n\\nWe Rep August 06\\n\\nSignature pant @atwinsdesigns\\n#aneketwins #tuesdayvibe #atwinsdesign #Pelosi https:\\/\\/t.co\\/ehyeapFYxO\",\"1372\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/LLtQNjQfnc\",\"1373\":\"Safari crafted by @mickkycutz\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\nShop the look \\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\n\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n#Taiwan #kpssdeikincifetoskandali #BBNaija7 #YEEZYDAY #ambode https:\\/\\/t.co\\/kyfodThMnS\",\"1374\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/InPATnRTxc\",\"1375\":\"I am obident and yusful. What are you. #Taiwan #helicopter #OBIdientlyYUSful #Obidatti2023 #chatsekscerita\",\"1376\":\"The government in China are certainly not amused by the congressional visit to #Taiwan by its Speaker Nancy Pelosi. They have warned of 'consequences' following her visit. Meanwhile, the Chinese military are expected to conduct a 4-day exercise in the South #China Sea. https:\\/\\/t.co\\/vQBBaRizSE\",\"1377\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/8WGIbboap0\",\"1378\":\"Young Boy Who Stopped Gov @ProfZulum's Convoy To Shake His Hand Gets His Framed Picture Delivered To Him By The Gov's Aide\\n\\n#shellanayourmate #organicchemistry \\n#bbnaija\\n#Pelosi #ASUU #Omoagege #WorldWarlll #fabrizio #machala https:\\/\\/t.co\\/IIJkhdS1Dw\",\"1379\":\"Place your orders NOW and get it delivered as early as 10am tomorrow morning \\ud83d\\udcaa\\nBoli Reloaded delivers to anywhere in Akure \\ud83d\\udcaf\\n\\n#Taiwan #akure @adeleye_temmie @Akureevents @YemieFashMedia #futa #ondo #tuesdayvibe https:\\/\\/t.co\\/UYxgp6ZvVo\",\"1380\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/bVtPU0oPmE\",\"1381\":\"Track 10 \\\"Dirty secret \\\" cover for @burnaboy #lovedaminialbum \\n.still on the count down to the 19th track .\\nPls \\ud83d\\ude4f famz keep \\ud83d\\ude4f tag @burnaboy in the comments section \\n#sabinus #Taiwan @MI_Abaga @wizkidayo @DONJAZZY @DPRINCEMAVIN https:\\/\\/t.co\\/lYDHjtOK2B\",\"1382\":\"@MTNNG I beg you in the name of whatever you hold dear, stop insulting me!!\\n\\n#WWIII #SaheedBalogun #Taiwan https:\\/\\/t.co\\/gmg5Y1glGZ\",\"1383\":\"First show coming through soon \\n\\n#Taiwan #GreatReset #greatestshowman #greatcampbell #champagnebaby #drake #30bg\",\"1384\":\"How to Invest in a Food Truck &#8211; Tips for Getting Started - https:\\/\\/t.co\\/6fBkKNGnJu #Hosmer #Padres #Nats #Taiwan #Dolphins https:\\/\\/t.co\\/9lwlUKtDZw\",\"1385\":\"It's not what you know that matters, it's what you do with what you know that matters.\\n\\nSelah\\n\\n.\\n\\nSam Omatseye Reno #Tinubu #Lekki World War III #helicopter #Taiwan Racism #Pelosi #China Welcome to Chelsea Governor Lexus Pope Obidients #Obidatti023 Obituary ASSU #XiJinping Sega\",\"1386\":\"Could the Visit of US Speaker of the house #NancyPelosy blow up the flames of the already begun WW3?\\n\\n#Africa, #China, #Taiwan and #United States to suffer the consequences of one woman's decision \\ud83d\\ude2a\\ud83d\\ude25\",\"1387\":\"US Navy Ships near Taiwan.\\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/s8EVHXHeQu\",\"1388\":\"Top: #3,000\\nSkirt: #3,500 \\nBoth piece from lani_piece\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\n#China #Taiwan #tuesdayvibe https:\\/\\/t.co\\/xwkwF6pzK4\",\"1389\":\"FOR SALE\\n\\n\\u2666\\ufe0f An Uncompleted 6bedroom Duplex Mansion On a Land Measuring *1039sqm* in a Gated & Serene Estate.\\n\\n\\ud83d\\udccdLocation: Abatakan Estate, Ojoo, Ibadan (Just 5mins Drive From Ojoo Roundabout)\\n\\nTitle: Red Copy Survey, Approved Building Plan & Agreement\\nPrice: \\u20a630million #Taiwan\",\"1390\":\"Why is Hermes trending everywhere?\\n#WWIII\",\"1391\":\"Waiting for earnings on\\n$EBAY $MP $PLTR $RBLX\\n$ORGN $PYPL $CLX\\n\\nLet's see if anything happens with this #Pelosi #Taiwan incident\\n\\nIf I don't post anymore you know what happened LOL\",\"1392\":\"It's Tomorrow guys, let's follow live on zoom @ https:\\/\\/t.co\\/Rzn4pbYszl and Facebook @wtpnigeria \\n#Pelosi #Taiwan #chatsekscerita https:\\/\\/t.co\\/XLK8mXSAGJ\",\"1393\":\"Good woman Dey hard to find, hold the good one you have tight \\ud83d\\ude09\\n\\n#Taiwan #chatsekscerita #helicopter #Pelosi #JACKSONWANGxCartierTH #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 # https:\\/\\/t.co\\/m71TwAoEWS\",\"1394\":\"#Taiwan fires warning shots at #China Air Force jets\",\"1395\":\"Forget about the pretext that Ukraine is not a NATO member, but if I were #Taiwan, I\\u2019d be very concerned having to rely on the #USA\\u2019s support to provoke a conflict with #China.\\n\\n...1\\/2\",\"1396\":\"Pope Francis said\\\" whoever approaches the church must find open doors and not fairs of faith\\\"\\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha https:\\/\\/t.co\\/hR4kZxxeQH\",\"1397\":\"In case you ever wondered how big an eagle\\u2019s talons are. \\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha \\n#Lekki \\n#WizKid\\ud80c\\udcf5 \\n#chatsekscerita https:\\/\\/t.co\\/rOWH1F4sUj\",\"1398\":\"The idea is to die young as late as possible, live smart!\\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha \\n#Lekki \\n#WizKid\\ud80c\\udcf5 \\n#chatsekscerita https:\\/\\/t.co\\/4gnSBIXGVm\",\"1399\":\"7in1 SILKY LOUNGE WEAR IN SIZE 8 TO 14\\/16 FIT\\nPrice -6500\\nLocation -Lagos\\nDM or whatsapp 09136740660\\n\\nIlebaye ASUU world War lll #BBNaija #Wizkid #Taiwan #samkwe China saheed Balogun pelosi Lagos Reno Tinubu Amen Hermes kihaild Alonso Obituary Happy New month #ToyinAbrahamkiddies https:\\/\\/t.co\\/ufN2U1k95E\",\"1400\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#China #Taiwan #Pelosi #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BBNajiaS7 https:\\/\\/t.co\\/85u9VNvn5s\",\"1401\":\"The #Lekki toll gate wasn't a good experience, we saw hell loosed against us\\nBut\\n\\nThe #Yorubas \\/ #yoruba survived\\nThe #igbos Survived\\nThe #North survived\\nThey say Emi lokan, no sir\\nIts our turn to pay you back, we still have our scars\\ud83d\\udcaa\\n#OBIDIENTS \\/ #IPOB \\/ #Reno \\/ #Pelosi https:\\/\\/t.co\\/psWDUaimY4\",\"1402\":\"This BBC documentary will reveal to you more things than we really know. @SavvyRinu @PeterPsquare #Taiwan #WorldWarIII https:\\/\\/t.co\\/8bsqiolcDu\",\"1403\":\"Taking advantage of the #sun \\u2600\\ufe0f\\n#KNUST #helicopter #Taiwan #tuesdayvibe https:\\/\\/t.co\\/JUHW0TigVl\",\"1404\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#Taiwan #Taiwan #Pelosi #China #USA https:\\/\\/t.co\\/tqxgegF4it\",\"1405\":\"I sha know day for this wars no body go force me carry gun for their yeye egocentric battles... Na the ripple effects just dey pain me cos of the kind country person dey ... #WW3 #WWIII\",\"1406\":\"\\ud83c\\uddf3\\ud83c\\uddecJUST FROM NIGERIA (IGBO BOY)\\ud83c\\uddf3\\ud83c\\uddec\\nNO WAHALA TO DISPLAY \\ud83d\\ude0c\\n#Taiwan #Pelosi #China #helicopter #tuesdayvibe #tuesdayvibe #chatsekscerita #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #kpssdeikincifetoskandali #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #GoldMedal #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #kpssdeikincifetoskandali #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #GoldMedal #Prabhas https:\\/\\/t.co\\/bcawOh7ghe\",\"1407\":\"Beautiful Bride vibing to @Omah_Lay s \\u201cWOMAN\\u201d\\nFrontal wigged,installed and styled to perfection!\\u2665\\ufe0f\\ud83e\\udd70\\n\\n#Pelosi #BigBrotherNaijaS7 #ASUU #BigBrotherNaija #Rufai #Ilebaye #tuesdayvibe #saheedbalogun #PeterObi4President #tinubu https:\\/\\/t.co\\/1XSoCGB8rM\",\"1408\":\"Cheers\\ud83e\\udd42 to new blessing in this new month #Pelosi happy new month https:\\/\\/t.co\\/b6J542Frck\",\"1409\":\"#Crypto INSTITUTIONAL INVESTORS IN EUROPE ONLY TOTALS AROUND 4% #Bitcoin #Taiwan\",\"1410\":\"Always grinding \\ud83d\\udcaf#helicopter #Taiwan #WWIII #tuesdayvibe #BBNajiaS7 https:\\/\\/t.co\\/UJOaoSnhH4\",\"1411\":\"Everyone saying they want ASUU to call of strike, because, they are tired of home. \\ud83d\\ude02 I can\\u2019t relate, because, I have been away from home for 2 YEARS now and I am sure I am not going back soon \\ud83d\\ude02 I just want to graduate and focus on my art #Taiwan #ASUUstrike #ASUU #WWIII #Pelosi\",\"1412\":\"I only wanted to read my newspaper o\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 Why are they running? Prank\\ud83d\\ude02\\ud83d\\ude02 @Naija_PR @KraksTV @yabaleftonline \\n #Taiwan #helicopter #tuesdayvibe #GoldMedal #ISAC2022 #Pelosi #Trending https:\\/\\/t.co\\/PKOrCb2wOK\",\"1413\":\"\\u201cI do not know with what weapons World War III will be fought, but World War IV will be fought with sticks and stones.\\u201d \\u2013 Albert Einstein.\\n\\n#WWIII\",\"1414\":\"If after all this patience, I don\\u2019t eat the fattest bone, problem go dey oh\\n\\n#Pelosi #helicopter\",\"1415\":\"We don overcome COVID-19 pandemic now na to face World War III.\\ud83d\\ude05\\ud83d\\ude05\\ud83d\\ude05#Taiwan #China\",\"1416\":\"Learn a Tech skill at our Ikorodu Centre\\n\\n\\ud83d\\udccdInteractive classes\\n\\ud83d\\udccdOne - on- One Trainings\\n\\ud83d\\udccdFree Internet Access\\n\\ud83d\\udccd6 weeks\\n\\ud83d\\udccdTraining materials\\n\\ud83d\\udccdAccess to Our online Community\\n\\nVisit: https:\\/\\/t.co\\/GfSa10O7eC to get started\\n\\nIkorodu. World War III. #Pelosi https:\\/\\/t.co\\/qa4UTeJU4R\",\"1417\":\"Meanwhile the KYC passing rate of Chinese Pioneers is only around 1%-5% of the domestic Recorded. Once 80% of Chinese migrate to mainnet, the global barter market will explode. #PiNetworkUpdates #Pinetwork #Pionners #Taiwan #Stopsellingpi\",\"1418\":\"IPHONE 12 PRO MAX \\n\\n\\u2705STORAGE:128GB \\n\\n\\u2705PRICE: N500,000\\n\\n\\u2705UK USED \\n\\n\\u2705Dm\\/Call :07032655719 \\n\\n\\ud83d\\udccdKADUNA\\n\\nDelivery Nationwide.\\n\\nMbaka | Obidients | \\\"Sam Omatseye | Onitsha | \\\"World War III | #Tinubu | #Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 Reno Abati https:\\/\\/t.co\\/1CoGL7BvNu\",\"1419\":\"God bless all hustling young men who wants to go into marriage \\ud83d\\ude4f\\ud83d\\ude4f\\n\\n#Lekki Mbaka #helicopter Onitsha #Taiwan #Pelosi #China # https:\\/\\/t.co\\/ciSc0yx3ED\",\"1420\":\"IPHONE 12 PRO MAX \\n\\n\\u2705STORAGE:128GB \\n\\n\\u2705PRICE: N500,000\\n\\n\\u2705UK USED \\n\\n\\u2705Dm\\/Call :07032655719 \\n\\n\\ud83d\\udccdKADUNA\\n\\nDelivery Nationwide.\\n\\nMbaka | Obidients | \\\"Sam Omatseye | Onitsha | \\\"World War III | #Tinubu | #Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 Reno Abati https:\\/\\/t.co\\/DCUApG0DFj\",\"1421\":\"Let\\u2019s save this here \\ud83d\\ude42 Okeey_m\\u2019z Arts \\n#Taiwan #China #tuesdayvibe #art #artists #Pencildrawing #pencilsketch @m_ekeonuoha @abramopex1 @DrawsLa @penpencildraw https:\\/\\/t.co\\/aihFMPNCZb\",\"1422\":\"Do you love snkrs at first site \\u263a\\ufe0f\\ud83e\\udd29\\n\\nSize 40-45(N34,000)\\nSend Dm\\/WhatsApp : 08055307790\\n\\n#Taiwan | Rufai | Sabinus | Amaka and Phyna https:\\/\\/t.co\\/7jOk7acoqF\",\"1423\":\"The Chelsea have reached an agreement of signing the 18yrs old Carney Chukwuemeka! Done deal just completed. \\ud83d\\udea8\\ud83d\\udd35 #CFC @FabrizioRomano\\n#football\\n#CharlotteXRica #kpssdeikincifetoskandali #Pelosi #GoldMedal #China #Taiwan #tuesdayvibe https:\\/\\/t.co\\/ZoTNCbIJln\",\"1424\":\"#Taiwan is apart of #China. Nobody can deny it\",\"1425\":\"I had a girl that was a tattoo artist \\ud83c\\udfa8.... and man don't have tattoo till date. \\ud83d\\ude07\\n#GoldMedal #Pelosi\",\"1426\":\"Welcome to Starfield Montessori School, where we work to actualize the full potential of every child to help create more fulfilling lives and a better society for all.\\n\\n#Taiwan #helicopter #tuesdayvibe #China #Pelosi #ISAC2022 #GoldMedal https:\\/\\/t.co\\/zuXp3ZbI1A\",\"1427\":\"More than 20 #Chinese military planes enter Taiwan's airspace on day of Pelosi visit: Taipei\\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan\",\"1428\":\"Nancy Pelosi took a different route via Philippines and not south China\\u2019s route to avoid PLA\\u2019s interception\\n\\n#Pelosi #Taiwan #China #Liveupdates #USA #ChinaTaiwanCrisis #NancyPelosi #Biden #XiJinping https:\\/\\/t.co\\/4ywqop01W7\",\"1429\":\"God is still in the business of helping people.\\n\\nYou believe? Retweet, let people see your unapologetic bias towards God's faithfulness. \\n\\n#Taiwan #Pelosi #helicopter #China #tuesdayvibe #chatsekscerita #ISAC2022 #GoldMedal #Prabhas #kpssdeikincifetoskandali\",\"1430\":\"Phyna and Amaka #phynaamaka #phyna #amaka #BigBrother #bigbrother24 #BB24 #Trending #Pelosi #China #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/bGUuuACmdc\",\"1431\":\"RIP \\ud83e\\udea6 Wakye \\ud83d\\ude4f\\ud83c\\udffd\\n\\n#Pelosi #tuesdayvibe #OneMuzikGh #OneMuzikGhHype https:\\/\\/t.co\\/aQs9X4makk\",\"1432\":\"Footwear concept\\n#Taiwan #tuesdayvibe #GoldMedal #industrialdesign #Internshipopportunity #conceptart #productdesign #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #designer https:\\/\\/t.co\\/cVic8gLlWa\",\"1433\":\"Happening now in Umunuko Ukpor Nnewi South local government of Anambra state. \\nThere is an exchange of fire between the Unknown gunmen and Ebubeagu. @CCSoludo #Taiwan #BBNaija https:\\/\\/t.co\\/tiD2f47UBX\",\"1434\":\"The epic session just wrapped #rethinkandgrowrich moderated by @PaulOMahony this marks my journey to financial freedom #taiwan \\ud83d\\ude00\\u270c\\ufe0f\\ud83d\\udcbc Lets GOOO. https:\\/\\/t.co\\/ZpFgTAF0PU\",\"1435\":\"Which one is easier to replace? The Girl friend or the business?\\n\\nRT for GF\\nLike for Biz\\n\\nMbaka | Sam Omatseye | Reno | Abati | #Taiwan #Pelosi #Tinubu #China https:\\/\\/t.co\\/lcVoMynzKS\",\"1436\":\"reminding Nigerians what the past 7 years have been from now till next year, just like Mr. Lai.\\n\\nMy business will solely be demarketing APC till they fade out of existence\\n\\n#helicopter #taiwan #WorldWar3\\n#PeterObi4President2023\",\"1437\":\"which means they fall back in their studies and often drop out of school.\\n#hausas #SamOmatseye #worldwarlll #XiJinping #CaridadCharityFoundation #Tinubu #Russia https:\\/\\/t.co\\/QzuQjORJZR\",\"1438\":\"How can you leave your Child and party for 6days.\\nAnd now the child dies due to Starvation. Women!! Enjoy your jail terms #Taiwan #Pelosi #China #dontpayuk #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #BORNPINK #helicopter #tuesdayvibe #bachelorette #GoldMedal https:\\/\\/t.co\\/wrBwXCBU1g\",\"1439\":\"#Deborah: Gov Tambuwal Receives Unrest Investigation Report, Considers Reopening College |LAGOS EYE NEWS https:\\/\\/t.co\\/Qxsyz1y71O\\n\\n#helicopter BRT Lane #WorldWarIII US Air force #Tinubu #Taiwan #China #Terrorists #Rufai #ASUUStrikeUpdate #BBNaija\",\"1440\":\"What will China do to save face? They can't be seen to Sabre rattle only.. #Pelosi just stuck a finger in their nose #China #Taiwan\",\"1441\":\"I'm a graphic designer, tech enthusiast and a Hospitality expert. \\n\\nEnthusiasm for exceptional designs and keen eye for detail are my forte and I believe I take it a step further.\\n\\nI'm at your service. Kindly dm me, let's get started.\\n#GraphicDesigner #graphicdesign #Taiwan https:\\/\\/t.co\\/zn57X39Cdp\",\"1442\":\"Join Hit Game and earn 2881.4716 NGN ! Click on this link and sign up : https:\\/\\/t.co\\/ZVrecl12Br\\n\\n#Taiwan #Pelosi #China #dontpayuk #tuesdayvibe #assu #GoldMedal #Nigeria #helicopter #BORNPINK\",\"1443\":\"Me and my cartel on our way to banks, after state of emergency has been declared #WWIII https:\\/\\/t.co\\/IGfPS2hgII\",\"1444\":\"Nancy Pelosi lands in Taiwan. The U.S House Speaker arrived despite China's repeated warnings. \\n\\nChinese President Xi ordered the immediate closure of Taiwan airspace and deployed naval warships east of Taiwan\\n\\n#Pelosi #NancyPelosi #China #Taiwan #USTaiwan #WorldWar3 #ChinaTaiwan https:\\/\\/t.co\\/ez1KF3TssA\",\"1445\":\"\\ud83d\\udc48\\ud83d\\udc48\\ud83d\\udc48\\n\\ud83c\\udf89DON'T SLEEP \\nWAKE UP \\nCOLLECT YOUR MONEY \\ud83d\\udc83\\n#LevelUp #Giveaway #Taiwan #China #Pelosi #food #dontpayuk #lagos #August2022 #helicopter #tuesdayvibe #GoldMedal #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/yY9KxsoIA6\",\"1446\":\"\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f Such a priceless moment \\ud83e\\udd7a\\u2764\\ufe0f\\ud83d\\udc8d Can you relate? \\ud83d\\udcaf #RetweetPlease \\n\\ud83c\\udfac Party Slate\\n___________________________\\n\\ud83d\\udd34 Follow @gospelempiregh \\n______________________________\\n#GospelEmpireGh #StrictlyGospel #Taiwan\\n#dontpayuk #Pelosi #China #BORNPINK #chatsekscerita #GoldMedal https:\\/\\/t.co\\/xJCEmjUIic\",\"1447\":\"@SkyNews China right now https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"1448\":\"As an OBIdient or patriotic and concerned Nigerian, how many persons were you able to get to register for PVC? Be honest\\n\\n#Obidatti023 #Taiwan\",\"1449\":\"Our new wallpaper is out, to download it click on this link https:\\/\\/t.co\\/ApxYMDpYbH\\n\\n#adobeillustrator #Adobe #wallpaperdesign #Taiwan https:\\/\\/t.co\\/GT2cRzGWjm\",\"1450\":\"Boys: \\nmy pull out game is A1 after seeing the pregnancy test\\n\\n#Taiwan worldwarIII #China https:\\/\\/t.co\\/hw24ZmRrCM\",\"1451\":\"BREAKING:\\n\\n Kaduna Train Attack: 5 more passengers regain freedom 127 days after, 34 others still in captivity.\\n\\n#helicopter BRT Lane #WorldWarIII US Air force #Tinubu #Taiwan #China #Terrorists #Rufai https:\\/\\/t.co\\/UORpoe3ZY2\",\"1452\":\"Taiwan : will you stay ?\\n\\nUS :\\n\\n#XiJinping #Taipei #WWIII https:\\/\\/t.co\\/GJ1GzU7jGV\",\"1453\":\"@carterefe__ @wizkidayo @wizkidfc_ \\nNO 1 on all platforms watch out \\u270c\\ufe0f\\u270c\\ufe0f\\u270c\\ufe0f\\u270c\\ufe0f @carterefe__ grace boy #China #Pelosi #Taiwan #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558 # https:\\/\\/t.co\\/QV20BAgK9G\",\"1454\":\"People cheering in front of Pelosi convoy to welcome Nancy Pelosi in Taiwan. \\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/P2uLzsGYPc\",\"1455\":\"Isn\\u2019t it funny how almost every trend you open on this app you must see an obident repping the brand \\ud83d\\ude3b\\ud83d\\ude3b #Pelosi #PeterObi4President2023 #Obidatti023\",\"1456\":\"SEND US A MESSAGE IF INTERESTED IN TODAY FIXED AND HOW TO JOIN VIP PLATFORM\\n\\nADMIN \\ud83d\\udc68\\u200d\\ud83d\\udcbc @sure_odds11\\nWHATSAPP @ +2347014625067\\n\\n#tuesdaymotivations #tuesdayvibe #LOONAinLA #ProvamedxGulf #Guerrilla1stWin #ENGGER #AlQaeda #abstorm #ISAC2022 #Taiwan https:\\/\\/t.co\\/w6lPhMSlfV\",\"1457\":\"What is happening in china Today ?\\n\\n#Taiwan #China #NewProfilePic #massageinRiyadh #massage_vip_riyadh #realestate #TikTok #Hi #Padres #thatsmoney https:\\/\\/t.co\\/MoJu2j7Qas\",\"1458\":\"@ILRUSSO1 Chinese invasion is imminent. I believe Taiwanese have been receiving distrubing intelligence from the US on China's buildup. This development has induced the frequent drills held in Taiwan. Hmmm!! God save our world. #WWIII\",\"1459\":\"Be shameless about your craft. \\n\\nYou will not labour in vain.\\n\\n#BeautyWithBrains \\n#cubana \\n#Tinubu \\n#Pelosi \\n#Taiwan \\n#China https:\\/\\/t.co\\/7RaExlFZdy\",\"1460\":\"#NewNFTProfilePic NFT by Via @AsyncArt MINT YOURS FOR ONLY 0.0099 ETH!!! https:\\/\\/t.co\\/NPai9pIu8o #NFTCommmunity #NFTMintAlert #Pelosi (sorry but it\\u2019s trending and I could use the \\ud83d\\udc40) https:\\/\\/t.co\\/X7gsur3N0k\",\"1461\":\"HOTEL FOR SALE\\nLocation: ilaje mobil road ,before ajah under bridge ,lagos,Nigeria \\n\\nContact boprinhomes 07038995709\\/\\/enquires #FYP #tiktok #Taiwan #China #dontpayuk #tuesdayvibe #helicopter #RealEstate #realestateinvestor https:\\/\\/t.co\\/zQAIZsAEgs\",\"1462\":\"Better served hot \\ud83d\\ude0a follow @Imkwesi_\\n\\n#Ghana #Ukraine\\n#Taiwan #Pelosi #BambamSorry #abstorm #chatsekscerita https:\\/\\/t.co\\/nkgeEcubJC\",\"1463\":\"@SpeakerPelosi @washingtonpost The world should be free from autocratic ruling. Good steps https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"1464\":\"LOVE AND LIGHT\\u2764\\ufe0f\\ud83d\\udca1#Taiwan #BBNaija #viral https:\\/\\/t.co\\/tffyAASECh\",\"1465\":\"@SpeakerPelosi @washingtonpost China right now \\ud83d\\udc94 https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan ##Taipei\",\"1466\":\"BREAKING: China announces military drills encircling Taiwan 4th-7th \\n\\nThe key to all of this is the question..\\n\\nHOW DOES THE US MAINTAIN ITS GLOBAL HEGEMONY?\\n\\nSimple: weaken countries that can challenge it\\n\\nInvite\\/instigate Russia and China to a long enduring war. #Pelosi Xinping\",\"1467\":\"Loading of Longspan Aluminium Roofing Sheet to Pako Aguda Surulere Lagos State\\n\\nColour: Bush Green\\n0.55mm \\nWorld War III Saheed Balogun Ikorodu Xi Jinping Us Air force #Wizkid #Taiwan #China #helicopter #tuesdayvibe\\n#Whatsapp 08085310359\\nWATCH VIDEO HERE \\ud83d\\udc49\\ud83c\\udfff\\ud83d\\udc49\\ud83c\\udfff https:\\/\\/t.co\\/YMk2Mn69cr\",\"1468\":\"Which of these teams will win the EFL cup next season?\\n\\n> Manchester City\\n> Chelsea FC\\n> Liverpool\\n> Manchester United\\n> Arsenal\\n\\nNo acct?\\nSign up \\ud83d\\udc49 https:\\/\\/t.co\\/C1Qdss0pAK\\n\\n#NaijaBet #Pelosi #Taiwan #BambamSorry https:\\/\\/t.co\\/csNNINnmIS\",\"1469\":\"@SpeakerPelosi arrived in Taiwan.\\n#Taiwan \\n#WorldWarIII \\n#US \\n#China https:\\/\\/t.co\\/ivpyHUQNnb\",\"1470\":\"\\ud83c\\udf99\\ufe0f Statement by \\ud83c\\udde8\\ud83c\\uddf3#China's Ministry of Foreign Affairs on #Pelosi's visit to #Taiwan. \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/5VkHoMn9go\\n\\n#OneChina #USA #Congress #PelosiVisit #UNGA #UnitedNations https:\\/\\/t.co\\/b1rJctznfa\",\"1471\":\"Me imagining how terrific World War III be. \\n#Taiwan #China #Pelosi https:\\/\\/t.co\\/HhiXO7ZmPy\",\"1472\":\"When other countries are boasting over military strength, what does Nigeria boast off?\\nRather Nigeria boast of eaten 'Agbado' in the morning and cassava in the Evening.\\n\\nIf e sub I go dey Gamez Planet dey chill\\n\\n#WorldWarIII #zackorji #China #Taiwan #PeterObiForPresident https:\\/\\/t.co\\/TdmyUy3XBp\",\"1473\":\"5thAugust6, #Stonebwoy, #Nana Addo,#Ashanti Region,#Black Stars, #Shatta,#Hearts of Oak,#Taiwan, #Ghana Card,#FixtheCountry,#Benjamin Azamati,#Reece, #KNUST, #Kwesi Arthur, TD Jakes\\u2019 Church Half-empty After Pastor Kept Disrespecting Black Women https:\\/\\/t.co\\/SvtTJHkFyR\",\"1474\":\"@firstladyship OBIdient Comrade Well Spoken #Taiwan #China #BBNaija #BBNaija7 #BBNaija7 #BBNaija2022 https:\\/\\/t.co\\/zkX2Sbg0bN\",\"1475\":\"US : WE ARE WITH YOU \\n\\n#WWIII https:\\/\\/t.co\\/6pzyCrCJWe\",\"1476\":\"@SpeakerPelosi @aaakhigbe Thanks Nancy! I am no fan yours, since I largely subscribe to Bernie's democratic socialism especially in health care, while still being a supporter of capitalism. However, I am advocate for democracy and freedoms. Thanks for standing up to the bullies. #Taiwan!\",\"1477\":\"Fight Videos You Missed\\ud83e\\udd4a\\nNever mess with an angry woman\\ud83d\\udcaa\\ud83d\\udd25\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa #helicopter https:\\/\\/t.co\\/ibD6jbcgbc\",\"1478\":\"@business China is fulfilling its promise https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"1479\":\"Available As Seen..\\nWhat You See,Is Always What You Get\\ud83d\\udc4c\\ud83c\\udffe\\nDm https:\\/\\/t.co\\/eIYo6IOEWV\\n\\nWorld War III #Tinubu Nkem Owoh Saheed Balogun BRT Lane Okowa Mr Bayo Pharmaceutical Groovy Rescue Nigeria Khalid Reno #BBNajiaS7 Lagos Sam Omatseye #Taiwan Ikorodu China https:\\/\\/t.co\\/1X3rwlfzDm\",\"1480\":\"But honestly I what to ask\\n\\nWhat's the US interest in #Taiwan ??\\n\\nThey seem bored if they don't cause commotions\\n\\nSmh \\ud83d\\udeb6\\ud83d\\udeb6\\ud83d\\udeb6\",\"1481\":\"Fight Videos You Missed\\ud83e\\udd4a\\n\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa #helicopter #SuperTuna_Jin #tuesdayvibe https:\\/\\/t.co\\/XigzZJDjZT\",\"1482\":\"it's cool to pocket 5m and support who ever one wants. this is democracy. But remember 'the country our fathers abused yesterday is taking its revenge on us currently & d country we abuse today will take its revenge on our children'. \\n#Taiwan\\n#China \\n#Obidatti023 https:\\/\\/t.co\\/ROTOrsvY71\",\"1483\":\"WE NEVER FORGET\\nSorrow Tears And Blood\\ud83e\\udd7a I love Fela\\n\\n#EndSARS #helicopter ASUU Rescue Nigeria #Taiwan #Tinubu #wike #peterObiForPresident #pelosi https:\\/\\/t.co\\/2KNksCfwdg\",\"1484\":\"Videos You Missed\\ud83e\\udd4a\\nThis girl child will definitely beat me to death\\ud83d\\ude2d\\ud83c\\udfc5\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa https:\\/\\/t.co\\/65H2indrwE\",\"1485\":\"BREAKING: China Sends Huge Numbers Of Arm Forces to Fujian Province Off The Coast Of Taiwan, Ahead Of Nancy Pelosi's Expected Visit To The Island. Meanwhile,U.S. Army Has Deployed Warships Near Taiwan. Is About Going Down Bloody If Care Is Not Taken. #Taiwan https:\\/\\/t.co\\/T7kgQYTzJ8\",\"1486\":\"Fight Videos You Missed\\ud83e\\udd4a\\nAbsolutely wow \\ud83d\\ude32\\nImagine dying from being stupid\\n\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette https:\\/\\/t.co\\/wGq0ra4JHP\",\"1487\":\"Money \\ud83e\\udd7a\\ud83d\\udcb0@carterefe__ @wandecoal @davido @wizkidayo @burnaboy @DPRINCEMAVIN @Omah_Lay @DONJAZZY @mreazi @Mayorkun @sydney_talker @SympLySimi @adekunleGOLD #badmanstoney #Taiwan #dontpayuk #asuu #EndSARS #helicopter #China #HuntedAU #tuesdayvibe #bachelorette https:\\/\\/t.co\\/JoHhIzFS0J\",\"1488\":\"\\ud83d\\udcb0\\u2714 If you stake \\u20a65000 on Nacional \\n\\n \\ud83d\\udcb8 NaijaBet will pay you \\u20a69,700\\n\\n\\ud83d\\udcb0\\u2714 If you stake \\u20a65000 on Atletico GO, you will get...\\n\\n\\ud83d\\udcb5 \\u20a620,500* on NaijaBet\\nPremier league #Pelosi #China #tuesdayvibe # https:\\/\\/t.co\\/24V0Z563Hz\",\"1489\":\"@BBCWorld, please tag the Professor in Singapore who spoke this morning on your channel that the Speaker visited #Taiwan. He suggested the Speaker was interested in the headlines in the news and nothing more. We're discussing #democracy not #autocracy.\\n\\nHe should revise his notes https:\\/\\/t.co\\/B48wtqVt4x\",\"1490\":\"Women's Commissioner for Stubborn Academy in the West...\\ud83d\\ude02\\ud83d\\ude02\\n\\n#Taiwan \\n#ChinaTaiwan https:\\/\\/t.co\\/yqZpgQAKAT\",\"1491\":\"Am olamzy Richie #NewProfilePic #Taiwan #China #dontpayuk #worldwide #Tembisa https:\\/\\/t.co\\/mC1IGTqxZN\",\"1492\":\"Eeii @mensah_jackline say she dey fear Poverty pass Death. What is your greatest fear ? \\ud83d\\ude31\\n\\n#luckytripgh #outnow #blackstars #godabeg #knust #chelsea #dumfries #akure #chomzy #accra #ghana #china #Taiwan #dontpayuk #helicopter #Tembisa #HuntedAU #BLACKPINK https:\\/\\/t.co\\/PxHuMMIWCJ\",\"1493\":\"New @mreazi tomorrow #personalbaby am ready\\n#ASUUstrike #ASUUStrikeUpdate #Taiwan #Pelosi #China #Wizkidfc #Machala\",\"1494\":\"Proscrow is coming with Real Estate solutions.\\n#Taiwan #ASUU #China #BambamSorry https:\\/\\/t.co\\/ut4fE6Z6FA\",\"1495\":\"A lot of people are really tired of the whole situation in this nation right now. \\ud83d\\ude02 \\ud83d\\ude02\\nThis is where we are now in #Nigeria #Taiwan #China #kpssdeikincifetoskandali #OBIDIENT https:\\/\\/t.co\\/YHkClDAdeG\",\"1496\":\"4 bedroom fully furnished house 4 sale at East Legon Accra Ghana #BBNaija #bbnajia #China #Pelosi https:\\/\\/t.co\\/JkFp5xv6m9\",\"1497\":\"The ball is in your hand, #China\\n#pelositaiwan #Taiwan\",\"1498\":\"Wow \\ud83d\\udc40. The world is a crazy place at the moment. #Taiwan #PelosiVisit https:\\/\\/t.co\\/odR1me7EVX\",\"1499\":\"#Pelosi china president has said they soon booming Taiwan \\ud83c\\uddf9\\ud83c\\uddfc down after the visit of pelosi hope it won't lead to World War III \\ud83d\\ude4f\",\"1500\":\"#Educational_Post\\nHere are few CandleStick Pattern which will be very useful to Understand the Chart For Analysis. #Btc #Crypto #helicopter\\nShettima Akure Thug Reno Racism Deji Burna IPOB Rescue Nigeria #Taiwan #China https:\\/\\/t.co\\/Dp6PmdnfRH\",\"1501\":\"Dream big, but start small; do what you can do at a time. You\\u2019re likely to get overwhelmed if you try yo do it all at once. \\n\\n#nigerianbusiness #fintech #startup #lagosnigeria #nigerian #smallbusiness #Pelosi #lagos https:\\/\\/t.co\\/IrHVBZAtGj\",\"1502\":\"Head UDC Project 075 Hainan in the South China Sea\\n\\n #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/SuqnCpdGVH\",\"1503\":\"@JohnRoss43 War is coming \\ud83d\\udc94\\ud83d\\udc94 https:\\/\\/t.co\\/pJlGwWfryx #China #Taiwan\",\"1504\":\"In Nigerian Politics as of today, there is a name above every other name. That at the mention of Peter Obi @PeterObi, every mouth must talk. However, either criticism or praise, we're on our way to Presidency. #GetIntoAsoRock\\n\\n#Akure #Pelosi #China Saheed Balogun Rescue Nigeria https:\\/\\/t.co\\/1omjHcInPM\",\"1505\":\"China- No matter how people like #Pelosi act to support #Taiwan island and contain China, they can't stop #China's reunification process. Reunification must and will be achieved: Taiwan Affairs Office of the Communist Party of China Central Committee\\n#NancyPelosi #pelositaiwan https:\\/\\/t.co\\/u3VHsLGAP0\",\"1506\":\"According to Nostrademe, After the end of #WWIII comes a Millenial peace reign on Earth.....\\nThe Biblical Account says of the Millenial reign of Christ after his return!!!!!\\nIs it safe to say #ChristJesus will return during the #WWIII?\\n#Nostrademe says WWIII will last 27 years!!!\",\"1507\":\"@RonnyJacksonTX In other news https:\\/\\/t.co\\/pJlGwWfryx #Taiwan\",\"1508\":\"PLA Eastern Theater Command to hold joint military ops around Taiwan, with joint maritime & air drills in N, SW,SE of island, long-range artillery shooting in #Taiwan Straits, & conventional missile test firing in sea regions E of island starting Tue night: spokesperson\\n#China https:\\/\\/t.co\\/BVOXlr4uF0\",\"1509\":\"Human Rights Watch says that Kenya's failure to hold police accountable for allegedly killing dozens after the 2017 elections heightens the risk of officers abusing their power.\\n#China #Pelosi https:\\/\\/t.co\\/mo8Q7t3wg2\",\"1510\":\"@Reuters War is coming \\ud83d\\udc94 https:\\/\\/t.co\\/pJlGwWfryx #China #Taiwan\",\"1511\":\"The White House said that #US House Speaker Pelosi's visit to #Taiwan is not a violation of #China's sovereignty.\\n\\n #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/KPehr8eDvd\",\"1512\":\"Nancy Pelosi is a woman of steel! For someone who visited Tiananmen Square a year after the now-famous incident and unveiled a banner against the Chinese government, her action isn't surprising.\\n\\nNothing else to say. #Taiwan\",\"1513\":\"@nexta_tv They are fulfilling their promise\\ud83d\\udc94\\ud83e\\udd85https:\\/\\/t.co\\/pJlGwWfryx #Taiwan #China\",\"1514\":\"@accessbank_help you guys are the worst bank on earth! I literally cant do anything with my bank account! I can\\u2019t recharge or make transfers and yet you debit me for nothing without my notice! I wont stop calling you out everyday! #Pelosi #China #dontpayuk #Guerrilla1stWin\",\"1515\":\"@Stargazer_28671 #Pelosi welcome home. Lol\",\"1516\":\"TRENDING: US House Speaker Pelosi arrives in #Taiwan despite warnings from China\\n\\nNancy Pelosi, the speaker of the US House, arrived in Taiwan on Tuesday evening after days of increasingly severe threats from China, which have escalated tensions between the two nations. https:\\/\\/t.co\\/OhafhnOHNP\",\"1517\":\"World War III: \\\"China threatened to start World War III if Nancy Pelosi goes to Taiwan. Well, now Pelosi is currently in Taiwan. Is China just bluffing?\\\" \\n\\n#WWIII #Pelosi #China\",\"1518\":\"@disclosetv In other news https:\\/\\/t.co\\/pJlGwWfryx #China #taiwan\",\"1519\":\"#WWIII: are China and US ready? \\n\\n#Pelosi #China #taiwanwar\",\"1520\":\"If you are in Port Harcourt city why not rush to Sky Bar Oh every Thursday for a sip & Gossip night starting this Thursday........ Come taste luxury #phcity #portharcourt #Machala #Wizkidfc #Davido #Pelosi #OBIDIENTS https:\\/\\/t.co\\/o5IYOG2cGu\",\"1521\":\"The Neo-cons are eager edging for full blown WW3, you\\u2019re welcome those that play with fire perished by \\ud83d\\udd25 #Taiwan\",\"1522\":\"NO CAPTION \\ud83e\\udd10 we couldn\\u2019t decide which one to \\u201cDelete forever\\u201d \\u2026help us decide guysss\\ud83d\\ude05\\n#superfmph #soup #foodie #mrbayo #China #ASUU #lekki #Pelosi #stoplying #BBNaija https:\\/\\/t.co\\/zOwwS1AqzK\",\"1523\":\"#BREAKING #China army will conduct \\\"important\\\" military exercises and training activities, including live-fire drills in six regions surrounding #Taiwan, from Thursday to Sunday, according to local media https:\\/\\/t.co\\/QmblcXb8XR\",\"1524\":\"Some foreigners be treating us like we are trash when we have everything in Nigeria to compete against them NAIJA is pure vibes na just Bad government kill amPLEASE SAY NO 2 BAT AND YES 2 PO let's most of the foreigners know we are Nigerians WE STAND STRONG #Pelosi Rescue Nigera\",\"1525\":\"@MrGenius_Tips 7.87 odds\\n\\nCode:772616\\n\\nNaijaBet edit \\ud83d\\udc47\\nPlay here https:\\/\\/t.co\\/UhahxGgEdG \\nPremier league #Pelosi https:\\/\\/t.co\\/lde207mcTI\",\"1526\":\"@MrGenius_Tips 7.87 odds\\n\\nCode:772616\\n\\nNaijaBet edit \\ud83d\\udc47\\nPlay here https:\\/\\/t.co\\/UhahxGgEdG \\nPremier league #Pelosi https:\\/\\/t.co\\/x6FJ08mKpH\",\"1527\":\"@MrGenius_Tips 7.87 odds\\n\\nCode:772616\\n\\nNaijaBet edit \\ud83d\\udc47\\nPlay here https:\\/\\/t.co\\/UhahxGgEdG \\nPremier league #Pelosi\",\"1528\":\"Have you seen this offer?\\n\\nSam Omatseye | US Air Force | phyna and amaka | Saheed Balogun | The Chinese | HERE WE GO | Tribalism | BRT Lane #China #Pelosi #BoycottRakshaBandhanMovie #dontpayuk https:\\/\\/t.co\\/wimkbaMp6p\",\"1529\":\"Greetings Nft Family,I Just Listed My New Artwork, A Hand Drawn Illustration Of Oshun, African Primordial Diety And Goddess On @opensea Stories Of African Leaders Collection. Check It Out https:\\/\\/t.co\\/ccGYRz7I1S @Attractbysight #NFT #Pelosi #NFTCommunity #100Devs #drawing #nftart\",\"1530\":\"Wow!! This is lovely.... \\n\\n#AmberHeardIsAMonster #Pelosi #AmberHeardIsFinished #JohnnyDeppIsALegend https:\\/\\/t.co\\/I695L4ShPk\",\"1531\":\"Always remember that people will always admire the flowers and fruits. \\n\\nOnly the tree knows what it did to deepen its roots and absorb nutrients. \\n\\nFocus on the process not the results. \\n\\n#Governor #Rufai #arisetv #SportyBet #BigBella #OKOWA #PeterObiForPresident2023 #Pelosi\",\"1532\":\"China should just give up on #Taiwan @ChineseEmbinUS\",\"1533\":\"Taiwan about to become another Ukraine \\ud83d\\ude43 #taiwan #Pelosi #China\",\"1534\":\"China will definitely take all necessary measures to resolutely safeguard its sovereignty & territorial integrity in response to the US Speaker's visit. All the consequences must be borne by US & the \\\"#Taiwan independence\\\" separatist forces: FM on #Pelosi \\n#China #pelositaiwan https:\\/\\/t.co\\/gfnLgQjAke\",\"1535\":\"There is only one person who can Rescue Nigeria, #Obidatti023 #OBIdientlyYUSful \\nPhyna and Amaka, Saheed Balogun, #Taiwan, #BBNaija #helicopter Ikorodu , Tinubu https:\\/\\/t.co\\/VdSai3EeOY\",\"1536\":\"Me waiting and Listening for china's next move as Pelosi arrives Taiwan. #China #Taiwan #Pelosi #WWIII https:\\/\\/t.co\\/XADV9AQJJl\",\"1537\":\"PLA will conduct important military exercises and training activities including live-fire drills in six regions surrounding the Taiwan island from Thursday to Sunday.\\n\\n #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/Ne1xXYczKB\",\"1538\":\"#DidYouKnow\\n#techfact \\n#TechTips\\n\\nOn April 1973, Motorola produced the first handheld mobile phone\\nand their first phone call was to their rival.\\n\\nAnd Motorola DynaTAC 8000x was the first commercial phone to be rolled in 1983\\/1984.\\n\\n #techblog #techie #Pelosi Rescue Nigeria https:\\/\\/t.co\\/HGSyOtnMaK\",\"1539\":\"Many APC members supporting Tinubu are secretly campaigning for Peter Obi.\\n\\nYou know some of them already.\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"1540\":\"Nancy Pelosi has touch down safely. What a woman!! #Taiwan #China\\n@CNNnews18 https:\\/\\/t.co\\/AhiUcTQdDK\",\"1541\":\"Taiwanese greet the arrival of @SpeakerPelosi with masks in the colors of #Ukraine \\n\\n #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/ES9Y70N49q\",\"1542\":\"@ABC Democracy over autocracy any day https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"1543\":\"Investments come and go, the market goes up and down, economies improve and crash.\\n\\nThe world is always handing you opportunities of a lifetime, everyday of your life, but all too often we fail to see them. But they are there.\\n\\n#Taiwan #China #Olaidemarketing\",\"1544\":\"What do APC & PDP supporters have against Peter Obi? \\n\\nNothing! Absolutely nothing! \\n\\nThe best you can hear is \\\"His supporters are rude\\\".\\n\\nYou left the man to hold his supporters? Are you alright?\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"1545\":\"In need Crowdfunding\\/Fundraising Setup and Manager who will help you get your crowdfunding campaign in front donors, people who will donate to your crowdfunding? https:\\/\\/t.co\\/ojVDaqT6Ck #Foreignfundingcase #Taiwan #\\u0635\\u0627\\u062f\\u0642_\\u0648_\\u0627\\u0645\\u06cc\\u0646_\\u0639\\u0645\\u0631\\u0627\\u0646_\\u062e\\u0627\\u0646 #AlQaeda #jhope #Biden #kabul #Ayman #PMLN https:\\/\\/t.co\\/qSXunCgTi2\",\"1546\":\"#helicopter #Akure #Taiwan #Pelosi Ikorodu BRT Lane #China \\nUs Air Force \\nCorrugation of Longspan Aluminium in progress!!\\nGuage:0.55mm\\nColor: Bush Green\\n\\nFor enquires #Whatsapp 08085310359\\nWATCH VIDEO HERE \\ud83d\\udc49\\ud83c\\udfff\\ud83d\\udc49\\ud83c\\udfff https:\\/\\/t.co\\/4j1dmJRcsL\",\"1547\":\"I woke up and scored goals \\ud83e\\udd76\\n\\n\\u201cI am not the sharpest knife in the drawer, but I\\u2019m sharp, and I\\u2019m in the drawer.\\u201d\\n\\n#football #footballplayer \\n#reborn\\n#star \\n#borntoplay \\n#roadtothedream\\n#soccer #soccerlife\\n#Pelosi https:\\/\\/t.co\\/wdeLiUudUm\",\"1548\":\"@SpeakerPelosi This is a good step forward. US speaker made the right call https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan #Taipei\",\"1549\":\"#NancyPelosi is now on the ground in #Taiwan \\n\\n#Taiwanchina https:\\/\\/t.co\\/iIZ4w36QCu\",\"1550\":\"Taiwanese delegation meets US House Speaker Nancy Pelosi at the airport where she landed for an official visit, marking the first time a speaker has been to the island since Newt Gingrich in 1997.\\n\\n #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/PBNkmGV8oI\",\"1551\":\"You will not know the evil that took place under Buhari and APC leadership unless we show it.. indeed \\\"Rescue Nigeria\\\" #PeterObiForPresident2023 #Pelosi #China #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/khWHTKmnVb\",\"1552\":\"United States House Speaker #NancyPelosi in Taiwan. #Pelosi has now landed in #Taipei, #Taiwan \\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/IlA3rcIYKP\",\"1553\":\"After all the threats, China does nothing to the plane carrying #NancyPelosi US speaker to #Taiwan. China is a weak country https:\\/\\/t.co\\/mymu8Wotml\",\"1554\":\"Ifb follow me\\n#Pelosi #JacksonWang\",\"1555\":\"#Pelosi landing in Taipei right now https:\\/\\/t.co\\/ihsBndA5XZ https:\\/\\/t.co\\/FZsh57rmlF\",\"1556\":\"When I hear Machala by @carterefe__ #Afrobeat #Machala #Pelosi #August2022 #BBNajia #BBNaija #BBNaijaSeason7 https:\\/\\/t.co\\/eXTzX8xHQk\",\"1557\":\"Brace Conference, the yearly tech conference for kids and teenagers is here again. Speakers will be dissecting the topic, Game Changer: Creating Avenue for Younger Generation to Thrive in Technology\\n\\nParticipation is free\\nRegister @ https:\\/\\/t.co\\/yFjK3XJD0l\\n\\n#coding #Pelosi #lekki https:\\/\\/t.co\\/TfEpOwszt4\",\"1558\":\"If PDP opposed the APC government as they are doing #PeterObi2023, APC wouldn't have had it so easy. They failed as an opposition.\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"1559\":\"Another woman \\ud83c\\uddf3\\ud83c\\uddec!!!\\n24 Year Old Miracle Izuchukwu Set To Make History As Youngest Female Pilot For Commercial Airlines. Just wow!!! #Trending #Pelosi #helicopter #JacksonWang #Obidatti023 #VoteThemAllOut2022 https:\\/\\/t.co\\/XRhDOqdGKn\",\"1560\":\"Music is pure Art Definitely\\u2764\\ufe0f\\ud83d\\ude01\\n\\n#Pelosi #politics\",\"1561\":\"After 25 years where no US leader has been able to visit Taiwan,the US House Speaker Nancy Pelosi lands in Taiwan even as China mobilises forces after warning.\\n\\n#Bitcoin experienced a bounce just as her plane touched down .Which stocks should we buy ?\\n#Taiwan #Pelosi #China\",\"1562\":\"Chinese Foreign Minister Wang Yi accused the United States of deliberately trying to create an incident in the Taiwan Strait.\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan\",\"1563\":\"A lot of things going on today\\n#China #Taiwan #Pelosi https:\\/\\/t.co\\/Ew5eZ1Fkee\",\"1564\":\"See reaction of the locals who came to the airport to watch the landing of the #Pelosi's plane.\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/fJ6XMMFoBO\",\"1565\":\"The democrats worried about being called chickens if Pelosi does not go Taiwan might very lead to #WWIII\",\"1566\":\"Breaking News A plane carrying speaker of congress Ms Nancy Pelosi lands in Taiwan #Taiwan #Pelosi #China https:\\/\\/t.co\\/Nf5jmVAtUC\",\"1567\":\"Amala that went to Harvard \\u2763\\ud83d\\ude0b\\n\\nIf you don't like amala you are missing a good thing \\ud83e\\udd2d\\ud83e\\udd70\\n#BellaOkagbue\\n#Rebellz #China #Pelosi #ISAC2022 #BBNaija https:\\/\\/t.co\\/tDgt2EQYyT\",\"1568\":\"Finally... The ball is in the PRC's court now. \\n\\nThe world awaits the big surprise from Xi. #Pelosi #Taiwan https:\\/\\/t.co\\/BKKeyAxwNd\",\"1569\":\"With all the threat and videos speaker Pelosi has landed in #Taiwan \\ud83d\\ude02\\ud83d\\ude02\\nNow what?\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\",\"1570\":\"Girls are seriously complaining about this pic, but why\\n\\n#Pelosi #China #BBNajia #BBNaija #BBNaija7 #helicopter https:\\/\\/t.co\\/OJmnM0SGwE\",\"1571\":\"Breaking News::\\n\\n#Pelosi lands in #Taiwan!!! https:\\/\\/t.co\\/UvWL9mhNB8\",\"1572\":\"Tinubu may have genuinely helped people who feel they owe him. But, if you truly love this man, you know he's not fit to rule a nation.\\n\\nHe really needs to look after his health.\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"1573\":\"The website of Taiwan's presidential office receives an overseas #CyberAttack\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan\",\"1574\":\"A must watch in order to get it right in 2023 election\\n#Taiwan #China The Chinese https:\\/\\/t.co\\/s6lXtlwBZP\",\"1575\":\"So #Pelosi landed safe and sound in #Taiwan. What\\u2019s next, #China? I love international politics\",\"1576\":\"Ladies And gentleman everything will be safe Nancy Pelosi arrived in Taiwan Airport safely so don't panic \\nI hope you're flight will be safe \\ud83d\\ude02\\ud83e\\udd23 \\n#Taiwan\",\"1577\":\"a hero #Pelosi !\\n(Who the F\\u2026 Is #XiJinping \\ud83e\\udd21?) #China #Taiwan https:\\/\\/t.co\\/oeQZZFnJhE\",\"1578\":\"Touchdown #Pelosi https:\\/\\/t.co\\/Isv0fNWq2f\",\"1579\":\"Why is he playing with his life? \\ud83d\\ude02\\ud83d\\ude02#makana\\n\\n#Taiwan \\nBurna \\nStamford Bridge \\nPogba\\nKotoko https:\\/\\/t.co\\/qbHYMgsMlY\",\"1580\":\"Taipei residents gather around \\\"Songshan\\\" Airport waiting for Pelosi.\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/OEd4FpVh4u\",\"1581\":\"Chill Afro vibe, hit me up let\\u2019s work \\n\\n#ASUU #BIGWIZ #Wizkidfc #BBNajia #BBNaijaSeason7 #helicopter #Taiwan https:\\/\\/t.co\\/9IBK8acoor\",\"1582\":\"Finally Nancy #Pelosi arrived in Taiwan.\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/tC6L7Hm4gB\",\"1583\":\"Confirmed.. Mama Pelosi plane has landed at Taipei international airport, Taiwan. China what next? \\n#Taiwan https:\\/\\/t.co\\/oIpu4sjFkh\",\"1584\":\"$Waves had a fake breakout. Simply why I suggested you wait for a retest under 1D. #btc #cryptocurrencies Rescue Nigeria Hermes #Taiwan WWIII African Giant Thug Mr. Bayo Burna #StopSellingPi Phyna and Amaka Saheed Balogun Lexus Racism #Pelosi Wizkid Kane\",\"1585\":\"Strategically China will not engage. #Pelosi\",\"1586\":\"Pelosi plane about landing in Taipei... It's about to go down. \\n#Taiwan https:\\/\\/t.co\\/MJEePYwZOk\",\"1587\":\"Wheels down Taipei\\n#Pelosi #SPAR19 https:\\/\\/t.co\\/Xa2yZdhaL4\",\"1588\":\"Mobile Banking App - Low Fidelity Wireframe \\u2764\\ufe0f\\u2728\\nWill Post the High Fidelity Wireframe tomorrow \\ud83d\\udcaf\\ud83d\\udcaf\\ud83d\\udcaf\\n\\n#Pelosi #Taiwan #China #JacksonWang #dontpayuk #ISAC2022 #ArchieBattersbee #ux #uxdesign #uiux #uidesign #uiuxdesign #uidesigner #uxtwitter #techtwitter #fintech #NTBTS https:\\/\\/t.co\\/tPwDLc2kyd\",\"1589\":\"The summary of your assignment as an Adult is to utilize what you have to create a better life for those coming behind you! Everything you become puts generations behind you a step further! \\n\\nTuesday afternoon motivation! #JacksonWang #dontpayuk #China #Pelosi #HelicopterCrash\",\"1590\":\"Civil defense sirens sounding in China also. \\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/3S2l2KEDQB\",\"1591\":\"Pelosi plane is about to land in Taipei #Taiwan\",\"1592\":\"#Taiwan #Pelosi #helicopter #China #JacksonWang Hermes Wizkid\\n*Aluminium Flatsheet* 0.55mm @ 3,850 permtr(Today Price) *Bush Green*\\n#WhatsApp 08085310359 For more Enquires https:\\/\\/t.co\\/jKZ6KXMSQr\",\"1593\":\"The big question is CAN YOU PAINT?\\n\\nLet\\u2019s find out!\\ud83d\\ude0a\\n\\n[ #Taiwan #FixTheCountry Benjamin Azamati Akuffo Addo 2022 wassce ] https:\\/\\/t.co\\/hr2hYJMYEZ\",\"1594\":\"The more difficult the victory, the greater the happiness in winning.\\n\\n#heran #dontpayuk #Pelosi #Taiwan #China #JacksonWang #NancyPelosi\",\"1595\":\"Final approach to Taipei\\n#Pelosi #SPAR19 https:\\/\\/t.co\\/p09gbZugsh\",\"1596\":\"Sometimes the smallest things take up the most room in our hearts\\n\\n#Hermes #Pelosi #Taiwan #China #JacksonWang #dontpayuk #helicopter #amaka #phyna #bbnaija\",\"1597\":\"Look for land of your size this year and buy!!!\\n\\nPerson wey buy land of 20m and person wey buy of 800k.\\nBoth of them na \\nLAND OWNERS!!!.\\n\\nThug Rescue Nigeria ASUU Wizkid Nnamdi kanu The premier league #RealEstate #Pelosi #Taiwan #helicopter #bachelorette shettima\",\"1598\":\"Air defence systems at Taipei airport active.\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan\",\"1599\":\"Police vehicles racing across the tarmac at Taipei airport.\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/RYMTUBWuxH\",\"1600\":\"WATCH and RETWEET aggressively, because it's Time to Rescue Nigeria!\\n\\n Akure #Wike Saheed Balogun Hermes Phyna and Amaka #Taiwan Asaba BRT Lane #StopSellingPi https:\\/\\/t.co\\/dszJmjOCPJ\",\"1601\":\"What it means for Nigeria to be a Maritime Nation @nimasaofficial #60secsmaritimechallenge #China #Taiwan #Pelosi https:\\/\\/t.co\\/lZDNKHvZSl\",\"1602\":\"Ghana\\ud83c\\uddec\\ud83c\\udded raises money like a poor country and spends like a rich country- IMF Country Director\\n\\n#Pelosi #Taiwan #China #JacksonWang #NancyPelosi #dontpayuk #helicopter #PremierLeague #FixTheCountry Akufo-Addo WWIII US Air Force\\nBlack Princesses Mahama Camp Nou Thug\",\"1603\":\"Lagos youths it's still fresh in the memory. \\nNow is the time to make this right. #tinubu #KANO #Atiku #Pelosi #Taiwan #China https:\\/\\/t.co\\/uh5jN63Bim\",\"1604\":\"The Chinese Air Force sent Su-35 fighters to the Taiwan Strait - Yuyuan tantian portal- Sources \\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan\",\"1605\":\"More than 2 Lakh people are tracking US air force plane SPAR19 carrying Nancy Pelosi. \\nEveryone is curious whether Pelosi Plane land in Taiwan or not.\\n\\n#NancyPelosi #Taiwan https:\\/\\/t.co\\/xIXhJMAMYn\",\"1606\":\"The Special Prosecutor must be investigated, if he fails to investigate the Jean Adukwei Mensa Hotel and other fraudulently allocated State lands.\\n\\nWWIII #Taiwan Akufo-Addo US Air Force #China #ChinaJoe #Pelosi \\nBlack Princesses Africans Ghs 5 \\n #5August6\",\"1607\":\"Taiwan's air defense sirens sounded.\\n\\n#Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/Y0yBAlAgD7\",\"1608\":\"20 Warplanes are escorting Nancy #Pelosi plane, US fighter jets are also in these.\\n\\nUS air force authorized to open fire in case of any Chinese interference on plane carrying #Pelosi \\n\\nWill China Act??\",\"1609\":\"They've swear for this country... No amount of prayer can heal it\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n\\n#Pelosi #Taiwan https:\\/\\/t.co\\/3e7pX6Irkp\",\"1610\":\"#US air force authorized to open fire in case of any Chinese interference on plane carrying #Pelosi https:\\/\\/t.co\\/CwJqnO4wFs\",\"1611\":\"In 2019, I desperately supported Atiku because we were between the Devil and the Deep blue sea, and I was hoping on the presence of Obi being a light that could shine even in the deepest sea.\\n#WWIII #Wike #China #Taiwan #PeterObiForPresident2023 #BBNaija #Tinubu #Reno\",\"1612\":\"Tensions are brewing between the United States and China over #Taiwan's Independence.\\n\\nChina has said things could go worse if US House Speaker Nancy #Pelosi proceeds on her scheduled visit to Taiwan. \\n\\n#China to Pelosi, \\\"You will perish over Taiwan\\\"\",\"1613\":\"Taipei residents gather around \\\"Songshan\\\" Airport waiting for Pelosi's special flight to land.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/5enZSQOo5j\",\"1614\":\"Its still a bit early, but it sounds like there were quite a few fighter jets that departed from #Zhangzhou within the last 10 minutes. \\n\\nFighter jets are also audible again near #Fujian.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China\",\"1615\":\"#US air force authorized to open fire in case of any Chinese interference on plane carrying #Pelosi\",\"1616\":\"What if Barca Wake's up & decides to hijack this Cucurella deal from Chelsea\\n\\ud83d\\ude0f\\ud83d\\ude0f\\ud83d\\ude0f\\ud83d\\ude0f\\n\\n#Taiwan Shettima Mr Bayo Lexus\",\"1617\":\"Painting the Sun \\ud83c\\udf1e #Painting #artwork\\u0e2d\\u0e0b\\u0e17\\u0e0b #originalart #abstractart #Pelosi #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #JacksonWang #BulletTrainMovie https:\\/\\/t.co\\/RuTQYWKsr5\",\"1618\":\"#BREAKING US military aircraft enter #China airspace escorting #NancyPelosi in to #Taiwan\",\"1619\":\"OBIdients this is going to be the youths dancing step come 2023, rehearse it thou. Follow,like and rt.\\n\\n Northerners #Pelosi #Taiwan #China #KANO #Lekki https:\\/\\/t.co\\/5XoffHWNjo\",\"1620\":\"No one should ever expect me to run away from this country because I have no other country than Nigeria. This country must work. Say no to bad leadership. #Pelosi #Wike #peterobi #atiku #Reno #gistlovers\",\"1621\":\"Pelosi\\u2019s planned visit to Taiwan is a futile attempt by the increasingly isolated & insecure US establishment to show that it\\u2019s still relevant internationally, especially after humiliating defeat in Ukraine & humiliating withdrawal from Afghanistan.\\n#Pelosi #Taiwan #helicopter\",\"1622\":\"Cute Eskimo pups both sex are available for pickup in Lagos mainland ejigbo can be waybill pickup from the kennel \\ud83d\\udcaf\\nPls DM call WhatsApp 07062961668 \\nPrice is 80k \\n#osupa #asaba #BRTlane #saheedbalogun #Pelosi #yoruba #petlover #eskimo #businessProposal https:\\/\\/t.co\\/FCi2kXTd5N\",\"1623\":\"#Taiwan\\nJob Done!!\\nAnother Successful Roofing Project Completed\\nSite Location: @ Igbesa Ogun State\\nRoof Design : Steptiles\\nColour:Bush Green\\nGuage: 0.55mm\\n#WhatsApp 08085310359\\nSaheed Balogun BRT Lane Wizkid US Air Force \\nSEE BUILDING HERE \\ud83d\\udc49\\ud83c\\udfff\\ud83d\\udc49\\ud83c\\udfff https:\\/\\/t.co\\/HM2GuGYaIO\",\"1624\":\"My name is Victor Joseph, but calling me Valiant is cool. I'm a software developer, got a job with Turing securing a job with a US BASED COMPANY. \\n\\n\\ud83d\\udc47open Thread\\ud83d\\udc47\\n\\n#PeterObiForPresident2023 Rescue Nigeria Nnamdi Kanu #Wike #Taiwan https:\\/\\/t.co\\/wHFRX1347o\",\"1625\":\"#Chinese Air Force flying towards \\ud83d\\ude4f#Taiwan \\nSource @georgegalloway\",\"1626\":\"#Taiwan\\nJob Done!!\\nAnother Successful Roofing Project Completed\\nSite Location: @ Igbesa Ogun State\\nRoof Design : Steptiles\\nColour:Bush Green\\nGuage: 0.55mm\\n\\nSaheed Balogun BRT Lane Wizkid US Air Force \\nSEE BUILDING HERE \\ud83d\\udc49\\ud83c\\udfff\\ud83d\\udc49\\ud83c\\udfff https:\\/\\/t.co\\/xC7HYy295A\",\"1627\":\"Security tightened outside hotel where Pelosi will be staying.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/ALr1WjP5bV\",\"1628\":\"These pop-ups are a result of a subscription to MTN or other network services you may have done unknowingly. It is intrusive such that you may agree to the subscription terms without knowing.\\nhttps:\\/\\/t.co\\/cVvIG9MumQ\\n\\nAkuffo Addo | #Taiwan | Mahama | Benjamin Azamati\",\"1629\":\"Rescue nigeria now..!!!\\nEnugu-portharcourt highway is currently attacked by bandits by burn army van, kidnap victims we are doomed ohh\\ud83d\\udc94\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\udc94\\ud83d\\udc94\\n\\nBRT lane, okowa saheed balogun #tinubu ##Taiwan yorubas asaba https:\\/\\/t.co\\/kmIGqN2bF9\",\"1630\":\"Taiwani People waiting for the #Pelosi.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/90AXSsVvyl\",\"1631\":\"Come one come all \\nAnticipating October 1st it's gonna be huge\\n#Pelosi https:\\/\\/t.co\\/JEoJMFIx81\",\"1632\":\"Let's play FPL.. Join this league: 088kv9\\nAuto Join : https:\\/\\/t.co\\/XYVunteeTD\\nEnjoy the game!\\n\\n#PremierLeague #Transfers #FPL #Pelosi #LeagueOfLegends https:\\/\\/t.co\\/fDoav6kCCU\",\"1633\":\"Chinese social media users have started posting information about the takeoff of the Chinese air force in the southeastern province of Fujian in the last 5 minutes.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA\",\"1634\":\"As she arrived #Taiwan\",\"1635\":\"You want to register your business?\\nYou want to be your own boss?\\nTalk to me, I'm a CAC accredited agent \\n\\n#BBNaija #BBNaija7 #Taiwan Rufai Happy New Month https:\\/\\/t.co\\/QHFrOjG3Io\",\"1636\":\"Long lines of army convoy vehicles can be seen on the streets of China.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/8yellfvyeC\",\"1637\":\"It's good to be proud of the source that pays your bills..\\nDyor on @Meta_force_TEC \\nhttps:\\/\\/t.co\\/SFtzboAJQc\\n#Taiwan #Wike #cubana \\n#PeterObiForPresident2023 https:\\/\\/t.co\\/U2R14Y4sei\",\"1638\":\"Chinese Warplanes Fly Close To Taiwan Ahead Of Nancy Pelosi\\u2019s Visit #Pelosi #Taiwan #JacksonWang #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #Chinese #China #ChinaTaiwanCrisis https:\\/\\/t.co\\/ShSAfHwwXD\",\"1639\":\"Breaking news: China says military action will take place if Nancy Pelosi visit #Taiwan this week. Reports that #Pelosi is on her way and will soon stop at #Taipei (watch Video) https:\\/\\/t.co\\/pJlGwWfryx\",\"1640\":\"Why does the US want to instigate China by any means possible. china in frustration would take harsh actions against Taiwan then China will be framed as a threat to the world? Anyways we are watching closely if China will defend its sovereignty or not.\\n#Taiwan https:\\/\\/t.co\\/2pZNcRvJbe\",\"1641\":\"Another Video-\\nChina's intercontinental ballistic missile(ICBM) DONGFENG5b can be seen on China's street.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/E82iDiEi2O\",\"1642\":\"\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f Sometimes just a little compliment can make someone's entire day \\ud83e\\udd7a \\u2764\\ufe0f #retweetplease\\n__________________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more posts like this\\n______________________\\n#GospelEmpireGh #StrictlyGospel #Love #inspirational #compliment #JacksonWang #Pelosi https:\\/\\/t.co\\/cIenhmGeCX\",\"1643\":\"Breaking news: China says military action will take place if Nancy Pelosi vis9its Taiwan this week https:\\/\\/t.co\\/pJlGwWfryx #Taiwan\",\"1644\":\"NP Melodies 4 Mama @Chillyway \\non @superfm933 \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n#NewMusicAlert \\n#melodiesformama\\n#wegtexentertainment\\n#waltexmusic\\n#Pelosi https:\\/\\/t.co\\/PS6m6PbrNu\",\"1645\":\"Chinese combat tanks are transported by rail in Fuzhou, Fujian Province, near Taiwan. \\n\\n#Taiwan #Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/XX7MdNqzMM\",\"1646\":\"still Nancy @SpeakerPelosi is going to Taiwan? ahh well, let me get popcorn and enjoy this war movie. this time around not on Netflix but CNN\\n#Taiwan \\n#Pelosi\",\"1647\":\"I can\\u2019t believe my eyes \\ud83d\\ude33\\ud83d\\udc94 \\n\\n#Machala #Pelosi #Trending https:\\/\\/t.co\\/qSszhovah4\",\"1648\":\"The US agreed to the \\\"One China\\\" policy back in the 70s. If Pelosi's visit to Taiwan goes ahead, the US has violated yet another agreement. It's always the same lesson: never trust the US.\\n\\n#Pelosi #Taiwan #JacksonWang #helicopter #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"1649\":\"Taiwan\\u2019s annual military exercise.\\n\\n#Taiwan #Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/cUdPKXBg3e\",\"1650\":\"Join us on Saturday 6th August for our Walk For Health!!!!\\nThe last one was so much fun, this one promises to be better\\ud83e\\udd73\\ud83e\\udd73\\ud83e\\udd73\\ud83e\\udd73\\nDon\\u2019t miss out on our FREE Medical Evaluation too.\\n\\n#Pelosi #helicopter #JacksonWang #Taiwan https:\\/\\/t.co\\/ecNkeV31YO\",\"1651\":\"just waiting to see how it goes, maybe I will survive this or not, I think it's now up to date \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\n#Pelosi #JacksonWang #Death #LiveArtXGlobal100 https:\\/\\/t.co\\/DB8Tnfp3dS\",\"1652\":\"Get Me To 2k, Retweet And Follow Me \\ud83d\\ude4f\\ud83c\\udffe #Pelosi #BBNaija #dontpayuk\",\"1653\":\"What is going on here \\ud83d\\ude33\\ud83d\\ude33\\ud83d\\ude33\\ud83d\\ude33\\n\\n#FixTheCountry #Taiwan #KNUST Nana Addo Momo Pogba Sell https:\\/\\/t.co\\/lIO0je9V1J\",\"1654\":\"Here's The Addictive Song Thats Currently Topping Charts and Disturbing Tik-Tok, Carter Efe Machala Featuring Berri Tiga #hermes #Taiwan\\nhttps:\\/\\/t.co\\/GDyqNrtmTZ\",\"1655\":\"\\u263aIf loving @cantubeauty is wrong, we don't want to be right. \\n\\nGet \\\"Root to Tip\\\" haircare products like @cantubeauty products from @NectarBeautyHub stores this week.\\n\\nShop @cantubeauty range at any of our stores and get perfect deals\\ud83d\\udcaf.\\n\\n#beautiful #Pelosi #Taiwan #ISAC2022 https:\\/\\/t.co\\/A4epmydzTR\",\"1656\":\"And you would like to be a president one day. Good luck \\ud83d\\udc4d \\n#LekkiMassacre \\n#bbillkin #Yediiklim \\n#ShowtimeAugust2Natin \\n#Pelosi https:\\/\\/t.co\\/fDJwE6jlg6\",\"1657\":\"COMING SOON\\nYEAR-2023\\n\\nDiscover New, Old and Upcoming Movies By Following MoviePlus.\\n\\n\\ud83d\\udcfa\\ud83d\\udcfa\\nNancy Isime | Akure | Asaba | Lexus | Onne | Progress | What God | Khalid #EXTRACTION #Taiwan #bachelorette https:\\/\\/t.co\\/EcL52eIPAV\",\"1658\":\"This happened earlier today \\n#mrbayo\\n#cometochelsea\\n#Taiwan https:\\/\\/t.co\\/m6ECdRSDzU\",\"1659\":\"It's official! The plane will land in #taipei #pelosi #taiwan #spar19 https:\\/\\/t.co\\/5wPCn0MdWL\",\"1660\":\"Hey Tuesday\\ud83d\\udc4b\\u2764\\ufe0f #Taiwan #tuesdayvibe #babygirl https:\\/\\/t.co\\/cuyRJDGRbG\",\"1661\":\"Sanwo-Olu Mourns The Death of Aide In Auto Crash #Taiwan #EndSARS #BBNaija \\nhttps:\\/\\/t.co\\/OVvXnKEVBx\",\"1662\":\"Taiwan\\u2019s tallest building lit up in Taipei for US \\\"Speaker Pelosi.\\nWelcome to Taiwan, Thank you. TW \\u2764\\ufe0f US.\\\"\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/jf1POOysjy\",\"1663\":\"Hyundai Motor and Kia Sign research agreement #Pelosi #Taiwan #EndSARS \\n https:\\/\\/t.co\\/oL78msct7H\",\"1664\":\"Had to jump on 5star By @adekunleGOLD challenge #5starchallange help me tag him\\ud83d\\ude4f\\n\\n#Pelosi #Taiwan #JacksonWang #dontpayuk #helicopter #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #BoycottRakshaBandhanMovie #HelicopterCrash #\\uc5d0\\uc774\\ud2f0\\uc988 #WatchOutForKaran #kpssdeikincifetoskandali https:\\/\\/t.co\\/AEHJLCBgvR\",\"1665\":\"On the occasion of the 95th anniversary of the founding of the PLA army, the game between #China and the United States continues to escalate.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/JSyjDFEg8f\",\"1666\":\"Even on wristwatch Straps... it's time for Peter Obi! \\n#PeterObiForPresident2023 #PeterObi4President #Pelosi https:\\/\\/t.co\\/YbG5YomfHO\",\"1667\":\"Playing around with my guitar and the back of another box, Sounding super amazing \\ud83d\\ude07 Mr Bayo Hermes #BBNaija #Pelosi #BBNaija7 @thisisAQ @iam_kulgee @PeediPicasso @OfficialTQuest @olaoluwasanmi @KontentSensei @ExcelJoab https:\\/\\/t.co\\/Gu5OyC7hrY\",\"1668\":\"Toyota Opens The Largest Auto Parts Warehouse In Southern Hemisphere #Taiwan #BBNaija #EndSARS\\nhttps:\\/\\/t.co\\/ziItCHJZCo\",\"1669\":\"Pelosi or visiting #Taiwan airport to receive a threatening letter threatening to release #explosives.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China \\nhttps:\\/\\/t.co\\/rvGgV5usv9\",\"1670\":\"This got my day actually. Even in all this troubles rocking our dear country Nigeria. Resilient is our moto #EndAsuuStrikeNow #helicopter #Taiwan https:\\/\\/t.co\\/555A3TEfiX\",\"1671\":\"For a smooth and safe ride as a truck driver, you need to #knowyourtruckparts. One of the important parts of a truck is the Mirror.\\nThe Mirror provides view of the rear of your vehicle. You must check your mirrors before changing speed or position in traffic.\\n#ASUU #Taiwan\",\"1672\":\"Irtus Business is looking for Graduate\\nTrainees (looking to be trained into core\\nfinance and consulting roles)\\nPay: N55\\/60,000 \\nRemote\\nApply:\\nmailto:tamara@irtusbusiness.com\\nDeadline is 3rd August, 2022\\n\\n#finance #trainee #jobs #pelosi ASUU Cubana #remotejobs #consultingjobs\",\"1673\":\"There's always one man in white native in every party that eats before the party even starts. \\ud83d\\ude02\\ud83d\\ude02\\n\\n#asuu #bigbrothernaija #nancyisime #funnytweet #Taiwan #\",\"1674\":\"Policy Inconsistency Responsible For The Decline Of Nigeria Auto Industry #lekki #Taiwan\\nhttps:\\/\\/t.co\\/T3XrQLOzzC\",\"1675\":\"A plot of residential land \\n\\ud83d\\udccdLukosi, behind Fed. Secretariat Abeokuta Ogun state, Nigeria \\ud83c\\uddf3\\ud83c\\uddec \\nN8m\\nRegistered Survey \\nhttps:\\/\\/t.co\\/FZIyLtDhml\\n+2347069155835 WhatsApp and call \\n#helicopter #Amaka #Taiwan #BambamSorry #abstorm #BORNPINK https:\\/\\/t.co\\/VNz2IEWjvZ\",\"1676\":\"#Pipayments #PiNetworkUpdates #kpssdeikincifetoskandali #Taiwan #bbillkin #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u0627\\u064a\\u0645\\u0646_\\u0627\\u0644\\u0638\\u0648\\u0627\\u0647\\u0631\\u064a #abstorm #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #BORNPINK #JacksonWang #BoycottRakshaBandhanMovie #dontpayuk \\nJoin us to mine #PiNetwork for free\\nhttps:\\/\\/t.co\\/iaOC7U4J5l https:\\/\\/t.co\\/iz7ljgUhN3\",\"1677\":\"#SPAR19 getting closer #Taiwan #NANCY_PELOSI I don\\u2019t think China would start a war over a Diplomatic visit. It would make China look foolish. https:\\/\\/t.co\\/v54NqP785O\",\"1678\":\"#Pipayments #PiNetworkUpdates #kpssdeikincifetoskandali #Taiwan #bbillkin #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u0627\\u064a\\u0645\\u0646_\\u0627\\u0644\\u0638\\u0648\\u0627\\u0647\\u0631\\u064a #abstorm #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #BORNPINK #JacksonWang #BoycottRakshaBandhanMovie #dontpayuk \\nJoin us to mine #PiNetwork for free\\nhttps:\\/\\/t.co\\/iaOC7U4J5l https:\\/\\/t.co\\/4CaSEBlStw\",\"1679\":\"@Themastercutz is hiring for the\\nfollowing positions.\\n.Salon Manager\\n. Hair Stylist\\n\\u2022 Barber\\n\\u2022 Manicurist\\n#jobsinAwka #jobs\\n#pelosi ASUU Cubana #salonmanager\\n#barberjob #manicurist #hairstylist https:\\/\\/t.co\\/XIHsYklIxS\",\"1680\":\"#Pelosi Flight En Route To #Taiwan \\ud83d\\udc40\\ud83d\\udc40 https:\\/\\/t.co\\/bFQGFMSKln\",\"1681\":\"PLA Air Force officially announces the induction of Y-20U tanker and releases the footage of Y-20U refueling J-16 ahead of Nancy Pelosi trip.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/8UNYBypwYl\",\"1682\":\"The kind of boldness and nonchalant attitude all these AA genotype people have? \\ud83e\\udd23\\n\\nThey can just be jumping into relationship without even asking what your genotype is.\\n\\n#BBNaija\\n#BBNajia #Taiwan #Khalid https:\\/\\/t.co\\/QgssnsWuOP\",\"1683\":\"If you trade price action and you're open to new ideas, then this is for you. \\n\\n I should @ the convener but he isn't on Twitter.\\n\\nI've been following him one on one for the last 12 months and it has been worth my while. Share, someone might need it.\\n\\n#Malik #Taiwan #BBNaija https:\\/\\/t.co\\/gh7OVsyT2j\",\"1684\":\"Chinese army(PLA) posted a video on its social media(bilibili) as a response for the Pelosi's visit of Twaiwan.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/Fung4wT3eh\",\"1685\":\"Everybody is shouting @PeterObi some are shouting @atiku and @OfficialAPCNg your candidate can't stand or walk alone \\ud83e\\udd14 is that what you wish for @Nigeria \\n\\n#Taiwan #JacksonWang #dontpayuk #helicoptero #BambamSorry #abstorm #Trending #TrendingNow #government\",\"1686\":\"If you're out there interested in joining the Pi Mining Community.\\nMy Dm is Open, hit me up let's get you started. Trust me there's no better time to join in than Now while you still can.\\n#Pitransactions\\n#PiNetwork\\n#Taiwan\\n#WEURO2022\\n#helicopter\\n#JacksonWang\",\"1687\":\"Vacations are extra special at our beach house. Book us \\ud83d\\udce9\\n\\n#PuraVida #Beach #August #Vacation #Relax #Fun #Taiwan #Lagos #Ilashe #Relax\",\"1688\":\"Chinese Dongfeng-5V intercontinental ballistic missiles with a firing range of 12,000-15,000 km.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/WqshEnyAxe\",\"1689\":\"#SPAR19 is heading directly to #Taiwan let\\u2019s hope China keeps cool heads and doesn\\u2019t start #ww3 https:\\/\\/t.co\\/eVRnNjG5tu\",\"1690\":\"BREAKING: Naira Appreciate N665 To A Dollar At Black Market\\u00a0#Naira #Taiwan #BBNajia #BreakingNews #BBNajiaS7 #JacksonWang https:\\/\\/t.co\\/O6bpvTJjJ6\",\"1691\":\"make I motivate small, \\\"Dont be a gambler, be a calculative winner \\\" #mrbayo #BBNaija #PeterObiForPresident2023 #Taiwan\",\"1692\":\"JUMIA BRAND DAY \\nTrendyol Fashion Day\\nStaring from #1.900 with Free Delivery \\ud83d\\ude9a \\n\\nClick link below to place your order Now\\u2935\\ufe0f \\nhttps:\\/\\/t.co\\/SXks2o3IBY\\n\\n#BBNaija #sheggz #Modella #Machala #helicopter #Wizkid #Davido #bbillkin #Taiwan #BoycottRakshaBandhanMovie https:\\/\\/t.co\\/642t62L8pp\",\"1693\":\"Yh, Chiwan. Oh wait, it's still China.\\n\\n#taiwan #Pelosi #China #WW3 #war https:\\/\\/t.co\\/GdiIiDlDBD\",\"1694\":\"Media and Communications Assistant\\nLocation: Abuja (FCT)\\nRequirements\\nInterested candidates should possess\\nrelevant qualifications with O - 1 year work\\nexperience.\\nApply here: \\n\\nhttps:\\/\\/t.co\\/zKcnLsddKI\\n\\n#communicationassistant #media #jobsinabuja #jobs #pelosi ASUU Cubana\",\"1695\":\"Chinese military hardware supposedly from #Xiamen on the Taiwan Strait.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/VwrhTGkrR6\",\"1696\":\"I don taya for this country \\ud83e\\udd27\\ud83e\\udd27\\ud83e\\udd27 another 4 weeks wtf\\ud83e\\udd14\\ud83e\\udd14 #Cubana #pogba #Taiwan #Don't Look Up # https:\\/\\/t.co\\/CLoG9bLDcw\",\"1697\":\"What a word \\ud83d\\ude02 \\ud83d\\ude0b \\n#Wordle409 #Taiwan #JacksonWang #dontpayuk #helicopter #BambamSorry #abstorm #BORNPINK #dontpayuk #eimiko #DestinyTheGame #ComicCon #ocyduncomedy #XPLUS #nigeriansinuk #buharitormentor #TinubuShettima2023 #Nigerian #JacksonWang #Comedystoreug #smilingfriends https:\\/\\/t.co\\/iXfzrJihsp\",\"1698\":\"#SPAR19 prayers that China doesn\\u2019t overreact for the Diplomatic visit planned. #nancypelosi #Taiwan https:\\/\\/t.co\\/SjxB4OMnnE\",\"1699\":\"\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f Really Quick means I'm about to shop for random things for hours \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02 #Retweet\\n\\ud83c\\udfac VC: Wereennistogether | IG\\n_____________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more posts like this\\n______________________\\n#GospelEmpireGh #StrictlyGospel #FamilyLove #Taiwan #helicopter https:\\/\\/t.co\\/07SOC30rqV\",\"1700\":\"Available for purchase. \\n\\n#Taiwan #China #Cubana\\n#ambode #OKOWA #Italy #osuofia #Wike #Rufai #Wizkid https:\\/\\/t.co\\/AlKeH9FK4t\",\"1701\":\"Learn a modern skill.\\nBecome a freelancer.\\nStart a business.\\nThis will teach you more about business than a 4-year business degree.\\n\\n#Wike #PeterObiForPresident2023 \\n#helicopter #Taiwan #\",\"1702\":\"John Kirby(White House): \\u201cWe do not support Taiwan independence\\u201d.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China #USA https:\\/\\/t.co\\/htgQ3dPEQv\",\"1703\":\"@Erc1974C Do you mean China is a toothless dog that bark vigorously but can't bite? #Taiwan\",\"1704\":\"China's intercontinental ballistic missile(ICBM) DONGFENG5b can be seen on China's street. DF5b has an estimated range of 12,000 to 15,000 kilometers and can carry 3-8 hydrogen warheads.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/takZPebuQm\",\"1705\":\"Super clean Toyota Solara 2004 going for 1.8m \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25 Saheed Balogun Cubana Italy #Pelosi #Lekki #Sabinus #helicopter Mr Bayo What God https:\\/\\/t.co\\/WkP4ub1OWT\",\"1706\":\"The 2022 Sellyfak. Energy Trainee program. \\n\\n#traineeprogram #energysector #oiljobs #graduatetrainee #jobs #pelosi ASUU Cubana https:\\/\\/t.co\\/X6qCM1jrbW\",\"1707\":\"Enjoy the summer holidays with your kids in our simple and luxury three bedroom shortlet Apartment...\\n\\n#Pelosi #BambamSorry #helicopter #sabinus #shortlets #Airbnb #homes #lagos #shortletsinlagos https:\\/\\/t.co\\/6vuOGM1bVY\",\"1708\":\"Local residents post photos of #PLA Air Force Su-35S fighter flights heading across the Taiwan Strait.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/Nd5CqzxIc5\",\"1709\":\"To resolutely maintain peace and stability in the Taiwan Strait, the PLA Navy Type 075 Guangxi amphibious assault ship undergoes extensive training to firmly protect national unity and naval interests.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/wXUU9nLQu7\",\"1710\":\"What are some tips for increasing sales as an online business?\\nhttps:\\/\\/t.co\\/wdpF5sevEu\\n#mylespudo #delivery #ghana #OnlineBusiness #Pelosi #Taiwan #courier #pickupservice #BBNajia #GharWaapsiOnHotstar #GhanaCard\",\"1711\":\"\\ud83e\\udde1 This is your Tuesday reminder to glow. A great day starts with good hair.\\n\\n\\u2728 Let's see you embrace your inner glow, love, and care for your hair.\\n\\n\\ud83d\\udc83Have you placed your order for amazing hair products? If no\\n\\nPlease send us a DM now.\\n\\n#Taiwan #Pelosi https:\\/\\/t.co\\/Flt9lyrjr0\",\"1712\":\"Video from #Taipei airport. Security beefed up at the airport. \\nUS House Speaker Nancy Pelosi is on a trip to Asia and is expected to arrive in #Taiwan at 22:20 in the evening.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina #China https:\\/\\/t.co\\/hjsA0QBPtc\",\"1713\":\"A Tech and Education Company in Lagos is hiring corpers for Sales Role, Growth Intern.\\n\\nApply if you are interested in edutech or sales. \\n\\nhttps:\\/\\/t.co\\/FffgOogRgI\\n\\n#edutech #salesjob #nyscjob #jobs #pelosi ASUU Cubana\",\"1714\":\"Zees grills is available and ready for all ur orders\\nKindly dm or call 07017335573 to order\\n#Pelosi #helicopter #bachelorette #BBCBreakfast \\n@potam1304 @iambayoajayi @mrbayoa1 @realfemiadebayo @TrendOgun @Ekinne_Olalekan @nkay_yo @UnclePamilerin \\nKindly RT thanks https:\\/\\/t.co\\/5hoQOJlimF\",\"1715\":\"Nigeria adds 10.5 million young voters to its electoral register ahead of 2023 election\\n#Taiwan #Pelosi https:\\/\\/t.co\\/Yj5h9sBlMv\",\"1716\":\"What are the questions or reservations in your mind for Real Estate?\\n\\nShare yours!\\n\\n#realestate #realtor #pencityrealty #thiefnubu #JacksonWang #Pelosi #BambamSorry #osuofia #LOONAinLA\",\"1717\":\"The three major #US warships have already sailed to the waters near Taiwan. The following is the constant update of today's news.\\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/cMdqs1TIub\",\"1718\":\"US House Speaker Nancy Pelosi is on a trip to Asia and is expected to arrive in #Taiwan at 22:20 in the evening.\\nChina has made frequent moves. The Communist Army announced a series of military exercises with strong intimidation. \\n\\n#Pelosi #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/fyrQ8e71cZ\",\"1719\":\"Video- The Taiwan Legislative Yuan building, where Pelosi plans to arrive on August 3, has already rolled out the red carpet.\\n\\n#China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia #USA https:\\/\\/t.co\\/Eug7GZp0KJ\",\"1720\":\"Hey Guys, For Facebook Sponsored Advert\\/Promotion for your Business\\/Brand with BUZZYNESS ONLINE, We charge a minimum of 1500 naira to reach an estimated audience between 1000-3000 per day and we offer a minimum of 7 days \\ud83d\\ude4c\\n#buzzynessonline\\n#TuesdaysAndThursdays \\n#Taiwan #Pelosi https:\\/\\/t.co\\/7weOt1UVAc\",\"1721\":\"Now I see that Sen. Datti Baba-Ahmed is the best fit for Peter Obi. Thank God the NNPP man didn't agree to join Obi. ObiDatti is the best Combo. I love listening to Datti the way I love listening to Obi. #Taiwan #PeterObi2023\",\"1722\":\"Chinese army told Taiwan its part and showed its power to the world.\\n\\n#Pelosi #Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/m3tlfjQSaM\",\"1723\":\"Hey guys check out this song by @swatc_music help him reach out to record label @Akon @burnaboy @AndyjnrUmaru @wizkhalifa @WarnerMedia \\n#Taiwan #nancyisme #dejong #Machala #Wizkid #Pelosi #JacksonWang #JACKSONWANGxCartierTH #BambamSorry https:\\/\\/t.co\\/HbfHLJrcab\",\"1724\":\"Landmarks across #China were illuminated with light shows on Monday night to mark the 95th anniversary of the founding of the #PLA.\\n\\n#China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia #USA https:\\/\\/t.co\\/4CjjyFPex2\",\"1725\":\"China prepared #PLA for any eventuality.\\n\\n#China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia #USA https:\\/\\/t.co\\/pBhMWw2xDw\",\"1726\":\"If I do you bad bro I\\u2019m sorry #Grind out now by @lil_shappi x @iambillirano x @teesmartlevel #nbvsquad #nbv #Taiwan https:\\/\\/t.co\\/EeTxIql7Tv\",\"1727\":\"Protests broke out in Taiwan against Pelosi's visit.\\nResidents in #Taiwan island protested on the streets on urge #Pelosi to stay out of the island.\\n\\n#China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia #USA https:\\/\\/t.co\\/VGFk9oKJ2G\",\"1728\":\"Have a fruitful day\\ud83d\\ude4f\\n\\n#SaitaProRelease #Pelosi #SHIBARMY #tech #Web3 #webdevelopers #cryptocurrency #StockMarket #BTC https:\\/\\/t.co\\/APjmtyd5P7\",\"1729\":\"The Taiwan Legislative Yuan building, where Pelosi plans to arrive on August 3, has already rolled out the red carpet.\\n\\n#China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia #USA https:\\/\\/t.co\\/e7yrxvFOtm\",\"1730\":\"Happy new month everyone!\\n:\\n:\\n:\\n:\\n:\\n:\\n#Pelosi #Lekki #StopSellingPi #Lagos #Ziclisynergy #EndSARS \\nMade in Lagos. https:\\/\\/t.co\\/4jgjODSHh6\",\"1731\":\"PLA military armor continues to reach Fujian near the Taiwan Strait for military exercises.\\n\\n#China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia #USA https:\\/\\/t.co\\/K5cv295Adw\",\"1732\":\"China op bezoek van #Pelosi aan #Taiwan: \\\"If the US continues to go astray, we will take strong and resolute measures to ensure our sovereignty and security interests.\\\"\\nChina said it was \\\"closely\\\" monitoring #Pelosi's visit to Taiwan.\\n\\n#China #TaiwanIsNotChina #Taiwanchina https:\\/\\/t.co\\/PVDhaVHt4E\",\"1733\":\"Machala way......\\n@carterefe__ \\nJust thankful for ANOTHER MONTH..\\nHAPPY new MONTH GUYS..\\n@JamesEpomComedy \\n@JAMESEPOMTV \\n#Taiwan #August #Trending #HappyEnding #HappyNewMonth \\n#Twiter #creators https:\\/\\/t.co\\/c4orTHRuz3\",\"1734\":\"Incoming from Fujian! Oh wait, it\\u2019s just a Xiamen Airlines landing in #Taipei.\\n\\n#USA #China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia https:\\/\\/t.co\\/AL7yZNNpiV\",\"1735\":\"As they do with everything, Nigerians have taken \\\"brocode\\\" to the extreme, such that some men are even afraid to do some things because it doesn't align with the \\\"Nigerian brocode.\\\".... read my thoughts on brocode here\\ud83d\\udc49\\ud83c\\udffc\\n\\nhttps:\\/\\/t.co\\/C31nBaUMOj\\n\\n#ASUU #EndSARS #Pelosi Osuofia\",\"1736\":\"Foreign used \\ud83c\\uddfa\\ud83c\\uddf8 \\nToyota Matrix \\u2026..\\n2009\\u2026..\\nFabric interior\\u2026..\\n4.3M\\u2026..\\nSlightly negotiable \\nDm\\/Call\\u2026Whatspp\\u202608103362707 #chichi #MadeinLagosdeluxe #Pelosi #BambamSorry #helicopter #abstorm #dontpayuk https:\\/\\/t.co\\/OHFJUzHcCQ\",\"1737\":\"TV tower in Moscow: \\\"China, Russia is with you!\\\"\\n\\n#USA #China #Taiwan #TaiwanIsNotChina #Taiwanchina #Pelosi #Russia https:\\/\\/t.co\\/7pwOTE4GDY\",\"1738\":\"#Taiwan | #FixTheCountry | Mahama | Ursula Owusu | Ukraine | Tottenham | Google | Blocked | #CitiCBS | Costa Rica | R2bees | Sarkodie | Hershel Walker | #KNUST | Rwanda | Brazil | Nkrumah | Nana Addo | ghana card | Beast https:\\/\\/t.co\\/pWtaQmK23B\",\"1739\":\"The number of Nigerians that get denied Canada Visas is a lot.\\n\\nThat's because they have not processed their Visas with us. \\n\\n\\ud83d\\ude01\\ud83d\\ude01\\ud83d\\ude01\\n\\n#over 1.5 #Maldives #Taiwan #helicopter #brtlane #lekki #blocked #ohaneze #travel https:\\/\\/t.co\\/CIdaT8511R\",\"1740\":\"#China keeps deploying military equipment in Fujian Province, which faces the #Taiwan Strait\\n\\nThese are Type 63A amphibious tanks, they get used to lead amphibious assaults on beaches. \\n\\nLots of videos are showing a lot of equipment converging on Fujian.\\nhttps:\\/\\/t.co\\/lvtVrllPR0 https:\\/\\/t.co\\/2OdgeUqpTR\",\"1741\":\"@MahuiChina You\\u2019re guys are still chilling oh\\nBy now I was thinking #china\\u2019s flag should be chilling in #Taiwan\",\"1742\":\"A Taiwanese military chopper heading into Songshan airport in Taipei, where Nancy Pelosi is reportedly due to land tonight.\\n\\n#Pelosi #Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/UGrz44tRcv\",\"1743\":\"o h my god ,\\nWhy is #Flightradar down ? Well, that's not a good sign . #Pelosi her trip to #Taiwan. \\n(Who the F\\u2026 Is #XiJinping ?) #China https:\\/\\/t.co\\/paPs0eX3OV\",\"1744\":\"Ajah, Lekki Lagos N120million $218,000 beautiful 5 bedroom detached duplex with a swimming pool, a spacious compound space and a fitted kitchen and many more for sale. \\n#BBNaija #Taiwan #LagosState #Khalid #Doyin #davido https:\\/\\/t.co\\/baWINb5Ugs\",\"1745\":\"So I fine I this? Ah I no know fa #LekkiMassacre #bbillkin #ShowtimeAugust2Natin #BambamSorry #Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\n# https:\\/\\/t.co\\/cqendw4MWr\",\"1746\":\"Bit of traffic at Taipei's Songshan airport ahead of Nancy Pelosi. These military planes come & go most days but Tsai Ingwen's presidential jet 3701 landed a little earlier.\\n\\n#Pelosi #Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/tZUBhW8Ljl\",\"1747\":\"This weather also\\ud83d\\ude47\\u200d\\u2640\\ufe0f\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\n#Taiwan\",\"1748\":\"Fujian province, #PLA military vehicles on the move on a bridge close to the Taiwanese island of #Kinmen, which is less than 10km away.\\n\\n#Pelosi #Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/flmamDFC66\",\"1749\":\"China: Footage showing that #Chinese tanks and armored vehicles deployed on the streets of #Fujian Province \\n#Pelosi #Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/rQW9bDMjTy\",\"1750\":\"@TheInsiderPaper Perhaps the attack has begun. What\\u2019s happening?\\ud83d\\ude33 https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"1751\":\"I need a man like that\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02 @EboCuteGh1 @RogerSarkodie @BlaqDeeva @adahorxyz @KobbyMckenzie @KobbyMckenzie @daddys_girlT @datLabadiBoy @WeGoTalkAm1 \\n\\n#BambamSorry #Taiwan #dontpayuk #BoycottRakshaBandhanMovie #BBNaija https:\\/\\/t.co\\/iGErCYKbt5\",\"1752\":\"@TheInsiderPaper Perhaps it\\u2019s an attack as Nancy Pelosi is on her way to #Taiwan https:\\/\\/t.co\\/6p4y5Dkfqh\",\"1753\":\"Man has the intension of being lazy, that's why our technology is at the verge of replacing all manual work.\\nIs the internet making us stupid.\\n#Chelsea #Taiwan #Pelosi #BambamSorry #helicopter\",\"1754\":\"Pain.\\nWe need to learn to love it\\nJust like there is light and darkness\\nThere happiness and pain\\nPurpose and emptiness\\nIts essential we must accept both\\nThat is called living\\nThat is why we are God's greatest creation.\\n#ISAC2022 #BambamSorry #Taiwan #abstorm #HOBIPALOOZA\",\"1755\":\"Hodophile is what I'm gonna become before and after I make the money. \\n\\n@dandptravels \\n\\n#LekkiMassacre #lekki #taiwan #shibainu\",\"1756\":\"Big dawg freestyle 99 #JUBILEEYNGA @TIONWAYNE @ArrDeeTweets @davido @wizkidayo\\n#BetterCallSaul #Taiwan \\n#asuu #wizkid #madeinlagos #startfoden https:\\/\\/t.co\\/aWiHIg9VxJ\",\"1757\":\"@GermanChino7 drops #STREET Lyrics Video soon Fam \\u2764\\ufe0f\\ud83d\\udd25\\ud83e\\udd42\\nStream the song on audiomack\\n\\nhttps:\\/\\/t.co\\/LOwrTnx4ui\\n\\nSarkodie Shatta wale Addo D #fixthecountry R2bees #Taiwan #Pelosi #BambamSorry #helicopter #dontpayuk https:\\/\\/t.co\\/pGJD13AfeT\",\"1758\":\"For high converting Marketing Automation\\n\\nCheck here- https:\\/\\/t.co\\/w8R4T0Meb8\\n\\n#Wordpress #LockheedMartin #DeshaunWatson #hobi #TheNFL #Pelosi #Ayman #AlQaeda #Andor #Montas #Drake #Ridley #Luca #Afghanistan https:\\/\\/t.co\\/PH9ryIWI2z\",\"1759\":\"Eyewitnesses report #PLA helicopters flying over the coast of the South #China Sea.\\n\\n#Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/Kr1wknfW1c\",\"1760\":\"Need a Cloud-based website marketing platform that allows businesses of all sizes in e-commerce, consulting and other industries to generate leads and sales?\\n\\nCheck here - https:\\/\\/t.co\\/bYxm81cXG0\\n\\n#Clickfunnels #Taiwan #China #Graham #Pablo #Chip #NichelleNichols #RunBTS #WWERaw https:\\/\\/t.co\\/RS9K2MlNbz\",\"1761\":\"I've got this on my mind since late 3 days ago!!!, \\n\\nIf #WWIII does not start between August 6-15, then I can get serious with my Scholarship Applications.\\n\\nBut still, \\n\\nI'll need a Laptop!!!, \\n\\nThese are the Issues \\u26a0\\ufe0f!!!\",\"1762\":\"PLA DF-16 OTRK launchers in #Fujian province.\\n\\nChina is sending tanks as well as more weapons to cities near Taiwan. \\n\\n#Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/VoxYSLFlgQ\",\"1763\":\"Looking at the video, it seems as if the entire road is filled with Chinese tanks in central #Xiamen .\\n\\n#Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/6kZCJtJfXa\",\"1764\":\"@WWE https:\\/\\/t.co\\/GF5KbcxFJD\\n#Deshaun Watson #Taiwan #Wordle 409 X #Hader #Al Qaeda\\n#Guerrilla1stWin #Bill Russell #The NFL #calvin ridley\\n#WWERaw #NationalGirlfriendDay #tuesdayvibe #TheBachelorette \\n#Nichelle Nichols #termsandconditions https:\\/\\/t.co\\/2FcsICLJFI\",\"1765\":\"China intensifies war preparations with Taiwan.\\n\\n#Chinese #PLA Air Force has recently dispatched several Y-20 cargo planes to send over 1,000 newly-recruited flight cadets for college registration.\\n\\n#Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/uC8fC2y04g\",\"1766\":\"Most our young youths today thinks that NYSC is the dreadful end of education, because our so called leaders doesn't take both the education and the youth sector serious, the same way they take political battles too serious.\\n#nysc #BambamSorry #Taiwan #helicopter #BetterCallSaul https:\\/\\/t.co\\/q5qLvBvkGd\",\"1767\":\"Subscribe to https:\\/\\/t.co\\/3Dhf1s1rGk for more updates @King_Enam #BBNajia #CommonwealthGames2022 #Jamaica60 #DubaiDudesNFT #Guerrilla1stWin #WWERaw #NationalGirlfriendDay #Foreignfundingcase #DNBP #NSPPD #FestivalQueen2022 #HelicopterCrash Addo D #Taiwan https:\\/\\/t.co\\/7URIrVBAXw\",\"1768\":\"Is China want war with Taiwan?\\nTrain of Tanks moving into Xiamen #Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/q3kWBgyCxB\",\"1769\":\"Lekki County Homes, Lekki Lagos N235M $362,000\\n\\nTastefully finished 5 bedroom fully detached\\nduplex with cinema, swimming pool,metric door, video door bell, cctv, fitted\\nkitchen, family lounge, a room BQ and many more for sale.\\n\\n#BambamSorry #Taiwan #BetterCallSaul #helicopter https:\\/\\/t.co\\/CUSAEHLNZa\",\"1770\":\"We're still available to take your orders \\ud83d\\ude0a\\n#BetterCallSaul \\n#Taiwan \\n#LOONAinLA \\n#JacksonWang https:\\/\\/t.co\\/B6r9bOpDhy\",\"1771\":\"PLA armored vehicles arrive in Fujian province by rail.\\n\\n#USA #China #Taiwan #TaiwanIsNotChina #Taiwanchina https:\\/\\/t.co\\/4ZPUAOsDeM\",\"1772\":\"12PM NEWS \\ud83d\\udcf0 COMES UP NOW on 93.3 SUPER FM PH \\ud83d\\udcfb \\n#superfmph #ASUUStrikeUpdate #Taiwan #BBNaija #onne https:\\/\\/t.co\\/Z9sQo2PZ14\",\"1773\":\"If the USA, Russia, and China want to go war. They should just get on with it.\\n\\nNo need to drag smaller powers into their squabbles. #WWIII\",\"1774\":\"China's People's Liberation(#PLA) Army just posted a new video on #WeChat ahead of Pelosi's potential visit to Taiwan.\\n\\n#Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/D9PanjR8X4\",\"1775\":\"EP dropping on the 12th of August, watch the space.\\n.\\n.\\n#BetterCallSaul #Taiwan #JacksonWang #BambamSorry #helicopter #abstorm #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #dontpayuk #chatsekscerita #chatsekscerita #ISAC2022 #BBNajia #bbillkin https:\\/\\/t.co\\/N2GpRHozvt\",\"1776\":\"Another Video-\\n\\nChinese tanks moving on #FujianBeaches in Taiwan proximity as people are out there swimming.\\n\\n#Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/0PbLnU5MnH\",\"1777\":\"I want to tell someone that God has not forgotten you..\\nDon't give up on Him because He will never give up on you.\\nHe loves you personally..\\nHave a wonderful day ahead \\ud83d\\udc95\\ud83d\\udc95\\n\\n#EndSARS #Tinubu #PeterObiForPresident2023 #malik #BetterCallSaul #Taiwan #helicopter #ISAC2022 #BBNajia\",\"1778\":\"Watch: #China's PLA Fujian Provincial Military Command conducted a live-fire shooting in a sea area off E China's Fujian Province to test its overall combat capability under complex conditions.\\nThe #PLA soldiers prepared to fight upon order!\\n#Taiwan #ChinaTaiwan #TaiwanIsNotChina https:\\/\\/t.co\\/BmPpK8dBkF\",\"1779\":\"Subscribe to my database lessons on YouTube\\n#BetterCallSaul \\n#Taiwan \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\n#HelicopterCrash https:\\/\\/t.co\\/zaYLs657tc\",\"1780\":\"Original Flora cotton bedsheets. Available in all sizes. https:\\/\\/t.co\\/pfKjvlEvaE #Nationwidedelivery #BetterCallSaul #Taiwan #helicopter https:\\/\\/t.co\\/AA5J4lUxjc\",\"1781\":\"China keeps deploying military equipment in #Fujian Province, which faces the #Taiwan Strait.\\nLots of videos are showing a lot of equipment converging on Fujian.\\n\\n#Taiwan #ChinaTaiwan #TaiwanIsNotChina https:\\/\\/t.co\\/mXUgQ6ueQ5\",\"1782\":\"China is ready,are you ready to see the fireworks tonight?\\n#Taiwan \\n#ChinaTaiwanWar \\n#China\\n#Pelosi \\n#WWIII https:\\/\\/t.co\\/PQbwxmSLGJ\",\"1783\":\"Chinese tanks moving on #FujianBeaches in Taiwan proximity as people are out there swimming.\\n\\n#Taiwan #ChinaTaiwanCrisis #TaiwanIsNotChina https:\\/\\/t.co\\/TBM4gBXkZ9\",\"1784\":\"@Dragondescendan This #Taiwan protesters don't want their country to be a staging ground to fight China. Ukraine is greeting that now.\",\"1785\":\"Sending and receiving payments from a GiPOS wallet wallet card. It is easy. Join us https:\\/\\/t.co\\/3TmlI0FUUK and sign up. \\n\\n#Nigeria\\/Over 1.5\\/Osinbajo\\/ASUU\\/#EndSARS \\/Yorubas\\/ Calabar\\/#Pelosi\\/ #Afghanistan \\/Onne\\/#Lagos\\/ #Abuja\\/ clubs\\/ #GiPay\\/ \\n\\n@Gidi_Traffic https:\\/\\/t.co\\/90xxNCBBpc\",\"1786\":\"How can I make money \\ud83d\\udcb0 through social media? I need your education please..\\n #saada #togbe #Taiwan\",\"1787\":\"$Etc broke down the strong Resistance, now next support of 28.5$-27.6$ will be the next stop. #BTC #crytocurrency #StopSellingPi Satoshi Lekki South East Hermes Zack Orji Nicki Minaj Okowa #AlQaeda Ambode Wizkid #Taiwan #EndSARS Malik\",\"1788\":\"Core i5-8th Gen, AMD Ryzen 3-3rd Gen & Core i5-10th Gen processors \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25 #Taiwan #BBNajia #dontpayuk https:\\/\\/t.co\\/0JYSxYwsgH\",\"1789\":\"I support mademoiselle #Pelosi \\nwith her trip to #Taiwan. She is \\na woman with balls . \\n(Who the F\\u2026 Is #XiJinping ?) #China https:\\/\\/t.co\\/ngZ5wLSFDv\",\"1790\":\"Registered 2003 Toyota Corrolla, Buy and Drive with engine and gear working perfectly well. Going for 2.5m Marriage Modella Ambode #Taiwan #Gistlover #BBNaija https:\\/\\/t.co\\/JRrtoY0KT7\",\"1791\":\"Incase you are having a bad day watch this to make you the happiest \\ud83d\\ude0a\\ud83d\\ude0a #Taiwan #Watawi https:\\/\\/t.co\\/QF2ZrUOnK2\",\"1792\":\"Infertility and Erectile disfunction are common challenge, and can be treated.\\nCall now 08133393218.\\n#EndSARS #Pelosi #OBIDIENTS https:\\/\\/t.co\\/0evlh9SBVk\",\"1793\":\"I'm super excited, after long weeks of stress, my book is now in ebook, paperback and Hardcover formats \\ud83d\\ude0a\\u2665\\ufe0f\\u2665\\ufe0f #WritingCommunity #writers #AuthorsOfTwitter #Taiwan #helicopter #abstorm #HOBIPALOOZA #BBNajia https:\\/\\/t.co\\/fl97j4UFf4\",\"1794\":\"@Quicktake What\\u2019s happening in the world? \\ud83d\\ude33 https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"1795\":\"@FoxNews What\\u2019s going on in the world?\\ud83d\\ude33 #Taiwan https:\\/\\/t.co\\/6p4y5Dkfqh\",\"1796\":\"@TheInsiderPaper Wtf is happening in the world?\\ud83d\\ude33 https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"1797\":\"Time to order your meals..\\nWe dey with you\\n\\n#BBNajia \\n#PeterObi \\n#Taiwan https:\\/\\/t.co\\/4xZQVuxvKn\",\"1798\":\"We are excited to announce that the Head of Business Intelligence at MasterCard Foundation, Toyosi Odukoya will be speaking at the 2022 Bi-Annual Fellows Summit in Abuja, Nigeria.... \\n\\n#nonprofits #Pelosi #China #Taiwan #STEM #AbujaTwitterCommunity #SDG4 #Google #Ethiopia https:\\/\\/t.co\\/nUxgLZ5V5V\",\"1799\":\"\\ud83d\\udd39\\ufe0f Show Your Face: Showing your face will help you gain trust. Share personal moments in your stories or even on your feed.\\nWhatsapp || #hypealert_gh #Taiwan https:\\/\\/t.co\\/e07NqLgW9x\",\"1800\":\"\\ud83e\\udde1Taliah Waajid Tight Hold 5lb is great for starting and maintaining locs and styling natural hair, it works well on hard-to-hold hair.\\n\\nIt's also good for wavy hair and color-treated hair.\\n\\n\\ud83d\\udc49Send us a DM to order this product from @NectarBeautyHub \\n\\n#Taiwan #abstorm #nectar https:\\/\\/t.co\\/kisdiv3ca1\",\"1801\":\"Wired Life \\ud83d\\ude2f!!!\\n\\nJust a distance friend he was and we haven't spoken for eight years, only for him to chat me up this morning and then ask me to help him with some cash.\\n\\nIs this normal?\\n\\n#Taiwan \\n#LOONAinLA\",\"1802\":\"here to serve you @Jegcysystemsltd \\n*************************************************\\n#Trending #TrendingNow #Machala #Wizkidfc #Yankees #oilandgas #CCTVFootage #BIGBANG_StillLife #BigBrotherNaijaS7 #OBSYDIACrossing #Taiwan #instablog https:\\/\\/t.co\\/lCrcL9ajAW\",\"1803\":\"Truth is bitter but Batifieds get sense#BBNaija #BBC #Obidatti2023 #GoodGovernance #NewNigeria #OBIdientlyYUSful #NigeriaNews #BBNaija7 #Nigeria #buhari #Taiwan #helicopter #Ukraine #Lagos #AbujaTwitterCommunity #Obidiots #bachelorette #BBNaijaLevelUp #BBNaijaS7 #Arewa4PeterObi https:\\/\\/t.co\\/DGb6mixasv\",\"1804\":\"2\\/2 Register with this link below today! \\nhttps:\\/\\/t.co\\/UTJedhDrZX\\n\\n#firmusadvisory #easystart #InspiredToDeliverValue #startnowstarteasy #Messi #Pelosi #GoodMorningCMSir #businessgrowth #socialmedia\",\"1805\":\"@AmbLiuXiaoMing @Ambassador_Liu Pelosi wanted to act #WonderWoman movie by try to enter #Taiwan but to my knowledge #China\\u2019s sovereignty is more a Hollywood movies\",\"1806\":\"@AndyBxxx Pelosi wanted to act #WonderWoman movie by try to enter #Taiwan but to my knowledge #China\\u2019s sovereignty is more a Hollywood movies\",\"1807\":\"How much is the dollar price today?\\nHow much will the dollar be by December?\\nWhat moves have you made to earn in dollars?\\nSomethings shouldn't be explained, you do the maths yourself. \\n\\n#BBNajia \\n#Taiwan \\n#helicopter\",\"1808\":\"Pelosi wanted to act #WonderWoman movie by try to enter #Taiwan but to my knowledge #China\\u2019s sovereignty is more a Hollywood movies\",\"1809\":\"United States Nancy Pelosi now trending on Twitter over possible visit to Taiwan, as China could clash with USA\\n\\n#NaijaloveinfoForeign #politics #Naijaloveinfo #NancyPelosi #pelosivisittotaiwan https:\\/\\/t.co\\/1fTWGdlOMl\",\"1810\":\"See who APC wants to install in Aso Rock oooo \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\n\\n#Tinubu #Atiku #davidhundeyin #chelsea #Taiwan #BBNajia #PeterObiForPresident2023 #PeterObi4President2023 #peterobi #muslim #Christianity #labour #lagos https:\\/\\/t.co\\/SArKA5ljZo\",\"1811\":\"This young man, named Lateef Alabi has been declared wanted for absconding with almost 1 million naira as a supervisor at a local shop on the Island. He's 27years old. \\n\\nFOR ANY CONTACT PLEASE CALL 08133119839\\n\\n#batshetima\\n#bbnseason7\\n#infonaija \\n#Rufai \\n#Taiwan https:\\/\\/t.co\\/hEpOWmHgUo\",\"1812\":\"Fossil watch available in different colors as seen \\u2764\\ufe0f\\nPrice: 24k\\nSend a DM to order or a WhatsApp message to 09099250051\\n\\n#Taiwan #helicopter #watches #jewelry https:\\/\\/t.co\\/sNo6nErSIl\",\"1813\":\"May your dreams all come true in this month of August. If you believe say a bigger Amen.\\n\\n#Messi\\ud80c\\udcf5 fati HERE WE GO Made In Lagos #BBNajia #Taiwan Peter Obi Wizkid FC\",\"1814\":\"[Video] Sex is already in the Big Brother House. Watch to see raw.\\n\\nChristy O\\/Cyph\\/#BB24 \\/#BBNaija \\/Endsars\\/ #BeautyTukura \\/ #beauty \\/ #BambamSorry #Wike #TheBachelorette #Taiwan #LOONAinLA #helicopter #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #AlQaeda \\n\\nhttps:\\/\\/t.co\\/X3GvsGRqMZ https:\\/\\/t.co\\/egpmD7humb\",\"1815\":\"HERE WE GO \\nIts official #50,000 for the winner.\\n\\nPort Harcourt community its time to crown our champion! \\n#TheBachelorette \\n#Taiwan \\n#BBNajia \\n#NanaNu \\n@Postsubman \\n@UtdDistrict \\n@PH_Socials \\n@Chinnizm \\n@genesisultan \\n@Kcee_cares \\n@Lizzyda16843901 \\n@Manlike_ED \\n@Mr_Pucca \\nRt https:\\/\\/t.co\\/10ngdvISoZ\",\"1816\":\"CONGRATULATIONS TO ALL WINNERS YESTERDAY.TODAYS FIXED MATCHES ARE NOW AVAILABLE. YOU CAN CONTACT ME DIRECTLY ON \\ud83d\\udcde +2349095386137\\n#SouthEast #Pelosi #Rufai #ASUU #Taiwan #Osinbajo #Omatseye #CaterEfe #OsamaBinLaden #ZackOrji #Chelsea #Fati #Kaduna #Ethiopia #China #Igbos #AlQaeda https:\\/\\/t.co\\/1psy7gC5KG\",\"1817\":\"5th August \\ud83d\\udd25 sharp @Swanskid_ is dropping #Attention it's gonna be CRAZZY please help me share this \\ud83d\\udc90\\ud83d\\ude4f. Kindly retweet and like it please \\ud83e\\udd1e\\ud83d\\ude4f. \\n\\n#sarkodie Shatta Wale #Taiwan #thehighestblog #swanskid #LOONAinLA #abstorm #HOBIPALOOZA #chatsekscerita #BBNajia @kwadwosheldon https:\\/\\/t.co\\/kNfJpXzEWh\",\"1818\":\"It looks like #China \\u2019re invading #Taiwan after all\\n\\nKeep eyes \\ud83d\\udc40 on $Gold and oil https:\\/\\/t.co\\/1xtob4nllt\",\"1819\":\"Did you know?\\n\\nOil tankers are one of the real giants of the industry.\\n\\nOil tankers can be hefty as 650,000 tons, which is the size of supertankers. Their most common length is about 330 meters long, with the biggest ever built measuring 458m. \\n\\n#Taiwan #TheBachelorette https:\\/\\/t.co\\/L1zRvN2KQu\",\"1820\":\"Which little miss are you? Which little miss do you want to see next?\\n\\nWe cater to every little miss because there is one in us all\\ud83e\\udd7a\\n\\n#LittleMissMemes #Taiwan #TheBachelorette #smockafriq https:\\/\\/t.co\\/HfKQxECynC\",\"1821\":\"The united states' has kept Russia busy with Ukraine, they're Now testing China with Taiwan. Tell me again who are The World's sponsors of terror again.#Pelosi\",\"1822\":\"HERE WE GO #BettaIsBetta4APC \\n\\n#BettaEdu #Messi\\ud80c\\udcf5 #Pelosi https:\\/\\/t.co\\/UM1qF5VIak\",\"1823\":\"This is the funniest level 2 video you\\u2019ll see online\\u2026 \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02 channels Tv might not show you this \\nShay you see what Asuu has caused #sabinus #Carterefe #breastfeeding #Taiwan #HOBIPALOOZA #BlokirKominfo #Serbia https:\\/\\/t.co\\/Qjm7zKFdQa\",\"1824\":\"@CryptoRusputin Pure madness WWW3 loading maybe end of an era but let wait if there is going to be New world order #taiwan #China #usa #ChinaTaiwan\",\"1825\":\"Pelosi is already in Malaysia, from where she is expected to go to Taiwan.\\n #Pelosi #BBNajia #Malaysia #Trending #TrendingNow #viral https:\\/\\/t.co\\/79PsEmTWxo\",\"1826\":\"I want 1k followers before the end of August \\n\\nWho is helping a brother? \\n#Taiwan \\n#helicopter #BBNajia\",\"1827\":\"I just learnt that Nkem Owoh rejects N10 million naira to endorse Tinubu & APC while his fellow veterans sold their reputation to the Devil.\\n#Obidatti023 #WEURO2022\\n#PeterObi4President2023 #Taiwan #BBNajiaS7 Men of honour will stand the test of time. https:\\/\\/t.co\\/sXhWaguCll\",\"1828\":\"Mr. Datti Baba-Ahmed: \\\"We are not looking for money in government; we're working to have a government in money.\\\" @NgLabour @channelstv #Obidatti2023 #Taiwan #PeterObiForPresident2023 https:\\/\\/t.co\\/k4GUlSEBIn\",\"1829\":\"MY LORD WHATEVER MOMENTUM THAT PUSHES THE DOLLAR FROM N710 TO N545, SHOULD CONTINUE AND PUSH IT TO N190 WHERE BUHARI FOUND IT. IJN !!\\n#Taiwan\\n#BBNajia \\n#helicopter\",\"1830\":\"Machala way still toping chart oo\\n@wizkidfc_ \\n\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/AyJB2cNvoF\\n#Taiwan #BBNajia #HOBIPALOOZA #WEURO2022 #BBNajiaS7 #Wizkidfc #sabinus #BBNajiaS7 #CartierThailand #DGISPR https:\\/\\/t.co\\/Gsc6VYtLIQ\",\"1831\":\"Machala way still toping chart oo\\n@wizkidfc_ \\n\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/AyJB2cNvoF\\n#Taiwan #BBNajia #HOBIPALOOZA #WEURO2022 #BBNajiaS7 #sabinus #Machala #Carterefe \\n#bachelorette #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/xFqlXftWei\",\"1832\":\"I recorded this song on a free beat and rewired it when it turned out to be fire, I just needed someone else to hear it, please retweet if like what you hear \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude1e #HOBIPALOOZA #Taiwan #WEURO2022 #JacksonWang #KareenaKapoorKhan #CommonwealthGames2022 #bellashmurda @DONJAZZY @ https:\\/\\/t.co\\/Q4lHDOIvDn\",\"1833\":\"\\\"To be hopeful means to be uncertain about the future, to be tender toward possibilities, to be dedicated to change all the way down to the bottom of your heart\\\"\\n- Rebecca Solnit\\nShot and edited on phone\\ud83d\\udcf1\\nShot by: @MOphotos_\\n\\n#Cucurella #ASUU #BBNajia #Colwill #Taiwan https:\\/\\/t.co\\/uAJmMcFR0j\",\"1834\":\"https:\\/\\/t.co\\/uYIZsnNsWW\\nDaily Powered Word Devotional Podcast: Tuesday 2nd August, 2022.\\n#ChrisEvans #christyo #sabinus #Lagos #Amen #1stOfAugust #ZackOrji #SamOmatseye #Tinubu #Modella #BambamSorry #Taiwan #Tuesday #tuesdaythoughts #tuesdaymotivations #tuesdayvibe\",\"1835\":\"https:\\/\\/t.co\\/toWDdXD6xY\\nCryptocurrency has gone beyond interest. As before to keep money in the bank is a choice, but now it's necessary.\\n\\nSoon to keep your money in Trust wallet won't be a choice but anecessity.\\n\\n#Crypto #Taiwan #DGISPR #NFT #sabinus #BBNajia #cryptocurrency\",\"1836\":\"https:\\/\\/t.co\\/toWDdXD6xY\\nCryptocurrency has gone beyond interest. As before to keep money in the bank is a choice, but now it's necessary.\\n\\nSoon to keep your money in Trust wallet won't be a choice but anecessity.\\n\\n#Crypto #Taiwan #DGISPR #NFT #sabinus #BBNajia #cryptocurrency\",\"1837\":\"Everyone gets their role to play in the movies of life.#movienight #movie @clubedify #Taiwan #risethemovie #RiseWithUs #riseabove @EdifyCity #julydump. https:\\/\\/t.co\\/3UGKg2j9zW\",\"1838\":\"My YouTube channel \\ud83d\\udc47https:\\/\\/t.co\\/4JiZD94nSX #Mount #Tinubu #China #Taiwan #Tembisa #HOBIPALOOZA #BambamSorry #BBNajia #helicopter #WEURO2022 #BBNajiaS7 #JacksonWang #bachelorette #Tembisa https:\\/\\/t.co\\/HfsltgYerP\",\"1839\":\"Does anyone believe China will actually take military action against Pelosi and\\/or the US? #Poll #Taiwan\",\"1840\":\"Abortion preference \\ud83d\\ude02#Taiwan #BambamSorry #CartierThailand #MissUniverseThailand2022 #BBNajia #assmenassociation #assmenass https:\\/\\/t.co\\/dHcRIVWsmH\",\"1841\":\"\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f Comment AMEN if you believe \\u2764\\ufe0f\\ud83d\\ude4f\\ud83c\\udffd \\n______________________________\\n\\ud83d\\udd34 Follow @gospelempiregh for more posts like this\\n__________________________\\n#GospelEmpireGh #StrictlyGospel #Taiwan #LaalSinghChaddha #BBNajia #BambamSorry #WEURO2022 #jhopeAtLollapalooza #IdolsSA #DGISPR https:\\/\\/t.co\\/kTBD54YVNs\",\"1842\":\"Are you looking for the best plug to make lovely and affordable potrait artworks for your loved ones? Here I am,make me your sure plug\\ud83d\\udc4c\\ud83e\\udd70\\ud83e\\udd70\\n\\nPlease guys kindly RT\\ud83d\\ude4f\\n#Taiwan \\n#BBNajia \\n#BambamSorry \\n#WEURO2022 \\n#GetWellSoonJaehyun \\n#breastfeeding \\n#Daniella \\n#GetWellSoonJaehyun https:\\/\\/t.co\\/JUSyuW8qX1\",\"1843\":\"You won't know how important it is that \\\"He neither sleeps nor slumbers\\\" until He takes a break from you. \\n\\nThen you'll know that 5 seconds is enough for the devil to compress your world. \\n\\nIf not for God \\ud83d\\udc81\\u200d\\u2642\\ufe0f\\n\\nSay something \\\"praiseworthy\\\" to God \\n\\n#WEURO2022 #BambamSorry #Taiwan\",\"1844\":\"I think @POTUS announcing the death of #Ayman is politics at this kind of time. It happened since saturday. The US wants to take medias focus away from Ta\\u00efwan i guess.\\n#Taiwan #China\",\"1845\":\"Mic \\ud83c\\udfa4 \\ud83c\\udfa4 check 123\\n#twitterblades #Taiwan #WEURO2022 #CartierThailand #Taiwan @shattawalegh https:\\/\\/t.co\\/D56uMBIgM0\",\"1846\":\"Everything don reduce quality, Even electricity no dey shock like before \\n\\n#WEURO2022 #Taiwan #Nigeria #BLACKPINK #twitterblades #BBNaijaSeason7\",\"1847\":\"Happy New Month\\u2728\\n\\n#Taiwan #WEURO2022 #BambamSorry #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #August https:\\/\\/t.co\\/IBXTyaSezn\",\"1848\":\"Para by @paragon_qtm ft @zoroswagbag @talk2raw #MissUniverseThailand2022 #GetWellSoonJaehyun #twitterblades #BLACKPINK #GetWellSoonJaehyun #Kosovo #twitterblades #jhopeAtLollapalooza #bbillkin #CartierThailand #helicopter #BambamSorry #Taiwan #itscomehome #BORNPINK #BBNaija7 https:\\/\\/t.co\\/3fsUrrjRPY\",\"1849\":\"Yesterday I attended Bodex Social Media Hangout and it was really amazing \\ud83d\\udc4f \\n\\nKudos to @bodexng @realbodex \\n\\n#BBNajiaS7 #BBNajia #BBNaijaLevelUp #BBNaijaSeason7 #Taiwan https:\\/\\/t.co\\/2qnLi9wjTb\",\"1850\":\"Obedient are seriously hard #Taiwan #TheFlash #BBNajiaS7 #Obidatti2023 #PeterObiForPresident2023 https:\\/\\/t.co\\/MFXv8By8Ri\",\"1851\":\"The East still has a long way to go #BambamSorry #TheFlash #OBIdientlyYUSful #Taiwan https:\\/\\/t.co\\/KnUGijTCXF\",\"1852\":\"God bless you #Taiwan #HOBIPALOOZA #TheFlash #BambamSorry #AsiaCup2022 #asuu #BB24 #trends https:\\/\\/t.co\\/YzAaOBweRs\",\"1853\":\"Happy New Month \\u2763\\ufe0f\\nWelcome to the month of great expectations\\n#TheFlash \\n#Taiwan \\n#GetWellSoonJaehyun \\n#BeautyTukura \\n#AmakaXAmazons \\n#davidoafronation \\n#physed\",\"1854\":\"It's Plentyyy freestyle song by @burnaboy \\n#sabinus #Wizkidfc #BBNaijaSeason7 #BBNajia #Taiwan #HOBIPALOOZA #BambamSorry #jhopeAtLollapalooza #CartierThailand #helicopter #bbillkin #Serbia https:\\/\\/t.co\\/eLUBHzjIDG\",\"1855\":\"PLEASE GET YOUR PVC\\nVideo created by yours faithfully \\u2764\\ufe0f\\ud83d\\ude4f\\ud83d\\udc2c\\n\\\"GOD ABEG\\\"\\n#GodAbeg \\n#sabinus \\n#BambamSorry \\n#BLACKPINK \\n#twitterblades \\n#Taiwan \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\n#BamBamWeloveyou\\n#bbillkin https:\\/\\/t.co\\/w6vBipGCtz\",\"1856\":\"Happy New Month Y'all \\ud83e\\udd29\\ud83c\\udfa8\\ud83d\\udc9c!\\n\\n#adeyyytweets #newmonth #August #Taiwan #sabinus #twitterblades https:\\/\\/t.co\\/bXH7Zy0d9H\",\"1857\":\"My new song \\u201cNOT ME\\u201d now available on all music platforms Stream\\/Download https:\\/\\/t.co\\/Pxw3tlsJLO @FRANKRICHBOY @thisisprinx @Limoblaze @DONJAZZY @EeZeeConceptz18 #BBNaijaGuinnessSmooth #afrogospel #machala #ASUUStrikeMustEnd #Taiwan https:\\/\\/t.co\\/zQtHHQOWRz\",\"1858\":\"I am very pleased to announce Oliver Alawuba as the new Group MD\\/CEO of UBA Group \\u2013 Elumelu\\nhttps:\\/\\/t.co\\/z3dW4u0zzE\\n\\n#BBNaija Hermes #Taiwan Nkem Owoh #HOBIPALOOZA Happy New Month @UBAGroup @OliverAlawuba @TonyElumeluFDN\",\"1859\":\"Check out my nft collection on opensea, you'd love it\\ud83d\\ude0d\\n#NFTMarketplace #openseanfts #nftarts #NFTCollection #NFTCollectibles #nftcollectors #NFTCommmunity #Ethereum #Taiwan #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nhttps:\\/\\/t.co\\/AP1GB4E6tn\",\"1860\":\"Givin Dem by @YungWillis #HOBIPALOOZA #Taiwan #BambamSorry #jhopeAtLollapalooza #helicopter #CartierThailand #sabinus #bbillkin #Kosovo #Serbia #BLACKPINK #JACKBAM_KPOPMASTERZBKK #twitterblades #GetWellSoonJaehyun #BamBam_KpopMasterzMNL #MissUniverseThailand2022 https:\\/\\/t.co\\/V3ghu8lbvk\",\"1861\":\"Please follow me, retweet, I follow back \\ud83d\\ude4f\\n#follo4folloback #FolloMe #PeterObiForPresident2023 #BATSHET2023 #AtikuOkowa2023 #Taiwan #HOBIPALOOZA #BambamSorry\",\"1862\":\"Please follow me, retweet, I follow back \\ud83d\\ude4f\\n#follo4folloback #FolloMe #PeterObiForPresident2023 #BATSHET2023 #AtikuOkowa2023 #Taiwan #HOBIPALOOZA #BambamSorry\",\"1863\":\"Please follow me, retweet, I follow back \\ud83d\\ude4f\\n#follo4folloback #FolloMe #PeterObiForPresident2023 #BATSHET2023 #AtikuOkowa2023 #Taiwan #HOBIPALOOZA #BambamSorry\",\"1864\":\"Guys let me know what you think about my flows #Taiwan #HOBIPALOOZA #BambamSorry #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #jhopeAtLollapalooza #CartierThailand #RapSht #rapper #BLACKPINK #twitterblades #Serbia #Kosovo https:\\/\\/t.co\\/DMKDoJ0LDv\",\"1865\":\"\\ud83e\\udd8b\\ud83e\\udd9c\\ud83c\\udf39\\ud83c\\udf08\\ud83c\\udf7e\\ud83c\\udfd6 make love and remake\\ud83d\\udc9a\\ud83e\\udd1d \\ud83d\\udc95 \\u2764 with the one for you https:\\/\\/t.co\\/HHgRXpJbj7 #BBNajiaS7 #sabinus #twitterblades #goviral #BOOMchallenge #Taiwan #BambamSorry #HappyNewMonth #CartierThailand #twitterhandle #Twitter #explode #earthquake #GoodMusicGoodTalkDial https:\\/\\/t.co\\/ehjfrhKK7X\",\"1866\":\"At the end of the day, all we ever want is to be loved, happy, healthy and financially stable.\\ud83e\\udd0e\\n\\n#Taiwan #HOBIPALOOZA #BB24 #BBNajia\",\"1867\":\"MARVEL QUIZ Game Download from @itchio Android Users\\ud83d\\udc47\\n(It's Free) \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/LBql7iOXZT\\n\\n#Taiwan #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 Davide Tasha #breastfeeding #GetWellSoonJaehyun #pltcashprize \\nNkem Owoh Hermes Hermes Christy O Khalid #LoveIsland2022 Big Brother #BBUK https:\\/\\/t.co\\/UjYlIcvSyj\",\"1868\":\"Caring about someone who doesn\\u2019t give a shit about you should be part of 1000 ways to die\\ud83d\\ude2e\\u200d\\ud83d\\udca8\\n#Taiwan #Wizkidfc #30bg #sabinus #GodAbeg #Osupa #GodAbeg #nkemowoh\",\"1869\":\"Would 1 $Fury change your life in 2023? \\ud83e\\udd14\\n\\n#Taiwan #sabinus #Ethereum #Bullish\",\"1870\":\"Are you looking for a professional Graphics designer?\\nThen look no further...\\nWe will design Your:\\nLogo\\nFlyers\\nBanners \\nYouTube thumbnails\\n3D mockup\\nBook cover\\nBusiness cards\\nCarton Animation\\ne.t.c\\nAt affordable price\\nDm let's get talking.\\n#nkemowoh #channels #Taiwan #CNN360 https:\\/\\/t.co\\/5JHbPFTf3V\",\"1871\":\"I love this freestyle please follow up @Itsdbabafatbili \\n#HOBIPALOOZA #breastfeeding #Taiwan #BambamSorry #follobackforfolloback \\n@davido @burnaboy @DONJAZZY @UMG @BIGHIT_MUSIC @TwitterMusic https:\\/\\/t.co\\/6uJ0Iz5I5n\",\"1872\":\"Months to come could be harsh. Russia-Ukrain. China-Taiwan\\/USA. North Korea might probably follow against Japan. #Taiwan #NancyPelosi #China\",\"1873\":\"The current situation around Asia and Europe is scary. Nancy Pelosi. China\\/Ta\\u00efwan. And who is next?. North Korea against Japan ?.\\n#Taiwan #NancyPelosi #China #Asia\",\"1874\":\"Empowerment: Humanitarian Ministry conduct GEEP 2.0 Training for South East Zone https:\\/\\/t.co\\/993olzwzER\\n#Taiwan #breastfeeding #empowerment\",\"1875\":\"\\ud83d\\ude46\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\u200d\\u2642\\ufe0f Everything don reduce quality in Nigeria....\\ud83e\\udd37\\ud83c\\udffb\\u200d\\u2642\\ufe0f\\ud83e\\udd37\\ud83c\\udffb\\u200d\\u2642\\ufe0fEven electricity no dey shock like before \\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00 #APC #pdp #breastfeeding #Nigeria #Taiwan\",\"1876\":\"Tell me what you see when u look at #SoloAlbum tracklist\\n\\nMe: Hits upon Hits\\ud83e\\udd75\\ud83d\\ude18\\n#bbillkin #HOBIPALOOZA #\\u0e41\\u0e1c\\u0e48\\u0e19\\u0e14\\u0e34\\u0e19\\u0e44\\u0e2b\\u0e27 #Taiwan #breastfeeding #Ninjawarriorsfc https:\\/\\/t.co\\/VpS5RTXpAg\",\"1877\":\"2 bedroom flat available for office use at busy Dopemu road. \\nSpacious \\nScreeded walls\\nSpacious parking space \\nPOP ceiling. \\nCall 08137441449 for inquiries. \\n\\n#sabinus 30bg Nkem Owoh Liz Benson #RealEstate #lagosbusiness #rent #OfficeSpace #WEURO2022 #Taiwan #HAPPYMARKDAY https:\\/\\/t.co\\/FI8xDQc5Vu\",\"1878\":\"Welcome August!\\nThe first day of a new month is always such an exciting time. So many things to achieve, so many new ways to explore. \\n\\nAugust to us feels like sound and soul.\\n\\nWhat is August to you?\\n#sabinus #Taiwan #nkemowo #okoloartcommunity #davidhundeyin https:\\/\\/t.co\\/IJ1D0u7p0y\",\"1879\":\"Omo all these world leaders self #WWIII\",\"1880\":\"HELLO CHAINDUSTRIANS !\\n\\nAugust is here\\ud83e\\udd70\\nWhat are your goals?\\n\\n\\\"One with CHAINDUSTRY is MAJORITY\\\"\\nLet us help you achieve them all\\ud83d\\udcaf\\n\\n#DoToEarn #crypto #NFTs #metaverse #DeFi #web3 #sabinus #taiwan https:\\/\\/t.co\\/BNFbyWrV1Y\",\"1881\":\"Happy New Month Twitter family. Wishing you all a glorious new month ahead.\\n\\nPlease kindly don't forget us in this issue. We are less than 15 days away from the deadline.\\n\\nThanks\\n\\n#Taiwan \\n#breastfeeding \\n#CommonwealthGames2022 \\n#Trending \\n#WEURO2022 \\n#Kosovo \\n#bbillkin https:\\/\\/t.co\\/g02CkrFAsf\",\"1882\":\"30BG Anthem\\ud83d\\ude2b\\ud83d\\ude2d\\u2764\\ud83d\\udd25\\u270a\\nCompetition lowkey\\ud83d\\ude02\\n#30bgAnthem #davido #Machala #trending #ogbrecent #HOBIPALOOZA #Taiwan #BORNPINK #BORNPINK https:\\/\\/t.co\\/MTEiayyU1Z\",\"1883\":\"#reminder entry location soon, my first short film, suppot my husle. help #retweet #nkemowoh #channelstv #femiadebayo #osupa #lizbenson #zackorji #davidhundeyin #Anambrastate #PeterObiForPresident2023 #Asiwaju #BBNaija #Taiwan #shortfilm this film nah #Machala #CartierThailand https:\\/\\/t.co\\/cJYbjTHw10\",\"1884\":\"CryptoPunks\\u2019 Gains1,847% After Tiffany & Co. Launches Exclusive NFT Collection #HOBIPALOOZA #Taiwan #CryptoNews #cryptopunks #NFT #cryptocurrency https:\\/\\/t.co\\/N9HnMCskFX\",\"1885\":\"The man that opens beer drinks with his hands. \\n#actsphotography \\n#042cinema \\n#PeterObiForPresident2023 \\n#peterobicampaignfund \\n#PeterObi2023 \\n#PeterObi \\n#HOBIPALOOZA \\n#Taiwan https:\\/\\/t.co\\/gIHTxx6dG3\",\"1886\":\"Lmao Even Devil is confused Aunty want double chance God \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02 \\u201cI no like small breast na big Breast I like\\u201d lenu hajia Balikis #Taiwan #BeautyTukura #Tobi #davidhundeyin #level2 https:\\/\\/t.co\\/OUtHA5Huqa\",\"1887\":\"Proverbs 3:5-6\\n\\n5\\u00a0Trust in the LORD with all your heart and lean not on your own understanding;\\n\\n6\\u00a0in all your ways submit to him, and he will make your paths straight.\\n\\n#Kosovo #WEURO2022 #Taiwan #CommonwealthGames2022\",\"1888\":\"Like and retweet till almost everyone in the nft space sees the huge potential in @cubexnft \\n#CUBEXTAKEOVER #NFT\\n#Taiwan #CubeXNft hermes https:\\/\\/t.co\\/GUyAyfbPWh\",\"1889\":\"If you go like be my babe na now o...\\nI fi change mind next 4 weeks \\n\\n#HOBIPALOOZA #Taiwan #CartierThailand\",\"1890\":\"It's been 24 hours since I posted this, I hesitated so much before I did ..kindly go through this and retweet as it would go a long way. \\nThank you. \\n#Taiwan #julydump #marriage #BambamSorry #CommonwealthGames2022 #WEURO2022 #sabinus https:\\/\\/t.co\\/GwilK70XZu\",\"1891\":\"What is happiness to you?. Clothe a child today. Please RTW \\ud83d\\ude4f. #sabinus #HOBIPALOOZA #taiwan nkem owoh ambode amaka david hundeyin https:\\/\\/t.co\\/JvxqQWIYkG\",\"1892\":\"#johnfrancis\\n\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\nFollow @minJohnfrancis \\n\\n#bbillkin #HOBIPALOOZA #\\u0627\\u0644\\u0645\\u0646\\u062e\\u0641\\u0636_\\u0627\\u0644\\u0645\\u062f\\u0627\\u0631\\u064a #Taiwan #CartierThailand #KareenaKapoorKhan #ClashdeCartier https:\\/\\/t.co\\/oMhWzebz1H\",\"1893\":\"It's movement! \\nWe've gotta move to every slums an hut were social media will not cover\\n#ANewNigeriaWePlead \\n\\nPeter Obi | Wike | ASUU | Dennis| Sabinus | Alexis Sanchez\\n#Taiwan #Kosovo #PeterObiForPresident2023 https:\\/\\/t.co\\/gJtMbSLYWg\",\"1894\":\"Hello\\ud83e\\udee3 #HOBIPALOOZA #CommonwealthGames2022 #Taiwan https:\\/\\/t.co\\/dW10Gpztl4\",\"1895\":\"Happy Mew Month Friends.\\nIdentify The Giants\\nFace The Giants\\nSlay The Giants\\nYou'll be better for it \\n\\n#brandstrategy #businessgrowth #adennn #brandidentity #BambamSorry #WWIII https:\\/\\/t.co\\/fCK2E788IZ\",\"1896\":\"It already 8th month of the year 2022,\\nHow about those your new year goal ate as must to accomplish?\\nHope you're on it as you should.\\n#HOBIPALOOZA \\n#Taiwan \\n#WEURO2022\",\"1897\":\"You are too young to be worrying about relationship Problems,relax and concentrate on food.\\n\\n#Taiwan \\nCarter Efe\\nNkem Owoh\\n#sabinus \\nAmbode\\nDavid Hundeyin\\nWWIII\\nAmerica Has A Problem\\nBrt lane \\nFalz\\nYorubas\\n#Wizkidfc \\nOkowa\\nASUU\\nGod Abeg\\nAsiwaju\\nAnambra\\n#PeterObiForPresident2023 https:\\/\\/t.co\\/CUBz7ldRnk\",\"1898\":\"Pelosi news aren't looking good, the US are deploying planes and war ships near the coast of #Taiwan. On Wednesday she will reportedly meet with the Taiwanese president. China warns the US to visit Taiwan and threats with war and a harsh respond.\",\"1899\":\"Am at that point where I don't know what exactly the future holds but i find solace in prayer as I put in the efforts daily. Keep working and praying!\\n\\n#Taiwan \\nCarter Efe\\nNkem Owoh\\n#sabinus \\nAmbode\\nDavid Hundeyin\\nWWIII\\nAmerica Has A Problem\\nBrt lane \\nFalz\\nYoruba\\n#Wizkidfc https:\\/\\/t.co\\/ZyiQgn4CTX\",\"1900\":\"Smart Guy #WEURO2022 Wizkid #bbrightvc #BBNajia Bbnaija #CartierThailand carter Efe #Taiwan https:\\/\\/t.co\\/MDkabUxKgK\",\"1901\":\"The BATIST camp are planning to do what OBI-dients did to Reno.\\nAccording to them,David Hundeyin torments their soul\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23.\\nSo they want to report his profile like Reno.\\n\\nAmbode #Taiwan Anambra Yorubas WWIII https:\\/\\/t.co\\/6T86iAwjJc\",\"1902\":\"Very thoughtful.\\nImpending doom sensed #Taiwan https:\\/\\/t.co\\/I9LoC0DERj\",\"1903\":\"My Twitter will also be 2years this August \\ud83d\\udd25\\ud83d\\ude4f\\nPlease follow \\ud83d\\udccc\\ud83d\\ude4f\\u2764\\ufe0f\\n\\nhttps:\\/\\/t.co\\/k4iKIA9tRn\\n\\n#HOBIPALOOZA #Taiwan #BBNajia Big Ivy Sarkodie Shatta #Serbia https:\\/\\/t.co\\/vwgIXQLOT4\",\"1904\":\"BIRTHDAY CELEBRATION.\\n\\ud83c\\udf82 \\ud83c\\udf88 \\ud83c\\udf89 \\ud83c\\udf81\\nWe are delighted to celebrate our Resident Pastor, Rev. Tersur Aben on the occasion of his Birthday. (30\\/07\\/2022). \\nOn this your special day sir, we wish you good health, happiness, joy and peace. \\n#birthday #HappyBirthday #Taiwan #love #Travel https:\\/\\/t.co\\/myQlXwZlZT\",\"1905\":\"Modernization and development in somewhere in the world.\\n\\n#ASUU #WWIII https:\\/\\/t.co\\/X7rfQ2rEPP\",\"1906\":\"9th August, my Facebook page will be 2years please do well to follow for updates \\ud83e\\udd1e\\ud83d\\udccc\\n\\nhttps:\\/\\/t.co\\/ToNSJkIxWT\\n\\n[Sarkodie|||Shatta wale|||#YorkshireDay #Taiwan #WEURO2022 #BBNajia #LaalSinghChaddha https:\\/\\/t.co\\/eXlUInEdo1\",\"1907\":\"This will never stop cracking me #HOBIPALOOZA #Taiwan #BBNajia #\\u0e04\\u0e34\\u0e21\\u0e40\\u0e1a\\u0e2d\\u0e23\\u0e4c\\u0e25\\u0e35\\u0e48 #LaalSinghChaddha #KareenaKapoorKhan #Andor #AreYouTubedIn #rihanna #BambamSorry #korean #BbPilipinas2022 #WEURO2022 #FIFA23 #LaalSinghChaddha #CartierThailand https:\\/\\/t.co\\/V2PmeBB50q\",\"1908\":\"Watch Out FAMS \\u2764\\ufe0f\\ud83d\\udd25\\ud83d\\udd25#HOBIPALOOZA #Taiwan #WEURO2022 #BBNajia #BBNaijaS7 #BBNaija7 #R2Bess #5StarAlbum #BURNABOY\\ud80c\\udcf5 #Damini https:\\/\\/t.co\\/ud3jjDMVu4\",\"1909\":\"Who ordered the killing at Lekki toll gate?\\n\\n@Official_ABAT ordered the killing!\\n\\n#EndSARS \\n#EndBadgovernment\\n#OBIdientlyYUSful \\n#Obidatti023 \\n#BBNajia \\n#labourchallenge \\n#BBNaija7 \\n#HOBIPALOOZA \\n#Taiwan \\n#WEURO2022 https:\\/\\/t.co\\/TovN2qJV7A\",\"1910\":\"Watch Full Sex Tape Of Togolese TikToker, Bhadie Kelly\\u2019s Lookalike #Taiwan #kellybhadie https:\\/\\/t.co\\/fqpeLXBMMy\",\"1911\":\"Karim has started again #taiwan #karimbenzema #RealMadrid #WEURO2022 https:\\/\\/t.co\\/h8wiD4WeVp\",\"1912\":\"O U T L O O K a passion project designed and vizualized by me.\\n3ds max\\nVray \\nMegascans\\nPhotoshop\\n#photo #photograghy #Taiwan #WEURO2022 #Kosovo #MondayMotivation #qanda #lifedrawing #love #HappyEnding #web #Metaverse #BBNaija7 #Twitter https:\\/\\/t.co\\/vl2y3aQJUA\",\"1913\":\"Like this it you agree with me..\\n\\n#loml #Taiwan #breastfeeding #jhopeAtLollapalooza #Taiwan #Serbia #WEURO2022 #August1st #Asiwaju #GetWellSoonJaehyun #MondayMotivation https:\\/\\/t.co\\/PLF3UKH9sI\",\"1914\":\"2 Corinthians 5:10\\nFor we must all appear before the judgment seat of Christ; that every one may receive the things done in his body, according to that he hath done, whether it be good or bad.\\n#Taiwan #WEURO2022 #jhopeAtLollapalooza #LaalSinghChaddha #Kosovo #LalSinghChaddha #ETH\",\"1915\":\"U.S House Speaker, Nancy Pelosi, to visit Taiwan despite China\\u2019s warnings\\n\\n#Pelosi #Taiwan #NancyPelosi #China \\n#War #PLA #Xi #President #Biden #WorldWar #Russian #RussianArmy #Russia #RussiaUkraineWar https:\\/\\/t.co\\/qNdwENoIg0\",\"1916\":\"@kalibaro @thecyrusjanssen where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1917\":\"When you can\\u2019t stop admiring your customer #thistailormadgan #Taiwan #breastfeeding #BoycottLaalSinghChaddha #justrite https:\\/\\/t.co\\/1BSBnsdam3\",\"1918\":\"@DevonHeinen where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1919\":\"Africa in me ep is out. Check it out on https:\\/\\/t.co\\/3Dhf1s1rGk @King_Enam \\n#FIFA23 #sturbbornacademy #soccerbetproleague #Rundiamount #StopSellingPi sell #BambamSorry #BORNPINK #BBNaija7 #HungarianGP Drake Bill Russell Cucurella #Taiwan #WEURO2022 #breastfeeding #Kosovo https:\\/\\/t.co\\/IK1pLZQY1y\",\"1920\":\"@faststocknewss where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1921\":\"@financialjuice where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1922\":\"@dimitrilascaris where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1923\":\"You keep asking how did they make it*\\nBut you're not even ready to learn it.\\n The best platform \\ud83d\\ude4c to learn and earn right now ..is #learnoflix affiliate. \\n #breastfeeding \\n#Taiwan\",\"1924\":\"@cnni where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1925\":\"When a Nigerian goes to hell \\n\\n#ASSU #August2022 #BBNaija7 #HappyNewMonth #Taiwan #WEURO2022 https:\\/\\/t.co\\/4tcOjmrumP\",\"1926\":\"Don\\u2019t miss this guys \\n@Favvs_luv @gifttedone @VitalieNFT \\n\\n#NFTs #Metaverse #Taiwan https:\\/\\/t.co\\/g0kPuR0w81\",\"1927\":\"@tenzin_tsenpey @tacocheeeze @evilccgsr @ReutersWorld @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1928\":\"@SecBlinken where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1929\":\"Happy new month\\n\\n#Taiwan #WEURO2022 #breastfeeding #BBNajia #geomedphix #idographics https:\\/\\/t.co\\/2PlI32PKrC\",\"1930\":\"@SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1931\":\"@lesiavasylenko where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1932\":\"@MZHemingway where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1933\":\"Marry Two wives and know peace. It's high time, our men started marrying 2wives and reduce Spinsters and unwanted Fornication.\\n#inmymind #breastfeeding #Taiwan #tweetviral #TWICE\",\"1934\":\"@MZHemingway where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1935\":\"@amyklobuchar where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1936\":\"@lesiavasylenko where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1937\":\"@JoJoFromJerz where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1938\":\"@McFaul where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1939\":\"Pi is a new digital currency developed by Stanford PhDs, with over 35 million members worldwide. To claim your Pi, follow this link https:\\/\\/t.co\\/kWIlfMlFB3 and use my username (lxythegreattt) as your invitation code.\\n\\nStart mining pi if you haven\\u2019t #Taiwan #PiNetwork #PUBG\",\"1940\":\"Fen\\u2022di \\ud83d\\udd25\\nAll sizes available \\nN15,000 \\nWhatsApp\\/Call us- 08104504438\\nMinna \\ud83d\\udccc \\nNationwide deliveries \\ud83d\\ude9a \\nMore pictures below \\u2b07\\ufe0f \\n\\n#Taiwan #breastfeeding #WEURO2022 #BBNajia https:\\/\\/t.co\\/0sHsnO4v1A\",\"1941\":\"There\\u2019s no limit to what you can achieve and to what you can be if you press on a little more\\n\\n#Taiwan #BBNajiaS7\",\"1942\":\"Something different to spice up your style!\\ud83c\\udf3b\\ud83c\\udf3b\\nIts handmade by Me!\\nPlease support me \\ud83d\\ude4f\\ud83c\\udffe\\nRetweet if you can my customer could be on your TL.\\nIts very affordable too!\\n#ASUU #Kano #PeterObi #Tinubu #Modella #WWIII #LOML #BBnaija https:\\/\\/t.co\\/I7cy0ZJJCH\",\"1943\":\"Well I just found the white Daniel Regha \\n\\n#Taiwan #ASUUStrike ASUU Peter Obi Ambode Anambra state Carter Efe LOML Lionel Messi Calabar Femi Adebayo WWIII dumfries #BBNajia bbn https:\\/\\/t.co\\/9NAV1ek83W\",\"1944\":\"@markmackinnon where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1945\":\"@matthewstoller where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1946\":\"@matthewstoller where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1947\":\"On the eve of #Nancy #Pelosi's possible visit to #Taiwan, the #Chinese army released an impressive show of force video\\n\\n Pelosi's arrival on the island is expected at 21:00-22:3030l.\\n#NANCY_PELOSI #WEURO2022 #FightingXiaoting #\\u0e04\\u0e34\\u0e21\\u0e40\\u0e1a\\u0e2d\\u0e23\\u0e4c\\u0e25\\u0e35\\u0e48\\n\\nhttps:\\/\\/t.co\\/LHRkDDU1Ae https:\\/\\/t.co\\/6JSTNrIZMR\",\"1948\":\"@JamesTHarris where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1949\":\"@ryankakiuchan where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1950\":\"@usatodayDC where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1951\":\"I used a STOPLOSS! Did you?\\ud83e\\uddd0\\ud83e\\uddd0\\n\\n#WEURO2022 #binance #BBNaija #Taiwan https:\\/\\/t.co\\/aXpX9C8mNH\",\"1952\":\"Summer face\\ud83c\\udf08\\u2728 #Taiwan #BBNajia #SummerVibes https:\\/\\/t.co\\/Pv6m41SylF\",\"1953\":\"Happy new month from all of us at MajikHub \\n#BBNaija7 #majikhub #bbnaija #Taiwan #WEURO2022 https:\\/\\/t.co\\/lrJoRAaQRz\",\"1954\":\"Being a graduate no guarantee you success !\\n#WEURO2022 \\n#Taiwan \\n\\n@officialnyscng \\n@KizzDaniel \\n@falzthebahdguy \\n@davido https:\\/\\/t.co\\/OECVty5uP6\",\"1955\":\"Even Amaka has nails on, a lot of them do. \\n#Taiwan https:\\/\\/t.co\\/E2p2n3SGZv\",\"1956\":\"@townhallcom where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1957\":\"@ReutersWorld where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1958\":\"@LennyDykstra @disclosetv where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1959\":\"@YanniKouts where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1960\":\"@WarMonitor3 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1961\":\"OBO fans dey worry dey go normally \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02 @davido @instablog9ja #Carterefe #Machala #Taiwan #davido #WEURO2022 #BLACKPINK https:\\/\\/t.co\\/pOm7Om460e\",\"1962\":\"@Ehsan_Butt where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1963\":\"@EWErickson where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1964\":\"@Faytuks where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1965\":\"@ZackCooper where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1966\":\"@ZackCooper where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1967\":\"@ZackCooper where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1968\":\"@AnthonyAdragna where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1969\":\"@xeni @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1970\":\"\\u201cWe start with excitement and enthusiasm but end up with excuses and explanations\\u201d\\n\\nExcerpt From Finish What You Start, Peter Hollins\\nThis material may be protected by copyright. #HOBIPALOOZA #Taiwan #WEURO2022 #breastfeeding #jhopeAtLollapalooza #BoycottLaalSinghChaddha\",\"1971\":\"@xeni where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1972\":\"@CBSEveningNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1973\":\"@iainmarlow @HouseInSession where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1974\":\"@SullyCNBC where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1975\":\"@20committee where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1976\":\"@Newsweek where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1977\":\"Happy new month Kings and Queens. Remember to always stay OBIdient and prepare to vote, so you can live like the kings and queens that you are.\\nhttps:\\/\\/t.co\\/uismrZ4sRV\\nWWIII | BRT lane | #Kwankwaso | Sam Omatseye | Reuben Abati | Zino | Asari | #Taiwan https:\\/\\/t.co\\/hQmqYCqcfY\",\"1978\":\"@AtlanticCouncil where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1979\":\"@jsolomonReports where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1980\":\"@jsolomonReports where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1981\":\"@usatodayDC where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1982\":\"@fox5ny where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1983\":\"@StephenGlahn @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1984\":\"@rwang0 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1985\":\"@CNN @willripleyCNN where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1986\":\"@seanspicer where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1987\":\"@jankibaat1 @pradip103 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1988\":\"@bpolitics where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1989\":\"@AtlanticCouncil @MarkTEsper @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1990\":\"20yoGirl: Boy's pix with captions \\\"Today for final choice\\u2764\\ufe0f\\ud83e\\udec2\\ud83e\\udd70\\ud83d\\udc8d\\ud83d\\udd10\\ud83e\\udd0d\\ud83d\\udc99\\u2764\\ufe0f\\ud83d\\udc9e\\ud83c\\udf82\\ud83c\\udf89\\\"\\n.\\nMe: L\\ud83e\\udd23L, LWKMD, should we tell her?\\n.\\n#ASUU #GistLoverStory #StopSellingPi #Taiwan #Bbnaija #BellaOkagbue Go and Verify Zack Orji Rescue Nigeria #BBNaija7 #Modella #BamBamSorry #sabinus Tinubu\",\"1991\":\"@xeni where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1992\":\"@SenRickScott @MarshaBlackburn where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1993\":\"@starsandstripes where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1994\":\"@nktpnd where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1995\":\"@wartranslated where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1996\":\"@_JakubJanda where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1997\":\"@MonaSalama_ where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1998\":\"@yeongno3 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"1999\":\"@en_haili @SpeakerPelosi @POTUS where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2000\":\"@anniefreyshow where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2001\":\"@SpecCoffeeHouse where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2002\":\"@WIONews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2003\":\"@MailOnline where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2004\":\"@StockMKTNewz where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2005\":\"@wildeyeq where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2006\":\"@nktpnd where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2007\":\"@Newsweek where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2008\":\"@CNBC @onlyyoontv where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2009\":\"@atiku and @IAOkowa is the best 2023 presidential candidates and by God grace victory is for @OfficialPDPNig\\nAnd NIGERIANS.\\n@Rasheethe\\n@renoomokri \\n@Princeaso_ \\n#okowa l #atiku l #Taiwan \\n#princeaso #NigeriaDecides2023 https:\\/\\/t.co\\/TJ2rq8YZYa\",\"2010\":\"@20committee where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2011\":\"@IndiaToday @ehtangen @gauravcsawant where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2012\":\"@20committee where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2013\":\"@bmusonza where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2014\":\"@AmichaiStein1 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2015\":\"@ftworldnews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2016\":\"A new video is up on my YouTube channel \\nhttps:\\/\\/t.co\\/MBH8D8Fqop\\n\\nIt's a dope video, trust me. I share video ideas for food content creators.\\n\\n#BBNaija7 #bbnaija #Taiwan #HOBIPALOOZA #breastfeeding #YouTuber\",\"2017\":\"Diversity in a nutshell \\n\\nMay God order your steps this new month famz\\ud83d\\udc9e\\n\\n#August2022 #gratefulheart #Bmadonna\\n\\n #NFTGiveaway @ https:\\/\\/t.co\\/MfV62ryHqb\\n\\n #Taiwan #EuroWomen2022 #EURO2022 #nft https:\\/\\/t.co\\/6923p84X0g\",\"2018\":\"@Joelsherman1 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2019\":\"@FoxNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2020\":\"@RnaudBertrand where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2021\":\"@GarlandSculptor @RnaudBertrand where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2022\":\"U.S. deploys ships and planes near #Taiwan as #Pelosi eyes visit\\n\\nhttps:\\/\\/t.co\\/jCtrQ7eZrr\",\"2023\":\"@guardian where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2024\":\"@RnaudBertrand where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2025\":\"@SameeraKhan @AlMayadeenNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2026\":\"@politico where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2027\":\"@bpolitics where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2028\":\"@OliviaSiongCNA where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2029\":\"@OliviaSiongCNA where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2030\":\"@PaulHuangReport @tingtingliuTVBS @SpeakerPelosi @newtgingrich where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2031\":\"Don't expect Loyalty from people who can not even give you Honesty\\n#up2dateEntertainment #Taiwan #Kosovo #Kosovo @QwadwoHoodstar @y1025fm, @ultimate1069fm, @kuami_lexis_kl\",\"2032\":\"Rate the Insecurity in Nigeria 1-10 pls watch, like, share and subscribe on our Youtube channel https:\\/\\/t.co\\/7RHKT3iaJt #brtlane #WWWIII #breastfeeding #LagosState #Taiwan #Tinubu #traitors #bigwiz https:\\/\\/t.co\\/iCDKK9zSO4\",\"2033\":\"Does tribe matter to you when choosing a partner?\\nDeji\\/ Barcelona\\/Beauty\\/Maddison\\/Cucurella \\/Go and very\\/#GistLoverStory \\/#WEURO2022\\/#breastfeeding #Taiwan\",\"2034\":\"@tingtingliuTVBS @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2035\":\"@joshrogin where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2036\":\"@WalesOnline where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2037\":\"@NavalInstitute where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2038\":\"@G_CURLEY where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2039\":\"@RnaudBertrand @pedoscanrot where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2040\":\"@IuliiaMendel @POTUS where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2041\":\"@_JakubJanda @Vystrcil_Milos where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2042\":\"@EWErickson where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2043\":\"@RepMarkGreen @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2044\":\"@AndrewDesiderio @alexbward @paulmcleary where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2045\":\"@AndrewDesiderio where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2046\":\"Registered 2007 Toyota Corolla LE ,,,Toks standard ,buy and drive ,nothing to fix \\u2026N2.4M\\nCall\\/Whatspp\\u2026.08103362707\\u2026\\nFor more details and inspection \\nLocation: lagos \\u2026.\\nKindly RT \\ud83d\\ude4f\\u2026. #Taiwan #HOBIPALOOZA #WEURO2022 #BoycottLaalSinghChaddha #bigwiz #Cucurella https:\\/\\/t.co\\/TMldnVY2jN\",\"2047\":\"where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on.\\n 8.2 meeting. https:\\/\\/t.co\\/ivTOwIvcCd\",\"2048\":\"where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/0v5dUVHyQw\",\"2049\":\"#SoloAlbum official tracklist \\ud83d\\udd25\\ud83d\\udd25\\n#HOBIPALOOZA #Taiwan #FightingXiaoting #thevoicept #ENGGER https:\\/\\/t.co\\/38TTtS8Nkp\",\"2050\":\"Tbvh ehn, #SoloAlbum is damn hot, I don't think you all are ready for it.. Get your speakers ready for #SoloAlbum...\\n\\nhttps:\\/\\/t.co\\/FUp1TahSAu\\nCheck out the tracklist in thread\\n#zomergasten #WEURO2022 #Taiwan #bb24 #BambamSorry #Ninjawarriorsfc #MissUniverseThailand2022\",\"2051\":\"Check out this item on OpenSea https:\\/\\/t.co\\/alsdPxw3mQ via @opensea \\nThe breathtaking 78ft statue of Queen Tassi Hangbe who\\ninstituted the legendary Dahomey Amazons.Located across the road from the presidency in Cotonou..\\n#NFTGiveaways #NFTs #Taiwan #cotonu #NFTCommmunity\",\"2052\":\"@Newsquawk where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2053\":\"I spoke about vibrations, energy and how the laws of attraction comes to play in our lives! \\n\\nThe book is a No-Brainer! \\u265f\\n\\n#Taiwan #breastfeeding #WEURO2022 #jhopeAtLollapalooza #BoycottLaalSinghChaddha #25LawsofEmotionalIntelligence\",\"2054\":\"Welcome to the month of August.\\nMay this month be filled with happiness and joy and may all your home owning dreams come true. \\ud83d\\ude0a\\ud83e\\udd17\\n#beholdhomes #happynewmonth #helloaugust #realestate #homeownership #ASUU #BamBamFansignMNL #Tinubu #Anambra #LagosState #WW3 #WEURO2022 #Taiwan https:\\/\\/t.co\\/8bqWGTWDkW\",\"2055\":\"Government has failed us\\n#Tinubu #StopLying #HOBIPALOOZA #BBNaija #breastfeeding #Taiwan #Elections2022 \\nMachala gbe mi trebaye\\ud83d\\udcaf https:\\/\\/t.co\\/y4qnjB5rNx\",\"2056\":\"@SpeakerPelosi will visit Taiwan despite getting continuous threats of consequences due to her visit to Taiwan.\\n#NancyPelosi\\n#Taiwan\\n#USA\\nNancy Pelosi to Visit Taiwan Despite Warnings from China https:\\/\\/t.co\\/O3iw8rNJiM\",\"2057\":\"Good luck in #Taiwan Mrs #NancyPerosi https:\\/\\/t.co\\/3EwEgnhvnk\",\"2058\":\"High taper clean\\ud83d\\udd25\\ud83d\\udc88\\n\\n#HOBIPALOOZA #Taiwan #WEURO2022 #breastfeeding #jhopeAtLollapalooza #Serbia #Kosovo #JACKBAM_KPOPMASTERZBKK #Machala #BambamSorry #ENGGER #BLACKPINK #qanda #bachelorette https:\\/\\/t.co\\/VShdaabNY2\",\"2059\":\"2022 Chapter 8 of 12\\nFrom all of us at Agro Market Square.\\n\\nWe wish you a fruitful new month.\\n...\\n......\\n.........\\n......\\n...\\n#AgroMarketSquare #newmonth #Taiwan #Agriculture #AgroLife #Agriculture #foods https:\\/\\/t.co\\/C4Lj4tJjjI\",\"2060\":\"Filter the noise and make sense of it in your quiet. #WEURO2022 #breastfeeding #Taiwan #\",\"2061\":\"\\ud83d\\udea8 BREAKING: OGC Nice have reached an agreement in principle to sign Aaron Ramsey on a free transfer. \\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc77\\udb40\\udc6c\\udb40\\udc73\\udb40\\udc7f \\n\\n(Source: @Santi_J_FM) \\n\\n#NaijaBet #WEURO2022 #Taiwan #Transfers https:\\/\\/t.co\\/brnptiS1U6\",\"2062\":\"#PlayingWithFire \\n#US #China #Taiwan \\n\\nChina\\u2019s ready to \\u2018bury invading enemies\\u2019 https:\\/\\/t.co\\/dFSsCYKxhG\",\"2063\":\"This story is fake, I just over fed, and when I eat too much this is the kind of thing I write to ki.ll time, so thank you for wasting your time too. We will be alright las las.\\n\\nANAX\\n\\n\\u00a9\\ufe0fKingdavid Chinaeke Ofunne\\n#breastfeeding #Taiwan #WEURO2022 #qanda #BLACKPINK #ENGGER #Kosovo\",\"2064\":\"Have you ever wish to know how the movie tricks are done?\\n\\n#HOBIPALOOZA #Taiwan #BBNaija #WEURO2022 https:\\/\\/t.co\\/HyV09hKL85\",\"2065\":\"Get prints of my art prints on anything you want....these sure look beautiful. I could make anything you want. Give me a descrip\\nClick my website: https:\\/\\/t.co\\/vw3P0wsMj4\\n#art #artcollector #artprint #walldeco #nft #japancollector #WEURO2022 #drawing #design #Taiwan #HOBIPALOOZA https:\\/\\/t.co\\/Xrfhp82TIj\",\"2066\":\"Sudan reported its first confirmed Monkeypox case. A 16-year-old student was confirmed sick with the disease in West Darfur state.\\n#jhopeAtLollapalooza #Taiwan https:\\/\\/t.co\\/LXSlna9e0M\",\"2067\":\"You might want to join early as the training is only available for a few persons \\n#ASUU #ASUUStrikeUpdate #Taiwan\",\"2068\":\"When the cost of living index in the country now is less than 40%.. The truth is that your salary alone can't sustain you.. But what if you can actually add up to your source of income by doing what you already do with just your smartphone and Internet connection #ASUU #Taiwan\",\"2069\":\"What most students fail to understand is that our country is no longer dependent on the educational sector, we all hope to graduate, get a good job and live comfortably(that's a fantasy if you still don't know). How much will your job pay you? 100k, 200k? #ASUU #Taiwan\",\"2070\":\"It is no longer news that ASUU has extended the strike by four weeks.This actually shows how unserious our country is with the educational sector. As they've played your time in school, do you think they'll value your certificate gotten from a strike-based education?#ASUU #Taiwan https:\\/\\/t.co\\/tbCfHRdBxB\",\"2071\":\"Thanks \\ud83d\\ude4f\\ud83c\\udffd team #Modellabbn for the 30k on IG #WEURO2022\\u00a0 #Taiwan #Nigerian #breastfeeding #BBNaija\\u00a0 #BBNaija\\u00a0 #BBC #BBNajiaS7 #BBNaija2022 https:\\/\\/t.co\\/alddff8jzd\",\"2072\":\"On This Day, 1 August 1774*\\n (248 years ago) British scientist Joseph Priestley discovered oxygen gas, corroborating the prior discovery of this element by German-Swedish chemist Carl Wilhelm Scheele #Taiwan #Sweden #WEuro2022Final #100DaysOfCode #1000xgem #100T #WEURO2022\",\"2073\":\"Smile\\u00a0is the best remedy in each failure. Strive more. If you fail, strive again. Never rush things too hard, they might break into pieces in which you can never fix.\\n#HOBIPALOOZA #WEURO2022 #Taiwan #100DaysOfCode #Taiwan #breastfeeding #Serbia #1000xgem #Bitcoin #JHOPE #Browns\",\"2074\":\"\\u2728Manicurex nail polish remover with sponge 75 has been formulated for the quick and gentle dissolving of nail polish without the need for tissues, cotton wool, disks, or pads. \\n\\n\\ud83d\\udc49Send us a DM to get this product.\\n\\n#HOBIPALOOZA #Taiwan #Kosovo #Serbia https:\\/\\/t.co\\/x9TpnTDuBS\",\"2075\":\"To be honest, your financial situation is my biggest motivation- Drake\\n\\n#Churchhilldown #KNUST WWIII\\nBiggie WASSCE #Taiwan Ghana Card Singapore balde Saada China\",\"2076\":\"Redemption Song by @bobmarley \\n\\n\\ud83c\\udf9b \\ud83c\\udf9a\\ud83c\\udf99by @ericatasia \\n\\nShot by \\ud83c\\udfa5 @teekayclassic_ \\nEdited by Myself \\n\\n#BBNaija #BBNaija7 #WEURO2022 #HOBIPALOOZA #August2022 #Taiwan #breastfeeding #Kosovo #Serbia #BambamSorry #Browns #WEuro2022Final #JHOPE https:\\/\\/t.co\\/PcMK6IPWIb\",\"2077\":\"Did you know \\ud83d\\uded1?\\n\\n\\ud83d\\udccdArrow functions cannot be used as a constructor . They cannot be called with the 'new' keyword.\\n\\nRun the code below \\n#100DaysOfCode \\n#javascript \\n#Taiwan \\n#WEURO2022 https:\\/\\/t.co\\/10hp6dxgxr\",\"2078\":\"2023 Polls: \\n\\nPeter Obi believes that not being on social media is equivalent to being illiterate, he said this while countering Atiku's claim of 90% Northerners are not on social media.\\n#PeterObiForPresident2023 #taiwan #BBNaija\",\"2079\":\"Police Command on red alert over alleged threats to attack Lagos\\n\\nhttps:\\/\\/t.co\\/i1f6XamVxK\\n\\nSouth East Garner Bella Shmurda Arsenal #Taiwan Barcelona Chelsea Wike Hijack FC #gistloverstory #StopSellingPi Boehly #lekki Tinubu Cucurella Reuben Abati Femi Adebayo #breastfeeding Wike\",\"2080\":\"@MintPressNews had this solid graphic up. Beijing is actually calling Washington's bluff. That state official has not confirmed landing in #Taiwan .. 'democracy' and 'freedom' will only be sold from a nearby country this time. The UKR mission is done..NEXT! https:\\/\\/t.co\\/iODSOsQUWW\",\"2081\":\"One Day \\ud83d\\udccc \\n#lekki #breastfeeding #Taiwan ASUU July dump Hijack FC #Asiwaju https:\\/\\/t.co\\/flDaMtP9fT\",\"2082\":\"#Ukrainian soldiers Ambushed by #Russian soldiers. \\ud83d\\udc47\\ud83c\\udfff\\n\\nhttps:\\/\\/t.co\\/a0AZU6614O\\n\\n#Taiwan #Kosovo #TXTPALOOZA\",\"2083\":\"Whether na Machala Big wiz #Wizkidfc or \\nYou de rep for bella shmurda you de lekki abi na #Taiwan the thing be say #BADNE$$ #MANDEM VISUALS is COMING OUT SOON AND Y\\u2019\\u2019ALL ARENT READY FOR THE HEAT!!!!!\\n\\nhttps:\\/\\/t.co\\/p3HnABzvsm\\n\\nhttps:\\/\\/t.co\\/zZHAOgnYui https:\\/\\/t.co\\/KGhaoXaca8\",\"2084\":\"#Nancy #Pelosi Provoked #China 31 Years Ago \\ud83d\\udc47\\ud83c\\udfff\\nhttps:\\/\\/t.co\\/gQ0WXcKEqD\\n\\n#Taiwan #Kosovo #JHOPE\",\"2085\":\"Would China threaten to shoot down Newt Gingrish's phone or Mike Pompeo's?\\nThe decline of American. \\nMissing Trump yet?\\n\\n@mikepompeo \\n#Taiwan \\n@ScottPresler\",\"2086\":\"$Bond from our buy zone made a high of 42%. I hope you locked some profit. \\n#Btc #cryptocurrency Onitsha Burnaboy Binance Lekki Wike #Wizkidfc South East NYSC HijackFC #LUNC Go and Verify #StopSellingPi Bella Shmurda Igbo's #breastfeeding BigWiz Khalid #marriage #Taiwan Bercelona https:\\/\\/t.co\\/kJcWBoYlfh\",\"2087\":\"Yo! Tell me yo! lur me, iRo ni\\/na lie\\/ it\\u2019s all lies and fake \\n\\n#HOBIPALOOZA \\n#Wizkidfc \\n#BurnaBoy \\n#bellashmurda \\n#GodAbeg #Taiwan \\n#breastfeeding #jhopeAtLollapalooza https:\\/\\/t.co\\/4PAZj84JeP\",\"2088\":\"The US can't call itself a superpower anymore! Caving to threats? Something I never thought I would witness.\\n#NancyPelosi #ChinaTaiwan smh! China sees democracy as a joke and this would forever be the punchline!\",\"2089\":\"I support mademoiselle #Pelosi \\nwith her trip to #Taiwan . \\n(Who the F\\u2026 Is #XiJinping ?) #China https:\\/\\/t.co\\/yH4RqoEXaS\",\"2090\":\"My latest painting \\ud83d\\uddbc it's also a masterpiece \\u2728\\ufe0f Dm to purchase #abstractart #GALLERYDEPT #artgallery #arttweet #HOBIPALOOZA #WEURO2022 #jhopeAtLollapalooza #Taiwan #breastfeeding #Kosovo #BORNPINK #JHOPE #BambamSorry https:\\/\\/t.co\\/qGTxy5nqXe\",\"2091\":\"4 bedroom fully furnished house 4 sale at East Legon Accra Ghana #JHOPE #HOBIPALOOZA #WEURO2022 #Taiwan #BBNaija #BBNaijaS7 https:\\/\\/t.co\\/xIbwr9gXJl\",\"2092\":\"Nancy Pelosi is not important enough to state a word war.\\nPower, old age and alcohol don't mix well.\\n#Taiwan\",\"2093\":\"Over the past few months we have fought our way to the top of the #MEMECOIN rankings #MarvinInu did this through community hype and epic marketing.\\n\\nBag in $Marvin now and HODL \\n\\n@Marvin_Inu #1000Xgems #Taiwan #WEURO2022 #Kosovo #BNB #BBNaija #btc #MarvinInu https:\\/\\/t.co\\/xPmn2jesjy\",\"2094\":\"https:\\/\\/t.co\\/zholntUazT\\nCheck me out on Spotify pls \\ud83d\\ude4f \\n#Wizkid #JHOPE #WEURO2022 #Taiwan\",\"2095\":\"Hon @samgeorgegh This is #holycorruption you cannot understand.\\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude02\\ud83c\\uddec\\ud83c\\udded.\\n\\nWASSCE Saada RIP Bill Akufo-Addo #Taiwan #KNUST Pastor Bawumia Ajax Shatta Wale Onitsha https:\\/\\/t.co\\/AsSYtWesl8\",\"2096\":\"@ReutersChina where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2097\":\"@katie_martin_fx where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2098\":\"@hugolowell @BadBradRSR @BadBradBerkwitt where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2099\":\"@ReutersChina where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2100\":\"Get your brand a good graphics for as low as N2000 \\n\\nWe deliver fast...\\n\\nASUU Lekki Wike Peter Obi South East #StopSellingPi #marriage #breastfeeding Igbos Money Chelsea Tinubu #Taiwan Yoruba https:\\/\\/t.co\\/falX93ixiI\",\"2101\":\"Am Hezix! I Buy Bitcoin and PayPal funds at a very High rate\\ud83d\\udd25\\ud83d\\udd25\\nFast payment you can Dm me https:\\/\\/t.co\\/qDHdUtiSc7 \\n.\\n.\\n.\\n#Taiwan Sarr accidentally #Asiwaju #SolanaNFT balkans Yoruba wike ASUU and FG Rescue Nigeria Lekki marriage tinubu #breastfeeding The NRA\",\"2102\":\"Happy New Month\\n\\n#HOBIPALOOZA #jhopeAtLollapalooza #HappyNewMonth #Taiwan https:\\/\\/t.co\\/HllT8bGlHB\",\"2103\":\"Looking for the Best 360\\u00b0 Marketing & Brands Agency for Business Growth?\\n\\n\\ud83d\\udc49\\ud83c\\udffeVisit https:\\/\\/t.co\\/zrV9nsmhY0 to read more about us \\n\\n#brandnerds #BBNaija7 #WEURO2022 Khalid Messi hobi Italy Momo #CitiCBS Sam George Davido Togbe Sony Ghana Card Biggie WASSCE Sanda #Kosovo #Taiwan https:\\/\\/t.co\\/pS9xXRvM6A\",\"2104\":\"Osapa London, Lekki Lagos 450M $736,000 5 bedroom duplex house with swimming pool, cinema room, cctv, fitted kitchen, inbuilt speakers and many more \\n\\n#ASUU #Carterefe #Khalid #yorubas\\n#davido #nysc #Dami #marriage\\n#LagosState #breastfeeding #Taiwan #BBNaija https:\\/\\/t.co\\/eGU4KQ0iph\",\"2105\":\"@pinetwork_world Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #StopSellingPi #Taiwan #ASUU\",\"2106\":\"Pinnock Beach Estate, Osapa London Lekki Lagos is one of the most sought-after estate in Lekki Lagos, Nigeria. With a lot of gorgeously designed mansions houses.\\n#BBNaija #ASUU #Carterefe #Khalid #yorubas\\n#davido #nysc #Dami #marriage\\n#LagosState #breastfeeding #Taiwan https:\\/\\/t.co\\/N6nHd97aYr\",\"2107\":\"@khollyjhay Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/d36ETfc2is\",\"2108\":\"@99tension Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/JON6RErm7P\",\"2109\":\"@___Chachi Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/edeuEUUKmE\",\"2110\":\"Initial Deposit ...N10,000,000\\nEnjoy flexible payment on our Lekki Phase 1, off Plan Project\\n2 BEDROOMS APARTMENT - N62,500,000 $114,000\\n#BBNaija7 \\n#ASUU #Carterefe #Khalid #yorubas\\n#davido #nysc #Dami #marriage\\n#LagosState #breastfeeding #Taiwan https:\\/\\/t.co\\/08JqBCXvSR\",\"2111\":\"@firstladyship Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/0Wp9yQ0JHO\",\"2112\":\"@VictorIsrael_ Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/yiAW9zI1nH\",\"2113\":\"@_Just_Malik Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/Y6maa8aNF7\",\"2114\":\"@oou_prime Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/Kelu2VUCKU\",\"2115\":\"@FilmmeTalk Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan https:\\/\\/t.co\\/k9Dya2b4UL\",\"2116\":\"@danielaflorezz_ Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan https:\\/\\/t.co\\/O7sl5TBlhn\",\"2117\":\"Ajah, Lekki $92,000 55M 4 bedroom terrace duplex house with cctv, inbuilt speakers, fitted kitchen, and many more for sale.\\n#BBNaija7 \\n#ASUU #Carterefe #Khalid #yorubas\\n#davido #nysc #Dami #marriage\\n#LagosState #breastfeeding #Taiwan https:\\/\\/t.co\\/2vYeLJMZbj\",\"2118\":\"Chevron, Lekki Lagos 85M $114,000 4 bedroom terrace duplex house with a fitted kitchen, cctv, intercom, swimming pool, car port, inbuilt speakers and many more for sale. \\n#ASUU #Carterefe #Khalid #yorubas\\n#davido #nysc #Dami #marriage\\n#LagosState #breastfeeding #Taiwan https:\\/\\/t.co\\/rtsv7qMXJY\",\"2119\":\"Ajah, Lekki Lagos 85M $123,000 4 bedroom duplex house with a car port, cctv, bq, fitted kitchen, inbuilt speakers, jacuzzi and many more for sale. \\n#ASUU #Carterefe #Khalid #yorubas #davido #nysc #Dami #marriage #LagosState #breastfeeding #Taiwan https:\\/\\/t.co\\/44vS1j86Oq\",\"2120\":\"Happy New Month Fam. #BBNaija #breastfeeding #TREASURE #Ukraine #JHOPE #Khalid #Modella #BellaOkagbue #jhopeAtLollapalooza #Taiwan #Kosovo #Serbia #LalSinghChaddha #SuzukiPakistan #TXTPALOOZA https:\\/\\/t.co\\/b9gCgh80hJ\",\"2121\":\"Ajah 70M $127,000 Fully furnished 4 Bedroom Duplex House For Sale.\\n-Turn on post notifications to stay updated\\nFor more details & inspection bookings \\nSend us a DM\\/CALL\\nOLUSEGUN \\u260e\\ufe0f +2347063682164\\nWhatsApp: 09011588909\\n\\n#Taiwan #ASUU #BIGWIZ #Carterefe #Peterobi #yoruba #Ethereum https:\\/\\/t.co\\/bJrpcKyfop\",\"2122\":\"@KenRoth where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2123\":\"@BillKristol @BizRoundtable @USChamber where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2124\":\"@Morning_Joe where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2125\":\"@The_RockTrading where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2126\":\"@destandaard where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2127\":\"@SwarajyaMag where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2128\":\"@monitoreamos where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2129\":\"@BBCNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2130\":\"For our drivers we have mouth watering offers from health insurance benefits for you and your family members,to cheap rates and bonus for anybody you intro\\n\\nASUU \\n#Carterefe \\n#garner \\n#StopSellingPi \\n#Taiwan \\n#NYSC\\n#Fofana \\n#PeterObiForPresident2023 \\n#OBIDIENTS \\n#zulum\\n#Southeast https:\\/\\/t.co\\/guCA89QtKv\",\"2131\":\"@nypost where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2132\":\"@SimonLevyMx @cnnbrk where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2133\":\"Do what makes you happy \\nAs far say you no disturb my own peace \\nIf you won mad make you mad\\n\\ud83d\\ude0f\\ud83d\\ude0f\\n#MondayMotivation #Kosovo #Taiwan #TREASURE #BORNPINK #BBNaija7 #world #happy #August2022\",\"2134\":\"@Jeltjeb @NOS where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2135\":\"1k for 5 people.\\n\\nI want to buy lunch for anybody that retweet this post and drop aza.\\n\\nPlease I am picking randomly #jhopeAtLollapalooza #Kosovo #Taiwan #Serbia #TREASURE #BORNPINK #breastfeeding\",\"2136\":\"@visegrad24 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2137\":\"@ustaiwan where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2138\":\"@QuincyInst @Dalzell60 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2139\":\"@thewire_in where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2140\":\"@James_E_White where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2141\":\"@rommari where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2142\":\"@BBCNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2143\":\"@TelegraphWorld where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2144\":\"@jeffreyatucker where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2145\":\"Happy new month\\nMore win to us \\n#Ukraine \\n#Taiwan https:\\/\\/t.co\\/RCTA6UIYLy\",\"2146\":\"@ABC where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2147\":\"@JeromeTaylor where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2148\":\"@SteveDeaceShow where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2149\":\"@Joyce_Karam where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2150\":\"Download the LIMOSIRIS APP today for both drivers and riders cheap and affordable rates for both drivers and riders.available on playstore and Apple store\\n#ASUU \\n#Carterefe \\n#garner \\n#StopSellingPi \\n#Taiwan \\n#NYSC\\n#Fofana \\n#PeterObiForPresident2023 \\n#OBIDIENTS \\n#zulum\\n#Southeast https:\\/\\/t.co\\/3IGUplY2N4\",\"2151\":\"@JuddLegum @mtbarra @BizRoundtable @SenatorSinema where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2152\":\"@GOPChairwoman where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2153\":\"@Joyce_Karam where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2154\":\"@FoxNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2155\":\"@WSJ where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2156\":\"@ABC where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2157\":\"@CBSNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2158\":\"@guardian where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2159\":\"@Le_Figaro where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2160\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2161\":\"@BFMTV where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2162\":\"@SteveDeaceShow @theblaze where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2163\":\"@washingtonpost where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2164\":\"@flyairpeace REFUND MY MONEYYYYYY 168k that\\u2019s 200 dollar plus. REFUND MY MONEYYYY #jhopeAtLollapalooza #BBNaija #Taiwan #Kosovo\",\"2165\":\"@BarbMcQuade @JRubinBlogger where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2166\":\"@conorsen where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2167\":\"@JuddLegum @GM @mtbarra @BizRoundtable where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2168\":\"@EliotHiggins where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2169\":\"@PrisonPlanet where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2170\":\"@PrisonPlanet where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2171\":\"@PrisonPlanet where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2172\":\"@peterbakernyt @bruceweber1103 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2173\":\"@pbump where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2174\":\"@mtaibbi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2175\":\"@EURACTIV where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2176\":\"@SamRamani2 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2177\":\"@BarstoolBigCat where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2178\":\"where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/wGO4kZzOHa\",\"2179\":\"@RULiquid where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2180\":\"@DailyMail where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2181\":\"@alessionaval where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2182\":\"@jeff_kaye where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2183\":\"@brianhioe where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2184\":\"@ivan_8848 where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2185\":\"@HindustanTimes where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2186\":\"@willripleyCNN @EricCheungwc @kylieatwood @NewDay where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2187\":\"@JeromeTaylor @AFP where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2188\":\"@andreasharsono @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2189\":\"@BillKristol where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2190\":\"@ndtvfeed where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2191\":\"@spectatorindex where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2192\":\"August abeg no do like your earlier siblings oh... I use God beg you ni.. August Obey oh\\n#BORNPINK #Taiwan #BeautyTukura #BBNajia\",\"2193\":\"@AnonOpsSE where is #NancyPelosi @SpeakerPelosi #Pelosi ? welcome to \\ud83c\\udde8\\ud83c\\uddf3#Chinese #Taiwan, we are waiting for you \\u2026\\u2026,come on. https:\\/\\/t.co\\/g2UFpv5FWP\",\"2194\":\"May your #August be filled with Accomplishment, Productivity, and Success. Happy New Month. #Mondayvibes\\n\\n#Tembisa #StopSellingPi #breastfeeding #Wizkidfc #LUNC #Taiwan #Ilebaye #Asuu #nigerians #twitter #lagosnigeria https:\\/\\/t.co\\/ttoQqo8OUd\",\"2195\":\"@SkyNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2196\":\"@ltntw where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2197\":\"@Reuters @Breakingviews @JennHughes13 where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2198\":\"@SkyNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2199\":\"@AsiaFreePress @MFA_China where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2200\":\"@cnni where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2201\":\"@SCMPNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2202\":\"@cnni where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2203\":\"This video is trending so far on the internet #Taiwan #Trending #ViralVideo @BestShadito @AmgMedikal @shattawalegh @phobia_fans https:\\/\\/t.co\\/VzsqenS9T5\",\"2204\":\"@MirMAKOfficial where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2205\":\"@taiwanplusnews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2206\":\"@nathanlawkc where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2207\":\"@taiwanplusnews @JosephWen___ @bingwangtw where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2208\":\"@mkraju @EricCheungwc @kylieatwood where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2209\":\"@dw_hotspotasia where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2210\":\"@Taiwan_Today @MOFA_Taiwan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2211\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2212\":\"@CNN where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2213\":\"@CNN where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2214\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2215\":\"@cnni where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2216\":\"May the month of August bring more Blessings \\ud83d\\ude4f\\ud83d\\ude4f\\n\\n#newmonth #breastfeeding #BORNPINK #HOBIPALOOZA #StopRussiaNOW #StopSellingPi #Tembisashutdown #Ilebaye #wizkidfc #Serbia #Taiwan #BeautyTukura https:\\/\\/t.co\\/YQegSOY9ux\",\"2217\":\"2\\/2 Tap on this link to register NOW! \\nhttps:\\/\\/t.co\\/UTJedhDrZX\\n\\n#firmusadvisory #easystart #InspiredToDeliverValue #startnowstarteasy #Taiwan #CitiCBS #Messi #businessgrowth #socialmedia\",\"2218\":\"This estate is currently selling Plots at N5M until 7th August when the new price will be activated.\\n\\nNew price will be N7.5m\\n\\nBuy now before the price increases.\\nContact us on 08097374914.\\nRosemary @ HazibianIntl.\\n\\n#rozarealtor #lagosrealestate #Serbia\\n#Taiwan #BORNPINK #Kosovo\",\"2219\":\"Welcome to August 2022.\\n#web #webistagram #webs #webstagram #Akure \\n#company #websitecompany \\n#Messi\\ud80c\\udcf5 #Wizkid #Taiwan\\n@iampaulemeka @Dwayneire @Oluwasogo123 @JojoNationNG @_mmanwu_ @kennisfootwears @YummyTreat_ @iam_hikay @AKURECITY @Akurezaddy @AkureBuynSell @Syno_Imperio https:\\/\\/t.co\\/N9iF4AGHDy\",\"2220\":\"Welcome to August 2022.\\nPlease do well to check our next slide to see what we have for you guys this Month.\\n\\n#web #webistagram #webs #webstagram #webdesign #web3 #website #Akure \\n#company #websitecompany\\n#Messi\\ud80c\\udcf5 #Wizkid #Taiwan\\nDavido Carter Efe ASUU Percy Tau Boondocks Terri https:\\/\\/t.co\\/rSu0H3Ysup\",\"2221\":\"@KeithJKrach @SpeakerPelosi Opening of another front after Ukraine? #Taiwan\",\"2222\":\"You into your NFT project, and you need an artist? \\nI'm here for you. #artcollector #nft #art @opensea #Taiwan #obo #nfthub #fineartamerica \\n\\nhttps:\\/\\/t.co\\/vw3P0wsMj4\",\"2223\":\"@Newsquawk where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2224\":\"@MOFA_Taiwan @DanteMossi @CABEI_Org @EnriqueReinaHN @CancilleriaHN @MinexGt where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2225\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2226\":\"August is marked by majestic dignity respect & impressive,as you open up your heart largeness,greatness shall embrace you to lift & honor you. \\nHappy new month&welcome to my birth month,22:08 de code\\n\\u00b0\\n\\u00b0\\n#HOBIPALOOZA #jhopeAtLollapalooza #Kosovo #Serbia #Taiwan #BLACKPINK #UFC277 https:\\/\\/t.co\\/5qEEYKR6Xg\",\"2227\":\"Happy New month!!!\\n\\n#newmonth #August2022 #Taiwan #AugustWish https:\\/\\/t.co\\/TP3THbcurf\",\"2228\":\"What a way to end July! #Taiwan #HOBIPALOOZA #Trending #WEURO2022 #TrendingNow https:\\/\\/t.co\\/Qpkfw5I2oz\",\"2229\":\"Happy New Month fam \\ud83d\\ude09\\ud83d\\ude0d\\n#vennrhymes #internationalspeaker #Serbia #Kosovo #Taiwan #BLACKPINK #BBNaija7 #breastfeeding #mondaythoughts #MotivationalQuotes https:\\/\\/t.co\\/GyKivgJTKm\",\"2230\":\"I love our African parents, they are superb \\ud83d\\ude0d \\n#African #AfricasWomensDay #AfricaWomensDay #africanprostitute #AfricanFootball #africanteen #Africa #HOBIPALOOZA #jhopeAtLollapalooza #Kosovo #Serbia #Taiwan #BLACKPINK #Serbia #Lollapalooza \\nOur channel: YouTube Ocy Dun Comedy 1 https:\\/\\/t.co\\/SjIb9fEcHe\",\"2231\":\"6days togo for the official premiering of \\\"Superman\\\" by @youngbobby4real\\n\\nWatch this electrifying and energetic performance get a feel of vibrant rapper.\\n\\n#BBNaija7 #HOBIPALOOZA #Serbia #Taiwan #BLACKPINK #breastfeeding https:\\/\\/t.co\\/U2kEVZJVPo\",\"2232\":\"She became Nigeria's best - known Potter, was awarded a decorate and was made MBE in 1963 despite not having a formal education\\u201d.\\n\\n|Calabar Khalid Abuja Erica The GOAT IJGB Yorubas Asiwaju Niger Delta Liz Benson \\n#Taiwan Dunamis Carter Efe Wike #Obidatti023|\",\"2233\":\"Welcome to the covenant month of NEW... \\nI Prophesy let old things pass away and New things begin in Jesus name.\\n#newmonth\\n#New #breastfeeding #HOBIPALOOZA #Serbia #Taiwan #BLACKPINK #BBNaija7 #kpss2022 #Lollapalooza #\\ub108\\ud76c\\uacc1\\uc5d0_STAY\\ud55c\\uc9c0_4\\ub144 #TaapseePannu https:\\/\\/t.co\\/JscPy4y8kZ\",\"2234\":\"May the best comes your way as you trust us to secure your dream job this new month \\ud83d\\ude0a.\\n\\nHappy new month amazing clients, jobblasts cares. \\n\\nVisit our website for updates https:\\/\\/t.co\\/atTUd8qhFi\\n Or \\nKindly send your CV to:\\nrecruitment@jobblasts.com #Serbia #Taiwan #BLACKPINK https:\\/\\/t.co\\/6phqI5q4Vn\",\"2235\":\"Imagine growing this size of cucumber in 9ja\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\\nWomen will be like, this cucumber is wonderful one \\ud83d\\ude46\\ud83c\\udfff\\u200d\\u2642\\ufe0f\\ud83d\\ude02\\n\\n#HOBIPALOOZA #Serbia #Taiwan #breastfeeding #vawulence #vawulenceTv #vawulenceHQ https:\\/\\/t.co\\/RhFri0ZtWW\",\"2236\":\"Happy New Month to all our Esteemed Client \\u2705\\u2705\\n\\n#WEURO2022 #Kosovo #Abuja #Taiwan #BLACKPINK #August #breastfeeding #Serbia #JHOPE #BamBam #MissUniverseThailand2022 #AbujaTwitterCommunity #BBNajia #bbnaija #Bbnaija #newmonth https:\\/\\/t.co\\/5sJUGqLYM3\",\"2237\":\"Welcome to the Beautiful month of #august .\\n\\nKindly click bio link to subscribe to our #youtube\\n#Fnktvetalk\\n#fashionmataz \\n#fnksiblings \\n#comedy\\n#Fnktv\\n#trending\\n#afrobeats \\n#nigeriaentertainment \\n#ghanaentertainment \\n#mondaymotivation #BBNaijaGuinnessSmooth #BBNaija7 #Taiwan https:\\/\\/t.co\\/ngR2bsaPZx\",\"2238\":\"@brianhioe where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2239\":\"@Focus_Taiwan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2240\":\"@rosemaryCNN @LevinsonJessica where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2241\":\"@LinkeviciusL where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2242\":\"@nytchinese where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2243\":\"@CBSNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2244\":\"@lukedepulford where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2245\":\"@SCMPNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2246\":\"@WSJ check the rise base,it's very low?\\n\\nwhere is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2247\":\"@GilbertCollard where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2248\":\"@MSNBC @thereidout where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2249\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2250\":\"@cnni where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2251\":\"@HannaLiubakova where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2252\":\"@yarotrof where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2253\":\"@RediTlhabi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2254\":\"@JujuliaGrace where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2255\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2256\":\"@dw_chinese where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2257\":\"@SkyNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2258\":\"Happy 1st of August to all the #ShibaDoge #family @RealShibaDoge #SHIBARMY #DOGEARMY #SHIBARIUM #unity #love #Respect #NFTs #NFTGiveaway #NFT #BBNaija7 #NATO #Kosovo #Serbia #jhopeAtLollapalooza #BLACKPINK #Taiwan #BeautyTukura #HOBIPALO0ZA #JHOPE #TXTPALOOZA #HobiPaloozalsComin https:\\/\\/t.co\\/5raea53SKE\",\"2259\":\"New Month Design for Entrepreneurs Academy.\\n.\\n.\\n#newmonth #august\\n\\n #jhopeAtLollapalooza #Serbia #Kosovo #BLACKPINK #Taiwan #BBNaija7 #BeautyTukura #NATO #JHOPE https:\\/\\/t.co\\/xRSc2cPjYW\",\"2260\":\"Happy New Month from Petrousy.\\n.\\n.\\n#newmonth #august #business\\n\\n #jhopeAtLollapalooza #Serbia #Kosovo #BLACKPINK #BBNaija7 #BAMBAM_KPOPMASTERZBKK #Taiwan #BeautyTukura #NATO #JHOPE https:\\/\\/t.co\\/JjHyJ7KvAk\",\"2261\":\"Subscribe to my YouTube channel:ayoolasylvanus \\ud83d\\udc48\\ud83c\\udffe #jhopeAtLollapalooza #Serbia #Kosovo #BeautyTukura #NATO #Taiwan #deputygovernor #HOBIPALO0ZA #HarryStylesPortugal #AmberHeardIsALiar #BAMBAM_KPOPMASTERZBKK https:\\/\\/t.co\\/gahv6I41Cx\",\"2262\":\"Editor of Shine Publications Jerry Wonder with 2019 Best Actress of the Year (Ghana Movie Awards) at the premiere of 'Zongo Boys' at SilverbirdCinemas in Accra. #shinepublications #salmamumin #zongoboys #NATO #Taiwan #GhanaCard https:\\/\\/t.co\\/mUso2qBbTk\",\"2263\":\"Who left 75billion naira for Anambra state in naira and dollars while leaving office and till today Anambra state has not given him a penny as gratuity or pension as an ex-Governor?\\nAnswer: Peter Obi \\n\\nGet your PVC ready..! #BBNaija7 #Taiwan @PeterObi #GistLoverStory #Nigeria\",\"2264\":\"Hy u , yes u \\ud83d\\ude4b\\nHow was ur night \\ud83e\\udd71\\n\\n#Nigeria #BBNaija #BeautyTukura #JHOPE #Taiwan #AmberHeardIsALiar @IAmENISA @Tylathecurator #BLACKPINK @bella_okagbue\",\"2265\":\"I will generate verified and exclusive leads for your business..\\nTo know more about my service, Kindly contact me through the link ..\\n#Kosovo #Taiwan #HobiPaloozalsComing #BeautyTukura\\n#BAMBAM_KPOPMASTERZBKK #HarryStylesPortugal\\n#Serbia #BLACKPINK \\n\\ud83d\\udc47\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/qnT9SYwRP4\",\"2266\":\"\\ud83e\\uddd0\\ud83e\\uddd0\\ud83e\\uddd0I hope you have a STOPLOSS on?\\n\\nGood morning folks\\n\\n#BBNajia \\n#jhopeAtLollapalooza \\n#StopSellingPi \\n#Serbia \\n#Taiwan https:\\/\\/t.co\\/5ax4aWy7WO\",\"2267\":\"Today's Update!! (24hrs)\\nBitcoin\\n$23,405 - 1.75%\\nEthereum\\n$1,695 - 0.52%\\nBinance coin (BNB)\\n$288 - 2.27%\\nShiba inu\\n$0.0000012 + 2.96%\\nPlease note: the above prices are not stable it changes any moment.\\n\\nBinance Anambra State Satoshi #Taiwan Ethereum Machala\",\"2268\":\"@politicalelle where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2269\":\"@cskun1989 where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2270\":\"@dw_chinese where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2271\":\"@JackPosobiec where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2272\":\"@MZHemingway where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2273\":\"@JackPosobiec where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2274\":\"@JackPosobiec where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2275\":\"@lindyli where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2276\":\"@S7i5FV0JOz6sV3A where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2277\":\"@meimei1935 where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2278\":\"@narendramodi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2279\":\"@MZHemingway where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2280\":\"@narendramodi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2281\":\"@JoJoFromJerz where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2282\":\"@JoJoFromJerz @TheRickWilson where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2283\":\"@JackPosobiec @AngryGoTFan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2284\":\"@Realrclark25 where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2285\":\"@DDNewslive where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2286\":\"@Taiwan_Today @KaohsiungCity @chimaichen where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2287\":\"@benedictrogers @spectator where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2288\":\"@RedState where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2289\":\"@NBCNews @NBCNewsTHINK where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2290\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2291\":\"#NancyPelosi close to #Taiwan yet?? \\n#PatrickLeahy https:\\/\\/t.co\\/vsETtshyt3\",\"2292\":\"Has #NancyPelosi been shot down over #Taiwan yet?? Asking for a friend.......\\n#China https:\\/\\/t.co\\/MS2xpI5o0k\",\"2293\":\"Where is Paul #Pelosi today?\\n\\nAsking for a few million friends.\",\"2294\":\"Enjoy New Music from @Realjmartins & @johnPelfor237 titled \\\"Tension Remix\\\"\\n\\nEnjoy below :\\nhttps:\\/\\/t.co\\/JIDWh4yOn2\\n\\n#237showbiz #Cameroon #Taiwan #SummerSlam #BBNaijaGuinnessSmooth #earthquake\",\"2295\":\"#PelosiWatch #Qdrop6 #NoTaiwan? #Taiwan?\\n\\\"Follow the money, it\\u2019s the key.\\nWhat is Pelosi\\u2019s net worth by way of one example. Why coincidentally is her memory apparently going?\\nCover for possible future indictment to plead what?\\\"\\nhttps:\\/\\/t.co\\/8mADUNGDxT\",\"2296\":\"Why Ms Pelosi skipped visit to China?\\nPerhaps the signaling was well picked\\n#Taiwan #China #US\",\"2297\":\"Wow she's vibing to my song. https:\\/\\/t.co\\/evpr5hHEN3. Babcock Asake Wike #Wizkidfc South Korea Liz Benson Amaka WAEC #Machala Kess Carter Efe Yorubas Peter Obi eloswag and phyna #Taiwan #BeautyTukura Sign the Petition Asiwaju #PastorKumuyiSaid Hermes. Stream guys https:\\/\\/t.co\\/EFVl0k7LQm\",\"2298\":\"Have you watched this yet? \\ud83d\\udd25\\ud83d\\udd25\\n\\nhttps:\\/\\/t.co\\/MeZl1xCmvn\\n.\\n.\\n.\\n.\\n.\\n#beats #beats4sale #beatsbydre #beatsforrappers #beatsforsale #beatsheadphones #beatstars #chelsea #drdre #fingerdrumming #freebeats #gym #gymlife #gymmotivation #gymrat #headphone #headphones #hiphopbeats #Taiwan https:\\/\\/t.co\\/cS2Fw2TBPr\",\"2299\":\"As seen in a house of God today \\ud83d\\ude01 NOT FOR SALE is spreading like a virus \\ud83e\\udda0 #NFS\\ud83e\\udee1\\ud83c\\uddf3\\ud83c\\uddec #SummerSlam #Taiwan #BBNaijaGuinnessSmooth #FreakyGirl #kpss2022 #binance #2023Elections #GetYourPVC https:\\/\\/t.co\\/XVtQ6tcN06\",\"2300\":\"Stream new music from #MCNeillex & #Dub titled \\\"What If\\\"\\n\\nhttps:\\/\\/t.co\\/X9x5kJnS4o\\n\\n#237showbiz #Cameroon #SummerSlam #Taiwan #BBNaijaGuinnessSmooth #earthquake https:\\/\\/t.co\\/wfA440sIzV\",\"2301\":\"The best moments is when you're done with that moment. Always save your memories somewhere.\\n.\\n#BBNaijaGuinnessSmooth \\n#SummerSlam \\n#Taiwan \\n#earthquake \\n#FreakyGirl \\n#BAMBAM_KPOPMASTERZBKK \\n#binance https:\\/\\/t.co\\/zXmnyJEvZZ\",\"2302\":\"Snail Farming | How To Sterilize Soil for Snail Farming | Complete Begin... https:\\/\\/t.co\\/I9yK4OCRbh via @YouTube\\n\\nKindly click on the to be educated and inspired \\ud83d\\ude0a\\n\\n#BBNaijaGuinnessSmooth #earthquake Chelsea Ghanaians SummerSlam #StubbornAcademy Chelsea Sarkodie GOAT #Taiwan https:\\/\\/t.co\\/AKlA1xj1lb\",\"2303\":\"Where are all my Great ,Obidient and Yusful Youths of Niger State, here is an opportunity for us to take our stand. Let's join hands together and deliver the set man @PeterObi . #earthquake #SummerSlam #BBNaijaGuinnessSmooth #binance #sundayvibes #Taiwan #russiaisaterrorisstate https:\\/\\/t.co\\/7TGcKQpHd2\",\"2304\":\"4 bedroom house for sale at East Legon Trasacco Accra Ghana #BBNaijaGuinnessSmooth #BBNaija #Taiwan #SummerSlam https:\\/\\/t.co\\/LO53hz3pmI\",\"2305\":\"Houses for sale at East Legon Hills Accra Ghana $160,000 #BBNaijaGuinnessSmooth #Taiwan #ManUtd https:\\/\\/t.co\\/KqBDT0mISo\",\"2306\":\"#VoicenoteByTClassic #FanBantsOzoOut\\n#PastorKumuyiSaid\\nUber Itachi July dump Today is Sunday Tfare Thanksgiving #wearethenew Moses Niger Delta Hallelujah #Solana #Taiwan #BBNaija7 #BBNaijaGuinnessSmooth \\nStart reading from the top.\",\"2307\":\"So much to learn from one episode \\nMy parents are bullies https:\\/\\/t.co\\/2yarHEjoSv #Taiwan #China #SummerSlam #TREASURE #FreakyGirl #kpss2022 #Lollapalooza #binance #TREASUREinBANGKOK #SanjayRautExposed #ADA #VikrantRonaBlockBuster\",\"2308\":\"Winning assurance in this group keeps me having much trust @Emmanuelbest506.sir you are the best and I salute your source\\n#100DaysOfCode #Lekki #Tinubu #Itachi #NairaMarley #Uber #BBNaija #ivanatrump #Black #Chelsea #Yorubas #Daniella #PrinceCharles #Taiwan #Esther #Vicepresident https:\\/\\/t.co\\/FXjOwhXEjI\",\"2309\":\"This one shock me\\n#BBNaija7 #VoiceNotebyTClassic #FreakyGirl #BBNaijaGuinnessSmooth #Taiwan https:\\/\\/t.co\\/fGtUB1fBM6\",\"2310\":\"#Taiwan #BBNaijaGuinnessSmooth #TREASURE #NMIXX #TREASUREinBANGKOK #russiaisaterrorisstate \\nLet's check this https:\\/\\/t.co\\/QOYwHv3cmU\",\"2311\":\"Which one be more painful? \\n \\nGetting bounced\\/Broken-heart\\ud83d\\udc94#SummerSlam #Taiwan #BBNaija7 #China #BBNaijaGuinnessSmooth #BAMBAM_KPOPMASTERZBKK #Lollapalooza #INDvPAK #kpss2022 #NMIXX #TREASUREinBANGKOK #sundayvibes #SanjayRautExposed #russiaisaterrorisstate\",\"2312\":\"Of the blood of D innocent be made against those that are guilty who dwell on earth.\\n\\n#letGodBetheJudge \\n#JudgementDay \\n#RENAISSANCE \\n#Four4HorseMen \\n#BBNaija7 \\n#China v #Taiwan \\ud83d\\udc40\\n#TheBustwizeConspiracy \\n#BBNaijaGuinnessSmooth \\n#PastorKumuyiSaid \\n#SUNCOV \\n#CommonwealthGames2022\",\"2313\":\"Mad collaboration with seeta Kamani inna flipbar osu big up the team @kminty_gd @FLIPBarOsu \\n#SummerSlam #China #BBNaija7 #music #flipbar #osu #TREASURE #Taiwan https:\\/\\/t.co\\/G4glnkYqs6\",\"2314\":\"New Artwork Unlocked \\ud83d\\udd13 \\ud83d\\ude0e #abstractexpressionism #painting #Taiwan #BBNaija7 #BBNaijaGuinnessSmooth #TREASURE #Lollapalooza #binance #ThankYouPakArmy #INDvPAK #FGO7\\u5468\\u5e74\\u30e1\\u30c3\\u30bb\\u30fc\\u30b8 #artwork https:\\/\\/t.co\\/io3avlvA3r\",\"2315\":\"Girls and taking pictures after Sunday service Na 5&6 \\ud83e\\udd79\\ud83e\\udd79 Especially when they buy new clothe \\ud83d\\ude06\\n\\n#BBNaija7 #BBNaijaGuinnessSmooth #asake #doyin #Taiwan #Lollapalooza #binance\",\"2316\":\"Congratulations to us we have 100k followers on Twitter. Thank You very Much Fam \\ud83d\\ude4f let's make it 500k \\nPlease follow: @desirecapitals \\n#DesireCapitalsLimited \\n#SummerSlam \\n#Taiwan \\n#BBNaija7 \\n#BBNaijaGuinnessSmooth \\n#TREASURE https:\\/\\/t.co\\/KDquXVYd5V\",\"2317\":\"@LadiPoe New music out soon by August #donjazzy \\ud83d\\udc51\\ud83d\\udc51\\ud83d\\udc51\\u2665\\ufe0f\\ud83d\\udca5\\ud83d\\udca5\\ud83d\\udd25\\ud83d\\udca8\\ud83d\\udca8\\ud83d\\udca8\\ud83d\\udca8\\n\\n#SummerSlam #Taiwan #BBNaija7 https:\\/\\/t.co\\/8GFPWOwdYk\",\"2318\":\"Here is everything about FVP Trade: A general summary of FVP Trade's freezing funds case.\\n\\nhttps:\\/\\/t.co\\/1s7KF561aa #Taiwan #SummerSlam #forexscam #forexbrokers #crypto #forextrading #BBNaijaGuinnessSmooth #BBNaija7 https:\\/\\/t.co\\/tYUGEX9JF6\",\"2319\":\"That one ooooommm \\ud83d\\ude02 \\nJust watch and never forget watching us on YouTube under Ocy Dun Comedy 1 \\n#Taiwan #SummerSlam #BBNaija7 #CommunityShield #BBNaijaGuinnessSmooth #TREASURE #Lollapalooza #BBNaijaGuinnessSmooth #binance #kpss2022 #FGO7\\u5468\\u5e74 #sundayvibes #comedy #ElonMusk #Elon https:\\/\\/t.co\\/BpOIQUaHlP\",\"2320\":\"Oh I forgot to post this\\u2026 How i ended my Friday at work last week \\n\\n#Taiwan #TREASURE #binance #Amaka https:\\/\\/t.co\\/9wcuEUbrEx\",\"2321\":\"If you want to be unstoppable... support your strongest intentions with stronger action and huge shifts will happen for you... \\ud83d\\udd25\\n#Taiwan #ASUU #BBNaijaGuinnessSmooth https:\\/\\/t.co\\/AiGwKWgeJs\",\"2322\":\"@garyhgoodridge My new jam titled DonJazzy coming out soon #August \\ud83d\\ude4f\\ud83d\\ude4f\\u2665\\ufe0f\\u2665\\ufe0f\\ud83d\\udca5\\ud83d\\udca5 a big win for the king \\ud83d\\udc51\\u2665\\ufe0f @DONJAZZY \\n\\n#SummerSlam #Taiwan #BBNaija7 #CommunityShield #FGO7\\u5468\\u5e74 #sundayvibes #TREASURE #BBNaijaGuinnessSmooth #binance https:\\/\\/t.co\\/KacbwBXXtB\",\"2323\":\"How easily girls can switch \\ud83d\\ude2e\\u200d\\ud83d\\udca8\\u2764\\ufe0f #BBNaija #Machala #BBNaija7 #Taiwan Erica #GistLoverStory Doyin Amaka Asake https:\\/\\/t.co\\/r3G6GOTiKW\",\"2324\":\"@Sabinus1_ New music out soon #August \\n\\n#SummerSlam #Taiwan #BBNaijaGuinnessSmooth #FGO7\\u5468\\u5e74 #TREASURE #Lollapalooza #binance #kpss2022 https:\\/\\/t.co\\/fSST2DCdgG\",\"2325\":\"@OfficialSaskay New music out soon #August big shout out to the king \\ud83d\\udc51 @DONJAZZY this song is Fia \\ud83d\\udca5\\ud83d\\udca5\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n\\n#SummerSlam #Taiwan #BBNaija7 #CommunityShield #BBNaijaGuinnessSmooth #TREASURE #FGO7\\u5468\\u5e74 #JHOPE #sundayvibes https:\\/\\/t.co\\/Qf1MgOJUGV\",\"2326\":\"Omo wetin be this, Asake you do this one \\u261d\\ufe0f.\\n\\n#BBNaija7 trenchesdj, summer, #sundayvibes, #Taiwan #FGO7\\u5468\\u5e74 https:\\/\\/t.co\\/WwNLYezDV5\",\"2327\":\"Your donation is important to us...www.humanaid.org.ng\\/donate\\n#womenempowerment\\n#Taiwan #CommunityShield #QueenLikeBella #womenempowerment #JHOPE @UKMoments https:\\/\\/t.co\\/IYWcic6UEo\",\"2328\":\"Anger is a DESTROYER, avoid it. #SummerSlam #BBNaijaGuinnessSmooth #CommunityShield #Taiwan #sundayvibes https:\\/\\/t.co\\/Vp6TR5AKx9\",\"2329\":\"Thanks for patronizing \\nDm\\/Whatsapp..07030509162 \\nNationwide Delivery\\n#bags #Taiwan #BBNaijaGuinnessSmooth #kpss2022 #CommunityShield #FELIPonASAPfordaWin #PValleyStarz #sundayvibes https:\\/\\/t.co\\/QQqNYWEN5M\",\"2330\":\"Happy Sunday everybody #SummerSlam #BBNaija7 #Lollapalooza #binance #Taiwan https:\\/\\/t.co\\/nWc6Sxyxvu\",\"2331\":\"The only thing you will take from this life is what you left behind\\n\\nHappy Sunday!!!\\n\\n#BBNaijaGuinnessSmooth #Taiwan #CommunityShield #PeterObiForPresident2023\",\"2332\":\"I hear say Asuu no fit call off this strike till next year is that true? Watch this video comment and follow me and I follow back asap\\ud83d\\ude4f\\n\\nZamfara | Maiduguri | Eloswag | Atiku and Tinubu | #GistLoverStory\\n | Doyin and Cyph #BBNaija7 | Okowa | Chi Chi #SummerSlam\\n#Taiwan https:\\/\\/t.co\\/bA3ejk7XYv\",\"2333\":\"July Dump \\u2764\\ufe0f #TweetOfTheDay #SummerSlam #BBNaija7 #Taiwan #CommunityShield https:\\/\\/t.co\\/xmBeThWr8l\",\"2334\":\"Used 2021 Hilux\\n26m\\nLocation :Abuja\\n09071824401\\nEverything Blessed!! #SummerSlam #Taiwan #China #AbujaTwitterCommunity #abujafinders https:\\/\\/t.co\\/0MUYMgSVpk\",\"2335\":\"WINNING TICKET FROM ENGLAND CUSTOMER \\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc73\\udb40\\udc63\\udb40\\udc74\\udb40\\udc7f\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc73\\udb40\\udc63\\udb40\\udc74\\udb40\\udc7f\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc73\\udb40\\udc63\\udb40\\udc74\\udb40\\udc7f\\ud83c\\uddec\\ud83c\\udde7\\ud83d\\udd11\\ud83d\\udd11\\ud83d\\udd11\\ud83d\\udd11\\ud83d\\udd11\\n#Taiwan\\n#BBNaija7\\n#KiaraAdvani\\n#WelcomeJackBamToThailand\\n#earthquake\\n#WelcomeTREASUREtoTHAILAND\\n#Lollapalooza\\n#Lollapalooza\\n#QueenLikeBella\\n#BeautyTukura\\n#GAPyuri1stFansign\\n#LISA\\n#UnitedShowbiz https:\\/\\/t.co\\/ndnpZDwvpa\",\"2336\":\"@FoxNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2337\":\"@Tagesspiegel where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2338\":\"@aawsat_eng where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2339\":\"Who's badder than?\\u2665\\ufe0f\\ud83d\\ude18\\ud83d\\udd4a\\ufe0f\\ud83d\\udc95\\ud83d\\udcaf\\n#SummerSlam #Taiwan #30BG https:\\/\\/t.co\\/YxvS7SJOHY\",\"2340\":\"Happy Sunday \\ud83d\\ude0a\\ud83d\\udc95\\nPeace \\ud83d\\udd4a\\ufe0f\\u270c\\ufe0f\\n#SummerSlam #Taiwan #BBNaija7\",\"2341\":\"Happy Islamic new year\\ud83d\\uddd2\\n#Taiwan @Ameengwaska @_ameeserh @Abdoulmaleek001 @___Bils @90sSophie https:\\/\\/t.co\\/8jXGvh6oGt\",\"2342\":\"@JolyonMaugham @NesrineMalik where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2343\":\"Pray for a Peter Effects in your life.\\n\\n#BBNaijaGuinnessSmooth\\n#ajapsv\\n#BBNaija7\\n#Taiwan\\n#CommunityShield #BBNaijaGuinnessSmooth\",\"2344\":\"Me on my period, thinking about all the possible ways it could go wrong \\ud83e\\udd7a\\nBeing emotional for no reason!!!!\\n#poetrytwitter #poetrycommunity #poetry #poetrylovers #poetizer #miraquill #poets #SummerSlam #Taiwan https:\\/\\/t.co\\/yUlWXOJXht\",\"2345\":\"@SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2346\":\"A sad story\\nAnimation I created for @boy_kaptain guys pls share\\ud83d\\ude25\\ud83d\\udc93\\ud83d\\ude4f\\n#Machala #Carterefe #BBNaija7 #WelcomeJackBamToThailand #LISA #Taiwan #NFTCommmunity #NFTartist #NFTGiveaways #NFTExpoverse https:\\/\\/t.co\\/xJhhPxiOjV\",\"2347\":\"@Sootradhar where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2348\":\"@svtnyheter where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2349\":\"@Independent where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2350\":\"BIONA WEBSITE designed with #Wordpress #WooCommerce \\ud83d\\ude0d\\n\\nhttps:\\/\\/t.co\\/rEJBAcxvEj\\n\\n#UFC277\\n#Nunes\\n#SummerSlam\\n#Moreno\\n#Chan\\n#Brock\\n#Roman\\n#hobi\\n#INKIGAYO\\n#Taehyun\\n#Ronda\\n#TripleH\\n#Bayley\\n#yeonjun\\n#BIGHOPE\\n#Zoro\\n#TXTPALOOZA\\n#Taiwan\\n#Sana\\n#Paxlovid https:\\/\\/t.co\\/fxw4NNEGKL\",\"2351\":\"Shatta Wale be that music Mafia Jjc @shattawalegh \\n\\ud83d\\ude0a \\ud83d\\ude03 \\ud83d\\ude04 \\u263a \\ud83d\\ude02 \\ud83d\\ude38 \\ud83d\\ude0a \\ud83d\\ude03 \\ud83d\\ude04 \\u263a \\ud83d\\ude02 \\ud83d\\ude38 \\ud83d\\ude0a \\ud83d\\ude03 \\ud83d\\ude04 \\n\\nEeii \\/\\/ #BBNaija7 \\/\\/ R2bees \\/\\/ #Taiwan\",\"2352\":\"@MarkHalperin @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2353\":\"Independent women dun ask for 5k urgently \\ud83d\\ude02 #earthquake #Taiwan\",\"2354\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2355\":\"@AP where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2356\":\"@Jerusalem_Post where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2357\":\"@MOFA_Taiwan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2358\":\"Growth is Intentional!\\n\\nWant to place an order?\\nWhatsapp: 07039426841\\nInstagram: https:\\/\\/t.co\\/a6rzotkBdD\\nFacebook: https:\\/\\/t.co\\/Me02UNv5fb\\nTiktok: @sikshoes\\n\\n#BBNaija7 #CommunityShield #Taiwan #BBNaijaGuinnessSmooth #WelcomeTREASUREtoTHAILAND #siKShoes #nigeria #mensshoes https:\\/\\/t.co\\/DoLeCP9LL4\",\"2359\":\"Hp Laptop, 500HDD, 16 RAM. 1.5M FOR SALE #QuantumComputing #Taiwan https:\\/\\/t.co\\/p5IGZdyl3i\",\"2360\":\"Happy Sunday great People \\n\\n#BBNaija7 #Taiwan #BBNaijaGuinnessSmooth https:\\/\\/t.co\\/sheCT5ZSVb\",\"2361\":\"VIDEO: A Suspected Yahoo Boy Allegedly Kills And Buries Girlfriend In His Room, In Bayelsa\\n\\n#Taiwan #BBNaija7 #Asari #Tinubu #earthquake\\nRead more\\u300bhttps:\\/\\/t.co\\/VjPHEpdOJv\",\"2362\":\"Did you know it takes 17 muscles to Smile and 43 to frown? \\n\\nRT for awareness \\ud83e\\udd70\\ud83c\\udf39\\n#CommunityShield #SummerSlam #Taiwan #BBNaija7 #WelcomeJackBamToThailand #BBNaijaGuinnessSmooth #KiaraAdvani #GarciaBenavidez #WelcomeTREASUREtoTHAILAND #SS9inBKK_DAY1 #GistLoverStory https:\\/\\/t.co\\/L3csQBt4ly\",\"2363\":\"Know that change doesn\\u2019t have to be scary and that a world of positivity and transformation is waiting for you!\\n\\nThere's even more #inspiration to get you back on track in this book\\nhttps:\\/\\/t.co\\/21izZia0YK\\n#UFC277 #SummerSlam #Caturday #Taiwan #TXTPALOOZAA #lunARTparty #Caribana\",\"2364\":\"The King \\ud83d\\udc51 Sarkodie takes us back to the good old days at the #isabouttimeconcert with R2bees last night\\n\\n#UnitedShowbiz #SummerSlam #Taiwan #BBNaija7 #CommunityShield #GarciaBenavidez https:\\/\\/t.co\\/kzf7m9IiDV\",\"2365\":\"Like for @PeterObi & Retweet for @officialABAT \\n\\n#BBNaija7 #SummerSlam #Taiwan #CommunityShield #NigeriaDecides2023 https:\\/\\/t.co\\/ZKzvW7tT69\",\"2366\":\"Somewhere in abeokuta. One of the Yoruba land that can tell the origin of Yorubas . \\nPicture taken by me, \\n\\nI hope it goes viral\\ud83d\\ude0a\\ud83c\\udf1e\\n\\n#BBNaija7 #SummerSlam #Taiwan #earthquake https:\\/\\/t.co\\/77sDiQmFng\",\"2367\":\"Since Nigerian are no longer save by road and train now because of kidnapped and by trains because if pirates, I hope they won't come and be kidnapping people traveling by Air now\\ud83d\\ude0f\\ud83e\\udd74\\n#BBNaija7 #BBNaijaGuinnessSmooth #Taiwan #Tinubu #TinubuandAtiku #PoliticsLive\",\"2368\":\"My babe remained adamant she won't register for PVC\\ud83d\\ude33.Upon all my efforts \\ud83d\\ude25.Wetin I go do now? The babe said NEVER!\\nAsari When Tinubu Benin #Taiwan Lewandowski https:\\/\\/t.co\\/gqsQbMA7NK\",\"2369\":\"@Vindicatedchidi it's trending right now in Nigeria, in Africa and the worldwide #Taiwan #StopSellingPi #Pitransactions #Pipayments https:\\/\\/t.co\\/Ni97k16Apq\",\"2370\":\"[VIDEO] 2023: Mad Man Spotted Praying For Abia APP Governorship Candidate, Mascot Kalu In Ohafia\\n\\n#AbnTv #MukTv #ViralVideo #BBNaija7 #Taiwan #CommunityShield https:\\/\\/t.co\\/Zk5bwOgNlt\",\"2371\":\"They picked me to play jesus but my hair was black so i had to dye for their scenes \\ud83c\\udfaf\\ud83d\\udeb6\\ud83c\\udfff\\u200d\\u2642\\ufe0f\\n\\n#SummerSlam #Taiwan #BBNaija7\",\"2372\":\"Gain weight in the right places with Sisi \\ud83d\\ude0c To order send us a dm on Instagram https:\\/\\/t.co\\/J70Y1qsGKq\\n call\\/WhatsApp 08126171610\\n\\n#fyp #FYP #SummerSlam #BBNaija7 #Taiwan #BBNaijaGuinnessSmooth #CommunityShield #QueenLikeBella #WelcomeJackBamToThailand #viral #ViralVideo https:\\/\\/t.co\\/rYS4rVM16a\",\"2373\":\"Argue with your keyboard! #Taiwan #BBNaija7 #earthquake #QueenLikeBella https:\\/\\/t.co\\/p8sQJlBCFf\",\"2374\":\"University of Kansas, 2022 Excellence Scholarship, USA\\n\\n#SummerSlam #BBNaija7 #Taiwan #earthquake\\n\\nhttps:\\/\\/t.co\\/pwtDjpS5sP\\n\\nApply Now \\u2705\",\"2375\":\"If am dating you and you're slim! Please get fat. Am tired of eating bone! #BBNajia #BBNaija7 #Taiwan #SummerSlam https:\\/\\/t.co\\/n4MFJpTmDu\",\"2376\":\"July Dump \\ud83d\\udc4c\\n\\n#JulyPhotoDump \\n#SummerSlam \\n#BBNaija7 \\n#Taiwan https:\\/\\/t.co\\/I010NXmDDu\",\"2377\":\"REITs allow anyone to own or finance properties the same way they invest in other industries, through the purchase of stock.\\nThis means You can invest in Real Estate like I would in stocks. \\nHow can I invest in REITs? \\nThrough broker sites. #realestateinvesting #Taiwan\",\"2378\":\"When you are dealing with the right Source, All you need to do is to Stake,Sleep And Wake With Happiness On Your Face \\ud83d\\ude02\\ud83e\\udd29\\n\\nCongratulations \\ud83c\\udf89\\ud83c\\udf7e\\ud83c\\udf88\\ud83c\\udf8a to we all \\n\\nMore details about Today fixed matches message me below #BigBrotherNaija #Taiwan #QueenLikeBella #CommunityShield https:\\/\\/t.co\\/qkJPQkTV7n\",\"2379\":\"Happy sim blocking day! If you don\\u2019t hear from me again then it was nice meeting y\\u2019all \\ud83d\\udc90\\ud83e\\udd27\\ud83d\\ude02\\u2026 #Taiwan #R2bees #Sarkodie #Vodafone #Gimpa\",\"2380\":\"It gonna be Lit!!\\n\\nPlease \\ud83d\\ude4f\\ud83c\\udffe be there........\\n\\n___\\n#PartyWithBeauty #Taiwan #UkraineRussiaWar #SummerSlam #SS9inBKK_DAY1 #GarciaBenavidez @bcleanfrench @9teen42 @MrYoungGod @youngbobby4real @Darkhoodafrica @GlenfiddichSMW @Femi_OfMainland @IjiomaOluchi @mimisexyluv @datdreadgirl https:\\/\\/t.co\\/Iczd7QgWep\",\"2381\":\"Fact \\u270c\\ufe0f\\u270c\\ufe0f lord\\n\\nWe need a change in our dear country \\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a\\n#SummerSlam #Taiwan #BBNaija7 #CommunityShield #BBNaijaGuinnessSmooth #Nigeria #badgovernment https:\\/\\/t.co\\/AkYDRWvNBj\",\"2382\":\"Back yard looking like loader van \\n\\nHi guys here is My verse on different size by @burnaboygram & @vict0ny\\n\\nY\\u2019all should help me tag them \\ud83d\\udc9a\\n\\n#BBNaija7 #Taiwan https:\\/\\/t.co\\/SKX3RY7e7F\",\"2383\":\"Happy sunday y'all\\n\\nPray for us in church \\ud83d\\ude4f\\ud83d\\ude07\\n\\n#GistLoverStory #MUFC #SummerSlam #Taiwan #BBNaija7 #CommunityShield #BBNaijaGuinnessSmooth #WelcomeJackBamToThailand #WelcomeJackBamToThailand #Haaland #hazard #earthquake #ZeeNuNew #SS9inBKK_DAY1 #SanjayRautExposed #QueenLikeBella\",\"2384\":\"Men ought to pray and not to faint.... \\n#Gospel #sundayvibes #Taiwan #BBNaija7 #BBNaijaGuinnessSmooth #MUFC https:\\/\\/t.co\\/5BHjztle1F\",\"2385\":\"Silence is the best answer\\n#daily #dailythoughts #dailymotivation #BBNaija7 #sundaygame #Taiwan #earthquake https:\\/\\/t.co\\/SV1haNKXM5\",\"2386\":\"In need of urgent 200 trillion naira\\ud83e\\udd74\\n\\n#Machala #Taiwan #BigBrotherNaijaS7 https:\\/\\/t.co\\/uGowkodDNw\",\"2387\":\"watin person.wan.chop this morning like this\\n#BBNaijaGuinnessSmooth #halland #Taiwan\",\"2388\":\"To become a millionaire in 1 year you need to make $2,740 every day for 1 year\\n\\nAt first this may seem unattainable however it is attainable if you work hard #StopSellingPi #Pipayments #crytocurrency #Taiwan @WoodyLightyearx @vinfi https:\\/\\/t.co\\/GM61YwTbdk\",\"2389\":\"Feeling too cute this morning #Carterefe #CommunityShield #Taiwan https:\\/\\/t.co\\/VzCsr3NG1J\",\"2390\":\"#SummerSlam\\n#Taiwan\\n#earthquake\\n#Lollapalooza\\n#CommunityShield\\n#UnitedShowbiz\\n#ZeeNuNew\\nThree new videos\\nAccess this playlist link\\n\\nOracle 12c SQL playlist\\nORACLE 12C SQL: https:\\/\\/t.co\\/rCH5mVvNNM\",\"2391\":\"Okay Nigeria have we seen the difference \\ud83d\\ude05\\ud83e\\udd23\\ud83e\\udd23 when buhari say they have come for a difference we cheered happily now let's be wise on who to rule us @Oloyedey4u\\n@T_Bakare @TundeEednut @yabaleftonline #SummerSlam #Taiwan #BBNaijaGuinnessSmooth #CommunityShield #BBNaija7 https:\\/\\/t.co\\/6FBaqERv5u\",\"2392\":\"MAPP OUT Album out now on All platforms hit this link and listen to the truest Artist Alive.\\n\\nhttps:\\/\\/t.co\\/s8wdmDvsDE\\n\\n#Carterefe #Mappedout #Taiwan #SummerSlam #BBNaijaGuinnessSmooth #CommunityShield #BBNaija7 #HOBIPALOOZA #GarciaBenavidez #earthquake #wizkid #mastablade https:\\/\\/t.co\\/PsjlGa6Orw\",\"2393\":\"I learned that we can do anything, but we can't do everything...\\nat least not at the same time. Timing is everything.\\n.\\n.\\n#deliveryinlagos #July2022 #BBNaija #TREASURE #Taiwan #SummerSlam #CommunityShield https:\\/\\/t.co\\/wTwXGFPjhZ\",\"2394\":\"Waking up 6,7am to bath cold water just to make it to church early on Sunday's is hard,Jesu kan tobi lowo mi ni\\n\\n#Rashford #Carterefe #GistLoverStory #RomanReigns #QueenLikeBella #Taiwan #BBNaija\",\"2395\":\"Happy Sunday #FreakyGirl #BBNaija #SummerSlam #Taiwan #BBNaija7 #GistLoverStory https:\\/\\/t.co\\/ZScDyM5jLp\",\"2396\":\"I mistakely spelt \\\"violence\\\" in the exam hall as \\\"vawulence\\\" \\ud83d\\ude2d\\ud83d\\ude2d i just hope the examiner is a comrade\\n\\n#SummerSlam #BBNaija #Taiwan #CommunityShield #BBNaija7 #WelcomeJackBamToThailand #GarciaBenavidez #earthquake #WelcomeTREASUREtoTHAILAND #WelcomeTREASUREtoTHAILAND #TREASURE\",\"2397\":\"@dwnews I, think #Taiwan is fooling by Americans. They should not allow their themselves by selfish American to misled them to war with their own brothers and sister's &Chinese\",\"2398\":\"I told a guy to get home training and I forgot he is an orphan \\ud83d\\udc94 #Taiwan #Sheggz #BBNaija #LoveDamini\",\"2399\":\"@SpeakerPelosi Why Americans want to control the whole world by all means..can't they be their line...anyway don't joke with #China & Russia...we not ready for #WWIII\",\"2400\":\"World trade center under construction 1970. Ifb\\n\\n#SummerSlam \\n#BBNaija \\n#Taiwan \\n#CommunityShield \\n#BBNaija7 \\n#WelcomeJackBamToThailand \\n#GarciaBenavidez \\n#earthquake \\n#WelcomeTREASUREtoTHAILAND \\n#BoycottLaalSinghChaddha \\n#ZeeNuNew \\n#QueenLikeBella \\n#TREASURE \\n#SanjayRautExposed https:\\/\\/t.co\\/HsB6cWtw26\",\"2401\":\"For the future,we have savings plan in eloquent prices,children\\u2019s education target plan,cargo insurance,vehicle insurance,health and many more.\\nASK ME HOW NOW!!!!\\n#BBNaija #SummerSlam #CommunityShield #BBNaijaGuinnessSmooth #BBNaija7 #WelcomeJackBamToThailand #Taiwan https:\\/\\/t.co\\/DvePI0WYHV\",\"2402\":\"Don't drink poison because it's served in your tribal cup... \\nMiss Nigeria Peter Obi Carter Efe Hazard #Taiwan #FreakyGirl #gistloverblog https:\\/\\/t.co\\/apDiNjnMd7\",\"2403\":\"Its Sunday morning, who is joining me to Church \\u26ea\\ufe0f \\n\\n#Taiwan #BBNaija #CHURCHGIRL #church #life #beauty #Jesus #LIVMCI #Lagos #SummerSlam #PrettyLittleLiars #prettyyoungteen #prettylittlething #LoveIslandUSA #Twitter #OBIdientlyYUSful #PeterObiForPresident2023 #OBIdientlyYUSful https:\\/\\/t.co\\/qHBOqe8fxJ\",\"2404\":\"@cuppymusic @1Xtra New jam alert DonJazzy coming soon this August \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\udd25\\ud83d\\udd25\\u2665\\ufe0f\\u2665\\ufe0f\\u2665\\ufe0f\\u2665\\ufe0f\\u2665\\ufe0f\\u2665\\ufe0f\\u2665\\ufe0f\\ud83d\\udca5\\ud83d\\udca5\\ud83d\\udca5\\n\\n#BBNaija #SummerSlam #Taiwan #CommunityShield #BBNaijaGuinnessSmooth #BBNaija7 #MirabaiChanu #earthquake #TREASURE #ItsNeverGoodbyeDREAM #donjazzy https:\\/\\/t.co\\/kpiUGVbD17\",\"2405\":\"\\\"All men are not scum\\\" - you probably keep attracting based on who you are, where you are or what you offer. Look inwards first.\\nAttracting the right men begins with you.\\n#SummerSlam\\n#gistloverblog\\n#BBNaijaGuinnessSmooth \\n#Taiwan \\n#CommunityShield\",\"2406\":\"God help me on this one. @meg_comedy \\n#howeyoudey\\n@patorankingfire \\n@Sabinus1_ \\n#SummerSlam #Taiwan #BBNaijaGuinnessSmooth #CommunityShield #CommunityShield #BBNaija7 #WelcomeJackBamToThailand https:\\/\\/t.co\\/f1lp0rLYnp\",\"2407\":\"Pvc registration closes today by 6pm \\n\\n#CommunityShield #Taiwan #SummerSlam #BBNaija7 #BBNaijaS7 #BBNajia #LIVMCI #UFC_277 #ufc277 INEC and Doyin with Haaland\",\"2408\":\"Psychological and emotional pain can be erased when you agree to give it a try.\\n\\nGood morning \\ud83c\\udf1e \\n\\n#BeieveYouCan #lhordswaalah #SummerSlam #BBNaija7 #Taiwan\",\"2409\":\"August 1st #Taiwan #BBNaija7\\n#Smilesandmelody #CommunityShield\\n#BBNaijaGuinnessSmooth https:\\/\\/t.co\\/IGIlCZSH02\",\"2410\":\"@washingtonpost where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2411\":\"@nypost where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2412\":\"@catmamgo where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2413\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2414\":\"@BeijingEvening where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2415\":\"@dajiyuan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2416\":\"@arabnews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2417\":\"@MotherJones where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2418\":\"@Jerusalem_Post where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2419\":\"@scottwongDC where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2420\":\"@BrianKoontz59 US takes a chill pill first.\\n\\nwhere is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2421\":\"@StephanieAYang where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2422\":\"@StephanieAYang where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2423\":\"@StephanieAYang where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2424\":\"@AHMalcolm where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2425\":\"@TimednewsC where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2426\":\"@SoyDonCruz where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2427\":\"@B_Estefan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2428\":\"@B_Estefan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2429\":\"@B_Estefan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2430\":\"@B_Estefan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2431\":\"@B_Estefan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2432\":\"@B_Estefan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2433\":\"@swissbusiness where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2434\":\"@JeromeTaylor where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2435\":\"@JeromeTaylor where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2436\":\"@JeromeTaylor @wangxiangweihk where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2437\":\"@AusOfficeTPE where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2438\":\"@HansMahncke where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2439\":\"@SpecialSitsNews @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2440\":\"New hot Banger from \\nEMP GANG #Taiwan #BBNaija7 #viral \\n\\nhttps:\\/\\/t.co\\/L5liAEmgr2 https:\\/\\/t.co\\/JEF2A4LwOP\",\"2441\":\"@DailyMail where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2442\":\"@TonyMoonbeam @POTUS @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2443\":\"@Prison_Health where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2444\":\"@CurtisSChin @StephanieAYang @dhpierson @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2445\":\"@henry_chuangVB where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2446\":\"@dcexaminer @SpeakerPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2447\":\"@iingwen @gacc_tw where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2448\":\"@MOFA_Taiwan @DanteMossi @CABEI_Org @BCIE_Org @CancilleriaHN @EnriqueReinaHN @embhntw @TW_Honduras where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2449\":\"Happy Birthday \\ud83c\\udf89\\ud83c\\udf89 to @skido_vibes age with Grace \\ud83d\\ude4f\\ud83d\\ude4f\\n#Congratulations #birthdayboy #HappyBirthday #BBNaijaGuinnessSmooth #Taiwan #BBNaija7 #WelcomeTREASUREtoTHAILAND #jhopeAtLollapalooza #Machala #QueenLikeBella #DejateQuerer #BBNaijaLevelUp #KominfoKontol #TREASURE https:\\/\\/t.co\\/TFkEfDqPMe\",\"2450\":\"BUY 4 BEATS GET 2 FOR FREE|BUY 8 BEATS GET 4 FOR FREE\\nhttps:\\/\\/t.co\\/3SLzN9q6yz\\n\\nBuy beats\\n\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/MMJBZck9dq\\n#BBNaijaGuinnessSmooth #SummerSlam #Taiwan #BBNaija7 #WelcomeTREASUREtoTHAILAND #shiba #ItsNeverGoodbyeDREAM #Lollapalooza #TREASURE #MIKFESTIVAL https:\\/\\/t.co\\/YIDnQWSaVf\",\"2451\":\"Available at affordable price \\n#StopSellingPi \\n#O Allah #BBNaijaGuinnessSmooth #SummerSlam #CommunityShield #WelcomeTREASUREtoTHAILAND #Taiwan #HOBIPALOOZA #WelcomeJackBamToThailand #Birmingham2022 https:\\/\\/t.co\\/mBrs0m6gxJ\",\"2452\":\"Psalms 106:8\\nNevertheless he saved them for his name's sake,that he might make his mighty power to be known\\n#Taiwan #CommunityShield #Lollapalooza #WelcomeTREASUREtoTHAILAND #QueenLikeBella #KominfoKontol #dreamama #BETHESUNinSG #BBNaijaGuinnessSmooth #SHIB #soldierboy #NFT #WWE\",\"2453\":\"Good sleep is so good o\\ud83d\\ude29abeg no go kill your self o\\ud83d\\ude29\\ud83e\\udd7a#CommunityShield #WelcomeJackBamToThailand #explore #Taiwan #explorepage #BBNaija7\",\"2454\":\"@terror_alarm where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2455\":\"@terror_alarm where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2456\":\"#NancyPelosi Provoked #China 31 Years Ago\\n\\nBack in September 1991, Congresswoman #Nancy #Pelosi sparked a major provocation that ended in imprisonment for the head of the #CNN office in #Beijing.\\n#\\u0627\\u0637\\u0631\\u062f\\u0648\\u0627_\\u0634\\u0627\\u062a\\u0645_\\u0627\\u0644\\u0635\\u062d\\u0627\\u0628\\u0647\\n #\\u0e2d\\u0e34\\u0e07\\u0e1f\\u0e49\\u0e32\\u0e21\\u0e34\\u0e2a\\u0e41\\u0e01\\u0e23\\u0e19\\u0e14\\u0e4c\\u0e44\\u0e17\\u0e22\\u0e41\\u0e25\\u0e19\\u0e14\\u0e4c #TREASURE\\nhttps:\\/\\/t.co\\/LHRkDDCqbE https:\\/\\/t.co\\/HovKgDPTb9\",\"2457\":\"#NancyPelosi Pelosi Provoked #China 31 Years Ago\\n\\nBack in September 1991, Congresswoman #Nancy #Pelosi sparked a major provocation that ended in imprisonment for the head of the #CNN office in #Beijing.\\n#\\u0e2d\\u0e34\\u0e07\\u0e1f\\u0e49\\u0e32\\u0e21\\u0e34\\u0e2a\\u0e41\\u0e01\\u0e23\\u0e19\\u0e14\\u0e4c\\u0e44\\u0e17\\u0e22\\u0e41\\u0e25\\u0e19\\u0e14\\u0e4c\\n#ZeeNuNew\\n\\nSubscribe to https:\\/\\/t.co\\/LHRkDDU1Ae https:\\/\\/t.co\\/aJ2aJVMipz\",\"2458\":\"I'm of two minds about #Pelosi going to Taiwan but one thing I'm sure of.....she can stay.\",\"2459\":\"Cornrows as a protective style\\n-A protective style is any style that reduces manipulation and keeps the ends of your hair tucked protecting it from knotting, harsh weather conditions etc\\n\\n-cornrows are my favorite protective style\\n#BBNaijaGuinnessSmooth \\n#KNUST #Taiwan\",\"2460\":\"That awkward moment you realize the jokes had been about you\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02 #BBNaijaGuinnessSmooth #Taiwan https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"2461\":\"Upcoming artist lifestyle \\n#BBNaijaGuinnessSmooth #Taiwan #GogoSkhotheni #ajapsv #\\u0627\\u0637\\u0631\\u062f\\u0648\\u0627_\\u0634\\u0627\\u062a\\u0645_\\u0627\\u0644\\u0635\\u062d\\u0627\\u0628\\u0647 #\\u0e2d\\u0e34\\u0e07\\u0e1f\\u0e49\\u0e32\\u0e21\\u0e34\\u0e2a\\u0e41\\u0e01\\u0e23\\u0e19\\u0e14\\u0e4c\\u0e44\\u0e17\\u0e22\\u0e41\\u0e25\\u0e19\\u0e14\\u0e4c #ZeeNuNew #LoveMechanicsEP9 #TREASURE #oluwadammy #dammysingsongz #olamide #wizkid #davido #machala https:\\/\\/t.co\\/HEGVGnLXdK\",\"2462\":\"Bed \\ud83d\\ude02 appointment on a low \\ud83d\\ude02\\ud83d\\udc94 #BBNaijaGuinnessSmooth #Taiwan #TREASURE @Rain_goddd @gyaigyyimii\",\"2463\":\"@ananavarro @SECNAV where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2464\":\"@TimRunsHisMouth where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2465\":\"@kylenabecker where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2466\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2467\":\"@coldxman @ProfDBernstein where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2468\":\"@DemocracyDocket where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2469\":\"@kyrstensinema @SBAgov where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2470\":\"@HansMahncke where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2471\":\"@AnonOpsSE where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2472\":\"@ChuckCallesto where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2473\":\"@thehill where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2474\":\"@TODAYshow where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2475\":\"@FoxNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2476\":\"@BillKristol where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2477\":\"@JackPosobiec where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2478\":\"@kenklippenstein where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2479\":\"@thehill where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2480\":\"@nytimes where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2481\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2482\":\"@GeorgeTakei where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2483\":\"@JeremyDBoreing where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2484\":\"@AaronParnas @Booker4KY where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2485\":\"@Alkanz where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2486\":\"@Leftylockdowns1 where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2487\":\"@TeamPelosi where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2488\":\"@RonFilipkowski where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2489\":\"@JackPosobiec where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2490\":\"@JackPosobiec @ScottPresler where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2491\":\"@SenTedCruz where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2492\":\"@JackPosobiec where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2493\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2494\":\"@BrianKarem @mattgaetz where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2495\":\"@BryanDeanWright where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2496\":\"@Feinsand @ByRobertMurray @JeffPassan where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2497\":\"@S7i5FV0JOz6sV3A where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2498\":\"@nytimesworld where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2499\":\"@le_Parisien where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2500\":\"@baseballcrank where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2501\":\"@NBSaphierMD where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2502\":\"@guardian where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2503\":\"@LukeMixonLA @SenJohnKennedy where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2504\":\"@TheRealHoarse where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2505\":\"@MaxMillerOH @JoeBiden where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2506\":\"@WSJ where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2507\":\"@Joelsherman1 where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2508\":\"@Joelsherman1 @ByRobertMurray where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2509\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2510\":\"@S7i5FV0JOz6sV3A where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2511\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2512\":\"@TheRealHoarse @bdomenech @LucasKunceMO where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2513\":\"@FoxNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2514\":\"@nypost where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2515\":\"@sahouraxo where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2516\":\"@S7i5FV0JOz6sV3A where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2517\":\"@ZaleskiLuke where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2518\":\"@ByRobertMurray where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2519\":\"@JonHeyman where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2520\":\"@SharylAttkisson where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2521\":\"@RedState where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2522\":\"@mavivatannet where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2523\":\"@AFP where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2524\":\"@kittypurrzog where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2525\":\"@SchmittNYC where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 please quick https:\\/\\/t.co\\/g2UFpv5FWP\",\"2526\":\"@Variety where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2527\":\"@TelegraphWorld where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2528\":\"@RonFilipkowski where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2529\":\"@TIME @szacharek where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2530\":\"@NBCNews where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2531\":\"@cnni where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2532\":\"@DefenceHQ where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2533\":\"@POTUS where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2534\":\"@PalmerReport where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2535\":\"my projections : If #Pelosi visits #Taiwan , then war is a possibility \\ud83e\\udd14#XiJinping #China #WWIII https:\\/\\/t.co\\/7XHc3Bh1JB\",\"2536\":\"@AnonOpsSE where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2537\":\"@Reuters where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2538\":\"@TimRunsHisMouth where is #NancyPelosi @SpeakerPelosi #Pelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2539\":\"@GrecianFormula where is #NancyPelosi @SpeakerPelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2540\":\"@OsintTv where is #NancyPelosi @SpeakerPelosi ? we are waiting for you to the #Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2541\":\"@PM_Thornton where is #NancyPelosi @SpeakerPelosi ? we are waiting for you to the Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2542\":\"@eha_news where is #NancyPelosi @SpeakerPelosi ? we are waiting for you to the Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2543\":\"@MoNDefense where is #NancyPelosi @SpeakerPelosi ? we are waiting for you to the Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2544\":\"@MOFA_Taiwan @cpyne @kevinandrewsmp @TaiwanAustralia @TECO_SYDNEY where is #NancyPelosi @SpeakerPelosi ? we are waiting for you to the Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2545\":\"@HuXijin_GT where is #NancyPelosi @SpeakerPelosi ? we are waiting for you on the Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/7wAhA8vv3P\",\"2546\":\"where is #NancyPelosi @SpeakerPelosi ? we are waiting for you to the Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/g2UFpv5FWP\",\"2547\":\"@eha_news where is #NancyPelosi @SpeakerPelosi ? we are waiting for you on the Chinese #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 https:\\/\\/t.co\\/7wAhA8vv3P\",\"2548\":\"Aircraft of the US Navy fly near #Taiwan.\\n#China is also conducting military exercises at the same time.\\n#TaiwanIsNotChina #Taiwan #China #USA https:\\/\\/t.co\\/hRWTB04QSc\",\"2549\":\"The #Chinese naval air fleet as well as their ground and aerospace forces are preparing for an open war against the #USA ?\\nChinese Army Drill.\\n#TaiwanIsNotChina #Taiwan #China https:\\/\\/t.co\\/PFwm8IZ8Op\",\"2550\":\"Need that quality white towels for your homes \\ud83c\\udfe0, hotels, guesthouses, lodges, schools etc., Pure cotton Egyptian, Pakistan & Turkish white towels available at SESE ENTERPRISES. Order by DM\\/WhatsApp\\/Call 08039173986, 09151739094 @Baruch4ever #Taiwan #Ivana #SheWasNice #liverpool https:\\/\\/t.co\\/eLdzCV4Hww\",\"2551\":\"Now that there\\u2019s tension between China \\ud83c\\udde8\\ud83c\\uddf3 & Taiwan when war breakout Africa politicians will now get a new political talk, that\\u2019s something to blame for their worse economy. #Taiwan share with your friends and follow for more @asuo6565\",\"2552\":\"@ChadPergram @SpeakerPelosi welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2553\":\"@ChadPergram @SpeakerPelosi welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2554\":\"We don't just give you beddings, but give you beddings with quality, with beautiful designs for your bed in homes, hotels, lodges, guesthouses and schools. Order yours @ SESE BEDDINGS, 08039173986. Prices attached. @Baruch4ever @iyaboawokoya #Taiwan #Abuja #MUNATM #LordJesus. https:\\/\\/t.co\\/Xfy54gvxau\",\"2555\":\"SESE BEDDINGS still selling quality beddings that you need for your homes \\ud83c\\udfe0, hotels, guesthouses, lodges, schools etc, All at an affordable price Order yours today. DM\\/WhatsApp\\/Call 08039173986, 09151739094\\n#Zinchenko #LiverpoolFC #Taiwan #LordJesus #Abuja #MUNATM @Baruch4ever https:\\/\\/t.co\\/rm1rTQ5Vwf\",\"2556\":\"Get Your Wears and OutFits from https:\\/\\/t.co\\/X9lkB1cLhr\\n#SurvivorExtincion #BLACKPINKxPUBGM #mirror\\u6f14\\u5531\\u6703 #XiJinping #MYSYNK_aespa #FriendshipDay #JackBam #Neighbours #aespa #dreampremiere #HOBIPALOOZA #RIPLisa #Arsenal #Fiverr #Store #CustomizedShopify #Customized #RankingVale\",\"2557\":\"\\ud83c\\udde8\\ud83c\\uddf3President Xi Jinping held a phone conversation with \\ud83c\\uddfa\\ud83c\\uddf8US President Joe Biden on 28 July. Here are some highlights of Xi's remarks:\\n\\n#China #US #Taiwan #economy #SupplyChain https:\\/\\/t.co\\/zvkRs9y0oY\",\"2558\":\"@thejcoop @SpeakerPelosi welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2559\":\"@MOFA_Taiwan @freedomhouse @abramowitz @UroojSArshad @Sarah_G_Cook @__datt @Cathryn_Grothe @VJurkonis @farishtasakhi @Laraky29 @amy_slip @TECRO_USA @SpeakerPelosi welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2560\":\"@MOFA_Taiwan @freedomhouse @abramowitz @UroojSArshad @Sarah_G_Cook @__datt @Cathryn_Grothe @VJurkonis @farishtasakhi @Laraky29 @amy_slip @TECRO_USA welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2561\":\"Who's in line for the presidency if #NancyPelosi gets shot down over #Taiwan for $1000 Alex https:\\/\\/t.co\\/qqDRk2W4n0\",\"2562\":\"\\\"Joe #Biden says #US would respond 'militarily' if #China attacked #Taiwan \\\" \\ud83d\\ude36#WW3. \\n#XiJinping https:\\/\\/t.co\\/qPtZP8eQAa\",\"2563\":\"I\\u2019ve never liked Nancy Peloci, she might just kill us all. #WWlll #Taiwan\",\"2564\":\"\\u201cInsurance is important in business. It just makes sense that we share risk for low probability high impact events.\\u201d\\u2015 Hendrith Smith Jr\\nhttps:\\/\\/t.co\\/rEJBAcxvEj\\n#wordpress #Shakira #Taiwan #Kentucky #Ohtani #ChurchGirl #Wikipedia #AlienSuperstar #BreakMySoul #Vets #WillSmith https:\\/\\/t.co\\/kHCgFSgq6e\",\"2565\":\"@MintPressNews welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2566\":\"@Reuters welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2567\":\"@AnonOpsSE welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2568\":\"@idreesali114 welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2569\":\"@BaldingsWorld welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2570\":\"@lemondefr welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2571\":\"@mrbcyber welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2572\":\"@WSJ welcome to Chinese #Taiwan . come on and do it. then prepare the war.\\n\\nhttps:\\/\\/t.co\\/JaJMGmgivl\",\"2573\":\"He has eaten this morning...\\n\\n#thomaspartey Vawulence Tracey Boakye President Akufo-Addo Dome Kwabenya Kweku Flick\\n#RENAISSANCE Easy on me Nigerians Ampadu Thiago sammy gyamfi Johnny Drop #XiJinping \\nAdidas Fela meek Giddyfia Odoi https:\\/\\/t.co\\/c9GjedPLcS https:\\/\\/t.co\\/RuHMuaDOeK\",\"2574\":\"Me and Adjoa Safo right now: \\\"We ain't got time for this\\\"\\n\\n#thomaspartey Vawulence Tracey Boakye President Akufo-Addo Dome Kwabenya Kweku Flick\\n#RENAISSANCE Easy on me Nigerians Ampadu Thiago sammy gyamfi Johnny Drop #XiJinping \\nAdidas Fela meek Giddyfia Odoi https:\\/\\/t.co\\/w2c3tuo4Jz\",\"2575\":\"CONGRATULATIONS TO ALL WINNERS YESTERDAY.TODAYS FIXED MATCHES ARE NOW AVAILABLE. YOU CAN CONTACT ME DIRECTLY ON \\ud83d\\udcde +2349095386137\\n#Bandits #DestinyEtiko #Abuja #2baba #thomaspartey #LaiMohammed #Emefiele #goodluckJonathan #Brighton #Gistlover #Aisha #Machala #Taiwan #Dollars ASUU https:\\/\\/t.co\\/rUIuwHaBbU\",\"2576\":\"There is absolutely nothing you wear that I don't like. Unfortunately, the husband, the economic Wizkid is managing an illusory Ghana\\ud83c\\uddec\\ud83c\\udded.\\n\\nDome Kwabenya Ghana Card\\nThomas Partey Innocent Jay-Z\\n#princewilliamaffair Kotoko\\n#AIDS2022 #Taiwan https:\\/\\/t.co\\/dZrW3o1Vym\",\"2577\":\"China\\u2019s Xi-Jinping warns Joe Biden against \\u2018playing with fire\\u2019 over Taiwan #TaiwanIsaCountry #JoeBiden #XiJinping #China https:\\/\\/t.co\\/NF0hN85TjF\",\"2578\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/Wg38dmx59g\\nhttps:\\/\\/t.co\\/5k8oyXFBfc\",\"2579\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/JL5NTwjO9Q\\nhttps:\\/\\/t.co\\/1JfhaC3m4p\",\"2580\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/yOIbTBWlUR\\nhttps:\\/\\/t.co\\/4mQxYUCd01\",\"2581\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/OzcFBetOQn\\nhttps:\\/\\/t.co\\/fnkmVhzZqx\",\"2582\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/tJSzGaoMDj\\nhttps:\\/\\/t.co\\/y4l7em895R\",\"2583\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/A1Fil5E7m2\\nhttps:\\/\\/t.co\\/2UIJIeqWfM\",\"2584\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/LtgwQOozZK\\nhttps:\\/\\/t.co\\/Dd8qT43ULM\",\"2585\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/Q2wSBIt56e\\nhttps:\\/\\/t.co\\/vf3p0B8dO7\",\"2586\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/tEC874Q2LZ\\nhttps:\\/\\/t.co\\/UkTzI6zMDG\",\"2587\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/jeH3XPP7Ah\\nhttps:\\/\\/t.co\\/v1mvmJgSEY\",\"2588\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/4DtWXpAO2r\\nhttps:\\/\\/t.co\\/ou1Y0Rhl1G\",\"2589\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/mdfATzagTq\\nhttps:\\/\\/t.co\\/p5AfWyA07m\",\"2590\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/L0LyfRtSXD\\nhttps:\\/\\/t.co\\/8d1LzjIe0t\",\"2591\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/gIiKlSnZaQ\\nhttps:\\/\\/t.co\\/3KcUT8Zrkp\",\"2592\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/fm3WP2HEEo\\nhttps:\\/\\/t.co\\/457ZAOlQ9M\",\"2593\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/MnpWhRWMH3\\nhttps:\\/\\/t.co\\/PZRtUYvLqP\",\"2594\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/hiIRb4Vn6j\\nhttps:\\/\\/t.co\\/5k8oyXFBfc\",\"2595\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/kW37tx5D81\\nhttps:\\/\\/t.co\\/FLWsySXfmF\",\"2596\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/gpCyiGfxgB\\nhttps:\\/\\/t.co\\/TeAM7KIOLa\",\"2597\":\"You have to order one of these before it's too late! \\n@kickbooster #kickbooster \\n#discordteen #discordnsfw #onlyfansleaks #onlyfansdiscord\\n#GetWellSoonAPO #Biden #Taiwan #Jinan #XiJinping\\n#mobilegames #mobilegames #apocolleagues \\nhttps:\\/\\/t.co\\/hC40JReWJO\\nhttps:\\/\\/t.co\\/EeA3wNoQTD\",\"2598\":\"It seems that Israel have learnt well from the US how to gaslight the victims of their aggression. #Palestine #ChinaTaiwanCrisis https:\\/\\/t.co\\/Bvv9Web7CF\",\"2599\":\"Opinion - #America and @ZelenskyyUa - the ones behind destroying @Ukraine - Soon the same might\\/will happen to #Taiwan - and #Africa is just #watching - https:\\/\\/t.co\\/Luu4F1ewcS\",\"2600\":\"Reality Check: Nancy Pelosi's #Taiwan trip is U.S. hypocrisy at its best\\nhttps:\\/\\/t.co\\/LumIrja2YA\",\"2601\":\"Did the Taiwan authorities ask the public their opinion before they invite US House Speaker Nancy Pelosi to #Taiwan? https:\\/\\/t.co\\/WSTph7LJpi\",\"2602\":\"@elonmusk #Alians and @Twitter #bots are just as fast as #Taiwan's Chips - ons noem dit breinkrag #China - \\ud83d\\udc47 for those that likes entertainment to much - #stillanunpaidfreelancer https:\\/\\/t.co\\/vtOoVgRUq6 https:\\/\\/t.co\\/cYPEk2xZX5\",\"2603\":\"@ZelenskyyUa you allowed the #invitation to happen - #China don't be a #Putin - #Taiwan don't be a @ZelenskyyUa \\n\\nZelensky #condemns SA\\u2019s neutral stance on the #Russian invasion https:\\/\\/t.co\\/6hyv1Wvh3H\",\"2604\":\"Read | Following #Pelosi controvesial visit to Taiwan, China has announced a raft of diplomatic retaliatory measures which will escalate the already fragile relations between Beijing and Washington.\\n\\n#Pelosi #Washington \\n#TaiwanIsNotChina \\n@LivePretoria https:\\/\\/t.co\\/zIKDqhyU60\",\"2605\":\"It is one of the stupidest foreign policy blunders of the United States in modern history. It's a shame on President Biden, who should've stopped this. Apparantly, he knew this was wrong.--Prof. Jeffrey Sachs from Columbia University of the US #Taiwan https:\\/\\/t.co\\/czzchnXkNt\",\"2606\":\"Chinese SC&FM Wang Yi: The PRC is the sole legal government representing the whole of China. This is the real status quo of the #Taiwan question. Now it is the US &separatist forces in Taiwan that have broken this status quo. https:\\/\\/t.co\\/8xbEfOYHO5\",\"2607\":\"On Aug. 5, the Chinese Foreign Ministry announces countermeasures\\u2002in response to Nancy Pelosi\\u2019s visit to #Taiwan https:\\/\\/t.co\\/gEWWvEvonB\",\"2608\":\"160+ countries have voiced support for China\\u2019s efforts to uphold its sovereignty &territorial integrity. This is a fight against hegemony, interference &secession. #OneChina #Taiwan https:\\/\\/t.co\\/IB14KjYfaL\",\"2609\":\"We urge Mr Mnangangwa to be silent on #ChinaTaiwanCrisis and concentrate on the 42yrs of #ZimbabweCrisis. Its not maturity to speak when people are suffering in Zimbabwe.\\n\\nBaba ngavataure zvekumba kwavo.\",\"2610\":\"#pelosi = just evil woman NOT worth taking ANY notice of a dying old drunk #china #taiwon https:\\/\\/t.co\\/jRSrglqfoE\",\"2611\":\"USA is the biggest 2 face. Reason: China must see Taiwan as a independent country but USA dont see Hawaii as one. Best part Huwai is so far from USA where Taiwan is so Close. #China #Taiwan #Hawaii #USA #blind #Warmongers\",\"2612\":\"@ZelenskyyUa you could have won the war if you #only had @uganda_kim - #ChinaTaiwan - China it does #improve your #brain function - give it a try I'm sure North Korea did - https:\\/\\/t.co\\/084VDZl87p\",\"2613\":\"Obviously he would - can't go against your own country - @ZelenskyyUa you haven't supported South Africa in anything the last 10yrs - why should you deserve that we choose sides when you don't even commit to the current events between #Taiwan and #China https:\\/\\/t.co\\/wuSVuEffs7 https:\\/\\/t.co\\/bjhJZwWfes\",\"2614\":\"Well if #China invades #Taiwan - Who's to blame \\ud83e\\udd14 seeing that #Russia have done the exact same thing as what #China is doing - \\ud83e\\uddd0 https:\\/\\/t.co\\/R2Mri4Uydf\",\"2615\":\"\\u201cOur position is very clear: We abide by General Assembly Resolutions, by the one-China policy. That is the orientation that we have in everything we do.\\u201d--UN Secretary-General Ant\\u00f3nio Guterres #Taiwan https:\\/\\/t.co\\/xl78BOWsKL\",\"2616\":\"The US acts have breached its commitment that \\u201cit has no intention of ... pursuing a policy of \\u2018two Chinas\\u2019 or \\u2018one China, one #Taiwan\\u2019\\u201d https:\\/\\/t.co\\/HYKMtVLfda\",\"2617\":\"#Latest Zimbabwean envoy commends China for exercising restraint in the face of provocation by #Pelosi, stresses adherence to one-China principle - #OneChinaPrinciple https:\\/\\/t.co\\/B62HXsnVZv\",\"2618\":\"Now it makes absolute sense\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 #Taiwan #iphone14 #PuleMabe #KagisoShutDown #Esona #capitec https:\\/\\/t.co\\/QM5vuZyGXl\",\"2619\":\"#China infuriated by #USHouseSpeaker #Pelosi visit to #Taiwan @cartoonmovement @Ramireztoons @The_BigConvo https:\\/\\/t.co\\/iI3MnxyQ1V\",\"2620\":\"Industrial Shelves and racks for sale ,3m\\u00d72m with plates complete sets contact; 0814567613 \\n #KagisoShutDown \\n#Krugersdorp \\n#Taiwan \\n#malema https:\\/\\/t.co\\/lLoNNXkVEL\",\"2621\":\"Hey I joined a network called SurveyJ and earned $2,032 today! You get paid for testing out new free apps and posting on social media. Sign up with my link for an instant $40 signup bonus! https:\\/\\/t.co\\/NDclDpEGSS #BulletTrainMovie #Taiwan #bitcoin\",\"2622\":\"Never search for love cause love will always find a way to you #Taiwan ,#capitec ,#iphone14\",\"2623\":\"#NancyPelosi really went to Taiwan as a super fan to her favourite series and just wants the end of the trilogy. #WWIII\",\"2624\":\"Aii let me download money while waiting for #capitec \\nInstagram @ForexKts \\nIG : kts_forex_traders \\n Hands free just plug and leave it it will do the things for #timesupolivia #Taiwan #onstorm #kagiso #MilePhakphum #forex https:\\/\\/t.co\\/unpqoELOuf\",\"2625\":\"One of the biggest Amapiano songs in the world \\ud83c\\udf0e Trapper Hollic ZA X Skay Muzic & Drumme R Niinetwofour ZA #Usang'sukela \\n\\nKingsman Records \\n#comingsoon\\n#podcastandchillwithmacg \\n#KagisoShutDown \\n#ASAPRocky \\n#Taiwan #capitec #timesupolivia #BibleSumett #PokemonPresents #Somizi https:\\/\\/t.co\\/sOr1VY7DOb\",\"2626\":\"Kendrick lamar disappeared on the stage. Kendrick & Kanye West they're no longer a normal human being. \\nLink full\\nhttps:\\/\\/t.co\\/2I0Vjdt5Md\\n\\nRod Wave Cardi Cudi Welele #Taiwan #KagisoShutDown https:\\/\\/t.co\\/FrBWxiCYBl\",\"2627\":\"#Africa the reality of Africans\\n\\n #Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #capitec #kagiso #thursdayvibes #NationalShutdown #timesupolivia https:\\/\\/t.co\\/7gHvSmthDm\",\"2628\":\"Super thankful for all who support us\\nSomayah is doing amazing\\ud83d\\ude4f\\ud83d\\ude4c\\ud83d\\udd25\\nCheck it out- https:\\/\\/t.co\\/iWNlYF47iW\\n\\n#ExtraordinaryAttorneyWooEp12 #capitec #PokemonPresents #thursdayvibes #sabinus #Taiwan https:\\/\\/t.co\\/nCx9bBH47d\",\"2629\":\"MohaleOTR is stressing Somizi and this is bad idols SA\\n#MohaleOTR\\n#Somizi\\n#Taiwan https:\\/\\/t.co\\/T6xsQZ0Gh8\",\"2630\":\"Somizi is becoming too much now.\\n#Somizi\\n#Taiwan\\n#MohaleOTR\\n#mohale\\n#idolsSA https:\\/\\/t.co\\/SQjOZ6uAFS\",\"2631\":\"Tomorrow's situation in bushbuckridge\\u2764\\ud83d\\ude0a\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\n#capitec \\n#Taiwan https:\\/\\/t.co\\/WmLUxb331i\",\"2632\":\"The Americans are provocative, Nancy Pelosi's visit to #Taiwan is an attack on China's Sovereignty. The People's Republic of #China must make the Taiwan regime to pay for this. President Xi must bring Taiwan to ashes\\ud83d\\udca3 All puppets of imperialists must be defeated & eliminated. https:\\/\\/t.co\\/A8kjlEBT6P\",\"2633\":\"Give me R5000, I'll gladly lie to you and say you'll make R25 000 every hour \\ud83d\\udcb5 ,inbox me for more lies. I have a convincing screenshots of beautiful graphs that I'm pretty sure you won't understand #capitec #Taiwan #kagiso\",\"2634\":\"Ecclesiastes 11 verse one \\n#iphone14 #capitec #malema #krugersdrop #zamazama #Kagisoshutdown #MohaleOTR #Taiwan #STAGE2 https:\\/\\/t.co\\/yZEBgmKP6L\",\"2635\":\"New Vehicle INQUIRIES\\/SALES\\/TRADE-INS\\/SERVICE PLAN\\/INSURANCE \\n#zamazama #mohale #KagisoShutDown #capitec #Explosion #Taiwan #TheVoiceCHV #massage #AllOrNothingArsenal #ichmachenichtmehrmit #Somizi #KellyKhumalo https:\\/\\/t.co\\/svCQ0njM4A\",\"2636\":\"China fires missiles near Taiwan after Pelosi visit\\n\\n#Taiwan #China #USA\\n\\nhttps:\\/\\/t.co\\/hIPLapO3Xs\",\"2637\":\"China begins live-fire military drills around Taiwan, a day after Pelosi visit https:\\/\\/t.co\\/odLXSZuIZi \\n#China \\n#Taiwan \\n#Taiwanchina\",\"2638\":\"My music \\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\ud83c\\udfa7\\nLink\\n\\nhttps:\\/\\/t.co\\/JvEfxlDcpt\\n\\n#Zaniolo\\n#Taiwan\\n#House\\n#housemusic https:\\/\\/t.co\\/t1aW2vnyEK\",\"2639\":\"New Vehicle INQUIRIES\\/SALES\\/TRADE-INS\\/SERVICE PLAN\\/INSURANCE \\n#ActionSA #Makashule #Fabrizio #Taiwan #XolaPakati #Portugal #PokemonScarletViolet #SenzoMeyiwatrial #idolssa #NtsikiMazwai #KellyKhumalo #Tembisa #mohale #MohaleOnTheRecord https:\\/\\/t.co\\/MtrkTXXpeV\",\"2640\":\"The Washington DC administration must not provoke peace in China the way China respects American sovereignty.@USEmbZim @SpeakerPelosi @CGMeifangZhang @ZimChina @ChineseZimbabwe #Taiwan https:\\/\\/t.co\\/h76bBvMzdX\",\"2641\":\"No brainer(cover)!!! Dropping tomorrow!!! \\ud83d\\udd25\\ud83d\\udd25 @2022AFRICA #Taiwan #Uyajola99 https:\\/\\/t.co\\/gSOS7TqUVC\",\"2642\":\"My nail tech is the girl she thinks she is \\ud83e\\udd0c\\ud83c\\udffe\\ud83e\\udd0c\\ud83c\\udffe\\n\\nhttps:\\/\\/t.co\\/hHgYQ1o59w please subscribe to my channel \\n\\nKay Yarm #PokemonPresents #PokemonScarletViolet #Taiwan https:\\/\\/t.co\\/fIT9kFu96Q\",\"2643\":\"How do you get your crush to notice you?\\n\\n#EvogueRadioWorld #TheExhaligShow #Taiwan #Somizi #WhatsApp #Naledi #SolPhenduka #DineoRanaka #China #zamazama #MohaleOTR\",\"2644\":\"The law abiding citizens in #SOWETO should also join forces to cut illegal connections to alleviate the pressure on the electricity grid. The power is in the hands of community members #kagiso #ZamaZamas #MakashuleGana #MohaleOTR #PlatinumWomensDay #capitec #Taiwan\",\"2645\":\"China has started its biggest ever military exercises around Taiwan. \\n\\nThe US is against world peace. #Taiwan https:\\/\\/t.co\\/EO4gOJ2O0K\",\"2646\":\"#ChinaTaiwanCrisis #NancyPelosi Well done arriving in style whilst the Chinese just watched@and did not execute their threats https:\\/\\/t.co\\/XqnP6fSujv\",\"2647\":\"Business partners in demand if you want to hear\\/join the Herbalife\\ud83c\\udf3f business DM me or WhatsApp 0786316424\\n,#Taiwan #PokemonPresents #herbalifenutrition\",\"2648\":\"New Polo Vivo Black Style. From 4k a month with balloon and 5.6k without balloon. No deposit. \\n#Taiwan #ChelseaFC #SbNaijaS7 #SinkyMnisi #welele #Naledi #Fabrizio #IREvsSA #Portugal #Stubbs https:\\/\\/t.co\\/vfRD2xkYO9\",\"2649\":\"As we continue to surf some small moves....\\n#progress not #perfection #Trading #CradleOHK #Liquidity #Taiwan https:\\/\\/t.co\\/oMUlgSbMII\",\"2650\":\"What the....? \\n\\n#Txiki #Pretoria #B2022Athletics #KNUSTLive #PeterDrury #EPL #FCBarcelona #Amakhosi4Life #OnceAlways #Taiwan https:\\/\\/t.co\\/pZiRXMGO7E\",\"2651\":\"Thembisa Fakude is a Senior Research Fellow and Director at Afrasid.\\n\\n@Afrasid_\\n#ChinaTaiwanCrisis\",\"2652\":\"#Pelosi | \\\"The world should not allow #China to dictate who travels where, we know that at the moment they are suppressing #Uyghur Muslims in #Xinjiang, we saw what happened in Hong Kong and we know how they prevented #DalaiLama from visiting Bishop Tutu.\\\" - @fakudet https:\\/\\/t.co\\/EfSoggum2P\",\"2653\":\"Taiwan Will Regret For Allowing Pelosi To Visit Them\\ud83e\\udd26\\ud83c\\udfff\\u200d\\u2640\\ufe0f\\ud83e\\udd26\\ud83c\\udfff\\u200d\\u2640\\ufe0f\\n#Taiwan \\n#Pelosi \\n#ChinaTaiwan https:\\/\\/t.co\\/SfBjn1ULso\",\"2654\":\"One of the Qwabe Twins got married ??\\n\\n #Uyajola99 #Taiwan #Pelosi #IdolsSA #BBNaija7 malume qwabe twins qtwins Amapiano afrotainment #AreaYouTubedIn https:\\/\\/t.co\\/MfSx1Fphzp\",\"2655\":\"Its available for only R999 on https:\\/\\/t.co\\/3m3bqJSIG0 \\n#Taiwan \\n#Pelosi \\n#CyrilRamaphosamustgo https:\\/\\/t.co\\/DnGROE8IM2\",\"2656\":\"Send your CV with the subject line: \\\"Application for a possible employment opportunity\\\"\\n\\nhttps:\\/\\/t.co\\/hwRHMSsSIg\\n\\nKaizer Chiefs\\nOrlando Pirates\\nNota\\nEsona\\n#ZamaZamas\\n#Taiwan\\nSol Phenduka\",\"2657\":\"Thank you guys for the Retweets. I truly appreciate them...\\n\\nPlease keep Retweeting, my next Client could really be on your TL\\n#AreYouTubedIn #Nota #JHBCBD #Sol #SolPhenduka #Taiwan\",\"2658\":\"Mirror Maru.(Official Audio) (Produced By Myself) \\ud83c\\udfb9\\ud83e\\ude98\\n\\nLink to full track: https:\\/\\/t.co\\/7hPhDnDyf0 \\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\n\\n #afrohouse #deephouse \\n\\nvia @YouTube \\ud83d\\udd0a\\ud83c\\udfa7 \\n\\n#PokemonPresents #ChinaTaiwanCrisis #boycottrakshabandhan #timesupolivia #PrabhasForSitaRamam #tiboinshape #PodcastAndChill https:\\/\\/t.co\\/c33y04Yst1\",\"2659\":\"New high on the DAX.... some technical roadblocks ahead. Catch my thoughts at https:\\/\\/t.co\\/JY6W2pulg2\\n#markets #Taiwan #globalmacro #DAX https:\\/\\/t.co\\/eSUhUrcMpH\",\"2660\":\"Ecclesiastes 11 verse one \\n\\n#DineoRanaka #Taiwan #Uyajola99 #Stage2 #SolPhenduka https:\\/\\/t.co\\/RTLyNYvO6s\",\"2661\":\"Please follow AdeKunle on all his social media platforms \\n\\n Instagram\\n\\nhttps:\\/\\/t.co\\/tiMMkpX9J7\\n\\nHis Business Page\\nhttps:\\/\\/t.co\\/jdC87mulvR\\n\\nTwitter @adekunleolopade\\n\\nTwitter fan page @teamAdekunlebbn\\n\\n#BBNaija\\n#BulletTrainMovie\\n\\n#Taiwan\",\"2662\":\"\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 Racing is difficult #Taiwan #BulletTrainMovie #F1 #LewisHamilton https:\\/\\/t.co\\/02Nd4xXTth\",\"2663\":\"Risk takers are prospering. The safe mindset mustn't be the one that delays your dreams. Risk and Learn.\\n\\n#Makgoba_Proverbs\\ud83e\\udd1f\\ud83c\\udffb\\n#wednesdaythought \\n#Taiwan \\n#Limpopo https:\\/\\/t.co\\/jlTdejrWya\",\"2664\":\"#China says military drills around #Taiwan are 'necessary' reaction to US 'provocation'\\u2014The UN Security Council should move in quickly 2 defuse tension between US & China over Pelosi\\u2019s visit . The world is not ready to witness another Russia\\/Ukraine saga. https:\\/\\/t.co\\/PO8JZt5u6v\",\"2665\":\"So Nancy visited and got a pretty sash - but there has been no policy change by the #USA on #Taiwan at all - China is just using this excuse to have a big tantrum.\",\"2666\":\"Weleleee Full Story\\n#SolPhenduka #pretoria #welele #Taiwan #Mnakwethu https:\\/\\/t.co\\/U5tdprryKC\",\"2667\":\"@PhophiRamathuba do we have government Rehabilitation Centres in Limpopo? #Taiwan #Uyajola99 #mihlali #bonang\",\"2668\":\"African Fashion Show | Riebeckite Clothing | 01 Oct 2022 | 14:00 PM Till Late #riebeckite #Taiwan #AamirKhan #PokemonScarletViolet #Pelosi #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a #DonBelle #Mnakwethu #Viruman #helicopter https:\\/\\/t.co\\/J9Uv6K7gR5\",\"2669\":\"Classic ABCD\\ud83d\\udcc9\\ud83d\\udcb0\\ud83d\\udc4c\\ud83c\\udffd\\n#forexlondon #profits #happytrader #Taiwan\\n#forexmoney #earnmoney\\n#workfromhome #Pelosi\\n#wallstreet #bloomberg\\n#nfp #EURUSD #news https:\\/\\/t.co\\/KLOrtnRCha\",\"2670\":\"Song cover R180\\nHigh quality only\\u2705\\n\\n#Pelosi #LoveIsland2022\",\"2671\":\"@SAPoliceService acted late YES, they should just sustain the operation on #ZamaZamas , Soon you will hear some ORGS claiming human rights abuses through these raids. @CyrilRamaphosa @PresidencyZA please recruit more police to curb the scourge of crime. #Tembisa #Taiwan #China\",\"2672\":\"Season 1 of of How The US Started #WWIII is almost complete in Ukraine & we're already seeing opening scenes to Season 2 in #Taiwan\",\"2673\":\"Everyone is like China is soft and more. China Just started crippeling Taiwan with Sanctions and when they asked Pelosi if USA Will help with the strain she could not awnser it straight on. #ChinaTaiwan #Pelosi #sanctions\",\"2674\":\"Guys i think @MphoPopps\\nIs the best comedian in the country at the moment.\\n\\n#JobsThatHaveTheMostSex solphenduka #Taiwan #podcastandchillwithmacg\",\"2675\":\"@SpeakerPelosi #Taiwan will still be paying the price of your vanity long after you have fossilized and a forgotten relic. You achieved nothing Nancy! \\ud83d\\ude44\\ud83d\\ude44\\ud83d\\ude44\",\"2676\":\"Benni's first interview at man United \\ud83d\\udc4c\\ud83d\\udd25\\n\\nSol Phenduka #Taiwan https:\\/\\/t.co\\/bxLvbjLE83\",\"2677\":\"This Woman's Month Enjoy R10% OFF Ladies Personalized Watches at just R270 each\\n\\nWhatsApp us on\\u00a0 0693325226 \\/ 078 9431446 for orders. \\n\\nCourier is available for R100 nationwide\\n\\n#SolPhenduka #Dineo #Netflorist #Uyajola99 #Mnakwethu #Taiwan #ChinaTaiwan #Esona https:\\/\\/t.co\\/3IHH3W96jW\",\"2678\":\"#China is actually a sissy. Here I had bought my popcorn and secured expensive front row seats for WWIII following their threats on #NancyPelosi visit to #Taiwan and all they do is bark like a chihuahua.\\nI want to see the manager for a refund!\",\"2679\":\"Please buy him a Waldrop if you get a chance #Taiwan #ZamaZamas #Mpofu #PhalaPhalaFarmGate https:\\/\\/t.co\\/6zVhPb66Q7\",\"2680\":\"@Naked_Dj Birthday with the best of the best SAT 06 AUG 2022 \\n\\n@DJTira @dineoranaka @LuloCafe\\n@HarrisonCrump @SabbyTheDJ @IAmDJVoodoo @MsCosmoSA @LindaMoeketsi @FrankySA\\n\\nTickets start from R50 \\n\\nGet your tickets on the link below\\nhttps:\\/\\/t.co\\/poS6eksott\\n\\n#XiJinping https:\\/\\/t.co\\/yF725swjJG\",\"2681\":\"The b'hlungus don't phel'\\ud83d\\ude29 \\n\\n#TheJobsThatHaveTheMostSex \\n#SolPhenduka #Taiwan https:\\/\\/t.co\\/mxWX6CwBOR\",\"2682\":\"She is a babe who\\u2019s all about her devine femininity\\u2026 \\nShe BAD\\u2026 Bold. Ambitious. Determined. \\n#WomanPower #WomanOnTop #Taiwan #Pelosi #Solana https:\\/\\/t.co\\/BEhDGMUUzC\",\"2683\":\"@esonasekeleni This is the amount needed to make the trip, everything else there has ot be scrapped out for her to make it to Portugal.\\n\\n@2022AFRICA \\n@SisaFlatela_ \\n#esona \\n#Pelosi \\n#Taiwan \\n# https:\\/\\/t.co\\/I2qzQo0GXl\",\"2684\":\"2012 Range Rover Sport 3.0SDV6 Breaking for parts or as is. Call or whatsapp 0682304004 0740941015 for this and more landrover and Jaguar parts.\\n#thechopshop137 #landrover #rangerover #rangeroversport #encanews #southafrica #trevornoah #Pelosi https:\\/\\/t.co\\/WfQglM0Fnp\",\"2685\":\"New Vehicle INQUIRIES\\/SALES\\/TRADE-INS\\/SERVICE PLAN\\/INSURANCE \\n#ChangingLives #Stage2 #centurionmall #Dineo #AreYouTubedIn #Taiwan #Pelosi #China #IndiaWithLaalSinghChaddha #ICanWithAbsa #Mnakwethu #netflorist #esona #SolPhenduka #alpine #mshishi #juluka #DoctorStrange https:\\/\\/t.co\\/yXfYpvIRoW\",\"2686\":\"New Vehicle INQUIRIES\\/SALES\\/TRADE-INS\\/SERVICE PLAN\\/INSURANCE \\n#Taiwan #TUINUANE #VWGroup #Dineo #dinner #Tembisa https:\\/\\/t.co\\/SnrooVq7lP\",\"2687\":\"The US provocation is enough. #Taiwan #China https:\\/\\/t.co\\/ASGd3onL2f\",\"2688\":\"This is us, this is what we do, this is what we are good at #PacificBlues #BRICS #Taiwan #Pelosi #China #ZamaZamas #Tembisa #BeautyWithBrains #BhekiCeleMustGo #SolPhenduka #Stager #PhalaPhalaFarmGate https:\\/\\/t.co\\/4P3iO7prSS\",\"2689\":\"Ska wara about bulk fuel. #PacificBlues has your back. #Taiwan #Pelosi #China #ZamaZamas #pretoria #Jobsthathavethemostsex #Tembisa #SolPhenduka #Stage2 #BhekiCeleMustGo #PhalaPhalaFarmGate https:\\/\\/t.co\\/RCkYjeZd3y\",\"2690\":\"XiPooh looks like a cartoon character not a leader of a super power. He is so weak. Only Putin can stand against the west #XiJinping #XiJinpingThePooh #Pelosi #Taiwan https:\\/\\/t.co\\/uRG6dcyxvO\",\"2691\":\"I was expecting something like \\n\\u201cYou don\\u2019t want war with United States we will fuck you up \\u201c \\n#WWIII https:\\/\\/t.co\\/MHubaCKuGZ\",\"2692\":\"Taiwan is the major global supplier of chips.\\n\\nTech giants to struggle even before an invasion. China imposed sanctions on Taiwan, suspended natural sand exports. #Taiwan #China https:\\/\\/t.co\\/iQ7kW1wz1G\",\"2693\":\"Money heist in Limpopo Venda\\n#Fidelity\\n#Taiwan\\n#Limpopo\\n#Venda\\n#Heist\\n#MONEY\\n#MoneyHeist\\n#SolPhenduka\\n#Tembisa\\n#stage2 https:\\/\\/t.co\\/K6xumIKSoH\",\"2694\":\"#ChinaTaiwan\\n#ChinaTaiwanCrisis\\n#ChinaTaiwanWar\\n#Pelosi\\n#PelosiVisit\\nChina conducts live-fire exercises around Taiwan as Pelosi visits | Politics News | Al Jazeera https:\\/\\/t.co\\/aClGAQJ3h7 via @AJEnglish\",\"2695\":\"@bookingcom just takes peoples money and do not create the booking. This is pathetic #Taiwan #Mamkhize #sbahle #grootman\",\"2696\":\"China furiously condemned the highest-level US visit to Taiwan in 25 years as House of Representatives Speaker Nancy Pelosi hailed the self-ruled island as \\u201cone of the freest societies in the world\\u201d in a speech to the parliament in Taipei on Wednesday.\\n#Pelosi \\n@LivePretoria https:\\/\\/t.co\\/YgKuOp7uH8\",\"2697\":\"Our 2nd Goal for August. \\n\\nWe have already accumulated 35% towards this goal. \\n\\nR 10 000.00 minimum investment guarantees you 18% Bi-Annully \\n\\nJoin Mzansi Growth Fund today!\\n\\n#Taiwan\\n#SenzoMeyiwatrial \\n#Tembisa \\n#Mnakwethu \\n#27August https:\\/\\/t.co\\/2JffP0XPVz\",\"2698\":\"Full Text: Chinese Councilor &FM Wang Yi makes remarks on US violation of China's sovereignty #Taiwan\\nhttps:\\/\\/t.co\\/xOAQw90DlU https:\\/\\/t.co\\/slvoc9LA9Z\",\"2699\":\"On this day in history, the former leader of Angola's National Union for the Total Liberation of Angola (UNITA), Jonas Malheiro Savimbi was born. #History #Archives #Taiwan #Pelosi https:\\/\\/t.co\\/zrJaKKja2O\",\"2700\":\"Live | Highlighting what is behind #China #Taiwan tensions? with Dr. David Monyae (@DavidMonyae), Associate Professor of Political Science and International Relations and Director for the Centre for Africa-China Studies at the University of Johannesburg. https:\\/\\/t.co\\/JyumTjPXWr\",\"2701\":\"PROJECTION & MOVEMENT \\u270a\\ufe0f\\u270a\\ufe0f\\n#CRESGLOBAL #CRESGLOBALFOREX #CRESGLOBALFOREXLUMINARIES #Taiwan #Pelosi #China https:\\/\\/t.co\\/3LUTaHBn6u\",\"2702\":\"@dailymaverick Too late Beijing has acted.#Taiwan #Pelosi #China\",\"2703\":\"#Taiwan is doing very well, for years they have an agreement with #China, they are ranked amongst the best democracy in the world with a GDP per capita of usd 38! The #USA just want to create unnecessary chaos in the world! Since 1960, none of sub-sahara Africa countries 7\\/9\",\"2704\":\"Help Africa to emerge from the yoke of #France and the #UK, can't help Latin America to develop, want to stir up between #Taiwan and #China. Are the #USA still not happy for what they have created in #Syria, #Lybia, #Yemen,#Ukraine,..they want to liberate Taiwan, from who? 6\\/9\",\"2705\":\"Leading producers of semiconductors - necessary in any high tech industry - #China, #USA, #Europe, all need #Taiwan technological products on only 35,000 km2 of territory, look at what they have achieved since 1950!\\nBut the US, \\\"the champion of democracy\\\", which can't even 5\\/9\",\"2706\":\"in the #DRC to produce mobile phones or batteries - what #Taiwan did was not rocket science, major economic and agricultural reforms from the 1960s, nowadays, Taiwan is a technological center with so many IT companies producing on their soil plus one of the world 4\\/9\\n#China\",\"2707\":\"Taiwan is a great example for #Africa in terms of leadership excellence. in the 1950s it was an archaic country, very poor, but 30 years after Japanese and Chinese colonization, Taiwan became a well-developed country with a GDP of nearly 600 billion dollars, 1\\/9\\n#Taiwan #China\",\"2708\":\"@Buhlenomuhle Start something that matters today.\\nNeed a restaurant website? I got you. Need a photograph website? I also got you. Need a simple website to promote whatever hustle you doing. I got you. Visit : https:\\/\\/t.co\\/Qv4fMTN2Gv and look at what I can do for you. Please share #Pelosi https:\\/\\/t.co\\/o1zngHxoMV\",\"2709\":\"Chinese response to US was a strongly worded letter \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n\\nHow long will they bully China over Taiwan? \\n\\n@KMutisi @ChinaAmbUN @mhofela_mhofu @XHNews @SCMPNews \\n\\n#Taiwan #Pelosi #ChinaTaiwan\",\"2710\":\"Start something that matters today.\\nNeed a restaurant website? I got you. Need a photograph website? I also got you. Need a simple website to promote whatever hustle you doing. I got you. Visit : https:\\/\\/t.co\\/aHApmsNA9g and look at what I can do for you. Please share #Pelosi https:\\/\\/t.co\\/ch7V71uNKt\",\"2711\":\"Live | Despite threats from #China, #US House Speaker #NancyPelosi arrives in #Taiwan: Thembisa Fakude (@fakudet), Senior Researcher at AFRASID (@Afrasid_), discusses. https:\\/\\/t.co\\/I8NNEgeWCV\",\"2712\":\"US House of Representatives Speaker Nancy Pelosi addressed Taiwan\\u2019s parliament on Wednesday and was due to meet with its president as well as human rights activists during a visit to the island that has infuriated Beijing.\\n#Pelosi #Taiwan \\n#ChinaTaiwan \\n@LivePretoria https:\\/\\/t.co\\/0t4gHSHDMN\",\"2713\":\"We are at Corn Garsfontein Road and Sinovich Drive, Pretoria East \\ud83d\\udccd\\n\\nFood \\ud83e\\udd58 | Drinks \\ud83c\\udf7a | Carwash \\ud83e\\uddfc | Pool \\ud83c\\udfb1 | Music \\ud83c\\udfb6 \\n\\nYour Safety is Our Priority Protected by @mudkasworldsecurity \\n\\n12pm until Late || Saturday 6 August\\n\\n#Kaya #Krugersdorp #Shisanyama #Taiwan #whites https:\\/\\/t.co\\/OW4U4UvXzE\",\"2714\":\"Looting at @Eskom_SA was financed through debt till De Ruyter arrived... This is why he is hated by those who masquerade as Dalai Lamas of Radical Economic Transformation and supporters of @PresJGZuma @Newzroom405 @SABCNews @SAfmnews @eNCA #LetsFixSouthAfrica #Pelosi #China https:\\/\\/t.co\\/QhTsxx9rBK\",\"2715\":\"\\u270d\\ud83c\\udffd R13000 Profit MZANSI\\n\\ud83c\\uddff\\ud83c\\udde6\\n\\n#RETWEET n Wait To Be Added To GROUP \\u26bd\\ud83c\\udfc0\\ud83c\\udfbe\\ud83c\\udfc8\\n\\nWHAT'SAPP https:\\/\\/t.co\\/qn9w7UP6rp Tips \\n\\nSABC\\n#ramaphosamustgo #Krugersdorp Eswatini\\n#Taiwan Ntsiki \\nKatlego Maboe #BeautyWithBrains Kaya FM #PhalaPhalaFarmGate #Tembisa #etvScandal Nota #ZamaZamas China https:\\/\\/t.co\\/vSiTSGunjh\",\"2716\":\"So, they have to please the God of Democracy with another \\u201cunprovoked invasion\\u201d and sacrifice the lives of millions of people, except their own... #Pelosi #Taiwan #China\",\"2717\":\"Xi Jinping of #China called Joe Biden and threatened him about #Taiwan and old Joe sends his No 3 to Taiwan \\ud83e\\udd23. Xi Jinping isn\\u2019t as strong as we thought. He is just like a barking dog with no teeth. He is full of rage and punishing Taiwan now. China needs America for its economy.\",\"2718\":\"It's just a shift in the flagships. Pretty obvious that they are losing interest in Ukraine due to the obscurity of results and miscalculations, corruption, and cack-handed management. So, engage the public in the new performance. #Pelosi #Taiwan https:\\/\\/t.co\\/39QE2fpbGN\",\"2719\":\"New Vehicle INQUIRIES\\/SALES\\/TRADE-INS\\/SERVICE PLAN\\/INSURANCE \\n#Taiwan https:\\/\\/t.co\\/m6COG8Mwow\",\"2720\":\"Nancy just met with Taiwan president, according to CNN, China is already preparing their response. It's about to start. \\n#WWIII #Taiwan #Pelosi #China https:\\/\\/t.co\\/7JzF438P9T\",\"2721\":\"The bully called out #China\\u2019s bluff and it\\u2019s extremely disappointing. Why didn\\u2019t the Chinese intercept her aircraft or better yet shoot it down? #Pelosi #Taiwan\",\"2722\":\"In case you missed it..\\n\\nFound the video Meme \\ud83d\\ude02\\ud83d\\ude02..\\n\\n#Pelosi #Mnakwethu #PodcastAndChill #China #WorldWarIII https:\\/\\/t.co\\/Fol7OGY40C\",\"2723\":\"#Taiwan All because of the US House Speaker visit to Taiwan https:\\/\\/t.co\\/Mmw0CUknda\",\"2724\":\"The United States government has been provoking China and Russia, not the other way around. #Taiwan #China https:\\/\\/t.co\\/Xux9FY51lf\",\"2725\":\"We are told that the US President is not able to stop Nancy Pelosi from travelling abroad. Well Trump did it : https:\\/\\/t.co\\/BN5rqAP2lI #NancyPelosi #Taiwan\",\"2726\":\"AUDUSD sell limit\\nSell @ 0.69923\\nSL - 0.70269\\nTP - 0.67635\\n\\nTHE ONLY TIME TRADER IN THE WORLD\\n\\n\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\nFor assistance don't hesitate to contact admin \\ud83d\\udc8c +2784 477 6133\\n\\nMcLaren\\nSan Diego\\n#thatsmoney \\nDodgers\\nZama Zamas\\n#WWIII \\nSABC\\n#DiepCityMzansi \\nChamisa\\n#ClimateScam\",\"2727\":\"Did you know @Nasty_CSA #i_cant_imagine beat was a sample taken from the series #StrangerThings season 2 episode 7... #China #Pelosi #Nota #WorldWarIII #27August https:\\/\\/t.co\\/LGmUXmjO7R\",\"2728\":\"Why would Nancy Pelosi risk starting a war with China? The fact that she's visiting Taiwan seems like a provocation. A confrontation is the last thing the world needs.\\n#China\\n#Taiwan\\n#NancyPelosi\",\"2729\":\"Checked on your loved ones before it\\u2019s too late.\\n\\n #Pelosi #China #Somizi #Mnakwethu #SkeemSaam\",\"2730\":\"It is alleged that Blueface is offering Chrisean Rock 100k to leave him alone\\n#blueface\\n#chriseanrock\\n#Taiwan\\n#BBNaija\\n#BBNajiaS7\\n#somizi\\n#nota https:\\/\\/t.co\\/YPqOvZqkwr\",\"2731\":\"What's about to happen to Taiwan, is the same thing that happened to Ukraine and guess what while Taiwan will be receiving the beating the U.S will watch and have us wave and post Taiwan flag in solidarity\\nTaiwan Xi Jinping #Pelosi #China\",\"2732\":\"Can the elders give young generations to lead? \\n#Taiwan #Pelosi #China #Krugersdorp\",\"2733\":\"Does your salary covers all your monthly expenses?\\nMake money online!!!\\nhttps:\\/\\/t.co\\/JIKuxQ2mxJ #XiJinping\",\"2734\":\"Seems #America called the #China 's bluff n there wont be any #ChinaTaiwanCrisis at all. The USA did shoot the #Chinese Foreign Minister's plane back in the day. Why China wont shoot @SpeakerPelosi plane down now makes us all doubt its chutzpah https:\\/\\/t.co\\/NhDU1oDGXS\",\"2735\":\"Is waste stressing you out? https:\\/\\/t.co\\/aAm1s8lUcD\\n\\nWell, you don't have to go through this alone, let us help you manage your waste. \\n+27 12 753 3093\\n+27 81 728 8949\\n\\nTiger Woods Centurion Mall World War III #helicopter The US University #WWIII China Benoni Vusi US Air Force https:\\/\\/t.co\\/4iMHRu1d8D\",\"2736\":\"If you're a chiller you will know that @dineoranaka wanted @MacGUnleashed to remove @Solphendukaa from the @podcastwithmacg way back so do you think she likes him anyhow?#Pelosi sol phenduka china Taiwan\",\"2737\":\"America is annoying guys. Extremely annoying #Pelosi #Taiwan https:\\/\\/t.co\\/MjMZg9MvlZ\",\"2738\":\"Accepting profits is easy.\\n\\nBut you cannot call yourself a trader unless you accept both profits and losses.\\n\\n\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\ud83d\\udcca\\nFor assistance don't hesitate to contact admin \\ud83d\\udc8c+2784 477 6133 Telegram\\n\\n#XiJinping \\nBheki Cele\\n#BB24 \\n#etvScandal \\nMamelodi Sundowns\\nPercy Tau https:\\/\\/t.co\\/AXEJlyAdII\",\"2739\":\"We are ready for summer \\n\\nWhatsApp +27764911138\\nhttps:\\/\\/t.co\\/YvsXe27SXK\\n\\n#Taiwan #Thembisa #helicopter #Pelosi #tuesdayvibe https:\\/\\/t.co\\/JmYMwBZuk8\",\"2740\":\"@PetersWonderboy They've been waiting for USA to activate this war. Any decision they take will be necessary and considered as retaliation. Isukile. #Taiwan #China https:\\/\\/t.co\\/pyRcdH2hkM\",\"2741\":\"#WWIII me waiting for china to react https:\\/\\/t.co\\/AKtRyjzCDU\",\"2742\":\"We are ready for summer \\n\\nWhatsApp +27764911138 to order \\nhttps:\\/\\/t.co\\/IFeERx16nI\\n\\n#localcontent #Taiwan #helicopter #JACKSONWANGxCartierTH #Pelosi #YEEZYDAY #tuesdayvibe https:\\/\\/t.co\\/XwTtvAncfE\",\"2743\":\"China \\ud83d\\ude0e ... Attack \\ud83e\\udd23\\n\\nUSA dying... \\ud83d\\ude24\\n\\nGood luck \\ud83d\\ude38\\n\\n#Taiwan\",\"2744\":\"They started by provoking #Russia and got #Ukraine destroyed, now they are busy provoking #China through #Pelosi visit to #Taiwan. These ones don't love peace.\\ud83e\\udd37\\u200d\\u2642\\ufe0f\",\"2745\":\"China announces military exercises around #Taiwan hours after Chinese fighter jets have taken off toward Taiwan. https:\\/\\/t.co\\/rCNlRayEuh\",\"2746\":\"China and the US will soon embark on a dick swinging contest over Taiwan and this idiot will come here with that annoying voice increasing rates, fuel will go up and everything else \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\n#ChinaTaiwanCrisis \\n#RussiaInvadedUkraine https:\\/\\/t.co\\/OobwhYmXCh\",\"2747\":\"This China Taiwan thing has me thinking somewhere Kim Jong-un is dieing. This is what he has been begging for such worldwide coverage\\n\\ud83e\\udd14\\ud83e\\udd14\\n\\n#Pelosi #Taiwan #\\u4e2d\\u56fd\",\"2748\":\"@Sentletse This one probably doesn't know what's going on... Paid or dragged out the house.\\n#Taiwan https:\\/\\/t.co\\/u1X6S8OCS9\",\"2749\":\"The U.S under Biden is still & just as bully as it's been under all its past war-mongers. #Taiwan #Pelosi\",\"2750\":\"@SpeakerPelosi This will end up in tears. China's objectives are fixed and China will pay any costs to achieve those objectives. #ChinaTaiwanCrisis https:\\/\\/t.co\\/cpQhxyS60y\",\"2751\":\"Honestly, I'm moved Washington hmmmm.... Who would have thought; in the midst of it all, Beijing apparently has its military engulfing the entire Taiwan #NancyPelosi #NancyPelositaiwan #ChinaTaiwanCrisis #China https:\\/\\/t.co\\/LxFPHyVYeR https:\\/\\/t.co\\/493WacWKBG\",\"2752\":\"\\u201cHOW IT IS\\u201d FEAT HARDKNOCK !! OUT NOW ON YOUTUBE \\ud83d\\udea8\\ud83d\\udea8\\ud83d\\udea8\\nhttps:\\/\\/t.co\\/eTvwwM8cJH\\n\\nMAKE SURE YOU CHECK IT OUT \\n\\n#China | World War III | Nota | Sol Phenduka | Percy Tau | Dineo | Lesedi | Centurion Mall | Thembisa | #tuesdayvibe | #Taiwan https:\\/\\/t.co\\/roEvq8iwc2\",\"2753\":\"So Nancy Palosi just daring China to do something\\n#Taiwan\",\"2754\":\"Just pray Pelosi isn\\u2019t drunk again \\ud83d\\ude4f #WWIII\",\"2755\":\"I am still waiting for @KhayaJames to analyze #Pelosi's visit to #Taiwan.\",\"2756\":\"@SpeakerPelosi China, \\nWhat\\u2019s your Move? \\n\\nIt\\u2019s about time small countries stand up against China \\ud83c\\udde8\\ud83c\\uddf3 and Russia \\ud83c\\uddf7\\ud83c\\uddfa even though many have failed Ukraine \\ud83c\\uddfa\\ud83c\\udde6 \\n\\nWell Done Nancy #Pelosi\",\"2757\":\"Let's begin it \\n\\n#WWIII\",\"2758\":\"#China x #Taiwan x #US \\nChina says if US play with fire they'll be burned https:\\/\\/t.co\\/5K0yUJdw18\",\"2759\":\"Taiwan means \\u201cRepublic of China\\u201d #Taiwan https:\\/\\/t.co\\/AqJKsLOsxh\",\"2760\":\"American aggression has to be stopped and if America wants war it must be on American soil not Taiwanese soil . Let the game begin \\n#Taiwan\",\"2761\":\"Nancy Pelosi became the highest-ranking American politician to visit Taiwan in 25 years, prompting China to announce missile tests and military drills encircling the island\\n#China #Taiwan #dontpayuk https:\\/\\/t.co\\/n0sReOf9zK\",\"2762\":\"So Pelosi landed in Taiwan after threats from China! Now China will have to do something otherwise they will look weak #pelosi #Taiwan #China\",\"2763\":\"I FEEL LIKE U.S IS DISRESPECTFUL\\n\\n#China #Taiwan #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #dontpayuk https:\\/\\/t.co\\/wfcKf4fzdC\",\"2764\":\"it's about to go down in the East, China ain't happy with U.S stunt. #Taiwan\",\"2765\":\"...after this \\\"historic\\\" flex of muscle by the geriatrics accompanied by #USAirForce does it mean #Cuba is now opened for #XiJinping https:\\/\\/t.co\\/56IvZquu0h\",\"2766\":\"Soon the Blue and yellow minions \\ud83d\\udc9b \\ud83d\\udc99 will be rocking the Taiwan flag on their profiles. Crazy bunch \\ud83e\\udd23\\ud83d\\ude2d #Pelosi #China #ChinaTaiwan\",\"2767\":\"Just yesterday UN General Secretary Antonio Guterres said the world is one misunderstanding away from a nuclear showdown. \\n\\n#Taiwan\",\"2768\":\"North Korea or Russia must go help the Hawaiians get their freedom from USA now! #Pelosi #China #ChinaTaiwan\",\"2769\":\"Kante that Professor without PhD studies hired Law firms for investigations.. \\ud83e\\udd14 Things we hear from #publicProtector Enquiry \\n#mkhwebaneimpeachment\\n#DaliMpofu #Taiwan\",\"2770\":\"#Pelosi #China #The Chinese https:\\/\\/t.co\\/O2MURMyCfd\",\"2771\":\"How is President Xi Jinping and China going to reapond?...\\ud83d\\ude46\\ud83c\\udfff\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udfff\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udfff\\u200d\\u2642\\ufe0f\\n#China #Pelosi #XiJinping\\n#taiwanwar https:\\/\\/t.co\\/Uhn4Xr4kcc\",\"2772\":\"This ChinaTaiwan situation is genuinely giving me anxiety rn. I think imma need to pop a pill\\ud83e\\udd1e\\ud83c\\udffeAbuti weh @YoungFrankTalk ke gopela link hleng via DM for outside news channels that we don\\u2019t have access to mo. NB!! Not cnn not bbc go very urgently please Sir \\ud83d\\ude4f\\ud83c\\udffe\\ud83d\\ude4f\\ud83c\\udffe\",\"2773\":\"Somizi almost moered Thembi Seete on national TV. Here's why https:\\/\\/t.co\\/RFBhpPxb1w\\n#CramDeckerChallenge\\n#Thembisa #pelosi #IStandWithSithelo Dineo Centurion Mall Sol Phenduka Katlego Maboe Ekhuruleni Welele Nguni Ntsiki #IdolSA #ThePopeOfPopCulture Nota #SkeemSaam https:\\/\\/t.co\\/Wlc7x6tM2p\",\"2774\":\"I believe #Pelosi called China's bluff on her visit to #Taiwan. It would have been very damaging if she called off her visit and would have set a precedent. #spar19.\",\"2775\":\"The West (USA) should stop provoking China #Taiwan\",\"2776\":\"What time is WW3 #WWIII starting? The world needs a reset!\",\"2777\":\"#Pelosi in #Taiwan?\\n\\n#China has to make it bold. Simple!\",\"2778\":\"China has closed the Taiwan strait for civilian aircraft #Pelosi #Taiwan #China\",\"2779\":\"Taiwan makes defense pledge. The self-governed island says it can handle threats. #Pelosi #Taiwan #China\",\"2780\":\"20 Warplanes are escorting #Pelosi plane, US fighter jets are also in these.\\n\\nUS air force authorized to open fire in case of any Chinese interference on plane carrying #NancyPelosi #WWIII\\n\\nWill China Act?? https:\\/\\/t.co\\/AFHM8HOQfo\",\"2781\":\"Shots fired @ChinaAmbSA \\n\\ud83d\\udc40\\ud83e\\udd14\\ud83d\\udc40\\ud83e\\udd14\\ud83d\\udc40\\ud83e\\udd14\\n\\n#Taiwan #ChinaTaiwan #Pelosi https:\\/\\/t.co\\/3bKCqgzLvc\",\"2782\":\"#spar19 has landed.\\nIt's going to be very interesting what happens going forward with US\\/China relations. Interesting days ahead for political scientists. #Pelosi\",\"2783\":\"I like #Pelosi balls. The woman has balls! @JoeBiden admin distanced itself from her visit via @SecBlinken but she still went ahead n visited #Taiwan. I sincerely hope #China was not bluffing and we see it bringing its renegade province to the heel! https:\\/\\/t.co\\/EscvsPxmiY\",\"2784\":\"China accuses US of provocation... #Taiwan #Pelosi #China\",\"2785\":\"#Breaking China's Su-35 fighter jets are crossing the Taiwan Straits.#Taiwan\",\"2786\":\"So Cyril Ramaphosa used #PhalaPhalaGateFarm\\nTactics to deal with #julyunrest so called instigators\\n@_AfricanSoil\\n@Ngizwe_Mchunu\\n\\nZama zama\\nMkhwebane\\n#Pelosi \\n#RamaphosaMustGo\",\"2787\":\"This #Taiwan vs #China vs #UnitedStates #Pelosi is stuff for legends, the champions league of geopolitics, finesse and bravery\",\"2788\":\"The state of the global geopolitics is getting volatile by the day. #Pelosi #USChina\",\"2789\":\"Bafoh 17\\/18 year jump to zakwe verse and made a beat for it. The guy went hard on this\\ud83d\\udca5\\ud83d\\udd25\\ud83d\\udd25\\nNgithembe uzoyipha indlebe @ZakweSA\\n\\nBeat cred :Ctee (triggar)\\n@ZakweSA @DuncanSkuva @BigZulu_ZN @casspernyovest @ZamohCofi\\n#zakweversechallange\\n#hippop \\n#rap \\n#stage2 \\n#Pelosi \\n#andile https:\\/\\/t.co\\/vDQRp0yqRL\",\"2790\":\"If @dougboneparth can just wait more than 2min before deleting a tweet so I cam post my reply...\\n\\nThat would be nice \\n\\n#fintwit #StockMarket #pelosi\",\"2791\":\"Floating Plasma Stands installed Contact us on 0785612127 for our catalogue #DjSBU #imvelo #IStandWithSithelo #Taiwan https:\\/\\/t.co\\/2gHeUoCHhy\",\"2792\":\"@DrMikey13 @GDarkconrad Or just traffic overload because everyone is curious if #pelosi is really going to #taiwan\",\"2793\":\"Go get em #Pelosi, go go go!\",\"2794\":\"Just in case this goes south \\n\\n#Pelosi #pelositaiwan #Taiwan #china #usa #fintwit #trading #podcast \\n\\n@ProSlackerverse https:\\/\\/t.co\\/N9ZqGf3VN7\",\"2795\":\"Xi Jinping misses his chance to dismiss Nancy Pelosi\\u2019s trip as feeble grandstanding https:\\/\\/t.co\\/EzhRocZzpB #China #Taiwan and #NancyPelosi\",\"2796\":\"She made the turn! Definitely heading for Taipei #Pelosi #Taiwan #China https:\\/\\/t.co\\/NAdqxigYof\",\"2797\":\"David Jones bag\\nR550\\n\\nNation wide delivery\\n#Taiwan #Pelosi #JacksonWang https:\\/\\/t.co\\/9BeySZNhIz\",\"2798\":\"Without Constant USA provocation and bullying the world would have been very peaceful #China #Taiwan #Pelosi\",\"2799\":\"If you know you know #Taiwan #JacksonWang #helicopter #SouthAfrican https:\\/\\/t.co\\/4dKijouIaE\",\"2800\":\"China and Russia must come together and give Hawaii its independence from USA\\n\\n#Taiwan\",\"2801\":\"After this #Pelosi will be sleeping daily in the comfort of her bed whilst #Taiwan burns, they never loved you\",\"2802\":\"#flightradar24 is down coz they wanna fool us that that the Old Rag #Pelosi is headed to #Taiwan whereas she is ain't.\\nEven Taiwan website is down.\\nShe was bluffing after all\",\"2803\":\"The humane & peaceful people of the world are once again subjected to the US-China conflict triggered by unnecessary US House Speaker Nancy #Pelosi\\u2018s visit to Taiwan; this is a pure provocation and warmongering!\",\"2804\":\"I believe usa are making the same mistake it did with Russia now with China. No one is scared of the USA any more. The big thing is it wont be long and USA Will have no more influence on anyone. #Russia #Taiwan #USA #ChinaTaiwanCrisis\",\"2805\":\"Nancy Pelosi to meet Taiwan\\u2019s president on Wednesday https:\\/\\/t.co\\/DJOCxyzztW the consequences of this are unclear but could be dire #Pelosi #Taiwan #China\",\"2806\":\"The capital of Taipei has more than 4,600 air - raid shelters that can accommodate 12-million people, more than four times its population.\\n\\n#Taiwan #ChinaTaiwanWar \\n@LivePretoria https:\\/\\/t.co\\/fAsforigNa\",\"2807\":\"China considers Taiwan its territory and has increased military activity in the air and seas around it. Taiwan vows to defend itself and has made strengthening its defences a priority, with regular military and civil defence drills.\\n#Taiwan \\n@LivePretoria https:\\/\\/t.co\\/K1PNNdGn6i\",\"2808\":\"Taiwan is preparing its air-raid shelters as rising tension with China and Russia's invasion of Ukraine raise new fears about the possibility of a Chinese attack on the democratic island.\\n#China #Taiwan\\n#News https:\\/\\/t.co\\/CxXd6UhkBz\",\"2809\":\"@TeamPelosi is using #Taiwan for the upcoming midterm elections. #China will get its revenge when the #Dems4USA loses both houses in November. \\ud83d\\ude44\\ud83d\\ude44\\ud83d\\ude44 https:\\/\\/t.co\\/qexAsGPl7Z\",\"2810\":\"This palne is about to start world \\ud83c\\udf0e war 3, if it goes to #Taiwan. https:\\/\\/t.co\\/UFe6dxtSUs\",\"2811\":\"Judge Maumela says he only consults Jesus as his physician\\u2026 Meaning Adv Teffo met Jesus in court\\u2026 If Jesus is back, is it the end of ANC?\\n\\nTaliban Osama Bin Laden #Taiwan #Pelosi Kelly Khumalo #RamaphosaMustGo https:\\/\\/t.co\\/HRv6z2Rr39\",\"2812\":\"Adv Thobane apologises to Judge Maumela for anything he might have done wrong\\u2026.. Will Adv Teffo ever apologise????\\n\\nMissionary #Basotho #RamaphosaMustGo Skhumba Biden an Obama Ntsiki #Pelosi https:\\/\\/t.co\\/uSy9eqVBoM\",\"2813\":\"Well Maid Canteen Services\\n\\nWhatsApp your order:\\n068 353 1561 (order WhatsApp)\\n079 808 3252 \\/ 011 786 0934 (office)\\n\\nSales@wellmaid.co.za\\n\\n#wellmaid \\n#team\\n#weservepassion \\n#food \\n#customerservice \\n#HOBIPALOOZA \\n#Taiwan https:\\/\\/t.co\\/goNfNSu1uR\",\"2814\":\"Chinese fighter jets fly close to Taiwan ahead of Nancy Pelosi\\u2019s visit https:\\/\\/t.co\\/JEhKZpNwyf this #Pelosi trip to #Taiwan is problematic\",\"2815\":\"Risk aversion surrounding #Pelosi\\u2019s visit to #Taiwan constrains for now, but the bias remains for #ZAR gains, and a break of 16.38 later this week is conceivable. #Markets\",\"2816\":\"So, Nancy Pelosi want to go to #Taiwan so that her husband inside trading allegations wont see a light of day. #Zelensky kept on provoking Russia so his corruption charges can dissappear, and now everyone has forgotten about his corruption.\",\"2817\":\"Taiwan \\ud83c\\uddf9\\ud83c\\uddfc will be the next Ukraine \\ud83c\\uddfa\\ud83c\\udde6 if America \\ud83c\\uddfa\\ud83c\\uddf8 persists with Nancy Pelosi miscalculated visit .\\n#NancyPelosi \\n#Taiwan\",\"2818\":\"Soft words soften the hearts that are harder than rocks,harsh words harden the hearts that are softer than silk.\\n#BambamSorry #Taiwan\",\"2819\":\"I should've slept earlier while I had a chance\\ud83d\\ude22\\ud83d\\ude22\\n#WEURO2022 \\n#Taiwan\",\"2820\":\"Politics are full of shxt.\\nOne day everyone is gonna drop this entire system for a better life on earth.\\n\\n#BRICS \\n#RamaphosaMustGo \\n#UkraineRussia \\n#WWIII\",\"2821\":\"Coffee Cupping #Coffee #Taiwan #BBNajia #CoffeeLover https:\\/\\/t.co\\/rmtR5q8WIC\",\"2822\":\"Welfare discourages hardwork. It takes away the resolve to survive. \\n\\nClassic fallacy.\\n#Taiwan #Kosovo \\n\\nWho is up for a debate?\\ud83d\\ude0a\",\"2823\":\"THE 1ST EPISODE OF NEWZSHXT IS OFFICIALLY OUT!\\ud83d\\udd25\\n\\nFULL VIDEO\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\nhttps:\\/\\/t.co\\/GFGVY8phpZ\\nPLEASE Retweet \\n\\n@Solphendukaa @MacGUnleashed @slikouron @SlikTalk_SA @ChrisExcel102 @iamtbotouch\\n#PodcastAndChill #LilWayne #Taiwan \\n#mihlali #AreYouTubedin Khwezi #IdolsSA Khune #Tembisa https:\\/\\/t.co\\/q3ImrGHJGZ\",\"2824\":\"#RICHESSE Easy does it. \\nHappy Monday it was. \\nStay safe\\n\\n#Taiwan https:\\/\\/t.co\\/Pt2UpQ0VwC\",\"2825\":\"My aim is to always be Different and to make a Difference. With your help I can be able to do that. Donate towards #goalalu for me to study with @alueducation Rwanda. Use quicket to make your donation #Taiwan #breastfeeding #Somizi https:\\/\\/t.co\\/eTHU88ALsz\",\"2826\":\"Tune today 5pm https:\\/\\/t.co\\/bGzZdoP17b\\n\\n #SouthAfricanGP #time #egv #essentialgoodvibes #soulfulmusic #HOBIPALOOZA #WEURO2022 #africa2022 #jhopeAtLollapalooza #Taiwan #Kosovo #Browns #ts #DeepLove #tellafriend https:\\/\\/t.co\\/rhQ2uMKB5X\",\"2827\":\"#VOWFMDriveMoments\\ud83d\\udcfb\\n\\nThese days it\\u2019s better to groove at home, cause too many random shootings \\ud83d\\udd2b happening at saloons. It\\u2019s not safe anymore!\\ud83d\\ude1e\\n\\n#VOWFMDriveWithZakesTwala \\n\\n#JusticeServedNetflix #Taiwan #Tembisa #PodcastAndChillWithMacG #mihlali #Mzansi #SouthAfrican https:\\/\\/t.co\\/08VXh3IRc9\",\"2828\":\"So if I understand the relationship between #China and #Taiwan correctly it is that Taiwan want to be like what #Orania in #SouthAfrica and China is saying no way! Why is #America then involved? \\ud83d\\ude44\\ud83d\\ude44\\ud83d\\ude44\",\"2829\":\"Based on a township story, we ensure that we give back to the community in any possible way.\\ud83c\\udf31\\ud83d\\udcab\\ud83d\\udd6f\\ufe0f\\n\\nOne day we want to inspire a kid who reused our bag for their books & say I'm also going after my dreams.\\ud83d\\udd0c\\n\\nhttps:\\/\\/t.co\\/WU4Vta4zLL \\ud83d\\udc9b\\ud83e\\udde1\\ud83d\\udc9a\\ud83d\\udda4\\n#Thembisa \\n#AlAhly\\n#ANCIN2024 \\n#Taiwan https:\\/\\/t.co\\/35QUXOLcbz\",\"2830\":\"Applying gloss \\ud83d\\uddbc painting \\n\\n#HOBIPALOOZA #Taiwan #Kosovo #BORNPINK #jhopeAtLollapalooza #breastfeeding #Serbia #BoycottLaalSinghChaddha #JACKBAM_KPOPMASTERZBKK #BambamSorry #SuzukiPakistan #LalSinghChaddha #TXTPALOOZA #JHOPE #BambamSorry #BBNaija7 #BoycottLaalSinghChaddha https:\\/\\/t.co\\/bzkTt1pzOI\",\"2831\":\"america wants to do to #Taiwan what it did to #Ukraine\\ufe0f hopefully the Taiwanese government will act in the best interest of the Taiwanese people and not do what that douchebag zelenskyy did to his own people.\",\"2832\":\"You will always receive lack of gratitude because you gave expecting something in return. \\\"The rain waters the fields of the good and the wicked\\\", that's why God is always in abundance, so you should be.2\\/2\\n#GratitudetoGOD #Kosovo #Taiwan #Serbia\",\"2833\":\"To love someone is to show them #love without expecting anything in return. You should never complain about a lack of #gratitude, that's why you don't receive love back. 1\\/2\\n\\n#GratitudetoGOD #Kosovo #Taiwan\\n#Serbia\",\"2834\":\"the conversation capital\\n#theconversationcapital #Taiwan #Tembisa #Tembisashutdown #MissUniverseThailand2022 https:\\/\\/t.co\\/FGkia7HxT1\",\"2835\":\"Are these people appearing in court because they're illegal immigrants or are they ALL appearing for the brutal rapes in Krugersdorp?\\n\\n#Tembisa #Tembisashutdown #Taiwan\",\"2836\":\"Hey guys,let's make cash some extra cash by participating in surveys. To sign up, please click on the link below and get your 40$ sign up bonus. https:\\/\\/t.co\\/NDclDpEGSS\\n#SummerSlam #BBNaija7 #MissUniverseThailand2022 #China #Taiwan\",\"2837\":\"@News24 What about those who are falsely accused?\\n#ANCPolicyConference #SummerSlam #Taiwan #earthquake #BBNaija7\",\"2838\":\"Easy Stars. (Official Audio)(Produced By Myself) \\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\n\\nhttps:\\/\\/t.co\\/SgWnuKRgVD \\n\\nvia @YouTube \\ud83d\\udd0a\\ud83c\\udfa7 \\n\\n#SummerSlam #Taiwan #BBNaija7 #CommunityShield #BBNaijaGuinnessSmooth #GarciaBenavidez #KiaraAdvani #earthquake #WelcomeTREASUREtoTHAILAND #jhopeAtLollapalooza https:\\/\\/t.co\\/FMpJmPhb5g\",\"2839\":\"@SpeakerPelosi Don't play with fire #Taiwan \\nThe end of the empire is nigh https:\\/\\/t.co\\/Ewd1idfKZJ\",\"2840\":\"We've never been closer, thanks to sleepy Joe and Nancy the alco. #WWIII https:\\/\\/t.co\\/hYMu1t5kcS\",\"2841\":\"Totem Network Africa explores the African culture ,traditions, values, totems, proverbs and sharing African business Ideas.\\n\\nhttps:\\/\\/t.co\\/uFcaSZKuhp\\n\\n#Beyonce #Caturday #SaturdayMorning #VeteransDeserveBetter #MegaMillions #SaturdayVibes #Elanga #Kelis #CUFFIT #Shakira #Taiwan https:\\/\\/t.co\\/FiMTVBbjgy\",\"2842\":\"America is a bully who always instigates for aggression. Mc Cain landed in Ukraine and war followed in Ukraine and now an American Nancy Pelosi will land in mainland Chinese Taiwan and guess what will follow ?. Yes your guess is right Taiwan will be the next Baghdad.\\n#Pelosi\",\"2843\":\"US doesn't have diplomatic relations with Taiwan but it is busy cultivating for another war on behalf of #NATO. US hates the meaning of Peace but favor to destroy. All nations should worry about Joe administration careless moves. #Taiwan #China https:\\/\\/t.co\\/crrUDJNatt\",\"2844\":\"Some historical facts and documents concerning the question of #Taiwan that certain people in the #US need to respect. https:\\/\\/t.co\\/MQmgXsTTVn\",\"2845\":\"I\\u2019m seeing two trends in headlines right now: Trying to charge Trump with anything before he runs and stories about Chinese army aggression. We\\u2019ll see why the media is pushing these narratives.\\n\\n#Jan6\\n#China\\n#Taiwan\",\"2846\":\"That Cap!\\ud83e\\udde2\\ud83d\\udcaf\\n\\nBrand new, High Aesthetic quality!\\ud83e\\udd20\\nOn Sale for R100\\n\\n\\ud83d\\ude9aR60 via Pep Paxi || R 120 via Aromax\\n \\nDM's Open For Enquiries\\nPLEASE VISIT MY TL FOR MORE \\ud83d\\udcaf\\ud83e\\udde2\\n#XiJinping Basotho #PhalaPhalaFarmGate Priddy Ugly #BBNaija #Adekunle #JusticeServed #Tshegofatsopule Naled https:\\/\\/t.co\\/f3nk93VtWj\",\"2847\":\"President Joe Biden and Chinese counterpart Xi Jinping held candid phone talks on Thursday, with Xi warning the US leader not to 'play with fire' on Taiwan, Chinese state media said.\\n'Those who play with fire will eventually get burned,' Xi warned.\\n#ChinaTaiwan \\n@LivePretoria https:\\/\\/t.co\\/op0RXnNbgg\",\"2848\":\"China\\u2019s Largest-Ever #Taiwan Military Drills Draw To A Close. #NewsUpdate \\n\\nhttps:\\/\\/t.co\\/J23E2xwI7w\",\"2849\":\"PowerUpNG: RT @Asabari_CC: @IBEDC_NG is not concerned about customer's plight in Saki. Businesses are being destroyed by incompetent ibedc. 20mins of supply today after more than 1week blackout. Very unfortunate. @NERCNG do something now.\\n@PowerUpNG\\n#Taiwan\\n#CommonwealthGame\\u2026\",\"2850\":\"#BoycottSnickers Another company caving to the #ChinaIsABully over Taiwan. Taiwan has its own democratically elected president and parliament, army, currency, passport. #TaiwanIsaCountry #Taiwan @globaltimesnews @ChinaConSydney @SkyNewsAust #CCPThugs @SNICKERS @SnickersAU https:\\/\\/t.co\\/vw2BMTOixp\",\"2851\":\"And #china got a perfect excuse to do military drills in Taiwan. #ChinaTaiwan #TaiwanStraitsCrisis #BidenRecession #ChinaTaiwanConflict #NancyPelosi\",\"2852\":\"It's either @POTUS and #xinping played the world or its #china but the truth is #china won massively against #taiwan and @POTUS . @POTUS revealed @SpeakerPelosi travel arrangements knowing she won't back down or cancel her plans to travel to taiwan\",\"2853\":\"MY SET DIARY: EPISODE 4 |The hustle continues| https:\\/\\/t.co\\/6R4h5j9Gi7 via @YouTube \\n#GazaUnderAttack #PreyMovie #Taiwan #BBNajiaS7 #nsfwtwt #Wars1stBDFanmeet\",\"2854\":\"Ou Yang Li-hsing, deputy head of Taiwan's defense ministry's research and development unit and head of Taiwan's missile program, was found dead in his hotel room in Pingtung, southern Taiwan.\\n\\n#Taiwan https:\\/\\/t.co\\/DiKgxF4oTL\",\"2855\":\"The Israeli Air Force is working on targets in Gaza using GBU-31 JDAM guided bombs.\\n\\n#Israel #Kasarani #nyayostadium #Gaza #BadDecisions #Taiwan #Ukraine #TREASURE #Trending #trend https:\\/\\/t.co\\/Fh3oav9sPe\",\"2856\":\"#TOP #SINGLE #BOOMPLAY \\ud83c\\uddf8\\ud83c\\uddf3\\ud83c\\udfb6- REGUINE TASS DE WALLY SECK #FEAT VIVIANE https:\\/\\/t.co\\/VbolXXwnGB \\n\\n#YouTube #kebetu #Senegal #Dakar #Charts #hits #Stream #Streaming #Streamer #Artist #Kosovo #Rap #Afro #Galsen #Taiwan #Serbia #binance #Music #Soul #Rnb #Beyonce #Alonso #Rap #hiphop\",\"2857\":\"Did you know you can raise funds for your incomplete project, health, and any other emergency online? Click the link for more https:\\/\\/t.co\\/ojVDaqT6Ck #Indiana #JUNGKOOK #nyayostadium #Nunez #LFC #andAUDITION #SitaRamam #FOREVER1 #WAFC #RHOBH #Taiwan #GoFundMe #help #TREASURE https:\\/\\/t.co\\/rPmfa5ojNK\",\"2858\":\"Taiwan: Chinese planes, ships carry out attack simulation exercise\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/iFl0xbm0Ow\\n\\nPlease follow us & retweet\\n#China #Drone #Foreign #Gist #news #Taiwan #US #bobojay #bobojaytv https:\\/\\/t.co\\/Jt6aduFcg8\",\"2859\":\"Taiwan accuses Beijing of simulating invasion as US-China relations nosedive\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/IortearyBW\\n\\nPlease follow us & retweet\\n#Beijing #China #Foreign #news #Taiwan #bobojay https:\\/\\/t.co\\/cpsTb251y5\",\"2860\":\"UN chief warns nuclear weapons are \\u2018loaded gun\\u2019 for humanity\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/cSMbwgBTbO\\n\\nPlease follow us & retweet\\n#AntonioGuterres #China #Foreign #news #Taiwan #UN #bobojay #bobojaytv\",\"2861\":\"I used to like China because of their industriousness and rich culture (and Kung Fu); but what is all this fuss about risking #WWIII over having to govern Taiwan? 1.4billion people not enough for you to govern?\\nAnd not giving good advice to Russia?\\nAlso, freedom of speech.\",\"2862\":\"No matter how small do your part \\ud83e\\udd17 #BadDecisions #FULLIV #UkrainianArmy #Taiwan https:\\/\\/t.co\\/7S8nXC3rt6\",\"2863\":\"Calls from USA Defense Ministry to Top Chinese Military officials being ignored \\u2013 Report https:\\/\\/t.co\\/SoAbONf1yX\\n#China #USA #Taiwan #Pelosi\",\"2864\":\"Still taking practice audios from this coaching tip!\\n#VocalcarCoach\\nKanye Northerners Shettima Jackie Aina #TheChi Channels TV Soro Soke #BBNaijaJohnnieWalker #BB24 #Cheating #PremierLeague #Taiwan Obasanjo #BryannOnly #PiConsensus #binance #Sandman #weekendvibes #USA #Ukraine https:\\/\\/t.co\\/RsGGLqKP4f\",\"2865\":\"The White House summoned Chinese ambassador Qin Gang on Thursday to condemn escalating actions against Taiwan and reiterate that the United States does not want a crisis in the region.\\n\\n#Taiwan\",\"2866\":\"Did you know you can raise funds for your incomplete project, health, and any other emergency online? Click the link for more https:\\/\\/t.co\\/ojVDaqT6Ck #Pelosi #PLLOriginalSin #helpinghand #donate #KarachiRains #BB24 #RHOBH #midjourney #TREASUREinManila #Trending #trend #Yankees https:\\/\\/t.co\\/lpzUJdfPzo\",\"2867\":\"\\ud83d\\udd25\\u2764\\ufe0f\\ud83e\\udd81 Out on all platforms globally.\\n\\n#Taiwan #PremierLeague #BBNaijaS7 #newsongalert #Naijaleaks #Afrobeats\\n#lovesongs #worldmusic #Trending\\n\\nhttps:\\/\\/t.co\\/XujdyI76mw via @amuse_io\",\"2868\":\"@AJEnglish Hypocrisy! They were busy condemning #PLA military exercise in the #Taiwan strait.\",\"2869\":\"Fine boy \\u2764\\u2764\\u2764\\u2764\\ud83d\\udc8b\\ud83d\\udc8b\\ud83d\\udc8b\\ud83d\\udc8b\\n@morrishills_ @kiaramoontv @davido @iamcardib \\n#KenyaDecides2022 #\\u30dd\\u30b1\\u30e2\\u30f3 #LALISA #FOREVER1_OUTNOW #China #BadDecisions #TheSandman #TaiwanStraitsCrisis #BadDecisionswithBTS #binance #FOREVER1 #WeLoveYouBamBam #BajrangPunia https:\\/\\/t.co\\/G0zzCuKFup\",\"2870\":\"#MarvinInu token is still very much on track to invade mars!\\nWhen you have $Marvin safely secured in your crypto wallet, you can be assured of #1000x profit very soon\\n\\nhttps:\\/\\/t.co\\/CrEIDE4VLU\\n#BNB\\u00a0 #BSC @Marvin_Inu #ETH #BTC #WeLoveYouBamBam #TaiwanStraitsCrisis #BajrangPunia https:\\/\\/t.co\\/RPgFeJQ0op\",\"2871\":\"Comment your opinion\\n#BadDecisions #TheSandman #TaiwanStraitsCrisis #BadDecisionswithBTS #binance #FOREVER1 #KenyaDecides2022 https:\\/\\/t.co\\/Cp9nEotCf4\",\"2872\":\"The greatest mistake Bola Ahmed make, making Nigerian to believe on Buhari #BadDecisions #TheSandman #TaiwanStraitsCrisis #binance #FOREVER1 #BadDecisionswithBTS kuda #wrestling\",\"2873\":\"Hellooooo, WE. ARE. HIRING! \\nAnd we are looking for YOU! Do you need some first working experience? Would you like to help us stopping child abuse? If the answer is YES, find out more on our Insta and FB page @NGOELITESTAR (Elite Star Foundation)\\n #TaiwanStraitsCrisis #Children https:\\/\\/t.co\\/541B1PcgCb\",\"2874\":\"Appeasement is a poor strategy, as history has shown, most recently in Ukraine. But intentional provocation is also dangerous. @SpeakerPelosi\\u2019s #Taiwan trip seems to be exactly that. She needs to take several seats and leave foreign policy to the experts.\\n\\nhttps:\\/\\/t.co\\/LFgTD6WFrg\",\"2875\":\"JS Tips: what's d best text-editor 4 JS\\n#Python #BigData #Analytics #AI #DataScience #IoT #Azure #RStats #DotNet #C #CPP #Java #CSharp #Flutter #SQL #PHP #BBNaijaS7 #JavaScript #ReactJS #Pelosi #MachineLearning #Serverless #DataScientist #Linux #Programming #Coding #100DaysofCode https:\\/\\/t.co\\/PTk5Jmo7kY\",\"2876\":\"What's that one tech biz you'd love to start?\\n#Python #BigData #Analytics #AI #DataScience #IoT #Azure #RStats #DotNet #C #CPP #Java #CSharp #Flutter #SQL #PHP #BBNaijaS7 #JavaScript #ReactJS #MachineLearning #Serverless #DataScientist #Linux #pelosi #game #Coding #100DaysofCode https:\\/\\/t.co\\/6PzTwoecxo\",\"2877\":\"#NEWS #NancyPelosi #Taiwan Pelosi praises Taiwan, says Asian trip wasn\\u2019t to change status quo https:\\/\\/t.co\\/K5tn3bZYek\",\"2878\":\"Question: The US, UN & some EU countries + all China allies supports 1 China & that Taiwan is part of China. So why the outcry if China holds military drills around China? Will the world react if US holds military drill around Hawai? A neutral question\\u270c\\ud83c\\udffc #TaiwanStraitsCrisis\",\"2879\":\"VOTE PETER OBI FOR PRESIDENT 2023.\\n\\n#BadDecisions #BadDecisionswithBTS #ChelseaFC #BibleSumett #ChinaTaiwanCrisis #Chinese #PeterObi4President2023 #Obidiots #OBIdientlyYUSful #OBIDIENTS #obikin https:\\/\\/t.co\\/89wMCfK63b\",\"2880\":\"Taiwan Ministry of Defense:\\nA number of Chinese Navy ships and fighters cross the dividing line in the Taiwan Strait.\\nOur army has issued warnings and deployed missile systems on the ground to monitor the situation.\\n#Taiwan\",\"2881\":\"Chinese Foreign Ministry:\\n\\n*We have decided to stop cooperation with the USA in the field of maritime safety.\\n\\n*We will cancel the dialogue between our military leaders and their American counterparts.\\n\\n*We will suspend the climate talks between Beijing and Washington.\\n#Taiwan\",\"2882\":\"JUST IN: World Champion and Record holder, Tobi Amusan (@Evaglobal01), has qualified for the final of the Women\\u2019s 100m Hurdles at the ongoing 2022 Commonwealth Games (@birminghamcg22) with an easy win, clocking 12.40s in the process.\\n\\nTucker David Hundeyin #TaiwanStraitsCrisis https:\\/\\/t.co\\/8Xqw6R7zay\",\"2883\":\"#China imposes sanctions on US speaker over visit to #Taiwan | TheCable https:\\/\\/t.co\\/mSmZKXqiuw https:\\/\\/t.co\\/k5tjgsoLCv\",\"2884\":\"China's response to Pelosi's visit to #Taiwan so far:\\n1. Trade sanctions on Taiwanese goods and certain export ban to Taiwan . \\n2. Unprecedented military drills around Taiwan with missiles flying over the Island. \\n3. Sanction on Speaker Pelosi and immediate family. \\n4.....\",\"2885\":\"Breaking: #China announces sanctions against U.S. Speaker #NancyPelosi and her immediate family following her controversial trip to #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 \\ud83c\\uddfa\\ud83c\\uddf8 \\ud83c\\uddf9\\ud83c\\uddfc https:\\/\\/t.co\\/iPJ7C81tQH\",\"2886\":\"The Taiwanese army has started the transfer of 155-mm howitzers M114 &amp;120-mm mortars closer to the areas of the exercises of the #PLA\\n\\nGround-based missile systems have also been deployed.\\n#Taiwan #China #ChinaTaiwanCrisis \\n\\nhttps:\\/\\/t.co\\/0x9UZXqgs4\",\"2887\":\"If there is war between #China and #Taiwan, who you think they will blame again? https:\\/\\/t.co\\/SMudtOtjrp\",\"2888\":\"First, the line of progress is never straight. For a period a movement may follow a straight line and then it encounters obstacles and the path bends. It is like curving around a mountain when you are approaching a city. \\n#Conzummate #marketing #Taiwan #Russia #Trump https:\\/\\/t.co\\/ux84VrdNeJ\",\"2889\":\"@USUN @USAmbUN @biannagolodryga @AmanpourCoPBS we the so called Russia's unprovoked war, was provoked like the #Pelosi's visit to Taiwan, by #NATO expansionism and justified by US-EU intention to hide behind #Ukraine to fight the growing power of Russia and China.. we know everything behind the scene\",\"2890\":\"The funny thing about nigerians is that they forget easily. \\n\\nCheck this video out! \\n,\\u274cNo vote Tinubu \\u274c No vote for ATIKU..they r the same.\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 https:\\/\\/t.co\\/MaKgKNoo2B\",\"2891\":\"Who's is interested to marry me.\\nYoruba sweet boy.\\nI'm in Lagos \\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 https:\\/\\/t.co\\/MBGIPebu1u\",\"2892\":\"IPHONE \\uf8ff CHARGING PACKAGE \\nEXCLUSIVE INCLUDES\\n\\n\\u2714\\ufe0fAirpods 3 \\uf8ff\\n\\u2714\\ufe0f Magnetic Power bank \\uf8ff\\n\\u2714\\ufe0f TYPE C Charger \\uf8ff\\n\\u2714\\ufe0f Transparent MAG Case \\uf8ff\\n\\u2714\\ufe0f Magnetic Charger \\uf8ff\\n \\nPRICE: N65,000\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 congratulations Arise tv https:\\/\\/t.co\\/aEzpnS8MzB\",\"2893\":\"my husband is cheating on me \\ud83d\\ude02\\ud83d\\ude02 #BulletTrainMovie #BadDecisionswithBTS #bennyXBTSXSnoopDogg #capitec #Taiwan #BattleForNo10 #\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50 #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #ZamaZamas #AONArsenal #China #Ask\\u0130cin #Explosion #LISA https:\\/\\/t.co\\/daV6xVvXdF\",\"2894\":\"This day is coming soon!!!\\n\\n#Taiwan #IPPIS #PiConsensus #iphone14 #BBNaija #Arewatwitter https:\\/\\/t.co\\/YAElbkZ8X3\",\"2895\":\"This is the most #OBIDIENT question. \\n\\n#davidhundeyin #Taiwan #Sabinus https:\\/\\/t.co\\/gBR7IocNaC\",\"2896\":\"Good Morning the people of this street.\\n\\n#IPPIS #PiConsensus #Taiwan #iphone14 #BBNaija #BadDecisions #cryptocurrency https:\\/\\/t.co\\/Ro62VgHGk2\",\"2897\":\"Let everything within me sing unto Adonai!\\n\\nPeace to the nations!\\nCall to worship!\\n\\nLet there be light!\\n\\nMake the world a better place! \\n\\n#BulletTrainMovie #WarnerBrosDiscovery #Taiwan #Ask\\u0130cin #AONArsenal #China #BadDecisions #\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35 #\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50 #BattleForNo10 https:\\/\\/t.co\\/0AcEwTwWsz\",\"2898\":\"Sales\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\nSolidly Built 5bedrooms duplex\\nLocation: Dawaki -Abuja.\\nPrice: NGN80m or nearest offer \\nFor enquiries and inspection pls call F.Fayankinnu&Co Estate Surveyors and Valuers on\\n08068854919\\n07066672143\\n#Taiwan | Oshiomole | David Hundeyin | Trenches | Burna https:\\/\\/t.co\\/rpnWM9UjaN\",\"2899\":\"Online sessions for the weekend\\nUK 1 &2 Sessions\\nDubai 1 &2 Sessions,\\nScotland 1 session,\\nAfrica Sessions online,\\nChoir Capacity Sessions 1 - 4, etc\\nHoliday Sessions for children continues today. #onstorm #Online\\n#Vocalcarecoach #ChoirCapacityCoach\\n#Taiwan #China #Birmingham2022 https:\\/\\/t.co\\/8APk6oYuGN\",\"2900\":\"Chris Brown can act, sing, write, paint, dance, a talented basketball player, designing, etc. solid guy \\ud83d\\udc4d\\ud83e\\udd1d\\n#Asuu #BulletTrainMovie #Taiwan\",\"2901\":\"Be good always. Know what is right and do what is good.\\n#BBNaija7 #Taiwan #HBOMax #capitec #nig https:\\/\\/t.co\\/kdtxBAi7ug\",\"2902\":\"Stake what you can lose\\n\\n5odd\\n\\nA3C3A35\\n\\nToday\\n\\nEdit | Play | Ignore | Retweet \\ud83d\\udd1e\\n\\n#trenches #EFCC #Rema #Taiwan #Fireboy #olamide\",\"2903\":\"Sheikh Zakzaky: \\\"America's constitution isn't suitable to our country (Nigeria).\\n\\n#Taiwan https:\\/\\/t.co\\/zltNrcYkjY\",\"2904\":\"Taiwan been surrounded by china shortly after U.S House Speaker Nancy Pelosi\\u2019s arrival in capital of Taiwan. Taipei. #Xi Jinping #World War III #WWIII #UkraineWar https:\\/\\/t.co\\/enFmEAy2gz\",\"2905\":\"@estressecurado HELLO EVERYONE! My name is Samuel , I will do campaign creation and viral organic marketing for your pets on Kickstarter, Indiegogo, and Gofundme using the best-recommended marketing means or strategy to get donations. \\n#Chelsea #China #Taiwan #BattleForNo10 #Amnesty\",\"2906\":\"@TherealUGman Follow us for balance updates on #NigeriaDecides2023 #BATSHET2023 #PeterObi4President2023 #Obidatti2023 #Taiwan #China https:\\/\\/t.co\\/NwtOsx7Z7p\",\"2907\":\"\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f Crystal Palace vs Arsenal\\n\\u23f020:00\\n#PremierLeague \\n\\nAs was the case last year, the 2022-23 Premier League season kicks off with a London derby, as\\u00a0Crystal Palace welcome Arsenal\\u00a0to Selhurst Park tonight.\\n\\n\\ud83d\\udcf6 Over 2 \\u27051.45\\n\\nBest Odds \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #Taiwan https:\\/\\/t.co\\/SK3JMA9FMG\",\"2908\":\"Thank you for your unending love and Support. Much love from here \\u2764\\ufe0f\\n\\n#brandorx #EverythingBranding #Taiwan Chi Chi #BBNaijaS7 https:\\/\\/t.co\\/0NAHWhR8MZ\",\"2909\":\"For Rent - Spacious Office Apace Available. \\n\\n\\ud83d\\udccdLocation - Area 11 Abuja. \\n\\nRent - N1,300,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Chelsea #Taiwan https:\\/\\/t.co\\/2ueIR9txeq\",\"2910\":\"#Taiwan One China https:\\/\\/t.co\\/iAL0HSO7tQ\",\"2911\":\"Osun Election: APC Moves To Tribunal To Challenge PDP Adeleke's Victory\\n\\n#fireboydml #Taiwan #WarnerBrosDiscovery #ASUU\\nRead more\\u300bhttps:\\/\\/t.co\\/GmJsQslGLp\",\"2912\":\"His Excellency Peter Obi And Senator Yusuf Datti Baba-Ahmed. Met with the British High Commissioner to Nigeria, @CatrionaLaing1 \\nWhen A Better Government Takes Over A Well Structured EFCC Will Be Built... If you Agree LIKE\\n #Taiwan https:\\/\\/t.co\\/BaA2cMeVdn\",\"2913\":\"Do you think the Ethereum Merge will attract institutional Adoption??\\n#ETH #Ethereum #CryptoNews #DeFi #Metaverse #Poshmark #BBNaija #Taiwan #nftart #NFT #BTC #institutions #AdoptATeacher https:\\/\\/t.co\\/ud1UpF6RVS\",\"2914\":\"#BBNaijaS7 #Taiwan #BigBrother #BigBrotherNaijaS7 #BBNajia #BBNaija it\\u2019s getting lit pool party https:\\/\\/t.co\\/npACZaYBZJ\",\"2915\":\"\\ud83d\\ude02\\ud83d\\ude02\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 \\nNo be only me go see this thing o!\\nThis man thinks we're in 1910, always talking about food.\\n\\nThe 3 | EFCC Fabio David Hundeyin Here we go Garnacho Premier league Niger #Taiwan Campaign DG Leicester https:\\/\\/t.co\\/sGrgwMYnR0\",\"2916\":\"Risk nothing , Gain Nothing !!! \\n\\n#BulletTrainMovie #Taiwan #AllOrNothingArsenal\",\"2917\":\"https:\\/\\/t.co\\/Se7h95ajvo\\n\\n27 YEARS STRONK! #birthday #streaming w\\/ mah homies!\\n\\n#smallstreamers #Taiwan #BulletTrainMovie #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #twitch #twitchstreamer\",\"2918\":\"May Almighty God Bless Our hustling\\n #Taiwan #Bullish #iphone14 #PiConsensus #BBNaija https:\\/\\/t.co\\/J5gc59nY80\",\"2919\":\"Just a freestyle #Taiwan #BBNaijaS7 #BadDecisionsTODAY #BadDecisionsTODAY https:\\/\\/t.co\\/pHWTp7I5mJ\",\"2920\":\"For the first time ever, PLA missiles have flown directly over Taiwan. \\n\\nThey hit targets in waters east of the island.\\n\\nThe next two days of military exercises will see many more such firsts.\\n\\n#Taiwan \\/ One China\\/ Dino melaye\\/ Iphone 14 https:\\/\\/t.co\\/cbSE372zmL\",\"2921\":\"Bucket prank by me the trouble maker \\ud83d\\ude02\\ud83d\\udc94\\n#prank #trender_sam #explore #ManUnited #China #Taiwan #capitec #Birmingham2022 #trendingvideos https:\\/\\/t.co\\/XmsWKco1NS\",\"2922\":\"Is your choir a choir of songwriters or a choir of 'copyright' singers\\/musicians or a choir of non songwriters&non copyright singers\\/musicians?\\nThe answer to this is key to choral performances&effectiveness musically&Vocally.\\n#Taiwan #capitec #China #onstorm #AllOrNothingArsenal https:\\/\\/t.co\\/Na4Yekzzmu\",\"2923\":\"Once @FabrizioRomano confirmed your relationship to be real with HERE WE GO. Just go and get ready for marriage. I fear that man.\\nASUU #Taiwan\",\"2924\":\"@httpxellise Did you know you can raise funds for any of your challenges online? I'll teach you EVERYTHING you need to know through this link https:\\/\\/t.co\\/ojVDaqT6Ck #crowdfundingcampaign #Kickstarter #GoFundMe #support #Taiwan #TejRan #TREASUREinManila #ExtraordinaryAttorneyWoo #YEONJUN https:\\/\\/t.co\\/7rnj6pp7NE\",\"2925\":\"Started Coaching Peculiar Voices last year in Choir Capacity Sessions. We recently had an awesome experience at their concert. \\nKudos friends!\\n#BulletTrainMovie #Taiwan #capitec #onstorm #recession #news #PokemonPresents #ChelseaFC #Birmingham2022 #music #Musica #vocalcarecoach https:\\/\\/t.co\\/48lu9wGaF4\",\"2926\":\"\\u201cI never reach 5 star \\u2b50\\ufe0f yet, i go manage 333\\u201d \\ud83e\\udd13\\u2764\\ufe0f\\u200d\\ud83d\\udd25\\n\\ud83d\\udc49\\ud83c\\udffbSo guys here\\u2019s #my5starstory \\ud83d\\ude0e, more like a 3starstory tho haha \\ud83d\\ude05. Please help RT and tag @adekunleGOLD till he sees this \\ud83e\\udd32\\ud83c\\udffb\\ud83e\\udd7a\\n.\\n#capitec #Taiwan #BulletTrainMovie #onstorm #music #BB24 #BBNaijaS7 #BulletTrain https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"2927\":\"OMG \\ud83d\\ude02\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02\\nThis is so funny @morrishills_ \\n\\n#\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ichmachenichtmehrmit #BulletTrainMovie #\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059 #Taiwan #capitec #Sismo #\\u0633\\u0643\\u0631\\u0628\\u062a78 #\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a #\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a #\\u0643\\u0644\\u0646\\u0627_\\u0627\\u0644\\u0634\\u064a\\u062e_\\u0628\\u0646_\\u062d\\u0645\\u064a\\u062f #\\u0633\\u0643\\u0631\\u0628\\u062a77 https:\\/\\/t.co\\/eggArJK1mA\",\"2928\":\"Different shades of colour of crocs!!!\\n#BulletTrainMovie #Taiwan ,#capitec #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #trends \\n15000 only.\\nhttps:\\/\\/t.co\\/8EIbvwItzv\\nkindly Rt\\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f https:\\/\\/t.co\\/9CheKrqxvu\",\"2929\":\"Street protests took place in Lebanon on the anniversary of the August 4, 2020 bombing at Beirut's seaport. Participants demanded that those responsible for the tragedy be brought to justice.\\n#Lebanon #Taiwan #crime #WHO #recession #BulletTrainMovie #TrendingNow #Trending #viral https:\\/\\/t.co\\/XLJzMjNhun\",\"2930\":\"Nigerian Doughnuts Filled With Jam, Recipe, Method, History, Types || David Hundeyin #Taiwan #MohaleOTR https:\\/\\/t.co\\/Rvk8u5qP58\",\"2931\":\"Join us as we start to analyze top 5 Europe teams\\nhttps:\\/\\/t.co\\/pwBvCavfgl\\n#BBNaija #BulletTrainMovie #Taiwan #Wizkid ASUU\",\"2932\":\"Azerbaijan's embassy in London was attacked by religious radicals.\\n\\nThe diplomats were not injured in the incident, the Azerbaijani Foreign Ministry said. \\n\\nThe perpetrators were detained.\\n#Azerbaijan #london #Diplomacy #BulletTrainMovie #Taiwan #PokemonPresents #Trending #viral https:\\/\\/t.co\\/A84bZqVB2K\",\"2933\":\"PHOTOS: Pantami Meets Reps Of Facebook, Google, Others\\n\\nThe Minister of Communications and Digital Economy, Professor Isa Pantami has held a meeting with the representatives of Social Media giants such as Facebook (Meta), Twitter, TikTok & Google.\\n\\n#Pantami #Taiwan #NigerRepublic https:\\/\\/t.co\\/6pDOTY9uKU\",\"2934\":\"MUST SEE: AERIAL VIEWS OF THE NEWLY COMPLETED UGBOR-AMAGBA ROAD CONSTRUCTED BY GOVERNOR GODWIN OBASEKI...\\n\\nPic Credits: EICO MEDIA \\n#Taiwan \\n#pere\\n#RahmanJago\\n#eico https:\\/\\/t.co\\/6P0zhqhVwx\",\"2935\":\"This picture already told us the winner of #BBNaija this year \\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan https:\\/\\/t.co\\/RMj7g6MMC1\",\"2936\":\"Do it like this don turn to position like this......#Wizkid #Deborah #iphone14 #RahmanJago #Taiwan https:\\/\\/t.co\\/vEn321p0T2\",\"2937\":\"#BBNaija this year without Bryann would be so boring \\nWho agrees!! Drop an Emoji if you agree \\u2764\\ufe0f\\u200d\\ud83d\\udd25\\ud83d\\udcaf\\n\\nPere Rahman Jago #Taiwan #VIBRYANNTS https:\\/\\/t.co\\/EfUaut9kOK\",\"2938\":\"Make una de try get conscience. Dz M\\u00f8\\u00f1ey go com, bt no be to rush am #Repost #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #PokemonScarletViolet #kagiso @davido @SpyroTheDragon #Billing https:\\/\\/t.co\\/kzmzAnO5vv\",\"2939\":\"This picture already told us the winner of #BBNaija this year \\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan https:\\/\\/t.co\\/cmaB04hQQc\",\"2940\":\"Drop any emoji if you\\u2019re on team #VIBRYANNTS \\n\\u2764\\ufe0f\\u200d\\ud83d\\udd25\\u2764\\ufe0f\\n\\n#BulletTrainMovie #BBNaija #Taiwan https:\\/\\/t.co\\/UPSQQiIjql\",\"2941\":\"Nothing mirrors life like trading. Combat sport is second. \\n\\n#forex #Taiwan #onstorm\",\"2942\":\"Fabrizio: Here we Go\\n Brighton: wey una dey go\\n\\n#Taiwan #thursdayvibes #BulletTrainMovie #capitec #timesupolivia #BibleSumett #PokemonScarletViolet https:\\/\\/t.co\\/ifvkYa4wvx\",\"2943\":\"Three Malian ex-ministers named in international arrest warrants for alleged fraud have denied any guilt and say they are willing to clear their names.\\n#Taiwan #inflation https:\\/\\/t.co\\/DGoLBK68RJ\",\"2944\":\"I know am handsome. \\n.\\n.\\n#BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"2945\":\"Who remembers this match? #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #onstorm #PokemonScarletViolet #BBNaija #sabinus #kagiso #MilePhakphum #thursdayvibes #Grunewald #fyp #Trending #sports https:\\/\\/t.co\\/1UsANAgJJV\",\"2946\":\"In the spirit of collaborating with relevant stakeholders across the agricultural value chain to promote sustainable & profitable agribusiness across Africa, Nicert Expert Consulting Limited meets with Hectare by Hectare. \\n#Taiwan #capitec #NECL https:\\/\\/t.co\\/ii0ZYtyYog\",\"2947\":\"mother killed her son because of money what a world \\ud83d\\ude02\\ud83d\\ude02 #Taiwan #capitec #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #timesupolivia #BibleSumett #PokemonScarletViolet #onstorm #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #PokemonPresents #kagiso #MilePhakphum #JKLive #BibleBuild #TASYAXTRAFARASYA #thursdayvibes https:\\/\\/t.co\\/q3EnTanOHT\",\"2948\":\"If you can eat 2 times in a day in the present day Nigeria, you are rich\\ud83d\\ude2b. Hunger is another unrest #Taiwan #capitec #thursdayvibes\",\"2949\":\"Remember this Advert?\\ud83e\\udd70\\ud83d\\ude05 #omojesucfr #followme #Taiwan #capitec #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #timesupolivia #BibleSumett #PokemonScarletViolet #onstorm #PokemonPresents #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #kagiso #MilePhakphum #JKLive #BibleBuild #thursdayvibes #TASYAXTRAFARASYA https:\\/\\/t.co\\/0VeX3MpLGa\",\"2950\":\"The United Arab Emirates expresses support for China's sovereignty and says that the \\\"One China\\\" principle must be respected.\\n#Taiwan\",\"2951\":\"Nobody : \\ud83e\\udd14\\ud83e\\udd14\\ud83d\\ude25\\n\\nATMs in Nigeria: \\n\\\" No slip, Wake up, collect your money\\\"\\n@memetopiaz @iFunnymemeIG\\n@introvertsmemes\\n@memes\\n@memesbychroath \\n#Memes #memesdaily #BUGA #Twitter #Taiwan #timesupolivia #PokemonScarletViolet #onstorm #PokemonPresents #memetopiaz\",\"2952\":\"Update on the Taiwan-China Crisis https:\\/\\/t.co\\/2NvI1GWAPI\\n\\n#Taiwan #ChinaTaiwanCrisis #news https:\\/\\/t.co\\/W1gUdkdJgc\",\"2953\":\"One man Army. \\n13 Vs 1. \\n#BreakingNews #Taiwan #AsifGhafoor #HelicopterCrash #AhadRazaMir https:\\/\\/t.co\\/s1bj2Id58o\",\"2954\":\"Ini Umoren\\u2019s Killer Attempts To Escape After Sentencing\\nUduak Akpan, the convicted killer of Akwa Ibom jobseeker, Iniobong Umoren, attempted to escape after he was sentenced to death at the Akwa Ibom State High Court on Thursday. 1\\/2\\n#Taiwan #Sheggz #ASUU #arisetv #buhari #wizkid https:\\/\\/t.co\\/2T16mzm66j\",\"2955\":\"8 30 Tonight, we be live on Twitter Space on \\\"Football Analysis on Top 5 Europe teams, where football Analysts expert gonna be available to analyze details about each teams. Don't miss it \\n#Taiwan #capitec #CommonwealthGames2022 ASUU #iphone14 #Wizkid #Cucurella De Jong #BBNaija https:\\/\\/t.co\\/ttOTCeFsTr\",\"2956\":\"Asian Markets Risen Despite Optimism On Economic Data, Earnings\\n\\n#Taiwan #ASUUstrike #ASUU #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\\nRead more\\u300bhttps:\\/\\/t.co\\/4dhL4QTvks\",\"2957\":\"Organ Harvesting: Again, UK Court Remands Ekweremadu In Prison Till October 31\\n\\n#Taiwan #timesupolivia\\nRead more\\u300bhttps:\\/\\/t.co\\/OsWwjgB9jA\",\"2958\":\"Nigerian groom was lost in thought as his bride showed off her dance skill at their wedding reception.\\nFollow @GistHubNaija\\n\\n#iphone11\\n#Taiwan \\n#AllOrNothingArsenal \\n#AamirKhan \\n#MONEY \\n#sabinus \\n#SheggzOlu \\n#onstorm https:\\/\\/t.co\\/Qjge4pwSaL\",\"2959\":\"Nigeria Super Eagles To Face Cristiano Ronaldo In Friendly Match\\n\\n#Taiwan #Simp #superettan #SuperEagles #AllOrNothingArsenal #CristianoRonaldo #iPhone13\\nRead more\\u300bhttps:\\/\\/t.co\\/P0plKFZF5o\",\"2960\":\"I can't stop laughing \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\n#Taiwan #piconsensus2022 IPOB iphone14 https:\\/\\/t.co\\/LcDAYcTaY0\",\"2961\":\"Success doesn't just find you. You have to go out and get it. \\n\\n#Taiwan #LovelyINU #iphone14 #iphone6 #piConsen #Slimp #Bone #JustinBieber #Taiwan #MONEY #Airtel #London #NeverAgain #SquidGame\",\"2962\":\"The View From Taiwan: 'We've Had This For 70 Years\\n\\n#Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ChinaTaiwanCrisis #ChinaTaiwan #iPhone #AllOrNothingArsenal\\nRead more \\u300bhttps:\\/\\/t.co\\/fwteHWjrmq\",\"2963\":\"BREAKING: Court Sentences Uduak Akpan To Death For Murder Of UNIUYO Graduate\\n\\n#Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ASUUstrike #Simp #iPhone13 #IPPIS\\nRead more\\u300bhttps:\\/\\/t.co\\/WGP9is3TsK\",\"2964\":\"But guess what? \\nThey go jam Festus Keyamo for traffic and dey go hear am from that Warri boy woto woto!\\nA single Keyamo is a million times brilliant than a quest!ionable certificate Dino and a confused Bwala!\\n\\nLet's go there! #Taiwan #timesupolivia #TEAMWANGdesignTHAILAND\",\"2965\":\"Do not watch news. It can give me heart attack #ChinaTaiwan #UkraineRussiaWar\",\"2966\":\"Congratulations my girl All the way from Botswana \\ud83c\\udde7\\ud83c\\uddfc, I worked for her 4 days ago. She is forever Rich. #PokemonPresents #Pelosi https:\\/\\/t.co\\/LonB0rDlm4\",\"2967\":\"Breaking: China Fires Missiles near Taiwan in Drills after Pelosi Visit #NancyPelosiTaiwanVisit #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/BQhNvR2qE4\",\"2968\":\"BREAKING: Japan defense chief says five missiles launches by China during military drills near Taiwan fell into Japan\\u2019s exclusive economic zone.\\n#Peace #Taiwan #China #war https:\\/\\/t.co\\/geJezowyMb\",\"2969\":\"Who Noticed That Diana Has Been So Quiet And Lonely And Moody Not just reminiscing and soliloquizing on her own alone #Taiwan #BBNaija #BBNajia #BBNaijaS7 #BBNaijaLevelUp #BBNaijaQuidax\",\"2970\":\"My manger said I should post more videos of me Djing, so here we go #SheggzOlu #Taiwan bbnaija https:\\/\\/t.co\\/wyrlRD1y4C\",\"2971\":\"Behind the scenes making the Electrified Amapiano Dance Video #mobilevideography #musicvideo #music #Taiwan #LoveIslandUSA #blackpanther #zeeteroliver #Amapiano https:\\/\\/t.co\\/1bcXMsNLWA\",\"2972\":\"We are all blessed with tremendous potential, the only thing holding you back is SELF DOUBT. \\n\\n#Motivation #Taiwan\",\"2973\":\"@Qdpaper2 Come see @adams_oshiomole looking for his relevance in the Pit Latrine. Chai what will politicians not do\\/say for Money and relevance? #davidhundeyin #Mompha #Obidatti023 #Taiwan\",\"2974\":\"This me but not my music #Taiwan #LoveIslandUSA #AllOrNothingArsenal #AllOrNothingArsenal #AllOrNothingArsenal #timesupolivia #PokemonPresents #onstorm #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #kagiso #kpss2022iptaledilsin https:\\/\\/t.co\\/OwCNmTJy2S\",\"2975\":\"Here is my invitation code for Alpha Network. Use the invitation code: yinqah. Download the app at https:\\/\\/t.co\\/8sgE1PQYKE and get 1 Alpha Coin for free!\\n\\n#Taiwan #PiConsensus #PiNetworkUpdates\",\"2976\":\"The Taiwanese army began moving 155 mm M114 howitzers and 120 mm mortars closer to PLA training areas.\\n\\n#Taiwan #TaiwanIsaCountry #ChinaTaiwanCrisis #LoveIslandUSA #AllOrNothingArsenal #timesupolivia #Trending #trekkerterroristen https:\\/\\/t.co\\/1k4n29zj8M\",\"2977\":\"Goke failed his exam and then killed himself in Kwara\\n#Taiwan #Gombe \\nhttps:\\/\\/t.co\\/VSqloXTTN7\",\"2978\":\"Today at kenyatta market Enugu. It is well\\ud83d\\ude13\\nThe government is demolishing the electrical market.\\n\\n#Eloswag Gombe datti #davidhundeyin \\n#Taiwan \\n#Obidatti023 https:\\/\\/t.co\\/U63Lw3koX1\",\"2979\":\"HURRAAYYY!!!!! Master Tea Hibiscus won the 2022 Great Taste Award in the UK!\\ud83d\\udc83\\ud83c\\udffb\\ud83d\\udc83\\ud83c\\udffb\\n\\nNicert Expert Consulting Limited (NECL) trained them on Food Safety Standards.\\n\\nWhereas Nicert Limited certified them for HACCP and ISO 22000.\\nThink HEALTH! Think MASTER TEA!!\\n#Taiwan #sabinus https:\\/\\/t.co\\/Brr9ZnDADz\",\"2980\":\"Save more on @gobarta_ . Download the Gobarta app today!\\n\\n#gobarta #barter #trading #tradebybarter #BBNajiaS7 #Taiwan https:\\/\\/t.co\\/C2HwqBfqlE\",\"2981\":\"Enjoy Life while you still have a heartbeat. We don't know the day or the hour it will end. Take that step. Come on. You can do it. Good job. #abeggod #AllOrNothingArsenal #Archie #Taiwan #PokemonPresents #erica #BBNaija7 https:\\/\\/t.co\\/gliY1QIjih\",\"2982\":\"@minorta China is just been merciful to you,since you don\\u2019t know the meaning of independence,who gave you independence. You still have mouth to come here and talk \\nIf I was china\\u2019s president #Taiwan would be a think if the past\",\"2983\":\"Can you give us an oculus device to shop? \\ud83c\\udf1a\\ud83c\\udf1a\\n\\n#spacemallio #spacemallshopping #spacemallapp #iphone11 #Iphone14ProMax #BeautyTukura #Taiwan #Entrepreneur #BusinessOwners #SMESupportHour #SMEs https:\\/\\/t.co\\/WOacyTORbz\",\"2984\":\"Another set ready to ship. \\nStoree doesn't let you pay from or ship to Nigeria? \\nNo worries, just send us a DM. We got you covered \\n\\n#Taiwan #timesupolivia #CommonwealthGames2022 #Nigeria #shopping https:\\/\\/t.co\\/k24n6sdcoO\",\"2985\":\"Designer Changing a last minute design during Presentation...\\n\\n@Nabhel_ @pixelyut @Big_Heeazy\\n#designers #Taiwan #CommonwealthGames2022 #timesupolivia https:\\/\\/t.co\\/UWW30ahzr7\",\"2986\":\"You need a platform for,\\nDeriv Funding and Withdrawal ?\\n\\nLog on to our website at https:\\/\\/t.co\\/VJMnsXbNYd we offer the best affordable rate.\\n\\n#wizkid #festac #iPhone13 #Taiwan #invest #capitec #teni #explore #BBNajiaS7 #BBNaija https:\\/\\/t.co\\/vJ5ijjcRis\",\"2987\":\"Check out my new single \\\"Jaiye\\\" distributed by @DistroKid and live on Apple Music!\\n#Taiwan #AppleMusic #AppleEvent\\n#AppleMusicRT #portapottydubai \\n#portharcourt #lagos #AbujaTwitterCommunity #Kano\\n#timesupolivia #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #CommonwealthGames2022 #AFROBEAT\\n\\nhttps:\\/\\/t.co\\/SEd4udv6bm\",\"2988\":\"Need a home ? Talk to us today.\\n\\n#zigproperties ASUU CHINA iPhone 14 Real Estate Investment Abuja Nasarawa NIGERIA #sabinus #Taiwan #CommonwealthGames2022 https:\\/\\/t.co\\/ZFgC36Ucpe\",\"2989\":\"As expected: - The Chinese just added another area around Taiwan , the seventh in number, where their exercise will be held - and extended it until Monday.\\n#Taiwan\",\"2990\":\"Taiwan's Ministry of Defense announced that some of its air defense systems were activated in response to China's launch of ballistic missiles towards the Taiwan Strait.\\n#Taiwan\",\"2991\":\"Reports says that some of these multiple guided missile systems, launched from their PCL191 launcher, from the Xiamen Island, Fujian, China have entered the airspace of Taiwan, before hitting the ocean on the other side of the country. #Taiwan https:\\/\\/t.co\\/GeyHHH3sFh\",\"2992\":\"China fires missiles towards the straits of Taiwan for the first time since 1995. This is part of their exercise.\\n#Taiwan\",\"2993\":\"Meanwhile, Edo South APC Senatorial Candidate Collected His Wotowoto on Tuesday at #SapeleRoadMatters, #FixSapeleRoad Protest.\\n\\n@FMWHNIG @tundefashola @MBuhari @channelstv @MobilePunch @thecableng \\n\\n#Taiwan #PokemonPresents #onstorm #timesupolivia #GizliSakli #Niger #PDP #ASUU https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"2994\":\"What a true love \\n#Taiwan #PokemonPresents #onstorm #PokemonScarletViolet #timesupolivia #CommonwealthGames2022 https:\\/\\/t.co\\/FkCxF40SeP\",\"2995\":\"Strategic location\\n\\nSerene business environment \\n\\nWide Client Reach \\n\\nAdequate security\\n\\n24\\/7 Power Supply etc.\\n\\nDon't sleep on this \\n\\nBENIN CITY MALL is NOW LEASING\\n\\nOpens January 2023\\n\\nFor more, see details on flyer\\n#benincitymall \\n#iPhone14\\n#Taiwan\\n#Oshiomole\\n\\ud83d\\udd25 \\ud83d\\udd25 \\ud83d\\udd25 https:\\/\\/t.co\\/WeK9AczT9n\",\"2996\":\"It is not about you providing SERVICE, it is about you providing QUALITY SERVICE.\\n\\nGood Morning \\n\\n#sabinus #Taiwan #badagry #socialmediamarketing #socialmedia #dabrandcity #socialbrandcity #ThrowbackThursday\",\"2997\":\"Retweet For me please my helper fit Dey your timeline I never work in a while #CannabisCommunity #party #HypeBeast #Taiwan https:\\/\\/t.co\\/E8Qdn5xljL\",\"2998\":\"My drawing of @BarackObama \\ud83e\\udd29\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#sabinus #Taiwan @yabaleftonline @legitngnews Iphone 14 ASUU Bella Shmurda @BarackObama @BBCBreaking @channelstv https:\\/\\/t.co\\/zsZ4X2xvtX\",\"2999\":\"@IBEDC_NG is not concerned about customer's plight in Saki. Businesses are being destroyed by incompetent ibedc. 20mins of supply today after more than 1week blackout. Very unfortunate. @NERCNG do something now.\\n@PowerUpNG\\n#Taiwan\\n#CommonwealthGames2022 #thursdayvibes #GoldMedal\",\"3000\":\"Chinese social media is awash with similar videos & posts calling for violence against Taiwan and this man was even upset that the Chinese government allowed #NancyPelosi plane to land in #Taiwan instead of shooting it down. \\ud83d\\ude1e\\nIf #WW3 happens, that would be the end of humanity https:\\/\\/t.co\\/zduT6xE89u\",\"3001\":\"Repression against women is weaved around the social norms that over the years have pushed even modern-day women to agree with the systemic and structural attack on women. \\n#china #Finland #Taiwan #PokemonPresents #onstorm #Tinubu #SDGs #OBIDIENTS #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #onstorm https:\\/\\/t.co\\/I3KElydxVd\",\"3002\":\"Order your bitter kola today we deliver nationwide. 6k per kilo Call or Chat 08138432456. #bellashmurda #Finance #Wizkid #Taiwan #BBNaija #davido #iphone14 https:\\/\\/t.co\\/2LLXk50s2F\",\"3003\":\"Taiwan should wise up and not let their country be thrown into crisis... Ukraine should be a lesson to all concerned. America only cares about America, everything else is a charade. \\n#ChinaTaiwanCrisis\",\"3004\":\"We need to change the current change\\ud83e\\udd14\\n#Taiwan #OBIdientlyYUSful\",\"3005\":\"Apple you no go allow our gyals puna rest?..\\niPhone 14 #Wizkid 1.4B #Taiwan #PokemonScarletViolet #YEEZYDAY #Nigeria https:\\/\\/t.co\\/AzpwIvRGzg\",\"3006\":\"Feel free to fall in love over again with our impeccable service, our environment and everything about @SupremeContine1\\n\\nThis should be your next stop for comfortability and luxury\\ud83d\\ude09\\n\\n #bbnaija #Taiwan https:\\/\\/t.co\\/GkUDEs2ebr\",\"3007\":\"\\\"What Sector of Your Country's Economy Do You Think Blockchain Technology Can Impact and Improve Greatly?\\\"\\n\\n#Binance #BNB #onstorm #CommonwealthGames2022 #Finance #Coinbase #CryptocurrencyNews #Taiwan #r4today #YEEZYDAY #blockchaintechnology #BlockchainCentral #BBNaija https:\\/\\/t.co\\/VjXGAOwrhN\",\"3008\":\"Who will rescue Nigeria? #Taiwan #CommonwealthGames2022 #ASUU #BBNajia #AsiaCup2022 #Ukraine https:\\/\\/t.co\\/MICtAAyTx6\",\"3009\":\"China begins live-fire military drills around Taiwan, Taiwan says \\u201cBallistic Missiles\\u201d fired https:\\/\\/t.co\\/CizsNSzYIK\\n#Taiwan #China #Taipei #Beijing #Pelosi\",\"3010\":\"To the best of my knowledge, only Priests can wear Birreta (cap) inside the Church. The man speaking here is Chairman of a political party in Nigeria. Shameful!! #ASUU #BBNajia #AsiaCup2022 #ChinaTaiwanCrisis #Pelosi #CommonwealthGames2022 #COVID19 https:\\/\\/t.co\\/6FJESNlTb5\",\"3011\":\"NEW TYPE BEAT \\n\\n#Taiwan #PokemonPresents #PokemonScarletViolet #onstorm #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #timesupolivia #knust #kpss2022iptaledilsin #DonBelle #FOREVER1 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #DONBELLEmpire #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Pakistan #AsiaCup2022 #SheggzOlu #Wizkid #Ethereum https:\\/\\/t.co\\/o5Pmz3XLfc\",\"3012\":\"The total cancellation of #Batgirl is really sad and disheartening.\\nPlus they were in the final stages of post-production! Bilall Fallah & Adil El Abri \\ud83d\\ude1e\\nI think there's a hex on WB \\n#Batgirl\\n#batgirlmovie\\n#BatgirlForever\\n#LeakBatgirl\\n#LeakBatgirlMovie\\n#Taiwan \\n#AsiaCup2022\",\"3013\":\"I have harnessed myself\\nI think am Ready For a RECORD DEAL\\ud83e\\udd7a\\n\\nCc: @choccitymusic @MI_Abaga @thisisAQ\\n#Wizkid #Zamazamas #Afrobeats #TheGuy #onstorm #Taiwan https:\\/\\/t.co\\/njEI0I4SGm\",\"3014\":\"My first debut album will be out on the 15th of august\\ud83d\\udd25\\n\\n#FYP #DonBelle #Taiwan #knust #artistsontwitter #AsiaCup2022 https:\\/\\/t.co\\/lFLvUy6837\",\"3015\":\"Nigeria should come out openly and announce they don't have a President.. Maybe, just maybe Help will come from somewhere\\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/LFmXT3mSmp\",\"3016\":\"Quick one from your analyst\\u2026 #RYE #ryeci #Bitcoin #cryptocurrencies #Crypto #analysis \\n\\n#triclown #PokemonPresents #Taiwan #knust https:\\/\\/t.co\\/adGWS5HU7U\",\"3017\":\"But how do you wake up every day with Buhari as your President and Tinubu again as your next choice?\\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/mWBy6AU7IA\",\"3018\":\"I love the much you guys are doing. Lets keep it up. \\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music. https:\\/\\/t.co\\/SGhptaePzL\",\"3019\":\"We are alive today and guess what it a great day to follow @safrootics to make that cash through video games P2E #PokemonPresents #NFT #P2EGame #videogames #onstorm #DONBELLEmpire #Taiwan #PokemonPresents\",\"3020\":\"China hits Taiwan with penalties in wake of Pelosi\\u2019s visit https:\\/\\/t.co\\/p7udXGzOWk\\n#Taiwan #China #Taipei #Beijing #Pelosi\",\"3021\":\"Ukraine \\ud83c\\uddfa\\ud83c\\udde6 lost the WAR to RUSSIA \\ud83c\\uddf7\\ud83c\\uddfa...... the media will keep hiding this from people, the billions sent to Ukraine was never used form weapons purchase\\ud83d\\udca5\\n\\n#UkraineRussiaWar #Ukraine #Russia #Taiwan #UkraineWillWin #UkraineWar\",\"3022\":\"Minister of Finance, Budget and National Planning, Zainab Ahmed justifies the Federal Government's approval of N1.4B for the purchase of vehicles for Niger Republic. \\n \\n#Taiwan #NigerRepublic #Nigeria #Buhari #SUV https:\\/\\/t.co\\/gmCqDCXAtU\",\"3023\":\"Challenges and obstacles are not the bad things of life, they are the food of champions!\\n#personaldevelopment \\n#Taiwan \\n#Beintentional\",\"3024\":\"Wtf was he thinking \\ud83d\\ude02\\n#ASSU #Taiwan #AsiaCup2022 https:\\/\\/t.co\\/r19nkT6Hvz\",\"3025\":\"Violence, inability to negotiate safe sex and lack of access to sexual and reproductive health information and services increase HIV vulnerability among sex workers \\n\\n@HivosWiL @gwheri @VSI_ng #timesupolivia #Taiwan #sexworkiswork\",\"3026\":\"NEW MUSIC ALERT \\ud83d\\udea8\\ud83d\\udea8\\nMy latest song TERMINATOR is out \\ud83d\\udd25\\ud83d\\udd25\\nGo stream it\\ud83c\\udf0d\\n#Taiwan #AppleMusicRT #applestoashesgame #applemusic\\u0e23\\u0e32\\u0e04\\u0e32\\u0e16\\u0e39\\u0e01 #iTunes #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #PokemonPresents #appleiphones #airpodsgen2 #applemusicnigeria #applemusicaustralia #applemusicUK #iphone14pro #iPhones\",\"3027\":\"You just have to love @kwinmusic_ one of Africans finest Artist out of the south East . 16th of August her song Temper would be out, I can\\u2019t wait \\ud83d\\ude1c \\n#kwintemper #Taiwan #PokemonPresents #enugu #anambra #imostate #abia https:\\/\\/t.co\\/GWdlCnhlVA\",\"3028\":\"If you have Taiwan Scholarship Program Award Certificate from the Embassy in Nigeria to study in Taiwan and no admission yet. Or all admissions applied for are rejected you. DM pls.\\n#Taiwan #Scholarship #stipend https:\\/\\/t.co\\/P4cWauuqsP\",\"3029\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/IaOMul24J1\",\"3030\":\"Them aunties used to say its good for a man to know you have options. It keeps the relationship healthy & balanced. Don't be that person without options. #Taiwan #PokemonPresents #AONArsenal #FOREVER1 https:\\/\\/t.co\\/H8t6rTCD5X\",\"3031\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/2nqfH7Fu77\",\"3032\":\"For trainers and sneakers lovers \\ud83d\\ude0d\\n#Taiwan \\n#Fabrizio #Nike https:\\/\\/t.co\\/xVic1GMEyb\",\"3033\":\"Hey\\nHit me up for your music productions\\n\\n#Taiwan #PokemonPresents #onstorm #songwriter #artist #ArtistOnTwitter https:\\/\\/t.co\\/hkLJd20xwd\",\"3034\":\"Good Morning My Neighbors!!!\\n\\n#AllorNothing #arisetv #cynithaokereke #Asuu #Taiwan #AsiaCup2022 #BBNaija #ChinaTaiwanCrisis #DONBELLEmpire \\n\\nFollow for Follow Back\",\"3035\":\"BBNaija S7: Khalid Grants Daniella Midnight Ecstasy \\u2018Under D Duvet\\u2019 #Taiwan #BBNaija #BBNajiaS7 https:\\/\\/t.co\\/q5ihXkZI0y\",\"3036\":\"For Rent - Standard Selfcon Available. \\n\\n\\ud83d\\udccdLocation - Lokogoma Abuja. \\n\\nRent - N550,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Taiwan #davidhundeyin https:\\/\\/t.co\\/Cs1HxMDA4O\",\"3037\":\"UTC tomatoes \\nDM or whatsApp 09137901977\\n#Taiwan @_theladymo @Abdulhermeed001 @Ameengwaska @cuppymusic @Abdoulmaleek001 @muftahu_E @AhmadCeleh https:\\/\\/t.co\\/ie1QIkk4Ul\",\"3038\":\"Passing The Phone Challenge | Liverpool FC\\n\\n#Khalid #Deji @Videosnwhatever @LFC #Taiwan #timesupolivia https:\\/\\/t.co\\/A812edBOgl\",\"3039\":\"All I DO IS CREATE MOTION GRAPHICS. Like what you see? @akanscript on Instagram @fiverr @Upwork @anoncontent @AdobeVideo @motionpictures #BLACKPINK #Taiwan #PokemonPresents #arisetv #ExtraordinaryAttorneyWooEp12 #onstorm #timesupolivia #AONArsenal #FOREVER1 #GoldMedal https:\\/\\/t.co\\/nPzDVBq45i\",\"3040\":\"Wait for it \\ud83d\\udd25@carterefe__ @davido #Taiwan #PokemonPresents #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #HarGharTiranga #Pakistan #Uyajola99 #boycottrakshabandhan #EndAsuuStrikeNow please retweet https:\\/\\/t.co\\/0A2Y7575z3\",\"3041\":\"We move in style...\\n#AONArsenal #FOREVER1 #mopar #onstorm #Taiwan https:\\/\\/t.co\\/sqJJe9gm0r\",\"3042\":\"Are you struggling to understand how to run Successful Kickstarter or Indiegogo campaign?\\nI'll teach you EVERYTHING you need to know through this link https:\\/\\/t.co\\/ojVDaqT6Ck #talkximg #taiwan #Batgirl #AlexJones #BadDecisionsTrailer2 #PokemonScarletViolet #LoveIslandUSA #RHOBH https:\\/\\/t.co\\/pgTYOBpEWl\",\"3043\":\"Wow!!!\\n@intelfin_global platform is making it possible for me, to earn at ease .\\nPlease do not miss out!\\n\\ud83d\\udc49 https:\\/\\/t.co\\/qYeuwDzdf0\\n#Intelfin #Cosmos #Giveaway #web3 #NFTCommumity #P2E #Metaverse #CryptocurrencyNews #CryptoGems #Crypto #nftnews $JUNO $ATOM #Pelosi #BNB #invest. https:\\/\\/t.co\\/jd5z1wrXPL\",\"3044\":\"The show N tell in you is not necessary in this part of the game, the need to overly explain urself, ur decisions. calm down the urge to do the most you've the right to remain silence in this time of noise.\\n\\n#Taiwan #China #InspirationalQuotes #Motivation #PokemonPresents https:\\/\\/t.co\\/0farobJifY\",\"3045\":\"The @PeterObi campeign Team should publish a master blueprint on how he intends run the country. Policies, plans, areas of focus etc. It's important. We need it.\\n\\n#PeterObi4President2023 \\n#PeterObi \\n#peterobicampaignfund \\n#BBNaija \\n#Taiwan \\n#PeterObi4President\",\"3046\":\"@NonFungDark #china will definitely lose #Taiwan if #russia helps https:\\/\\/t.co\\/DMdn4SAuz1\",\"3047\":\"DO you have the intention to build best clickbank affiliate marketing sales funnel clickbank landing page?\\n\\nContact me \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47:-\\n\\nhttps:\\/\\/t.co\\/4WdBuXkpqb\\n\\n#twitch #SidHearts #whatwevalue #Putin #Taiwan #clickbanklinkpromotion #clickbankaffiliate #amazonaffiliate #websitetraffic https:\\/\\/t.co\\/kTip6QKDfX\",\"3048\":\"@SpeakerPelosi What you did is just criminal. If there is ever a war in #Taiwan You should not seat there sipping your cocktails and claim that Taiwan has the right to its defense. War causes deaths and destructions. Why do U need to fan up the fire \\ud83d\\udd25\",\"3049\":\"Happy Thursday! Let\\u2019s get another #writerslift going drop those #wips #arts #books #blogs #poetry down below! And let\\u2019s follow each other :) #WritingCommunity #explore #AuthorsOfTwitter #bloggers #PokemonScarletViolet #ChinaTaiwanCrisis\",\"3050\":\"\\ud83c\\udfdf Malmo vs Dudelange\\n\\u23f0 18:00\\n#UELQualifier \\n\\nTwo Champions League drop-outs meet today, as\\u00a0Malmo\\u00a0welcome Dudelange\\u00a0to Eleda Stadion in the third qualifying round of the\\u00a0Europa League.\\n\\n\\ud83d\\udcf6 GG \\u2705 2.31 Odds\\n\\nBest Odds \\ud83d\\udc49 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #BoostedOdds #UEL #Taiwan https:\\/\\/t.co\\/j2WZpXricW\",\"3051\":\"Hey #WritingCommunity.\\nIt's been a while since the last #writerslift.\\nLet's try #ShamelessSelfpromoThursday.\\nDrop ur: #links #books #arts #blogs #articles #fiction #peoms #poetry #YouTube #Drama #podcasts #Wips and all you got.\\n#AuthorsOfTwitter #bloggers #Pelosi #BBNaija https:\\/\\/t.co\\/unVdsQqRLp\",\"3052\":\"Why would i meet with them but my account balance is \\ud83d\\ude23 @KashimSM @AlikoDangote @DangoteGroup @DangoteCement @atiku @davido #NationalBoobDay #APCPresidentialPrimaries #Taiwan #ASUU #Tinubu #blackchully #andasuu #PokemonPresents https:\\/\\/t.co\\/1AfxgSgqgn\",\"3053\":\"Can the situation between The US, China and Taiwan be likened to the popular African Adage that says \\u201cWhen two Elephant fights, the grass suffers\\u201d? #Taiwan #USChinaTaiwanTussle #Internationaltrade #EconomicDiplomacy\",\"3054\":\"Ohmen all this views wey una dey get for Twitter how una dey take do am?chineke Twitter hard pass pregnancy\\ud83d\\ude04\\n#NationalBoobDay #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonPresents #onstorm #BoycottAliaBhatt #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #boycottrakshabandhan\",\"3055\":\"VIDEO\\n\\nWH Secretary Karine Jean-Pierre has said - and repeated several times - that Nacy Pelosi\\u2019s visit to Taiwan doesn\\u2019t change the \\u2018One China\\u2019 policy in no way, and \\u2018there is no reason for Beijing to turn Pelosi's Taiwan visit into some sort of crisis\\u2019. #Taiwan #Pelosi #Beijing https:\\/\\/t.co\\/Um1CyfI94W\",\"3056\":\"Assuming madam Pelosi visit to #Taiwan trigger #WWIII...\\n\\nIt will be on record that a woman was the cause of WWIII \\n\\nIs humanity going to learn?\",\"3057\":\"Don\\u2019t let yesterday take up too much of today \\n\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #timesupolivia\",\"3058\":\"Are you thinking what I am thinking???\\n\\n#Taiwan #PokemonPresents #BadDecisionsTrailer2 #Pelosi #twitterclarets https:\\/\\/t.co\\/9g4czDBj9I\",\"3059\":\"@the_big_4lf @bod_republic \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n\\nYou talk say youna like vawulence\\nOya let's meet for Twitagram9ja\\n\\nKindly click the link below with your name\\nAlot of entertainment here https:\\/\\/t.co\\/s4uVx9u2lp\\n\\n#Pelosi #timesupolivia #AsiaCup2022 #BadDecisionsTrailer2 #PokemonPresents https:\\/\\/t.co\\/hL3D2W2oyh\",\"3060\":\"@wizkidayo @Gamers8GG_AR @Gamers8GG You talk say youna like vawulence\\nOya let's meet for Twitagram9ja\\n\\nKindly click the link with your name\\nAlot of entertainment here https:\\/\\/t.co\\/s4uVx9u2lp\\n\\n#Pelosi #timesupolivia #AsiaCup2022 #BadDecisionsTrailer2 #PokemonPresents\",\"3061\":\"See how stress affects the brain with possible solutions\\u2026\\nhttps:\\/\\/t.co\\/uoEikCochW\\n\\n#davidhundeyin #bolatinubu #room1 #Taiwan #BB24 #davidhundeyin #stress #remedy https:\\/\\/t.co\\/rGiGx9nfeD\",\"3062\":\"Here, I \\u201cget lost\\u201d \\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00. \\n\\nSo help me God. \\n\\n#Pelosi | Jaruma | #BBNajia | Toyota | Big Bella | Shower | Datti | #BBNaijaS7 | Abuja | #AbujaTwitterCommunity | https:\\/\\/t.co\\/Qaayb0KgnM\",\"3063\":\"A plea for mercy by a sinful country!! #Pelosi #BBNajia #BBNaijaS7 #ASUU #ObiDatti #PeterObi #Taiwanchina #chaina #ChinaTaiwanCrisis #CommonwealthGames2022 https:\\/\\/t.co\\/5hephg70Dx\",\"3064\":\"A young Nigerian man made this beautiful designer light with Peter Obi, Labour Party presidential candidate name for all Obidients .... If you need it DM us but you will pay for it to encourage him ooh #Taiwan #Birmingham2022 #Obidatti023 #BBNaija #ExtraordinaryAttorneyWoo https:\\/\\/t.co\\/MqQNE0DluW\",\"3065\":\"Spokesperson of Ministry of National Defense makes remarks on Pelosi's visit to Taiwan #China #Taiwan #WuQian https:\\/\\/t.co\\/Et8VA4DuOx\",\"3066\":\"@rovercrc No model is true model since no one can correctly predict the direction of #BTC and the #Crypto market \\n\\n#Taiwan #Pelosi #ETH\",\"3067\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #AlexJones #SandyHook #Pokemon #PokemonPresents #Kansas #fidough #Discord #Discovery #HBOMax #colwill #FreakyGirl #Woody #Taiwan #timesupolivia #talkximg #Pelosi #LoveIsland https:\\/\\/t.co\\/a58nuGIcuj\",\"3068\":\"Fear women oooo\\n\\n#Taiwan #PokemonScarletViolet #PokemonPresents #boycottrakshabandhan #bbnaija #BigBrotherNaija ASUU EFCC Money Heist Here we go \\n\\nFollow us for more https:\\/\\/t.co\\/L5naFHzNv6\",\"3069\":\"Follow me I follow back them don finally hack person Instagram #Wizkid #massage #Machala #Taiwan #Davido #burnaboy\",\"3070\":\"WikiFX Live: 10 Essential Skills for New Trader\\n\\nhttps:\\/\\/t.co\\/OZRROchuBC\\n#forex #wikifx #trading #MONEY #Crypto #news #skills #beginners #PokemonScarletViolet #PokemonPresents #Pelosi https:\\/\\/t.co\\/uNm3Dqi46R\",\"3071\":\"@iam_timotee x @rexxiepondabeat \\nPls retweet guys \\ud83e\\udd32\\u2764\\ufe0f. @DONJAZZY @Alex_Houseof308 @Iam_Magixx @MAVINRECORDS @Ebuka #Taiwan #PokemonScarletViolet #PokemonPresents #Bbnaija @DanielRegha https:\\/\\/t.co\\/60kyNTYdVC\",\"3072\":\"Did you know that there are Igbo people in Equatorial Guinea?They occupy a small area in Bioko, an island of the African nation. Bioko is the largest region in Equatorial Guinea. The inhabitants speak Pidgin English, Spanish, Fang, Bubi and Igbo indigenous languages.#Taiwan https:\\/\\/t.co\\/FVS92zEuL3\",\"3073\":\"Hatem Ben Arfa \\ud83c\\uddeb\\ud83c\\uddf7\\nAndrea Belotti \\ud83c\\uddee\\ud83c\\uddf9\\nJuan Mata \\ud83c\\uddea\\ud83c\\uddf8\\nMarcelo \\ud83c\\udde7\\ud83c\\uddf7\\nEdison Cavani\\ud83c\\uddfa\\ud83c\\uddfe\\nIsco \\ud83c\\uddea\\ud83c\\uddf8\\nDries Mertens\\ud83c\\udde7\\ud83c\\uddea\\nAdnan Januzaj\\ud83c\\udde7\\ud83c\\uddea\\nDiego Costa \\ud83c\\uddea\\ud83c\\uddf8\\n\\nAll these Veterans are still Free Agents\\n#transfers #EPL #Taiwan\",\"3074\":\"My Ray of sunshine Chidiebere Aneke \\nNo matter the number of Arguments\\nand Quarrels we have\\u2026 \\nMy Heart shall forever love and Cherish you, \\nHaving you as My Twin Sister \\nis one of The Greatest Blessings of My Life. \\nI Love you \\ud83d\\udc99\\n\\nWe Rep 06\\n\\n#Taiwan #aneketwins #worldbesttwins https:\\/\\/t.co\\/t83z7KgCZE\",\"3075\":\"The car Nigeria bought for Republic of Niger to fight insecurity \\n VS \\ncar Nigeria is using to fight Insecurity\\n\\n#Taiwan #minister #midemartins #PokemonPresents #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #Nigeria https:\\/\\/t.co\\/M99iJe53I1\",\"3076\":\"Don\\u2019t miss out on this \\u2764\\ufe0f\\ud83d\\udccc\\ud83d\\udcaf\\ud83d\\udd25 #Taiwan #PokemonPresents #ChinaTaiwanCrisis #organics #Nengi #trending\\n\\nWhat is Peter obi Okoye trending Abuja IF Bbnaija https:\\/\\/t.co\\/jriEwqsvvJ\",\"3077\":\"@padaignault I\\u2019m happy and so pleased this visit by @SpeakerPelosi gave #Taiwan people strength, courage and assured them of the US and global allies commitment to #DefendDemocracy\",\"3078\":\"Azerbaijani Defense Ministry publishes new footage of UAV strikes on Armenian positions.\\n\\nThe Azerbaijani authorities demand the complete disarmament of Artsakh's defense and the withdrawal of the Armenian military from Karabakh. #Azerbaijan #Armenia #Taiwan #Asia #Pelosi #viral https:\\/\\/t.co\\/sSTeJQYgcQ\",\"3079\":\"The Australian Space Agency has confirmed that debris from the SpaceX spacecraft has crashed on Australian territory. The wreckage is considered to be the largest of those found in Australia since 1979.\\n#SpaceX #Australia #Space #Taiwan #Pelosi #TrendingNow #trending #viral https:\\/\\/t.co\\/14nNwxrVUq\",\"3080\":\"Can u join my FPL draft league, it's a new way to test skills and improve Ur FPL experience\\n#PremierLeague #FPL #ManUtd #ManUtdFreeCristianoRonaldo #BulletTrainMovie #Pelosi #Taiwan https:\\/\\/t.co\\/q13uXAXOhv\",\"3081\":\"Well well well...\\n\\nWhat do we have here?\\nhttps:\\/\\/t.co\\/J34HrbVp1r\\n\\n|| David Hundeyin #BadDecisionsTrailer1 #Taiwan #Pelosi||\",\"3082\":\"I use Allah beg you Pls retweet my hustle\\nAIRPOD PRO CLONE \\nwith All the original features \\nPrice 15000\\nLocation kano \\n08065825667\\n\\n#Taiwan #Isco #BadDecisionsTrailer1 @nurasabitu @el_uthmaan @Arewa_Business_ @MalamKaybee @Maroup_ @najeebweederjr pls retweet https:\\/\\/t.co\\/28fwuQEWf3\",\"3083\":\"#china if you need man power of the #Taiwan war happens am here I have experience in making and radiocalls\",\"3084\":\"USA is going to continue spirking fire between countries till war happens see #UkraineRussiaWar now #Taiwan and #China\",\"3085\":\"Please patronize my hustle and do not scroll without like or tweeting my customer may be on your timeline.\\n\\nSize: 42 and 43.\\n\\nContact: 07035885232\\n\\n#Kano\\n#sabinus \\n#BBNaija \\n#Gistlover \\n#UkraineRussiaWar \\n#WWIII\\n#Buhari \\n#Datti \\n#Ministeroffinace\\n#Shettima https:\\/\\/t.co\\/jxVFtbB6WP\",\"3086\":\"Pre-save my new single \\\"Terminator\\\" on Spotify:\\n#NewMusic #Taiwan #NewMusicDaily #newmusic2022\\n#appleiphones #PokemonPresents \\n#applemusic #Spotify #boomplaymusic #audiomack #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #latestmusic #applemusicnigeria \\n\\nhttps:\\/\\/t.co\\/8QlKDYh454 (powered by @distrokid)\",\"3087\":\"@PressSec Democratic press secretary press briefing is just as awful a disaster as Biden in her speech this morning. Karine Pierre CANT EVEN prounounce the word \\u201cRall-y-ing\\u201d. God help America \\ud83e\\udd21\\ud83d\\ude05 #Taiwan #trump2024 #Democrat disaster #BidenDestroysAmerica https:\\/\\/t.co\\/MQc53z0gzG\",\"3088\":\"4. It helps strengthen the immune system: Strong immune system is important as it helps you stay healthy. Consuming yogurt, especially if it contains probiotics, on a regular basis may strengthen your immune system and reduce your chances of contracting an illness.\\n\\n#Taiwan\",\"3089\":\"The federal government intention is to fight corruption but knowingly they re allowing youths to engage in fraudulent activities coz an idle hand is the devils workshop. Unemployment couple with ASUU strike for over 5month. FG help the youth \\n#Taiwan #koundeisblue #Chelsea\",\"3090\":\"Nigerian is in a dirty state to be honest, how come travelling to Ukraine \\ud83c\\uddfa\\ud83c\\udde6 is now a big Win \\ud83d\\ude22\\n#Wizkid #Taiwan #PokemonPresents #wednesdaythought #Davido #BBNaija https:\\/\\/t.co\\/NZ3ygeIhwq\",\"3091\":\"The FG imposed a fine of N5 million on Trust TV over the broadcasting of a documentary with the title Nigerian\\u2019s Banditry.\\nThis was contained in a letter signed by the director of NBC, Shehu Illela, and sent to the management of Trust TV on August 3, 2022.\\n#Trusttv #Taiwan #Army https:\\/\\/t.co\\/1TfAEXCXbe\",\"3092\":\"The best time to start something new was 10 years ago; the second best time is NOW!\\n\\n#Taiwan #PokemonPresents #midjourney #adventure #Growth #learn #learning #selfcare #Selfdevelopment #LearnToEarn #LearningAndDevelopment\",\"3093\":\"A worthwhile read (all 8 threads) of a Taiwanese perspective on the visit by Nancy Pelosi. #ChinaTaiwanCrisis #china #Taiwan @SpeakerPelosi https:\\/\\/t.co\\/OaQh6tNNZW\",\"3094\":\"It is also reported that NAFDAC charges bakers N154,000 penalty on late renewal of certificates. \\nAs a stakeholder within this agricultural value chain, how can your business contribute in solving this myriad of problems? \\n\\nCREDIT: @vanguardngrnews\\n#Taiwan #davidhundeyin #China\",\"3095\":\"Pre-save my new single \\\"Terminator\\\" on Spotify:\\n#Terminator #applemusic #SpotifyPlaylist #Taiwan #audiomack #iTunes #applemusicnigeria #AfrobeatRadio #BulletTrainMovie\\n#Terminal21Korat #lagos #NewYorkCity #CaliforniaAdventure \\n\\nhttps:\\/\\/t.co\\/8QlKDYh454 (powered by @distrokid)\",\"3096\":\"Where are my #P2Egaming\\nFans, check out @WarpBond \\n\\nThe season 2 promises to be epic, get your #Whitelist\\nSpot NOW.\\n#NFTGiveaways #CryptoNews\\n#Taiwan #BulletTrainMovie\\nWebsite: https:\\/\\/t.co\\/TVq8PkZ7EX\\nDemo: https:\\/\\/t.co\\/oWoGOLR8El\\nWL page: https:\\/\\/t.co\\/3OQiWdyaN6 https:\\/\\/t.co\\/0abiCiufk2\",\"3097\":\"What is this \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 #PeterDrury #PeterObi #PremierLeague #BBNaija #Taiwan #China https:\\/\\/t.co\\/Nz9c0LorqE\",\"3098\":\"#NEWS #NancyPelosi #Taiwan #USHouseSpeakerNancyPelosi #Washington U.S. Speaker Pelosi wraps up Taiwan visit, heads to South Korea https:\\/\\/t.co\\/C2jJb4l4lU\",\"3099\":\"@IndiaFi47688004 @globaltimesnews Just like it should be. China needs to honour the UN decision. #ChinaDoesNotPlayFairly. #ChinaTaiwanCrisis #FreedomOfNavigation\",\"3100\":\"This may be your case, but hang in there! God is coming through for you...\\n#Taiwan #Godisworking #thingsout #VirumanAudioLaunch #sermon #audio https:\\/\\/t.co\\/fuKr5l8Xzy\",\"3101\":\"@accessbank_help You never checked?\\n\\nDoes it take a year to check DM \\n\\nA life depends on this please respond ASAP\\n\\nDavido | #Taiwan | #BigBrotherNaijaS7\",\"3102\":\"@lz8964 @bang6_7 @iingwen @SpeakerPelosi Harden up petals #ChinaTaiwanCrisis https:\\/\\/t.co\\/peCFVx8p0u\",\"3103\":\"For Rent - 3 Bedrooms Flat Available. \\n\\n\\ud83d\\udccdLocation - Dawaki Abuja. \\n\\nRent - N1,300,000 Yearly. \\nRCD - N100,000. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Taiwan https:\\/\\/t.co\\/serqHvJW2C\",\"3104\":\"So today I was listening to some good Naija songs and found out that @Lojaymusic and @beatsbysarz #Monalisa Has the same beats as @Iam_Magixx -Saye. They\\u2019re just on different keys.\\n#GoodmusicGoodTalk \\n#Taiwan #BBNajia7 #Wizkid #Pelosi #China https:\\/\\/t.co\\/vG6i0EOIPN\",\"3105\":\"We were made to believe that when @MBuhari eventually wins the 2015 election, we're going to have a soft and stress free life but we never had it easy talk more of stress free or soft.\\n#ASUUStrikeUpdate #Pelosi #2023Elections #ASUUstrike #NaijaNews #Obidatti2023 #BAT2023 #Atiku\",\"3106\":\"Boys need money #Taiwan\\n#Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"3107\":\"Girls need love\\nBut never say it out\\n#Pelosi #Taiwan #PokemonScarletViolet\",\"3108\":\"Nobody can love you like a mother can #Taiwan #Pelosi #sabinus\",\"3109\":\"Some Of Us Have Never Been To A Club B4,Yes We Exist \\n#Taiwan #Pelosi\",\"3110\":\"BUY NOW, AND PAY LATER\\n#Taiwan #Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonScarletViolet #AamirKhan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 https:\\/\\/t.co\\/SFtmooG4n4\",\"3111\":\"For Rent - 2 Bedrooms Flat Available. \\n\\n\\ud83d\\udccdLocation - Mabushi Abuja. \\n\\nRent - N1,500,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #Chelsea #Buhar #China #Taiwan https:\\/\\/t.co\\/cHw8nDiKoF\",\"3112\":\"Your Bank account will be loaded with cash this week, in Jesus name\\n#\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Taiwan #kpss2022iptaledilsin #BlueJays #DonnyPangilinan #Pelosi #BadDecisionsTrailer1 #music #musique #Musica https:\\/\\/t.co\\/z92cabRhki\",\"3113\":\"Before After \\nOn my way. Kidnappers \\nKADUNA ABJ are on the Way\\nroad i need ur Prayer \\n#helicopter #Taiwan #bankole #vabulance https:\\/\\/t.co\\/SOq1sp6GTV\",\"3114\":\"Man of the year \\ud83d\\ude02\\ud83d\\udcaf\\n#obituary #Room1 #Wizkid #oshiomole #witcher #ASUU #Taiwan #ifb https:\\/\\/t.co\\/xYqiMXKCQi\",\"3115\":\"When 2 bully talented Singers go at it on stage with none stepping down for the other to be heard, the audience bears the brunt. #Noise.\\n\\nWitcher Room 1 Diana Pioneers Rufai oseni Mbah Biggie Ronaldo Dubai What God Big Ivy #Wizkid #helicopter #Taiwan #UkraineRussiaWar #Russia\",\"3116\":\"We still got this ice cream wafers.\\n\\ud83d\\udcf1A21s.\\n\\n#Pelosi ASUU\\n\\n\\\"Arise TV\\\" #helicopter Jaruma Oshiomole Room 1 https:\\/\\/t.co\\/QOKS8yZiEf\",\"3117\":\"We still got this ice cream wafers.\\n\\ud83d\\udcf1A21s.\\n\\n#Pelosi ASUU https:\\/\\/t.co\\/ccitKgxKdW\",\"3118\":\"@DavidHundeyin @WestAfricaWeek @MBuhari https:\\/\\/t.co\\/i3YYdzIee8\\n\\nMassive inflated prices on the cost of the vehicles. \\n@MBuhari and @OfficialAPCNg said they are fighting corruption but will close their eyes to this type of deals.\\n\\n#NigerRepublic #Obituary #bbns7 #Taiwan #samomatseye\",\"3119\":\"Singing &lead singing is a thing if the mind &mental activity.\\nI have seen singers who practically bully their co-lead vocalists into silence on stage through their skillful runs & powerful singing colours.\\nIt's all shades of wrong.\\n#Sabinus #Taiwan #China #Russia #Ukraine #uk\",\"3120\":\"To co lead songs effectively its key for singers to not be get carried away with their level of skill to the point of over dominating the addlibs. Do what you can at your level in a way to help the other person deliver at their level\\n#music #Taiwan #UK #USA #sabinus #JackInTheBox\",\"3121\":\"China starts military exercises as Nancy Pelosi meets Taiwan\\u2019s president\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/7TgVmLgnwK\\n\\nPlease follow us & retweet\\n#China #Foreign #NancyPelosi #Taiwan #US #bobojay #bobojaytv https:\\/\\/t.co\\/X4VdFxKEE2\",\"3122\":\"When leading songs with other lead singers, it's important to avoid crowded addlibs. This happens when both of you do addlibs without space or rest particularly with singing a lot of words into your addlibs at the same time. \\n#Taiwan #music #AamirKhan Demi Lovato #nsfwtwt\",\"3123\":\"US House Speaker Nancy Pelosi lands in Taiwan amid threats of Chinese retaliation\\n\\n#WesternPost #NancyPelosi #Taiwan #USA #China\\n\\nhttps:\\/\\/t.co\\/i8u27vB1bD\",\"3124\":\"In Russia, near Moscow, there was a major fire in a warehouse. The area of the fire was up to 35,000 square meters. One person died, 6 were injured.\\n#Russia #russiaisaterrorisstate #Taiwan #Pelosi #Trending #Viral https:\\/\\/t.co\\/XPenvRyXEc\",\"3125\":\"Kremlin: Tension over Nancy Pelosi\\u2019s Taiwan visit \\u2018should not be underestimated\\u2019\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/Cx1vEaqwqu\\n\\nPlease follow us & retweet\\n#Foreign #Kremlin #news #Taiwan #bobojay https:\\/\\/t.co\\/lbgqYYK7r6\",\"3126\":\"Track 3.#moneymadness ft SpLamar on(Simple Lyrics) the Ep out already link below \\ud83d\\udc47 https:\\/\\/t.co\\/RKTnxgtKzB. #africa #Taiwan #Pelosi #news #NEW #music #Demi Lovato #MONEY #moneymadness https:\\/\\/t.co\\/AVYQjSFrmC\",\"3127\":\"@PiCoreTeam Pi to the moon. Slow and steady.\\n\\nCheck out CORE Mining too. Wonderful project. @CoreMining_1\\n\\n#pi #core #SatoshiPlusConsensus #btcs #btc #Bitcoin #Taiwan #Solana https:\\/\\/t.co\\/MkpeC7yxpc\",\"3128\":\"Travelling by Flight is N150k, while by road is N30M to N100M depending on your kidnapper asking price \\ud83e\\udd7a\\ud83e\\udd7a\\n\\n#Wizkid #Taiwan #bellathorne #PeterObi #abuja\",\"3129\":\"Finally, I have found the video \\ud83d\\ude05\\n\\nObi-tuary | Arise TV | #Taiwan #RCCGConvention | #helicopter | #WWIII #Pelosi #Xi Jinping #World War III #Reno #TinubuShettima2023 #Tinubu #Atiku #IPOB | #Hausas #fulani | #Yorubas #Igbos #Nigerians #BBNajia #Buhari #PeterObiForPresident2023 https:\\/\\/t.co\\/1GLM8ZiUMW\",\"3130\":\"Check out my new single \\\"Adulthood Anthem II\\\" distributed by @DistroKid and live on Apple Music!\\n#Taiwan #appledaily #sabinus #applemusicrt #ApplePay\\n#ApplePencil #applemusic #applemusicnigeria #Pelosi #BlueJays #LagosSwindlers #applemusicamerica #Haiti \\n\\nhttps:\\/\\/t.co\\/SR7gmdCcUq\",\"3131\":\"Peace \\u270c\\ufe0f@ @ukr @Ukraine @china @PDChinaLife @Taiwan_Today \\n#peacefulTaiwan #Taiwan #ChinaTaiwanCrisis\",\"3132\":\"Osimhen Napoli Future In Doubt After Comments From President Over African Stars \\n\\n#osimhen #Taiwan #HelicopterCrash #DonnyPangilinan https:\\/\\/t.co\\/2g4Wc7gzYP\",\"3133\":\"For home lessons for your children, primary schools students, Secondary school students in commercial class and computer tutorial (Ms Office and graphics design) around ketu, Ojota, Ogudu, Mile 12, Owode and Irawo. Contact AOI on: 08166205451 and 09078463024. #Cucurella #Taiwan\",\"3134\":\"Book your Private Jet charter & Helicopter shuttle services with amazing discount\\u2019s \\u2708\\ufe0f contact us on +2349038190834\\n.\\n.\\n.\\n#helicopter #PrivateJet #Taiwan #Pelosi #travel #Aviation Kano World War III https:\\/\\/t.co\\/uN0H1vPHWE\",\"3135\":\"Check out my new single \\\"Adulthood Anthem II\\\" distributed by @DistroKid and live on iTunes!\\n#iTunes #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #itunes\\u914d\\u5e03\\n#itunesafrica #iPadPro #itunesghana #Taiwan #sabinus \\n#Solana #UkraineRussiaWar #PeterObi4President2023 \\n\\nhttps:\\/\\/t.co\\/D9BKh8azwH\",\"3136\":\"Stop pronouncing the \\\"T\\\" when you speak English \\n#Taiwan #Pelosi #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BlueJays #helicopter #UkraineRussiaWar #DonnyPangilinan #UkraineRussiaWar https:\\/\\/t.co\\/PLgY1dIXk6\",\"3137\":\"Stop pronouncing the \\\"T\\\" when you speak English \\n#Taiwan #Pelosi #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BlueJays #helicopter #UkraineRussiaWar #DonnyPangilinan #UkraineRussiaWar https:\\/\\/t.co\\/TaQtXc29sS\",\"3138\":\"INSTRUCTIONS BELOW\\u2935\\ufe0f\\nClick link below to register \\nClick second link to subscribe via our YouTube channel the come back here & dm me your bank details \\nhttps:\\/\\/t.co\\/V95Z1YzYt7\\n\\nhttps:\\/\\/t.co\\/7RLDwaJ1Q9\\n\\n#BBNaijaS7 #Bbnaija #sabinus #SheggzFC #Machala #Bryann #Pelosi https:\\/\\/t.co\\/b6Klbwjbg0\",\"3139\":\"So i just came across dis sec school and heard \\\"question 1 A,Q2 A Q3 B and so so...now believe it or not u er connected to corruption one way or the other in dis country. #asuu #Taiwan #Kano\",\"3140\":\"*BEST TIME TO CONCEIVE A MALE CHILD.* \\n\\nThe sex of a child is determined by the father. The father carries both male and female sperm chromosomes XY. If the father releases the Y, male child is \\n\\n#ASUU #MamaDollaz #Racism #Taiwan #JackieChan https:\\/\\/t.co\\/iXZauOmaOF\",\"3141\":\"CONGRATULATIONS TO ALL WINNERS YESTERDAY.TODAYS FIXED MATCHES ARE NOW AVAILABLE. YOU CAN CONTACT ME DIRECTLY ON \\ud83d\\udcde +2349095386137\\n#Osimhen #Chukwuemeka #JackieChan #declan #Obituary #Kano #Cubana #Tinubu #NnamdiKanu #davidhundeyin #airtel #Mourinho #Mount #Taiwan #arisetv #ASUU https:\\/\\/t.co\\/ijo5LBjCky\",\"3142\":\"It\\u2019s great for your sex life\\u2026. Yes!! \\ud83d\\ude09\\n\\n#DonnyPangilinan #sabinus #helicopter #Twitter #TREASURE #Pelosi #Taiwan #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BlueJays #BelleMariano #AbujaTwitterCommunity #massage #LoveDamini https:\\/\\/t.co\\/BWJR5IVhyG\",\"3143\":\"Iphone 14 unbox \\nWhat do you think? Drop a comment below\\nWe are the best gadget \\ud83d\\udd0c \\n08087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/GMKUgiJkav\",\"3144\":\"@KyivIndependent Ukrainians launching HIMARS missiles from a wheat field.\\n#Ukraine #UkraineRussiaWar #UkraineWillWin #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Solana #CloserWithDonBelle #russiaisaterrorisstate #RussiaInvadedUkraine https:\\/\\/t.co\\/DLkbtWYTnR\",\"3145\":\"If this message applies to you, then I'm talking to you: \\n\\n\\\"Stop doubting yourself and give your dream-career a jump\\\". \\n\\n\\\"The world awaits your potential\\\"\\n\\n\\\"You're enough!\\\"\\u270c\\ufe0f\\n\\nI'm routing for you \\ud83d\\udc4d\\n\\n#Taiwan #Pelosi #china #WWIII #Scholarships #UK #Cheveningscholarship https:\\/\\/t.co\\/TxY6NW7rGy\",\"3146\":\"Slimtalker the journalist \\ud83d\\ude02\\ud83d\\ude02 \\n\\nCc @Sabinus1_ @DONJAZZY @yabaleftonline @instablog9ja \\n\\n#Taiwan #Solana #CloserWithDonBelle #Wizkid #Batgirl https:\\/\\/t.co\\/9RTAmNicmh\",\"3147\":\"Check my profile for my link to order!!!\\n#Solana #CloserWithDonBelle #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Ukraine #Batgirl #Wizkid #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #helicopter #BlueJays #Taiwan #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Italy #ChrisBrown #Trending #TREASUREinManila #TREASURE #CFC https:\\/\\/t.co\\/o6BiiEBYiS\",\"3148\":\"Your hair is important to us\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Solana #CloserWithDonBelle #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus https:\\/\\/t.co\\/icrt1AKjYF\",\"3149\":\"Check my profile for my link\\n\\n#\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #businessopportunityprevi #bookaholics #celebrityfitnessindonesia #bookaddiction #bookaccount #photoofthedaygallery #businesswomanlife #bookaddicted #celebrityfashion #photooftheday\\u2764\\ufe0f #bookalicious #bookaesthetic #Taiwan https:\\/\\/t.co\\/UZZgqgILDK\",\"3150\":\"start of the competition with her opening throw of 57.33m.\\n\\nThe Nigerian, who opened with 55.82m, knew she needed more than the 58.19m she threw to win the African Championships gold last June in Mauritius.\\n\\n#Taiwan #samomatseye #Ronaldo https:\\/\\/t.co\\/LkMKDvqJve\",\"3151\":\"Hey, having issues with your PC? Why not let us take that burden off you.\\n2348087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/cGChk2NcVy\",\"3152\":\"You can't separate Nurses and unemployed man. This professional sisters can feed niggas\\n\\n#Taiwan #sabinus\",\"3153\":\"Social media advert for a photographer \\n\\nGet exclusive designs at the coolest rate \\n\\nWe deliver quality designs \\n\\n#glowhub #gd #Taiwan #branding #photographer #CloserWithDonBelle https:\\/\\/t.co\\/PG3TnovTVs\",\"3154\":\"Massive pump incoming for #MarvinInu\\n\\n Don't miss $Marvin, holders would be rewarded soon\\n\\n#MarvinInu @Marvin_Inu #Taiwan #helicopter #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #tuesdayvibe #Bitcoin\\u00a0 #altcoin #CloserWithDonBelle #BNB #sabinus #Batgirl https:\\/\\/t.co\\/nSVh0YDIcv\",\"3155\":\"You can call her \\\"Menstrual Hygiene Ambassador\\\" \\ud83d\\ude01\\ud83e\\udd2a #StarGirl \\n.\\n.\\n\\ud83c\\udfa5\\ud83c\\udfbc\\ud83c\\udf99\\ud83c\\udfb5 @ugoccie \\n.\\n.\\n.\\n#starGirl #wizkid #Solana #BBNaijaSeason7 #Taiwan #BibleBuild #helicopter #BlueJays #oesym #wednesdaythought #AbujaTwitterCommunity https:\\/\\/t.co\\/rfTY04O9Pw\",\"3156\":\"After Chelsea signs @DeJongFrenkie21, @cucurella3 \\nThen I will eat this, no time to waste time...\\n\\n#kante #Taiwan #Cucurella #GodAbeg https:\\/\\/t.co\\/8La4uS2TFA\",\"3157\":\"Battery capacity of our 400w and 250w SMK FLOOD LIGHT\\n*400W - 3.2V : 40AH\\n*250W - 3.2V : 20AH\\n@MarsSolar__\\n\\nJaruma | Ronaldo | Nnamdi Kanu | Datti | Sam Omatseye | Mama Dollars | Sign | Racism | World War III | BRT Lane\\n#XiJinping https:\\/\\/t.co\\/6Nun516WPx\",\"3158\":\"...Agricultural Research Council of Nigeria (ARCN), ONIDA, ASTA irrigation & other stakeholders. \\n\\n#nicert\\n#nicertgroup \\n#wenainitiative\\n#fmard\\n#Agriculture\\n#Export\\n#womenbusinesses\\n#Taiwan #davidhundeyin #samomatseye #Tinubu #arisetv https:\\/\\/t.co\\/S3lEOp6zY1\",\"3159\":\"Let's have your Premier League winner and the teams that will qualify for the UEFA Champions League by the end of the season.\\n\\nKindly drop your comments below \\ud83d\\ude01\\ud83d\\ude01\\n\\nLeggo \\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\n\\n#NaijaBet #Taiwan #PremierLeague #ChelseaFC #ManCity #Spurs #ManUnited #Arsenal #Liverpool https:\\/\\/t.co\\/Vz160FKf2U\",\"3160\":\"Is Buhari aware that the two weeks he gave for strike to be resolved have passed \\ud83d\\ude44? Someone should please remind him.\\n\\n#kwankwaso #Taiwan #davidhundeyin\",\"3161\":\"4 bedroom terrace townhouse with BQ \\nLocation: lekki phase 1\\nPrice: 150M\\nAgency: 5.5M\\nContact: Whatsapp or call 07043373145\\n#Taiwan #Phyna #Mama #Daniella #BBNajiaS7 #SheggzFC #JackieChan #Jaruma #Kalid #RCCGConvention #RCTID #Solana #helicopter #PokemonScarletViolet #BibleBuild https:\\/\\/t.co\\/Ce01378CRB\",\"3162\":\"This is 21\\ud83c\\udf89 \\nMade in August 3rd. Happy birthday to me \\ud83e\\udd70\\ud83e\\udd73\\ud83e\\udd73\\ud83e\\udd73 \\n\\n#Taiwan #Trending #Trending #explorepage #TrendingNow https:\\/\\/t.co\\/amIdgP6uAv\",\"3163\":\"Does anyone know if Ukrainian embassy here in Nigeria is still working? Those who submitted their passport before Russia invaded them, have they collected their passports ? Please need to know @UKRinNGA \\n\\n#Taiwan #helicopter #BBNajiaS7 #BBN\",\"3164\":\"GafexianArts (c2021)\\nA Biro art of @samkerr1 by me.\\nHow do you rate it?\\nPls help repost till.\\n#gafexianart #gafexianzone #Taiwan #Solana #Chelsea #ChelseaFC @ChelseaFCW @AbsoluteChelsea @ChelseaFCinUSA #biro #explorepage #explore #Explorer #ExploreUganda @ChelseaWomenSG #artist https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"3165\":\"**Okay Nah... CATCH ME LIVE* *For real For real\\ud83d\\udcaf* Go get your ticket money ready Because Expensive DJ NAS is gonna be on the whillz\\ud83d\\udca5\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\n#Taiwan #Solana #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #PokemonScarletViolet #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BlueJays #partytime #jbankz https:\\/\\/t.co\\/qyHhxvm1w1\",\"3166\":\"Keeping customers in perpetual darkness is something @IBEDC_NG does to us in Saki. It's a week of darkness & no explanation whatsoever. Very poor service.\\n#ibedc #DistributingDarkness @via_iure @PowerUpNG @fccpcnigeria @NERCNG\\n#wednesdaythought #Solana #Taiwan #helicopter\",\"3167\":\"Follow him on IG.\\n\\nhttps:\\/\\/t.co\\/VEa4WP9DO0 \\n#EmmanuelUmoh #Pelosi https:\\/\\/t.co\\/XnWs6XKBaB\",\"3168\":\"[CONGRATULATIONS]\\nOnyekwere Chioma finish with a Gold medal, while Amaechi Obiageri finish with a Bronze medal in the Women's Discus event.\\n#CommonwealthGames2022 #Taiwan https:\\/\\/t.co\\/Rb6M4G9bfV\",\"3169\":\"Everyone is giving their analysis but here is what you have to look out for\\u2026.\\n\\nIf the MACD crosses on the weekly then we could witness a +$10,000 rally, \\n\\nYou heard it hear first \\n#Solana #btc #binance #Taiwan @rovercrc @MMCrypto @CrypToomas @elonmusk @StonksReddit https:\\/\\/t.co\\/2VAX1kKY7q\",\"3170\":\"Congratulations @PiCoreTeam on reaching 1.5 million followers. We, the Pioneers, look forward to the future and have full confidence in @nkokkalis and the entire PCT. #Taiwan #Pionners #Pinetwork #sabinus #cryptocurrency https:\\/\\/t.co\\/E9xunsffM1\",\"3171\":\"#NEWS #China #NancyPelosi #Taiwan Pelosi arrives in Taiwan, voicing U.S. \\u2018solidarity\\u2019 as China fumes https:\\/\\/t.co\\/7zorY8BGJn\",\"3172\":\"Create a website and earn $50\\nFor signing up link \\ud83d\\udc47\\n\\ud83d\\udc49https:\\/\\/t.co\\/cOFgBjIkqz\\n.\\n.\\n.\\n.\\n.#Taiwan #Pelosi #China #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #helicopter #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #oesym #SpeedDatingWithSelema #UkraineRussiaWar\",\"3173\":\"The EP has dropped, its on all streaming sites.\\n\\nIF EP.\\n\\nCheck out Tipcy Jaej on #SoundCloud\\nhttps:\\/\\/t.co\\/24snMEgLsL\\n\\nAND SPREAD THE LOVE ON SOUNDCLOUD\\n\\n#NewMusic #China #Taiwan #sabinus #LoveIsland2022 https:\\/\\/t.co\\/MrqMUbG8P6\",\"3174\":\"@DayoAmusa I will donate the #20k to a course mate who needs surgery. Anyone who also wish to help can send to the account in the screenshot.#benincitymall. #Pelosi #Taiwan #SpeedDatingWithSelema https:\\/\\/t.co\\/f2CdRuT9tm\",\"3175\":\"Dey guided #Pelosi #helicopter #Ukraine https:\\/\\/t.co\\/EhISr3PULD\",\"3176\":\"@carterefe__ @carterefe__ I use your song do video I tag you tire for IG but you no notice me, make I try my luck for here too\\ud83e\\udd32\\ud83e\\udd32 #Carterefe #Machala #Wizkidfc #WizKid\\ud80c\\udcf5 #funnyvideos #lucasdusky #trendingvideos #sabinus #Taiwan https:\\/\\/t.co\\/a4BmMkUray\",\"3177\":\"BREAKING: U.S Speaker Pelosi departs Taiwan amid Chinese threats, military drills https:\\/\\/t.co\\/uagVKfdbEO\\n#Taiwan #China #Pelosi\",\"3178\":\"In Rwanda, public schools are better than private schools by far. Many private schools have closed because of the quality of public schools in the country.\\n#Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #RwandaBirds \\n#helicopter #PeterObiForPresident2023 #Buhari https:\\/\\/t.co\\/o97l2VTsqf\",\"3179\":\"Like for Home Alone \\u2764\\ufe0f\\n Or \\nRetweet for Baby Day Out \\nLet know your favorite movie \\n\\nCardi Khalid #helicopter Italy Daniella God Abeg Essence #Wizkid #Pelosi #Taiwan #BBNaija https:\\/\\/t.co\\/2LOHC6yOJF\",\"3180\":\"Please Save me frm DEPRESSION... I am dying please...My Creditors are after my life\\n\\nPlease come to my aid\\nPlease help me please I beg you with GOD\\n\\nBaba Voss, Niger Republic Obituary\\nSam Omatseye De Jong Taiwan #BBNaijaS7 Emily Emily Leno Rufai\\nGeralt China #Pelosi Tinubu\",\"3181\":\"... @OnorSandy for Governor of Cross River State, 2023. \\n@JJarigbe (Mr. Projects) for Senate, Cross River North. \\nBarr. Godwin Offiono for @HouseNGR, Ogoja\\/Yala Federal Constituency \\nPeter Akpanker for HoR OBO Federal Constituency. #Umbrella is the sure bet. \\n\\n#Taiwan #Cucurella https:\\/\\/t.co\\/RoMv1LAzEx\",\"3182\":\"Dear Cross Riverians, Make no mistake @OfficialPDPNig is the real deal for 2023. After clueless leadership of the @OfficialAPCNg and @MBuhari , 2023 avail us the opportunity to reposition things for Nigeria and Nigerians. @atiku Presidency is more promising than others\\n\\n#Pelosi https:\\/\\/t.co\\/cp64FzEmdM\",\"3183\":\"Pls patronize me o. I sell quality duvets and wall papers. The weather is cold enough you need a duvet\\n\\n#Taiwan #Phyna #BBNaija # https:\\/\\/t.co\\/nXdsbYslPa\",\"3184\":\"Please Save me frm DEPRESSION... I am dying please...My Creditors are after my life\\n\\nPlease come to my aid\\nPlease help me please I beg you with GOD\\n\\nBaba Voss, Niger Republic Obituary\\nSam Omatseye De Jong Taiwan #BBNaijaS7 Emily Emily Leno Rufai\\nGeralt China #Pelosi\\nWorld\",\"3185\":\"Dear Folks, \\n\\nPoverty does not die by fire.\\n\\nBuild a BRAND and sell a PRODUCT.\\n\\nI have nice shoes for sale. \\n\\nDavid Hundeyin\\nArise tv \\nReuben Abati\\nMachala\\n#Taiwan \\n#Pelosi \\n#Solana \\n#China \\n#sabinus \\n#helicopter \\n#BlueJays \\n#Ukraine https:\\/\\/t.co\\/WrVic4OPRi\",\"3186\":\"Success \\n#SuccesQuotes #Taiwan #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BibleBuild #NFTCommunity #NFTGiveaways #Pelosi #China #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #LoveIsland2022 #USA #Ukraine #UkraineRussiaWar https:\\/\\/t.co\\/opacZr7G7c\",\"3187\":\"It's a beautiful day\\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70.\\nSlide into my DM and let's deal so that we can make something exactly like this for you. \\n\\nMan utd, DE Jong #Taiwan #China #Wizkid #nerves https:\\/\\/t.co\\/5WfsWNTfQ2\",\"3188\":\"Hello I know I said I was back before\\nI'm fully back now.\\nFollow and I'd definitely follow you back.\\n#Taiwan #China #sabinus\",\"3189\":\"Hey y\\u2019all, it\\u2019s been a while I\\u2019ve dropped my personal pictures and videos, so I decided to take a day off posting bout crypto projects \\n#China #Taiwan #Solana #sabinus #helicopter #BibleBuild https:\\/\\/t.co\\/UWvwP9LxNe\",\"3190\":\"@JeffreyGuterman @PeterObi Please find attached some @PeterObi #PeterObi4President2023 materials for your use, thank you and best regards. #Taiwan #Pelosi #China #Solana #sabinus https:\\/\\/t.co\\/T9QE10b0yh\",\"3191\":\"Labour party @NgLabour is now verified on twitter. This shows that we are making progress. God Abeg\\ud83d\\ude4f.\\n#PeterObi4President2023 #PeterObiForPresident2023 #peterobi #LabourParty #davidhundeyin #plateau #helicopter #Osimhen #Tuchel #Taiwan #Pelosi #Solana #sabinus #BlueJays #GodAbeg https:\\/\\/t.co\\/1PxDqmYaXY\",\"3192\":\"@dixon_davie They wouldn't dare, bro. Besides, the game of threats and intimidation doesn't faze #Pelosi one bit. \\nTaiwan could bear the brunt of ensuing repercussions but #Pelosi is undoubtedly untouchable.\",\"3193\":\"Because the #ministerforsoupaffairs cares deeply about your health...\\nShe's providing good and quality Soup and Stew just for you!\\nOrder now 08142315364(Call\\/WhatsApp)\\n#ministerforsoupaffairs #Pelosi #Stew #eathealthy #HealthyFood #Health https:\\/\\/t.co\\/ZzXoicSwjA\",\"3194\":\"Nigeria still has a market where trade is by barter system but it is about going into extinction due to neglect. Click to read and share.\\n#Taiwan #Pelosi #China #sabinus #helicopter #Ukraine # https:\\/\\/t.co\\/SLBHGR3jvE\",\"3195\":\"Please read and share our report on how Calabar, one of Nigeria's cleanest cities has turned to a huge expanse of open defecation centre. One shame at a time. \\n#Pelosi #sabinus #helicopter #China #OBIdientlyYUSful https:\\/\\/t.co\\/pXP9ujMIMP\",\"3196\":\"Take advantage of this free class to end your money troubles.\\n\\n\\ud83d\\udc47Join class\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/UnB0AzoKHG\\n\\n#Taiwan #dejong #nigerrepublic #Obituary #Emily #Rufai https:\\/\\/t.co\\/2ZhUtWf8xb\",\"3197\":\"@AT13Oficial \\ud83d\\ude0d\\u263a\\ufe0f\\nWishing you a successful loan spell @SevillaFC_ENG \\u2705\\n#MUFC \\ud83d\\udc4a\\ud83d\\udd34\\ud83d\\udc79 #Taiwan #Pelosi #sabinus https:\\/\\/t.co\\/91z84gia5m\",\"3198\":\"Rufai's issue is Settled. \\nHe has apologised on live TV and was also fined by a Court in Lagos. \\n#Rufai #Taiwan #GodAbeg #arisetv #nigerrepublic \\nhttps:\\/\\/t.co\\/hQIkNcxJDz https:\\/\\/t.co\\/s8oGfNaHs6\",\"3199\":\"We face a lot just to put food \\ud83e\\udd58 on the table...... this country deserves a better leader. #BBNaija #BBNajiaS7 #Chelsea #Khalid #dejong #Deji #Taiwan #Nigeria\",\"3200\":\"Does fashion stinks? #EpitomeStores wants to know\\n\\n#Pelosi #helicopter #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #Ukraine #UkraineRussiaWar #kpssdeikincifetoskandali #oesym #Guerrilla1stWin #wednesdaythought #fashionstyle #Viruman #Piastri\",\"3201\":\"I know say life hard, but take am easy. \\n\\n#lifequotes #Taiwan #OBIdient2023 https:\\/\\/t.co\\/Cync8O1w12\",\"3202\":\"#DirtyNancy as @POTUS45 used to call Nancy #Pelosi. Does someone remember that, is she dirty or clean? prove Donald #Trump wrong...\",\"3203\":\"Why We Dey Vote? EP2 \\nThe six important human rights you go need to consider before you vote.\\nLink for full video: https:\\/\\/t.co\\/WOaKtGkKsD\\nTrend tags (pls retweet.)\\nNiger Republic Nnamdi Kanu Sam Omatseye She's 40 Jaruma Peter Obi #Obidatti2023 #Taiwan Datti #NigeriaDecides2023 https:\\/\\/t.co\\/L1J8YWRhY5\",\"3204\":\"You don't have to be a millionaire to change a life. Even the simplest act of generosity can go a long way in bringing relief to a broken heart.\\n\\n| Sam omatseye | #China | she's a 40 | #Taiwan | Rufai | Nkem Owoh | Modella | #BBNaijaS7 | #Sabinus | khalid\",\"3205\":\"#Pelosi of #US has NOT come in peace in #TaiwanIsNotChina #TaiwanStraitsCrisis. US wants to see China and Russia fall and is ready to start a war outside of US and destroy others' nation serving a battle ground against Chino-Russia! may US accept the fate when separatism is home\",\"3206\":\"#US light the fire in #Ukraine against #Russia by ill-advising #Zelensky into war support. now same #US is lighting another fire in #Taiwan against #China . Proxy-War is exposing the blamers of #Putin who had invaded other nations and destabilizing fast growing economies.\",\"3207\":\"Fellow Nigerians, let's SEET for @atiku as President come 2023.\\nSEET means:\\nS - Security\\nE - Education\\nE- Economy\\nT - True Federalism.\\nAs one we can get it done.\\n\\n@OfficialPDPNig @IAOkowa @Ecowas4atiku23\\n#Pelosi \\n#BBNaijaS7 \\n#BBNaija \\n#Chelsea \\n#AtikuOkowa2023 \\n#Tinubu https:\\/\\/t.co\\/tj6Iz3obts\",\"3208\":\"@OjaDaddy7 ft @Se_unofficial official video for the tune TOXIC is out,Tell a friend to tell a Friend,Video banging hot \\ud83e\\udd75 click on link to watch https:\\/\\/t.co\\/S7kMwohQM4\\n\\n#ToxicByOjaDaddy #Pelosi #helicopter #LoveIsland2022 https:\\/\\/t.co\\/7y4Kb7qmrv\",\"3209\":\"Let me source that mineral for you.\\n@MineralSorcerer is your go-to person.\\nLepidolite site. Available in commercial quantities with analysis report.\\n#Pelosi #UkraineRussiaWar #ChinaTaiwan #AbujaTwitterCommunity #abujaRTBOT #Chelsea #ASUU https:\\/\\/t.co\\/tP7gEqnV9g\",\"3210\":\"Long distance relationships works as long as the four of u are happy \\n\\ud83e\\udd23 #Niger #oesym #famemma15 #Pelosi #relationships\",\"3211\":\"God's grace is IMMEASURABLE, his mercy is INEXHASUSTIBLE, his peace is INEXPRESSIBLE. Every praise be to our God of all comfort.\\nGood morning \\ud83d\\ude0d\\n\\n#Pelosi \\n#PeterObi2023 \\n#wcw\\n#asuu \\n#Ukraine \\n#chiomaonyekwere \\n#GoldMedal https:\\/\\/t.co\\/PWYGApAmQx\",\"3212\":\"You needa service? We find it for you at no cost with just a DM. Easy and convenient #helicopter #WWIII #ASUUStrikeUpdate https:\\/\\/t.co\\/gWlbMkTYBc\",\"3213\":\"China\\u2019s drills violates our sovereignty, amounts to air and sea blockade \\u2013 Taiwan\\u2019s defence ministry https:\\/\\/t.co\\/J8wIhsxckV\\n#Taiwan #China #Pelosi\",\"3214\":\"\\u201cSometimes the questions are complicated and the answers are simple.\\u201d \\n\\nNaughty || Niger Republic || Khalid || #Pelosi\",\"3215\":\"Good morning world\\n\\n\\\"You are to Good to be left behind\\\"\\n\\n#Pelosi #helicopter #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"3216\":\"Reno how market? So after foolishly trying to use Bbn to distract us you ended up being distracted. Mind you this movement is more than a tsunami and not can stop it!! #Datti #saraki Saraki Jaruma Niger Republic #sabinus #BBNaija #Pelosi https:\\/\\/t.co\\/05qgfyGbKI\",\"3217\":\"Joint LIMOSIRIS today for cheap and affordable prices.. #Khalid #Taiwan #Nigerrepublic #Ebubeagu #sabinus #NNPC #Jubril #welcometochelsea #shes40 #Jaruma #Daniella #obituaries #2Naira #EmmanuelUmoh #BeautyWithBrains #Asaba #Shameless #Wizkid #caterefe #Machala https:\\/\\/t.co\\/kwr5SYLOaz\",\"3218\":\"Amazing Art really story\\n\\n He Designed his girlfriend because he is love her so much as museum chair have u ever seen like this.\\n#2Naira #Buhari #Racism #Nigerrepublic #Jaruma #datti #sabinus #ChinaTaiwan https:\\/\\/t.co\\/B1ILEk1MbJ\",\"3219\":\"Make the most out of your stay\\ud83e\\udd42\\n\\nPlease, call 0909 002 4813 or visit our website to see the different packages we have for you. The link is in our bio.\\n\\n#classsuites #hotelsandapartmentsinlagos #apartmentsinlagos #LoveIsland2022 #hotelsinnigeria #accomodationinlagos #Pelosi https:\\/\\/t.co\\/pOOwEAlBEc\",\"3220\":\"Book a ride with us @Limosiris1\\u2026also become a driver and get so many mouth watering benefits #BBNajiaS7 #Pelosi #China #Tielemans #Fulani #ASUU #Roma #shes40 #wordwarIII #Naughty #Cubana #racism #OKOWA #welcometochelsea #Emerson #Bokoharam #Taiwanchina #Taiwan #BBNajia https:\\/\\/t.co\\/svknsySMh6\",\"3221\":\"Under the influence of my own #Amapiano #Pelosi #WonderWoman https:\\/\\/t.co\\/xRALFAqC3I\",\"3222\":\"Hello guys, good morning, I am an OAP, voice actor, music producer and copywriter. Kindly retweet this, you could help me pay my bills this week. Here\\u2019s one of my recent jobs. I make original music for all my jobs to avoid copyright issues. #Pelosi #voiceactor #voiceover https:\\/\\/t.co\\/bN4xCQw4No\",\"3223\":\"Is Taiwan a part of China? A short history of Taiwan https:\\/\\/t.co\\/D5JkwYXMuh\\n#Taiwan #China #Pelosi\",\"3224\":\"NEW TYPE BEAT \\n\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #BadDecisionsTrailer1 #BlueJays #helicopter #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BadmintonMalaysia #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #MONEY #UkraineRussiaWar #kpssdeikincifetoskandali #Wizkid #SABCNews #sabinus https:\\/\\/t.co\\/bINlXjK7kw\",\"3225\":\"For a better NIGERIA you and me dream of.\\n\\n#Yorubas #samomatseye #Taiwan\\n#sabinus #Datti #Obidatti2023 https:\\/\\/t.co\\/dPgOSI5xlD\",\"3226\":\"thought I was in the beach chilling, until I woke up\\ud83d\\ude33\\n\\n#BlueJays #Taiwan #goodmorning #wednesdaythought #MONEY #UkraineRussiaWar #BadmintonMalaysia https:\\/\\/t.co\\/00jFWrl2SL\",\"3227\":\"Residential design: 4 units of 2 bedroom ensuite apartments.\\n\\nLocation: Ogun State, Nigeria.\\n\\nConsultant: Gbenga Adene and Associates \\n\\n#architecture #construction #Taiwan \\n\\nKindly retweet \\ud83d\\ude4f https:\\/\\/t.co\\/iBJGDUp0bv\",\"3228\":\"FOR SALE\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\n\\nSpacious 5 Bedroom Fully Detached Duplex\\n\\nLOCATION: \\ud83d\\udccdOrchid, Lekki\\n\\nPRICE\\ud83d\\udccc: 125million\\n\\nFOR MORE ENQUIRIES\\/INSPECTION\\nKINDLY \\u260e\\ufe0f SAID OR DM : +2348147079900\\n\\ud83d\\udce7: info@tariqproperties.com.ng\\n#Taiwan #China #BadDecisionsTrailer1 #helicopter https:\\/\\/t.co\\/BXH2s1EcF2\",\"3229\":\"\\ud83c\\udfdf Riga FC vs Gil Vicente\\n\\u23f0 18:00\\n#UECLQualification\\n\\nSkonto stadions will host tonight\\u2019s Conference League qualifier between Riga @ 3.36 and Gil Vicente @ 2.10.\\n\\n\\ud83d\\udcf6 Double Chance \\u2705 1.30\\n\\nGet involved here \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #BoostedOdds #HighestOdds #Taiwan https:\\/\\/t.co\\/te9gZGngXO\",\"3230\":\"Pastor Paul Eneche declared full support for Labour Party presidential candidate Peter Obi #BlueJays\\n#China Watch #Pelosi subscribe #MONEY\\n\\nhttps:\\/\\/t.co\\/5xpaEHg8ce\",\"3231\":\"Don't look for a virgin as a wife, Get a woman with good manners. Virginity ends in one night but good manners last forever. #Taiwan #Niger Republic #Emily\",\"3232\":\"@globaltimesnews \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 an 82 year old woman makes you spend billions on military exercises \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\nI would hate to see your response to a 22 year old american visiting #Taiwan \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\",\"3233\":\"Nigeria is when the system favour you, its right, but when it doesn't, its totally the worst govt.#government #Taiwan #BadDecisionsTrailer1 #EndSARS #NigeriaDecides2023 #vote #BBNaija\",\"3234\":\"\\ud83c\\uddea\\ud83c\\uddfa Bodo\\/Glimt vs FK Zalgiris\\n\\u23f0 17:00\\n#UCLQualifiers \\n\\nBodo\\/Glimt\\u00a0and\\u00a0FK Zalgiris\\u00a0continue their pursuit of a place in the\\u00a0Champions League\\u00a0group stage tonight.\\n\\n\\ud83d\\udcf6 Away Team To Score (Yes) \\u2705 1.84\\n\\nBoosted Odds \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #MONEY #Taiwan #HighestOdds https:\\/\\/t.co\\/026mVX7MRE\",\"3235\":\"YOUR PROBLEM IS NOT THE PROBLEM, YOUR REACTION IS THE PROBLEM #Pelosi #China #MONEY #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/ApThT4W86Q\",\"3236\":\"I'm working so hard these days on projects that may not work out \\ud83d\\ude2d life hard...\\n#Live #Taiwan\",\"3237\":\"Music and Art are therapeutic, hence I merged the idea and created an #NFT piece. I will be very happy to have a kind person collect this art\\ud83e\\udd70.\\n\\n#Pelosi #NFTcollections #NFTCommmunity\\n#nftcollector\\nhttps:\\/\\/t.co\\/0L9xVWRVfW via @opensea https:\\/\\/t.co\\/uFYpJZTqZn\",\"3238\":\"Olamide's record label, YBNL, is the best in Africa.\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #MONEY #BBNaija https:\\/\\/t.co\\/p19mVRa2AF\",\"3239\":\"\\\"I don't know if I can marry again... I like my space. Before I had to tone down my craze small... I don't think I'm gonna ever marry again in my life.\\\" - Korra Obidi.\\nNigerian dancer Korra Obidi says she might never marry again after her failed marriage. #Taiwan #Pelosi #BBNajia https:\\/\\/t.co\\/3NV2jjlWqk\",\"3240\":\"Israel DMW and 'My Oga' chilling in Accra Ghana!\\n\\nDavido always taking his people along\\ud83e\\udd70\\n\\n\\ud83d\\udcf8: @isrealdmw \\n#Taiwan #Pelosi #China #CloserWithDonBelle #BBNaija https:\\/\\/t.co\\/HcavykGv4z\",\"3241\":\"\\\"Price of daily bread don rise.\\\" - Timaya\\n\\nPapichulo shares a major concern affecting Nigerians!\\n\\nHow una dey cope?\\n\\n\\ud83d\\udcf8: @timayatimaya \\n#Taiwan #Pelosi #China #helicopter #BBNaija https:\\/\\/t.co\\/nIr7rFMsXP\",\"3242\":\"Mr Ibu's wife starts a search for her father! \\n\\nHer mother is late, she's never met her father and would love to meet him someday.\\n\\nThe role of fathers in our lives can't be overemphasized.\\n\\nMay God grant her heart desires\\ud83d\\ude4f\\n#Taiwan #Pelosi #China #MONEY https:\\/\\/t.co\\/BtUY195DPp\",\"3243\":\"Cum\\ud83d\\udca6in her when she's on Top,& she won't get pregnant\\n\\nWhy:\\u201cGravity\\u201dBro\\ud83d\\ude39\\n\\n#FalzKneeDown #Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #CloserWithDonBelle #MONEY #Ukraine #sabinus\",\"3244\":\"@SpeakerPelosi's visit to #Taiwan is more for her own interests than anything else since her Husband Paul Pelosi has business in Taiwan...\\n\\nBy the way there are demonstrations in Taiwan for the arrival of #pelositaiwan they want him to leave...\",\"3245\":\"Putting A Smile On Strangers Face Part 2 \\u2764\\ufe0f\\ud83d\\udcaa.\\n\\n#Popular\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #CloserWithDonBelle #helicopter #MONEY #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #Ukraine #kpssdeikincifetoskandali #NancyPelosi #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #mbstorm #sabinus https:\\/\\/t.co\\/PX6DaVUJWp\",\"3246\":\"Preeq \\ud83c\\udf46Wake Up Wake Up\\n\\nCollect Your Kpekus Collect Your Kpekus\\n\\nUna Good Morning\\u2764\\ufe0f\\u263a\\ufe0f \\n\\n#sabinus #Jaruma #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Pelosi #LALISA #CloserWithDonBelle #helicopter #MONEY #Ukraine #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #mbstorm #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"3247\":\"@Neatioking @neat_io Now is the time to buy $neat before the price skyrocket. Grab the opportunity now #NEAT #cryptocurrency #Pelosi\",\"3248\":\"@TECNOMobileNG How do you plan making legit extra money in Nigeria?! You can be a volunteer fundraiser with Humanaidng by signing up at https:\\/\\/t.co\\/TZulVTSfrW. #MONEY #parttimejob #womenempowerment #Pelosi #LALISA #CloserWithDonBelle #Ukraine #mbstorm https:\\/\\/t.co\\/qIoG1x8dre\",\"3249\":\"GYB Model Science Sch Adankolo delivered. GYB Model Science Sch Ogaminana to follow, then GYB Model Science Sch Isanlu and Anyigba for the 1ST phase. @OfficialGYBKogi #Taiwan #Obituary #samomatseye #China @OvieNews #speedDatingwithSelema #Pelosi #Education #UNICE https:\\/\\/t.co\\/48GopfIQ7l\",\"3250\":\"Thank you for your anonymous donations to support Blockchain Central\\n \\n#Coinbase\\n#trustwalletpizza #nsfwtwt #Pelosi #Taiwan #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #BadmintonMalaysia #JacksonWang #NancyPelosi #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #cryptomarket #NFTs #blockchain\",\"3251\":\"@DeanForTruth since when do you call #Taiwan \\\"the bear\\\"\\n\\n\\\"We really have no idea why the bear would even consider attacking us. We are merely keeping flies off it's face. We have always supported the bear and it's policies. \\\"\",\"3252\":\"Good morning \\u2763\\ufe0f\\u2763\\ufe0f\\n#China #Pelosi #Asake #goodmorning https:\\/\\/t.co\\/uCudsKYuHQ\",\"3253\":\"How to handle co-leading singing session in live Performances or in the studio\\n-Timing & interpretation\\n-Find duet points\\n-Do call &response in Addlibs\\n-Do complimenting range output\\n-lead when the other follow, vice versa\\n#Taiwan #Pelosi #China #MONEY #Ukraine #wednesdaythought https:\\/\\/t.co\\/KCCNsnv0Bv\",\"3254\":\"There's never a perfect time to get things done. Just do it. Start now!\\n\\n#WednesdayMotivation\\n#China #Pelosi #Taiwan #snackstime #peanutburger #greatpeanuts https:\\/\\/t.co\\/h8OpDyPKzx\",\"3255\":\"Thousands of human beings will be created by the Chinese Government. \\nThey were not conceived by copulation. They will have flesh & blood; they can talk and reason.\\n\\nThey will be sent to #Taiwan as a soldiers! #taiwanwars\\n\\nThis will happen \\ud83d\\udccc\",\"3256\":\"#USA \\ud83c\\uddfa\\ud83c\\uddf8 is always been a puppet of the #Terrorist state of #Israel \\ud83c\\uddee\\ud83c\\uddf1\\ud83d\\udea8\\nUSA poked #Russia \\ud83c\\uddf7\\ud83c\\uddfa to start #UkraineWar \\ud83c\\uddfa\\ud83c\\udde6 \\nNow USA poking #China \\ud83c\\udde8\\ud83c\\uddf3 to to get busy with #Taiwan \\ud83c\\uddf9\\ud83c\\uddfc \\nAll so Israel can be the next #Global #superpower \\nThe role of #America is over https:\\/\\/t.co\\/1kmZspJzt4\",\"3257\":\"R.I.P. OBITUARY. Sam Omatseye a mumu at 61 is a mumulism forever- Wike. Brown envelope journalist part of Nigeria problems we shall eradicate them all #PeterObiForPresident2023 #BBNaija #Rufai #China #Taiwan #Nigeria https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"3258\":\"@DJ_TUNEZ @wandecoal Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3259\":\"@Badboytimz Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3260\":\"@Halcy1023 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3261\":\"@dennisblessed42 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3262\":\"@zeenatmikail2 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3263\":\"@Frontlinestory there is no #chinese sovereignty over #Tiawan, it declared itself an independent state in 1949. \\nif you support it for #dpr\\/#lpr in #Ukraine then you must support it for #Taiwan\",\"3264\":\"@KAFTAN_TV Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3265\":\"@ShehuSani Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3266\":\"@RealMrumaDrive Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3267\":\"@HenshawKate Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3268\":\"@Sabinus1_ Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3269\":\"@ManUtd Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3270\":\"@bbchausa Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3271\":\"@Arsenal Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3272\":\"Life \\ud83c\\udf3b #TrendingNow #model #Taiwan #viral #fyp #grateful #extraordinary #agency #modelingagency #amirate #arabemirate #airhostess #airlines #obident #love https:\\/\\/t.co\\/mroIj14ie6\",\"3273\":\"Ekaro ooo, eyin ara Twitter. \\n\\nRep your own.\\n\\nProudly #OndoEkitiboy \\ud83e\\udd70\\u2764\\ud83e\\udd70\\n\\n#Taiwan #Nigeria #Wizkidfc #African #ibile #Depay #DJKhaled #Taiwan #China #Pelosi #LALISA #WWERaw https:\\/\\/t.co\\/gb3t8xLJMa\",\"3274\":\"@dawisu @MBuhari Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"3275\":\"@DrOlusesan Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"3276\":\"@IAmENISA Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"3277\":\"@UmmyAbdullahi Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"3278\":\"@DavidHundeyin @WestAfricaWeek @MBuhari Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"3279\":\"@capitalcom Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"3280\":\"@vanguardngrnews Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZEd7\",\"3281\":\"@UBAGroup Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"3282\":\"#Taiwan #Taipei \\n\\nXing Ping reaction after Pelosi entered Taiwan........ https:\\/\\/t.co\\/L8esduYBU5\",\"3283\":\"Yo \\nMorris Hills here \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n.\\n.\\n.\\n.\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #helicopter #TUINUANE #BadmintonMalaysia #WWERaw #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #NancyPelosi #HelicopterCrash #kpssdeikincifetoskandali #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/nKjT1dfk9O\",\"3284\":\"His period and his followers \\ud83d\\ude41\\ud83e\\udd14\\ud83d\\ude30 please don't go to see mine \\ud83e\\udee3\\ud83e\\udee3\\ud83d\\ude21 #Taiwan #FolloMe #SoutienBooba https:\\/\\/t.co\\/OwaPX1mvFZ\",\"3285\":\"Who dis ? #Flight24 #Pelosi #military https:\\/\\/t.co\\/9waqiKJ6XC\",\"3286\":\"Young John _DADA cover by me Morris Hills link\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/9NItNsYwPM\\n.\\n.\\n.\\n.\\n.#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #LALISA #NancyPelosi #IndiaWithLaalSinghChaddha #BibleBuild #mbstorm #mbstorm #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BoycottRakshaBandhanMovie https:\\/\\/t.co\\/PPFuzmH34P\",\"3287\":\"@SurinMahan @duandang no more 1.5billion dollars per day for #china if they start a war with #Taiwan\",\"3288\":\"#Pelosi visit to #Taipei: US warships cruise near #Taiwan; #China 2 hold live fire exercises off Taiwan coast\\n\\nThe exercises will include joint air & sea drills missiles test-launches in north, southwest, northeast of Taiwan, long range live firing in ,https:\\/\\/t.co\\/TVZdxlyg5T https:\\/\\/t.co\\/WOAC3Y4qkx\",\"3289\":\"#Taiwan and #China when are you fighting am bored @SpeakerPelosi DM me when you're free\",\"3290\":\"Guess the artist \\n#Pelosi #Machala https:\\/\\/t.co\\/OBdiJp9HTM\",\"3291\":\"STILL ON INTRO\\nI don't know how to start saying plenty just being attentive makes it easier.\\nPc: @EmemEdema1 \\n\\nTinubu StopsellingPi #WWIII Don't Look Up #BBNaija https:\\/\\/t.co\\/PKifp64k9P\",\"3292\":\"Just bring this to the table ,leave the rest for me #Taiwan #tuesdayvibe #Mnakwethu #BBNaija https:\\/\\/t.co\\/YVk6rRhGYx\",\"3293\":\"Build your websites with all the tools you need integrated in one funnel and make the world a better place\\nhttps:\\/\\/t.co\\/k6pXz4KtCA\\n#groovefreedomday #freedomdayevent #freedomday\\n #WWIII #WorldWar3 #WWIILIVE #Taiwan #Pelosi #China #WWIII\",\"3294\":\"GafexianArt\\nWarrior stare\\nMuse: @rihanna\\nPencil on paper\\nHow do you rate it?.\\nPls help share\\n#gafexianzone #gafexianart #Rihanna #Taiwan #Pelosi #China #helicopter #tuesdayvibe #explorepage #explore #ExploreUganda #NationalGirlfriendDay #artists #ArtOfTheDay #ArtistOnTwitter #art https:\\/\\/t.co\\/mI2CAEvgD3\",\"3295\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 6splus\\n\\u26a0\\ufe0fCapacity: 64GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:68K\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n\\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry She\\u2019s 40 china World War III https:\\/\\/t.co\\/k8OQNbybAR\",\"3296\":\"Freestyle \\ud83d\\udcaa\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n#morrishills #morrishillsentertainment \\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #tuesdayvibe #BORNPINK #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8 https:\\/\\/t.co\\/G5tXbMi8JI\",\"3297\":\"Is this true ???\\n\\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #tuesdayvibe #BORNPINK #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/e54sgy8pxo\",\"3298\":\"Say no to drug abuse \\ud83d\\udeab\\ud83d\\ude32\\n#BORNPINK #drugabuse #China #Pelosi #helicopter #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #tuesdayvibe https:\\/\\/t.co\\/qtcJ27cTDc\",\"3299\":\"Why my shakara no go too much \\nCheck me nah fine boy i be \\ud83e\\udd17\\u2764\\u2764\\u2764\\n.\\n.\\n.#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo https:\\/\\/t.co\\/2QbWRdDCYQ\",\"3300\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #Warner #Piastri #Corbyn #Monaco #TheBachelorette #Taiwan #support #Webradio #Cannes #France #Listen #Listennow #Followus #Donate #TrumpTreason #\\u0130stanbul #fanart #Biden #west https:\\/\\/t.co\\/cz3d3iBHCW\",\"3301\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 12pro Max\\n\\u26a0\\ufe0fCapacity: 128GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:493k\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n\\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry She\\u2019s 40 World War III https:\\/\\/t.co\\/Y6uBqjHALV\",\"3302\":\"SHE WAS NICE TRENDING \\ud83d\\ude0e\\nHit link to view on YouTube\\n\\nhttps:\\/\\/t.co\\/0nAHvzGYAu\\n\\n#Tinubu\\n#China\\n#Pelosi\\n#\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\\n#Wizkid\\n#Taiwan\",\"3303\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #Alpine #Donation #helicopter #helpinghand #Help #TailorMade #Tommy #Cina #Taiwan #Pelosi #boss #McLaren #Alonso #Verdi #ayr\\u0131lmazikili #BetterCallSaul #China #crowdfunding #OOTT https:\\/\\/t.co\\/FhfDGunyTi\",\"3304\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 11pro\\n\\u26a0\\ufe0fCapacity: 256GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:293k\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry World War III modella ilebaye https:\\/\\/t.co\\/uDd8WrJ4ea\",\"3305\":\"One of the abductees of the Kaduna train attack, Dr Mustapha Umar Imam who was among the victims released today describes the harrowing conditions at terrorists camp.\\n\\nHe says he was the official doctor in the at camp.\\n\\n#Pelosi\\/#Taiwan\\/#China\\/Obituary\\/#BBNajiaS7\\/#Obidatti023 https:\\/\\/t.co\\/RtVmnAvt1C\",\"3306\":\"GO THE EXTRA MILE (The secret to rising above your contemporaries).\\n\\nThe Chinese | World War III | Over 1.5 | China | Sam Omatseye | ASUU | Chioma Onyekwere | Reno | Canelo | Bobo Chicago | Mr. Peter Obi | Thiefnubu | omo agege | #Cubana | #Beijing | #WWIII https:\\/\\/t.co\\/PBdTHFPCJc\",\"3307\":\"The second best thing to happen to me this year is stumbling on @basket_mouth #PapaBenji series.....damnnn.....I laugh \\ud83d\\ude05 my sorrows away with each episode, give it a try guys you'll love it. \\n#PapaBenji \\n#WWIII\",\"3308\":\"AVengers run it up\\nFollow this account \\n#Pelosi #China #helicopter #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/DjXznjVYU3\",\"3309\":\"Pls help beg Daniel Regha not to go & share those controversial opinions on this China & USA diplomat showdown over Pelosi's Taiwan visit. Let's focus on dealing with bandits & Boko Haram. Let's not bear the wrath of two world powers. #WorldWarIII #ChinaTaiwan #ChinaTaiwanCrisis\",\"3310\":\"@Quicktake And all this for her husband\\u2019s stock deal. We\\u2019ll see what the fallout is\\u2026 #Taiwan #Pelosi\",\"3311\":\"USA \\ud83c\\uddfa\\ud83c\\uddf8 trying to so hard to keep Russia and China busy \\ud83e\\udd23 .\\n\\n#WWIII World War III China https:\\/\\/t.co\\/4o2OIyw7oL\",\"3312\":\"How to make money without a job\\nhttps:\\/\\/t.co\\/NdQQwu4ypZ #money #businessideas #moneymaking #Taiwan #Pelosi #makeoneyonline\",\"3313\":\"Both sex Caucasian puppies for sale. \\n6wks first shot \\ud83d\\udc89 taken\\nPrice180k\\nCall\\/watapp 08064781867\\nWaybill (nationwide)@EkeneUzochukwu1 @AkunneChinyere4 @AmakaVirginia1 @PalmykennelJos @richmoh600 #Taiwan #bangalorerains #China https:\\/\\/t.co\\/d3aa5a3f0V\",\"3314\":\"After God fear woman I use God beg u \\ud83d\\ude4f\\n\\n#Taiwan #BBNaijaS7 #BBNajia #World War III #doggy\",\"3315\":\"VIDEO: Pastor Visits Native Doctor In His Shrine For A Charm For Her Church\\n\\n#China #Pelosi #ASUUstrike #USA\\nRead more \\u300bhttps:\\/\\/t.co\\/PtryLuVyTO\",\"3316\":\"I\\u2019m sure they will sell weapons to Taiwan too \\ud83d\\ude14\\n\\n#Taiwan #Pelosi World War III\",\"3317\":\"@CGMeifangZhang America must now accept that it can no longer coerce anyone, no matter what country they are #Taiwan\",\"3318\":\"Law of the Lantern is rise n lift others! Only u can\\u2019t do the convoy my brr\\ud83d\\ude43\\ud83e\\udd32 #China #Taiwan #HappyNewMonth #ASSU\",\"3319\":\"Announcement \\ud83d\\udea8\\ud83d\\udea8\\ud83d\\udea8\\n\\nVery excited to announce my next single...\\n\\nMore details soon just watch this space \\n\\n#brend #Taiwan #Pelosi #helicopter https:\\/\\/t.co\\/YMztRiBL5u\",\"3320\":\"@Cristiano meet your youngest fan and mentee. He is 2 years old. \\n#WorldAthleticsChamps #WorldWarIII #China #PeterObi #Taiwan https:\\/\\/t.co\\/WKf1KfCP3I\",\"3321\":\"Crazy things are happening\\ud83c\\udf0d\\n\\n#sheggzandbella #China #WWIII #Wizkid #shes40 #Machala https:\\/\\/t.co\\/g8U8HCWEfs\",\"3322\":\"The US helped Sisi stage a military coup against Egypt's democratically elected leader... Egypt is now under a dictatorship, which the US supports. What are you talking about? #Pelosi #uspoli #Taiwan https:\\/\\/t.co\\/GfhcyqA7xv\",\"3323\":\"\\ud83e\\udd14 A French author debunks #Pelosi's trip to #Taiwan among other things. https:\\/\\/t.co\\/8HHW4wyIgC\",\"3324\":\"The former super eagles player Christian Obodo just confirmed he is Obidient. #PeterObi #PeterObi2023 #PeterObiForPresident2023 #Reno #Pelosi #Tinubu2023 https:\\/\\/t.co\\/mcz8JzpAuh\",\"3325\":\"@carterefe__ Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvN6PV\",\"3326\":\"@lawrencekitema Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3327\":\"@delick_manzi @sammiemanini1 @bamwinejnr @MrrChapter @LilyNampa @CanaanArinda @ArthurMuhwezi12 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3328\":\"@instablog9ja Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3329\":\"Main chick: I'm sorry I can't make it, it's raining \\nSide chick: \\ud83d\\udc47\\ud83d\\udc47\\nSide chicks are one of the most reliable individuals.\\n\\nChina\\nObidiots\\nOver 1.5\\nCubana\\nWorld War III\\nObituary\\nSimeon Ekpa\\n#Davido \\n#EndSARS \\n#StopSellingPi \\n#Taiwan \\n#Pelosi \\n#China \\n#helicopter https:\\/\\/t.co\\/StLsLPAdY2\",\"3330\":\"Oyo State TESCOM Led By Akinade Alamu Defrauds NYSC Members Withholds State Allowance for 4 Months\\n\\nhttps:\\/\\/t.co\\/RjAIU2Hqlb\\n\\nModella China Obituary #Pelosi #Obidiots @oyostategovt\",\"3331\":\"@gyaigyyimii Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvN6PV\",\"3332\":\"There is a riot against the government in South Africa.\\n\\nRoads were blocked, fires and cars burned in Tembisa because of exorbitant electricity rates and the rising cost of living. Several demonstrators were killed by police.\\n#SouthAfrica #Taiwan #Pelosi #China #GistLoverStory https:\\/\\/t.co\\/LG5PfsgYol\",\"3333\":\"Near the Grand Hyatt Hotel, where Pelosi was staying, a group of people disgruntled by her visit gathered. The sign read, \\\"Warmonger Nancy Pelosi: We Don't Need You, We Need Peace.\\n#Pelosi #NancyPelosi #China #helicopter #taiwanischina #Taipei https:\\/\\/t.co\\/SiynnzbSTC\",\"3334\":\"Freestyle for my FAMZ !!\\n#NancyPelosi #Pelosi #Freestyle #RAP #newtrend https:\\/\\/t.co\\/I0oRy79J6S\",\"3335\":\"The situation at Taipei airport as we speak.\\n\\nJournalists and locals with placards are waiting for the speaker of the U.S. House of Representatives, and Pelosi is also waiting outside the Grand Hyatt Taipei, where she plans to stay.\\n#Pelosi #China #taiwanischina #NancyPelosi https:\\/\\/t.co\\/DMOVY73bxJ\",\"3336\":\"The video is believed to be from the port city of Xiamen in Fujian Province, closest to Taiwan. #China #taiwanischina #TaiwanIsaCountry #Pelosi #NancyPelosi #helicopter #Trending #TrendingNow https:\\/\\/t.co\\/3keenBlNEu\",\"3337\":\"Nobody fine pass me \\n#Pelosi #China #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/09SipiAiwx\",\"3338\":\"Hello Twitter \\ud83e\\udd17\\n\\nI drew H.E @PeterObi using charcoal pencils under 25 hours.\\n\\nPlease support me with RETWEETS.\\ud83d\\ude4f\\ud83e\\udd7a\\n\\nMr. Peter Obi #OBIdient2023 Obituary Davido #wizkid China Over 1.5 Burnaboy Abuja-Kaduna Cubana Rema ASUU Bella #OBIDIENTS Sheggz Money Racism #helicopter #Pelosi https:\\/\\/t.co\\/pX0MuTq0lp\",\"3339\":\"Activists from pro-Iranian Shiite organizations went to downtown Baghdad to demonstrate in defense of law and order. Police used water cannons against them. \\n\\n#Iran #Baghdad #Gistlover #Pelosi #China #NancyPelosi #Trending #TrendingNow https:\\/\\/t.co\\/4GXSetMpTG\",\"3340\":\"This seems to be the latest trendy song, I also vibes to it \\ud83e\\udd0f\\n\\nSaheed Balogun Rufai #Taiwan #BBNajiaS7 #BBNaijaSeason7 https:\\/\\/t.co\\/JY1Tr0L5rC\",\"3341\":\"@intelfin_global platform shows a greater opportunities to all traders to earn even in a bear market.\\n@intelfin_global #airdropalert #BSCGems #Crypto #Giveaway #NFTGiveaway #NFTAirdrop #NFTCommumity #NFTfamily #NFTProject #Metaverse #GameFi #P2E\\n #BSC #Pelosi #Web3 #Crypto. https:\\/\\/t.co\\/9viU1HDss1\",\"3342\":\"Our client needs a female business developer who has a reasonable experience in e-commerce and sales.\\n\\n- Must be very fluent\\n- Must look very presentable and smart\\n- Must be highly proactive and ready to take decision\\n\\nSalary: 150k\\nLocation: Lagos\\n\\nBenefit: Pension, HMO\\n\\n#Pelosi\",\"3343\":\"People of plateau\\n2023 gubernatorial race \\nIt's time\\n#Pelosi #NancyPelosi \\n@nentawe1 iss our choice https:\\/\\/t.co\\/szWcNq2iac\",\"3344\":\"#Taiwan\\nDoes Taiwan province belongs to China ???\",\"3345\":\"Emotional Damage\\ud83d\\ude02\\n#China #Pelosi #helicopter #BBNaija https:\\/\\/t.co\\/vrjqi5d14o\",\"3346\":\"@CGMeifangZhang China is well within its rights. It should always defend its people & territories. \\n#Taiwan\",\"3347\":\"Savings or current?\\n\\n#Pelosi #China #AbujaTwitterCommunity\",\"3348\":\"@RT_com Nancy Pelosi is willing to risk starting a war with China so that she can make massive profits on her husband's insider trading deals on computer chips. #Taiwan\",\"3349\":\"Music For The #Summer #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\\n #kpssdeikincifetoskandali #CharlotteXRica #\\u0e1e\\u0e34\\u0e28\\u0e27\\u0e32\\u0e2a\\u0e06\\u0e32\\u0e15\\u0e40\\u0e01\\u0e21\\u0e2a\\u0e4cep10 #Taiwan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Pelosi #\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08 #\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08 #oesym #China #JacksonWang #explorepage #explore #indiemusic \\n\\nNow Out Worldwide\\ud83c\\udf0f https:\\/\\/t.co\\/2liLRM6tlC\",\"3350\":\"Feminist when they realize a woman will cause World War III \\nChina || WWII || #XiJinping https:\\/\\/t.co\\/AhTJ0ySCrx\",\"3351\":\"Research shows that just thinking about a Plan B\\ncan make it less likely\\nthat you'll achieve Plan A.\\n#Pelosi \\n#psychologyfact https:\\/\\/t.co\\/Raxmh0ZXgW\",\"3352\":\"Soon you wil come back and say I told you so \\n\\n#heartbreakonaweekend ep soon #yungskizzy #promphizy #Taiwan #China #YEEZYDAY #helicopter https:\\/\\/t.co\\/5JBEDQOcD7\",\"3353\":\"Amazing Summer Time for building digital safety awareness for kids in Kano.\\n#digitalsafety\\n#internetsafety\\n#technology\\n#edunovativeconceptng\\n#smartclicksng\\n#Taiwan #Pelosi #China #JacksonWang https:\\/\\/t.co\\/8Xu2ljAYTk\",\"3354\":\"This princess needs no prince fr\\ud83d\\ude02#Pelosi #helicopter #JacksonWang https:\\/\\/t.co\\/aQw7WbalFJ\",\"3355\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/LCSaSYlEaZ\",\"3356\":\"Hello there! Elite Star calling you to be part of our amazing projects that prevent child abuse. Come along and discover more about this topic on Instagram, facebook and LinkedIn!\\nWe are @NGOELITESTAR (Elite Star Foundation)!\\n#Taiwan #Pelosi #China #WorldWar3 #Africa #Italy\",\"3357\":\"In a world full of trends, I want to remain a classic\\ud83d\\ude29#Taiwan https:\\/\\/t.co\\/lp2xxqa7u3\",\"3358\":\"These days we should be earning and talking in dollars \\ud83d\\udcb0\\n\\nForex has been on your mind but you don't know where and how to go about it \\ud83d\\ude1e\\n\\nLearn the basics and technical analysis of Forex in the group below \\ud83d\\udc47\\ud83c\\udffc with just $40\\nhttps:\\/\\/t.co\\/pHFT0TbZNT\\n\\n#Taiwan #bbnaija #ASUU\",\"3359\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0|| World war III || Peter Obi || #Pelosi #Taiwan https:\\/\\/t.co\\/tqxgegF4it\",\"3360\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"3361\":\"Using Obituary on the said headlines is very wrong, I'm a journalist \\n\\n#Taiwan #helicopter #Lekki #Pelosi\",\"3362\":\"@KarenBassLA @KamalaHarris You're honestly not alone on this topic. I have never been impressed by any leader like those duo since assumption of office. I prayed God's strength for them to do more for their nation. #Pelosi #Biden\",\"3363\":\"Say no more\\nThe structure has been erected all over.\\nWorld War III ASUU #Taiwan #Pelosi https:\\/\\/t.co\\/900QcCpy8i\",\"3364\":\"Iphone X very clean and sharp \\nStorage:256gb \\nPrice:145k \\nBattery:78%\\nFace ID : perfect \\n\\nPlease retweet \\u2764\\ufe0f\\ud83d\\ude4f\\ud83c\\udffb\\n\\nPhil jones lingard Dean Henderson Renato sanches Odoi #BBNajiaS7 #Taiwan https:\\/\\/t.co\\/xjsA30und4\",\"3365\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#Pelosi #Taiwan #China #JacksonWang #helicopter #YEEZYDAY #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/tqxgegF4it\",\"3366\":\"I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones. - Albert Einstein \\n\\n#WWIII #WorldWar3 #Taiwan #Pelosi #China #WW3 https:\\/\\/t.co\\/crUGc0k2UF\",\"3367\":\"Wow, what's happening for crying out loud. World War III\\n#WWIII https:\\/\\/t.co\\/6DEiwtv3NU\",\"3368\":\"Trending Video of Police Officer Beating Man With A Machete In Cross River\\n The video of a police officer assaulting a yet-to-be-identified man by hitting\\u2026\\n\\nhttps:\\/\\/t.co\\/y1caKEYuCw\\n\\nASUU #Taiwan #helicopter Racism IPOB #Datti\",\"3369\":\"Youths in Aba Stage Protests Demanding an End to Ebubeagu Militia in Igboland (photos\\/video)\\n Youths in Aba in Abia state this morning took to the streets to demand\\u2026\\n\\nhttps:\\/\\/t.co\\/NcqTO5kOSy\\n\\nASUU #Taiwan #helicopter Racism IPOB\",\"3370\":\"\\u2757\\ufe0fHere's a military comparison of China & Taiwan\\n#Pelosi #Taiwan #helicopter https:\\/\\/t.co\\/bdasAJa1dE\",\"3371\":\"High taper fade so clean\\ud83d\\udd25\\ud83d\\udc88\\n\\n#Pelosi #helicopter #chatsekscerita #JACKSONWANGxCartierTH #tuesdayvibe #YEEZYDAY #NCT127 #kpssdeikincifetoskandali https:\\/\\/t.co\\/CIOjlFCbwK\",\"3372\":\"Nancy Pelosi: Why I\\u2019m leading a congressional delegation to #Taiwan \\nWill Taiwan become China's #Ukraine\\ufe0f\\nhttps:\\/\\/t.co\\/IWCxu2HLYp\",\"3373\":\"My sweet twins, am so blessed to have you in my life\\n\\nI want to thank you for all your love, you are my best friend I couldn\\u2019t have made it this far without you. I love you\\ud83d\\udc9c\\n\\nWe Rep August 06\\n\\nSignature pant @atwinsdesigns\\n#aneketwins #tuesdayvibe #atwinsdesign #Pelosi https:\\/\\/t.co\\/ehyeapFYxO\",\"3374\":\"Safari crafted by @mickkycutz\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\nShop the look \\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\n\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n#Taiwan #kpssdeikincifetoskandali #BBNaija7 #YEEZYDAY #ambode https:\\/\\/t.co\\/kyfodThMnS\",\"3375\":\"@MTNNG I beg you in the name of whatever you hold dear, stop insulting me!!\\n\\n#WWIII #SaheedBalogun #Taiwan https:\\/\\/t.co\\/gmg5Y1glGZ\",\"3376\":\"Could the Visit of US Speaker of the house #NancyPelosy blow up the flames of the already begun WW3?\\n\\n#Africa, #China, #Taiwan and #United States to suffer the consequences of one woman's decision \\ud83d\\ude2a\\ud83d\\ude25\",\"3377\":\"Top: #3,000\\nSkirt: #3,500 \\nBoth piece from lani_piece\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\n#China #Taiwan #tuesdayvibe https:\\/\\/t.co\\/xwkwF6pzK4\",\"3378\":\"FOR SALE\\n\\n\\u2666\\ufe0f An Uncompleted 6bedroom Duplex Mansion On a Land Measuring *1039sqm* in a Gated & Serene Estate.\\n\\n\\ud83d\\udccdLocation: Abatakan Estate, Ojoo, Ibadan (Just 5mins Drive From Ojoo Roundabout)\\n\\nTitle: Red Copy Survey, Approved Building Plan & Agreement\\nPrice: \\u20a630million #Taiwan\",\"3379\":\"Why is Hermes trending everywhere?\\n#WWIII\",\"3380\":\"Waiting for earnings on\\n$EBAY $MP $PLTR $RBLX\\n$ORGN $PYPL $CLX\\n\\nLet's see if anything happens with this #Pelosi #Taiwan incident\\n\\nIf I don't post anymore you know what happened LOL\",\"3381\":\"#Taiwan fires warning shots at #China Air Force jets\",\"3382\":\"Pope Francis said\\\" whoever approaches the church must find open doors and not fairs of faith\\\"\\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha https:\\/\\/t.co\\/hR4kZxxeQH\",\"3383\":\"In case you ever wondered how big an eagle\\u2019s talons are. \\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha \\n#Lekki \\n#WizKid\\ud80c\\udcf5 \\n#chatsekscerita https:\\/\\/t.co\\/rOWH1F4sUj\",\"3384\":\"The idea is to die young as late as possible, live smart!\\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha \\n#Lekki \\n#WizKid\\ud80c\\udcf5 \\n#chatsekscerita https:\\/\\/t.co\\/4gnSBIXGVm\",\"3385\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#Taiwan #Taiwan #Pelosi #China #USA https:\\/\\/t.co\\/tqxgegF4it\",\"3386\":\"Cheers\\ud83e\\udd42 to new blessing in this new month #Pelosi happy new month https:\\/\\/t.co\\/b6J542Frck\",\"3387\":\"Always grinding \\ud83d\\udcaf#helicopter #Taiwan #WWIII #tuesdayvibe #BBNajiaS7 https:\\/\\/t.co\\/UJOaoSnhH4\",\"3388\":\"\\u201cI do not know with what weapons World War III will be fought, but World War IV will be fought with sticks and stones.\\u201d \\u2013 Albert Einstein.\\n\\n#WWIII\",\"3389\":\"Meanwhile the KYC passing rate of Chinese Pioneers is only around 1%-5% of the domestic Recorded. Once 80% of Chinese migrate to mainnet, the global barter market will explode. #PiNetworkUpdates #Pinetwork #Pionners #Taiwan #Stopsellingpi\",\"3390\":\"IPHONE 12 PRO MAX \\n\\n\\u2705STORAGE:128GB \\n\\n\\u2705PRICE: N500,000\\n\\n\\u2705UK USED \\n\\n\\u2705Dm\\/Call :07032655719 \\n\\n\\ud83d\\udccdKADUNA\\n\\nDelivery Nationwide.\\n\\nMbaka | Obidients | \\\"Sam Omatseye | Onitsha | \\\"World War III | #Tinubu | #Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 Reno Abati https:\\/\\/t.co\\/1CoGL7BvNu\",\"3391\":\"IPHONE 12 PRO MAX \\n\\n\\u2705STORAGE:128GB \\n\\n\\u2705PRICE: N500,000\\n\\n\\u2705UK USED \\n\\n\\u2705Dm\\/Call :07032655719 \\n\\n\\ud83d\\udccdKADUNA\\n\\nDelivery Nationwide.\\n\\nMbaka | Obidients | \\\"Sam Omatseye | Onitsha | \\\"World War III | #Tinubu | #Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 Reno Abati https:\\/\\/t.co\\/DCUApG0DFj\",\"3392\":\"RIP \\ud83e\\udea6 Wakye \\ud83d\\ude4f\\ud83c\\udffd\\n\\n#Pelosi #tuesdayvibe #OneMuzikGh #OneMuzikGhHype https:\\/\\/t.co\\/aQs9X4makk\",\"3393\":\"Footwear concept\\n#Taiwan #tuesdayvibe #GoldMedal #industrialdesign #Internshipopportunity #conceptart #productdesign #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #designer https:\\/\\/t.co\\/cVic8gLlWa\",\"3394\":\"The epic session just wrapped #rethinkandgrowrich moderated by @PaulOMahony this marks my journey to financial freedom #taiwan \\ud83d\\ude00\\u270c\\ufe0f\\ud83d\\udcbc Lets GOOO. https:\\/\\/t.co\\/ZpFgTAF0PU\",\"3395\":\"which means they fall back in their studies and often drop out of school.\\n#hausas #SamOmatseye #worldwarlll #XiJinping #CaridadCharityFoundation #Tinubu #Russia https:\\/\\/t.co\\/QzuQjORJZR\",\"3396\":\"What will China do to save face? They can't be seen to Sabre rattle only.. #Pelosi just stuck a finger in their nose #China #Taiwan\",\"3397\":\"As an OBIdient or patriotic and concerned Nigerian, how many persons were you able to get to register for PVC? Be honest\\n\\n#Obidatti023 #Taiwan\",\"3398\":\"Boys: \\nmy pull out game is A1 after seeing the pregnancy test\\n\\n#Taiwan worldwarIII #China https:\\/\\/t.co\\/hw24ZmRrCM\",\"3399\":\"Taiwan : will you stay ?\\n\\nUS :\\n\\n#XiJinping #Taipei #WWIII https:\\/\\/t.co\\/GJ1GzU7jGV\",\"3400\":\"@ILRUSSO1 Chinese invasion is imminent. I believe Taiwanese have been receiving distrubing intelligence from the US on China's buildup. This development has induced the frequent drills held in Taiwan. Hmmm!! God save our world. #WWIII\",\"3401\":\"Be shameless about your craft. \\n\\nYou will not labour in vain.\\n\\n#BeautyWithBrains \\n#cubana \\n#Tinubu \\n#Pelosi \\n#Taiwan \\n#China https:\\/\\/t.co\\/7RaExlFZdy\",\"3402\":\"@SpeakerPelosi arrived in Taiwan.\\n#Taiwan \\n#WorldWarIII \\n#US \\n#China https:\\/\\/t.co\\/ivpyHUQNnb\",\"3403\":\"@WSWS_Updates she was invited so it would be an insult to #Taiwan if she did not go and they might declare war on #US. we could not risk that, #china would be easier than #russia is to #Ukraine to beat https:\\/\\/t.co\\/QUxG0FexRP\",\"3404\":\"@RegimeChangeUS pay attention, #putin invaded #Ukraine with his barbaric army of murderers, castrators and rapists and if #china silly as a wheel to invade #Taiwan, it is not #US fault.\\n#Pelosi was invited, so what if she went\\n\\n#US has NOT invaded anyone in months https:\\/\\/t.co\\/cDAteuAkvW\",\"3405\":\"@firstladyship OBIdient Comrade Well Spoken #Taiwan #China #BBNaija #BBNaija7 #BBNaija7 #BBNaija2022 https:\\/\\/t.co\\/zkX2Sbg0bN\",\"3406\":\"US : WE ARE WITH YOU \\n\\n#WWIII https:\\/\\/t.co\\/6pzyCrCJWe\",\"3407\":\"@SpeakerPelosi @aaakhigbe Thanks Nancy! I am no fan yours, since I largely subscribe to Bernie's democratic socialism especially in health care, while still being a supporter of capitalism. However, I am advocate for democracy and freedoms. Thanks for standing up to the bullies. #Taiwan!\",\"3408\":\"Fight Videos You Missed\\ud83e\\udd4a\\nNever mess with an angry woman\\ud83d\\udcaa\\ud83d\\udd25\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa #helicopter https:\\/\\/t.co\\/ibD6jbcgbc\",\"3409\":\"Fight Videos You Missed\\ud83e\\udd4a\\n\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa #helicopter #SuperTuna_Jin #tuesdayvibe https:\\/\\/t.co\\/XigzZJDjZT\",\"3410\":\"it's cool to pocket 5m and support who ever one wants. this is democracy. But remember 'the country our fathers abused yesterday is taking its revenge on us currently & d country we abuse today will take its revenge on our children'. \\n#Taiwan\\n#China \\n#Obidatti023 https:\\/\\/t.co\\/ROTOrsvY71\",\"3411\":\"Videos You Missed\\ud83e\\udd4a\\nThis girl child will definitely beat me to death\\ud83d\\ude2d\\ud83c\\udfc5\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa https:\\/\\/t.co\\/65H2indrwE\",\"3412\":\"Fight Videos You Missed\\ud83e\\udd4a\\nAbsolutely wow \\ud83d\\ude32\\nImagine dying from being stupid\\n\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette https:\\/\\/t.co\\/wGq0ra4JHP\",\"3413\":\"New @mreazi tomorrow #personalbaby am ready\\n#ASUUstrike #ASUUStrikeUpdate #Taiwan #Pelosi #China #Wizkidfc #Machala\",\"3414\":\"Proscrow is coming with Real Estate solutions.\\n#Taiwan #ASUU #China #BambamSorry https:\\/\\/t.co\\/ut4fE6Z6FA\",\"3415\":\"The ball is in your hand, #China\\n#pelositaiwan #Taiwan\",\"3416\":\"Wow \\ud83d\\udc40. The world is a crazy place at the moment. #Taiwan #PelosiVisit https:\\/\\/t.co\\/odR1me7EVX\",\"3417\":\"#Pelosi china president has said they soon booming Taiwan \\ud83c\\uddf9\\ud83c\\uddfc down after the visit of pelosi hope it won't lead to World War III \\ud83d\\ude4f\",\"3418\":\"In Nigerian Politics as of today, there is a name above every other name. That at the mention of Peter Obi @PeterObi, every mouth must talk. However, either criticism or praise, we're on our way to Presidency. #GetIntoAsoRock\\n\\n#Akure #Pelosi #China Saheed Balogun Rescue Nigeria https:\\/\\/t.co\\/1omjHcInPM\",\"3419\":\"Human Rights Watch says that Kenya's failure to hold police accountable for allegedly killing dozens after the 2017 elections heightens the risk of officers abusing their power.\\n#China #Pelosi https:\\/\\/t.co\\/mo8Q7t3wg2\",\"3420\":\"@accessbank_help you guys are the worst bank on earth! I literally cant do anything with my bank account! I can\\u2019t recharge or make transfers and yet you debit me for nothing without my notice! I wont stop calling you out everyday! #Pelosi #China #dontpayuk #Guerrilla1stWin\",\"3421\":\"World War III: \\\"China threatened to start World War III if Nancy Pelosi goes to Taiwan. Well, now Pelosi is currently in Taiwan. Is China just bluffing?\\\" \\n\\n#WWIII #Pelosi #China\",\"3422\":\"#WWIII: are China and US ready? \\n\\n#Pelosi #China #taiwanwar\",\"3423\":\"#BREAKING #China army will conduct \\\"important\\\" military exercises and training activities, including live-fire drills in six regions surrounding #Taiwan, from Thursday to Sunday, according to local media https:\\/\\/t.co\\/QmblcXb8XR\",\"3424\":\"China should just give up on #Taiwan @ChineseEmbinUS\",\"3425\":\"Many APC members supporting Tinubu are secretly campaigning for Peter Obi.\\n\\nYou know some of them already.\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"3426\":\"Investments come and go, the market goes up and down, economies improve and crash.\\n\\nThe world is always handing you opportunities of a lifetime, everyday of your life, but all too often we fail to see them. But they are there.\\n\\n#Taiwan #China #Olaidemarketing\",\"3427\":\"What do APC & PDP supporters have against Peter Obi? \\n\\nNothing! Absolutely nothing! \\n\\nThe best you can hear is \\\"His supporters are rude\\\".\\n\\nYou left the man to hold his supporters? Are you alright?\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"3428\":\"In need Crowdfunding\\/Fundraising Setup and Manager who will help you get your crowdfunding campaign in front donors, people who will donate to your crowdfunding? https:\\/\\/t.co\\/ojVDaqT6Ck #Foreignfundingcase #Taiwan #\\u0635\\u0627\\u062f\\u0642_\\u0648_\\u0627\\u0645\\u06cc\\u0646_\\u0639\\u0645\\u0631\\u0627\\u0646_\\u062e\\u0627\\u0646 #AlQaeda #jhope #Biden #kabul #Ayman #PMLN https:\\/\\/t.co\\/qSXunCgTi2\",\"3429\":\"You will not know the evil that took place under Buhari and APC leadership unless we show it.. indeed \\\"Rescue Nigeria\\\" #PeterObiForPresident2023 #Pelosi #China #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/khWHTKmnVb\",\"3430\":\"After all the threats, China does nothing to the plane carrying #NancyPelosi US speaker to #Taiwan. China is a weak country https:\\/\\/t.co\\/mymu8Wotml\",\"3431\":\"Ifb follow me\\n#Pelosi #JacksonWang\",\"3432\":\"If PDP opposed the APC government as they are doing #PeterObi2023, APC wouldn't have had it so easy. They failed as an opposition.\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"3433\":\"Another woman \\ud83c\\uddf3\\ud83c\\uddec!!!\\n24 Year Old Miracle Izuchukwu Set To Make History As Youngest Female Pilot For Commercial Airlines. Just wow!!! #Trending #Pelosi #helicopter #JacksonWang #Obidatti023 #VoteThemAllOut2022 https:\\/\\/t.co\\/XRhDOqdGKn\",\"3434\":\"Music is pure Art Definitely\\u2764\\ufe0f\\ud83d\\ude01\\n\\n#Pelosi #politics\",\"3435\":\"A lot of things going on today\\n#China #Taiwan #Pelosi https:\\/\\/t.co\\/Ew5eZ1Fkee\",\"3436\":\"Breaking News A plane carrying speaker of congress Ms Nancy Pelosi lands in Taiwan #Taiwan #Pelosi #China https:\\/\\/t.co\\/Nf5jmVAtUC\",\"3437\":\"Finally... The ball is in the PRC's court now. \\n\\nThe world awaits the big surprise from Xi. #Pelosi #Taiwan https:\\/\\/t.co\\/BKKeyAxwNd\",\"3438\":\"With all the threat and videos speaker Pelosi has landed in #Taiwan \\ud83d\\ude02\\ud83d\\ude02\\nNow what?\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\",\"3439\":\"Girls are seriously complaining about this pic, but why\\n\\n#Pelosi #China #BBNajia #BBNaija #BBNaija7 #helicopter https:\\/\\/t.co\\/OJmnM0SGwE\",\"3440\":\"Tinubu may have genuinely helped people who feel they owe him. But, if you truly love this man, you know he's not fit to rule a nation.\\n\\nHe really needs to look after his health.\\n\\n#Helicopter BRT Lane Khalid #Pelosi #Taiwan Shettima #China ASUU Big Bella\",\"3441\":\"A must watch in order to get it right in 2023 election\\n#Taiwan #China The Chinese https:\\/\\/t.co\\/s6lXtlwBZP\",\"3442\":\"So #Pelosi landed safe and sound in #Taiwan. What\\u2019s next, #China? I love international politics\",\"3443\":\"Ladies And gentleman everything will be safe Nancy Pelosi arrived in Taiwan Airport safely so don't panic \\nI hope you're flight will be safe \\ud83d\\ude02\\ud83e\\udd23 \\n#Taiwan\",\"3444\":\"Touchdown #Pelosi https:\\/\\/t.co\\/Isv0fNWq2f\",\"3445\":\"The more difficult the victory, the greater the happiness in winning.\\n\\n#heran #dontpayuk #Pelosi #Taiwan #China #JacksonWang #NancyPelosi\",\"3446\":\"#Xi painted himself into a corner with all the BS gungho talk, so now he will have to do something, probably shoot down a civilian airliner #pelosi\",\"3447\":\"Sometimes the smallest things take up the most room in our hearts\\n\\n#Hermes #Pelosi #Taiwan #China #JacksonWang #dontpayuk #helicopter #amaka #phyna #bbnaija\",\"3448\":\"The #chinese airfreight plane went in before SPAR19 probably a trojan horse, nukes, bio #pelosi\",\"3449\":\"More than 2 Lakh people are tracking US air force plane SPAR19 carrying Nancy Pelosi. \\nEveryone is curious whether Pelosi Plane land in Taiwan or not.\\n\\n#NancyPelosi #Taiwan https:\\/\\/t.co\\/xIXhJMAMYn\",\"3450\":\"In 2019, I desperately supported Atiku because we were between the Devil and the Deep blue sea, and I was hoping on the presence of Obi being a light that could shine even in the deepest sea.\\n#WWIII #Wike #China #Taiwan #PeterObiForPresident2023 #BBNaija #Tinubu #Reno\",\"3451\":\"Tensions are brewing between the United States and China over #Taiwan's Independence.\\n\\nChina has said things could go worse if US House Speaker Nancy #Pelosi proceeds on her scheduled visit to Taiwan. \\n\\n#China to Pelosi, \\\"You will perish over Taiwan\\\"\",\"3452\":\"#US air force authorized to open fire in case of any Chinese interference on plane carrying #Pelosi\",\"3453\":\"#BREAKING US military aircraft enter #China airspace escorting #NancyPelosi in to #Taiwan\",\"3454\":\"No one should ever expect me to run away from this country because I have no other country than Nigeria. This country must work. Say no to bad leadership. #Pelosi #Wike #peterobi #atiku #Reno #gistlovers\",\"3455\":\"My name is Victor Joseph, but calling me Valiant is cool. I'm a software developer, got a job with Turing securing a job with a US BASED COMPANY. \\n\\n\\ud83d\\udc47open Thread\\ud83d\\udc47\\n\\n#PeterObiForPresident2023 Rescue Nigeria Nnamdi Kanu #Wike #Taiwan https:\\/\\/t.co\\/wHFRX1347o\",\"3456\":\"#Chinese Air Force flying towards \\ud83d\\ude4f#Taiwan \\nSource @georgegalloway\",\"3457\":\"It's good to be proud of the source that pays your bills..\\nDyor on @Meta_force_TEC \\nhttps:\\/\\/t.co\\/SFtzboAJQc\\n#Taiwan #Wike #cubana \\n#PeterObiForPresident2023 https:\\/\\/t.co\\/U2R14Y4sei\",\"3458\":\"She really wants to create wwIII\\n#nancy\\n#Pelosi \\n#WWWIII\",\"3459\":\"I can\\u2019t believe my eyes \\ud83d\\ude33\\ud83d\\udc94 \\n\\n#Machala #Pelosi #Trending https:\\/\\/t.co\\/qSszhovah4\",\"3460\":\"Join us on Saturday 6th August for our Walk For Health!!!!\\nThe last one was so much fun, this one promises to be better\\ud83e\\udd73\\ud83e\\udd73\\ud83e\\udd73\\ud83e\\udd73\\nDon\\u2019t miss out on our FREE Medical Evaluation too.\\n\\n#Pelosi #helicopter #JacksonWang #Taiwan https:\\/\\/t.co\\/ecNkeV31YO\",\"3461\":\"Get Me To 2k, Retweet And Follow Me \\ud83d\\ude4f\\ud83c\\udffe #Pelosi #BBNaija #dontpayuk\",\"3462\":\"COMING SOON\\nYEAR-2023\\n\\nDiscover New, Old and Upcoming Movies By Following MoviePlus.\\n\\n\\ud83d\\udcfa\\ud83d\\udcfa\\nNancy Isime | Akure | Asaba | Lexus | Onne | Progress | What God | Khalid #EXTRACTION #Taiwan #bachelorette https:\\/\\/t.co\\/EcL52eIPAV\",\"3463\":\"This happened earlier today \\n#mrbayo\\n#cometochelsea\\n#Taiwan https:\\/\\/t.co\\/m6ECdRSDzU\",\"3464\":\"Hey Tuesday\\ud83d\\udc4b\\u2764\\ufe0f #Taiwan #tuesdayvibe #babygirl https:\\/\\/t.co\\/cuyRJDGRbG\",\"3465\":\"Had to jump on 5star By @adekunleGOLD challenge #5starchallange help me tag him\\ud83d\\ude4f\\n\\n#Pelosi #Taiwan #JacksonWang #dontpayuk #helicopter #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #BoycottRakshaBandhanMovie #HelicopterCrash #\\uc5d0\\uc774\\ud2f0\\uc988 #WatchOutForKaran #kpssdeikincifetoskandali https:\\/\\/t.co\\/AEHJLCBgvR\",\"3466\":\"Even on wristwatch Straps... it's time for Peter Obi! \\n#PeterObiForPresident2023 #PeterObi4President #Pelosi https:\\/\\/t.co\\/YbG5YomfHO\",\"3467\":\"Irtus Business is looking for Graduate\\nTrainees (looking to be trained into core\\nfinance and consulting roles)\\nPay: N55\\/60,000 \\nRemote\\nApply:\\nmailto:tamara@irtusbusiness.com\\nDeadline is 3rd August, 2022\\n\\n#finance #trainee #jobs #pelosi ASUU Cubana #remotejobs #consultingjobs\",\"3468\":\"@Themastercutz is hiring for the\\nfollowing positions.\\n.Salon Manager\\n. Hair Stylist\\n\\u2022 Barber\\n\\u2022 Manicurist\\n#jobsinAwka #jobs\\n#pelosi ASUU Cubana #salonmanager\\n#barberjob #manicurist #hairstylist https:\\/\\/t.co\\/XIHsYklIxS\",\"3469\":\"If you trade price action and you're open to new ideas, then this is for you. \\n\\n I should @ the convener but he isn't on Twitter.\\n\\nI've been following him one on one for the last 12 months and it has been worth my while. Share, someone might need it.\\n\\n#Malik #Taiwan #BBNaija https:\\/\\/t.co\\/gh7OVsyT2j\",\"3470\":\"make I motivate small, \\\"Dont be a gambler, be a calculative winner \\\" #mrbayo #BBNaija #PeterObiForPresident2023 #Taiwan\",\"3471\":\"JUMIA BRAND DAY \\nTrendyol Fashion Day\\nStaring from #1.900 with Free Delivery \\ud83d\\ude9a \\n\\nClick link below to place your order Now\\u2935\\ufe0f \\nhttps:\\/\\/t.co\\/SXks2o3IBY\\n\\n#BBNaija #sheggz #Modella #Machala #helicopter #Wizkid #Davido #bbillkin #Taiwan #BoycottRakshaBandhanMovie https:\\/\\/t.co\\/642t62L8pp\",\"3472\":\"Yh, Chiwan. Oh wait, it's still China.\\n\\n#taiwan #Pelosi #China #WW3 #war https:\\/\\/t.co\\/GdiIiDlDBD\",\"3473\":\"Media and Communications Assistant\\nLocation: Abuja (FCT)\\nRequirements\\nInterested candidates should possess\\nrelevant qualifications with O - 1 year work\\nexperience.\\nApply here: \\n\\nhttps:\\/\\/t.co\\/zKcnLsddKI\\n\\n#communicationassistant #media #jobsinabuja #jobs #pelosi ASUU Cubana\",\"3474\":\"I don taya for this country \\ud83e\\udd27\\ud83e\\udd27\\ud83e\\udd27 another 4 weeks wtf\\ud83e\\udd14\\ud83e\\udd14 #Cubana #pogba #Taiwan #Don't Look Up # https:\\/\\/t.co\\/CLoG9bLDcw\",\"3475\":\"@Erc1974C Do you mean China is a toothless dog that bark vigorously but can't bite? #Taiwan\",\"3476\":\"Super clean Toyota Solara 2004 going for 1.8m \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25 Saheed Balogun Cubana Italy #Pelosi #Lekki #Sabinus #helicopter Mr Bayo What God https:\\/\\/t.co\\/WkP4ub1OWT\",\"3477\":\"The 2022 Sellyfak. Energy Trainee program. \\n\\n#traineeprogram #energysector #oiljobs #graduatetrainee #jobs #pelosi ASUU Cubana https:\\/\\/t.co\\/X6qCM1jrbW\",\"3478\":\"A Tech and Education Company in Lagos is hiring corpers for Sales Role, Growth Intern.\\n\\nApply if you are interested in edutech or sales. \\n\\nhttps:\\/\\/t.co\\/FffgOogRgI\\n\\n#edutech #salesjob #nyscjob #jobs #pelosi ASUU Cubana\",\"3479\":\"Nigeria adds 10.5 million young voters to its electoral register ahead of 2023 election\\n#Taiwan #Pelosi https:\\/\\/t.co\\/Yj5h9sBlMv\",\"3480\":\"Hey Guys, For Facebook Sponsored Advert\\/Promotion for your Business\\/Brand with BUZZYNESS ONLINE, We charge a minimum of 1500 naira to reach an estimated audience between 1000-3000 per day and we offer a minimum of 7 days \\ud83d\\ude4c\\n#buzzynessonline\\n#TuesdaysAndThursdays \\n#Taiwan #Pelosi https:\\/\\/t.co\\/7weOt1UVAc\",\"3481\":\"Hey guys check out this song by @swatc_music help him reach out to record label @Akon @burnaboy @AndyjnrUmaru @wizkhalifa @WarnerMedia \\n#Taiwan #nancyisme #dejong #Machala #Wizkid #Pelosi #JacksonWang #JACKSONWANGxCartierTH #BambamSorry https:\\/\\/t.co\\/HbfHLJrcab\",\"3482\":\"As they do with everything, Nigerians have taken \\\"brocode\\\" to the extreme, such that some men are even afraid to do some things because it doesn't align with the \\\"Nigerian brocode.\\\".... read my thoughts on brocode here\\ud83d\\udc49\\ud83c\\udffc\\n\\nhttps:\\/\\/t.co\\/C31nBaUMOj\\n\\n#ASUU #EndSARS #Pelosi Osuofia\",\"3483\":\"@MahuiChina You\\u2019re guys are still chilling oh\\nBy now I was thinking #china\\u2019s flag should be chilling in #Taiwan\",\"3484\":\"This weather also\\ud83d\\ude47\\u200d\\u2640\\ufe0f\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\n#Taiwan\",\"3485\":\"Hodophile is what I'm gonna become before and after I make the money. \\n\\n@dandptravels \\n\\n#LekkiMassacre #lekki #taiwan #shibainu\",\"3486\":\"We're still available to take your orders \\ud83d\\ude0a\\n#BetterCallSaul \\n#Taiwan \\n#LOONAinLA \\n#JacksonWang https:\\/\\/t.co\\/B6r9bOpDhy\",\"3487\":\"If the USA, Russia, and China want to go war. They should just get on with it.\\n\\nNo need to drag smaller powers into their squabbles. #WWIII\",\"3488\":\"EP dropping on the 12th of August, watch the space.\\n.\\n.\\n#BetterCallSaul #Taiwan #JacksonWang #BambamSorry #helicopter #abstorm #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #dontpayuk #chatsekscerita #chatsekscerita #ISAC2022 #BBNajia #bbillkin https:\\/\\/t.co\\/N2GpRHozvt\",\"3489\":\"I want to tell someone that God has not forgotten you..\\nDon't give up on Him because He will never give up on you.\\nHe loves you personally..\\nHave a wonderful day ahead \\ud83d\\udc95\\ud83d\\udc95\\n\\n#EndSARS #Tinubu #PeterObiForPresident2023 #malik #BetterCallSaul #Taiwan #helicopter #ISAC2022 #BBNajia\",\"3490\":\"Registered 2003 Toyota Corrolla, Buy and Drive with engine and gear working perfectly well. Going for 2.5m Marriage Modella Ambode #Taiwan #Gistlover #BBNaija https:\\/\\/t.co\\/JRrtoY0KT7\",\"3491\":\"We are excited to announce that the Head of Business Intelligence at MasterCard Foundation, Toyosi Odukoya will be speaking at the 2022 Bi-Annual Fellows Summit in Abuja, Nigeria.... \\n\\n#nonprofits #Pelosi #China #Taiwan #STEM #AbujaTwitterCommunity #SDG4 #Google #Ethiopia https:\\/\\/t.co\\/nUxgLZ5V5V\",\"3492\":\"Wired Life \\ud83d\\ude2f!!!\\n\\nJust a distance friend he was and we haven't spoken for eight years, only for him to chat me up this morning and then ask me to help him with some cash.\\n\\nIs this normal?\\n\\n#Taiwan \\n#LOONAinLA\",\"3493\":\"Truth is bitter but Batifieds get sense#BBNaija #BBC #Obidatti2023 #GoodGovernance #NewNigeria #OBIdientlyYUSful #NigeriaNews #BBNaija7 #Nigeria #buhari #Taiwan #helicopter #Ukraine #Lagos #AbujaTwitterCommunity #Obidiots #bachelorette #BBNaijaLevelUp #BBNaijaS7 #Arewa4PeterObi https:\\/\\/t.co\\/DGb6mixasv\",\"3494\":\"@AmbLiuXiaoMing @Ambassador_Liu Pelosi wanted to act #WonderWoman movie by try to enter #Taiwan but to my knowledge #China\\u2019s sovereignty is more a Hollywood movies\",\"3495\":\"@AndyBxxx Pelosi wanted to act #WonderWoman movie by try to enter #Taiwan but to my knowledge #China\\u2019s sovereignty is more a Hollywood movies\",\"3496\":\"How much is the dollar price today?\\nHow much will the dollar be by December?\\nWhat moves have you made to earn in dollars?\\nSomethings shouldn't be explained, you do the maths yourself. \\n\\n#BBNajia \\n#Taiwan \\n#helicopter\",\"3497\":\"Pelosi wanted to act #WonderWoman movie by try to enter #Taiwan but to my knowledge #China\\u2019s sovereignty is more a Hollywood movies\",\"3498\":\"United States Nancy Pelosi now trending on Twitter over possible visit to Taiwan, as China could clash with USA\\n\\n#NaijaloveinfoForeign #politics #Naijaloveinfo #NancyPelosi #pelosivisittotaiwan https:\\/\\/t.co\\/1fTWGdlOMl\",\"3499\":\"May your dreams all come true in this month of August. If you believe say a bigger Amen.\\n\\n#Messi\\ud80c\\udcf5 fati HERE WE GO Made In Lagos #BBNajia #Taiwan Peter Obi Wizkid FC\",\"3500\":\"[Video] Sex is already in the Big Brother House. Watch to see raw.\\n\\nChristy O\\/Cyph\\/#BB24 \\/#BBNaija \\/Endsars\\/ #BeautyTukura \\/ #beauty \\/ #BambamSorry #Wike #TheBachelorette #Taiwan #LOONAinLA #helicopter #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #AlQaeda \\n\\nhttps:\\/\\/t.co\\/X3GvsGRqMZ https:\\/\\/t.co\\/egpmD7humb\",\"3501\":\"CONGRATULATIONS TO ALL WINNERS YESTERDAY.TODAYS FIXED MATCHES ARE NOW AVAILABLE. YOU CAN CONTACT ME DIRECTLY ON \\ud83d\\udcde +2349095386137\\n#SouthEast #Pelosi #Rufai #ASUU #Taiwan #Osinbajo #Omatseye #CaterEfe #OsamaBinLaden #ZackOrji #Chelsea #Fati #Kaduna #Ethiopia #China #Igbos #AlQaeda https:\\/\\/t.co\\/1psy7gC5KG\",\"3502\":\"The united states' has kept Russia busy with Ukraine, they're Now testing China with Taiwan. Tell me again who are The World's sponsors of terror again.#Pelosi\",\"3503\":\"Pelosi is already in Malaysia, from where she is expected to go to Taiwan.\\n #Pelosi #BBNajia #Malaysia #Trending #TrendingNow #viral https:\\/\\/t.co\\/79PsEmTWxo\",\"3504\":\"MY LORD WHATEVER MOMENTUM THAT PUSHES THE DOLLAR FROM N710 TO N545, SHOULD CONTINUE AND PUSH IT TO N190 WHERE BUHARI FOUND IT. IJN !!\\n#Taiwan\\n#BBNajia \\n#helicopter\",\"3505\":\"Natal Taipei, Taiwan Astro chart and current chart:\\nTR Mars (red arrow) moving into position to\\nexact 180* Opposition to Natal Neptune at 21*Scorpio\\nWho will blink, first?\\n#MundaneAstrology #pelositaiwan #Pelosi #Taiwan https:\\/\\/t.co\\/E9hs285SVt\",\"3506\":\"You won't know how important it is that \\\"He neither sleeps nor slumbers\\\" until He takes a break from you. \\n\\nThen you'll know that 5 seconds is enough for the devil to compress your world. \\n\\nIf not for God \\ud83d\\udc81\\u200d\\u2642\\ufe0f\\n\\nSay something \\\"praiseworthy\\\" to God \\n\\n#WEURO2022 #BambamSorry #Taiwan\",\"3507\":\"Yesterday I attended Bodex Social Media Hangout and it was really amazing \\ud83d\\udc4f \\n\\nKudos to @bodexng @realbodex \\n\\n#BBNajiaS7 #BBNajia #BBNaijaLevelUp #BBNaijaSeason7 #Taiwan https:\\/\\/t.co\\/2qnLi9wjTb\",\"3508\":\"The East still has a long way to go #BambamSorry #TheFlash #OBIdientlyYUSful #Taiwan https:\\/\\/t.co\\/KnUGijTCXF\",\"3509\":\"PLEASE GET YOUR PVC\\nVideo created by yours faithfully \\u2764\\ufe0f\\ud83d\\ude4f\\ud83d\\udc2c\\n\\\"GOD ABEG\\\"\\n#GodAbeg \\n#sabinus \\n#BambamSorry \\n#BLACKPINK \\n#twitterblades \\n#Taiwan \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\n#BamBamWeloveyou\\n#bbillkin https:\\/\\/t.co\\/w6vBipGCtz\",\"3510\":\"My new song \\u201cNOT ME\\u201d now available on all music platforms Stream\\/Download https:\\/\\/t.co\\/Pxw3tlsJLO @FRANKRICHBOY @thisisprinx @Limoblaze @DONJAZZY @EeZeeConceptz18 #BBNaijaGuinnessSmooth #afrogospel #machala #ASUUStrikeMustEnd #Taiwan https:\\/\\/t.co\\/zQtHHQOWRz\",\"3511\":\"Please follow me, retweet, I follow back \\ud83d\\ude4f\\n#follo4folloback #FolloMe #PeterObiForPresident2023 #BATSHET2023 #AtikuOkowa2023 #Taiwan #HOBIPALOOZA #BambamSorry\",\"3512\":\"Guys let me know what you think about my flows #Taiwan #HOBIPALOOZA #BambamSorry #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #jhopeAtLollapalooza #CartierThailand #RapSht #rapper #BLACKPINK #twitterblades #Serbia #Kosovo https:\\/\\/t.co\\/DMKDoJ0LDv\",\"3513\":\"Would 1 $Fury change your life in 2023? \\ud83e\\udd14\\n\\n#Taiwan #sabinus #Ethereum #Bullish\",\"3514\":\"I love this freestyle please follow up @Itsdbabafatbili \\n#HOBIPALOOZA #breastfeeding #Taiwan #BambamSorry #follobackforfolloback \\n@davido @burnaboy @DONJAZZY @UMG @BIGHIT_MUSIC @TwitterMusic https:\\/\\/t.co\\/6uJ0Iz5I5n\",\"3515\":\"Empowerment: Humanitarian Ministry conduct GEEP 2.0 Training for South East Zone https:\\/\\/t.co\\/993olzwzER\\n#Taiwan #breastfeeding #empowerment\",\"3516\":\"ASUU dey roll over strike like data bundle... \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\n@ASUUNGR @Twitter\\n@memes @Ironicooficial @memesbychroath @memetopiaz \\n@memesbychroath\\n#TwitterDown #WEURO2022 #Taiwan #Lionesses #ASUUStrike #ASUUStrikeMustEnd #dankmemes\",\"3517\":\"HELLO CHAINDUSTRIANS !\\n\\nAugust is here\\ud83e\\udd70\\nWhat are your goals?\\n\\n\\\"One with CHAINDUSTRY is MAJORITY\\\"\\nLet us help you achieve them all\\ud83d\\udcaf\\n\\n#DoToEarn #crypto #NFTs #metaverse #DeFi #web3 #sabinus #taiwan https:\\/\\/t.co\\/BNFbyWrV1Y\",\"3518\":\"#reminder entry location soon, my first short film, suppot my husle. help #retweet #nkemowoh #channelstv #femiadebayo #osupa #lizbenson #zackorji #davidhundeyin #Anambrastate #PeterObiForPresident2023 #Asiwaju #BBNaija #Taiwan #shortfilm this film nah #Machala #CartierThailand https:\\/\\/t.co\\/cJYbjTHw10\",\"3519\":\"CryptoPunks\\u2019 Gains1,847% After Tiffany & Co. Launches Exclusive NFT Collection #HOBIPALOOZA #Taiwan #CryptoNews #cryptopunks #NFT #cryptocurrency https:\\/\\/t.co\\/N9HnMCskFX\",\"3520\":\"Proverbs 3:5-6\\n\\n5\\u00a0Trust in the LORD with all your heart and lean not on your own understanding;\\n\\n6\\u00a0in all your ways submit to him, and he will make your paths straight.\\n\\n#Kosovo #WEURO2022 #Taiwan #CommonwealthGames2022\",\"3521\":\"Like and retweet till almost everyone in the nft space sees the huge potential in @cubexnft \\n#CUBEXTAKEOVER #NFT\\n#Taiwan #CubeXNft hermes https:\\/\\/t.co\\/GUyAyfbPWh\",\"3522\":\"If you go like be my babe na now o...\\nI fi change mind next 4 weeks \\n\\n#HOBIPALOOZA #Taiwan #CartierThailand\",\"3523\":\"It's been 24 hours since I posted this, I hesitated so much before I did ..kindly go through this and retweet as it would go a long way. \\nThank you. \\n#Taiwan #julydump #marriage #BambamSorry #CommonwealthGames2022 #WEURO2022 #sabinus https:\\/\\/t.co\\/GwilK70XZu\",\"3524\":\"Hello\\ud83e\\udee3 #HOBIPALOOZA #CommonwealthGames2022 #Taiwan https:\\/\\/t.co\\/dW10Gpztl4\",\"3525\":\"Happy Mew Month Friends.\\nIdentify The Giants\\nFace The Giants\\nSlay The Giants\\nYou'll be better for it \\n\\n#brandstrategy #businessgrowth #adennn #brandidentity #BambamSorry #WWIII https:\\/\\/t.co\\/fCK2E788IZ\",\"3526\":\"You are too young to be worrying about relationship Problems,relax and concentrate on food.\\n\\n#Taiwan \\nCarter Efe\\nNkem Owoh\\n#sabinus \\nAmbode\\nDavid Hundeyin\\nWWIII\\nAmerica Has A Problem\\nBrt lane \\nFalz\\nYorubas\\n#Wizkidfc \\nOkowa\\nASUU\\nGod Abeg\\nAsiwaju\\nAnambra\\n#PeterObiForPresident2023 https:\\/\\/t.co\\/CUBz7ldRnk\",\"3527\":\"Am at that point where I don't know what exactly the future holds but i find solace in prayer as I put in the efforts daily. Keep working and praying!\\n\\n#Taiwan \\nCarter Efe\\nNkem Owoh\\n#sabinus \\nAmbode\\nDavid Hundeyin\\nWWIII\\nAmerica Has A Problem\\nBrt lane \\nFalz\\nYoruba\\n#Wizkidfc https:\\/\\/t.co\\/ZyiQgn4CTX\",\"3528\":\"Modernization and development in somewhere in the world.\\n\\n#ASUU #WWIII https:\\/\\/t.co\\/X7rfQ2rEPP\",\"3529\":\"Watch Full Sex Tape Of Togolese TikToker, Bhadie Kelly\\u2019s Lookalike #Taiwan #kellybhadie https:\\/\\/t.co\\/fqpeLXBMMy\",\"3530\":\"#Pelosi is traveling on Spar19 so who\\u2019s traveling on Spar20? https:\\/\\/t.co\\/FLyhBuaBM0\",\"3531\":\"Like this it you agree with me..\\n\\n#loml #Taiwan #breastfeeding #jhopeAtLollapalooza #Taiwan #Serbia #WEURO2022 #August1st #Asiwaju #GetWellSoonJaehyun #MondayMotivation https:\\/\\/t.co\\/PLF3UKH9sI\",\"3532\":\"You keep asking how did they make it*\\nBut you're not even ready to learn it.\\n The best platform \\ud83d\\ude4c to learn and earn right now ..is #learnoflix affiliate. \\n #breastfeeding \\n#Taiwan\",\"3533\":\"Don\\u2019t miss this guys \\n@Favvs_luv @gifttedone @VitalieNFT \\n\\n#NFTs #Metaverse #Taiwan https:\\/\\/t.co\\/g0kPuR0w81\",\"3534\":\"Marry Two wives and know peace. It's high time, our men started marrying 2wives and reduce Spinsters and unwanted Fornication.\\n#inmymind #breastfeeding #Taiwan #tweetviral #TWICE\",\"3535\":\"Fen\\u2022di \\ud83d\\udd25\\nAll sizes available \\nN15,000 \\nWhatsApp\\/Call us- 08104504438\\nMinna \\ud83d\\udccc \\nNationwide deliveries \\ud83d\\ude9a \\nMore pictures below \\u2b07\\ufe0f \\n\\n#Taiwan #breastfeeding #WEURO2022 #BBNajia https:\\/\\/t.co\\/0sHsnO4v1A\",\"3536\":\"I used a STOPLOSS! Did you?\\ud83e\\uddd0\\ud83e\\uddd0\\n\\n#WEURO2022 #binance #BBNaija #Taiwan https:\\/\\/t.co\\/aXpX9C8mNH\",\"3537\":\"Happy new month from all of us at MajikHub \\n#BBNaija7 #majikhub #bbnaija #Taiwan #WEURO2022 https:\\/\\/t.co\\/lrJoRAaQRz\",\"3538\":\"Diversity in a nutshell \\n\\nMay God order your steps this new month famz\\ud83d\\udc9e\\n\\n#August2022 #gratefulheart #Bmadonna\\n\\n #NFTGiveaway @ https:\\/\\/t.co\\/MfV62ryHqb\\n\\n #Taiwan #EuroWomen2022 #EURO2022 #nft https:\\/\\/t.co\\/6923p84X0g\",\"3539\":\"U.S. deploys ships and planes near #Taiwan as #Pelosi eyes visit\\n\\nhttps:\\/\\/t.co\\/jCtrQ7eZrr\",\"3540\":\"@SpeakerPelosi will visit Taiwan despite getting continuous threats of consequences due to her visit to Taiwan.\\n#NancyPelosi\\n#Taiwan\\n#USA\\nNancy Pelosi to Visit Taiwan Despite Warnings from China https:\\/\\/t.co\\/O3iw8rNJiM\",\"3541\":\"High taper clean\\ud83d\\udd25\\ud83d\\udc88\\n\\n#HOBIPALOOZA #Taiwan #WEURO2022 #breastfeeding #jhopeAtLollapalooza #Serbia #Kosovo #JACKBAM_KPOPMASTERZBKK #Machala #BambamSorry #ENGGER #BLACKPINK #qanda #bachelorette https:\\/\\/t.co\\/VShdaabNY2\",\"3542\":\"2022 Chapter 8 of 12\\nFrom all of us at Agro Market Square.\\n\\nWe wish you a fruitful new month.\\n...\\n......\\n.........\\n......\\n...\\n#AgroMarketSquare #newmonth #Taiwan #Agriculture #AgroLife #Agriculture #foods https:\\/\\/t.co\\/C4Lj4tJjjI\",\"3543\":\"\\ud83d\\udea8 BREAKING: OGC Nice have reached an agreement in principle to sign Aaron Ramsey on a free transfer. \\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc77\\udb40\\udc6c\\udb40\\udc73\\udb40\\udc7f \\n\\n(Source: @Santi_J_FM) \\n\\n#NaijaBet #WEURO2022 #Taiwan #Transfers https:\\/\\/t.co\\/brnptiS1U6\",\"3544\":\"#PlayingWithFire \\n#US #China #Taiwan \\n\\nChina\\u2019s ready to \\u2018bury invading enemies\\u2019 https:\\/\\/t.co\\/dFSsCYKxhG\",\"3545\":\"Have you ever wish to know how the movie tricks are done?\\n\\n#HOBIPALOOZA #Taiwan #BBNaija #WEURO2022 https:\\/\\/t.co\\/HyV09hKL85\",\"3546\":\"Get prints of my art prints on anything you want....these sure look beautiful. I could make anything you want. Give me a descrip\\nClick my website: https:\\/\\/t.co\\/vw3P0wsMj4\\n#art #artcollector #artprint #walldeco #nft #japancollector #WEURO2022 #drawing #design #Taiwan #HOBIPALOOZA https:\\/\\/t.co\\/Xrfhp82TIj\",\"3547\":\"Sudan reported its first confirmed Monkeypox case. A 16-year-old student was confirmed sick with the disease in West Darfur state.\\n#jhopeAtLollapalooza #Taiwan https:\\/\\/t.co\\/LXSlna9e0M\",\"3548\":\"Thanks \\ud83d\\ude4f\\ud83c\\udffd team #Modellabbn for the 30k on IG #WEURO2022\\u00a0 #Taiwan #Nigerian #breastfeeding #BBNaija\\u00a0 #BBNaija\\u00a0 #BBC #BBNajiaS7 #BBNaija2022 https:\\/\\/t.co\\/alddff8jzd\",\"3549\":\"On This Day, 1 August 1774*\\n (248 years ago) British scientist Joseph Priestley discovered oxygen gas, corroborating the prior discovery of this element by German-Swedish chemist Carl Wilhelm Scheele #Taiwan #Sweden #WEuro2022Final #100DaysOfCode #1000xgem #100T #WEURO2022\",\"3550\":\"Smile\\u00a0is the best remedy in each failure. Strive more. If you fail, strive again. Never rush things too hard, they might break into pieces in which you can never fix.\\n#HOBIPALOOZA #WEURO2022 #Taiwan #100DaysOfCode #Taiwan #breastfeeding #Serbia #1000xgem #Bitcoin #JHOPE #Browns\",\"3551\":\"2023 Polls: \\n\\nPeter Obi believes that not being on social media is equivalent to being illiterate, he said this while countering Atiku's claim of 90% Northerners are not on social media.\\n#PeterObiForPresident2023 #taiwan #BBNaija\",\"3552\":\"Police Command on red alert over alleged threats to attack Lagos\\n\\nhttps:\\/\\/t.co\\/i1f6XamVxK\\n\\nSouth East Garner Bella Shmurda Arsenal #Taiwan Barcelona Chelsea Wike Hijack FC #gistloverstory #StopSellingPi Boehly #lekki Tinubu Cucurella Reuben Abati Femi Adebayo #breastfeeding Wike\",\"3553\":\"Would China threaten to shoot down Newt Gingrish's phone or Mike Pompeo's?\\nThe decline of American. \\nMissing Trump yet?\\n\\n@mikepompeo \\n#Taiwan \\n@ScottPresler\",\"3554\":\"The US can't call itself a superpower anymore! Caving to threats? Something I never thought I would witness.\\n#NancyPelosi #ChinaTaiwan smh! China sees democracy as a joke and this would forever be the punchline!\",\"3555\":\"Nancy Pelosi is not important enough to state a word war.\\nPower, old age and alcohol don't mix well.\\n#Taiwan\",\"3556\":\"Over the past few months we have fought our way to the top of the #MEMECOIN rankings #MarvinInu did this through community hype and epic marketing.\\n\\nBag in $Marvin now and HODL \\n\\n@Marvin_Inu #1000Xgems #Taiwan #WEURO2022 #Kosovo #BNB #BBNaija #btc #MarvinInu https:\\/\\/t.co\\/xPmn2jesjy\",\"3557\":\"https:\\/\\/t.co\\/zholntUazT\\nCheck me out on Spotify pls \\ud83d\\ude4f \\n#Wizkid #JHOPE #WEURO2022 #Taiwan\",\"3558\":\"Am Hezix! I Buy Bitcoin and PayPal funds at a very High rate\\ud83d\\udd25\\ud83d\\udd25\\nFast payment you can Dm me https:\\/\\/t.co\\/qDHdUtiSc7 \\n.\\n.\\n.\\n#Taiwan Sarr accidentally #Asiwaju #SolanaNFT balkans Yoruba wike ASUU and FG Rescue Nigeria Lekki marriage tinubu #breastfeeding The NRA\",\"3559\":\"@pinetwork_world Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #StopSellingPi #Taiwan #ASUU\",\"3560\":\"@khollyjhay Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/d36ETfc2is\",\"3561\":\"@99tension Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/JON6RErm7P\",\"3562\":\"@___Chachi Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/edeuEUUKmE\",\"3563\":\"@firstladyship Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/0Wp9yQ0JHO\",\"3564\":\"@VictorIsrael_ Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/yiAW9zI1nH\",\"3565\":\"@_Just_Malik Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/Y6maa8aNF7\",\"3566\":\"@oou_prime Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan #ASUU https:\\/\\/t.co\\/Kelu2VUCKU\",\"3567\":\"@FilmmeTalk Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan https:\\/\\/t.co\\/k9Dya2b4UL\",\"3568\":\"@danielaflorezz_ Hi guys \\n\\n1CORE=$?$\\nmainnet 3Q 2022\\nRetweet if you support #BTCs.\\nThe next blockchain revolutionary coin, Launches in 3Q 2022.Complete KYC in few minutes and start.\\n\\nJoin \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/DsbF5MWAc8\\n#BTC #PiNetwork #CORE #HOBIPALOOZA \\n#JHOPE #BBNaija7 #BambamSorry #Taiwan https:\\/\\/t.co\\/O7sl5TBlhn\",\"3569\":\"Happy New Month Fam. #BBNaija #breastfeeding #TREASURE #Ukraine #JHOPE #Khalid #Modella #BellaOkagbue #jhopeAtLollapalooza #Taiwan #Kosovo #Serbia #LalSinghChaddha #SuzukiPakistan #TXTPALOOZA https:\\/\\/t.co\\/b9gCgh80hJ\",\"3570\":\"@anthony51483709 #china does not have to invade #Taiwan, it is making plenty of money from #US and west\",\"3571\":\"For our drivers we have mouth watering offers from health insurance benefits for you and your family members,to cheap rates and bonus for anybody you intro\\n\\nASUU \\n#Carterefe \\n#garner \\n#StopSellingPi \\n#Taiwan \\n#NYSC\\n#Fofana \\n#PeterObiForPresident2023 \\n#OBIDIENTS \\n#zulum\\n#Southeast https:\\/\\/t.co\\/guCA89QtKv\",\"3572\":\"Download the LIMOSIRIS APP today for both drivers and riders cheap and affordable rates for both drivers and riders.available on playstore and Apple store\\n#ASUU \\n#Carterefe \\n#garner \\n#StopSellingPi \\n#Taiwan \\n#NYSC\\n#Fofana \\n#PeterObiForPresident2023 \\n#OBIDIENTS \\n#zulum\\n#Southeast https:\\/\\/t.co\\/3IGUplY2N4\",\"3573\":\"@flyairpeace REFUND MY MONEYYYYYY 168k that\\u2019s 200 dollar plus. REFUND MY MONEYYYY #jhopeAtLollapalooza #BBNaija #Taiwan #Kosovo\",\"3574\":\"May the month of August bring more Blessings \\ud83d\\ude4f\\ud83d\\ude4f\\n\\n#newmonth #breastfeeding #BORNPINK #HOBIPALOOZA #StopRussiaNOW #StopSellingPi #Tembisashutdown #Ilebaye #wizkidfc #Serbia #Taiwan #BeautyTukura https:\\/\\/t.co\\/YQegSOY9ux\",\"3575\":\"You into your NFT project, and you need an artist? \\nI'm here for you. #artcollector #nft #art @opensea #Taiwan #obo #nfthub #fineartamerica \\n\\nhttps:\\/\\/t.co\\/vw3P0wsMj4\",\"3576\":\"Happy New month!!!\\n\\n#newmonth #August2022 #Taiwan #AugustWish https:\\/\\/t.co\\/TP3THbcurf\",\"3577\":\"What a way to end July! #Taiwan #HOBIPALOOZA #Trending #WEURO2022 #TrendingNow https:\\/\\/t.co\\/Qpkfw5I2oz\",\"3578\":\"6days togo for the official premiering of \\\"Superman\\\" by @youngbobby4real\\n\\nWatch this electrifying and energetic performance get a feel of vibrant rapper.\\n\\n#BBNaija7 #HOBIPALOOZA #Serbia #Taiwan #BLACKPINK #breastfeeding https:\\/\\/t.co\\/U2kEVZJVPo\",\"3579\":\"Welcome to the covenant month of NEW... \\nI Prophesy let old things pass away and New things begin in Jesus name.\\n#newmonth\\n#New #breastfeeding #HOBIPALOOZA #Serbia #Taiwan #BLACKPINK #BBNaija7 #kpss2022 #Lollapalooza #\\ub108\\ud76c\\uacc1\\uc5d0_STAY\\ud55c\\uc9c0_4\\ub144 #TaapseePannu https:\\/\\/t.co\\/JscPy4y8kZ\",\"3580\":\"Imagine growing this size of cucumber in 9ja\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\\nWomen will be like, this cucumber is wonderful one \\ud83d\\ude46\\ud83c\\udfff\\u200d\\u2642\\ufe0f\\ud83d\\ude02\\n\\n#HOBIPALOOZA #Serbia #Taiwan #breastfeeding #vawulence #vawulenceTv #vawulenceHQ https:\\/\\/t.co\\/RhFri0ZtWW\",\"3581\":\"Happy New Month to all our Esteemed Client \\u2705\\u2705\\n\\n#WEURO2022 #Kosovo #Abuja #Taiwan #BLACKPINK #August #breastfeeding #Serbia #JHOPE #BamBam #MissUniverseThailand2022 #AbujaTwitterCommunity #BBNajia #bbnaija #Bbnaija #newmonth https:\\/\\/t.co\\/5sJUGqLYM3\",\"3582\":\"Who left 75billion naira for Anambra state in naira and dollars while leaving office and till today Anambra state has not given him a penny as gratuity or pension as an ex-Governor?\\nAnswer: Peter Obi \\n\\nGet your PVC ready..! #BBNaija7 #Taiwan @PeterObi #GistLoverStory #Nigeria\",\"3583\":\"\\ud83e\\uddd0\\ud83e\\uddd0\\ud83e\\uddd0I hope you have a STOPLOSS on?\\n\\nGood morning folks\\n\\n#BBNajia \\n#jhopeAtLollapalooza \\n#StopSellingPi \\n#Serbia \\n#Taiwan https:\\/\\/t.co\\/5ax4aWy7WO\",\"3584\":\"#NancyPelosi close to #Taiwan yet?? \\n#PatrickLeahy https:\\/\\/t.co\\/vsETtshyt3\",\"3585\":\"Has #NancyPelosi been shot down over #Taiwan yet?? Asking for a friend.......\\n#China https:\\/\\/t.co\\/MS2xpI5o0k\",\"3586\":\"Why Ms Pelosi skipped visit to China?\\nPerhaps the signaling was well picked\\n#Taiwan #China #US\",\"3587\":\"Have you watched this yet? \\ud83d\\udd25\\ud83d\\udd25\\n\\nhttps:\\/\\/t.co\\/MeZl1xCmvn\\n.\\n.\\n.\\n.\\n.\\n#beats #beats4sale #beatsbydre #beatsforrappers #beatsforsale #beatsheadphones #beatstars #chelsea #drdre #fingerdrumming #freebeats #gym #gymlife #gymmotivation #gymrat #headphone #headphones #hiphopbeats #Taiwan https:\\/\\/t.co\\/cS2Fw2TBPr\",\"3588\":\"As seen in a house of God today \\ud83d\\ude01 NOT FOR SALE is spreading like a virus \\ud83e\\udda0 #NFS\\ud83e\\udee1\\ud83c\\uddf3\\ud83c\\uddec #SummerSlam #Taiwan #BBNaijaGuinnessSmooth #FreakyGirl #kpss2022 #binance #2023Elections #GetYourPVC https:\\/\\/t.co\\/XVtQ6tcN06\",\"3589\":\"Where are all my Great ,Obidient and Yusful Youths of Niger State, here is an opportunity for us to take our stand. Let's join hands together and deliver the set man @PeterObi . #earthquake #SummerSlam #BBNaijaGuinnessSmooth #binance #sundayvibes #Taiwan #russiaisaterrorisstate https:\\/\\/t.co\\/7TGcKQpHd2\",\"3590\":\"#VoicenoteByTClassic #FanBantsOzoOut\\n#PastorKumuyiSaid\\nUber Itachi July dump Today is Sunday Tfare Thanksgiving #wearethenew Moses Niger Delta Hallelujah #Solana #Taiwan #BBNaija7 #BBNaijaGuinnessSmooth \\nStart reading from the top.\",\"3591\":\"Winning assurance in this group keeps me having much trust @Emmanuelbest506.sir you are the best and I salute your source\\n#100DaysOfCode #Lekki #Tinubu #Itachi #NairaMarley #Uber #BBNaija #ivanatrump #Black #Chelsea #Yorubas #Daniella #PrinceCharles #Taiwan #Esther #Vicepresident https:\\/\\/t.co\\/FXjOwhXEjI\",\"3592\":\"Of the blood of D innocent be made against those that are guilty who dwell on earth.\\n\\n#letGodBetheJudge \\n#JudgementDay \\n#RENAISSANCE \\n#Four4HorseMen \\n#BBNaija7 \\n#China v #Taiwan \\ud83d\\udc40\\n#TheBustwizeConspiracy \\n#BBNaijaGuinnessSmooth \\n#PastorKumuyiSaid \\n#SUNCOV \\n#CommonwealthGames2022\",\"3593\":\"Congratulations to us we have 100k followers on Twitter. Thank You very Much Fam \\ud83d\\ude4f let's make it 500k \\nPlease follow: @desirecapitals \\n#DesireCapitalsLimited \\n#SummerSlam \\n#Taiwan \\n#BBNaija7 \\n#BBNaijaGuinnessSmooth \\n#TREASURE https:\\/\\/t.co\\/KDquXVYd5V\",\"3594\":\"Here is everything about FVP Trade: A general summary of FVP Trade's freezing funds case.\\n\\nhttps:\\/\\/t.co\\/1s7KF561aa #Taiwan #SummerSlam #forexscam #forexbrokers #crypto #forextrading #BBNaijaGuinnessSmooth #BBNaija7 https:\\/\\/t.co\\/tYUGEX9JF6\",\"3595\":\"Your donation is important to us...www.humanaid.org.ng\\/donate\\n#womenempowerment\\n#Taiwan #CommunityShield #QueenLikeBella #womenempowerment #JHOPE @UKMoments https:\\/\\/t.co\\/IYWcic6UEo\",\"3596\":\"Anger is a DESTROYER, avoid it. #SummerSlam #BBNaijaGuinnessSmooth #CommunityShield #Taiwan #sundayvibes https:\\/\\/t.co\\/Vp6TR5AKx9\",\"3597\":\"The only thing you will take from this life is what you left behind\\n\\nHappy Sunday!!!\\n\\n#BBNaijaGuinnessSmooth #Taiwan #CommunityShield #PeterObiForPresident2023\",\"3598\":\"Used 2021 Hilux\\n26m\\nLocation :Abuja\\n09071824401\\nEverything Blessed!! #SummerSlam #Taiwan #China #AbujaTwitterCommunity #abujafinders https:\\/\\/t.co\\/0MUYMgSVpk\",\"3599\":\"Happy Islamic new year\\ud83d\\uddd2\\n#Taiwan @Ameengwaska @_ameeserh @Abdoulmaleek001 @___Bils @90sSophie https:\\/\\/t.co\\/8jXGvh6oGt\",\"3600\":\"Independent women dun ask for 5k urgently \\ud83d\\ude02 #earthquake #Taiwan\",\"3601\":\"Growth is Intentional!\\n\\nWant to place an order?\\nWhatsapp: 07039426841\\nInstagram: https:\\/\\/t.co\\/a6rzotkBdD\\nFacebook: https:\\/\\/t.co\\/Me02UNv5fb\\nTiktok: @sikshoes\\n\\n#BBNaija7 #CommunityShield #Taiwan #BBNaijaGuinnessSmooth #WelcomeTREASUREtoTHAILAND #siKShoes #nigeria #mensshoes https:\\/\\/t.co\\/DoLeCP9LL4\",\"3602\":\"Hp Laptop, 500HDD, 16 RAM. 1.5M FOR SALE #QuantumComputing #Taiwan https:\\/\\/t.co\\/p5IGZdyl3i\",\"3603\":\"Happy Sunday great People \\n\\n#BBNaija7 #Taiwan #BBNaijaGuinnessSmooth https:\\/\\/t.co\\/sheCT5ZSVb\",\"3604\":\"VIDEO: A Suspected Yahoo Boy Allegedly Kills And Buries Girlfriend In His Room, In Bayelsa\\n\\n#Taiwan #BBNaija7 #Asari #Tinubu #earthquake\\nRead more\\u300bhttps:\\/\\/t.co\\/VjPHEpdOJv\",\"3605\":\"Like for @PeterObi & Retweet for @officialABAT \\n\\n#BBNaija7 #SummerSlam #Taiwan #CommunityShield #NigeriaDecides2023 https:\\/\\/t.co\\/ZKzvW7tT69\",\"3606\":\"Since Nigerian are no longer save by road and train now because of kidnapped and by trains because if pirates, I hope they won't come and be kidnapping people traveling by Air now\\ud83d\\ude0f\\ud83e\\udd74\\n#BBNaija7 #BBNaijaGuinnessSmooth #Taiwan #Tinubu #TinubuandAtiku #PoliticsLive\",\"3607\":\"[VIDEO] 2023: Mad Man Spotted Praying For Abia APP Governorship Candidate, Mascot Kalu In Ohafia\\n\\n#AbnTv #MukTv #ViralVideo #BBNaija7 #Taiwan #CommunityShield https:\\/\\/t.co\\/Zk5bwOgNlt\",\"3608\":\"They picked me to play jesus but my hair was black so i had to dye for their scenes \\ud83c\\udfaf\\ud83d\\udeb6\\ud83c\\udfff\\u200d\\u2642\\ufe0f\\n\\n#SummerSlam #Taiwan #BBNaija7\",\"3609\":\"Gain weight in the right places with Sisi \\ud83d\\ude0c To order send us a dm on Instagram https:\\/\\/t.co\\/J70Y1qsGKq\\n call\\/WhatsApp 08126171610\\n\\n#fyp #FYP #SummerSlam #BBNaija7 #Taiwan #BBNaijaGuinnessSmooth #CommunityShield #QueenLikeBella #WelcomeJackBamToThailand #viral #ViralVideo https:\\/\\/t.co\\/rYS4rVM16a\",\"3610\":\"Argue with your keyboard! #Taiwan #BBNaija7 #earthquake #QueenLikeBella https:\\/\\/t.co\\/p8sQJlBCFf\",\"3611\":\"University of Kansas, 2022 Excellence Scholarship, USA\\n\\n#SummerSlam #BBNaija7 #Taiwan #earthquake\\n\\nhttps:\\/\\/t.co\\/pwtDjpS5sP\\n\\nApply Now \\u2705\",\"3612\":\"If am dating you and you're slim! Please get fat. Am tired of eating bone! #BBNajia #BBNaija7 #Taiwan #SummerSlam https:\\/\\/t.co\\/n4MFJpTmDu\",\"3613\":\"July Dump \\ud83d\\udc4c\\n\\n#JulyPhotoDump \\n#SummerSlam \\n#BBNaija7 \\n#Taiwan https:\\/\\/t.co\\/I010NXmDDu\",\"3614\":\"When you are dealing with the right Source, All you need to do is to Stake,Sleep And Wake With Happiness On Your Face \\ud83d\\ude02\\ud83e\\udd29\\n\\nCongratulations \\ud83c\\udf89\\ud83c\\udf7e\\ud83c\\udf88\\ud83c\\udf8a to we all \\n\\nMore details about Today fixed matches message me below #BigBrotherNaija #Taiwan #QueenLikeBella #CommunityShield https:\\/\\/t.co\\/qkJPQkTV7n\",\"3615\":\"watin person.wan.chop this morning like this\\n#BBNaijaGuinnessSmooth #halland #Taiwan\",\"3616\":\"To become a millionaire in 1 year you need to make $2,740 every day for 1 year\\n\\nAt first this may seem unattainable however it is attainable if you work hard #StopSellingPi #Pipayments #crytocurrency #Taiwan @WoodyLightyearx @vinfi https:\\/\\/t.co\\/GM61YwTbdk\",\"3617\":\"MAPP OUT Album out now on All platforms hit this link and listen to the truest Artist Alive.\\n\\nhttps:\\/\\/t.co\\/s8wdmDvsDE\\n\\n#Carterefe #Mappedout #Taiwan #SummerSlam #BBNaijaGuinnessSmooth #CommunityShield #BBNaija7 #HOBIPALOOZA #GarciaBenavidez #earthquake #wizkid #mastablade https:\\/\\/t.co\\/PsjlGa6Orw\",\"3618\":\"World trade center under construction 1970. Ifb\\n\\n#SummerSlam \\n#BBNaija \\n#Taiwan \\n#CommunityShield \\n#BBNaija7 \\n#WelcomeJackBamToThailand \\n#GarciaBenavidez \\n#earthquake \\n#WelcomeTREASUREtoTHAILAND \\n#BoycottLaalSinghChaddha \\n#ZeeNuNew \\n#QueenLikeBella \\n#TREASURE \\n#SanjayRautExposed https:\\/\\/t.co\\/HsB6cWtw26\",\"3619\":\"Don't drink poison because it's served in your tribal cup... \\nMiss Nigeria Peter Obi Carter Efe Hazard #Taiwan #FreakyGirl #gistloverblog https:\\/\\/t.co\\/apDiNjnMd7\",\"3620\":\"August 1st #Taiwan #BBNaija7\\n#Smilesandmelody #CommunityShield\\n#BBNaijaGuinnessSmooth https:\\/\\/t.co\\/IGIlCZSH02\",\"3621\":\"Available at affordable price \\n#StopSellingPi \\n#O Allah #BBNaijaGuinnessSmooth #SummerSlam #CommunityShield #WelcomeTREASUREtoTHAILAND #Taiwan #HOBIPALOOZA #WelcomeJackBamToThailand #Birmingham2022 https:\\/\\/t.co\\/mBrs0m6gxJ\",\"3622\":\"That awkward moment you realize the jokes had been about you\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02 #BBNaijaGuinnessSmooth #Taiwan https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"3623\":\"Get Your Wears and OutFits from https:\\/\\/t.co\\/X9lkB1cLhr\\n#SurvivorExtincion #BLACKPINKxPUBGM #mirror\\u6f14\\u5531\\u6703 #XiJinping #MYSYNK_aespa #FriendshipDay #JackBam #Neighbours #aespa #dreampremiere #HOBIPALOOZA #RIPLisa #Arsenal #Fiverr #Store #CustomizedShopify #Customized #RankingVale\",\"3624\":\"@Junegongyl more #chinese lies, #Taiwan is NOT #china.\\n\\n#Taiwan is a free and independent state, like #Ukraine\",\"3625\":\"@OccupySchagen we do not want it, but you #russian and #chinese fascists cannot exist without an enemy to cover up your crap pseudo-marxist ideologies.\\nSo #putin invades #Ukraie and #china makes noises about #Taiwan. meanwhile the people of each country get poorer and more oppressed https:\\/\\/t.co\\/df7lCjYPuP\",\"3626\":\"Who's in line for the presidency if #NancyPelosi gets shot down over #Taiwan for $1000 Alex https:\\/\\/t.co\\/qqDRk2W4n0\",\"3627\":\"CONGRATULATIONS TO ALL WINNERS YESTERDAY.TODAYS FIXED MATCHES ARE NOW AVAILABLE. YOU CAN CONTACT ME DIRECTLY ON \\ud83d\\udcde +2349095386137\\n#Bandits #DestinyEtiko #Abuja #2baba #thomaspartey #LaiMohammed #Emefiele #goodluckJonathan #Brighton #Gistlover #Aisha #Machala #Taiwan #Dollars ASUU https:\\/\\/t.co\\/rUIuwHaBbU\",\"3628\":\"China\\u2019s Xi-Jinping warns Joe Biden against \\u2018playing with fire\\u2019 over Taiwan #TaiwanIsaCountry #JoeBiden #XiJinping #China https:\\/\\/t.co\\/NF0hN85TjF\",\"3629\":\"@renoomokri ...turns people off ke\\nYou are a learner. We multiply daily. The youths are taking back their country. Atiku can imortalize himself by stepping down to #Obidatti2023.\\n#TakeBackNaija \\n#Free&Fair election\\n#Consumption2ProductionFormular\\n@PeterObi \\n#UKNews \\n@BBCWorld \\n#Pelosi\",\"3630\":\"Wilson Chinonso Blog: Nigerian tribes, the list and facts https:\\/\\/t.co\\/E58nxeVz0j \\n\\n#China #ChinaTaiwan #ManUnited\",\"3631\":\"@SpeakerPelosi And weren\\u2019t you leading #Jan6 hearings just a few weeks ago and then hopped a plane to #Taiwan? Why are we running interference for foreign countries while our own hemorrhages?\",\"3632\":\"China is constantly provoking Taiwan.\\nScenes from the #Chinese air exercises in the #Taiwan Strait.\\n#ChinaTaiwanCrisis https:\\/\\/t.co\\/Fe9ayldxZS\",\"3633\":\"China- PLA army in #Fujian again carried DF-26 ballistic missiles through the city at night!\\n\\n#China #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/P5UbQYI0Yq\",\"3634\":\"China\\u2019s Largest-Ever #Taiwan Military Drills Draw To A Close. #NewsUpdate \\n\\nhttps:\\/\\/t.co\\/J23E2xwI7w\",\"3635\":\"Green #China Inc. as @Jeff_Ball put it, won't stop in its quest for dominance in more-efficient coal combustion to #solar and #wind power to electric vehicles, just yet. Perhaps multilateral agreements should be viewed as the new normal as #Taiwan will ever remain a thorny issue. https:\\/\\/t.co\\/55gQvkPQB8\",\"3636\":\"China- Pontoon erection drill! The boat bridge team built a 100-meter pontoon bridge across the Yellow River! #Taiwan is just around the corner! \\n#ChinaTaiwanCrisis #China https:\\/\\/t.co\\/IRw2ftT9nz\",\"3637\":\"America won\\u2019t allow China threaten Taiwan \\u2013 Nancy Pelosi - https:\\/\\/t.co\\/EXVN1DOIf0 #News #china #NancyPelosi #Taiwan #US #BBnaija #Messi #Wizkid #Davido\",\"3638\":\"A delegation of #Lithuanian officials, including Minister of Transport and Communications Agne Vaiciukevi\\u010di\\u016bt\\u0117, arrived in #Taiwan on a five-day visit. https:\\/\\/t.co\\/r7FkYFYnCe\",\"3639\":\"#Latest-A 100-second review of the third day of the PLA's joint military drills around #Taiwan island on. The drills included mock anti-ship attacks, comprehensive offense and defense, and joint anti-submarine warfare maneuvers: state broadcaster\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/w5wrwDt9cT\",\"3640\":\"PowerUpNG: RT @Asabari_CC: @IBEDC_NG is not concerned about customer's plight in Saki. Businesses are being destroyed by incompetent ibedc. 20mins of supply today after more than 1week blackout. Very unfortunate. @NERCNG do something now.\\n@PowerUpNG\\n#Taiwan\\n#CommonwealthGame\\u2026\",\"3641\":\"With the arrival of remote working and its adoption, you'll soon be able to work from anywhere around the world, you can work and travel to the places you love, by becoming a digital nomad. Follow @Codemonk -tweets for info\\n\\n#remoteworking #dev #NFTs #Taiwan #China\\n#Solana\",\"3642\":\"And #china got a perfect excuse to do military drills in Taiwan. #ChinaTaiwan #TaiwanStraitsCrisis #BidenRecession #ChinaTaiwanConflict #NancyPelosi\",\"3643\":\"It's either @POTUS and #xinping played the world or its #china but the truth is #china won massively against #taiwan and @POTUS . @POTUS revealed @SpeakerPelosi travel arrangements knowing she won't back down or cancel her plans to travel to taiwan\",\"3644\":\"This is the way I will fight government out of post if they don\\u2019t end ASUU strike in one week\\ud83d\\ude21\\n#Elections2022 #Taiwan #PremierLeague #doggy #nyayostadium #noelshouseparty #ASUU #ASUUstrike #BuhariMustGo https:\\/\\/t.co\\/5e7StO4jfZ\",\"3645\":\"MY SET DIARY: EPISODE 4 |The hustle continues| https:\\/\\/t.co\\/6R4h5j9Gi7 via @YouTube \\n#GazaUnderAttack #PreyMovie #Taiwan #BBNajiaS7 #nsfwtwt #Wars1stBDFanmeet\",\"3646\":\"@XHNews This is not surprising from China.Governor @PR_Paul_BIYA leadership reflects the #dictatorship in #China where they are trying to colonize #Taiwan but are being warn by America of which #Polosi visits the #country and left no matter the #noises from China.\",\"3647\":\"This is not surprising from China.Governor @PR_Paul_BIYA leadership reflects the #dictatorship in #China where they are trying to colonize #Taiwan but are being warn by America of which #Polosi visits the #country and left no matter the #noises from China. https:\\/\\/t.co\\/cV2MAbz9si\",\"3648\":\"Ou Yang Li-hsing, deputy head of Taiwan's defense ministry's research and development unit and head of Taiwan's missile program, was found dead in his hotel room in Pingtung, southern Taiwan.\\n\\n#Taiwan https:\\/\\/t.co\\/DiKgxF4oTL\",\"3649\":\"The Israeli Air Force is working on targets in Gaza using GBU-31 JDAM guided bombs.\\n\\n#Israel #Kasarani #nyayostadium #Gaza #BadDecisions #Taiwan #Ukraine #TREASURE #Trending #trend https:\\/\\/t.co\\/Fh3oav9sPe\",\"3650\":\"#Pelosi: \\\"When I was a little girl, I was told at the beach if I dug a hole deep enough we would reach #China. So we've always felt a connection there.\\\"\\n\\nhttps:\\/\\/t.co\\/fvGw0XdsYP https:\\/\\/t.co\\/C3z0q89HkK\",\"3651\":\"Did you know you can raise funds for your incomplete project, health, and any other emergency online? Click the link for more https:\\/\\/t.co\\/ojVDaqT6Ck #Indiana #JUNGKOOK #nyayostadium #Nunez #LFC #andAUDITION #SitaRamam #FOREVER1 #WAFC #RHOBH #Taiwan #GoFundMe #help #TREASURE https:\\/\\/t.co\\/rPmfa5ojNK\",\"3652\":\"After provoking #Taiwan, #NancyPelosi switched sides.\\n\\nPelosi's weird 'connection': Dig hole = Reach China\\n\\nPelosi says she has always felt a connection with #China through childhood hole digging... take from that what you will.\\n\\n#ChinaTaiwanCrisis #Pelosi https:\\/\\/t.co\\/fvGw0WVjKH\",\"3653\":\"Taiwan: Chinese planes, ships carry out attack simulation exercise\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/iFl0xbm0Ow\\n\\nPlease follow us & retweet\\n#China #Drone #Foreign #Gist #news #Taiwan #US #bobojay #bobojaytv https:\\/\\/t.co\\/Jt6aduFcg8\",\"3654\":\"Taiwan accuses Beijing of simulating invasion as US-China relations nosedive\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/IortearyBW\\n\\nPlease follow us & retweet\\n#Beijing #China #Foreign #news #Taiwan #bobojay https:\\/\\/t.co\\/cpsTb251y5\",\"3655\":\"UN chief warns nuclear weapons are \\u2018loaded gun\\u2019 for humanity\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/cSMbwgBTbO\\n\\nPlease follow us & retweet\\n#AntonioGuterres #China #Foreign #news #Taiwan #UN #bobojay #bobojaytv\",\"3656\":\"TAIPEI The deputy head of #Taiwan defence ministry's research and development unit was found dead on Saturday morning in a hotel room, succumbing to a heart attack.\\n#China #ChinaTaiwanConflict https:\\/\\/t.co\\/VDLfQwhCt5\",\"3657\":\"I used to like China because of their industriousness and rich culture (and Kung Fu); but what is all this fuss about risking #WWIII over having to govern Taiwan? 1.4billion people not enough for you to govern?\\nAnd not giving good advice to Russia?\\nAlso, freedom of speech.\",\"3658\":\"Saw this quote by Martin Luther King and I turned it to a song on the spot. I will call it Warriors \\ud83e\\udd77... #PreyMovie Soro Soke #BBNaija7 #LALISA #MUFC #binance @tyewoolove @KizzDaniel @DONJAZZY @olaoluwasanmi @BrymOlawale @HypeMan_Jay #Ukraine #Taiwan #FOREVER1 https:\\/\\/t.co\\/GdXquO0e9H\",\"3659\":\"No matter how small do your part \\ud83e\\udd17 #BadDecisions #FULLIV #UkrainianArmy #Taiwan https:\\/\\/t.co\\/7S8nXC3rt6\",\"3660\":\"Calls from USA Defense Ministry to Top Chinese Military officials being ignored \\u2013 Report https:\\/\\/t.co\\/SoAbONf1yX\\n#China #USA #Taiwan #Pelosi\",\"3661\":\"North Korea has condemned US House Speaker Nancy #Pelosi\\u2019s recent visit to the Demilitarized Zone separating the two #Koreas, calling the American hero the \\\"Worst Destroyer of International #Peace and #Stability.\\n#NorthKorea #KimJongUn #Taiwan https:\\/\\/t.co\\/icicexbejC\",\"3662\":\"The #Chinese IRBM DF-17 hypersonic warhead during the exercises of the #PLA Eastern Command Forces in the #Taiwan Strait. August 5, 2022.\\n\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/fv4KP5uO0f\",\"3663\":\"Whatever your needs may be...\\n\\nGET at least 1 acre of farmland NOW,\\nClick here\\u27a1\\ufe0f\\u00a0 https:\\/\\/t.co\\/yhBXWin2rz\\n\\n#TOGFG #agrolyfe #agro #realestate #nigeria\\u00a0 #westafrica #Niger #Taiwan #China #BBNaija #investment #agriculture #agribusiness #africa #investor\\u00a0#farm #Chelsea #Fireboy https:\\/\\/t.co\\/M6OH6kpv3d\",\"3664\":\"China's PLA released close-up images of the coastline of the country's #Taiwan region taken during military drills.\\n\\nThe exercises from August 4 to 7 around Taiwan island serve as a strong deterrent to collusion between the U.S. and Taiwan region.\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/oOXsd2vbNZ\",\"3665\":\"@SmallAlhaji_ @officialABAT If you check all the campaign videos of 2014 and 2019... You will see Asiwaju and Adams, very active and vocal promising impossible things. Now you are all removing yourselves from the disaster you brought on us. #EnoughIsEnough #PeterObi #Cheating #Taiwan #\",\"3666\":\"Still taking practice audios from this coaching tip!\\n#VocalcarCoach\\nKanye Northerners Shettima Jackie Aina #TheChi Channels TV Soro Soke #BBNaijaJohnnieWalker #BB24 #Cheating #PremierLeague #Taiwan Obasanjo #BryannOnly #PiConsensus #binance #Sandman #weekendvibes #USA #Ukraine https:\\/\\/t.co\\/RsGGLqKP4f\",\"3667\":\"The White House summoned Chinese ambassador Qin Gang on Thursday to condemn escalating actions against Taiwan and reiterate that the United States does not want a crisis in the region.\\n\\n#Taiwan\",\"3668\":\"Did you know you can raise funds for your incomplete project, health, and any other emergency online? Click the link for more https:\\/\\/t.co\\/ojVDaqT6Ck #Pelosi #PLLOriginalSin #helpinghand #donate #KarachiRains #BB24 #RHOBH #midjourney #TREASUREinManila #Trending #trend #Yankees https:\\/\\/t.co\\/lpzUJdfPzo\",\"3669\":\"\\ud83d\\udd25\\u2764\\ufe0f\\ud83e\\udd81 Out on all platforms globally.\\n\\n#Taiwan #PremierLeague #BBNaijaS7 #newsongalert #Naijaleaks #Afrobeats\\n#lovesongs #worldmusic #Trending\\n\\nhttps:\\/\\/t.co\\/XujdyI76mw via @amuse_io\",\"3670\":\"After Ukraine, US fishes for new war in Taiwanese waters\\n'IN Nigeria, there are people who traditionally rejoice at the prospect of war. '\\n@lagmetropolitan\\n#Taiwan #Pelosi #US #lm #lagosmetropolitan #lagmetro #metro #lagos https:\\/\\/t.co\\/bWugJKdw4Z\",\"3671\":\"#US & #NATO should leave us alone please with the present damages it created of war, insecurity, killed our leaders & stole our resources . Focus on your #Ukraine #Taiwan proxy war\\ud83e\\udd21\\ud83e\\udd21\\ud83e\\udd21 https:\\/\\/t.co\\/Ysaisq3VjW\",\"3672\":\"The #Zionists blood thirsty vampires are back striking and killing defenseless #Palestinians, they get away with it, the West is silent busy with #RussiaInvadedUkraine #ChinaTaiwan. Hypocrisy of the highest order \\ud83e\\udd21\\ud83e\\udd21\\ud83e\\udd21 https:\\/\\/t.co\\/DasyV6eZOj\",\"3673\":\"Xiaomi has created a helmet to control the smart home with the power of thought | Awixy's Blog\\n#Xiaomi #tech #TechNews #Google #UnitedKingdom #ChinaTaiwan #Russia #trend #Trending #ASUUstrike #viral \\n\\n https:\\/\\/t.co\\/aYrFdrVxNO https:\\/\\/t.co\\/mHTArfiaQM\",\"3674\":\"@AJEnglish Hypocrisy! They were busy condemning #PLA military exercise in the #Taiwan strait.\",\"3675\":\"The world has gone digital and the Gospel of our God must be preached in and out of season to the uttermost part of the Earth equipments and others are a need now, you can at your capacity be a Blessing in donation\\n\\n#Taiwan The United States Hamas Retire Chinese Valentine's Day https:\\/\\/t.co\\/PKT4eETeIw\",\"3676\":\"Once you find your person, there's nobody else you want \\ud83d\\udcaf\\n\\n#Kuda #Ashawo #trenches #BadDecisions #TheSandman #TaiwanStraitsCrisis #binance #wrestling #FOREVER1\",\"3677\":\"Fine boy \\u2764\\u2764\\u2764\\u2764\\ud83d\\udc8b\\ud83d\\udc8b\\ud83d\\udc8b\\ud83d\\udc8b\\n@morrishills_ @kiaramoontv @davido @iamcardib \\n#KenyaDecides2022 #\\u30dd\\u30b1\\u30e2\\u30f3 #LALISA #FOREVER1_OUTNOW #China #BadDecisions #TheSandman #TaiwanStraitsCrisis #BadDecisionswithBTS #binance #FOREVER1 #WeLoveYouBamBam #BajrangPunia https:\\/\\/t.co\\/G0zzCuKFup\",\"3678\":\"#MarvinInu token is still very much on track to invade mars!\\nWhen you have $Marvin safely secured in your crypto wallet, you can be assured of #1000x profit very soon\\n\\nhttps:\\/\\/t.co\\/CrEIDE4VLU\\n#BNB\\u00a0 #BSC @Marvin_Inu #ETH #BTC #WeLoveYouBamBam #TaiwanStraitsCrisis #BajrangPunia https:\\/\\/t.co\\/RPgFeJQ0op\",\"3679\":\"Comment your opinion\\n#BadDecisions #TheSandman #TaiwanStraitsCrisis #BadDecisionswithBTS #binance #FOREVER1 #KenyaDecides2022 https:\\/\\/t.co\\/Cp9nEotCf4\",\"3680\":\"Performance can be measured in many ways... rounding up the week's project using @figma software. Remains one of my best tools...\\n#designer #uiuxdesign #DigitalMarketing #SEO #BBNaijaS7 #TaiwanStraitsCrisis #binance https:\\/\\/t.co\\/bu6Z3O81kg\",\"3681\":\"The greatest mistake Bola Ahmed make, making Nigerian to believe on Buhari #BadDecisions #TheSandman #TaiwanStraitsCrisis #binance #FOREVER1 #BadDecisionswithBTS kuda #wrestling\",\"3682\":\"Hellooooo, WE. ARE. HIRING! \\nAnd we are looking for YOU! Do you need some first working experience? Would you like to help us stopping child abuse? If the answer is YES, find out more on our Insta and FB page @NGOELITESTAR (Elite Star Foundation)\\n #TaiwanStraitsCrisis #Children https:\\/\\/t.co\\/541B1PcgCb\",\"3683\":\"NEW: US-based #Snickers chocolate bar maker apologizes to #China for suggesting #Taiwan is a country.\\n#BadDecisions https:\\/\\/t.co\\/WAEr6vJVGb\",\"3684\":\"Here I'm I Praying the Current ruckus between Israel \\ud83c\\uddee\\ud83c\\uddf1 and Gaza Strip ongoing right now does not get blown into #WWIII, \\n\\nI already identified a Snitch Country tho.......\\n#OOMQUOTES https:\\/\\/t.co\\/oEx6eiMows\",\"3685\":\"We are always here to service you, book a session with us. Our results are guaranteed to satisfy you.\\n\\n.\\n.\\n.\\n.\\n.\\n#saynotopests|#BBNaijaLevelUp|#PeterObi4President2023 |#Taiwan |#pestcontrol |#BBNajiaS7 | https:\\/\\/t.co\\/dPuTvMfq4q\",\"3686\":\"Hi guys\\u2026i am sirbiggie,I run a sparepart company were we sell car parts and accessories we also into major upgrades that will blow ya mind..we are CAC registered too #iphone14 #lagosstate #ChinaTaiwanCrisis #BBNajiaS7 pls help me retweet so I can pay salaries and feed family https:\\/\\/t.co\\/C2TDgF7Nrg\",\"3687\":\"Appeasement is a poor strategy, as history has shown, most recently in Ukraine. But intentional provocation is also dangerous. @SpeakerPelosi\\u2019s #Taiwan trip seems to be exactly that. She needs to take several seats and leave foreign policy to the experts.\\n\\nhttps:\\/\\/t.co\\/LFgTD6WFrg\",\"3688\":\"JS Tips: what's d best text-editor 4 JS\\n#Python #BigData #Analytics #AI #DataScience #IoT #Azure #RStats #DotNet #C #CPP #Java #CSharp #Flutter #SQL #PHP #BBNaijaS7 #JavaScript #ReactJS #Pelosi #MachineLearning #Serverless #DataScientist #Linux #Programming #Coding #100DaysofCode https:\\/\\/t.co\\/PTk5Jmo7kY\",\"3689\":\"What's that one tech biz you'd love to start?\\n#Python #BigData #Analytics #AI #DataScience #IoT #Azure #RStats #DotNet #C #CPP #Java #CSharp #Flutter #SQL #PHP #BBNaijaS7 #JavaScript #ReactJS #MachineLearning #Serverless #DataScientist #Linux #pelosi #game #Coding #100DaysofCode https:\\/\\/t.co\\/6PzTwoecxo\",\"3690\":\"Call me for your car upgrades\\u2026#lagosstate #BBNajiaS7 #ChinaTaiwanCrisis #Lexus https:\\/\\/t.co\\/ohdatFGn7a\",\"3691\":\"#NEWS #NancyPelosi #Taiwan Pelosi praises Taiwan, says Asian trip wasn\\u2019t to change status quo https:\\/\\/t.co\\/K5tn3bZYek\",\"3692\":\"Register at https:\\/\\/t.co\\/IIHcFl9pHm and use CODE;RL3271 to get a discount \\ud83d\\ude0d\\n\\nChina is holding its biggest-ever show of military force around Taiwan, including the firing of ballistic missiles. #ChinaTaiwanCrisis #\\uc18c\\ub140\\uc2dc\\ub300 #\\u8a2d\\u55b6\\u5b8c\\u4e86 https:\\/\\/t.co\\/49jpK5z2UX\",\"3693\":\"As a pioneer of Pi ecosystem, intuitively, and with the brains behind it, I have always seen Pi as a success to top the chart in the crypto currency world; and that's what is playing out.\\nIt's a pity if you didn't key in. #ChinaTaiwanCrisis #binance #ChelseaFC #cryptocurrencies https:\\/\\/t.co\\/Okuj69KLRS\",\"3694\":\"https:\\/\\/t.co\\/cWiARiZKhE\\nThe E4C Solutions Library is a living database of products and services that are intended to be accessible and appropriate for those living in resource-constrained environments.\\n#davido #Pelosi #PeterObiForPresident2023 https:\\/\\/t.co\\/LrtIRHqFxS https:\\/\\/t.co\\/ehsicFJyep\",\"3695\":\"#TaiwanStraitsCrisis\\nIg for sale 25k only #BBNaija #Ashawo https:\\/\\/t.co\\/2TBY9tpG5s\",\"3696\":\"https:\\/\\/t.co\\/SjJ0J1Jrfr\\nThe E4C Solutions Library is a living database of products and services that are intended to be accessible and appropriate for those living in resource-constrained environments.\\n#Davido #Pelosi # https:\\/\\/t.co\\/LrtIRHqFxS https:\\/\\/t.co\\/ODS0jH3UZK\",\"3697\":\"VOTE PETER OBI FOR PRESIDENT 2023.\\n\\n#BadDecisions #BadDecisionswithBTS #ChelseaFC #BibleSumett #ChinaTaiwanCrisis #Chinese #PeterObi4President2023 #Obidiots #OBIdientlyYUSful #OBIDIENTS #obikin https:\\/\\/t.co\\/89wMCfK63b\",\"3698\":\"China is constantly provoking Taiwan.\\n\\nMore footages of the joint combat training exercises around Taiwan island conducted by #PLA Eastern Theater Command were released on Friday.\\n#China #Taiwan #Pelosi https:\\/\\/t.co\\/t3aiIMBGzU\",\"3699\":\"The US and China out there in the china sea playing a mean game of Battleship. \\n#TaiwanStraitsCrisis\",\"3700\":\"Why Dr Sid & PETER obi is trending. Click to watch \\ud83d\\udc47 \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"3701\":\"Why\\n #exoneratepingexpress is trending.\\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"3702\":\"Dr Sid speaks to Nigerian youth about Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023 \\n\\n #OBIDIENTS\",\"3703\":\"Dr Sid & Donjazzy endorses Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"3704\":\"Tacha speaks & endorses Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023 \\n\\n #Ashawo\",\"3705\":\"Fire boy dml endorses Peter obi for presidency. Click to watch \\ud83d\\udc47 \\n\\nhttps:\\/\\/t.co\\/zfRxyu0LC1\\n\\ud83d\\udc46\\n\\n #fireboydml #Pelosi #PeterObiForPresident2023\",\"3706\":\"Like this tweet for a follow \\nGabriel Jesus Arsenal Manchester City Haaland Chainsawman #goodmorning #GoodFriday #fridaymorning #AskKTR #TheGreatIndianrun #Taiwan Qixi Festival Chines Valentine\\u2019s Day #\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3 #M\\u30b9\\u30c6 https:\\/\\/t.co\\/FcFymJMhdH\",\"3707\":\"Like this tweet for a follow \\nGabriel Jesus Arsenal Manchester City Haaland Chainsawman #goodmorning #GoodFriday #fridaymorning #AskKTR #TheGreatIndianrun #Taiwan Qixi Festival Chines Valentine\\u2019s Day #\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3 #M\\u30b9\\u30c6 https:\\/\\/t.co\\/E6XPmZ4pnd\",\"3708\":\"Life stay beautiful regardless of #TaiwanStraitsCrisis #Obidiots jackie Ainas galvanizing content even Big Wiz big bag as long as #Mandem #Badness stay #PoweredByData we keep the numbers numbering on... https:\\/\\/t.co\\/SNcjXSw4pD\",\"3709\":\"Taiwan on high alert.\\n#Taiwan's government has condemned #China's war games around its main island, saying #Beijing is acting like Pyongyang by firing missiles into the Taiwan Strait.\\n#ChinaTaiwanConflict https:\\/\\/t.co\\/uqc3FNHJL9\",\"3710\":\"Live scenes from Taiwanese parliament when #China imposes a trade embargo.\\n\\n #Taiwan #ChinaTaiwanCrisis #News https:\\/\\/t.co\\/ZIj4k14Ftz\",\"3711\":\"The aircraft carrier USS Ronald Reagan has been ordered to remain in the #Taiwan area and monitor the situation, the White House said.\\n\\n#China #TaiwanStraitsCrisis https:\\/\\/t.co\\/IIOx4MDAOm\",\"3712\":\"Taiwan Ministry of Defense:\\nA number of Chinese Navy ships and fighters cross the dividing line in the Taiwan Strait.\\nOur army has issued warnings and deployed missile systems on the ground to monitor the situation.\\n#Taiwan\",\"3713\":\"Chinese Foreign Ministry:\\n\\n*We have decided to stop cooperation with the USA in the field of maritime safety.\\n\\n*We will cancel the dialogue between our military leaders and their American counterparts.\\n\\n*We will suspend the climate talks between Beijing and Washington.\\n#Taiwan\",\"3714\":\"JUST IN: World Champion and Record holder, Tobi Amusan (@Evaglobal01), has qualified for the final of the Women\\u2019s 100m Hurdles at the ongoing 2022 Commonwealth Games (@birminghamcg22) with an easy win, clocking 12.40s in the process.\\n\\nTucker David Hundeyin #TaiwanStraitsCrisis https:\\/\\/t.co\\/8Xqw6R7zay\",\"3715\":\"#China imposes sanctions on US speaker over visit to #Taiwan | TheCable https:\\/\\/t.co\\/mSmZKXqiuw https:\\/\\/t.co\\/k5tjgsoLCv\",\"3716\":\"3. Has a bonder in it which keeps your hair from thinning or breaking.\\nAnd it strengthens the hair during bleaching.\\n\\n4. Does not contain Ammonia.\\n\\n \\ud83d\\udc49Send us a DM to get this product.\\n\\n#capitec #Taiwan\",\"3717\":\"Let me be your Architectural Designer\\n#damola #Taiwan #Ashawo #Prey #BadDecisionsTODAY #Cucurella https:\\/\\/t.co\\/9fUMgjIO6g\",\"3718\":\"Diane why!\\ud83d\\ude29\\n\\n#olamide #Modella #Taiwan #ASUU #BBNajiaS7 #BBNaijaS7 #BBNaija #Diana #ibadan https:\\/\\/t.co\\/aM3C65Hhkl\",\"3719\":\"@thuanphat1975 @FWCOMMUNITY_Q2T @bsc_daily Fwc to the moon\\n#Taiwan \\n#Cryptocurency \\n#binance \\n#capitec \\n#bennyXBTSXSnoopDogg \\n#China \\n#BulletTrainMovie \\n#NFTGiveaway \\n#news \\n#Prey \\n#fwcarmy\",\"3720\":\"Foreign used \\nGS350 AWD\\n2008\\nFull option \\nV6\\nAccident free \\n4.9m \\n@Anambra_girl @Obbyanuju @EOkala @oku_yungx @mr_geff1 @_debbii3e @ChefPreem @Abiike_Chopstix @chisomagbodike #EPL2022 #BulletTrainMovie #China #Cryptocurency #Taiwan @geme_nonyalim @Wizarab10 #ARSCRY #FridayVibe https:\\/\\/t.co\\/hRrooPQ70U\",\"3721\":\"China's response to Pelosi's visit to #Taiwan so far:\\n1. Trade sanctions on Taiwanese goods and certain export ban to Taiwan . \\n2. Unprecedented military drills around Taiwan with missiles flying over the Island. \\n3. Sanction on Speaker Pelosi and immediate family. \\n4.....\",\"3722\":\"Visionaries see no failure \\ud83e\\uddff\\n#Taiwan #BulletTrainMovie\",\"3723\":\"Foreigner are giving us problem in this Nigeria #IPOB #Taiwan #iphone14 #peterpurrey #ondo https:\\/\\/t.co\\/6enx4qzLKR\",\"3724\":\"We're not done with ukraine \\nNow Taiwan\\n\\n#Taiwan\",\"3725\":\"Breaking: #China announces sanctions against U.S. Speaker #NancyPelosi and her immediate family following her controversial trip to #Taiwan \\ud83c\\udde8\\ud83c\\uddf3 \\ud83c\\uddfa\\ud83c\\uddf8 \\ud83c\\uddf9\\ud83c\\uddfc https:\\/\\/t.co\\/iPJ7C81tQH\",\"3726\":\"China-Taiwan: Tensions Rise As China Fires Missiles Into Taiwan Strait After Pelosi\\u2019s Visit #TaiwanStraitsCrisis #TaiwanStrait #TaiwanChinaCrisis #TaiwanChinaWar #Taiwan https:\\/\\/t.co\\/m9JAcVU9w4\",\"3727\":\"The Taiwanese army has started the transfer of 155-mm howitzers M114 &amp;120-mm mortars closer to the areas of the exercises of the #PLA\\n\\nGround-based missile systems have also been deployed.\\n#Taiwan #China #ChinaTaiwanCrisis \\n\\nhttps:\\/\\/t.co\\/0x9UZXqgs4\",\"3728\":\"If there is war between #China and #Taiwan, who you think they will blame again? https:\\/\\/t.co\\/SMudtOtjrp\",\"3729\":\"For Enquiries\\n*Call: 09037284473\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 oshiomole tgif https:\\/\\/t.co\\/ZLI73IE4TU\",\"3730\":\"Building a global team? Join Deel to hire in 150 countries in minutes without worrying about local laws, opening a new entity, or managing international payroll. #Taiwan #BBNaijaS7 #WarnerBrosDiscovery #BulletTrainMovie https:\\/\\/t.co\\/qzcuSQPSrV\",\"3731\":\"@Blacckk_j Baba go and mine and look for referal, it is a shame on all of you who once called #PiNetwork scam looking for who & where to buy from now. May God help you in your fruitless effort. #StopSellingPi #PiConsensus #Taiwan\",\"3732\":\"The funny thing about nigerians is that they forget easily. \\n\\nCheck this video out! \\n,\\u274cNo vote Tinubu \\u274c No vote for ATIKU..they r the same.\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 https:\\/\\/t.co\\/MaKgKNoo2B\",\"3733\":\"Who's is interested to marry me.\\nYoruba sweet boy.\\nI'm in Lagos \\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 tinubu congratulations nastyblaq peter obi Arise tv #Obidatti023 https:\\/\\/t.co\\/MBGIPebu1u\",\"3734\":\"Some of the things you need to know about our drink are right here in this video. Check it now!\\n\\n#BulletTrainMovie \\n#DLconversations \\n#GlobalCrusadewithKumuyi \\n#ImpactAcademywithKumuyi \\n#dlcfhq\\n#Taiwan \\n#GCK\\n#PastorKumuyiSaid https:\\/\\/t.co\\/7aelyfUXh4\",\"3735\":\"Today's Update!! (24hrs)\\nBitcoin\\n$23,112 + 0.01%\\nEthereum\\n$1,654 - 0.05%\\nBinance coin (BNB)\\n$313 + 2.76%\\nShiba inu\\n$0.0000012 + 0.84%\\nPlease note: the above prices are not stable it changes any moment.\\n\\nDavid Hundeyin Rema Reno #Taiwan Ashawo Apple music #ElonMusk\",\"3736\":\"IPHONE \\uf8ff CHARGING PACKAGE \\nEXCLUSIVE INCLUDES\\n\\n\\u2714\\ufe0fAirpods 3 \\uf8ff\\n\\u2714\\ufe0f Magnetic Power bank \\uf8ff\\n\\u2714\\ufe0f TYPE C Charger \\uf8ff\\n\\u2714\\ufe0f Transparent MAG Case \\uf8ff\\n\\u2714\\ufe0f Magnetic Charger \\uf8ff\\n \\nPRICE: N65,000\\n\\nDavid hundeyin tafa balogun ashawo daniella #taiwan #bbnajia #BBNaijaS7 congratulations Arise tv https:\\/\\/t.co\\/aEzpnS8MzB\",\"3737\":\"my husband is cheating on me \\ud83d\\ude02\\ud83d\\ude02 #BulletTrainMovie #BadDecisionswithBTS #bennyXBTSXSnoopDogg #capitec #Taiwan #BattleForNo10 #\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50 #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #ZamaZamas #AONArsenal #China #Ask\\u0130cin #Explosion #LISA https:\\/\\/t.co\\/daV6xVvXdF\",\"3738\":\"This day is coming soon!!!\\n\\n#Taiwan #IPPIS #PiConsensus #iphone14 #BBNaija #Arewatwitter https:\\/\\/t.co\\/YAElbkZ8X3\",\"3739\":\"This is the most #OBIDIENT question. \\n\\n#davidhundeyin #Taiwan #Sabinus https:\\/\\/t.co\\/gBR7IocNaC\",\"3740\":\"Good Morning the people of this street.\\n\\n#IPPIS #PiConsensus #Taiwan #iphone14 #BBNaija #BadDecisions #cryptocurrency https:\\/\\/t.co\\/Ro62VgHGk2\",\"3741\":\"Let everything within me sing unto Adonai!\\n\\nPeace to the nations!\\nCall to worship!\\n\\nLet there be light!\\n\\nMake the world a better place! \\n\\n#BulletTrainMovie #WarnerBrosDiscovery #Taiwan #Ask\\u0130cin #AONArsenal #China #BadDecisions #\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35 #\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50 #BattleForNo10 https:\\/\\/t.co\\/0AcEwTwWsz\",\"3742\":\"Sales\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\nSolidly Built 5bedrooms duplex\\nLocation: Dawaki -Abuja.\\nPrice: NGN80m or nearest offer \\nFor enquiries and inspection pls call F.Fayankinnu&Co Estate Surveyors and Valuers on\\n08068854919\\n07066672143\\n#Taiwan | Oshiomole | David Hundeyin | Trenches | Burna https:\\/\\/t.co\\/rpnWM9UjaN\",\"3743\":\"Never Gone \\ud83d\\udcaa #BulletTrainMovie #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059 #brunardo #WarnerBrosDiscovery #Taiwan #capitec #TheGrandFallout #AllOrNothingArsenal #BBNajia #BBNaijaS7 #fireboydml #boiflex #BulletTrainMovie #VMAs #Ask\\u0130cin #ASUUstrike #AEWDynamite https:\\/\\/t.co\\/gp0PMGENjL\",\"3744\":\"Online sessions for the weekend\\nUK 1 &2 Sessions\\nDubai 1 &2 Sessions,\\nScotland 1 session,\\nAfrica Sessions online,\\nChoir Capacity Sessions 1 - 4, etc\\nHoliday Sessions for children continues today. #onstorm #Online\\n#Vocalcarecoach #ChoirCapacityCoach\\n#Taiwan #China #Birmingham2022 https:\\/\\/t.co\\/8APk6oYuGN\",\"3745\":\"Chris Brown can act, sing, write, paint, dance, a talented basketball player, designing, etc. solid guy \\ud83d\\udc4d\\ud83e\\udd1d\\n#Asuu #BulletTrainMovie #Taiwan\",\"3746\":\"Be good always. Know what is right and do what is good.\\n#BBNaija7 #Taiwan #HBOMax #capitec #nig https:\\/\\/t.co\\/kdtxBAi7ug\",\"3747\":\"The world \\ud83c\\udf0e start from wherever you started! #CourierHub to the World @CourierHub_ \\n#poweredbydata\\n#Fireboy #BBNaijaS7 #JapaToPrimeVideo #BulletTrainMovie \\n#BadDecisions \\n#WarnerBrosDiscovery #BattleForNo10 #Taiwan #BattleForNo10 #WarnerBrosDiscovery #BadDecisionswithBTS #HBOMax https:\\/\\/t.co\\/hDA6NESMyP\",\"3748\":\"Stake what you can lose\\n\\n5odd\\n\\nA3C3A35\\n\\nToday\\n\\nEdit | Play | Ignore | Retweet \\ud83d\\udd1e\\n\\n#trenches #EFCC #Rema #Taiwan #Fireboy #olamide\",\"3749\":\"Sheikh Zakzaky: \\\"America's constitution isn't suitable to our country (Nigeria).\\n\\n#Taiwan https:\\/\\/t.co\\/zltNrcYkjY\",\"3750\":\"Job Vacancy for Teachers | salary $1000(8,500cedis) | How to Apply\\nWatch n learn how to apply\\nhttps:\\/\\/t.co\\/cJg7uISFsd\\n#jobsearch #JobVacancy #jobvacancy_alert #jobvacancies #BulletTrainMovie #WarnerBrosDiscovery #Taiwan #BadDecisions #capitec #BattleForNo10 #BadDecisionswithBTS\",\"3751\":\"https:\\/\\/t.co\\/kW36xQFx0g\\nDaily Powered Word Devotional Podcast: Friday 5th August, 2022.\\n#BulletTrainMovie #Taiwan #capitec #BadDecisions #BattleForNo10 #AllOrNothingArsenal #BadDecisionswithBTS #ZamaZamas #FireBoy #Niger #BBNajiaS7 #BBNaijaS7 #ChrisBrown #Afrobeats\",\"3752\":\"Taiwan been surrounded by china shortly after U.S House Speaker Nancy Pelosi\\u2019s arrival in capital of Taiwan. Taipei. #Xi Jinping #World War III #WWIII #UkraineWar https:\\/\\/t.co\\/enFmEAy2gz\",\"3753\":\"@estressecurado HELLO EVERYONE! My name is Samuel , I will do campaign creation and viral organic marketing for your pets on Kickstarter, Indiegogo, and Gofundme using the best-recommended marketing means or strategy to get donations. \\n#Chelsea #China #Taiwan #BattleForNo10 #Amnesty\",\"3754\":\"Despite the uncertainty, I have no fears.\\nI trust @unboundfinance \\n\\n#unboundfinance #UNB #DeFi #crypto #machala #Taiwan #Web3 https:\\/\\/t.co\\/IxSU6u1XwJ\",\"3755\":\"Please what in the name of agbado is pharmaceutical vegetable\\ud83d\\ude02\\ud83d\\ude02.. can someone tell this octogenarian to go and rest.\\ud83e\\udd7a\\ud83e\\udd7a\\n#pitobi\\n#tinubu\\n#BAT2023 #reno #PeterObiForPresident2023 #bella #arsenal #Taiwan #Fireboy #PremierLeague https:\\/\\/t.co\\/VQmy6B6d5G\",\"3756\":\"The consolidation on #Crypto market is crazy\\u2026 how many more days \\ud83e\\udd26\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\n\\n#BTC #BBNaijaS7 #Taiwan\",\"3757\":\"@TherealUGman Follow us for balance updates on #NigeriaDecides2023 #BATSHET2023 #PeterObi4President2023 #Obidatti2023 #Taiwan #China https:\\/\\/t.co\\/NwtOsx7Z7p\",\"3758\":\"\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f Crystal Palace vs Arsenal\\n\\u23f020:00\\n#PremierLeague \\n\\nAs was the case last year, the 2022-23 Premier League season kicks off with a London derby, as\\u00a0Crystal Palace welcome Arsenal\\u00a0to Selhurst Park tonight.\\n\\n\\ud83d\\udcf6 Over 2 \\u27051.45\\n\\nBest Odds \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #Taiwan https:\\/\\/t.co\\/SK3JMA9FMG\",\"3759\":\"Building a global team? Join Deel to hire in 150 countries in minutes without worrying about local laws, opening a new entity, or managing international payroll. #Taiwan #BBNaijaS7 #WarnerBrosDiscovery #BulletTrainMovie https:\\/\\/t.co\\/qzcuSR7tjt\",\"3760\":\"Thank you for your unending love and Support. Much love from here \\u2764\\ufe0f\\n\\n#brandorx #EverythingBranding #Taiwan Chi Chi #BBNaijaS7 https:\\/\\/t.co\\/0NAHWhR8MZ\",\"3761\":\"I be wan go sleep before but I say make i remind una say make una presave #SoloAlbum by @Dunkishrock \\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#capitec #BulletTrainMovie #Taiwan #WarnerBrosDiscovery #Ask\\u0130cin #BBNaijaS7 #thursdayvibes #NINJAWARRIORSFC\",\"3762\":\"And don't forget to stream #Obalende \\n\\n#BulletTrainMovie #Taiwan #capitec #TheGrandFallout \\n#NINJAWARRIORSFC\\nhttps:\\/\\/t.co\\/jBk0P7D9BU\",\"3763\":\"Please remind them \\ud83e\\udd20\\ud83e\\udd20\\n.\\n#Taiwan #BulletTrainMovie #AllOrNothingArsenal #BBNaijaS7 #Explosion #PeterObi #kagiso https:\\/\\/t.co\\/j62UIGDzHd\",\"3764\":\"#SoloAlbum is coming too. By @Dunkishrock\\nPresave the Album now \\ud83d\\udd25\\ud83d\\udd25\\n\\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n#BulletTrainMovie #Taiwan #WarnerBrosDiscovery #JKLive #PokemonScarletViolet #NINJAWARRIORSFC\",\"3765\":\"\\ud83d\\ude48\\ud83d\\ude48\\ud83c\\udfc3\\ud83c\\udfc3\\ud83c\\udfc3\\ud83c\\udfc3Wake up wake up .... #tgif #BulletTrainMovie #BBNaijaS7 #BB24 #Explosion #Trending #twitter #Taiwan #BadDecisions #AONArsenal #EPL #ExtraordinaryAttorneyWoo #EPL2022 #BeautyTukura https:\\/\\/t.co\\/R8GzyJsaar\",\"3766\":\"Presave #SoloAlbum\\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#BulletTrainMovie #Taiwan #WarnerBrosDiscovery #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #TheGrandFallout #Ask\\u0130cin \\n#NINJAWARRIORSFC\",\"3767\":\"Stop playing!!!\\nAs you're streaming Fireboy 's Playboy album... Presave this masterpiece piece too by @Dunkishrock \\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#Taiwan #AllOrNothingArsenal #China #skynews #thursdayvibes #BBNaijaS7 #NINJAWARRIORSFC\",\"3768\":\"Up next on the list is #SoloAlbum \\ud83e\\udd70\\nAnother masterpiece by @Dunkishrock\\n\\n#BulletTrainMovie #capitec #Taiwan #WarnerBrosDiscovery #TheGrandFallout #thursdayvibes #BBNaijaS7 #NINJAWARRIORSFC https:\\/\\/t.co\\/Lwq6cEPuqR\",\"3769\":\"For Rent - Spacious Office Apace Available. \\n\\n\\ud83d\\udccdLocation - Area 11 Abuja. \\n\\nRent - N1,300,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Chelsea #Taiwan https:\\/\\/t.co\\/2ueIR9txeq\",\"3770\":\"#Taiwan One China https:\\/\\/t.co\\/iAL0HSO7tQ\",\"3771\":\"Day 03 FYB week \\nIn advance to me \\n#AllOrNothingArsenal #China #BBNaijaS7 #thursdayvibes #thursdayvibes #Taiwan #WarnerBrosDiscovery #skynews https:\\/\\/t.co\\/roiz2SlXMs\",\"3772\":\"There will be serious chaos and bad economic recession if there is a war with china and tiawan... please let everyone think it over the four horsemen are here #Taiwan #China #WorldWarIII #war #\",\"3773\":\"I really don\\u2019t know why all these countries keeps playing into the deceit of the United States and believe that they will help them. Even though they eventually helped you, at what cost? United States Will always profit from war and destabilisation of regions. #Taiwan\",\"3774\":\"Watch how this lady used strangers to accomplish her selfish aim.\\nhttps:\\/\\/t.co\\/rmRGxznAIg\\n\\n#Apple Music #Spotify #iphone14 #thursdayvibes #China #Taiwan\",\"3775\":\"Osun Election: APC Moves To Tribunal To Challenge PDP Adeleke's Victory\\n\\n#fireboydml #Taiwan #WarnerBrosDiscovery #ASUU\\nRead more\\u300bhttps:\\/\\/t.co\\/GmJsQslGLp\",\"3776\":\"Look at the police who are rigorously protecting #Taiwan https:\\/\\/t.co\\/7e9OC26Hdi\",\"3777\":\"His Excellency Peter Obi And Senator Yusuf Datti Baba-Ahmed. Met with the British High Commissioner to Nigeria, @CatrionaLaing1 \\nWhen A Better Government Takes Over A Well Structured EFCC Will Be Built... If you Agree LIKE\\n #Taiwan https:\\/\\/t.co\\/BaA2cMeVdn\",\"3778\":\"Make 17years old girl dey talk say she no fit love again\\ud83d\\udc94 Oju werey tiri ibi lati kekere\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n#BulletTrainMovie\\u00a0 #Taiwan #AllOrNothingArsenal #BadDecisionsTODAY #BBNaijaS7 #ModijiOpensSRH #Machala #newmonth #timesupolivia #capitec #Explosion #UkraineRussiaWar #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"3779\":\"China allegedly prepares to invade Taiwan barely 24 hour after America\\u2019s Pelosi visit https:\\/\\/t.co\\/aFGYYLQf7u #nosablog #life #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #TaiwanStraitsCrisis #OBIDIENTS #bbnaija\",\"3780\":\"Follow for follow back \\ud83d\\udd19 \\nRetweet and Share #BulletTrainMovie #Taiwan #capitec #AllOrNothingArsenal #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #ExtraordinaryAttorneyWooEp11 #BadDecisionsTODAY #BibleSumett #PokemonPresents #PokemonScarletViolet #BBNaijaS7 #skynews #Explosion #onstorm #foryou https:\\/\\/t.co\\/cEGxjhHBpI\",\"3781\":\"Never look down on God \\n \\ud83c\\udf3a\\ud83c\\udf3a\\ud83c\\udf3a. \\n #BulletTrainMovie #Taiwan #BadDecisions\",\"3782\":\"On the 7th day when God was resting, satan created Nigerian leaders \\ud83d\\ude12\\n\\n#Taiwan #AllOrNothingArsenal #capitec \\n#2023Elections\",\"3783\":\"#Adekunle #Wizkid #Taiwan \\nJob Done installation of rain gutter at ibadan Oyo state #Whatsapp 08085310359\\nEFCC Doyin and cyph Rahman Jago Chi Chi Egbon Ali baba https:\\/\\/t.co\\/G9GAtpSjXN\",\"3784\":\"Do you think the Ethereum Merge will attract institutional Adoption??\\n#ETH #Ethereum #CryptoNews #DeFi #Metaverse #Poshmark #BBNaija #Taiwan #nftart #NFT #BTC #institutions #AdoptATeacher https:\\/\\/t.co\\/ud1UpF6RVS\",\"3785\":\"#BBNaijaS7 #Taiwan #BigBrother #BigBrotherNaijaS7 #BBNajia #BBNaija it\\u2019s getting lit pool party https:\\/\\/t.co\\/npACZaYBZJ\",\"3786\":\"Popping \\ud83c\\udf7e some bottles of champagne \\ud83c\\udf7e\\ud83e\\udd42 Last night \\ud83c\\udf77\\ud83c\\udf77\\ud83c\\udf77\\ud83c\\udf77\\n#BulletTrainMovie #Taiwan #BadDecisions #skynews #AllOrNothingArsenal #ExtraordinaryAttorneyWooEp11 #ExtraordinaryAttorneyWooEp11 https:\\/\\/t.co\\/VHp1KIltN6\",\"3787\":\"\\ud83d\\ude02\\ud83d\\ude02\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 \\nNo be only me go see this thing o!\\nThis man thinks we're in 1910, always talking about food.\\n\\nThe 3 | EFCC Fabio David Hundeyin Here we go Garnacho Premier league Niger #Taiwan Campaign DG Leicester https:\\/\\/t.co\\/sGrgwMYnR0\",\"3788\":\"Risk nothing , Gain Nothing !!! \\n\\n#BulletTrainMovie #Taiwan #AllOrNothingArsenal\",\"3789\":\"May Almighty God Bless Our hustling\\n #Taiwan #Bullish #iphone14 #PiConsensus #BBNaija https:\\/\\/t.co\\/J5gc59nY80\",\"3790\":\"Make the new month amazing one. \\n\\n#ThinkBIGSundayWithMarsha #dailyinspiration #Taiwan #heralddigitals #enterpreneur #WebsiteDesign #graphicdesign #branding #herald_digitals #businessconsulting #business \\n#wisdomtidbit #PAG https:\\/\\/t.co\\/yPQQwkGuw0\",\"3791\":\"#cryptocurrencies trending with #PiConsensus at the top is not a coincidence. The world is about to witness the greatest revolution of all time with #PiNetwork and #Pioneers. You are not too late to be part of history. Retweet till it gets to #Taiwan and #China Reno Omokri Obiano https:\\/\\/t.co\\/gbEdagmUIq\",\"3792\":\"Just a freestyle #Taiwan #BBNaijaS7 #BadDecisionsTODAY #BadDecisionsTODAY https:\\/\\/t.co\\/pHWTp7I5mJ\",\"3793\":\"Here is how to start a conversation with a girl you like;\\n\\nA Thread;\\n\\nWhatever will happen between the both of you is heavily dependent on that first conversation and the impression you leave on her.\\n\\niPhone 14 EFCC ASUU #Taiwan Tinubu Obi https:\\/\\/t.co\\/NuKqOdXZll\",\"3794\":\"I will be speaking at the #SiBANP2PCONFERENCE happening on the 6th of August 2022. #Bitcoin #Coinbase #Binance @ARISEtv @channelstv #Taiwan Blackrock The FBI Chi Chi EFCC https:\\/\\/t.co\\/2bK4aGnVAU\",\"3795\":\"The worst pain is getting hurt \\ud83d\\ude1e by someone you explain your pain too\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n.\\n#BulletTrainMovie #Taiwan #AllOrNothingArsenal #BadDecisionsTODAY #BBNaijaS7 #ModijiOpensSRH #Machala #newmonth #timesupolivia #capitec #Explosion #UkraineRussiaWar #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"3796\":\"For the first time ever, PLA missiles have flown directly over Taiwan. \\n\\nThey hit targets in waters east of the island.\\n\\nThe next two days of military exercises will see many more such firsts.\\n\\n#Taiwan \\/ One China\\/ Dino melaye\\/ Iphone 14 https:\\/\\/t.co\\/cbSE372zmL\",\"3797\":\"You get mind ooo, you unfollow @elonmusk the owner of the app..\\n\\n#model #LeverageRedemption #Taiwan - #BadDecisionsTODAY #BBNaijaS7 #EPL2022\",\"3798\":\"Ever notice when your doing good, people love digging up and talking about your past trying to hurt you? \\n\\n#Deborah #Taiwan #bigbrother24\",\"3799\":\"Bucket prank by me the trouble maker \\ud83d\\ude02\\ud83d\\udc94\\n#prank #trender_sam #explore #ManUnited #China #Taiwan #capitec #Birmingham2022 #trendingvideos https:\\/\\/t.co\\/XmsWKco1NS\",\"3800\":\"Is your choir a choir of songwriters or a choir of 'copyright' singers\\/musicians or a choir of non songwriters&non copyright singers\\/musicians?\\nThe answer to this is key to choral performances&effectiveness musically&Vocally.\\n#Taiwan #capitec #China #onstorm #AllOrNothingArsenal https:\\/\\/t.co\\/Na4Yekzzmu\",\"3801\":\"Once @FabrizioRomano confirmed your relationship to be real with HERE WE GO. Just go and get ready for marriage. I fear that man.\\nASUU #Taiwan\",\"3802\":\"@eajorng you people should please pay me my money since last week Friday #eajor or what kind of delay is this. I would advise people not to use that app anymore #BidenHasCancer #Taiwan #BB24 #BreakingNews\",\"3803\":\"Please how do I start a clothing brand in Nigeria \\ud83c\\uddf3\\ud83c\\uddec #Taiwan #capitec #AllOrNothingArsenal #AtikuOkowa2023 #osun #eoa #NigeriaDecides2023 #KoffeeWithKaran https:\\/\\/t.co\\/eUgJVcdOgP\",\"3804\":\"...on the rise.\\nFifth Seal- The Saints are almost filled seeing our current realities and the World Situations now.\\nSixth Seal- We are about to enter this seal. #WWIII et al,\\nDon't forget I predicted Christ Jesus coming might be during this time.\\n\\nSource- Revelation 6\",\"3805\":\"Trending sticker #Taiwan #AllOrNothingArsenal #capitec #KoffeeWithKaran #onstorm #PokemonPresents #Birmingham2022 #\\u0e04\\u0e37\\u0e2d\\u0e40\\u0e18\\u0e2dEP6 #BBN https:\\/\\/t.co\\/YPAKeLtsly\",\"3806\":\"#TAIWAN @taiwanfoucs \\n I love you! Please as a matter of urgency you have to develop NU-CLEAR WEA.PON as soon as possible to DEFEND your sovereignty against the bully #CHINA. I know you have civilian nuclear power house. #TAIWAN do something now!!!\",\"3807\":\"#TAIWAN @taiwandefense I love you! Please as a matter of urgency you have to develop NU-CLEAR WEA.PON as soon as possible to DEFEND your sovereignty against the bully #CHINA. I know you have civilian nuclear power house. #TAIWAN do something now!!!\",\"3808\":\"@httpxellise Did you know you can raise funds for any of your challenges online? I'll teach you EVERYTHING you need to know through this link https:\\/\\/t.co\\/ojVDaqT6Ck #crowdfundingcampaign #Kickstarter #GoFundMe #support #Taiwan #TejRan #TREASUREinManila #ExtraordinaryAttorneyWoo #YEONJUN https:\\/\\/t.co\\/7rnj6pp7NE\",\"3809\":\"Power of black \\u26ab \\ud83d\\udcaa is exceptional \\ud83d\\udc4c \\ud83d\\udc4f so unique. She kill it \\ud83d\\ude0d \\ud83d\\udc96\\ud83d\\udc96\\ud83d\\udc96 #Ankaradress #Ankara #Taiwan #BulletTrainMovie #capitec #recession https:\\/\\/t.co\\/Ws8Ki9CFt1\",\"3810\":\"Started Coaching Peculiar Voices last year in Choir Capacity Sessions. We recently had an awesome experience at their concert. \\nKudos friends!\\n#BulletTrainMovie #Taiwan #capitec #onstorm #recession #news #PokemonPresents #ChelseaFC #Birmingham2022 #music #Musica #vocalcarecoach https:\\/\\/t.co\\/48lu9wGaF4\",\"3811\":\"Web 3.0 #PiConsensus Binance #Taiwan never allow yourself to be left behind. https:\\/\\/t.co\\/Rrh4VyRrHk\",\"3812\":\"My recent artwork of @_kehindebankole, beauty personafied \\ud83d\\ude0a\\ud83d\\udcaf... Pls tag her, I would love her to see it.\\nhttps:\\/\\/t.co\\/M6oEDZjc76\\n\\n#wizkid #Taiwan #Alibaba #Sabinus #art #smudgepainting #Giveaway #actress https:\\/\\/t.co\\/XvDzDntGau\",\"3813\":\"No caption \\n#GlazersOut #BulletTrainMovie \\n#Taiwan #MUFC #capitec https:\\/\\/t.co\\/wq0Y1ftS4q\",\"3814\":\"#China on Thursday fired five missiles into #Japan's exclusive economic zone, reported news agency Reuters. \\n\\n#ChinaTaiwanCrisis #ChinaTaiwan #Japanese https:\\/\\/t.co\\/IDGmEP8m4s\",\"3815\":\"\\u201cI never reach 5 star \\u2b50\\ufe0f yet, i go manage 333\\u201d \\ud83e\\udd13\\u2764\\ufe0f\\u200d\\ud83d\\udd25\\n\\ud83d\\udc49\\ud83c\\udffbSo guys here\\u2019s #my5starstory \\ud83d\\ude0e, more like a 3starstory tho haha \\ud83d\\ude05. Please help RT and tag @adekunleGOLD till he sees this \\ud83e\\udd32\\ud83c\\udffb\\ud83e\\udd7a\\n.\\n#capitec #Taiwan #BulletTrainMovie #onstorm #music #BB24 #BBNaijaS7 #BulletTrain https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"3816\":\"When you commit a crime that even the inmates are afraid of you @ConvergenceFin \\n\\nCheck out their telegram channel https:\\/\\/t.co\\/5NHIvfXkRL\\n\\n#BulletTrainMovie #Taiwan #capitec #PokemonPresents #PokemonScarletViolet #Birmingham2022 #onstorm #recession # https:\\/\\/t.co\\/1M5P4K2WZ9\",\"3817\":\"7 days after applying for change of phone number in my NIN with the total sum of 9k, I can't still login into the app so I can get the plastic ID ..\\n\\nIt seems everything in this country is just scam \\n#Taiwan #nimc #nin\",\"3818\":\"I will credit 5 people with 2k each. Answer the questions of the night and drop your account details, \\n#\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ichmachenichtmehrmit #BulletTrainMovie #\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059 #Taiwan #capitec\",\"3819\":\"Congratulations to you once more my namesake Goodness Chiemerie Nwachukwu\\n#Birmingham2022 #BulletTrainMovie #Taiwan\\n\\n Doyin #BBNaija ELOSWAG https:\\/\\/t.co\\/MlRna6pnb9\",\"3820\":\"OMG \\ud83d\\ude02\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02\\nThis is so funny @morrishills_ \\n\\n#\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ichmachenichtmehrmit #BulletTrainMovie #\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059 #Taiwan #capitec #Sismo #\\u0633\\u0643\\u0631\\u0628\\u062a78 #\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a #\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a #\\u0643\\u0644\\u0646\\u0627_\\u0627\\u0644\\u0634\\u064a\\u062e_\\u0628\\u0646_\\u062d\\u0645\\u064a\\u062f #\\u0633\\u0643\\u0631\\u0628\\u062a77 https:\\/\\/t.co\\/eggArJK1mA\",\"3821\":\"Different shades of colour of crocs!!!\\n#BulletTrainMovie #Taiwan ,#capitec #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #trends \\n15000 only.\\nhttps:\\/\\/t.co\\/8EIbvwItzv\\nkindly Rt\\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f https:\\/\\/t.co\\/9CheKrqxvu\",\"3822\":\"Relax your body with this tea and feel like a baby. Watch recipe here \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/Bvw6JKda5c\\n\\n#BulletTrainMovie #Taiwan #capitec #Birmingham2022 #BulletTrain #Food https:\\/\\/t.co\\/5XQk1GZOUr\",\"3823\":\"\\ud83d\\udd25\\ud83d\\udd25TWO WORLD RECORDS & A GOLD MEDAL! Nigeria's Goodness Chiemerie Nwachukwu was on a different level, clinching the GOLD medal in women's Discus F42-44\\/61-64 event with an unprecedented throw of 36.56m.\\n#CommonwealthGames2022 #wizkid Iphone 14 Dave TG OMORI Omah lay #Taiwan https:\\/\\/t.co\\/ZoGToaumXh\",\"3824\":\"Product designers in the house, what are your BEST 3 fonts? I urgently need better fonts \\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83d\\udcbb\\n\\n#adeyyytweets #capitec #BulletTrainMovie #Taiwan #ASUUstrike #uiuxdesign #uiux #uidesigner #uxdesigner #uxdesign #thursdayvibes #UI #ux #Designers #GraphicDesign\",\"3825\":\"A Designers Gate made of Wrought Iron @veryaffordable Price \\nWe are located @ Pilgrim junction off MCC\\/Uratta Road Owerri Imo State. #BBNaijaGuinnessSmooth \\n#GogoSkhotheni #Taiwan @Naija_PR @PeterObi @PeterPsquare https:\\/\\/t.co\\/i6xB8ONfRb https:\\/\\/t.co\\/vDqCjp8ZKd\",\"3826\":\"A Designers Gate made of Wrought Iron @veryaffordable Price \\nWe are located @ Pilgrim junction off MCC\\/Uratta Road Owerri Imo State. #BBNaijaGuinnessSmooth \\n#GogoSkhotheni #Taiwan @Naija_PR @PeterObi @PeterPsquare https:\\/\\/t.co\\/i6xB8ONfRb https:\\/\\/t.co\\/mFSHpbLkRV\",\"3827\":\"Must watch, you need to check this movie out\\n#monsterwemade coming out soon\\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan \\n#BBNaija \\n@BrymOlawale \\n@DavidHundeyin \\n\\nRahman Jago USSD Ali baba David hundeyin Deborah benue state https:\\/\\/t.co\\/YEWbHC5Yma\",\"3828\":\"Street protests took place in Lebanon on the anniversary of the August 4, 2020 bombing at Beirut's seaport. Participants demanded that those responsible for the tragedy be brought to justice.\\n#Lebanon #Taiwan #crime #WHO #recession #BulletTrainMovie #TrendingNow #Trending #viral https:\\/\\/t.co\\/XLJzMjNhun\",\"3829\":\"Nigerian Doughnuts Filled With Jam, Recipe, Method, History, Types || David Hundeyin #Taiwan #MohaleOTR https:\\/\\/t.co\\/Rvk8u5qP58\",\"3830\":\"Join us as we start to analyze top 5 Europe teams\\nhttps:\\/\\/t.co\\/pwBvCavfgl\\n#BBNaija #BulletTrainMovie #Taiwan #Wizkid ASUU\",\"3831\":\"Azerbaijan's embassy in London was attacked by religious radicals.\\n\\nThe diplomats were not injured in the incident, the Azerbaijani Foreign Ministry said. \\n\\nThe perpetrators were detained.\\n#Azerbaijan #london #Diplomacy #BulletTrainMovie #Taiwan #PokemonPresents #Trending #viral https:\\/\\/t.co\\/A84bZqVB2K\",\"3832\":\"@SpiceRadioNg Every Thursday from 4 pm - 5 pm on The Drive Time Show... Bringing throwback songs to the table.\\n\\n#thursdayvibes #BulletTrainMovie #Taiwan #spiceradiong https:\\/\\/t.co\\/Zm4XzZzg1A\",\"3833\":\"Working on some creatives for one of the fastest growing online marketplace@ https:\\/\\/t.co\\/MMTYoLhpx6\\n#justsaleonline #BBNaija #BulletTrainMovie #Taiwan #thursdayvibes #uiuxdesign #design https:\\/\\/t.co\\/p6XojkDsrJ\",\"3834\":\"PHOTOS: Pantami Meets Reps Of Facebook, Google, Others\\n\\nThe Minister of Communications and Digital Economy, Professor Isa Pantami has held a meeting with the representatives of Social Media giants such as Facebook (Meta), Twitter, TikTok & Google.\\n\\n#Pantami #Taiwan #NigerRepublic https:\\/\\/t.co\\/6pDOTY9uKU\",\"3835\":\"MUST SEE: AERIAL VIEWS OF THE NEWLY COMPLETED UGBOR-AMAGBA ROAD CONSTRUCTED BY GOVERNOR GODWIN OBASEKI...\\n\\nPic Credits: EICO MEDIA \\n#Taiwan \\n#pere\\n#RahmanJago\\n#eico https:\\/\\/t.co\\/6P0zhqhVwx\",\"3836\":\"MUST SEE: AERIAL VIEWS OF THE NEWLY COMPLETED UGBOR-AMAGBA ROAD CONSTRUCTED BY GOVERNOR GODWIN OBASEKI...\\n\\nPic Credits: EICO MEDIA \\n#Taiwan \\n#pere\\n#RahmanJago\\n#eico https:\\/\\/t.co\\/ZQ91j8EQaP\",\"3837\":\"Taiwan Cancels Flights As China Holds Military Drills Upon Pelosi Visit: https:\\/\\/t.co\\/YZjghmRyBR \\n#China #Pelosi #Taiwan #WorldNews\\nhttps:\\/\\/t.co\\/YZjghmRyBR\",\"3838\":\"When our makes are different and our target vary from each other's.\\n#HappyEnding #BulletTrainMovie #Taiwan #MohaleOTR #capitec #PokemonScarletViolet #PokemonPresents #thursdayvibes #MilePhakphum #BibleBuild #Sismo #Explosion https:\\/\\/t.co\\/Jathe02eyN\",\"3839\":\"GIVEAWAY TIME\\ud83d\\udc83\\ud83d\\udc83\\ud83d\\udc83\\nMake sure you follow all instructions in the video to qualify.\\nFor individuals in Lagos only.\\n\\n#dice #ladiesfirst \\n#Wizkid #Taiwan #sabinus https:\\/\\/t.co\\/jNc3fqiUtH https:\\/\\/t.co\\/5MALG8kSIN\",\"3840\":\"This picture already told us the winner of #BBNaija this year \\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan https:\\/\\/t.co\\/RMj7g6MMC1\",\"3841\":\"Do it like this don turn to position like this......#Wizkid #Deborah #iphone14 #RahmanJago #Taiwan https:\\/\\/t.co\\/vEn321p0T2\",\"3842\":\"Don't be the guy who's good at sounding smart but hasn't done anything with his life-@fineboytunde_ @OtakhorEmmanuel \\n\\n#Taiwan #BulletTrainMovie #capitec #sabinus #thursdayvibes\",\"3843\":\"Dear Queens,,\\n\\nTelling a guy U have a boifriend wont chase him away..\\n\\nJust tell him U need 50k,,\\n\\nLa hin go ask U whether U lo get Boifriend..\\n\\n\\ud83d\\ude02\\ud83e\\udd23\\n\\nDavid Hundeyin Shaw iPhone 14 iPhone 6 Arisetv #Taiwan Everton Tanzania Rahman\",\"3844\":\"While U are busy consoling her on her menstrual pain..\\n\\nAnoda guy is happy she is not pregnant..\\n\\n\\ud83d\\ude01\\ud83d\\ude01\\n\\n#lifedrama #BulletTrainMovie #Taiwan iPhone 14 iPhone 7 Shaw Arisetv David Hundeyin iPhone 6 Zainab\",\"3845\":\"#BBNaija this year without Bryann would be so boring \\nWho agrees!! Drop an Emoji if you agree \\u2764\\ufe0f\\u200d\\ud83d\\udd25\\ud83d\\udcaf\\n\\nPere Rahman Jago #Taiwan #VIBRYANNTS https:\\/\\/t.co\\/EfUaut9kOK\",\"3846\":\"Make una de try get conscience. Dz M\\u00f8\\u00f1ey go com, bt no be to rush am #Repost #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #PokemonScarletViolet #kagiso @davido @SpyroTheDragon #Billing https:\\/\\/t.co\\/kzmzAnO5vv\",\"3847\":\"This picture already told us the winner of #BBNaija this year \\n\\n#VIBRYANNTS Pere Rahman jago #Taiwan https:\\/\\/t.co\\/cmaB04hQQc\",\"3848\":\"Drop any emoji if you\\u2019re on team #VIBRYANNTS \\n\\u2764\\ufe0f\\u200d\\ud83d\\udd25\\u2764\\ufe0f\\n\\n#BulletTrainMovie #BBNaija #Taiwan https:\\/\\/t.co\\/UPSQQiIjql\",\"3849\":\"This life is 100% your responsibility. No one is coming to save you, you have to do it yourself...\\n\\n#BulletTrainMovie \\n#Taiwan\",\"3850\":\"Top 5 copywriting mistakes \\n\\n1. Not knowing your audience\\n2. Lacking focus\\n3. Focusing on yourself\\n4. Trying too hard to sell\\n5. Not having enough content.\\n\\n#Taiwan #Marketing #affiliateprogram\",\"3851\":\"B\\/Fast: Corn + pharmaceutical vegetables\\n\\nLunch: Ewa agonyin + pharmaceutical vegetables\\n\\nDinner: cassava + pharmaceutical vegetables\\n\\nNo wonder BATISTS always have the strength & patience to wear you out with silly arguments \\ud83d\\ude01\\ud83d\\ude02\\ud83d\\ude02\\n\\n #davidhundeyin #Taiwan #Cucurella #Bants https:\\/\\/t.co\\/F4ipVGpGv7\",\"3852\":\"Nothing mirrors life like trading. Combat sport is second. \\n\\n#forex #Taiwan #onstorm\",\"3853\":\"I don't want peace #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #onstorm #PokemonScarletViolet #onstorm #PokemonScarletViolet #kagiso #sabinus #BibleBuild #MilePhakphum #thursdayvibes #recession #Grunewald #AditiShankar https:\\/\\/t.co\\/HRaxg8lwmS\",\"3854\":\"But why haven't you watched and retweeted my new videos??\\n\\n Oya go watch am \\n\\n#BBNaija #Taiwan #timesupolivia #thursdayvibes #mtvbase #AfrobeatmeetsBerlin https:\\/\\/t.co\\/fBWDJy3vow\",\"3855\":\"Three Malian ex-ministers named in international arrest warrants for alleged fraud have denied any guilt and say they are willing to clear their names.\\n#Taiwan #inflation https:\\/\\/t.co\\/DGoLBK68RJ\",\"3856\":\"I know am handsome. \\n.\\n.\\n#BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"3857\":\"Who remembers this match? #BulletTrainMovie #Taiwan #capitec #timesupolivia #BibleSumett #onstorm #PokemonScarletViolet #BBNaija #sabinus #kagiso #MilePhakphum #thursdayvibes #Grunewald #fyp #Trending #sports https:\\/\\/t.co\\/1UsANAgJJV\",\"3858\":\"#Awkgraphicdesigner #iPhone 14 #Taiwan \\nI'm the designer https:\\/\\/t.co\\/TjKUhKr0q4\",\"3859\":\"#realestate \\n#realestateagents \\n#realestatesales \\n#realestateagent #realestateinvestor #houseforsale #houseforrent\\n#OfficeSpace #office\\n#Taiwan #thursdayvibes \\n#capitec #Deborah #Arise TV\\niPhone 14\\n#BibleBuild #PokemonScarletViolet https:\\/\\/t.co\\/QRvVsLNQfS\",\"3860\":\"In the spirit of collaborating with relevant stakeholders across the agricultural value chain to promote sustainable & profitable agribusiness across Africa, Nicert Expert Consulting Limited meets with Hectare by Hectare. \\n#Taiwan #capitec #NECL https:\\/\\/t.co\\/ii0ZYtyYog\",\"3861\":\"mother killed her son because of money what a world \\ud83d\\ude02\\ud83d\\ude02 #Taiwan #capitec #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #timesupolivia #BibleSumett #PokemonScarletViolet #onstorm #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #PokemonPresents #kagiso #MilePhakphum #JKLive #BibleBuild #TASYAXTRAFARASYA #thursdayvibes https:\\/\\/t.co\\/q3EnTanOHT\",\"3862\":\"One of the names this generation ought to give their unborn children is: God Abeg\\ud83e\\uddce\\ud83c\\udffd\\ud83d\\ude2b #Taiwan #Cucurella #bellashmurda #GodAbeg\",\"3863\":\"If you can eat 2 times in a day in the present day Nigeria, you are rich\\ud83d\\ude2b. Hunger is another unrest #Taiwan #capitec #thursdayvibes\",\"3864\":\"@_Tiga_b @opekingfrosh @PELSAUTOS @oris616 @isellnbuycars @Autorush2 @Gidi_Traffic\\n@AutosGidi @KingFadAutos @kazxyautos @KingsmenAuto\\n@bims6_0\\n@Mr_uncle_jide @CarsConnectNG #Elonmusk #Davido jobseeker #PVC #Taiwan 2023 #PeterObiForPresident2023 #Cars https:\\/\\/t.co\\/GJKiqpU2cD\",\"3865\":\"@OfficialPDPNig is not a Muslim party but the presidential candidate north, party chairman north, BOT chairman North PDP youth leader North , PDP women leader north . Can we say PDP is northern party. \\n\\n#Taiwan #Cucurella #azpilicueta #chelaea\",\"3866\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/UO64XhzpvI\",\"3867\":\"Remember this Advert?\\ud83e\\udd70\\ud83d\\ude05 #omojesucfr #followme #Taiwan #capitec #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #timesupolivia #BibleSumett #PokemonScarletViolet #onstorm #PokemonPresents #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #kagiso #MilePhakphum #JKLive #BibleBuild #thursdayvibes #TASYAXTRAFARASYA https:\\/\\/t.co\\/0VeX3MpLGa\",\"3868\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/d5rnh3a4WW\",\"3869\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/YwJk1hdhUC\",\"3870\":\"This life no balance #BurnaBoy #burna #Wizkid #beautytukura #Taiwan #capitec #BBNaija #Doyin Burnaboy common person cover by Tusure https:\\/\\/t.co\\/zh5UqmwfBT\",\"3871\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #tinubu #Ronaldo #rufai #sabinus #china#PrimeVideoNaija https:\\/\\/t.co\\/ADtTix2zjx\",\"3872\":\"The United Arab Emirates expresses support for China's sovereignty and says that the \\\"One China\\\" principle must be respected.\\n#Taiwan\",\"3873\":\"@officialABAT safe journey Jagaban, heading for medical Trip\\ud83d\\ude1e\\n\\n@officialABAT you should be at home playing with your grand kids and not contesting for presidential election.\\nYou really need some rest sir\\n\\nIphone14|Dino| Ike Ekweremadu|IPPIS\\n@UchePOkoye #Taiwan #TableShaker https:\\/\\/t.co\\/HvUJEYPLT4\",\"3874\":\"Nobody : \\ud83e\\udd14\\ud83e\\udd14\\ud83d\\ude25\\n\\nATMs in Nigeria: \\n\\\" No slip, Wake up, collect your money\\\"\\n@memetopiaz @iFunnymemeIG\\n@introvertsmemes\\n@memes\\n@memesbychroath \\n#Memes #memesdaily #BUGA #Twitter #Taiwan #timesupolivia #PokemonScarletViolet #onstorm #PokemonPresents #memetopiaz\",\"3875\":\"How you are carefree with little things kept in your care is just same way people will be carefree with yours. \\n\\nAlways be accountable & Responsible at all times. \\ud83d\\udc4c\\n\\nWhat goes around surely comes around. Might not be now but surely will. Some call it KARMA anyways.\\ud83e\\udd1d\\n\\n#Taiwan\",\"3876\":\"Abeg who go follow me swap for my iPhone\\ud83d\\ude2a the hunger wae dae this country now eh #iphone14 #Taiwan #Wizkid https:\\/\\/t.co\\/xTV2UtbAoO\",\"3877\":\"@BBCAfrica has the best investigative journalist in the world and their information is accurate and top-notch. Even though the journalist risk their lives to uncover the truth \\ud83d\\udcaf\\ud83d\\udcaf\\ud83d\\udcaf\\n\\n#Taiwan #capitec #thursdayvibes\\n#kagiso #Zamfarabandits\\nhttps:\\/\\/t.co\\/SvB8yG3fRB\",\"3878\":\"Nobody is coming to save you, put your cross on your neck and head to Calvary. \\n\\n#BBNaija Nigerien iPhone 14 Deborah IPPIS TG Omori ASUU #Taiwan\",\"3879\":\"Amheed aka Rio Art don come again with another design. \\n@Badboytimz\\n@officialABAT\\n@Olamide\\n#bat #BB24 #APC #chelsea #Taiwan https:\\/\\/t.co\\/d7KWZW8o6P\",\"3880\":\"Update on the Taiwan-China Crisis https:\\/\\/t.co\\/2NvI1GWAPI\\n\\n#Taiwan #ChinaTaiwanCrisis #news https:\\/\\/t.co\\/W1gUdkdJgc\",\"3881\":\"Thank you so much for the retweet\\ud83d\\ude4f \\u2764\\n\\n#Taiwan #capitec #timesupolivia #CommonwealthGames2022 #thursdayvibes #ExtraordinaryAttorneyWooEp12 #onstorm #BibleSumett #PokemonScarletViolet #winmetawin #BBNaija #sabinus https:\\/\\/t.co\\/o5jZCnFs9l\",\"3882\":\"Listen to this.\\n.\\n.\\n#PrimeVideoNaija Congratulations Nastyblaq #BBNaija #Taiwan #BbnaijaS7 Niger https:\\/\\/t.co\\/jSCunSLu3Z\",\"3883\":\"Uduak Akpam, the Killer of a job seeker, trying to escape from court. \\n\\n #PrimeVideoNaija Congratulations Nastyblaq #BBNaija #Taiwan #BbnaijaS7 https:\\/\\/t.co\\/lScNEVABlX\",\"3884\":\"........how many times do I have to say it gonna be ok \\ud83d\\udc4c \\ud83e\\udd7a\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\n#thursdayvibes \\n#Taiwan \\n#\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"3885\":\"@Remmzor__ Boss it\\u2019s your boi again \\ud83d\\ude4c\\ud83d\\ude4c\\ud83d\\ude02\\ud83d\\ude4f\\ud83c\\udffb\\ud83e\\udd72\\nShow love retweet Abeg \\ud83e\\udd79\\n@Olamide @DONJAZZY @cruelsantino \\n@cuppymusic @TemiOtedola @mreazi \\n@iamtheOsagie @FrankHasAPlan @Badboytimz @fireboydml #Taiwan #BIGWIZ #Don't Look Up #ASUU #twins #DoctorWho #Burnaboy https:\\/\\/t.co\\/9IwrKho6D7\",\"3886\":\"Come for your problems to be solve. If you want your husband or wife back, childleness, Court Case, bring back lost items and more. What'sap Kofi oo Kofi powers +233545375629!!. #Taiwan #ExtraordinaryAttorneyWooEp12 #capitec #CommonwealthGames2022\",\"3887\":\"@davido @primevideonaija @davido am ur number 1 fans, I made stand strong cover please sir just watch the video \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f #davido #sabinus #thursdayvibes #Taiwan #ExtraordinaryAttorneyWooEp12 #BibleSumett #BBNaija #Trending #TrendingTopics https:\\/\\/t.co\\/RVZHJv4Dq9\",\"3888\":\"Do you know why Neither APC Presidential candidate or PDP candidate nor Kwankwanso can make a better President is.\\nGreatness is Being accepted by the people and not protecting yourself from the people : #IkeEkweremadu\\n#sabinus #iphone14 #Dino #Taiwan\",\"3889\":\"Today was \\ud83e\\udd26\\u200d\\u2640\\ufe0f\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\nMorning: I was in Ibadan \\nAfternoon: I was in Ogun state \\nEvening: Am in Ibadan \\ud83d\\ude1c\\n\\nAliamdulillai \\ud83d\\ude4f\\ud83c\\udffb\\n\\ud83d\\udc63\\ud83d\\udc40\\n#MUFC #Taiwan #thursdayvibes\",\"3890\":\"@davido @primevideonaija @davido am ur number 1 fans, I made stand strong cover please sir just watch the video \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f #davido #sabinus #thursdayvibes #Taiwan #ExtraordinaryAttorneyWooEp12 #BibleSumett #BBNaija #Trending #TrendingTopics https:\\/\\/t.co\\/eP39dmYkk0\",\"3891\":\"Chase it!\\nFrom @ateaseauto \\n\\n#Taiwan #ExtraordinaryAttorneyWooEp12 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #capitec #timesupolivia #timesupolivia #onstorm #BibleSumett #PokemonScarletViolet #winmetawin #thursdayvibes #sabinus #kagiso https:\\/\\/t.co\\/IcB3qoU3yo\",\"3892\":\"Chase it!\\n#Taiwan #sabinus #capitec\\n#BibleSumett #bala #lexsus #automoblie #blackownedbusiness #black #blackgirlmagic #money #newmonthnewgoals #lagosbusiness #ibadan https:\\/\\/t.co\\/zeEkduujDv\",\"3893\":\"Ini Umoren\\u2019s Killer Attempts To Escape After Sentencing\\nUduak Akpan, the convicted killer of Akwa Ibom jobseeker, Iniobong Umoren, attempted to escape after he was sentenced to death at the Akwa Ibom State High Court on Thursday. 1\\/2\\n#Taiwan #Sheggz #ASUU #arisetv #buhari #wizkid https:\\/\\/t.co\\/2T16mzm66j\",\"3894\":\"I've been working on this painting for a while now\\n\\n#art #oilpainting #painting #color #oiloncanvas #artwork #exploremore #explorepage #fyp #viral #explore #Taiwan #explorer #artist #NFT #buyart #ExtraordinaryAttorneyWooEp12 #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #visualart #fineart #EndSARS https:\\/\\/t.co\\/6jLeVt1HGi\",\"3895\":\"Remember this?\\n\\\"Cn i still tell yah,U the finest in my vineyard\\n@DONJAZZY @ubifranklin1 @davido @NICKIMINAJ @patorankingfire @temsbaby @Iam_Magixx @alhajitekno @wizkidayo @patorankingfire @Olamide @kanyewest @officialnairam1 @PeterObi\\n#Taiwan #BBNaija #BBC #AfrobeatsTheBackstory https:\\/\\/t.co\\/0jgRDDdSbU\",\"3896\":\"Let this white people just rest abeg #NATO na only una get problems \\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\ud83d\\udeb6\\u200d\\u2642\\ufe0f#russia #WWIII #RussiaInvadedUkraine https:\\/\\/t.co\\/V3fftrZIm3\",\"3897\":\"Here's an opportunity to create wealth through land banking.\\nJoin us THIS SATURDAY for A-Z of Buy2Flip with Mr. Opeoluwa Oni.\\nDate: August 6, 2022\\nVenue: Zoom \\nTime: 7PM \\nClick https:\\/\\/t.co\\/7gLvZAzOZg to register now.\\nDon't Miss It!#Taiwan, #PeterObi2023, #landbanking #landscape https:\\/\\/t.co\\/Yn4c3dWBGh\",\"3898\":\"8 30 Tonight, we be live on Twitter Space on \\\"Football Analysis on Top 5 Europe teams, where football Analysts expert gonna be available to analyze details about each teams. Don't miss it \\n#Taiwan #capitec #CommonwealthGames2022 ASUU #iphone14 #Wizkid #Cucurella De Jong #BBNaija https:\\/\\/t.co\\/ttOTCeFsTr\",\"3899\":\"I hope Western sponsored media is preparing to cover war stories now that Nancy Pelosi had visited Taiwan? Another Ukraine loading \\n\\n#Taiwan \\n#PelosiVisit \\n#UkraineRussiaWar\",\"3900\":\"As premiere league and other leagues wan start this weekend so ehn. Wahala go de plenty households. Ndi bb9ja vs Ndi Football vs Ndi Telemundo\\n\\nSesko | Garnacho | Simp | ASUU | Jovic\\n#Taiwan #timesupolivia #AllOrNothingArsenal #winmetawin #PokemonScarletViolet #SheggzOlu #onstorm\",\"3901\":\"All available as seen\\nLocation Portharcourt and Umuahia \\nDelivery is never a problem darling \\n\\n#AllOrNothingArsenal #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #BBCOurNextPM #BBNaijaLevelUp\\n#umuahia #SheggzOlu\\n#MONEY #phtwittercommunity\\n#sabinus\\n#Taiwan\\n#Simp\\/\\/ Niger\\/\\/ASUU https:\\/\\/t.co\\/SI0FBo6nXP\",\"3902\":\"Nigeria banks pls fix your employees attitude most especially @myaccessbank \\n\\nOn top my money \\u2026 oga o. #AllOrNothingArsenal #Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #PokemonScarletViolet\",\"3903\":\"Asian Markets Risen Despite Optimism On Economic Data, Earnings\\n\\n#Taiwan #ASUUstrike #ASUU #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\\nRead more\\u300bhttps:\\/\\/t.co\\/4dhL4QTvks\",\"3904\":\"Organ Harvesting: Again, UK Court Remands Ekweremadu In Prison Till October 31\\n\\n#Taiwan #timesupolivia\\nRead more\\u300bhttps:\\/\\/t.co\\/OsWwjgB9jA\",\"3905\":\"The only thing you should be saving up for is relocation\\u2708\\ufe0f\\nRelocate and again i say relocate\\ud83d\\udde3\\ufe0f\\n#BBNaija \\n#Taiwan \\n#MONEY\",\"3906\":\"Nigerian groom was lost in thought as his bride showed off her dance skill at their wedding reception.\\nFollow @GistHubNaija\\n\\n#iphone11\\n#Taiwan \\n#AllOrNothingArsenal \\n#AamirKhan \\n#MONEY \\n#sabinus \\n#SheggzOlu \\n#onstorm https:\\/\\/t.co\\/Qjge4pwSaL\",\"3907\":\"Nigeria Super Eagles To Face Cristiano Ronaldo In Friendly Match\\n\\n#Taiwan #Simp #superettan #SuperEagles #AllOrNothingArsenal #CristianoRonaldo #iPhone13\\nRead more\\u300bhttps:\\/\\/t.co\\/P0plKFZF5o\",\"3908\":\"I can't stop laughing \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\n#Taiwan #piconsensus2022 IPOB iphone14 https:\\/\\/t.co\\/LcDAYcTaY0\",\"3909\":\"Success doesn't just find you. You have to go out and get it. \\n\\n#Taiwan #LovelyINU #iphone14 #iphone6 #piConsen #Slimp #Bone #JustinBieber #Taiwan #MONEY #Airtel #London #NeverAgain #SquidGame\",\"3910\":\"The View From Taiwan: 'We've Had This For 70 Years\\n\\n#Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ChinaTaiwanCrisis #ChinaTaiwan #iPhone #AllOrNothingArsenal\\nRead more \\u300bhttps:\\/\\/t.co\\/fwteHWjrmq\",\"3911\":\"Meet the new vice chancellor of tai solarin university of education.\\nProf. Sikiru banjo\\n#iphone14 #BBNaija #ChelseaFC #Taiwan https:\\/\\/t.co\\/0X1IN17Ti6\",\"3912\":\"BREAKING: Court Sentences Uduak Akpan To Death For Murder Of UNIUYO Graduate\\n\\n#Taiwan #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #ASUUstrike #Simp #iPhone13 #IPPIS\\nRead more\\u300bhttps:\\/\\/t.co\\/WGP9is3TsK\",\"3913\":\"This is the official commencement of the #LebokuInternationalNewYamfestival of the #Ugep people. \\n\\nFollow and turn on the notification to have all the information on the most enriched culture in the 21st Century. \\n\\nYam is is not just yam.\\n\\n#boomplayptm\\n#Taiwan \\n#BBNaija https:\\/\\/t.co\\/AGjMoC7ohM\",\"3914\":\"Another beautiful design. I need a client for this beautiful design #Construction #design #Taiwan https:\\/\\/t.co\\/yAwMxajutT\",\"3915\":\"#fintech #banking loan automation \\nCustomer churn analysis \\nPersonal finance management \\nDepending on where your organization is pick an #ai strategy and start improving customer experience \\n#qonexiq #Taiwan #cameroon #BBNaija\",\"3916\":\"But guess what? \\nThey go jam Festus Keyamo for traffic and dey go hear am from that Warri boy woto woto!\\nA single Keyamo is a million times brilliant than a quest!ionable certificate Dino and a confused Bwala!\\n\\nLet's go there! #Taiwan #timesupolivia #TEAMWANGdesignTHAILAND\",\"3917\":\"Loading of Longspan Aluminium Roofing Sheet to Ifo Ogun State\\n\\nColour: Blue\\n0.45mm \\nUdank Frank Akpan Iphone 14 Mompha #Taiwan #wizkid Simp Agbado London Jaruma Chomzy God abeg teni frenkie Sweden and finland Bella Shmurda ike Doyin\\nWhatsapp 08085310359\\n\\nWATCH VIDEO HERE \\ud83d\\udc49\\ud83c\\udfff\\ud83d\\udc49\\ud83c\\udfff https:\\/\\/t.co\\/GLfJo7ie3U\",\"3918\":\"Congratulations my girl All the way from Botswana \\ud83c\\udde7\\ud83c\\uddfc, I worked for her 4 days ago. She is forever Rich. #PokemonPresents #Pelosi https:\\/\\/t.co\\/LonB0rDlm4\",\"3919\":\"Sign up for the Mara Wallet waitlist and receive rewards in USD and crypto for future use on Mara Wallet\\nhttps:\\/\\/t.co\\/PnV883N3cb\\n\\n2$ after successful registration\\n#Taiwan #tzuyuedit #twice #taipei #thailand #usa #france #nft \\n#Enjin\",\"3920\":\"Soup is ready \\n\\n#Taiwan #AllOrNothingArsenal #PokemonScarletViolet #AamirKhan #onstorm #SheggzOlu # https:\\/\\/t.co\\/ywYK05ZX3w\",\"3921\":\"TVL is an important metric to consider when inverting into DeFi projects and here\\u2019s how to calculate it.\\ud83d\\udc47\\ud83c\\udffe\\ud83d\\udc47\\ud83c\\udffe\\ud83d\\udc47\\ud83c\\udffe\\n\\n#DeFi #MONEY #NIO #Taiwan https:\\/\\/t.co\\/4eKCDVL1AF\",\"3922\":\"How to make your laptop faster \\n\\nVideo Credit- @tiktok_us \\n\\n#onstorm #Taiwan #timesupolivia #SheggzOlu #sabinus #PokemonPresents #CommonwealthGames2022 #B2022Netball iPhone 14 Uduak Frank Akpan Mompha Zainab Ahmed ASUU Doyin https:\\/\\/t.co\\/qRPNMgIwn5\",\"3923\":\"Breaking: China Fires Missiles near Taiwan in Drills after Pelosi Visit #NancyPelosiTaiwanVisit #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/BQhNvR2qE4\",\"3924\":\"My Itoku arewa friend in Abeokuta doing Bureau De Change said a dollar as at today to a naira is now 595.\\n1$ = N595.\\nAre you happy, fine\\nBut \\nIf you are sad about this check your conscience.\\nAPC, Buhari and Tinubu\\/Shettima shall succeed.\\n#arisetv\\n#sabinus\\n#Taiwan\",\"3925\":\"BREAKING: Japan defense chief says five missiles launches by China during military drills near Taiwan fell into Japan\\u2019s exclusive economic zone.\\n#Peace #Taiwan #China #war https:\\/\\/t.co\\/geJezowyMb\",\"3926\":\"Summer collection \\ud83d\\ude0d\\ud83d\\ude0d\\nSend a dm to order\\n#Taiwan #PokemonScarletViolet #BBNaija https:\\/\\/t.co\\/Wj1lzHDUbI\",\"3927\":\"After my baby promised to buy me \\nAn iPhone 14,I sent him my ass catalogue showing my appreciation.\\n\\n#BadDecisions \\n#MONEY \\nonstorm \\nBrighton \\nlondon\\nJustin Bieber\\nniger\\nWizkid \\nChelsea \\nmartial \\n#Taiwan \\n#\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a \\n#Sheggz https:\\/\\/t.co\\/X3b0pY8Jui\",\"3928\":\"Who Noticed That Diana Has Been So Quiet And Lonely And Moody Not just reminiscing and soliloquizing on her own alone #Taiwan #BBNaija #BBNajia #BBNaijaS7 #BBNaijaLevelUp #BBNaijaQuidax\",\"3929\":\"if you're living in Nigeria nd u are not angry with this current government..you are definitely part of our problem\\n#Niger #Taiwan #BigBrother #SheggzOlu #sabinus #BadDecisions #MONEY\",\"3930\":\"LISTEN TO PEOPLE BECAUSE LISTENING AFFECTS PEOPLE.\\n\\n#iphone14 iphone14 #Taiwan #timesupolivia #sabinus https:\\/\\/t.co\\/XWcnYOEdSF\",\"3931\":\"My manger said I should post more videos of me Djing, so here we go #SheggzOlu #Taiwan bbnaija https:\\/\\/t.co\\/wyrlRD1y4C\",\"3932\":\"Confession out on all platforms now !!!! Go stream and please share \\ud83d\\ude4f\\u26a1\\ufe0f\\u26a1\\ufe0f\\ud83c\\udfa7 #PeacefulRebelGang\\ud83d\\udd4a #Machala #Wizkid #Wizkidfc #Afrofusion #AFROBEAT #sabinus #2023election #Taiwan #BBNaija https:\\/\\/t.co\\/GQjxi8VaEt https:\\/\\/t.co\\/EbvZMC6t5w\",\"3933\":\"#China conducts the largest-ever missile drills in the waters off #Taiwan.\\n\\nA day after U.S. House of Representatives Speaker Nancy #Pelosi's visit to the self-governing island, which Beijing views as its sovereign territory, China on Thursday undertook extraordinary military https:\\/\\/t.co\\/cXf8ss8bW0\",\"3934\":\"Behind the scenes making the Electrified Amapiano Dance Video #mobilevideography #musicvideo #music #Taiwan #LoveIslandUSA #blackpanther #zeeteroliver #Amapiano https:\\/\\/t.co\\/1bcXMsNLWA\",\"3935\":\"Need To Fund Your NaijaBet Account?\\n\\n\\ud83d\\udc49Dial our Unique USSD CODES to fund your account INSTANTLY and STAKE on your Favourite!\\n\\n\\ud83d\\udcf2GTBANK USERS *737*50*Amount*46#\\n\\n\\ud83d\\udcf2FIRSTBANK *894*89402543*Amount#\\n\\n\\ud83d\\udcf2OTHER BANKS *402*89402543*Amount# \\n\\n#Taiwan #HopeAgain2023 Brighton https:\\/\\/t.co\\/kBSGuw5lAF\",\"3936\":\"Situation between china, Taiwan and America right now \\ud83e\\udd10\\ud83e\\udd10\\n#ChinaTaiwanCrisis #Tiwan #TejRan https:\\/\\/t.co\\/AZLeQ6K1Co\",\"3937\":\"#Judge waives wig requirements for #Lawyers\\n#BadDecisions\\n#Taiwan\\nhttps_daddyy:\\/\\/agbakablog.com\\/2022\\/08\\/04\\/kenya-lawyers-may-do-without-wigs\\/\",\"3938\":\"We are all blessed with tremendous potential, the only thing holding you back is SELF DOUBT. \\n\\n#Motivation #Taiwan\",\"3939\":\"@Qdpaper2 Come see @adams_oshiomole looking for his relevance in the Pit Latrine. Chai what will politicians not do\\/say for Money and relevance? #davidhundeyin #Mompha #Obidatti023 #Taiwan\",\"3940\":\"This me but not my music #Taiwan #LoveIslandUSA #AllOrNothingArsenal #AllOrNothingArsenal #AllOrNothingArsenal #timesupolivia #PokemonPresents #onstorm #\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a #kagiso #kpss2022iptaledilsin https:\\/\\/t.co\\/OwCNmTJy2S\",\"3941\":\"Here is my invitation code for Alpha Network. Use the invitation code: yinqah. Download the app at https:\\/\\/t.co\\/8sgE1PQYKE and get 1 Alpha Coin for free!\\n\\n#Taiwan #PiConsensus #PiNetworkUpdates\",\"3942\":\"Guess what? Our designs are affordable \\ud83e\\udd29\\ud83e\\udd29\\nDistance isn't a barrier \\ud83e\\udd29\\n#Taiwan \\n#EndAsuuStrikeNow \\n#JKLive\",\"3943\":\"The Taiwanese army began moving 155 mm M114 howitzers and 120 mm mortars closer to PLA training areas.\\n\\n#Taiwan #TaiwanIsaCountry #ChinaTaiwanCrisis #LoveIslandUSA #AllOrNothingArsenal #timesupolivia #Trending #trekkerterroristen https:\\/\\/t.co\\/1k4n29zj8M\",\"3944\":\"God\\u2019s not Dead \\ud83d\\ude4c\\ud83c\\udffe #Taiwan #LoveIslandUSA #AllOrNothingArsenal\",\"3945\":\"Portrait study\\n#art #NFT #NFTs #scribbleart #onlyfansgirl #LoveIslandUSA #PokemonPresents #Trending #USA #portraits #artwork #viral #Taiwan https:\\/\\/t.co\\/nqu1JUJBNW\",\"3946\":\"Goke failed his exam and then killed himself in Kwara\\n#Taiwan #Gombe \\nhttps:\\/\\/t.co\\/VSqloXTTN7\",\"3947\":\"Available in Black size 38\\n5000naira only\\nDM or Comment to order\\n\\n#Taiwan \\n#iphone14\\n#sabinus https:\\/\\/t.co\\/maVn9omPE3\",\"3948\":\"Today at kenyatta market Enugu. It is well\\ud83d\\ude13\\nThe government is demolishing the electrical market.\\n\\n#Eloswag Gombe datti #davidhundeyin \\n#Taiwan \\n#Obidatti023 https:\\/\\/t.co\\/U63Lw3koX1\",\"3949\":\"Winners don\\u2019t quit and quitters don\\u2019t win! \\ud83d\\udcaa\\ud83c\\udffd\\n\\nYou can reach us for crypto exchange or investment tips on WhatsApp\\/Telegram - 07082448201.\\n\\n#Bitcoin #Taiwan #BTC #Crypto #cryptocurrencies #bulls #Bears #quote #MotivationalQuotes #tradingcrypto https:\\/\\/t.co\\/JD9k0lRhKe\",\"3950\":\"It is tall. \\u2705\\nIt has big battery. \\u2705\\nIt can Call & WhatsApp. \\u2705\\nIt is under \\u20a650,000. \\u2705\\nCheck it: https:\\/\\/t.co\\/RiL8U7EDdz\\n\\n#affordable #Taiwan iPhone 14 Android 13 God Abeg Apple Airtel Mompha Eloswag ASUU #PiConsensus #Wizkid Airtel Toyota Lord Jesus Kenyatta Common Person https:\\/\\/t.co\\/fUqpTBJqZB\",\"3951\":\"Barr. Chijioke Edeoga is the authentic Governorship candidate of @NgLabour \\n@Chude__ @drpenking @Jack_ng01 \\n\\n#Taiwan #Niger #davidhundeyin #ENUGU #southeast https:\\/\\/t.co\\/aJyefnJaPq\",\"3952\":\"HURRAAYYY!!!!! Master Tea Hibiscus won the 2022 Great Taste Award in the UK!\\ud83d\\udc83\\ud83c\\udffb\\ud83d\\udc83\\ud83c\\udffb\\n\\nNicert Expert Consulting Limited (NECL) trained them on Food Safety Standards.\\n\\nWhereas Nicert Limited certified them for HACCP and ISO 22000.\\nThink HEALTH! Think MASTER TEA!!\\n#Taiwan #sabinus https:\\/\\/t.co\\/Brr9ZnDADz\",\"3953\":\"Pls, if you see this tweet save a soul it's btw life and death 55k pls no amount is small account no 0116996610 Gtb sunny #sabinus #Taiwan Toyota man u #CommonwealthGames2022\",\"3954\":\"BREAKING NEWS : #China's Ministry of Defense releases an official infographic. which involved #military #exercises around the island of #Taiwan today (August 4, 2022). https:\\/\\/t.co\\/UhSpASo6FT\\n\\nThe chicken is coming home to roost. https:\\/\\/t.co\\/qazOjUwnZ7\",\"3955\":\"Save more on @gobarta_ . Download the Gobarta app today!\\n\\n#gobarta #barter #trading #tradebybarter #BBNajiaS7 #Taiwan https:\\/\\/t.co\\/C2HwqBfqlE\",\"3956\":\"@ChimarokeNamani Greetings #Taiwan\",\"3957\":\"Happy birthday King \\ud83d\\udc51 Shuga #Taiwan #Trending @shuga https:\\/\\/t.co\\/CN3kYOdU36\",\"3958\":\"Support Ijoko Project\\nSupport Child Tech Education\\nSupport Rubies Technologies\\n\\n#abuja #Taiwan God abeg https:\\/\\/t.co\\/Gx6T3vHHf5\",\"3959\":\"Enjoy Life while you still have a heartbeat. We don't know the day or the hour it will end. Take that step. Come on. You can do it. Good job. #abeggod #AllOrNothingArsenal #Archie #Taiwan #PokemonPresents #erica #BBNaija7 https:\\/\\/t.co\\/gliY1QIjih\",\"3960\":\"God Abeg spare the life of David Hundeyin. I Abuja will be after him because of this leaked Bubu's approval for N1.4b to buy cars for Niger Republic thru Kaura Motors allegedly owned by Usman Liman in H of Reps.\\n\\nSam Omatseye\\nOshiomole\\nReno\\n#sabinus\\n#Taiwan\\n#BadDecisions https:\\/\\/t.co\\/yDtdwBf7Nr\",\"3961\":\"Chinese military helicopters fly over Pingtan Island, one of the closest points to #Taiwan.\\n\\n#China has begun massive military #exercises off Taiwan after US House Speaker Nancy #Pelosi's visited. https:\\/\\/t.co\\/0XVPeJqRkf\",\"3962\":\"@Consigliere909 What\\u2019s best for her ko\\u2026She was brought into the house has fake house to carry out a task for Biggie\\u2019s house\\u2026Plus it\\u2019s Biggie\\u2019s house and he can give her a task\\u2026If she wants to do what\\u2019s best for her then she should go to her own house #Taiwan\",\"3963\":\"Pi's 1.5m followers in 3 years of existence on Twitter. #Ethereum and other #cryptocurrencies didn't have such a record at age 3. Join Pi Network at link - https:\\/\\/t.co\\/Xlq8xpezyU, and make your own research. Use my referral code: formulacode \\n#Piconsensus #Taiwan #Sol #AVAX https:\\/\\/t.co\\/z9GfttvsFn\",\"3964\":\"@minorta China is just been merciful to you,since you don\\u2019t know the meaning of independence,who gave you independence. You still have mouth to come here and talk \\nIf I was china\\u2019s president #Taiwan would be a think if the past\",\"3965\":\"JUST OUT NOW\\ud83c\\udfe0\\ud83d\\ude4b\\u200d\\u2642\\ufe0f\\n\\nPAY AND PACK IN\\ud83e\\uddf3\\ud83e\\udd73\\n\\nRoom selfcon *@ Abeokuta street Bariga \\n480k per annum\\nTiled road \\n20hours electricity \\nWater is available \\n#modella #sabinus #timesupolivia #Wizkid #teni #ibadan #BBNaija #BBNajiaS7 #bellashmurda #EFCC #BigBrotherNaija #SheggzOlu #Taiwan https:\\/\\/t.co\\/sdWjMuziSQ\",\"3966\":\"BREAKING: Chinese forces fired \\\"multiple\\\" ballistic missiles into waters around Taiwan\\n\\n#China #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/JMx7Icb0oM\",\"3967\":\"https:\\/\\/t.co\\/k9d3nD6BGb\\nI have a new YouTube channel on my https:\\/\\/t.co\\/dDL1CbPJy1 to watch!\\n#Taiwan #AllOrNothingArsenal #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"3968\":\"Can you give us an oculus device to shop? \\ud83c\\udf1a\\ud83c\\udf1a\\n\\n#spacemallio #spacemallshopping #spacemallapp #iphone11 #Iphone14ProMax #BeautyTukura #Taiwan #Entrepreneur #BusinessOwners #SMESupportHour #SMEs https:\\/\\/t.co\\/WOacyTORbz\",\"3969\":\"After Taiwan, Nancy Pelosi in South Korea to meet political leaders.\\n\\nIn #SouthKorea, #Pelosi avoids public comments on #ChinaTaiwanConflict \\n\\n#Taiwan #China https:\\/\\/t.co\\/kGhTbqimX7\",\"3970\":\"Come get solutions to building structures of your desires. \\n\\n#building #Taiwan #nigeria #lekki #construction #projectmanagement #Structures https:\\/\\/t.co\\/gtYI0jeg8Q\",\"3971\":\"Peaceful dialogue with terrorist.\\n#JusticeForAlikaOgorchukwu #Taiwan Niger Republic #Finmin https:\\/\\/t.co\\/UsgUnSpj84\",\"3972\":\"HEALTH is WEALTH \\n Know this and know peace !!!!!!\\n\\n#Taiwan #HealthCareCrisis #healthylifestyle #Motivation\",\"3973\":\"It is quite unfortunate how the followers of Tinubu are trying to reframe his purpose for running for presidency. He clearly said that he is running because it is his turn. His ambition is for his selfish interest. Followers cannot superimpose the intent of their leaders. #Taiwan\",\"3974\":\"Thursdays are for Throwbacks!\\nWe're paying homage to the 1950s retro checkered kitchen.\\nThe checkered floor was a thing then\\nTo the present day ultramodern fully fitted kitchen with sleek designs&marble countertops.\\n #ThrowbackThursday #tbt #GodAbeg #Datti #Taiwan #ASUU #Finland https:\\/\\/t.co\\/Y6MLUjktPI\",\"3975\":\"Joseph Paul Amoah is up next\\u27a1 in 200m men's in heat 5.\\n\\n#CommonwealthGames2022 #Taiwan #Accra2023 #GTVSports https:\\/\\/t.co\\/lHlF5DsSgw\",\"3976\":\"Sometimes ago, we were opportune to reach out to secondary school students to engage them with the basic lessons related to their respective department. \\n\\nLet's make the world a better place! \\n\\n#impact #Depay #mali #art #science #commercial #giveback #throwback #Taiwan #Assu https:\\/\\/t.co\\/DMcAlLylSy\",\"3977\":\"Another set ready to ship. \\nStoree doesn't let you pay from or ship to Nigeria? \\nNo worries, just send us a DM. We got you covered \\n\\n#Taiwan #timesupolivia #CommonwealthGames2022 #Nigeria #shopping https:\\/\\/t.co\\/k24n6sdcoO\",\"3978\":\"Designer Changing a last minute design during Presentation...\\n\\n@Nabhel_ @pixelyut @Big_Heeazy\\n#designers #Taiwan #CommonwealthGames2022 #timesupolivia https:\\/\\/t.co\\/UWW30ahzr7\",\"3979\":\"You need a platform for,\\nDeriv Funding and Withdrawal ?\\n\\nLog on to our website at https:\\/\\/t.co\\/VJMnsXbNYd we offer the best affordable rate.\\n\\n#wizkid #festac #iPhone13 #Taiwan #invest #capitec #teni #explore #BBNajiaS7 #BBNaija https:\\/\\/t.co\\/vJ5ijjcRis\",\"3980\":\"It's been 4 good years of God's blessings to this union. Here's a toast to more beautiful memories together in one accord. #Happyweddinganniversary #love #moodidit #couplegoals #Taiwan #Uyajola99 #CommonwealthGames2022 # https:\\/\\/t.co\\/dCa6J36MmD\",\"3981\":\"Check out my new single \\\"Jaiye\\\" distributed by @DistroKid and live on Apple Music!\\n#Taiwan #AppleMusic #AppleEvent\\n#AppleMusicRT #portapottydubai \\n#portharcourt #lagos #AbujaTwitterCommunity #Kano\\n#timesupolivia #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #CommonwealthGames2022 #AFROBEAT\\n\\nhttps:\\/\\/t.co\\/SEd4udv6bm\",\"3982\":\"Need a home ? Talk to us today.\\n\\n#zigproperties ASUU CHINA iPhone 14 Real Estate Investment Abuja Nasarawa NIGERIA #sabinus #Taiwan #CommonwealthGames2022 https:\\/\\/t.co\\/ZFgC36Ucpe\",\"3983\":\"It is hard to see the frame \\ud83d\\uddbc when you are in the picture #Taiwan #30BG\",\"3984\":\"@FreddyNtafumila Let\\u2019s be Mutual \\ud83e\\udd79\\ud83e\\udd79#Taiwan\",\"3985\":\"Dropping tomorrow morning a\\n\\nGet ready to wiggle what mama gave you \\ud83d\\ude0e\\n\\n@Zlatan_Ibile @gutier_navarro @SnoopDogg @mreazi \\n\\n#Taiwan #AllOrNothingArsenal #BB24 #timesupolivia #onstorm https:\\/\\/t.co\\/p3OU4EnjKl\",\"3986\":\"As expected: - The Chinese just added another area around Taiwan , the seventh in number, where their exercise will be held - and extended it until Monday.\\n#Taiwan\",\"3987\":\"Taiwan's Ministry of Defense announced that some of its air defense systems were activated in response to China's launch of ballistic missiles towards the Taiwan Strait.\\n#Taiwan\",\"3988\":\"Reports says that some of these multiple guided missile systems, launched from their PCL191 launcher, from the Xiamen Island, Fujian, China have entered the airspace of Taiwan, before hitting the ocean on the other side of the country. #Taiwan https:\\/\\/t.co\\/GeyHHH3sFh\",\"3989\":\"China fires missiles towards the straits of Taiwan for the first time since 1995. This is part of their exercise.\\n#Taiwan\",\"3990\":\"\\ud83d\\udc9cWe stan a healthy and beautiful hair \\ud83d\\udcaf.\\n\\n@simplyshumba is sure serving us good hair vibes.\\n\\n\\ud83d\\udc9cLike and retweet if you love this hair.\\n\\n#nectarbeauty #naturalhair #beauty #Taiwan #AsiaCup2022 https:\\/\\/t.co\\/CNv51CwZVQ\",\"3991\":\"Patronize my friend @mira_wealth TODAY for any Graphic Design Services \\n#GraphicDesigner \\n#Graphicsdesign \\n#graphics \\n#sabinus #Datti #CynthiaOkereke #davidhundeyin #Taiwan https:\\/\\/t.co\\/ixkeriaLRu\",\"3992\":\"Meanwhile, Edo South APC Senatorial Candidate Collected His Wotowoto on Tuesday at #SapeleRoadMatters, #FixSapeleRoad Protest.\\n\\n@FMWHNIG @tundefashola @MBuhari @channelstv @MobilePunch @thecableng \\n\\n#Taiwan #PokemonPresents #onstorm #timesupolivia #GizliSakli #Niger #PDP #ASUU https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"3993\":\"For sale!!\\n\\nPinnock beach \\nPalatial 4bd detached house with 2bq , study, laundry room, pool etc \\nOn 860msplot \\nPrice. 600m\\n#Taiwan #PokemonPresents #onstorm #AsiaCup2022 #lagos #Obidatti2023 #TinubuShettima2023 #AtikuOkowa2023 https:\\/\\/t.co\\/1hkrhZ6FGP\",\"3994\":\"What a true love \\n#Taiwan #PokemonPresents #onstorm #PokemonScarletViolet #timesupolivia #CommonwealthGames2022 https:\\/\\/t.co\\/FkCxF40SeP\",\"3995\":\"Fluted panel are sustainable solutions to your interior cladding project for both residential and commercial\\u2764\\ufe0f #Taiwan #Biden in 2024 #AsiaCup2022 https:\\/\\/t.co\\/qFRoP3l7x1\",\"3996\":\"Strategic location\\n\\nSerene business environment \\n\\nWide Client Reach \\n\\nAdequate security\\n\\n24\\/7 Power Supply etc.\\n\\nDon't sleep on this \\n\\nBENIN CITY MALL is NOW LEASING\\n\\nOpens January 2023\\n\\nFor more, see details on flyer\\n#benincitymall \\n#iPhone14\\n#Taiwan\\n#Oshiomole\\n\\ud83d\\udd25 \\ud83d\\udd25 \\ud83d\\udd25 https:\\/\\/t.co\\/WeK9AczT9n\",\"3997\":\"It is not about you providing SERVICE, it is about you providing QUALITY SERVICE.\\n\\nGood Morning \\n\\n#sabinus #Taiwan #badagry #socialmediamarketing #socialmedia #dabrandcity #socialbrandcity #ThrowbackThursday\",\"3998\":\"Retweet For me please my helper fit Dey your timeline I never work in a while #CannabisCommunity #party #HypeBeast #Taiwan https:\\/\\/t.co\\/E8Qdn5xljL\",\"3999\":\"Tribalism is a serious crime in Rwanda. They banned the recognition of tribes after the 1994 Rwandan Genocide, which led to the deaths of one million people. Nobody is allowed to identify or discriminate based on tribes. #HopeAgain2023 #Taiwan #CommonwealthGames2022 #AsiaCup2022 https:\\/\\/t.co\\/30gXogxS1T\",\"4000\":\"My drawing of @BarackObama \\ud83e\\udd29\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#sabinus #Taiwan @yabaleftonline @legitngnews Iphone 14 ASUU Bella Shmurda @BarackObama @BBCBreaking @channelstv https:\\/\\/t.co\\/zsZ4X2xvtX\",\"4001\":\"Today is a new day and Evey day is a day to begin again\\n#Taiwan\\n#CommonwealthGames2022\",\"4002\":\"@IBEDC_NG is not concerned about customer's plight in Saki. Businesses are being destroyed by incompetent ibedc. 20mins of supply today after more than 1week blackout. Very unfortunate. @NERCNG do something now.\\n@PowerUpNG\\n#Taiwan\\n#CommonwealthGames2022 #thursdayvibes #GoldMedal\",\"4003\":\"\\ud83d\\udcafThe protein and vitamins in the mayonnaise make hair super shiny.\\n\\n\\ud83d\\udc49Send us a DM now to get this product.\\n\\n#nectar #nectarbeauty #beautiful #PokemonPresents #Taiwan #onstorm\",\"4004\":\"@vdjtflexx Who relationship nor favour go still day drop quote\\nComrade \\ud83e\\udd20\\ud83e\\udd20\\ud83e\\udd20\\n#Taiwan\\n#CommonwealthGames2022\\n#davidhundeyin\\n#iphone14\",\"4005\":\"CIS Video Lectures https:\\/\\/t.co\\/qY8EJ70kOG \\n\\nNO LEAVE NO TRANSFER EFCC Datti iPhone 14 David Hundeyin \\n #Wizkid #sabinus #Taiwan #BeninCityMall https:\\/\\/t.co\\/ZBTWkZT89P\",\"4006\":\"Repression against women is weaved around the social norms that over the years have pushed even modern-day women to agree with the systemic and structural attack on women. \\n#china #Finland #Taiwan #PokemonPresents #onstorm #Tinubu #SDGs #OBIDIENTS #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #onstorm https:\\/\\/t.co\\/I3KElydxVd\",\"4007\":\"Order your bitter kola today we deliver nationwide. 6k per kilo Call or Chat 08138432456. #bellashmurda #Finance #Wizkid #Taiwan #BBNaija #davido #iphone14 https:\\/\\/t.co\\/2LLXk50s2F\",\"4008\":\"Taiwan should wise up and not let their country be thrown into crisis... Ukraine should be a lesson to all concerned. America only cares about America, everything else is a charade. \\n#ChinaTaiwanCrisis\",\"4009\":\"We need to change the current change\\ud83e\\udd14\\n#Taiwan #OBIdientlyYUSful\",\"4010\":\"Apple you no go allow our gyals puna rest?..\\niPhone 14 #Wizkid 1.4B #Taiwan #PokemonScarletViolet #YEEZYDAY #Nigeria https:\\/\\/t.co\\/AzpwIvRGzg\",\"4011\":\"Feel free to fall in love over again with our impeccable service, our environment and everything about @SupremeContine1\\n\\nThis should be your next stop for comfortability and luxury\\ud83d\\ude09\\n\\n #bbnaija #Taiwan https:\\/\\/t.co\\/GkUDEs2ebr\",\"4012\":\"#BBNaija \\ud83c\\udfb6\\ud83d\\udd25 @Pa_J \\u2013 \\\"PVC\\\" : #Mp3 . Have you registered for your own. If no please do. \\nStream \\ud83d\\udc47 \\nhttps:\\/\\/t.co\\/0h70sKlwAD\\n#trending #pvcnigeria #Taiwan\\n#Sheggsolu #iPhone #iphone14 #PeterObi #BBNaijaS7 https:\\/\\/t.co\\/sGvJ9HSAsQ\",\"4013\":\"It was my Alfa wedding, sincerely it\\u2019s good to be kind people really turn up for him. I enjoyed every bit of my stay at the party.\\n#iphone14 #SheggzOlu #Taiwan #CommonwealthGames2022 #DONBELLEmpire https:\\/\\/t.co\\/HNT6a2AlZU\",\"4014\":\"Baby I will not touch you untill we get married does such a man still exist \\n\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude48 #efcc #Taiwan #Gistlover\",\"4015\":\"Made this customized handmade two piece.\\nIt costs $0.00 to retweet & help me grow my small business please \\ud83e\\udd7a\\ud83e\\uddf6\\n\\n#Taiwan #SheggzFC #bella #BigBrother #BBNaija #onstorm #crochet https:\\/\\/t.co\\/d0ZFWDIRHW\",\"4016\":\"Owe is different From Own!\\n\\nI would advise you spend more on education and less on makeup kits.\\n\\nIPhone 14 #SheggzOlu David Hundeyin EFCC Bella Shmurda NO LEAVE NO TRANSFER Innoson Jaruma #BBNaijaS7 Datti Dangote ASUU #LagosSwindlers Mama Dollaz #CommonwealthGames2022 #Taiwan\",\"4017\":\"\\\"What Sector of Your Country's Economy Do You Think Blockchain Technology Can Impact and Improve Greatly?\\\"\\n\\n#Binance #BNB #onstorm #CommonwealthGames2022 #Finance #Coinbase #CryptocurrencyNews #Taiwan #r4today #YEEZYDAY #blockchaintechnology #BlockchainCentral #BBNaija https:\\/\\/t.co\\/VjXGAOwrhN\",\"4018\":\"You carry huge sum of 1.4billion to buy just 10 SUV for another sovereign state \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\n#sackbuhari\\n#Taiwan \\n#PokemonScarletViolet\",\"4019\":\"Who will rescue Nigeria? #Taiwan #CommonwealthGames2022 #ASUU #BBNajia #AsiaCup2022 #Ukraine https:\\/\\/t.co\\/MICtAAyTx6\",\"4020\":\"China begins live-fire military drills around Taiwan, Taiwan says \\u201cBallistic Missiles\\u201d fired https:\\/\\/t.co\\/CizsNSzYIK\\n#Taiwan #China #Taipei #Beijing #Pelosi\",\"4021\":\"To the best of my knowledge, only Priests can wear Birreta (cap) inside the Church. The man speaking here is Chairman of a political party in Nigeria. Shameful!! #ASUU #BBNajia #AsiaCup2022 #ChinaTaiwanCrisis #Pelosi #CommonwealthGames2022 #COVID19 https:\\/\\/t.co\\/6FJESNlTb5\",\"4022\":\"NEW TYPE BEAT \\n\\n#Taiwan #PokemonPresents #PokemonScarletViolet #onstorm #\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25 #timesupolivia #knust #kpss2022iptaledilsin #DonBelle #FOREVER1 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #DONBELLEmpire #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Pakistan #AsiaCup2022 #SheggzOlu #Wizkid #Ethereum https:\\/\\/t.co\\/o5Pmz3XLfc\",\"4023\":\"That's the kind of connection someone needed in Nigeria to flourish \\ud83d\\ude02 \\ud83d\\ude0b \\n#Connecticut #Nigerian #Messi #FIFA23 #BoycottAliaBhatt #PokemonPresents #comicbooks #Comedyvideos #ComeBackHome #KenyaDecides2022 #ChinaTaiwanCrisis #Russia #UkraineWar #BBNajiaS7\\nhttps:\\/\\/t.co\\/woD6hSDUtq https:\\/\\/t.co\\/9CAwdKId3g\",\"4024\":\"Ask Niger Republic to immediately refund N1.4 billion and use it to offset ASUU funding - SERAP tells Buhari administration\\n\\nRead More: https:\\/\\/t.co\\/Jxvlw23nix\\nASUU NOLEAVENOTRANSFER Nigerien AriseTV Deji MamaDollaz Somizi DangoteBellaShmurda #Buhari Jaruma CynthiaOkereke #Taiwan https:\\/\\/t.co\\/P2QH6zdN0t\",\"4025\":\"I think Jacintha Ocansey and Adina look alike, anaa ? \\ud83e\\udd14\\n\\n#Taiwan #FoundersDay #TheBigBreakfast\",\"4026\":\"The total cancellation of #Batgirl is really sad and disheartening.\\nPlus they were in the final stages of post-production! Bilall Fallah & Adil El Abri \\ud83d\\ude1e\\nI think there's a hex on WB \\n#Batgirl\\n#batgirlmovie\\n#BatgirlForever\\n#LeakBatgirl\\n#LeakBatgirlMovie\\n#Taiwan \\n#AsiaCup2022\",\"4027\":\"UPDATE: Kidnapped Nollywood actors regains freedom\\n\\nRead More: https:\\/\\/t.co\\/W6IqLtac4r\\nASUU NOLEAVENOTRANSFER Nigerien AriseTV MamaDollaz Deji Somizi Dangote BellaShmurda #Buhari Jaruma CynthiaOkereke Boehly #Taiwan Pheelz DavidHundeyin #jobsthathavethemostsex NATO https:\\/\\/t.co\\/z7XRdlIub1\",\"4028\":\"Happy Birthday to the first Black U.S President, Barack Obama.\\n\\n#happybirthday\\n#happybirthdaybarackobama\\n#visa\\n#travel\\n#visaapplication\\n#Taiwan\\n#USA https:\\/\\/t.co\\/OaqxnPnlHT\",\"4029\":\"I have harnessed myself\\nI think am Ready For a RECORD DEAL\\ud83e\\udd7a\\n\\nCc: @choccitymusic @MI_Abaga @thisisAQ\\n#Wizkid #Zamazamas #Afrobeats #TheGuy #onstorm #Taiwan https:\\/\\/t.co\\/njEI0I4SGm\",\"4030\":\"year sef is almost as good as wasted \\ud83e\\udd14.\\n\\n All ye that want next year I give you all one bottle of Guinness\\ud83d\\ude02\\ud83d\\ude02 as una dey shout next year, get 2024 for mind too\\ud83d\\ude0e\\nTwo years will be wasted\\u2668\\ufe0f\\u2716\\ufe0f, I come in peace \\u270c\\ufe0f\\u270c\\ufe0f\\ud83d\\ude05#onstorm #Taiwan #FOREVER1 #GiveUsPeterObi2023\",\"4031\":\"\\\"As speculation mounts that she will retire, @SpeakerPelosi visited #Taiwan & stood with its first #female #president in another show of opposition to #China.\\\" | @NBCNews \\n\\nWill the #USA will be there to offer support, should #China go on full offensive?\\n\\nhttps:\\/\\/t.co\\/l2EOshHwDE\",\"4032\":\"Fake Bishops: Christian group to issue identification numbers to clerics in Nigeria\\n \\nRead More: https:\\/\\/t.co\\/8tQA6sDt07\\nASUU Nigerien AriseTV MamaDollaz Deji Somizi Dangote BellaShmurda #Buhari Jaruma CynthiaOkereke Boehly #Taiwan Pheelz DavidHundeyin NATO#jobsthathavethemostsex https:\\/\\/t.co\\/V3L2YpfZBh\",\"4033\":\"My first debut album will be out on the 15th of august\\ud83d\\udd25\\n\\n#FYP #DonBelle #Taiwan #knust #artistsontwitter #AsiaCup2022 https:\\/\\/t.co\\/lFLvUy6837\",\"4034\":\"Tagged @Sia that her music unstoppable is trending in Nigeria wonderful\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\n\\nArise TV Innoson Mama Dollaz Cynthia Okereke ASUU Sam Omatseye Rufai Oshiomole Jaruma Mompha Datti Toyota Big Bella All or Nothing David Hundeyin Deji #sia #Taiwan #onstorm #AsiaCup2022 https:\\/\\/t.co\\/DwOAbXEW0R\",\"4035\":\"Washing Machine With Shoe Washer.\\n\\nPrice - N45,500\\n\\nNationwide delivery \\ud83d\\ude9a \\ud83c\\uddf3\\ud83c\\uddec\\n\\nDM to order or send us a message on WhatsApp, numbers on our bio.\\n\\n#AonArsenal #AllOrNothing #Taiwan #PokemonPresents\\nNO LEAVE NO TRANSFER \\/ All Or Nothing \\/ Premier League \\/ David Hundeyin https:\\/\\/t.co\\/S5AXrskrPQ\",\"4036\":\"Who has ever been in this situation?\\nAnd what was the feelings like?\\n#onstorm #FOREVER1 #PokemonPresents #Taiwan https:\\/\\/t.co\\/232AciVFo1\",\"4037\":\"Nigeria should come out openly and announce they don't have a President.. Maybe, just maybe Help will come from somewhere\\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/LFmXT3mSmp\",\"4038\":\"Quick one from your analyst\\u2026 #RYE #ryeci #Bitcoin #cryptocurrencies #Crypto #analysis \\n\\n#triclown #PokemonPresents #Taiwan #knust https:\\/\\/t.co\\/adGWS5HU7U\",\"4039\":\"But how do you wake up every day with Buhari as your President and Tinubu again as your next choice?\\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music https:\\/\\/t.co\\/mWBy6AU7IA\",\"4040\":\"I love the much you guys are doing. Lets keep it up. \\n#Buhari #Taiwan #PeterObi4President2023 #EndASUUStrike #PeterObiForPresident2023\\n #PeterObi2023\\n#EndSARS \\n#Daniboyfreshkid_music. https:\\/\\/t.co\\/SGhptaePzL\",\"4041\":\"Travel cosmetic bag, available in large quantity. Perfect souvenir for your guests \\n\\nWholesale price:2500\\nNationwide delivery \\n\\nTo order send us a Dm or call\\/WhatsApp 08033772577\\n\\n#BBNaija #Taiwan #Buhari #sabinus jaruma \\nCongratulations ozo https:\\/\\/t.co\\/D0Htk1x0hm\",\"4042\":\"China hits Taiwan with penalties in wake of Pelosi\\u2019s visit https:\\/\\/t.co\\/p7udXGzOWk\\n#Taiwan #China #Taipei #Beijing #Pelosi\",\"4043\":\"Ukraine \\ud83c\\uddfa\\ud83c\\udde6 lost the WAR to RUSSIA \\ud83c\\uddf7\\ud83c\\uddfa...... the media will keep hiding this from people, the billions sent to Ukraine was never used form weapons purchase\\ud83d\\udca5\\n\\n#UkraineRussiaWar #Ukraine #Russia #Taiwan #UkraineWillWin #UkraineWar\",\"4044\":\"Minister of Finance, Budget and National Planning, Zainab Ahmed justifies the Federal Government's approval of N1.4B for the purchase of vehicles for Niger Republic. \\n \\n#Taiwan #NigerRepublic #Nigeria #Buhari #SUV https:\\/\\/t.co\\/gmCqDCXAtU\",\"4045\":\"Challenges and obstacles are not the bad things of life, they are the food of champions!\\n#personaldevelopment \\n#Taiwan \\n#Beintentional\",\"4046\":\"Utterly humiliated and exposed for its bluff, #China continues to toothlessly bark and endanger the lives of its own citizens by firing on the #Taiwan Strait, while Chinese beachgoers are nearby.\\n\\n#ChinaTaiwanCrisis https:\\/\\/t.co\\/fq3guErmgy\",\"4047\":\"Wtf was he thinking \\ud83d\\ude02\\n#ASSU #Taiwan #AsiaCup2022 https:\\/\\/t.co\\/r19nkT6Hvz\",\"4048\":\"Violence, inability to negotiate safe sex and lack of access to sexual and reproductive health information and services increase HIV vulnerability among sex workers \\n\\n@HivosWiL @gwheri @VSI_ng #timesupolivia #Taiwan #sexworkiswork\",\"4049\":\"THE CROCS!!! 78 years young riding a motorcycle with 200hp daily #bikelife #bike #Taiwan https:\\/\\/t.co\\/mW0mCdPwZM\",\"4050\":\"@instablog9ja It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4051\":\"Join us to wish the bosslady and CEO of Maximum Joy Foundation a happy birthday \\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#ChinaTaiwanCrisis\\n#Taiwan #Pelosi https:\\/\\/t.co\\/gYHpkxwPcE\",\"4052\":\"@nigeriandailies @barratahmed It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4053\":\"@renoomokri It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4054\":\"@segalink It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4055\":\"@atiku @BUAgroup It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4056\":\"NEW MUSIC ALERT \\ud83d\\udea8\\ud83d\\udea8\\nMy latest song TERMINATOR is out \\ud83d\\udd25\\ud83d\\udd25\\nGo stream it\\ud83c\\udf0d\\n#Taiwan #AppleMusicRT #applestoashesgame #applemusic\\u0e23\\u0e32\\u0e04\\u0e32\\u0e16\\u0e39\\u0e01 #iTunes #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #PokemonPresents #appleiphones #airpodsgen2 #applemusicnigeria #applemusicaustralia #applemusicUK #iphone14pro #iPhones\",\"4057\":\"@instablog9ja It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4058\":\"@triclowns It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4059\":\"@Chude__ @WillieMObiano It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4060\":\"@emersonpalmieri It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4061\":\"You just have to love @kwinmusic_ one of Africans finest Artist out of the south East . 16th of August her song Temper would be out, I can\\u2019t wait \\ud83d\\ude1c \\n#kwintemper #Taiwan #PokemonPresents #enugu #anambra #imostate #abia https:\\/\\/t.co\\/GWdlCnhlVA\",\"4062\":\"@MobilePunch It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4063\":\"@NGRLabourParty It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4064\":\"@EfuaIsEnuf It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4065\":\"@MobilePunch I pray that doesn't include murdering\\/framing INNOCENT YOUTHS.\\n#ImoState #EbubeaguMustGo \\n#UN #FreeNnamdiKanuNow \\n#Taiwan #PeterObiForPresident2023 \\nIFB.\\n gwaz\\u1ecb\\u0301\\u00e9 nd\\u1ecb yardi g\\u1ecb\",\"4066\":\"@GovSamuelOrtom @Austinokai It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4067\":\"@GazetteNGR @ifamobarin It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4068\":\"@IAOkowa @OfficialPDPNig It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4069\":\"@LeadershipNGA It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4070\":\"@Roland_speaks @emmaikumeh It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4071\":\"\\ud835\\udc4a\\u210e\\ud835\\udc66 \\ud835\\udc50\\ud835\\udc5c\\ud835\\udc5a\\ud835\\udc5d\\ud835\\udc5f\\ud835\\udc52\\ud835\\udc60\\ud835\\udc60\\ud835\\udc56\\ud835\\udc5b\\ud835\\udc54 \\ud835\\udc66\\ud835\\udc5c\\ud835\\udc62\\ud835\\udc5f \\ud835\\udc53\\ud835\\udc62\\ud835\\udc61\\ud835\\udc62\\ud835\\udc5f\\ud835\\udc52 \\ud835\\udc64\\ud835\\udc56\\ud835\\udc61\\u210e \\ud835\\udc61\\u210e\\ud835\\udc52 \\ud835\\udc5d\\ud835\\udc5f\\ud835\\udc52\\ud835\\udc60\\ud835\\udc52\\ud835\\udc5b\\ud835\\udc61??\\ud83d\\ude36\\n\\n\\ud835\\udc43\\ud835\\udc4e\\ud835\\udc61\\ud835\\udc56\\ud835\\udc52\\ud835\\udc5b\\ud835\\udc50\\ud835\\udc52 \\ud835\\udc4f\\ud835\\udc5f\\ud835\\udc5c\\ud83d\\udccc \\n#BBNaija #Taiwan #thursdayvibes\",\"4072\":\"@BBNaija @EnochMonu2 @quidax It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4073\":\"@instablog9ja It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4074\":\"@daily_trust It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsSqtlV\",\"4075\":\"@OBIMAKAMA2023 @firstladyship @PeterObi @doyinokupe @Dawa419 @Coalitionforpo @Amanafm98_1 @dudugombe @NgLabour It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4076\":\"@KAFTAN_TV It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4077\":\"@GazetteNGR It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4078\":\"@MobilePunch It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4079\":\"If you have Taiwan Scholarship Program Award Certificate from the Embassy in Nigeria to study in Taiwan and no admission yet. Or all admissions applied for are rejected you. DM pls.\\n#Taiwan #Scholarship #stipend https:\\/\\/t.co\\/P4cWauuqsP\",\"4080\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/IaOMul24J1\",\"4081\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/f16Z7WzVXa\",\"4082\":\"Coward hands the enemy victory on a platter of gold \\ud83e\\ude99\\n\\nDon't stop!!!\\ud83d\\udcaa\\n\\n#Taiwan #onstorm #AsiaCup2022 #PiConsensus ASUU arise tv Chelsea MUFC aubameyang neves isco mama dollarz bella shmurda #Ronaldo Sam omatseye deji Khalid ozo innoson boehly nato jaruma CONGRATULATIONS OZO\",\"4083\":\"Pelosi flew to Taiwan and then south Korea.\\nWhat a threat to world peace!\\n\\n#Pelosi #Taiwan #peterobi #WWIII #Russia #UkraineRussiaWar\",\"4084\":\"Them aunties used to say its good for a man to know you have options. It keeps the relationship healthy & balanced. Don't be that person without options. #Taiwan #PokemonPresents #AONArsenal #FOREVER1 https:\\/\\/t.co\\/H8t6rTCD5X\",\"4085\":\"Nigeria needs to export products, skills and services to improve our balance of trade surplus!\\nGet your teens in this conversation early enough!\\nWe are building an Export army!\\n#Taiwan #Japa #globalnews #Nigeria #youths #teens #inflation #AfCFTA #exports #youthevelopment #mindset https:\\/\\/t.co\\/x7WL4aotsa\",\"4086\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/2nqfH7Fu77\",\"4087\":\"For trainers and sneakers lovers \\ud83d\\ude0d\\n#Taiwan \\n#Fabrizio #Nike https:\\/\\/t.co\\/xVic1GMEyb\",\"4088\":\"The day is finally here\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\nMJF official launch and golf tourney\\n\\n#ChinaTaiwanCrisis #Taiwan #Pelosi #USA https:\\/\\/t.co\\/2nxIWDaKrM\",\"4089\":\"\\ud835\\udc38\\ud835\\udc63\\ud835\\udc52\\ud835\\udc5b \\ud835\\udc4f\\ud835\\udc59\\ud835\\udc4e\\ud835\\udc50\\ud835\\udc58 \\ud835\\udc56\\ud835\\udc60 \\ud835\\udc4f\\ud835\\udc52\\ud835\\udc4e\\ud835\\udc62\\ud835\\udc61\\ud835\\udc56\\ud835\\udc53\\ud835\\udc62\\ud835\\udc59 \\ud835\\udc51\\ud835\\udc5c\\ud835\\udc5b \\ud835\\udc51\\ud835\\udc52\\ud835\\udc66 \\ud835\\udc4f\\ud835\\udc59\\ud835\\udc52\\ud835\\udc4e\\ud835\\udc50\\u210e\\ud83e\\udd23\\ud83e\\udd23 #BBNaija #Taiwan #PokemonPresents\",\"4090\":\"Hey\\nHit me up for your music productions\\n\\n#Taiwan #PokemonPresents #onstorm #songwriter #artist #ArtistOnTwitter https:\\/\\/t.co\\/hkLJd20xwd\",\"4091\":\"Be amazing today, believe in yourself, anything is possible never give up.\\n#Taiwan #kpss2022iptaledilsin #AsiaCup2022 #motivate #FOREVER1 #\\u30dd\\u30b1\\u30e2\\u30f3 https:\\/\\/t.co\\/J0Q2VTOlIU\",\"4092\":\"Hi, \\nI know you are a good singer but your songs are still yet to reach your targeted audience \\ud83e\\udee4, you can make that happen by getting yourself an expert in promoting your songs.\\nClick the link below to know more or dm me\\nhttps:\\/\\/t.co\\/KXpOweXhPK\\n#DONBELLEmpire #GoldMedal #Taiwan\",\"4093\":\"All this @davido fans we no get joy ho \\ud83d\\ude06\\ud83d\\ude06 even for Facebook OBO still win the vote \\ud83d\\ude06\\n#Taiwan #PokemonPresents #FOREVER1 #obo #AsiaCup2022 #mamadollar #Asuu #BigBella https:\\/\\/t.co\\/LL5EZHwqwo\",\"4094\":\"BBNaija S7: Khalid Grants Daniella Midnight Ecstasy \\u2018Under D Duvet\\u2019 #Taiwan #onstorm #BBNaija #BBNajiaS7 https:\\/\\/t.co\\/UeSYtTkBBL\",\"4095\":\"Good Morning My Neighbors!!!\\n\\n#AllorNothing #arisetv #cynithaokereke #Asuu #Taiwan #AsiaCup2022 #BBNaija #ChinaTaiwanCrisis #DONBELLEmpire \\n\\nFollow for Follow Back\",\"4096\":\"BBNaija S7: Khalid Grants Daniella Midnight Ecstasy \\u2018Under D Duvet\\u2019 #Taiwan #BBNaija #BBNajiaS7 https:\\/\\/t.co\\/q5ihXkZI0y\",\"4097\":\"Before you join police or army, they scrutinize your medical report.\\nWhat does @inecnigeria do to presidential candidates to ensure they are strong enough for the task ahead.\\nWe cannot have an expected obituary change the dynamics of our country overnight.\\n#thursdayvibes #Taiwan https:\\/\\/t.co\\/8M1sLd7Yq1\",\"4098\":\"It is easier to defeat Boko Haram than to defeat those who are profiting from insecurity says; Prince Adewole\\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #onstorm #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #PokemonPresents #OYE38 #kpss2022iptaledilsin #massage #HarGharTiranga #boycottrakshabandhan \\nhttps:\\/\\/t.co\\/ivDJsS8Sun\",\"4099\":\"@SkyNews #pelosi don buy market for Taiwan\\nTheir pain is America gain\\nMore weapon market for the US\",\"4100\":\"Buhari be like man wey no get food for house but de still send sidechixk money.\\nOmo see brother...\\nSee #ASUUstrike\\nSee #insecurity\\n\\ud83d\\ude2d \\ud83d\\ude2d \\ud83d\\ude2d \\ud83d\\ude2d \\ud83d\\ude2d\\nThem just de treat us like #Taiwan.\\nOkay ooh\\n#thursdayvibes #thursdaymorning\",\"4101\":\".For business English learners.\\n\\n#Taiwan #PokemonPresents\\n#onstorm #timesupolivia #HarGharTiranga #boycottrakshabandhan\\n#AONArsenal #Uyajola99 #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631\\u1160\\n\\nClick this \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\n\\n https:\\/\\/t.co\\/1Ixb4QKQFK\",\"4102\":\"The satisfaction and fitness made him flood my dm with pictures..\\n\\nI really appreciate your patronage long man wey sabi Rock. \\ud83d\\ude4c\\ud83d\\ude4c\\ud83d\\ude4c\\n\\n@Abbeyolaa1 \\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\n\\n#Taiwan #suede #Bata #FOREVER1 #timesupolivia #CRAFTMASTER #FolloMe #follo4follo #TheView #snapwhore #TheHundred #SNEAKERS https:\\/\\/t.co\\/8LOMy5FUWk\",\"4103\":\"..You have come this far in your business English learning journey.\\n\\nWhat's next?\\n\\nP.S. Use these sneaky hints and see for yourself. \\n\\nIf you want more.\\n\\n#Taiwan #FOREVER1 #PokemonPresents #onstorm #timesupolivia #AONArsenal #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"4104\":\"For Rent - Standard Selfcon Available. \\n\\n\\ud83d\\udccdLocation - Lokogoma Abuja. \\n\\nRent - N550,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Taiwan #davidhundeyin https:\\/\\/t.co\\/Cs1HxMDA4O\",\"4105\":\"UTC tomatoes \\nDM or whatsApp 09137901977\\n#Taiwan @_theladymo @Abdulhermeed001 @Ameengwaska @cuppymusic @Abdoulmaleek001 @muftahu_E @AhmadCeleh https:\\/\\/t.co\\/ie1QIkk4Ul\",\"4106\":\"Don't waste your time, use these three sneaky hints for your business English fluency.\\n\\nWho is interested in time wastage?\\n\\nWell, I'm not.\\nWhat about you?\\nThere are a lot of .\\ud83d\\udc47\\n#Taiwan #onstorm #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #FOREVER1 #PokemonPresents #timesupolivia #\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631 #\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"4107\":\"Passing The Phone Challenge | Liverpool FC\\n\\n#Khalid #Deji @Videosnwhatever @LFC #Taiwan #timesupolivia https:\\/\\/t.co\\/A812edBOgl\",\"4108\":\"Life is not a coincidence But your own actions.\\n\\n#Taiwan\\n#thursdayvibes https:\\/\\/t.co\\/ymqkzeEgXl\",\"4109\":\"All I DO IS CREATE MOTION GRAPHICS. Like what you see? @akanscript on Instagram @fiverr @Upwork @anoncontent @AdobeVideo @motionpictures #BLACKPINK #Taiwan #PokemonPresents #arisetv #ExtraordinaryAttorneyWooEp12 #onstorm #timesupolivia #AONArsenal #FOREVER1 #GoldMedal https:\\/\\/t.co\\/nPzDVBq45i\",\"4110\":\"@BBCWorld If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian https:\\/\\/t.co\\/8SUtRVlRBh\",\"4111\":\"@iyaboawokoya If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"4112\":\"@essteeem If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"4113\":\"Wait for it \\ud83d\\udd25@carterefe__ @davido #Taiwan #PokemonPresents #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #HarGharTiranga #Pakistan #Uyajola99 #boycottrakshabandhan #EndAsuuStrikeNow please retweet https:\\/\\/t.co\\/0A2Y7575z3\",\"4114\":\"@Darasimi__ If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"4115\":\"@chiiinnnyyy_ If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"4116\":\"@symplyDAPO If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"4117\":\"@Letter_to_Jack If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"4118\":\"Be a good human. Leave religious beliefs, be the reason someone believe good human still exists. #Taiwan #PokemonPresents #AONArsenal\",\"4119\":\"We move in style...\\n#AONArsenal #FOREVER1 #mopar #onstorm #Taiwan https:\\/\\/t.co\\/sqJJe9gm0r\",\"4120\":\"Over 10,000 passionate youth interned at IMUN since 2020. Will you be the next IMUN Ambassador?\\ud83c\\udfaf\\n.\\nLimited seats\\u2705 Sign up now at https:\\/\\/t.co\\/VZsxxT1HSB or at https:\\/\\/t.co\\/IIHcFl9pHm \\ud83d\\udca5\\n\\n#Taiwan #Haaland #PokemonPresents #boycottrakshabandhan #onstorm #BBNaijaS7\",\"4121\":\"Do something by loving this quote \\ud83e\\udd70\\ud83d\\udcaf\\n#Taiwan #BBNajiaS7 #OBIdientlyYUSful #Viral #quote #PokemonPresents https:\\/\\/t.co\\/TbGoJWGBu3\",\"4122\":\"So Pelocalypse left #Taiwan after pinching the dragon, what defense capabilities is that against mighty #PLA ? \\ud83e\\udd72\\ud83e\\udd72\\ud83e\\udd72 https:\\/\\/t.co\\/gW1JTcjuze\",\"4123\":\"The #China air defense team recently conducted day and night live-fire drills over waters to the west of South China's Guangdong Province near #Taiwan \\n\\n#ChinaTaiwanCrisis https:\\/\\/t.co\\/pvMPXhug9C\",\"4124\":\"Who else love this water \\ud83d\\udca6 Eva good to go #PokemonPresents #timesupolivia @evawater111 #AONArsenal #ChinaTaiwanCrisis #FOREVER1 #HarGharTiranga #\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c #kpss2022iptaledilsin #ExtraordinaryAttorneyWooEp12 @EvaWatson_ #JKLive @ModenaFyne https:\\/\\/t.co\\/yzzjjHM8Iz\",\"4125\":\"A brigade of #China's #PLA 80th Group Army carried out a live-fire assessment of heavy firearms rapid strike. The assessment was conducted by day and night under complex conditions and set a new record for short- and middle-range strikes.\\n#Taiwan #TaiwanStraitsCrisis https:\\/\\/t.co\\/7BptZ4Zon2\",\"4126\":\"For a government enabling brave & stunning women, they were too chicken over @SpeakerPelosi being so, speaking on behalf of their ally #Taiwan. Either way, #China is still considering grabbing that country like #Tibet, #EastTurkestan & #HongKong.\\n\\n\\u2014 #\\u4e2d\\u56fd #\\u53f0\\u6e7e #\\u0627\\u0644\\u0635\\u064a\\u0646 #\\u062a\\u064a\\u0648\\u0627\\u0646 https:\\/\\/t.co\\/GlfdeTfWYC\",\"4127\":\"@Secominfo Ambazonia: It is time for our leadership to engage with diplomacy with #Somaliland in order to seek help for them to link us with #Taiwan. When this happen Taiwan will recognize Ambazonia and that will be a big diplomatic win for us. @BohHerbert @MariantaNjomia\",\"4128\":\"Are you struggling to understand how to run Successful Kickstarter or Indiegogo campaign?\\nI'll teach you EVERYTHING you need to know through this link https:\\/\\/t.co\\/ojVDaqT6Ck #talkximg #taiwan #Batgirl #AlexJones #BadDecisionsTrailer2 #PokemonScarletViolet #LoveIslandUSA #RHOBH https:\\/\\/t.co\\/pgTYOBpEWl\",\"4129\":\"Wow!!!\\n@intelfin_global platform is making it possible for me, to earn at ease .\\nPlease do not miss out!\\n\\ud83d\\udc49 https:\\/\\/t.co\\/qYeuwDzdf0\\n#Intelfin #Cosmos #Giveaway #web3 #NFTCommumity #P2E #Metaverse #CryptocurrencyNews #CryptoGems #Crypto #nftnews $JUNO $ATOM #Pelosi #BNB #invest. https:\\/\\/t.co\\/jd5z1wrXPL\",\"4130\":\"Stream #Obalende \\nhttps:\\/\\/t.co\\/jBk0P7D9BU\\n\\n#PokemonPresents #Taiwan #onstorm #ExtraordinaryAttorneyWoo #timesupolivia\",\"4131\":\"The show N tell in you is not necessary in this part of the game, the need to overly explain urself, ur decisions. calm down the urge to do the most you've the right to remain silence in this time of noise.\\n\\n#Taiwan #China #InspirationalQuotes #Motivation #PokemonPresents https:\\/\\/t.co\\/0farobJifY\",\"4132\":\"The @PeterObi campeign Team should publish a master blueprint on how he intends run the country. Policies, plans, areas of focus etc. It's important. We need it.\\n\\n#PeterObi4President2023 \\n#PeterObi \\n#peterobicampaignfund \\n#BBNaija \\n#Taiwan \\n#PeterObi4President\",\"4133\":\"If he's the sugar in your tea and she's the cockroach in your cupboard, hope he's the AA in your SS and she's the AA in your SC\\n\\n#BBNaija #BBNaijaS7 #Trending #FOREVER1 #gistloverblog #Gistlover #Taiwan #Obidatti023 #Nigerian\",\"4134\":\"@MaGeAuNaturel \\nGlowing skin tip 2\\n#facecare #skinlove #skintips #skincareluxury #skincaretips\\n#LoveIsland2022 #Hulk #loveislandNL #Taiwan #HungarianGP #EURO2022 https:\\/\\/t.co\\/k424DZXWBz\",\"4135\":\"Modeled this yesterday and rendered it some minutes ago. \\n\\n#Blender3d #blender #blendercommunity #blendercycles Mompha EFCC #Taiwan #PokemonPresents https:\\/\\/t.co\\/kN5UXILpuU\",\"4136\":\"MUSIC \\ud83d\\udd25 ( @fineboybella ) Bella Shmurda -\\\"New Born Fela\\u201d #Mp3\\nDownload \\ud83d\\udc47\\nhttps:\\/\\/t.co\\/7dlgJ31KEY\\n\\n #PokemonPresents #ChinaTaiwanCrisis #GoldMedal #BadDecisionsTrailer2 #music https:\\/\\/t.co\\/qCDwWwJr79 https:\\/\\/t.co\\/niaDffdl4p\",\"4137\":\"DO you have the intention to build best clickbank affiliate marketing sales funnel clickbank landing page?\\n\\nContact me \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47:-\\n\\nhttps:\\/\\/t.co\\/4WdBuXkpqb\\n\\n#twitch #SidHearts #whatwevalue #Putin #Taiwan #clickbanklinkpromotion #clickbankaffiliate #amazonaffiliate #websitetraffic https:\\/\\/t.co\\/kTip6QKDfX\",\"4138\":\"Happy Thursday! Let\\u2019s get another #writerslift going drop those #wips #arts #books #blogs #poetry down below! And let\\u2019s follow each other :) #WritingCommunity #explore #AuthorsOfTwitter #bloggers #PokemonScarletViolet #ChinaTaiwanCrisis\",\"4139\":\"Do you notice when he talks spit comes out madly check this out @carterefe__ your spit is too much ooooo #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #YEEZYDAY #BBNaijaS7 #YEEZYDAY https:\\/\\/t.co\\/4HLIhejxeK\",\"4140\":\"\\ud83c\\udfdf Malmo vs Dudelange\\n\\u23f0 18:00\\n#UELQualifier \\n\\nTwo Champions League drop-outs meet today, as\\u00a0Malmo\\u00a0welcome Dudelange\\u00a0to Eleda Stadion in the third qualifying round of the\\u00a0Europa League.\\n\\n\\ud83d\\udcf6 GG \\u2705 2.31 Odds\\n\\nBest Odds \\ud83d\\udc49 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #BoostedOdds #UEL #Taiwan https:\\/\\/t.co\\/j2WZpXricW\",\"4141\":\"Hey #WritingCommunity.\\nIt's been a while since the last #writerslift.\\nLet's try #ShamelessSelfpromoThursday.\\nDrop ur: #links #books #arts #blogs #articles #fiction #peoms #poetry #YouTube #Drama #podcasts #Wips and all you got.\\n#AuthorsOfTwitter #bloggers #Pelosi #BBNaija https:\\/\\/t.co\\/unVdsQqRLp\",\"4142\":\"Everybody dey japa. You too want to japa. What if you are destined to be in Nigeria? What if you are what Nigeria needs to be great again? \\n\\n#BadDecisionsTrailer2 #Taiwan #PeterObi4President2023 #BBNaijaLevelUp\",\"4143\":\"Why would i meet with them but my account balance is \\ud83d\\ude23 @KashimSM @AlikoDangote @DangoteGroup @DangoteCement @atiku @davido #NationalBoobDay #APCPresidentialPrimaries #Taiwan #ASUU #Tinubu #blackchully #andasuu #PokemonPresents https:\\/\\/t.co\\/1AfxgSgqgn\",\"4144\":\"Can the situation between The US, China and Taiwan be likened to the popular African Adage that says \\u201cWhen two Elephant fights, the grass suffers\\u201d? #Taiwan #USChinaTaiwanTussle #Internationaltrade #EconomicDiplomacy\",\"4145\":\"Ohmen all this views wey una dey get for Twitter how una dey take do am?chineke Twitter hard pass pregnancy\\ud83d\\ude04\\n#NationalBoobDay #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonPresents #onstorm #BoycottAliaBhatt #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #boycottrakshabandhan\",\"4146\":\"VIDEO\\n\\nWH Secretary Karine Jean-Pierre has said - and repeated several times - that Nacy Pelosi\\u2019s visit to Taiwan doesn\\u2019t change the \\u2018One China\\u2019 policy in no way, and \\u2018there is no reason for Beijing to turn Pelosi's Taiwan visit into some sort of crisis\\u2019. #Taiwan #Pelosi #Beijing https:\\/\\/t.co\\/Um1CyfI94W\",\"4147\":\"A kind poet\\n#BBNajiaS7 #BishopSpaces# DLConversations #LagosSwindlers #NationalBoobDay #Taiwan #FOREVER1 #WritingCommunity #fabrizioromano #Ghostingstory #LagosSwindlers #poetrycommunity #PekinExpress https:\\/\\/t.co\\/6wVGkuCveM\",\"4148\":\"Assuming madam Pelosi visit to #Taiwan trigger #WWIII...\\n\\nIt will be on record that a woman was the cause of WWIII \\n\\nIs humanity going to learn?\",\"4149\":\"Breaking news!! Bubu don dash Nigeria to Niger republic #Niger #bubu #Taiwan #EndSARS\",\"4150\":\"Don\\u2019t let yesterday take up too much of today \\n\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #timesupolivia\",\"4151\":\"Are you thinking what I am thinking???\\n\\n#Taiwan #PokemonPresents #BadDecisionsTrailer2 #Pelosi #twitterclarets https:\\/\\/t.co\\/9g4czDBj9I\",\"4152\":\"#SoloAlbum is coming *Ku lo sa\\\" \\ud83e\\udd70, in oxlade's voice. \\nI'm more than ready for the album. \\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n\\n#PokemonScarletViolet #Pelosi #BadDecisionsTrailer2 #GoldMedal #DonBelle #Ninjawarriorsfc\",\"4153\":\"@the_big_4lf @bod_republic \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n\\nYou talk say youna like vawulence\\nOya let's meet for Twitagram9ja\\n\\nKindly click the link below with your name\\nAlot of entertainment here https:\\/\\/t.co\\/s4uVx9u2lp\\n\\n#Pelosi #timesupolivia #AsiaCup2022 #BadDecisionsTrailer2 #PokemonPresents https:\\/\\/t.co\\/hL3D2W2oyh\",\"4154\":\"@wizkidayo @Gamers8GG_AR @Gamers8GG You talk say youna like vawulence\\nOya let's meet for Twitagram9ja\\n\\nKindly click the link with your name\\nAlot of entertainment here https:\\/\\/t.co\\/s4uVx9u2lp\\n\\n#Pelosi #timesupolivia #AsiaCup2022 #BadDecisionsTrailer2 #PokemonPresents\",\"4155\":\"Uber will make it harder for drivers to cancel your rides | Awixy's Blog\\n#Abuja #Taiwan #Gistlover #trenches \\n#Trending #Viruman\\n\\nhttps:\\/\\/t.co\\/Py4MEBlgdJ https:\\/\\/t.co\\/LRNy2gV78s\",\"4156\":\"See how stress affects the brain with possible solutions\\u2026\\nhttps:\\/\\/t.co\\/uoEikCochW\\n\\n#davidhundeyin #bolatinubu #room1 #Taiwan #BB24 #davidhundeyin #stress #remedy https:\\/\\/t.co\\/rGiGx9nfeD\",\"4157\":\"Man's name is just every where. Every one is catching the vibes already \\ud83d\\udd25\\ud83e\\udd75.\\nExpect greatness from S.O.L.O ALBUM.\\nhttps:\\/\\/t.co\\/FUp1TahSAu\\n#PokemonPresents #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #timesupolivia #Pelosi #FOREVER1 \\n#Ninjawarriorsfc\",\"4158\":\"To join the Agrolyfe\\ud83c\\udf31 Revolution.\\n\\nGET at least 1 acre of farmland NOW,\\nClick here\\u27a1\\ufe0f\\u00a0 https:\\/\\/t.co\\/yhBXWin2rz\\n\\n#chelsea #niger #Peterobi #Brighton David Hundeyin #BBNaijaS7 #BBNaijaLevelUp Here We Go #ASUU #Taiwan #Fabrizio #Emily Buhari #Obituary De jong #Biden Africans #Pelosi https:\\/\\/t.co\\/oULUzjYdc0\",\"4159\":\"\\ud83d\\udd10The NEW SECRET product service of AGRICULTURE in West Africa today that surpasses the INCOME RATE from Real Estate. \\nLimited Farmlands in these FARM ESTATES are available and Selling NOW across West Africa. \\nhttps:\\/\\/t.co\\/yhBXWin2rz\\n\\n#agrolyfe #realestate #Niger #Taiwan #China https:\\/\\/t.co\\/biyg4c2idH\",\"4160\":\"Here, I \\u201cget lost\\u201d \\ud83d\\ude00\\ud83d\\ude00\\ud83d\\ude00. \\n\\nSo help me God. \\n\\n#Pelosi | Jaruma | #BBNajia | Toyota | Big Bella | Shower | Datti | #BBNaijaS7 | Abuja | #AbujaTwitterCommunity | https:\\/\\/t.co\\/Qaayb0KgnM\",\"4161\":\"Available to purchase!\\n Send a dm\\n\\n#BolaTinubu #davidhundeyin\\n#Pelosi #AtikuOkowa2023 #PeterObi #BBNaijaS7 #decor #homedecor #arisetv #Buhari #Niger https:\\/\\/t.co\\/Tp3tQJz3KK\",\"4162\":\"The US govt has to trigger its 'great power conflict' against RUS or CHN, to maintain its addictive and profitable WAR industry. That official's visit to #Taiwan is bait, the clip is in Taiwan's stance, not whatever rhetoric that US rep went in the cover of night to push.\",\"4163\":\"When my mum wants to know about my investments @ConvergenceFin \\n\\nCheck out their telegram channel https:\\/\\/t.co\\/5NHIvfXkRL\\n\\n#PokemonPresents #Pelosi #timesupolivia #ExtraordinaryAttorneyWoo #KNUST #boycottrakshabandhan #BadDecisionsTrailer2 #Viruman https:\\/\\/t.co\\/yvGKPNEaxP\",\"4164\":\"A plea for mercy by a sinful country!! #Pelosi #BBNajia #BBNaijaS7 #ASUU #ObiDatti #PeterObi #Taiwanchina #chaina #ChinaTaiwanCrisis #CommonwealthGames2022 https:\\/\\/t.co\\/5hephg70Dx\",\"4165\":\"A young Nigerian man made this beautiful designer light with Peter Obi, Labour Party presidential candidate name for all Obidients .... If you need it DM us but you will pay for it to encourage him ooh #Taiwan #Birmingham2022 #Obidatti023 #BBNaija #ExtraordinaryAttorneyWoo https:\\/\\/t.co\\/MqQNE0DluW\",\"4166\":\"Spokesperson of Ministry of National Defense makes remarks on Pelosi's visit to Taiwan #China #Taiwan #WuQian https:\\/\\/t.co\\/Et8VA4DuOx\",\"4167\":\"When ya think small, it means ya re looking up to gods. But when u think Big, ya re looking up To GOD. Bcoz GOD do big things and add no sorrow. #Taiwan #PokemonPresents #AamirKhan #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #boycottrakshabandhan #davido #Davido #Bod\",\"4168\":\"The Only problem Nigeria is facing is this idiot old man @MBuhari @NGRPresident @BashirAhmaad @officialABAT \\n\\n#NightCoppers #Taiwan #NigeriaDecides2023 https:\\/\\/t.co\\/1RGXU28Mr5\",\"4169\":\"@rovercrc No model is true model since no one can correctly predict the direction of #BTC and the #Crypto market \\n\\n#Taiwan #Pelosi #ETH\",\"4170\":\"If the cryptocurrency market is the new gold rush, then get ready for a wild ride. If you\\u2019re of a confrontational nature, it\\u2019s going to be a bumpy ride. But if you have a little #ASUU #China #Taiwan #BBNaija\",\"4171\":\"The art I made a while ago\\n\\n#PeterObi #PeterObiForPresident2023 #Taiwan #PokemonScarletViolet #Pelosi #PokemonPresents https:\\/\\/t.co\\/x8ToWVOlaG\",\"4172\":\"@FabrizioRomano u too loud dis transfer o. I dey fear make @FCBarcelona no go hear am o \\ud83d\\ude02 \\ud83d\\ude02 \\ud83d\\ude02 \\ud83d\\ude02\\n\\n#Taiwan #PokemonScarletViolet #PokemonPresents #Pelosi #boycottrakshabandhan #AamirKhan #MeghanMcCainMeltdown #PrabhasForSitaRamam https:\\/\\/t.co\\/iaDXI553hM\",\"4173\":\"I don't how to tell my kids that this man was disappointed \\ud83d\\ude14 #Taiwan #lufc #EPL #PokemonScarletViolet #tundeednut #BBNaija #trans #trendingnow #GoViral #Twitter #vawlencesspace #SummerSlam #Pelosi #pepsi #LateNightTwitter #goodnight https:\\/\\/t.co\\/Ny7cGtBNlr\",\"4174\":\"Niger Republic\\n\\n#Taiwan #MeghanMcCainMeltdown #boycottrakshabandhan #PokemonScarletViolet #LagosSwindlers #BBNaija https:\\/\\/t.co\\/pP196UHxJd\",\"4175\":\"Borrowing for consumption is foolishness enough but using same money to buy vehicles for another country for whatever reason while your citizens are suffering day in day out is another level of #mumulity beyond me...\\n#Obidatti023 #Taiwan #BBNaija #PokemonPresents #2023Elections https:\\/\\/t.co\\/UeFEo5kC0H\",\"4176\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #AlexJones #SandyHook #Pokemon #PokemonPresents #Kansas #fidough #Discord #Discovery #HBOMax #colwill #FreakyGirl #Woody #Taiwan #timesupolivia #talkximg #Pelosi #LoveIsland https:\\/\\/t.co\\/a58nuGIcuj\",\"4177\":\"2022 Executive Sprinter \\nBullet Proof Bus\\nLekki\\nNow 482m\\n\\n#BBNaija #Taiwan #Pelosi #AamirKhan #PokemonPresents https:\\/\\/t.co\\/rJZOdn65Dw\",\"4178\":\"Mrs Harris goes to Paris -2022 #ASUU #MinisterofFinance #Taiwan\\nhttps:\\/\\/t.co\\/Hu8zBwbNnw\",\"4179\":\"Fear women oooo\\n\\n#Taiwan #PokemonScarletViolet #PokemonPresents #boycottrakshabandhan #bbnaija #BigBrotherNaija ASUU EFCC Money Heist Here we go \\n\\nFollow us for more https:\\/\\/t.co\\/L5naFHzNv6\",\"4180\":\"Follow me I follow back them don finally hack person Instagram #Wizkid #massage #Machala #Taiwan #Davido #burnaboy\",\"4181\":\"Taiwan: U.S.-China Tensions Flare As Pelosi Leaves Taiwan #Taiwan #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #AamirKhan https:\\/\\/t.co\\/EKNbMVUSuP\",\"4182\":\"Life Would Be Incomplete Without a Good Music To Calm The Souls \\u2764\\ufe0f\\u2764\\ufe0f #music #Taiwan #PokemonScarletViolet #Pelosi #boycottrakshabandhan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #kpss2022iptaledilsin #Trending https:\\/\\/t.co\\/b0ZKsnRgJ6\",\"4183\":\"#OUROPINION\\n#apc government has taken this country backward by 30 years . #NigerRepublic\\nIs not our country so investing in them is a waste on us.\\n#Buhari is a waste of time.\\n#endbuhari now\\n\\n#Taiwan #USA #zainab_fatemaa \\n#RenosNuggets\",\"4184\":\"It's all about how? #JakePaul #\\u0e42\\u0e0a\\u0e04\\u0e23\\u0e16\\u0e41\\u0e2b\\u0e48 #PokemonScarletViolet #\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #Pelosi #boycottrakshabandhan #kpss2022iptaledilsin #grace #Trending #godblessings https:\\/\\/t.co\\/2OrZy9A1BQ\",\"4185\":\"\\u2764 If u see any of these OCCULT SIGNS in your church, leave that church immediately, they're worshipping Satan... \\n\\nRetweet.... \\n#facts #LoveIsland #jesus #Christianity #Taiwan #PokemonScarletViolet #PokemonPresents #Pelosi https:\\/\\/t.co\\/XTI7MngazT\",\"4186\":\"WikiFX Live: 10 Essential Skills for New Trader\\n\\nhttps:\\/\\/t.co\\/OZRROchuBC\\n#forex #wikifx #trading #MONEY #Crypto #news #skills #beginners #PokemonScarletViolet #PokemonPresents #Pelosi https:\\/\\/t.co\\/uNm3Dqi46R\",\"4187\":\"DSTV, Trust TV, Others Fined N5m Over Terrorism Documentaries\\n\\n#PeterObi4President2023 minister of finance\\/ Reno Omokri\\/David hundeyin #BBNaija #nbcDSTV282 #BBC #Terrorists #Taiwan https:\\/\\/t.co\\/Ndvbo56Cix\",\"4188\":\"Watch Full Black Chully 5 New Videos #Taiwan #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #olosho #BBNaija https:\\/\\/t.co\\/l3lvWc50x6\",\"4189\":\"Price 12k\\n\\nKindly Dm or\\nWhatsApp 08138512629\\n\\nDelivery Nationwide\\n\\n#NigerRepublic #benincitymall #BBNajiaS7 #ChinaTaiwanCrisis https:\\/\\/t.co\\/PTmFmJSnik\",\"4190\":\"ASUU has been on strike over poor funding, but Buhari is busy dashing money to Niger Republic. Buhari is evil. 90% of Northern politicians are investing in Niger Republic, instead of in Nigeria.#Taiwan #LabourParty #Obidatti023 #BBNaija #Pelosi https:\\/\\/t.co\\/jCOYntTTXc\",\"4191\":\"@iam_timotee x @rexxiepondabeat \\nPls retweet guys \\ud83e\\udd32\\u2764\\ufe0f. @DONJAZZY @Alex_Houseof308 @Iam_Magixx @MAVINRECORDS @Ebuka #Taiwan #PokemonScarletViolet #PokemonPresents #Bbnaija @DanielRegha https:\\/\\/t.co\\/60kyNTYdVC\",\"4192\":\"You and biko #Taiwan #PokemonPresents #twitter https:\\/\\/t.co\\/yiNSoKgXQY\",\"4193\":\"What I\\u2019m hungry for this season doesn\\u2019t have fupa! \\ud83d\\udeb6\\u200d\\u2642\\ufe0f\\n\\n#PokemonPresents #ChinaTaiwanCrisis #boycottrakshabandhan #AamirKhan #timesupolivia\",\"4194\":\"Did you know that there are Igbo people in Equatorial Guinea?They occupy a small area in Bioko, an island of the African nation. Bioko is the largest region in Equatorial Guinea. The inhabitants speak Pidgin English, Spanish, Fang, Bubi and Igbo indigenous languages.#Taiwan https:\\/\\/t.co\\/FVS92zEuL3\",\"4195\":\"Buhari Govt. Confirms Purchase of N1.4 billion Worth Of Vehicles For Niger Republic #davidhundeyin David Hundeyin #Taiwan Buhari https:\\/\\/t.co\\/GUeM5Ldh6Q\",\"4196\":\"Hatem Ben Arfa \\ud83c\\uddeb\\ud83c\\uddf7\\nAndrea Belotti \\ud83c\\uddee\\ud83c\\uddf9\\nJuan Mata \\ud83c\\uddea\\ud83c\\uddf8\\nMarcelo \\ud83c\\udde7\\ud83c\\uddf7\\nEdison Cavani\\ud83c\\uddfa\\ud83c\\uddfe\\nIsco \\ud83c\\uddea\\ud83c\\uddf8\\nDries Mertens\\ud83c\\udde7\\ud83c\\uddea\\nAdnan Januzaj\\ud83c\\udde7\\ud83c\\uddea\\nDiego Costa \\ud83c\\uddea\\ud83c\\uddf8\\n\\nAll these Veterans are still Free Agents\\n#transfers #EPL #Taiwan\",\"4197\":\"My party guest from two weeks ago this dress is classy and so simple,it\\u2019s giving everything\\ud83d\\ude0d\\ud83e\\udd70 #Taiwan #PokemonScarletViolet #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonPresents #BBNaija7 #BBNajia https:\\/\\/t.co\\/2pB4Kcv0fP\",\"4198\":\"My Ray of sunshine Chidiebere Aneke \\nNo matter the number of Arguments\\nand Quarrels we have\\u2026 \\nMy Heart shall forever love and Cherish you, \\nHaving you as My Twin Sister \\nis one of The Greatest Blessings of My Life. \\nI Love you \\ud83d\\udc99\\n\\nWe Rep 06\\n\\n#Taiwan #aneketwins #worldbesttwins https:\\/\\/t.co\\/t83z7KgCZE\",\"4199\":\"Peter Obi congratulates Mrs Dudu Manuga of Gombe state on her nomination as National Woman Leader of Labour Party. \\n#Taiwan #Niger #BBNaija https:\\/\\/t.co\\/7oFsDeYTsH\",\"4200\":\"Asuu is on strike\\nYouths are at home\\nDays are going by\\nDreams are dying\\nAnd here is this\\ud83d\\ude2d\\ud83e\\udd7a\\n#therewasacountry#\\n#bringbacknigeria\\n#PeterObiForPresident2023 \\n#channelstv\\n#Taiwan \\n#ASUUStrikeUpdate \\n#BuhariMustGo \\n#BBNaija https:\\/\\/t.co\\/httCZHSxTe\",\"4201\":\"Those of you engaging on my post, God will give you surprise testimonies. \\n\\nMdee Mide Martins Biggie Minister of Finance EFCC Money Heist #SkeemSaam Khalid Abuja-Kaduna Mr. Peter Obi Piggyvest Onitsa World War III #breastfeeding #BBNaija #EndSARS #Messi\\ud80c\\udcf5 Endsars Marriage #Taiwan\",\"4202\":\"What you hear you doubt,but what you see sticks #Taiwan #PokemonPresents #ChinaTaiwanCrisis #boycottrakshabandhan\",\"4203\":\"Your father is the Landlord, your mother is the Landlady, what are you? \\n\\n Mdee Mide Martins Biggie Minister of Finance EFCC Money Heist #SkeemSaam Khalid Abuja-Kaduna Mr. Peter Obi Piggyvest Onitsa World War III #breastfeeding #BambamSorry #EndSARS #Messi\\ud80c\\udcf5 Endsars #Taiwan\",\"4204\":\"Talent can make you but attitude will break you. \\n\\nMdee Mide Martins Biggie Minister of Finance EFCC Money Heist #SkeemSaam Khalid Abuja-Kaduna Mr. Peter Obi Piggyvest Onitsa World War III #breastfeeding #BambamSorry #EndSARS #Messi\\ud80c\\udcf5 Endsars Marriage Carter Efe Dubai #Taiwan\",\"4205\":\"Souls who are capable of love are also capable of immense happiness and joy. Joy is the path that leads to both love and happiness. Once we devote ourselves to cultivating joy, we discover that we are surrounded by love.\\n#yorubavibechurch #Reno #davidhundeyin #WWIII\",\"4206\":\"The car Nigeria bought for Republic of Niger to fight insecurity \\n VS \\ncar Nigeria is using to fight Insecurity\\n\\n#Taiwan #minister #midemartins #PokemonPresents #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #ChinaTaiwanCrisis #Nigeria https:\\/\\/t.co\\/M99iJe53I1\",\"4207\":\"If this comes across your tl,kindly retweet,let\\u2019s save a soul,no amount is too small #lagosswindlers #BBNaijaS7 #Taiwan @instablog9ja @GistReel @MobilePunch https:\\/\\/t.co\\/I2g2AcUXoz\",\"4208\":\"If you are invited for a job interview, at the entrance of the gate or within the Organization's premises:\\n\\n#thread #Taiwan #PokemonScarletViolet #AamirKhan #KNUST #tiboinshape #kpss2022iptaledilsin\",\"4209\":\"Don\\u2019t miss out on this \\u2764\\ufe0f\\ud83d\\udccc\\ud83d\\udcaf\\ud83d\\udd25 #Taiwan #PokemonPresents #ChinaTaiwanCrisis #organics #Nengi #trending\\n\\nWhat is Peter obi Okoye trending Abuja IF Bbnaija https:\\/\\/t.co\\/jriEwqsvvJ\",\"4210\":\"DonJazzy by Dejavu_Dmj out now on Audiomack \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udc9f please Help tag @DONJAZZY\\nAnd help retweet Abeg \\ud83d\\ude4f\\ud83d\\ude2b @crayonthis @heisrema @rugerofficial @ayrastarr @Iam_Magixx @DPRINCEMAVIN \\n\\nhttps:\\/\\/t.co\\/mzzNbsFPxT\\n\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 https:\\/\\/t.co\\/sLgaVkZN1d\",\"4211\":\"PRICE SLASHED \\ud83d\\udcb0\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udcb0\\nMercedes Benz Executive Sprinter 2022\\nBrand new \\nBullet Proof Bus\\nLocation: Lekki\\nPrice: 540m \\u274c\\u2026490m\\u2705\\n08024592965 kindly retweet \\n#Taiwan #PokemonPresents #Obidatti023 #BBNaija #LabourParty #Auto #CarDealership https:\\/\\/t.co\\/c7Zb8bjK1h\",\"4212\":\"I'm very good at what I do mehnnn..\\n\\nSee my work na...\\n\\nKindly like and retweet\\ud83e\\udd32\\n\\n#crochet #Crochet_Sweater #Taiwan #BBNaija #ASUU #KNUST https:\\/\\/t.co\\/QGEWk8hri8\",\"4213\":\"Considering Nigeria's economic situation, this is the worst time to be an adult...\\n\\n#BigBrother #Hermes #Taiwan #AamirKhan\",\"4214\":\"Evening Twitter, it's 13 days away from the deadline. #ChinaTaiwanCrisis #Taiwan @ChelseaFC Hello Kolade, your Migo loan is now late. You have been charged a late fee of N. Your new balance of N871,698 must be repaid by Tuesday, Aug 16, 2022. If you have challenges with repayment\",\"4215\":\"Transaction successful is the only English that makes me happy\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02. \\n#BBNaija, #Taiwan #PokemonScarletViolet, #PokemonPresents #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 https:\\/\\/t.co\\/JfkK4p5kHo\",\"4216\":\"Some of them are laughing taking it as a joke .... #Buhari #Taiwan #MoneyHeist #JARUMA #China #IPOB https:\\/\\/t.co\\/VjiXPWbX4f\",\"4217\":\"The President was given a 6 weeks ultimatum by the National Assembly to deal with insecurity and the same National Assembly members have all gone home for a 7 weeks holiday.\\n\\nThis story no clear at all.\\n\\nCucurella . Money Heist . Minister of Finance . #Taiwan #Pelosi #Machala https:\\/\\/t.co\\/W1zrNyyBd4\",\"4218\":\"Have you ever slept so well that you couldn't tell if it was morning or night? \\ud83d\\ude02\\n@FabrizioRomano #BulletTrainMovie #Taiwan #PokemonScarletViolet #China #Chelsea\",\"4219\":\"Azerbaijani Defense Ministry publishes new footage of UAV strikes on Armenian positions.\\n\\nThe Azerbaijani authorities demand the complete disarmament of Artsakh's defense and the withdrawal of the Armenian military from Karabakh. #Azerbaijan #Armenia #Taiwan #Asia #Pelosi #viral https:\\/\\/t.co\\/sSTeJQYgcQ\",\"4220\":\"Buhari led administration approved 1.4 billion to purchase vehicle for Niger republic and ASUU is on strike for the past five month\\nWhat a ashame. \\n\\n#BbnNaija #Taiwan #\",\"4221\":\"y'all OBZS out now only on audiomack for now\\ud83d\\udd25\\u2764\\ufe0f\\ud83d\\udd25... kindly stream and follow..link below\\nhttps:\\/\\/t.co\\/a2WtXyLF9J\\n@DONJAZZY @MAVINRECORDS @DPRINCEMAVIN @Olamide \\n#Taiwan #BulletTrainMovie\\n#PokemonPresents #BBNaija #BBNajiaS7 #sabinus #BB24 https:\\/\\/t.co\\/tA7oQLvgD9\",\"4222\":\"The Australian Space Agency has confirmed that debris from the SpaceX spacecraft has crashed on Australian territory. The wreckage is considered to be the largest of those found in Australia since 1979.\\n#SpaceX #Australia #Space #Taiwan #Pelosi #TrendingNow #trending #viral https:\\/\\/t.co\\/14nNwxrVUq\",\"4223\":\"The car the Nigeria force is using vs the car Buhari bought for security personnel in Niger Republic.\\nIf you still want to vote APC then you really need to be cautioned by loved ones\\n\\n#Taiwan #BulletTrainMovie #PokemonScarletViolet #Pelosi #BadDecisionsTrailer1 #Wizkid Biggie https:\\/\\/t.co\\/4cLztckKId\",\"4224\":\"Can u join my FPL draft league, it's a new way to test skills and improve Ur FPL experience\\n#PremierLeague #FPL #ManUtd #ManUtdFreeCristianoRonaldo #BulletTrainMovie #Pelosi #Taiwan https:\\/\\/t.co\\/q13uXAXOhv\",\"4225\":\"@PeterObi The message is clear. \\n#BBNaija \\n#BulletTrainMovie \\n#PeterObiForPresident2023 \\n#Taiwan https:\\/\\/t.co\\/48uTAiwxOg\",\"4226\":\"Which movie do the actor make used of the word? \\\"You have failed the city\\\" #BulletTrainMovie #Taiwan #PokemonScarletViolet #PokemonPresents #Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"4227\":\"Well well well...\\n\\nWhat do we have here?\\nhttps:\\/\\/t.co\\/J34HrbVp1r\\n\\n|| David Hundeyin #BadDecisionsTrailer1 #Taiwan #Pelosi||\",\"4228\":\"It keep making sense\\n@MBuhari we just can\\u2019t thank you enough. Pls can someone remind pls how much asuu is demanding for them to go back to school?\\n#BulletTrainMovie #Taiwan #BadDecisionsTrailer1 #BAT2023 #Buhari https:\\/\\/t.co\\/4WJLqys2lZ\",\"4229\":\"Seen this offer?\\n\\nPeter Drury | DeJong | Hermes | Sesko | Cynthia Okereke | Teni | Shekere | Isco | 2 Naira | McFred | Mama Dollaz | Memphis Depay | Minister of Finance #BBNaijaS7 #PokemonPresents #Taiwan #massage https:\\/\\/t.co\\/wimkbaMp6p\",\"4230\":\"#china if you need man power of the #Taiwan war happens am here I have experience in making and radiocalls\",\"4231\":\"I\\u2019m still trying to understand Nigeria \\ud83c\\uddf3\\ud83c\\uddec \\ud83d\\ude29\\ud83d\\ude29\\ud83e\\udd26\\u200d\\u2640\\ufe0f\\n Man no fit dine twice a day again \\ud83d\\ude22\\ud83e\\udd26\\u200d\\u2640\\ufe0f #ASUU #Taiwan #BBNaija #BBNaija7 #Awful #Asake https:\\/\\/t.co\\/xC6K2kPOD5\",\"4232\":\"USA is going to continue spirking fire between countries till war happens see #UkraineRussiaWar now #Taiwan and #China\",\"4233\":\"What I ordered What I got \\ud83e\\udd26\\ud83c\\udffe\\u200d\\u2642\\ufe0f\\n\\n#Taiwan https:\\/\\/t.co\\/Etcy2TXr2z\",\"4234\":\"Pre-save my new single \\\"Terminator\\\" on Spotify:\\n#NewMusic #Taiwan #NewMusicDaily #newmusic2022\\n#appleiphones #PokemonPresents \\n#applemusic #Spotify #boomplaymusic #audiomack #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #latestmusic #applemusicnigeria \\n\\nhttps:\\/\\/t.co\\/8QlKDYh454 (powered by @distrokid)\",\"4235\":\"Dollar don enter 710 o \\ud83d\\ude02\\n#Taiwan #BBNaija #BBNajiaS7 #Machala #Phyna https:\\/\\/t.co\\/hYyok6F3by\",\"4236\":\"#GBPUSD \\n\\nI campaign with facts and figures \\u2705\\n+84.6pips completed on this pair\\u2705\\n\\n#Taiwan #CryptocurrencyNews #NFTs #trade #StocksMarket #wednesdaythought https:\\/\\/t.co\\/mux6JrXWZj https:\\/\\/t.co\\/tyAdCFsssb\",\"4237\":\"4. It helps strengthen the immune system: Strong immune system is important as it helps you stay healthy. Consuming yogurt, especially if it contains probiotics, on a regular basis may strengthen your immune system and reduce your chances of contracting an illness.\\n\\n#Taiwan\",\"4238\":\"The federal government intention is to fight corruption but knowingly they re allowing youths to engage in fraudulent activities coz an idle hand is the devils workshop. Unemployment couple with ASUU strike for over 5month. FG help the youth \\n#Taiwan #koundeisblue #Chelsea\",\"4239\":\"They post my babe keh \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\nWe must fight \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n#Taiwan #China #WorldWarIII https:\\/\\/t.co\\/tspuOt2IEp\",\"4240\":\"Nigerian is in a dirty state to be honest, how come travelling to Ukraine \\ud83c\\uddfa\\ud83c\\udde6 is now a big Win \\ud83d\\ude22\\n#Wizkid #Taiwan #PokemonPresents #wednesdaythought #Davido #BBNaija https:\\/\\/t.co\\/NZ3ygeIhwq\",\"4241\":\"Join this fantasy premier league. ...\\ud83d\\udc4c .\\nSeason starts on Friday \\n\\nJoin \\nhttps:\\/\\/t.co\\/SHfiNDUPTG\\n\\nAlso \\nU can use this invitational code 1fjmg4. #taiwan #BuhariMustGo #EndSARS #enassustrike. Rufai #BBNajiaS7\",\"4242\":\"The best time to start something new was 10 years ago; the second best time is NOW!\\n\\n#Taiwan #PokemonPresents #midjourney #adventure #Growth #learn #learning #selfcare #Selfdevelopment #LearnToEarn #LearningAndDevelopment\",\"4243\":\"It is also reported that NAFDAC charges bakers N154,000 penalty on late renewal of certificates. \\nAs a stakeholder within this agricultural value chain, how can your business contribute in solving this myriad of problems? \\n\\nCREDIT: @vanguardngrnews\\n#Taiwan #davidhundeyin #China\",\"4244\":\"Obi to the world \\n\\n#OBIDIENTS #Taiwan #Wizkid #EbubeaguMustGo https:\\/\\/t.co\\/l9TrkZDPB3\",\"4245\":\"Learn how to subtitle a film and earn your money \\nhttps:\\/\\/t.co\\/WvuevmThJO\\n\\n#Taiwan #sabinus #Buhari\",\"4246\":\"Pre-save my new single \\\"Terminator\\\" on Spotify:\\n#Terminator #applemusic #SpotifyPlaylist #Taiwan #audiomack #iTunes #applemusicnigeria #AfrobeatRadio #BulletTrainMovie\\n#Terminal21Korat #lagos #NewYorkCity #CaliforniaAdventure \\n\\nhttps:\\/\\/t.co\\/8QlKDYh454 (powered by @distrokid)\",\"4247\":\"Girl when a man tells you \\u201cwe need to take a break\\u201d mf saying \\u201cI been hoping you\\u2019ll dump me, but it not working, so here\\u2019s your breakfast \\u201d\\n\\n #Pelosi\",\"4248\":\"Where are my #P2Egaming\\nFans, check out @WarpBond \\n\\nThe season 2 promises to be epic, get your #Whitelist\\nSpot NOW.\\n#NFTGiveaways #CryptoNews\\n#Taiwan #BulletTrainMovie\\nWebsite: https:\\/\\/t.co\\/TVq8PkZ7EX\\nDemo: https:\\/\\/t.co\\/oWoGOLR8El\\nWL page: https:\\/\\/t.co\\/3OQiWdyaN6 https:\\/\\/t.co\\/0abiCiufk2\",\"4249\":\"What is this \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 #PeterDrury #PeterObi #PremierLeague #BBNaija #Taiwan #China https:\\/\\/t.co\\/Nz9c0LorqE\",\"4250\":\"Here's my winnings from yesterday's games. Mr William your games are quite impressive sir, you are really doing a great job.Thank you so much @betsmasterspro.\\n#Taiwan #Taipei #Boehly #Mamadollarz #ASUU #PeterDrury #Room1 #Osimhem #Vitinha #China #Shower #Isco #kovacic #Buhari https:\\/\\/t.co\\/2NDXPRWunF\",\"4251\":\"#NEWS #NancyPelosi #Taiwan #USHouseSpeakerNancyPelosi #Washington U.S. Speaker Pelosi wraps up Taiwan visit, heads to South Korea https:\\/\\/t.co\\/C2jJb4l4lU\",\"4252\":\"The Chinese Air Force sends fighter jets to the island of Taiwan to protect its national sovereignty and territorial integrity, said Shen Jinke, spokesman for the Chinese People's Liberation Army Air Force.\\n\\n#obidients #Taiwan #BBNaija https:\\/\\/t.co\\/scYmhRCniz\",\"4253\":\"\\u26a1\\nIn Colombia, a bus driver was shot and killed during his workday.\\n\\n#BBNaija #Taiwan #boycottrakshabandhan https:\\/\\/t.co\\/ewQV3c6jLC\",\"4254\":\"Success is walking from failure to failure with no loss of enthusiasm\\u2026. \\n\\n#Taiwan #BBNaija\",\"4255\":\"This may be your case, but hang in there! God is coming through for you...\\n#Taiwan #Godisworking #thingsout #VirumanAudioLaunch #sermon #audio https:\\/\\/t.co\\/fuKr5l8Xzy\",\"4256\":\"@accessbank_help You never checked?\\n\\nDoes it take a year to check DM \\n\\nA life depends on this please respond ASAP\\n\\nDavido | #Taiwan | #BigBrotherNaijaS7\",\"4257\":\"You said you want a God fearing man\\nBut Bro. Taiwo is always praying in Tongues\\nBro. Femi is always going for retreats\\nBro. Daniel is constantly in one fasting or another\\nSis. Joy, talk to me, I won't tell anybody, what do you actually want?\\n\\n#Taiwan #LoveIsland2022\",\"4258\":\"$500,000, we\\u2019d be able to achieve 1000 SMEs facilities scattered all over Anambra State, which would jump-start aggressive economic growth within the State, especially as income from oil is coming to an end\\u201d.\\n\\n#OBIdientlyYUSful #PeterObi #Taiwan \\n\\nCredit: https:\\/\\/t.co\\/sFqLr7SfdN\",\"4259\":\"New Audio on YouTube SOON Kindly Subscribe to ma YouTube Channel and be the first to watch \\n\\nhttps:\\/\\/t.co\\/8qxrUmffmR\\n\\n#knust #GHOneNews #TV3GH #BulletTrainMovie #PokemonPresents #Taiwan #sabinus #massage #burnaboy\",\"4260\":\"I'm gonna put you in seven positions for seventy minutes\\nYou get it, babe?\\n\\nNa dem be this\\ud83d\\ude02\\ud83d\\ude02\\ud83e\\udd0c\\ud83c\\udffe\\n\\nRoom 1 || #Taiwan || #Wizkid || Shower || ASUU || Deji \\n https:\\/\\/t.co\\/kuHBbuIPqq\",\"4261\":\"#Sportivation\\n\\nMarcellinus Anyanwu Joins NFF Presidential Race, Reveals Plans For Nigerian Football\\n https:\\/\\/t.co\\/u9ttZck0yO\\n\\n#Taiwan \\n#BulletTrainMovie \\n#PokemonPresents \\n#sabinus \\n#massage\\n#PrabhasForSitaRamam\",\"4262\":\"Maximum Joy Foundation - Creating hope and equal opportunity for teenage mothers and underprivileged children\\n\\nAugust 4th is almost here \\ud83d\\udcaa\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\n\\n#Taiwan #Taipei #China #ChinaTaiwanCrisis #NancyPelosi #asantekotoko #GFA https:\\/\\/t.co\\/IpIJS16Q0a\",\"4263\":\"According the minister of finance \\\"President Buhari, whose actions she cannot question, has d right to make his own assessment of situations and give directives accordingly\\\" Are this people for real? Oh Lord pls save us from this disaster come 2023.#Taiwan #Pelosi #davidhundeyin\",\"4264\":\"What will you call thi\\ud83e\\udd23\\ud83d\\ude02#CAKEGOD #BulletTrainMovie #Taiwan #BBNaijaGuinnessSmooth #comedy #NigerianIdol https:\\/\\/t.co\\/X0g1q2rmkP\",\"4265\":\"OUT SOON on YOUTUBE !!!! \\n\\n#Bigivy #trans\\n#Sarkodie #shattawaleinnungua\\n#KwesiArthur #Taiwan #sabinus https:\\/\\/t.co\\/kFuvOwtASi\",\"4266\":\"This is Crazy \\nRUFAI OSENI\\n#16children\\n#PeterObi4President2023 \\n#Pelosi https:\\/\\/t.co\\/HdEwRH6iPT\",\"4267\":\"I finally give up on the country matter, like WTF? When @DavidHundeyin broke the news hours ago some idiots started calling him names. Please what is going on with this govt?#davidhundeyin #sabinus #Taiwan https:\\/\\/t.co\\/XYMuG4d0yL\",\"4268\":\"Trading 1.Icewing 2.BlueSeer 3.NightBlade\\n\\nLeave your offers #mm2 #mm2trading #AamirKhan #Taiwan #ROBLOX #offer\",\"4269\":\"Good evening\\n#Taiwan #Pelosi #PokemonScarletViolet #AamirKhan #\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a\",\"4270\":\"Told her to take a walk with me while I follow @lionheart1759 to #Illorin to #EndPolio . She took her first step thanks to our medical devices but I can\\u2019t deny the fact that it\\u2019s burdensome but it can help. #Taiwan #orthosis https:\\/\\/t.co\\/bVQg5LLuqJ\",\"4271\":\"For Rent - 3 Bedrooms Flat Available. \\n\\n\\ud83d\\udccdLocation - Dawaki Abuja. \\n\\nRent - N1,300,000 Yearly. \\nRCD - N100,000. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #China #Taiwan https:\\/\\/t.co\\/serqHvJW2C\",\"4272\":\"So today I was listening to some good Naija songs and found out that @Lojaymusic and @beatsbysarz #Monalisa Has the same beats as @Iam_Magixx -Saye. They\\u2019re just on different keys.\\n#GoodmusicGoodTalk \\n#Taiwan #BBNajia7 #Wizkid #Pelosi #China https:\\/\\/t.co\\/vG6i0EOIPN\",\"4273\":\"BURNa boy was right #Taiwan https:\\/\\/t.co\\/0kYIZoEshx https:\\/\\/t.co\\/hXTkpuKOb9\",\"4274\":\"If you watch this video, you know a Chelsea fan. #Pelosi https:\\/\\/t.co\\/lucqefmX72 https:\\/\\/t.co\\/M0Ay75iMpk\",\"4275\":\"We were made to believe that when @MBuhari eventually wins the 2015 election, we're going to have a soft and stress free life but we never had it easy talk more of stress free or soft.\\n#ASUUStrikeUpdate #Pelosi #2023Elections #ASUUstrike #NaijaNews #Obidatti2023 #BAT2023 #Atiku\",\"4276\":\"Boys need money #Taiwan\\n#Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"4277\":\"Girls need love\\nBut never say it out\\n#Pelosi #Taiwan #PokemonScarletViolet\",\"4278\":\"Nobody can love you like a mother can #Taiwan #Pelosi #sabinus\",\"4279\":\"Some Of Us Have Never Been To A Club B4,Yes We Exist \\n#Taiwan #Pelosi\",\"4280\":\"Designing success through creative web design, digital marketing, content creation and social media marketing #Taiwan #helicopter #BBNajia https:\\/\\/t.co\\/QXoeE58mqd\",\"4281\":\"When you have a dream, you've got to grab it and never let it go. We are here to answer questions related to your business growth. \\n\\nAre you a business owner looking out for visibility, growth and an increase in sales?\\n\\n#ASUU #Taiwan #businessowner #businesstips #businessgrowth https:\\/\\/t.co\\/XaBB0uU303\",\"4282\":\"BUY NOW, AND PAY LATER\\n#Taiwan #Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #PokemonScarletViolet #AamirKhan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 https:\\/\\/t.co\\/SFtmooG4n4\",\"4283\":\"Friday is gonna be hot \\nAsake dropping Terminator \\ud83d\\udd25\\nPremier league \\ud83d\\udd25\\n Can\\u2019t wait \\n\\n#Wizkid #Taiwan #helicopter #BBNaija7 #Machala #recession #Pelosi #Gistlover #instagram #sabinus #PokemonScarletViolet\",\"4284\":\"Dont cry out too loud about having persistent breakdown from malaria. Just click the link for a quick tip...\\n https:\\/\\/t.co\\/ZiEdkQUDPj\\n#Taiwan #DonBelle #Pelosi #sabinus #malariagenomics #malaria #Health\",\"4285\":\"Put am for status \\n\\n#davidhundeyin #Pelosi #samomatseye #Taiwan https:\\/\\/t.co\\/DREK7qMgFy\",\"4286\":\"For Rent - 2 Bedrooms Flat Available. \\n\\n\\ud83d\\udccdLocation - Mabushi Abuja. \\n\\nRent - N1,500,000 Yearly. \\n\\n#AbujaTwitterCommunity\\n#AbujaFinders #RealEstate\\n#PeterObi #EndSARS #Barcelona\\n#Barca #PeterObi4President2023\\n#BBNaija7 #INEC #Arewa4PeterObi\\n#BBNaija #Chelsea #Buhar #China #Taiwan https:\\/\\/t.co\\/cHw8nDiKoF\",\"4287\":\"Your Bank account will be loaded with cash this week, in Jesus name\\n#\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Taiwan #kpss2022iptaledilsin #BlueJays #DonnyPangilinan #Pelosi #BadDecisionsTrailer1 #music #musique #Musica https:\\/\\/t.co\\/z92cabRhki\",\"4288\":\"Design of Petrol Station. \\nStarting a new project? The first thing u need is a perfect design. \\nWhatsApp: 08138359656\\nFollow us on \\nTwitter: @Geogem_Contrs\\nIG\\/Fb: @geogemcontractors for more updates \\n\\nOshiomole Room 1 Ronaldo #Cubana Arewa Zone 12 #Taiwan Witcher Gaskiya #Pelosi https:\\/\\/t.co\\/cpMeY6l4qn\",\"4289\":\"You all need to see this wow\\ud83d\\ude31\\ud83d\\ude31\\ud83d\\ude31...we not messing around...\\n@my234Radio @Oba_peejay @KeinzGrm_ @Dareal_Pterslim @Big__Derah @roque55O @HipHopDX @mtmedia_uk @DailyMail @MTVBaseAfrica @_EstherOnyinye @PsychoYP @JAE5_ @Santandave1 @YAWTOG_ \\n#drill #Pelosi #MUFC https:\\/\\/t.co\\/Vhy6XUmv6N\",\"4290\":\"What is massive LinkedIn profile views without a good and well constructed CV?\\n\\nDM to get a solid CV that will get you your dream job. \\n\\nKindly send your Cv or Mail to : \\ngetcv@jobblasts.com let\\u2019s get started!\\n\\nvisit our website https:\\/\\/t.co\\/LDDvWm5FAU for more updates. #Pelosi https:\\/\\/t.co\\/ERYYncJ91y\",\"4291\":\"Life has taught me to believe in two things\\n\\nTIME AND GOD.\\n\\n#Taiwan #Pelosi #AamirKhan #PokemonScarletViolet #BadDecisionsTrailer1 #BlueJays #BBC #BBNaijaSeason7 #music #LoveIslandUSA #Colorado #PepsiBlue https:\\/\\/t.co\\/8rhcyAquDi\",\"4292\":\"Peru cover by wise king\\n@fireboydml @davido @DONJAZZY @stefflondon @EMPIRE @WiseKingoffici1 #EmpiresSMP #EndSARS\\n#Taiwan\\n#AamirKhan #PokemonScarletViolet #Mnakwethu #mavin #30BG #supportingartist https:\\/\\/t.co\\/lomyxzo19t\",\"4293\":\"Uti Nwachukwu celebrates 40th birthday #Batgirl #Taiwan \\n\\nhttps:\\/\\/t.co\\/C9ax86h1qt\",\"4294\":\"Download Valucares App\\n#kano #Oshiomole #Room1 #Napoli #Taiwan \\n#arisetv #witcher https:\\/\\/t.co\\/U490y2rN72\",\"4295\":\"a dictator #XiJinping i s \\n'the Sorest Loser of All Time' - #China - #Taiwan #Pelosi https:\\/\\/t.co\\/COouUZAqTK\",\"4296\":\"Man of the year \\ud83d\\ude02\\ud83d\\udcaf\\n#obituary #Room1 #Wizkid #oshiomole #witcher #ASUU #Taiwan #ifb https:\\/\\/t.co\\/xYqiMXKCQi\",\"4297\":\"When 2 bully talented Singers go at it on stage with none stepping down for the other to be heard, the audience bears the brunt. #Noise.\\n\\nWitcher Room 1 Diana Pioneers Rufai oseni Mbah Biggie Ronaldo Dubai What God Big Ivy #Wizkid #helicopter #Taiwan #UkraineRussiaWar #Russia\",\"4298\":\"This is just so amazing \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n\\nSong is Empath , 4th track off my new EP \\nLink in my bio \\ud83d\\udd25\\n#Taiwan #Pelosi #PokemonScarletViolet #Viruman #helicopter #Machala #Trending #festac https:\\/\\/t.co\\/HrGoPtUEdp\",\"4299\":\"@Naija_PR Nuclear weapon don ready\\n\\n#WWIII https:\\/\\/t.co\\/M52dtXFSPt\",\"4300\":\"Freestyle\\n Cc @officialnairam1\\n@zinoleesky01 @Olamide @davido @wizkidayo\\n@burnaboy @miabaga \\n#sapa #MotivationalQuotes #Taiwan #music #Birmingham2022 \\nPls help retweet\\ud83d\\ude4f https:\\/\\/t.co\\/Ed0hyzm5a0\",\"4301\":\"We still got this ice cream wafers.\\n\\ud83d\\udcf1A21s.\\n\\n#Pelosi ASUU\\n\\n\\\"Arise TV\\\" #helicopter Jaruma Oshiomole Room 1 https:\\/\\/t.co\\/QOKS8yZiEf\",\"4302\":\"We still got this ice cream wafers.\\n\\ud83d\\udcf1A21s.\\n\\n#Pelosi ASUU https:\\/\\/t.co\\/ccitKgxKdW\",\"4303\":\"You see me doing professor look just know I\\u2019m upto something \\ud83d\\udc68\\u200d\\ud83c\\udfeb \\ud83d\\ude02 orin ni sha #Taiwan #professora #Pelosi #akanda https:\\/\\/t.co\\/ziFs7wdpro\",\"4304\":\"The only thing I can afford now is \\u201cAble\\u201d so in case of any necessity please \\u201cam affordable\\u201d\\n#BBNajia #Taiwan #GGA\",\"4305\":\"Singing &lead singing is a thing if the mind &mental activity.\\nI have seen singers who practically bully their co-lead vocalists into silence on stage through their skillful runs & powerful singing colours.\\nIt's all shades of wrong.\\n#Sabinus #Taiwan #China #Russia #Ukraine #uk\",\"4306\":\"@davido X @Pheelz\\nComing with a hard jam \\nMusic for the soul \\nHappy music \\n\\nRoom 1 peter Dury Ronaldo Ten hag jackie chan de jong #30BG #davido #Taiwan #PokemonScarletViolet #AamirKhan #DonBelle #sabinus #helicopter #DonnyPangilinan https:\\/\\/t.co\\/VPSRUhRh8v\",\"4307\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/s3pbNoQAGP\",\"4308\":\"To co lead songs effectively its key for singers to not be get carried away with their level of skill to the point of over dominating the addlibs. Do what you can at your level in a way to help the other person deliver at their level\\n#music #Taiwan #UK #USA #sabinus #JackInTheBox\",\"4309\":\"China starts military exercises as Nancy Pelosi meets Taiwan\\u2019s president\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/7TgVmLgnwK\\n\\nPlease follow us & retweet\\n#China #Foreign #NancyPelosi #Taiwan #US #bobojay #bobojaytv https:\\/\\/t.co\\/X4VdFxKEE2\",\"4310\":\"When leading songs with other lead singers, it's important to avoid crowded addlibs. This happens when both of you do addlibs without space or rest particularly with singing a lot of words into your addlibs at the same time. \\n#Taiwan #music #AamirKhan Demi Lovato #nsfwtwt\",\"4311\":\"US House Speaker Nancy Pelosi lands in Taiwan amid threats of Chinese retaliation\\n\\n#WesternPost #NancyPelosi #Taiwan #USA #China\\n\\nhttps:\\/\\/t.co\\/i8u27vB1bD\",\"4312\":\"In Russia, near Moscow, there was a major fire in a warehouse. The area of the fire was up to 35,000 square meters. One person died, 6 were injured.\\n#Russia #russiaisaterrorisstate #Taiwan #Pelosi #Trending #Viral https:\\/\\/t.co\\/XPenvRyXEc\",\"4313\":\"Kremlin: Tension over Nancy Pelosi\\u2019s Taiwan visit \\u2018should not be underestimated\\u2019\\nDETAILS \\ud83d\\udc47\\u261b https:\\/\\/t.co\\/Cx1vEaqwqu\\n\\nPlease follow us & retweet\\n#Foreign #Kremlin #news #Taiwan #bobojay https:\\/\\/t.co\\/lbgqYYK7r6\",\"4314\":\"Track 3.#moneymadness ft SpLamar on(Simple Lyrics) the Ep out already link below \\ud83d\\udc47 https:\\/\\/t.co\\/RKTnxgtKzB. #africa #Taiwan #Pelosi #news #NEW #music #Demi Lovato #MONEY #moneymadness https:\\/\\/t.co\\/AVYQjSFrmC\",\"4315\":\"@PiCoreTeam Pi to the moon. Slow and steady.\\n\\nCheck out CORE Mining too. Wonderful project. @CoreMining_1\\n\\n#pi #core #SatoshiPlusConsensus #btcs #btc #Bitcoin #Taiwan #Solana https:\\/\\/t.co\\/MkpeC7yxpc\",\"4316\":\"Me looking at USA trying to play a dirty game with the Chinese #Taiwan #Xi Jinping #Kano https:\\/\\/t.co\\/EL3gICOawv\",\"4317\":\"Book a shortlet apartment with ease on Rentic.\\n\\nSign up on our bio link to begin today.\\n\\n#renticapartment #lagosnigeria \\n#BBNaija\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 #BBNajia CONGRATULATIONS OZO Hermes Obi-tuary Emily Niger Republic Sam Omatseye Room 1 #Pelosi Amen Tinubu Deji God Abeg Daniella china\\u2019s taiwan https:\\/\\/t.co\\/MWfCcGsFBl\",\"4318\":\"Most of the saved reference pins I saved from Pinterest I have managed to draw or sketch everything!!!! #Pinterest #artists #Taiwan\",\"4319\":\"27 Chinese warplanes enter Taiwan's air defence zone: Taipei.\\n\\n#Taiwan #China\",\"4320\":\"Travelling by Flight is N150k, while by road is N30M to N100M depending on your kidnapper asking price \\ud83e\\udd7a\\ud83e\\udd7a\\n\\n#Wizkid #Taiwan #bellathorne #PeterObi #abuja\",\"4321\":\"Where i can Intern to Work and learn from senior designers in this fields. I would appreciate your Retweets and recommendations.\\n#Solana #sabinus #Pelosi #internships #designthinking #designinspiration\",\"4322\":\"Finally, I have found the video \\ud83d\\ude05\\n\\nObi-tuary | Arise TV | #Taiwan #RCCGConvention | #helicopter | #WWIII #Pelosi #Xi Jinping #World War III #Reno #TinubuShettima2023 #Tinubu #Atiku #IPOB | #Hausas #fulani | #Yorubas #Igbos #Nigerians #BBNajia #Buhari #PeterObiForPresident2023 https:\\/\\/t.co\\/1GLM8ZiUMW\",\"4323\":\"Copied from @ENIBOY , I only added the right person picture.\\n\\nThe person is #PeterObi4President2023 \\n#davidhundeyin \\n#congratulationsozo\\n#arisetv \\n#transhumancoin \\n#oshiomole \\n#Taiwan \\n#Ronaldo \\n#Messi \\n#TakeBackNaija\",\"4324\":\"Check out my new single \\\"Adulthood Anthem II\\\" distributed by @DistroKid and live on Apple Music!\\n#Taiwan #appledaily #sabinus #applemusicrt #ApplePay\\n#ApplePencil #applemusic #applemusicnigeria #Pelosi #BlueJays #LagosSwindlers #applemusicamerica #Haiti \\n\\nhttps:\\/\\/t.co\\/SR7gmdCcUq\",\"4325\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/T5NqupYC6a\",\"4326\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/UkfME0jLGW\",\"4327\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/XbSVyWeGe9\",\"4328\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/ImtNlfKkxu\",\"4329\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/qpHGdNJgKE\",\"4330\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/t5nQgp3nRr\",\"4331\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/0mDVY3VN2i\",\"4332\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/3vCdF9DKEy\",\"4333\":\"Peace \\u270c\\ufe0f@ @ukr @Ukraine @china @PDChinaLife @Taiwan_Today \\n#peacefulTaiwan #Taiwan #ChinaTaiwanCrisis\",\"4334\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/HR0p122ocB\",\"4335\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/cNMzR9WUeH\",\"4336\":\"Osimhen Napoli Future In Doubt After Comments From President Over African Stars \\n\\n#osimhen #Taiwan #HelicopterCrash #DonnyPangilinan https:\\/\\/t.co\\/2g4Wc7gzYP\",\"4337\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/UyhQgGwCHt\",\"4338\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/HhjcNkXvoR\",\"4339\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/0yfepVxBdt\",\"4340\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/mfd7tNgXeb\",\"4341\":\"Talking about brands,quality, kennyshoes got you covered. We sells the top notch quality shoes. \\nPlace your order now\\n\\u260e\\ufe0f 0\\ufe0f\\u20e38\\ufe0f\\u20e30\\ufe0f\\u20e33\\ufe0f\\u20e37\\ufe0f\\u20e30\\ufe0f\\u20e38\\ufe0f\\u20e36\\ufe0f\\u20e34\\ufe0f\\u20e37\\ufe0f\\u20e33\\ufe0f\\u20e3\\nNationwide delivery\\ud83c\\udf0f #NigerRepublic #BBNaijaS7 #obituary #samomatseys #taiwan #emily #tinubu #Ronaldo #rufai #sabinus #bernd #china https:\\/\\/t.co\\/jvcuksjZIE\",\"4342\":\"For home lessons for your children, primary schools students, Secondary school students in commercial class and computer tutorial (Ms Office and graphics design) around ketu, Ojota, Ogudu, Mile 12, Owode and Irawo. Contact AOI on: 08166205451 and 09078463024. #Cucurella #Taiwan\",\"4343\":\"Movie coming out this August \\n#Gavi #WorldwarIII #sabinus #movies #Taiwan #Ukraine #brighton https:\\/\\/t.co\\/GNZfMrWyoH\",\"4344\":\"Book your Private Jet charter & Helicopter shuttle services with amazing discount\\u2019s \\u2708\\ufe0f contact us on +2349038190834\\n.\\n.\\n.\\n#helicopter #PrivateJet #Taiwan #Pelosi #travel #Aviation Kano World War III https:\\/\\/t.co\\/uN0H1vPHWE\",\"4345\":\"How long does it take you to understand this picture \\ud83e\\udd23\\n#Taiwan #Trending #Viral #LoveIsland2022 #Pelosi #sabinus #DonBelle #massage #helicopter #Birmingham2022 #BelleMariano https:\\/\\/t.co\\/dYbMkB0eWO\",\"4346\":\"Check out my new single \\\"Adulthood Anthem II\\\" distributed by @DistroKid and live on iTunes!\\n#iTunes #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03 #itunes\\u914d\\u5e03\\n#itunesafrica #iPadPro #itunesghana #Taiwan #sabinus \\n#Solana #UkraineRussiaWar #PeterObi4President2023 \\n\\nhttps:\\/\\/t.co\\/D9BKh8azwH\",\"4347\":\"1000 Naira free BET\\u26bd\\ufe0f\\ud83c\\udfc0\\ud83c\\udfc8\\nILOT sport Bet \\ud83e\\udd3e\\u200d\\u2642\\ufe0f\\ud83e\\udd3e\\u200d\\u2642\\ufe0f1000 naira free Bet for all.\\nSign up now \\ud83d\\udc49https:\\/\\/t.co\\/eu6MfQUQWL\\n#helicopter #Japa #XiJinping #ChelseaFC #BHAFC #CFC https:\\/\\/t.co\\/S9yDKiqfdh\",\"4348\":\"If Governor El rufai was the President of Nigeria , Asuu wouldn't be doing all these nonsense they're doing.\\n#ASUUStrikeUpdate #Taiwan #EndAsuuStrikeNow\",\"4349\":\"Portable X Burna Boy X Afrobeat Type Beat | Amapiano - \\u201cZEHH\\u201d - Afrobeat Instrumenta 2022\\nNOW AVAILABLE PON MY YOUTUBE\\u2694\\ufe0f\\nhttps:\\/\\/t.co\\/QQdshVYR8Y\\n\\ud83d\\udd17Follow me on IG \\u279c https:\\/\\/t.co\\/nY84jN4orE\\n#wednesdaythought #esreicht #Taiwan #YENA_SMARTPHONE #BBNaija #Pelosi #sabinus #DonBelle\",\"4350\":\"Stop pronouncing the \\\"T\\\" when you speak English \\n#Taiwan #Pelosi #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BlueJays #helicopter #UkraineRussiaWar #DonnyPangilinan #UkraineRussiaWar https:\\/\\/t.co\\/PLgY1dIXk6\",\"4351\":\"Stop pronouncing the \\\"T\\\" when you speak English \\n#Taiwan #Pelosi #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BlueJays #helicopter #UkraineRussiaWar #DonnyPangilinan #UkraineRussiaWar https:\\/\\/t.co\\/TaQtXc29sS\",\"4352\":\"INSTRUCTIONS BELOW\\u2935\\ufe0f\\nClick link below to register \\nClick second link to subscribe via our YouTube channel the come back here & dm me your bank details \\nhttps:\\/\\/t.co\\/V95Z1YzYt7\\n\\nhttps:\\/\\/t.co\\/7RLDwaJ1Q9\\n\\n#BBNaijaS7 #Bbnaija #sabinus #SheggzFC #Machala #Bryann #Pelosi https:\\/\\/t.co\\/b6Klbwjbg0\",\"4353\":\"We all gat that atom of pride and self-esteem it all goes down \\ud83d\\udc47\\ud83d\\udc47 to how you tends to go about it #Wizkid #LoveIsland2022 #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LoveIsland2022 #sabinus https:\\/\\/t.co\\/YnkSN8AI7d\",\"4354\":\"We are Obidient and Yusful.\\nObi-tuary is not our portion.\\nSam and those that wish us that back to sender.\\nKano is Obidient\\nLagos is Obidient\\nAkwa Ibom\\nNigeria is Obidient\\n#Pelosi\\n#PeterObi4President\\nOZO AND HAP WHISKEY \\nCONGRATULATIONS OZO\\n#HapWhiskeyXOZO\\n#OzoemenaChukwuOZO https:\\/\\/t.co\\/zKU1MjgFni\",\"4355\":\"Procrastination is like a credit card. It's a lot of fun until you get the bill \\ud83e\\udd26\\ud83c\\udffc\\u200d\\u2642\\ufe0f\\n\\nGet good at doing small tasks every day, this trains you to become an executioner. \\n\\nThen when those bigger tasks come along, you\\u2019re prepared to crush them \\n\\n#Taiwan #Machala #WednesdayMotivation\",\"4356\":\"Visit Chronicare today to formulate a suitable treatment plan or call 09055790892\\n\\n#diabetes #herbalife_nutrition #Taiwan https:\\/\\/t.co\\/JBIOiMjpRc\",\"4357\":\"DonJazzy by Dejavu_Dmj out now on Audiomack \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udc9f please help tag @DONJAZZY\\nTill he sees and hear this \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f\\u2665\\ufe0f\\u2665\\ufe0f\\u2665\\ufe0f\\n\\nhttps:\\/\\/t.co\\/mzzNbsFPxT\\n\\n#Taiwan #Pelosi #sabinus #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a https:\\/\\/t.co\\/sYSZHcYIuU\",\"4358\":\"#citicbs\\n#\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 \\n#tiboinshape \\n#Taiwan \\n#\\u0633\\u0643\\u0631\\u0628\\u062a76 \\nSubscribe now!!!!!\\nORACLE 12C SQL: https:\\/\\/t.co\\/rCH5mVvNNM\",\"4359\":\"My hard working idolo Davido\\nMaking five jams not just a song a night .\\nCan you fave ever\\n\\nTen hag Ronaldo De jong Jackie chan #Davido #sabinus #Taiwan https:\\/\\/t.co\\/2hrwFNjoTy\",\"4360\":\"Rising dollar exchange rate, doom for Nigeria's aviation industry, others-Expert #Taiwan \\n\\nThis is just as he insisted that the situation was scary for all business entities in the country and appealed to the government to force a change. https:\\/\\/t.co\\/gibonV5QKp\",\"4361\":\"Female jerseys available\\nwhatsapp\\/call:08026182997\\nPrice:6,000\\nNationwide delivery \\n\\nNiger Republic | Tiwan | Ronaldo | #BeninCityMall | #Taiwan | #sabinus | #BibleBuild | #Pelosi https:\\/\\/t.co\\/V1HrxtBzz9\",\"4362\":\"16 passengers feared dead, five injured in Lagos auto crash #Taiwan \\n\\nAt least 16 passengers have been confirmed to have died, with five others sustaining varying degrees of injuries during an auto crash that occurred in Epe Local Government Area in Lagos. https:\\/\\/t.co\\/hXgO9IeAYb\",\"4363\":\"US Show Of Support Amid China-Taiwan Impasse \\n\\n#MyNewsNE #USA #Support #China #Taiwan #Impasse\\nhttps:\\/\\/t.co\\/aOLsaJQ8GU\",\"4364\":\"I long for something that's safe and warm..\\nBut all I have is all that's gone...\\nIt's helpless and hopeless like a feather \\ud83e\\udeb6 on the Clyde....\\n\\nGod knows I've failed but He knows that I've tried \\ud83e\\udd26\\n#davidhundeyin #ChinaTaiwan #Nigeria #level2 https:\\/\\/t.co\\/JioBYqDFhh\",\"4365\":\"#\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21 #Taiwan #LoveDamini #LoveIsland2022 #BurnaBoy #music #DONBELLEmpire \\n\\n@DONJAZZY @Olamide @ubifranklin1 @_AsiwajuLerry @Iampelga_ @officialnairam1 @davido @burnaboy @burnaboy @SOUNDCITYtv\\n@AtlanticRecords\\n@MAVINRECORDS\\n@AtlanticRcrdsUK\\n\\nPlease \\ud83d\\ude4f\\ud83d\\ude4f retweet abeg https:\\/\\/t.co\\/2Shx63fCq9\",\"4366\":\"@Debhieofficial has released the video of her much anticipated single titled #AS_I_dey.. Some said she was beefing somepeople in the song.. Kindly watch the full video using YouTube link below and drop your own comment.\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/XjTVjKPsm0\\n\\n#Taiwan #debhie #AsIDey #sabinus https:\\/\\/t.co\\/estdPqJOQ4\",\"4367\":\"Obasanjo to youths: Don't allow present challenges deter you from achieving your goals #Taiwan \\n\\nFormer President Olusegun Obasanjo has advised Nigerian youths not to allow educational challenges deter them from achieving their goals. https:\\/\\/t.co\\/n0O3V41onu\",\"4368\":\"*BEST TIME TO CONCEIVE A MALE CHILD.* \\n\\nThe sex of a child is determined by the father. The father carries both male and female sperm chromosomes XY. If the father releases the Y, male child is \\n\\n#ASUU #MamaDollaz #Racism #Taiwan #JackieChan https:\\/\\/t.co\\/iXZauOmaOF\",\"4369\":\"CONGRATULATIONS TO ALL WINNERS YESTERDAY.TODAYS FIXED MATCHES ARE NOW AVAILABLE. YOU CAN CONTACT ME DIRECTLY ON \\ud83d\\udcde +2349095386137\\n#Osimhen #Chukwuemeka #JackieChan #declan #Obituary #Kano #Cubana #Tinubu #NnamdiKanu #davidhundeyin #airtel #Mourinho #Mount #Taiwan #arisetv #ASUU https:\\/\\/t.co\\/ijo5LBjCky\",\"4370\":\"Verve partners uLesson to offer cardholders 10% discount #Taiwan \\n\\nVerve is committed to creating rewarding experiences for its cardholders while supporting their lifestyle needs and availing them a seamless and secure payment solution. https:\\/\\/t.co\\/8b4mXYiRXi\",\"4371\":\"Can you hear wedding bells \\ud83d\\udd14 already?\\ud83d\\ude09\\n\\nCongratulations @Sabinus1_ \\n\\n#Taiwan #Solana #Ukraine #Wizkid #BibleBuild #news #BigBrotherNaijaS7 #BBNajiaS7 https:\\/\\/t.co\\/eImPrKR2Vs\",\"4372\":\"It\\u2019s communion service knocking. Keep sending orders for your communion materials.\\n#Church #Taiwan #biblewonderland https:\\/\\/t.co\\/LfYSxPZruW\",\"4373\":\"It\\u2019s great for your sex life\\u2026. Yes!! \\ud83d\\ude09\\n\\n#DonnyPangilinan #sabinus #helicopter #Twitter #TREASURE #Pelosi #Taiwan #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BlueJays #BelleMariano #AbujaTwitterCommunity #massage #LoveDamini https:\\/\\/t.co\\/BWJR5IVhyG\",\"4374\":\"85% of Nigerian children suffer violent discipline in schools - UNICEF #Taiwan \\n\\nWhile noting the impact of corporal punishment on children is devastating, she said children are left with both physical and psychological wounds. https:\\/\\/t.co\\/8wVAc3JTrI\",\"4375\":\"Lagos on red alert, as police say 'we\\u2019re working to prevent terrorists\\u2019 attack' #Taiwan \\n\\nThe Lagos State Police Command says it is not taking lightly, the security threats against the state being reported in the media lately. https:\\/\\/t.co\\/aFCQiipXKe\",\"4376\":\"Ever since sapa hook me , i no dey too last for bed again, 25mins - 30mins i don finish, sapa can\\u2019t be showing me shege make i still come die on top toto\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a\\ud83e\\udd7a #Taiwan #sabinus #asuu #ASUU #dejong #machala #Trending\",\"4377\":\"How can Sam Omatseye, in his column on the Nation newspaper write such an offensive article at the former Governor of Anambra State and Presidential candidate of the Labour Party, Peter Obi. May God Judge him. #helicopter #Taiwan #sabinus #Obidatti2023 \\nNice wallpaper #BBNajiaS7 https:\\/\\/t.co\\/5gYFCbiciT\",\"4378\":\"Still thinking how Nigeria become broke that they can't resolve the ongoing strike.. \\nBoom \\ud83d\\udca5\\n\\nNigeria president approved 1.4 billion naira to buy car for Niger republic\\n\\nMay God help us \\n#Taiwan #Pelosi #Solana #ASUUstrike\",\"4379\":\"Napoli owner Aurelio De Laurentiis has said he wouldn't sign any more African players unless they agreed to not take part in the Africa Cup of Nations.\\n\\nNiger Republic Obituary Sam Omatseye Taiwan #Pelosi #BBNaijaLevelUp #BBNaijaS7 #BBNaija https:\\/\\/t.co\\/MTTKUFXeL5\",\"4380\":\"Register for the AFRH 12th Annual International Conference 2022! (hybrid).\\nLess than 20 physical slots are left\\nTo register, please visit https:\\/\\/t.co\\/c5IRIQTAQ1 \\n#Infertility #Taiwan #NigerRepublic #BBNaijaS7 #Obituary #Emily #BeninCityMall #Ronaldo #SamOmatseye #Leno #PeterObi https:\\/\\/t.co\\/dSvzH9zKm6\",\"4381\":\"I find it rather interesting why some people think their only cultural heritage is their tribe and language. Why can\\u2019t we say we are Nigerians , Ghanaians and Malians instead of Ewes, Asantis, Igbos or Dogon people . \\ud83e\\udd26\\ud83c\\udffd\\u200d\\u2642\\ufe0f#knust #Taiwan #UkraineRussiaWar\",\"4382\":\"#ASUU #Taiwan #Oshimen #Solana #helicopter #sabinus \\n\\ud83d\\ude2d #Lautech \\nIt unfortunate, our hearts \\ud83d\\udc94 are heavy, we have lost Rachel...\\nGod why \\ud83d\\ude2d \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d https:\\/\\/t.co\\/c4YyJ55VCk\",\"4383\":\"How's ur day going \\ud83d\\udc95 #Taiwan #Solana #ASUUstrike #sabinus #Wizkid #Machala https:\\/\\/t.co\\/ON0Rt9DZRR\",\"4384\":\"If you dey cap say until you get big bag before you can chase ur dream na ur time you dey delay....\\n#rorajaye on all platforms link below \\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\ud83d\\udc47\\ud83c\\udfff\\nhttps:\\/\\/t.co\\/awDqNWkeWB\\n\\n#Taiwan #Batgirl #Wizkid \\ud83c\\udfb6 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 https:\\/\\/t.co\\/gEEUK9uuNT\",\"4385\":\"MTN - 1500\\n2386543808601207\\n\\nPlease don't tell me it didn't enter oh, because i tried it and it entered \\n\\ud83e\\udd28\\ud83e\\udd28\\n#sabinus #Tinubu #Hermes #Taiwan #Jaruma #racism #NnamdiKanu\",\"4386\":\"Google removes 3.4bn Ads, suspends 5.6m accounts #Taiwan \\n\\nAs the digital world evolves, Google's policy development and enforcement strategies evolve with it to prevent abuse. https:\\/\\/t.co\\/VHF846Ucn9\",\"4387\":\"If your bf\\/gf open Mouth praise either Atiku(Dubai CrossFit) or Tinubu (Agbado master)\\n\\nDump him\\/her.\\nIn the long run, they will disappoint you.\\n\\n#Taiwan #PeterObiForPresident2023 \\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/Rh4GEKiBzb\",\"4388\":\"Tinubu is a PLACE HOLDER for gov Shettima, the earlier you people realize this the better oo.\\n#Taiwan #Obidatti2023 #Ukraine #sabinus #Wizkid #helicopter #BBNajiaS7 https:\\/\\/t.co\\/zhcpeyoRtP\",\"4389\":\"Is this one camera madness or what ?? I hope this isn\\u2019t how the iPhone 14 looks like ooh \\ud83e\\udd26\\ud83c\\udffb. It better not. #Taiwan \\u2018ASUU\\u2019. Mummy dollarz #Solana #BBNaijaS7 https:\\/\\/t.co\\/0BiTIgaSYO\",\"4390\":\"Iphone 14 unbox \\nWhat do you think? Drop a comment below\\nWe are the best gadget \\ud83d\\udd0c \\n08087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/GMKUgiJkav\",\"4391\":\"Memphis Good both in pitch and off pitch\\ud83e\\udd70\\ud83e\\udd70\\n\\nThe girl got a fresh inspiration \\ud83d\\udcaa\\n\\n#davidhundeyin \\n#Aristv \\n#Ronaldo \\n#Taiwan https:\\/\\/t.co\\/DbuVmtLuX0\",\"4392\":\"@KyivIndependent Ukrainians launching HIMARS missiles from a wheat field.\\n#Ukraine #UkraineRussiaWar #UkraineWillWin #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Solana #CloserWithDonBelle #russiaisaterrorisstate #RussiaInvadedUkraine https:\\/\\/t.co\\/DLkbtWYTnR\",\"4393\":\"If this message applies to you, then I'm talking to you: \\n\\n\\\"Stop doubting yourself and give your dream-career a jump\\\". \\n\\n\\\"The world awaits your potential\\\"\\n\\n\\\"You're enough!\\\"\\u270c\\ufe0f\\n\\nI'm routing for you \\ud83d\\udc4d\\n\\n#Taiwan #Pelosi #china #WWIII #Scholarships #UK #Cheveningscholarship https:\\/\\/t.co\\/TxY6NW7rGy\",\"4394\":\"Slimtalker the journalist \\ud83d\\ude02\\ud83d\\ude02 \\n\\nCc @Sabinus1_ @DONJAZZY @yabaleftonline @instablog9ja \\n\\n#Taiwan #Solana #CloserWithDonBelle #Wizkid #Batgirl https:\\/\\/t.co\\/9RTAmNicmh\",\"4395\":\"Check my profile for my link to order!!!\\n#Solana #CloserWithDonBelle #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Ukraine #Batgirl #Wizkid #BibleBuild #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #helicopter #BlueJays #Taiwan #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Italy #ChrisBrown #Trending #TREASUREinManila #TREASURE #CFC https:\\/\\/t.co\\/o6BiiEBYiS\",\"4396\":\"Your hair is important to us\\n#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Solana #CloserWithDonBelle #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus https:\\/\\/t.co\\/icrt1AKjYF\",\"4397\":\"Check my profile for my link\\n\\n#\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #businessopportunityprevi #bookaholics #celebrityfitnessindonesia #bookaddiction #bookaccount #photoofthedaygallery #businesswomanlife #bookaddicted #celebrityfashion #photooftheday\\u2764\\ufe0f #bookalicious #bookaesthetic #Taiwan https:\\/\\/t.co\\/UZZgqgILDK\",\"4398\":\"This is what we do\\ud83e\\udd85\\ud83c\\udf10\\n\\n#Taiwan \\n#mummydollaz https:\\/\\/t.co\\/EW1947qUVk\",\"4399\":\"start of the competition with her opening throw of 57.33m.\\n\\nThe Nigerian, who opened with 55.82m, knew she needed more than the 58.19m she threw to win the African Championships gold last June in Mauritius.\\n\\n#Taiwan #samomatseye #Ronaldo https:\\/\\/t.co\\/LkMKDvqJve\",\"4400\":\"Hey, having issues with your PC? Why not let us take that burden off you.\\n2348087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/cGChk2NcVy\",\"4401\":\"You can't separate Nurses and unemployed man. This professional sisters can feed niggas\\n\\n#Taiwan #sabinus\",\"4402\":\"Social media advert for a photographer \\n\\nGet exclusive designs at the coolest rate \\n\\nWe deliver quality designs \\n\\n#glowhub #gd #Taiwan #branding #photographer #CloserWithDonBelle https:\\/\\/t.co\\/PG3TnovTVs\",\"4403\":\"Massive pump incoming for #MarvinInu\\n\\n Don't miss $Marvin, holders would be rewarded soon\\n\\n#MarvinInu @Marvin_Inu #Taiwan #helicopter #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #tuesdayvibe #Bitcoin\\u00a0 #altcoin #CloserWithDonBelle #BNB #sabinus #Batgirl https:\\/\\/t.co\\/nSVh0YDIcv\",\"4404\":\"America politicians have zero integrity and ethics. The world must be careful how they want to deal with the country. What they said and do are two different things. They cannot not be TRUSTED!\\n#OneChina \\n#OneChinaPolicy \\n#OneChinaPrinciple \\n#Taiwanchina \\n#ChinaTaiwan\",\"4405\":\"Your best fashion plug \\n\\u25aa\\ufe0fOrder as seen in sizes \\n\\u25aa\\ufe0fto order kindly click on link in our bio\\n\\u25aa\\ufe0f call\\/WhatsApp :+2348138512629\\nDM is open 24\\/7\\n#NigerRepublic #benincitymall #BBNajiaS7 #ChinaTaiwanCrisis https:\\/\\/t.co\\/G78fRR0Nhi\",\"4406\":\"You can call her \\\"Menstrual Hygiene Ambassador\\\" \\ud83d\\ude01\\ud83e\\udd2a #StarGirl \\n.\\n.\\n\\ud83c\\udfa5\\ud83c\\udfbc\\ud83c\\udf99\\ud83c\\udfb5 @ugoccie \\n.\\n.\\n.\\n#starGirl #wizkid #Solana #BBNaijaSeason7 #Taiwan #BibleBuild #helicopter #BlueJays #oesym #wednesdaythought #AbujaTwitterCommunity https:\\/\\/t.co\\/rfTY04O9Pw\",\"4407\":\"Wait for it \\ud83d\\ude02\\ud83d\\ude02 #Taiwan #trending #EndSARS https:\\/\\/t.co\\/pQkRLWUnmy\",\"4408\":\"BIRTHDAY PORTRAIT\\n\\ud83d\\udcf8:@larrieoluks \\n\\n#Taiwan #photooftheday https:\\/\\/t.co\\/p0ziCwgJI7\",\"4409\":\"After Chelsea signs @DeJongFrenkie21, @cucurella3 \\nThen I will eat this, no time to waste time...\\n\\n#kante #Taiwan #Cucurella #GodAbeg https:\\/\\/t.co\\/8La4uS2TFA\",\"4410\":\"Bookmark this tweet #ChelseaFC is winning the premier league this coming season.\\n#Taiwan #ASUU #NnamdiKanu\",\"4411\":\"Battery capacity of our 400w and 250w SMK FLOOD LIGHT\\n*400W - 3.2V : 40AH\\n*250W - 3.2V : 20AH\\n@MarsSolar__\\n\\nJaruma | Ronaldo | Nnamdi Kanu | Datti | Sam Omatseye | Mama Dollars | Sign | Racism | World War III | BRT Lane\\n#XiJinping https:\\/\\/t.co\\/6Nun516WPx\",\"4412\":\"...Agricultural Research Council of Nigeria (ARCN), ONIDA, ASTA irrigation & other stakeholders. \\n\\n#nicert\\n#nicertgroup \\n#wenainitiative\\n#fmard\\n#Agriculture\\n#Export\\n#womenbusinesses\\n#Taiwan #davidhundeyin #samomatseye #Tinubu #arisetv https:\\/\\/t.co\\/S3lEOp6zY1\",\"4413\":\"Let's have your Premier League winner and the teams that will qualify for the UEFA Champions League by the end of the season.\\n\\nKindly drop your comments below \\ud83d\\ude01\\ud83d\\ude01\\n\\nLeggo \\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\ud83c\\udfc3\\u200d\\u2642\\ufe0f\\n\\n#NaijaBet #Taiwan #PremierLeague #ChelseaFC #ManCity #Spurs #ManUnited #Arsenal #Liverpool https:\\/\\/t.co\\/Vz160FKf2U\",\"4414\":\"Is Buhari aware that the two weeks he gave for strike to be resolved have passed \\ud83d\\ude44? Someone should please remind him.\\n\\n#kwankwaso #Taiwan #davidhundeyin\",\"4415\":\"Please the world does not need another war or tension or whatever#Taiwan #ChinaTaiwan\",\"4416\":\"4 bedroom terrace townhouse with BQ \\nLocation: lekki phase 1\\nPrice: 150M\\nAgency: 5.5M\\nContact: Whatsapp or call 07043373145\\n#Taiwan #Phyna #Mama #Daniella #BBNajiaS7 #SheggzFC #JackieChan #Jaruma #Kalid #RCCGConvention #RCTID #Solana #helicopter #PokemonScarletViolet #BibleBuild https:\\/\\/t.co\\/Ce01378CRB\",\"4417\":\"This is 21\\ud83c\\udf89 \\nMade in August 3rd. Happy birthday to me \\ud83e\\udd70\\ud83e\\udd73\\ud83e\\udd73\\ud83e\\udd73 \\n\\n#Taiwan #Trending #Trending #explorepage #TrendingNow https:\\/\\/t.co\\/amIdgP6uAv\",\"4418\":\"And that smile could either start or ends wars - Suhaib Rumi \\n#expression \\n#hifyqoutes\\n#lovequotes \\n\\n#BeninCityMall #BBNajiaS7 #Taiwan #Solana https:\\/\\/t.co\\/zsA7jZ4Y9U\",\"4419\":\"Does anyone know if Ukrainian embassy here in Nigeria is still working? Those who submitted their passport before Russia invaded them, have they collected their passports ? Please need to know @UKRinNGA \\n\\n#Taiwan #helicopter #BBNajiaS7 #BBN\",\"4420\":\"Khalid the gentleman \\nBut the hottest man under the duvets\\nSee as Daniella dey open mouth and enjoying herself \\ud83e\\udd23 #BNB #Taiwan #BBNajiaS7 #BBNaijaLevelUp\",\"4421\":\"As Pelocalypse depart s #Taipei Anyone who believes #PLA encircled #Taiwan drill to start @ 12:00 is an ordinary military drill is deluded. The entire encircled island with air defenses left them vulnerable for anyone to intervene \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\",\"4422\":\"PROTEST AS KIDNAPPERS KILL LAUTECH STUDENT\\n\\nhttps:\\/\\/t.co\\/Jefhbd4wr1\\n\\n#Hotjist #Hotjistnaija #Kidnappers #Protest #Lautech \\n\\n#Obituary \\n#Ronaldo \\n#Taiwan \\n#Emily \\n#BBNaijaS7\",\"4423\":\"What a better way to start up this new month\\n#Taiwan #PeterObi4President2023 \\n#PeterObiForPresident2023 #PeterObi #PeterObi2023 #PETERMJ #dril #rap \\n@Apeteofafrika https:\\/\\/t.co\\/mYK0GhyoiC\",\"4424\":\"NEWS UPDATE: IGP MEETS CPs, OTHERS OVER RISING INSECURITY IN THE COUNTRY\\n\\nhttps:\\/\\/t.co\\/V4h2C5viZS\\n\\n#hotjist #Nigeria #IGP #Insecurity \\n\\n#BBNaijaS7 \\n#Obituary \\n#Taiwan \\n#Ronldo \\n#Emily\",\"4425\":\"GafexianArts (c2021)\\nA Biro art of @samkerr1 by me.\\nHow do you rate it?\\nPls help repost till.\\n#gafexianart #gafexianzone #Taiwan #Solana #Chelsea #ChelseaFC @ChelseaFCW @AbsoluteChelsea @ChelseaFCinUSA #biro #explorepage #explore #Explorer #ExploreUganda @ChelseaWomenSG #artist https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"4426\":\"To know more about this you can read the book called - The Compound Effect by Darren Hardy\\nHave a great day ahead guys \\ud83e\\udd17\\u2665\\ufe0f\\n\\n#helicopter #Solana #Taiwan #China #ASUUstrike #samomatseye #Finance #Selfdevelopment #cnc\",\"4427\":\"**Okay Nah... CATCH ME LIVE* *For real For real\\ud83d\\udcaf* Go get your ticket money ready Because Expensive DJ NAS is gonna be on the whillz\\ud83d\\udca5\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\ud83d\\ude80\\n#Taiwan #Solana #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #PokemonScarletViolet #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BlueJays #partytime #jbankz https:\\/\\/t.co\\/qyHhxvm1w1\",\"4428\":\"Come join me \\ud83d\\ude0e #Foodie #FoodieBeauty #Taiwan https:\\/\\/t.co\\/6Sm8j0zWgv\",\"4429\":\"#Btc \\n\\n$28k projection a visible on BTC, quite early but ''is rather early than late''.\\n\\nTriggered \\u2705\\n#Crypto #NFTCommunity #Taiwan #TradeDeadline #trade #stocks #charts https:\\/\\/t.co\\/3TZ2RkalOS https:\\/\\/t.co\\/LEK6lTXB14\",\"4430\":\"In all you do, avoid being chased by a turkey on the streets of Lagos. I go explain later.\\n#Taiwan #ASUU #AriseTV\",\"4431\":\"Keeping customers in perpetual darkness is something @IBEDC_NG does to us in Saki. It's a week of darkness & no explanation whatsoever. Very poor service.\\n#ibedc #DistributingDarkness @via_iure @PowerUpNG @fccpcnigeria @NERCNG\\n#wednesdaythought #Solana #Taiwan #helicopter\",\"4432\":\"Moses Desire Kouyo writes:\\u00a0Ponderings of a King\\u00a0\\ufffc https:\\/\\/t.co\\/27lPlh1K4s\\n\\nAkufo-Addo | #Taiwan #Knust | Accra Hearts of Oak | Taiwan\",\"4433\":\"Follow him on IG.\\n\\nhttps:\\/\\/t.co\\/VEa4WP9DO0 \\n#EmmanuelUmoh #Pelosi https:\\/\\/t.co\\/XnWs6XKBaB\",\"4434\":\"Them say why I no love \\n\\nMe I have injuries in my heart #Taiwan #bpa\",\"4435\":\"[CONGRATULATIONS]\\nOnyekwere Chioma finish with a Gold medal, while Amaechi Obiageri finish with a Bronze medal in the Women's Discus event.\\n#CommonwealthGames2022 #Taiwan https:\\/\\/t.co\\/Rb6M4G9bfV\",\"4436\":\"FOLLOW OUR PAGE @nnheadlines \\nFOR MORE EXCLUSIVE REPORTS\\ud83d\\udce3\\n\\n#Solana #Taiwan #PokemonScarletViolet #BibleBuild #helicopter #BlueJays #oesym #Bbnaija\",\"4437\":\"Everyone is giving their analysis but here is what you have to look out for\\u2026.\\n\\nIf the MACD crosses on the weekly then we could witness a +$10,000 rally, \\n\\nYou heard it hear first \\n#Solana #btc #binance #Taiwan @rovercrc @MMCrypto @CrypToomas @elonmusk @StonksReddit https:\\/\\/t.co\\/2VAX1kKY7q\",\"4438\":\"History is about to be made on 1 3 0 8... It's GAMEATHON!!! Follow and join @gamicguild for more exciting gaming adventures.\\n\\n#Taiwan #gamingnationxznn #August2022 https:\\/\\/t.co\\/uMhwIVcM6q\",\"4439\":\"Congratulations @PiCoreTeam on reaching 1.5 million followers. We, the Pioneers, look forward to the future and have full confidence in @nkokkalis and the entire PCT. #Taiwan #Pionners #Pinetwork #sabinus #cryptocurrency https:\\/\\/t.co\\/E9xunsffM1\",\"4440\":\"Your best fashion plug \\n\\u25aa\\ufe0fOrder as seen in sizes \\n\\u25aa\\ufe0fto order kindly click on link in our bio\\n\\u25aa\\ufe0f call\\/WhatsApp :+2348138512629\\nDM is open 24\\/7\\n#NigerRepublic #benincitymall #BBNajiaS7 #ChinaTaiwanCrisis https:\\/\\/t.co\\/vcPnlUHPAk\",\"4441\":\"Well, it worth the stress tho.....\\n#Taiwan https:\\/\\/t.co\\/ncKzoU40Ie\",\"4442\":\"#NEWS #China #NancyPelosi #Taiwan Pelosi arrives in Taiwan, voicing U.S. \\u2018solidarity\\u2019 as China fumes https:\\/\\/t.co\\/7zorY8BGJn\",\"4443\":\"U will need this to handle me \\n#GodAbeg #Taiwan #China #Pelosi #Solana #sabinus #SpeedDatingWithSelema https:\\/\\/t.co\\/Flwl4VS17Y\",\"4444\":\"A lot can be expressed through art!!... Sadness, happiness. #art #artistontwittter #Taiwan https:\\/\\/t.co\\/5H5czNmAdA\",\"4445\":\"Am a certified #Wizkidfc \\ud83d\\udd39 for life \\ud83e\\udd85\\ud83d\\udda4... But on a second thoughts without shades this #davido verse with #spyro isn't bad!.\\n Reality check\\ud83d\\udccc\\ud83e\\udd8b\\n\\n#WizKid\\ud80c\\udcf5 #Wizkid #BBNaija #BBNajiaS7 #Cubana #JARUMA #Deji #bread #CardiB #Tinubu #Dubai #Daniella #NnamdiKanu #ASUU #Taiwan #TAG https:\\/\\/t.co\\/OBs0ZqYaLT\",\"4446\":\"@EuropaLeague don post @Cristiano \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\\n\\n#ronaldo\\n#Europa \\n#PremierLeague \\n#Taiwan https:\\/\\/t.co\\/UMTv580EMA\",\"4447\":\"Create a website and earn $50\\nFor signing up link \\ud83d\\udc47\\n\\ud83d\\udc49https:\\/\\/t.co\\/cOFgBjIkqz\\n.\\n.\\n.\\n.\\n.#Taiwan #Pelosi #China #Solana #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #sabinus #helicopter #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #oesym #SpeedDatingWithSelema #UkraineRussiaWar\",\"4448\":\"TBH I really wan blow this year and I know God hears my prayers and will lead me to my helper #grateful #Taiwan #China #sabinus #Nowaydown #BBNaija #Machala \\n#Retweet #rt abeg ps. The song is original https:\\/\\/t.co\\/VgI8iwpoFf\",\"4449\":\"The EP has dropped, its on all streaming sites.\\n\\nIF EP.\\n\\nCheck out Tipcy Jaej on #SoundCloud\\nhttps:\\/\\/t.co\\/24snMEgLsL\\n\\nAND SPREAD THE LOVE ON SOUNDCLOUD\\n\\n#NewMusic #China #Taiwan #sabinus #LoveIsland2022 https:\\/\\/t.co\\/MrqMUbG8P6\",\"4450\":\"Check her out\\n#Taiwan #Pelosi #China #BigBrother #bigbrother24 https:\\/\\/t.co\\/owN4hSgzG2\",\"4451\":\"@DayoAmusa I will donate the #20k to a course mate who needs surgery. Anyone who also wish to help can send to the account in the screenshot.#benincitymall. #Pelosi #Taiwan #SpeedDatingWithSelema https:\\/\\/t.co\\/f2CdRuT9tm\",\"4452\":\"Dey guided #Pelosi #helicopter #Ukraine https:\\/\\/t.co\\/EhISr3PULD\",\"4453\":\"Getting what you go after is called Success but enjoying it while getting it is called happiness.\\n\\n#BBNaija #Taiwan #sabinus #LoveIsland2022\",\"4454\":\"What's this? Niger Republic #Niger #Obituary #BeninCityMall #Taiwan #samomatseye https:\\/\\/t.co\\/P62lLRP3fo\",\"4455\":\"Collect money at ease on monthly basis when you list your apartments on Rentic.\\n\\nSign up on our bio link to begin today.\\n\\n#renticapartment #lagosbusiness \\n\\n#BBNaija\\u00a0\\u00a0\\u00a0\\u00a0 #BBNajia Obituary Emily Niger Republic Sam Omatseye #Pelosi Amen Tinubu Deji God Abeg Daniella china\\u2019s taiwan https:\\/\\/t.co\\/HMeHrLovHg\",\"4456\":\"In a debate between the Enugu state Gubernatorial Candidates: Frank Nweke Jr of Apga, Perter Mbah of PDP and Uche Nnaji of APC, who do you think will win?\\n\\n#Enugu2023 #PeterObi #wike #Taiwan \\n\\n@IamAwesomeJosh @ejykmykel1 @julietkego @Chude__ @flexzyltd\",\"4457\":\"Seimens mobile x-ray machines sale.\\nCall (WhatsApp) us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/EiH8c1kCf0\",\"4458\":\"CR digitizer machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/xCMNWCnUTt\",\"4459\":\"Mobile x-ray machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/g2fU0tPcr9\",\"4460\":\"CR digitizer machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/aBCGFemwUN\",\"4461\":\"Brand new iPhone 13 pro max available in all GB . \\n\\nAvailable Pick up, delivery , Swaps \\n\\n5, Somoye Osundairo street, off Ola ayeni street . Computer village ,Ikeja Lagos \\nDavido #wizkid Burnaboy Abuja-Kaduna Cubana ASUU Bella #OBIDIENTS Sheggz Money Racism #helicopter #Pelosi https:\\/\\/t.co\\/7Bz4WI63Tr\",\"4462\":\"Ultrasound machines for sale.\\nCall us at 08084755350, 08165823744. #BBNaija #sabinus #Pelosi #Taiwan https:\\/\\/t.co\\/BH4bmjuQyh\",\"4463\":\"@carterefe__ @carterefe__ I use your song do video I tag you tire for IG but you no notice me, make I try my luck for here too\\ud83e\\udd32\\ud83e\\udd32 #Carterefe #Machala #Wizkidfc #WizKid\\ud80c\\udcf5 #funnyvideos #lucasdusky #trendingvideos #sabinus #Taiwan https:\\/\\/t.co\\/a4BmMkUray\",\"4464\":\"Jae5 ft BNXN ft Dave remix #PeterObi ABEG GOD #Pelosi https:\\/\\/t.co\\/p3ARF0hJXT\",\"4465\":\"This!!\\nThe whole reverse psychology!!\\nMan's got over 35k views. The power of copywriting. \\ud83d\\udca5\\ud83d\\udca5\\nImagine the conversions he got from these!! \\n#racism #realhousewivesofabuja #ASUU #Governor #Taiwan #RCCGConvention #Ronaldo #witcher #JARUMA #geralt #Affiliates #Pelo #BeautyWithBrains https:\\/\\/t.co\\/oihYETkxg9\",\"4466\":\"BREAKING: U.S Speaker Pelosi departs Taiwan amid Chinese threats, military drills https:\\/\\/t.co\\/uagVKfdbEO\\n#Taiwan #China #Pelosi\",\"4467\":\"GET UNBEATABLE DISCOUNT on kitchen tools right now. Don't let this opportunity pass you by. \\n\\ud83d\\udc49 https:\\/\\/t.co\\/LE8VV0jLMS \\ud83d\\uded2 \\n#Big_Ivy #ASUU #Phyna_and_Amaka #Big_Bella #Taiwan #Daniella #God_Abeg #Osimhen https:\\/\\/t.co\\/9wplK02TX4\",\"4468\":\"Social media is a rented apartment for your business. Let's help you build a secured apartment for your business. Your customers deserves the best shopping experience. \\n#Taiwan \\n#Pelosi \\n#WebsiteDesign \\n#WebsiteBuilder https:\\/\\/t.co\\/GoCuemQe8s\",\"4469\":\"Contact: https:\\/\\/t.co\\/fQRKX5Dt5Q\\n#amazon #Taiwan #Pelosi #China #Solana #Amazon #amazonsales #shopifymarketing #wears #Ukraine #shopifytips #Shopify #AmazonAffiliate #affiliateprogram #Affiliates #affiliatemarketing #shopifywebsite #shopifydesign #shopifyexpert\",\"4470\":\"Good morning mommas \\ud83e\\udd17\\n\\nHuman hair unit.\\nShe's 28k\\n\\nLet your hair do they talking, show them what you got.\\nAvailable @MonalisNg\\n\\nWe deliver nation wide.\\n.\\n.#Taiwan \\n#SpeedDatingWithSelema \\n#LoveIsland2022 \\n#BBNaijaLevelUp \\n#BBNaija \\n#Slaytheprincess https:\\/\\/t.co\\/eIFdhakjaV\",\"4471\":\"These people can't just take half of what they dish out to ordinary Nigerians on daily basis...\\n\\nOsimhen Arise TV Obidient Kwakwanso Tinubu Atiku Wike Osibanjo Amaechi David Hundeyin jaruma racism #RCCGConvention #Pelosi #BBNaija #Taiwan https:\\/\\/t.co\\/RNIQwboUkK\",\"4472\":\"Abeg make una help me retweet till @Skiibii sees it,@davido @Olamide @DONJAZZY #sabinus #helicopter #Ukraine #Wizkid #TrendingTopics #Trending #micheal_jackson #Racism #Burna #Taiwan #BBNaija #BBNajiaS7 #Twitter #matic #matiasdelrio #fashion #LoveIsland2022 #music #trendingmusic https:\\/\\/t.co\\/64cx3wVqvf\",\"4473\":\"Like for @atiku \\nRetweet for @PeterObi \\nComments for @officialABAT \\n \\nWho's ur presidency.\\nAtikuokowa23 l God abeg l\\nArise TV l Burna l Ibadan \\nDubai l Ronaldo l prince Aso\\n#Wizkid #Pelosi #Taiwan https:\\/\\/t.co\\/v3DBR8PCOb\",\"4474\":\"EXCLUSIVE: #PLA Eastern Theater Command organizes actual combat joint #exercises around #Taiwan Island.\\n\\n#China #ChinaTaiwanCrisis #Pelosi \\n\\nVideo Via- CGTN https:\\/\\/t.co\\/gY9D4euHGU\",\"4475\":\"MINIONS; THE RISE OF GRU\\nIs out for downloads \\n\\n#Minions2 #Taiwan #China #knust Eric Ofori Antwi Bawumia #CitiCBS frederick asare Mr President Holy Spirit #Sunkwa22 https:\\/\\/t.co\\/vNymkx9byA\",\"4476\":\"In Rwanda, public schools are better than private schools by far. Many private schools have closed because of the quality of public schools in the country.\\n#Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #RwandaBirds \\n#helicopter #PeterObiForPresident2023 #Buhari https:\\/\\/t.co\\/o97l2VTsqf\",\"4477\":\"#sabinus\\n#helicopter\\n#Pelosi\\n\\n@Montefiore\\n@MontefioreNYC\\n\\nDr. Philip O. Ozuah Donates $1m to University of Ibadan Medical School https:\\/\\/t.co\\/4zqEsOVY8V\",\"4478\":\"FEDERAL GOVERNMENT SEEKS COLLECTIVE EFFORTS TO FIGHT INSECURITY\\u00a0\\n\\nhttps:\\/\\/t.co\\/OiH6YOif4U\\n\\n#Hotjist #Hotjistnaija #Insecurity #FederalGovernment \\n\\n#Obituary \\n#Taiwan \\n#DeJong \\n#NigerRepublic \\n#BBNaijaS7\",\"4479\":\"Patronize me #Pelosi #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #Ukraine #corset #fashion #fashionblogger #tops #Trending #bbn #fashionstyle https:\\/\\/t.co\\/5uMO3VBzLw\",\"4480\":\"Like for Home Alone \\u2764\\ufe0f\\n Or \\nRetweet for Baby Day Out \\nLet know your favorite movie \\n\\nCardi Khalid #helicopter Italy Daniella God Abeg Essence #Wizkid #Pelosi #Taiwan #BBNaija https:\\/\\/t.co\\/2LOHC6yOJF\",\"4481\":\"Finally Nancy Pelosi's plane took off from #Taip\\u00e9i Airport Safely. She was supposed to leave on Friday.\\n\\n#USA #China #Taiwan #America #Pelosi https:\\/\\/t.co\\/N7nn8Fz6vq\",\"4482\":\"You will get a Professional Brochure Design for your Business \\n#Taiwan #VinScully #Batgirl\\n#Pelosi #Merrifield\\n#padres\\n\\nhttps:\\/\\/t.co\\/bOmdvPOT5P https:\\/\\/t.co\\/X86S5nOBSN\",\"4483\":\"Please Save me frm DEPRESSION... I am dying please...My Creditors are after my life\\n\\nPlease come to my aid\\nPlease help me please I beg you with GOD\\n\\nBaba Voss, Niger Republic Obituary\\nSam Omatseye De Jong Taiwan #BBNaijaS7 Emily Emily Leno Rufai\\nGeralt China #Pelosi Tinubu\",\"4484\":\"Me Watching People Talking Abou World War 3 #Taiwan #WorldWarIII #WorldWar3 #Obituary https:\\/\\/t.co\\/IYplsoT20R\",\"4485\":\"... @OnorSandy for Governor of Cross River State, 2023. \\n@JJarigbe (Mr. Projects) for Senate, Cross River North. \\nBarr. Godwin Offiono for @HouseNGR, Ogoja\\/Yala Federal Constituency \\nPeter Akpanker for HoR OBO Federal Constituency. #Umbrella is the sure bet. \\n\\n#Taiwan #Cucurella https:\\/\\/t.co\\/RoMv1LAzEx\",\"4486\":\"Dear Cross Riverians, Make no mistake @OfficialPDPNig is the real deal for 2023. After clueless leadership of the @OfficialAPCNg and @MBuhari , 2023 avail us the opportunity to reposition things for Nigeria and Nigerians. @atiku Presidency is more promising than others\\n\\n#Pelosi https:\\/\\/t.co\\/cp64FzEmdM\",\"4487\":\"Pls patronize me o. I sell quality duvets and wall papers. The weather is cold enough you need a duvet\\n\\n#Taiwan #Phyna #BBNaija # https:\\/\\/t.co\\/nXdsbYslPa\",\"4488\":\"Countries That Recognize #Taiwan 2022\\n\\nBelize, eSwatini, Guatemala, Haiti, the Holy See (the central administration of the Roman Catholic Church), Honduras, Marshall Islands, Nauru, Palau, Paraguay, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines & Tuvalu. https:\\/\\/t.co\\/rZNuI5h5Ot\",\"4489\":\"Please Save me frm DEPRESSION... I am dying please...My Creditors are after my life\\n\\nPlease come to my aid\\nPlease help me please I beg you with GOD\\n\\nBaba Voss, Niger Republic Obituary\\nSam Omatseye De Jong Taiwan #BBNaijaS7 Emily Emily Leno Rufai\\nGeralt China #Pelosi\\nWorld\",\"4490\":\"Dear Folks, \\n\\nPoverty does not die by fire.\\n\\nBuild a BRAND and sell a PRODUCT.\\n\\nI have nice shoes for sale. \\n\\nDavid Hundeyin\\nArise tv \\nReuben Abati\\nMachala\\n#Taiwan \\n#Pelosi \\n#Solana \\n#China \\n#sabinus \\n#helicopter \\n#BlueJays \\n#Ukraine https:\\/\\/t.co\\/WrVic4OPRi\",\"4491\":\"Success \\n#SuccesQuotes #Taiwan #sabinus #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BibleBuild #NFTCommunity #NFTGiveaways #Pelosi #China #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #LoveIsland2022 #USA #Ukraine #UkraineRussiaWar https:\\/\\/t.co\\/opacZr7G7c\",\"4492\":\"Nancy Pelosi departs #Taiwan after her controversial visit to #Taiwan, she was supposed to leave on Friday.\\n\\n#USA #China #Pelosi https:\\/\\/t.co\\/1c7AflzQAb\",\"4493\":\"It's a beautiful day\\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70.\\nSlide into my DM and let's deal so that we can make something exactly like this for you. \\n\\nMan utd, DE Jong #Taiwan #China #Wizkid #nerves https:\\/\\/t.co\\/5WfsWNTfQ2\",\"4494\":\"Bless your morning\\u2764\\ufe0f.... It's a new month of blessings!!\\n#August2022 #HappyNewMonth #Davido #PeterObiForPresident2023 #China #sabinus #Taiwan https:\\/\\/t.co\\/iyrgkHSvxW\",\"4495\":\"Nigeria will send troops to defend Taiwan .\\n\\\"China's Taiwan\\\" #war\\n#Pelosi\\n#Pelosi https:\\/\\/t.co\\/wFSwJE45to\",\"4496\":\"The Cough is my forth coming unusual ep. Wait for it!\\n\\n--\\n#china #Taiwan #Pelosi #Solana #sabinus #asuu #BBNaija #TheCough #Newmusic #wizkid #davido #billboard #applemusic https:\\/\\/t.co\\/tVKiTCZMPw\",\"4497\":\"Hello I know I said I was back before\\nI'm fully back now.\\nFollow and I'd definitely follow you back.\\n#Taiwan #China #sabinus\",\"4498\":\"Samory Toure was the founder of the Wassoulou Empire, which was an Islamic state that is located in present day Guinea. Toure is best remembered for his resistance against French colonial expansion in West Africa. #WWENXT #sabinus #Ukraine #Taiwan https:\\/\\/t.co\\/6kGd3EkX1b\",\"4499\":\"Hey y\\u2019all, it\\u2019s been a while I\\u2019ve dropped my personal pictures and videos, so I decided to take a day off posting bout crypto projects \\n#China #Taiwan #Solana #sabinus #helicopter #BibleBuild https:\\/\\/t.co\\/UWvwP9LxNe\",\"4500\":\"Nancy's plane will fly in a while from now. waiting for air clearance.\\n\\n#Taiwan #NancyPelosi #Taipei #ChinaTaiwanCrisis #China #pelositaiwan https:\\/\\/t.co\\/CR7C9DFv93\",\"4501\":\"Nancy Pelosi is flying from Taiwan to #SouthKorea \\n\\n#Taiwan #China #Pelosi https:\\/\\/t.co\\/xCNhf8f5EP\",\"4502\":\"@JeffreyGuterman @PeterObi Please find attached some @PeterObi #PeterObi4President2023 materials for your use, thank you and best regards. #Taiwan #Pelosi #China #Solana #sabinus https:\\/\\/t.co\\/T9QE10b0yh\",\"4503\":\"Labour party @NgLabour is now verified on twitter. This shows that we are making progress. God Abeg\\ud83d\\ude4f.\\n#PeterObi4President2023 #PeterObiForPresident2023 #peterobi #LabourParty #davidhundeyin #plateau #helicopter #Osimhen #Tuchel #Taiwan #Pelosi #Solana #sabinus #BlueJays #GodAbeg https:\\/\\/t.co\\/1PxDqmYaXY\",\"4504\":\"Last Month's Collection...\\n\\n August discount %.. Get your portraits done at a cheaper rate. WhatsApp @09093869126 or call 08104150260 or send a mail to @egodfred31@gmail.com\\n\\n#art #color #artwork #watercolorart #painting #VisualArt #NFTCommunity #Taiwan #Pelosi #China #Solana https:\\/\\/t.co\\/ESqUhfwge8\",\"4505\":\"Taipei - US house of representatives speaker #NancyPelosi to depart from airport.\\n\\n#Taiwan #China #Pelosi #pelositaiwan https:\\/\\/t.co\\/dg9cm1VN2l\",\"4506\":\"Because the #ministerforsoupaffairs cares deeply about your health...\\nShe's providing good and quality Soup and Stew just for you!\\nOrder now 08142315364(Call\\/WhatsApp)\\n#ministerforsoupaffairs #Pelosi #Stew #eathealthy #HealthyFood #Health https:\\/\\/t.co\\/ZzXoicSwjA\",\"4507\":\"I'm alryt too.\\n\\n#Taiwan #sabinus #MentalHealthMatters https:\\/\\/t.co\\/awt1ppOpID\",\"4508\":\"Bandana cover by mozizy,Like comment and repost #LoveIsland2022 #China #Taiwan #Trending #trendingreels #Essence #sabinus #wizkid #helicopter #AllorNothing #GodAbeg #MONEY #BBNaija #Influencer #MondayMotivation #fashion #naijamusic #luxury #explorepage #NowPlaying #ChrisBrown https:\\/\\/t.co\\/NEgkLhxrKk\",\"4509\":\"Nigeria still has a market where trade is by barter system but it is about going into extinction due to neglect. Click to read and share.\\n#Taiwan #Pelosi #China #sabinus #helicopter #Ukraine # https:\\/\\/t.co\\/SLBHGR3jvE\",\"4510\":\"Funny- Chinese soldiers dance as Nancy Pelosi returns.\\n\\n#Taiwan #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan # https:\\/\\/t.co\\/5UnH7vNTLv\",\"4511\":\"Please read and share our report on how Calabar, one of Nigeria's cleanest cities has turned to a huge expanse of open defecation centre. One shame at a time. \\n#Pelosi #sabinus #helicopter #China #OBIdientlyYUSful https:\\/\\/t.co\\/pXP9ujMIMP\",\"4512\":\"3 killed in a Chinese Kindergarten #school violence\\n#Pelosi\\n#Taiwan\\nhttps:\\/\\/t.co\\/lPNFb4LFii\",\"4513\":\"Take advantage of this free class to end your money troubles.\\n\\n\\ud83d\\udc47Join class\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/UnB0AzoKHG\\n\\n#Taiwan #dejong #nigerrepublic #Obituary #Emily #Rufai https:\\/\\/t.co\\/2ZhUtWf8xb\",\"4514\":\"@AT13Oficial \\ud83d\\ude0d\\u263a\\ufe0f\\nWishing you a successful loan spell @SevillaFC_ENG \\u2705\\n#MUFC \\ud83d\\udc4a\\ud83d\\udd34\\ud83d\\udc79 #Taiwan #Pelosi #sabinus https:\\/\\/t.co\\/91z84gia5m\",\"4515\":\"*Self care tips: Be mindful of who you allow into your circle. Keep your circle small and your mind at peace. Be mindful of which people's circles you become part of also. Some wolves walk in sheep's clothing.*\\n~Weyacrypto\\n#BTC #Taiwan #Pelosi #Solana\",\"4516\":\"We all know that one friend that does this every time !!! #Pelosi https:\\/\\/t.co\\/jNjKO4A0JW\",\"4517\":\"Rufai's issue is Settled. \\nHe has apologised on live TV and was also fined by a Court in Lagos. \\n#Rufai #Taiwan #GodAbeg #arisetv #nigerrepublic \\nhttps:\\/\\/t.co\\/hQIkNcxJDz https:\\/\\/t.co\\/s8oGfNaHs6\",\"4518\":\"We face a lot just to put food \\ud83e\\udd58 on the table...... this country deserves a better leader. #BBNaija #BBNajiaS7 #Chelsea #Khalid #dejong #Deji #Taiwan #Nigeria\",\"4519\":\"#Ambazonia: It is time for our leadership to engage with diplomacy with #Somaliland in order to seek help for them to link us with #Taiwan. When this happen Taiwan will recognize Ambazonia and that will be a big diplomatic win for us. @AbdulKarimaliSC @BohHerbert @MariantaNjomia\",\"4520\":\"On set #Sweetgirl #Pelosi #Solana #Taiwan #DonBelle #DOB https:\\/\\/t.co\\/okJ4mPo0Zj\",\"4521\":\"Does fashion stinks? #EpitomeStores wants to know\\n\\n#Pelosi #helicopter #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #Ukraine #UkraineRussiaWar #kpssdeikincifetoskandali #oesym #Guerrilla1stWin #wednesdaythought #fashionstyle #Viruman #Piastri\",\"4522\":\"UNIVERSITY OF IBADAN (UI) PROMISES STUDENTS WITH MARKS BELOW 200 ADMISSION\\n\\nhttps:\\/\\/t.co\\/bOA5eXnBbt\\n\\n#Hotjist #Hotjistnaija #UniversityOfIbadan #Admission \\n\\n#Obituary \\n#SamOmatseye \\n#Taiwan \\n#BBNaijaS7 \\n#Leno\",\"4523\":\"Too early for this abeg \\ud83d\\ude02 \\n\\nIbadan #BBNajiaS7 #Rufai #Taiwan #MichaelJackson #davidhundeyin she\\u2019s 40 #Khalid https:\\/\\/t.co\\/PyNUmil5YE\",\"4524\":\"I know say life hard, but take am easy. \\n\\n#lifequotes #Taiwan #OBIdient2023 https:\\/\\/t.co\\/Cync8O1w12\",\"4525\":\"Who dey follow who??\\n#Taiwan https:\\/\\/t.co\\/Q5tlxYu3Bj\",\"4526\":\"I pray we all receive a phone \\ud83d\\udcf1 call that we change our life's for good like the way OBO change @Dremodrizzy life \\ud83e\\udd0d\\ud83e\\udd0d\\ud83e\\udd0d\\ud83e\\udd0d #Taiwan #Davido #WednesdayMotivation https:\\/\\/t.co\\/DyHldauMMV\",\"4527\":\"Niger Republic Obituary Emily Sam Omatseye Taiwan #sabinus Leno Brighton China #Pelosi Tinubu Amen #helicopter She's 40vChelsea #wonderqoute https:\\/\\/t.co\\/ovHXa0hzlB\",\"4528\":\"E reach my turn to do laundry the earth moved away from the sun \\ud83c\\udf1e\\ud83e\\udd7a. #BBNaija #Taiwan\",\"4529\":\"Taiwan's armed forces to China: \\\"We are not eager for a fight, nor will we shy away from one.\\\"\\n\\n#Taiwan #China #pelositaiwan #Pelosi #ChinaTaiwanCrisis https:\\/\\/t.co\\/FoQKyOEd9r\",\"4530\":\"Why We Dey Vote? EP2 \\nThe six important human rights you go need to consider before you vote.\\nLink for full video: https:\\/\\/t.co\\/WOaKtGkKsD\\nTrend tags (pls retweet.)\\nNiger Republic Nnamdi Kanu Sam Omatseye She's 40 Jaruma Peter Obi #Obidatti2023 #Taiwan Datti #NigeriaDecides2023 https:\\/\\/t.co\\/L1J8YWRhY5\",\"4531\":\"You don't have to be a millionaire to change a life. Even the simplest act of generosity can go a long way in bringing relief to a broken heart.\\n\\n| Sam omatseye | #China | she's a 40 | #Taiwan | Rufai | Nkem Owoh | Modella | #BBNaijaS7 | #Sabinus | khalid\",\"4532\":\"New footage of Chinese Military #drilling in the Taiwan Strait.\\n\\n#Taiwan #China #Pelosi #pelositaiwan https:\\/\\/t.co\\/xABIkq4zud\",\"4533\":\"Send us a DM today to get started.\\ud83d\\udc4d\\ud83c\\udffe\\n#Pelosi #Khalid \\n#audacity #wednesday #memes #bananaisland #realestate #property #landsinlagos #landsinibadan #lekki #epe #audaciaprimerealty\",\"4534\":\"Order for your customized CONVENTION t shirts today and get it delivered to your door step in 2days.\\n#Taiwan #BibleBuild #sabinus #Wizkid #Obidatti2023 #naughy #Essence #omatseye #Tinubu https:\\/\\/t.co\\/1jI8BGtAOK\",\"4535\":\"America politicians have zero integrity and ethics. The world must be careful how they want to deal with the country. What they said and do are two different things. They cannot not be TRUSTED!\\n#OneChina \\n#OneChinaPolicy \\n#OneChinaPrinciple \\n#Taiwan\",\"4536\":\"Chinese state media reporting visuals of how #China may destabilizing the region with military actions due to visit of US house speaker #Pelosi to #Taiwan as part of normal democratic engagement between 2 countries. https:\\/\\/t.co\\/uWbWNr9sVl\",\"4537\":\"I made this post in march 2022 and it's beginning to become even clearer from here! Pray people pray\\n#Taiwan #Pelosi #Ukraine #bread #Jungkook https:\\/\\/t.co\\/5FPEyppr3w\",\"4538\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/GBrgjulvEy\",\"4539\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/D2mWMiFPdB\",\"4540\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/pDyetVMxPe\",\"4541\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/Db8KAoBCa0\",\"4542\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/cJKMI6dV2E\",\"4543\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/nELAMJq4aT\",\"4544\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/7spSTcsOvF\",\"4545\":\"#bread God Abeg Phyna and Amaka Khalid #BBNajiaS7 Niger Rep Jaruma Hermes Datti #sabinus She's 40 Yorubas rice Sam Omatseye Italy Burna Obituary Taiwan china Saheed balogun Amen #Pelosi Naira Rufai https:\\/\\/t.co\\/1Wd4CxaVCP\",\"4546\":\"It helps you relax your mind and soul and reduces your chance of falling ill.\\n\\n\\ud83e\\udd17Today, make a date to visit the spa not as a luxury, but as a necessity for your body.\\n\\n#nectarbeauty #Taiwan #Pelosi #Solana #Jungkook #BlueJays #BibleBuild #LoveIsland2022\",\"4547\":\"Let\\u2019s get it \\ud83d\\udcf8\\ud83d\\udcf8 Active always \\n\\n#Pelosi #BBNaija7 #LoveIsland2022 #Beyonce #julydump #BBNaija https:\\/\\/t.co\\/MElRLNOy44\",\"4548\":\"Fellow Nigerians, let's SEET for @atiku as President come 2023.\\nSEET means:\\nS - Security\\nE - Education\\nE- Economy\\nT - True Federalism.\\nAs one we can get it done.\\n\\n@OfficialPDPNig @IAOkowa @Ecowas4atiku23\\n#Pelosi \\n#BBNaijaS7 \\n#BBNaija \\n#Chelsea \\n#AtikuOkowa2023 \\n#Tinubu https:\\/\\/t.co\\/tj6Iz3obts\",\"4549\":\"@OjaDaddy7 ft @Se_unofficial official video for the tune TOXIC is out,Tell a friend to tell a Friend,Video banging hot \\ud83e\\udd75 click on link to watch https:\\/\\/t.co\\/S7kMwohQM4\\n\\n#ToxicByOjaDaddy #Pelosi #helicopter #LoveIsland2022 https:\\/\\/t.co\\/7y4Kb7qmrv\",\"4550\":\"Let me source that mineral for you.\\n@MineralSorcerer is your go-to person.\\nLepidolite site. Available in commercial quantities with analysis report.\\n#Pelosi #UkraineRussiaWar #ChinaTaiwan #AbujaTwitterCommunity #abujaRTBOT #Chelsea #ASUU https:\\/\\/t.co\\/tP7gEqnV9g\",\"4551\":\"The greatest asset is the Mind. #writerscommunity #Pelosi #helicopter #iamwriting\",\"4552\":\"Long distance relationships works as long as the four of u are happy \\n\\ud83e\\udd23 #Niger #oesym #famemma15 #Pelosi #relationships\",\"4553\":\"God's grace is IMMEASURABLE, his mercy is INEXHASUSTIBLE, his peace is INEXPRESSIBLE. Every praise be to our God of all comfort.\\nGood morning \\ud83d\\ude0d\\n\\n#Pelosi \\n#PeterObi2023 \\n#wcw\\n#asuu \\n#Ukraine \\n#chiomaonyekwere \\n#GoldMedal https:\\/\\/t.co\\/PWYGApAmQx\",\"4554\":\"Foreign used \\nFord Explorer 2013 Sport\\nAccident free \\nUntouched \\nPrice: 8.5m\\nOpen for conversation \\n#Taiwan #Pelosi #wike #MONEY #Ukraine https:\\/\\/t.co\\/DnbCkbojsl\",\"4555\":\"You could earn extra income when you list your vacant space on our platform.\\nCreate an account for free today on https:\\/\\/t.co\\/OTHPfDhA0A\\n\\n#BBNaija\\u00a0\\u00a0\\u00a0\\u00a0 #BBNajia She's 40 Khalid Obituary Emily Niger Republic Sam Omatseye Tinubu #Pelosi Amen Saheed Balogun Tinubu https:\\/\\/t.co\\/2zQh46RCfU\",\"4556\":\"AVATAR (the last airbender) #Machala #Pelosi https:\\/\\/t.co\\/A5RIiMeVU0\",\"4557\":\"You needa service? We find it for you at no cost with just a DM. Easy and convenient #helicopter #WWIII #ASUUStrikeUpdate https:\\/\\/t.co\\/gWlbMkTYBc\",\"4558\":\"China\\u2019s drills violates our sovereignty, amounts to air and sea blockade \\u2013 Taiwan\\u2019s defence ministry https:\\/\\/t.co\\/J8wIhsxckV\\n#Taiwan #China #Pelosi\",\"4559\":\"\\u201cSometimes the questions are complicated and the answers are simple.\\u201d \\n\\nNaughty || Niger Republic || Khalid || #Pelosi\",\"4560\":\"Remember the strength of every bond is in the little things we do to show how much we care. \\n\\nOrder here https:\\/\\/t.co\\/yFlgAbP7Ot\\n\\n#EndSarsNow \\n#surprise \\n#cakes \\n#RedVelvet \\n#Pelosi \\n#PeterObiForPresident2023 https:\\/\\/t.co\\/yQCdyCX3NF\",\"4561\":\"Political apathy is never a character found in those who want a better society\\nI hope we all get to use our PVC to vote for a competent candidate\\nArise Oh Compatriots!\\n#2023Elections #NigeriaDecides2023 #Pelosi https:\\/\\/t.co\\/2cCusH98nf\",\"4562\":\"Good morning world\\n\\n\\\"You are to Good to be left behind\\\"\\n\\n#Pelosi #helicopter #BlueJays #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #LoveIsland2022 #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"4563\":\"We render Shortlet services in Lagos Nigeria \\nClass : Luxury\\n\\u2705 Available for shoot\\n\\u2705 Smart TV \\ud83d\\udcfa \\n\\u270524\\/7 Electricity \\ud83c\\udf09\\n\\u2705 Top Notch Security \\ud83d\\udc6e\\u200d\\u2640\\ufe0f \\n\\u2705DSTV \\ud83d\\udce1\\n\\u2705WiFi \\ud83d\\udcf6\\nCall\\/Watshapp:-+2348137623065\\n\\n#sabinus #Bread #Hermes #obituaries #Ramsdale #China #Pelosi #helicopter #Messi\\ud80c\\udcf5 https:\\/\\/t.co\\/vrGvaoP6W1\",\"4564\":\"Reno how market? So after foolishly trying to use Bbn to distract us you ended up being distracted. Mind you this movement is more than a tsunami and not can stop it!! #Datti #saraki Saraki Jaruma Niger Republic #sabinus #BBNaija #Pelosi https:\\/\\/t.co\\/05qgfyGbKI\",\"4565\":\"Joint LIMOSIRIS today for cheap and affordable prices.. #Khalid #Taiwan #Nigerrepublic #Ebubeagu #sabinus #NNPC #Jubril #welcometochelsea #shes40 #Jaruma #Daniella #obituaries #2Naira #EmmanuelUmoh #BeautyWithBrains #Asaba #Shameless #Wizkid #caterefe #Machala https:\\/\\/t.co\\/kwr5SYLOaz\",\"4566\":\"Amazing Art really story\\n\\n He Designed his girlfriend because he is love her so much as museum chair have u ever seen like this.\\n#2Naira #Buhari #Racism #Nigerrepublic #Jaruma #datti #sabinus #ChinaTaiwan https:\\/\\/t.co\\/B1ILEk1MbJ\",\"4567\":\"Small data that I asked for ooh\\ud83d\\ude02\\ud83d\\ude02\\n@Yhudiee8 won\\u2019t just let lines go\\ud83d\\ude02\\ud83d\\ude2d\\n\\n#Pelosi #BlueJays #LoveIsland2022 #oesym https:\\/\\/t.co\\/cnV6ldQ2ua\",\"4568\":\"Make the most out of your stay\\ud83e\\udd42\\n\\nPlease, call 0909 002 4813 or visit our website to see the different packages we have for you. The link is in our bio.\\n\\n#classsuites #hotelsandapartmentsinlagos #apartmentsinlagos #LoveIsland2022 #hotelsinnigeria #accomodationinlagos #Pelosi https:\\/\\/t.co\\/pOOwEAlBEc\",\"4569\":\"#Flashback Wednesday:\\nSome of us learn to walk in those good old days in this manner. If you experienced this retweet or like!\\n\\nJaruma \\u2022 Bread \\u2022 Real Housewives of Abuja \\u2022 Phyna and Amaka \\u2022 She\\u2019s 40 \\u2022 Khalid #Pelosi #BBNaija #BBNajiaS7 https:\\/\\/t.co\\/EUng3m4l60\",\"4570\":\"This is how I sleep now\\ud83d\\ude44\\ud83d\\ude44\\nMake one girl no con burn me for house\\ud83e\\udd23\\ud83d\\udc94\\n\\n#sabinus \\n#Badminton \\n#Pelosi https:\\/\\/t.co\\/pCuQbu6Ysx\",\"4571\":\"We can not afford to continue like this ooooo. \\n\\nVote wisely. Vote to retire APC PDP old men and women. \\n\\nVOTE PETER OBI FOR PRESIDENT\\n\\n#Pelosi #helicopter # https:\\/\\/t.co\\/R1s7OnW7dm\",\"4572\":\"Book a ride with us @Limosiris1\\u2026also become a driver and get so many mouth watering benefits #BBNajiaS7 #Pelosi #China #Tielemans #Fulani #ASUU #Roma #shes40 #wordwarIII #Naughty #Cubana #racism #OKOWA #welcometochelsea #Emerson #Bokoharam #Taiwanchina #Taiwan #BBNajia https:\\/\\/t.co\\/svknsySMh6\",\"4573\":\"Under the influence of my own #Amapiano #Pelosi #WonderWoman https:\\/\\/t.co\\/xRALFAqC3I\",\"4574\":\"@burnaboy goodmorning...let me bring this image to your screen again #shortfilm #found #festivals #award #taiwan #portable #china #khalid #asuu #WorldWarIII #shes40 #sudan #brighton #sabinus #wizkid #machala #carterefe #davido #tinubu #obituary #datti #BurnaBoy #Modella #BBNaija #Amaka https:\\/\\/t.co\\/DWwoN9Sc4V\",\"4575\":\"After months and months of countdown. \\nIt all comes down to this.\\n\\nMaximum Joy Foundation golf tournament and official launching\\n \\n1 DAY MORE, AKA DA BAAKO \\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa \\n\\nBok Nam Kim golf course are you ready\\n\\n#China #Pelosi #Reparations #Taiwan #Heartsofoak https:\\/\\/t.co\\/dzITwqWjp7\",\"4576\":\"Hello guys, good morning, I am an OAP, voice actor, music producer and copywriter. Kindly retweet this, you could help me pay my bills this week. Here\\u2019s one of my recent jobs. I make original music for all my jobs to avoid copyright issues. #Pelosi #voiceactor #voiceover https:\\/\\/t.co\\/bN4xCQw4No\",\"4577\":\"You ve not tasted this wine , you are really missing a lot.\\nSomerset Wine from cape town.\\nBehold our brand Ambassador Igwe 2pac.\\nWe have lady (blush) somerset champagne and Lord (red wine) somerset .\\nFor Inquiries call :08143989513\\n\\n#BBNajia ASUU #Pelosi #thiefnubu https:\\/\\/t.co\\/7FooxwIVkO\",\"4578\":\"Breaking: A Lagos based journalist was caught sexually molesting a goat. Details shortly....\\nSam Omatseye\\n#Pelosi\\n#Taiwan\\n# https:\\/\\/t.co\\/1VYFNTg3hP\",\"4579\":\"Is Taiwan a part of China? A short history of Taiwan https:\\/\\/t.co\\/D5JkwYXMuh\\n#Taiwan #China #Pelosi\",\"4580\":\"NEW TYPE BEAT \\n\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #BadDecisionsTrailer1 #BlueJays #helicopter #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BadmintonMalaysia #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #MONEY #UkraineRussiaWar #kpssdeikincifetoskandali #Wizkid #SABCNews #sabinus https:\\/\\/t.co\\/bINlXjK7kw\",\"4581\":\"For a better NIGERIA you and me dream of.\\n\\n#Yorubas #samomatseye #Taiwan\\n#sabinus #Datti #Obidatti2023 https:\\/\\/t.co\\/dPgOSI5xlD\",\"4582\":\"The damage @MBuhari has caused to Nigeria will take a century to recover from. Borrowed money to dash Afghanistan, built rail track for Niger and now sponsoring their govt. Who we offend?\\nNiger republic Saraki #Pelosi #Taiwan\",\"4583\":\"thought I was in the beach chilling, until I woke up\\ud83d\\ude33\\n\\n#BlueJays #Taiwan #goodmorning #wednesdaythought #MONEY #UkraineRussiaWar #BadmintonMalaysia https:\\/\\/t.co\\/00jFWrl2SL\",\"4584\":\"Aughhhhh\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\nThis verse hits Different on a bottle of Henny \\ud83e\\udd43 listen to full song here https:\\/\\/t.co\\/XxPcFL25r1\\n\\n#wednesdaythought #WednesdayMotivation \\n#BadDecisionsTrailer1 #China #Taiwan #NewMusic #MONEY #BlueJays #Ukraine #Pelosi #hiphopculture #Nigerianmusic https:\\/\\/t.co\\/GCVr1rxFO5\",\"4585\":\"Nigeria Is At a Cross Road And The Choice That Lay Before Us Is To Either Continue On a Path That Brought Us To This Fruitless Point \\n\\u00b0\\n\\u00b0\\n#Taiwan #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #CORxFLA #Pelosi #China #kpssdeikincifetoskandali #\\u062d\\u0645\\u062f\\u0627\\u0644\\u0644\\u0647 #MAIDinMALACANANG https:\\/\\/t.co\\/QYu1R1lLjy\",\"4586\":\"Residential design: 4 units of 2 bedroom ensuite apartments.\\n\\nLocation: Ogun State, Nigeria.\\n\\nConsultant: Gbenga Adene and Associates \\n\\n#architecture #construction #Taiwan \\n\\nKindly retweet \\ud83d\\ude4f https:\\/\\/t.co\\/iBJGDUp0bv\",\"4587\":\"FOR SALE\\u203c\\ufe0f\\u203c\\ufe0f\\u203c\\ufe0f\\n\\nSpacious 5 Bedroom Fully Detached Duplex\\n\\nLOCATION: \\ud83d\\udccdOrchid, Lekki\\n\\nPRICE\\ud83d\\udccc: 125million\\n\\nFOR MORE ENQUIRIES\\/INSPECTION\\nKINDLY \\u260e\\ufe0f SAID OR DM : +2348147079900\\n\\ud83d\\udce7: info@tariqproperties.com.ng\\n#Taiwan #China #BadDecisionsTrailer1 #helicopter https:\\/\\/t.co\\/BXH2s1EcF2\",\"4588\":\"Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration!\\n#BigThingsComingThrough #Pelosi #august #AugustWish\",\"4589\":\"\\ud83c\\udfdf Riga FC vs Gil Vicente\\n\\u23f0 18:00\\n#UECLQualification\\n\\nSkonto stadions will host tonight\\u2019s Conference League qualifier between Riga @ 3.36 and Gil Vicente @ 2.10.\\n\\n\\ud83d\\udcf6 Double Chance \\u2705 1.30\\n\\nGet involved here \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #BoostedOdds #HighestOdds #Taiwan https:\\/\\/t.co\\/te9gZGngXO\",\"4590\":\"Pastor Paul Eneche declared full support for Labour Party presidential candidate Peter Obi #BlueJays\\n#China Watch #Pelosi subscribe #MONEY\\n\\nhttps:\\/\\/t.co\\/5xpaEHg8ce\",\"4591\":\"Don't look for a virgin as a wife, Get a woman with good manners. Virginity ends in one night but good manners last forever. #Taiwan #Niger Republic #Emily\",\"4592\":\"We build beautiful and sustainable structures. \\n#structures #build #Pelosi #lagos #nigeria #lekki #construction #build #projects https:\\/\\/t.co\\/pCr4hW9X7X\",\"4593\":\"I just say make I motivate person today\\nY'all Good morning \\n#Taiwan #Pelosi #kpssdeikincifetoskandali #BBNajia https:\\/\\/t.co\\/EK0Gc5UCOx\",\"4594\":\"Nigeria is when the system favour you, its right, but when it doesn't, its totally the worst govt.#government #Taiwan #BadDecisionsTrailer1 #EndSARS #NigeriaDecides2023 #vote #BBNaija\",\"4595\":\"\\ud83c\\uddea\\ud83c\\uddfa Bodo\\/Glimt vs FK Zalgiris\\n\\u23f0 17:00\\n#UCLQualifiers \\n\\nBodo\\/Glimt\\u00a0and\\u00a0FK Zalgiris\\u00a0continue their pursuit of a place in the\\u00a0Champions League\\u00a0group stage tonight.\\n\\n\\ud83d\\udcf6 Away Team To Score (Yes) \\u2705 1.84\\n\\nBoosted Odds \\u27a1 https:\\/\\/t.co\\/Z95eP0I0hw\\n\\n#NaijaBet #MONEY #Taiwan #HighestOdds https:\\/\\/t.co\\/026mVX7MRE\",\"4596\":\"What a smart move @BEEJAYSPECIAL_C @Sabinus1_ @mrmacaronii @yabaleftonline #2naira #shes40 #sabinus Niger Republic #Osuofia #Pelosi #CloserWithDonBelle #ASUU https:\\/\\/t.co\\/PtDVpyIb3c\",\"4597\":\"I cannot categorically understand how #US neocons warmongers can protect #Taiwan from #China imminent invasion. They crossed the redline intentionally now must face the consequences \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\",\"4598\":\"YOUR PROBLEM IS NOT THE PROBLEM, YOUR REACTION IS THE PROBLEM #Pelosi #China #MONEY #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/ApThT4W86Q\",\"4599\":\"I'm working so hard these days on projects that may not work out \\ud83d\\ude2d life hard...\\n#Live #Taiwan\",\"4600\":\"Music and Art are therapeutic, hence I merged the idea and created an #NFT piece. I will be very happy to have a kind person collect this art\\ud83e\\udd70.\\n\\n#Pelosi #NFTcollections #NFTCommmunity\\n#nftcollector\\nhttps:\\/\\/t.co\\/0L9xVWRVfW via @opensea https:\\/\\/t.co\\/uFYpJZTqZn\",\"4601\":\"Olamide's record label, YBNL, is the best in Africa.\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #MONEY #BBNaija https:\\/\\/t.co\\/p19mVRa2AF\",\"4602\":\"\\\"I don't know if I can marry again... I like my space. Before I had to tone down my craze small... I don't think I'm gonna ever marry again in my life.\\\" - Korra Obidi.\\nNigerian dancer Korra Obidi says she might never marry again after her failed marriage. #Taiwan #Pelosi #BBNajia https:\\/\\/t.co\\/3NV2jjlWqk\",\"4603\":\"Israel DMW and 'My Oga' chilling in Accra Ghana!\\n\\nDavido always taking his people along\\ud83e\\udd70\\n\\n\\ud83d\\udcf8: @isrealdmw \\n#Taiwan #Pelosi #China #CloserWithDonBelle #BBNaija https:\\/\\/t.co\\/HcavykGv4z\",\"4604\":\"\\\"Price of daily bread don rise.\\\" - Timaya\\n\\nPapichulo shares a major concern affecting Nigerians!\\n\\nHow una dey cope?\\n\\n\\ud83d\\udcf8: @timayatimaya \\n#Taiwan #Pelosi #China #helicopter #BBNaija https:\\/\\/t.co\\/nIr7rFMsXP\",\"4605\":\"Mr Ibu's wife starts a search for her father! \\n\\nHer mother is late, she's never met her father and would love to meet him someday.\\n\\nThe role of fathers in our lives can't be overemphasized.\\n\\nMay God grant her heart desires\\ud83d\\ude4f\\n#Taiwan #Pelosi #China #MONEY https:\\/\\/t.co\\/BtUY195DPp\",\"4606\":\"SUMMER TIME \\u23f0 \\n\\nAt the beach, life is different. Time doesn\\u2019t move hour to hour but mood to moment. #Taiwan #Pelosi #China #helicopter #HelicopterCrash #BBNaija #BBNaija7 #LALISA #adventure https:\\/\\/t.co\\/Mc7MtdXw7X\",\"4607\":\"My people here we come. 2023 no be play #Taiwan #China #EndAsuuStrikeNow #Buhari #GoodGovernance https:\\/\\/t.co\\/0TNrKS9IkU\",\"4608\":\"Cum\\ud83d\\udca6in her when she's on Top,& she won't get pregnant\\n\\nWhy:\\u201cGravity\\u201dBro\\ud83d\\ude39\\n\\n#FalzKneeDown #Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #CloserWithDonBelle #MONEY #Ukraine #sabinus\",\"4609\":\"Nigeria must be better with Peter obi #OBIDIENT #Taiwan #CloserWithDonBelle #PeterObiForPresident2023 https:\\/\\/t.co\\/XpJ4IMt8Ke\",\"4610\":\"Body mechanics animation test. #Taiwan #China #anime #animation #lookdev #3d #3Danimation #autodesk https:\\/\\/t.co\\/w9hnwCxg17\",\"4611\":\"This is terrible and to say we have a national assembly that allows anything is even worse.\\nNigeria Republic #Taiwan #NancyPelosi #JusticeForAlikaOgorchukwu #ChelseaFC #PeterObiForPresident2023 #Obidatti2023 https:\\/\\/t.co\\/a0j6A1nMAQ\",\"4612\":\"God has done it again,I woke up strong and Healthy \\nGod did\\n@djkhaled #GODDID #Taiwan #China @PastorEAAdeboye @endsarsbot_ #EndSARS p\",\"4613\":\"Which Kind BIG BROTHER Be This One?\\n\\n#Pelosi \\n#BBNaija https:\\/\\/t.co\\/yPLk1iZ8xb\",\"4614\":\"Putting A Smile On Strangers Face Part 2 \\u2764\\ufe0f\\ud83d\\udcaa.\\n\\n#Popular\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #CloserWithDonBelle #helicopter #MONEY #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #Ukraine #kpssdeikincifetoskandali #NancyPelosi #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #mbstorm #sabinus https:\\/\\/t.co\\/PX6DaVUJWp\",\"4615\":\"Today morning near the industrial area in Tainan, #Taiwan, a large number of helicopters seen flying over the city.\\n\\n#China #Pelosi #pelositaiwan https:\\/\\/t.co\\/wVaAVdwSYq\",\"4616\":\"Preeq \\ud83c\\udf46Wake Up Wake Up\\n\\nCollect Your Kpekus Collect Your Kpekus\\n\\nUna Good Morning\\u2764\\ufe0f\\u263a\\ufe0f \\n\\n#sabinus #Jaruma #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #Pelosi #LALISA #CloserWithDonBelle #helicopter #MONEY #Ukraine #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #mbstorm #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"4617\":\"@Neatioking @neat_io Now is the time to buy $neat before the price skyrocket. Grab the opportunity now #NEAT #cryptocurrency #Pelosi\",\"4618\":\"@TECNOMobileNG How do you plan making legit extra money in Nigeria?! You can be a volunteer fundraiser with Humanaidng by signing up at https:\\/\\/t.co\\/TZulVTSfrW. #MONEY #parttimejob #womenempowerment #Pelosi #LALISA #CloserWithDonBelle #Ukraine #mbstorm https:\\/\\/t.co\\/qIoG1x8dre\",\"4619\":\"GYB Model Science Sch Adankolo delivered. GYB Model Science Sch Ogaminana to follow, then GYB Model Science Sch Isanlu and Anyigba for the 1ST phase. @OfficialGYBKogi #Taiwan #Obituary #samomatseye #China @OvieNews #speedDatingwithSelema #Pelosi #Education #UNICE https:\\/\\/t.co\\/48GopfIQ7l\",\"4620\":\"Reports - \\n\\nPRC coastline in #Fujian lit up with anti-aircraft fire as the #PLA carries out #drills in the proximity of #Taiwan\\n\\n#China #Pelosi #pelositaiwan https:\\/\\/t.co\\/Qb10wIRB3M\",\"4621\":\"Help spread the gospel, nothing is too great or small. #gospel #WordPress #stevey #asia #Taiwan\\n#China\\n#Ukraine\\n@nathanielblow \\nhttps:\\/\\/t.co\\/idG7fjpya1 https:\\/\\/t.co\\/Hu0fPeWVzN\",\"4622\":\"Thank you for your anonymous donations to support Blockchain Central\\n \\n#Coinbase\\n#trustwalletpizza #nsfwtwt #Pelosi #Taiwan #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #BadmintonMalaysia #JacksonWang #NancyPelosi #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #cryptomarket #NFTs #blockchain\",\"4623\":\"China has released footage of drills and training to mark 95 years of its military, the People's Liberation Army.\\n\\n#China #Taiwan #pelositaiwan #Pelosi #ChinaTaiwanConflict https:\\/\\/t.co\\/mUSyx7YyU8\",\"4624\":\"Good morning \\u2763\\ufe0f\\u2763\\ufe0f\\n#China #Pelosi #Asake #goodmorning https:\\/\\/t.co\\/uCudsKYuHQ\",\"4625\":\"How to handle co-leading singing session in live Performances or in the studio\\n-Timing & interpretation\\n-Find duet points\\n-Do call &response in Addlibs\\n-Do complimenting range output\\n-lead when the other follow, vice versa\\n#Taiwan #Pelosi #China #MONEY #Ukraine #wednesdaythought https:\\/\\/t.co\\/KCCNsnv0Bv\",\"4626\":\"There's never a perfect time to get things done. Just do it. Start now!\\n\\n#WednesdayMotivation\\n#China #Pelosi #Taiwan #snackstime #peanutburger #greatpeanuts https:\\/\\/t.co\\/h8OpDyPKzx\",\"4627\":\"Thousands of human beings will be created by the Chinese Government. \\nThey were not conceived by copulation. They will have flesh & blood; they can talk and reason.\\n\\nThey will be sent to #Taiwan as a soldiers! #taiwanwars\\n\\nThis will happen \\ud83d\\udccc\",\"4628\":\"China is the reason why several countries are now under grave economic crisis, whereas USA is also the reason why several countries now stand ravaged by radical ethnic and religious conflicts\\nWhy can't they both directly fight a war on ground instead of their proxy wars?\\n #WWIII\",\"4629\":\"Coconut head generation\\n#Taiwan #Pelosi #China #welcometochelsea #jaruma https:\\/\\/t.co\\/EDUnzkz6ar\",\"4630\":\"If Chinese President #XiJingping can visit the Pakistan-occupied Kashmir, that legally belongs to India, with the PM of Pakistan, why can't US Speaker #NancyPelosi visit #Taiwan which doesn't even legally belong to #China \\n#WWIII\",\"4631\":\"R.I.P. OBITUARY. Sam Omatseye a mumu at 61 is a mumulism forever- Wike. Brown envelope journalist part of Nigeria problems we shall eradicate them all #PeterObiForPresident2023 #BBNaija #Rufai #China #Taiwan #Nigeria https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"4632\":\"@DJ_TUNEZ @wandecoal Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4633\":\"@Badboytimz Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4634\":\"@Halcy1023 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4635\":\"@dennisblessed42 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4636\":\"@zeenatmikail2 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4637\":\"Meanwhile in #Taiwan \\n\\n#Taipei #Pelosi #China https:\\/\\/t.co\\/qKQVzBdYm4\",\"4638\":\"@KAFTAN_TV Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4639\":\"@ShehuSani Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4640\":\"@RealMrumaDrive Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4641\":\"@HenshawKate Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4642\":\"@Sabinus1_ Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4643\":\"@ManUtd Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4644\":\"@bbchausa Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4645\":\"@DerekJGrossman Am calling it contextual democracy #US #Pelosi\",\"4646\":\"\\\"Family is everything\\\". Well, not in all cases. It is only Jesus Christ that is everything in all cases or situations. So, I prefer Jesus Christ to be everything to me than family because he is consistent in all his ways.\\n#HelicopterCrash #Taiwan #Pelosi #BadmintonMalaysia\",\"4647\":\"@Arsenal Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4648\":\"Life \\ud83c\\udf3b #TrendingNow #model #Taiwan #viral #fyp #grateful #extraordinary #agency #modelingagency #amirate #arabemirate #airhostess #airlines #obident #love https:\\/\\/t.co\\/mroIj14ie6\",\"4649\":\"Ekaro ooo, eyin ara Twitter. \\n\\nRep your own.\\n\\nProudly #OndoEkitiboy \\ud83e\\udd70\\u2764\\ud83e\\udd70\\n\\n#Taiwan #Nigeria #Wizkidfc #African #ibile #Depay #DJKhaled #Taiwan #China #Pelosi #LALISA #WWERaw https:\\/\\/t.co\\/gb3t8xLJMa\",\"4650\":\"@dawisu @MBuhari Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"4651\":\"@DrOlusesan Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"4652\":\"@IAmENISA Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"4653\":\"@UmmyAbdullahi Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"4654\":\"@DavidHundeyin @WestAfricaWeek @MBuhari Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"4655\":\"Some girls Cry \\ud83e\\udd9a\\nSome girls Ride \\ud83d\\ude0e\\n\\n#NancyPelosi \\n#Pelosi \\n#WWERaw \\n#BurnaBoy\",\"4656\":\"@capitalcom Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"4657\":\"@vanguardngrnews Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZEd7\",\"4658\":\"@UBAGroup Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/y5GWRqZ6nz\",\"4659\":\"Lady Gets The Attention Of Netizens; Which Kind Of Exercise Is This? (VIDEO) \\ud83d\\ude33\\ud83d\\ude33\\ud83d\\ude33\\n\\n#Taiwan #Pelosi #China #LALISA #WWERaw #NancyPelosi\\n https:\\/\\/t.co\\/3ZqX1zkCc4\",\"4660\":\"AFFILIATE MARKETING is an advertising model in which a\\ncompany compensates third-party publishers to generate\\ntraffic or leads to their business.\\nBENEFITS\\n\\u25cf Easy Tracking\\n\\u25cf Grow Brand Awareness\\n\\u25cf Low cost to start up\\n\\u25cf Increase Traffic flow\\n#taiwan #AffiliateMarketing https:\\/\\/t.co\\/K71xuM0B4K\",\"4661\":\"Nancy #Pelosi waves at reporters from a legislature in #Taiwan.\\n\\n#NancyPelosi #Taipei #ChinaTaiwanCrisis #China #pelositaiwan https:\\/\\/t.co\\/bbtfnREtHs\",\"4662\":\"SUMMER TIME \\u23f0 \\n\\nAt the beach, life is different. Time doesn\\u2019t move hour to hour but mood to moment. Let\\u2019s live by the currents, plan by the tides and follow the sun``` \\ud83e\\udd29 #Taiwan #Pelosi #China #helicopter #HelicopterCrash #BBNaija #BBNaija7 #LALISA https:\\/\\/t.co\\/QP8Bzs3UKv\",\"4663\":\"Nawedeyhere \\ud83c\\udf79\\ud83c\\udf79\\nAugust Special\\nHappy birthday mate \\n@caleb_nwanneka \\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\n#ochicanadocares \\n\\nCourtesy @Birthdaysng @TwitterSupport \\n\\n#HelicopterCrash #Pelosi #Taiwan https:\\/\\/t.co\\/YkNNVYgUND\",\"4664\":\"Taiwan said the military has increased its alertness level and authorities will make plans to ensure safety and stability around the island, after #China announced a series of military exercises in response to U.S. House Speaker Nancy #Pelosi's arrival in #Taipei. #Taiwan https:\\/\\/t.co\\/t4WEyvpAVd\",\"4665\":\"Yo \\nMorris Hills here \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n.\\n.\\n.\\n.\\n#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #LALISA #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #helicopter #TUINUANE #BadmintonMalaysia #WWERaw #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #NancyPelosi #HelicopterCrash #kpssdeikincifetoskandali #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/nKjT1dfk9O\",\"4666\":\"https:\\/\\/t.co\\/zpHYmKO1iM\\nDaily Powered Word Devotional Podcast: Wednesday 3rd August, 2022.\\n#SpeedDatingWithSelema #Obituary #Taiwan #SamOmatseye #BBNajia #BBNaija #BBNajiaS7 #Pelosi #Bernd #Rufai #HappyNewMonth #Cucurella #SaheedBalogun #helicopter #Tinubu\",\"4667\":\"The all-in-one platform for companies selling to local businesses. Find products to sell, market with ease, and fulfil under your brand. With Vendasta, you can deliver an amazing experience for your customers and truly make a difference. \\ud83d\\udc47\\ud83d\\udc47 #Taiwan \\n\\nhttps:\\/\\/t.co\\/VAPowqw2M6\",\"4668\":\"China, we are with you\\\"- #Russia \\n\\nDonetsk decided to support the People's Republic of China today.\\n\\n#China #Pelosi #pelositaiwan #Taiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/3ZlCFgyKk7\",\"4669\":\"US House Speaker Nancy #Pelosi and #Taiwan President Tsai Ing-wen: August 3.\\n\\n #PelosiinTaiwan #China #ChinaTaiwanCrisis https:\\/\\/t.co\\/oddZSMJqci\",\"4670\":\"It is reported by netizens that Tanks units are being moved by trucks from Fuzhou Depot of People's Liberation Army located in the city, which is in Central #Fujian, Southeastern #China.\\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #pelositaiwan #Taiwan https:\\/\\/t.co\\/lFax7HJS5c\",\"4671\":\"Moment when the President of Taiwan awards him the \\\"Order of Auspicious Clouds with Great Special Cordon\\\", for playing a key role in promoting relations between Taiwan and the US #Taiwan #Pelosi #China #NancyPelosi https:\\/\\/t.co\\/yh8YBUNbtJ\",\"4672\":\"Taiwan: US House Speaker Nancy Pelosi meets President of Taiwan Tsai Ing-wen in Taipei.\\n\\n#Taiwan #China #Pelosi #pelositaiwan #ChinaTaiwanCrisis https:\\/\\/t.co\\/P3V7zJX26c\",\"4673\":\"Young John _DADA cover by me Morris Hills link\\ud83d\\udc47\\nhttps:\\/\\/t.co\\/9NItNsYwPM\\n.\\n.\\n.\\n.\\n.#Taiwan #Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #LALISA #NancyPelosi #IndiaWithLaalSinghChaddha #BibleBuild #mbstorm #mbstorm #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #BoycottRakshaBandhanMovie https:\\/\\/t.co\\/PPFuzmH34P\",\"4674\":\"Up & grateful.\\n\\n#Taiwan\",\"4675\":\"#Pelosi visit to #Taipei: US warships cruise near #Taiwan; #China 2 hold live fire exercises off Taiwan coast\\n\\nThe exercises will include joint air & sea drills missiles test-launches in north, southwest, northeast of Taiwan, long range live firing in ,https:\\/\\/t.co\\/TVZdxlyg5T https:\\/\\/t.co\\/WOAC3Y4qkx\",\"4676\":\"#Taiwan and #China when are you fighting am bored @SpeakerPelosi DM me when you're free\",\"4677\":\"MY BIGGEST FEARS IS GETTING HURT BY SOMEONE I ALREADY EXPLAINED MY PAIN TO \\ud83d\\ude2a\\ud83d\\udeb6\\n#Taiwan #helicopter #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #BadmintonMalaysia #JacksonWang #IndiaWithLaalSinghChaddha #BoycottBollywood #Badminton #pains #toxic #life #harsh https:\\/\\/t.co\\/h4c38mQP8m\",\"4678\":\"Happy new month guys \\ud83d\\udca5\\u2764\\ufe0f\\ud83e\\udd8b\\nI wish you all the best in Life, in good health and wealth \\u2764\\ufe0f\\n#Pelosi #Tuinuane #Mnakwethu #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #BlueJays #JacksonWang #MorningLive #goodmorning #sweet #beautiful #beautifulgirls #sweetlove #love https:\\/\\/t.co\\/AFriQxiHsH\",\"4679\":\"What in the bbnaija worldis going on?#BBNaija #Pelosi #pharmsavi #christyo #beauty https:\\/\\/t.co\\/TwxxzFGRHo\",\"4680\":\"Guess the artist \\n#Pelosi #Machala https:\\/\\/t.co\\/OBdiJp9HTM\",\"4681\":\"Thanks to IKD for showing me love . Till we meet again @BlueNunWines #she\\u2019s40\\n#Taiwan #Davido #Pelosi #ikorodu https:\\/\\/t.co\\/ajYFtXFLD2\",\"4682\":\"#pelosi in Taiwan... what are these ill old magus making out of these Generation\",\"4683\":\"Never give in to autocrats......UNLESS IT'S ISRAEL! Pelosi defends Taiwan visit amid China tensions: \\u2018Never give in to autocrats\\u2019 https:\\/\\/t.co\\/rqaX0Oh1Et #PelosiVisit #BoycottIsrael #Taiwanchina #ApartheidIsrael #Taiwan #provacateurs #doublestandards\",\"4684\":\"STILL ON INTRO\\nI don't know how to start saying plenty just being attentive makes it easier.\\nPc: @EmemEdema1 \\n\\nTinubu StopsellingPi #WWIII Don't Look Up #BBNaija https:\\/\\/t.co\\/PKifp64k9P\",\"4685\":\"LOYAL OUT IN 2 DAYS\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25#Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #giddyfia https:\\/\\/t.co\\/xbluBJ1Bzl\",\"4686\":\"Just bring this to the table ,leave the rest for me #Taiwan #tuesdayvibe #Mnakwethu #BBNaija https:\\/\\/t.co\\/YVk6rRhGYx\",\"4687\":\"Rate & retweet my freestyle cover on @adekunleGOLD #FIVESTAR pls help me retweet and tag @adekunleGOLD till he sees this\\ud83d\\ude4f\\ud83c\\udffb\\n#Trending #bernd #taiwan #BBNajia #NigeriaDecides2023 #SheggzFC #BBNajiaS7 #PeterObiForPresident2023 @SympLySimi @DONJAZZY @mreazi @Olamide #ASUU #bbillkin https:\\/\\/t.co\\/Iv9ZvgYBiO\",\"4688\":\"Feminist say something \\ud83d\\ude06\\ud83d\\ude06\\ud83d\\ude06#WWIII https:\\/\\/t.co\\/AV7wAnvbfr\",\"4689\":\"\\\"War is young men dying and old men talking.\\\" - TROY, otherwise why would 80 years old #NancyPelosi and 79 years old President Biden drag the whole world into another war in the Asia-Pacific, undermined Russian now undermining #China. #ChinaTaiwanCrisis\",\"4690\":\"Sponsor a child to school this season...there are orphans, fatherless and many less opportune children in our midst that needs go to school.... \\n\\nAbuja-Kaduna China World War III Chioma Onyekwere #sabinus Tinubu Nancy Pelosi Cash Cubana #Lekki #Taiwan https:\\/\\/t.co\\/HZJCflsta5\",\"4691\":\"How to end your journalism: Write nonsense about @peterobi for @OfficialAPCNg or @OfficialPDPNig\\n#Obituary #samomatseye #Bernd #Pelosi\",\"4692\":\"Build your websites with all the tools you need integrated in one funnel and make the world a better place\\nhttps:\\/\\/t.co\\/k6pXz4KtCA\\n#groovefreedomday #freedomdayevent #freedomday\\n #WWIII #WorldWar3 #WWIILIVE #Taiwan #Pelosi #China #WWIII\",\"4693\":\"GafexianArt\\nWarrior stare\\nMuse: @rihanna\\nPencil on paper\\nHow do you rate it?.\\nPls help share\\n#gafexianzone #gafexianart #Rihanna #Taiwan #Pelosi #China #helicopter #tuesdayvibe #explorepage #explore #ExploreUganda #NationalGirlfriendDay #artists #ArtOfTheDay #ArtistOnTwitter #art https:\\/\\/t.co\\/mI2CAEvgD3\",\"4694\":\"Before you kill your Husband because of Side chick,\\nYou have to know that Side chick will not be a Widow..\\ud83e\\udd37\\u200d\\u2642\\ufe0f #loveright #loveyourhusband #love #China #helicopter #tuesdayvibe #BoycottBollywood #BORNPINK #Taiwan #Pelosi #IndiaWithLaalSinghChaddha #\",\"4695\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 6splus\\n\\u26a0\\ufe0fCapacity: 64GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:68K\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n\\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry She\\u2019s 40 china World War III https:\\/\\/t.co\\/k8OQNbybAR\",\"4696\":\"After party meals for your events...\\nWe are definitely your \\ud83d\\udd0c \\n\\n#Pelosi \\n#Taiwan \\n#BBNajiaS7 #BBNaija7 #BBNaijaSeason7 https:\\/\\/t.co\\/4xz5V4RVAT\",\"4697\":\"3. but in the very heart of Agbaragwu village in Osaa Ukwu community.\\n\\n#AbiaState\\n##Nigeria\\n#AlexOtti\\n#DrAlexOtti\\n#LabourParty\\n#ObiNgwa\\n#Taiwan \\n#PeterObi\\n#PeterObi4President2023 \\n#PeterObi2023 https:\\/\\/t.co\\/ZkJhDKtoXy\",\"4698\":\"DOLLAR \\ud83d\\udcb5 GOT LOTS OF QUESTIONS TO ANSWER NOW #Web3 #BBNajiaS7 #sabinus #Wednesday #MidweekMadness #MONEY #Twitter #ElonMusk #Taiwan #China #BoycottBollywood #Trending #NEW #NewJeans #Dollar #BibleBuild #bitcoins #ElectionTwitter #Tinubu https:\\/\\/t.co\\/c4hYMDSAaq\",\"4699\":\"Freestyle \\ud83d\\udcaa\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\n#morrishills #morrishillsentertainment \\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #tuesdayvibe #BORNPINK #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8 https:\\/\\/t.co\\/G5tXbMi8JI\",\"4700\":\"Is this true ???\\n\\n#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #tuesdayvibe #BORNPINK #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/e54sgy8pxo\",\"4701\":\"Say no to drug abuse \\ud83d\\udeab\\ud83d\\ude32\\n#BORNPINK #drugabuse #China #Pelosi #helicopter #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #chatsekscerita #IStandWithSithelo #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #IndiaWithLaalSinghChaddha #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a #tuesdayvibe https:\\/\\/t.co\\/qtcJ27cTDc\",\"4702\":\"Why is #WWIII trending?\\ud83e\\udd2f\\nAbeg oo God I never marry \\ud83d\\ude2d\",\"4703\":\"J-20 stealth fighter jets join #PLA drills surrounding Taiwan.\\n\\nChinese media: the command of the People's Liberation Army of #China in the east of the country begins an operation (exercises) around the island of #Taiwan.\\n#ChinaTaiwan https:\\/\\/t.co\\/evluzp5XOj\",\"4704\":\"Why my shakara no go too much \\nCheck me nah fine boy i be \\ud83e\\udd17\\u2764\\u2764\\u2764\\n.\\n.\\n.#Pelosi #China #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #helicopter #chatsekscerita #IStandWithSithelo https:\\/\\/t.co\\/2QbWRdDCYQ\",\"4705\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #Warner #Piastri #Corbyn #Monaco #TheBachelorette #Taiwan #support #Webradio #Cannes #France #Listen #Listennow #Followus #Donate #TrumpTreason #\\u0130stanbul #fanart #Biden #west https:\\/\\/t.co\\/cz3d3iBHCW\",\"4706\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 12pro Max\\n\\u26a0\\ufe0fCapacity: 128GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:493k\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n\\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry She\\u2019s 40 World War III https:\\/\\/t.co\\/Y6uBqjHALV\",\"4707\":\"SHE WAS NICE TRENDING \\ud83d\\ude0e\\nHit link to view on YouTube\\n\\nhttps:\\/\\/t.co\\/0nAHvzGYAu\\n\\n#Tinubu\\n#China\\n#Pelosi\\n#\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\\n#Wizkid\\n#Taiwan\",\"4708\":\"If you want to achieve your fundraising goal message me now through this link https:\\/\\/t.co\\/ojVDaqT6Ck #Alpine #Donation #helicopter #helpinghand #Help #TailorMade #Tommy #Cina #Taiwan #Pelosi #boss #McLaren #Alonso #Verdi #ayr\\u0131lmazikili #BetterCallSaul #China #crowdfunding #OOTT https:\\/\\/t.co\\/FhfDGunyTi\",\"4709\":\"Please help retweet \\ud83d\\ude47\\ud83c\\udffd\\n\\n\\u26a0\\ufe0fIPhone 11pro\\n\\u26a0\\ufe0fCapacity: 256GB\\n\\u26a0\\ufe0fCondition: fairly used \\n\\u26a0\\ufe0fPrice:293k\\n\\n\\u26a0\\ufe0fLocation: Minna, Nigeria\\n\\u26a0\\ufe0fDelivery: Nationwide \\n\\u26a0\\ufe0fCall \\u260e\\ufe0f or What\\u2019s App 08037798175 For Business \\n#Taiwan #Pelosi #BBNaija Bernd obituary #BambamSorry World War III modella ilebaye https:\\/\\/t.co\\/uDd8WrJ4ea\",\"4710\":\"One of the abductees of the Kaduna train attack, Dr Mustapha Umar Imam who was among the victims released today describes the harrowing conditions at terrorists camp.\\n\\nHe says he was the official doctor in the at camp.\\n\\n#Pelosi\\/#Taiwan\\/#China\\/Obituary\\/#BBNajiaS7\\/#Obidatti023 https:\\/\\/t.co\\/RtVmnAvt1C\",\"4711\":\"GO THE EXTRA MILE (The secret to rising above your contemporaries).\\n\\nThe Chinese | World War III | Over 1.5 | China | Sam Omatseye | ASUU | Chioma Onyekwere | Reno | Canelo | Bobo Chicago | Mr. Peter Obi | Thiefnubu | omo agege | #Cubana | #Beijing | #WWIII https:\\/\\/t.co\\/PBdTHFPCJc\",\"4712\":\"The second best thing to happen to me this year is stumbling on @basket_mouth #PapaBenji series.....damnnn.....I laugh \\ud83d\\ude05 my sorrows away with each episode, give it a try guys you'll love it. \\n#PapaBenji \\n#WWIII\",\"4713\":\"Nancy Pelosi arrives Taiwan #Pelosi #Taiwan #Xi Jinping #WWIII let\\u2019s see how the thing goes https:\\/\\/t.co\\/ShfbN1sSL9\",\"4714\":\"AVengers run it up\\nFollow this account \\n#Pelosi #China #helicopter #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/DjXznjVYU3\",\"4715\":\"We go still cash out these show even during the World War \\n#Pelosi #China #JacksonWang #WorldWarIII #WorldWar3 #Carterefe #Wizkid #AtikuOkowa2023 https:\\/\\/t.co\\/lJPjiWEKfZ\",\"4716\":\"Pls help beg Daniel Regha not to go & share those controversial opinions on this China & USA diplomat showdown over Pelosi's Taiwan visit. Let's focus on dealing with bandits & Boko Haram. Let's not bear the wrath of two world powers. #WorldWarIII #ChinaTaiwan #ChinaTaiwanCrisis\",\"4717\":\"#sheggzandbella \\n#Taiwan \\n#saheedbalogun\\n#phyna\\n#doyin\\n#BB24 \\n#BBNajia \\n#BBN \\n#BBNaijaSeason7 \\n#BBNaijaLevelUp \\n#modella\\nBBNajia S7: Trouble Looms For Love Shippers As Biggie Assigns Task(Video) | https:\\/\\/t.co\\/VtjshNhCgN https:\\/\\/t.co\\/4qOh0Bcriz\",\"4718\":\"@Quicktake And all this for her husband\\u2019s stock deal. We\\u2019ll see what the fallout is\\u2026 #Taiwan #Pelosi\",\"4719\":\"#Taiwan #Pelosi #Xi Jinping #BBNaija #World War III https:\\/\\/t.co\\/Y0fdqSTitx\",\"4720\":\"USA \\ud83c\\uddfa\\ud83c\\uddf8 trying to so hard to keep Russia and China busy \\ud83e\\udd23 .\\n\\n#WWIII World War III China https:\\/\\/t.co\\/4o2OIyw7oL\",\"4721\":\"Both sex Caucasian puppies for sale. \\n6wks first shot \\ud83d\\udc89 taken\\nPrice180k\\nCall\\/watapp 08064781867\\nWaybill (nationwide)@EkeneUzochukwu1 @AkunneChinyere4 @AmakaVirginia1 @PalmykennelJos @richmoh600 #Taiwan #bangalorerains #China https:\\/\\/t.co\\/d3aa5a3f0V\",\"4722\":\"After God fear woman I use God beg u \\ud83d\\ude4f\\n\\n#Taiwan #BBNaijaS7 #BBNajia #World War III #doggy\",\"4723\":\"VIDEO: Pastor Visits Native Doctor In His Shrine For A Charm For Her Church\\n\\n#China #Pelosi #ASUUstrike #USA\\nRead more \\u300bhttps:\\/\\/t.co\\/PtryLuVyTO\",\"4724\":\"Wow! Thank God I saw this video\\ud83e\\udd76\\ud83e\\udd76\\ud83e\\udd76\\n\\nASUU Davido #Modella #Taiwan Sheggz and Bella https:\\/\\/t.co\\/bmG4W5Hwwy\",\"4725\":\"Thank God Kwankaso was stubborn not to accept the VP ticket under Peter Obi, this is how we would have missed out on Datti Yusuf Ahmed. God we thank u o. #Taiwan #Lekki #China #Obidatti023 #PeterObi4President2023 https:\\/\\/t.co\\/zaYOx6IOCb\",\"4726\":\"Unconfirmed reporter are coming from #China -\\n#PLA start military exercise in #Xiamen, Fujian, China. \\n\\n.\\n\\n #PelosiinTaiwan #China #ChinaTaiwanCrisis #ChinaTaiwan #USA https:\\/\\/t.co\\/F075q1h4GA\",\"4727\":\"I\\u2019m sure they will sell weapons to Taiwan too \\ud83d\\ude14\\n\\n#Taiwan #Pelosi World War III\",\"4728\":\"@CNN @selinawangtv #China: no way #Pelossi land in #Taiwan\\n#USA: we ban #Aliexpress\\nChina: OK.\",\"4729\":\"#China: no way #Pelossi land in #Taiwan\\n#USA: we ban #Aliexpress\\nChina: OK.\",\"4730\":\"Call me rum but please add PELOSI to my nick name .. craziest mind set I have ever seen in my life #pelosi #china #biden #usa\",\"4731\":\"The #Chinese Army\\u2019s Eastern Theatre Command announced joint military action surrounding #Taiwan, starting TONIGHT:\\n\\n1. Joint maritime-aerial drills at northern, SW and SE parts of TW\\n\\n2. Long-range firing on Taiwan Strait\\n\\n3. Conventional missile firing in waters east of Taiwan https:\\/\\/t.co\\/UT5Uy5HRvJ\",\"4732\":\"Law of the Lantern is rise n lift others! Only u can\\u2019t do the convoy my brr\\ud83d\\ude43\\ud83e\\udd32 #China #Taiwan #HappyNewMonth #ASSU\",\"4733\":\"Let\\u2019s make it louder, \\u270a\\u270a\\u270a2023 must be a start of something good. #Pelosi #China #Taiwan #OBIDIENTS #helicopter #HelicopterCrash #JacksonWang #Obidatti023 https:\\/\\/t.co\\/NFhyoMAUlk\",\"4734\":\"@QUEENOFDBLUES1 This is your answer. Is this not a death threat? \\n\\nOkowa Rescue Nigeria Akure Datti Obidients ASUU Omo Agege Obituary Mr. Peter Obi Sporty Bet Obidiots Piggyvest Burna Boy China sabinus Over 1.5 ASUU Ibadan #Pelosi #AtikuOkowa2023 #Lekki Asaba https:\\/\\/t.co\\/4VG90Qm9JZ\",\"4735\":\"Announcement \\ud83d\\udea8\\ud83d\\udea8\\ud83d\\udea8\\n\\nVery excited to announce my next single...\\n\\nMore details soon just watch this space \\n\\n#brend #Taiwan #Pelosi #helicopter https:\\/\\/t.co\\/YMztRiBL5u\",\"4736\":\"War or not.\\nNigerians are ready \\ud83d\\ude02..\\n\\n#WWIII #China #Pelosi https:\\/\\/t.co\\/y3iBe7Z5xR\",\"4737\":\"Job Vacancy For Lab Scientists \\/ Midwives \\/ Registered Nurses\\n\\nQualification: Certificate \\/ Diploma \\/ Degree\\n\\nBenefits \\n* Free Accommodation\\n* Attractive salary package \\n\\nApply Here\\u2935\\ufe0f\\nhttps:\\/\\/t.co\\/uwy7TfitIh\\n#Pelosi Fabrizio Umtiti Men\\u2019s 100 Over 1.5 World War III \\n #KNUST\",\"4738\":\"Poet are sad.\\n#AudacyAOTS #SalarioRosaVePorMas #CommonwealthGames2022 #taiwan #worldwar #GuinnessAugustMeeting #ifb #WritingCommunity #sad #ToyinAbrahamkiddies #BBNajiaS7 #BeautyWithBrains #tuesdayvibe #twitterpoet https:\\/\\/t.co\\/acD1l2dqBM\",\"4739\":\"@Cristiano meet your youngest fan and mentee. He is 2 years old. \\n#WorldAthleticsChamps #WorldWarIII #China #PeterObi #Taiwan https:\\/\\/t.co\\/WKf1KfCP3I\",\"4740\":\"World war III\\nSabinus\\nOver 1.5\\n#Taiwan \\n\\nhttps:\\/\\/t.co\\/z6pouwofQl\",\"4741\":\"Crazy things are happening\\ud83c\\udf0d\\n\\n#sheggzandbella #China #WWIII #Wizkid #shes40 #Machala https:\\/\\/t.co\\/g8U8HCWEfs\",\"4742\":\"Serving you some Yellloooowwww\\ud83d\\udc9b\\ud83d\\udc9b\\ud83d\\udc9b \\n\\n#Taiwan #helicopter #Lekki #over1.5 #asuu #abujakaduna #ibadan #ibadanphotographer #arikeimagery #arikephotography https:\\/\\/t.co\\/xLLxCmylHy\",\"4743\":\"#BBNaija #Taiwan please who takes Fluoxetine, and what are the dos and don'ts attached to it.. Dm please\",\"4744\":\"#ikorodu #StopSellingPi #AkwaIbomTwitter #BORNPINK #China #Pelosi \\n\\nI will meet you at the Lounge, I will come with 2 friends. https:\\/\\/t.co\\/tXMNBZl0y9\",\"4745\":\"Are you playing what type of play is this \\n#MEMES #code #Taiwan #joblife #technology https:\\/\\/t.co\\/sto3iBuaWX\",\"4746\":\"When I'm try to shoot on a girl @ConvergenceFin \\n\\n Check out their telegram channel https:\\/\\/t.co\\/5NHIvfXkRL\\n\\n#kpssdeikincifetoskandali #fcklive #Taiwan #China #chatsekscerita #helicopter #Pelosi #ShowtimeAugust2Natin https:\\/\\/t.co\\/2z0WSFjajx\",\"4747\":\"@iamhmmad1 How Simpsons foretells the fall of #BAT consumed in the burning furnace..#BAT2023 \\nPeter Obi all the way..\\n#Worldwar #PeterObiForPresident2023 #Taiwan #Pelosi https:\\/\\/t.co\\/XYDehFbf1r\",\"4748\":\"@iamhmmad1 If US are recruiting Army for free am enlisting myself...\\nPeter obi #Pelosi #Taiwan #Obituary .. https:\\/\\/t.co\\/WaXLSMGJWu\",\"4749\":\"@thecableng Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/GW42HxaUGK\",\"4750\":\"The audacity \\nWe Dey 2022 oo \\n\\n#China #Taiwan #MUFC #Lagos https:\\/\\/t.co\\/sivn4BF0Lt\",\"4751\":\"@AishaYesufu Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"4752\":\"Hi!add up for your cakes\\ud83d\\ude01name it!foodtray,pastries,finger foods....I\\u2019m here for you\\ud83d\\ude48\\u2764\\ufe0f\\ud83d\\udcaf Hit me up and tell me what you need \\u263a\\ufe0fhttps:\\/\\/t.co\\/FN0kSz1WoA\\n#Taiwan #China #Pelosi #helicopter #BBNaijaLevelUp #BBNaijaSeason7 #BORNPINK #Dollar #SheggzFC #abeokuta https:\\/\\/t.co\\/b3nGbPJ6WI\",\"4753\":\"The former super eagles player Christian Obodo just confirmed he is Obidient. #PeterObi #PeterObi2023 #PeterObiForPresident2023 #Reno #Pelosi #Tinubu2023 https:\\/\\/t.co\\/mcz8JzpAuh\",\"4754\":\"@KamalaHarris Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"4755\":\"will sing praises unto thy name.\\u201d & HolySpirit for preserving me,my biological mother & her biological children,my biological father\\u2019s children,our destined children & spouses In Jesus name,Amen! #Pelosi #WATCHTOEARN #WWERaw #Web3 #reMARKable24years #ElonMusk #helicopter #China\",\"4756\":\"@thecableng Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"4757\":\"Mood\\ud83d\\ude02\\ud83d\\udd25\\nNew skit tomorrow \\ud83d\\udc40\\u270a\\n#Taiwan #China #AVFC #trending #helicopter #FolloMe #hongbesh https:\\/\\/t.co\\/HQwbISDLcM\",\"4758\":\"His Grace all we wanted #Taiwan #Machala https:\\/\\/t.co\\/tcuRoXXAF3\",\"4759\":\"@carterefe__ Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvN6PV\",\"4760\":\"@lawrencekitema Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4761\":\"All your men's shirt available in store\\n#tuesdayvibe #Pelosi #China #Taiwan #Obidatti023 #TakeBackNaija https:\\/\\/t.co\\/hLI1uuGvKv\",\"4762\":\"@delick_manzi @sammiemanini1 @bamwinejnr @MrrChapter @LilyNampa @CanaanArinda @ArthurMuhwezi12 Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4763\":\"For those asking, #thenextfour is coming! Ibadan get ready.\\n\\n#China #Pelosi #NancyPelosi https:\\/\\/t.co\\/3fvdTVhxz3\",\"4764\":\"@instablog9ja Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4765\":\"Main chick: I'm sorry I can't make it, it's raining \\nSide chick: \\ud83d\\udc47\\ud83d\\udc47\\nSide chicks are one of the most reliable individuals.\\n\\nChina\\nObidiots\\nOver 1.5\\nCubana\\nWorld War III\\nObituary\\nSimeon Ekpa\\n#Davido \\n#EndSARS \\n#StopSellingPi \\n#Taiwan \\n#Pelosi \\n#China \\n#helicopter https:\\/\\/t.co\\/StLsLPAdY2\",\"4766\":\"Oyo State TESCOM Led By Akinade Alamu Defrauds NYSC Members Withholds State Allowance for 4 Months\\n\\nhttps:\\/\\/t.co\\/RjAIU2Hqlb\\n\\nModella China Obituary #Pelosi #Obidiots @oyostategovt\",\"4767\":\"@gyaigyyimii Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvN6PV\",\"4768\":\"@SpeakerPelosi Why don't you visit #Taiwan yourself.... like how @RealDonaldTrump visited #NorthKorea #NuclearWar\",\"4769\":\"Viewers Are Advised \\ud83d\\udd1e\\ud83d\\ude02\\n\\nThat situation when his tall, handsome and mighty but got a \\ud83e\\udd55 instead of \\ud83e\\udd52\\ud83d\\ude29\\n\\n#China #BBNaija\\n#Cubana #helicopter #BellaOkagbue #Trending #Tinubu #PeterObiForPresident2023 #fun #bread #Ilebaye #China #Taiwan #ASUU #cruise #Wizkidfc #Wizkid https:\\/\\/t.co\\/g210vExw4h\",\"4770\":\"BREAKING: Naira Appreciate N665 To A Dollar At Black Market\\u00a0#Naira #Pelosi #Taiwan #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #China https:\\/\\/t.co\\/O6bpvTJjJ6\",\"4771\":\"@ShehuSani Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/GW42HxaUGK\",\"4772\":\"Wow I just want to say thank you to my 1m follow \\ud83c\\udf89\\u2764\\ufe0f\\ud83d\\ude4c\\ud83c\\udffe #Machala #Taiwan #Obidatti2023 #Wizkidfc #30BG https:\\/\\/t.co\\/5QOb1BIQY2\",\"4773\":\"\\ud835\\udc7a\\ud835\\udc82\\ud835\\udc8f\\ud835\\udc84\\ud835\\udc95\\ud835\\udc96\\ud835\\udc82\\ud835\\udc93\\ud835\\udc9a \\n\\ud83d\\udccdcalabar \\n\\n\\ud83d\\udcf8 \\u00a9Macdavis Ken \\nShot on @Xiaomi @XiaomiNigeria \\nNote10s \\n\\nI won't stop exploring with my lens .\\n\\n#XiaomiImagery #macdavisken \\n#China #helicopter #Pelosi #JacksonWang https:\\/\\/t.co\\/sfUGAQ8nua\",\"4774\":\"There is a riot against the government in South Africa.\\n\\nRoads were blocked, fires and cars burned in Tembisa because of exorbitant electricity rates and the rising cost of living. Several demonstrators were killed by police.\\n#SouthAfrica #Taiwan #Pelosi #China #GistLoverStory https:\\/\\/t.co\\/LG5PfsgYol\",\"4775\":\"Hi everyone follow @3KMOfficial to stay updated about the project \\nYou're entitled to enjoy fun games and earn amazing prizes \\ud83d\\ude09\\n\\nThat's fun right?\\n#3km\\n#PlayToEarn #NFTGiveaway #blockchain #cryptocurrency #Taiwan #helicopter #WIN https:\\/\\/t.co\\/wNxSYmMpWT\",\"4776\":\"Newest addition to the oxford dictionary.\\n\\nDefinition of an OLD FOOL!!! \\nTinubu Wike atiku Junkjournalism\\n#obituary\\n#PeterObiForPresident2023\\n#OBIdient2023 \\n#Pelosi https:\\/\\/t.co\\/G4k25DjFCh\",\"4777\":\"Near the Grand Hyatt Hotel, where Pelosi was staying, a group of people disgruntled by her visit gathered. The sign read, \\\"Warmonger Nancy Pelosi: We Don't Need You, We Need Peace.\\n#Pelosi #NancyPelosi #China #helicopter #taiwanischina #Taipei https:\\/\\/t.co\\/SiynnzbSTC\",\"4778\":\"Cop this sneaks with just 5500naira only\\nSize 39 \\nAvailable &New\\n\\nDM,Comment to order\\nWhat you see is what you get!\\nNo scam zone\\u274c\\n#Pelosi \\n#China \\n#Worldwar111 https:\\/\\/t.co\\/OCxbv6UNJE\",\"4779\":\"Please can anyone help with a free iPhone app I can use in editing PDF documents, Text inclusive. My laptop crashed\\ud83d\\ude2d please guys help me retweet this if you can see this on your timeline\\ud83d\\ude4f \\n\\n#China #Pelosi #WorldWarIII over 1.5 #NancyPelosi #MrPeterObi\",\"4780\":\"Freestyle for my FAMZ !!\\n#NancyPelosi #Pelosi #Freestyle #RAP #newtrend https:\\/\\/t.co\\/I0oRy79J6S\",\"4781\":\"The situation at Taipei airport as we speak.\\n\\nJournalists and locals with placards are waiting for the speaker of the U.S. House of Representatives, and Pelosi is also waiting outside the Grand Hyatt Taipei, where she plans to stay.\\n#Pelosi #China #taiwanischina #NancyPelosi https:\\/\\/t.co\\/DMOVY73bxJ\",\"4782\":\"Trump Says Pelosi \\u2018Always Causing Trouble\\u2019 Amid Her Controversial Visit to #Taiwan \\n\\n\\u201cWhy is Crazy #NancyPelosi in Taiwan? Always causing trouble. Nothing she does turn out well.\\n#China #ChinaTaiwanCrisis https:\\/\\/t.co\\/LK9Tgqbfpo\",\"4783\":\"The video is believed to be from the port city of Xiamen in Fujian Province, closest to Taiwan. #China #taiwanischina #TaiwanIsaCountry #Pelosi #NancyPelosi #helicopter #Trending #TrendingNow https:\\/\\/t.co\\/3keenBlNEu\",\"4784\":\"Nobody fine pass me \\n#Pelosi #China #NancyPelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/09SipiAiwx\",\"4785\":\"Hello Twitter \\ud83e\\udd17\\n\\nI drew H.E @PeterObi using charcoal pencils under 25 hours.\\n\\nPlease support me with RETWEETS.\\ud83d\\ude4f\\ud83e\\udd7a\\n\\nMr. Peter Obi #OBIdient2023 Obituary Davido #wizkid China Over 1.5 Burnaboy Abuja-Kaduna Cubana Rema ASUU Bella #OBIDIENTS Sheggz Money Racism #helicopter #Pelosi https:\\/\\/t.co\\/pX0MuTq0lp\",\"4786\":\"Activists from pro-Iranian Shiite organizations went to downtown Baghdad to demonstrate in defense of law and order. Police used water cannons against them. \\n\\n#Iran #Baghdad #Gistlover #Pelosi #China #NancyPelosi #Trending #TrendingNow https:\\/\\/t.co\\/4GXSetMpTG\",\"4787\":\"This man is 5 years older than \\ud83e\\udd87\\n\\nEde beru Olorun\\n\\nSe won sepe awon \\\"atoku ma rorun fun yin ni\\\"?\\n\\n#BBNaija #helicopter #NancyPelosi #Taiwan https:\\/\\/t.co\\/tESlr2Og8O\",\"4788\":\"This seems to be the latest trendy song, I also vibes to it \\ud83e\\udd0f\\n\\nSaheed Balogun Rufai #Taiwan #BBNajiaS7 #BBNaijaSeason7 https:\\/\\/t.co\\/JY1Tr0L5rC\",\"4789\":\"@intelfin_global platform shows a greater opportunities to all traders to earn even in a bear market.\\n@intelfin_global #airdropalert #BSCGems #Crypto #Giveaway #NFTGiveaway #NFTAirdrop #NFTCommumity #NFTfamily #NFTProject #Metaverse #GameFi #P2E\\n #BSC #Pelosi #Web3 #Crypto. https:\\/\\/t.co\\/9viU1HDss1\",\"4790\":\"Our client needs a female business developer who has a reasonable experience in e-commerce and sales.\\n\\n- Must be very fluent\\n- Must look very presentable and smart\\n- Must be highly proactive and ready to take decision\\n\\nSalary: 150k\\nLocation: Lagos\\n\\nBenefit: Pension, HMO\\n\\n#Pelosi\",\"4791\":\"Sam Omatseye a tribal bigot has been convicted to life in penury in abyss.\\n\\n#Taiwan #China #BBNaija #PeterObiForPresident2023 # https:\\/\\/t.co\\/j6e1GbRdG3\",\"4792\":\"People of plateau\\n2023 gubernatorial race \\nIt's time\\n#Pelosi #NancyPelosi \\n@nentawe1 iss our choice https:\\/\\/t.co\\/szWcNq2iac\",\"4793\":\"Wordsss\\nRead thru and choose accordingly \\n#BeautyWithBrains #Bbnaija #Pelosi #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 https:\\/\\/t.co\\/Sjbw8y0IwH\",\"4794\":\"#Taiwan\\nDoes Taiwan province belongs to China ???\",\"4795\":\"Is education truly the bedrock of knowledge?\\nJust thinking about the way some peoples act and talk.\\n#helicopter #BBNaijaLevelUp #SuperTuna_Jin #Pelosi #NancyPelosi\",\"4796\":\"Emotional Damage\\ud83d\\ude02\\n#China #Pelosi #helicopter #BBNaija https:\\/\\/t.co\\/vrjqi5d14o\",\"4797\":\"\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\ud83d\\udd25\\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f\\ud83d\\udd25 \\nNew stock \\u26a0\\ufe0f\\u26a0\\ufe0f\\u26a0\\ufe0f #anime #Nigeria #manga #new #Pelosi #naija https:\\/\\/t.co\\/FEUIKswiB5\",\"4798\":\"Can we test something\\ud83d\\ude09\\ud83d\\ude09\\n\\nWho's having your vote?\\n\\nOkowa\\n\\nShettima\\n\\nAhmed Baba\\n\\n????\\n\\nLet see who wins\\n\\n#Pelosi \\n#NancyPelosi \\n#PeterObiForPresident2023 \\n#Obidatti023 \\n#Obidatti2023 \\n#OBIdientlyYUSful \\n#BBNaija\\n\\n@PeterObi https:\\/\\/t.co\\/dR7enXaCX9\",\"4799\":\"No one among the other candidates is more suited to lead Nigeria than Peter Obi. No one has as much experience. - Dr. Yusuf Baba-Ahmed, vice-presidential #Taiwan #China #BBNaija #Obidatti023 #PeterObi4President2023 https:\\/\\/t.co\\/aEHGtnzasE\",\"4800\":\"Savings or current?\\n\\n#Pelosi #China #AbujaTwitterCommunity\",\"4801\":\"On the 28th of July,we talked about HEPATITIS and everything you need to know about it in a simple way.#Hepatitis #ASUUStrikeUpdate\\nToday,we are bursting some widespread myth about hepatitis.\\nClick on the link below to read more about it.\\n#China\\n#Pelosi\\nhttps:\\/\\/t.co\\/saVxYVwPVi\",\"4802\":\"Music For The #Summer #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\\n #kpssdeikincifetoskandali #CharlotteXRica #\\u0e1e\\u0e34\\u0e28\\u0e27\\u0e32\\u0e2a\\u0e06\\u0e32\\u0e15\\u0e40\\u0e01\\u0e21\\u0e2a\\u0e4cep10 #Taiwan #\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629 #Pelosi #\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08 #\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08 #oesym #China #JacksonWang #explorepage #explore #indiemusic \\n\\nNow Out Worldwide\\ud83c\\udf0f https:\\/\\/t.co\\/2liLRM6tlC\",\"4803\":\"Feminist when they realize a woman will cause World War III \\nChina || WWII || #XiJinping https:\\/\\/t.co\\/AhTJ0ySCrx\",\"4804\":\"Research shows that just thinking about a Plan B\\ncan make it less likely\\nthat you'll achieve Plan A.\\n#Pelosi \\n#psychologyfact https:\\/\\/t.co\\/Raxmh0ZXgW\",\"4805\":\"Soon you wil come back and say I told you so \\n\\n#heartbreakonaweekend ep soon #yungskizzy #promphizy #Taiwan #China #YEEZYDAY #helicopter https:\\/\\/t.co\\/5JBEDQOcD7\",\"4806\":\"Click on The Link Below To Hire A professional web designer\\nGet it cheap for 10% discount\\nhttps:\\/\\/t.co\\/w9fxUoTjHc\\n#Soto\\n#Gallo\\n#Taiwan\\n#Happy Birthday Emily\\n#Dolphins\\n#China\\n#thatsmoney\\n#Dane Cook\\n#Alpine\\n#McLaren\\n#NO NICKI NO CAREER\\n#Yeezy\\n#MLBTradeDeadline\",\"4807\":\"I\\u2019m loving every bit of Beauty and Groovy \\ud83d\\udd25 the fights, the conversations, the makeups, affections etc! Nothing can be more reality TV than this \\ud83d\\udc4c#Taiwan BBNaija\",\"4808\":\"Insecurity: My Solution Will Be Decisive And Immediate, Says Peter Obi https:\\/\\/t.co\\/o5wQdeTGtV https:\\/\\/t.co\\/ZkxAtQ2d0G\\n@NgLabour #Taiwan #China #Obidatti023 #PeterObi4President2023 https:\\/\\/t.co\\/alCbOqU2TQ\",\"4809\":\"Guys pls support what I love doing. Help like and retweet\\n\\n@fb: Ehizcomedytv @IG: ehizcomedytv\\n\\n#sabinus #Machala #Taiwan #PeterObiForPresident2023 #BBNaijaLevelUp #BBNaija7 #BAT2023 #China #helicopter #PremierLeague https:\\/\\/t.co\\/NhsBTtDwFP\",\"4810\":\"Azal's freestyle session...\\nHappiness&Joy.\\n5. Destiny\\n\\n@davido @burnaboy @patorankingfire @yemialadee @PeterPsquare @rudeboypsquare @DONJAZZY @mreazi\\nASUU Agbado #Hermes #Taiwan #YEEZYDAY #BBNajiaS7 #BBNaijaLevelUp #bbrightvc burna boy NO NICKI NO CAREER SHE's 40 https:\\/\\/t.co\\/Ze5IxvlGee\",\"4811\":\"Sometimes all you need is to get high and vibe \\ud83e\\udd42\\n\\n#WWIII #helicopter #ASUU #bbnajia\",\"4812\":\"FOR SALE SERVICED 5 BEDROOM DETACHED HOUSE WITH A ROOM BQ.\\nLocation: Orchid road, Lekki Lagos \\nPrice: 95M\\nFeatures:\\n- All rooms En-suite \\n- 24hrs electricity \\n- 24hrs security \\n- Cctv Camera \\n- Fitted kitchen \\n- Jacuzzi \\nCall\\/WhatsApp 08154029096\\n#Igbo #lekki #Lagos #Pelosi https:\\/\\/t.co\\/V2ui30jamm\",\"4813\":\"Education is the passport to the future, for tomorrow belongs to those who prepare for it today.\\n #ObiDatti2023 @PeterObi\\n@NgLabour #Taiwan #China #BBNajiaS7 #Obidatti023 https:\\/\\/t.co\\/Kovj709BMT\",\"4814\":\"This princess needs no prince fr\\ud83d\\ude02#Pelosi #helicopter #JacksonWang https:\\/\\/t.co\\/aQw7WbalFJ\",\"4815\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/LCSaSYlEaZ\",\"4816\":\"Hello there! Elite Star calling you to be part of our amazing projects that prevent child abuse. Come along and discover more about this topic on Instagram, facebook and LinkedIn!\\nWe are @NGOELITESTAR (Elite Star Foundation)!\\n#Taiwan #Pelosi #China #WorldWar3 #Africa #Italy\",\"4817\":\"I no fit do therapists o ,if I tell my own Clients my own story, na she go console me with breast \\ud83d\\ude00\\ud83d\\ude0c.\\n\\n#Bbnaija #Taiwan #Hermes #PeterObi2023\",\"4818\":\"In a world full of trends, I want to remain a classic\\ud83d\\ude29#Taiwan https:\\/\\/t.co\\/lp2xxqa7u3\",\"4819\":\"These days we should be earning and talking in dollars \\ud83d\\udcb0\\n\\nForex has been on your mind but you don't know where and how to go about it \\ud83d\\ude1e\\n\\nLearn the basics and technical analysis of Forex in the group below \\ud83d\\udc47\\ud83c\\udffc with just $40\\nhttps:\\/\\/t.co\\/pHFT0TbZNT\\n\\n#Taiwan #bbnaija #ASUU\",\"4820\":\"On #Pelosi visit to Taiwan... https:\\/\\/t.co\\/dkwjpnxd1V\",\"4821\":\"The truth is, any act of aggression; specifically between two super powers will cause a great havoc within the global economy and hence no one would dare to cause a World War III. I am not a security expert but that will have a dire consequences. #XiJinping Taiwan Pelosi\",\"4822\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0|| World war III || Peter Obi || #Pelosi #Taiwan https:\\/\\/t.co\\/tqxgegF4it\",\"4823\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qvncNvvvYn\",\"4824\":\"Using Obituary on the said headlines is very wrong, I'm a journalist \\n\\n#Taiwan #helicopter #Lekki #Pelosi\",\"4825\":\"1 Peter 1:14\\nAs #obedient children, do not be conformed to the passions of your former ignorance.\\nIn other words, we have been passionate for the wrong tins and people, \\nNever again.\\n\\nMr. Peter Obi\\nDe gea\\n#WWIII \\n#obituary\",\"4826\":\"No Follows \\ud83d\\ude1e\\ud83d\\ude36\\nI hope something changes after this tweet\\ud83d\\ude1e #Taiwan\",\"4827\":\"@KarenBassLA @KamalaHarris You're honestly not alone on this topic. I have never been impressed by any leader like those duo since assumption of office. I prayed God's strength for them to do more for their nation. #Pelosi #Biden\",\"4828\":\"Another gbege \\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02 Nigeria is broke ke.. Though funny but truth..\\n\\u2022\\n\\u2022\\nDon't Look Up Omo Agege World War III Obi-tuary Renato Sanches Mr. Peter Obi Onitsha #helicopter #Taiwan \\nhttps:\\/\\/t.co\\/qPLqPlXUx2\",\"4829\":\"How it started vs how its going\\n#Taiwan .... https:\\/\\/t.co\\/p1QUU5yEVY https:\\/\\/t.co\\/SQ7SoQkXfY\",\"4830\":\"We're getting bigger every day \\ud83d\\udd25\\ud83e\\udd75\\ud83e\\udd75Join the movement now!!!\\n#Ninjawarriorsfc \\n\\n#Taiwan #Pelosi #China #YEEZYDAY #LowerPassingRate #Kep1er https:\\/\\/t.co\\/VOuUsPJWID\",\"4831\":\"Video Near the Grand Hyatt Hotel, where Nancy #Pelosi stay during #Taiwan visit.\\n\\n #PelosiinTaiwan #China #ChinaTaiwanCrisis #ChinaTaiwan #USA https:\\/\\/t.co\\/LM6VSMyzjG\",\"4832\":\"This one #WWIII is trending, what\\u2019s going on \\ud83d\\ude33\",\"4833\":\"Say no more\\nThe structure has been erected all over.\\nWorld War III ASUU #Taiwan #Pelosi https:\\/\\/t.co\\/900QcCpy8i\",\"4834\":\"Iphone X very clean and sharp \\nStorage:256gb \\nPrice:145k \\nBattery:78%\\nFace ID : perfect \\n\\nPlease retweet \\u2764\\ufe0f\\ud83d\\ude4f\\ud83c\\udffb\\n\\nPhil jones lingard Dean Henderson Renato sanches Odoi #BBNajiaS7 #Taiwan https:\\/\\/t.co\\/xjsA30und4\",\"4835\":\"Sam Omatseye collecting it wotowoto from ObiDient supporters with Obituary posters. #Taiwan #Pelosi #China https:\\/\\/t.co\\/nSesxfnDTK\",\"4836\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#Pelosi #Taiwan #China #JacksonWang #helicopter #YEEZYDAY #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/tqxgegF4it\",\"4837\":\"Oh leaders of the world,\\n\\nhear our cries. \\n\\nFrom miles away, we cry to bed. \\n\\nEconomies are crushing.\\n\\nJobs are being lost. \\n\\nLives too.\\n\\nProperties destroyed.\\n\\nWe cannot afford another escalation.\\n\\nPlease! Please!! Please!! \\n\\nHear our cries.\\n\\n#Taiwan #Peace\\n@UN @ghanamissionun\",\"4838\":\"I need a sugar Zaddy \\n@Obaji_007\\n\\n #Pelosi #China #JACKSONWANGxCartierTH #YEEZYDAY #tuesdayvibe #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/1alsIAGmpL\",\"4839\":\"\\ud83d\\udcdd \\ud835\\udc03\\ud835\\udc04\\ud835\\udc00\\ud835\\udc0b \\ud835\\udc03\\ud835\\udc0e\\ud835\\udc0d\\ud835\\udc04: @ManUtd have signed Tom Huddlestone on a free transfer.\\n\\nThe 35-year old will join the u21 squad in a player\\/coach role\\n\\n(Source: Manchester United\\n\\n#Taiwan #China \\nASUU\\/World War III\\/ Omo Agege\\/ #Rascism\\/ #WWIII\\/ Mr. Peter Obi #Lekki\\/ Deji\\/Governor\\/ Datti https:\\/\\/t.co\\/aLAPq2Ps0u\",\"4840\":\"I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones. - Albert Einstein \\n\\n#WWIII #WorldWar3 #Taiwan #Pelosi #China #WW3 https:\\/\\/t.co\\/crUGc0k2UF\",\"4841\":\"Wow, what's happening for crying out loud. World War III\\n#WWIII https:\\/\\/t.co\\/6DEiwtv3NU\",\"4842\":\"God is great\\ud83e\\udd2f #Taiwan #Pelosi #helicopter #chatsekscerita #JACKSONWANGxCartierTH #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #YEEZYDAY #tuesdayvibe #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #NCT127 ,#SuperTuna_Jin #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a https:\\/\\/t.co\\/r7UJdM5Vc3\",\"4843\":\"Trending Video of Police Officer Beating Man With A Machete In Cross River\\n The video of a police officer assaulting a yet-to-be-identified man by hitting\\u2026\\n\\nhttps:\\/\\/t.co\\/y1caKEYuCw\\n\\nASUU #Taiwan #helicopter Racism IPOB #Datti\",\"4844\":\"Youths in Aba Stage Protests Demanding an End to Ebubeagu Militia in Igboland (photos\\/video)\\n Youths in Aba in Abia state this morning took to the streets to demand\\u2026\\n\\nhttps:\\/\\/t.co\\/NcqTO5kOSy\\n\\nASUU #Taiwan #helicopter Racism IPOB\",\"4845\":\"\\u2757\\ufe0fHere's a military comparison of China & Taiwan\\n#Pelosi #Taiwan #helicopter https:\\/\\/t.co\\/bdasAJa1dE\",\"4846\":\"High taper fade so clean\\ud83d\\udd25\\ud83d\\udc88\\n\\n#Pelosi #helicopter #chatsekscerita #JACKSONWANGxCartierTH #tuesdayvibe #YEEZYDAY #NCT127 #kpssdeikincifetoskandali https:\\/\\/t.co\\/CIOjlFCbwK\",\"4847\":\"We are good at what we do..\\n\\n#Pelosi #OmoAgege #Abuja-Kaduna #helicopter #Grammy #machala #Racism #foden #StartMount https:\\/\\/t.co\\/fZIwB0I43e\",\"4848\":\"Nancy Pelosi: Why I\\u2019m leading a congressional delegation to #Taiwan \\nWill Taiwan become China's #Ukraine\\ufe0f\\nhttps:\\/\\/t.co\\/IWCxu2HLYp\",\"4849\":\"Nigeria is broke because Nigeria is broken by Looters! \\ud83e\\udd23\\ud83e\\udd23\\ud83d\\ude02\\ud83d\\ude02\\n\\u00b0\\n\\u00b0\\n#chatsekscerita #kpssdeikincifetoskandali ASUU Mbaka World War III Omo Agege #helicopter #Taiwan #Pelosi #oesym #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19 #\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a @Pres_Adebayo @atiku @edwinbushJnr https:\\/\\/t.co\\/GW42HxaUGK\",\"4850\":\"I need a female bestie here in Lagos\\n#Taiwan #Pelosi #JACKSONWANGxCartierTH #chatsekscerita #tuesdayvibe #BBNaija7 https:\\/\\/t.co\\/7XISsANW5B\",\"4851\":\"\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2dLIFE HARD \\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d\\ud83d\\ude2d. #Taiwan #Trending\",\"4852\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/3sZQZxnKak\",\"4853\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/JoInBfSZQN\",\"4854\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/zNr4ata000\",\"4855\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/rYMBkaPkQH\",\"4856\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/Y3LUJdpeAc\",\"4857\":\"My sweet twins, am so blessed to have you in my life\\n\\nI want to thank you for all your love, you are my best friend I couldn\\u2019t have made it this far without you. I love you\\ud83d\\udc9c\\n\\nWe Rep August 06\\n\\nSignature pant @atwinsdesigns\\n#aneketwins #tuesdayvibe #atwinsdesign #Pelosi https:\\/\\/t.co\\/ehyeapFYxO\",\"4858\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/LLtQNjQfnc\",\"4859\":\"Safari crafted by @mickkycutz\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\nShop the look \\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\n\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n!\\n#Taiwan #kpssdeikincifetoskandali #BBNaija7 #YEEZYDAY #ambode https:\\/\\/t.co\\/kyfodThMnS\",\"4860\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/InPATnRTxc\",\"4861\":\"I am obident and yusful. What are you. #Taiwan #helicopter #OBIdientlyYUSful #Obidatti2023 #chatsekscerita\",\"4862\":\"The government in China are certainly not amused by the congressional visit to #Taiwan by its Speaker Nancy Pelosi. They have warned of 'consequences' following her visit. Meanwhile, the Chinese military are expected to conduct a 4-day exercise in the South #China Sea. https:\\/\\/t.co\\/vQBBaRizSE\",\"4863\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/8WGIbboap0\",\"4864\":\"Young Boy Who Stopped Gov @ProfZulum's Convoy To Shake His Hand Gets His Framed Picture Delivered To Him By The Gov's Aide\\n\\n#shellanayourmate #organicchemistry \\n#bbnaija\\n#Pelosi #ASUU #Omoagege #WorldWarlll #fabrizio #machala https:\\/\\/t.co\\/IIJkhdS1Dw\",\"4865\":\"Place your orders NOW and get it delivered as early as 10am tomorrow morning \\ud83d\\udcaa\\nBoli Reloaded delivers to anywhere in Akure \\ud83d\\udcaf\\n\\n#Taiwan #akure @adeleye_temmie @Akureevents @YemieFashMedia #futa #ondo #tuesdayvibe https:\\/\\/t.co\\/UYxgp6ZvVo\",\"4866\":\"You welcome to our Online Store.\\nThank you as we look forward to you patronising our Store.\\n\\nhttps:\\/\\/t.co\\/zhrsZhD5PZ\\n\\nWe sell:\\nE-Books\\nAudio Books\\nVideo Courses\\/Books\\nCHILDREN BOOKS\\/NOVELS\\nSELF-DEVELOPMENT BOOKS\\nARTS\\/CULTURE BOOKS.\\n\\n#Taiwan #YEEZYDAY #tuesdayvibe #helicopter https:\\/\\/t.co\\/bVtPU0oPmE\",\"4867\":\"Track 10 \\\"Dirty secret \\\" cover for @burnaboy #lovedaminialbum \\n.still on the count down to the 19th track .\\nPls \\ud83d\\ude4f famz keep \\ud83d\\ude4f tag @burnaboy in the comments section \\n#sabinus #Taiwan @MI_Abaga @wizkidayo @DONJAZZY @DPRINCEMAVIN https:\\/\\/t.co\\/lYDHjtOK2B\",\"4868\":\"@MTNNG I beg you in the name of whatever you hold dear, stop insulting me!!\\n\\n#WWIII #SaheedBalogun #Taiwan https:\\/\\/t.co\\/gmg5Y1glGZ\",\"4869\":\"First show coming through soon \\n\\n#Taiwan #GreatReset #greatestshowman #greatcampbell #champagnebaby #drake #30bg\",\"4870\":\"How to Invest in a Food Truck &#8211; Tips for Getting Started - https:\\/\\/t.co\\/6fBkKNGnJu #Hosmer #Padres #Nats #Taiwan #Dolphins https:\\/\\/t.co\\/9lwlUKtDZw\",\"4871\":\"It's not what you know that matters, it's what you do with what you know that matters.\\n\\nSelah\\n\\n.\\n\\nSam Omatseye Reno #Tinubu #Lekki World War III #helicopter #Taiwan Racism #Pelosi #China Welcome to Chelsea Governor Lexus Pope Obidients #Obidatti023 Obituary ASSU #XiJinping Sega\",\"4872\":\"US Navy Ships near Taiwan.\\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/s8EVHXHeQu\",\"4873\":\"Top: #3,000\\nSkirt: #3,500 \\nBoth piece from lani_piece\\u2702\\ufe0f\\u2702\\ufe0f\\u2702\\ufe0f\\n#China #Taiwan #tuesdayvibe https:\\/\\/t.co\\/xwkwF6pzK4\",\"4874\":\"FOR SALE\\n\\n\\u2666\\ufe0f An Uncompleted 6bedroom Duplex Mansion On a Land Measuring *1039sqm* in a Gated & Serene Estate.\\n\\n\\ud83d\\udccdLocation: Abatakan Estate, Ojoo, Ibadan (Just 5mins Drive From Ojoo Roundabout)\\n\\nTitle: Red Copy Survey, Approved Building Plan & Agreement\\nPrice: \\u20a630million #Taiwan\",\"4875\":\"Why is Hermes trending everywhere?\\n#WWIII\",\"4876\":\"It's Tomorrow guys, let's follow live on zoom @ https:\\/\\/t.co\\/Rzn4pbYszl and Facebook @wtpnigeria \\n#Pelosi #Taiwan #chatsekscerita https:\\/\\/t.co\\/XLK8mXSAGJ\",\"4877\":\"Good woman Dey hard to find, hold the good one you have tight \\ud83d\\ude09\\n\\n#Taiwan #chatsekscerita #helicopter #Pelosi #JACKSONWANGxCartierTH #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 # https:\\/\\/t.co\\/m71TwAoEWS\",\"4878\":\"Pope Francis said\\\" whoever approaches the church must find open doors and not fairs of faith\\\"\\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha https:\\/\\/t.co\\/hR4kZxxeQH\",\"4879\":\"In case you ever wondered how big an eagle\\u2019s talons are. \\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha \\n#Lekki \\n#WizKid\\ud80c\\udcf5 \\n#chatsekscerita https:\\/\\/t.co\\/rOWH1F4sUj\",\"4880\":\"The idea is to die young as late as possible, live smart!\\n\\nWWIII\\nMbaka\\nPiggyvest \\nSportybet\\n#helicopter \\n#Taiwan \\n#Pelosi \\n#\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 \\nASUU\\nOmo Agege\\nChinese foreign ministry\\nRacism\\n#Tinubu\\nObidients\\nSaid Balogun\\nOnitsha \\n#Lekki \\n#WizKid\\ud80c\\udcf5 \\n#chatsekscerita https:\\/\\/t.co\\/4gnSBIXGVm\",\"4881\":\"7in1 SILKY LOUNGE WEAR IN SIZE 8 TO 14\\/16 FIT\\nPrice -6500\\nLocation -Lagos\\nDM or whatsapp 09136740660\\n\\nIlebaye ASUU world War lll #BBNaija #Wizkid #Taiwan #samkwe China saheed Balogun pelosi Lagos Reno Tinubu Amen Hermes kihaild Alonso Obituary Happy New month #ToyinAbrahamkiddies https:\\/\\/t.co\\/ufN2U1k95E\",\"4882\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#China #Taiwan #Pelosi #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #BBNajiaS7 https:\\/\\/t.co\\/85u9VNvn5s\",\"4883\":\"The #Lekki toll gate wasn't a good experience, we saw hell loosed against us\\nBut\\n\\nThe #Yorubas \\/ #yoruba survived\\nThe #igbos Survived\\nThe #North survived\\nThey say Emi lokan, no sir\\nIts our turn to pay you back, we still have our scars\\ud83d\\udcaa\\n#OBIDIENTS \\/ #IPOB \\/ #Reno \\/ #Pelosi https:\\/\\/t.co\\/psWDUaimY4\",\"4884\":\"This BBC documentary will reveal to you more things than we really know. @SavvyRinu @PeterPsquare #Taiwan #WorldWarIII https:\\/\\/t.co\\/8bsqiolcDu\",\"4885\":\"Nancy Pelosi Lands In Taiwan, Amid U.S-China Tension\\u00a0#Taiwan #Taiwan #Pelosi #China #USA https:\\/\\/t.co\\/tqxgegF4it\",\"4886\":\"I sha know day for this wars no body go force me carry gun for their yeye egocentric battles... Na the ripple effects just dey pain me cos of the kind country person dey ... #WW3 #WWIII\",\"4887\":\"\\ud83c\\uddf3\\ud83c\\uddecJUST FROM NIGERIA (IGBO BOY)\\ud83c\\uddf3\\ud83c\\uddec\\nNO WAHALA TO DISPLAY \\ud83d\\ude0c\\n#Taiwan #Pelosi #China #helicopter #tuesdayvibe #tuesdayvibe #chatsekscerita #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 #kpssdeikincifetoskandali #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #GoldMedal #\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a #kpssdeikincifetoskandali #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c #GoldMedal #Prabhas https:\\/\\/t.co\\/bcawOh7ghe\",\"4888\":\"Beautiful Bride vibing to @Omah_Lay s \\u201cWOMAN\\u201d\\nFrontal wigged,installed and styled to perfection!\\u2665\\ufe0f\\ud83e\\udd70\\n\\n#Pelosi #BigBrotherNaijaS7 #ASUU #BigBrotherNaija #Rufai #Ilebaye #tuesdayvibe #saheedbalogun #PeterObi4President #tinubu https:\\/\\/t.co\\/1XSoCGB8rM\",\"4889\":\"Cheers\\ud83e\\udd42 to new blessing in this new month #Pelosi happy new month https:\\/\\/t.co\\/b6J542Frck\",\"4890\":\"#Crypto INSTITUTIONAL INVESTORS IN EUROPE ONLY TOTALS AROUND 4% #Bitcoin #Taiwan\",\"4891\":\"Always grinding \\ud83d\\udcaf#helicopter #Taiwan #WWIII #tuesdayvibe #BBNajiaS7 https:\\/\\/t.co\\/UJOaoSnhH4\",\"4892\":\"Everyone saying they want ASUU to call of strike, because, they are tired of home. \\ud83d\\ude02 I can\\u2019t relate, because, I have been away from home for 2 YEARS now and I am sure I am not going back soon \\ud83d\\ude02 I just want to graduate and focus on my art #Taiwan #ASUUstrike #ASUU #WWIII #Pelosi\",\"4893\":\"I only wanted to read my newspaper o\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23\\ud83e\\udd23 Why are they running? Prank\\ud83d\\ude02\\ud83d\\ude02 @Naija_PR @KraksTV @yabaleftonline \\n #Taiwan #helicopter #tuesdayvibe #GoldMedal #ISAC2022 #Pelosi #Trending https:\\/\\/t.co\\/PKOrCb2wOK\",\"4894\":\"\\u201cI do not know with what weapons World War III will be fought, but World War IV will be fought with sticks and stones.\\u201d \\u2013 Albert Einstein.\\n\\n#WWIII\",\"4895\":\"If after all this patience, I don\\u2019t eat the fattest bone, problem go dey oh\\n\\n#Pelosi #helicopter\",\"4896\":\"We don overcome COVID-19 pandemic now na to face World War III.\\ud83d\\ude05\\ud83d\\ude05\\ud83d\\ude05#Taiwan #China\",\"4897\":\"Learn a Tech skill at our Ikorodu Centre\\n\\n\\ud83d\\udccdInteractive classes\\n\\ud83d\\udccdOne - on- One Trainings\\n\\ud83d\\udccdFree Internet Access\\n\\ud83d\\udccd6 weeks\\n\\ud83d\\udccdTraining materials\\n\\ud83d\\udccdAccess to Our online Community\\n\\nVisit: https:\\/\\/t.co\\/GfSa10O7eC to get started\\n\\nIkorodu. World War III. #Pelosi https:\\/\\/t.co\\/qa4UTeJU4R\",\"4898\":\"Meanwhile the KYC passing rate of Chinese Pioneers is only around 1%-5% of the domestic Recorded. Once 80% of Chinese migrate to mainnet, the global barter market will explode. #PiNetworkUpdates #Pinetwork #Pionners #Taiwan #Stopsellingpi\",\"4899\":\"IPHONE 12 PRO MAX \\n\\n\\u2705STORAGE:128GB \\n\\n\\u2705PRICE: N500,000\\n\\n\\u2705UK USED \\n\\n\\u2705Dm\\/Call :07032655719 \\n\\n\\ud83d\\udccdKADUNA\\n\\nDelivery Nationwide.\\n\\nMbaka | Obidients | \\\"Sam Omatseye | Onitsha | \\\"World War III | #Tinubu | #Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 Reno Abati https:\\/\\/t.co\\/1CoGL7BvNu\",\"4900\":\"God bless all hustling young men who wants to go into marriage \\ud83d\\ude4f\\ud83d\\ude4f\\n\\n#Lekki Mbaka #helicopter Onitsha #Taiwan #Pelosi #China # https:\\/\\/t.co\\/ciSc0yx3ED\",\"4901\":\"IPHONE 12 PRO MAX \\n\\n\\u2705STORAGE:128GB \\n\\n\\u2705PRICE: N500,000\\n\\n\\u2705UK USED \\n\\n\\u2705Dm\\/Call :07032655719 \\n\\n\\ud83d\\udccdKADUNA\\n\\nDelivery Nationwide.\\n\\nMbaka | Obidients | \\\"Sam Omatseye | Onitsha | \\\"World War III | #Tinubu | #Taiwan #China #\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646 Reno Abati https:\\/\\/t.co\\/DCUApG0DFj\",\"4902\":\"Let\\u2019s save this here \\ud83d\\ude42 Okeey_m\\u2019z Arts \\n#Taiwan #China #tuesdayvibe #art #artists #Pencildrawing #pencilsketch @m_ekeonuoha @abramopex1 @DrawsLa @penpencildraw https:\\/\\/t.co\\/aihFMPNCZb\",\"4903\":\"Do you love snkrs at first site \\u263a\\ufe0f\\ud83e\\udd29\\n\\nSize 40-45(N34,000)\\nSend Dm\\/WhatsApp : 08055307790\\n\\n#Taiwan | Rufai | Sabinus | Amaka and Phyna https:\\/\\/t.co\\/7jOk7acoqF\",\"4904\":\"The Chelsea have reached an agreement of signing the 18yrs old Carney Chukwuemeka! Done deal just completed. \\ud83d\\udea8\\ud83d\\udd35 #CFC @FabrizioRomano\\n#football\\n#CharlotteXRica #kpssdeikincifetoskandali #Pelosi #GoldMedal #China #Taiwan #tuesdayvibe https:\\/\\/t.co\\/ZoTNCbIJln\",\"4905\":\"I had a girl that was a tattoo artist \\ud83c\\udfa8.... and man don't have tattoo till date. \\ud83d\\ude07\\n#GoldMedal #Pelosi\",\"4906\":\"Welcome to Starfield Montessori School, where we work to actualize the full potential of every child to help create more fulfilling lives and a better society for all.\\n\\n#Taiwan #helicopter #tuesdayvibe #China #Pelosi #ISAC2022 #GoldMedal https:\\/\\/t.co\\/zuXp3ZbI1A\",\"4907\":\"More than 20 #Chinese military planes enter Taiwan's airspace on day of Pelosi visit: Taipei\\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan\",\"4908\":\"Nancy Pelosi took a different route via Philippines and not south China\\u2019s route to avoid PLA\\u2019s interception\\n\\n#Pelosi #Taiwan #China #Liveupdates #USA #ChinaTaiwanCrisis #NancyPelosi #Biden #XiJinping https:\\/\\/t.co\\/4ywqop01W7\",\"4909\":\"God is still in the business of helping people.\\n\\nYou believe? Retweet, let people see your unapologetic bias towards God's faithfulness. \\n\\n#Taiwan #Pelosi #helicopter #China #tuesdayvibe #chatsekscerita #ISAC2022 #GoldMedal #Prabhas #kpssdeikincifetoskandali\",\"4910\":\"Phyna and Amaka #phynaamaka #phyna #amaka #BigBrother #bigbrother24 #BB24 #Trending #Pelosi #China #\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c https:\\/\\/t.co\\/bGUuuACmdc\",\"4911\":\"Footwear concept\\n#Taiwan #tuesdayvibe #GoldMedal #industrialdesign #Internshipopportunity #conceptart #productdesign #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #designer https:\\/\\/t.co\\/cVic8gLlWa\",\"4912\":\"Happening now in Umunuko Ukpor Nnewi South local government of Anambra state. \\nThere is an exchange of fire between the Unknown gunmen and Ebubeagu. @CCSoludo #Taiwan #BBNaija https:\\/\\/t.co\\/tiD2f47UBX\",\"4913\":\"Which one is easier to replace? The Girl friend or the business?\\n\\nRT for GF\\nLike for Biz\\n\\nMbaka | Sam Omatseye | Reno | Abati | #Taiwan #Pelosi #Tinubu #China https:\\/\\/t.co\\/lcVoMynzKS\",\"4914\":\"reminding Nigerians what the past 7 years have been from now till next year, just like Mr. Lai.\\n\\nMy business will solely be demarketing APC till they fade out of existence\\n\\n#helicopter #taiwan #WorldWar3\\n#PeterObi4President2023\",\"4915\":\"which means they fall back in their studies and often drop out of school.\\n#hausas #SamOmatseye #worldwarlll #XiJinping #CaridadCharityFoundation #Tinubu #Russia https:\\/\\/t.co\\/QzuQjORJZR\",\"4916\":\"How can you leave your Child and party for 6days.\\nAnd now the child dies due to Starvation. Women!! Enjoy your jail terms #Taiwan #Pelosi #China #dontpayuk #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 #BORNPINK #helicopter #tuesdayvibe #bachelorette #GoldMedal https:\\/\\/t.co\\/wrBwXCBU1g\",\"4917\":\"#Deborah: Gov Tambuwal Receives Unrest Investigation Report, Considers Reopening College |LAGOS EYE NEWS https:\\/\\/t.co\\/Qxsyz1y71O\\n\\n#helicopter BRT Lane #WorldWarIII US Air force #Tinubu #Taiwan #China #Terrorists #Rufai #ASUUStrikeUpdate #BBNaija\",\"4918\":\"What will China do to save face? They can't be seen to Sabre rattle only.. #Pelosi just stuck a finger in their nose #China #Taiwan\",\"4919\":\"I'm a graphic designer, tech enthusiast and a Hospitality expert. \\n\\nEnthusiasm for exceptional designs and keen eye for detail are my forte and I believe I take it a step further.\\n\\nI'm at your service. Kindly dm me, let's get started.\\n#GraphicDesigner #graphicdesign #Taiwan https:\\/\\/t.co\\/zn57X39Cdp\",\"4920\":\"Join Hit Game and earn 2881.4716 NGN ! Click on this link and sign up : https:\\/\\/t.co\\/ZVrecl12Br\\n\\n#Taiwan #Pelosi #China #dontpayuk #tuesdayvibe #assu #GoldMedal #Nigeria #helicopter #BORNPINK\",\"4921\":\"Me and my cartel on our way to banks, after state of emergency has been declared #WWIII https:\\/\\/t.co\\/IGfPS2hgII\",\"4922\":\"Nancy Pelosi lands in Taiwan. The U.S House Speaker arrived despite China's repeated warnings. \\n\\nChinese President Xi ordered the immediate closure of Taiwan airspace and deployed naval warships east of Taiwan\\n\\n#Pelosi #NancyPelosi #China #Taiwan #USTaiwan #WorldWar3 #ChinaTaiwan https:\\/\\/t.co\\/ez1KF3TssA\",\"4923\":\"\\ud83d\\udc48\\ud83d\\udc48\\ud83d\\udc48\\n\\ud83c\\udf89DON'T SLEEP \\nWAKE UP \\nCOLLECT YOUR MONEY \\ud83d\\udc83\\n#LevelUp #Giveaway #Taiwan #China #Pelosi #food #dontpayuk #lagos #August2022 #helicopter #tuesdayvibe #GoldMedal #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574 https:\\/\\/t.co\\/yY9KxsoIA6\",\"4924\":\"@SkyNews China right now https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"4925\":\"As an OBIdient or patriotic and concerned Nigerian, how many persons were you able to get to register for PVC? Be honest\\n\\n#Obidatti023 #Taiwan\",\"4926\":\"Our new wallpaper is out, to download it click on this link https:\\/\\/t.co\\/ApxYMDpYbH\\n\\n#adobeillustrator #Adobe #wallpaperdesign #Taiwan https:\\/\\/t.co\\/GT2cRzGWjm\",\"4927\":\"Boys: \\nmy pull out game is A1 after seeing the pregnancy test\\n\\n#Taiwan worldwarIII #China https:\\/\\/t.co\\/hw24ZmRrCM\",\"4928\":\"BREAKING:\\n\\n Kaduna Train Attack: 5 more passengers regain freedom 127 days after, 34 others still in captivity.\\n\\n#helicopter BRT Lane #WorldWarIII US Air force #Tinubu #Taiwan #China #Terrorists #Rufai https:\\/\\/t.co\\/UORpoe3ZY2\",\"4929\":\"Taiwan : will you stay ?\\n\\nUS :\\n\\n#XiJinping #Taipei #WWIII https:\\/\\/t.co\\/GJ1GzU7jGV\",\"4930\":\"@carterefe__ @wizkidayo @wizkidfc_ \\nNO 1 on all platforms watch out \\u270c\\ufe0f\\u270c\\ufe0f\\u270c\\ufe0f\\u270c\\ufe0f @carterefe__ grace boy #China #Pelosi #Taiwan #\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558 # https:\\/\\/t.co\\/QV20BAgK9G\",\"4931\":\"People cheering in front of Pelosi convoy to welcome Nancy Pelosi in Taiwan. \\n\\n#NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/P2uLzsGYPc\",\"4932\":\"Isn\\u2019t it funny how almost every trend you open on this app you must see an obident repping the brand \\ud83d\\ude3b\\ud83d\\ude3b #Pelosi #PeterObi4President2023 #Obidatti023\",\"4933\":\"SEND US A MESSAGE IF INTERESTED IN TODAY FIXED AND HOW TO JOIN VIP PLATFORM\\n\\nADMIN \\ud83d\\udc68\\u200d\\ud83d\\udcbc @sure_odds11\\nWHATSAPP @ +2347014625067\\n\\n#tuesdaymotivations #tuesdayvibe #LOONAinLA #ProvamedxGulf #Guerrilla1stWin #ENGGER #AlQaeda #abstorm #ISAC2022 #Taiwan https:\\/\\/t.co\\/w6lPhMSlfV\",\"4934\":\"What is happening in china Today ?\\n\\n#Taiwan #China #NewProfilePic #massageinRiyadh #massage_vip_riyadh #realestate #TikTok #Hi #Padres #thatsmoney https:\\/\\/t.co\\/MoJu2j7Qas\",\"4935\":\"@ILRUSSO1 Chinese invasion is imminent. I believe Taiwanese have been receiving distrubing intelligence from the US on China's buildup. This development has induced the frequent drills held in Taiwan. Hmmm!! God save our world. #WWIII\",\"4936\":\"Be shameless about your craft. \\n\\nYou will not labour in vain.\\n\\n#BeautyWithBrains \\n#cubana \\n#Tinubu \\n#Pelosi \\n#Taiwan \\n#China https:\\/\\/t.co\\/7RaExlFZdy\",\"4937\":\"#NewNFTProfilePic NFT by Via @AsyncArt MINT YOURS FOR ONLY 0.0099 ETH!!! https:\\/\\/t.co\\/NPai9pIu8o #NFTCommmunity #NFTMintAlert #Pelosi (sorry but it\\u2019s trending and I could use the \\ud83d\\udc40) https:\\/\\/t.co\\/X7gsur3N0k\",\"4938\":\"HOTEL FOR SALE\\nLocation: ilaje mobil road ,before ajah under bridge ,lagos,Nigeria \\n\\nContact boprinhomes 07038995709\\/\\/enquires #FYP #tiktok #Taiwan #China #dontpayuk #tuesdayvibe #helicopter #RealEstate #realestateinvestor https:\\/\\/t.co\\/zQAIZsAEgs\",\"4939\":\"Better served hot \\ud83d\\ude0a follow @Imkwesi_\\n\\n#Ghana #Ukraine\\n#Taiwan #Pelosi #BambamSorry #abstorm #chatsekscerita https:\\/\\/t.co\\/nkgeEcubJC\",\"4940\":\"@SpeakerPelosi @washingtonpost The world should be free from autocratic ruling. Good steps https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"4941\":\"@SpeakerPelosi @washingtonpost China right now \\ud83d\\udc94 https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan ##Taipei\",\"4942\":\"Loading of Longspan Aluminium Roofing Sheet to Pako Aguda Surulere Lagos State\\n\\nColour: Bush Green\\n0.55mm \\nWorld War III Saheed Balogun Ikorodu Xi Jinping Us Air force #Wizkid #Taiwan #China #helicopter #tuesdayvibe\\n#Whatsapp 08085310359\\nWATCH VIDEO HERE \\ud83d\\udc49\\ud83c\\udfff\\ud83d\\udc49\\ud83c\\udfff https:\\/\\/t.co\\/YMk2Mn69cr\",\"4943\":\"Which of these teams will win the EFL cup next season?\\n\\n> Manchester City\\n> Chelsea FC\\n> Liverpool\\n> Manchester United\\n> Arsenal\\n\\nNo acct?\\nSign up \\ud83d\\udc49 https:\\/\\/t.co\\/C1Qdss0pAK\\n\\n#NaijaBet #Pelosi #Taiwan #BambamSorry https:\\/\\/t.co\\/csNNINnmIS\",\"4944\":\"Me imagining how terrific World War III be. \\n#Taiwan #China #Pelosi https:\\/\\/t.co\\/HhiXO7ZmPy\",\"4945\":\"When other countries are boasting over military strength, what does Nigeria boast off?\\nRather Nigeria boast of eaten 'Agbado' in the morning and cassava in the Evening.\\n\\nIf e sub I go dey Gamez Planet dey chill\\n\\n#WorldWarIII #zackorji #China #Taiwan #PeterObiForPresident https:\\/\\/t.co\\/TdmyUy3XBp\",\"4946\":\"@firstladyship OBIdient Comrade Well Spoken #Taiwan #China #BBNaija #BBNaija7 #BBNaija7 #BBNaija2022 https:\\/\\/t.co\\/zkX2Sbg0bN\",\"4947\":\"US : WE ARE WITH YOU \\n\\n#WWIII https:\\/\\/t.co\\/6pzyCrCJWe\",\"4948\":\"@SpeakerPelosi @aaakhigbe Thanks Nancy! I am no fan yours, since I largely subscribe to Bernie's democratic socialism especially in health care, while still being a supporter of capitalism. However, I am advocate for democracy and freedoms. Thanks for standing up to the bullies. #Taiwan!\",\"4949\":\"Fight Videos You Missed\\ud83e\\udd4a\\nNever mess with an angry woman\\ud83d\\udcaa\\ud83d\\udd25\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa #helicopter https:\\/\\/t.co\\/ibD6jbcgbc\",\"4950\":\"@business China is fulfilling its promise https:\\/\\/t.co\\/6p4y5Dkfqh #Taiwan\",\"4951\":\"Available As Seen..\\nWhat You See,Is Always What You Get\\ud83d\\udc4c\\ud83c\\udffe\\nDm https:\\/\\/t.co\\/eIYo6IOEWV\\n\\nWorld War III #Tinubu Nkem Owoh Saheed Balogun BRT Lane Okowa Mr Bayo Pharmaceutical Groovy Rescue Nigeria Khalid Reno #BBNajiaS7 Lagos Sam Omatseye #Taiwan Ikorodu China https:\\/\\/t.co\\/1X3rwlfzDm\",\"4952\":\"But honestly I what to ask\\n\\nWhat's the US interest in #Taiwan ??\\n\\nThey seem bored if they don't cause commotions\\n\\nSmh \\ud83d\\udeb6\\ud83d\\udeb6\\ud83d\\udeb6\",\"4953\":\"Fight Videos You Missed\\ud83e\\udd4a\\n\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa #helicopter #SuperTuna_Jin #tuesdayvibe https:\\/\\/t.co\\/XigzZJDjZT\",\"4954\":\"it's cool to pocket 5m and support who ever one wants. this is democracy. But remember 'the country our fathers abused yesterday is taking its revenge on us currently & d country we abuse today will take its revenge on our children'. \\n#Taiwan\\n#China \\n#Obidatti023 https:\\/\\/t.co\\/ROTOrsvY71\",\"4955\":\"WE NEVER FORGET\\nSorrow Tears And Blood\\ud83e\\udd7a I love Fela\\n\\n#EndSARS #helicopter ASUU Rescue Nigeria #Taiwan #Tinubu #wike #peterObiForPresident #pelosi https:\\/\\/t.co\\/2KNksCfwdg\",\"4956\":\"Videos You Missed\\ud83e\\udd4a\\nThis girl child will definitely beat me to death\\ud83d\\ude2d\\ud83c\\udfc5\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette #Tembisa https:\\/\\/t.co\\/65H2indrwE\",\"4957\":\"BREAKING: China Sends Huge Numbers Of Arm Forces to Fujian Province Off The Coast Of Taiwan, Ahead Of Nancy Pelosi's Expected Visit To The Island. Meanwhile,U.S. Army Has Deployed Warships Near Taiwan. Is About Going Down Bloody If Care Is Not Taken. #Taiwan https:\\/\\/t.co\\/T7kgQYTzJ8\",\"4958\":\"Fight Videos You Missed\\ud83e\\udd4a\\nAbsolutely wow \\ud83d\\ude32\\nImagine dying from being stupid\\n\\n#fighting #fightschool #FightClub #fightingvideo #FightBack #fightnight #fighter #ViralVideo #viral #fighthub #Sheggz #BBNajia\\n#BBNaijaS7 #PiNetwork #China #Taiwan #dontpayuk #HuntedAU #bachelorette https:\\/\\/t.co\\/wGq0ra4JHP\",\"4959\":\"Money \\ud83e\\udd7a\\ud83d\\udcb0@carterefe__ @wandecoal @davido @wizkidayo @burnaboy @DPRINCEMAVIN @Omah_Lay @DONJAZZY @mreazi @Mayorkun @sydney_talker @SympLySimi @adekunleGOLD #badmanstoney #Taiwan #dontpayuk #asuu #EndSARS #helicopter #China #HuntedAU #tuesdayvibe #bachelorette https:\\/\\/t.co\\/JoHhIzFS0J\",\"4960\":\"\\ud83d\\udcb0\\u2714 If you stake \\u20a65000 on Nacional \\n\\n \\ud83d\\udcb8 NaijaBet will pay you \\u20a69,700\\n\\n\\ud83d\\udcb0\\u2714 If you stake \\u20a65000 on Atletico GO, you will get...\\n\\n\\ud83d\\udcb5 \\u20a620,500* on NaijaBet\\nPremier league #Pelosi #China #tuesdayvibe # https:\\/\\/t.co\\/24V0Z563Hz\",\"4961\":\"Am olamzy Richie #NewProfilePic #Taiwan #China #dontpayuk #worldwide #Tembisa https:\\/\\/t.co\\/mC1IGTqxZN\",\"4962\":\"New @mreazi tomorrow #personalbaby am ready\\n#ASUUstrike #ASUUStrikeUpdate #Taiwan #Pelosi #China #Wizkidfc #Machala\",\"4963\":\"Proscrow is coming with Real Estate solutions.\\n#Taiwan #ASUU #China #BambamSorry https:\\/\\/t.co\\/ut4fE6Z6FA\",\"4964\":\"A lot of people are really tired of the whole situation in this nation right now. \\ud83d\\ude02 \\ud83d\\ude02\\nThis is where we are now in #Nigeria #Taiwan #China #kpssdeikincifetoskandali #OBIDIENT https:\\/\\/t.co\\/YHkClDAdeG\",\"4965\":\"The ball is in your hand, #China\\n#pelositaiwan #Taiwan\",\"4966\":\"#Pelosi china president has said they soon booming Taiwan \\ud83c\\uddf9\\ud83c\\uddfc down after the visit of pelosi hope it won't lead to World War III \\ud83d\\ude4f\",\"4967\":\"#Educational_Post\\nHere are few CandleStick Pattern which will be very useful to Understand the Chart For Analysis. #Btc #Crypto #helicopter\\nShettima Akure Thug Reno Racism Deji Burna IPOB Rescue Nigeria #Taiwan #China https:\\/\\/t.co\\/Dp6PmdnfRH\",\"4968\":\"Dream big, but start small; do what you can do at a time. You\\u2019re likely to get overwhelmed if you try yo do it all at once. \\n\\n#nigerianbusiness #fintech #startup #lagosnigeria #nigerian #smallbusiness #Pelosi #lagos https:\\/\\/t.co\\/IrHVBZAtGj\",\"4969\":\"Head UDC Project 075 Hainan in the South China Sea\\n\\n #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/SuqnCpdGVH\",\"4970\":\"@JohnRoss43 War is coming \\ud83d\\udc94\\ud83d\\udc94 https:\\/\\/t.co\\/pJlGwWfryx #China #Taiwan\",\"4971\":\"In Nigerian Politics as of today, there is a name above every other name. That at the mention of Peter Obi @PeterObi, every mouth must talk. However, either criticism or praise, we're on our way to Presidency. #GetIntoAsoRock\\n\\n#Akure #Pelosi #China Saheed Balogun Rescue Nigeria https:\\/\\/t.co\\/1omjHcInPM\",\"4972\":\"China- No matter how people like #Pelosi act to support #Taiwan island and contain China, they can't stop #China's reunification process. Reunification must and will be achieved: Taiwan Affairs Office of the Communist Party of China Central Committee\\n#NancyPelosi #pelositaiwan https:\\/\\/t.co\\/u3VHsLGAP0\",\"4973\":\"According to Nostrademe, After the end of #WWIII comes a Millenial peace reign on Earth.....\\nThe Biblical Account says of the Millenial reign of Christ after his return!!!!!\\nIs it safe to say #ChristJesus will return during the #WWIII?\\n#Nostrademe says WWIII will last 27 years!!!\",\"4974\":\"@RonnyJacksonTX In other news https:\\/\\/t.co\\/pJlGwWfryx #Taiwan\",\"4975\":\"PLA Eastern Theater Command to hold joint military ops around Taiwan, with joint maritime & air drills in N, SW,SE of island, long-range artillery shooting in #Taiwan Straits, & conventional missile test firing in sea regions E of island starting Tue night: spokesperson\\n#China https:\\/\\/t.co\\/BVOXlr4uF0\",\"4976\":\"Human Rights Watch says that Kenya's failure to hold police accountable for allegedly killing dozens after the 2017 elections heightens the risk of officers abusing their power.\\n#China #Pelosi https:\\/\\/t.co\\/mo8Q7t3wg2\",\"4977\":\"@Reuters War is coming \\ud83d\\udc94 https:\\/\\/t.co\\/pJlGwWfryx #China #Taiwan\",\"4978\":\"The White House said that #US House Speaker Pelosi's visit to #Taiwan is not a violation of #China's sovereignty.\\n\\n #NancyPelosi #Taipei #Pelosi #ChinaTaiwanCrisis #China #pelositaiwan #Taiwan https:\\/\\/t.co\\/KPehr8eDvd\",\"4979\":\"Nancy Pelosi is a woman of steel! For someone who visited Tiananmen Square a year after the now-famous incident and unveiled a banner against the Chinese government, her action isn't surprising.\\n\\nNothing else to say. #Taiwan\",\"4980\":\"@nexta_tv They are fulfilling their promise\\ud83d\\udc94\\ud83e\\udd85https:\\/\\/t.co\\/pJlGwWfryx #Taiwan #China\",\"4981\":\"@accessbank_help you guys are the worst bank on earth! I literally cant do anything with my bank account! I can\\u2019t recharge or make transfers and yet you debit me for nothing without my notice! I wont stop calling you out everyday! #Pelosi #China #dontpayuk #Guerrilla1stWin\",\"4982\":\"@Stargazer_28671 #Pelosi welcome home. Lol\",\"4983\":\"TRENDING: US House Speaker Pelosi arrives in #Taiwan despite warnings from China\\n\\nNancy Pelosi, the speaker of the US House, arrived in Taiwan on Tuesday evening after days of increasingly severe threats from China, which have escalated tensions between the two nations. https:\\/\\/t.co\\/OhafhnOHNP\",\"4984\":\"World War III: \\\"China threatened to start World War III if Nancy Pelosi goes to Taiwan. Well, now Pelosi is currently in Taiwan. Is China just bluffing?\\\" \\n\\n#WWIII #Pelosi #China\",\"4985\":\"@disclosetv In other news https:\\/\\/t.co\\/pJlGwWfryx #China #taiwan\",\"4986\":\"#WWIII: are China and US ready? \\n\\n#Pelosi #China #taiwanwar\",\"4987\":\"If you are in Port Harcourt city why not rush to Sky Bar Oh every Thursday for a sip & Gossip night starting this Thursday........ Come taste luxury #phcity #portharcourt #Machala #Wizkidfc #Davido #Pelosi #OBIDIENTS https:\\/\\/t.co\\/o5IYOG2cGu\",\"4988\":\"The Neo-cons are eager edging for full blown WW3, you\\u2019re welcome those that play with fire perished by \\ud83d\\udd25 #Taiwan\",\"4989\":\"NO CAPTION \\ud83e\\udd10 we couldn\\u2019t decide which one to \\u201cDelete forever\\u201d \\u2026help us decide guysss\\ud83d\\ude05\\n#superfmph #soup #foodie #mrbayo #China #ASUU #lekki #Pelosi #stoplying #BBNaija https:\\/\\/t.co\\/zOwwS1AqzK\",\"4990\":\"#BREAKING #China army will conduct \\\"important\\\" military exercises and training activities, including live-fire drills in six regions surrounding #Taiwan, from Thursday to Sunday, according to local media https:\\/\\/t.co\\/QmblcXb8XR\",\"4991\":\"Some foreigners be treating us like we are trash when we have everything in Nigeria to compete against them NAIJA is pure vibes na just Bad government kill amPLEASE SAY NO 2 BAT AND YES 2 PO let's most of the foreigners know we are Nigerians WE STAND STRONG #Pelosi Rescue Nigera\",\"4992\":\"@MrGenius_Tips 7.87 odds\\n\\nCode:772616\\n\\nNaijaBet edit \\ud83d\\udc47\\nPlay here https:\\/\\/t.co\\/UhahxGgEdG \\nPremier league #Pelosi https:\\/\\/t.co\\/lde207mcTI\",\"4993\":\"@MrGenius_Tips 7.87 odds\\n\\nCode:772616\\n\\nNaijaBet edit \\ud83d\\udc47\\nPlay here https:\\/\\/t.co\\/UhahxGgEdG \\nPremier league #Pelosi https:\\/\\/t.co\\/x6FJ08mKpH\",\"4994\":\"@MrGenius_Tips 7.87 odds\\n\\nCode:772616\\n\\nNaijaBet edit \\ud83d\\udc47\\nPlay here https:\\/\\/t.co\\/UhahxGgEdG \\nPremier league #Pelosi\",\"4995\":\"Have you seen this offer?\\n\\nSam Omatseye | US Air Force | phyna and amaka | Saheed Balogun | The Chinese | HERE WE GO | Tribalism | BRT Lane #China #Pelosi #BoycottRakshaBandhanMovie #dontpayuk https:\\/\\/t.co\\/wimkbaMp6p\",\"4996\":\"Greetings Nft Family,I Just Listed My New Artwork, A Hand Drawn Illustration Of Oshun, African Primordial Diety And Goddess On @opensea Stories Of African Leaders Collection. Check It Out https:\\/\\/t.co\\/ccGYRz7I1S @Attractbysight #NFT #Pelosi #NFTCommunity #100Devs #drawing #nftart\",\"4997\":\"Wow!! This is lovely.... \\n\\n#AmberHeardIsAMonster #Pelosi #AmberHeardIsFinished #JohnnyDeppIsALegend https:\\/\\/t.co\\/I695L4ShPk\",\"4998\":\"Always remember that people will always admire the flowers and fruits. \\n\\nOnly the tree knows what it did to deepen its roots and absorb nutrients. \\n\\nFocus on the process not the results. \\n\\n#Governor #Rufai #arisetv #SportyBet #BigBella #OKOWA #PeterObiForPresident2023 #Pelosi\",\"4999\":\"China should just give up on #Taiwan @ChineseEmbinUS\"},\"truncated\":{\"0\":false,\"1\":false,\"2\":false,\"3\":false,\"4\":false,\"5\":false,\"6\":false,\"7\":false,\"8\":false,\"9\":false,\"10\":false,\"11\":false,\"12\":false,\"13\":false,\"14\":false,\"15\":false,\"16\":false,\"17\":false,\"18\":false,\"19\":false,\"20\":false,\"21\":false,\"22\":false,\"23\":false,\"24\":false,\"25\":false,\"26\":false,\"27\":false,\"28\":false,\"29\":false,\"30\":false,\"31\":false,\"32\":false,\"33\":false,\"34\":false,\"35\":false,\"36\":false,\"37\":false,\"38\":false,\"39\":false,\"40\":false,\"41\":false,\"42\":false,\"43\":false,\"44\":false,\"45\":false,\"46\":false,\"47\":false,\"48\":false,\"49\":false,\"50\":false,\"51\":false,\"52\":false,\"53\":false,\"54\":false,\"55\":false,\"56\":false,\"57\":false,\"58\":false,\"59\":false,\"60\":false,\"61\":false,\"62\":false,\"63\":false,\"64\":false,\"65\":false,\"66\":false,\"67\":false,\"68\":false,\"69\":false,\"70\":false,\"71\":false,\"72\":false,\"73\":false,\"74\":false,\"75\":false,\"76\":false,\"77\":false,\"78\":false,\"79\":false,\"80\":false,\"81\":false,\"82\":false,\"83\":false,\"84\":false,\"85\":false,\"86\":false,\"87\":false,\"88\":false,\"89\":false,\"90\":false,\"91\":false,\"92\":false,\"93\":false,\"94\":false,\"95\":false,\"96\":false,\"97\":false,\"98\":false,\"99\":false,\"100\":false,\"101\":false,\"102\":false,\"103\":false,\"104\":false,\"105\":false,\"106\":false,\"107\":false,\"108\":false,\"109\":false,\"110\":false,\"111\":false,\"112\":false,\"113\":false,\"114\":false,\"115\":false,\"116\":false,\"117\":false,\"118\":false,\"119\":false,\"120\":false,\"121\":false,\"122\":false,\"123\":false,\"124\":false,\"125\":false,\"126\":false,\"127\":false,\"128\":false,\"129\":false,\"130\":false,\"131\":false,\"132\":false,\"133\":false,\"134\":false,\"135\":false,\"136\":false,\"137\":false,\"138\":false,\"139\":false,\"140\":false,\"141\":false,\"142\":false,\"143\":false,\"144\":false,\"145\":false,\"146\":false,\"147\":false,\"148\":false,\"149\":false,\"150\":false,\"151\":false,\"152\":false,\"153\":false,\"154\":false,\"155\":false,\"156\":false,\"157\":false,\"158\":false,\"159\":false,\"160\":false,\"161\":false,\"162\":false,\"163\":false,\"164\":false,\"165\":false,\"166\":false,\"167\":false,\"168\":false,\"169\":false,\"170\":false,\"171\":false,\"172\":false,\"173\":false,\"174\":false,\"175\":false,\"176\":false,\"177\":false,\"178\":false,\"179\":false,\"180\":false,\"181\":false,\"182\":false,\"183\":false,\"184\":false,\"185\":false,\"186\":false,\"187\":false,\"188\":false,\"189\":false,\"190\":false,\"191\":false,\"192\":false,\"193\":false,\"194\":false,\"195\":false,\"196\":false,\"197\":false,\"198\":false,\"199\":false,\"200\":false,\"201\":false,\"202\":false,\"203\":false,\"204\":false,\"205\":false,\"206\":false,\"207\":false,\"208\":false,\"209\":false,\"210\":false,\"211\":false,\"212\":false,\"213\":false,\"214\":false,\"215\":false,\"216\":false,\"217\":false,\"218\":false,\"219\":false,\"220\":false,\"221\":false,\"222\":false,\"223\":false,\"224\":false,\"225\":false,\"226\":false,\"227\":false,\"228\":false,\"229\":false,\"230\":false,\"231\":false,\"232\":false,\"233\":false,\"234\":false,\"235\":false,\"236\":false,\"237\":false,\"238\":false,\"239\":false,\"240\":false,\"241\":false,\"242\":false,\"243\":false,\"244\":false,\"245\":false,\"246\":false,\"247\":false,\"248\":false,\"249\":false,\"250\":false,\"251\":false,\"252\":false,\"253\":false,\"254\":false,\"255\":false,\"256\":false,\"257\":false,\"258\":false,\"259\":false,\"260\":false,\"261\":false,\"262\":false,\"263\":false,\"264\":false,\"265\":false,\"266\":false,\"267\":false,\"268\":false,\"269\":false,\"270\":false,\"271\":false,\"272\":false,\"273\":false,\"274\":false,\"275\":false,\"276\":false,\"277\":false,\"278\":false,\"279\":false,\"280\":false,\"281\":false,\"282\":false,\"283\":false,\"284\":false,\"285\":false,\"286\":false,\"287\":false,\"288\":false,\"289\":false,\"290\":false,\"291\":false,\"292\":false,\"293\":false,\"294\":false,\"295\":false,\"296\":false,\"297\":false,\"298\":false,\"299\":false,\"300\":false,\"301\":false,\"302\":false,\"303\":false,\"304\":false,\"305\":false,\"306\":false,\"307\":false,\"308\":false,\"309\":false,\"310\":false,\"311\":false,\"312\":false,\"313\":false,\"314\":false,\"315\":false,\"316\":false,\"317\":false,\"318\":false,\"319\":false,\"320\":false,\"321\":false,\"322\":false,\"323\":false,\"324\":false,\"325\":false,\"326\":false,\"327\":false,\"328\":false,\"329\":false,\"330\":false,\"331\":false,\"332\":false,\"333\":false,\"334\":false,\"335\":false,\"336\":false,\"337\":false,\"338\":false,\"339\":false,\"340\":false,\"341\":false,\"342\":false,\"343\":false,\"344\":false,\"345\":false,\"346\":false,\"347\":false,\"348\":false,\"349\":false,\"350\":false,\"351\":false,\"352\":false,\"353\":false,\"354\":false,\"355\":false,\"356\":false,\"357\":false,\"358\":false,\"359\":false,\"360\":false,\"361\":false,\"362\":false,\"363\":false,\"364\":false,\"365\":false,\"366\":false,\"367\":false,\"368\":false,\"369\":false,\"370\":false,\"371\":false,\"372\":false,\"373\":false,\"374\":false,\"375\":false,\"376\":false,\"377\":false,\"378\":false,\"379\":false,\"380\":false,\"381\":false,\"382\":false,\"383\":false,\"384\":false,\"385\":false,\"386\":false,\"387\":false,\"388\":false,\"389\":false,\"390\":false,\"391\":false,\"392\":false,\"393\":false,\"394\":false,\"395\":false,\"396\":false,\"397\":false,\"398\":false,\"399\":false,\"400\":false,\"401\":false,\"402\":false,\"403\":false,\"404\":false,\"405\":false,\"406\":false,\"407\":false,\"408\":false,\"409\":false,\"410\":false,\"411\":false,\"412\":false,\"413\":false,\"414\":false,\"415\":false,\"416\":false,\"417\":false,\"418\":false,\"419\":false,\"420\":false,\"421\":false,\"422\":false,\"423\":false,\"424\":false,\"425\":false,\"426\":false,\"427\":false,\"428\":false,\"429\":false,\"430\":false,\"431\":false,\"432\":false,\"433\":false,\"434\":false,\"435\":false,\"436\":false,\"437\":false,\"438\":false,\"439\":false,\"440\":false,\"441\":false,\"442\":false,\"443\":false,\"444\":false,\"445\":false,\"446\":false,\"447\":false,\"448\":false,\"449\":false,\"450\":false,\"451\":false,\"452\":false,\"453\":false,\"454\":false,\"455\":false,\"456\":false,\"457\":false,\"458\":false,\"459\":false,\"460\":false,\"461\":false,\"462\":false,\"463\":false,\"464\":false,\"465\":false,\"466\":false,\"467\":false,\"468\":false,\"469\":false,\"470\":false,\"471\":false,\"472\":false,\"473\":false,\"474\":false,\"475\":false,\"476\":false,\"477\":false,\"478\":false,\"479\":false,\"480\":false,\"481\":false,\"482\":false,\"483\":false,\"484\":false,\"485\":false,\"486\":false,\"487\":false,\"488\":false,\"489\":false,\"490\":false,\"491\":false,\"492\":false,\"493\":false,\"494\":false,\"495\":false,\"496\":false,\"497\":false,\"498\":false,\"499\":false,\"500\":false,\"501\":false,\"502\":false,\"503\":false,\"504\":false,\"505\":false,\"506\":false,\"507\":false,\"508\":false,\"509\":false,\"510\":false,\"511\":false,\"512\":false,\"513\":false,\"514\":false,\"515\":false,\"516\":false,\"517\":false,\"518\":false,\"519\":false,\"520\":false,\"521\":false,\"522\":false,\"523\":false,\"524\":false,\"525\":false,\"526\":false,\"527\":false,\"528\":false,\"529\":false,\"530\":false,\"531\":false,\"532\":false,\"533\":false,\"534\":false,\"535\":false,\"536\":false,\"537\":false,\"538\":false,\"539\":false,\"540\":false,\"541\":false,\"542\":false,\"543\":false,\"544\":false,\"545\":false,\"546\":false,\"547\":false,\"548\":false,\"549\":false,\"550\":false,\"551\":false,\"552\":false,\"553\":false,\"554\":false,\"555\":false,\"556\":false,\"557\":false,\"558\":false,\"559\":false,\"560\":false,\"561\":false,\"562\":false,\"563\":false,\"564\":false,\"565\":false,\"566\":false,\"567\":false,\"568\":false,\"569\":false,\"570\":false,\"571\":false,\"572\":false,\"573\":false,\"574\":false,\"575\":false,\"576\":false,\"577\":false,\"578\":false,\"579\":false,\"580\":false,\"581\":false,\"582\":false,\"583\":false,\"584\":false,\"585\":false,\"586\":false,\"587\":false,\"588\":false,\"589\":false,\"590\":false,\"591\":false,\"592\":false,\"593\":false,\"594\":false,\"595\":false,\"596\":false,\"597\":false,\"598\":false,\"599\":false,\"600\":false,\"601\":false,\"602\":false,\"603\":false,\"604\":false,\"605\":false,\"606\":false,\"607\":false,\"608\":false,\"609\":false,\"610\":false,\"611\":false,\"612\":false,\"613\":false,\"614\":false,\"615\":false,\"616\":false,\"617\":false,\"618\":false,\"619\":false,\"620\":false,\"621\":false,\"622\":false,\"623\":false,\"624\":false,\"625\":false,\"626\":false,\"627\":false,\"628\":false,\"629\":false,\"630\":false,\"631\":false,\"632\":false,\"633\":false,\"634\":false,\"635\":false,\"636\":false,\"637\":false,\"638\":false,\"639\":false,\"640\":false,\"641\":false,\"642\":false,\"643\":false,\"644\":false,\"645\":false,\"646\":false,\"647\":false,\"648\":false,\"649\":false,\"650\":false,\"651\":false,\"652\":false,\"653\":false,\"654\":false,\"655\":false,\"656\":false,\"657\":false,\"658\":false,\"659\":false,\"660\":false,\"661\":false,\"662\":false,\"663\":false,\"664\":false,\"665\":false,\"666\":false,\"667\":false,\"668\":false,\"669\":false,\"670\":false,\"671\":false,\"672\":false,\"673\":false,\"674\":false,\"675\":false,\"676\":false,\"677\":false,\"678\":false,\"679\":false,\"680\":false,\"681\":false,\"682\":false,\"683\":false,\"684\":false,\"685\":false,\"686\":false,\"687\":false,\"688\":false,\"689\":false,\"690\":false,\"691\":false,\"692\":false,\"693\":false,\"694\":false,\"695\":false,\"696\":false,\"697\":false,\"698\":false,\"699\":false,\"700\":false,\"701\":false,\"702\":false,\"703\":false,\"704\":false,\"705\":false,\"706\":false,\"707\":false,\"708\":false,\"709\":false,\"710\":false,\"711\":false,\"712\":false,\"713\":false,\"714\":false,\"715\":false,\"716\":false,\"717\":false,\"718\":false,\"719\":false,\"720\":false,\"721\":false,\"722\":false,\"723\":false,\"724\":false,\"725\":false,\"726\":false,\"727\":false,\"728\":false,\"729\":false,\"730\":false,\"731\":false,\"732\":false,\"733\":false,\"734\":false,\"735\":false,\"736\":false,\"737\":false,\"738\":false,\"739\":false,\"740\":false,\"741\":false,\"742\":false,\"743\":false,\"744\":false,\"745\":false,\"746\":false,\"747\":false,\"748\":false,\"749\":false,\"750\":false,\"751\":false,\"752\":false,\"753\":false,\"754\":false,\"755\":false,\"756\":false,\"757\":false,\"758\":false,\"759\":false,\"760\":false,\"761\":false,\"762\":false,\"763\":false,\"764\":false,\"765\":false,\"766\":false,\"767\":false,\"768\":false,\"769\":false,\"770\":false,\"771\":false,\"772\":false,\"773\":false,\"774\":false,\"775\":false,\"776\":false,\"777\":false,\"778\":false,\"779\":false,\"780\":false,\"781\":false,\"782\":false,\"783\":false,\"784\":false,\"785\":false,\"786\":false,\"787\":false,\"788\":false,\"789\":false,\"790\":false,\"791\":false,\"792\":false,\"793\":false,\"794\":false,\"795\":false,\"796\":false,\"797\":false,\"798\":false,\"799\":false,\"800\":false,\"801\":false,\"802\":false,\"803\":false,\"804\":false,\"805\":false,\"806\":false,\"807\":false,\"808\":false,\"809\":false,\"810\":false,\"811\":false,\"812\":false,\"813\":false,\"814\":false,\"815\":false,\"816\":false,\"817\":false,\"818\":false,\"819\":false,\"820\":false,\"821\":false,\"822\":false,\"823\":false,\"824\":false,\"825\":false,\"826\":false,\"827\":false,\"828\":false,\"829\":false,\"830\":false,\"831\":false,\"832\":false,\"833\":false,\"834\":false,\"835\":false,\"836\":false,\"837\":false,\"838\":false,\"839\":false,\"840\":false,\"841\":false,\"842\":false,\"843\":false,\"844\":false,\"845\":false,\"846\":false,\"847\":false,\"848\":false,\"849\":false,\"850\":false,\"851\":false,\"852\":false,\"853\":false,\"854\":false,\"855\":false,\"856\":false,\"857\":false,\"858\":false,\"859\":false,\"860\":false,\"861\":false,\"862\":false,\"863\":false,\"864\":false,\"865\":false,\"866\":false,\"867\":false,\"868\":false,\"869\":false,\"870\":false,\"871\":false,\"872\":false,\"873\":false,\"874\":false,\"875\":false,\"876\":false,\"877\":false,\"878\":false,\"879\":false,\"880\":false,\"881\":false,\"882\":false,\"883\":false,\"884\":false,\"885\":false,\"886\":false,\"887\":false,\"888\":false,\"889\":false,\"890\":false,\"891\":false,\"892\":false,\"893\":false,\"894\":false,\"895\":false,\"896\":false,\"897\":false,\"898\":false,\"899\":false,\"900\":false,\"901\":false,\"902\":false,\"903\":false,\"904\":false,\"905\":false,\"906\":false,\"907\":false,\"908\":false,\"909\":false,\"910\":false,\"911\":false,\"912\":false,\"913\":false,\"914\":false,\"915\":false,\"916\":false,\"917\":false,\"918\":false,\"919\":false,\"920\":false,\"921\":false,\"922\":false,\"923\":false,\"924\":false,\"925\":false,\"926\":false,\"927\":false,\"928\":false,\"929\":false,\"930\":false,\"931\":false,\"932\":false,\"933\":false,\"934\":false,\"935\":false,\"936\":false,\"937\":false,\"938\":false,\"939\":false,\"940\":false,\"941\":false,\"942\":false,\"943\":false,\"944\":false,\"945\":false,\"946\":false,\"947\":false,\"948\":false,\"949\":false,\"950\":false,\"951\":false,\"952\":false,\"953\":false,\"954\":false,\"955\":false,\"956\":false,\"957\":false,\"958\":false,\"959\":false,\"960\":false,\"961\":false,\"962\":false,\"963\":false,\"964\":false,\"965\":false,\"966\":false,\"967\":false,\"968\":false,\"969\":false,\"970\":false,\"971\":false,\"972\":false,\"973\":false,\"974\":false,\"975\":false,\"976\":false,\"977\":false,\"978\":false,\"979\":false,\"980\":false,\"981\":false,\"982\":false,\"983\":false,\"984\":false,\"985\":false,\"986\":false,\"987\":false,\"988\":false,\"989\":false,\"990\":false,\"991\":false,\"992\":false,\"993\":false,\"994\":false,\"995\":false,\"996\":false,\"997\":false,\"998\":false,\"999\":false,\"1000\":false,\"1001\":false,\"1002\":false,\"1003\":false,\"1004\":false,\"1005\":false,\"1006\":false,\"1007\":false,\"1008\":false,\"1009\":false,\"1010\":false,\"1011\":false,\"1012\":false,\"1013\":false,\"1014\":false,\"1015\":false,\"1016\":false,\"1017\":false,\"1018\":false,\"1019\":false,\"1020\":false,\"1021\":false,\"1022\":false,\"1023\":false,\"1024\":false,\"1025\":false,\"1026\":false,\"1027\":false,\"1028\":false,\"1029\":false,\"1030\":false,\"1031\":false,\"1032\":false,\"1033\":false,\"1034\":false,\"1035\":false,\"1036\":false,\"1037\":false,\"1038\":false,\"1039\":false,\"1040\":false,\"1041\":false,\"1042\":false,\"1043\":false,\"1044\":false,\"1045\":false,\"1046\":false,\"1047\":false,\"1048\":false,\"1049\":false,\"1050\":false,\"1051\":false,\"1052\":false,\"1053\":false,\"1054\":false,\"1055\":false,\"1056\":false,\"1057\":false,\"1058\":false,\"1059\":false,\"1060\":false,\"1061\":false,\"1062\":false,\"1063\":false,\"1064\":false,\"1065\":false,\"1066\":false,\"1067\":false,\"1068\":false,\"1069\":false,\"1070\":false,\"1071\":false,\"1072\":false,\"1073\":false,\"1074\":false,\"1075\":false,\"1076\":false,\"1077\":false,\"1078\":false,\"1079\":false,\"1080\":false,\"1081\":false,\"1082\":false,\"1083\":false,\"1084\":false,\"1085\":false,\"1086\":false,\"1087\":false,\"1088\":false,\"1089\":false,\"1090\":false,\"1091\":false,\"1092\":false,\"1093\":false,\"1094\":false,\"1095\":false,\"1096\":false,\"1097\":false,\"1098\":false,\"1099\":false,\"1100\":false,\"1101\":false,\"1102\":false,\"1103\":false,\"1104\":false,\"1105\":false,\"1106\":false,\"1107\":false,\"1108\":false,\"1109\":false,\"1110\":false,\"1111\":false,\"1112\":false,\"1113\":false,\"1114\":false,\"1115\":false,\"1116\":false,\"1117\":false,\"1118\":false,\"1119\":false,\"1120\":false,\"1121\":false,\"1122\":false,\"1123\":false,\"1124\":false,\"1125\":false,\"1126\":false,\"1127\":false,\"1128\":false,\"1129\":false,\"1130\":false,\"1131\":false,\"1132\":false,\"1133\":false,\"1134\":false,\"1135\":false,\"1136\":false,\"1137\":false,\"1138\":false,\"1139\":false,\"1140\":false,\"1141\":false,\"1142\":false,\"1143\":false,\"1144\":false,\"1145\":false,\"1146\":false,\"1147\":false,\"1148\":false,\"1149\":false,\"1150\":false,\"1151\":false,\"1152\":false,\"1153\":false,\"1154\":false,\"1155\":false,\"1156\":false,\"1157\":false,\"1158\":false,\"1159\":false,\"1160\":false,\"1161\":false,\"1162\":false,\"1163\":false,\"1164\":false,\"1165\":false,\"1166\":false,\"1167\":false,\"1168\":false,\"1169\":false,\"1170\":false,\"1171\":false,\"1172\":false,\"1173\":false,\"1174\":false,\"1175\":false,\"1176\":false,\"1177\":false,\"1178\":false,\"1179\":false,\"1180\":false,\"1181\":false,\"1182\":false,\"1183\":false,\"1184\":false,\"1185\":false,\"1186\":false,\"1187\":false,\"1188\":false,\"1189\":false,\"1190\":false,\"1191\":false,\"1192\":false,\"1193\":false,\"1194\":false,\"1195\":false,\"1196\":false,\"1197\":false,\"1198\":false,\"1199\":false,\"1200\":false,\"1201\":false,\"1202\":false,\"1203\":false,\"1204\":false,\"1205\":false,\"1206\":false,\"1207\":false,\"1208\":false,\"1209\":false,\"1210\":false,\"1211\":false,\"1212\":false,\"1213\":false,\"1214\":false,\"1215\":false,\"1216\":false,\"1217\":false,\"1218\":false,\"1219\":false,\"1220\":false,\"1221\":false,\"1222\":false,\"1223\":false,\"1224\":false,\"1225\":false,\"1226\":false,\"1227\":false,\"1228\":false,\"1229\":false,\"1230\":false,\"1231\":false,\"1232\":false,\"1233\":false,\"1234\":false,\"1235\":false,\"1236\":false,\"1237\":false,\"1238\":false,\"1239\":false,\"1240\":false,\"1241\":false,\"1242\":false,\"1243\":false,\"1244\":false,\"1245\":false,\"1246\":false,\"1247\":false,\"1248\":false,\"1249\":false,\"1250\":false,\"1251\":false,\"1252\":false,\"1253\":false,\"1254\":false,\"1255\":false,\"1256\":false,\"1257\":false,\"1258\":false,\"1259\":false,\"1260\":false,\"1261\":false,\"1262\":false,\"1263\":false,\"1264\":false,\"1265\":false,\"1266\":false,\"1267\":false,\"1268\":false,\"1269\":false,\"1270\":false,\"1271\":false,\"1272\":false,\"1273\":false,\"1274\":false,\"1275\":false,\"1276\":false,\"1277\":false,\"1278\":false,\"1279\":false,\"1280\":false,\"1281\":false,\"1282\":false,\"1283\":false,\"1284\":false,\"1285\":false,\"1286\":false,\"1287\":false,\"1288\":false,\"1289\":false,\"1290\":false,\"1291\":false,\"1292\":false,\"1293\":false,\"1294\":false,\"1295\":false,\"1296\":false,\"1297\":false,\"1298\":false,\"1299\":false,\"1300\":false,\"1301\":false,\"1302\":false,\"1303\":false,\"1304\":false,\"1305\":false,\"1306\":false,\"1307\":false,\"1308\":false,\"1309\":false,\"1310\":false,\"1311\":false,\"1312\":false,\"1313\":false,\"1314\":false,\"1315\":false,\"1316\":false,\"1317\":false,\"1318\":false,\"1319\":false,\"1320\":false,\"1321\":false,\"1322\":false,\"1323\":false,\"1324\":false,\"1325\":false,\"1326\":false,\"1327\":false,\"1328\":false,\"1329\":false,\"1330\":false,\"1331\":false,\"1332\":false,\"1333\":false,\"1334\":false,\"1335\":false,\"1336\":false,\"1337\":false,\"1338\":false,\"1339\":false,\"1340\":false,\"1341\":false,\"1342\":false,\"1343\":false,\"1344\":false,\"1345\":false,\"1346\":false,\"1347\":false,\"1348\":false,\"1349\":false,\"1350\":false,\"1351\":false,\"1352\":false,\"1353\":false,\"1354\":false,\"1355\":false,\"1356\":false,\"1357\":false,\"1358\":false,\"1359\":false,\"1360\":false,\"1361\":false,\"1362\":false,\"1363\":false,\"1364\":false,\"1365\":false,\"1366\":false,\"1367\":false,\"1368\":false,\"1369\":false,\"1370\":false,\"1371\":false,\"1372\":false,\"1373\":false,\"1374\":false,\"1375\":false,\"1376\":false,\"1377\":false,\"1378\":false,\"1379\":false,\"1380\":false,\"1381\":false,\"1382\":false,\"1383\":false,\"1384\":false,\"1385\":false,\"1386\":false,\"1387\":false,\"1388\":false,\"1389\":false,\"1390\":false,\"1391\":false,\"1392\":false,\"1393\":false,\"1394\":false,\"1395\":false,\"1396\":false,\"1397\":false,\"1398\":false,\"1399\":false,\"1400\":false,\"1401\":false,\"1402\":false,\"1403\":false,\"1404\":false,\"1405\":false,\"1406\":false,\"1407\":false,\"1408\":false,\"1409\":false,\"1410\":false,\"1411\":false,\"1412\":false,\"1413\":false,\"1414\":false,\"1415\":false,\"1416\":false,\"1417\":false,\"1418\":false,\"1419\":false,\"1420\":false,\"1421\":false,\"1422\":false,\"1423\":false,\"1424\":false,\"1425\":false,\"1426\":false,\"1427\":false,\"1428\":false,\"1429\":false,\"1430\":false,\"1431\":false,\"1432\":false,\"1433\":false,\"1434\":false,\"1435\":false,\"1436\":false,\"1437\":false,\"1438\":false,\"1439\":false,\"1440\":false,\"1441\":false,\"1442\":false,\"1443\":false,\"1444\":false,\"1445\":false,\"1446\":false,\"1447\":false,\"1448\":false,\"1449\":false,\"1450\":false,\"1451\":false,\"1452\":false,\"1453\":false,\"1454\":false,\"1455\":false,\"1456\":false,\"1457\":false,\"1458\":false,\"1459\":false,\"1460\":false,\"1461\":false,\"1462\":false,\"1463\":false,\"1464\":false,\"1465\":false,\"1466\":false,\"1467\":false,\"1468\":false,\"1469\":false,\"1470\":false,\"1471\":false,\"1472\":false,\"1473\":false,\"1474\":false,\"1475\":false,\"1476\":false,\"1477\":false,\"1478\":false,\"1479\":false,\"1480\":false,\"1481\":false,\"1482\":false,\"1483\":false,\"1484\":false,\"1485\":false,\"1486\":false,\"1487\":false,\"1488\":false,\"1489\":false,\"1490\":false,\"1491\":false,\"1492\":false,\"1493\":false,\"1494\":false,\"1495\":false,\"1496\":false,\"1497\":false,\"1498\":false,\"1499\":false,\"1500\":false,\"1501\":false,\"1502\":false,\"1503\":false,\"1504\":false,\"1505\":false,\"1506\":false,\"1507\":false,\"1508\":false,\"1509\":false,\"1510\":false,\"1511\":false,\"1512\":false,\"1513\":false,\"1514\":false,\"1515\":false,\"1516\":false,\"1517\":false,\"1518\":false,\"1519\":false,\"1520\":false,\"1521\":false,\"1522\":false,\"1523\":false,\"1524\":false,\"1525\":false,\"1526\":false,\"1527\":false,\"1528\":false,\"1529\":false,\"1530\":false,\"1531\":false,\"1532\":false,\"1533\":false,\"1534\":false,\"1535\":false,\"1536\":false,\"1537\":false,\"1538\":false,\"1539\":false,\"1540\":false,\"1541\":false,\"1542\":false,\"1543\":false,\"1544\":false,\"1545\":false,\"1546\":false,\"1547\":false,\"1548\":false,\"1549\":false,\"1550\":false,\"1551\":false,\"1552\":false,\"1553\":false,\"1554\":false,\"1555\":false,\"1556\":false,\"1557\":false,\"1558\":false,\"1559\":false,\"1560\":false,\"1561\":false,\"1562\":false,\"1563\":false,\"1564\":false,\"1565\":false,\"1566\":false,\"1567\":false,\"1568\":false,\"1569\":false,\"1570\":false,\"1571\":false,\"1572\":false,\"1573\":false,\"1574\":false,\"1575\":false,\"1576\":false,\"1577\":false,\"1578\":false,\"1579\":false,\"1580\":false,\"1581\":false,\"1582\":false,\"1583\":false,\"1584\":false,\"1585\":false,\"1586\":false,\"1587\":false,\"1588\":false,\"1589\":false,\"1590\":false,\"1591\":false,\"1592\":false,\"1593\":false,\"1594\":false,\"1595\":false,\"1596\":false,\"1597\":false,\"1598\":false,\"1599\":false,\"1600\":false,\"1601\":false,\"1602\":false,\"1603\":false,\"1604\":false,\"1605\":false,\"1606\":false,\"1607\":false,\"1608\":false,\"1609\":false,\"1610\":false,\"1611\":false,\"1612\":false,\"1613\":false,\"1614\":false,\"1615\":false,\"1616\":false,\"1617\":false,\"1618\":false,\"1619\":false,\"1620\":false,\"1621\":false,\"1622\":false,\"1623\":false,\"1624\":false,\"1625\":false,\"1626\":false,\"1627\":false,\"1628\":false,\"1629\":false,\"1630\":false,\"1631\":false,\"1632\":false,\"1633\":false,\"1634\":false,\"1635\":false,\"1636\":false,\"1637\":false,\"1638\":false,\"1639\":false,\"1640\":false,\"1641\":false,\"1642\":false,\"1643\":false,\"1644\":false,\"1645\":false,\"1646\":false,\"1647\":false,\"1648\":false,\"1649\":false,\"1650\":false,\"1651\":false,\"1652\":false,\"1653\":false,\"1654\":false,\"1655\":false,\"1656\":false,\"1657\":false,\"1658\":false,\"1659\":false,\"1660\":false,\"1661\":false,\"1662\":false,\"1663\":false,\"1664\":false,\"1665\":false,\"1666\":false,\"1667\":false,\"1668\":false,\"1669\":false,\"1670\":false,\"1671\":false,\"1672\":false,\"1673\":false,\"1674\":false,\"1675\":false,\"1676\":false,\"1677\":false,\"1678\":false,\"1679\":false,\"1680\":false,\"1681\":false,\"1682\":false,\"1683\":false,\"1684\":false,\"1685\":false,\"1686\":false,\"1687\":false,\"1688\":false,\"1689\":false,\"1690\":false,\"1691\":false,\"1692\":false,\"1693\":false,\"1694\":false,\"1695\":false,\"1696\":false,\"1697\":false,\"1698\":false,\"1699\":false,\"1700\":false,\"1701\":false,\"1702\":false,\"1703\":false,\"1704\":false,\"1705\":false,\"1706\":false,\"1707\":false,\"1708\":false,\"1709\":false,\"1710\":false,\"1711\":false,\"1712\":false,\"1713\":false,\"1714\":false,\"1715\":false,\"1716\":false,\"1717\":false,\"1718\":false,\"1719\":false,\"1720\":false,\"1721\":false,\"1722\":false,\"1723\":false,\"1724\":false,\"1725\":false,\"1726\":false,\"1727\":false,\"1728\":false,\"1729\":false,\"1730\":false,\"1731\":false,\"1732\":false,\"1733\":false,\"1734\":false,\"1735\":false,\"1736\":false,\"1737\":false,\"1738\":false,\"1739\":false,\"1740\":false,\"1741\":false,\"1742\":false,\"1743\":false,\"1744\":false,\"1745\":false,\"1746\":false,\"1747\":false,\"1748\":false,\"1749\":false,\"1750\":false,\"1751\":false,\"1752\":false,\"1753\":false,\"1754\":false,\"1755\":false,\"1756\":false,\"1757\":false,\"1758\":false,\"1759\":false,\"1760\":false,\"1761\":false,\"1762\":false,\"1763\":false,\"1764\":false,\"1765\":false,\"1766\":false,\"1767\":false,\"1768\":false,\"1769\":false,\"1770\":false,\"1771\":false,\"1772\":false,\"1773\":false,\"1774\":false,\"1775\":false,\"1776\":false,\"1777\":false,\"1778\":false,\"1779\":false,\"1780\":false,\"1781\":false,\"1782\":false,\"1783\":false,\"1784\":false,\"1785\":false,\"1786\":false,\"1787\":false,\"1788\":false,\"1789\":false,\"1790\":false,\"1791\":false,\"1792\":false,\"1793\":false,\"1794\":false,\"1795\":false,\"1796\":false,\"1797\":false,\"1798\":false,\"1799\":false,\"1800\":false,\"1801\":false,\"1802\":false,\"1803\":false,\"1804\":false,\"1805\":false,\"1806\":false,\"1807\":false,\"1808\":false,\"1809\":false,\"1810\":false,\"1811\":false,\"1812\":false,\"1813\":false,\"1814\":false,\"1815\":false,\"1816\":false,\"1817\":false,\"1818\":false,\"1819\":false,\"1820\":false,\"1821\":false,\"1822\":false,\"1823\":false,\"1824\":false,\"1825\":false,\"1826\":false,\"1827\":false,\"1828\":false,\"1829\":false,\"1830\":false,\"1831\":false,\"1832\":false,\"1833\":false,\"1834\":false,\"1835\":false,\"1836\":false,\"1837\":false,\"1838\":false,\"1839\":false,\"1840\":false,\"1841\":false,\"1842\":false,\"1843\":false,\"1844\":false,\"1845\":false,\"1846\":false,\"1847\":false,\"1848\":false,\"1849\":false,\"1850\":false,\"1851\":false,\"1852\":false,\"1853\":false,\"1854\":false,\"1855\":false,\"1856\":false,\"1857\":false,\"1858\":false,\"1859\":false,\"1860\":false,\"1861\":false,\"1862\":false,\"1863\":false,\"1864\":false,\"1865\":false,\"1866\":false,\"1867\":false,\"1868\":false,\"1869\":false,\"1870\":false,\"1871\":false,\"1872\":false,\"1873\":false,\"1874\":false,\"1875\":false,\"1876\":false,\"1877\":false,\"1878\":false,\"1879\":false,\"1880\":false,\"1881\":false,\"1882\":false,\"1883\":false,\"1884\":false,\"1885\":false,\"1886\":false,\"1887\":false,\"1888\":false,\"1889\":false,\"1890\":false,\"1891\":false,\"1892\":false,\"1893\":false,\"1894\":false,\"1895\":false,\"1896\":false,\"1897\":false,\"1898\":false,\"1899\":false,\"1900\":false,\"1901\":false,\"1902\":false,\"1903\":false,\"1904\":false,\"1905\":false,\"1906\":false,\"1907\":false,\"1908\":false,\"1909\":false,\"1910\":false,\"1911\":false,\"1912\":false,\"1913\":false,\"1914\":false,\"1915\":false,\"1916\":false,\"1917\":false,\"1918\":false,\"1919\":false,\"1920\":false,\"1921\":false,\"1922\":false,\"1923\":false,\"1924\":false,\"1925\":false,\"1926\":false,\"1927\":false,\"1928\":false,\"1929\":false,\"1930\":false,\"1931\":false,\"1932\":false,\"1933\":false,\"1934\":false,\"1935\":false,\"1936\":false,\"1937\":false,\"1938\":false,\"1939\":false,\"1940\":false,\"1941\":false,\"1942\":false,\"1943\":false,\"1944\":false,\"1945\":false,\"1946\":false,\"1947\":false,\"1948\":false,\"1949\":false,\"1950\":false,\"1951\":false,\"1952\":false,\"1953\":false,\"1954\":false,\"1955\":false,\"1956\":false,\"1957\":false,\"1958\":false,\"1959\":false,\"1960\":false,\"1961\":false,\"1962\":false,\"1963\":false,\"1964\":false,\"1965\":false,\"1966\":false,\"1967\":false,\"1968\":false,\"1969\":false,\"1970\":false,\"1971\":false,\"1972\":false,\"1973\":false,\"1974\":false,\"1975\":false,\"1976\":false,\"1977\":false,\"1978\":false,\"1979\":false,\"1980\":false,\"1981\":false,\"1982\":false,\"1983\":false,\"1984\":false,\"1985\":false,\"1986\":false,\"1987\":false,\"1988\":false,\"1989\":false,\"1990\":false,\"1991\":false,\"1992\":false,\"1993\":false,\"1994\":false,\"1995\":false,\"1996\":false,\"1997\":false,\"1998\":false,\"1999\":false,\"2000\":false,\"2001\":false,\"2002\":false,\"2003\":false,\"2004\":false,\"2005\":false,\"2006\":false,\"2007\":false,\"2008\":false,\"2009\":false,\"2010\":false,\"2011\":false,\"2012\":false,\"2013\":false,\"2014\":false,\"2015\":false,\"2016\":false,\"2017\":false,\"2018\":false,\"2019\":false,\"2020\":false,\"2021\":false,\"2022\":false,\"2023\":false,\"2024\":false,\"2025\":false,\"2026\":false,\"2027\":false,\"2028\":false,\"2029\":false,\"2030\":false,\"2031\":false,\"2032\":false,\"2033\":false,\"2034\":false,\"2035\":false,\"2036\":false,\"2037\":false,\"2038\":false,\"2039\":false,\"2040\":false,\"2041\":false,\"2042\":false,\"2043\":false,\"2044\":false,\"2045\":false,\"2046\":false,\"2047\":false,\"2048\":false,\"2049\":false,\"2050\":false,\"2051\":false,\"2052\":false,\"2053\":false,\"2054\":false,\"2055\":false,\"2056\":false,\"2057\":false,\"2058\":false,\"2059\":false,\"2060\":false,\"2061\":false,\"2062\":false,\"2063\":false,\"2064\":false,\"2065\":false,\"2066\":false,\"2067\":false,\"2068\":false,\"2069\":false,\"2070\":false,\"2071\":false,\"2072\":false,\"2073\":false,\"2074\":false,\"2075\":false,\"2076\":false,\"2077\":false,\"2078\":false,\"2079\":false,\"2080\":false,\"2081\":false,\"2082\":false,\"2083\":false,\"2084\":false,\"2085\":false,\"2086\":false,\"2087\":false,\"2088\":false,\"2089\":false,\"2090\":false,\"2091\":false,\"2092\":false,\"2093\":false,\"2094\":false,\"2095\":false,\"2096\":false,\"2097\":false,\"2098\":false,\"2099\":false,\"2100\":false,\"2101\":false,\"2102\":false,\"2103\":false,\"2104\":false,\"2105\":false,\"2106\":false,\"2107\":false,\"2108\":false,\"2109\":false,\"2110\":false,\"2111\":false,\"2112\":false,\"2113\":false,\"2114\":false,\"2115\":false,\"2116\":false,\"2117\":false,\"2118\":false,\"2119\":false,\"2120\":false,\"2121\":false,\"2122\":false,\"2123\":false,\"2124\":false,\"2125\":false,\"2126\":false,\"2127\":false,\"2128\":false,\"2129\":false,\"2130\":false,\"2131\":false,\"2132\":false,\"2133\":false,\"2134\":false,\"2135\":false,\"2136\":false,\"2137\":false,\"2138\":false,\"2139\":false,\"2140\":false,\"2141\":false,\"2142\":false,\"2143\":false,\"2144\":false,\"2145\":false,\"2146\":false,\"2147\":false,\"2148\":false,\"2149\":false,\"2150\":false,\"2151\":false,\"2152\":false,\"2153\":false,\"2154\":false,\"2155\":false,\"2156\":false,\"2157\":false,\"2158\":false,\"2159\":false,\"2160\":false,\"2161\":false,\"2162\":false,\"2163\":false,\"2164\":false,\"2165\":false,\"2166\":false,\"2167\":false,\"2168\":false,\"2169\":false,\"2170\":false,\"2171\":false,\"2172\":false,\"2173\":false,\"2174\":false,\"2175\":false,\"2176\":false,\"2177\":false,\"2178\":false,\"2179\":false,\"2180\":false,\"2181\":false,\"2182\":false,\"2183\":false,\"2184\":false,\"2185\":false,\"2186\":false,\"2187\":false,\"2188\":false,\"2189\":false,\"2190\":false,\"2191\":false,\"2192\":false,\"2193\":false,\"2194\":false,\"2195\":false,\"2196\":false,\"2197\":false,\"2198\":false,\"2199\":false,\"2200\":false,\"2201\":false,\"2202\":false,\"2203\":false,\"2204\":false,\"2205\":false,\"2206\":false,\"2207\":false,\"2208\":false,\"2209\":false,\"2210\":false,\"2211\":false,\"2212\":false,\"2213\":false,\"2214\":false,\"2215\":false,\"2216\":false,\"2217\":false,\"2218\":false,\"2219\":false,\"2220\":false,\"2221\":false,\"2222\":false,\"2223\":false,\"2224\":false,\"2225\":false,\"2226\":false,\"2227\":false,\"2228\":false,\"2229\":false,\"2230\":false,\"2231\":false,\"2232\":false,\"2233\":false,\"2234\":false,\"2235\":false,\"2236\":false,\"2237\":false,\"2238\":false,\"2239\":false,\"2240\":false,\"2241\":false,\"2242\":false,\"2243\":false,\"2244\":false,\"2245\":false,\"2246\":false,\"2247\":false,\"2248\":false,\"2249\":false,\"2250\":false,\"2251\":false,\"2252\":false,\"2253\":false,\"2254\":false,\"2255\":false,\"2256\":false,\"2257\":false,\"2258\":false,\"2259\":false,\"2260\":false,\"2261\":false,\"2262\":false,\"2263\":false,\"2264\":false,\"2265\":false,\"2266\":false,\"2267\":false,\"2268\":false,\"2269\":false,\"2270\":false,\"2271\":false,\"2272\":false,\"2273\":false,\"2274\":false,\"2275\":false,\"2276\":false,\"2277\":false,\"2278\":false,\"2279\":false,\"2280\":false,\"2281\":false,\"2282\":false,\"2283\":false,\"2284\":false,\"2285\":false,\"2286\":false,\"2287\":false,\"2288\":false,\"2289\":false,\"2290\":false,\"2291\":false,\"2292\":false,\"2293\":false,\"2294\":false,\"2295\":false,\"2296\":false,\"2297\":false,\"2298\":false,\"2299\":false,\"2300\":false,\"2301\":false,\"2302\":false,\"2303\":false,\"2304\":false,\"2305\":false,\"2306\":false,\"2307\":false,\"2308\":false,\"2309\":false,\"2310\":false,\"2311\":false,\"2312\":false,\"2313\":false,\"2314\":false,\"2315\":false,\"2316\":false,\"2317\":false,\"2318\":false,\"2319\":false,\"2320\":false,\"2321\":false,\"2322\":false,\"2323\":false,\"2324\":false,\"2325\":false,\"2326\":false,\"2327\":false,\"2328\":false,\"2329\":false,\"2330\":false,\"2331\":false,\"2332\":false,\"2333\":false,\"2334\":false,\"2335\":false,\"2336\":false,\"2337\":false,\"2338\":false,\"2339\":false,\"2340\":false,\"2341\":false,\"2342\":false,\"2343\":false,\"2344\":false,\"2345\":false,\"2346\":false,\"2347\":false,\"2348\":false,\"2349\":false,\"2350\":false,\"2351\":false,\"2352\":false,\"2353\":false,\"2354\":false,\"2355\":false,\"2356\":false,\"2357\":false,\"2358\":false,\"2359\":false,\"2360\":false,\"2361\":false,\"2362\":false,\"2363\":false,\"2364\":false,\"2365\":false,\"2366\":false,\"2367\":false,\"2368\":false,\"2369\":false,\"2370\":false,\"2371\":false,\"2372\":false,\"2373\":false,\"2374\":false,\"2375\":false,\"2376\":false,\"2377\":false,\"2378\":false,\"2379\":false,\"2380\":false,\"2381\":false,\"2382\":false,\"2383\":false,\"2384\":false,\"2385\":false,\"2386\":false,\"2387\":false,\"2388\":false,\"2389\":false,\"2390\":false,\"2391\":false,\"2392\":false,\"2393\":false,\"2394\":false,\"2395\":false,\"2396\":false,\"2397\":false,\"2398\":false,\"2399\":false,\"2400\":false,\"2401\":false,\"2402\":false,\"2403\":false,\"2404\":false,\"2405\":false,\"2406\":false,\"2407\":false,\"2408\":false,\"2409\":false,\"2410\":false,\"2411\":false,\"2412\":false,\"2413\":false,\"2414\":false,\"2415\":false,\"2416\":false,\"2417\":false,\"2418\":false,\"2419\":false,\"2420\":false,\"2421\":false,\"2422\":false,\"2423\":false,\"2424\":false,\"2425\":false,\"2426\":false,\"2427\":false,\"2428\":false,\"2429\":false,\"2430\":false,\"2431\":false,\"2432\":false,\"2433\":false,\"2434\":false,\"2435\":false,\"2436\":false,\"2437\":false,\"2438\":false,\"2439\":false,\"2440\":false,\"2441\":false,\"2442\":false,\"2443\":false,\"2444\":false,\"2445\":false,\"2446\":false,\"2447\":false,\"2448\":false,\"2449\":false,\"2450\":false,\"2451\":false,\"2452\":false,\"2453\":false,\"2454\":false,\"2455\":false,\"2456\":false,\"2457\":false,\"2458\":false,\"2459\":false,\"2460\":false,\"2461\":false,\"2462\":false,\"2463\":false,\"2464\":false,\"2465\":false,\"2466\":false,\"2467\":false,\"2468\":false,\"2469\":false,\"2470\":false,\"2471\":false,\"2472\":false,\"2473\":false,\"2474\":false,\"2475\":false,\"2476\":false,\"2477\":false,\"2478\":false,\"2479\":false,\"2480\":false,\"2481\":false,\"2482\":false,\"2483\":false,\"2484\":false,\"2485\":false,\"2486\":false,\"2487\":false,\"2488\":false,\"2489\":false,\"2490\":false,\"2491\":false,\"2492\":false,\"2493\":false,\"2494\":false,\"2495\":false,\"2496\":false,\"2497\":false,\"2498\":false,\"2499\":false,\"2500\":false,\"2501\":false,\"2502\":false,\"2503\":false,\"2504\":false,\"2505\":false,\"2506\":false,\"2507\":false,\"2508\":false,\"2509\":false,\"2510\":false,\"2511\":false,\"2512\":false,\"2513\":false,\"2514\":false,\"2515\":false,\"2516\":false,\"2517\":false,\"2518\":false,\"2519\":false,\"2520\":false,\"2521\":false,\"2522\":false,\"2523\":false,\"2524\":false,\"2525\":false,\"2526\":false,\"2527\":false,\"2528\":false,\"2529\":false,\"2530\":false,\"2531\":false,\"2532\":false,\"2533\":false,\"2534\":false,\"2535\":false,\"2536\":false,\"2537\":false,\"2538\":false,\"2539\":false,\"2540\":false,\"2541\":false,\"2542\":false,\"2543\":false,\"2544\":false,\"2545\":false,\"2546\":false,\"2547\":false,\"2548\":false,\"2549\":false,\"2550\":false,\"2551\":false,\"2552\":false,\"2553\":false,\"2554\":false,\"2555\":false,\"2556\":false,\"2557\":false,\"2558\":false,\"2559\":false,\"2560\":false,\"2561\":false,\"2562\":false,\"2563\":false,\"2564\":false,\"2565\":false,\"2566\":false,\"2567\":false,\"2568\":false,\"2569\":false,\"2570\":false,\"2571\":false,\"2572\":false,\"2573\":false,\"2574\":false,\"2575\":false,\"2576\":false,\"2577\":false,\"2578\":false,\"2579\":false,\"2580\":false,\"2581\":false,\"2582\":false,\"2583\":false,\"2584\":false,\"2585\":false,\"2586\":false,\"2587\":false,\"2588\":false,\"2589\":false,\"2590\":false,\"2591\":false,\"2592\":false,\"2593\":false,\"2594\":false,\"2595\":false,\"2596\":false,\"2597\":false,\"2598\":false,\"2599\":false,\"2600\":false,\"2601\":false,\"2602\":false,\"2603\":false,\"2604\":false,\"2605\":false,\"2606\":false,\"2607\":false,\"2608\":false,\"2609\":false,\"2610\":false,\"2611\":false,\"2612\":false,\"2613\":false,\"2614\":false,\"2615\":false,\"2616\":false,\"2617\":false,\"2618\":false,\"2619\":false,\"2620\":false,\"2621\":false,\"2622\":false,\"2623\":false,\"2624\":false,\"2625\":false,\"2626\":false,\"2627\":false,\"2628\":false,\"2629\":false,\"2630\":false,\"2631\":false,\"2632\":false,\"2633\":false,\"2634\":false,\"2635\":false,\"2636\":false,\"2637\":false,\"2638\":false,\"2639\":false,\"2640\":false,\"2641\":false,\"2642\":false,\"2643\":false,\"2644\":false,\"2645\":false,\"2646\":false,\"2647\":false,\"2648\":false,\"2649\":false,\"2650\":false,\"2651\":false,\"2652\":false,\"2653\":false,\"2654\":false,\"2655\":false,\"2656\":false,\"2657\":false,\"2658\":false,\"2659\":false,\"2660\":false,\"2661\":false,\"2662\":false,\"2663\":false,\"2664\":false,\"2665\":false,\"2666\":false,\"2667\":false,\"2668\":false,\"2669\":false,\"2670\":false,\"2671\":false,\"2672\":false,\"2673\":false,\"2674\":false,\"2675\":false,\"2676\":false,\"2677\":false,\"2678\":false,\"2679\":false,\"2680\":false,\"2681\":false,\"2682\":false,\"2683\":false,\"2684\":false,\"2685\":false,\"2686\":false,\"2687\":false,\"2688\":false,\"2689\":false,\"2690\":false,\"2691\":false,\"2692\":false,\"2693\":false,\"2694\":false,\"2695\":false,\"2696\":false,\"2697\":false,\"2698\":false,\"2699\":false,\"2700\":false,\"2701\":false,\"2702\":false,\"2703\":false,\"2704\":false,\"2705\":false,\"2706\":false,\"2707\":false,\"2708\":false,\"2709\":false,\"2710\":false,\"2711\":false,\"2712\":false,\"2713\":false,\"2714\":false,\"2715\":false,\"2716\":false,\"2717\":false,\"2718\":false,\"2719\":false,\"2720\":false,\"2721\":false,\"2722\":false,\"2723\":false,\"2724\":false,\"2725\":false,\"2726\":false,\"2727\":false,\"2728\":false,\"2729\":false,\"2730\":false,\"2731\":false,\"2732\":false,\"2733\":false,\"2734\":false,\"2735\":false,\"2736\":false,\"2737\":false,\"2738\":false,\"2739\":false,\"2740\":false,\"2741\":false,\"2742\":false,\"2743\":false,\"2744\":false,\"2745\":false,\"2746\":false,\"2747\":false,\"2748\":false,\"2749\":false,\"2750\":false,\"2751\":false,\"2752\":false,\"2753\":false,\"2754\":false,\"2755\":false,\"2756\":false,\"2757\":false,\"2758\":false,\"2759\":false,\"2760\":false,\"2761\":false,\"2762\":false,\"2763\":false,\"2764\":false,\"2765\":false,\"2766\":false,\"2767\":false,\"2768\":false,\"2769\":false,\"2770\":false,\"2771\":false,\"2772\":false,\"2773\":false,\"2774\":false,\"2775\":false,\"2776\":false,\"2777\":false,\"2778\":false,\"2779\":false,\"2780\":false,\"2781\":false,\"2782\":false,\"2783\":false,\"2784\":false,\"2785\":false,\"2786\":false,\"2787\":false,\"2788\":false,\"2789\":false,\"2790\":false,\"2791\":false,\"2792\":false,\"2793\":false,\"2794\":false,\"2795\":false,\"2796\":false,\"2797\":false,\"2798\":false,\"2799\":false,\"2800\":false,\"2801\":false,\"2802\":false,\"2803\":false,\"2804\":false,\"2805\":false,\"2806\":false,\"2807\":false,\"2808\":false,\"2809\":false,\"2810\":false,\"2811\":false,\"2812\":false,\"2813\":false,\"2814\":false,\"2815\":false,\"2816\":false,\"2817\":false,\"2818\":false,\"2819\":false,\"2820\":false,\"2821\":false,\"2822\":false,\"2823\":false,\"2824\":false,\"2825\":false,\"2826\":false,\"2827\":false,\"2828\":false,\"2829\":false,\"2830\":false,\"2831\":false,\"2832\":false,\"2833\":false,\"2834\":false,\"2835\":false,\"2836\":false,\"2837\":false,\"2838\":false,\"2839\":false,\"2840\":false,\"2841\":false,\"2842\":false,\"2843\":false,\"2844\":false,\"2845\":false,\"2846\":false,\"2847\":false,\"2848\":false,\"2849\":false,\"2850\":false,\"2851\":false,\"2852\":false,\"2853\":false,\"2854\":false,\"2855\":false,\"2856\":false,\"2857\":false,\"2858\":false,\"2859\":false,\"2860\":false,\"2861\":false,\"2862\":false,\"2863\":false,\"2864\":false,\"2865\":false,\"2866\":false,\"2867\":false,\"2868\":false,\"2869\":false,\"2870\":false,\"2871\":false,\"2872\":false,\"2873\":false,\"2874\":false,\"2875\":false,\"2876\":false,\"2877\":false,\"2878\":false,\"2879\":false,\"2880\":false,\"2881\":false,\"2882\":false,\"2883\":false,\"2884\":false,\"2885\":false,\"2886\":false,\"2887\":false,\"2888\":false,\"2889\":false,\"2890\":false,\"2891\":false,\"2892\":false,\"2893\":false,\"2894\":false,\"2895\":false,\"2896\":false,\"2897\":false,\"2898\":false,\"2899\":false,\"2900\":false,\"2901\":false,\"2902\":false,\"2903\":false,\"2904\":false,\"2905\":false,\"2906\":false,\"2907\":false,\"2908\":false,\"2909\":false,\"2910\":false,\"2911\":false,\"2912\":false,\"2913\":false,\"2914\":false,\"2915\":false,\"2916\":false,\"2917\":false,\"2918\":false,\"2919\":false,\"2920\":false,\"2921\":false,\"2922\":false,\"2923\":false,\"2924\":false,\"2925\":false,\"2926\":false,\"2927\":false,\"2928\":false,\"2929\":false,\"2930\":false,\"2931\":false,\"2932\":false,\"2933\":false,\"2934\":false,\"2935\":false,\"2936\":false,\"2937\":false,\"2938\":false,\"2939\":false,\"2940\":false,\"2941\":false,\"2942\":false,\"2943\":false,\"2944\":false,\"2945\":false,\"2946\":false,\"2947\":false,\"2948\":false,\"2949\":false,\"2950\":false,\"2951\":false,\"2952\":false,\"2953\":false,\"2954\":false,\"2955\":false,\"2956\":false,\"2957\":false,\"2958\":false,\"2959\":false,\"2960\":false,\"2961\":false,\"2962\":false,\"2963\":false,\"2964\":false,\"2965\":false,\"2966\":false,\"2967\":false,\"2968\":false,\"2969\":false,\"2970\":false,\"2971\":false,\"2972\":false,\"2973\":false,\"2974\":false,\"2975\":false,\"2976\":false,\"2977\":false,\"2978\":false,\"2979\":false,\"2980\":false,\"2981\":false,\"2982\":false,\"2983\":false,\"2984\":false,\"2985\":false,\"2986\":false,\"2987\":false,\"2988\":false,\"2989\":false,\"2990\":false,\"2991\":false,\"2992\":false,\"2993\":false,\"2994\":false,\"2995\":false,\"2996\":false,\"2997\":false,\"2998\":false,\"2999\":false,\"3000\":false,\"3001\":false,\"3002\":false,\"3003\":false,\"3004\":false,\"3005\":false,\"3006\":false,\"3007\":false,\"3008\":false,\"3009\":false,\"3010\":false,\"3011\":false,\"3012\":false,\"3013\":false,\"3014\":false,\"3015\":false,\"3016\":false,\"3017\":false,\"3018\":false,\"3019\":false,\"3020\":false,\"3021\":false,\"3022\":false,\"3023\":false,\"3024\":false,\"3025\":false,\"3026\":false,\"3027\":false,\"3028\":false,\"3029\":false,\"3030\":false,\"3031\":false,\"3032\":false,\"3033\":false,\"3034\":false,\"3035\":false,\"3036\":false,\"3037\":false,\"3038\":false,\"3039\":false,\"3040\":false,\"3041\":false,\"3042\":false,\"3043\":false,\"3044\":false,\"3045\":false,\"3046\":false,\"3047\":false,\"3048\":false,\"3049\":false,\"3050\":false,\"3051\":false,\"3052\":false,\"3053\":false,\"3054\":false,\"3055\":false,\"3056\":false,\"3057\":false,\"3058\":false,\"3059\":false,\"3060\":false,\"3061\":false,\"3062\":false,\"3063\":false,\"3064\":false,\"3065\":false,\"3066\":false,\"3067\":false,\"3068\":false,\"3069\":false,\"3070\":false,\"3071\":false,\"3072\":false,\"3073\":false,\"3074\":false,\"3075\":false,\"3076\":false,\"3077\":false,\"3078\":false,\"3079\":false,\"3080\":false,\"3081\":false,\"3082\":false,\"3083\":false,\"3084\":false,\"3085\":false,\"3086\":false,\"3087\":false,\"3088\":false,\"3089\":false,\"3090\":false,\"3091\":false,\"3092\":false,\"3093\":false,\"3094\":false,\"3095\":false,\"3096\":false,\"3097\":false,\"3098\":false,\"3099\":false,\"3100\":false,\"3101\":false,\"3102\":false,\"3103\":false,\"3104\":false,\"3105\":false,\"3106\":false,\"3107\":false,\"3108\":false,\"3109\":false,\"3110\":false,\"3111\":false,\"3112\":false,\"3113\":false,\"3114\":false,\"3115\":false,\"3116\":false,\"3117\":false,\"3118\":false,\"3119\":false,\"3120\":false,\"3121\":false,\"3122\":false,\"3123\":false,\"3124\":false,\"3125\":false,\"3126\":false,\"3127\":false,\"3128\":false,\"3129\":false,\"3130\":false,\"3131\":false,\"3132\":false,\"3133\":false,\"3134\":false,\"3135\":false,\"3136\":false,\"3137\":false,\"3138\":false,\"3139\":false,\"3140\":false,\"3141\":false,\"3142\":false,\"3143\":false,\"3144\":false,\"3145\":false,\"3146\":false,\"3147\":false,\"3148\":false,\"3149\":false,\"3150\":false,\"3151\":false,\"3152\":false,\"3153\":false,\"3154\":false,\"3155\":false,\"3156\":false,\"3157\":false,\"3158\":false,\"3159\":false,\"3160\":false,\"3161\":false,\"3162\":false,\"3163\":false,\"3164\":false,\"3165\":false,\"3166\":false,\"3167\":false,\"3168\":false,\"3169\":false,\"3170\":false,\"3171\":false,\"3172\":false,\"3173\":false,\"3174\":false,\"3175\":false,\"3176\":false,\"3177\":false,\"3178\":false,\"3179\":false,\"3180\":false,\"3181\":false,\"3182\":false,\"3183\":false,\"3184\":false,\"3185\":false,\"3186\":false,\"3187\":false,\"3188\":false,\"3189\":false,\"3190\":false,\"3191\":false,\"3192\":false,\"3193\":false,\"3194\":false,\"3195\":false,\"3196\":false,\"3197\":false,\"3198\":false,\"3199\":false,\"3200\":false,\"3201\":false,\"3202\":false,\"3203\":false,\"3204\":false,\"3205\":false,\"3206\":false,\"3207\":false,\"3208\":false,\"3209\":false,\"3210\":false,\"3211\":false,\"3212\":false,\"3213\":false,\"3214\":false,\"3215\":false,\"3216\":false,\"3217\":false,\"3218\":false,\"3219\":false,\"3220\":false,\"3221\":false,\"3222\":false,\"3223\":false,\"3224\":false,\"3225\":false,\"3226\":false,\"3227\":false,\"3228\":false,\"3229\":false,\"3230\":false,\"3231\":false,\"3232\":false,\"3233\":false,\"3234\":false,\"3235\":false,\"3236\":false,\"3237\":false,\"3238\":false,\"3239\":false,\"3240\":false,\"3241\":false,\"3242\":false,\"3243\":false,\"3244\":false,\"3245\":false,\"3246\":false,\"3247\":false,\"3248\":false,\"3249\":false,\"3250\":false,\"3251\":false,\"3252\":false,\"3253\":false,\"3254\":false,\"3255\":false,\"3256\":false,\"3257\":false,\"3258\":false,\"3259\":false,\"3260\":false,\"3261\":false,\"3262\":false,\"3263\":false,\"3264\":false,\"3265\":false,\"3266\":false,\"3267\":false,\"3268\":false,\"3269\":false,\"3270\":false,\"3271\":false,\"3272\":false,\"3273\":false,\"3274\":false,\"3275\":false,\"3276\":false,\"3277\":false,\"3278\":false,\"3279\":false,\"3280\":false,\"3281\":false,\"3282\":false,\"3283\":false,\"3284\":false,\"3285\":false,\"3286\":false,\"3287\":false,\"3288\":false,\"3289\":false,\"3290\":false,\"3291\":false,\"3292\":false,\"3293\":false,\"3294\":false,\"3295\":false,\"3296\":false,\"3297\":false,\"3298\":false,\"3299\":false,\"3300\":false,\"3301\":false,\"3302\":false,\"3303\":false,\"3304\":false,\"3305\":false,\"3306\":false,\"3307\":false,\"3308\":false,\"3309\":false,\"3310\":false,\"3311\":false,\"3312\":false,\"3313\":false,\"3314\":false,\"3315\":false,\"3316\":false,\"3317\":false,\"3318\":false,\"3319\":false,\"3320\":false,\"3321\":false,\"3322\":false,\"3323\":false,\"3324\":false,\"3325\":false,\"3326\":false,\"3327\":false,\"3328\":false,\"3329\":false,\"3330\":false,\"3331\":false,\"3332\":false,\"3333\":false,\"3334\":false,\"3335\":false,\"3336\":false,\"3337\":false,\"3338\":false,\"3339\":false,\"3340\":false,\"3341\":false,\"3342\":false,\"3343\":false,\"3344\":false,\"3345\":false,\"3346\":false,\"3347\":false,\"3348\":false,\"3349\":false,\"3350\":false,\"3351\":false,\"3352\":false,\"3353\":false,\"3354\":false,\"3355\":false,\"3356\":false,\"3357\":false,\"3358\":false,\"3359\":false,\"3360\":false,\"3361\":false,\"3362\":false,\"3363\":false,\"3364\":false,\"3365\":false,\"3366\":false,\"3367\":false,\"3368\":false,\"3369\":false,\"3370\":false,\"3371\":false,\"3372\":false,\"3373\":false,\"3374\":false,\"3375\":false,\"3376\":false,\"3377\":false,\"3378\":false,\"3379\":false,\"3380\":false,\"3381\":false,\"3382\":false,\"3383\":false,\"3384\":false,\"3385\":false,\"3386\":false,\"3387\":false,\"3388\":false,\"3389\":false,\"3390\":false,\"3391\":false,\"3392\":false,\"3393\":false,\"3394\":false,\"3395\":false,\"3396\":false,\"3397\":false,\"3398\":false,\"3399\":false,\"3400\":false,\"3401\":false,\"3402\":false,\"3403\":false,\"3404\":false,\"3405\":false,\"3406\":false,\"3407\":false,\"3408\":false,\"3409\":false,\"3410\":false,\"3411\":false,\"3412\":false,\"3413\":false,\"3414\":false,\"3415\":false,\"3416\":false,\"3417\":false,\"3418\":false,\"3419\":false,\"3420\":false,\"3421\":false,\"3422\":false,\"3423\":false,\"3424\":false,\"3425\":false,\"3426\":false,\"3427\":false,\"3428\":false,\"3429\":false,\"3430\":false,\"3431\":false,\"3432\":false,\"3433\":false,\"3434\":false,\"3435\":false,\"3436\":false,\"3437\":false,\"3438\":false,\"3439\":false,\"3440\":false,\"3441\":false,\"3442\":false,\"3443\":false,\"3444\":false,\"3445\":false,\"3446\":false,\"3447\":false,\"3448\":false,\"3449\":false,\"3450\":false,\"3451\":false,\"3452\":false,\"3453\":false,\"3454\":false,\"3455\":false,\"3456\":false,\"3457\":false,\"3458\":false,\"3459\":false,\"3460\":false,\"3461\":false,\"3462\":false,\"3463\":false,\"3464\":false,\"3465\":false,\"3466\":false,\"3467\":false,\"3468\":false,\"3469\":false,\"3470\":false,\"3471\":false,\"3472\":false,\"3473\":false,\"3474\":false,\"3475\":false,\"3476\":false,\"3477\":false,\"3478\":false,\"3479\":false,\"3480\":false,\"3481\":false,\"3482\":false,\"3483\":false,\"3484\":false,\"3485\":false,\"3486\":false,\"3487\":false,\"3488\":false,\"3489\":false,\"3490\":false,\"3491\":false,\"3492\":false,\"3493\":false,\"3494\":false,\"3495\":false,\"3496\":false,\"3497\":false,\"3498\":false,\"3499\":false,\"3500\":false,\"3501\":false,\"3502\":false,\"3503\":false,\"3504\":false,\"3505\":false,\"3506\":false,\"3507\":false,\"3508\":false,\"3509\":false,\"3510\":false,\"3511\":false,\"3512\":false,\"3513\":false,\"3514\":false,\"3515\":false,\"3516\":false,\"3517\":false,\"3518\":false,\"3519\":false,\"3520\":false,\"3521\":false,\"3522\":false,\"3523\":false,\"3524\":false,\"3525\":false,\"3526\":false,\"3527\":false,\"3528\":false,\"3529\":false,\"3530\":false,\"3531\":false,\"3532\":false,\"3533\":false,\"3534\":false,\"3535\":false,\"3536\":false,\"3537\":false,\"3538\":false,\"3539\":false,\"3540\":false,\"3541\":false,\"3542\":false,\"3543\":false,\"3544\":false,\"3545\":false,\"3546\":false,\"3547\":false,\"3548\":false,\"3549\":false,\"3550\":false,\"3551\":false,\"3552\":false,\"3553\":false,\"3554\":false,\"3555\":false,\"3556\":false,\"3557\":false,\"3558\":false,\"3559\":false,\"3560\":false,\"3561\":false,\"3562\":false,\"3563\":false,\"3564\":false,\"3565\":false,\"3566\":false,\"3567\":false,\"3568\":false,\"3569\":false,\"3570\":false,\"3571\":false,\"3572\":false,\"3573\":false,\"3574\":false,\"3575\":false,\"3576\":false,\"3577\":false,\"3578\":false,\"3579\":false,\"3580\":false,\"3581\":false,\"3582\":false,\"3583\":false,\"3584\":false,\"3585\":false,\"3586\":false,\"3587\":false,\"3588\":false,\"3589\":false,\"3590\":false,\"3591\":false,\"3592\":false,\"3593\":false,\"3594\":false,\"3595\":false,\"3596\":false,\"3597\":false,\"3598\":false,\"3599\":false,\"3600\":false,\"3601\":false,\"3602\":false,\"3603\":false,\"3604\":false,\"3605\":false,\"3606\":false,\"3607\":false,\"3608\":false,\"3609\":false,\"3610\":false,\"3611\":false,\"3612\":false,\"3613\":false,\"3614\":false,\"3615\":false,\"3616\":false,\"3617\":false,\"3618\":false,\"3619\":false,\"3620\":false,\"3621\":false,\"3622\":false,\"3623\":false,\"3624\":false,\"3625\":false,\"3626\":false,\"3627\":false,\"3628\":false,\"3629\":false,\"3630\":false,\"3631\":false,\"3632\":false,\"3633\":false,\"3634\":false,\"3635\":false,\"3636\":false,\"3637\":false,\"3638\":false,\"3639\":false,\"3640\":false,\"3641\":false,\"3642\":false,\"3643\":false,\"3644\":false,\"3645\":false,\"3646\":false,\"3647\":false,\"3648\":false,\"3649\":false,\"3650\":false,\"3651\":false,\"3652\":false,\"3653\":false,\"3654\":false,\"3655\":false,\"3656\":false,\"3657\":false,\"3658\":false,\"3659\":false,\"3660\":false,\"3661\":false,\"3662\":false,\"3663\":false,\"3664\":false,\"3665\":false,\"3666\":false,\"3667\":false,\"3668\":false,\"3669\":false,\"3670\":false,\"3671\":false,\"3672\":false,\"3673\":false,\"3674\":false,\"3675\":false,\"3676\":false,\"3677\":false,\"3678\":false,\"3679\":false,\"3680\":false,\"3681\":false,\"3682\":false,\"3683\":false,\"3684\":false,\"3685\":false,\"3686\":false,\"3687\":false,\"3688\":false,\"3689\":false,\"3690\":false,\"3691\":false,\"3692\":false,\"3693\":false,\"3694\":false,\"3695\":false,\"3696\":false,\"3697\":false,\"3698\":false,\"3699\":false,\"3700\":false,\"3701\":false,\"3702\":false,\"3703\":false,\"3704\":false,\"3705\":false,\"3706\":false,\"3707\":false,\"3708\":false,\"3709\":false,\"3710\":false,\"3711\":false,\"3712\":false,\"3713\":false,\"3714\":false,\"3715\":false,\"3716\":false,\"3717\":false,\"3718\":false,\"3719\":false,\"3720\":false,\"3721\":false,\"3722\":false,\"3723\":false,\"3724\":false,\"3725\":false,\"3726\":false,\"3727\":false,\"3728\":false,\"3729\":false,\"3730\":false,\"3731\":false,\"3732\":false,\"3733\":false,\"3734\":false,\"3735\":false,\"3736\":false,\"3737\":false,\"3738\":false,\"3739\":false,\"3740\":false,\"3741\":false,\"3742\":false,\"3743\":false,\"3744\":false,\"3745\":false,\"3746\":false,\"3747\":false,\"3748\":false,\"3749\":false,\"3750\":false,\"3751\":false,\"3752\":false,\"3753\":false,\"3754\":false,\"3755\":false,\"3756\":false,\"3757\":false,\"3758\":false,\"3759\":false,\"3760\":false,\"3761\":false,\"3762\":false,\"3763\":false,\"3764\":false,\"3765\":false,\"3766\":false,\"3767\":false,\"3768\":false,\"3769\":false,\"3770\":false,\"3771\":false,\"3772\":false,\"3773\":false,\"3774\":false,\"3775\":false,\"3776\":false,\"3777\":false,\"3778\":false,\"3779\":false,\"3780\":false,\"3781\":false,\"3782\":false,\"3783\":false,\"3784\":false,\"3785\":false,\"3786\":false,\"3787\":false,\"3788\":false,\"3789\":false,\"3790\":false,\"3791\":false,\"3792\":false,\"3793\":false,\"3794\":false,\"3795\":false,\"3796\":false,\"3797\":false,\"3798\":false,\"3799\":false,\"3800\":false,\"3801\":false,\"3802\":false,\"3803\":false,\"3804\":false,\"3805\":false,\"3806\":false,\"3807\":false,\"3808\":false,\"3809\":false,\"3810\":false,\"3811\":false,\"3812\":false,\"3813\":false,\"3814\":false,\"3815\":false,\"3816\":false,\"3817\":false,\"3818\":false,\"3819\":false,\"3820\":false,\"3821\":false,\"3822\":false,\"3823\":false,\"3824\":false,\"3825\":false,\"3826\":false,\"3827\":false,\"3828\":false,\"3829\":false,\"3830\":false,\"3831\":false,\"3832\":false,\"3833\":false,\"3834\":false,\"3835\":false,\"3836\":false,\"3837\":false,\"3838\":false,\"3839\":false,\"3840\":false,\"3841\":false,\"3842\":false,\"3843\":false,\"3844\":false,\"3845\":false,\"3846\":false,\"3847\":false,\"3848\":false,\"3849\":false,\"3850\":false,\"3851\":false,\"3852\":false,\"3853\":false,\"3854\":false,\"3855\":false,\"3856\":false,\"3857\":false,\"3858\":false,\"3859\":false,\"3860\":false,\"3861\":false,\"3862\":false,\"3863\":false,\"3864\":false,\"3865\":false,\"3866\":false,\"3867\":false,\"3868\":false,\"3869\":false,\"3870\":false,\"3871\":false,\"3872\":false,\"3873\":false,\"3874\":false,\"3875\":false,\"3876\":false,\"3877\":false,\"3878\":false,\"3879\":false,\"3880\":false,\"3881\":false,\"3882\":false,\"3883\":false,\"3884\":false,\"3885\":false,\"3886\":false,\"3887\":false,\"3888\":false,\"3889\":false,\"3890\":false,\"3891\":false,\"3892\":false,\"3893\":false,\"3894\":false,\"3895\":false,\"3896\":false,\"3897\":false,\"3898\":false,\"3899\":false,\"3900\":false,\"3901\":false,\"3902\":false,\"3903\":false,\"3904\":false,\"3905\":false,\"3906\":false,\"3907\":false,\"3908\":false,\"3909\":false,\"3910\":false,\"3911\":false,\"3912\":false,\"3913\":false,\"3914\":false,\"3915\":false,\"3916\":false,\"3917\":false,\"3918\":false,\"3919\":false,\"3920\":false,\"3921\":false,\"3922\":false,\"3923\":false,\"3924\":false,\"3925\":false,\"3926\":false,\"3927\":false,\"3928\":false,\"3929\":false,\"3930\":false,\"3931\":false,\"3932\":false,\"3933\":false,\"3934\":false,\"3935\":false,\"3936\":false,\"3937\":false,\"3938\":false,\"3939\":false,\"3940\":false,\"3941\":false,\"3942\":false,\"3943\":false,\"3944\":false,\"3945\":false,\"3946\":false,\"3947\":false,\"3948\":false,\"3949\":false,\"3950\":false,\"3951\":false,\"3952\":false,\"3953\":false,\"3954\":false,\"3955\":false,\"3956\":false,\"3957\":false,\"3958\":false,\"3959\":false,\"3960\":false,\"3961\":false,\"3962\":false,\"3963\":false,\"3964\":false,\"3965\":false,\"3966\":false,\"3967\":false,\"3968\":false,\"3969\":false,\"3970\":false,\"3971\":false,\"3972\":false,\"3973\":false,\"3974\":false,\"3975\":false,\"3976\":false,\"3977\":false,\"3978\":false,\"3979\":false,\"3980\":false,\"3981\":false,\"3982\":false,\"3983\":false,\"3984\":false,\"3985\":false,\"3986\":false,\"3987\":false,\"3988\":false,\"3989\":false,\"3990\":false,\"3991\":false,\"3992\":false,\"3993\":false,\"3994\":false,\"3995\":false,\"3996\":false,\"3997\":false,\"3998\":false,\"3999\":false,\"4000\":false,\"4001\":false,\"4002\":false,\"4003\":false,\"4004\":false,\"4005\":false,\"4006\":false,\"4007\":false,\"4008\":false,\"4009\":false,\"4010\":false,\"4011\":false,\"4012\":false,\"4013\":false,\"4014\":false,\"4015\":false,\"4016\":false,\"4017\":false,\"4018\":false,\"4019\":false,\"4020\":false,\"4021\":false,\"4022\":false,\"4023\":false,\"4024\":false,\"4025\":false,\"4026\":false,\"4027\":false,\"4028\":false,\"4029\":false,\"4030\":false,\"4031\":false,\"4032\":false,\"4033\":false,\"4034\":false,\"4035\":false,\"4036\":false,\"4037\":false,\"4038\":false,\"4039\":false,\"4040\":false,\"4041\":false,\"4042\":false,\"4043\":false,\"4044\":false,\"4045\":false,\"4046\":false,\"4047\":false,\"4048\":false,\"4049\":false,\"4050\":false,\"4051\":false,\"4052\":false,\"4053\":false,\"4054\":false,\"4055\":false,\"4056\":false,\"4057\":false,\"4058\":false,\"4059\":false,\"4060\":false,\"4061\":false,\"4062\":false,\"4063\":false,\"4064\":false,\"4065\":false,\"4066\":false,\"4067\":false,\"4068\":false,\"4069\":false,\"4070\":false,\"4071\":false,\"4072\":false,\"4073\":false,\"4074\":false,\"4075\":false,\"4076\":false,\"4077\":false,\"4078\":false,\"4079\":false,\"4080\":false,\"4081\":false,\"4082\":false,\"4083\":false,\"4084\":false,\"4085\":false,\"4086\":false,\"4087\":false,\"4088\":false,\"4089\":false,\"4090\":false,\"4091\":false,\"4092\":false,\"4093\":false,\"4094\":false,\"4095\":false,\"4096\":false,\"4097\":false,\"4098\":false,\"4099\":false,\"4100\":false,\"4101\":false,\"4102\":false,\"4103\":false,\"4104\":false,\"4105\":false,\"4106\":false,\"4107\":false,\"4108\":false,\"4109\":false,\"4110\":false,\"4111\":false,\"4112\":false,\"4113\":false,\"4114\":false,\"4115\":false,\"4116\":false,\"4117\":false,\"4118\":false,\"4119\":false,\"4120\":false,\"4121\":false,\"4122\":false,\"4123\":false,\"4124\":false,\"4125\":false,\"4126\":false,\"4127\":false,\"4128\":false,\"4129\":false,\"4130\":false,\"4131\":false,\"4132\":false,\"4133\":false,\"4134\":false,\"4135\":false,\"4136\":false,\"4137\":false,\"4138\":false,\"4139\":false,\"4140\":false,\"4141\":false,\"4142\":false,\"4143\":false,\"4144\":false,\"4145\":false,\"4146\":false,\"4147\":false,\"4148\":false,\"4149\":false,\"4150\":false,\"4151\":false,\"4152\":false,\"4153\":false,\"4154\":false,\"4155\":false,\"4156\":false,\"4157\":false,\"4158\":false,\"4159\":false,\"4160\":false,\"4161\":false,\"4162\":false,\"4163\":false,\"4164\":false,\"4165\":false,\"4166\":false,\"4167\":false,\"4168\":false,\"4169\":false,\"4170\":false,\"4171\":false,\"4172\":false,\"4173\":false,\"4174\":false,\"4175\":false,\"4176\":false,\"4177\":false,\"4178\":false,\"4179\":false,\"4180\":false,\"4181\":false,\"4182\":false,\"4183\":false,\"4184\":false,\"4185\":false,\"4186\":false,\"4187\":false,\"4188\":false,\"4189\":false,\"4190\":false,\"4191\":false,\"4192\":false,\"4193\":false,\"4194\":false,\"4195\":false,\"4196\":false,\"4197\":false,\"4198\":false,\"4199\":false,\"4200\":false,\"4201\":false,\"4202\":false,\"4203\":false,\"4204\":false,\"4205\":false,\"4206\":false,\"4207\":false,\"4208\":false,\"4209\":false,\"4210\":false,\"4211\":false,\"4212\":false,\"4213\":false,\"4214\":false,\"4215\":false,\"4216\":false,\"4217\":false,\"4218\":false,\"4219\":false,\"4220\":false,\"4221\":false,\"4222\":false,\"4223\":false,\"4224\":false,\"4225\":false,\"4226\":false,\"4227\":false,\"4228\":false,\"4229\":false,\"4230\":false,\"4231\":false,\"4232\":false,\"4233\":false,\"4234\":false,\"4235\":false,\"4236\":false,\"4237\":false,\"4238\":false,\"4239\":false,\"4240\":false,\"4241\":false,\"4242\":false,\"4243\":false,\"4244\":false,\"4245\":false,\"4246\":false,\"4247\":false,\"4248\":false,\"4249\":false,\"4250\":false,\"4251\":false,\"4252\":false,\"4253\":false,\"4254\":false,\"4255\":false,\"4256\":false,\"4257\":false,\"4258\":false,\"4259\":false,\"4260\":false,\"4261\":false,\"4262\":false,\"4263\":false,\"4264\":false,\"4265\":false,\"4266\":false,\"4267\":false,\"4268\":false,\"4269\":false,\"4270\":false,\"4271\":false,\"4272\":false,\"4273\":false,\"4274\":false,\"4275\":false,\"4276\":false,\"4277\":false,\"4278\":false,\"4279\":false,\"4280\":false,\"4281\":false,\"4282\":false,\"4283\":false,\"4284\":false,\"4285\":false,\"4286\":false,\"4287\":false,\"4288\":false,\"4289\":false,\"4290\":false,\"4291\":false,\"4292\":false,\"4293\":false,\"4294\":false,\"4295\":false,\"4296\":false,\"4297\":false,\"4298\":false,\"4299\":false,\"4300\":false,\"4301\":false,\"4302\":false,\"4303\":false,\"4304\":false,\"4305\":false,\"4306\":false,\"4307\":false,\"4308\":false,\"4309\":false,\"4310\":false,\"4311\":false,\"4312\":false,\"4313\":false,\"4314\":false,\"4315\":false,\"4316\":false,\"4317\":false,\"4318\":false,\"4319\":false,\"4320\":false,\"4321\":false,\"4322\":false,\"4323\":false,\"4324\":false,\"4325\":false,\"4326\":false,\"4327\":false,\"4328\":false,\"4329\":false,\"4330\":false,\"4331\":false,\"4332\":false,\"4333\":false,\"4334\":false,\"4335\":false,\"4336\":false,\"4337\":false,\"4338\":false,\"4339\":false,\"4340\":false,\"4341\":false,\"4342\":false,\"4343\":false,\"4344\":false,\"4345\":false,\"4346\":false,\"4347\":false,\"4348\":false,\"4349\":false,\"4350\":false,\"4351\":false,\"4352\":false,\"4353\":false,\"4354\":false,\"4355\":false,\"4356\":false,\"4357\":false,\"4358\":false,\"4359\":false,\"4360\":false,\"4361\":false,\"4362\":false,\"4363\":false,\"4364\":false,\"4365\":false,\"4366\":false,\"4367\":false,\"4368\":false,\"4369\":false,\"4370\":false,\"4371\":false,\"4372\":false,\"4373\":false,\"4374\":false,\"4375\":false,\"4376\":false,\"4377\":false,\"4378\":false,\"4379\":false,\"4380\":false,\"4381\":false,\"4382\":false,\"4383\":false,\"4384\":false,\"4385\":false,\"4386\":false,\"4387\":false,\"4388\":false,\"4389\":false,\"4390\":false,\"4391\":false,\"4392\":false,\"4393\":false,\"4394\":false,\"4395\":false,\"4396\":false,\"4397\":false,\"4398\":false,\"4399\":false,\"4400\":false,\"4401\":false,\"4402\":false,\"4403\":false,\"4404\":false,\"4405\":false,\"4406\":false,\"4407\":false,\"4408\":false,\"4409\":false,\"4410\":false,\"4411\":false,\"4412\":false,\"4413\":false,\"4414\":false,\"4415\":false,\"4416\":false,\"4417\":false,\"4418\":false,\"4419\":false,\"4420\":false,\"4421\":false,\"4422\":false,\"4423\":false,\"4424\":false,\"4425\":false,\"4426\":false,\"4427\":false,\"4428\":false,\"4429\":false,\"4430\":false,\"4431\":false,\"4432\":false,\"4433\":false,\"4434\":false,\"4435\":false,\"4436\":false,\"4437\":false,\"4438\":false,\"4439\":false,\"4440\":false,\"4441\":false,\"4442\":false,\"4443\":false,\"4444\":false,\"4445\":false,\"4446\":false,\"4447\":false,\"4448\":false,\"4449\":false,\"4450\":false,\"4451\":false,\"4452\":false,\"4453\":false,\"4454\":false,\"4455\":false,\"4456\":false,\"4457\":false,\"4458\":false,\"4459\":false,\"4460\":false,\"4461\":false,\"4462\":false,\"4463\":false,\"4464\":false,\"4465\":false,\"4466\":false,\"4467\":false,\"4468\":false,\"4469\":false,\"4470\":false,\"4471\":false,\"4472\":false,\"4473\":false,\"4474\":false,\"4475\":false,\"4476\":false,\"4477\":false,\"4478\":false,\"4479\":false,\"4480\":false,\"4481\":false,\"4482\":false,\"4483\":false,\"4484\":false,\"4485\":false,\"4486\":false,\"4487\":false,\"4488\":false,\"4489\":false,\"4490\":false,\"4491\":false,\"4492\":false,\"4493\":false,\"4494\":false,\"4495\":false,\"4496\":false,\"4497\":false,\"4498\":false,\"4499\":false,\"4500\":false,\"4501\":false,\"4502\":false,\"4503\":false,\"4504\":false,\"4505\":false,\"4506\":false,\"4507\":false,\"4508\":false,\"4509\":false,\"4510\":false,\"4511\":false,\"4512\":false,\"4513\":false,\"4514\":false,\"4515\":false,\"4516\":false,\"4517\":false,\"4518\":false,\"4519\":false,\"4520\":false,\"4521\":false,\"4522\":false,\"4523\":false,\"4524\":false,\"4525\":false,\"4526\":false,\"4527\":false,\"4528\":false,\"4529\":false,\"4530\":false,\"4531\":false,\"4532\":false,\"4533\":false,\"4534\":false,\"4535\":false,\"4536\":false,\"4537\":false,\"4538\":false,\"4539\":false,\"4540\":false,\"4541\":false,\"4542\":false,\"4543\":false,\"4544\":false,\"4545\":false,\"4546\":false,\"4547\":false,\"4548\":false,\"4549\":false,\"4550\":false,\"4551\":false,\"4552\":false,\"4553\":false,\"4554\":false,\"4555\":false,\"4556\":false,\"4557\":false,\"4558\":false,\"4559\":false,\"4560\":false,\"4561\":false,\"4562\":false,\"4563\":false,\"4564\":false,\"4565\":false,\"4566\":false,\"4567\":false,\"4568\":false,\"4569\":false,\"4570\":false,\"4571\":false,\"4572\":false,\"4573\":false,\"4574\":false,\"4575\":false,\"4576\":false,\"4577\":false,\"4578\":false,\"4579\":false,\"4580\":false,\"4581\":false,\"4582\":false,\"4583\":false,\"4584\":false,\"4585\":false,\"4586\":false,\"4587\":false,\"4588\":false,\"4589\":false,\"4590\":false,\"4591\":false,\"4592\":false,\"4593\":false,\"4594\":false,\"4595\":false,\"4596\":false,\"4597\":false,\"4598\":false,\"4599\":false,\"4600\":false,\"4601\":false,\"4602\":false,\"4603\":false,\"4604\":false,\"4605\":false,\"4606\":false,\"4607\":false,\"4608\":false,\"4609\":false,\"4610\":false,\"4611\":false,\"4612\":false,\"4613\":false,\"4614\":false,\"4615\":false,\"4616\":false,\"4617\":false,\"4618\":false,\"4619\":false,\"4620\":false,\"4621\":false,\"4622\":false,\"4623\":false,\"4624\":false,\"4625\":false,\"4626\":false,\"4627\":false,\"4628\":false,\"4629\":false,\"4630\":false,\"4631\":false,\"4632\":false,\"4633\":false,\"4634\":false,\"4635\":false,\"4636\":false,\"4637\":false,\"4638\":false,\"4639\":false,\"4640\":false,\"4641\":false,\"4642\":false,\"4643\":false,\"4644\":false,\"4645\":false,\"4646\":false,\"4647\":false,\"4648\":false,\"4649\":false,\"4650\":false,\"4651\":false,\"4652\":false,\"4653\":false,\"4654\":false,\"4655\":false,\"4656\":false,\"4657\":false,\"4658\":false,\"4659\":false,\"4660\":false,\"4661\":false,\"4662\":false,\"4663\":false,\"4664\":false,\"4665\":false,\"4666\":false,\"4667\":false,\"4668\":false,\"4669\":false,\"4670\":false,\"4671\":false,\"4672\":false,\"4673\":false,\"4674\":false,\"4675\":false,\"4676\":false,\"4677\":false,\"4678\":false,\"4679\":false,\"4680\":false,\"4681\":false,\"4682\":false,\"4683\":false,\"4684\":false,\"4685\":false,\"4686\":false,\"4687\":false,\"4688\":false,\"4689\":false,\"4690\":false,\"4691\":false,\"4692\":false,\"4693\":false,\"4694\":false,\"4695\":false,\"4696\":false,\"4697\":false,\"4698\":false,\"4699\":false,\"4700\":false,\"4701\":false,\"4702\":false,\"4703\":false,\"4704\":false,\"4705\":false,\"4706\":false,\"4707\":false,\"4708\":false,\"4709\":false,\"4710\":false,\"4711\":false,\"4712\":false,\"4713\":false,\"4714\":false,\"4715\":false,\"4716\":false,\"4717\":false,\"4718\":false,\"4719\":false,\"4720\":false,\"4721\":false,\"4722\":false,\"4723\":false,\"4724\":false,\"4725\":false,\"4726\":false,\"4727\":false,\"4728\":false,\"4729\":false,\"4730\":false,\"4731\":false,\"4732\":false,\"4733\":false,\"4734\":false,\"4735\":false,\"4736\":false,\"4737\":false,\"4738\":false,\"4739\":false,\"4740\":false,\"4741\":false,\"4742\":false,\"4743\":false,\"4744\":false,\"4745\":false,\"4746\":false,\"4747\":false,\"4748\":false,\"4749\":false,\"4750\":false,\"4751\":false,\"4752\":false,\"4753\":false,\"4754\":false,\"4755\":false,\"4756\":false,\"4757\":false,\"4758\":false,\"4759\":false,\"4760\":false,\"4761\":false,\"4762\":false,\"4763\":false,\"4764\":false,\"4765\":false,\"4766\":false,\"4767\":false,\"4768\":false,\"4769\":false,\"4770\":false,\"4771\":false,\"4772\":false,\"4773\":false,\"4774\":false,\"4775\":false,\"4776\":false,\"4777\":false,\"4778\":false,\"4779\":false,\"4780\":false,\"4781\":false,\"4782\":false,\"4783\":false,\"4784\":false,\"4785\":false,\"4786\":false,\"4787\":false,\"4788\":false,\"4789\":false,\"4790\":false,\"4791\":false,\"4792\":false,\"4793\":false,\"4794\":false,\"4795\":false,\"4796\":false,\"4797\":false,\"4798\":false,\"4799\":false,\"4800\":false,\"4801\":false,\"4802\":false,\"4803\":false,\"4804\":false,\"4805\":false,\"4806\":false,\"4807\":false,\"4808\":false,\"4809\":false,\"4810\":false,\"4811\":false,\"4812\":false,\"4813\":false,\"4814\":false,\"4815\":false,\"4816\":false,\"4817\":false,\"4818\":false,\"4819\":false,\"4820\":false,\"4821\":false,\"4822\":false,\"4823\":false,\"4824\":false,\"4825\":false,\"4826\":false,\"4827\":false,\"4828\":false,\"4829\":false,\"4830\":false,\"4831\":false,\"4832\":false,\"4833\":false,\"4834\":false,\"4835\":false,\"4836\":false,\"4837\":false,\"4838\":false,\"4839\":false,\"4840\":false,\"4841\":false,\"4842\":false,\"4843\":false,\"4844\":false,\"4845\":false,\"4846\":false,\"4847\":false,\"4848\":false,\"4849\":false,\"4850\":false,\"4851\":false,\"4852\":false,\"4853\":false,\"4854\":false,\"4855\":false,\"4856\":false,\"4857\":false,\"4858\":false,\"4859\":false,\"4860\":false,\"4861\":false,\"4862\":false,\"4863\":false,\"4864\":false,\"4865\":false,\"4866\":false,\"4867\":false,\"4868\":false,\"4869\":false,\"4870\":false,\"4871\":false,\"4872\":false,\"4873\":false,\"4874\":false,\"4875\":false,\"4876\":false,\"4877\":false,\"4878\":false,\"4879\":false,\"4880\":false,\"4881\":false,\"4882\":false,\"4883\":false,\"4884\":false,\"4885\":false,\"4886\":false,\"4887\":false,\"4888\":false,\"4889\":false,\"4890\":false,\"4891\":false,\"4892\":false,\"4893\":false,\"4894\":false,\"4895\":false,\"4896\":false,\"4897\":false,\"4898\":false,\"4899\":false,\"4900\":false,\"4901\":false,\"4902\":false,\"4903\":false,\"4904\":false,\"4905\":false,\"4906\":false,\"4907\":false,\"4908\":false,\"4909\":false,\"4910\":false,\"4911\":false,\"4912\":false,\"4913\":false,\"4914\":false,\"4915\":false,\"4916\":false,\"4917\":false,\"4918\":false,\"4919\":false,\"4920\":false,\"4921\":false,\"4922\":false,\"4923\":false,\"4924\":false,\"4925\":false,\"4926\":false,\"4927\":false,\"4928\":false,\"4929\":false,\"4930\":false,\"4931\":false,\"4932\":false,\"4933\":false,\"4934\":false,\"4935\":false,\"4936\":false,\"4937\":false,\"4938\":false,\"4939\":false,\"4940\":false,\"4941\":false,\"4942\":false,\"4943\":false,\"4944\":false,\"4945\":false,\"4946\":false,\"4947\":false,\"4948\":false,\"4949\":false,\"4950\":false,\"4951\":false,\"4952\":false,\"4953\":false,\"4954\":false,\"4955\":false,\"4956\":false,\"4957\":false,\"4958\":false,\"4959\":false,\"4960\":false,\"4961\":false,\"4962\":false,\"4963\":false,\"4964\":false,\"4965\":false,\"4966\":false,\"4967\":false,\"4968\":false,\"4969\":false,\"4970\":false,\"4971\":false,\"4972\":false,\"4973\":false,\"4974\":false,\"4975\":false,\"4976\":false,\"4977\":false,\"4978\":false,\"4979\":false,\"4980\":false,\"4981\":false,\"4982\":false,\"4983\":false,\"4984\":false,\"4985\":false,\"4986\":false,\"4987\":false,\"4988\":false,\"4989\":false,\"4990\":false,\"4991\":false,\"4992\":false,\"4993\":false,\"4994\":false,\"4995\":false,\"4996\":false,\"4997\":false,\"4998\":false,\"4999\":false},\"display_text_range\":{\"0\":[0,222],\"1\":[0,250],\"2\":[0,71],\"3\":[0,146],\"4\":[0,28],\"5\":[0,272],\"6\":[0,250],\"7\":[0,59],\"8\":[0,124],\"9\":[0,62],\"10\":[15,89],\"11\":[0,33],\"12\":[0,87],\"13\":[0,51],\"14\":[0,274],\"15\":[12,289],\"16\":[0,114],\"17\":[15,192],\"18\":[0,118],\"19\":[0,127],\"20\":[0,99],\"21\":[0,172],\"22\":[0,153],\"23\":[0,151],\"24\":[0,272],\"25\":[0,276],\"26\":[0,273],\"27\":[0,150],\"28\":[0,148],\"29\":[0,248],\"30\":[0,202],\"31\":[0,159],\"32\":[8,264],\"33\":[0,256],\"34\":[0,200],\"35\":[0,180],\"36\":[0,201],\"37\":[0,275],\"38\":[0,256],\"39\":[0,200],\"40\":[0,191],\"41\":[0,198],\"42\":[0,192],\"43\":[0,273],\"44\":[0,260],\"45\":[0,81],\"46\":[0,141],\"47\":[0,243],\"48\":[0,164],\"49\":[0,275],\"50\":[0,273],\"51\":[0,269],\"52\":[28,286],\"53\":[0,119],\"54\":[0,78],\"55\":[0,277],\"56\":[0,193],\"57\":[0,277],\"58\":[0,179],\"59\":[0,246],\"60\":[0,191],\"61\":[0,216],\"62\":[0,225],\"63\":[11,93],\"64\":[0,278],\"65\":[9,253],\"66\":[0,159],\"67\":[0,238],\"68\":[0,276],\"69\":[0,125],\"70\":[0,89],\"71\":[0,215],\"72\":[0,177],\"73\":[0,279],\"74\":[0,115],\"75\":[0,182],\"76\":[0,203],\"77\":[0,276],\"78\":[0,280],\"79\":[0,280],\"80\":[0,279],\"81\":[10,112],\"82\":[0,78],\"83\":[0,117],\"84\":[0,223],\"85\":[0,278],\"86\":[0,283],\"87\":[0,267],\"88\":[0,58],\"89\":[0,243],\"90\":[0,193],\"91\":[0,202],\"92\":[6,103],\"93\":[0,100],\"94\":[25,149],\"95\":[0,134],\"96\":[0,114],\"97\":[0,170],\"98\":[0,149],\"99\":[0,157],\"100\":[0,140],\"101\":[0,213],\"102\":[0,213],\"103\":[0,202],\"104\":[0,204],\"105\":[0,109],\"106\":[0,163],\"107\":[0,223],\"108\":[0,277],\"109\":[0,277],\"110\":[0,95],\"111\":[0,201],\"112\":[0,97],\"113\":[0,90],\"114\":[43,189],\"115\":[0,277],\"116\":[0,273],\"117\":[0,54],\"118\":[0,90],\"119\":[0,274],\"120\":[0,48],\"121\":[0,172],\"122\":[0,193],\"123\":[0,256],\"124\":[0,80],\"125\":[0,268],\"126\":[47,302],\"127\":[0,185],\"128\":[0,276],\"129\":[0,243],\"130\":[11,233],\"131\":[0,277],\"132\":[0,202],\"133\":[0,225],\"134\":[0,264],\"135\":[0,272],\"136\":[0,205],\"137\":[0,88],\"138\":[0,70],\"139\":[0,117],\"140\":[0,271],\"141\":[0,272],\"142\":[0,245],\"143\":[0,287],\"144\":[0,138],\"145\":[0,95],\"146\":[0,279],\"147\":[0,128],\"148\":[0,89],\"149\":[0,278],\"150\":[0,265],\"151\":[0,163],\"152\":[16,285],\"153\":[0,125],\"154\":[0,223],\"155\":[0,95],\"156\":[14,132],\"157\":[0,281],\"158\":[0,243],\"159\":[0,126],\"160\":[0,234],\"161\":[0,132],\"162\":[0,110],\"163\":[0,185],\"164\":[0,193],\"165\":[0,147],\"166\":[0,228],\"167\":[0,188],\"168\":[0,277],\"169\":[0,17],\"170\":[0,141],\"171\":[0,193],\"172\":[0,268],\"173\":[0,152],\"174\":[0,153],\"175\":[0,56],\"176\":[0,231],\"177\":[0,279],\"178\":[0,180],\"179\":[0,261],\"180\":[0,76],\"181\":[0,124],\"182\":[0,160],\"183\":[0,187],\"184\":[0,96],\"185\":[0,226],\"186\":[0,184],\"187\":[0,205],\"188\":[0,80],\"189\":[0,157],\"190\":[0,85],\"191\":[0,222],\"192\":[0,280],\"193\":[0,73],\"194\":[0,239],\"195\":[0,172],\"196\":[0,261],\"197\":[0,238],\"198\":[0,140],\"199\":[0,137],\"200\":[0,135],\"201\":[0,291],\"202\":[0,142],\"203\":[0,204],\"204\":[0,154],\"205\":[0,273],\"206\":[0,268],\"207\":[0,129],\"208\":[0,250],\"209\":[0,250],\"210\":[0,276],\"211\":[13,288],\"212\":[0,134],\"213\":[0,278],\"214\":[0,76],\"215\":[0,203],\"216\":[0,66],\"217\":[0,263],\"218\":[0,251],\"219\":[0,218],\"220\":[0,213],\"221\":[0,140],\"222\":[0,259],\"223\":[0,146],\"224\":[0,166],\"225\":[0,278],\"226\":[0,257],\"227\":[0,237],\"228\":[0,237],\"229\":[0,216],\"230\":[0,279],\"231\":[0,127],\"232\":[0,121],\"233\":[0,279],\"234\":[0,166],\"235\":[0,186],\"236\":[0,284],\"237\":[0,164],\"238\":[0,164],\"239\":[0,279],\"240\":[0,155],\"241\":[0,224],\"242\":[0,180],\"243\":[0,121],\"244\":[0,124],\"245\":[0,98],\"246\":[0,177],\"247\":[0,227],\"248\":[0,136],\"249\":[0,201],\"250\":[0,137],\"251\":[0,203],\"252\":[0,100],\"253\":[0,88],\"254\":[0,193],\"255\":[0,279],\"256\":[0,84],\"257\":[0,238],\"258\":[0,173],\"259\":[0,154],\"260\":[0,170],\"261\":[0,87],\"262\":[0,209],\"263\":[0,56],\"264\":[0,231],\"265\":[0,249],\"266\":[0,158],\"267\":[0,261],\"268\":[0,126],\"269\":[0,131],\"270\":[0,253],\"271\":[0,243],\"272\":[0,286],\"273\":[0,252],\"274\":[0,286],\"275\":[0,286],\"276\":[0,132],\"277\":[0,288],\"278\":[0,271],\"279\":[0,133],\"280\":[0,273],\"281\":[0,280],\"282\":[0,106],\"283\":[0,260],\"284\":[0,144],\"285\":[0,123],\"286\":[0,91],\"287\":[0,277],\"288\":[0,277],\"289\":[0,278],\"290\":[0,211],\"291\":[0,98],\"292\":[0,144],\"293\":[0,111],\"294\":[11,254],\"295\":[0,89],\"296\":[0,247],\"297\":[25,233],\"298\":[0,250],\"299\":[0,150],\"300\":[25,233],\"301\":[0,217],\"302\":[0,165],\"303\":[0,280],\"304\":[0,277],\"305\":[0,279],\"306\":[0,120],\"307\":[0,280],\"308\":[0,280],\"309\":[0,173],\"310\":[0,280],\"311\":[0,255],\"312\":[0,178],\"313\":[0,149],\"314\":[0,136],\"315\":[0,120],\"316\":[0,216],\"317\":[0,187],\"318\":[0,64],\"319\":[0,192],\"320\":[0,179],\"321\":[0,125],\"322\":[0,178],\"323\":[0,270],\"324\":[0,97],\"325\":[0,262],\"326\":[0,273],\"327\":[0,276],\"328\":[0,77],\"329\":[0,128],\"330\":[0,232],\"331\":[0,270],\"332\":[0,99],\"333\":[0,137],\"334\":[0,224],\"335\":[0,147],\"336\":[0,202],\"337\":[0,263],\"338\":[0,171],\"339\":[0,78],\"340\":[0,237],\"341\":[0,185],\"342\":[0,106],\"343\":[0,123],\"344\":[0,183],\"345\":[0,102],\"346\":[0,94],\"347\":[0,207],\"348\":[0,276],\"349\":[0,160],\"350\":[0,262],\"351\":[0,141],\"352\":[0,114],\"353\":[10,188],\"354\":[0,205],\"355\":[0,193],\"356\":[0,104],\"357\":[0,229],\"358\":[0,62],\"359\":[0,139],\"360\":[0,277],\"361\":[0,93],\"362\":[0,93],\"363\":[0,156],\"364\":[0,243],\"365\":[0,117],\"366\":[0,275],\"367\":[0,157],\"368\":[0,275],\"369\":[0,175],\"370\":[0,229],\"371\":[0,117],\"372\":[0,256],\"373\":[17,34],\"374\":[0,52],\"375\":[0,103],\"376\":[0,222],\"377\":[0,271],\"378\":[0,196],\"379\":[16,258],\"380\":[0,275],\"381\":[9,227],\"382\":[0,276],\"383\":[0,204],\"384\":[0,121],\"385\":[0,130],\"386\":[0,191],\"387\":[0,157],\"388\":[0,139],\"389\":[0,91],\"390\":[0,107],\"391\":[0,280],\"392\":[0,283],\"393\":[0,108],\"394\":[0,275],\"395\":[0,197],\"396\":[0,150],\"397\":[0,227],\"398\":[0,220],\"399\":[0,218],\"400\":[0,145],\"401\":[0,278],\"402\":[0,154],\"403\":[0,71],\"404\":[17,42],\"405\":[0,180],\"406\":[0,163],\"407\":[0,177],\"408\":[0,243],\"409\":[0,121],\"410\":[0,190],\"411\":[0,173],\"412\":[0,278],\"413\":[0,226],\"414\":[0,111],\"415\":[0,146],\"416\":[0,268],\"417\":[0,207],\"418\":[0,122],\"419\":[0,279],\"420\":[0,145],\"421\":[0,86],\"422\":[0,279],\"423\":[0,174],\"424\":[0,283],\"425\":[11,130],\"426\":[0,163],\"427\":[0,271],\"428\":[0,155],\"429\":[0,201],\"430\":[0,63],\"431\":[0,116],\"432\":[0,200],\"433\":[0,224],\"434\":[0,197],\"435\":[0,107],\"436\":[0,178],\"437\":[0,277],\"438\":[0,270],\"439\":[0,269],\"440\":[0,127],\"441\":[0,92],\"442\":[0,156],\"443\":[0,248],\"444\":[0,254],\"445\":[0,277],\"446\":[0,280],\"447\":[0,94],\"448\":[0,278],\"449\":[0,265],\"450\":[0,148],\"451\":[0,154],\"452\":[0,257],\"453\":[0,283],\"454\":[0,280],\"455\":[0,117],\"456\":[0,272],\"457\":[0,267],\"458\":[0,112],\"459\":[0,252],\"460\":[0,129],\"461\":[0,230],\"462\":[0,184],\"463\":[0,204],\"464\":[0,241],\"465\":[0,122],\"466\":[0,226],\"467\":[0,213],\"468\":[0,134],\"469\":[0,215],\"470\":[0,48],\"471\":[0,230],\"472\":[0,88],\"473\":[0,209],\"474\":[14,285],\"475\":[0,122],\"476\":[30,301],\"477\":[12,283],\"478\":[10,281],\"479\":[17,288],\"480\":[0,269],\"481\":[14,285],\"482\":[11,282],\"483\":[24,295],\"484\":[17,288],\"485\":[0,217],\"486\":[13,284],\"487\":[16,287],\"488\":[12,283],\"489\":[13,188],\"490\":[28,299],\"491\":[24,295],\"492\":[25,296],\"493\":[15,286],\"494\":[27,298],\"495\":[0,95],\"496\":[29,300],\"497\":[14,285],\"498\":[13,284],\"499\":[111,382],\"500\":[11,282],\"501\":[12,283],\"502\":[13,284],\"503\":[0,212],\"504\":[0,271],\"505\":[0,271],\"506\":[0,276],\"507\":[0,133],\"508\":[0,205],\"509\":[0,280],\"510\":[0,271],\"511\":[0,59],\"512\":[0,107],\"513\":[0,74],\"514\":[0,112],\"515\":[0,143],\"516\":[0,278],\"517\":[0,165],\"518\":[0,129],\"519\":[0,163],\"520\":[0,119],\"521\":[0,279],\"522\":[0,271],\"523\":[9,99],\"524\":[0,217],\"525\":[0,212],\"526\":[0,270],\"527\":[0,256],\"528\":[0,277],\"529\":[0,143],\"530\":[0,279],\"531\":[0,102],\"532\":[0,71],\"533\":[0,268],\"534\":[10,235],\"535\":[14,239],\"536\":[10,235],\"537\":[0,165],\"538\":[12,237],\"539\":[14,239],\"540\":[12,237],\"541\":[16,241],\"542\":[0,133],\"543\":[0,65],\"544\":[0,261],\"545\":[0,104],\"546\":[0,114],\"547\":[0,171],\"548\":[0,242],\"549\":[0,267],\"550\":[0,279],\"551\":[0,272],\"552\":[0,279],\"553\":[0,278],\"554\":[0,117],\"555\":[0,272],\"556\":[0,261],\"557\":[0,225],\"558\":[0,161],\"559\":[0,148],\"560\":[0,198],\"561\":[0,274],\"562\":[0,251],\"563\":[0,237],\"564\":[0,164],\"565\":[0,275],\"566\":[0,272],\"567\":[0,210],\"568\":[0,226],\"569\":[0,215],\"570\":[0,221],\"571\":[0,280],\"572\":[0,226],\"573\":[0,200],\"574\":[0,270],\"575\":[0,144],\"576\":[0,85],\"577\":[0,81],\"578\":[0,110],\"579\":[0,205],\"580\":[27,270],\"581\":[36,266],\"582\":[0,153],\"583\":[0,161],\"584\":[0,235],\"585\":[0,279],\"586\":[0,277],\"587\":[0,157],\"588\":[0,148],\"589\":[0,272],\"590\":[0,275],\"591\":[0,248],\"592\":[0,155],\"593\":[0,273],\"594\":[0,133],\"595\":[0,237],\"596\":[0,151],\"597\":[10,135],\"598\":[0,213],\"599\":[0,118],\"600\":[0,227],\"601\":[0,232],\"602\":[0,114],\"603\":[0,278],\"604\":[0,276],\"605\":[0,110],\"606\":[0,87],\"607\":[0,165],\"608\":[0,115],\"609\":[0,150],\"610\":[0,191],\"611\":[0,234],\"612\":[0,157],\"613\":[0,222],\"614\":[0,183],\"615\":[0,180],\"616\":[0,135],\"617\":[0,126],\"618\":[0,244],\"619\":[0,183],\"620\":[0,46],\"621\":[0,140],\"622\":[0,274],\"623\":[0,153],\"624\":[0,196],\"625\":[0,168],\"626\":[0,277],\"627\":[0,139],\"628\":[0,218],\"629\":[0,279],\"630\":[0,114],\"631\":[0,273],\"632\":[0,275],\"633\":[0,266],\"634\":[0,211],\"635\":[0,156],\"636\":[0,198],\"637\":[0,151],\"638\":[0,253],\"639\":[0,229],\"640\":[0,137],\"641\":[0,122],\"642\":[0,280],\"643\":[0,133],\"644\":[0,99],\"645\":[0,276],\"646\":[0,160],\"647\":[0,279],\"648\":[0,168],\"649\":[0,238],\"650\":[0,274],\"651\":[0,276],\"652\":[0,181],\"653\":[10,96],\"654\":[0,156],\"655\":[0,123],\"656\":[0,211],\"657\":[0,272],\"658\":[0,258],\"659\":[0,213],\"660\":[0,107],\"661\":[0,141],\"662\":[0,118],\"663\":[0,51],\"664\":[0,256],\"665\":[0,279],\"666\":[0,68],\"667\":[0,256],\"668\":[0,177],\"669\":[0,274],\"670\":[0,273],\"671\":[0,74],\"672\":[0,163],\"673\":[0,213],\"674\":[0,279],\"675\":[0,221],\"676\":[0,165],\"677\":[0,279],\"678\":[0,62],\"679\":[0,99],\"680\":[0,275],\"681\":[0,149],\"682\":[0,263],\"683\":[0,79],\"684\":[0,276],\"685\":[0,153],\"686\":[0,235],\"687\":[0,107],\"688\":[0,272],\"689\":[0,90],\"690\":[0,142],\"691\":[17,152],\"692\":[0,266],\"693\":[0,35],\"694\":[0,266],\"695\":[0,279],\"696\":[0,213],\"697\":[0,176],\"698\":[0,211],\"699\":[0,217],\"700\":[0,279],\"701\":[0,103],\"702\":[0,102],\"703\":[0,71],\"704\":[0,205],\"705\":[0,111],\"706\":[0,71],\"707\":[0,224],\"708\":[0,278],\"709\":[0,243],\"710\":[0,51],\"711\":[0,80],\"712\":[0,278],\"713\":[0,40],\"714\":[0,74],\"715\":[0,62],\"716\":[0,69],\"717\":[0,138],\"718\":[0,278],\"719\":[0,104],\"720\":[0,202],\"721\":[0,202],\"722\":[0,63],\"723\":[0,278],\"724\":[0,186],\"725\":[0,85],\"726\":[0,280],\"727\":[0,257],\"728\":[0,279],\"729\":[0,204],\"730\":[0,195],\"731\":[0,185],\"732\":[0,81],\"733\":[0,81],\"734\":[0,84],\"735\":[0,82],\"736\":[0,278],\"737\":[0,175],\"738\":[10,42],\"739\":[0,168],\"740\":[0,104],\"741\":[0,56],\"742\":[0,114],\"743\":[0,114],\"744\":[40,283],\"745\":[0,289],\"746\":[0,232],\"747\":[0,286],\"748\":[0,280],\"749\":[0,200],\"750\":[0,272],\"751\":[0,154],\"752\":[0,213],\"753\":[0,188],\"754\":[0,183],\"755\":[12,174],\"756\":[0,265],\"757\":[0,64],\"758\":[0,99],\"759\":[0,88],\"760\":[0,279],\"761\":[0,131],\"762\":[0,77],\"763\":[0,152],\"764\":[0,201],\"765\":[0,276],\"766\":[0,217],\"767\":[0,279],\"768\":[0,286],\"769\":[0,286],\"770\":[0,286],\"771\":[0,286],\"772\":[0,286],\"773\":[0,106],\"774\":[0,286],\"775\":[0,286],\"776\":[0,286],\"777\":[0,101],\"778\":[0,286],\"779\":[0,286],\"780\":[0,156],\"781\":[0,286],\"782\":[0,286],\"783\":[0,286],\"784\":[0,286],\"785\":[0,286],\"786\":[0,278],\"787\":[0,92],\"788\":[0,202],\"789\":[0,173],\"790\":[0,265],\"791\":[0,164],\"792\":[0,152],\"793\":[0,277],\"794\":[0,228],\"795\":[0,175],\"796\":[0,228],\"797\":[0,269],\"798\":[0,163],\"799\":[0,274],\"800\":[0,190],\"801\":[0,282],\"802\":[0,121],\"803\":[0,177],\"804\":[0,114],\"805\":[0,151],\"806\":[0,238],\"807\":[0,179],\"808\":[0,256],\"809\":[0,240],\"810\":[0,271],\"811\":[0,278],\"812\":[0,234],\"813\":[0,243],\"814\":[0,277],\"815\":[0,236],\"816\":[0,149],\"817\":[0,115],\"818\":[0,188],\"819\":[0,227],\"820\":[0,226],\"821\":[0,214],\"822\":[0,279],\"823\":[0,222],\"824\":[0,240],\"825\":[0,279],\"826\":[0,254],\"827\":[0,67],\"828\":[0,143],\"829\":[0,74],\"830\":[0,230],\"831\":[0,168],\"832\":[0,176],\"833\":[0,204],\"834\":[0,164],\"835\":[0,158],\"836\":[0,267],\"837\":[0,122],\"838\":[17,207],\"839\":[0,268],\"840\":[0,139],\"841\":[0,267],\"842\":[0,106],\"843\":[0,274],\"844\":[0,43],\"845\":[0,237],\"846\":[0,260],\"847\":[0,106],\"848\":[0,178],\"849\":[0,216],\"850\":[0,268],\"851\":[0,201],\"852\":[0,218],\"853\":[0,41],\"854\":[0,57],\"855\":[0,133],\"856\":[0,106],\"857\":[0,230],\"858\":[0,238],\"859\":[0,75],\"860\":[0,293],\"861\":[0,152],\"862\":[0,85],\"863\":[0,279],\"864\":[0,114],\"865\":[0,142],\"866\":[0,240],\"867\":[0,152],\"868\":[0,235],\"869\":[0,173],\"870\":[0,163],\"871\":[0,183],\"872\":[0,278],\"873\":[0,214],\"874\":[0,245],\"875\":[0,44],\"876\":[0,192],\"877\":[0,113],\"878\":[0,276],\"879\":[0,133],\"880\":[0,65],\"881\":[0,68],\"882\":[0,170],\"883\":[0,146],\"884\":[0,265],\"885\":[0,163],\"886\":[0,222],\"887\":[0,201],\"888\":[0,42],\"889\":[0,124],\"890\":[0,103],\"891\":[0,90],\"892\":[0,273],\"893\":[0,81],\"894\":[0,252],\"895\":[0,201],\"896\":[0,115],\"897\":[0,202],\"898\":[0,62],\"899\":[0,222],\"900\":[11,197],\"901\":[0,39],\"902\":[0,140],\"903\":[0,80],\"904\":[0,278],\"905\":[0,252],\"906\":[0,117],\"907\":[0,102],\"908\":[0,102],\"909\":[0,102],\"910\":[0,277],\"911\":[0,100],\"912\":[13,225],\"913\":[0,165],\"914\":[0,53],\"915\":[0,278],\"916\":[0,128],\"917\":[0,271],\"918\":[0,202],\"919\":[0,218],\"920\":[0,261],\"921\":[0,249],\"922\":[0,237],\"923\":[0,279],\"924\":[0,243],\"925\":[0,196],\"926\":[0,156],\"927\":[0,164],\"928\":[0,238],\"929\":[0,152],\"930\":[0,202],\"931\":[0,114],\"932\":[0,189],\"933\":[0,141],\"934\":[0,143],\"935\":[0,278],\"936\":[0,85],\"937\":[0,279],\"938\":[0,278],\"939\":[0,129],\"940\":[0,281],\"941\":[0,277],\"942\":[0,243],\"943\":[0,82],\"944\":[0,233],\"945\":[0,203],\"946\":[0,128],\"947\":[0,163],\"948\":[0,141],\"949\":[0,81],\"950\":[0,171],\"951\":[0,124],\"952\":[0,248],\"953\":[0,191],\"954\":[0,140],\"955\":[0,74],\"956\":[27,178],\"957\":[0,279],\"958\":[0,276],\"959\":[0,119],\"960\":[13,207],\"961\":[0,238],\"962\":[0,53],\"963\":[0,168],\"964\":[0,277],\"965\":[0,192],\"966\":[0,134],\"967\":[0,213],\"968\":[0,91],\"969\":[0,155],\"970\":[0,104],\"971\":[0,251],\"972\":[0,65],\"973\":[0,169],\"974\":[0,158],\"975\":[0,185],\"976\":[0,279],\"977\":[0,56],\"978\":[0,261],\"979\":[0,208],\"980\":[0,108],\"981\":[0,75],\"982\":[0,208],\"983\":[0,28],\"984\":[0,155],\"985\":[0,142],\"986\":[0,275],\"987\":[0,84],\"988\":[0,131],\"989\":[0,151],\"990\":[0,278],\"991\":[0,255],\"992\":[0,101],\"993\":[0,178],\"994\":[0,186],\"995\":[0,249],\"996\":[0,215],\"997\":[0,142],\"998\":[0,222],\"999\":[0,222],\"1000\":[0,222],\"1001\":[0,222],\"1002\":[0,222],\"1003\":[0,222],\"1004\":[0,222],\"1005\":[0,222],\"1006\":[0,280],\"1007\":[0,253],\"1008\":[0,94],\"1009\":[0,273],\"1010\":[0,269],\"1011\":[0,222],\"1012\":[0,237],\"1013\":[0,81],\"1014\":[0,280],\"1015\":[0,119],\"1016\":[0,219],\"1017\":[0,137],\"1018\":[0,260],\"1019\":[0,44],\"1020\":[0,122],\"1021\":[0,147],\"1022\":[0,118],\"1023\":[0,208],\"1024\":[0,84],\"1025\":[0,211],\"1026\":[0,140],\"1027\":[0,271],\"1028\":[0,237],\"1029\":[0,260],\"1030\":[0,205],\"1031\":[0,112],\"1032\":[0,274],\"1033\":[0,235],\"1034\":[0,97],\"1035\":[0,157],\"1036\":[0,269],\"1037\":[0,60],\"1038\":[10,287],\"1039\":[0,254],\"1040\":[0,271],\"1041\":[0,265],\"1042\":[0,123],\"1043\":[0,99],\"1044\":[0,45],\"1045\":[0,239],\"1046\":[0,102],\"1047\":[0,225],\"1048\":[0,147],\"1049\":[0,265],\"1050\":[0,230],\"1051\":[0,190],\"1052\":[0,251],\"1053\":[0,150],\"1054\":[0,274],\"1055\":[0,163],\"1056\":[0,155],\"1057\":[0,128],\"1058\":[0,110],\"1059\":[0,183],\"1060\":[0,273],\"1061\":[0,157],\"1062\":[0,185],\"1063\":[0,105],\"1064\":[0,93],\"1065\":[0,234],\"1066\":[0,100],\"1067\":[0,280],\"1068\":[0,156],\"1069\":[0,178],\"1070\":[0,253],\"1071\":[0,190],\"1072\":[0,96],\"1073\":[0,176],\"1074\":[0,101],\"1075\":[0,99],\"1076\":[0,207],\"1077\":[0,244],\"1078\":[0,133],\"1079\":[0,54],\"1080\":[0,238],\"1081\":[0,145],\"1082\":[0,222],\"1083\":[21,132],\"1084\":[15,252],\"1085\":[0,263],\"1086\":[0,157],\"1087\":[0,151],\"1088\":[0,244],\"1089\":[0,172],\"1090\":[0,52],\"1091\":[0,287],\"1092\":[0,156],\"1093\":[0,245],\"1094\":[0,72],\"1095\":[0,216],\"1096\":[21,221],\"1097\":[12,212],\"1098\":[11,211],\"1099\":[17,217],\"1100\":[15,215],\"1101\":[0,275],\"1102\":[0,45],\"1103\":[11,211],\"1104\":[11,211],\"1105\":[16,216],\"1106\":[13,213],\"1107\":[11,211],\"1108\":[8,208],\"1109\":[10,210],\"1110\":[16,62],\"1111\":[0,274],\"1112\":[9,209],\"1113\":[0,155],\"1114\":[0,172],\"1115\":[17,217],\"1116\":[12,212],\"1117\":[10,210],\"1118\":[15,215],\"1119\":[40,240],\"1120\":[0,77],\"1121\":[12,212],\"1122\":[17,217],\"1123\":[10,210],\"1124\":[0,158],\"1125\":[0,158],\"1126\":[0,72],\"1127\":[0,268],\"1128\":[0,125],\"1129\":[0,248],\"1130\":[0,164],\"1131\":[0,272],\"1132\":[0,229],\"1133\":[0,95],\"1134\":[0,272],\"1135\":[0,256],\"1136\":[0,274],\"1137\":[0,156],\"1138\":[0,120],\"1139\":[0,257],\"1140\":[0,214],\"1141\":[0,144],\"1142\":[0,272],\"1143\":[0,27],\"1144\":[0,282],\"1145\":[0,88],\"1146\":[0,198],\"1147\":[0,132],\"1148\":[0,234],\"1149\":[0,231],\"1150\":[0,82],\"1151\":[0,119],\"1152\":[0,34],\"1153\":[0,110],\"1154\":[0,80],\"1155\":[0,250],\"1156\":[0,161],\"1157\":[0,49],\"1158\":[0,92],\"1159\":[0,86],\"1160\":[0,282],\"1161\":[0,32],\"1162\":[0,32],\"1163\":[0,253],\"1164\":[0,262],\"1165\":[0,152],\"1166\":[0,135],\"1167\":[0,236],\"1168\":[0,55],\"1169\":[0,280],\"1170\":[0,249],\"1171\":[0,279],\"1172\":[0,118],\"1173\":[0,193],\"1174\":[0,236],\"1175\":[0,267],\"1176\":[0,237],\"1177\":[0,193],\"1178\":[0,52],\"1179\":[0,234],\"1180\":[0,138],\"1181\":[0,276],\"1182\":[0,278],\"1183\":[0,125],\"1184\":[0,279],\"1185\":[0,280],\"1186\":[0,275],\"1187\":[0,257],\"1188\":[0,210],\"1189\":[0,92],\"1190\":[0,75],\"1191\":[0,145],\"1192\":[0,291],\"1193\":[0,221],\"1194\":[11,100],\"1195\":[0,51],\"1196\":[0,87],\"1197\":[0,122],\"1198\":[0,245],\"1199\":[0,89],\"1200\":[0,143],\"1201\":[0,81],\"1202\":[0,213],\"1203\":[0,167],\"1204\":[0,78],\"1205\":[0,281],\"1206\":[19,94],\"1207\":[0,75],\"1208\":[0,125],\"1209\":[0,278],\"1210\":[16,116],\"1211\":[0,113],\"1212\":[0,214],\"1213\":[16,261],\"1214\":[0,279],\"1215\":[0,138],\"1216\":[0,59],\"1217\":[0,273],\"1218\":[0,214],\"1219\":[0,125],\"1220\":[0,64],\"1221\":[0,83],\"1222\":[0,211],\"1223\":[0,211],\"1224\":[0,152],\"1225\":[0,105],\"1226\":[0,126],\"1227\":[0,211],\"1228\":[0,84],\"1229\":[0,216],\"1230\":[0,211],\"1231\":[11,171],\"1232\":[0,211],\"1233\":[0,211],\"1234\":[0,211],\"1235\":[0,211],\"1236\":[0,211],\"1237\":[0,211],\"1238\":[11,107],\"1239\":[12,212],\"1240\":[0,211],\"1241\":[0,58],\"1242\":[0,211],\"1243\":[0,211],\"1244\":[0,211],\"1245\":[13,213],\"1246\":[0,254],\"1247\":[0,155],\"1248\":[14,214],\"1249\":[0,290],\"1250\":[12,212],\"1251\":[0,211],\"1252\":[0,89],\"1253\":[0,211],\"1254\":[0,211],\"1255\":[0,211],\"1256\":[0,40],\"1257\":[13,213],\"1258\":[16,216],\"1259\":[0,103],\"1260\":[95,295],\"1261\":[0,88],\"1262\":[14,214],\"1263\":[0,276],\"1264\":[0,179],\"1265\":[13,213],\"1266\":[15,113],\"1267\":[0,262],\"1268\":[0,122],\"1269\":[11,211],\"1270\":[0,101],\"1271\":[0,188],\"1272\":[0,277],\"1273\":[0,229],\"1274\":[0,164],\"1275\":[0,243],\"1276\":[0,164],\"1277\":[0,251],\"1278\":[0,71],\"1279\":[0,275],\"1280\":[0,204],\"1281\":[0,191],\"1282\":[0,57],\"1283\":[0,151],\"1284\":[0,276],\"1285\":[0,235],\"1286\":[0,139],\"1287\":[0,118],\"1288\":[0,275],\"1289\":[0,279],\"1290\":[0,127],\"1291\":[0,99],\"1292\":[0,85],\"1293\":[0,49],\"1294\":[0,163],\"1295\":[0,53],\"1296\":[0,77],\"1297\":[0,220],\"1298\":[16,111],\"1299\":[0,66],\"1300\":[0,215],\"1301\":[0,58],\"1302\":[0,277],\"1303\":[8,168],\"1304\":[0,248],\"1305\":[0,88],\"1306\":[0,125],\"1307\":[0,136],\"1308\":[0,68],\"1309\":[0,258],\"1310\":[0,161],\"1311\":[0,180],\"1312\":[0,216],\"1313\":[0,176],\"1314\":[0,267],\"1315\":[0,83],\"1316\":[0,275],\"1317\":[0,172],\"1318\":[0,191],\"1319\":[0,132],\"1320\":[0,65],\"1321\":[0,200],\"1322\":[0,274],\"1323\":[0,141],\"1324\":[0,61],\"1325\":[0,269],\"1326\":[0,29],\"1327\":[0,275],\"1328\":[0,154],\"1329\":[0,125],\"1330\":[0,200],\"1331\":[0,105],\"1332\":[0,222],\"1333\":[0,64],\"1334\":[27,229],\"1335\":[0,200],\"1336\":[0,69],\"1337\":[0,136],\"1338\":[0,264],\"1339\":[0,142],\"1340\":[0,46],\"1341\":[0,87],\"1342\":[0,268],\"1343\":[0,279],\"1344\":[0,183],\"1345\":[0,106],\"1346\":[0,273],\"1347\":[0,223],\"1348\":[0,153],\"1349\":[0,278],\"1350\":[0,114],\"1351\":[0,269],\"1352\":[0,268],\"1353\":[0,180],\"1354\":[0,269],\"1355\":[0,63],\"1356\":[0,185],\"1357\":[0,230],\"1358\":[0,229],\"1359\":[0,80],\"1360\":[0,143],\"1361\":[0,116],\"1362\":[0,129],\"1363\":[0,241],\"1364\":[0,114],\"1365\":[0,80],\"1366\":[0,275],\"1367\":[0,275],\"1368\":[0,275],\"1369\":[0,275],\"1370\":[0,275],\"1371\":[0,269],\"1372\":[0,275],\"1373\":[0,145],\"1374\":[0,275],\"1375\":[0,229],\"1376\":[0,269],\"1377\":[0,275],\"1378\":[0,227],\"1379\":[0,210],\"1380\":[0,275],\"1381\":[0,228],\"1382\":[0,106],\"1383\":[0,112],\"1384\":[0,132],\"1385\":[0,278],\"1386\":[0,199],\"1387\":[0,104],\"1388\":[0,87],\"1389\":[0,285],\"1390\":[0,41],\"1391\":[0,180],\"1392\":[0,129],\"1393\":[0,152],\"1394\":[0,52],\"1395\":[0,184],\"1396\":[0,264],\"1397\":[0,263],\"1398\":[0,263],\"1399\":[0,280],\"1400\":[0,118],\"1401\":[0,276],\"1402\":[0,118],\"1403\":[0,71],\"1404\":[0,112],\"1405\":[0,185],\"1406\":[0,276],\"1407\":[0,222],\"1408\":[0,66],\"1409\":[0,80],\"1410\":[0,67],\"1411\":[0,278],\"1412\":[0,179],\"1413\":[0,146],\"1414\":[0,96],\"1415\":[0,80],\"1416\":[0,250],\"1417\":[0,240],\"1418\":[0,229],\"1419\":[0,124],\"1420\":[0,229],\"1421\":[0,158],\"1422\":[0,132],\"1423\":[0,231],\"1424\":[0,46],\"1425\":[0,101],\"1426\":[0,237],\"1427\":[0,170],\"1428\":[0,200],\"1429\":[0,258],\"1430\":[0,117],\"1431\":[0,64],\"1432\":[0,145],\"1433\":[0,175],\"1434\":[0,142],\"1435\":[0,159],\"1436\":[0,227],\"1437\":[0,160],\"1438\":[0,234],\"1439\":[0,245],\"1440\":[0,131],\"1441\":[0,274],\"1442\":[0,191],\"1443\":[0,87],\"1444\":[0,280],\"1445\":[0,180],\"1446\":[0,273],\"1447\":[9,56],\"1448\":[0,142],\"1449\":[0,134],\"1450\":[0,100],\"1451\":[0,201],\"1452\":[0,57],\"1453\":[0,144],\"1454\":[0,155],\"1455\":[0,148],\"1456\":[0,246],\"1457\":[0,146],\"1458\":[10,234],\"1459\":[0,124],\"1460\":[0,181],\"1461\":[0,222],\"1462\":[0,107],\"1463\":[31,122],\"1464\":[0,40],\"1465\":[31,89],\"1466\":[0,280],\"1467\":[0,259],\"1468\":[0,227],\"1469\":[0,68],\"1470\":[0,171],\"1471\":[0,67],\"1472\":[0,271],\"1473\":[0,270],\"1474\":[0,100],\"1475\":[0,29],\"1476\":[26,288],\"1477\":[0,277],\"1478\":[10,73],\"1479\":[0,256],\"1480\":[0,121],\"1481\":[0,273],\"1482\":[0,268],\"1483\":[0,145],\"1484\":[0,277],\"1485\":[0,259],\"1486\":[0,273],\"1487\":[0,258],\"1488\":[0,191],\"1489\":[0,280],\"1490\":[0,81],\"1491\":[0,77],\"1492\":[0,255],\"1493\":[0,116],\"1494\":[0,80],\"1495\":[0,174],\"1496\":[0,97],\"1497\":[0,54],\"1498\":[0,70],\"1499\":[0,130],\"1500\":[0,217],\"1501\":[0,215],\"1502\":[0,129],\"1503\":[12,67],\"1504\":[0,278],\"1505\":[0,277],\"1506\":[0,280],\"1507\":[16,61],\"1508\":[0,285],\"1509\":[0,192],\"1510\":[9,63],\"1511\":[0,192],\"1512\":[0,224],\"1513\":[10,83],\"1514\":[0,273],\"1515\":[17,42],\"1516\":[0,270],\"1517\":[0,179],\"1518\":[12,64],\"1519\":[0,59],\"1520\":[0,222],\"1521\":[0,113],\"1522\":[0,166],\"1523\":[0,203],\"1524\":[0,279],\"1525\":[15,112],\"1526\":[15,112],\"1527\":[15,112],\"1528\":[0,192],\"1529\":[0,280],\"1530\":[0,99],\"1531\":[0,276],\"1532\":[0,52],\"1533\":[0,63],\"1534\":[0,285],\"1535\":[0,161],\"1536\":[0,102],\"1537\":[0,245],\"1538\":[0,274],\"1539\":[0,182],\"1540\":[0,76],\"1541\":[0,162],\"1542\":[5,69],\"1543\":[0,259],\"1544\":[0,276],\"1545\":[0,279],\"1546\":[0,212],\"1547\":[0,212],\"1548\":[15,114],\"1549\":[0,59],\"1550\":[0,275],\"1551\":[0,274],\"1552\":[0,152],\"1553\":[0,123],\"1554\":[0,34],\"1555\":[0,59],\"1556\":[0,108],\"1557\":[0,280],\"1558\":[0,206],\"1559\":[0,207],\"1560\":[0,50],\"1561\":[0,274],\"1562\":[0,182],\"1563\":[0,53],\"1564\":[0,152],\"1565\":[0,104],\"1566\":[0,105],\"1567\":[0,143],\"1568\":[0,107],\"1569\":[0,83],\"1570\":[0,111],\"1571\":[0,44],\"1572\":[0,254],\"1573\":[0,134],\"1574\":[0,81],\"1575\":[0,95],\"1576\":[0,152],\"1577\":[0,62],\"1578\":[0,17],\"1579\":[0,89],\"1580\":[0,127],\"1581\":[0,109],\"1582\":[0,97],\"1583\":[0,107],\"1584\":[0,254],\"1585\":[0,44],\"1586\":[0,71],\"1587\":[0,34],\"1588\":[0,268],\"1589\":[0,277],\"1590\":[0,102],\"1591\":[0,47],\"1592\":[0,171],\"1593\":[0,121],\"1594\":[0,137],\"1595\":[0,40],\"1596\":[0,156],\"1597\":[0,263],\"1598\":[0,102],\"1599\":[0,116],\"1600\":[0,158],\"1601\":[0,113],\"1602\":[0,265],\"1603\":[0,126],\"1604\":[0,153],\"1605\":[0,172],\"1606\":[0,256],\"1607\":[0,93],\"1608\":[0,201],\"1609\":[0,85],\"1610\":[0,99],\"1611\":[0,268],\"1612\":[0,250],\"1613\":[0,148],\"1614\":[0,240],\"1615\":[0,99],\"1616\":[0,117],\"1617\":[0,125],\"1618\":[0,89],\"1619\":[0,153],\"1620\":[0,203],\"1621\":[0,285],\"1622\":[0,253],\"1623\":[0,244],\"1624\":[0,229],\"1625\":[0,66],\"1626\":[0,223],\"1627\":[0,120],\"1628\":[0,266],\"1629\":[0,203],\"1630\":[0,97],\"1631\":[0,70],\"1632\":[0,150],\"1633\":[0,222],\"1634\":[0,22],\"1635\":[0,155],\"1636\":[0,130],\"1637\":[0,156],\"1638\":[0,174],\"1639\":[0,201],\"1640\":[0,260],\"1641\":[0,163],\"1642\":[0,276],\"1643\":[0,130],\"1644\":[0,124],\"1645\":[0,148],\"1646\":[0,158],\"1647\":[0,55],\"1648\":[0,249],\"1649\":[0,95],\"1650\":[0,216],\"1651\":[0,145],\"1652\":[0,66],\"1653\":[0,84],\"1654\":[0,160],\"1655\":[0,273],\"1656\":[0,127],\"1657\":[0,196],\"1658\":[0,59],\"1659\":[0,69],\"1660\":[0,45],\"1661\":[0,99],\"1662\":[0,160],\"1663\":[0,96],\"1664\":[0,246],\"1665\":[0,194],\"1666\":[0,108],\"1667\":[0,218],\"1668\":[0,118],\"1669\":[0,180],\"1670\":[0,145],\"1671\":[0,273],\"1672\":[0,275],\"1673\":[0,154],\"1674\":[0,112],\"1675\":[0,233],\"1676\":[0,246],\"1677\":[0,141],\"1678\":[0,246],\"1679\":[0,193],\"1680\":[0,37],\"1681\":[0,199],\"1682\":[0,203],\"1683\":[0,275],\"1684\":[0,169],\"1685\":[0,257],\"1686\":[0,258],\"1687\":[0,135],\"1688\":[0,154],\"1689\":[0,95],\"1690\":[0,145],\"1691\":[0,119],\"1692\":[0,257],\"1693\":[0,72],\"1694\":[0,272],\"1695\":[0,129],\"1696\":[0,93],\"1697\":[0,275],\"1698\":[0,99],\"1699\":[0,272],\"1700\":[0,100],\"1701\":[0,187],\"1702\":[0,123],\"1703\":[10,91],\"1704\":[0,239],\"1705\":[0,135],\"1706\":[0,126],\"1707\":[0,195],\"1708\":[0,155],\"1709\":[0,254],\"1710\":[0,211],\"1711\":[0,252],\"1712\":[0,229],\"1713\":[0,217],\"1714\":[0,263],\"1715\":[0,103],\"1716\":[0,184],\"1717\":[0,175],\"1718\":[0,276],\"1719\":[0,193],\"1720\":[0,278],\"1721\":[0,225],\"1722\":[0,122],\"1723\":[0,237],\"1724\":[0,199],\"1725\":[0,108],\"1726\":[0,115],\"1727\":[0,216],\"1728\":[0,117],\"1729\":[0,186],\"1730\":[0,113],\"1731\":[0,159],\"1732\":[0,273],\"1733\":[0,195],\"1734\":[0,146],\"1735\":[0,277],\"1736\":[0,201],\"1737\":[0,116],\"1738\":[0,220],\"1739\":[0,214],\"1740\":[0,278],\"1741\":[12,111],\"1742\":[0,177],\"1743\":[0,138],\"1744\":[0,220],\"1745\":[0,124],\"1746\":[0,231],\"1747\":[0,33],\"1748\":[0,189],\"1749\":[0,161],\"1750\":[17,97],\"1751\":[0,216],\"1752\":[17,104],\"1753\":[0,192],\"1754\":[0,271],\"1755\":[0,127],\"1756\":[0,142],\"1757\":[0,211],\"1758\":[0,207],\"1759\":[0,129],\"1760\":[0,279],\"1761\":[0,221],\"1762\":[0,163],\"1763\":[0,148],\"1764\":[5,238],\"1765\":[0,243],\"1766\":[0,279],\"1767\":[0,254],\"1768\":[0,109],\"1769\":[0,277],\"1770\":[0,94],\"1771\":[0,107],\"1772\":[0,99],\"1773\":[0,139],\"1774\":[0,164],\"1775\":[0,217],\"1776\":[0,154],\"1777\":[0,276],\"1778\":[0,280],\"1779\":[0,106],\"1780\":[0,136],\"1781\":[0,201],\"1782\":[0,107],\"1783\":[0,138],\"1784\":[17,134],\"1785\":[0,256],\"1786\":[0,98],\"1787\":[0,234],\"1788\":[0,102],\"1789\":[0,123],\"1790\":[0,159],\"1791\":[0,86],\"1792\":[0,128],\"1793\":[0,205],\"1794\":[11,75],\"1795\":[9,71],\"1796\":[17,80],\"1797\":[0,72],\"1798\":[0,272],\"1799\":[0,157],\"1800\":[0,274],\"1801\":[0,207],\"1802\":[0,234],\"1803\":[0,278],\"1804\":[0,200],\"1805\":[32,163],\"1806\":[10,141],\"1807\":[0,216],\"1808\":[0,131],\"1809\":[0,193],\"1810\":[0,207],\"1811\":[0,262],\"1812\":[0,159],\"1813\":[0,164],\"1814\":[0,255],\"1815\":[0,276],\"1816\":[0,279],\"1817\":[0,273],\"1818\":[0,83],\"1819\":[0,271],\"1820\":[0,187],\"1821\":[0,159],\"1822\":[0,57],\"1823\":[0,207],\"1824\":[16,147],\"1825\":[0,132],\"1826\":[0,103],\"1827\":[0,254],\"1828\":[0,182],\"1829\":[0,163],\"1830\":[0,188],\"1831\":[0,196],\"1832\":[0,275],\"1833\":[0,268],\"1834\":[0,265],\"1835\":[0,278],\"1836\":[0,278],\"1837\":[0,152],\"1838\":[0,187],\"1839\":[0,104],\"1840\":[0,123],\"1841\":[0,276],\"1842\":[0,274],\"1843\":[0,280],\"1844\":[0,182],\"1845\":[0,90],\"1846\":[0,144],\"1847\":[0,97],\"1848\":[0,275],\"1849\":[0,168],\"1850\":[0,96],\"1851\":[0,84],\"1852\":[0,90],\"1853\":[0,160],\"1854\":[0,188],\"1855\":[0,187],\"1856\":[0,91],\"1857\":[0,278],\"1858\":[0,220],\"1859\":[0,216],\"1860\":[0,262],\"1861\":[0,158],\"1862\":[0,158],\"1863\":[0,158],\"1864\":[0,195],\"1865\":[0,265],\"1866\":[0,132],\"1867\":[0,257],\"1868\":[0,160],\"1869\":[0,79],\"1870\":[0,275],\"1871\":[0,191],\"1872\":[0,140],\"1873\":[0,163],\"1874\":[0,140],\"1875\":[0,150],\"1876\":[0,153],\"1877\":[0,272],\"1878\":[0,259],\"1879\":[0,39],\"1880\":[0,196],\"1881\":[0,270],\"1882\":[0,127],\"1883\":[0,277],\"1884\":[0,173],\"1885\":[0,175],\"1886\":[0,176],\"1887\":[0,219],\"1888\":[0,137],\"1889\":[0,107],\"1890\":[0,233],\"1891\":[0,131],\"1892\":[0,144],\"1893\":[0,210],\"1894\":[0,50],\"1895\":[0,176],\"1896\":[0,167],\"1897\":[0,278],\"1898\":[0,246],\"1899\":[0,273],\"1900\":[0,91],\"1901\":[0,204],\"1902\":[0,47],\"1903\":[0,152],\"1904\":[0,274],\"1905\":[0,70],\"1906\":[0,195],\"1907\":[0,236],\"1908\":[0,119],\"1909\":[0,215],\"1910\":[0,111],\"1911\":[0,68],\"1912\":[0,235],\"1913\":[0,168],\"1914\":[0,280],\"1915\":[0,201],\"1916\":[27,180],\"1917\":[0,118],\"1918\":[13,166],\"1919\":[0,271],\"1920\":[16,169],\"1921\":[16,169],\"1922\":[17,170],\"1923\":[0,180],\"1924\":[6,159],\"1925\":[0,92],\"1926\":[0,83],\"1927\":[69,222],\"1928\":[12,165],\"1929\":[0,84],\"1930\":[15,168],\"1931\":[16,169],\"1932\":[13,166],\"1933\":[0,178],\"1934\":[13,166],\"1935\":[14,167],\"1936\":[16,169],\"1937\":[14,167],\"1938\":[8,161],\"1939\":[0,273],\"1940\":[0,170],\"1941\":[0,113],\"1942\":[0,224],\"1943\":[0,176],\"1944\":[15,168],\"1945\":[16,169],\"1946\":[16,169],\"1947\":[0,263],\"1948\":[14,167],\"1949\":[15,168],\"1950\":[12,165],\"1951\":[0,67],\"1952\":[0,43],\"1953\":[0,91],\"1954\":[0,120],\"1955\":[0,51],\"1956\":[13,166],\"1957\":[14,167],\"1958\":[26,179],\"1959\":[12,165],\"1960\":[13,166],\"1961\":[0,119],\"1962\":[12,165],\"1963\":[12,165],\"1964\":[9,162],\"1965\":[12,165],\"1966\":[12,165],\"1967\":[12,165],\"1968\":[16,169],\"1969\":[21,174],\"1970\":[0,271],\"1971\":[6,159],\"1972\":[16,169],\"1973\":[28,181],\"1974\":[11,164],\"1975\":[13,166],\"1976\":[10,163],\"1977\":[0,252],\"1978\":[17,170],\"1979\":[17,170],\"1980\":[17,170],\"1981\":[12,165],\"1982\":[8,161],\"1983\":[29,182],\"1984\":[8,161],\"1985\":[20,173],\"1986\":[12,165],\"1987\":[23,176],\"1988\":[11,164],\"1989\":[44,197],\"1990\":[0,266],\"1991\":[6,159],\"1992\":[31,184],\"1993\":[17,170],\"1994\":[8,161],\"1995\":[15,168],\"1996\":[13,166],\"1997\":[13,166],\"1998\":[10,163],\"1999\":[32,185],\"2000\":[15,168],\"2001\":[17,170],\"2002\":[9,162],\"2003\":[12,165],\"2004\":[14,167],\"2005\":[10,163],\"2006\":[8,161],\"2007\":[10,163],\"2008\":[18,171],\"2009\":[0,218],\"2010\":[13,166],\"2011\":[37,190],\"2012\":[13,166],\"2013\":[10,163],\"2014\":[15,168],\"2015\":[13,166],\"2016\":[0,207],\"2017\":[0,190],\"2018\":[14,167],\"2019\":[9,162],\"2020\":[15,168],\"2021\":[32,185],\"2022\":[0,89],\"2023\":[10,163],\"2024\":[15,168],\"2025\":[29,182],\"2026\":[10,163],\"2027\":[11,164],\"2028\":[16,169],\"2029\":[16,169],\"2030\":[63,216],\"2031\":[0,171],\"2032\":[0,197],\"2033\":[0,155],\"2034\":[32,185],\"2035\":[11,164],\"2036\":[13,166],\"2037\":[16,169],\"2038\":[10,163],\"2039\":[28,181],\"2040\":[21,174],\"2041\":[29,182],\"2042\":[12,165],\"2043\":[29,182],\"2044\":[41,194],\"2045\":[17,170],\"2046\":[0,257],\"2047\":[0,129],\"2048\":[0,115],\"2049\":[0,92],\"2050\":[0,269],\"2051\":[0,272],\"2052\":[11,151],\"2053\":[0,233],\"2054\":[0,274],\"2055\":[0,128],\"2056\":[0,218],\"2057\":[0,37],\"2058\":[0,189],\"2059\":[0,204],\"2060\":[0,88],\"2061\":[0,174],\"2062\":[0,103],\"2063\":[0,280],\"2064\":[0,99],\"2065\":[0,279],\"2066\":[0,160],\"2067\":[0,113],\"2068\":[0,277],\"2069\":[0,269],\"2070\":[0,280],\"2071\":[0,139],\"2072\":[0,273],\"2073\":[0,278],\"2074\":[0,250],\"2075\":[0,161],\"2076\":[0,237],\"2077\":[0,183],\"2078\":[0,229],\"2079\":[0,279],\"2080\":[0,257],\"2081\":[0,74],\"2082\":[0,107],\"2083\":[0,249],\"2084\":[0,94],\"2085\":[0,157],\"2086\":[0,280],\"2087\":[0,168],\"2088\":[0,211],\"2089\":[0,95],\"2090\":[0,219],\"2091\":[0,123],\"2092\":[0,108],\"2093\":[0,258],\"2094\":[0,88],\"2095\":[0,165],\"2096\":[14,154],\"2097\":[17,157],\"2098\":[41,181],\"2099\":[14,154],\"2100\":[0,191],\"2101\":[0,259],\"2102\":[0,73],\"2103\":[0,280],\"2104\":[0,258],\"2105\":[17,295],\"2106\":[0,270],\"2107\":[12,289],\"2108\":[11,288],\"2109\":[11,288],\"2110\":[0,246],\"2111\":[15,292],\"2112\":[15,292],\"2113\":[13,290],\"2114\":[11,288],\"2115\":[12,283],\"2116\":[17,288],\"2117\":[0,234],\"2118\":[0,269],\"2119\":[0,246],\"2120\":[0,191],\"2121\":[0,283],\"2122\":[9,149],\"2123\":[39,179],\"2124\":[13,153],\"2125\":[17,157],\"2126\":[13,153],\"2127\":[13,153],\"2128\":[14,154],\"2129\":[9,149],\"2130\":[0,280],\"2131\":[8,148],\"2132\":[21,161],\"2133\":[0,185],\"2134\":[14,154],\"2135\":[0,196],\"2136\":[12,152],\"2137\":[10,150],\"2138\":[23,163],\"2139\":[12,152],\"2140\":[15,155],\"2141\":[9,149],\"2142\":[9,149],\"2143\":[16,156],\"2144\":[16,156],\"2145\":[0,49],\"2146\":[5,145],\"2147\":[14,154],\"2148\":[16,156],\"2149\":[13,153],\"2150\":[0,279],\"2151\":[50,190],\"2152\":[15,155],\"2153\":[13,153],\"2154\":[9,149],\"2155\":[5,145],\"2156\":[5,145],\"2157\":[9,149],\"2158\":[10,150],\"2159\":[11,151],\"2160\":[9,149],\"2161\":[7,147],\"2162\":[26,166],\"2163\":[16,156],\"2164\":[0,127],\"2165\":[28,168],\"2166\":[10,150],\"2167\":[39,179],\"2168\":[14,154],\"2169\":[14,154],\"2170\":[14,154],\"2171\":[14,154],\"2172\":[31,171],\"2173\":[7,147],\"2174\":[9,149],\"2175\":[10,150],\"2176\":[12,152],\"2177\":[16,156],\"2178\":[0,115],\"2179\":[10,150],\"2180\":[11,151],\"2181\":[14,154],\"2182\":[11,151],\"2183\":[11,151],\"2184\":[11,151],\"2185\":[16,156],\"2186\":[50,190],\"2187\":[19,159],\"2188\":[31,171],\"2189\":[13,153],\"2190\":[10,150],\"2191\":[16,156],\"2192\":[0,129],\"2193\":[11,151],\"2194\":[0,219],\"2195\":[9,134],\"2196\":[7,132],\"2197\":[38,163],\"2198\":[9,134],\"2199\":[26,151],\"2200\":[6,131],\"2201\":[10,135],\"2202\":[6,131],\"2203\":[0,127],\"2204\":[16,141],\"2205\":[16,141],\"2206\":[13,138],\"2207\":[42,167],\"2208\":[35,160],\"2209\":[16,141],\"2210\":[27,152],\"2211\":[9,134],\"2212\":[5,130],\"2213\":[5,130],\"2214\":[9,134],\"2215\":[6,131],\"2216\":[0,192],\"2217\":[0,189],\"2218\":[0,279],\"2219\":[0,275],\"2220\":[0,276],\"2221\":[28,75],\"2222\":[0,165],\"2223\":[11,136],\"2224\":[76,201],\"2225\":[9,134],\"2226\":[0,292],\"2227\":[0,61],\"2228\":[0,78],\"2229\":[0,152],\"2230\":[0,278],\"2231\":[0,219],\"2232\":[0,258],\"2233\":[0,246],\"2234\":[0,276],\"2235\":[0,189],\"2236\":[0,223],\"2237\":[0,277],\"2238\":[11,136],\"2239\":[14,139],\"2240\":[30,155],\"2241\":[14,139],\"2242\":[12,137],\"2243\":[9,134],\"2244\":[15,140],\"2245\":[10,135],\"2246\":[5,166],\"2247\":[16,141],\"2248\":[19,144],\"2249\":[9,134],\"2250\":[6,131],\"2251\":[16,141],\"2252\":[10,135],\"2253\":[12,137],\"2254\":[14,139],\"2255\":[9,134],\"2256\":[12,137],\"2257\":[9,134],\"2258\":[0,280],\"2259\":[0,160],\"2260\":[0,180],\"2261\":[0,206],\"2262\":[0,227],\"2263\":[0,276],\"2264\":[0,152],\"2265\":[0,276],\"2266\":[0,119],\"2267\":[0,257],\"2268\":[15,140],\"2269\":[11,136],\"2270\":[12,137],\"2271\":[14,139],\"2272\":[13,138],\"2273\":[14,139],\"2274\":[14,139],\"2275\":[9,134],\"2276\":[17,142],\"2277\":[12,137],\"2278\":[14,139],\"2279\":[13,138],\"2280\":[14,139],\"2281\":[14,139],\"2282\":[29,154],\"2283\":[27,152],\"2284\":[14,139],\"2285\":[12,137],\"2286\":[41,166],\"2287\":[27,152],\"2288\":[10,135],\"2289\":[23,148],\"2290\":[9,134],\"2291\":[0,50],\"2292\":[0,84],\"2293\":[0,63],\"2294\":[0,195],\"2295\":[0,251],\"2296\":[0,94],\"2297\":[0,264],\"2298\":[0,278],\"2299\":[0,183],\"2300\":[0,163],\"2301\":[0,198],\"2302\":[0,276],\"2303\":[0,278],\"2304\":[0,111],\"2305\":[0,95],\"2306\":[0,231],\"2307\":[0,231],\"2308\":[0,280],\"2309\":[0,91],\"2310\":[0,109],\"2311\":[0,273],\"2312\":[0,278],\"2313\":[0,160],\"2314\":[0,180],\"2315\":[0,177],\"2316\":[0,225],\"2317\":[9,91],\"2318\":[0,214],\"2319\":[0,276],\"2320\":[0,101],\"2321\":[0,165],\"2322\":[16,225],\"2323\":[0,109],\"2324\":[11,133],\"2325\":[16,213],\"2326\":[0,105],\"2327\":[0,156],\"2328\":[0,104],\"2329\":[0,181],\"2330\":[0,75],\"2331\":[0,159],\"2332\":[0,269],\"2333\":[0,74],\"2334\":[0,132],\"2335\":[0,263],\"2336\":[9,134],\"2337\":[14,139],\"2338\":[12,137],\"2339\":[0,51],\"2340\":[0,56],\"2341\":[0,92],\"2342\":[29,154],\"2343\":[0,128],\"2344\":[0,209],\"2345\":[15,140],\"2346\":[0,190],\"2347\":[12,137],\"2348\":[12,137],\"2349\":[13,138],\"2350\":[0,243],\"2351\":[0,123],\"2352\":[29,154],\"2353\":[0,63],\"2354\":[9,134],\"2355\":[4,129],\"2356\":[16,141],\"2357\":[13,138],\"2358\":[0,272],\"2359\":[0,66],\"2360\":[0,68],\"2361\":[0,170],\"2362\":[0,264],\"2363\":[0,279],\"2364\":[0,184],\"2365\":[0,119],\"2366\":[0,173],\"2367\":[0,260],\"2368\":[0,158],\"2369\":[0,131],\"2370\":[0,159],\"2371\":[0,121],\"2372\":[0,272],\"2373\":[0,71],\"2374\":[0,135],\"2375\":[0,116],\"2376\":[0,60],\"2377\":[0,269],\"2378\":[0,268],\"2379\":[0,134],\"2380\":[0,279],\"2381\":[0,152],\"2382\":[0,163],\"2383\":[0,278],\"2384\":[0,107],\"2385\":[0,107],\"2386\":[0,74],\"2387\":[0,84],\"2388\":[0,233],\"2389\":[0,67],\"2390\":[0,195],\"2391\":[0,268],\"2392\":[0,274],\"2393\":[0,204],\"2394\":[0,195],\"2395\":[0,79],\"2396\":[0,277],\"2397\":[8,181],\"2398\":[0,101],\"2399\":[15,170],\"2400\":[0,279],\"2401\":[0,273],\"2402\":[0,138],\"2403\":[0,278],\"2404\":[19,235],\"2405\":[0,247],\"2406\":[0,192],\"2407\":[0,158],\"2408\":[0,155],\"2409\":[0,85],\"2410\":[16,141],\"2411\":[8,133],\"2412\":[10,135],\"2413\":[9,134],\"2414\":[16,141],\"2415\":[10,135],\"2416\":[10,135],\"2417\":[13,138],\"2418\":[16,141],\"2419\":[13,138],\"2420\":[15,170],\"2421\":[16,141],\"2422\":[16,141],\"2423\":[16,141],\"2424\":[11,136],\"2425\":[12,137],\"2426\":[12,137],\"2427\":[11,136],\"2428\":[11,136],\"2429\":[11,136],\"2430\":[11,136],\"2431\":[11,136],\"2432\":[11,136],\"2433\":[15,140],\"2434\":[14,139],\"2435\":[14,139],\"2436\":[30,155],\"2437\":[14,139],\"2438\":[13,138],\"2439\":[32,157],\"2440\":[0,80],\"2441\":[11,136],\"2442\":[36,161],\"2443\":[15,140],\"2444\":[55,180],\"2445\":[16,141],\"2446\":[27,152],\"2447\":[18,143],\"2448\":[99,224],\"2449\":[0,265],\"2450\":[0,265],\"2451\":[0,197],\"2452\":[0,279],\"2453\":[0,135],\"2454\":[14,139],\"2455\":[14,139],\"2456\":[0,277],\"2457\":[0,275],\"2458\":[0,90],\"2459\":[0,270],\"2460\":[0,94],\"2461\":[0,226],\"2462\":[0,95],\"2463\":[20,145],\"2464\":[17,142],\"2465\":[14,139],\"2466\":[9,134],\"2467\":[26,151],\"2468\":[17,142],\"2469\":[23,148],\"2470\":[13,138],\"2471\":[11,136],\"2472\":[15,140],\"2473\":[9,134],\"2474\":[11,136],\"2475\":[9,134],\"2476\":[13,138],\"2477\":[14,139],\"2478\":[17,142],\"2479\":[9,134],\"2480\":[9,134],\"2481\":[9,134],\"2482\":[13,138],\"2483\":[16,141],\"2484\":[24,149],\"2485\":[8,133],\"2486\":[17,142],\"2487\":[12,137],\"2488\":[16,141],\"2489\":[14,139],\"2490\":[28,153],\"2491\":[12,137],\"2492\":[14,139],\"2493\":[9,134],\"2494\":[23,148],\"2495\":[17,142],\"2496\":[38,163],\"2497\":[17,142],\"2498\":[14,139],\"2499\":[13,138],\"2500\":[15,140],\"2501\":[13,138],\"2502\":[10,135],\"2503\":[29,154],\"2504\":[15,140],\"2505\":[23,148],\"2506\":[5,130],\"2507\":[14,139],\"2508\":[30,155],\"2509\":[9,134],\"2510\":[17,142],\"2511\":[9,134],\"2512\":[40,165],\"2513\":[9,134],\"2514\":[8,133],\"2515\":[11,136],\"2516\":[17,142],\"2517\":[13,138],\"2518\":[16,141],\"2519\":[11,136],\"2520\":[17,142],\"2521\":[10,135],\"2522\":[14,139],\"2523\":[5,130],\"2524\":[14,139],\"2525\":[12,151],\"2526\":[9,134],\"2527\":[16,141],\"2528\":[16,141],\"2529\":[17,142],\"2530\":[9,134],\"2531\":[6,131],\"2532\":[11,136],\"2533\":[7,132],\"2534\":[14,139],\"2535\":[0,96],\"2536\":[11,136],\"2537\":[9,134],\"2538\":[17,142],\"2539\":[16,132],\"2540\":[9,125],\"2541\":[13,125],\"2542\":[10,122],\"2543\":[12,124],\"2544\":[66,178],\"2545\":[12,124],\"2546\":[0,88],\"2547\":[10,122],\"2548\":[0,142],\"2549\":[0,175],\"2550\":[0,282],\"2551\":[0,239],\"2552\":[13,126],\"2553\":[13,126],\"2554\":[0,276],\"2555\":[0,277],\"2556\":[0,275],\"2557\":[0,174],\"2558\":[10,122],\"2559\":[148,260],\"2560\":[148,244],\"2561\":[0,91],\"2562\":[0,96],\"2563\":[0,73],\"2564\":[0,274],\"2565\":[15,111],\"2566\":[9,105],\"2567\":[11,107],\"2568\":[14,110],\"2569\":[15,111],\"2570\":[11,107],\"2571\":[10,106],\"2572\":[5,101],\"2573\":[0,254],\"2574\":[0,259],\"2575\":[0,279],\"2576\":[0,238],\"2577\":[0,145],\"2578\":[0,277],\"2579\":[0,277],\"2580\":[0,277],\"2581\":[0,277],\"2582\":[0,277],\"2583\":[0,277],\"2584\":[0,277],\"2585\":[0,277],\"2586\":[0,277],\"2587\":[0,277],\"2588\":[0,277],\"2589\":[0,277],\"2590\":[0,277],\"2591\":[0,277],\"2592\":[0,277],\"2593\":[0,277],\"2594\":[0,277],\"2595\":[0,277],\"2596\":[0,277],\"2597\":[0,277],\"2598\":[0,128],\"2599\":[0,152],\"2600\":[0,96],\"2601\":[0,116],\"2602\":[0,202],\"2603\":[0,202],\"2604\":[0,255],\"2605\":[0,251],\"2606\":[0,233],\"2607\":[0,112],\"2608\":[0,189],\"2609\":[0,203],\"2610\":[0,89],\"2611\":[0,221],\"2612\":[0,174],\"2613\":[0,277],\"2614\":[0,128],\"2615\":[0,201],\"2616\":[0,136],\"2617\":[0,166],\"2618\":[0,94],\"2619\":[0,106],\"2620\":[0,140],\"2621\":[0,247],\"2622\":[0,91],\"2623\":[0,119],\"2624\":[0,221],\"2625\":[0,282],\"2626\":[0,193],\"2627\":[0,130],\"2628\":[0,192],\"2629\":[0,81],\"2630\":[0,76],\"2631\":[0,60],\"2632\":[0,280],\"2633\":[0,222],\"2634\":[0,119],\"2635\":[0,210],\"2636\":[0,97],\"2637\":[0,133],\"2638\":[0,83],\"2639\":[0,235],\"2640\":[0,184],\"2641\":[0,75],\"2642\":[0,161],\"2643\":[0,163],\"2644\":[0,265],\"2645\":[0,109],\"2646\":[0,125],\"2647\":[0,151],\"2648\":[0,189],\"2649\":[0,108],\"2650\":[0,124],\"2651\":[0,98],\"2652\":[0,268],\"2653\":[0,93],\"2654\":[0,149],\"2655\":[0,95],\"2656\":[0,186],\"2657\":[0,181],\"2658\":[0,270],\"2659\":[0,136],\"2660\":[0,80],\"2661\":[0,236],\"2662\":[0,70],\"2663\":[0,162],\"2664\":[0,284],\"2665\":[0,163],\"2666\":[0,69],\"2667\":[0,109],\"2668\":[0,214],\"2669\":[0,146],\"2670\":[0,59],\"2671\":[0,277],\"2672\":[0,135],\"2673\":[0,221],\"2674\":[0,144],\"2675\":[15,154],\"2676\":[0,62],\"2677\":[0,259],\"2678\":[0,243],\"2679\":[0,90],\"2680\":[0,266],\"2681\":[0,78],\"2682\":[0,140],\"2683\":[15,192],\"2684\":[0,244],\"2685\":[0,269],\"2686\":[0,112],\"2687\":[0,44],\"2688\":[0,200],\"2689\":[0,189],\"2690\":[0,166],\"2691\":[0,100],\"2692\":[0,177],\"2693\":[0,118],\"2694\":[0,202],\"2695\":[0,120],\"2696\":[0,275],\"2697\":[0,233],\"2698\":[0,129],\"2699\":[0,180],\"2700\":[0,278],\"2701\":[0,109],\"2702\":[15,64],\"2703\":[0,275],\"2704\":[0,277],\"2705\":[0,277],\"2706\":[0,274],\"2707\":[0,277],\"2708\":[14,290],\"2709\":[0,187],\"2710\":[0,276],\"2711\":[0,191],\"2712\":[0,267],\"2713\":[0,268],\"2714\":[0,274],\"2715\":[0,274],\"2716\":[0,169],\"2717\":[0,279],\"2718\":[0,246],\"2719\":[0,69],\"2720\":[0,150],\"2721\":[0,160],\"2722\":[0,107],\"2723\":[0,59],\"2724\":[0,106],\"2725\":[0,155],\"2726\":[0,273],\"2727\":[0,161],\"2728\":[0,195],\"2729\":[0,95],\"2730\":[0,143],\"2731\":[0,239],\"2732\":[0,83],\"2733\":[0,106],\"2734\":[0,244],\"2735\":[0,278],\"2736\":[0,204],\"2737\":[0,60],\"2738\":[0,264],\"2739\":[0,123],\"2740\":[17,163],\"2741\":[0,37],\"2742\":[0,170],\"2743\":[0,58],\"2744\":[0,163],\"2745\":[0,112],\"2746\":[0,227],\"2747\":[0,158],\"2748\":[11,99],\"2749\":[0,110],\"2750\":[15,147],\"2751\":[0,234],\"2752\":[0,233],\"2753\":[0,57],\"2754\":[0,43],\"2755\":[0,73],\"2756\":[15,180],\"2757\":[0,23],\"2758\":[0,74],\"2759\":[0,40],\"2760\":[0,140],\"2761\":[0,222],\"2762\":[0,141],\"2763\":[0,78],\"2764\":[0,76],\"2765\":[0,133],\"2766\":[0,130],\"2767\":[0,131],\"2768\":[0,108],\"2769\":[0,166],\"2770\":[0,27],\"2771\":[0,110],\"2772\":[0,261],\"2773\":[0,266],\"2774\":[0,166],\"2775\":[0,50],\"2776\":[0,58],\"2777\":[0,56],\"2778\":[0,79],\"2779\":[0,104],\"2780\":[0,206],\"2781\":[0,61],\"2782\":[0,162],\"2783\":[0,250],\"2784\":[0,57],\"2785\":[0,76],\"2786\":[0,174],\"2787\":[0,127],\"2788\":[0,84],\"2789\":[0,275],\"2790\":[0,148],\"2791\":[0,118],\"2792\":[24,114],\"2793\":[0,28],\"2794\":[0,118],\"2795\":[0,139],\"2796\":[0,71],\"2797\":[0,71],\"2798\":[0,108],\"2799\":[0,67],\"2800\":[0,86],\"2801\":[0,111],\"2802\":[0,174],\"2803\":[0,215],\"2804\":[0,234],\"2805\":[0,154],\"2806\":[0,178],\"2807\":[0,255],\"2808\":[0,208],\"2809\":[0,146],\"2810\":[0,67],\"2811\":[0,210],\"2812\":[0,190],\"2813\":[0,219],\"2814\":[0,138],\"2815\":[0,171],\"2816\":[0,240],\"2817\":[0,123],\"2818\":[0,133],\"2819\":[0,68],\"2820\":[0,154],\"2821\":[0,52],\"2822\":[0,129],\"2823\":[0,278],\"2824\":[0,65],\"2825\":[0,231],\"2826\":[0,209],\"2827\":[0,266],\"2828\":[0,198],\"2829\":[0,277],\"2830\":[0,272],\"2831\":[0,208],\"2832\":[0,246],\"2833\":[0,214],\"2834\":[0,108],\"2835\":[0,168],\"2836\":[0,231],\"2837\":[8,112],\"2838\":[0,258],\"2839\":[15,74],\"2840\":[0,72],\"2841\":[0,277],\"2842\":[0,277],\"2843\":[0,244],\"2844\":[0,118],\"2845\":[0,215],\"2846\":[0,270],\"2847\":[0,276],\"2848\":[0,99],\"2849\":[0,276],\"2850\":[0,277],\"2851\":[0,148],\"2852\":[0,248],\"2853\":[0,159],\"2854\":[0,200],\"2855\":[0,180],\"2856\":[0,279],\"2857\":[0,275],\"2858\":[0,200],\"2859\":[0,191],\"2860\":[0,198],\"2861\":[0,273],\"2862\":[0,81],\"2863\":[0,141],\"2864\":[0,277],\"2865\":[0,193],\"2866\":[0,277],\"2867\":[0,179],\"2868\":[11,93],\"2869\":[0,238],\"2870\":[0,276],\"2871\":[0,125],\"2872\":[0,177],\"2873\":[0,279],\"2874\":[0,280],\"2875\":[0,280],\"2876\":[0,279],\"2877\":[0,117],\"2878\":[0,283],\"2879\":[0,193],\"2880\":[0,223],\"2881\":[0,277],\"2882\":[0,277],\"2883\":[0,95],\"2884\":[0,273],\"2885\":[0,172],\"2886\":[0,256],\"2887\":[0,80],\"2888\":[0,268],\"2889\":[47,302],\"2890\":[0,277],\"2891\":[0,202],\"2892\":[0,272],\"2893\":[0,205],\"2894\":[0,88],\"2895\":[0,70],\"2896\":[0,117],\"2897\":[0,271],\"2898\":[0,272],\"2899\":[0,287],\"2900\":[0,138],\"2901\":[0,95],\"2902\":[0,128],\"2903\":[0,89],\"2904\":[0,163],\"2905\":[16,285],\"2906\":[14,132],\"2907\":[0,281],\"2908\":[0,126],\"2909\":[0,277],\"2910\":[0,17],\"2911\":[0,153],\"2912\":[0,231],\"2913\":[0,187],\"2914\":[0,96],\"2915\":[0,205],\"2916\":[0,80],\"2917\":[0,157],\"2918\":[0,85],\"2919\":[0,73],\"2920\":[0,238],\"2921\":[0,135],\"2922\":[0,291],\"2923\":[0,142],\"2924\":[13,288],\"2925\":[0,278],\"2926\":[0,263],\"2927\":[0,259],\"2928\":[0,146],\"2929\":[0,279],\"2930\":[0,127],\"2931\":[0,121],\"2932\":[0,279],\"2933\":[0,284],\"2934\":[0,164],\"2935\":[0,124],\"2936\":[0,98],\"2937\":[0,137],\"2938\":[0,203],\"2939\":[0,100],\"2940\":[0,88],\"2941\":[0,84],\"2942\":[0,173],\"2943\":[0,170],\"2944\":[0,87],\"2945\":[0,209],\"2946\":[0,249],\"2947\":[0,261],\"2948\":[0,131],\"2949\":[0,252],\"2950\":[0,133],\"2951\":[0,255],\"2952\":[0,91],\"2953\":[0,89],\"2954\":[0,280],\"2955\":[0,280],\"2956\":[0,149],\"2957\":[0,136],\"2958\":[0,216],\"2959\":[0,187],\"2960\":[0,64],\"2961\":[0,192],\"2962\":[0,179],\"2963\":[0,178],\"2964\":[0,273],\"2965\":[0,77],\"2966\":[0,128],\"2967\":[0,147],\"2968\":[0,171],\"2969\":[0,185],\"2970\":[0,94],\"2971\":[0,160],\"2972\":[0,114],\"2973\":[10,188],\"2974\":[0,205],\"2975\":[0,193],\"2976\":[0,229],\"2977\":[0,93],\"2978\":[0,156],\"2979\":[0,275],\"2980\":[0,117],\"2981\":[0,222],\"2982\":[9,227],\"2983\":[0,191],\"2984\":[0,197],\"2985\":[0,150],\"2986\":[0,227],\"2987\":[0,278],\"2988\":[0,154],\"2989\":[0,163],\"2990\":[0,177],\"2991\":[0,243],\"2992\":[0,121],\"2993\":[0,278],\"2994\":[0,111],\"2995\":[0,268],\"2996\":[0,207],\"2997\":[0,122],\"2998\":[0,145],\"2999\":[0,279],\"3000\":[0,283],\"3001\":[0,271],\"3002\":[0,155],\"3003\":[0,201],\"3004\":[0,63],\"3005\":[0,116],\"3006\":[0,200],\"3007\":[0,269],\"3008\":[0,92],\"3009\":[0,156],\"3010\":[0,248],\"3011\":[0,254],\"3012\":[0,278],\"3013\":[0,154],\"3014\":[0,117],\"3015\":[0,252],\"3016\":[0,129],\"3017\":[0,230],\"3018\":[0,184],\"3019\":[0,204],\"3020\":[0,122],\"3021\":[0,226],\"3022\":[0,213],\"3023\":[0,134],\"3024\":[0,48],\"3025\":[0,230],\"3026\":[0,269],\"3027\":[0,217],\"3028\":[0,212],\"3029\":[0,271],\"3030\":[0,205],\"3031\":[0,271],\"3032\":[0,59],\"3033\":[0,112],\"3034\":[0,163],\"3035\":[0,119],\"3036\":[0,277],\"3037\":[0,143],\"3038\":[0,102],\"3039\":[0,268],\"3040\":[0,165],\"3041\":[0,65],\"3042\":[0,279],\"3043\":[0,278],\"3044\":[0,272],\"3045\":[0,261],\"3046\":[13,65],\"3047\":[0,274],\"3048\":[0,251],\"3049\":[0,237],\"3050\":[0,275],\"3051\":[0,272],\"3052\":[0,226],\"3053\":[0,215],\"3054\":[0,221],\"3055\":[0,280],\"3056\":[0,144],\"3057\":[0,81],\"3058\":[0,110],\"3059\":[27,270],\"3060\":[36,266],\"3061\":[0,161],\"3062\":[0,157],\"3063\":[0,155],\"3064\":[0,273],\"3065\":[0,133],\"3066\":[10,135],\"3067\":[0,276],\"3068\":[0,165],\"3069\":[0,115],\"3070\":[0,183],\"3071\":[0,183],\"3072\":[0,274],\"3073\":[0,196],\"3074\":[0,277],\"3075\":[0,211],\"3076\":[0,151],\"3077\":[13,180],\"3078\":[0,279],\"3079\":[0,274],\"3080\":[0,181],\"3081\":[0,123],\"3082\":[0,258],\"3083\":[0,107],\"3084\":[0,118],\"3085\":[0,256],\"3086\":[0,279],\"3087\":[0,256],\"3088\":[0,274],\"3089\":[0,273],\"3090\":[0,163],\"3091\":[0,279],\"3092\":[0,221],\"3093\":[0,140],\"3094\":[0,279],\"3095\":[0,275],\"3096\":[0,263],\"3097\":[0,79],\"3098\":[0,153],\"3099\":[34,168],\"3100\":[0,142],\"3101\":[17,152],\"3102\":[41,76],\"3103\":[0,278],\"3104\":[0,243],\"3105\":[0,278],\"3106\":[0,40],\"3107\":[0,74],\"3108\":[0,62],\"3109\":[0,69],\"3110\":[0,104],\"3111\":[0,278],\"3112\":[0,186],\"3113\":[0,185],\"3114\":[0,82],\"3115\":[0,278],\"3116\":[0,104],\"3117\":[0,56],\"3118\":[40,283],\"3119\":[0,289],\"3120\":[0,280],\"3121\":[0,200],\"3122\":[0,272],\"3123\":[0,154],\"3124\":[0,213],\"3125\":[0,188],\"3126\":[0,183],\"3127\":[12,174],\"3128\":[0,152],\"3129\":[0,276],\"3130\":[0,279],\"3131\":[0,101],\"3132\":[0,156],\"3133\":[0,278],\"3134\":[0,202],\"3135\":[0,265],\"3136\":[0,228],\"3137\":[0,228],\"3138\":[0,269],\"3139\":[0,190],\"3140\":[0,243],\"3141\":[0,277],\"3142\":[0,188],\"3143\":[0,267],\"3144\":[17,207],\"3145\":[0,268],\"3146\":[0,139],\"3147\":[0,267],\"3148\":[0,106],\"3149\":[0,274],\"3150\":[0,237],\"3151\":[0,260],\"3152\":[0,106],\"3153\":[0,178],\"3154\":[0,216],\"3155\":[0,218],\"3156\":[0,133],\"3157\":[0,230],\"3158\":[0,238],\"3159\":[0,293],\"3160\":[0,152],\"3161\":[0,279],\"3162\":[0,114],\"3163\":[0,240],\"3164\":[0,278],\"3165\":[0,245],\"3166\":[0,276],\"3167\":[0,65],\"3168\":[0,170],\"3169\":[0,265],\"3170\":[0,222],\"3171\":[0,124],\"3172\":[0,252],\"3173\":[0,202],\"3174\":[11,197],\"3175\":[0,39],\"3176\":[13,225],\"3177\":[0,128],\"3178\":[0,238],\"3179\":[0,189],\"3180\":[0,278],\"3181\":[0,279],\"3182\":[0,278],\"3183\":[0,129],\"3184\":[0,277],\"3185\":[0,233],\"3186\":[0,203],\"3187\":[0,163],\"3188\":[0,124],\"3189\":[0,191],\"3190\":[27,178],\"3191\":[0,279],\"3192\":[13,207],\"3193\":[0,238],\"3194\":[0,192],\"3195\":[0,213],\"3196\":[0,155],\"3197\":[0,104],\"3198\":[0,169],\"3199\":[0,158],\"3200\":[0,261],\"3201\":[0,75],\"3202\":[0,131],\"3203\":[0,278],\"3204\":[0,255],\"3205\":[0,280],\"3206\":[0,273],\"3207\":[0,269],\"3208\":[0,222],\"3209\":[0,237],\"3210\":[0,119],\"3211\":[0,219],\"3212\":[0,122],\"3213\":[0,147],\"3214\":[0,118],\"3215\":[0,140],\"3216\":[0,237],\"3217\":[0,260],\"3218\":[0,205],\"3219\":[0,274],\"3220\":[0,269],\"3221\":[0,60],\"3222\":[0,271],\"3223\":[0,99],\"3224\":[0,239],\"3225\":[0,102],\"3226\":[0,147],\"3227\":[0,190],\"3228\":[0,251],\"3229\":[0,274],\"3230\":[0,163],\"3231\":[0,155],\"3232\":[17,179],\"3233\":[0,183],\"3234\":[0,273],\"3235\":[0,105],\"3236\":[0,93],\"3237\":[0,234],\"3238\":[0,100],\"3239\":[0,280],\"3240\":[0,156],\"3241\":[0,178],\"3242\":[0,253],\"3243\":[0,176],\"3244\":[0,244],\"3245\":[0,238],\"3246\":[0,222],\"3247\":[21,132],\"3248\":[15,252],\"3249\":[0,263],\"3250\":[0,244],\"3251\":[14,225],\"3252\":[0,52],\"3253\":[0,287],\"3254\":[0,156],\"3255\":[0,245],\"3256\":[0,253],\"3257\":[0,216],\"3258\":[21,221],\"3259\":[12,212],\"3260\":[11,211],\"3261\":[17,217],\"3262\":[15,215],\"3263\":[16,193],\"3264\":[11,211],\"3265\":[11,211],\"3266\":[16,216],\"3267\":[13,213],\"3268\":[11,211],\"3269\":[8,208],\"3270\":[10,210],\"3271\":[9,209],\"3272\":[0,155],\"3273\":[0,172],\"3274\":[17,217],\"3275\":[12,212],\"3276\":[10,210],\"3277\":[15,215],\"3278\":[40,240],\"3279\":[12,212],\"3280\":[17,217],\"3281\":[10,210],\"3282\":[0,72],\"3283\":[0,229],\"3284\":[0,95],\"3285\":[0,37],\"3286\":[0,272],\"3287\":[22,100],\"3288\":[0,282],\"3289\":[0,88],\"3290\":[0,34],\"3291\":[0,161],\"3292\":[0,92],\"3293\":[0,236],\"3294\":[0,280],\"3295\":[0,279],\"3296\":[0,267],\"3297\":[0,237],\"3298\":[0,193],\"3299\":[0,138],\"3300\":[0,276],\"3301\":[0,278],\"3302\":[0,125],\"3303\":[0,279],\"3304\":[0,280],\"3305\":[0,275],\"3306\":[0,257],\"3307\":[0,210],\"3308\":[0,75],\"3309\":[0,291],\"3310\":[11,100],\"3311\":[0,87],\"3312\":[0,122],\"3313\":[0,245],\"3314\":[0,89],\"3315\":[0,143],\"3316\":[0,78],\"3317\":[16,116],\"3318\":[0,113],\"3319\":[0,138],\"3320\":[0,125],\"3321\":[0,83],\"3322\":[0,199],\"3323\":[0,71],\"3324\":[0,155],\"3325\":[13,213],\"3326\":[16,216],\"3327\":[95,295],\"3328\":[14,214],\"3329\":[0,276],\"3330\":[0,179],\"3331\":[13,213],\"3332\":[0,277],\"3333\":[0,243],\"3334\":[0,71],\"3335\":[0,275],\"3336\":[0,191],\"3337\":[0,57],\"3338\":[0,276],\"3339\":[0,235],\"3340\":[0,118],\"3341\":[0,275],\"3342\":[0,279],\"3343\":[0,99],\"3344\":[0,49],\"3345\":[0,53],\"3346\":[16,111],\"3347\":[0,58],\"3348\":[8,168],\"3349\":[0,248],\"3350\":[0,88],\"3351\":[0,125],\"3352\":[0,136],\"3353\":[0,191],\"3354\":[0,65],\"3355\":[0,200],\"3356\":[0,274],\"3357\":[0,61],\"3358\":[0,269],\"3359\":[0,125],\"3360\":[0,200],\"3361\":[0,105],\"3362\":[27,229],\"3363\":[0,87],\"3364\":[0,183],\"3365\":[0,153],\"3366\":[0,180],\"3367\":[0,63],\"3368\":[0,230],\"3369\":[0,229],\"3370\":[0,80],\"3371\":[0,143],\"3372\":[0,129],\"3373\":[0,269],\"3374\":[0,145],\"3375\":[0,106],\"3376\":[0,199],\"3377\":[0,87],\"3378\":[0,285],\"3379\":[0,41],\"3380\":[0,180],\"3381\":[0,52],\"3382\":[0,264],\"3383\":[0,263],\"3384\":[0,263],\"3385\":[0,112],\"3386\":[0,66],\"3387\":[0,67],\"3388\":[0,146],\"3389\":[0,240],\"3390\":[0,229],\"3391\":[0,229],\"3392\":[0,64],\"3393\":[0,145],\"3394\":[0,142],\"3395\":[0,160],\"3396\":[0,131],\"3397\":[0,142],\"3398\":[0,100],\"3399\":[0,57],\"3400\":[10,234],\"3401\":[0,124],\"3402\":[0,68],\"3403\":[14,201],\"3404\":[16,264],\"3405\":[0,100],\"3406\":[0,29],\"3407\":[26,288],\"3408\":[0,277],\"3409\":[0,273],\"3410\":[0,268],\"3411\":[0,277],\"3412\":[0,273],\"3413\":[0,116],\"3414\":[0,80],\"3415\":[0,54],\"3416\":[0,70],\"3417\":[0,130],\"3418\":[0,278],\"3419\":[0,192],\"3420\":[0,273],\"3421\":[0,179],\"3422\":[0,59],\"3423\":[0,203],\"3424\":[0,52],\"3425\":[0,182],\"3426\":[0,259],\"3427\":[0,276],\"3428\":[0,279],\"3429\":[0,274],\"3430\":[0,123],\"3431\":[0,34],\"3432\":[0,206],\"3433\":[0,207],\"3434\":[0,50],\"3435\":[0,53],\"3436\":[0,105],\"3437\":[0,107],\"3438\":[0,83],\"3439\":[0,111],\"3440\":[0,254],\"3441\":[0,81],\"3442\":[0,95],\"3443\":[0,152],\"3444\":[0,17],\"3445\":[0,137],\"3446\":[0,147],\"3447\":[0,156],\"3448\":[0,95],\"3449\":[0,172],\"3450\":[0,268],\"3451\":[0,250],\"3452\":[0,99],\"3453\":[0,89],\"3454\":[0,203],\"3455\":[0,229],\"3456\":[0,66],\"3457\":[0,156],\"3458\":[0,56],\"3459\":[0,55],\"3460\":[0,216],\"3461\":[0,66],\"3462\":[0,196],\"3463\":[0,59],\"3464\":[0,45],\"3465\":[0,246],\"3466\":[0,108],\"3467\":[0,275],\"3468\":[0,193],\"3469\":[0,275],\"3470\":[0,119],\"3471\":[0,257],\"3472\":[0,72],\"3473\":[0,272],\"3474\":[0,93],\"3475\":[10,91],\"3476\":[0,135],\"3477\":[0,126],\"3478\":[0,217],\"3479\":[0,103],\"3480\":[0,278],\"3481\":[0,237],\"3482\":[0,277],\"3483\":[12,111],\"3484\":[0,33],\"3485\":[0,127],\"3486\":[0,94],\"3487\":[0,139],\"3488\":[0,217],\"3489\":[0,276],\"3490\":[0,159],\"3491\":[0,272],\"3492\":[0,207],\"3493\":[0,278],\"3494\":[32,163],\"3495\":[10,141],\"3496\":[0,216],\"3497\":[0,131],\"3498\":[0,193],\"3499\":[0,164],\"3500\":[0,255],\"3501\":[0,279],\"3502\":[0,159],\"3503\":[0,132],\"3504\":[0,163],\"3505\":[0,219],\"3506\":[0,280],\"3507\":[0,168],\"3508\":[0,84],\"3509\":[0,187],\"3510\":[0,278],\"3511\":[0,158],\"3512\":[0,195],\"3513\":[0,79],\"3514\":[0,191],\"3515\":[0,140],\"3516\":[0,220],\"3517\":[0,196],\"3518\":[0,277],\"3519\":[0,173],\"3520\":[0,219],\"3521\":[0,137],\"3522\":[0,107],\"3523\":[0,233],\"3524\":[0,50],\"3525\":[0,176],\"3526\":[0,278],\"3527\":[0,273],\"3528\":[0,70],\"3529\":[0,111],\"3530\":[0,60],\"3531\":[0,168],\"3532\":[0,180],\"3533\":[0,83],\"3534\":[0,178],\"3535\":[0,170],\"3536\":[0,67],\"3537\":[0,91],\"3538\":[0,190],\"3539\":[0,89],\"3540\":[0,218],\"3541\":[0,189],\"3542\":[0,204],\"3543\":[0,174],\"3544\":[0,103],\"3545\":[0,99],\"3546\":[0,279],\"3547\":[0,160],\"3548\":[0,139],\"3549\":[0,273],\"3550\":[0,278],\"3551\":[0,229],\"3552\":[0,279],\"3553\":[0,157],\"3554\":[0,211],\"3555\":[0,108],\"3556\":[0,258],\"3557\":[0,88],\"3558\":[0,259],\"3559\":[17,295],\"3560\":[12,289],\"3561\":[11,288],\"3562\":[11,288],\"3563\":[15,292],\"3564\":[15,292],\"3565\":[13,290],\"3566\":[11,288],\"3567\":[12,283],\"3568\":[17,288],\"3569\":[0,191],\"3570\":[17,103],\"3571\":[0,280],\"3572\":[0,279],\"3573\":[0,127],\"3574\":[0,192],\"3575\":[0,165],\"3576\":[0,61],\"3577\":[0,78],\"3578\":[0,219],\"3579\":[0,246],\"3580\":[0,189],\"3581\":[0,223],\"3582\":[0,276],\"3583\":[0,119],\"3584\":[0,50],\"3585\":[0,84],\"3586\":[0,94],\"3587\":[0,278],\"3588\":[0,183],\"3589\":[0,278],\"3590\":[0,231],\"3591\":[0,280],\"3592\":[0,278],\"3593\":[0,225],\"3594\":[0,214],\"3595\":[0,156],\"3596\":[0,104],\"3597\":[0,159],\"3598\":[0,132],\"3599\":[0,92],\"3600\":[0,63],\"3601\":[0,272],\"3602\":[0,66],\"3603\":[0,68],\"3604\":[0,170],\"3605\":[0,119],\"3606\":[0,260],\"3607\":[0,159],\"3608\":[0,121],\"3609\":[0,272],\"3610\":[0,71],\"3611\":[0,135],\"3612\":[0,116],\"3613\":[0,60],\"3614\":[0,268],\"3615\":[0,84],\"3616\":[0,233],\"3617\":[0,274],\"3618\":[0,279],\"3619\":[0,138],\"3620\":[0,85],\"3621\":[0,197],\"3622\":[0,94],\"3623\":[0,275],\"3624\":[12,110],\"3625\":[15,283],\"3626\":[0,91],\"3627\":[0,279],\"3628\":[0,145],\"3629\":[12,289],\"3630\":[0,114],\"3631\":[15,192],\"3632\":[0,118],\"3633\":[0,127],\"3634\":[0,99],\"3635\":[0,280],\"3636\":[0,172],\"3637\":[0,153],\"3638\":[0,151],\"3639\":[0,272],\"3640\":[0,276],\"3641\":[0,273],\"3642\":[0,148],\"3643\":[0,248],\"3644\":[0,202],\"3645\":[0,159],\"3646\":[8,264],\"3647\":[0,256],\"3648\":[0,200],\"3649\":[0,180],\"3650\":[0,201],\"3651\":[0,275],\"3652\":[0,256],\"3653\":[0,200],\"3654\":[0,191],\"3655\":[0,198],\"3656\":[0,192],\"3657\":[0,273],\"3658\":[0,260],\"3659\":[0,81],\"3660\":[0,141],\"3661\":[0,243],\"3662\":[0,164],\"3663\":[0,275],\"3664\":[0,273],\"3665\":[28,286],\"3666\":[0,277],\"3667\":[0,193],\"3668\":[0,277],\"3669\":[0,179],\"3670\":[0,246],\"3671\":[0,191],\"3672\":[0,216],\"3673\":[0,225],\"3674\":[11,93],\"3675\":[0,278],\"3676\":[0,159],\"3677\":[0,238],\"3678\":[0,276],\"3679\":[0,125],\"3680\":[0,215],\"3681\":[0,177],\"3682\":[0,279],\"3683\":[0,115],\"3684\":[0,182],\"3685\":[0,203],\"3686\":[0,276],\"3687\":[0,280],\"3688\":[0,280],\"3689\":[0,279],\"3690\":[0,78],\"3691\":[0,117],\"3692\":[0,223],\"3693\":[0,278],\"3694\":[0,267],\"3695\":[0,58],\"3696\":[0,243],\"3697\":[0,193],\"3698\":[0,202],\"3699\":[0,100],\"3700\":[0,134],\"3701\":[0,114],\"3702\":[0,170],\"3703\":[0,149],\"3704\":[0,157],\"3705\":[0,140],\"3706\":[0,213],\"3707\":[0,213],\"3708\":[0,202],\"3709\":[0,204],\"3710\":[0,109],\"3711\":[0,163],\"3712\":[0,223],\"3713\":[0,277],\"3714\":[0,277],\"3715\":[0,95],\"3716\":[0,201],\"3717\":[0,97],\"3718\":[0,90],\"3719\":[43,189],\"3720\":[0,277],\"3721\":[0,273],\"3722\":[0,54],\"3723\":[0,90],\"3724\":[0,48],\"3725\":[0,172],\"3726\":[0,193],\"3727\":[0,256],\"3728\":[0,80],\"3729\":[0,185],\"3730\":[0,243],\"3731\":[11,233],\"3732\":[0,277],\"3733\":[0,202],\"3734\":[0,225],\"3735\":[0,264],\"3736\":[0,272],\"3737\":[0,205],\"3738\":[0,88],\"3739\":[0,70],\"3740\":[0,117],\"3741\":[0,271],\"3742\":[0,272],\"3743\":[0,245],\"3744\":[0,287],\"3745\":[0,138],\"3746\":[0,95],\"3747\":[0,279],\"3748\":[0,128],\"3749\":[0,89],\"3750\":[0,278],\"3751\":[0,265],\"3752\":[0,163],\"3753\":[16,285],\"3754\":[0,125],\"3755\":[0,223],\"3756\":[0,95],\"3757\":[14,132],\"3758\":[0,281],\"3759\":[0,243],\"3760\":[0,126],\"3761\":[0,234],\"3762\":[0,132],\"3763\":[0,110],\"3764\":[0,185],\"3765\":[0,193],\"3766\":[0,147],\"3767\":[0,228],\"3768\":[0,188],\"3769\":[0,277],\"3770\":[0,17],\"3771\":[0,141],\"3772\":[0,193],\"3773\":[0,268],\"3774\":[0,152],\"3775\":[0,153],\"3776\":[0,56],\"3777\":[0,231],\"3778\":[0,279],\"3779\":[0,180],\"3780\":[0,261],\"3781\":[0,76],\"3782\":[0,124],\"3783\":[0,160],\"3784\":[0,187],\"3785\":[0,96],\"3786\":[0,184],\"3787\":[0,205],\"3788\":[0,80],\"3789\":[0,85],\"3790\":[0,222],\"3791\":[0,280],\"3792\":[0,73],\"3793\":[0,239],\"3794\":[0,172],\"3795\":[0,261],\"3796\":[0,238],\"3797\":[0,140],\"3798\":[0,137],\"3799\":[0,135],\"3800\":[0,291],\"3801\":[0,142],\"3802\":[0,204],\"3803\":[0,154],\"3804\":[0,268],\"3805\":[0,129],\"3806\":[0,250],\"3807\":[0,250],\"3808\":[13,288],\"3809\":[0,134],\"3810\":[0,278],\"3811\":[0,76],\"3812\":[0,203],\"3813\":[0,66],\"3814\":[0,151],\"3815\":[0,263],\"3816\":[0,251],\"3817\":[0,218],\"3818\":[0,213],\"3819\":[0,140],\"3820\":[0,259],\"3821\":[0,146],\"3822\":[0,166],\"3823\":[0,278],\"3824\":[0,257],\"3825\":[0,237],\"3826\":[0,237],\"3827\":[0,216],\"3828\":[0,279],\"3829\":[0,127],\"3830\":[0,121],\"3831\":[0,279],\"3832\":[0,166],\"3833\":[0,186],\"3834\":[0,284],\"3835\":[0,164],\"3836\":[0,164],\"3837\":[0,155],\"3838\":[0,224],\"3839\":[0,180],\"3840\":[0,124],\"3841\":[0,98],\"3842\":[0,177],\"3843\":[0,227],\"3844\":[0,201],\"3845\":[0,137],\"3846\":[0,203],\"3847\":[0,100],\"3848\":[0,88],\"3849\":[0,126],\"3850\":[0,193],\"3851\":[0,279],\"3852\":[0,84],\"3853\":[0,238],\"3854\":[0,154],\"3855\":[0,170],\"3856\":[0,87],\"3857\":[0,209],\"3858\":[0,56],\"3859\":[0,231],\"3860\":[0,249],\"3861\":[0,261],\"3862\":[0,126],\"3863\":[0,131],\"3864\":[0,253],\"3865\":[0,243],\"3866\":[0,286],\"3867\":[0,252],\"3868\":[0,286],\"3869\":[0,286],\"3870\":[0,132],\"3871\":[0,288],\"3872\":[0,133],\"3873\":[0,273],\"3874\":[0,255],\"3875\":[0,280],\"3876\":[0,106],\"3877\":[0,260],\"3878\":[0,144],\"3879\":[0,123],\"3880\":[0,91],\"3881\":[0,211],\"3882\":[0,98],\"3883\":[0,144],\"3884\":[0,111],\"3885\":[11,254],\"3886\":[0,247],\"3887\":[25,233],\"3888\":[0,250],\"3889\":[0,150],\"3890\":[25,233],\"3891\":[0,217],\"3892\":[0,165],\"3893\":[0,280],\"3894\":[0,277],\"3895\":[0,279],\"3896\":[0,120],\"3897\":[0,280],\"3898\":[0,280],\"3899\":[0,173],\"3900\":[0,280],\"3901\":[0,255],\"3902\":[0,178],\"3903\":[0,149],\"3904\":[0,136],\"3905\":[0,120],\"3906\":[0,216],\"3907\":[0,187],\"3908\":[0,64],\"3909\":[0,192],\"3910\":[0,179],\"3911\":[0,125],\"3912\":[0,178],\"3913\":[0,270],\"3914\":[0,97],\"3915\":[0,226],\"3916\":[0,273],\"3917\":[0,276],\"3918\":[0,128],\"3919\":[0,232],\"3920\":[0,99],\"3921\":[0,137],\"3922\":[0,224],\"3923\":[0,147],\"3924\":[0,263],\"3925\":[0,171],\"3926\":[0,78],\"3927\":[0,237],\"3928\":[0,185],\"3929\":[0,183],\"3930\":[0,102],\"3931\":[0,94],\"3932\":[0,207],\"3933\":[0,276],\"3934\":[0,160],\"3935\":[0,262],\"3936\":[0,90],\"3937\":[0,141],\"3938\":[0,114],\"3939\":[10,188],\"3940\":[0,205],\"3941\":[0,193],\"3942\":[0,104],\"3943\":[0,229],\"3944\":[0,62],\"3945\":[0,139],\"3946\":[0,93],\"3947\":[0,93],\"3948\":[0,156],\"3949\":[0,243],\"3950\":[0,275],\"3951\":[0,157],\"3952\":[0,275],\"3953\":[0,175],\"3954\":[0,229],\"3955\":[0,117],\"3956\":[17,34],\"3957\":[0,52],\"3958\":[0,103],\"3959\":[0,222],\"3960\":[0,271],\"3961\":[0,196],\"3962\":[16,258],\"3963\":[0,275],\"3964\":[9,227],\"3965\":[0,276],\"3966\":[0,121],\"3967\":[0,130],\"3968\":[0,191],\"3969\":[0,157],\"3970\":[0,139],\"3971\":[0,91],\"3972\":[0,107],\"3973\":[0,280],\"3974\":[0,283],\"3975\":[0,108],\"3976\":[0,275],\"3977\":[0,197],\"3978\":[0,150],\"3979\":[0,227],\"3980\":[0,220],\"3981\":[0,278],\"3982\":[0,154],\"3983\":[0,71],\"3984\":[17,42],\"3985\":[0,180],\"3986\":[0,163],\"3987\":[0,177],\"3988\":[0,243],\"3989\":[0,121],\"3990\":[0,190],\"3991\":[0,173],\"3992\":[0,278],\"3993\":[0,226],\"3994\":[0,111],\"3995\":[0,146],\"3996\":[0,268],\"3997\":[0,207],\"3998\":[0,122],\"3999\":[0,279],\"4000\":[0,145],\"4001\":[0,86],\"4002\":[0,279],\"4003\":[0,174],\"4004\":[11,130],\"4005\":[0,163],\"4006\":[0,271],\"4007\":[0,155],\"4008\":[0,201],\"4009\":[0,63],\"4010\":[0,116],\"4011\":[0,200],\"4012\":[0,224],\"4013\":[0,197],\"4014\":[0,107],\"4015\":[0,178],\"4016\":[0,277],\"4017\":[0,269],\"4018\":[0,127],\"4019\":[0,92],\"4020\":[0,156],\"4021\":[0,248],\"4022\":[0,254],\"4023\":[0,277],\"4024\":[0,280],\"4025\":[0,94],\"4026\":[0,278],\"4027\":[0,265],\"4028\":[0,148],\"4029\":[0,154],\"4030\":[0,257],\"4031\":[0,283],\"4032\":[0,280],\"4033\":[0,117],\"4034\":[0,272],\"4035\":[0,267],\"4036\":[0,112],\"4037\":[0,252],\"4038\":[0,129],\"4039\":[0,230],\"4040\":[0,184],\"4041\":[0,241],\"4042\":[0,122],\"4043\":[0,226],\"4044\":[0,213],\"4045\":[0,134],\"4046\":[0,215],\"4047\":[0,48],\"4048\":[0,230],\"4049\":[0,88],\"4050\":[14,285],\"4051\":[0,122],\"4052\":[30,301],\"4053\":[12,283],\"4054\":[10,281],\"4055\":[17,288],\"4056\":[0,269],\"4057\":[14,285],\"4058\":[11,282],\"4059\":[24,295],\"4060\":[17,288],\"4061\":[0,217],\"4062\":[13,284],\"4063\":[16,287],\"4064\":[12,283],\"4065\":[13,188],\"4066\":[28,299],\"4067\":[24,295],\"4068\":[25,296],\"4069\":[15,286],\"4070\":[27,298],\"4071\":[0,95],\"4072\":[29,300],\"4073\":[14,285],\"4074\":[13,284],\"4075\":[111,382],\"4076\":[11,282],\"4077\":[12,283],\"4078\":[13,284],\"4079\":[0,212],\"4080\":[0,271],\"4081\":[0,271],\"4082\":[0,276],\"4083\":[0,133],\"4084\":[0,205],\"4085\":[0,280],\"4086\":[0,271],\"4087\":[0,59],\"4088\":[0,107],\"4089\":[0,74],\"4090\":[0,112],\"4091\":[0,143],\"4092\":[0,278],\"4093\":[0,165],\"4094\":[0,129],\"4095\":[0,163],\"4096\":[0,119],\"4097\":[0,279],\"4098\":[0,271],\"4099\":[9,99],\"4100\":[0,217],\"4101\":[0,212],\"4102\":[0,270],\"4103\":[0,256],\"4104\":[0,277],\"4105\":[0,143],\"4106\":[0,279],\"4107\":[0,102],\"4108\":[0,71],\"4109\":[0,268],\"4110\":[10,235],\"4111\":[14,239],\"4112\":[10,235],\"4113\":[0,165],\"4114\":[12,237],\"4115\":[14,239],\"4116\":[12,237],\"4117\":[16,241],\"4118\":[0,133],\"4119\":[0,65],\"4120\":[0,261],\"4121\":[0,104],\"4122\":[0,114],\"4123\":[0,171],\"4124\":[0,242],\"4125\":[0,267],\"4126\":[0,279],\"4127\":[0,272],\"4128\":[0,279],\"4129\":[0,278],\"4130\":[0,117],\"4131\":[0,272],\"4132\":[0,261],\"4133\":[0,225],\"4134\":[0,161],\"4135\":[0,148],\"4136\":[0,198],\"4137\":[0,274],\"4138\":[0,237],\"4139\":[0,164],\"4140\":[0,275],\"4141\":[0,272],\"4142\":[0,210],\"4143\":[0,226],\"4144\":[0,215],\"4145\":[0,221],\"4146\":[0,280],\"4147\":[0,200],\"4148\":[0,144],\"4149\":[0,85],\"4150\":[0,81],\"4151\":[0,110],\"4152\":[0,205],\"4153\":[27,270],\"4154\":[36,266],\"4155\":[0,153],\"4156\":[0,161],\"4157\":[0,235],\"4158\":[0,279],\"4159\":[0,277],\"4160\":[0,157],\"4161\":[0,148],\"4162\":[0,272],\"4163\":[0,248],\"4164\":[0,155],\"4165\":[0,273],\"4166\":[0,133],\"4167\":[0,237],\"4168\":[0,151],\"4169\":[10,135],\"4170\":[0,213],\"4171\":[0,118],\"4172\":[0,227],\"4173\":[0,232],\"4174\":[0,114],\"4175\":[0,278],\"4176\":[0,276],\"4177\":[0,110],\"4178\":[0,87],\"4179\":[0,165],\"4180\":[0,115],\"4181\":[0,150],\"4182\":[0,191],\"4183\":[0,234],\"4184\":[0,157],\"4185\":[0,222],\"4186\":[0,183],\"4187\":[0,180],\"4188\":[0,135],\"4189\":[0,126],\"4190\":[0,244],\"4191\":[0,183],\"4192\":[0,46],\"4193\":[0,140],\"4194\":[0,274],\"4195\":[0,153],\"4196\":[0,196],\"4197\":[0,168],\"4198\":[0,277],\"4199\":[0,139],\"4200\":[0,218],\"4201\":[0,279],\"4202\":[0,114],\"4203\":[0,273],\"4204\":[0,275],\"4205\":[0,266],\"4206\":[0,211],\"4207\":[0,156],\"4208\":[0,198],\"4209\":[0,151],\"4210\":[0,253],\"4211\":[0,229],\"4212\":[0,137],\"4213\":[0,122],\"4214\":[0,280],\"4215\":[0,133],\"4216\":[0,99],\"4217\":[0,276],\"4218\":[0,160],\"4219\":[0,279],\"4220\":[0,168],\"4221\":[0,238],\"4222\":[0,274],\"4223\":[0,276],\"4224\":[0,181],\"4225\":[10,96],\"4226\":[0,156],\"4227\":[0,123],\"4228\":[0,211],\"4229\":[0,213],\"4230\":[0,107],\"4231\":[0,141],\"4232\":[0,118],\"4233\":[0,51],\"4234\":[0,279],\"4235\":[0,68],\"4236\":[0,177],\"4237\":[0,274],\"4238\":[0,273],\"4239\":[0,74],\"4240\":[0,163],\"4241\":[0,213],\"4242\":[0,221],\"4243\":[0,279],\"4244\":[0,62],\"4245\":[0,99],\"4246\":[0,275],\"4247\":[0,149],\"4248\":[0,263],\"4249\":[0,79],\"4250\":[0,276],\"4251\":[0,153],\"4252\":[0,235],\"4253\":[0,107],\"4254\":[0,90],\"4255\":[0,142],\"4256\":[17,152],\"4257\":[0,266],\"4258\":[0,279],\"4259\":[0,213],\"4260\":[0,176],\"4261\":[0,211],\"4262\":[0,217],\"4263\":[0,279],\"4264\":[0,103],\"4265\":[0,102],\"4266\":[0,71],\"4267\":[0,205],\"4268\":[0,111],\"4269\":[0,71],\"4270\":[0,224],\"4271\":[0,278],\"4272\":[0,243],\"4273\":[0,51],\"4274\":[0,80],\"4275\":[0,278],\"4276\":[0,40],\"4277\":[0,74],\"4278\":[0,62],\"4279\":[0,69],\"4280\":[0,138],\"4281\":[0,278],\"4282\":[0,104],\"4283\":[0,202],\"4284\":[0,202],\"4285\":[0,63],\"4286\":[0,278],\"4287\":[0,186],\"4288\":[0,280],\"4289\":[0,257],\"4290\":[0,279],\"4291\":[0,204],\"4292\":[0,195],\"4293\":[0,81],\"4294\":[0,81],\"4295\":[0,84],\"4296\":[0,82],\"4297\":[0,278],\"4298\":[0,175],\"4299\":[10,42],\"4300\":[0,168],\"4301\":[0,104],\"4302\":[0,56],\"4303\":[0,114],\"4304\":[0,114],\"4305\":[0,289],\"4306\":[0,232],\"4307\":[0,286],\"4308\":[0,280],\"4309\":[0,200],\"4310\":[0,272],\"4311\":[0,154],\"4312\":[0,213],\"4313\":[0,188],\"4314\":[0,183],\"4315\":[12,174],\"4316\":[0,88],\"4317\":[0,279],\"4318\":[0,131],\"4319\":[0,77],\"4320\":[0,152],\"4321\":[0,201],\"4322\":[0,276],\"4323\":[0,217],\"4324\":[0,279],\"4325\":[0,286],\"4326\":[0,286],\"4327\":[0,286],\"4328\":[0,286],\"4329\":[0,286],\"4330\":[0,286],\"4331\":[0,286],\"4332\":[0,286],\"4333\":[0,101],\"4334\":[0,286],\"4335\":[0,286],\"4336\":[0,156],\"4337\":[0,286],\"4338\":[0,286],\"4339\":[0,286],\"4340\":[0,286],\"4341\":[0,286],\"4342\":[0,278],\"4343\":[0,92],\"4344\":[0,202],\"4345\":[0,173],\"4346\":[0,265],\"4347\":[0,164],\"4348\":[0,152],\"4349\":[0,277],\"4350\":[0,228],\"4351\":[0,228],\"4352\":[0,269],\"4353\":[0,163],\"4354\":[0,274],\"4355\":[0,282],\"4356\":[0,121],\"4357\":[0,177],\"4358\":[0,114],\"4359\":[0,151],\"4360\":[0,238],\"4361\":[0,179],\"4362\":[0,256],\"4363\":[0,118],\"4364\":[0,240],\"4365\":[0,271],\"4366\":[0,278],\"4367\":[0,234],\"4368\":[0,243],\"4369\":[0,277],\"4370\":[0,236],\"4371\":[0,149],\"4372\":[0,115],\"4373\":[0,188],\"4374\":[0,227],\"4375\":[0,226],\"4376\":[0,214],\"4377\":[0,279],\"4378\":[0,222],\"4379\":[0,240],\"4380\":[0,279],\"4381\":[0,254],\"4382\":[0,143],\"4383\":[0,74],\"4384\":[0,230],\"4385\":[0,168],\"4386\":[0,176],\"4387\":[0,204],\"4388\":[0,164],\"4389\":[0,158],\"4390\":[0,267],\"4391\":[0,122],\"4392\":[17,207],\"4393\":[0,268],\"4394\":[0,139],\"4395\":[0,267],\"4396\":[0,106],\"4397\":[0,274],\"4398\":[0,43],\"4399\":[0,237],\"4400\":[0,260],\"4401\":[0,106],\"4402\":[0,178],\"4403\":[0,216],\"4404\":[0,268],\"4405\":[0,201],\"4406\":[0,218],\"4407\":[0,41],\"4408\":[0,57],\"4409\":[0,133],\"4410\":[0,106],\"4411\":[0,230],\"4412\":[0,238],\"4413\":[0,293],\"4414\":[0,152],\"4415\":[0,85],\"4416\":[0,279],\"4417\":[0,114],\"4418\":[0,142],\"4419\":[0,240],\"4420\":[0,152],\"4421\":[0,235],\"4422\":[0,173],\"4423\":[0,163],\"4424\":[0,183],\"4425\":[0,278],\"4426\":[0,214],\"4427\":[0,245],\"4428\":[0,44],\"4429\":[0,192],\"4430\":[0,113],\"4431\":[0,276],\"4432\":[0,133],\"4433\":[0,65],\"4434\":[0,68],\"4435\":[0,170],\"4436\":[0,146],\"4437\":[0,265],\"4438\":[0,163],\"4439\":[0,222],\"4440\":[0,201],\"4441\":[0,42],\"4442\":[0,124],\"4443\":[0,103],\"4444\":[0,90],\"4445\":[0,273],\"4446\":[0,81],\"4447\":[0,252],\"4448\":[0,201],\"4449\":[0,202],\"4450\":[0,62],\"4451\":[11,197],\"4452\":[0,39],\"4453\":[0,140],\"4454\":[0,80],\"4455\":[0,278],\"4456\":[0,252],\"4457\":[0,117],\"4458\":[0,102],\"4459\":[0,102],\"4460\":[0,102],\"4461\":[0,277],\"4462\":[0,100],\"4463\":[13,225],\"4464\":[0,53],\"4465\":[0,278],\"4466\":[0,128],\"4467\":[0,202],\"4468\":[0,218],\"4469\":[0,261],\"4470\":[0,249],\"4471\":[0,237],\"4472\":[0,279],\"4473\":[0,196],\"4474\":[0,156],\"4475\":[0,164],\"4476\":[0,238],\"4477\":[0,152],\"4478\":[0,202],\"4479\":[0,114],\"4480\":[0,189],\"4481\":[0,141],\"4482\":[0,143],\"4483\":[0,278],\"4484\":[0,85],\"4485\":[0,279],\"4486\":[0,278],\"4487\":[0,129],\"4488\":[0,281],\"4489\":[0,277],\"4490\":[0,233],\"4491\":[0,203],\"4492\":[0,128],\"4493\":[0,163],\"4494\":[0,141],\"4495\":[0,81],\"4496\":[0,171],\"4497\":[0,124],\"4498\":[0,248],\"4499\":[0,191],\"4500\":[0,140],\"4501\":[0,74],\"4502\":[27,178],\"4503\":[0,279],\"4504\":[0,276],\"4505\":[0,119],\"4506\":[0,238],\"4507\":[0,53],\"4508\":[0,277],\"4509\":[0,192],\"4510\":[0,134],\"4511\":[0,213],\"4512\":[0,91],\"4513\":[0,155],\"4514\":[0,104],\"4515\":[0,251],\"4516\":[0,65],\"4517\":[0,169],\"4518\":[0,158],\"4519\":[0,279],\"4520\":[0,56],\"4521\":[0,261],\"4522\":[0,208],\"4523\":[0,108],\"4524\":[0,75],\"4525\":[0,28],\"4526\":[0,155],\"4527\":[0,142],\"4528\":[0,84],\"4529\":[0,151],\"4530\":[0,278],\"4531\":[0,255],\"4532\":[0,101],\"4533\":[0,178],\"4534\":[0,186],\"4535\":[0,249],\"4536\":[0,215],\"4537\":[0,142],\"4538\":[0,222],\"4539\":[0,222],\"4540\":[0,222],\"4541\":[0,222],\"4542\":[0,222],\"4543\":[0,222],\"4544\":[0,222],\"4545\":[0,222],\"4546\":[0,253],\"4547\":[0,94],\"4548\":[0,269],\"4549\":[0,222],\"4550\":[0,237],\"4551\":[0,81],\"4552\":[0,119],\"4553\":[0,219],\"4554\":[0,137],\"4555\":[0,260],\"4556\":[0,44],\"4557\":[0,122],\"4558\":[0,147],\"4559\":[0,118],\"4560\":[0,208],\"4561\":[0,211],\"4562\":[0,140],\"4563\":[0,271],\"4564\":[0,237],\"4565\":[0,260],\"4566\":[0,205],\"4567\":[0,112],\"4568\":[0,274],\"4569\":[0,235],\"4570\":[0,97],\"4571\":[0,157],\"4572\":[0,269],\"4573\":[0,60],\"4574\":[10,287],\"4575\":[0,254],\"4576\":[0,271],\"4577\":[0,265],\"4578\":[0,123],\"4579\":[0,99],\"4580\":[0,239],\"4581\":[0,102],\"4582\":[0,225],\"4583\":[0,147],\"4584\":[0,265],\"4585\":[0,230],\"4586\":[0,190],\"4587\":[0,251],\"4588\":[0,150],\"4589\":[0,274],\"4590\":[0,163],\"4591\":[0,155],\"4592\":[0,128],\"4593\":[0,110],\"4594\":[0,183],\"4595\":[0,273],\"4596\":[0,157],\"4597\":[0,185],\"4598\":[0,105],\"4599\":[0,93],\"4600\":[0,234],\"4601\":[0,100],\"4602\":[0,280],\"4603\":[0,156],\"4604\":[0,178],\"4605\":[0,253],\"4606\":[0,190],\"4607\":[0,96],\"4608\":[0,176],\"4609\":[0,101],\"4610\":[0,99],\"4611\":[0,207],\"4612\":[0,133],\"4613\":[0,54],\"4614\":[0,238],\"4615\":[0,145],\"4616\":[0,222],\"4617\":[21,132],\"4618\":[15,252],\"4619\":[0,263],\"4620\":[0,157],\"4621\":[0,151],\"4622\":[0,244],\"4623\":[0,172],\"4624\":[0,52],\"4625\":[0,287],\"4626\":[0,156],\"4627\":[0,245],\"4628\":[0,279],\"4629\":[0,72],\"4630\":[0,229],\"4631\":[0,216],\"4632\":[21,221],\"4633\":[12,212],\"4634\":[11,211],\"4635\":[17,217],\"4636\":[15,215],\"4637\":[0,45],\"4638\":[11,211],\"4639\":[11,211],\"4640\":[16,216],\"4641\":[13,213],\"4642\":[11,211],\"4643\":[8,208],\"4644\":[10,210],\"4645\":[16,62],\"4646\":[0,274],\"4647\":[9,209],\"4648\":[0,155],\"4649\":[0,172],\"4650\":[17,217],\"4651\":[12,212],\"4652\":[10,210],\"4653\":[15,215],\"4654\":[40,240],\"4655\":[0,77],\"4656\":[12,212],\"4657\":[17,217],\"4658\":[10,210],\"4659\":[0,158],\"4660\":[0,268],\"4661\":[0,125],\"4662\":[0,248],\"4663\":[0,164],\"4664\":[0,272],\"4665\":[0,229],\"4666\":[0,256],\"4667\":[0,274],\"4668\":[0,156],\"4669\":[0,120],\"4670\":[0,257],\"4671\":[0,214],\"4672\":[0,144],\"4673\":[0,272],\"4674\":[0,27],\"4675\":[0,282],\"4676\":[0,88],\"4677\":[0,234],\"4678\":[0,231],\"4679\":[0,82],\"4680\":[0,34],\"4681\":[0,110],\"4682\":[0,80],\"4683\":[0,250],\"4684\":[0,161],\"4685\":[0,49],\"4686\":[0,92],\"4687\":[0,282],\"4688\":[0,32],\"4689\":[0,253],\"4690\":[0,262],\"4691\":[0,135],\"4692\":[0,236],\"4693\":[0,280],\"4694\":[0,249],\"4695\":[0,279],\"4696\":[0,118],\"4697\":[0,193],\"4698\":[0,236],\"4699\":[0,267],\"4700\":[0,237],\"4701\":[0,193],\"4702\":[0,52],\"4703\":[0,234],\"4704\":[0,138],\"4705\":[0,276],\"4706\":[0,278],\"4707\":[0,125],\"4708\":[0,279],\"4709\":[0,280],\"4710\":[0,275],\"4711\":[0,257],\"4712\":[0,210],\"4713\":[0,92],\"4714\":[0,75],\"4715\":[0,145],\"4716\":[0,291],\"4717\":[0,221],\"4718\":[11,100],\"4719\":[0,51],\"4720\":[0,87],\"4721\":[0,245],\"4722\":[0,89],\"4723\":[0,143],\"4724\":[0,81],\"4725\":[0,213],\"4726\":[0,167],\"4727\":[0,78],\"4728\":[19,94],\"4729\":[0,75],\"4730\":[0,125],\"4731\":[0,278],\"4732\":[0,113],\"4733\":[0,214],\"4734\":[16,261],\"4735\":[0,138],\"4736\":[0,59],\"4737\":[0,273],\"4738\":[0,214],\"4739\":[0,125],\"4740\":[0,64],\"4741\":[0,83],\"4742\":[0,152],\"4743\":[0,105],\"4744\":[0,126],\"4745\":[0,84],\"4746\":[0,216],\"4747\":[11,171],\"4748\":[11,107],\"4749\":[12,212],\"4750\":[0,58],\"4751\":[13,213],\"4752\":[0,254],\"4753\":[0,155],\"4754\":[14,214],\"4755\":[0,290],\"4756\":[12,212],\"4757\":[0,89],\"4758\":[0,40],\"4759\":[13,213],\"4760\":[16,216],\"4761\":[0,103],\"4762\":[95,295],\"4763\":[0,88],\"4764\":[14,214],\"4765\":[0,276],\"4766\":[0,179],\"4767\":[13,213],\"4768\":[15,113],\"4769\":[0,262],\"4770\":[0,122],\"4771\":[11,211],\"4772\":[0,101],\"4773\":[0,188],\"4774\":[0,277],\"4775\":[0,229],\"4776\":[0,164],\"4777\":[0,243],\"4778\":[0,164],\"4779\":[0,251],\"4780\":[0,71],\"4781\":[0,275],\"4782\":[0,204],\"4783\":[0,191],\"4784\":[0,57],\"4785\":[0,276],\"4786\":[0,235],\"4787\":[0,139],\"4788\":[0,118],\"4789\":[0,275],\"4790\":[0,279],\"4791\":[0,127],\"4792\":[0,99],\"4793\":[0,85],\"4794\":[0,49],\"4795\":[0,163],\"4796\":[0,53],\"4797\":[0,77],\"4798\":[0,220],\"4799\":[0,215],\"4800\":[0,58],\"4801\":[0,277],\"4802\":[0,248],\"4803\":[0,88],\"4804\":[0,125],\"4805\":[0,136],\"4806\":[0,258],\"4807\":[0,161],\"4808\":[0,180],\"4809\":[0,216],\"4810\":[0,267],\"4811\":[0,83],\"4812\":[0,275],\"4813\":[0,172],\"4814\":[0,65],\"4815\":[0,200],\"4816\":[0,274],\"4817\":[0,141],\"4818\":[0,61],\"4819\":[0,269],\"4820\":[0,29],\"4821\":[0,275],\"4822\":[0,125],\"4823\":[0,200],\"4824\":[0,105],\"4825\":[0,222],\"4826\":[0,64],\"4827\":[27,229],\"4828\":[0,200],\"4829\":[0,69],\"4830\":[0,136],\"4831\":[0,142],\"4832\":[0,46],\"4833\":[0,87],\"4834\":[0,183],\"4835\":[0,106],\"4836\":[0,153],\"4837\":[0,278],\"4838\":[0,114],\"4839\":[0,269],\"4840\":[0,180],\"4841\":[0,63],\"4842\":[0,185],\"4843\":[0,230],\"4844\":[0,229],\"4845\":[0,80],\"4846\":[0,143],\"4847\":[0,116],\"4848\":[0,129],\"4849\":[0,241],\"4850\":[0,114],\"4851\":[0,80],\"4852\":[0,275],\"4853\":[0,275],\"4854\":[0,275],\"4855\":[0,275],\"4856\":[0,275],\"4857\":[0,269],\"4858\":[0,275],\"4859\":[0,145],\"4860\":[0,275],\"4861\":[0,229],\"4862\":[0,269],\"4863\":[0,275],\"4864\":[0,227],\"4865\":[0,210],\"4866\":[0,275],\"4867\":[0,228],\"4868\":[0,106],\"4869\":[0,112],\"4870\":[0,132],\"4871\":[0,278],\"4872\":[0,104],\"4873\":[0,87],\"4874\":[0,285],\"4875\":[0,41],\"4876\":[0,129],\"4877\":[0,152],\"4878\":[0,264],\"4879\":[0,263],\"4880\":[0,263],\"4881\":[0,280],\"4882\":[0,118],\"4883\":[0,276],\"4884\":[0,118],\"4885\":[0,112],\"4886\":[0,185],\"4887\":[0,276],\"4888\":[0,222],\"4889\":[0,66],\"4890\":[0,80],\"4891\":[0,67],\"4892\":[0,278],\"4893\":[0,179],\"4894\":[0,146],\"4895\":[0,96],\"4896\":[0,80],\"4897\":[0,250],\"4898\":[0,240],\"4899\":[0,229],\"4900\":[0,124],\"4901\":[0,229],\"4902\":[0,158],\"4903\":[0,132],\"4904\":[0,231],\"4905\":[0,101],\"4906\":[0,237],\"4907\":[0,170],\"4908\":[0,200],\"4909\":[0,258],\"4910\":[0,117],\"4911\":[0,145],\"4912\":[0,175],\"4913\":[0,159],\"4914\":[0,227],\"4915\":[0,160],\"4916\":[0,234],\"4917\":[0,245],\"4918\":[0,131],\"4919\":[0,274],\"4920\":[0,191],\"4921\":[0,87],\"4922\":[0,280],\"4923\":[0,180],\"4924\":[9,56],\"4925\":[0,142],\"4926\":[0,134],\"4927\":[0,100],\"4928\":[0,201],\"4929\":[0,57],\"4930\":[0,144],\"4931\":[0,155],\"4932\":[0,148],\"4933\":[0,246],\"4934\":[0,146],\"4935\":[10,234],\"4936\":[0,124],\"4937\":[0,181],\"4938\":[0,222],\"4939\":[0,107],\"4940\":[31,122],\"4941\":[31,89],\"4942\":[0,259],\"4943\":[0,227],\"4944\":[0,67],\"4945\":[0,271],\"4946\":[0,100],\"4947\":[0,29],\"4948\":[26,288],\"4949\":[0,277],\"4950\":[10,73],\"4951\":[0,256],\"4952\":[0,121],\"4953\":[0,273],\"4954\":[0,268],\"4955\":[0,145],\"4956\":[0,277],\"4957\":[0,259],\"4958\":[0,273],\"4959\":[0,258],\"4960\":[0,191],\"4961\":[0,77],\"4962\":[0,116],\"4963\":[0,80],\"4964\":[0,174],\"4965\":[0,54],\"4966\":[0,130],\"4967\":[0,217],\"4968\":[0,215],\"4969\":[0,129],\"4970\":[12,67],\"4971\":[0,278],\"4972\":[0,277],\"4973\":[0,280],\"4974\":[16,61],\"4975\":[0,285],\"4976\":[0,192],\"4977\":[9,63],\"4978\":[0,192],\"4979\":[0,224],\"4980\":[10,83],\"4981\":[0,273],\"4982\":[17,42],\"4983\":[0,270],\"4984\":[0,179],\"4985\":[12,64],\"4986\":[0,59],\"4987\":[0,222],\"4988\":[0,113],\"4989\":[0,166],\"4990\":[0,203],\"4991\":[0,279],\"4992\":[15,112],\"4993\":[15,112],\"4994\":[15,112],\"4995\":[0,192],\"4996\":[0,280],\"4997\":[0,99],\"4998\":[0,276],\"4999\":[0,52]},\"entities\":{\"0\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"NATO\",\"indices\":[189,194]},{\"text\":\"5G\",\"indices\":[197,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"\\u30de\\u30c4\\u30b3\\u306e\\u77e5\\u3089\\u306a\\u3044\\u4e16\\u754c\",\"indices\":[157,168]},{\"text\":\"Yediiklim\",\"indices\":[169,179]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[180,201]},{\"text\":\"LawnBowls\",\"indices\":[202,212]},{\"text\":\"\\u795d_CALL119_MV900\\u4e07\\u56de\",\"indices\":[213,231]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[232,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/twah6WU4fZ\",\"expanded_url\":\"http:\\/\\/toopsat.com\\/?p=1584\",\"display_url\":\"toopsat.com\\/?p=1584\",\"indices\":[98,121]}],\"media\":[{\"id\":1554487694776012800,\"id_str\":\"1554487694776012800\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmUobXEAAqadu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmUobXEAAqadu.png\",\"url\":\"https:\\/\\/t.co\\/m4CXfyZRS7\",\"display_url\":\"pic.twitter.com\\/m4CXfyZRS7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/toopsat\\/status\\/1554488368347680771\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":735,\"h\":468,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":433,\"resize\":\"fit\"},\"medium\":{\"w\":735,\"h\":468,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taipei\",\"indices\":[9,16]},{\"text\":\"taiwan\",\"indices\":[18,25]},{\"text\":\"XiJinping\",\"indices\":[26,36]},{\"text\":\"China\",\"indices\":[38,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554482776140906497,\"id_str\":\"1554482776140906497\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKh2VFXgAE7f0A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKh2VFXgAE7f0A.jpg\",\"url\":\"https:\\/\\/t.co\\/DuqDiSnWcd\",\"display_url\":\"pic.twitter.com\\/DuqDiSnWcd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NassimaLilEmy\\/status\\/1554482802502127621\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1365,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"3\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[0,12]},{\"text\":\"LaAcademiaExpulsion\",\"indices\":[13,33]},{\"text\":\"WEURO2022\",\"indices\":[34,44]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[45,65]},{\"text\":\"SuzukiPakistan\",\"indices\":[66,81]},{\"text\":\"Fantastico\",\"indices\":[82,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"breastfeeding\",\"indices\":[102,116]},{\"text\":\"Kosovo\",\"indices\":[117,124]},{\"text\":\"BORNPINK\",\"indices\":[125,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554102566010732544,\"id_str\":\"1554102566010732544\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFIDL-XwAADgfe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFIDL-XwAADgfe.jpg\",\"url\":\"https:\\/\\/t.co\\/GtZeNL24rm\",\"display_url\":\"pic.twitter.com\\/GtZeNL24rm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/d_dhayae\\/status\\/1554102573635932160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":912,\"h\":912,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":912,\"h\":912,\"resize\":\"fit\"}}}]},\"4\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"china\",\"indices\":[8,14]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553833456853045256,\"id_str\":\"1553833456853045256\",\"indices\":[29,52],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBTS-PX0Agw7HT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBTS-PX0Agw7HT.jpg\",\"url\":\"https:\\/\\/t.co\\/tEDjzTlszu\",\"display_url\":\"pic.twitter.com\\/tEDjzTlszu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mohamme65404115\\/status\\/1553833459440910338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":598,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":542,\"resize\":\"fit\"}}}]},\"5\":{\"hashtags\":[{\"text\":\"YK\",\"indices\":[261,264]},{\"text\":\"Taiwan\",\"indices\":[265,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CGH6TCZ2DL\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/k8YzLb\",\"display_url\":\"fiverr.com\\/share\\/k8YzLb\",\"indices\":[236,259]}],\"media\":[{\"id\":1553732681694941185,\"id_str\":\"1553732681694941185\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553732681694941185\\/pu\\/img\\/M-7LZyUI-HbNQ279.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553732681694941185\\/pu\\/img\\/M-7LZyUI-HbNQ279.jpg\",\"url\":\"https:\\/\\/t.co\\/406MoDCb4u\",\"display_url\":\"pic.twitter.com\\/406MoDCb4u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yacine_Kelala8\\/status\\/1553732806152536066\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"6\":{\"hashtags\":[{\"text\":\"fashion\",\"indices\":[113,121]},{\"text\":\"Twins\",\"indices\":[122,128]},{\"text\":\"models\",\"indices\":[129,136]},{\"text\":\"RETWEEET\",\"indices\":[137,146]},{\"text\":\"PRESALE\",\"indices\":[147,155]},{\"text\":\"sellingcontent\",\"indices\":[156,171]},{\"text\":\"Sales\",\"indices\":[172,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]},{\"text\":\"andAUDITION\",\"indices\":[187,199]},{\"text\":\"BB24\",\"indices\":[200,205]},{\"text\":\"BBNajia\",\"indices\":[206,214]},{\"text\":\"OhmNanon1stFM\",\"indices\":[215,229]},{\"text\":\"music\",\"indices\":[230,236]},{\"text\":\"INDvsWI\",\"indices\":[237,245]},{\"text\":\"art\",\"indices\":[246,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p4wmtyOZGp\",\"expanded_url\":\"https:\\/\\/ffm.to\\/draxafricamusic\",\"display_url\":\"ffm.to\\/draxafricamusic\",\"indices\":[89,112]}],\"media\":[{\"id\":1556157138329812992,\"id_str\":\"1556157138329812992\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZiUrCTWQAALlEV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZiUrCTWQAALlEV.jpg\",\"url\":\"https:\\/\\/t.co\\/p1MDqaftsm\",\"display_url\":\"pic.twitter.com\\/p1MDqaftsm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drax_africa\\/status\\/1556157165639016448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":801,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1367,\"resize\":\"fit\"}}}]},\"7\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[39,46]},{\"text\":\"CoupleGoals\",\"indices\":[47,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555006199954919424,\"id_str\":\"1555006199954919424\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR95mvX0AAwgo0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR95mvX0AAwgo0.jpg\",\"url\":\"https:\\/\\/t.co\\/SjxicXQG2L\",\"display_url\":\"pic.twitter.com\\/SjxicXQG2L\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MukukaReal\\/status\\/1555006203310268417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1128,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":639,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1167,\"resize\":\"fit\"}}}]},\"8\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[3,9]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[106,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cVpMoxMuos\",\"expanded_url\":\"https:\\/\\/youtu.be\\/YBBnQmRcRI4\",\"display_url\":\"youtu.be\\/YBBnQmRcRI4\",\"indices\":[80,103]}]},\"9\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"10\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[83,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"flightradar24\",\"name\":\"Flightradar24\",\"id\":134196350,\"id_str\":\"134196350\",\"indices\":[0,14]}],\"urls\":[]},\"11\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[16,23]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"12\":{\"hashtags\":[{\"text\":\"WW3\",\"indices\":[76,80]},{\"text\":\"WWIII\",\"indices\":[81,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554182703003488256,\"id_str\":\"1554182703003488256\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGQ7xiUUAAf3UP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGQ7xiUUAAf3UP.jpg\",\"url\":\"https:\\/\\/t.co\\/E2LjgrjORE\",\"display_url\":\"pic.twitter.com\\/E2LjgrjORE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bIackdot\\/status\\/1554184385556926466\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":646,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":610,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":646,\"resize\":\"fit\"}}}]},\"13\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"NancyPelosi\",\"indices\":[39,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554116945754042369,\"id_str\":\"1554116945754042369\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFVIMsVsAEbhlY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFVIMsVsAEbhlY.jpg\",\"url\":\"https:\\/\\/t.co\\/2hK2izpvZf\",\"display_url\":\"pic.twitter.com\\/2hK2izpvZf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bIackdot\\/status\\/1554117425968254976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":709,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":709,\"resize\":\"fit\"}}}]},\"14\":{\"hashtags\":[{\"text\":\"HongKong\",\"indices\":[15,24]},{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"Micau\",\"indices\":[34,40]},{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"America\",\"indices\":[61,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"15\":{\"hashtags\":[{\"text\":\"Obidatti2023\",\"indices\":[164,177]},{\"text\":\"TakeBackNaija\",\"indices\":[179,193]},{\"text\":\"Free\",\"indices\":[195,200]},{\"text\":\"Consumption2ProductionFormular\",\"indices\":[219,250]},{\"text\":\"UKNews\",\"indices\":[262,269]},{\"text\":\"Pelosi\",\"indices\":[282,289]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"renoomokri\",\"name\":\"Reno Omokri\",\"id\":264248576,\"id_str\":\"264248576\",\"indices\":[0,11]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[251,260]},{\"screen_name\":\"BBCWorld\",\"name\":\"BBC News (World)\",\"id\":742143,\"id_str\":\"742143\",\"indices\":[271,280]}],\"urls\":[]},\"16\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[84,90]},{\"text\":\"ChinaTaiwan\",\"indices\":[91,103]},{\"text\":\"ManUnited\",\"indices\":[104,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E58nxeVz0j\",\"expanded_url\":\"https:\\/\\/wilsonchnns.blogspot.com\\/2022\\/08\\/nigerian-tribes-list-and-facts.html?spref=tw\",\"display_url\":\"wilsonchnns.blogspot.com\\/2022\\/08\\/nigeri\\u2026\",\"indices\":[58,81]}]},\"17\":{\"hashtags\":[{\"text\":\"Jan6\",\"indices\":[39,44]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"18\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[54,62]},{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[100,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556314135784472576,\"id_str\":\"1556314135784472576\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"url\":\"https:\\/\\/t.co\\/Fe9ayldxZS\",\"display_url\":\"pic.twitter.com\\/Fe9ayldxZS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556314427712061440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"19\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[19,26]},{\"text\":\"China\",\"indices\":[94,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[109,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556287723480436737,\"id_str\":\"1556287723480436737\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"url\":\"https:\\/\\/t.co\\/P5UbQYI0Yq\",\"display_url\":\"pic.twitter.com\\/P5UbQYI0Yq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556287756858540032\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}}}]},\"20\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"NewsUpdate\",\"indices\":[62,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J23E2xwI7w\",\"expanded_url\":\"https:\\/\\/chiexclusive.com\\/chinas-largest-ever-taiwan-military-drills-draw-to-a-close\\/\",\"display_url\":\"chiexclusive.com\\/chinas-largest\\u2026\",\"indices\":[76,99]}]},\"21\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[147,165]},{\"text\":\"China\",\"indices\":[166,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556240947281031170,\"id_str\":\"1556240947281031170\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"url\":\"https:\\/\\/t.co\\/IRw2ftT9nz\",\"display_url\":\"pic.twitter.com\\/IRw2ftT9nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556240994328510465\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"22\":{\"hashtags\":[{\"text\":\"News\",\"indices\":[83,88]},{\"text\":\"china\",\"indices\":[90,96]},{\"text\":\"NancyPelosi\",\"indices\":[97,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"US\",\"indices\":[118,121]},{\"text\":\"BBnaija\",\"indices\":[122,130]},{\"text\":\"Messi\",\"indices\":[131,137]},{\"text\":\"Wizkid\",\"indices\":[138,145]},{\"text\":\"Davido\",\"indices\":[146,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EXVN1DOIf0\",\"expanded_url\":\"https:\\/\\/www.notice.com.ng\\/america-won-8217-t-allow-china-threaten-taiwan-8211-nancy-pelosi\",\"display_url\":\"notice.com.ng\\/america-won-82\\u2026\",\"indices\":[59,82]}]},\"23\":{\"hashtags\":[{\"text\":\"Lithuanian\",\"indices\":[16,27]},{\"text\":\"Taiwan\",\"indices\":[123,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556223737019908096,\"id_str\":\"1556223737019908096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"url\":\"https:\\/\\/t.co\\/r7FkYFYnCe\",\"display_url\":\"pic.twitter.com\\/r7FkYFYnCe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556223742959058945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":332,\"resize\":\"fit\"}}}]},\"24\":{\"hashtags\":[{\"text\":\"Latest\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[254,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556221695006212102,\"id_str\":\"1556221695006212102\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"url\":\"https:\\/\\/t.co\\/w5wrwDt9cT\",\"display_url\":\"pic.twitter.com\\/w5wrwDt9cT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556221742439616514\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"25\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"CommonwealthGame\",\"indices\":[258,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Asabari_CC\",\"name\":\"AsabariConsultativeCouncil\",\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"indices\":[14,25]},{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[27,36]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[213,220]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[239,249]}],\"urls\":[]},\"26\":{\"hashtags\":[{\"text\":\"remoteworking\",\"indices\":[225,239]},{\"text\":\"dev\",\"indices\":[240,244]},{\"text\":\"NFTs\",\"indices\":[245,250]},{\"text\":\"Taiwan\",\"indices\":[251,258]},{\"text\":\"China\",\"indices\":[259,265]},{\"text\":\"Solana\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"codemonk\",\"name\":\"Code Monk\",\"id\":2533751,\"id_str\":\"2533751\",\"indices\":[197,206]}],\"urls\":[]},\"27\":{\"hashtags\":[{\"text\":\"RussiaUkraineWar\",\"indices\":[117,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"Baiden\",\"indices\":[143,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"28\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[4,10]},{\"text\":\"ChinaTaiwan\",\"indices\":[65,77]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[78,98]},{\"text\":\"BidenRecession\",\"indices\":[99,114]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[115,135]},{\"text\":\"NancyPelosi\",\"indices\":[136,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"29\":{\"hashtags\":[{\"text\":\"xinping\",\"indices\":[23,31]},{\"text\":\"china\",\"indices\":[56,62]},{\"text\":\"china\",\"indices\":[80,86]},{\"text\":\"taiwan\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[12,18]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[121,127]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[130,136]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[146,160]}],\"urls\":[]},\"30\":{\"hashtags\":[{\"text\":\"Elections2022\",\"indices\":[95,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"PremierLeague\",\"indices\":[118,132]},{\"text\":\"doggy\",\"indices\":[133,139]},{\"text\":\"nyayostadium\",\"indices\":[140,153]},{\"text\":\"noelshouseparty\",\"indices\":[154,170]},{\"text\":\"ASUU\",\"indices\":[171,176]},{\"text\":\"ASUUstrike\",\"indices\":[177,188]},{\"text\":\"BuhariMustGo\",\"indices\":[189,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556041994148929536,\"id_str\":\"1556041994148929536\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"url\":\"https:\\/\\/t.co\\/5e7StO4jfZ\",\"display_url\":\"pic.twitter.com\\/5e7StO4jfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femiafricaNG\\/status\\/1556042033915101184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"31\":{\"hashtags\":[{\"text\":\"GazaUnderAttack\",\"indices\":[86,102]},{\"text\":\"PreyMovie\",\"indices\":[103,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"BBNajiaS7\",\"indices\":[122,132]},{\"text\":\"nsfwtwt\",\"indices\":[133,141]},{\"text\":\"Wars1stBDFanmeet\",\"indices\":[142,159]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[76,84]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6R4h5j9Gi7\",\"expanded_url\":\"https:\\/\\/youtu.be\\/qWBmRvLymSc\",\"display_url\":\"youtu.be\\/qWBmRvLymSc\",\"indices\":[48,71]}]},\"32\":{\"hashtags\":[{\"text\":\"dictatorship\",\"indices\":[89,102]},{\"text\":\"China\",\"indices\":[106,112]},{\"text\":\"Taiwan\",\"indices\":[147,154]},{\"text\":\"Polosi\",\"indices\":[194,201]},{\"text\":\"country\",\"indices\":[213,221]},{\"text\":\"noises\",\"indices\":[245,252]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"XHNews\",\"name\":\"China Xinhua News\",\"id\":487118986,\"id_str\":\"487118986\",\"indices\":[0,7]},{\"screen_name\":\"PR_Paul_BIYA\",\"name\":\"President Paul BIYA\",\"id\":301026859,\"id_str\":\"301026859\",\"indices\":[51,64]}],\"urls\":[]},\"33\":{\"hashtags\":[{\"text\":\"dictatorship\",\"indices\":[81,94]},{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Polosi\",\"indices\":[186,193]},{\"text\":\"country\",\"indices\":[205,213]},{\"text\":\"noises\",\"indices\":[237,244]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PR_Paul_BIYA\",\"name\":\"President Paul BIYA\",\"id\":301026859,\"id_str\":\"301026859\",\"indices\":[43,56]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cV2MAbz9si\",\"expanded_url\":\"https:\\/\\/twitter.com\\/XHNews\\/status\\/1555560738034688000\",\"display_url\":\"twitter.com\\/XHNews\\/status\\/\\u2026\",\"indices\":[257,280]}]},\"34\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[193,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555992362622615553,\"id_str\":\"1555992362622615553\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"url\":\"https:\\/\\/t.co\\/DiKgxF4oTL\",\"display_url\":\"pic.twitter.com\\/DiKgxF4oTL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555992372194021376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":410,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":723,\"resize\":\"fit\"},\"large\":{\"w\":1279,\"h\":771,\"resize\":\"fit\"}}}]},\"35\":{\"hashtags\":[{\"text\":\"Israel\",\"indices\":[85,92]},{\"text\":\"Kasarani\",\"indices\":[93,102]},{\"text\":\"nyayostadium\",\"indices\":[103,116]},{\"text\":\"Gaza\",\"indices\":[117,122]},{\"text\":\"BadDecisions\",\"indices\":[123,136]},{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"Ukraine\",\"indices\":[145,153]},{\"text\":\"TREASURE\",\"indices\":[154,163]},{\"text\":\"Trending\",\"indices\":[164,173]},{\"text\":\"trend\",\"indices\":[174,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555984739168927748,\"id_str\":\"1555984739168927748\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"url\":\"https:\\/\\/t.co\\/Fh3oav9sPe\",\"display_url\":\"pic.twitter.com\\/Fh3oav9sPe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555984785004281857\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":480,\"resize\":\"fit\"}}}]},\"36\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[103,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C3z0q89HkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\",\"display_url\":\"twitter.com\\/ChaudharyParve\\u2026\",\"indices\":[178,201]}],\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0XdsYP\",\"display_url\":\"pic.twitter.com\\/fvGw0XdsYP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"source_status_id\":1555924699447582720,\"source_status_id_str\":\"1555924699447582720\",\"source_user_id\":746971014,\"source_user_id_str\":\"746971014\"}]},\"37\":{\"hashtags\":[{\"text\":\"Indiana\",\"indices\":[150,158]},{\"text\":\"JUNGKOOK\",\"indices\":[159,168]},{\"text\":\"nyayostadium\",\"indices\":[169,182]},{\"text\":\"Nunez\",\"indices\":[183,189]},{\"text\":\"LFC\",\"indices\":[190,194]},{\"text\":\"andAUDITION\",\"indices\":[195,207]},{\"text\":\"SitaRamam\",\"indices\":[208,218]},{\"text\":\"FOREVER1\",\"indices\":[219,228]},{\"text\":\"WAFC\",\"indices\":[229,234]},{\"text\":\"RHOBH\",\"indices\":[235,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"GoFundMe\",\"indices\":[250,259]},{\"text\":\"help\",\"indices\":[260,265]},{\"text\":\"TREASURE\",\"indices\":[266,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[126,149]}],\"media\":[{\"id\":1555940231827832834,\"id_str\":\"1555940231827832834\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"url\":\"https:\\/\\/t.co\\/rPmfa5ojNK\",\"display_url\":\"pic.twitter.com\\/rPmfa5ojNK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555940250551259136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1067,\"resize\":\"fit\"}}}]},\"38\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"China\",\"indices\":[158,164]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[230,248]},{\"text\":\"Pelosi\",\"indices\":[249,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}}}]},\"39\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"Drone\",\"indices\":[141,147]},{\"text\":\"Foreign\",\"indices\":[148,156]},{\"text\":\"Gist\",\"indices\":[157,162]},{\"text\":\"news\",\"indices\":[163,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"US\",\"indices\":[177,180]},{\"text\":\"bobojay\",\"indices\":[181,189]},{\"text\":\"bobojaytv\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iFl0xbm0Ow\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/taiwan-chinese-planes-ships-carry-out-attack-simulation-exercise\\/\",\"display_url\":\"bobojaytv.com\\/taiwan-chinese\\u2026\",\"indices\":[78,101]}],\"media\":[{\"id\":1555921612242767873,\"id_str\":\"1555921612242767873\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"url\":\"https:\\/\\/t.co\\/Jt6aduFcg8\",\"display_url\":\"pic.twitter.com\\/Jt6aduFcg8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555921613857492993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":420,\"resize\":\"fit\"}}}]},\"40\":{\"hashtags\":[{\"text\":\"Beijing\",\"indices\":[144,152]},{\"text\":\"China\",\"indices\":[153,159]},{\"text\":\"Foreign\",\"indices\":[160,168]},{\"text\":\"news\",\"indices\":[169,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"bobojay\",\"indices\":[183,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IortearyBW\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/taiwan-accuses-beijing-of-simulating-invasion-as-us-china-relations-nosedive\\/\",\"display_url\":\"bobojaytv.com\\/taiwan-accuses\\u2026\",\"indices\":[88,111]}],\"media\":[{\"id\":1555920653005402114,\"id_str\":\"1555920653005402114\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"url\":\"https:\\/\\/t.co\\/cpsTb251y5\",\"display_url\":\"pic.twitter.com\\/cpsTb251y5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555920654368575488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"41\":{\"hashtags\":[{\"text\":\"AntonioGuterres\",\"indices\":[128,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"Foreign\",\"indices\":[152,160]},{\"text\":\"news\",\"indices\":[161,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"UN\",\"indices\":[175,178]},{\"text\":\"bobojay\",\"indices\":[179,187]},{\"text\":\"bobojaytv\",\"indices\":[188,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cSMbwgBTbO\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/un-chief-warns-nuclear-weapons-are-loaded-gun-for-humanity\\/\",\"display_url\":\"bobojaytv.com\\/un-chief-warns\\u2026\",\"indices\":[72,95]}]},\"42\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"China\",\"indices\":[165,171]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[172,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555912584217235457,\"id_str\":\"1555912584217235457\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"url\":\"https:\\/\\/t.co\\/VDLfQwhCt5\",\"display_url\":\"pic.twitter.com\\/VDLfQwhCt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555912598461157377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"43\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"44\":{\"hashtags\":[{\"text\":\"PreyMovie\",\"indices\":[105,115]},{\"text\":\"BBNaija7\",\"indices\":[126,135]},{\"text\":\"LALISA\",\"indices\":[136,143]},{\"text\":\"MUFC\",\"indices\":[144,149]},{\"text\":\"binance\",\"indices\":[150,158]},{\"text\":\"Ukraine\",\"indices\":[234,242]},{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"FOREVER1\",\"indices\":[251,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tyewoolove\",\"name\":\"B\\u1ecd\\u0301l\\u00e1\\u0144l\\u00e9 on\\u00ed story \\ud83d\\udd8b\\ufe0f\",\"id\":1143094620064235520,\"id_str\":\"1143094620064235520\",\"indices\":[159,170]},{\"screen_name\":\"KizzDaniel\",\"name\":\"VADO D\\u2018GREAT \\ud83c\\udf99\",\"id\":2159951120,\"id_str\":\"2159951120\",\"indices\":[171,182]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[183,192]},{\"screen_name\":\"olaoluwasanmi\",\"name\":\"Brand Engineer | k\\u00f3w\\u00f3 p\\u00e9\",\"id\":369557224,\"id_str\":\"369557224\",\"indices\":[193,207]},{\"screen_name\":\"BrymOlawale\",\"name\":\"\\u1eccl\\u00e1w\\u00e1l\\u00e9 \\u1eccl\\u1ecd\\u0301f\\u1ecd\\u1ecd\\u0300r\\u1ecd\\u0300\",\"id\":65514235,\"id_str\":\"65514235\",\"indices\":[208,220]},{\"screen_name\":\"HypeMan_Jay\",\"name\":\"#DaMusicConnoisseur\",\"id\":856565077,\"id_str\":\"856565077\",\"indices\":[221,233]}],\"urls\":[],\"media\":[{\"id\":1555901574240681986,\"id_str\":\"1555901574240681986\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"url\":\"https:\\/\\/t.co\\/GdXquO0e9H\",\"display_url\":\"pic.twitter.com\\/GdXquO0e9H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdajaMusic\\/status\\/1555901917523591168\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"45\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[36,49]},{\"text\":\"FULLIV\",\"indices\":[51,58]},{\"text\":\"UkrainianArmy\",\"indices\":[59,73]},{\"text\":\"Taiwan\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555886494941958146,\"id_str\":\"1555886494941958146\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"url\":\"https:\\/\\/t.co\\/7S8nXC3rt6\",\"display_url\":\"pic.twitter.com\\/7S8nXC3rt6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ClintonSnowbird\\/status\\/1555886548486443008\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"}}}]},\"46\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[113,119]},{\"text\":\"USA\",\"indices\":[120,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"Pelosi\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SoAbONf1yX\",\"expanded_url\":\"https:\\/\\/investogist.com\\/calls-from-usa-defense-ministry-to-top-chinese-military-officials-being-ignored-report\\/\",\"display_url\":\"investogist.com\\/calls-from-usa\\u2026\",\"indices\":[89,112]}]},\"47\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Koreas\",\"indices\":[117,124]},{\"text\":\"Peace\",\"indices\":[190,196]},{\"text\":\"Stability\",\"indices\":[201,211]},{\"text\":\"NorthKorea\",\"indices\":[213,224]},{\"text\":\"KimJongUn\",\"indices\":[225,235]},{\"text\":\"Taiwan\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555881626227601410,\"id_str\":\"1555881626227601410\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"url\":\"https:\\/\\/t.co\\/icicexbejC\",\"display_url\":\"pic.twitter.com\\/icicexbejC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555881643566854144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":679,\"h\":408,\"resize\":\"fit\"}}}]},\"48\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[4,12]},{\"text\":\"PLA\",\"indices\":[71,75]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"China\",\"indices\":[139,145]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[146,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555864705419603968,\"id_str\":\"1555864705419603968\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"url\":\"https:\\/\\/t.co\\/fv4KP5uO0f\",\"display_url\":\"pic.twitter.com\\/fv4KP5uO0f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555864776286556160\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":860,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":860,\"h\":480,\"resize\":\"fit\"}}}]},\"49\":{\"hashtags\":[{\"text\":\"TOGFG\",\"indices\":[107,113]},{\"text\":\"agrolyfe\",\"indices\":[114,123]},{\"text\":\"agro\",\"indices\":[124,129]},{\"text\":\"realestate\",\"indices\":[130,141]},{\"text\":\"nigeria\",\"indices\":[142,150]},{\"text\":\"westafrica\",\"indices\":[152,163]},{\"text\":\"Niger\",\"indices\":[164,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"China\",\"indices\":[179,185]},{\"text\":\"BBNaija\",\"indices\":[186,194]},{\"text\":\"investment\",\"indices\":[195,206]},{\"text\":\"agriculture\",\"indices\":[207,219]},{\"text\":\"agribusiness\",\"indices\":[220,233]},{\"text\":\"africa\",\"indices\":[234,241]},{\"text\":\"investor\",\"indices\":[242,251]},{\"text\":\"farm\",\"indices\":[252,257]},{\"text\":\"Chelsea\",\"indices\":[258,266]},{\"text\":\"Fireboy\",\"indices\":[267,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yhBXWin2rz\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[82,105]}],\"media\":[{\"id\":1555859351558144000,\"id_str\":\"1555859351558144000\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"url\":\"https:\\/\\/t.co\\/M6OH6kpv3d\",\"display_url\":\"pic.twitter.com\\/M6OH6kpv3d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1555859377038524416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"50\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[255,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555856903145930753,\"id_str\":\"1555856903145930753\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"51\":{\"hashtags\":[{\"text\":\"SS9inManila\",\"indices\":[73,85]},{\"text\":\"OP_FILMRED\\u30ad\\u30e3\\u30f3\\u30da\\u30fc\\u30f3\",\"indices\":[86,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"binance\",\"indices\":[112,120]},{\"text\":\"LALISA\",\"indices\":[121,128]},{\"text\":\"FOREVER1\",\"indices\":[129,138]},{\"text\":\"\\u0e2a\\u0e30\\u0e43\\u0e20\\u0e49\\u0e23\\u0e48\\u0e21\\u0e44\\u0e17\\u0e23\\u0e17\\u0e2d\\u0e07\",\"indices\":[139,154]},{\"text\":\"\\u0e2a\\u0e30\\u0e43\\u0e20\\u0e49\\u0e27\\u0e31\\u0e12\\u0e19\\u0e01\\u0e34\\u0e15\\u0e34\\u0e1e\\u0e31\\u0e12\\u0e19\\u0e4c\",\"indices\":[155,174]},{\"text\":\"\\u063a\\u0632\\u0629_\\u062a\\u062d\\u062a_\\u0627\\u0644\\u0642\\u0635\\u0641\",\"indices\":[175,189]},{\"text\":\"kruklaopenclass\",\"indices\":[190,206]},{\"text\":\"ShopMyCloset\",\"indices\":[207,220]},{\"text\":\"shopping\",\"indices\":[221,230]},{\"text\":\"AmazonSpecials\",\"indices\":[231,246]},{\"text\":\"AmazonPrime\",\"indices\":[247,259]},{\"text\":\"AmazonWi\",\"indices\":[260,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555833464087257090,\"id_str\":\"1555833464087257090\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZduStyWIAIxHZN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZduStyWIAIxHZN.jpg\",\"url\":\"https:\\/\\/t.co\\/s9I9YhCxlo\",\"display_url\":\"pic.twitter.com\\/s9I9YhCxlo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ArtsBaskets\\/status\\/1555833481262993409\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":676,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":711,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":711,\"resize\":\"fit\"}}}]},\"52\":{\"hashtags\":[{\"text\":\"EnoughIsEnough\",\"indices\":[241,256]},{\"text\":\"PeterObi\",\"indices\":[257,266]},{\"text\":\"Cheating\",\"indices\":[267,276]},{\"text\":\"Taiwan\",\"indices\":[277,284]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SmallAlhaji_\",\"name\":\"Alh Tajudeen Adefisoye\",\"id\":54858891,\"id_str\":\"54858891\",\"indices\":[0,13]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[14,27]}],\"urls\":[]},\"53\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"Cheating\",\"indices\":[77,86]},{\"text\":\"PremierLeague\",\"indices\":[87,101]},{\"text\":\"music\",\"indices\":[102,108]},{\"text\":\"StrayKids\",\"indices\":[109,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555829798756392967,\"id_str\":\"1555829798756392967\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdq9XXXoAc48YQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdq9XXXoAc48YQ.jpg\",\"url\":\"https:\\/\\/t.co\\/ynx2fozb5i\",\"display_url\":\"pic.twitter.com\\/ynx2fozb5i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DjGalaxyGDD\\/status\\/1555829826132615168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1114,\"resize\":\"fit\"},\"small\":{\"w\":439,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1114,\"resize\":\"fit\"}}}]},\"54\":{\"hashtags\":[{\"text\":\"Cheating\",\"indices\":[51,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"FOREVER1\",\"indices\":[69,78]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CaksusDas\",\"name\":\"Jnana Caksus Das\",\"id\":1050464185895870465,\"id_str\":\"1050464185895870465\",\"indices\":[0,10]},{\"screen_name\":\"Transfor108\",\"name\":\"Transformations 108 Foundation\",\"id\":1049344932819943425,\"id_str\":\"1049344932819943425\",\"indices\":[11,23]},{\"screen_name\":\"MaameGraceGH\",\"name\":\"Maame Grace (Apostle)\",\"id\":1316425352709918721,\"id_str\":\"1316425352709918721\",\"indices\":[37,50]}],\"urls\":[],\"media\":[{\"id\":1555829366776553473,\"id_str\":\"1555829366776553473\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555829366776553473\\/pu\\/img\\/BtLEPGXGGihaIAVP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555829366776553473\\/pu\\/img\\/BtLEPGXGGihaIAVP.jpg\",\"url\":\"https:\\/\\/t.co\\/NCMJ0q5giu\",\"display_url\":\"pic.twitter.com\\/NCMJ0q5giu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Transfor108\\/status\\/1555829725901295617\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":688,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":688,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"}}}]},\"55\":{\"hashtags\":[{\"text\":\"VocalcarCoach\",\"indices\":[53,67]},{\"text\":\"TheChi\",\"indices\":[107,114]},{\"text\":\"BBNaijaJohnnieWalker\",\"indices\":[137,158]},{\"text\":\"BB24\",\"indices\":[159,164]},{\"text\":\"Cheating\",\"indices\":[165,174]},{\"text\":\"PremierLeague\",\"indices\":[175,189]},{\"text\":\"Taiwan\",\"indices\":[190,197]},{\"text\":\"BryannOnly\",\"indices\":[207,218]},{\"text\":\"PiConsensus\",\"indices\":[219,231]},{\"text\":\"binance\",\"indices\":[232,240]},{\"text\":\"Sandman\",\"indices\":[241,249]},{\"text\":\"weekendvibes\",\"indices\":[250,263]},{\"text\":\"USA\",\"indices\":[264,268]},{\"text\":\"Ukraine\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555828432784789509,\"id_str\":\"1555828432784789509\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"url\":\"https:\\/\\/t.co\\/RsGGLqKP4f\",\"display_url\":\"pic.twitter.com\\/RsGGLqKP4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555828561424121857\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"56\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[186,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"57\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"PLLOriginalSin\",\"indices\":[158,173]},{\"text\":\"helpinghand\",\"indices\":[174,186]},{\"text\":\"donate\",\"indices\":[187,194]},{\"text\":\"KarachiRains\",\"indices\":[195,208]},{\"text\":\"BB24\",\"indices\":[209,214]},{\"text\":\"RHOBH\",\"indices\":[215,221]},{\"text\":\"midjourney\",\"indices\":[222,233]},{\"text\":\"TREASUREinManila\",\"indices\":[234,251]},{\"text\":\"Trending\",\"indices\":[252,261]},{\"text\":\"trend\",\"indices\":[262,268]},{\"text\":\"Yankees\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[126,149]}],\"media\":[{\"id\":1555765671199473664,\"id_str\":\"1555765671199473664\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"url\":\"https:\\/\\/t.co\\/lpzUJdfPzo\",\"display_url\":\"pic.twitter.com\\/lpzUJdfPzo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555765691919261696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":479,\"h\":320,\"resize\":\"fit\"}}}]},\"58\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"PremierLeague\",\"indices\":[45,59]},{\"text\":\"BBNaijaS7\",\"indices\":[60,70]},{\"text\":\"newsongalert\",\"indices\":[71,84]},{\"text\":\"Naijaleaks\",\"indices\":[85,96]},{\"text\":\"Afrobeats\",\"indices\":[97,107]},{\"text\":\"lovesongs\",\"indices\":[108,118]},{\"text\":\"worldmusic\",\"indices\":[119,130]},{\"text\":\"Trending\",\"indices\":[131,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"amuse_io\",\"name\":\"amuse\",\"id\":3817266689,\"id_str\":\"3817266689\",\"indices\":[170,179]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XujdyI76mw\",\"expanded_url\":\"https:\\/\\/share.amuse.io\\/0I5ZVI6Wk5yo\",\"display_url\":\"share.amuse.io\\/0I5ZVI6Wk5yo\",\"indices\":[142,165]}]},\"59\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[164,171]},{\"text\":\"US\",\"indices\":[172,175]},{\"text\":\"lm\",\"indices\":[176,179]},{\"text\":\"lagosmetropolitan\",\"indices\":[180,198]},{\"text\":\"lagmetro\",\"indices\":[199,208]},{\"text\":\"metro\",\"indices\":[209,215]},{\"text\":\"lagos\",\"indices\":[216,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LagMetropolitan\",\"name\":\"Lagos Metropolitan\",\"id\":1250296116865724419,\"id_str\":\"1250296116865724419\",\"indices\":[139,155]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bWugJKdw4Z\",\"expanded_url\":\"https:\\/\\/lagosmetropolitan.com\\/blog\\/2022\\/08\\/06\\/after-ukraine-us-fishes-for-new-war-in-taiwanese-waters\\/\",\"display_url\":\"lagosmetropolitan.com\\/blog\\/2022\\/08\\/0\\u2026\",\"indices\":[223,246]}]},\"60\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[0,3]},{\"text\":\"NATO\",\"indices\":[10,15]},{\"text\":\"Ukraine\",\"indices\":[162,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ysaisq3VjW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GalLuft\\/status\\/1555643813871423488\",\"display_url\":\"twitter.com\\/GalLuft\\/status\\u2026\",\"indices\":[192,215]}]},\"61\":{\"hashtags\":[{\"text\":\"Zionists\",\"indices\":[4,13]},{\"text\":\"Palestinians\",\"indices\":[79,92]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[146,167]},{\"text\":\"ChinaTaiwan\",\"indices\":[168,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DasyV6eZOj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AJEnglish\\/status\\/1555552144186609664\",\"display_url\":\"twitter.com\\/AJEnglish\\/stat\\u2026\",\"indices\":[217,240]}]},\"62\":{\"hashtags\":[{\"text\":\"Xiaomi\",\"indices\":[95,102]},{\"text\":\"tech\",\"indices\":[103,108]},{\"text\":\"TechNews\",\"indices\":[109,118]},{\"text\":\"Google\",\"indices\":[119,126]},{\"text\":\"UnitedKingdom\",\"indices\":[127,141]},{\"text\":\"ChinaTaiwan\",\"indices\":[142,154]},{\"text\":\"Russia\",\"indices\":[155,162]},{\"text\":\"trend\",\"indices\":[163,169]},{\"text\":\"Trending\",\"indices\":[170,179]},{\"text\":\"ASUUstrike\",\"indices\":[180,191]},{\"text\":\"viral\",\"indices\":[192,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aYrFdrVxNO\",\"expanded_url\":\"https:\\/\\/awixy.net\\/single.php?id=377\",\"display_url\":\"awixy.net\\/single.php?id=\\u2026\",\"indices\":[202,225]}],\"media\":[{\"id\":1555682381570383883,\"id_str\":\"1555682381570383883\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"url\":\"https:\\/\\/t.co\\/mHTArfiaQM\",\"display_url\":\"pic.twitter.com\\/mHTArfiaQM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1555682404433543188\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"63\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[48,52]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AJEnglish\",\"name\":\"Al Jazeera English\",\"id\":4970411,\"id_str\":\"4970411\",\"indices\":[0,10]}],\"urls\":[]},\"64\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[216,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555661528287830019,\"id_str\":\"1555661528287830019\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"65\":{\"hashtags\":[{\"text\":\"SpeakerPelosi\",\"indices\":[20,34]},{\"text\":\"Taiwan\",\"indices\":[48,55]},{\"text\":\"Democrats\",\"indices\":[236,246]},{\"text\":\"China\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FoxNews\",\"name\":\"Fox News\",\"id\":1367531,\"id_str\":\"1367531\",\"indices\":[0,8]}],\"urls\":[]},\"66\":{\"hashtags\":[{\"text\":\"Kuda\",\"indices\":[59,64]},{\"text\":\"Ashawo\",\"indices\":[65,72]},{\"text\":\"trenches\",\"indices\":[73,82]},{\"text\":\"BadDecisions\",\"indices\":[83,96]},{\"text\":\"TheSandman\",\"indices\":[97,108]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[109,129]},{\"text\":\"binance\",\"indices\":[130,138]},{\"text\":\"wrestling\",\"indices\":[139,149]},{\"text\":\"FOREVER1\",\"indices\":[150,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"67\":{\"hashtags\":[{\"text\":\"KenyaDecides2022\",\"indices\":[65,82]},{\"text\":\"\\u30dd\\u30b1\\u30e2\\u30f3\",\"indices\":[83,88]},{\"text\":\"LALISA\",\"indices\":[89,96]},{\"text\":\"FOREVER1_OUTNOW\",\"indices\":[97,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"BadDecisions\",\"indices\":[121,134]},{\"text\":\"TheSandman\",\"indices\":[135,146]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[147,167]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[168,188]},{\"text\":\"binance\",\"indices\":[189,197]},{\"text\":\"FOREVER1\",\"indices\":[198,207]},{\"text\":\"WeLoveYouBamBam\",\"indices\":[208,224]},{\"text\":\"BajrangPunia\",\"indices\":[225,238]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"morrishills_\",\"name\":\"Morris Hills\",\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"indices\":[18,31]},{\"screen_name\":\"kiaramoontv\",\"name\":\"Kiara Moon - 345k\",\"id\":700591332285263872,\"id_str\":\"700591332285263872\",\"indices\":[32,44]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[45,52]},{\"screen_name\":\"iamcardib\",\"name\":\"Cardi B\",\"id\":866953267,\"id_str\":\"866953267\",\"indices\":[53,63]}],\"urls\":[],\"media\":[{\"id\":1555645859471171584,\"id_str\":\"1555645859471171584\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"url\":\"https:\\/\\/t.co\\/G0zzCuKFup\",\"display_url\":\"pic.twitter.com\\/G0zzCuKFup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645910100631559\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"68\":{\"hashtags\":[{\"text\":\"MarvinInu\",\"indices\":[0,10]},{\"text\":\"1000x\",\"indices\":[143,149]},{\"text\":\"BNB\",\"indices\":[192,196]},{\"text\":\"BSC\",\"indices\":[198,202]},{\"text\":\"ETH\",\"indices\":[215,219]},{\"text\":\"BTC\",\"indices\":[220,224]},{\"text\":\"WeLoveYouBamBam\",\"indices\":[225,241]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[242,262]},{\"text\":\"BajrangPunia\",\"indices\":[263,276]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[75,82]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[203,214]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CrEIDE4VLU\",\"expanded_url\":\"http:\\/\\/Marvininueth.com\",\"display_url\":\"Marvininueth.com\",\"indices\":[168,191]}],\"media\":[{\"id\":1555645871194357764,\"id_str\":\"1555645871194357764\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"url\":\"https:\\/\\/t.co\\/RPgFeJQ0op\",\"display_url\":\"pic.twitter.com\\/RPgFeJQ0op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1555645888277762050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":641,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":581,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":641,\"resize\":\"fit\"}}}]},\"69\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[21,34]},{\"text\":\"TheSandman\",\"indices\":[35,46]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[47,67]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[68,88]},{\"text\":\"binance\",\"indices\":[89,97]},{\"text\":\"FOREVER1\",\"indices\":[98,107]},{\"text\":\"KenyaDecides2022\",\"indices\":[108,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555645149941825537,\"id_str\":\"1555645149941825537\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"url\":\"https:\\/\\/t.co\\/Cp9nEotCf4\",\"display_url\":\"pic.twitter.com\\/Cp9nEotCf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645152223543297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":561,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":594,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":594,\"resize\":\"fit\"}}}]},\"70\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[39,47]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[48,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"knust\",\"indices\":[83,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555644855719714824,\"id_str\":\"1555644855719714824\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ3WYAgldVy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ3WYAgldVy.jpg\",\"url\":\"https:\\/\\/t.co\\/HSqyDHXoAt\",\"display_url\":\"pic.twitter.com\\/HSqyDHXoAt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfyaSeedorfina\\/status\\/1555644880520708097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"71\":{\"hashtags\":[{\"text\":\"designer\",\"indices\":[130,139]},{\"text\":\"uiuxdesign\",\"indices\":[140,151]},{\"text\":\"DigitalMarketing\",\"indices\":[152,169]},{\"text\":\"SEO\",\"indices\":[170,174]},{\"text\":\"BBNaijaS7\",\"indices\":[175,185]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[186,206]},{\"text\":\"binance\",\"indices\":[207,215]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"figma\",\"name\":\"Figma\",\"id\":3181020308,\"id_str\":\"3181020308\",\"indices\":[81,87]}],\"urls\":[],\"media\":[{\"id\":1555644418329305088,\"id_str\":\"1555644418329305088\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"url\":\"https:\\/\\/t.co\\/bu6Z3O81kg\",\"display_url\":\"pic.twitter.com\\/bu6Z3O81kg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555644670729920514\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"72\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[75,88]},{\"text\":\"TheSandman\",\"indices\":[89,100]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[101,121]},{\"text\":\"binance\",\"indices\":[122,130]},{\"text\":\"FOREVER1\",\"indices\":[131,140]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[141,161]},{\"text\":\"wrestling\",\"indices\":[167,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"73\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[249,269]},{\"text\":\"Children\",\"indices\":[270,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGOELITESTAR\",\"name\":\"Elite Star Foundation\",\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"indices\":[209,222]}],\"urls\":[],\"media\":[{\"id\":1555642257319018499,\"id_str\":\"1555642257319018499\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"url\":\"https:\\/\\/t.co\\/541B1PcgCb\",\"display_url\":\"pic.twitter.com\\/541B1PcgCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NGOELITESTAR\\/status\\/1555642259760205824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":985,\"h\":830,\"resize\":\"fit\"},\"medium\":{\"w\":985,\"h\":830,\"resize\":\"fit\"}}}]},\"74\":{\"hashtags\":[{\"text\":\"Snickers\",\"indices\":[14,23]},{\"text\":\"China\",\"indices\":[58,64]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"BadDecisions\",\"indices\":[102,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555642069292838912,\"id_str\":\"1555642069292838912\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"url\":\"https:\\/\\/t.co\\/WAEr6vJVGb\",\"display_url\":\"pic.twitter.com\\/WAEr6vJVGb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555642082022522881\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"}}}]},\"75\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[113,119]},{\"text\":\"OOMQUOTES\",\"indices\":[172,182]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oEx6eiMows\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oguntokunmichea\\/status\\/1549074567817297920\",\"display_url\":\"twitter.com\\/Oguntokunmiche\\u2026\",\"indices\":[183,206]}]},\"76\":{\"hashtags\":[{\"text\":\"saynotopests\",\"indices\":[113,126]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[127,142]},{\"text\":\"PeterObi4President2023\",\"indices\":[143,166]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"pestcontrol\",\"indices\":[177,189]},{\"text\":\"BBNajiaS7\",\"indices\":[191,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555631270008426496,\"id_str\":\"1555631270008426496\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"url\":\"https:\\/\\/t.co\\/dPuTvMfq4q\",\"display_url\":\"pic.twitter.com\\/dPuTvMfq4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/terminatorsng\\/status\\/1555631282817798144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"77\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[166,175]},{\"text\":\"lagosstate\",\"indices\":[176,187]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[189,207]},{\"text\":\"BBNajiaS7\",\"indices\":[208,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555603828757725185,\"id_str\":\"1555603828757725185\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"url\":\"https:\\/\\/t.co\\/C2TDgF7Nrg\",\"display_url\":\"pic.twitter.com\\/C2TDgF7Nrg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555604087411974144\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"78\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[127,141]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LFgTD6WFrg\",\"expanded_url\":\"https:\\/\\/www.theguardian.com\\/world\\/2022\\/aug\\/05\\/china-halts-us-cooperation-nancy-pelosi-taiwan\",\"display_url\":\"theguardian.com\\/world\\/2022\\/aug\\u2026\",\"indices\":[257,280]}]},\"79\":{\"hashtags\":[{\"text\":\"Python\",\"indices\":[40,47]},{\"text\":\"BigData\",\"indices\":[48,56]},{\"text\":\"Analytics\",\"indices\":[57,67]},{\"text\":\"AI\",\"indices\":[68,71]},{\"text\":\"DataScience\",\"indices\":[72,84]},{\"text\":\"IoT\",\"indices\":[85,89]},{\"text\":\"Azure\",\"indices\":[90,96]},{\"text\":\"RStats\",\"indices\":[97,104]},{\"text\":\"DotNet\",\"indices\":[105,112]},{\"text\":\"C\",\"indices\":[113,115]},{\"text\":\"CPP\",\"indices\":[116,120]},{\"text\":\"Java\",\"indices\":[121,126]},{\"text\":\"CSharp\",\"indices\":[127,134]},{\"text\":\"Flutter\",\"indices\":[135,143]},{\"text\":\"SQL\",\"indices\":[144,148]},{\"text\":\"PHP\",\"indices\":[149,153]},{\"text\":\"BBNaijaS7\",\"indices\":[154,164]},{\"text\":\"JavaScript\",\"indices\":[165,176]},{\"text\":\"ReactJS\",\"indices\":[177,185]},{\"text\":\"Pelosi\",\"indices\":[186,193]},{\"text\":\"MachineLearning\",\"indices\":[194,210]},{\"text\":\"Serverless\",\"indices\":[211,222]},{\"text\":\"DataScientist\",\"indices\":[223,237]},{\"text\":\"Linux\",\"indices\":[238,244]},{\"text\":\"Programming\",\"indices\":[245,257]},{\"text\":\"Coding\",\"indices\":[258,265]},{\"text\":\"100DaysofCode\",\"indices\":[266,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555599301182734336,\"id_str\":\"1555599301182734336\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"url\":\"https:\\/\\/t.co\\/PTk5Jmo7kY\",\"display_url\":\"pic.twitter.com\\/PTk5Jmo7kY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555599475577704449\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"80\":{\"hashtags\":[{\"text\":\"Python\",\"indices\":[46,53]},{\"text\":\"BigData\",\"indices\":[54,62]},{\"text\":\"Analytics\",\"indices\":[63,73]},{\"text\":\"AI\",\"indices\":[74,77]},{\"text\":\"DataScience\",\"indices\":[78,90]},{\"text\":\"IoT\",\"indices\":[91,95]},{\"text\":\"Azure\",\"indices\":[96,102]},{\"text\":\"RStats\",\"indices\":[103,110]},{\"text\":\"DotNet\",\"indices\":[111,118]},{\"text\":\"C\",\"indices\":[119,121]},{\"text\":\"CPP\",\"indices\":[122,126]},{\"text\":\"Java\",\"indices\":[127,132]},{\"text\":\"CSharp\",\"indices\":[133,140]},{\"text\":\"Flutter\",\"indices\":[141,149]},{\"text\":\"SQL\",\"indices\":[150,154]},{\"text\":\"PHP\",\"indices\":[155,159]},{\"text\":\"BBNaijaS7\",\"indices\":[160,170]},{\"text\":\"JavaScript\",\"indices\":[171,182]},{\"text\":\"ReactJS\",\"indices\":[183,191]},{\"text\":\"MachineLearning\",\"indices\":[192,208]},{\"text\":\"Serverless\",\"indices\":[209,220]},{\"text\":\"DataScientist\",\"indices\":[221,235]},{\"text\":\"Linux\",\"indices\":[236,242]},{\"text\":\"pelosi\",\"indices\":[243,250]},{\"text\":\"game\",\"indices\":[251,256]},{\"text\":\"Coding\",\"indices\":[257,264]},{\"text\":\"100DaysofCode\",\"indices\":[265,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555598991483699200,\"id_str\":\"1555598991483699200\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"url\":\"https:\\/\\/t.co\\/6PzTwoecxo\",\"display_url\":\"pic.twitter.com\\/6PzTwoecxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555598994277023744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"81\":{\"hashtags\":[{\"text\":\"SpeakerPelosi\",\"indices\":[21,35]},{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"Democrats\",\"indices\":[102,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"guardian\",\"name\":\"The Guardian\",\"id\":87818409,\"id_str\":\"87818409\",\"indices\":[0,9]}],\"urls\":[]},\"82\":{\"hashtags\":[{\"text\":\"lagosstate\",\"indices\":[30,41]},{\"text\":\"BBNajiaS7\",\"indices\":[42,52]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[53,71]},{\"text\":\"Lexus\",\"indices\":[72,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555584673354584066,\"id_str\":\"1555584673354584066\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"url\":\"https:\\/\\/t.co\\/ohdatFGn7a\",\"display_url\":\"pic.twitter.com\\/ohdatFGn7a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555584754224873472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"83\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"NancyPelosi\",\"indices\":[6,18]},{\"text\":\"Taiwan\",\"indices\":[19,26]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/K5tn3bZYek\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SW6rjz\",\"display_url\":\"dlvr.it\\/SW6rjz\",\"indices\":[94,117]}]},\"84\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[193,211]},{\"text\":\"\\uc18c\\ub140\\uc2dc\\ub300\",\"indices\":[212,217]},{\"text\":\"\\u8a2d\\u55b6\\u5b8c\\u4e86\",\"indices\":[218,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IIHcFl9pHm\",\"expanded_url\":\"http:\\/\\/www.internationalmun.org\",\"display_url\":\"internationalmun.org\",\"indices\":[12,35]}],\"media\":[{\"id\":1555578774695067649,\"id_str\":\"1555578774695067649\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"url\":\"https:\\/\\/t.co\\/49jpK5z2UX\",\"display_url\":\"pic.twitter.com\\/49jpK5z2UX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoyOlukorede\\/status\\/1555581535969050624\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"85\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[222,240]},{\"text\":\"binance\",\"indices\":[241,249]},{\"text\":\"ChelseaFC\",\"indices\":[250,260]},{\"text\":\"cryptocurrencies\",\"indices\":[261,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555580717027016706,\"id_str\":\"1555580717027016706\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"url\":\"https:\\/\\/t.co\\/Okuj69KLRS\",\"display_url\":\"pic.twitter.com\\/Okuj69KLRS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555580719384215552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"86\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[263,283]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"87\":{\"hashtags\":[{\"text\":\"davido\",\"indices\":[202,209]},{\"text\":\"Pelosi\",\"indices\":[210,217]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[218,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cWiARiZKhE\",\"expanded_url\":\"https:\\/\\/zeep.ly\\/Y5pgb\",\"display_url\":\"zeep.ly\\/Y5pgb\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/LrtIRHqFxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\",\"display_url\":\"twitter.com\\/Borrego_Energy\\u2026\",\"indices\":[244,267]}],\"media\":[{\"id\":1555568379901235201,\"id_str\":\"1555568379901235201\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"url\":\"https:\\/\\/t.co\\/ehsicFJyep\",\"display_url\":\"pic.twitter.com\\/ehsicFJyep\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555568544460439552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"88\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[0,20]},{\"text\":\"BBNaija\",\"indices\":[42,50]},{\"text\":\"Ashawo\",\"indices\":[51,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555567677896364032,\"id_str\":\"1555567677896364032\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"url\":\"https:\\/\\/t.co\\/2TBY9tpG5s\",\"display_url\":\"pic.twitter.com\\/2TBY9tpG5s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stingray1o1\\/status\\/1555567685156708352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":424,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"}}}]},\"89\":{\"hashtags\":[{\"text\":\"Davido\",\"indices\":[202,209]},{\"text\":\"Pelosi\",\"indices\":[210,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SjJ0J1Jrfr\",\"expanded_url\":\"https:\\/\\/zeep.ly\\/Y5pgb\",\"display_url\":\"zeep.ly\\/Y5pgb\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/LrtIRHqFxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\",\"display_url\":\"twitter.com\\/Borrego_Energy\\u2026\",\"indices\":[220,243]}],\"media\":[{\"id\":1555566226809753600,\"id_str\":\"1555566226809753600\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"url\":\"https:\\/\\/t.co\\/ODS0jH3UZK\",\"display_url\":\"pic.twitter.com\\/ODS0jH3UZK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555566301048889348\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"90\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[36,49]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[50,70]},{\"text\":\"ChelseaFC\",\"indices\":[71,81]},{\"text\":\"BibleSumett\",\"indices\":[82,94]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[95,113]},{\"text\":\"Chinese\",\"indices\":[114,122]},{\"text\":\"PeterObi4President2023\",\"indices\":[123,146]},{\"text\":\"Obidiots\",\"indices\":[147,156]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[157,174]},{\"text\":\"OBIDIENTS\",\"indices\":[175,185]},{\"text\":\"obikin\",\"indices\":[186,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/89wMCfK63b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\",\"display_url\":\"twitter.com\\/Nkemchor_\\/stat\\u2026\",\"indices\":[194,217]}]},\"91\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[126,130]},{\"text\":\"China\",\"indices\":[180,186]},{\"text\":\"Taiwan\",\"indices\":[187,194]},{\"text\":\"Pelosi\",\"indices\":[195,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555556322917363712,\"id_str\":\"1555556322917363712\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"url\":\"https:\\/\\/t.co\\/t3aiIMBGzU\",\"display_url\":\"pic.twitter.com\\/t3aiIMBGzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555556372212695040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"92\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"goal\",\"name\":\"GOAL\",\"id\":26809005,\"id_str\":\"26809005\",\"indices\":[0,5]}],\"urls\":[],\"media\":[{\"id\":1555549455436374016,\"id_str\":\"1555549455436374016\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZr_PHWYAAYrY6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZr_PHWYAAYrY6.jpg\",\"url\":\"https:\\/\\/t.co\\/iOLLErI3Zk\",\"display_url\":\"pic.twitter.com\\/iOLLErI3Zk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/2jtFoster\\/status\\/1555549458250743809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"}}}]},\"93\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[80,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"94\":{\"hashtags\":[{\"text\":\"SpeakerPelosi\",\"indices\":[38,52]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"China\",\"indices\":[138,144]},{\"text\":\"USA\",\"indices\":[145,149]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"idreesali114\",\"name\":\"Idrees Ali\",\"id\":268636316,\"id_str\":\"268636316\",\"indices\":[0,13]},{\"screen_name\":\"leeferran\",\"name\":\"Lee Ferran\",\"id\":22151966,\"id_str\":\"22151966\",\"indices\":[14,24]}],\"urls\":[]},\"95\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[89,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[109,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[61,84]}]},\"96\":{\"hashtags\":[{\"text\":\"exoneratepingexpress\",\"indices\":[5,26]},{\"text\":\"fireboydml\",\"indices\":[69,80]},{\"text\":\"Pelosi\",\"indices\":[81,88]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[89,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[41,64]}]},\"97\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[111,122]},{\"text\":\"Pelosi\",\"indices\":[123,130]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[131,156]},{\"text\":\"OBIDIENTS\",\"indices\":[160,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[83,106]}]},\"98\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[104,115]},{\"text\":\"Pelosi\",\"indices\":[116,123]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[124,149]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[76,99]}]},\"99\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[101,112]},{\"text\":\"Pelosi\",\"indices\":[113,120]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[121,146]},{\"text\":\"Ashawo\",\"indices\":[150,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[73,96]}]},\"100\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[95,106]},{\"text\":\"Pelosi\",\"indices\":[107,114]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[115,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[67,90]}]},\"101\":{\"hashtags\":[{\"text\":\"goodmorning\",\"indices\":[88,100]},{\"text\":\"GoodFriday\",\"indices\":[101,112]},{\"text\":\"fridaymorning\",\"indices\":[113,127]},{\"text\":\"AskKTR\",\"indices\":[128,135]},{\"text\":\"TheGreatIndianrun\",\"indices\":[136,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3\",\"indices\":[200,208]},{\"text\":\"M\\u30b9\\u30c6\",\"indices\":[209,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555534023228903425,\"id_str\":\"1555534023228903425\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"url\":\"https:\\/\\/t.co\\/FcFymJMhdH\",\"display_url\":\"pic.twitter.com\\/FcFymJMhdH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534034532540417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}}}]},\"102\":{\"hashtags\":[{\"text\":\"goodmorning\",\"indices\":[88,100]},{\"text\":\"GoodFriday\",\"indices\":[101,112]},{\"text\":\"fridaymorning\",\"indices\":[113,127]},{\"text\":\"AskKTR\",\"indices\":[128,135]},{\"text\":\"TheGreatIndianrun\",\"indices\":[136,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3\",\"indices\":[200,208]},{\"text\":\"M\\u30b9\\u30c6\",\"indices\":[209,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555533804319694848,\"id_str\":\"1555533804319694848\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"url\":\"https:\\/\\/t.co\\/E6XPmZ4pnd\",\"display_url\":\"pic.twitter.com\\/E6XPmZ4pnd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534015318335489\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"103\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[34,54]},{\"text\":\"Obidiots\",\"indices\":[55,64]},{\"text\":\"Mandem\",\"indices\":[130,137]},{\"text\":\"Badness\",\"indices\":[138,146]},{\"text\":\"PoweredByData\",\"indices\":[152,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555533294829281282,\"id_str\":\"1555533294829281282\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"url\":\"https:\\/\\/t.co\\/SNcjXSw4pD\",\"display_url\":\"pic.twitter.com\\/SNcjXSw4pD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FunJumbo\\/status\\/1555533331395186690\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"104\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[22,29]},{\"text\":\"China\",\"indices\":[57,63]},{\"text\":\"Beijing\",\"indices\":[107,115]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[184,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555530474134839296,\"id_str\":\"1555530474134839296\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"url\":\"https:\\/\\/t.co\\/uqc3FNHJL9\",\"display_url\":\"pic.twitter.com\\/uqc3FNHJL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555530540459012096\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":289,\"resize\":\"fit\"}}}]},\"105\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[43,49]},{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[85,103]},{\"text\":\"News\",\"indices\":[104,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555528620726427648,\"id_str\":\"1555528620726427648\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"url\":\"https:\\/\\/t.co\\/ZIj4k14Ftz\",\"display_url\":\"pic.twitter.com\\/ZIj4k14Ftz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555528686379859970\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"106\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"China\",\"indices\":[136,142]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[143,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555527526252183553,\"id_str\":\"1555527526252183553\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"url\":\"https:\\/\\/t.co\\/IIOx4MDAOm\",\"display_url\":\"pic.twitter.com\\/IIOx4MDAOm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555527538163605504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"107\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[216,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"108\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"109\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[257,277]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Evaglobal01\",\"name\":\"Oluwatobiloba Amusan, OLY\",\"id\":4839182503,\"id_str\":\"4839182503\",\"indices\":[56,68]},{\"screen_name\":\"birminghamcg22\",\"name\":\"Birmingham 2022\",\"id\":855750715914031105,\"id_str\":\"855750715914031105\",\"indices\":[167,182]}],\"urls\":[],\"media\":[{\"id\":1555519327293657088,\"id_str\":\"1555519327293657088\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xqw6R7zay\",\"display_url\":\"pic.twitter.com\\/8Xqw6R7zay\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tomidearoso\\/status\\/1555519330288287746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"large\":{\"w\":594,\"h\":396,\"resize\":\"fit\"}}}]},\"110\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[53,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mSmZKXqiuw\",\"expanded_url\":\"https:\\/\\/www.thecable.ng\\/china-imposes-sanctions-on-us-speaker-over-visit-to-taiwan\",\"display_url\":\"thecable.ng\\/china-imposes-\\u2026\",\"indices\":[72,95]}],\"media\":[{\"id\":1555507551046967296,\"id_str\":\"1555507551046967296\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"url\":\"https:\\/\\/t.co\\/k5tjgsoLCv\",\"display_url\":\"pic.twitter.com\\/k5tjgsoLCv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thecableng\\/status\\/1555507581048741889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"medium\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"111\":{\"hashtags\":[{\"text\":\"capitec\",\"indices\":[185,193]},{\"text\":\"Taiwan\",\"indices\":[194,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"112\":{\"hashtags\":[{\"text\":\"damola\",\"indices\":[38,45]},{\"text\":\"Taiwan\",\"indices\":[46,53]},{\"text\":\"Ashawo\",\"indices\":[54,61]},{\"text\":\"Prey\",\"indices\":[62,67]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[68,86]},{\"text\":\"Cucurella\",\"indices\":[87,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9fUMgjIO6g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\",\"display_url\":\"twitter.com\\/The_man_abiola\\u2026\",\"indices\":[98,121]}]},\"113\":{\"hashtags\":[{\"text\":\"olamide\",\"indices\":[13,21]},{\"text\":\"Modella\",\"indices\":[22,30]},{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"ASUU\",\"indices\":[39,44]},{\"text\":\"BBNajiaS7\",\"indices\":[45,55]},{\"text\":\"BBNaijaS7\",\"indices\":[56,66]},{\"text\":\"BBNaija\",\"indices\":[67,75]},{\"text\":\"Diana\",\"indices\":[76,82]},{\"text\":\"ibadan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aM3C65Hhkl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1555484650553892864\",\"display_url\":\"twitter.com\\/uzorvick\\/statu\\u2026\",\"indices\":[91,114]}]},\"114\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"Cryptocurency\",\"indices\":[68,82]},{\"text\":\"binance\",\"indices\":[84,92]},{\"text\":\"capitec\",\"indices\":[94,102]},{\"text\":\"bennyXBTSXSnoopDogg\",\"indices\":[104,124]},{\"text\":\"China\",\"indices\":[126,132]},{\"text\":\"BulletTrainMovie\",\"indices\":[134,151]},{\"text\":\"NFTGiveaway\",\"indices\":[153,165]},{\"text\":\"news\",\"indices\":[167,172]},{\"text\":\"Prey\",\"indices\":[174,179]},{\"text\":\"fwcarmy\",\"indices\":[181,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thuanphat1975\",\"name\":\"FWX\",\"id\":1432308884098596870,\"id_str\":\"1432308884098596870\",\"indices\":[0,14]},{\"screen_name\":\"FWCOMMUNITY_Q2T\",\"name\":\"FWCOMMUNITY Token\",\"id\":1515800749367869447,\"id_str\":\"1515800749367869447\",\"indices\":[15,31]},{\"screen_name\":\"bsc_daily\",\"name\":\"BSCDaily\",\"id\":1358688239037546500,\"id_str\":\"1358688239037546500\",\"indices\":[32,42]}],\"urls\":[]},\"115\":{\"hashtags\":[{\"text\":\"EPL2022\",\"indices\":[175,183]},{\"text\":\"BulletTrainMovie\",\"indices\":[184,201]},{\"text\":\"China\",\"indices\":[202,208]},{\"text\":\"Cryptocurency\",\"indices\":[209,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"ARSCRY\",\"indices\":[258,265]},{\"text\":\"FridayVibe\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Anambra_girl\",\"name\":\"FANTA SIPPER \\ud83c\\udf79\\u26a1\\ufe0f\\ud83d\\udca5\\ud83c\\udf39\\u2728\",\"id\":1179681522,\"id_str\":\"1179681522\",\"indices\":[66,79]},{\"screen_name\":\"Obbyanuju\",\"name\":\"\\u00b0Obianuju\\u00b0\",\"id\":945756555089186816,\"id_str\":\"945756555089186816\",\"indices\":[80,90]},{\"screen_name\":\"EOkala\",\"name\":\"SiRmIxAlOt\\ud83d\\udc41Register2Vote2023\",\"id\":312233975,\"id_str\":\"312233975\",\"indices\":[91,98]},{\"screen_name\":\"oku_yungx\",\"name\":\"Oku\",\"id\":3257654416,\"id_str\":\"3257654416\",\"indices\":[99,109]},{\"screen_name\":\"mr_geff1\",\"name\":\"OWELLE\\ud83e\\udd85\",\"id\":1051440332154515456,\"id_str\":\"1051440332154515456\",\"indices\":[110,119]},{\"screen_name\":\"_debbii3e\",\"name\":\"- F.O\",\"id\":441245607,\"id_str\":\"441245607\",\"indices\":[120,130]},{\"screen_name\":\"ChefPreem\",\"name\":\"Chef Preem \\ud83c\\udf5d\\ud83c\\udf57\\ud83c\\udf56\\ud83c\\udf5b\",\"id\":160913911,\"id_str\":\"160913911\",\"indices\":[131,141]},{\"screen_name\":\"Abiike_Chopstix\",\"name\":\"Chef Abike\",\"id\":997736203423244288,\"id_str\":\"997736203423244288\",\"indices\":[142,158]},{\"screen_name\":\"chisomagbodike\",\"name\":\"chisom\\u2022\",\"id\":1137446704817614851,\"id_str\":\"1137446704817614851\",\"indices\":[159,174]},{\"screen_name\":\"geme_nonyalim\",\"name\":\"Terrible Dancer \\ud83e\\uddda\\u200d\\u2640\\ufe0f\",\"id\":1142137956016304128,\"id_str\":\"1142137956016304128\",\"indices\":[232,246]},{\"screen_name\":\"Wizarab10\",\"name\":\"Sir Dickson\",\"id\":710429203938856960,\"id_str\":\"710429203938856960\",\"indices\":[247,257]}],\"urls\":[],\"media\":[{\"id\":1555484864312393729,\"id_str\":\"1555484864312393729\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"116\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"117\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"BulletTrainMovie\",\"indices\":[37,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"118\":{\"hashtags\":[{\"text\":\"IPOB\",\"indices\":[48,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"iphone14\",\"indices\":[62,71]},{\"text\":\"peterpurrey\",\"indices\":[72,84]},{\"text\":\"ondo\",\"indices\":[85,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555483886708293632,\"id_str\":\"1555483886708293632\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"url\":\"https:\\/\\/t.co\\/6enx4qzLKR\",\"display_url\":\"pic.twitter.com\\/6enx4qzLKR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555484137737306113\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"119\":{\"hashtags\":[{\"text\":\"Attention\",\"indices\":[42,52]},{\"text\":\"Attention\",\"indices\":[80,90]},{\"text\":\"5thAugust6\",\"indices\":[178,189]},{\"text\":\"Taiwan\",\"indices\":[202,209]},{\"text\":\"\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35\",\"indices\":[210,226]},{\"text\":\"YOUNGJAE_SUGAR_FansignInBKK\",\"indices\":[227,255]},{\"text\":\"Prey\",\"indices\":[256,261]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[262,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Swanskid_\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"indices\":[91,101]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kvy8Xksedh\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/attention-single\\/1638016378\",\"display_url\":\"music.apple.com\\/us\\/album\\/atten\\u2026\",\"indices\":[103,126]},{\"url\":\"https:\\/\\/t.co\\/04yQI24Dnf\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/swanskid-1\\/song\\/attention\",\"display_url\":\"audiomack.com\\/swanskid-1\\/son\\u2026\",\"indices\":[128,151]},{\"url\":\"https:\\/\\/t.co\\/aLHIAC5V1d\",\"expanded_url\":\"https:\\/\\/youtu.be\\/BNOg2KKDr8k\",\"display_url\":\"youtu.be\\/BNOg2KKDr8k\",\"indices\":[153,176]}],\"media\":[{\"id\":1555482314829856769,\"id_str\":\"1555482314829856769\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555482314829856769\\/pu\\/img\\/348hTQ5k6L5FY2Pa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555482314829856769\\/pu\\/img\\/348hTQ5k6L5FY2Pa.jpg\",\"url\":\"https:\\/\\/t.co\\/UeoFemMdYJ\",\"display_url\":\"pic.twitter.com\\/UeoFemMdYJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1555482458912595969\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"120\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[41,48]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"121\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[10,16]},{\"text\":\"NancyPelosi\",\"indices\":[58,70]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPJ7C81tQH\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/p\\/Cg3yJqNDSEH\\/?igshid=YTgzYjQ4ZTY=\",\"display_url\":\"instagram.com\\/p\\/Cg3yJqNDSEH\\/\\u2026\",\"indices\":[149,172]}]},\"122\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[92,112]},{\"text\":\"TaiwanStrait\",\"indices\":[113,126]},{\"text\":\"TaiwanChinaCrisis\",\"indices\":[127,145]},{\"text\":\"TaiwanChinaWar\",\"indices\":[146,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/m9JAcVU9w4\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/china-taiwan-tensions-rise-as-china-fires-missiles-into-taiwan-strait-after-pelosis-visit\\/\",\"display_url\":\"iexclusivenews.com.ng\\/china-taiwan-t\\u2026\",\"indices\":[170,193]}]},\"123\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[137,141]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"China\",\"indices\":[205,211]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[212,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555166743181549575,\"id_str\":\"1555166743181549575\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"url\":\"https:\\/\\/t.co\\/0x9UZXqgs4\",\"display_url\":\"pic.twitter.com\\/0x9UZXqgs4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firamnews\\/status\\/1555166784336150528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"source_status_id\":1555166784336150528,\"source_status_id_str\":\"1555166784336150528\",\"source_user_id\":957288307179900930,\"source_user_id_str\":\"957288307179900930\"}]},\"124\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[24,30]},{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555467858410459136,\"id_str\":\"1555467858410459136\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"url\":\"https:\\/\\/t.co\\/SMudtOtjrp\",\"display_url\":\"pic.twitter.com\\/SMudtOtjrp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SaveThePeoplle\\/status\\/1555467862516666371\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"125\":{\"hashtags\":[{\"text\":\"Conzummate\",\"indices\":[222,233]},{\"text\":\"marketing\",\"indices\":[235,245]},{\"text\":\"Taiwan\",\"indices\":[246,253]},{\"text\":\"Russia\",\"indices\":[254,261]},{\"text\":\"Trump\",\"indices\":[262,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555463480823644162,\"id_str\":\"1555463480823644162\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"url\":\"https:\\/\\/t.co\\/ux84VrdNeJ\",\"display_url\":\"pic.twitter.com\\/ux84VrdNeJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/conzummate\\/status\\/1555464376261672960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"126\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[112,119]},{\"text\":\"NATO\",\"indices\":[142,147]},{\"text\":\"Ukraine\",\"indices\":[209,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USUN\",\"name\":\"U.S. Mission to the UN\",\"id\":249677516,\"id_str\":\"249677516\",\"indices\":[0,5]},{\"screen_name\":\"USAmbUN\",\"name\":\"Ambassador Linda Thomas-Greenfield\",\"id\":1354525155238801413,\"id_str\":\"1354525155238801413\",\"indices\":[6,14]},{\"screen_name\":\"biannagolodryga\",\"name\":\"Bianna Golodryga\",\"id\":14135350,\"id_str\":\"14135350\",\"indices\":[15,31]},{\"screen_name\":\"AmanpourCoPBS\",\"name\":\"Amanpour and Company\",\"id\":1022853254273818625,\"id_str\":\"1022853254273818625\",\"indices\":[32,46]}],\"urls\":[]},\"127\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[78,85]},{\"text\":\"bbnajia\",\"indices\":[86,94]},{\"text\":\"BBNaijaS7\",\"indices\":[95,105]},{\"text\":\"Obidatti023\",\"indices\":[158,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555452005220597760,\"id_str\":\"1555452005220597760\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"url\":\"https:\\/\\/t.co\\/ZLI73IE4TU\",\"display_url\":\"pic.twitter.com\\/ZLI73IE4TU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/safareerealty\\/status\\/1555453386195177473\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}}}]},\"128\":{\"hashtags\":[{\"text\":\"GospelEmpireGh\",\"indices\":[151,166]},{\"text\":\"StrictlyGospel\",\"indices\":[167,182]},{\"text\":\"capitec\",\"indices\":[183,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[200,220]},{\"text\":\"AONArsenal\",\"indices\":[221,232]},{\"text\":\"ZamaZamas\",\"indices\":[233,243]},{\"text\":\"Explosion\",\"indices\":[244,254]},{\"text\":\"LISA\",\"indices\":[255,260]},{\"text\":\"Ask\\u0130cin\",\"indices\":[261,269]},{\"text\":\"China\",\"indices\":[270,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[67,82]}],\"urls\":[],\"media\":[{\"id\":1555451079692877826,\"id_str\":\"1555451079692877826\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555451079692877826\\/pu\\/img\\/kXnkafIWeQUIBKBO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555451079692877826\\/pu\\/img\\/kXnkafIWeQUIBKBO.jpg\",\"url\":\"https:\\/\\/t.co\\/cavrx7ZAgt\",\"display_url\":\"pic.twitter.com\\/cavrx7ZAgt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1555451251588059136\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"129\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"BBNaijaS7\",\"indices\":[170,180]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[181,201]},{\"text\":\"BulletTrainMovie\",\"indices\":[202,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qzcuSQPSrV\",\"expanded_url\":\"https:\\/\\/deel.grsm.io\\/d5hufq262eo1\",\"display_url\":\"deel.grsm.io\\/d5hufq262eo1\",\"indices\":[220,243]}]},\"130\":{\"hashtags\":[{\"text\":\"PiNetwork\",\"indices\":[94,104]},{\"text\":\"StopSellingPi\",\"indices\":[198,212]},{\"text\":\"PiConsensus\",\"indices\":[213,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Blacckk_j\",\"name\":\"Osidele 'Demilade\",\"id\":1338036291875856385,\"id_str\":\"1338036291875856385\",\"indices\":[0,10]}],\"urls\":[]},\"131\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"bbnajia\",\"indices\":[193,201]},{\"text\":\"BBNaijaS7\",\"indices\":[202,212]},{\"text\":\"Obidatti023\",\"indices\":[265,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555439841231478787,\"id_str\":\"1555439841231478787\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"url\":\"https:\\/\\/t.co\\/MaKgKNoo2B\",\"display_url\":\"pic.twitter.com\\/MaKgKNoo2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1555440103807504385\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"132\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[110,117]},{\"text\":\"bbnajia\",\"indices\":[118,126]},{\"text\":\"BBNaijaS7\",\"indices\":[127,137]},{\"text\":\"Obidatti023\",\"indices\":[190,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555432425475432449,\"id_str\":\"1555432425475432449\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"url\":\"https:\\/\\/t.co\\/MBGIPebu1u\",\"display_url\":\"pic.twitter.com\\/MBGIPebu1u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/muyiwaowen\\/status\\/1555432430298882049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"133\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"DLconversations\",\"indices\":[116,132]},{\"text\":\"GlobalCrusadewithKumuyi\",\"indices\":[134,158]},{\"text\":\"ImpactAcademywithKumuyi\",\"indices\":[160,184]},{\"text\":\"dlcfhq\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"GCK\",\"indices\":[203,207]},{\"text\":\"PastorKumuyiSaid\",\"indices\":[208,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555430868143034368,\"id_str\":\"1555430868143034368\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"url\":\"https:\\/\\/t.co\\/7aelyfUXh4\",\"display_url\":\"pic.twitter.com\\/7aelyfUXh4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SUPalivezobo\\/status\\/1555430906868994051\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"134\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"ElonMusk\",\"indices\":[255,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"135\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[219,226]},{\"text\":\"bbnajia\",\"indices\":[227,235]},{\"text\":\"BBNaijaS7\",\"indices\":[236,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555429781474254848,\"id_str\":\"1555429781474254848\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"url\":\"https:\\/\\/t.co\\/aEzpnS8MzB\",\"display_url\":\"pic.twitter.com\\/aEzpnS8MzB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phone_Stores\\/status\\/1555429855797428224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"136\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[32,49]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[50,70]},{\"text\":\"bennyXBTSXSnoopDogg\",\"indices\":[71,91]},{\"text\":\"capitec\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"BattleForNo10\",\"indices\":[109,123]},{\"text\":\"\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50\",\"indices\":[124,136]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[137,149]},{\"text\":\"ZamaZamas\",\"indices\":[150,160]},{\"text\":\"AONArsenal\",\"indices\":[161,172]},{\"text\":\"China\",\"indices\":[173,179]},{\"text\":\"Ask\\u0130cin\",\"indices\":[180,188]},{\"text\":\"Explosion\",\"indices\":[189,199]},{\"text\":\"LISA\",\"indices\":[200,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555428357860458499,\"id_str\":\"1555428357860458499\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"url\":\"https:\\/\\/t.co\\/daV6xVvXdF\",\"display_url\":\"pic.twitter.com\\/daV6xVvXdF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555428458246848513\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"137\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"IPPIS\",\"indices\":[36,42]},{\"text\":\"PiConsensus\",\"indices\":[43,55]},{\"text\":\"iphone14\",\"indices\":[56,65]},{\"text\":\"BBNaija\",\"indices\":[66,74]},{\"text\":\"Arewatwitter\",\"indices\":[75,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555427167911256067,\"id_str\":\"1555427167911256067\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"url\":\"https:\\/\\/t.co\\/YAElbkZ8X3\",\"display_url\":\"pic.twitter.com\\/YAElbkZ8X3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555427170872352768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":554,\"resize\":\"fit\"}}}]},\"138\":{\"hashtags\":[{\"text\":\"OBIDIENT\",\"indices\":[17,26]},{\"text\":\"davidhundeyin\",\"indices\":[39,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Sabinus\",\"indices\":[62,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gBR7IocNaC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\",\"display_url\":\"twitter.com\\/maryam_shehu_\\/\\u2026\",\"indices\":[71,94]}]},\"139\":{\"hashtags\":[{\"text\":\"IPPIS\",\"indices\":[41,47]},{\"text\":\"PiConsensus\",\"indices\":[48,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"iphone14\",\"indices\":[69,78]},{\"text\":\"BBNaija\",\"indices\":[79,87]},{\"text\":\"BadDecisions\",\"indices\":[88,101]},{\"text\":\"cryptocurrency\",\"indices\":[102,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555423884165382144,\"id_str\":\"1555423884165382144\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":960,\"resize\":\"fit\"}}}]},\"140\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[138,155]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[156,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Ask\\u0130cin\",\"indices\":[185,193]},{\"text\":\"AONArsenal\",\"indices\":[194,205]},{\"text\":\"China\",\"indices\":[206,212]},{\"text\":\"BadDecisions\",\"indices\":[213,226]},{\"text\":\"\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35\",\"indices\":[227,243]},{\"text\":\"\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50\",\"indices\":[244,256]},{\"text\":\"BattleForNo10\",\"indices\":[257,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555420334974697472,\"id_str\":\"1555420334974697472\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"url\":\"https:\\/\\/t.co\\/0AcEwTwWsz\",\"display_url\":\"pic.twitter.com\\/0AcEwTwWsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555423133896695808\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"141\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[217,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555420509881487360,\"id_str\":\"1555420509881487360\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"url\":\"https:\\/\\/t.co\\/rpnWM9UjaN\",\"display_url\":\"pic.twitter.com\\/rpnWM9UjaN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ffcproperties\\/status\\/1555420559139393537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"142\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[13,30]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[31,43]},{\"text\":\"\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059\",\"indices\":[44,60]},{\"text\":\"brunardo\",\"indices\":[61,70]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[71,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"capitec\",\"indices\":[100,108]},{\"text\":\"TheGrandFallout\",\"indices\":[109,125]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[126,146]},{\"text\":\"BBNajia\",\"indices\":[147,155]},{\"text\":\"BBNaijaS7\",\"indices\":[156,166]},{\"text\":\"fireboydml\",\"indices\":[167,178]},{\"text\":\"boiflex\",\"indices\":[179,187]},{\"text\":\"BulletTrainMovie\",\"indices\":[188,205]},{\"text\":\"VMAs\",\"indices\":[206,211]},{\"text\":\"Ask\\u0130cin\",\"indices\":[212,220]},{\"text\":\"ASUUstrike\",\"indices\":[221,232]},{\"text\":\"AEWDynamite\",\"indices\":[233,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555414162645422080,\"id_str\":\"1555414162645422080\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"url\":\"https:\\/\\/t.co\\/gp0PMGENjL\",\"display_url\":\"pic.twitter.com\\/gp0PMGENjL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BoiFlex_\\/status\\/1555414450961879040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"143\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[204,212]},{\"text\":\"Online\",\"indices\":[213,220]},{\"text\":\"Vocalcarecoach\",\"indices\":[221,236]},{\"text\":\"ChoirCapacityCoach\",\"indices\":[237,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"China\",\"indices\":[265,271]},{\"text\":\"Birmingham2022\",\"indices\":[272,287]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555414321768943618,\"id_str\":\"1555414321768943618\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"url\":\"https:\\/\\/t.co\\/8APk6oYuGN\",\"display_url\":\"pic.twitter.com\\/8APk6oYuGN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555414324369391616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"}}}]},\"144\":{\"hashtags\":[{\"text\":\"Asuu\",\"indices\":[107,112]},{\"text\":\"BulletTrainMovie\",\"indices\":[113,130]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"145\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[56,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"HBOMax\",\"indices\":[74,81]},{\"text\":\"capitec\",\"indices\":[82,90]},{\"text\":\"nig\",\"indices\":[91,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555407802868310016,\"id_str\":\"1555407802868310016\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"url\":\"https:\\/\\/t.co\\/kdtxBAi7ug\",\"display_url\":\"pic.twitter.com\\/kdtxBAi7ug\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opiyansky\\/status\\/1555407811441467393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":824,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":824,\"resize\":\"fit\"}}}]},\"146\":{\"hashtags\":[{\"text\":\"CourierHub\",\"indices\":[45,56]},{\"text\":\"poweredbydata\",\"indices\":[84,98]},{\"text\":\"Fireboy\",\"indices\":[99,107]},{\"text\":\"BBNaijaS7\",\"indices\":[108,118]},{\"text\":\"JapaToPrimeVideo\",\"indices\":[119,136]},{\"text\":\"BulletTrainMovie\",\"indices\":[137,154]},{\"text\":\"BadDecisions\",\"indices\":[156,169]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[171,191]},{\"text\":\"BattleForNo10\",\"indices\":[192,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"BattleForNo10\",\"indices\":[215,229]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[230,250]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[251,271]},{\"text\":\"HBOMax\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CourierHub_\",\"name\":\"CourierHub NG\",\"id\":1385688062492086275,\"id_str\":\"1385688062492086275\",\"indices\":[70,82]}],\"urls\":[],\"media\":[{\"id\":1555407269889822720,\"id_str\":\"1555407269889822720\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"url\":\"https:\\/\\/t.co\\/hDA6NESMyP\",\"display_url\":\"pic.twitter.com\\/hDA6NESMyP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MasterMinderz\\/status\\/1555407272267976704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"small\":{\"w\":581,\"h\":680,\"resize\":\"fit\"}}}]},\"147\":{\"hashtags\":[{\"text\":\"trenches\",\"indices\":[81,90]},{\"text\":\"EFCC\",\"indices\":[91,96]},{\"text\":\"Rema\",\"indices\":[97,102]},{\"text\":\"Taiwan\",\"indices\":[103,110]},{\"text\":\"Fireboy\",\"indices\":[111,119]},{\"text\":\"olamide\",\"indices\":[120,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"148\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555403686330994690,\"id_str\":\"1555403686330994690\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"url\":\"https:\\/\\/t.co\\/zltNrcYkjY\",\"display_url\":\"pic.twitter.com\\/zltNrcYkjY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yaaseir\\/status\\/1555403943349714944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"149\":{\"hashtags\":[{\"text\":\"jobsearch\",\"indices\":[118,128]},{\"text\":\"JobVacancy\",\"indices\":[129,140]},{\"text\":\"jobvacancy_alert\",\"indices\":[141,158]},{\"text\":\"jobvacancies\",\"indices\":[159,172]},{\"text\":\"BulletTrainMovie\",\"indices\":[173,190]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[191,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"BadDecisions\",\"indices\":[220,233]},{\"text\":\"capitec\",\"indices\":[234,242]},{\"text\":\"BattleForNo10\",\"indices\":[243,257]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[258,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cJg7uISFsd\",\"expanded_url\":\"https:\\/\\/youtu.be\\/OTTVd2Fu9_k\",\"display_url\":\"youtu.be\\/OTTVd2Fu9_k\",\"indices\":[94,117]}]},\"150\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[88,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"capitec\",\"indices\":[114,122]},{\"text\":\"BadDecisions\",\"indices\":[123,136]},{\"text\":\"BattleForNo10\",\"indices\":[137,151]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[152,172]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[173,193]},{\"text\":\"ZamaZamas\",\"indices\":[194,204]},{\"text\":\"FireBoy\",\"indices\":[205,213]},{\"text\":\"Niger\",\"indices\":[214,220]},{\"text\":\"BBNajiaS7\",\"indices\":[221,231]},{\"text\":\"BBNaijaS7\",\"indices\":[232,242]},{\"text\":\"ChrisBrown\",\"indices\":[243,254]},{\"text\":\"Afrobeats\",\"indices\":[255,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kW36xQFx0g\",\"expanded_url\":\"https:\\/\\/fb.watch\\/eIjhp2PkBf\\/?mibextid=7htlnv\",\"display_url\":\"fb.watch\\/eIjhp2PkBf\\/?mi\\u2026\",\"indices\":[0,23]}]},\"151\":{\"hashtags\":[{\"text\":\"Xi\",\"indices\":[118,121]},{\"text\":\"World\",\"indices\":[130,136]},{\"text\":\"WWIII\",\"indices\":[145,151]},{\"text\":\"UkraineWar\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555400976043220992,\"id_str\":\"1555400976043220992\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"url\":\"https:\\/\\/t.co\\/enFmEAy2gz\",\"display_url\":\"pic.twitter.com\\/enFmEAy2gz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Darling41595671\\/status\\/1555400982259179520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"152\":{\"hashtags\":[{\"text\":\"Chelsea\",\"indices\":[238,246]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"Taiwan\",\"indices\":[254,261]},{\"text\":\"BattleForNo10\",\"indices\":[262,276]},{\"text\":\"Amnesty\",\"indices\":[277,285]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"estressecurado\",\"name\":\"esse perfil \\u00e9 a cura do estresse\",\"id\":1388960611997032462,\"id_str\":\"1388960611997032462\",\"indices\":[0,15]}],\"urls\":[]},\"153\":{\"hashtags\":[{\"text\":\"unboundfinance\",\"indices\":[68,83]},{\"text\":\"UNB\",\"indices\":[84,88]},{\"text\":\"DeFi\",\"indices\":[89,94]},{\"text\":\"crypto\",\"indices\":[95,102]},{\"text\":\"machala\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"Web3\",\"indices\":[120,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"unboundfinance\",\"name\":\"Unbound\",\"id\":1309922296241336320,\"id_str\":\"1309922296241336320\",\"indices\":[50,65]}],\"urls\":[],\"media\":[{\"id\":1555393247870164992,\"id_str\":\"1555393247870164992\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"url\":\"https:\\/\\/t.co\\/IxSU6u1XwJ\",\"display_url\":\"pic.twitter.com\\/IxSU6u1XwJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timora_inyang\\/status\\/1555393250051194880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"large\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"}}}]},\"154\":{\"hashtags\":[{\"text\":\"pitobi\",\"indices\":[119,126]},{\"text\":\"tinubu\",\"indices\":[127,134]},{\"text\":\"BAT2023\",\"indices\":[135,143]},{\"text\":\"reno\",\"indices\":[144,149]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[150,175]},{\"text\":\"bella\",\"indices\":[176,182]},{\"text\":\"arsenal\",\"indices\":[183,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"Fireboy\",\"indices\":[200,208]},{\"text\":\"PremierLeague\",\"indices\":[209,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555391098150948865,\"id_str\":\"1555391098150948865\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"url\":\"https:\\/\\/t.co\\/VQmy6B6d5G\",\"display_url\":\"pic.twitter.com\\/VQmy6B6d5G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lilymatyr\\/status\\/1555391148688084992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":425,\"h\":680,\"resize\":\"fit\"}}}]},\"155\":{\"hashtags\":[{\"text\":\"Crypto\",\"indices\":[21,28]},{\"text\":\"BTC\",\"indices\":[72,76]},{\"text\":\"BBNaijaS7\",\"indices\":[77,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"156\":{\"hashtags\":[{\"text\":\"NigeriaDecides2023\",\"indices\":[47,66]},{\"text\":\"BATSHET2023\",\"indices\":[67,79]},{\"text\":\"PeterObi4President2023\",\"indices\":[80,103]},{\"text\":\"Obidatti2023\",\"indices\":[104,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"China\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TherealUGman\",\"name\":\"UG MAN \\u277c\",\"id\":1391005482396028928,\"id_str\":\"1391005482396028928\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1555375344168869892,\"id_str\":\"1555375344168869892\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"url\":\"https:\\/\\/t.co\\/NwtOsx7Z7p\",\"display_url\":\"pic.twitter.com\\/NwtOsx7Z7p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NFPJNig\\/status\\/1555375695559380994\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"157\":{\"hashtags\":[{\"text\":\"PremierLeague\",\"indices\":[41,55]},{\"text\":\"NaijaBet\",\"indices\":[264,273]},{\"text\":\"Taiwan\",\"indices\":[274,281]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[239,262]}],\"media\":[{\"id\":1555370210193989632,\"id_str\":\"1555370210193989632\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"url\":\"https:\\/\\/t.co\\/SK3JMA9FMG\",\"display_url\":\"pic.twitter.com\\/SK3JMA9FMG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1555370218377166853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"158\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"BBNaijaS7\",\"indices\":[170,180]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[181,201]},{\"text\":\"BulletTrainMovie\",\"indices\":[202,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qzcuSR7tjt\",\"expanded_url\":\"https:\\/\\/deel.grsm.io\\/d5hufq262eo1\",\"display_url\":\"deel.grsm.io\\/d5hufq262eo1\",\"indices\":[220,243]}]},\"159\":{\"hashtags\":[{\"text\":\"brandorx\",\"indices\":[70,79]},{\"text\":\"EverythingBranding\",\"indices\":[80,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"BBNaijaS7\",\"indices\":[116,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555363980968853504,\"id_str\":\"1555363980968853504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"url\":\"https:\\/\\/t.co\\/0NAHWhR8MZ\",\"display_url\":\"pic.twitter.com\\/0NAHWhR8MZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandorxinc\\/status\\/1555363998995988483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"160\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[74,84]},{\"text\":\"capitec\",\"indices\":[127,135]},{\"text\":\"BulletTrainMovie\",\"indices\":[136,153]},{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[162,182]},{\"text\":\"Ask\\u0130cin\",\"indices\":[183,191]},{\"text\":\"BBNaijaS7\",\"indices\":[192,202]},{\"text\":\"thursdayvibes\",\"indices\":[203,217]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[218,234]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[88,100]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[102,125]}]},\"161\":{\"hashtags\":[{\"text\":\"Obalende\",\"indices\":[27,36]},{\"text\":\"BulletTrainMovie\",\"indices\":[39,56]},{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"capitec\",\"indices\":[65,73]},{\"text\":\"TheGrandFallout\",\"indices\":[74,90]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[92,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBk0P7D9BU\",\"expanded_url\":\"https:\\/\\/lnk.to\\/obalende\",\"display_url\":\"lnk.to\\/obalende\",\"indices\":[109,132]}]},\"162\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"BulletTrainMovie\",\"indices\":[32,49]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[50,70]},{\"text\":\"BBNaijaS7\",\"indices\":[71,81]},{\"text\":\"Explosion\",\"indices\":[82,92]},{\"text\":\"PeterObi\",\"indices\":[93,102]},{\"text\":\"kagiso\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555351779956727809,\"id_str\":\"1555351779956727809\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"url\":\"https:\\/\\/t.co\\/j62UIGDzHd\",\"display_url\":\"pic.twitter.com\\/j62UIGDzHd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ochocheijeleche\\/status\\/1555351846230921216\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"163\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[0,10]},{\"text\":\"BulletTrainMovie\",\"indices\":[92,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[118,138]},{\"text\":\"JKLive\",\"indices\":[139,146]},{\"text\":\"PokemonScarletViolet\",\"indices\":[147,168]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[169,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[29,41]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[68,91]}]},\"164\":{\"hashtags\":[{\"text\":\"tgif\",\"indices\":[27,32]},{\"text\":\"BulletTrainMovie\",\"indices\":[33,50]},{\"text\":\"BBNaijaS7\",\"indices\":[51,61]},{\"text\":\"BB24\",\"indices\":[63,68]},{\"text\":\"Explosion\",\"indices\":[69,79]},{\"text\":\"Trending\",\"indices\":[80,89]},{\"text\":\"twitter\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"BadDecisions\",\"indices\":[109,122]},{\"text\":\"AONArsenal\",\"indices\":[124,135]},{\"text\":\"EPL\",\"indices\":[137,141]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[143,168]},{\"text\":\"EPL2022\",\"indices\":[170,178]},{\"text\":\"BeautyTukura\",\"indices\":[180,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555351029113315331,\"id_str\":\"1555351029113315331\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"url\":\"https:\\/\\/t.co\\/R8GzyJsaar\",\"display_url\":\"pic.twitter.com\\/R8GzyJsaar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1555351032011571202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"small\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":424,\"h\":361,\"resize\":\"fit\"}}}]},\"165\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[8,18]},{\"text\":\"BulletTrainMovie\",\"indices\":[44,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[70,90]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[91,103]},{\"text\":\"TheGrandFallout\",\"indices\":[104,120]},{\"text\":\"Ask\\u0130cin\",\"indices\":[121,129]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[131,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[19,42]}]},\"166\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[149,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"skynews\",\"indices\":[177,185]},{\"text\":\"thursdayvibes\",\"indices\":[186,200]},{\"text\":\"BBNaijaS7\",\"indices\":[201,211]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[212,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[102,114]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[116,139]}]},\"167\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[23,33]},{\"text\":\"BulletTrainMovie\",\"indices\":[73,90]},{\"text\":\"capitec\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[108,128]},{\"text\":\"TheGrandFallout\",\"indices\":[129,145]},{\"text\":\"thursdayvibes\",\"indices\":[146,160]},{\"text\":\"BBNaijaS7\",\"indices\":[161,171]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[172,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[59,71]}],\"urls\":[],\"media\":[{\"id\":1555346508429594626,\"id_str\":\"1555346508429594626\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"url\":\"https:\\/\\/t.co\\/Lwq6cEPuqR\",\"display_url\":\"pic.twitter.com\\/Lwq6cEPuqR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1555346514528051200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"168\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[103,125]},{\"text\":\"AbujaFinders\",\"indices\":[126,139]},{\"text\":\"RealEstate\",\"indices\":[140,151]},{\"text\":\"PeterObi\",\"indices\":[152,161]},{\"text\":\"EndSARS\",\"indices\":[162,170]},{\"text\":\"Barcelona\",\"indices\":[171,181]},{\"text\":\"Barca\",\"indices\":[182,188]},{\"text\":\"PeterObi4President2023\",\"indices\":[189,212]},{\"text\":\"BBNaija7\",\"indices\":[213,222]},{\"text\":\"INEC\",\"indices\":[223,228]},{\"text\":\"Arewa4PeterObi\",\"indices\":[229,244]},{\"text\":\"BBNaija\",\"indices\":[245,253]},{\"text\":\"China\",\"indices\":[254,260]},{\"text\":\"Chelsea\",\"indices\":[261,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555341930967572482,\"id_str\":\"1555341930967572482\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"url\":\"https:\\/\\/t.co\\/2ueIR9txeq\",\"display_url\":\"pic.twitter.com\\/2ueIR9txeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555341970872090626\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}}}]},\"169\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555341318657802240,\"id_str\":\"1555341318657802240\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"url\":\"https:\\/\\/t.co\\/iAL0HSO7tQ\",\"display_url\":\"pic.twitter.com\\/iAL0HSO7tQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sobioemma\\/status\\/1555341323653242880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"170\":{\"hashtags\":[{\"text\":\"AllOrNothingArsenal\",\"indices\":[35,55]},{\"text\":\"China\",\"indices\":[56,62]},{\"text\":\"BBNaijaS7\",\"indices\":[63,73]},{\"text\":\"thursdayvibes\",\"indices\":[74,88]},{\"text\":\"thursdayvibes\",\"indices\":[89,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[112,132]},{\"text\":\"skynews\",\"indices\":[133,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555339718589546498,\"id_str\":\"1555339718589546498\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"171\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"China\",\"indices\":[167,173]},{\"text\":\"WorldWarIII\",\"indices\":[174,186]},{\"text\":\"war\",\"indices\":[187,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"172\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[261,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"173\":{\"hashtags\":[{\"text\":\"Apple\",\"indices\":[91,97]},{\"text\":\"Spotify\",\"indices\":[104,112]},{\"text\":\"iphone14\",\"indices\":[113,122]},{\"text\":\"thursdayvibes\",\"indices\":[123,137]},{\"text\":\"China\",\"indices\":[138,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rmRGxznAIg\",\"expanded_url\":\"https:\\/\\/youtu.be\\/QUUde9FircU\",\"display_url\":\"youtu.be\\/QUUde9FircU\",\"indices\":[66,89]}]},\"174\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[73,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[93,113]},{\"text\":\"ASUU\",\"indices\":[114,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GmJsQslGLp\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Q39GYu\",\"display_url\":\"bit.ly\\/3Q39GYu\",\"indices\":[130,153]}]},\"175\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7e9OC26Hdi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SilverSpookGuy\\/status\\/1554185261956730882\",\"display_url\":\"twitter.com\\/SilverSpookGuy\\u2026\",\"indices\":[57,80]}]},\"176\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[224,231]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CatrionaLaing1\",\"name\":\"Catriona Laing\",\"id\":535088290,\"id_str\":\"535088290\",\"indices\":[112,127]}],\"urls\":[],\"media\":[{\"id\":1555330350544461824,\"id_str\":\"1555330350544461824\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"177\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[105,122]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[132,152]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[153,171]},{\"text\":\"BBNaijaS7\",\"indices\":[172,182]},{\"text\":\"ModijiOpensSRH\",\"indices\":[183,198]},{\"text\":\"Machala\",\"indices\":[199,207]},{\"text\":\"newmonth\",\"indices\":[208,217]},{\"text\":\"timesupolivia\",\"indices\":[218,232]},{\"text\":\"capitec\",\"indices\":[233,241]},{\"text\":\"Explosion\",\"indices\":[242,252]},{\"text\":\"UkraineRussiaWar\",\"indices\":[253,270]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[271,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"178\":{\"hashtags\":[{\"text\":\"nosablog\",\"indices\":[111,120]},{\"text\":\"life\",\"indices\":[121,126]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[127,139]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[140,160]},{\"text\":\"OBIDIENTS\",\"indices\":[161,171]},{\"text\":\"bbnaija\",\"indices\":[172,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aFGYYLQf7u\",\"expanded_url\":\"https:\\/\\/www.nosablog.com\\/category\\/NEWS\\/China-allegedly-prepares-to-invade-Taiwan-barely-24-hour-after-America-s-Pelosi-visit?id=62ec4c887128610016666151\",\"display_url\":\"nosablog.com\\/category\\/NEWS\\/\\u2026\",\"indices\":[86,109]}]},\"179\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[44,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"capitec\",\"indices\":[70,78]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[79,99]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[100,112]},{\"text\":\"ExtraordinaryAttorneyWooEp11\",\"indices\":[113,142]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[143,161]},{\"text\":\"BibleSumett\",\"indices\":[162,174]},{\"text\":\"PokemonPresents\",\"indices\":[175,191]},{\"text\":\"PokemonScarletViolet\",\"indices\":[192,213]},{\"text\":\"BBNaijaS7\",\"indices\":[214,224]},{\"text\":\"skynews\",\"indices\":[225,233]},{\"text\":\"Explosion\",\"indices\":[234,244]},{\"text\":\"onstorm\",\"indices\":[245,253]},{\"text\":\"foryou\",\"indices\":[254,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555322810226163713,\"id_str\":\"1555322810226163713\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"url\":\"https:\\/\\/t.co\\/cEGxjhHBpI\",\"display_url\":\"pic.twitter.com\\/cEGxjhHBpI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/exponentnwachae\\/status\\/1555322974445641741\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"180\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[37,54]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"BadDecisions\",\"indices\":[63,76]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"181\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[79,99]},{\"text\":\"capitec\",\"indices\":[100,108]},{\"text\":\"2023Elections\",\"indices\":[110,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"182\":{\"hashtags\":[{\"text\":\"Adekunle\",\"indices\":[0,9]},{\"text\":\"Wizkid\",\"indices\":[10,17]},{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"Whatsapp\",\"indices\":[84,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555318538319060994,\"id_str\":\"1555318538319060994\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"url\":\"https:\\/\\/t.co\\/G9GAtpSjXN\",\"display_url\":\"pic.twitter.com\\/G9GAtpSjXN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555318567473651713\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":352,\"h\":628,\"resize\":\"fit\"}}}]},\"183\":{\"hashtags\":[{\"text\":\"ETH\",\"indices\":[70,74]},{\"text\":\"Ethereum\",\"indices\":[75,84]},{\"text\":\"CryptoNews\",\"indices\":[85,96]},{\"text\":\"DeFi\",\"indices\":[97,102]},{\"text\":\"Metaverse\",\"indices\":[103,113]},{\"text\":\"Poshmark\",\"indices\":[114,123]},{\"text\":\"BBNaija\",\"indices\":[124,132]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"nftart\",\"indices\":[141,148]},{\"text\":\"NFT\",\"indices\":[149,153]},{\"text\":\"BTC\",\"indices\":[154,158]},{\"text\":\"institutions\",\"indices\":[159,172]},{\"text\":\"AdoptATeacher\",\"indices\":[173,187]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555317034237526017,\"id_str\":\"1555317034237526017\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"url\":\"https:\\/\\/t.co\\/ud1UpF6RVS\",\"display_url\":\"pic.twitter.com\\/ud1UpF6RVS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SammyGr96158056\\/status\\/1555317037097951233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"184\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[0,10]},{\"text\":\"Taiwan\",\"indices\":[11,18]},{\"text\":\"BigBrother\",\"indices\":[19,30]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[31,49]},{\"text\":\"BBNajia\",\"indices\":[50,58]},{\"text\":\"BBNaija\",\"indices\":[59,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555316793249599489,\"id_str\":\"1555316793249599489\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"url\":\"https:\\/\\/t.co\\/npACZaYBZJ\",\"display_url\":\"pic.twitter.com\\/npACZaYBZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndrewKunz7\\/status\\/1555316858437484544\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"185\":{\"hashtags\":[{\"text\":\"maufemor\",\"indices\":[95,104]},{\"text\":\"BulletTrainMovie\",\"indices\":[111,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"capitec\",\"indices\":[137,145]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[146,166]},{\"text\":\"ExtraordinaryAttorneyWooEp11\",\"indices\":[167,196]},{\"text\":\"BBNaijaS7\",\"indices\":[197,207]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[208,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"186\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[55,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BadDecisions\",\"indices\":[81,94]},{\"text\":\"skynews\",\"indices\":[95,103]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[104,124]},{\"text\":\"ExtraordinaryAttorneyWooEp11\",\"indices\":[125,154]},{\"text\":\"ExtraordinaryAttorneyWooEp11\",\"indices\":[155,184]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555315028865212418,\"id_str\":\"1555315028865212418\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"url\":\"https:\\/\\/t.co\\/VHp1KIltN6\",\"display_url\":\"pic.twitter.com\\/VHp1KIltN6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kevinice0\\/status\\/1555315108515123205\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"187\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555313890539573252,\"id_str\":\"1555313890539573252\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"url\":\"https:\\/\\/t.co\\/sGrgwMYnR0\",\"display_url\":\"pic.twitter.com\\/sGrgwMYnR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zeus_el_Savage\\/status\\/1555313928296665088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":202,\"h\":424,\"resize\":\"fit\"}}}]},\"188\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[34,51]},{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[60,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"189\":{\"hashtags\":[{\"text\":\"birthday\",\"indices\":[42,51]},{\"text\":\"streaming\",\"indices\":[52,62]},{\"text\":\"smallstreamers\",\"indices\":[79,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"BulletTrainMovie\",\"indices\":[103,120]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[121,133]},{\"text\":\"twitch\",\"indices\":[134,141]},{\"text\":\"twitchstreamer\",\"indices\":[142,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Se7h95ajvo\",\"expanded_url\":\"http:\\/\\/Twitch.tv\\/fast_paced_sloth\",\"display_url\":\"Twitch.tv\\/fast_paced_slo\\u2026\",\"indices\":[0,23]}]},\"190\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"Bullish\",\"indices\":[45,53]},{\"text\":\"iphone14\",\"indices\":[54,63]},{\"text\":\"PiConsensus\",\"indices\":[64,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555313075116449793,\"id_str\":\"1555313075116449793\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"url\":\"https:\\/\\/t.co\\/J5gc59nY80\",\"display_url\":\"pic.twitter.com\\/J5gc59nY80\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555313085501652992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":866,\"h\":1298,\"resize\":\"fit\"}}}]},\"191\":{\"hashtags\":[{\"text\":\"ThinkBIGSundayWithMarsha\",\"indices\":[34,59]},{\"text\":\"dailyinspiration\",\"indices\":[60,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"heralddigitals\",\"indices\":[86,101]},{\"text\":\"enterpreneur\",\"indices\":[102,115]},{\"text\":\"WebsiteDesign\",\"indices\":[116,130]},{\"text\":\"graphicdesign\",\"indices\":[131,145]},{\"text\":\"branding\",\"indices\":[146,155]},{\"text\":\"herald_digitals\",\"indices\":[156,172]},{\"text\":\"businessconsulting\",\"indices\":[173,192]},{\"text\":\"business\",\"indices\":[193,202]},{\"text\":\"wisdomtidbit\",\"indices\":[204,217]},{\"text\":\"PAG\",\"indices\":[218,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555310046082383875,\"id_str\":\"1555310046082383875\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"url\":\"https:\\/\\/t.co\\/yPQQwkGuw0\",\"display_url\":\"pic.twitter.com\\/yPQQwkGuw0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/herald_digitals\\/status\\/1555310059139354627\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"192\":{\"hashtags\":[{\"text\":\"cryptocurrencies\",\"indices\":[0,17]},{\"text\":\"PiConsensus\",\"indices\":[32,44]},{\"text\":\"PiNetwork\",\"indices\":[149,159]},{\"text\":\"Pioneers\",\"indices\":[164,173]},{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"China\",\"indices\":[255,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555309780943650819,\"id_str\":\"1555309780943650819\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"url\":\"https:\\/\\/t.co\\/gbEdagmUIq\",\"display_url\":\"pic.twitter.com\\/gbEdagmUIq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555309799948034048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"193\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"BBNaijaS7\",\"indices\":[25,35]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[36,54]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[55,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555308891436621826,\"id_str\":\"1555308891436621826\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"url\":\"https:\\/\\/t.co\\/pHWTp7I5mJ\",\"display_url\":\"pic.twitter.com\\/pHWTp7I5mJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555309544292630528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"194\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[221,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555308819101663232,\"id_str\":\"1555308819101663232\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"url\":\"https:\\/\\/t.co\\/NuKqOdXZll\",\"display_url\":\"pic.twitter.com\\/NuKqOdXZll\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AlwaysWorried__\\/status\\/1555308825040879622\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":369,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":391,\"resize\":\"fit\"}}}]},\"195\":{\"hashtags\":[{\"text\":\"SiBANP2PCONFERENCE\",\"indices\":[26,45]},{\"text\":\"Bitcoin\",\"indices\":[85,93]},{\"text\":\"Coinbase\",\"indices\":[94,103]},{\"text\":\"Binance\",\"indices\":[104,112]},{\"text\":\"Taiwan\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ARISEtv\",\"name\":\"ARISE NEWS\",\"id\":1087778780,\"id_str\":\"1087778780\",\"indices\":[113,121]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[122,133]}],\"urls\":[],\"media\":[{\"id\":1555307142520922112,\"id_str\":\"1555307142520922112\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"url\":\"https:\\/\\/t.co\\/2bK4aGnVAU\",\"display_url\":\"pic.twitter.com\\/2bK4aGnVAU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rumerule\\/status\\/1555307151958188036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"196\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[88,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[114,134]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[135,153]},{\"text\":\"BBNaijaS7\",\"indices\":[154,164]},{\"text\":\"ModijiOpensSRH\",\"indices\":[165,180]},{\"text\":\"Machala\",\"indices\":[181,189]},{\"text\":\"newmonth\",\"indices\":[190,199]},{\"text\":\"timesupolivia\",\"indices\":[200,214]},{\"text\":\"capitec\",\"indices\":[215,223]},{\"text\":\"Explosion\",\"indices\":[224,234]},{\"text\":\"UkraineRussiaWar\",\"indices\":[235,252]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[253,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"197\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[194,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555303203847249921,\"id_str\":\"1555303203847249921\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"url\":\"https:\\/\\/t.co\\/cbSE372zmL\",\"display_url\":\"pic.twitter.com\\/cbSE372zmL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Twenty_naira\\/status\\/1555303207236255744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":414,\"resize\":\"fit\"}}}]},\"198\":{\"hashtags\":[{\"text\":\"model\",\"indices\":[65,71]},{\"text\":\"LeverageRedemption\",\"indices\":[72,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[102,120]},{\"text\":\"BBNaijaS7\",\"indices\":[121,131]},{\"text\":\"EPL2022\",\"indices\":[132,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"elonmusk\",\"name\":\"Elon Musk\",\"id\":44196397,\"id_str\":\"44196397\",\"indices\":[31,40]}],\"urls\":[]},\"199\":{\"hashtags\":[{\"text\":\"Deborah\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"bigbrother24\",\"indices\":[124,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"200\":{\"hashtags\":[{\"text\":\"prank\",\"indices\":[40,46]},{\"text\":\"trender_sam\",\"indices\":[47,59]},{\"text\":\"explore\",\"indices\":[60,68]},{\"text\":\"ManUnited\",\"indices\":[69,79]},{\"text\":\"China\",\"indices\":[80,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"capitec\",\"indices\":[95,103]},{\"text\":\"Birmingham2022\",\"indices\":[104,119]},{\"text\":\"trendingvideos\",\"indices\":[120,135]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555299449458622465,\"id_str\":\"1555299449458622465\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"url\":\"https:\\/\\/t.co\\/XmsWKco1NS\",\"display_url\":\"pic.twitter.com\\/XmsWKco1NS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trender_sam\\/status\\/1555299516613627904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"}}}]},\"201\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"capitec\",\"indices\":[246,254]},{\"text\":\"China\",\"indices\":[255,261]},{\"text\":\"onstorm\",\"indices\":[262,270]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[271,291]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555297038035714048,\"id_str\":\"1555297038035714048\",\"indices\":[292,315],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/Na4Yekzzmu\",\"display_url\":\"pic.twitter.com\\/Na4Yekzzmu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555298493316665346\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"202\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[5,20]}],\"urls\":[]},\"203\":{\"hashtags\":[{\"text\":\"eajor\",\"indices\":[73,79]},{\"text\":\"BidenHasCancer\",\"indices\":[161,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"BB24\",\"indices\":[185,190]},{\"text\":\"BreakingNews\",\"indices\":[191,204]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"eajorng\",\"name\":\"eAjor\",\"id\":2674298212,\"id_str\":\"2674298212\",\"indices\":[0,8]}],\"urls\":[]},\"204\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"capitec\",\"indices\":[61,69]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[70,90]},{\"text\":\"AtikuOkowa2023\",\"indices\":[91,106]},{\"text\":\"osun\",\"indices\":[107,112]},{\"text\":\"eoa\",\"indices\":[113,117]},{\"text\":\"NigeriaDecides2023\",\"indices\":[118,137]},{\"text\":\"KoffeeWithKaran\",\"indices\":[138,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555297198270816256,\"id_str\":\"1555297198270816256\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"url\":\"https:\\/\\/t.co\\/eUgJVcdOgP\",\"display_url\":\"pic.twitter.com\\/eUgJVcdOgP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EOAlakpodia\\/status\\/1555297218936115202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"205\":{\"hashtags\":[{\"text\":\"ghanajobs\",\"indices\":[183,193]},{\"text\":\"ghananews\",\"indices\":[194,204]},{\"text\":\"ghtrending\",\"indices\":[205,216]},{\"text\":\"missmalaika22\",\"indices\":[217,231]},{\"text\":\"gmb22\",\"indices\":[232,238]},{\"text\":\"showbizgh\",\"indices\":[239,249]},{\"text\":\"job\",\"indices\":[250,254]},{\"text\":\"jobsearch\",\"indices\":[255,265]},{\"text\":\"Taiwan\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Golden_Star_Res\",\"name\":\"GoldenStarResources\",\"id\":770582917303107585,\"id_str\":\"770582917303107585\",\"indices\":[48,64]}],\"urls\":[],\"media\":[{\"id\":1555296354246746113,\"id_str\":\"1555296354246746113\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWFyztWYAEe3aH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWFyztWYAEe3aH.jpg\",\"url\":\"https:\\/\\/t.co\\/VYuBdgVeCI\",\"display_url\":\"pic.twitter.com\\/VYuBdgVeCI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1555296356348084225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":841,\"h\":1056,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":841,\"h\":1056,\"resize\":\"fit\"}}}]},\"206\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[161,167]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"207\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[25,45]},{\"text\":\"capitec\",\"indices\":[46,54]},{\"text\":\"KoffeeWithKaran\",\"indices\":[55,71]},{\"text\":\"onstorm\",\"indices\":[72,80]},{\"text\":\"PokemonPresents\",\"indices\":[81,97]},{\"text\":\"Birmingham2022\",\"indices\":[98,113]},{\"text\":\"\\u0e04\\u0e37\\u0e2d\\u0e40\\u0e18\\u0e2dEP6\",\"indices\":[114,124]},{\"text\":\"BBN\",\"indices\":[125,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555293433522159617,\"id_str\":\"1555293433522159617\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"url\":\"https:\\/\\/t.co\\/YPAKeLtsly\",\"display_url\":\"pic.twitter.com\\/YPAKeLtsly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/werey_mecho\\/status\\/1555293488253747200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"}}}]},\"208\":{\"hashtags\":[{\"text\":\"TAIWAN\",\"indices\":[0,7]},{\"text\":\"CHINA\",\"indices\":[169,175]},{\"text\":\"TAIWAN\",\"indices\":[223,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"taiwanfoucs\",\"name\":\"\\u53f0\\u7063\\u4f5b\\u514b\\u65afTaiwanFocus\",\"id\":1029735476108783617,\"id_str\":\"1029735476108783617\",\"indices\":[8,20]}],\"urls\":[]},\"209\":{\"hashtags\":[{\"text\":\"TAIWAN\",\"indices\":[0,7]},{\"text\":\"CHINA\",\"indices\":[169,175]},{\"text\":\"TAIWAN\",\"indices\":[223,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"taiwandefense\",\"name\":\"Taiwan Defense\",\"id\":609277533,\"id_str\":\"609277533\",\"indices\":[8,22]}],\"urls\":[]},\"210\":{\"hashtags\":[{\"text\":\"ghanajobs\",\"indices\":[186,196]},{\"text\":\"ghananews\",\"indices\":[197,207]},{\"text\":\"ghtrending\",\"indices\":[208,219]},{\"text\":\"missmalaika22\",\"indices\":[220,234]},{\"text\":\"gmb22\",\"indices\":[235,241]},{\"text\":\"showbizgh\",\"indices\":[242,252]},{\"text\":\"job\",\"indices\":[253,257]},{\"text\":\"jobsearch\",\"indices\":[258,268]},{\"text\":\"Taiwan\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"growformeafrica\",\"name\":\"Grow For Me\",\"id\":898510385107611648,\"id_str\":\"898510385107611648\",\"indices\":[49,65]}],\"urls\":[],\"media\":[{\"id\":1555290276037525505,\"id_str\":\"1555290276037525505\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWARAnWAAE7Obk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWARAnWAAE7Obk.jpg\",\"url\":\"https:\\/\\/t.co\\/y0Ti6phRF5\",\"display_url\":\"pic.twitter.com\\/y0Ti6phRF5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1555290279619563520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":1536,\"resize\":\"fit\"}}}]},\"211\":{\"hashtags\":[{\"text\":\"crowdfundingcampaign\",\"indices\":[166,187]},{\"text\":\"Kickstarter\",\"indices\":[188,200]},{\"text\":\"GoFundMe\",\"indices\":[201,210]},{\"text\":\"support\",\"indices\":[211,219]},{\"text\":\"Taiwan\",\"indices\":[220,227]},{\"text\":\"TejRan\",\"indices\":[228,235]},{\"text\":\"TREASUREinManila\",\"indices\":[236,253]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[254,279]},{\"text\":\"YEONJUN\",\"indices\":[280,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"httpxellise\",\"name\":\"Ellise\",\"id\":1235930251844153344,\"id_str\":\"1235930251844153344\",\"indices\":[0,12]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[142,165]}],\"media\":[{\"id\":1555289978367889411,\"id_str\":\"1555289978367889411\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"url\":\"https:\\/\\/t.co\\/7rnj6pp7NE\",\"display_url\":\"pic.twitter.com\\/7rnj6pp7NE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555290140561625090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"212\":{\"hashtags\":[{\"text\":\"Ankaradress\",\"indices\":[68,80]},{\"text\":\"Ankara\",\"indices\":[81,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"capitec\",\"indices\":[115,123]},{\"text\":\"recession\",\"indices\":[124,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555289948055560192,\"id_str\":\"1555289948055560192\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"url\":\"https:\\/\\/t.co\\/Ws8Ki9CFt1\",\"display_url\":\"pic.twitter.com\\/Ws8Ki9CFt1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GraceoxfordAgt\\/status\\/1555289958906200064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":702,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":900,\"resize\":\"fit\"}}}]},\"213\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[143,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"capitec\",\"indices\":[169,177]},{\"text\":\"onstorm\",\"indices\":[178,186]},{\"text\":\"recession\",\"indices\":[187,197]},{\"text\":\"news\",\"indices\":[198,203]},{\"text\":\"PokemonPresents\",\"indices\":[204,220]},{\"text\":\"ChelseaFC\",\"indices\":[221,231]},{\"text\":\"Birmingham2022\",\"indices\":[232,247]},{\"text\":\"music\",\"indices\":[248,254]},{\"text\":\"Musica\",\"indices\":[255,262]},{\"text\":\"vocalcarecoach\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555288389473259522,\"id_str\":\"1555288389473259522\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"url\":\"https:\\/\\/t.co\\/48lu9wGaF4\",\"display_url\":\"pic.twitter.com\\/48lu9wGaF4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555289069831311363\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"214\":{\"hashtags\":[{\"text\":\"PiConsensus\",\"indices\":[8,20]},{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555288704796827653,\"id_str\":\"1555288704796827653\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"215\":{\"hashtags\":[{\"text\":\"wizkid\",\"indices\":[130,137]},{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Alibaba\",\"indices\":[146,154]},{\"text\":\"Sabinus\",\"indices\":[155,163]},{\"text\":\"art\",\"indices\":[164,168]},{\"text\":\"smudgepainting\",\"indices\":[169,184]},{\"text\":\"Giveaway\",\"indices\":[185,194]},{\"text\":\"actress\",\"indices\":[195,203]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_kehindebankole\",\"name\":\"KEHINDE BANKOLE\",\"id\":715794097,\"id_str\":\"715794097\",\"indices\":[21,37]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M6oEDZjc76\",\"expanded_url\":\"http:\\/\\/Wa.me\\/2347011897322\",\"display_url\":\"Wa.me\\/2347011897322\",\"indices\":[105,128]}],\"media\":[{\"id\":1555288001953013766,\"id_str\":\"1555288001953013766\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"url\":\"https:\\/\\/t.co\\/XvDzDntGau\",\"display_url\":\"pic.twitter.com\\/XvDzDntGau\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RaywondersA\\/status\\/1555288045670354950\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"216\":{\"hashtags\":[{\"text\":\"GlazersOut\",\"indices\":[12,23]},{\"text\":\"BulletTrainMovie\",\"indices\":[24,41]},{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"MUFC\",\"indices\":[51,56]},{\"text\":\"capitec\",\"indices\":[58,66]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555287078228955137,\"id_str\":\"1555287078228955137\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"url\":\"https:\\/\\/t.co\\/wq0Y1ftS4q\",\"display_url\":\"pic.twitter.com\\/wq0Y1ftS4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Deni_kuddz\\/status\\/1555287099267551234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":702,\"resize\":\"fit\"},\"small\":{\"w\":465,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":702,\"resize\":\"fit\"}}}]},\"217\":{\"hashtags\":[{\"text\":\"my5starstory\",\"indices\":[70,83]},{\"text\":\"capitec\",\"indices\":[183,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"BulletTrainMovie\",\"indices\":[200,217]},{\"text\":\"onstorm\",\"indices\":[218,226]},{\"text\":\"music\",\"indices\":[227,233]},{\"text\":\"BB24\",\"indices\":[234,239]},{\"text\":\"BBNaijaS7\",\"indices\":[240,250]},{\"text\":\"BulletTrain\",\"indices\":[251,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[145,158]}],\"urls\":[],\"media\":[{\"id\":1555286117347459072,\"id_str\":\"1555286117347459072\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"url\":\"https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"display_url\":\"pic.twitter.com\\/Ie9UaQ7YBU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kinqbrizy1\\/status\\/1555286290148589571\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"218\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[140,157]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"capitec\",\"indices\":[166,174]},{\"text\":\"PokemonPresents\",\"indices\":[175,191]},{\"text\":\"PokemonScarletViolet\",\"indices\":[192,213]},{\"text\":\"Birmingham2022\",\"indices\":[214,229]},{\"text\":\"onstorm\",\"indices\":[230,238]},{\"text\":\"recession\",\"indices\":[239,249]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ConvergenceFin\",\"name\":\"Convergence Finance\",\"id\":1359091443537563651,\"id_str\":\"1359091443537563651\",\"indices\":[64,79]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5NHIvfXkRL\",\"expanded_url\":\"https:\\/\\/t.me\\/convergencefinanceofficial\",\"display_url\":\"t.me\\/convergencefin\\u2026\",\"indices\":[115,138]}],\"media\":[{\"id\":1555285317451644929,\"id_str\":\"1555285317451644929\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"url\":\"https:\\/\\/t.co\\/1M5P4K2WZ9\",\"display_url\":\"pic.twitter.com\\/1M5P4K2WZ9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1555285352222441474\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1121,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1884,\"h\":1760,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":635,\"resize\":\"fit\"}}}]},\"219\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"nimc\",\"indices\":[208,213]},{\"text\":\"nin\",\"indices\":[214,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"220\":{\"hashtags\":[{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[103,115]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[116,139]},{\"text\":\"ichmachenichtmehrmit\",\"indices\":[140,161]},{\"text\":\"BulletTrainMovie\",\"indices\":[162,179]},{\"text\":\"\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059\",\"indices\":[180,196]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"capitec\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"221\":{\"hashtags\":[{\"text\":\"Birmingham2022\",\"indices\":[74,89]},{\"text\":\"BulletTrainMovie\",\"indices\":[90,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"BBNaija\",\"indices\":[124,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MlRna6pnb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnpaulez16\\/status\\/1555279861073453056\",\"display_url\":\"twitter.com\\/johnpaulez16\\/s\\u2026\",\"indices\":[141,164]}]},\"222\":{\"hashtags\":[{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[42,50]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[51,65]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[66,78]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[79,102]},{\"text\":\"ichmachenichtmehrmit\",\"indices\":[103,124]},{\"text\":\"BulletTrainMovie\",\"indices\":[125,142]},{\"text\":\"\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059\",\"indices\":[143,159]},{\"text\":\"Taiwan\",\"indices\":[160,167]},{\"text\":\"capitec\",\"indices\":[168,176]},{\"text\":\"Sismo\",\"indices\":[177,183]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a78\",\"indices\":[184,192]},{\"text\":\"\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a\",\"indices\":[193,211]},{\"text\":\"\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a\",\"indices\":[212,230]},{\"text\":\"\\u0643\\u0644\\u0646\\u0627_\\u0627\\u0644\\u0634\\u064a\\u062e_\\u0628\\u0646_\\u062d\\u0645\\u064a\\u062f\",\"indices\":[231,250]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a77\",\"indices\":[251,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"morrishills_\",\"name\":\"Morris Hills\",\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"indices\":[26,39]}],\"urls\":[],\"media\":[{\"id\":1555279899912552448,\"id_str\":\"1555279899912552448\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/eggArJK1mA\",\"display_url\":\"pic.twitter.com\\/eggArJK1mA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555279982598946821\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"223\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[40,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"capitec\",\"indices\":[67,75]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[76,88]},{\"text\":\"trends\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8EIbvwItzv\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/LH7J57RB2GUON1\",\"display_url\":\"wa.me\\/message\\/LH7J57\\u2026\",\"indices\":[110,133]}],\"media\":[{\"id\":1555279715027587080,\"id_str\":\"1555279715027587080\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1355,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}}]},\"224\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"capitec\",\"indices\":[123,131]},{\"text\":\"Birmingham2022\",\"indices\":[132,147]},{\"text\":\"BulletTrain\",\"indices\":[148,160]},{\"text\":\"Food\",\"indices\":[161,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Bvw6JKda5c\",\"expanded_url\":\"https:\\/\\/youtu.be\\/hfAzA6blRzI\",\"display_url\":\"youtu.be\\/hfAzA6blRzI\",\"indices\":[72,95]}],\"media\":[{\"id\":1555278481705078786,\"id_str\":\"1555278481705078786\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"url\":\"https:\\/\\/t.co\\/5XQk1GZOUr\",\"display_url\":\"pic.twitter.com\\/5XQk1GZOUr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theonlinecook\\/status\\/1555278483777114112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"225\":{\"hashtags\":[{\"text\":\"CommonwealthGames2022\",\"indices\":[206,228]},{\"text\":\"wizkid\",\"indices\":[229,236]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555277880342581253,\"id_str\":\"1555277880342581253\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"226\":{\"hashtags\":[{\"text\":\"adeyyytweets\",\"indices\":[96,109]},{\"text\":\"capitec\",\"indices\":[110,118]},{\"text\":\"BulletTrainMovie\",\"indices\":[119,136]},{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"ASUUstrike\",\"indices\":[145,156]},{\"text\":\"uiuxdesign\",\"indices\":[157,168]},{\"text\":\"uiux\",\"indices\":[169,174]},{\"text\":\"uidesigner\",\"indices\":[175,186]},{\"text\":\"uxdesigner\",\"indices\":[187,198]},{\"text\":\"uxdesign\",\"indices\":[199,208]},{\"text\":\"thursdayvibes\",\"indices\":[209,223]},{\"text\":\"UI\",\"indices\":[224,227]},{\"text\":\"ux\",\"indices\":[228,231]},{\"text\":\"Designers\",\"indices\":[232,242]},{\"text\":\"GraphicDesign\",\"indices\":[243,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"227\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[133,155]},{\"text\":\"GogoSkhotheni\",\"indices\":[157,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"veryaffordable\",\"name\":\"SellingPremiumAccounts\",\"id\":1290173450900758528,\"id_str\":\"1290173450900758528\",\"indices\":[38,53]},{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[180,189]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[190,199]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[200,213]}],\"urls\":[],\"media\":[{\"id\":1555274994862755840,\"id_str\":\"1555274994862755840\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"url\":\"https:\\/\\/t.co\\/vDqCjp8ZKd\",\"display_url\":\"pic.twitter.com\\/vDqCjp8ZKd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555275017306472449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"228\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[133,155]},{\"text\":\"GogoSkhotheni\",\"indices\":[157,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"veryaffordable\",\"name\":\"SellingPremiumAccounts\",\"id\":1290173450900758528,\"id_str\":\"1290173450900758528\",\"indices\":[38,53]},{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[180,189]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[190,199]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[200,213]}],\"urls\":[],\"media\":[{\"id\":1555274835256918017,\"id_str\":\"1555274835256918017\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"url\":\"https:\\/\\/t.co\\/mFSHpbLkRV\",\"display_url\":\"pic.twitter.com\\/mFSHpbLkRV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555274853632319489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"229\":{\"hashtags\":[{\"text\":\"monsterwemade\",\"indices\":[45,59]},{\"text\":\"VIBRYANNTS\",\"indices\":[77,88]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"BBNaija\",\"indices\":[115,123]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BrymOlawale\",\"name\":\"\\u1eccl\\u00e1w\\u00e1l\\u00e9 \\u1eccl\\u1ecd\\u0301f\\u1ecd\\u1ecd\\u0300r\\u1ecd\\u0300\",\"id\":65514235,\"id_str\":\"65514235\",\"indices\":[125,137]},{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[139,153]}],\"urls\":[],\"media\":[{\"id\":1555273952955699201,\"id_str\":\"1555273952955699201\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"url\":\"https:\\/\\/t.co\\/YEWbHC5Yma\",\"display_url\":\"pic.twitter.com\\/YEWbHC5Yma\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sourced2018\\/status\\/1555274388391579649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"230\":{\"hashtags\":[{\"text\":\"Lebanon\",\"indices\":[192,200]},{\"text\":\"Taiwan\",\"indices\":[201,208]},{\"text\":\"crime\",\"indices\":[209,215]},{\"text\":\"WHO\",\"indices\":[216,220]},{\"text\":\"recession\",\"indices\":[221,231]},{\"text\":\"BulletTrainMovie\",\"indices\":[232,249]},{\"text\":\"TrendingNow\",\"indices\":[250,262]},{\"text\":\"Trending\",\"indices\":[263,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555274103359168513,\"id_str\":\"1555274103359168513\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"url\":\"https:\\/\\/t.co\\/XLJzMjNhun\",\"display_url\":\"pic.twitter.com\\/XLJzMjNhun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555274246074548227\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"231\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"MohaleOTR\",\"indices\":[93,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Rvk8u5qP58\",\"expanded_url\":\"https:\\/\\/touchaheart.com.ng\\/2022\\/08\\/04\\/nigerian-doughnuts-filled-with-jam-recipe-method-history-types\\/\",\"display_url\":\"touchaheart.com.ng\\/2022\\/08\\/04\\/nig\\u2026\",\"indices\":[104,127]}]},\"232\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[74,82]},{\"text\":\"BulletTrainMovie\",\"indices\":[83,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"Wizkid\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwBvCavfgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/spaces\\/1MnGnkMXbjoJO\",\"display_url\":\"twitter.com\\/i\\/spaces\\/1MnGn\\u2026\",\"indices\":[50,73]}]},\"233\":{\"hashtags\":[{\"text\":\"Azerbaijan\",\"indices\":[189,200]},{\"text\":\"london\",\"indices\":[201,208]},{\"text\":\"Diplomacy\",\"indices\":[209,219]},{\"text\":\"BulletTrainMovie\",\"indices\":[220,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"PokemonPresents\",\"indices\":[246,262]},{\"text\":\"Trending\",\"indices\":[263,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555272561373609984,\"id_str\":\"1555272561373609984\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"url\":\"https:\\/\\/t.co\\/A84bZqVB2K\",\"display_url\":\"pic.twitter.com\\/A84bZqVB2K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555272697474588673\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}}}]},\"234\":{\"hashtags\":[{\"text\":\"thursdayvibes\",\"indices\":[112,126]},{\"text\":\"BulletTrainMovie\",\"indices\":[127,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"spiceradiong\",\"indices\":[153,166]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpiceRadioNg\",\"name\":\"Spice Radio\",\"id\":1030086296339996673,\"id_str\":\"1030086296339996673\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1555271584092504065,\"id_str\":\"1555271584092504065\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"url\":\"https:\\/\\/t.co\\/Zm4XzZzg1A\",\"display_url\":\"pic.twitter.com\\/Zm4XzZzg1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Ligera\\/status\\/1555271731555848193\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":304,\"resize\":\"fit\"}}}]},\"235\":{\"hashtags\":[{\"text\":\"justsaleonline\",\"indices\":[101,116]},{\"text\":\"BBNaija\",\"indices\":[117,125]},{\"text\":\"BulletTrainMovie\",\"indices\":[126,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"thursdayvibes\",\"indices\":[152,166]},{\"text\":\"uiuxdesign\",\"indices\":[167,178]},{\"text\":\"design\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MMTYoLhpx6\",\"expanded_url\":\"http:\\/\\/justsaleonline.com\",\"display_url\":\"justsaleonline.com\",\"indices\":[77,100]}],\"media\":[{\"id\":1555270933937639426,\"id_str\":\"1555270933937639426\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"url\":\"https:\\/\\/t.co\\/p6XojkDsrJ\",\"display_url\":\"pic.twitter.com\\/p6XojkDsrJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555270969526308864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"236\":{\"hashtags\":[{\"text\":\"Pantami\",\"indices\":[253,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]},{\"text\":\"NigerRepublic\",\"indices\":[270,284]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270714822983680,\"id_str\":\"1555270714822983680\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"237\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"pere\",\"indices\":[141,146]},{\"text\":\"RahmanJago\",\"indices\":[147,158]},{\"text\":\"eico\",\"indices\":[159,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270415982936065,\"id_str\":\"1555270415982936065\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}}]},\"238\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"pere\",\"indices\":[141,146]},{\"text\":\"RahmanJago\",\"indices\":[147,158]},{\"text\":\"eico\",\"indices\":[159,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270114387410944,\"id_str\":\"1555270114387410944\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}}]},\"239\":{\"hashtags\":[{\"text\":\"fridaynightfunkin\",\"indices\":[131,149]},{\"text\":\"BulletTrainMovie\",\"indices\":[150,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"MohaleOTR\",\"indices\":[176,186]},{\"text\":\"capitec\",\"indices\":[187,195]},{\"text\":\"PokemonScarletViolet\",\"indices\":[196,217]},{\"text\":\"PokemonPresents\",\"indices\":[218,234]},{\"text\":\"recession\",\"indices\":[235,245]},{\"text\":\"thursdayvibes\",\"indices\":[246,260]},{\"text\":\"fridaynightfunkin\",\"indices\":[261,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LASMIDOFFICIAL1\",\"name\":\"CHARGER\",\"id\":968792966721687552,\"id_str\":\"968792966721687552\",\"indices\":[13,29]},{\"screen_name\":\"kwadwosheldon\",\"name\":\"Kwadwo Sheldon\",\"id\":1368507991499149329,\"id_str\":\"1368507991499149329\",\"indices\":[43,57]},{\"screen_name\":\"LASMIDOFFICIAL1\",\"name\":\"CHARGER\",\"id\":968792966721687552,\"id_str\":\"968792966721687552\",\"indices\":[58,74]},{\"screen_name\":\"drpoundsgh\",\"name\":\"Dr. Pounds\",\"id\":1413179251394818055,\"id_str\":\"1413179251394818055\",\"indices\":[75,86]},{\"screen_name\":\"onua_zionfelix\",\"name\":\"ZionFelix.net\",\"id\":412146746,\"id_str\":\"412146746\",\"indices\":[87,102]},{\"screen_name\":\"shattawalegh\",\"name\":\"SHATTA WALE\",\"id\":310709509,\"id_str\":\"310709509\",\"indices\":[103,116]},{\"screen_name\":\"codemickey78\",\"name\":\"CodeMickey\\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83d\\udcbb\\ud83d\\udcf2\\ud83c\\uddec\\ud83c\\udded\",\"id\":854086023906828291,\"id_str\":\"854086023906828291\",\"indices\":[117,130]}],\"urls\":[],\"media\":[{\"id\":1555269568368631808,\"id_str\":\"1555269568368631808\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555269568368631808\\/pu\\/img\\/YDoevHluiyZ2Urcp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555269568368631808\\/pu\\/img\\/YDoevHluiyZ2Urcp.jpg\",\"url\":\"https:\\/\\/t.co\\/FSywjczyav\",\"display_url\":\"pic.twitter.com\\/FSywjczyav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mensgang\\/status\\/1555269706269052931\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"240\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"WorldNews\",\"indices\":[121,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YZjghmRyBR\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/27kvb75d\",\"display_url\":\"tinyurl.com\\/27kvb75d\",\"indices\":[73,96]},{\"url\":\"https:\\/\\/t.co\\/YZjghmRyBR\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/27kvb75d\",\"display_url\":\"tinyurl.com\\/27kvb75d\",\"indices\":[132,155]}]},\"241\":{\"hashtags\":[{\"text\":\"HappyEnding\",\"indices\":[68,80]},{\"text\":\"BulletTrainMovie\",\"indices\":[81,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]},{\"text\":\"MohaleOTR\",\"indices\":[107,117]},{\"text\":\"capitec\",\"indices\":[118,126]},{\"text\":\"PokemonScarletViolet\",\"indices\":[127,148]},{\"text\":\"PokemonPresents\",\"indices\":[149,165]},{\"text\":\"thursdayvibes\",\"indices\":[166,180]},{\"text\":\"MilePhakphum\",\"indices\":[181,194]},{\"text\":\"BibleBuild\",\"indices\":[195,206]},{\"text\":\"Sismo\",\"indices\":[207,213]},{\"text\":\"Explosion\",\"indices\":[214,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555264644540948482,\"id_str\":\"1555264644540948482\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"url\":\"https:\\/\\/t.co\\/Jathe02eyN\",\"display_url\":\"pic.twitter.com\\/Jathe02eyN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nisgembu\\/status\\/1555264649989324802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":562,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":531,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":562,\"resize\":\"fit\"}}}]},\"242\":{\"hashtags\":[{\"text\":\"dice\",\"indices\":[112,117]},{\"text\":\"ladiesfirst\",\"indices\":[118,130]},{\"text\":\"Wizkid\",\"indices\":[132,139]},{\"text\":\"Taiwan\",\"indices\":[140,147]},{\"text\":\"sabinus\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jNc3fqiUtH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/musicwormcity\\/status\\/1555241065782943744\\/video\\/1\",\"display_url\":\"twitter.com\\/musicwormcity\\/\\u2026\",\"indices\":[157,180]}],\"media\":[{\"id\":1555257196476305411,\"id_str\":\"1555257196476305411\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"url\":\"https:\\/\\/t.co\\/5MALG8kSIN\",\"display_url\":\"pic.twitter.com\\/5MALG8kSIN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/musicwormcity\\/status\\/1555257331738353667\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}}}]},\"243\":{\"hashtags\":[{\"text\":\"WorldNews\",\"indices\":[81,91]},{\"text\":\"Biden\",\"indices\":[92,98]},{\"text\":\"China\",\"indices\":[99,105]},{\"text\":\"defies\",\"indices\":[106,113]},{\"text\":\"Pelosi\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kOEMsDu3fO\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SW3yHW\",\"display_url\":\"dlvr.it\\/SW3yHW\",\"indices\":[57,80]}]},\"244\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[43,51]},{\"text\":\"VIBRYANNTS\",\"indices\":[64,75]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/RMj7g6MMC1\",\"display_url\":\"pic.twitter.com\\/RMj7g6MMC1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}},\"source_status_id\":1555248905692086274,\"source_status_id_str\":\"1555248905692086274\",\"source_user_id\":1279448672183476224,\"source_user_id_str\":\"1279448672183476224\"}]},\"245\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[52,59]},{\"text\":\"Deborah\",\"indices\":[60,68]},{\"text\":\"iphone14\",\"indices\":[69,78]},{\"text\":\"RahmanJago\",\"indices\":[79,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555253487654641667,\"id_str\":\"1555253487654641667\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"url\":\"https:\\/\\/t.co\\/vEn321p0T2\",\"display_url\":\"pic.twitter.com\\/vEn321p0T2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Am_Benco\\/status\\/1555253770518405123\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"246\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"BulletTrainMovie\",\"indices\":[127,144]},{\"text\":\"capitec\",\"indices\":[145,153]},{\"text\":\"sabinus\",\"indices\":[154,162]},{\"text\":\"thursdayvibes\",\"indices\":[163,177]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fineboytunde_\",\"name\":\"\\ud835\\ude75\\ud835\\ude92\\ud835\\ude97\\ud835\\ude8e\\ud835\\ude8b\\ud835\\ude98\\ud835\\udea2 \\u271e\\ud835\\ude9e\\ud835\\ude97\\ud835\\ude8d\\ud835\\ude8e \\ud83d\\udc51\\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":1039151946723196929,\"id_str\":\"1039151946723196929\",\"indices\":[85,99]},{\"screen_name\":\"OtakhorEmmanuel\",\"name\":\"Emmanuel Otakhor\",\"id\":1533420684642328576,\"id_str\":\"1533420684642328576\",\"indices\":[100,116]}],\"urls\":[]},\"247\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[196,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"248\":{\"hashtags\":[{\"text\":\"FoundersDay\",\"indices\":[79,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"PatrioticSpaces\",\"indices\":[100,116]},{\"text\":\"Brighten\",\"indices\":[117,126]},{\"text\":\"Fabrizio\",\"indices\":[127,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"249\":{\"hashtags\":[{\"text\":\"lifedrama\",\"indices\":[102,112]},{\"text\":\"BulletTrainMovie\",\"indices\":[113,130]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"250\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[0,8]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"VIBRYANNTS\",\"indices\":[126,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555250710274523136,\"id_str\":\"1555250710274523136\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"url\":\"https:\\/\\/t.co\\/EfUaut9kOK\",\"display_url\":\"pic.twitter.com\\/EfUaut9kOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555250716188581893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"251\":{\"hashtags\":[{\"text\":\"Repost\",\"indices\":[70,77]},{\"text\":\"BulletTrainMovie\",\"indices\":[78,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"capitec\",\"indices\":[104,112]},{\"text\":\"timesupolivia\",\"indices\":[113,127]},{\"text\":\"BibleSumett\",\"indices\":[128,140]},{\"text\":\"PokemonScarletViolet\",\"indices\":[141,162]},{\"text\":\"kagiso\",\"indices\":[163,170]},{\"text\":\"Billing\",\"indices\":[195,203]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[171,178]},{\"screen_name\":\"SpyroTheDragon\",\"name\":\"Spyro\",\"id\":964267437037305858,\"id_str\":\"964267437037305858\",\"indices\":[179,194]}],\"urls\":[],\"media\":[{\"id\":1555250004314431489,\"id_str\":\"1555250004314431489\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"url\":\"https:\\/\\/t.co\\/kzmzAnO5vv\",\"display_url\":\"pic.twitter.com\\/kzmzAnO5vv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Treasuregodwi7\\/status\\/1555250097927110658\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"252\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[43,51]},{\"text\":\"VIBRYANNTS\",\"indices\":[64,75]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/cmaB04hQQc\",\"display_url\":\"pic.twitter.com\\/cmaB04hQQc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}}}]},\"253\":{\"hashtags\":[{\"text\":\"VIBRYANNTS\",\"indices\":[33,44]},{\"text\":\"BulletTrainMovie\",\"indices\":[54,71]},{\"text\":\"BBNaija\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555247726476115968,\"id_str\":\"1555247726476115968\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"url\":\"https:\\/\\/t.co\\/UPSQQiIjql\",\"display_url\":\"pic.twitter.com\\/UPSQQiIjql\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555247814728470528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"}}}]},\"254\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[157,164]},{\"text\":\"Marketing\",\"indices\":[165,175]},{\"text\":\"affiliateprogram\",\"indices\":[176,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"255\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[237,251]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"Cucurella\",\"indices\":[262,272]},{\"text\":\"Bants\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555247350880391169,\"id_str\":\"1555247350880391169\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"url\":\"https:\\/\\/t.co\\/F4ipVGpGv7\",\"display_url\":\"pic.twitter.com\\/F4ipVGpGv7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andredicksonn\\/status\\/1555247359264784394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}}]},\"256\":{\"hashtags\":[{\"text\":\"forex\",\"indices\":[61,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"onstorm\",\"indices\":[76,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"257\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[20,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"capitec\",\"indices\":[46,54]},{\"text\":\"timesupolivia\",\"indices\":[55,69]},{\"text\":\"BibleSumett\",\"indices\":[70,82]},{\"text\":\"onstorm\",\"indices\":[83,91]},{\"text\":\"PokemonScarletViolet\",\"indices\":[92,113]},{\"text\":\"onstorm\",\"indices\":[114,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"kagiso\",\"indices\":[145,152]},{\"text\":\"sabinus\",\"indices\":[153,161]},{\"text\":\"BibleBuild\",\"indices\":[162,173]},{\"text\":\"MilePhakphum\",\"indices\":[174,187]},{\"text\":\"thursdayvibes\",\"indices\":[188,202]},{\"text\":\"recession\",\"indices\":[203,213]},{\"text\":\"Grunewald\",\"indices\":[214,224]},{\"text\":\"AditiShankar\",\"indices\":[225,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555245913861509120,\"id_str\":\"1555245913861509120\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"url\":\"https:\\/\\/t.co\\/HRaxg8lwmS\",\"display_url\":\"pic.twitter.com\\/HRaxg8lwmS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1555246099278995456\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"258\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"thursdayvibes\",\"indices\":[82,96]},{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"capitec\",\"indices\":[115,123]},{\"text\":\"timesupolivia\",\"indices\":[124,138]},{\"text\":\"BibleSumett\",\"indices\":[139,151]},{\"text\":\"PokemonScarletViolet\",\"indices\":[152,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555245840435912705,\"id_str\":\"1555245840435912705\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"url\":\"https:\\/\\/t.co\\/ifvkYa4wvx\",\"display_url\":\"pic.twitter.com\\/ifvkYa4wvx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SiR__DONY\\/status\\/1555245847591403520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":422,\"resize\":\"fit\"}}}]},\"259\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"timesupolivia\",\"indices\":[95,109]},{\"text\":\"thursdayvibes\",\"indices\":[110,124]},{\"text\":\"mtvbase\",\"indices\":[125,133]},{\"text\":\"AfrobeatmeetsBerlin\",\"indices\":[134,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555245449409331201,\"id_str\":\"1555245449409331201\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"url\":\"https:\\/\\/t.co\\/fBWDJy3vow\",\"display_url\":\"pic.twitter.com\\/fBWDJy3vow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555245463124824069\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":1329,\"resize\":\"fit\"}}}]},\"260\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"inflation\",\"indices\":[160,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555241323099312129,\"id_str\":\"1555241323099312129\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"url\":\"https:\\/\\/t.co\\/DGoLBK68RJ\",\"display_url\":\"pic.twitter.com\\/DGoLBK68RJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1555241326807060480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":348,\"resize\":\"fit\"}}}]},\"261\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[25,42]},{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"capitec\",\"indices\":[51,59]},{\"text\":\"timesupolivia\",\"indices\":[60,74]},{\"text\":\"BibleSumett\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555240673586069506,\"id_str\":\"1555240673586069506\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"url\":\"https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"display_url\":\"pic.twitter.com\\/3Z0k3P5ZFq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555240679495929856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":351,\"h\":680,\"resize\":\"fit\"}}}]},\"262\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[27,44]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"capitec\",\"indices\":[53,61]},{\"text\":\"timesupolivia\",\"indices\":[62,76]},{\"text\":\"BibleSumett\",\"indices\":[77,89]},{\"text\":\"onstorm\",\"indices\":[90,98]},{\"text\":\"PokemonScarletViolet\",\"indices\":[99,120]},{\"text\":\"BBNaija\",\"indices\":[121,129]},{\"text\":\"sabinus\",\"indices\":[130,138]},{\"text\":\"kagiso\",\"indices\":[139,146]},{\"text\":\"MilePhakphum\",\"indices\":[147,160]},{\"text\":\"thursdayvibes\",\"indices\":[161,175]},{\"text\":\"Grunewald\",\"indices\":[176,186]},{\"text\":\"fyp\",\"indices\":[187,191]},{\"text\":\"Trending\",\"indices\":[192,201]},{\"text\":\"sports\",\"indices\":[202,209]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555238932593377281,\"id_str\":\"1555238932593377281\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"url\":\"https:\\/\\/t.co\\/1UsANAgJJV\",\"display_url\":\"pic.twitter.com\\/1UsANAgJJV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brian_naija\\/status\\/1555239078848765957\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"263\":{\"hashtags\":[{\"text\":\"Awkgraphicdesigner\",\"indices\":[0,19]},{\"text\":\"iPhone\",\"indices\":[20,27]},{\"text\":\"Taiwan\",\"indices\":[31,38]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555238885218832385,\"id_str\":\"1555238885218832385\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"url\":\"https:\\/\\/t.co\\/TjKUhKr0q4\",\"display_url\":\"pic.twitter.com\\/TjKUhKr0q4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mazi127025\\/status\\/1555238918651629571\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1444,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":846,\"h\":1200,\"resize\":\"fit\"}}}]},\"264\":{\"hashtags\":[{\"text\":\"realestate\",\"indices\":[0,11]},{\"text\":\"realestateagents\",\"indices\":[13,30]},{\"text\":\"realestatesales\",\"indices\":[32,48]},{\"text\":\"realestateagent\",\"indices\":[50,66]},{\"text\":\"realestateinvestor\",\"indices\":[67,86]},{\"text\":\"houseforsale\",\"indices\":[87,100]},{\"text\":\"houseforrent\",\"indices\":[101,114]},{\"text\":\"OfficeSpace\",\"indices\":[115,127]},{\"text\":\"office\",\"indices\":[128,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"thursdayvibes\",\"indices\":[144,158]},{\"text\":\"capitec\",\"indices\":[160,168]},{\"text\":\"Deborah\",\"indices\":[169,177]},{\"text\":\"Arise\",\"indices\":[178,184]},{\"text\":\"BibleBuild\",\"indices\":[198,209]},{\"text\":\"PokemonScarletViolet\",\"indices\":[210,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555237661354385408,\"id_str\":\"1555237661354385408\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"url\":\"https:\\/\\/t.co\\/QRvVsLNQfS\",\"display_url\":\"pic.twitter.com\\/QRvVsLNQfS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnyteInvestment\\/status\\/1555237679377399809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"265\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[227,234]},{\"text\":\"capitec\",\"indices\":[235,243]},{\"text\":\"NECL\",\"indices\":[244,249]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555237487114584064,\"id_str\":\"1555237487114584064\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"url\":\"https:\\/\\/t.co\\/ii0ZYtyYog\",\"display_url\":\"pic.twitter.com\\/ii0ZYtyYog\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555237490612731906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}}]},\"266\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"capitec\",\"indices\":[135,143]},{\"text\":\"thursdayvibes\",\"indices\":[144,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"267\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"capitec\",\"indices\":[63,71]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[72,95]},{\"text\":\"timesupolivia\",\"indices\":[96,110]},{\"text\":\"BibleSumett\",\"indices\":[111,123]},{\"text\":\"PokemonScarletViolet\",\"indices\":[124,145]},{\"text\":\"onstorm\",\"indices\":[146,154]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[155,169]},{\"text\":\"PokemonPresents\",\"indices\":[170,186]},{\"text\":\"kagiso\",\"indices\":[187,194]},{\"text\":\"MilePhakphum\",\"indices\":[195,208]},{\"text\":\"JKLive\",\"indices\":[209,216]},{\"text\":\"BibleBuild\",\"indices\":[217,228]},{\"text\":\"TASYAXTRAFARASYA\",\"indices\":[229,246]},{\"text\":\"thursdayvibes\",\"indices\":[247,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555236063790104577,\"id_str\":\"1555236063790104577\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"url\":\"https:\\/\\/t.co\\/q3EnTanOHT\",\"display_url\":\"pic.twitter.com\\/q3EnTanOHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555236168366686208\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"268\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"Cucurella\",\"indices\":[93,103]},{\"text\":\"bellashmurda\",\"indices\":[104,117]},{\"text\":\"GodAbeg\",\"indices\":[118,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"269\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"capitec\",\"indices\":[108,116]},{\"text\":\"thursdayvibes\",\"indices\":[117,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"270\":{\"hashtags\":[{\"text\":\"Elonmusk\",\"indices\":[176,185]},{\"text\":\"Davido\",\"indices\":[186,193]},{\"text\":\"PVC\",\"indices\":[204,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[222,247]},{\"text\":\"Cars\",\"indices\":[248,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_Tiga_b\",\"name\":\"ABIODUN THE CAR PLUG.\",\"id\":2222099067,\"id_str\":\"2222099067\",\"indices\":[0,8]},{\"screen_name\":\"opekingfrosh\",\"name\":\"\\ud83d\\udc51KingFrosh Autos and Interior\\/Exterior Upgrade\\ud83d\\ude98\",\"id\":1290271340818247680,\"id_str\":\"1290271340818247680\",\"indices\":[9,22]},{\"screen_name\":\"PELSAUTOS\",\"name\":\"PELS AUTO CARE\",\"id\":4508947042,\"id_str\":\"4508947042\",\"indices\":[23,33]},{\"screen_name\":\"oris616\",\"name\":\"Demmy Of Lagos.....Lhomi Autos\",\"id\":419081881,\"id_str\":\"419081881\",\"indices\":[34,42]},{\"screen_name\":\"isellnbuycars\",\"name\":\"FEMI(All about Cars)\\u00ae\\ud83d\\ude97\",\"id\":820197612162871296,\"id_str\":\"820197612162871296\",\"indices\":[43,57]},{\"screen_name\":\"Autorush2\",\"name\":\"Autorush\",\"id\":1194500250054119424,\"id_str\":\"1194500250054119424\",\"indices\":[58,68]},{\"screen_name\":\"Gidi_Traffic\",\"name\":\"GIDI\",\"id\":378809160,\"id_str\":\"378809160\",\"indices\":[69,82]},{\"screen_name\":\"AutosGidi\",\"name\":\"GidiAutos\",\"id\":1056664333764255744,\"id_str\":\"1056664333764255744\",\"indices\":[83,93]},{\"screen_name\":\"KingFadAutos\",\"name\":\"KingFad Autos\\ud83d\\ude98\",\"id\":993557732400779265,\"id_str\":\"993557732400779265\",\"indices\":[96,109]},{\"screen_name\":\"kazxyautos\",\"name\":\"Kazxyautos\",\"id\":1173498365860044800,\"id_str\":\"1173498365860044800\",\"indices\":[110,121]},{\"screen_name\":\"KingsmenAuto\",\"name\":\"Kingsmen Automobiles\\u00ae\",\"id\":1197041333292154888,\"id_str\":\"1197041333292154888\",\"indices\":[122,135]},{\"screen_name\":\"bims6_0\",\"name\":\"\\u2018\",\"id\":1275063132734423040,\"id_str\":\"1275063132734423040\",\"indices\":[136,144]},{\"screen_name\":\"Mr_uncle_jide\",\"name\":\"Lagos Mainland Car Plug \\ud83d\\ude01\\ud83d\\ude97\\ud83d\\ude99\",\"id\":355074977,\"id_str\":\"355074977\",\"indices\":[145,159]},{\"screen_name\":\"CarsConnectNG\",\"name\":\"CARS CONNECT NG \\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1262999274461310976,\"id_str\":\"1262999274461310976\",\"indices\":[160,174]}],\"urls\":[],\"media\":[{\"id\":1555234395933507588,\"id_str\":\"1555234395933507588\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"}}}]},\"271\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"Cucurella\",\"indices\":[211,221]},{\"text\":\"azpilicueta\",\"indices\":[222,234]},{\"text\":\"chelaea\",\"indices\":[235,243]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[0,15]}],\"urls\":[]},\"272\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231228764295169,\"id_str\":\"1555231228764295169\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"}}}]},\"273\":{\"hashtags\":[{\"text\":\"omojesucfr\",\"indices\":[24,35]},{\"text\":\"followme\",\"indices\":[36,45]},{\"text\":\"Taiwan\",\"indices\":[46,53]},{\"text\":\"capitec\",\"indices\":[54,62]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[63,86]},{\"text\":\"timesupolivia\",\"indices\":[87,101]},{\"text\":\"BibleSumett\",\"indices\":[102,114]},{\"text\":\"PokemonScarletViolet\",\"indices\":[115,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"PokemonPresents\",\"indices\":[146,162]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[163,177]},{\"text\":\"kagiso\",\"indices\":[178,185]},{\"text\":\"MilePhakphum\",\"indices\":[186,199]},{\"text\":\"JKLive\",\"indices\":[200,207]},{\"text\":\"BibleBuild\",\"indices\":[208,219]},{\"text\":\"thursdayvibes\",\"indices\":[220,234]},{\"text\":\"TASYAXTRAFARASYA\",\"indices\":[235,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231241796042752,\"id_str\":\"1555231241796042752\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"url\":\"https:\\/\\/t.co\\/0VeX3MpLGa\",\"display_url\":\"pic.twitter.com\\/0VeX3MpLGa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OMOJESUCFR\\/status\\/1555231420993478661\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":870,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":563,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":720,\"resize\":\"fit\"}}}]},\"274\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231185214885888,\"id_str\":\"1555231185214885888\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":643,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"}}}]},\"275\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231069720481792,\"id_str\":\"1555231069720481792\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}}]},\"276\":{\"hashtags\":[{\"text\":\"BurnaBoy\",\"indices\":[21,30]},{\"text\":\"burna\",\"indices\":[31,37]},{\"text\":\"Wizkid\",\"indices\":[38,45]},{\"text\":\"beautytukura\",\"indices\":[46,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"capitec\",\"indices\":[68,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]},{\"text\":\"Doyin\",\"indices\":[86,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555230858944069632,\"id_str\":\"1555230858944069632\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"url\":\"https:\\/\\/t.co\\/zh5UqmwfBT\",\"display_url\":\"pic.twitter.com\\/zh5UqmwfBT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_tusure\\/status\\/1555231253607194624\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"277\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"tinubu\",\"indices\":[233,240]},{\"text\":\"Ronaldo\",\"indices\":[241,249]},{\"text\":\"rufai\",\"indices\":[250,256]},{\"text\":\"sabinus\",\"indices\":[257,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231010064896000,\"id_str\":\"1555231010064896000\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}}]},\"278\":{\"hashtags\":[{\"text\":\"TGA\",\"indices\":[186,190]},{\"text\":\"PKOG\",\"indices\":[191,196]},{\"text\":\"RHEMADOSAGE\",\"indices\":[197,209]},{\"text\":\"Twitter\",\"indices\":[210,218]},{\"text\":\"instagram\",\"indices\":[219,229]},{\"text\":\"Tomorrow\",\"indices\":[230,239]},{\"text\":\"Friday\",\"indices\":[240,247]},{\"text\":\"Taiwan\",\"indices\":[248,255]},{\"text\":\"capitec\",\"indices\":[256,264]},{\"text\":\"JESUS\",\"indices\":[265,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231060673323009,\"id_str\":\"1555231060673323009\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKaOMWYAECDC_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKaOMWYAECDC_.jpg\",\"url\":\"https:\\/\\/t.co\\/SqnyiqaVVv\",\"display_url\":\"pic.twitter.com\\/SqnyiqaVVv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PastorKelvin6\\/status\\/1555231080936099842\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"279\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"280\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"TableShaker\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[0,13]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[63,76]},{\"screen_name\":\"UchePOkoye\",\"name\":\"Anambra 1st son\\ud83d\\udcad\",\"id\":104841568,\"id_str\":\"104841568\",\"indices\":[241,252]}],\"urls\":[],\"media\":[{\"id\":1555229954048155649,\"id_str\":\"1555229954048155649\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"url\":\"https:\\/\\/t.co\\/HvUJEYPLT4\",\"display_url\":\"pic.twitter.com\\/HvUJEYPLT4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Degreat046\\/status\\/1555229961732194307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":496,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":987,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":987,\"resize\":\"fit\"}}}]},\"281\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"282\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[81,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"Wizkid\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555228297512058882,\"id_str\":\"1555228297512058882\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"url\":\"https:\\/\\/t.co\\/xTV2UtbAoO\",\"display_url\":\"pic.twitter.com\\/xTV2UtbAoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kings_xchange\\/status\\/1555228303707017217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":535,\"resize\":\"fit\"}}}]},\"283\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"capitec\",\"indices\":[189,197]},{\"text\":\"thursdayvibes\",\"indices\":[198,212]},{\"text\":\"kagiso\",\"indices\":[213,220]},{\"text\":\"Zamfarabandits\",\"indices\":[221,236]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBCAfrica\",\"name\":\"BBC News Africa\",\"id\":36670025,\"id_str\":\"36670025\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SvB8yG3fRB\",\"expanded_url\":\"https:\\/\\/youtu.be\\/g-fPEHUqhyA\",\"display_url\":\"youtu.be\\/g-fPEHUqhyA\",\"indices\":[237,260]}]},\"284\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[81,89]},{\"text\":\"Taiwan\",\"indices\":[137,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"285\":{\"hashtags\":[{\"text\":\"bat\",\"indices\":[91,95]},{\"text\":\"BB24\",\"indices\":[96,101]},{\"text\":\"APC\",\"indices\":[102,106]},{\"text\":\"chelsea\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Badboytimz\",\"name\":\"Bad Boy Timz \\u26a1\\ufe0f\",\"id\":186891326,\"id_str\":\"186891326\",\"indices\":[56,67]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[68,81]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[82,90]}],\"urls\":[],\"media\":[{\"id\":1555225367094362112,\"id_str\":\"1555225367094362112\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"url\":\"https:\\/\\/t.co\\/d7KWZW8o6P\",\"display_url\":\"pic.twitter.com\\/d7KWZW8o6P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555225412145405952\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"286\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[67,85]},{\"text\":\"news\",\"indices\":[86,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2NvI1GWAPI\",\"expanded_url\":\"https:\\/\\/www.brief.ng\\/politics\\/update-on-the-taiwan-china-crisis\\/\",\"display_url\":\"brief.ng\\/politics\\/updat\\u2026\",\"indices\":[34,57]}],\"media\":[{\"id\":1555224387703513092,\"id_str\":\"1555224387703513092\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"url\":\"https:\\/\\/t.co\\/W1gUdkdJgc\",\"display_url\":\"pic.twitter.com\\/W1gUdkdJgc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BriefNig\\/status\\/1555224391016931329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"medium\":{\"w\":577,\"h\":428,\"resize\":\"fit\"}}}]},\"287\":{\"hashtags\":[{\"text\":\"edwindela\",\"indices\":[144,154]},{\"text\":\"ghanayoutubers\",\"indices\":[155,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"sabinus\",\"indices\":[179,187]},{\"text\":\"BBNaija\",\"indices\":[188,196]},{\"text\":\"BBNajiaS7\",\"indices\":[199,209]},{\"text\":\"Ghana\",\"indices\":[210,216]},{\"text\":\"capitec\",\"indices\":[261,269]},{\"text\":\"JKLive\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6jVhbeLzd8\",\"expanded_url\":\"http:\\/\\/youtube.com\\/c\\/EdwinDela\",\"display_url\":\"youtube.com\\/c\\/EdwinDela\",\"indices\":[83,106]}],\"media\":[{\"id\":1555223948794777600,\"id_str\":\"1555223948794777600\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVD8QYX0AAUd5k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVD8QYX0AAUd5k.jpg\",\"url\":\"https:\\/\\/t.co\\/UvghxtWYEz\",\"display_url\":\"pic.twitter.com\\/UvghxtWYEz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinDelasi\\/status\\/1555223955497271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"288\":{\"hashtags\":[{\"text\":\"edwindela\",\"indices\":[144,154]},{\"text\":\"ghanayoutubers\",\"indices\":[155,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"sabinus\",\"indices\":[179,187]},{\"text\":\"BBNaija\",\"indices\":[188,196]},{\"text\":\"BBNajiaS7\",\"indices\":[199,209]},{\"text\":\"Ghana\",\"indices\":[210,216]},{\"text\":\"capitec\",\"indices\":[261,269]},{\"text\":\"JKLive\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6jVhbeLzd8\",\"expanded_url\":\"http:\\/\\/youtube.com\\/c\\/EdwinDela\",\"display_url\":\"youtube.com\\/c\\/EdwinDela\",\"indices\":[83,106]}],\"media\":[{\"id\":1555223831496859648,\"id_str\":\"1555223831496859648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVD1baXoAAPEMW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVD1baXoAAPEMW.jpg\",\"url\":\"https:\\/\\/t.co\\/8Ztx1T4t1Z\",\"display_url\":\"pic.twitter.com\\/8Ztx1T4t1Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinDelasi\\/status\\/1555223839545630720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1033,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":585,\"resize\":\"fit\"},\"large\":{\"w\":1999,\"h\":1721,\"resize\":\"fit\"}}}]},\"289\":{\"hashtags\":[{\"text\":\"edwindela\",\"indices\":[146,156]},{\"text\":\"ghanayoutubers\",\"indices\":[157,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]},{\"text\":\"sabinus\",\"indices\":[181,189]},{\"text\":\"BBNaija\",\"indices\":[190,198]},{\"text\":\"BBNajiaS7\",\"indices\":[200,210]},{\"text\":\"Ghana\",\"indices\":[211,217]},{\"text\":\"capitec\",\"indices\":[262,270]},{\"text\":\"JKLive\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pNHbl2XZj6\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/EdwinDela\",\"display_url\":\"youtube.com\\/c\\/EdwinDela\",\"indices\":[85,108]}]},\"290\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"capitec\",\"indices\":[46,54]},{\"text\":\"timesupolivia\",\"indices\":[55,69]},{\"text\":\"CommonwealthGames2022\",\"indices\":[70,92]},{\"text\":\"thursdayvibes\",\"indices\":[93,107]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[108,137]},{\"text\":\"onstorm\",\"indices\":[138,146]},{\"text\":\"BibleSumett\",\"indices\":[147,159]},{\"text\":\"PokemonScarletViolet\",\"indices\":[160,181]},{\"text\":\"winmetawin\",\"indices\":[182,193]},{\"text\":\"BBNaija\",\"indices\":[194,202]},{\"text\":\"sabinus\",\"indices\":[203,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5jZCnFs9l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ktboldy\\/status\\/1555104647567777794\",\"display_url\":\"twitter.com\\/ktboldy\\/status\\u2026\",\"indices\":[212,235]}]},\"291\":{\"hashtags\":[{\"text\":\"PrimeVideoNaija\",\"indices\":[20,36]},{\"text\":\"BBNaija\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BbnaijaS7\",\"indices\":[81,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555220066597232641,\"id_str\":\"1555220066597232641\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"url\":\"https:\\/\\/t.co\\/jSCunSLu3Z\",\"display_url\":\"pic.twitter.com\\/jSCunSLu3Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220227746664448\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"},\"medium\":{\"w\":854,\"h\":474,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":474,\"resize\":\"fit\"}}}]},\"292\":{\"hashtags\":[{\"text\":\"PrimeVideoNaija\",\"indices\":[73,89]},{\"text\":\"BBNaija\",\"indices\":[117,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"BbnaijaS7\",\"indices\":[134,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555219299949764610,\"id_str\":\"1555219299949764610\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"url\":\"https:\\/\\/t.co\\/lScNEVABlX\",\"display_url\":\"pic.twitter.com\\/lScNEVABlX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220046305181696\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"293\":{\"hashtags\":[{\"text\":\"thursdayvibes\",\"indices\":[63,77]},{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[88,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"294\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"BIGWIZ\",\"indices\":[197,204]},{\"text\":\"Don\",\"indices\":[205,209]},{\"text\":\"ASUU\",\"indices\":[220,225]},{\"text\":\"twins\",\"indices\":[226,232]},{\"text\":\"DoctorWho\",\"indices\":[233,243]},{\"text\":\"Burnaboy\",\"indices\":[245,254]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Remmzor__\",\"name\":\"TheRemmySaheed \\ud83d\\ude0f\",\"id\":1001152129153847296,\"id_str\":\"1001152129153847296\",\"indices\":[0,10]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[68,76]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[77,86]},{\"screen_name\":\"cruelsantino\",\"name\":\"Santi\",\"id\":152403832,\"id_str\":\"152403832\",\"indices\":[87,100]},{\"screen_name\":\"cuppymusic\",\"name\":\"Cuppy\",\"id\":226944459,\"id_str\":\"226944459\",\"indices\":[102,113]},{\"screen_name\":\"TemiOtedola\",\"name\":\"Temi Otedola\",\"id\":2829932277,\"id_str\":\"2829932277\",\"indices\":[114,126]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[127,134]},{\"screen_name\":\"iamtheOsagie\",\"name\":\"Osagie O.\",\"id\":19872233,\"id_str\":\"19872233\",\"indices\":[136,149]},{\"screen_name\":\"FrankHasAPlan\",\"name\":\"frankhasaplan.eth\",\"id\":216231636,\"id_str\":\"216231636\",\"indices\":[150,164]},{\"screen_name\":\"Badboytimz\",\"name\":\"Bad Boy Timz \\u26a1\\ufe0f\",\"id\":186891326,\"id_str\":\"186891326\",\"indices\":[165,176]},{\"screen_name\":\"fireboydml\",\"name\":\"Fireboy DML\",\"id\":4537552402,\"id_str\":\"4537552402\",\"indices\":[177,188]}],\"urls\":[],\"media\":[{\"id\":1555219685959933952,\"id_str\":\"1555219685959933952\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"url\":\"https:\\/\\/t.co\\/9IwrKho6D7\",\"display_url\":\"pic.twitter.com\\/9IwrKho6D7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Heisoovii\\/status\\/1555219782856851458\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"295\":{\"hashtags\":[{\"text\":\"BreakingNews\",\"indices\":[25,38]},{\"text\":\"Taiwan\",\"indices\":[39,46]},{\"text\":\"AsifGhafoor\",\"indices\":[47,59]},{\"text\":\"HelicopterCrash\",\"indices\":[60,76]},{\"text\":\"AhadRazaMir\",\"indices\":[77,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555219206618103808,\"id_str\":\"1555219206618103808\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"url\":\"https:\\/\\/t.co\\/s1bj2Id58o\",\"display_url\":\"pic.twitter.com\\/s1bj2Id58o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fatima_shaaikh\\/status\\/1555219220975308802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":668,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":379,\"h\":680,\"resize\":\"fit\"}}}]},\"296\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[178,185]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[186,215]},{\"text\":\"capitec\",\"indices\":[216,224]},{\"text\":\"CommonwealthGames2022\",\"indices\":[225,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"297\":{\"hashtags\":[{\"text\":\"davido\",\"indices\":[116,123]},{\"text\":\"sabinus\",\"indices\":[124,132]},{\"text\":\"thursdayvibes\",\"indices\":[133,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[156,185]},{\"text\":\"BibleSumett\",\"indices\":[186,198]},{\"text\":\"BBNaija\",\"indices\":[199,207]},{\"text\":\"Trending\",\"indices\":[208,217]},{\"text\":\"TrendingTopics\",\"indices\":[218,233]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[0,7]},{\"screen_name\":\"primevideonaija\",\"name\":\"Prime Video Naija\",\"id\":1517588031724658691,\"id_str\":\"1517588031724658691\",\"indices\":[8,24]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[25,32]}],\"urls\":[],\"media\":[{\"id\":1555218459960680453,\"id_str\":\"1555218459960680453\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"url\":\"https:\\/\\/t.co\\/RVZHJv4Dq9\",\"display_url\":\"pic.twitter.com\\/RVZHJv4Dq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218967303753729\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"298\":{\"hashtags\":[{\"text\":\"IkeEkweremadu\",\"indices\":[203,217]},{\"text\":\"sabinus\",\"indices\":[218,226]},{\"text\":\"iphone14\",\"indices\":[227,236]},{\"text\":\"Dino\",\"indices\":[237,242]},{\"text\":\"Taiwan\",\"indices\":[243,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"299\":{\"hashtags\":[{\"text\":\"MUFC\",\"indices\":[122,127]},{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"thursdayvibes\",\"indices\":[136,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"300\":{\"hashtags\":[{\"text\":\"davido\",\"indices\":[116,123]},{\"text\":\"sabinus\",\"indices\":[124,132]},{\"text\":\"thursdayvibes\",\"indices\":[133,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[156,185]},{\"text\":\"BibleSumett\",\"indices\":[186,198]},{\"text\":\"BBNaija\",\"indices\":[199,207]},{\"text\":\"Trending\",\"indices\":[208,217]},{\"text\":\"TrendingTopics\",\"indices\":[218,233]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[0,7]},{\"screen_name\":\"primevideonaija\",\"name\":\"Prime Video Naija\",\"id\":1517588031724658691,\"id_str\":\"1517588031724658691\",\"indices\":[8,24]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[25,32]}],\"urls\":[],\"media\":[{\"id\":1555217157318971392,\"id_str\":\"1555217157318971392\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"url\":\"https:\\/\\/t.co\\/eP39dmYkk0\",\"display_url\":\"pic.twitter.com\\/eP39dmYkk0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218235380875266\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"301\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[37,66]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[67,90]},{\"text\":\"capitec\",\"indices\":[91,99]},{\"text\":\"timesupolivia\",\"indices\":[100,114]},{\"text\":\"timesupolivia\",\"indices\":[115,129]},{\"text\":\"onstorm\",\"indices\":[130,138]},{\"text\":\"BibleSumett\",\"indices\":[139,151]},{\"text\":\"PokemonScarletViolet\",\"indices\":[152,173]},{\"text\":\"winmetawin\",\"indices\":[174,185]},{\"text\":\"thursdayvibes\",\"indices\":[186,200]},{\"text\":\"sabinus\",\"indices\":[201,209]},{\"text\":\"kagiso\",\"indices\":[210,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ateaseauto\",\"name\":\"At Ease Auto & Energies\",\"id\":1538852053145030658,\"id_str\":\"1538852053145030658\",\"indices\":[15,26]}],\"urls\":[],\"media\":[{\"id\":1555215915213590528,\"id_str\":\"1555215915213590528\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"url\":\"https:\\/\\/t.co\\/IcB3qoU3yo\",\"display_url\":\"pic.twitter.com\\/IcB3qoU3yo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Realseunkazeem\\/status\\/1555215938898755585\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"302\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[10,17]},{\"text\":\"sabinus\",\"indices\":[18,26]},{\"text\":\"capitec\",\"indices\":[27,35]},{\"text\":\"BibleSumett\",\"indices\":[36,48]},{\"text\":\"bala\",\"indices\":[49,54]},{\"text\":\"lexsus\",\"indices\":[55,62]},{\"text\":\"automoblie\",\"indices\":[63,74]},{\"text\":\"blackownedbusiness\",\"indices\":[75,94]},{\"text\":\"black\",\"indices\":[95,101]},{\"text\":\"blackgirlmagic\",\"indices\":[102,117]},{\"text\":\"money\",\"indices\":[118,124]},{\"text\":\"newmonthnewgoals\",\"indices\":[125,142]},{\"text\":\"lagosbusiness\",\"indices\":[143,157]},{\"text\":\"ibadan\",\"indices\":[158,165]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555213939134369792,\"id_str\":\"1555213939134369792\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"url\":\"https:\\/\\/t.co\\/zeEkduujDv\",\"display_url\":\"pic.twitter.com\\/zeEkduujDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ateaseauto\\/status\\/1555214019400810498\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"303\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[234,241]},{\"text\":\"Sheggz\",\"indices\":[242,249]},{\"text\":\"ASUU\",\"indices\":[250,255]},{\"text\":\"arisetv\",\"indices\":[256,264]},{\"text\":\"buhari\",\"indices\":[265,272]},{\"text\":\"wizkid\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555212987299946497,\"id_str\":\"1555212987299946497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"url\":\"https:\\/\\/t.co\\/2T16mzm66j\",\"display_url\":\"pic.twitter.com\\/2T16mzm66j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/edublogsng\\/status\\/1555213282570514433\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"304\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[52,56]},{\"text\":\"oilpainting\",\"indices\":[57,69]},{\"text\":\"painting\",\"indices\":[70,79]},{\"text\":\"color\",\"indices\":[80,86]},{\"text\":\"oiloncanvas\",\"indices\":[87,99]},{\"text\":\"artwork\",\"indices\":[100,108]},{\"text\":\"exploremore\",\"indices\":[109,121]},{\"text\":\"explorepage\",\"indices\":[122,134]},{\"text\":\"fyp\",\"indices\":[135,139]},{\"text\":\"viral\",\"indices\":[140,146]},{\"text\":\"explore\",\"indices\":[147,155]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"explorer\",\"indices\":[164,173]},{\"text\":\"artist\",\"indices\":[174,181]},{\"text\":\"NFT\",\"indices\":[182,186]},{\"text\":\"buyart\",\"indices\":[187,194]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[195,224]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[225,248]},{\"text\":\"visualart\",\"indices\":[249,259]},{\"text\":\"fineart\",\"indices\":[260,268]},{\"text\":\"EndSARS\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555212991762669569,\"id_str\":\"1555212991762669569\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"url\":\"https:\\/\\/t.co\\/6jLeVt1HGi\",\"display_url\":\"pic.twitter.com\\/6jLeVt1HGi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1555213231454552069\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"305\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[235,242]},{\"text\":\"BBNaija\",\"indices\":[243,251]},{\"text\":\"BBC\",\"indices\":[252,256]},{\"text\":\"AfrobeatsTheBackstory\",\"indices\":[257,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[64,73]},{\"screen_name\":\"ubifranklin1\",\"name\":\"ubi Franklin ofem\",\"id\":15223566,\"id_str\":\"15223566\",\"indices\":[74,87]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[88,95]},{\"screen_name\":\"NICKIMINAJ\",\"name\":\"Nicki Minaj\",\"id\":35787166,\"id_str\":\"35787166\",\"indices\":[96,107]},{\"screen_name\":\"patorankingfire\",\"name\":\"PATORANKING\",\"id\":66000793,\"id_str\":\"66000793\",\"indices\":[108,124]},{\"screen_name\":\"temsbaby\",\"name\":\"TEMS\",\"id\":1327148227,\"id_str\":\"1327148227\",\"indices\":[125,134]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[135,146]},{\"screen_name\":\"alhajitekno\",\"name\":\"Tekno\",\"id\":4375041622,\"id_str\":\"4375041622\",\"indices\":[147,159]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[160,170]},{\"screen_name\":\"patorankingfire\",\"name\":\"PATORANKING\",\"id\":66000793,\"id_str\":\"66000793\",\"indices\":[171,187]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[188,196]},{\"screen_name\":\"kanyewest\",\"name\":\"ye\",\"id\":169686021,\"id_str\":\"169686021\",\"indices\":[197,207]},{\"screen_name\":\"officialnairam1\",\"name\":\"nairamarley\",\"id\":1150409755342573569,\"id_str\":\"1150409755342573569\",\"indices\":[208,224]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[225,234]}],\"urls\":[],\"media\":[{\"id\":1555212143154298880,\"id_str\":\"1555212143154298880\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"url\":\"https:\\/\\/t.co\\/0jgRDDdSbU\",\"display_url\":\"pic.twitter.com\\/0jgRDDdSbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555212380228960256\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}}}]},\"306\":{\"hashtags\":[{\"text\":\"NATO\",\"indices\":[37,42]},{\"text\":\"russia\",\"indices\":[84,91]},{\"text\":\"WWIII\",\"indices\":[92,98]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[99,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V3fftrZIm3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyPostNGR\\/status\\/1555211204636905474\",\"display_url\":\"twitter.com\\/DailyPostNGR\\/s\\u2026\",\"indices\":[121,144]}]},\"307\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"PeterObi2023\",\"indices\":[242,255]},{\"text\":\"landbanking\",\"indices\":[257,269]},{\"text\":\"landscape\",\"indices\":[270,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7gLvZAzOZg\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/2s393ktt\",\"display_url\":\"tinyurl.com\\/2s393ktt\",\"indices\":[178,201]}],\"media\":[{\"id\":1555211349680087044,\"id_str\":\"1555211349680087044\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"url\":\"https:\\/\\/t.co\\/Yn4c3dWBGh\",\"display_url\":\"pic.twitter.com\\/Yn4c3dWBGh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnChudosky\\/status\\/1555211358597160961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"308\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"capitec\",\"indices\":[198,206]},{\"text\":\"CommonwealthGames2022\",\"indices\":[207,229]},{\"text\":\"iphone14\",\"indices\":[235,244]},{\"text\":\"Wizkid\",\"indices\":[245,252]},{\"text\":\"Cucurella\",\"indices\":[253,263]},{\"text\":\"BBNaija\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555210948415307777,\"id_str\":\"1555210948415307777\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"url\":\"https:\\/\\/t.co\\/ttOTCeFsTr\",\"display_url\":\"pic.twitter.com\\/ttOTCeFsTr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1555210958066294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"309\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"PelosiVisit\",\"indices\":[142,154]},{\"text\":\"UkraineRussiaWar\",\"indices\":[156,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"310\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[183,190]},{\"text\":\"timesupolivia\",\"indices\":[191,205]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[206,226]},{\"text\":\"winmetawin\",\"indices\":[227,238]},{\"text\":\"PokemonScarletViolet\",\"indices\":[239,260]},{\"text\":\"SheggzOlu\",\"indices\":[261,271]},{\"text\":\"onstorm\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"311\":{\"hashtags\":[{\"text\":\"AllOrNothingArsenal\",\"indices\":[95,115]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[116,139]},{\"text\":\"BBCOurNextPM\",\"indices\":[140,153]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[154,169]},{\"text\":\"umuahia\",\"indices\":[170,178]},{\"text\":\"SheggzOlu\",\"indices\":[181,191]},{\"text\":\"MONEY\",\"indices\":[192,198]},{\"text\":\"phtwittercommunity\",\"indices\":[199,218]},{\"text\":\"sabinus\",\"indices\":[219,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"Simp\",\"indices\":[236,241]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555204698088554496,\"id_str\":\"1555204698088554496\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"url\":\"https:\\/\\/t.co\\/SI0FBo6nXP\",\"display_url\":\"pic.twitter.com\\/SI0FBo6nXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sunshinemporium\\/status\\/1555204755034722304\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"312\":{\"hashtags\":[{\"text\":\"AllOrNothingArsenal\",\"indices\":[104,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[133,156]},{\"text\":\"PokemonScarletViolet\",\"indices\":[157,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"myaccessbank\",\"name\":\"Access Bank Plc\",\"id\":190615522,\"id_str\":\"190615522\",\"indices\":[62,75]}],\"urls\":[]},\"313\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"ASUUstrike\",\"indices\":[73,84]},{\"text\":\"ASUU\",\"indices\":[85,90]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[92,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4dhL4QTvks\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Src90b\",\"display_url\":\"bit.ly\\/3Src90b\",\"indices\":[126,149]}]},\"314\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"timesupolivia\",\"indices\":[88,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsWwjgB9jA\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3zVk1jl\",\"display_url\":\"bit.ly\\/3zVk1jl\",\"indices\":[113,136]}]},\"315\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"MONEY\",\"indices\":[114,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"316\":{\"hashtags\":[{\"text\":\"iphone11\",\"indices\":[125,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[144,164]},{\"text\":\"AamirKhan\",\"indices\":[166,176]},{\"text\":\"MONEY\",\"indices\":[178,184]},{\"text\":\"sabinus\",\"indices\":[186,194]},{\"text\":\"SheggzOlu\",\"indices\":[196,206]},{\"text\":\"onstorm\",\"indices\":[208,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GistHubNaija\",\"name\":\"GistHub\",\"id\":854041219156070400,\"id_str\":\"854041219156070400\",\"indices\":[110,123]}],\"urls\":[],\"media\":[{\"id\":1555203508659490816,\"id_str\":\"1555203508659490816\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjge4pwSaL\",\"display_url\":\"pic.twitter.com\\/Qjge4pwSaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GistHubNaija\\/status\\/1555203587046887425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"317\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Simp\",\"indices\":[74,79]},{\"text\":\"superettan\",\"indices\":[80,91]},{\"text\":\"SuperEagles\",\"indices\":[92,104]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[105,125]},{\"text\":\"CristianoRonaldo\",\"indices\":[126,143]},{\"text\":\"iPhone13\",\"indices\":[144,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P0plKFZF5o\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JupmBn\",\"display_url\":\"bit.ly\\/3JupmBn\",\"indices\":[164,187]}]},\"318\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"piconsensus2022\",\"indices\":[34,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555203034082414594,\"id_str\":\"1555203034082414594\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"url\":\"https:\\/\\/t.co\\/LcDAYcTaY0\",\"display_url\":\"pic.twitter.com\\/LcDAYcTaY0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1555203105435836416\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"319\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"LovelyINU\",\"indices\":[72,82]},{\"text\":\"iphone14\",\"indices\":[83,92]},{\"text\":\"iphone6\",\"indices\":[93,101]},{\"text\":\"piConsen\",\"indices\":[102,111]},{\"text\":\"Slimp\",\"indices\":[112,118]},{\"text\":\"Bone\",\"indices\":[119,124]},{\"text\":\"JustinBieber\",\"indices\":[125,138]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"MONEY\",\"indices\":[147,153]},{\"text\":\"Airtel\",\"indices\":[154,161]},{\"text\":\"London\",\"indices\":[162,169]},{\"text\":\"NeverAgain\",\"indices\":[170,181]},{\"text\":\"SquidGame\",\"indices\":[182,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"320\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[60,83]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[84,102]},{\"text\":\"ChinaTaiwan\",\"indices\":[103,115]},{\"text\":\"iPhone\",\"indices\":[116,123]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[124,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fwteHWjrmq\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JJw9rj\",\"display_url\":\"bit.ly\\/3JJw9rj\",\"indices\":[156,179]}]},\"321\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[88,97]},{\"text\":\"BBNaija\",\"indices\":[98,106]},{\"text\":\"ChelseaFC\",\"indices\":[107,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555201877087772674,\"id_str\":\"1555201877087772674\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"url\":\"https:\\/\\/t.co\\/0X1IN17Ti6\",\"display_url\":\"pic.twitter.com\\/0X1IN17Ti6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555201883526107141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":923,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":923,\"resize\":\"fit\"}}}]},\"322\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[86,109]},{\"text\":\"ASUUstrike\",\"indices\":[110,121]},{\"text\":\"Simp\",\"indices\":[122,127]},{\"text\":\"iPhone13\",\"indices\":[128,137]},{\"text\":\"IPPIS\",\"indices\":[138,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WGP9is3TsK\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3QojlZv\",\"display_url\":\"bit.ly\\/3QojlZv\",\"indices\":[155,178]}]},\"323\":{\"hashtags\":[{\"text\":\"LebokuInternationalNewYamfestival\",\"indices\":[41,75]},{\"text\":\"Ugep\",\"indices\":[83,88]},{\"text\":\"boomplayptm\",\"indices\":[240,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"BBNaija\",\"indices\":[262,270]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555201370579427329,\"id_str\":\"1555201370579427329\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"url\":\"https:\\/\\/t.co\\/AGjMoC7ohM\",\"display_url\":\"pic.twitter.com\\/AGjMoC7ohM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djustman007\\/status\\/1555201393216131076\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"324\":{\"hashtags\":[{\"text\":\"Construction\",\"indices\":[68,81]},{\"text\":\"design\",\"indices\":[82,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555200965430722563,\"id_str\":\"1555200965430722563\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"url\":\"https:\\/\\/t.co\\/yAwMxajutT\",\"display_url\":\"pic.twitter.com\\/yAwMxajutT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tuplex50\\/status\\/1555200972980371458\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":960,\"h\":561,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":397,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":561,\"resize\":\"fit\"}}}]},\"325\":{\"hashtags\":[{\"text\":\"Attention\",\"indices\":[0,10]},{\"text\":\"GranFinalTheVoice\",\"indices\":[186,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a77\",\"indices\":[213,221]},{\"text\":\"onstorm\",\"indices\":[222,230]},{\"text\":\"SheggzOlu\",\"indices\":[231,241]},{\"text\":\"sabinus\",\"indices\":[242,250]},{\"text\":\"winmetawin\",\"indices\":[251,262]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Swanskid_\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"indices\":[46,56]},{\"screen_name\":\"Spotify\",\"name\":\"Spotify\",\"id\":17230018,\"id_str\":\"17230018\",\"indices\":[59,67]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sBlVQCd1IW\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/artist\\/2fzXwpt1RYa7YS2akokq4x?si=pjEQbhIZTuGUDtPjpIrwGQ&utm_source=copy-link\",\"display_url\":\"open.spotify.com\\/artist\\/2fzXwpt\\u2026\",\"indices\":[143,166]}]},\"326\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[227,234]},{\"text\":\"timesupolivia\",\"indices\":[235,249]},{\"text\":\"TEAMWANGdesignTHAILAND\",\"indices\":[250,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"327\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"wizkid\",\"indices\":[127,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555197239550791680,\"id_str\":\"1555197239550791680\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"url\":\"https:\\/\\/t.co\\/GLfJo7ie3U\",\"display_url\":\"pic.twitter.com\\/GLfJo7ie3U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555197297847328768\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"328\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[47,59]},{\"text\":\"UkraineRussiaWar\",\"indices\":[60,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"329\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[104,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555196687752335361,\"id_str\":\"1555196687752335361\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"url\":\"https:\\/\\/t.co\\/LonB0rDlm4\",\"display_url\":\"pic.twitter.com\\/LonB0rDlm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olubabaoshole\\/status\\/1555196763736342531\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"330\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"tzuyuedit\",\"indices\":[171,181]},{\"text\":\"twice\",\"indices\":[182,188]},{\"text\":\"taipei\",\"indices\":[189,196]},{\"text\":\"thailand\",\"indices\":[197,206]},{\"text\":\"usa\",\"indices\":[207,211]},{\"text\":\"france\",\"indices\":[212,219]},{\"text\":\"nft\",\"indices\":[220,224]},{\"text\":\"Enjin\",\"indices\":[226,232]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PnV883N3cb\",\"expanded_url\":\"https:\\/\\/mara.xyz\\/me\\/2NVT30\",\"display_url\":\"mara.xyz\\/me\\/2NVT30\",\"indices\":[105,128]}]},\"331\":{\"hashtags\":[{\"text\":\"Attention\",\"indices\":[0,10]},{\"text\":\"GranFinalTheVoice\",\"indices\":[226,244]},{\"text\":\"Taiwan\",\"indices\":[245,252]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a77\",\"indices\":[253,261]},{\"text\":\"onstorm\",\"indices\":[262,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Spotify\",\"name\":\"Spotify\",\"id\":17230018,\"id_str\":\"17230018\",\"indices\":[49,57]},{\"screen_name\":\"Swanskid_\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"indices\":[66,76]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Yw7hXKvPbK\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/artist\\/2fzXwpt1RYa7YS2akokq4x?si=z6FLXoubRQO7bFHUZ059FA\",\"display_url\":\"open.spotify.com\\/artist\\/2fzXwpt\\u2026\",\"indices\":[183,206]}]},\"332\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[24,44]},{\"text\":\"PokemonScarletViolet\",\"indices\":[45,66]},{\"text\":\"AamirKhan\",\"indices\":[67,77]},{\"text\":\"onstorm\",\"indices\":[78,86]},{\"text\":\"SheggzOlu\",\"indices\":[87,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555194081873100800,\"id_str\":\"1555194081873100800\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"url\":\"https:\\/\\/t.co\\/ywYK05ZX3w\",\"display_url\":\"pic.twitter.com\\/ywYK05ZX3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1555194091448811520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"333\":{\"hashtags\":[{\"text\":\"DeFi\",\"indices\":[112,117]},{\"text\":\"MONEY\",\"indices\":[118,124]},{\"text\":\"NIO\",\"indices\":[125,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555193645665587200,\"id_str\":\"1555193645665587200\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"334\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[60,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"timesupolivia\",\"indices\":[77,91]},{\"text\":\"SheggzOlu\",\"indices\":[92,102]},{\"text\":\"sabinus\",\"indices\":[103,111]},{\"text\":\"PokemonPresents\",\"indices\":[112,128]},{\"text\":\"CommonwealthGames2022\",\"indices\":[129,151]},{\"text\":\"B2022Netball\",\"indices\":[152,165]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tiktok_us\",\"name\":\"TikTok US\",\"id\":2401980110,\"id_str\":\"2401980110\",\"indices\":[47,57]}],\"urls\":[],\"media\":[{\"id\":1555192097443037187,\"id_str\":\"1555192097443037187\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"url\":\"https:\\/\\/t.co\\/qRPNMgIwn5\",\"display_url\":\"pic.twitter.com\\/qRPNMgIwn5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pemercltd\\/status\\/1555192171078340608\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"335\":{\"hashtags\":[{\"text\":\"NancyPelosiTaiwanVisit\",\"indices\":[72,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[104,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BQhNvR2qE4\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\\/breaking-china-fires-missiles-near-taiwan-in-drills-after-pelosi-visit\\/\",\"display_url\":\"onlinepikin.com\\/breaking-china\\u2026\",\"indices\":[124,147]}]},\"336\":{\"hashtags\":[{\"text\":\"FoundersDay\",\"indices\":[42,54]},{\"text\":\"fabrizio\",\"indices\":[68,77]},{\"text\":\"cucurella\",\"indices\":[78,88]},{\"text\":\"designandbuild\",\"indices\":[103,118]},{\"text\":\"homedecor\",\"indices\":[119,129]},{\"text\":\"interiordesign\",\"indices\":[130,145]},{\"text\":\"Taiwan\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"ghana\",\"indices\":[171,177]},{\"text\":\"kwamenkrumah\",\"indices\":[178,191]},{\"text\":\"thebigsix\",\"indices\":[192,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555191273857875968,\"id_str\":\"1555191273857875968\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUmOUwWAAAvLNQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUmOUwWAAAvLNQ.jpg\",\"url\":\"https:\\/\\/t.co\\/OjJXKjIxaW\",\"display_url\":\"pic.twitter.com\\/OjJXKjIxaW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/moldersgroup\\/status\\/1555191551189557253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1199,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2046,\"resize\":\"fit\"}}}]},\"337\":{\"hashtags\":[{\"text\":\"arisetv\",\"indices\":[238,246]},{\"text\":\"sabinus\",\"indices\":[247,255]},{\"text\":\"Taiwan\",\"indices\":[256,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"338\":{\"hashtags\":[{\"text\":\"Peace\",\"indices\":[145,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"China\",\"indices\":[160,166]},{\"text\":\"war\",\"indices\":[167,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555190711372365825,\"id_str\":\"1555190711372365825\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"url\":\"https:\\/\\/t.co\\/geJezowyMb\",\"display_url\":\"pic.twitter.com\\/geJezowyMb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmaijoseph\\/status\\/1555191096170479617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"339\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"PokemonScarletViolet\",\"indices\":[48,69]},{\"text\":\"BBNaija\",\"indices\":[70,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555189400874672130,\"id_str\":\"1555189400874672130\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"url\":\"https:\\/\\/t.co\\/Wj1lzHDUbI\",\"display_url\":\"pic.twitter.com\\/Wj1lzHDUbI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1202_Scents\\/status\\/1555189409909276680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"}}}]},\"340\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[101,114]},{\"text\":\"MONEY\",\"indices\":[116,122]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[205,228]},{\"text\":\"Sheggz\",\"indices\":[230,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555189176026501120,\"id_str\":\"1555189176026501120\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"url\":\"https:\\/\\/t.co\\/X3b0pY8Jui\",\"display_url\":\"pic.twitter.com\\/X3b0pY8Jui\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayinmakarma\\/status\\/1555189182955503616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":487,\"resize\":\"fit\"},\"medium\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"}}}]},\"341\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"BBNaija\",\"indices\":[126,134]},{\"text\":\"BBNajia\",\"indices\":[135,143]},{\"text\":\"BBNaijaS7\",\"indices\":[144,154]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[155,170]},{\"text\":\"BBNaijaQuidax\",\"indices\":[171,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"342\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[54,61]},{\"text\":\"Adekunle\",\"indices\":[62,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"iphone14\",\"indices\":[80,89]},{\"text\":\"Mreazi\",\"indices\":[90,97]},{\"text\":\"Machala\",\"indices\":[98,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555186092831395840,\"id_str\":\"1555186092831395840\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555186092831395840\\/pu\\/img\\/vTYnUIk50oBFJ3Y9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555186092831395840\\/pu\\/img\\/vTYnUIk50oBFJ3Y9.jpg\",\"url\":\"https:\\/\\/t.co\\/8gHhmPcWNY\",\"display_url\":\"pic.twitter.com\\/8gHhmPcWNY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/matinodon1\\/status\\/1555186278202806276\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"343\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"timesupolivia\",\"indices\":[60,74]},{\"text\":\"onstorm\",\"indices\":[76,84]},{\"text\":\"SheggzOlu\",\"indices\":[86,96]},{\"text\":\"kagiso\",\"indices\":[98,105]},{\"text\":\"sabinus\",\"indices\":[107,115]},{\"text\":\"MONEY\",\"indices\":[117,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555185932877307907,\"id_str\":\"1555185932877307907\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUhXcDWIAMHB3m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUhXcDWIAMHB3m.jpg\",\"url\":\"https:\\/\\/t.co\\/KwJ1pfCXAO\",\"display_url\":\"pic.twitter.com\\/KwJ1pfCXAO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KofiDave77\\/status\\/1555185939084972032\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1125,\"h\":1129,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":678,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1125,\"h\":1129,\"resize\":\"fit\"}}}]},\"344\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[116,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"BigBrother\",\"indices\":[131,142]},{\"text\":\"SheggzOlu\",\"indices\":[143,153]},{\"text\":\"sabinus\",\"indices\":[154,162]},{\"text\":\"BadDecisions\",\"indices\":[163,176]},{\"text\":\"MONEY\",\"indices\":[177,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"345\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[52,61]},{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"timesupolivia\",\"indices\":[79,93]},{\"text\":\"sabinus\",\"indices\":[94,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555184643934134276,\"id_str\":\"1555184643934134276\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"url\":\"https:\\/\\/t.co\\/XWcnYOEdSF\",\"display_url\":\"pic.twitter.com\\/XWcnYOEdSF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/J4PMARKETERS\\/status\\/1555184653732028418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":412,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"}}}]},\"346\":{\"hashtags\":[{\"text\":\"SheggzOlu\",\"indices\":[68,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555183806751055874,\"id_str\":\"1555183806751055874\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"url\":\"https:\\/\\/t.co\\/wyrlRD1y4C\",\"display_url\":\"pic.twitter.com\\/wyrlRD1y4C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dj_borsh\\/status\\/1555184514900582401\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"347\":{\"hashtags\":[{\"text\":\"PeacefulRebelGang\",\"indices\":[75,93]},{\"text\":\"Machala\",\"indices\":[95,103]},{\"text\":\"Wizkid\",\"indices\":[104,111]},{\"text\":\"Wizkidfc\",\"indices\":[112,121]},{\"text\":\"Afrofusion\",\"indices\":[122,133]},{\"text\":\"AFROBEAT\",\"indices\":[134,143]},{\"text\":\"sabinus\",\"indices\":[144,152]},{\"text\":\"2023election\",\"indices\":[153,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"BBNaija\",\"indices\":[175,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GQjxi8VaEt\",\"expanded_url\":\"https:\\/\\/indfy.me\\/drexx-confession\",\"display_url\":\"indfy.me\\/drexx-confessi\\u2026\",\"indices\":[184,207]}],\"media\":[{\"id\":1555182811249840132,\"id_str\":\"1555182811249840132\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"url\":\"https:\\/\\/t.co\\/EbvZMC6t5w\",\"display_url\":\"pic.twitter.com\\/EbvZMC6t5w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Drexxofficiall\\/status\\/1555182895467315200\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"348\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Pelosi\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555181498965295106,\"id_str\":\"1555181498965295106\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"url\":\"https:\\/\\/t.co\\/cXf8ss8bW0\",\"display_url\":\"pic.twitter.com\\/cXf8ss8bW0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1555181501632942083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"},\"medium\":{\"w\":700,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":400,\"resize\":\"fit\"}}}]},\"349\":{\"hashtags\":[{\"text\":\"mobilevideography\",\"indices\":[62,80]},{\"text\":\"musicvideo\",\"indices\":[81,92]},{\"text\":\"music\",\"indices\":[93,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"LoveIslandUSA\",\"indices\":[108,122]},{\"text\":\"blackpanther\",\"indices\":[123,136]},{\"text\":\"zeeteroliver\",\"indices\":[137,150]},{\"text\":\"Amapiano\",\"indices\":[151,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555180460329897992,\"id_str\":\"1555180460329897992\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1933,\"resize\":\"fit\"}}}]},\"350\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"HopeAgain2023\",\"indices\":[239,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555180451605659649,\"id_str\":\"1555180451605659649\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"url\":\"https:\\/\\/t.co\\/kBSGuw5lAF\",\"display_url\":\"pic.twitter.com\\/kBSGuw5lAF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1555180458555613184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"351\":{\"hashtags\":[{\"text\":\"Judge\",\"indices\":[0,6]},{\"text\":\"Lawyers\",\"indices\":[35,43]},{\"text\":\"BadDecisions\",\"indices\":[44,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"352\":{\"hashtags\":[{\"text\":\"Motivation\",\"indices\":[95,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"353\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[145,159]},{\"text\":\"Mompha\",\"indices\":[160,167]},{\"text\":\"Obidatti023\",\"indices\":[168,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Qdpaper2\",\"name\":\"Qudus Akanbi Eleyi.\",\"id\":1497996117153353737,\"id_str\":\"1497996117153353737\",\"indices\":[0,9]},{\"screen_name\":\"adams_oshiomole\",\"name\":\"Adams Oshiomole\",\"id\":2273438128,\"id_str\":\"2273438128\",\"indices\":[19,35]}],\"urls\":[]},\"354\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"LoveIslandUSA\",\"indices\":[33,47]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[48,68]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[69,89]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[90,110]},{\"text\":\"timesupolivia\",\"indices\":[111,125]},{\"text\":\"PokemonPresents\",\"indices\":[126,142]},{\"text\":\"onstorm\",\"indices\":[143,151]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[152,175]},{\"text\":\"kagiso\",\"indices\":[176,183]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[184,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555174887903432704,\"id_str\":\"1555174887903432704\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"url\":\"https:\\/\\/t.co\\/OwCNmTJy2S\",\"display_url\":\"pic.twitter.com\\/OwCNmTJy2S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/K_h_a_l_i_f\\/status\\/1555174968110878720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"355\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"PiConsensus\",\"indices\":[163,175]},{\"text\":\"PiNetworkUpdates\",\"indices\":[176,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8sgE1PQYKE\",\"expanded_url\":\"http:\\/\\/www.minealpha.net\",\"display_url\":\"minealpha.net\",\"indices\":[99,122]}]},\"356\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[78,95]},{\"text\":\"JKLive\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"357\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"TaiwanIsaCountry\",\"indices\":[112,129]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[130,148]},{\"text\":\"LoveIslandUSA\",\"indices\":[149,163]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[164,184]},{\"text\":\"timesupolivia\",\"indices\":[185,199]},{\"text\":\"Trending\",\"indices\":[200,209]},{\"text\":\"trekkerterroristen\",\"indices\":[210,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555173183489277957,\"id_str\":\"1555173183489277957\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"url\":\"https:\\/\\/t.co\\/1k4n29zj8M\",\"display_url\":\"pic.twitter.com\\/1k4n29zj8M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555173247641161729\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"358\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"LoveIslandUSA\",\"indices\":[26,40]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[42,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"359\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[15,19]},{\"text\":\"NFT\",\"indices\":[20,24]},{\"text\":\"NFTs\",\"indices\":[25,30]},{\"text\":\"scribbleart\",\"indices\":[31,43]},{\"text\":\"onlyfansgirl\",\"indices\":[44,57]},{\"text\":\"LoveIslandUSA\",\"indices\":[58,72]},{\"text\":\"PokemonPresents\",\"indices\":[73,89]},{\"text\":\"Trending\",\"indices\":[90,99]},{\"text\":\"USA\",\"indices\":[100,104]},{\"text\":\"portraits\",\"indices\":[105,115]},{\"text\":\"artwork\",\"indices\":[116,124]},{\"text\":\"viral\",\"indices\":[125,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555169769480982530,\"id_str\":\"1555169769480982530\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"url\":\"https:\\/\\/t.co\\/nqu1JUJBNW\",\"display_url\":\"pic.twitter.com\\/nqu1JUJBNW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/andre_design1\\/status\\/1555169785113182209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":547,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1646,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":965,\"h\":1200,\"resize\":\"fit\"}}}]},\"360\":{\"hashtags\":[{\"text\":\"FoundersDay\",\"indices\":[113,125]},{\"text\":\"FounderDay\",\"indices\":[133,144]},{\"text\":\"CitiCBS\",\"indices\":[204,212]},{\"text\":\"ManUnited\",\"indices\":[239,249]},{\"text\":\"NickiMinaj\",\"indices\":[250,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialCAAfeku\",\"name\":\"Hon. Catherine A. Afeku\",\"id\":2390557940,\"id_str\":\"2390557940\",\"indices\":[185,201]}],\"urls\":[]},\"361\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Gombe\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VSqloXTTN7\",\"expanded_url\":\"https:\\/\\/infactng.com\\/2022\\/08\\/04\\/shocker-after-failing-his-exams-goke-committed-suicide\\/\",\"display_url\":\"infactng.com\\/2022\\/08\\/04\\/sho\\u2026\",\"indices\":[70,93]}]},\"362\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"iphone14\",\"indices\":[75,84]},{\"text\":\"sabinus\",\"indices\":[85,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555168270096941056,\"id_str\":\"1555168270096941056\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"url\":\"https:\\/\\/t.co\\/maVn9omPE3\",\"display_url\":\"pic.twitter.com\\/maVn9omPE3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1555168278548471814\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"363\":{\"hashtags\":[{\"text\":\"Eloswag\",\"indices\":[98,106]},{\"text\":\"davidhundeyin\",\"indices\":[119,133]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"Obidatti023\",\"indices\":[144,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555167868895068165,\"id_str\":\"1555167868895068165\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"url\":\"https:\\/\\/t.co\\/U63Lw3koX1\",\"display_url\":\"pic.twitter.com\\/U63Lw3koX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nwakaibeya001\\/status\\/1555168058779525126\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"364\":{\"hashtags\":[{\"text\":\"Bitcoin\",\"indices\":[140,148]},{\"text\":\"Taiwan\",\"indices\":[149,156]},{\"text\":\"BTC\",\"indices\":[157,161]},{\"text\":\"Crypto\",\"indices\":[162,169]},{\"text\":\"cryptocurrencies\",\"indices\":[170,187]},{\"text\":\"bulls\",\"indices\":[188,194]},{\"text\":\"Bears\",\"indices\":[195,201]},{\"text\":\"quote\",\"indices\":[202,208]},{\"text\":\"MotivationalQuotes\",\"indices\":[209,228]},{\"text\":\"tradingcrypto\",\"indices\":[229,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555167779841515523,\"id_str\":\"1555167779841515523\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"url\":\"https:\\/\\/t.co\\/JD9k0lRhKe\",\"display_url\":\"pic.twitter.com\\/JD9k0lRhKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EchezqueH\\/status\\/1555167787605233664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"365\":{\"hashtags\":[{\"text\":\"maufemor\",\"indices\":[55,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"timesupolivia\",\"indices\":[73,87]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[88,96]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[97,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"366\":{\"hashtags\":[{\"text\":\"affordable\",\"indices\":[124,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"PiConsensus\",\"indices\":[207,219]},{\"text\":\"Wizkid\",\"indices\":[220,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RiL8U7EDdz\",\"expanded_url\":\"https:\\/\\/www.revenes.com\\/product\\/itel-p38\\/\",\"display_url\":\"revenes.com\\/product\\/itel-p\\u2026\",\"indices\":[99,122]}],\"media\":[{\"id\":1555165843989970944,\"id_str\":\"1555165843989970944\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"url\":\"https:\\/\\/t.co\\/fUqpTBJqZB\",\"display_url\":\"pic.twitter.com\\/fUqpTBJqZB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RevenesNigeria\\/status\\/1555165846510751746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"367\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"Niger\",\"indices\":[118,124]},{\"text\":\"davidhundeyin\",\"indices\":[125,139]},{\"text\":\"ENUGU\",\"indices\":[140,146]},{\"text\":\"southeast\",\"indices\":[147,157]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[65,74]},{\"screen_name\":\"Chude__\",\"name\":\"Columbus\",\"id\":910572372410949632,\"id_str\":\"910572372410949632\",\"indices\":[76,84]},{\"screen_name\":\"drpenking\",\"name\":\"DR.PENKING\\u2122 \\ud83c\\udde6\\ud83c\\uddfa\\ud83c\\uddf3\\ud83c\\uddec #PeterObi\",\"id\":1647305408,\"id_str\":\"1647305408\",\"indices\":[86,96]},{\"screen_name\":\"Jack_ng01\",\"name\":\"J a c k \\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1215978204734861312,\"id_str\":\"1215978204734861312\",\"indices\":[97,107]}],\"urls\":[],\"media\":[{\"id\":1555165240739905538,\"id_str\":\"1555165240739905538\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"url\":\"https:\\/\\/t.co\\/aJyefnJaPq\",\"display_url\":\"pic.twitter.com\\/aJyefnJaPq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CjKrisEze\\/status\\/1555165337112530944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"368\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[259,266]},{\"text\":\"sabinus\",\"indices\":[267,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555165190198640640,\"id_str\":\"1555165190198640640\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"url\":\"https:\\/\\/t.co\\/Brr9ZnDADz\",\"display_url\":\"pic.twitter.com\\/Brr9ZnDADz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555165192924831744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":502,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":638,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":638,\"resize\":\"fit\"}}}]},\"369\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[123,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"CommonwealthGames2022\",\"indices\":[153,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"370\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[16,22]},{\"text\":\"military\",\"indices\":[94,103]},{\"text\":\"exercises\",\"indices\":[104,114]},{\"text\":\"Taiwan\",\"indices\":[136,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555162706549800960,\"id_str\":\"1555162706549800960\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"url\":\"https:\\/\\/t.co\\/qazOjUwnZ7\",\"display_url\":\"pic.twitter.com\\/qazOjUwnZ7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunadePraise\\/status\\/1555162714733006849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555136742914531328,\"id_str\":\"1555136742914531328\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"url\":\"https:\\/\\/t.co\\/UhSpASo6FT\",\"display_url\":\"pic.twitter.com\\/UhSpASo6FT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Military_News4\\/status\\/1555137709621911552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1555137709621911552,\"source_status_id_str\":\"1555137709621911552\",\"source_user_id\":928852100619964417,\"source_user_id_str\":\"928852100619964417\"}]},\"371\":{\"hashtags\":[{\"text\":\"gobarta\",\"indices\":[58,66]},{\"text\":\"barter\",\"indices\":[67,74]},{\"text\":\"trading\",\"indices\":[75,83]},{\"text\":\"tradebybarter\",\"indices\":[84,98]},{\"text\":\"BBNajiaS7\",\"indices\":[99,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gobarta_\",\"name\":\"gobarta_\",\"id\":1382325349107830792,\"id_str\":\"1382325349107830792\",\"indices\":[13,22]}],\"urls\":[],\"media\":[{\"id\":1555161212412989443,\"id_str\":\"1555161212412989443\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"url\":\"https:\\/\\/t.co\\/C2HwqBfqlE\",\"display_url\":\"pic.twitter.com\\/C2HwqBfqlE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gobarta_\\/status\\/1555161230607777793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"372\":{\"hashtags\":[{\"text\":\"CWG2022\",\"indices\":[191,199]},{\"text\":\"CWG\",\"indices\":[200,204]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[205,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"CommonwealthGames2022\",\"indices\":[234,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555160004008841216,\"id_str\":\"1555160004008841216\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUJyLfXkAAkUy4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUJyLfXkAAkUy4.jpg\",\"url\":\"https:\\/\\/t.co\\/rcqbW43LcE\",\"display_url\":\"pic.twitter.com\\/rcqbW43LcE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GIJShuttle\\/status\\/1555160016973209600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"373\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[27,34]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChimarokeNamani\",\"name\":\"Chimaroke Nnamani MD, FACOG.\",\"id\":1138402595398201345,\"id_str\":\"1138402595398201345\",\"indices\":[0,16]}],\"urls\":[]},\"374\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"Trending\",\"indices\":[36,45]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"shuga\",\"name\":\"shuga\",\"id\":13394162,\"id_str\":\"13394162\",\"indices\":[46,52]}],\"urls\":[],\"media\":[{\"id\":1555156322076827650,\"id_str\":\"1555156322076827650\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"url\":\"https:\\/\\/t.co\\/CN3kYOdU36\",\"display_url\":\"pic.twitter.com\\/CN3kYOdU36\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bhginfodesk\\/status\\/1555158033004724225\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":272,\"resize\":\"fit\"}}}]},\"375\":{\"hashtags\":[{\"text\":\"abuja\",\"indices\":[80,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gx6T3vHHf5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\",\"display_url\":\"twitter.com\\/rubiestech\\/sta\\u2026\",\"indices\":[104,127]}]},\"376\":{\"hashtags\":[{\"text\":\"abeggod\",\"indices\":[143,151]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[152,172]},{\"text\":\"Archie\",\"indices\":[173,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"PokemonPresents\",\"indices\":[189,205]},{\"text\":\"erica\",\"indices\":[206,212]},{\"text\":\"BBNaija7\",\"indices\":[213,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555156992766902274,\"id_str\":\"1555156992766902274\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"url\":\"https:\\/\\/t.co\\/gliY1QIjih\",\"display_url\":\"pic.twitter.com\\/gliY1QIjih\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555157065131298817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"}}}]},\"377\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[241,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"BadDecisions\",\"indices\":[258,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555156710142124035,\"id_str\":\"1555156710142124035\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"url\":\"https:\\/\\/t.co\\/yDtdwBf7Nr\",\"display_url\":\"pic.twitter.com\\/yDtdwBf7Nr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1555156719885492224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1147,\"resize\":\"fit\"}}}]},\"378\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[93,99]},{\"text\":\"exercises\",\"indices\":[127,137]},{\"text\":\"Pelosi\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555155409132212224,\"id_str\":\"1555155409132212224\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"url\":\"https:\\/\\/t.co\\/0XVPeJqRkf\",\"display_url\":\"pic.twitter.com\\/0XVPeJqRkf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555155450995556352\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"379\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[251,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Consigliere909\",\"name\":\"C\\u2b55nsigliere\\ud83d\\udcb0\",\"id\":1231855138949795840,\"id_str\":\"1231855138949795840\",\"indices\":[0,15]}],\"urls\":[]},\"380\":{\"hashtags\":[{\"text\":\"Ethereum\",\"indices\":[56,65]},{\"text\":\"cryptocurrencies\",\"indices\":[76,93]},{\"text\":\"Piconsensus\",\"indices\":[244,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"Sol\",\"indices\":[265,269]},{\"text\":\"AVAX\",\"indices\":[270,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Xlq8xpezyU\",\"expanded_url\":\"http:\\/\\/minepi.com\\/formulacode\",\"display_url\":\"minepi.com\\/formulacode\",\"indices\":[156,179]},{\"url\":\"https:\\/\\/t.co\\/z9GfttvsFn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNewsMedia\\/status\\/1554783427471101956\",\"display_url\":\"twitter.com\\/PiNewsMedia\\/st\\u2026\",\"indices\":[276,299]}]},\"381\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[191,198]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"minorta\",\"name\":\"Lin Ching-Yi\",\"id\":11616642,\"id_str\":\"11616642\",\"indices\":[0,8]}],\"urls\":[]},\"382\":{\"hashtags\":[{\"text\":\"modella\",\"indices\":[146,154]},{\"text\":\"sabinus\",\"indices\":[155,163]},{\"text\":\"timesupolivia\",\"indices\":[164,178]},{\"text\":\"Wizkid\",\"indices\":[179,186]},{\"text\":\"teni\",\"indices\":[187,192]},{\"text\":\"ibadan\",\"indices\":[193,200]},{\"text\":\"BBNaija\",\"indices\":[201,209]},{\"text\":\"BBNajiaS7\",\"indices\":[210,220]},{\"text\":\"bellashmurda\",\"indices\":[221,234]},{\"text\":\"EFCC\",\"indices\":[235,240]},{\"text\":\"BigBrotherNaija\",\"indices\":[241,257]},{\"text\":\"SheggzOlu\",\"indices\":[258,268]},{\"text\":\"Taiwan\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555154158386397187,\"id_str\":\"1555154158386397187\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"url\":\"https:\\/\\/t.co\\/sdWjMuziSQ\",\"display_url\":\"pic.twitter.com\\/sdWjMuziSQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JHONEXEMPIRE\\/status\\/1555154282038657026\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"383\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"Emily\",\"indices\":[183,189]},{\"text\":\"Nigerrepublic\",\"indices\":[190,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"384\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[88,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[103,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555153103313604609,\"id_str\":\"1555153103313604609\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"url\":\"https:\\/\\/t.co\\/JMx7Icb0oM\",\"display_url\":\"pic.twitter.com\\/JMx7Icb0oM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555153135496478720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}}}]},\"385\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[101,121]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[122,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k9d3nD6BGb\",\"expanded_url\":\"https:\\/\\/youtu.be\\/SRqithSf7ik\",\"display_url\":\"youtu.be\\/SRqithSf7ik\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/dDL1CbPJy1\",\"expanded_url\":\"http:\\/\\/page.Click\",\"display_url\":\"page.Click\",\"indices\":[59,82]}]},\"386\":{\"hashtags\":[{\"text\":\"spacemallio\",\"indices\":[46,58]},{\"text\":\"spacemallshopping\",\"indices\":[59,77]},{\"text\":\"spacemallapp\",\"indices\":[78,91]},{\"text\":\"iphone11\",\"indices\":[92,101]},{\"text\":\"Iphone14ProMax\",\"indices\":[102,117]},{\"text\":\"BeautyTukura\",\"indices\":[118,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"Entrepreneur\",\"indices\":[140,153]},{\"text\":\"BusinessOwners\",\"indices\":[154,169]},{\"text\":\"SMESupportHour\",\"indices\":[170,185]},{\"text\":\"SMEs\",\"indices\":[186,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555152665503563776,\"id_str\":\"1555152665503563776\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"url\":\"https:\\/\\/t.co\\/WOacyTORbz\",\"display_url\":\"pic.twitter.com\\/WOacyTORbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/spacemallio\\/status\\/1555152668116533248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"387\":{\"hashtags\":[{\"text\":\"SouthKorea\",\"indices\":[73,84]},{\"text\":\"Pelosi\",\"indices\":[86,93]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[120,140]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"China\",\"indices\":[151,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555152598109663232,\"id_str\":\"1555152598109663232\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"url\":\"https:\\/\\/t.co\\/kGhTbqimX7\",\"display_url\":\"pic.twitter.com\\/kGhTbqimX7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555152605470662656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"medium\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"388\":{\"hashtags\":[{\"text\":\"building\",\"indices\":[61,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"nigeria\",\"indices\":[79,87]},{\"text\":\"lekki\",\"indices\":[88,94]},{\"text\":\"construction\",\"indices\":[95,108]},{\"text\":\"projectmanagement\",\"indices\":[109,127]},{\"text\":\"Structures\",\"indices\":[128,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555152109657546755,\"id_str\":\"1555152109657546755\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"url\":\"https:\\/\\/t.co\\/gtYI0jeg8Q\",\"display_url\":\"pic.twitter.com\\/gtYI0jeg8Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1555152122827751425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"}}}]},\"389\":{\"hashtags\":[{\"text\":\"JusticeForAlikaOgorchukwu\",\"indices\":[34,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Finmin\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UsgUnSpj84\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HumAngle_\\/status\\/1555132746267246592\",\"display_url\":\"twitter.com\\/HumAngle_\\/stat\\u2026\",\"indices\":[92,115]}]},\"390\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"HealthCareCrisis\",\"indices\":[60,77]},{\"text\":\"healthylifestyle\",\"indices\":[78,95]},{\"text\":\"Motivation\",\"indices\":[96,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"391\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"392\":{\"hashtags\":[{\"text\":\"ThrowbackThursday\",\"indices\":[221,239]},{\"text\":\"tbt\",\"indices\":[240,244]},{\"text\":\"GodAbeg\",\"indices\":[245,253]},{\"text\":\"Datti\",\"indices\":[254,260]},{\"text\":\"Taiwan\",\"indices\":[261,268]},{\"text\":\"ASUU\",\"indices\":[269,274]},{\"text\":\"Finland\",\"indices\":[275,283]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555150975874252801,\"id_str\":\"1555150975874252801\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6MLUjktPI\",\"display_url\":\"pic.twitter.com\\/Y6MLUjktPI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Behold_Homes\\/status\\/1555150978747432963\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"393\":{\"hashtags\":[{\"text\":\"CommonwealthGames2022\",\"indices\":[56,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"Accra2023\",\"indices\":[87,97]},{\"text\":\"GTVSports\",\"indices\":[98,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555150593911656448,\"id_str\":\"1555150593911656448\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"url\":\"https:\\/\\/t.co\\/lHlF5DsSgw\",\"display_url\":\"pic.twitter.com\\/lHlF5DsSgw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ReginaldAnnobil\\/status\\/1555150597149433864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"large\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"small\":{\"w\":547,\"h\":434,\"resize\":\"fit\"}}}]},\"394\":{\"hashtags\":[{\"text\":\"impact\",\"indices\":[194,201]},{\"text\":\"Depay\",\"indices\":[202,208]},{\"text\":\"mali\",\"indices\":[209,214]},{\"text\":\"art\",\"indices\":[215,219]},{\"text\":\"science\",\"indices\":[220,228]},{\"text\":\"commercial\",\"indices\":[229,240]},{\"text\":\"giveback\",\"indices\":[241,250]},{\"text\":\"throwback\",\"indices\":[251,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]},{\"text\":\"Assu\",\"indices\":[270,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555150224192147458,\"id_str\":\"1555150224192147458\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"395\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"timesupolivia\",\"indices\":[141,155]},{\"text\":\"CommonwealthGames2022\",\"indices\":[156,178]},{\"text\":\"Nigeria\",\"indices\":[179,187]},{\"text\":\"shopping\",\"indices\":[188,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555149692396265473,\"id_str\":\"1555149692396265473\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"url\":\"https:\\/\\/t.co\\/k24n6sdcoO\",\"display_url\":\"pic.twitter.com\\/k24n6sdcoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BargainFortress\\/status\\/1555149702697476101\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":856,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"396\":{\"hashtags\":[{\"text\":\"designers\",\"indices\":[94,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"CommonwealthGames2022\",\"indices\":[113,135]},{\"text\":\"timesupolivia\",\"indices\":[136,150]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Nabhel_\",\"name\":\"Nabhel\",\"id\":561937140,\"id_str\":\"561937140\",\"indices\":[63,71]},{\"screen_name\":\"pixelyut\",\"name\":\"Bright Mba\\ud83e\\udd85\\ud83e\\udd85\",\"id\":702750969440899072,\"id_str\":\"702750969440899072\",\"indices\":[72,81]},{\"screen_name\":\"Big_Heeazy\",\"name\":\"SonOfMan\",\"id\":794142226255376384,\"id_str\":\"794142226255376384\",\"indices\":[82,93]}],\"urls\":[],\"media\":[{\"id\":1555149362526830592,\"id_str\":\"1555149362526830592\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"url\":\"https:\\/\\/t.co\\/UWW30ahzr7\",\"display_url\":\"pic.twitter.com\\/UWW30ahzr7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rukegetrich09\\/status\\/1555149398035906561\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":224,\"resize\":\"fit\"}}}]},\"397\":{\"hashtags\":[{\"text\":\"wizkid\",\"indices\":[142,149]},{\"text\":\"festac\",\"indices\":[150,157]},{\"text\":\"iPhone13\",\"indices\":[158,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"invest\",\"indices\":[176,183]},{\"text\":\"capitec\",\"indices\":[184,192]},{\"text\":\"teni\",\"indices\":[193,198]},{\"text\":\"explore\",\"indices\":[199,207]},{\"text\":\"BBNajiaS7\",\"indices\":[208,218]},{\"text\":\"BBNaija\",\"indices\":[219,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VJMnsXbNYd\",\"expanded_url\":\"http:\\/\\/myabove.ng\",\"display_url\":\"myabove.ng\",\"indices\":[82,105]}],\"media\":[{\"id\":1555148898599141376,\"id_str\":\"1555148898599141376\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"url\":\"https:\\/\\/t.co\\/vJ5ijjcRis\",\"display_url\":\"pic.twitter.com\\/vJ5ijjcRis\",\"expanded_url\":\"https:\\/\\/twitter.com\\/welcometoabove\\/status\\/1555148913782493185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"398\":{\"hashtags\":[{\"text\":\"Happyweddinganniversary\",\"indices\":[123,147]},{\"text\":\"love\",\"indices\":[148,153]},{\"text\":\"moodidit\",\"indices\":[154,163]},{\"text\":\"couplegoals\",\"indices\":[164,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Uyajola99\",\"indices\":[185,195]},{\"text\":\"CommonwealthGames2022\",\"indices\":[196,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555147588466262016,\"id_str\":\"1555147588466262016\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":863,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":489,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1473,\"resize\":\"fit\"}}}]},\"399\":{\"hashtags\":[{\"text\":\"OneChinaPolicy\",\"indices\":[119,134]},{\"text\":\"China\",\"indices\":[198,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"UNGA\",\"indices\":[213,218]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UN\",\"name\":\"United Nations\",\"id\":14159148,\"id_str\":\"14159148\",\"indices\":[2,5]},{\"screen_name\":\"antonioguterres\",\"name\":\"Ant\\u00f3nio Guterres\",\"id\":811229675758505984,\"id_str\":\"811229675758505984\",\"indices\":[24,40]}],\"urls\":[],\"media\":[{\"id\":1555146608542720007,\"id_str\":\"1555146608542720007\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555146608542720007\\/pu\\/img\\/u_FHQr5FqV_EOlti.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555146608542720007\\/pu\\/img\\/u_FHQr5FqV_EOlti.jpg\",\"url\":\"https:\\/\\/t.co\\/dHyQAsHk3y\",\"display_url\":\"pic.twitter.com\\/dHyQAsHk3y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1555147066300563456\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"400\":{\"hashtags\":[{\"text\":\"YLPghana\",\"indices\":[89,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[107,115]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[116,136]},{\"text\":\"economy\",\"indices\":[137,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555145645232635904,\"id_str\":\"1555145645232635904\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT8uY4WQAAXNBu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT8uY4WQAAXNBu.jpg\",\"url\":\"https:\\/\\/t.co\\/cNnNedVSHp\",\"display_url\":\"pic.twitter.com\\/cNnNedVSHp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OSSEI_OWUSU\\/status\\/1555145656502722561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":421,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"}}}]},\"401\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"AppleMusic\",\"indices\":[91,102]},{\"text\":\"AppleEvent\",\"indices\":[103,114]},{\"text\":\"AppleMusicRT\",\"indices\":[115,128]},{\"text\":\"portapottydubai\",\"indices\":[129,145]},{\"text\":\"portharcourt\",\"indices\":[147,160]},{\"text\":\"lagos\",\"indices\":[161,167]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[168,190]},{\"text\":\"Kano\",\"indices\":[191,196]},{\"text\":\"timesupolivia\",\"indices\":[197,211]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[212,220]},{\"text\":\"CommonwealthGames2022\",\"indices\":[221,243]},{\"text\":\"AFROBEAT\",\"indices\":[244,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[47,57]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SEd4udv6bm\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/jaiye-single\\/1634846567?uo=4&app=apple+music\",\"display_url\":\"music.apple.com\\/us\\/album\\/jaiye\\u2026\",\"indices\":[255,278]}]},\"402\":{\"hashtags\":[{\"text\":\"zigproperties\",\"indices\":[33,47]},{\"text\":\"sabinus\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"CommonwealthGames2022\",\"indices\":[132,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555144210206031873,\"id_str\":\"1555144210206031873\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"url\":\"https:\\/\\/t.co\\/ZFgC36Ucpe\",\"display_url\":\"pic.twitter.com\\/ZFgC36Ucpe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zigproperties\\/status\\/1555144224714231809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"403\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"30BG\",\"indices\":[66,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"404\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FreddyNtafumila\",\"name\":\"ServantOfGod\",\"id\":4125973102,\"id_str\":\"4125973102\",\"indices\":[0,16]}],\"urls\":[]},\"405\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[130,150]},{\"text\":\"BB24\",\"indices\":[151,156]},{\"text\":\"timesupolivia\",\"indices\":[157,171]},{\"text\":\"onstorm\",\"indices\":[172,180]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Zlatan_Ibile\",\"name\":\"#WorldPresident \\ud83c\\udf0e\",\"id\":264316796,\"id_str\":\"264316796\",\"indices\":[71,84]},{\"screen_name\":\"gutier_navarro\",\"name\":\"ChrisBrownOfficial\",\"id\":3200172925,\"id_str\":\"3200172925\",\"indices\":[85,100]},{\"screen_name\":\"SnoopDogg\",\"name\":\"Snoop Dogg\",\"id\":3004231,\"id_str\":\"3004231\",\"indices\":[101,111]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[112,119]}],\"urls\":[],\"media\":[{\"id\":1555143217586241537,\"id_str\":\"1555143217586241537\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"url\":\"https:\\/\\/t.co\\/p3OU4EnjKl\",\"display_url\":\"pic.twitter.com\\/p3OU4EnjKl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/de_easygreen\\/status\\/1555143706495356930\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":681,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":726,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}}}]},\"406\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"407\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"408\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555140005584142337,\"id_str\":\"1555140005584142337\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"url\":\"https:\\/\\/t.co\\/GeyHHH3sFh\",\"display_url\":\"pic.twitter.com\\/GeyHHH3sFh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555140625653186560\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}}}]},\"409\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"410\":{\"hashtags\":[{\"text\":\"nectarbeauty\",\"indices\":[135,148]},{\"text\":\"naturalhair\",\"indices\":[149,161]},{\"text\":\"beauty\",\"indices\":[162,169]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"AsiaCup2022\",\"indices\":[178,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"simplyshumba\",\"name\":\"meeeeeeeegan \\u2728\",\"id\":1223605304367243264,\"id_str\":\"1223605304367243264\",\"indices\":[42,55]}],\"urls\":[],\"media\":[{\"id\":1555139551198314496,\"id_str\":\"1555139551198314496\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"url\":\"https:\\/\\/t.co\\/CNv51CwZVQ\",\"display_url\":\"pic.twitter.com\\/CNv51CwZVQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1555139554767769602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"}}}]},\"411\":{\"hashtags\":[{\"text\":\"GraphicDesigner\",\"indices\":[73,89]},{\"text\":\"Graphicsdesign\",\"indices\":[91,106]},{\"text\":\"graphics\",\"indices\":[108,117]},{\"text\":\"sabinus\",\"indices\":[119,127]},{\"text\":\"Datti\",\"indices\":[128,134]},{\"text\":\"CynthiaOkereke\",\"indices\":[135,150]},{\"text\":\"davidhundeyin\",\"indices\":[151,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mira_wealth\",\"name\":\"MirabelWealth\\ud83d\\udcb2#MyPeterObi\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":723895993972957184,\"id_str\":\"723895993972957184\",\"indices\":[20,32]}],\"urls\":[],\"media\":[{\"id\":1555139411502931968,\"id_str\":\"1555139411502931968\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"url\":\"https:\\/\\/t.co\\/ixkeriaLRu\",\"display_url\":\"pic.twitter.com\\/ixkeriaLRu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinazaJessica4\\/status\\/1555139435934654464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"412\":{\"hashtags\":[{\"text\":\"SapeleRoadMatters\",\"indices\":[83,101]},{\"text\":\"FixSapeleRoad\",\"indices\":[103,117]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"PokemonPresents\",\"indices\":[207,223]},{\"text\":\"onstorm\",\"indices\":[224,232]},{\"text\":\"timesupolivia\",\"indices\":[233,247]},{\"text\":\"GizliSakli\",\"indices\":[248,259]},{\"text\":\"Niger\",\"indices\":[261,267]},{\"text\":\"PDP\",\"indices\":[268,272]},{\"text\":\"ASUU\",\"indices\":[273,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FMWHNIG\",\"name\":\"Federal Ministry of Works & Housing\",\"id\":720608960550715392,\"id_str\":\"720608960550715392\",\"indices\":[128,136]},{\"screen_name\":\"tundefashola\",\"name\":\"Babatunde Fashola\",\"id\":153209413,\"id_str\":\"153209413\",\"indices\":[137,150]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[151,159]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[160,171]},{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[172,184]},{\"screen_name\":\"thecableng\",\"name\":\"TheCable\",\"id\":1954402777,\"id_str\":\"1954402777\",\"indices\":[185,196]}],\"urls\":[],\"media\":[{\"id\":1555138634113753088,\"id_str\":\"1555138634113753088\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"url\":\"https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"display_url\":\"pic.twitter.com\\/ZdoPAt0eNQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bright_agbons\\/status\\/1555139152135561218\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"medium\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"large\":{\"w\":224,\"h\":416,\"resize\":\"fit\"}}}]},\"413\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"PokemonPresents\",\"indices\":[131,147]},{\"text\":\"onstorm\",\"indices\":[148,156]},{\"text\":\"AsiaCup2022\",\"indices\":[157,169]},{\"text\":\"lagos\",\"indices\":[170,176]},{\"text\":\"Obidatti2023\",\"indices\":[177,190]},{\"text\":\"TinubuShettima2023\",\"indices\":[191,210]},{\"text\":\"AtikuOkowa2023\",\"indices\":[211,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555138821490089984,\"id_str\":\"1555138821490089984\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"url\":\"https:\\/\\/t.co\\/1hkrhZ6FGP\",\"display_url\":\"pic.twitter.com\\/1hkrhZ6FGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/denys_peter\\/status\\/1555138829111156736\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"414\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"PokemonPresents\",\"indices\":[26,42]},{\"text\":\"onstorm\",\"indices\":[43,51]},{\"text\":\"PokemonScarletViolet\",\"indices\":[52,73]},{\"text\":\"timesupolivia\",\"indices\":[74,88]},{\"text\":\"CommonwealthGames2022\",\"indices\":[89,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555138321642409985,\"id_str\":\"1555138321642409985\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"url\":\"https:\\/\\/t.co\\/FkCxF40SeP\",\"display_url\":\"pic.twitter.com\\/FkCxF40SeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1555138525649043457\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}}}]},\"415\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Biden\",\"indices\":[119,125]},{\"text\":\"AsiaCup2022\",\"indices\":[134,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555137905655521282,\"id_str\":\"1555137905655521282\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"url\":\"https:\\/\\/t.co\\/qFRoP3l7x1\",\"display_url\":\"pic.twitter.com\\/qFRoP3l7x1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuvidecorolowu\\/status\\/1555138012203335680\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"416\":{\"hashtags\":[{\"text\":\"benincitymall\",\"indices\":[218,232]},{\"text\":\"iPhone14\",\"indices\":[234,243]},{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"Oshiomole\",\"indices\":[252,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555136504955125761,\"id_str\":\"1555136504955125761\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"url\":\"https:\\/\\/t.co\\/WeK9AczT9n\",\"display_url\":\"pic.twitter.com\\/WeK9AczT9n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555136512567697408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"417\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[98,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]},{\"text\":\"badagry\",\"indices\":[115,123]},{\"text\":\"socialmediamarketing\",\"indices\":[124,145]},{\"text\":\"socialmedia\",\"indices\":[146,158]},{\"text\":\"dabrandcity\",\"indices\":[159,171]},{\"text\":\"socialbrandcity\",\"indices\":[172,188]},{\"text\":\"ThrowbackThursday\",\"indices\":[189,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"418\":{\"hashtags\":[{\"text\":\"CannabisCommunity\",\"indices\":[78,96]},{\"text\":\"party\",\"indices\":[97,103]},{\"text\":\"HypeBeast\",\"indices\":[104,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555135449693392896,\"id_str\":\"1555135449693392896\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"url\":\"https:\\/\\/t.co\\/E8Qdn5xljL\",\"display_url\":\"pic.twitter.com\\/E8Qdn5xljL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Christoph7Onoja\\/status\\/1555135839843352576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"419\":{\"hashtags\":[{\"text\":\"HopeAgain2023\",\"indices\":[221,235]},{\"text\":\"Taiwan\",\"indices\":[236,243]},{\"text\":\"CommonwealthGames2022\",\"indices\":[244,266]},{\"text\":\"AsiaCup2022\",\"indices\":[267,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555135837016317956,\"id_str\":\"1555135837016317956\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"url\":\"https:\\/\\/t.co\\/30gXogxS1T\",\"display_url\":\"pic.twitter.com\\/30gXogxS1T\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1555135838857609217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":480,\"resize\":\"fit\"}}}]},\"420\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[32,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BarackObama\",\"name\":\"Barack Obama\",\"id\":813286,\"id_str\":\"813286\",\"indices\":[14,26]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[49,64]},{\"screen_name\":\"legitngnews\",\"name\":\"Legit.ng | Leading the way\",\"id\":569053466,\"id_str\":\"569053466\",\"indices\":[65,77]},{\"screen_name\":\"BarackObama\",\"name\":\"Barack Obama\",\"id\":813286,\"id_str\":\"813286\",\"indices\":[108,120]},{\"screen_name\":\"BBCBreaking\",\"name\":\"BBC Breaking News\",\"id\":5402612,\"id_str\":\"5402612\",\"indices\":[121,133]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[134,145]}],\"urls\":[],\"media\":[{\"id\":1555134911127887872,\"id_str\":\"1555134911127887872\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"421\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"CommonwealthGames2022\",\"indices\":[64,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"422\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"CommonwealthGames2022\",\"indices\":[231,253]},{\"text\":\"thursdayvibes\",\"indices\":[254,268]},{\"text\":\"GoldMedal\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[0,9]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[186,193]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[212,222]}],\"urls\":[]},\"423\":{\"hashtags\":[{\"text\":\"nectar\",\"indices\":[108,115]},{\"text\":\"nectarbeauty\",\"indices\":[116,129]},{\"text\":\"beautiful\",\"indices\":[130,140]},{\"text\":\"PokemonPresents\",\"indices\":[141,157]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"onstorm\",\"indices\":[166,174]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"424\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[163,175]},{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"WW3\",\"indices\":[236,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555132227209789440,\"id_str\":\"1555132227209789440\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"url\":\"https:\\/\\/t.co\\/zduT6xE89u\",\"display_url\":\"pic.twitter.com\\/zduT6xE89u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CrystosD\\/status\\/1555132666793840641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"},\"medium\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"large\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"425\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"CommonwealthGames2022\",\"indices\":[83,105]},{\"text\":\"davidhundeyin\",\"indices\":[106,120]},{\"text\":\"iphone14\",\"indices\":[121,130]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vdjtflexx\",\"name\":\"VDJ Tflexx\",\"id\":230824232,\"id_str\":\"230824232\",\"indices\":[0,10]}],\"urls\":[]},\"426\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[124,131]},{\"text\":\"sabinus\",\"indices\":[132,140]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"BeninCityMall\",\"indices\":[149,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qY8EJ70kOG\",\"expanded_url\":\"https:\\/\\/link.medium.com\\/TdSfdJspdsb\",\"display_url\":\"link.medium.com\\/TdSfdJspdsb\",\"indices\":[19,42]}],\"media\":[{\"id\":1555129459480600576,\"id_str\":\"1555129459480600576\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"url\":\"https:\\/\\/t.co\\/ZBTWkZT89P\",\"display_url\":\"pic.twitter.com\\/ZBTWkZT89P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Starry_Gold\\/status\\/1555131195222069249\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"large\":{\"w\":604,\"h\":413,\"resize\":\"fit\"}}}]},\"427\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[173,179]},{\"text\":\"Finland\",\"indices\":[180,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"PokemonPresents\",\"indices\":[197,213]},{\"text\":\"onstorm\",\"indices\":[215,223]},{\"text\":\"Tinubu\",\"indices\":[224,231]},{\"text\":\"SDGs\",\"indices\":[233,238]},{\"text\":\"OBIDIENTS\",\"indices\":[239,249]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[250,262]},{\"text\":\"onstorm\",\"indices\":[263,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555130887028760576,\"id_str\":\"1555130887028760576\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"url\":\"https:\\/\\/t.co\\/I3KElydxVd\",\"display_url\":\"pic.twitter.com\\/I3KElydxVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1555130893794267138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}}]},\"428\":{\"hashtags\":[{\"text\":\"bellashmurda\",\"indices\":[90,103]},{\"text\":\"Finance\",\"indices\":[104,112]},{\"text\":\"Wizkid\",\"indices\":[113,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"BBNaija\",\"indices\":[129,137]},{\"text\":\"davido\",\"indices\":[138,145]},{\"text\":\"iphone14\",\"indices\":[146,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555129115388350464,\"id_str\":\"1555129115388350464\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"429\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"430\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[46,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"431\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[55,62]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"PokemonScarletViolet\",\"indices\":[76,97]},{\"text\":\"YEEZYDAY\",\"indices\":[98,107]},{\"text\":\"Nigeria\",\"indices\":[108,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555127653304238080,\"id_str\":\"1555127653304238080\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"url\":\"https:\\/\\/t.co\\/AzpwIvRGzg\",\"display_url\":\"pic.twitter.com\\/AzpwIvRGzg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BernardTwise\\/status\\/1555127655908970497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"},\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"}}}]},\"432\":{\"hashtags\":[{\"text\":\"bbnaija\",\"indices\":[184,192]},{\"text\":\"Taiwan\",\"indices\":[193,200]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SupremeContine1\",\"name\":\"Supreme_Continental\",\"id\":1472152760397307906,\"id_str\":\"1472152760397307906\",\"indices\":[103,119]}],\"urls\":[],\"media\":[{\"id\":1555126804217843712,\"id_str\":\"1555126804217843712\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"url\":\"https:\\/\\/t.co\\/GkUDEs2ebr\",\"display_url\":\"pic.twitter.com\\/GkUDEs2ebr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SupremeContine1\\/status\\/1555126966491152384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":448,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":359,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":448,\"resize\":\"fit\"}}}]},\"433\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[0,8]},{\"text\":\"Mp3\",\"indices\":[28,32]},{\"text\":\"trending\",\"indices\":[121,130]},{\"text\":\"pvcnigeria\",\"indices\":[131,142]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"Sheggsolu\",\"indices\":[151,161]},{\"text\":\"iPhone\",\"indices\":[162,169]},{\"text\":\"iphone14\",\"indices\":[170,179]},{\"text\":\"PeterObi\",\"indices\":[180,189]},{\"text\":\"BBNaijaS7\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Pa_J\",\"name\":\"PaJOfficial\\u2b50\\u2b50\",\"id\":48560890,\"id_str\":\"48560890\",\"indices\":[12,17]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0h70sKlwAD\",\"expanded_url\":\"http:\\/\\/koserenaija.com\\/2022\\/07\\/20\\/music-pa-j-pvc-mp3-koserenaija\\/\",\"display_url\":\"koserenaija.com\\/2022\\/07\\/20\\/mus\\u2026\",\"indices\":[97,120]}],\"media\":[{\"id\":1555124245038080003,\"id_str\":\"1555124245038080003\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"url\":\"https:\\/\\/t.co\\/sGvJ9HSAsQ\",\"display_url\":\"pic.twitter.com\\/sGvJ9HSAsQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555124249051992066\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":673,\"resize\":\"fit\"}},\"source_status_id\":1555124249051992066,\"source_status_id_str\":\"1555124249051992066\",\"source_user_id\":1017100479325720576,\"source_user_id_str\":\"1017100479325720576\"}]},\"434\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[131,140]},{\"text\":\"SheggzOlu\",\"indices\":[141,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"CommonwealthGames2022\",\"indices\":[160,182]},{\"text\":\"DONBELLEmpire\",\"indices\":[183,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555126387060637696,\"id_str\":\"1555126387060637696\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"435\":{\"hashtags\":[{\"text\":\"efcc\",\"indices\":[83,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"Gistlover\",\"indices\":[97,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"436\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"SheggzFC\",\"indices\":[123,132]},{\"text\":\"bella\",\"indices\":[133,139]},{\"text\":\"BigBrother\",\"indices\":[140,151]},{\"text\":\"BBNaija\",\"indices\":[152,160]},{\"text\":\"onstorm\",\"indices\":[161,169]},{\"text\":\"crochet\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555126212351197184,\"id_str\":\"1555126212351197184\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"437\":{\"hashtags\":[{\"text\":\"SheggzOlu\",\"indices\":[107,117]},{\"text\":\"BBNaijaS7\",\"indices\":[188,198]},{\"text\":\"LagosSwindlers\",\"indices\":[218,233]},{\"text\":\"CommonwealthGames2022\",\"indices\":[247,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"438\":{\"hashtags\":[{\"text\":\"Alienscomplianceorder\",\"indices\":[128,150]},{\"text\":\"Taiwan\",\"indices\":[151,158]},{\"text\":\"KNUST\",\"indices\":[187,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555123374799704065,\"id_str\":\"1555123374799704065\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555123374799704065\\/pu\\/img\\/RT1jGfJtuvmUWc5H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555123374799704065\\/pu\\/img\\/RT1jGfJtuvmUWc5H.jpg\",\"url\":\"https:\\/\\/t.co\\/wtcps5fqDU\",\"display_url\":\"pic.twitter.com\\/wtcps5fqDU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1555123728350158849\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":464,\"h\":848,\"resize\":\"fit\"},\"large\":{\"w\":464,\"h\":848,\"resize\":\"fit\"}}}]},\"439\":{\"hashtags\":[{\"text\":\"Binance\",\"indices\":[108,116]},{\"text\":\"BNB\",\"indices\":[117,121]},{\"text\":\"onstorm\",\"indices\":[122,130]},{\"text\":\"CommonwealthGames2022\",\"indices\":[131,153]},{\"text\":\"Finance\",\"indices\":[154,162]},{\"text\":\"Coinbase\",\"indices\":[163,172]},{\"text\":\"CryptocurrencyNews\",\"indices\":[173,192]},{\"text\":\"Taiwan\",\"indices\":[193,200]},{\"text\":\"r4today\",\"indices\":[201,209]},{\"text\":\"YEEZYDAY\",\"indices\":[210,219]},{\"text\":\"blockchaintechnology\",\"indices\":[220,241]},{\"text\":\"BlockchainCentral\",\"indices\":[242,260]},{\"text\":\"BBNaija\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555123015662424065,\"id_str\":\"1555123015662424065\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"url\":\"https:\\/\\/t.co\\/VjXGAOwrhN\",\"display_url\":\"pic.twitter.com\\/VjXGAOwrhN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1555123024881500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"440\":{\"hashtags\":[{\"text\":\"sackbuhari\",\"indices\":[85,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"PokemonScarletViolet\",\"indices\":[106,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"441\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"CommonwealthGames2022\",\"indices\":[33,55]},{\"text\":\"ASUU\",\"indices\":[56,61]},{\"text\":\"BBNajia\",\"indices\":[62,70]},{\"text\":\"AsiaCup2022\",\"indices\":[71,83]},{\"text\":\"Ukraine\",\"indices\":[84,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555122389062750208,\"id_str\":\"1555122389062750208\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"url\":\"https:\\/\\/t.co\\/MICtAAyTx6\",\"display_url\":\"pic.twitter.com\\/MICtAAyTx6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555122411443478528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"442\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"Taipei\",\"indices\":[132,139]},{\"text\":\"Beijing\",\"indices\":[140,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CizsNSzYIK\",\"expanded_url\":\"https:\\/\\/investogist.com\\/china-begins-live-fire-military-drills-around-taiwan-taiwan-says-ballistic-missiles-fired\\/\",\"display_url\":\"investogist.com\\/china-begins-l\\u2026\",\"indices\":[93,116]}]},\"443\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[162,167]},{\"text\":\"BBNajia\",\"indices\":[168,176]},{\"text\":\"AsiaCup2022\",\"indices\":[177,189]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[190,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"CommonwealthGames2022\",\"indices\":[217,239]},{\"text\":\"COVID19\",\"indices\":[240,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555114382283218950,\"id_str\":\"1555114382283218950\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"url\":\"https:\\/\\/t.co\\/6FJESNlTb5\",\"display_url\":\"pic.twitter.com\\/6FJESNlTb5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555114494996660224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":426,\"resize\":\"fit\"}}}]},\"444\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"PokemonPresents\",\"indices\":[24,40]},{\"text\":\"PokemonScarletViolet\",\"indices\":[41,62]},{\"text\":\"onstorm\",\"indices\":[63,71]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[72,84]},{\"text\":\"timesupolivia\",\"indices\":[85,99]},{\"text\":\"knust\",\"indices\":[100,106]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[107,128]},{\"text\":\"DonBelle\",\"indices\":[129,138]},{\"text\":\"FOREVER1\",\"indices\":[139,148]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[149,163]},{\"text\":\"DONBELLEmpire\",\"indices\":[164,178]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[179,202]},{\"text\":\"Pakistan\",\"indices\":[203,212]},{\"text\":\"AsiaCup2022\",\"indices\":[213,225]},{\"text\":\"SheggzOlu\",\"indices\":[226,236]},{\"text\":\"Wizkid\",\"indices\":[237,244]},{\"text\":\"Ethereum\",\"indices\":[245,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555108327671078912,\"id_str\":\"1555108327671078912\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"url\":\"https:\\/\\/t.co\\/o5Pmz3XLfc\",\"display_url\":\"pic.twitter.com\\/o5Pmz3XLfc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1555113873476313088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}}}]},\"445\":{\"hashtags\":[{\"text\":\"Connecticut\",\"indices\":[73,85]},{\"text\":\"Nigerian\",\"indices\":[86,95]},{\"text\":\"Messi\",\"indices\":[96,102]},{\"text\":\"FIFA23\",\"indices\":[103,110]},{\"text\":\"BoycottAliaBhatt\",\"indices\":[111,128]},{\"text\":\"PokemonPresents\",\"indices\":[129,145]},{\"text\":\"comicbooks\",\"indices\":[146,157]},{\"text\":\"Comedyvideos\",\"indices\":[158,171]},{\"text\":\"ComeBackHome\",\"indices\":[172,185]},{\"text\":\"KenyaDecides2022\",\"indices\":[186,203]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[204,222]},{\"text\":\"Russia\",\"indices\":[223,230]},{\"text\":\"UkraineWar\",\"indices\":[231,242]},{\"text\":\"BBNajiaS7\",\"indices\":[243,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/woD6hSDUtq\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3LW_9JaY8PY\",\"display_url\":\"youtu.be\\/3LW_9JaY8PY\",\"indices\":[254,277]}],\"media\":[{\"id\":1555113249980522496,\"id_str\":\"1555113249980522496\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"url\":\"https:\\/\\/t.co\\/9CAwdKId3g\",\"display_url\":\"pic.twitter.com\\/9CAwdKId3g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1555113286785531905\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":613,\"resize\":\"fit\"}}}]},\"446\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[243,250]},{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jxvlw23nix\",\"expanded_url\":\"https:\\/\\/ceoafrica.com\\/newsdetails.php?tabnews=88754\",\"display_url\":\"ceoafrica.com\\/newsdetails.ph\\u2026\",\"indices\":[136,159]}],\"media\":[{\"id\":1555112501892743169,\"id_str\":\"1555112501892743169\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"url\":\"https:\\/\\/t.co\\/P2QH6zdN0t\",\"display_url\":\"pic.twitter.com\\/P2QH6zdN0t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555112511707533313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":354,\"resize\":\"fit\"}}}]},\"447\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"FoundersDay\",\"indices\":[65,77]},{\"text\":\"TheBigBreakfast\",\"indices\":[78,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"448\":{\"hashtags\":[{\"text\":\"Batgirl\",\"indices\":[26,34]},{\"text\":\"Batgirl\",\"indices\":[187,195]},{\"text\":\"batgirlmovie\",\"indices\":[196,209]},{\"text\":\"BatgirlForever\",\"indices\":[210,225]},{\"text\":\"LeakBatgirl\",\"indices\":[226,238]},{\"text\":\"LeakBatgirlMovie\",\"indices\":[239,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"AsiaCup2022\",\"indices\":[266,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"449\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[171,178]},{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"jobsthathavethemostsex\",\"indices\":[237,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/W6IqLtac4r\",\"expanded_url\":\"https:\\/\\/ceoafrica.com\\/newsdetails.php?tabnews=88755\",\"display_url\":\"ceoafrica.com\\/newsdetails.ph\\u2026\",\"indices\":[63,86]}],\"media\":[{\"id\":1555110627357736960,\"id_str\":\"1555110627357736960\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/z7XRdlIub1\",\"display_url\":\"pic.twitter.com\\/z7XRdlIub1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555110646349430789\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"medium\":{\"w\":299,\"h\":169,\"resize\":\"fit\"}}}]},\"450\":{\"hashtags\":[{\"text\":\"happybirthday\",\"indices\":[64,78]},{\"text\":\"happybirthdaybarackobama\",\"indices\":[79,104]},{\"text\":\"visa\",\"indices\":[105,110]},{\"text\":\"travel\",\"indices\":[111,118]},{\"text\":\"visaapplication\",\"indices\":[119,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"USA\",\"indices\":[144,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555109225285783552,\"id_str\":\"1555109225285783552\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"url\":\"https:\\/\\/t.co\\/OaqxnPnlHT\",\"display_url\":\"pic.twitter.com\\/OaqxnPnlHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/filiimagna\\/status\\/1555109230616649728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"large\":{\"w\":553,\"h\":505,\"resize\":\"fit\"}}}]},\"451\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[100,107]},{\"text\":\"Zamazamas\",\"indices\":[108,118]},{\"text\":\"Afrobeats\",\"indices\":[119,129]},{\"text\":\"TheGuy\",\"indices\":[130,137]},{\"text\":\"onstorm\",\"indices\":[138,146]},{\"text\":\"Taiwan\",\"indices\":[147,154]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"choccitymusic\",\"name\":\"Chocolate City Music\",\"id\":84534309,\"id_str\":\"84534309\",\"indices\":[65,79]},{\"screen_name\":\"MI_Abaga\",\"name\":\"The Guy\",\"id\":50246444,\"id_str\":\"50246444\",\"indices\":[80,89]},{\"screen_name\":\"thisisAQ\",\"name\":\"Gilbert Bani\",\"id\":198274234,\"id_str\":\"198274234\",\"indices\":[90,99]}],\"urls\":[],\"media\":[{\"id\":1555109039897546755,\"id_str\":\"1555109039897546755\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"url\":\"https:\\/\\/t.co\\/njEI0I4SGm\",\"display_url\":\"pic.twitter.com\\/njEI0I4SGm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PeculiarHype\\/status\\/1555109135024328704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":374,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":704,\"resize\":\"fit\"}}}]},\"452\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[211,219]},{\"text\":\"Taiwan\",\"indices\":[220,227]},{\"text\":\"FOREVER1\",\"indices\":[228,237]},{\"text\":\"GiveUsPeterObi2023\",\"indices\":[238,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"453\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"female\",\"indices\":[103,110]},{\"text\":\"president\",\"indices\":[111,121]},{\"text\":\"China\",\"indices\":[155,161]},{\"text\":\"USA\",\"indices\":[186,190]},{\"text\":\"China\",\"indices\":[230,236]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[45,59]},{\"screen_name\":\"NBCNews\",\"name\":\"NBC News\",\"id\":14173315,\"id_str\":\"14173315\",\"indices\":[166,174]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l2EOshHwDE\",\"expanded_url\":\"https:\\/\\/nbcnews.to\\/3bu9fr2\",\"display_url\":\"nbcnews.to\\/3bu9fr2\",\"indices\":[260,283]}]},\"454\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[187,194]},{\"text\":\"Taiwan\",\"indices\":[224,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8tQA6sDt07\",\"expanded_url\":\"https:\\/\\/ceoafrica.com\\/newsdetails.php?tabnews=88756\",\"display_url\":\"ceoafrica.com\\/newsdetails.ph\\u2026\",\"indices\":[97,120]}],\"media\":[{\"id\":1555107510788521986,\"id_str\":\"1555107510788521986\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"url\":\"https:\\/\\/t.co\\/V3L2YpfZBh\",\"display_url\":\"pic.twitter.com\\/V3L2YpfZBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555107530749218816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"small\":{\"w\":300,\"h\":224,\"resize\":\"fit\"}}}]},\"455\":{\"hashtags\":[{\"text\":\"FYP\",\"indices\":[57,61]},{\"text\":\"DonBelle\",\"indices\":[62,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"knust\",\"indices\":[80,86]},{\"text\":\"artistsontwitter\",\"indices\":[87,104]},{\"text\":\"AsiaCup2022\",\"indices\":[105,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555106120620036096,\"id_str\":\"1555106120620036096\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}}]},\"456\":{\"hashtags\":[{\"text\":\"sia\",\"indices\":[238,242]},{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"onstorm\",\"indices\":[251,259]},{\"text\":\"AsiaCup2022\",\"indices\":[260,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sia\",\"name\":\"sia\",\"id\":23497233,\"id_str\":\"23497233\",\"indices\":[7,11]}],\"urls\":[],\"media\":[{\"id\":1555105899676590080,\"id_str\":\"1555105899676590080\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"url\":\"https:\\/\\/t.co\\/DwOAbXEW0R\",\"display_url\":\"pic.twitter.com\\/DwOAbXEW0R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PToplexnice\\/status\\/1555105959676100608\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"457\":{\"hashtags\":[{\"text\":\"AonArsenal\",\"indices\":[145,156]},{\"text\":\"AllOrNothing\",\"indices\":[157,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"PokemonPresents\",\"indices\":[179,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555105549313785856,\"id_str\":\"1555105549313785856\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"url\":\"https:\\/\\/t.co\\/S5AXrskrPQ\",\"display_url\":\"pic.twitter.com\\/S5AXrskrPQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/afcdaniels\\/status\\/1555105707715862528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"458\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[69,77]},{\"text\":\"FOREVER1\",\"indices\":[78,87]},{\"text\":\"PokemonPresents\",\"indices\":[88,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555105418266943489,\"id_str\":\"1555105418266943489\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"url\":\"https:\\/\\/t.co\\/232AciVFo1\",\"display_url\":\"pic.twitter.com\\/232AciVFo1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lovelynchilaka\\/status\\/1555105421039484929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":714,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":404,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1079,\"h\":1814,\"resize\":\"fit\"}}}]},\"459\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[122,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"PeterObi4President2023\",\"indices\":[139,162]},{\"text\":\"EndASUUStrike\",\"indices\":[163,177]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[179,204]},{\"text\":\"PeterObi2023\",\"indices\":[206,219]},{\"text\":\"EndSARS\",\"indices\":[220,228]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[230,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104570979893249,\"id_str\":\"1555104570979893249\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"url\":\"https:\\/\\/t.co\\/LFmXT3mSmp\",\"display_url\":\"pic.twitter.com\\/LFmXT3mSmp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104574884683777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"460\":{\"hashtags\":[{\"text\":\"RYE\",\"indices\":[29,33]},{\"text\":\"ryeci\",\"indices\":[34,40]},{\"text\":\"Bitcoin\",\"indices\":[41,49]},{\"text\":\"cryptocurrencies\",\"indices\":[50,67]},{\"text\":\"Crypto\",\"indices\":[68,75]},{\"text\":\"analysis\",\"indices\":[76,85]},{\"text\":\"triclown\",\"indices\":[88,97]},{\"text\":\"PokemonPresents\",\"indices\":[98,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"knust\",\"indices\":[123,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104188203520001,\"id_str\":\"1555104188203520001\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"url\":\"https:\\/\\/t.co\\/adGWS5HU7U\",\"display_url\":\"pic.twitter.com\\/adGWS5HU7U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DDadalekan\\/status\\/1555104345552715776\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}}}]},\"461\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[101,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"PeterObi4President2023\",\"indices\":[117,140]},{\"text\":\"EndASUUStrike\",\"indices\":[141,155]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[157,182]},{\"text\":\"PeterObi2023\",\"indices\":[184,197]},{\"text\":\"EndSARS\",\"indices\":[198,206]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[208,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104124575916032,\"id_str\":\"1555104124575916032\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"url\":\"https:\\/\\/t.co\\/mWBy6AU7IA\",\"display_url\":\"pic.twitter.com\\/mWBy6AU7IA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104127406989312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"462\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[54,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"PeterObi4President2023\",\"indices\":[70,93]},{\"text\":\"EndASUUStrike\",\"indices\":[94,108]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[110,135]},{\"text\":\"PeterObi2023\",\"indices\":[137,150]},{\"text\":\"EndSARS\",\"indices\":[151,159]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[161,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555103188058906624,\"id_str\":\"1555103188058906624\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"url\":\"https:\\/\\/t.co\\/SGhptaePzL\",\"display_url\":\"pic.twitter.com\\/SGhptaePzL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555103518092140545\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"463\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[113,129]},{\"text\":\"NFT\",\"indices\":[130,134]},{\"text\":\"P2EGame\",\"indices\":[135,143]},{\"text\":\"videogames\",\"indices\":[144,155]},{\"text\":\"onstorm\",\"indices\":[156,164]},{\"text\":\"DONBELLEmpire\",\"indices\":[165,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"PokemonPresents\",\"indices\":[188,204]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"safrootics\",\"name\":\"Safrootics Game\",\"id\":1489151831745912844,\"id_str\":\"1489151831745912844\",\"indices\":[59,70]}],\"urls\":[]},\"464\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[180,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"Buhari\",\"indices\":[197,204]},{\"text\":\"sabinus\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555102066581946369,\"id_str\":\"1555102066581946369\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1243,\"h\":1155,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1115,\"resize\":\"fit\"}}}]},\"465\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Taipei\",\"indices\":[98,105]},{\"text\":\"Beijing\",\"indices\":[106,114]},{\"text\":\"Pelosi\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p7udXGzOWk\",\"expanded_url\":\"https:\\/\\/investogist.com\\/china-hits-taiwan-with-penalties-in-wake-of-pelosis-visit\\/\",\"display_url\":\"investogist.com\\/china-hits-tai\\u2026\",\"indices\":[59,82]}]},\"466\":{\"hashtags\":[{\"text\":\"UkraineRussiaWar\",\"indices\":[156,173]},{\"text\":\"Ukraine\",\"indices\":[174,182]},{\"text\":\"Russia\",\"indices\":[183,190]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"UkraineWillWin\",\"indices\":[199,214]},{\"text\":\"UkraineWar\",\"indices\":[215,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"467\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"NigerRepublic\",\"indices\":[177,191]},{\"text\":\"Nigeria\",\"indices\":[192,200]},{\"text\":\"Buhari\",\"indices\":[201,208]},{\"text\":\"SUV\",\"indices\":[209,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555100150342770688,\"id_str\":\"1555100150342770688\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"url\":\"https:\\/\\/t.co\\/gmCqDCXAtU\",\"display_url\":\"pic.twitter.com\\/gmCqDCXAtU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555100209516056576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"468\":{\"hashtags\":[{\"text\":\"personaldevelopment\",\"indices\":[89,109]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Beintentional\",\"indices\":[120,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"469\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[46,52]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[197,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555098067774636033,\"id_str\":\"1555098067774636033\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"url\":\"https:\\/\\/t.co\\/fq3guErmgy\",\"display_url\":\"pic.twitter.com\\/fq3guErmgy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555098095113089025\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"470\":{\"hashtags\":[{\"text\":\"ASSU\",\"indices\":[22,27]},{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"AsiaCup2022\",\"indices\":[36,48]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555097733924618241,\"id_str\":\"1555097733924618241\",\"indices\":[49,72],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"url\":\"https:\\/\\/t.co\\/r19nkT6Hvz\",\"display_url\":\"pic.twitter.com\\/r19nkT6Hvz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xminister0\\/status\\/1555097790358904834\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"471\":{\"hashtags\":[{\"text\":\"timesupolivia\",\"indices\":[193,207]},{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"sexworkiswork\",\"indices\":[216,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HivosWiL\",\"name\":\"Hivos-SheLeads\",\"id\":882127791994662913,\"id_str\":\"882127791994662913\",\"indices\":[167,176]},{\"screen_name\":\"gwheri\",\"name\":\"Herianto\",\"id\":194414063,\"id_str\":\"194414063\",\"indices\":[177,184]},{\"screen_name\":\"VSI_ng\",\"name\":\"Vision Spring Initiatives\",\"id\":970949740786577409,\"id_str\":\"970949740786577409\",\"indices\":[185,192]}],\"urls\":[]},\"472\":{\"hashtags\":[{\"text\":\"bikelife\",\"indices\":[65,74]},{\"text\":\"bike\",\"indices\":[75,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555096888986275841,\"id_str\":\"1555096888986275841\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"url\":\"https:\\/\\/t.co\\/mW0mCdPwZM\",\"display_url\":\"pic.twitter.com\\/mW0mCdPwZM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superridedude\\/status\\/1555096954962583552\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"473\":{\"hashtags\":[{\"text\":\"Ukraine\",\"indices\":[178,186]},{\"text\":\"Taiwan\",\"indices\":[187,194]},{\"text\":\"FixTheCountry\",\"indices\":[195,209]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NAkufoAddo\",\"name\":\"Nana Akufo-Addo\",\"id\":247217109,\"id_str\":\"247217109\",\"indices\":[5,16]}],\"urls\":[]},\"474\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[136,150]},{\"text\":\"onstorm\",\"indices\":[151,159]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[160,167]},{\"text\":\"PokemonPresents\",\"indices\":[168,184]},{\"text\":\"OYE38\",\"indices\":[185,191]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[192,213]},{\"text\":\"massage\",\"indices\":[214,222]},{\"text\":\"HarGharTiranga\",\"indices\":[223,238]},{\"text\":\"boycottrakshabandhan\",\"indices\":[239,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"475\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[88,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]},{\"text\":\"Pelosi\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555096059449311232,\"id_str\":\"1555096059449311232\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"url\":\"https:\\/\\/t.co\\/gYHpkxwPcE\",\"display_url\":\"pic.twitter.com\\/gYHpkxwPcE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555096065774436352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":683,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":683,\"resize\":\"fit\"}}}]},\"476\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[152,166]},{\"text\":\"onstorm\",\"indices\":[167,175]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[176,183]},{\"text\":\"PokemonPresents\",\"indices\":[184,200]},{\"text\":\"OYE38\",\"indices\":[201,207]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[208,229]},{\"text\":\"massage\",\"indices\":[230,238]},{\"text\":\"HarGharTiranga\",\"indices\":[239,254]},{\"text\":\"boycottrakshabandhan\",\"indices\":[255,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nigeriandailies\",\"name\":\"Nigerian Dailies\",\"id\":1250914615,\"id_str\":\"1250914615\",\"indices\":[0,16]},{\"screen_name\":\"barratahmed\",\"name\":\"A.T Ahmed, Esq.\",\"id\":708090863,\"id_str\":\"708090863\",\"indices\":[17,29]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"477\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[134,148]},{\"text\":\"onstorm\",\"indices\":[149,157]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[158,165]},{\"text\":\"PokemonPresents\",\"indices\":[166,182]},{\"text\":\"OYE38\",\"indices\":[183,189]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[190,211]},{\"text\":\"massage\",\"indices\":[212,220]},{\"text\":\"HarGharTiranga\",\"indices\":[221,236]},{\"text\":\"boycottrakshabandhan\",\"indices\":[237,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"renoomokri\",\"name\":\"Reno Omokri\",\"id\":264248576,\"id_str\":\"264248576\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"478\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[132,146]},{\"text\":\"onstorm\",\"indices\":[147,155]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[156,163]},{\"text\":\"PokemonPresents\",\"indices\":[164,180]},{\"text\":\"OYE38\",\"indices\":[181,187]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[188,209]},{\"text\":\"massage\",\"indices\":[210,218]},{\"text\":\"HarGharTiranga\",\"indices\":[219,234]},{\"text\":\"boycottrakshabandhan\",\"indices\":[235,256]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"segalink\",\"name\":\"SEGA L'\\u00e9veilleur\\u00ae\",\"id\":14879097,\"id_str\":\"14879097\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"479\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[139,153]},{\"text\":\"onstorm\",\"indices\":[154,162]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[163,170]},{\"text\":\"PokemonPresents\",\"indices\":[171,187]},{\"text\":\"OYE38\",\"indices\":[188,194]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[195,216]},{\"text\":\"massage\",\"indices\":[217,225]},{\"text\":\"HarGharTiranga\",\"indices\":[226,241]},{\"text\":\"boycottrakshabandhan\",\"indices\":[242,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[0,6]},{\"screen_name\":\"BUAgroup\",\"name\":\"BUA Group\",\"id\":3353157838,\"id_str\":\"3353157838\",\"indices\":[7,16]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"480\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"AppleMusicRT\",\"indices\":[77,90]},{\"text\":\"applestoashesgame\",\"indices\":[91,109]},{\"text\":\"applemusic\\u0e23\\u0e32\\u0e04\\u0e32\\u0e16\\u0e39\\u0e01\",\"indices\":[110,128]},{\"text\":\"iTunes\",\"indices\":[129,136]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[137,149]},{\"text\":\"PokemonPresents\",\"indices\":[150,166]},{\"text\":\"appleiphones\",\"indices\":[167,180]},{\"text\":\"airpodsgen2\",\"indices\":[181,193]},{\"text\":\"applemusicnigeria\",\"indices\":[194,212]},{\"text\":\"applemusicaustralia\",\"indices\":[213,233]},{\"text\":\"applemusicUK\",\"indices\":[234,247]},{\"text\":\"iphone14pro\",\"indices\":[248,260]},{\"text\":\"iPhones\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"481\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[136,150]},{\"text\":\"onstorm\",\"indices\":[151,159]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[160,167]},{\"text\":\"PokemonPresents\",\"indices\":[168,184]},{\"text\":\"OYE38\",\"indices\":[185,191]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[192,213]},{\"text\":\"massage\",\"indices\":[214,222]},{\"text\":\"HarGharTiranga\",\"indices\":[223,238]},{\"text\":\"boycottrakshabandhan\",\"indices\":[239,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"482\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[133,147]},{\"text\":\"onstorm\",\"indices\":[148,156]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[157,164]},{\"text\":\"PokemonPresents\",\"indices\":[165,181]},{\"text\":\"OYE38\",\"indices\":[182,188]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[189,210]},{\"text\":\"massage\",\"indices\":[211,219]},{\"text\":\"HarGharTiranga\",\"indices\":[220,235]},{\"text\":\"boycottrakshabandhan\",\"indices\":[236,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"triclowns\",\"name\":\"Triclowns\",\"id\":1190483463297814528,\"id_str\":\"1190483463297814528\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"483\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[146,160]},{\"text\":\"onstorm\",\"indices\":[161,169]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[170,177]},{\"text\":\"PokemonPresents\",\"indices\":[178,194]},{\"text\":\"OYE38\",\"indices\":[195,201]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[202,223]},{\"text\":\"massage\",\"indices\":[224,232]},{\"text\":\"HarGharTiranga\",\"indices\":[233,248]},{\"text\":\"boycottrakshabandhan\",\"indices\":[249,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Chude__\",\"name\":\"Columbus\",\"id\":910572372410949632,\"id_str\":\"910572372410949632\",\"indices\":[0,8]},{\"screen_name\":\"WillieMObiano\",\"name\":\"Chief Willie Obiano\",\"id\":1729331947,\"id_str\":\"1729331947\",\"indices\":[9,23]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"484\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[139,153]},{\"text\":\"onstorm\",\"indices\":[154,162]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[163,170]},{\"text\":\"PokemonPresents\",\"indices\":[171,187]},{\"text\":\"OYE38\",\"indices\":[188,194]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[195,216]},{\"text\":\"massage\",\"indices\":[217,225]},{\"text\":\"HarGharTiranga\",\"indices\":[226,241]},{\"text\":\"boycottrakshabandhan\",\"indices\":[242,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"emersonpalmieri\",\"name\":\"Emerson Palmieri\",\"id\":162905859,\"id_str\":\"162905859\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"485\":{\"hashtags\":[{\"text\":\"kwintemper\",\"indices\":[149,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"PokemonPresents\",\"indices\":[169,185]},{\"text\":\"enugu\",\"indices\":[186,192]},{\"text\":\"anambra\",\"indices\":[193,201]},{\"text\":\"imostate\",\"indices\":[202,211]},{\"text\":\"abia\",\"indices\":[212,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kwinmusic_\",\"name\":\"siren \\ud83e\\udddc\\ud83c\\udffb\\u200d\\u2640\\ufe0f\\ud83c\\udf0a\",\"id\":1136944832826548224,\"id_str\":\"1136944832826548224\",\"indices\":[22,33]}],\"urls\":[],\"media\":[{\"id\":1555094694941581317,\"id_str\":\"1555094694941581317\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"url\":\"https:\\/\\/t.co\\/GWdlCnhlVA\",\"display_url\":\"pic.twitter.com\\/GWdlCnhlVA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PRFirmNG\\/status\\/1555094753410170880\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"486\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[135,149]},{\"text\":\"onstorm\",\"indices\":[150,158]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"OYE38\",\"indices\":[184,190]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[191,212]},{\"text\":\"massage\",\"indices\":[213,221]},{\"text\":\"HarGharTiranga\",\"indices\":[222,237]},{\"text\":\"boycottrakshabandhan\",\"indices\":[238,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"487\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[138,152]},{\"text\":\"onstorm\",\"indices\":[153,161]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[162,169]},{\"text\":\"PokemonPresents\",\"indices\":[170,186]},{\"text\":\"OYE38\",\"indices\":[187,193]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[194,215]},{\"text\":\"massage\",\"indices\":[216,224]},{\"text\":\"HarGharTiranga\",\"indices\":[225,240]},{\"text\":\"boycottrakshabandhan\",\"indices\":[241,262]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGRLabourParty\",\"name\":\"Labour Party Support\",\"id\":1082877821515694080,\"id_str\":\"1082877821515694080\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"488\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[134,148]},{\"text\":\"onstorm\",\"indices\":[149,157]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[158,165]},{\"text\":\"PokemonPresents\",\"indices\":[166,182]},{\"text\":\"OYE38\",\"indices\":[183,189]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[190,211]},{\"text\":\"massage\",\"indices\":[212,220]},{\"text\":\"HarGharTiranga\",\"indices\":[221,236]},{\"text\":\"boycottrakshabandhan\",\"indices\":[237,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EfuaIsEnuf\",\"name\":\"olohita omueti\",\"id\":211173630,\"id_str\":\"211173630\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"489\":{\"hashtags\":[{\"text\":\"ImoState\",\"indices\":[76,85]},{\"text\":\"EbubeaguMustGo\",\"indices\":[86,101]},{\"text\":\"UN\",\"indices\":[103,106]},{\"text\":\"FreeNnamdiKanuNow\",\"indices\":[107,125]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[135,160]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[0,12]}],\"urls\":[]},\"490\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[150,164]},{\"text\":\"onstorm\",\"indices\":[165,173]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[174,181]},{\"text\":\"PokemonPresents\",\"indices\":[182,198]},{\"text\":\"OYE38\",\"indices\":[199,205]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[206,227]},{\"text\":\"massage\",\"indices\":[228,236]},{\"text\":\"HarGharTiranga\",\"indices\":[237,252]},{\"text\":\"boycottrakshabandhan\",\"indices\":[253,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GovSamuelOrtom\",\"name\":\"Samuel Ortom\",\"id\":874177410148827136,\"id_str\":\"874177410148827136\",\"indices\":[0,15]},{\"screen_name\":\"Austinokai\",\"name\":\"Usman Okai A\",\"id\":1467466765,\"id_str\":\"1467466765\",\"indices\":[16,27]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"491\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[146,160]},{\"text\":\"onstorm\",\"indices\":[161,169]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[170,177]},{\"text\":\"PokemonPresents\",\"indices\":[178,194]},{\"text\":\"OYE38\",\"indices\":[195,201]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[202,223]},{\"text\":\"massage\",\"indices\":[224,232]},{\"text\":\"HarGharTiranga\",\"indices\":[233,248]},{\"text\":\"boycottrakshabandhan\",\"indices\":[249,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GazetteNGR\",\"name\":\"Peoples Gazette\",\"id\":1276790264158474242,\"id_str\":\"1276790264158474242\",\"indices\":[0,11]},{\"screen_name\":\"ifamobarin\",\"name\":\"Ifamobarin Lanre\",\"id\":1308328397559468033,\"id_str\":\"1308328397559468033\",\"indices\":[12,23]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"492\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[147,161]},{\"text\":\"onstorm\",\"indices\":[162,170]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[171,178]},{\"text\":\"PokemonPresents\",\"indices\":[179,195]},{\"text\":\"OYE38\",\"indices\":[196,202]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[203,224]},{\"text\":\"massage\",\"indices\":[225,233]},{\"text\":\"HarGharTiranga\",\"indices\":[234,249]},{\"text\":\"boycottrakshabandhan\",\"indices\":[250,271]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IAOkowa\",\"name\":\"Dr. Ifeanyi Arthur Okowa\",\"id\":1026733681912758273,\"id_str\":\"1026733681912758273\",\"indices\":[0,8]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[9,24]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"493\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[137,151]},{\"text\":\"onstorm\",\"indices\":[152,160]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[161,168]},{\"text\":\"PokemonPresents\",\"indices\":[169,185]},{\"text\":\"OYE38\",\"indices\":[186,192]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[193,214]},{\"text\":\"massage\",\"indices\":[215,223]},{\"text\":\"HarGharTiranga\",\"indices\":[224,239]},{\"text\":\"boycottrakshabandhan\",\"indices\":[240,261]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LeadershipNGA\",\"name\":\"LEADERSHIP NEWS\",\"id\":248929204,\"id_str\":\"248929204\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"494\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[149,163]},{\"text\":\"onstorm\",\"indices\":[164,172]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[173,180]},{\"text\":\"PokemonPresents\",\"indices\":[181,197]},{\"text\":\"OYE38\",\"indices\":[198,204]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[205,226]},{\"text\":\"massage\",\"indices\":[227,235]},{\"text\":\"HarGharTiranga\",\"indices\":[236,251]},{\"text\":\"boycottrakshabandhan\",\"indices\":[252,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Roland_speaks\",\"name\":\"Roland Numofagha\",\"id\":450241139,\"id_str\":\"450241139\",\"indices\":[0,14]},{\"screen_name\":\"emmaikumeh\",\"name\":\"Emma ik Umeh (Tcee )\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":755188056,\"id_str\":\"755188056\",\"indices\":[15,26]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"495\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"thursdayvibes\",\"indices\":[81,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"496\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[151,165]},{\"text\":\"onstorm\",\"indices\":[166,174]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[175,182]},{\"text\":\"PokemonPresents\",\"indices\":[183,199]},{\"text\":\"OYE38\",\"indices\":[200,206]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[207,228]},{\"text\":\"massage\",\"indices\":[229,237]},{\"text\":\"HarGharTiranga\",\"indices\":[238,253]},{\"text\":\"boycottrakshabandhan\",\"indices\":[254,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBNaija\",\"name\":\"Big Brother Naija\",\"id\":814094730631987200,\"id_str\":\"814094730631987200\",\"indices\":[0,8]},{\"screen_name\":\"EnochMonu2\",\"name\":\"Monu Enoch\",\"id\":1459526027231772679,\"id_str\":\"1459526027231772679\",\"indices\":[9,20]},{\"screen_name\":\"quidax\",\"name\":\"Quincy li\",\"id\":171897868,\"id_str\":\"171897868\",\"indices\":[21,28]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"497\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[136,150]},{\"text\":\"onstorm\",\"indices\":[151,159]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[160,167]},{\"text\":\"PokemonPresents\",\"indices\":[168,184]},{\"text\":\"OYE38\",\"indices\":[185,191]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[192,213]},{\"text\":\"massage\",\"indices\":[214,222]},{\"text\":\"HarGharTiranga\",\"indices\":[223,238]},{\"text\":\"boycottrakshabandhan\",\"indices\":[239,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"498\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[135,149]},{\"text\":\"onstorm\",\"indices\":[150,158]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"OYE38\",\"indices\":[184,190]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[191,212]},{\"text\":\"massage\",\"indices\":[213,221]},{\"text\":\"HarGharTiranga\",\"indices\":[222,237]},{\"text\":\"boycottrakshabandhan\",\"indices\":[238,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"daily_trust\",\"name\":\"Daily Trust\",\"id\":69271273,\"id_str\":\"69271273\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsSqtlV\",\"display_url\":\"pic.twitter.com\\/ivDJsSqtlV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"499\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[225,232]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[233,247]},{\"text\":\"onstorm\",\"indices\":[248,256]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[257,264]},{\"text\":\"PokemonPresents\",\"indices\":[265,281]},{\"text\":\"OYE38\",\"indices\":[282,288]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[289,310]},{\"text\":\"massage\",\"indices\":[311,319]},{\"text\":\"HarGharTiranga\",\"indices\":[320,335]},{\"text\":\"boycottrakshabandhan\",\"indices\":[336,357]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OBIMAKAMA2023\",\"name\":\"DANIEL ADAMU TANGALE\",\"id\":1546932580880207874,\"id_str\":\"1546932580880207874\",\"indices\":[0,14]},{\"screen_name\":\"firstladyship\",\"name\":\"NEFERTITI\",\"id\":201237617,\"id_str\":\"201237617\",\"indices\":[15,29]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[30,39]},{\"screen_name\":\"doyinokupe\",\"name\":\"Doyin\",\"id\":740148150,\"id_str\":\"740148150\",\"indices\":[40,51]},{\"screen_name\":\"Dawa419\",\"name\":\"Musa Dawa\",\"id\":263261952,\"id_str\":\"263261952\",\"indices\":[52,60]},{\"screen_name\":\"Coalitionforpo\",\"name\":\"Coalition For Peter Obi\",\"id\":1539410382321860610,\"id_str\":\"1539410382321860610\",\"indices\":[61,76]},{\"screen_name\":\"Amanafm98_1\",\"name\":\"Amana FM 98.1\",\"id\":948828232287125504,\"id_str\":\"948828232287125504\",\"indices\":[77,89]},{\"screen_name\":\"dudugombe\",\"name\":\"Dudu Manuga\",\"id\":2942459685,\"id_str\":\"2942459685\",\"indices\":[90,100]},{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[101,110]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[359,382],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"500\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[133,147]},{\"text\":\"onstorm\",\"indices\":[148,156]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[157,164]},{\"text\":\"PokemonPresents\",\"indices\":[165,181]},{\"text\":\"OYE38\",\"indices\":[182,188]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[189,210]},{\"text\":\"massage\",\"indices\":[211,219]},{\"text\":\"HarGharTiranga\",\"indices\":[220,235]},{\"text\":\"boycottrakshabandhan\",\"indices\":[236,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KAFTAN_TV\",\"name\":\"KAFTANTV\",\"id\":976283614269845504,\"id_str\":\"976283614269845504\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"501\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[134,148]},{\"text\":\"onstorm\",\"indices\":[149,157]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[158,165]},{\"text\":\"PokemonPresents\",\"indices\":[166,182]},{\"text\":\"OYE38\",\"indices\":[183,189]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[190,211]},{\"text\":\"massage\",\"indices\":[212,220]},{\"text\":\"HarGharTiranga\",\"indices\":[221,236]},{\"text\":\"boycottrakshabandhan\",\"indices\":[237,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GazetteNGR\",\"name\":\"Peoples Gazette\",\"id\":1276790264158474242,\"id_str\":\"1276790264158474242\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"502\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[135,149]},{\"text\":\"onstorm\",\"indices\":[150,158]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"OYE38\",\"indices\":[184,190]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[191,212]},{\"text\":\"massage\",\"indices\":[213,221]},{\"text\":\"HarGharTiranga\",\"indices\":[222,237]},{\"text\":\"boycottrakshabandhan\",\"indices\":[238,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"503\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[183,190]},{\"text\":\"Scholarship\",\"indices\":[191,203]},{\"text\":\"stipend\",\"indices\":[204,212]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555092895455125504,\"id_str\":\"1555092895455125504\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"url\":\"https:\\/\\/t.co\\/P4cWauuqsP\",\"display_url\":\"pic.twitter.com\\/P4cWauuqsP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kellysteveo\\/status\\/1555092899624325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"thumb\":{\"w\":122,\"h\":122,\"resize\":\"crop\"}}}]},\"504\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/IaOMul24J1\",\"display_url\":\"pic.twitter.com\\/IaOMul24J1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"505\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/f16Z7WzVXa\",\"display_url\":\"pic.twitter.com\\/f16Z7WzVXa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"506\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"onstorm\",\"indices\":[80,88]},{\"text\":\"AsiaCup2022\",\"indices\":[90,102]},{\"text\":\"PiConsensus\",\"indices\":[103,115]},{\"text\":\"Ronaldo\",\"indices\":[192,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"507\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"peterobi\",\"indices\":[91,100]},{\"text\":\"WWIII\",\"indices\":[101,107]},{\"text\":\"Russia\",\"indices\":[108,115]},{\"text\":\"UkraineRussiaWar\",\"indices\":[116,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"508\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"AONArsenal\",\"indices\":[184,195]},{\"text\":\"FOREVER1\",\"indices\":[196,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555084499490377728,\"id_str\":\"1555084499490377728\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"509\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Japa\",\"indices\":[185,190]},{\"text\":\"globalnews\",\"indices\":[191,202]},{\"text\":\"Nigeria\",\"indices\":[203,211]},{\"text\":\"youths\",\"indices\":[212,219]},{\"text\":\"teens\",\"indices\":[220,226]},{\"text\":\"inflation\",\"indices\":[227,237]},{\"text\":\"AfCFTA\",\"indices\":[238,245]},{\"text\":\"exports\",\"indices\":[246,254]},{\"text\":\"youthevelopment\",\"indices\":[255,271]},{\"text\":\"mindset\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555089600837738497,\"id_str\":\"1555089600837738497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"url\":\"https:\\/\\/t.co\\/x7WL4aotsa\",\"display_url\":\"pic.twitter.com\\/x7WL4aotsa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tokiadewoyin\\/status\\/1555089627396149250\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"}}}]},\"510\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/2nqfH7Fu77\",\"display_url\":\"pic.twitter.com\\/2nqfH7Fu77\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"511\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"Fabrizio\",\"indices\":[44,53]},{\"text\":\"Nike\",\"indices\":[54,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555089203746185216,\"id_str\":\"1555089203746185216\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"url\":\"https:\\/\\/t.co\\/xVic1GMEyb\",\"display_url\":\"pic.twitter.com\\/xVic1GMEyb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theFlareabove\\/status\\/1555089213820993540\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":706,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":706,\"resize\":\"fit\"}}}]},\"512\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[68,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Pelosi\",\"indices\":[95,102]},{\"text\":\"USA\",\"indices\":[103,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555088295872405505,\"id_str\":\"1555088295872405505\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"url\":\"https:\\/\\/t.co\\/2nxIWDaKrM\",\"display_url\":\"pic.twitter.com\\/2nxIWDaKrM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555088313282957315\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"513\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[41,49]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"PokemonPresents\",\"indices\":[58,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"514\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]},{\"text\":\"PokemonPresents\",\"indices\":[50,66]},{\"text\":\"onstorm\",\"indices\":[67,75]},{\"text\":\"songwriter\",\"indices\":[76,87]},{\"text\":\"artist\",\"indices\":[88,95]},{\"text\":\"ArtistOnTwitter\",\"indices\":[96,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555086679995736064,\"id_str\":\"1555086679995736064\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/hkLJd20xwd\",\"display_url\":\"pic.twitter.com\\/hkLJd20xwd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uno_fini\\/status\\/1555086880462577664\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"515\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[83,104]},{\"text\":\"AsiaCup2022\",\"indices\":[105,117]},{\"text\":\"motivate\",\"indices\":[118,127]},{\"text\":\"FOREVER1\",\"indices\":[128,137]},{\"text\":\"\\u30dd\\u30b1\\u30e2\\u30f3\",\"indices\":[138,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555086740574052352,\"id_str\":\"1555086740574052352\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"url\":\"https:\\/\\/t.co\\/J0Q2VTOlIU\",\"display_url\":\"pic.twitter.com\\/J0Q2VTOlIU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/advertidehawk01\\/status\\/1555086748367179778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":310,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":548,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":584,\"h\":1280,\"resize\":\"fit\"}}}]},\"516\":{\"hashtags\":[{\"text\":\"DONBELLEmpire\",\"indices\":[245,259]},{\"text\":\"GoldMedal\",\"indices\":[260,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KXpOweXhPK\",\"expanded_url\":\"https:\\/\\/zeep.ly\\/OWSok\",\"display_url\":\"zeep.ly\\/OWSok\",\"indices\":[221,244]}]},\"517\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"PokemonPresents\",\"indices\":[93,109]},{\"text\":\"FOREVER1\",\"indices\":[110,119]},{\"text\":\"obo\",\"indices\":[120,124]},{\"text\":\"AsiaCup2022\",\"indices\":[125,137]},{\"text\":\"mamadollar\",\"indices\":[138,149]},{\"text\":\"Asuu\",\"indices\":[150,155]},{\"text\":\"BigBella\",\"indices\":[156,165]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[9,16]}],\"urls\":[],\"media\":[{\"id\":1555085766207971328,\"id_str\":\"1555085766207971328\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"url\":\"https:\\/\\/t.co\\/LL5EZHwqwo\",\"display_url\":\"pic.twitter.com\\/LL5EZHwqwo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/godygold01\\/status\\/1555085774076477441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":712,\"h\":859,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":859,\"resize\":\"fit\"}}}]},\"518\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"onstorm\",\"indices\":[76,84]},{\"text\":\"BBNaija\",\"indices\":[85,93]},{\"text\":\"BBNajiaS7\",\"indices\":[94,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UeSYtTkBBL\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/bbnaija-s7-khalid-grants-daniella-midnight-ecstasy-under-d-duvet\\/\",\"display_url\":\"iexclusivenews.com.ng\\/bbnaija-s7-kha\\u2026\",\"indices\":[106,129]}]},\"519\":{\"hashtags\":[{\"text\":\"AllorNothing\",\"indices\":[30,43]},{\"text\":\"arisetv\",\"indices\":[44,52]},{\"text\":\"cynithaokereke\",\"indices\":[53,68]},{\"text\":\"Asuu\",\"indices\":[69,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"AsiaCup2022\",\"indices\":[83,95]},{\"text\":\"BBNaija\",\"indices\":[96,104]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[105,123]},{\"text\":\"DONBELLEmpire\",\"indices\":[124,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"520\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"BBNaija\",\"indices\":[76,84]},{\"text\":\"BBNajiaS7\",\"indices\":[85,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q5ihXkZI0y\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/bbnaija-s7-khalid-grants-daniella-midnight-ecstasy-under-d-duvet\\/\",\"display_url\":\"iexclusivenews.com.ng\\/bbnaija-s7-kha\\u2026\",\"indices\":[96,119]}]},\"521\":{\"hashtags\":[{\"text\":\"thursdayvibes\",\"indices\":[257,271]},{\"text\":\"Taiwan\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"inecnigeria\",\"name\":\"INEC Nigeria\",\"id\":229860431,\"id_str\":\"229860431\",\"indices\":[79,91]}],\"urls\":[],\"media\":[{\"id\":1555084447371988992,\"id_str\":\"1555084447371988992\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"url\":\"https:\\/\\/t.co\\/8M1sLd7Yq1\",\"display_url\":\"pic.twitter.com\\/8M1sLd7Yq1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hardynwa\\/status\\/1555084450165407746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"small\":{\"w\":626,\"h\":417,\"resize\":\"fit\"}}}]},\"522\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"523\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[9,16]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SkyNews\",\"name\":\"Sky News\",\"id\":7587032,\"id_str\":\"7587032\",\"indices\":[0,8]}],\"urls\":[]},\"524\":{\"hashtags\":[{\"text\":\"ASUUstrike\",\"indices\":[103,114]},{\"text\":\"insecurity\",\"indices\":[119,130]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"thursdayvibes\",\"indices\":[186,200]},{\"text\":\"thursdaymorning\",\"indices\":[201,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"525\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"PokemonPresents\",\"indices\":[41,57]},{\"text\":\"onstorm\",\"indices\":[58,66]},{\"text\":\"timesupolivia\",\"indices\":[67,81]},{\"text\":\"HarGharTiranga\",\"indices\":[82,97]},{\"text\":\"boycottrakshabandhan\",\"indices\":[98,119]},{\"text\":\"AONArsenal\",\"indices\":[120,131]},{\"text\":\"Uyajola99\",\"indices\":[132,142]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[143,157]},{\"text\":\"\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631\\u1160\",\"indices\":[158,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1Ixb4QKQFK\",\"expanded_url\":\"https:\\/\\/www.friendlilycoach.com\\/\",\"display_url\":\"friendlilycoach.com\",\"indices\":[189,212]}]},\"526\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"suede\",\"indices\":[156,162]},{\"text\":\"Bata\",\"indices\":[163,168]},{\"text\":\"FOREVER1\",\"indices\":[169,178]},{\"text\":\"timesupolivia\",\"indices\":[179,193]},{\"text\":\"CRAFTMASTER\",\"indices\":[194,206]},{\"text\":\"FolloMe\",\"indices\":[207,215]},{\"text\":\"follo4follo\",\"indices\":[216,228]},{\"text\":\"TheView\",\"indices\":[229,237]},{\"text\":\"snapwhore\",\"indices\":[238,248]},{\"text\":\"TheHundred\",\"indices\":[249,260]},{\"text\":\"SNEAKERS\",\"indices\":[261,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Abbeyolaa1\",\"name\":\"Abbey olaa\",\"id\":575347761,\"id_str\":\"575347761\",\"indices\":[131,142]}],\"urls\":[],\"media\":[{\"id\":1555081642665984000,\"id_str\":\"1555081642665984000\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":457,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":806,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1849,\"resize\":\"fit\"}}}]},\"527\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"FOREVER1\",\"indices\":[162,171]},{\"text\":\"PokemonPresents\",\"indices\":[172,188]},{\"text\":\"onstorm\",\"indices\":[189,197]},{\"text\":\"timesupolivia\",\"indices\":[198,212]},{\"text\":\"AONArsenal\",\"indices\":[213,224]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[225,239]},{\"text\":\"\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"indices\":[240,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"528\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[97,119]},{\"text\":\"AbujaFinders\",\"indices\":[120,133]},{\"text\":\"RealEstate\",\"indices\":[134,145]},{\"text\":\"PeterObi\",\"indices\":[146,155]},{\"text\":\"EndSARS\",\"indices\":[156,164]},{\"text\":\"Barcelona\",\"indices\":[165,175]},{\"text\":\"Barca\",\"indices\":[176,182]},{\"text\":\"PeterObi4President2023\",\"indices\":[183,206]},{\"text\":\"BBNaija7\",\"indices\":[207,216]},{\"text\":\"INEC\",\"indices\":[217,222]},{\"text\":\"Arewa4PeterObi\",\"indices\":[223,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"Taiwan\",\"indices\":[255,262]},{\"text\":\"davidhundeyin\",\"indices\":[263,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555078073728598018,\"id_str\":\"1555078073728598018\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cs1HxMDA4O\",\"display_url\":\"pic.twitter.com\\/Cs1HxMDA4O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555078393535897600\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"529\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_theladymo\",\"name\":\"\\u1eccM\\u1ecc\\u0301T\\u00c1R\\u00c1 \\u00c0K\\u00c0NN\\u00cd\",\"id\":1187135845444280320,\"id_str\":\"1187135845444280320\",\"indices\":[50,61]},{\"screen_name\":\"Abdulhermeed001\",\"name\":\"L\\u00ebgend \\u00e4bdul ch\\u00e4fe\",\"id\":1533827781800480770,\"id_str\":\"1533827781800480770\",\"indices\":[62,78]},{\"screen_name\":\"Ameengwaska\",\"name\":\"Ameen Adam\",\"id\":1475147076069691399,\"id_str\":\"1475147076069691399\",\"indices\":[79,91]},{\"screen_name\":\"cuppymusic\",\"name\":\"Cuppy\",\"id\":226944459,\"id_str\":\"226944459\",\"indices\":[92,103]},{\"screen_name\":\"Abdoulmaleek001\",\"name\":\"Abdulmaleek\",\"id\":1392048183916875780,\"id_str\":\"1392048183916875780\",\"indices\":[104,120]},{\"screen_name\":\"muftahu_E\",\"name\":\"Muftahu B Excellency\",\"id\":1539616595739279361,\"id_str\":\"1539616595739279361\",\"indices\":[121,131]},{\"screen_name\":\"AhmadCeleh\",\"name\":\"AHMAD CELEH\",\"id\":1503629007585173504,\"id_str\":\"1503629007585173504\",\"indices\":[132,143]}],\"urls\":[],\"media\":[{\"id\":1555078029604536320,\"id_str\":\"1555078029604536320\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"url\":\"https:\\/\\/t.co\\/ie1QIkk4Ul\",\"display_url\":\"pic.twitter.com\\/ie1QIkk4Ul\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1555078032158855169\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"}}}]},\"530\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"onstorm\",\"indices\":[185,193]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[194,208]},{\"text\":\"FOREVER1\",\"indices\":[209,218]},{\"text\":\"PokemonPresents\",\"indices\":[219,235]},{\"text\":\"timesupolivia\",\"indices\":[236,250]},{\"text\":\"\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631\",\"indices\":[251,262]},{\"text\":\"\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"indices\":[263,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"531\":{\"hashtags\":[{\"text\":\"Khalid\",\"indices\":[44,51]},{\"text\":\"Deji\",\"indices\":[52,57]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"timesupolivia\",\"indices\":[88,102]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Videosnwhatever\",\"name\":\"VideosWhatever\",\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"indices\":[58,74]},{\"screen_name\":\"LFC\",\"name\":\"Liverpool FC\",\"id\":19583545,\"id_str\":\"19583545\",\"indices\":[75,79]}],\"urls\":[],\"media\":[{\"id\":1555076636365692934,\"id_str\":\"1555076636365692934\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"url\":\"https:\\/\\/t.co\\/A812edBOgl\",\"display_url\":\"pic.twitter.com\\/A812edBOgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1555076714312699904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"532\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"thursdayvibes\",\"indices\":[57,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555075829624967173,\"id_str\":\"1555075829624967173\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"url\":\"https:\\/\\/t.co\\/ymqkzeEgXl\",\"display_url\":\"pic.twitter.com\\/ymqkzeEgXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DjEko_1\\/status\\/1555075883454664704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"533\":{\"hashtags\":[{\"text\":\"BLACKPINK\",\"indices\":[137,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"PokemonPresents\",\"indices\":[156,172]},{\"text\":\"arisetv\",\"indices\":[173,181]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[182,211]},{\"text\":\"onstorm\",\"indices\":[212,220]},{\"text\":\"timesupolivia\",\"indices\":[221,235]},{\"text\":\"AONArsenal\",\"indices\":[236,247]},{\"text\":\"FOREVER1\",\"indices\":[248,257]},{\"text\":\"GoldMedal\",\"indices\":[258,268]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AkanScript\",\"name\":\"akan isong\",\"id\":2979322396,\"id_str\":\"2979322396\",\"indices\":[55,66]},{\"screen_name\":\"fiverr\",\"name\":\"Fiverr\",\"id\":150248263,\"id_str\":\"150248263\",\"indices\":[80,87]},{\"screen_name\":\"Upwork\",\"name\":\"Upwork\",\"id\":15225375,\"id_str\":\"15225375\",\"indices\":[88,95]},{\"screen_name\":\"anoncontent\",\"name\":\"Anonymous Content\",\"id\":95111684,\"id_str\":\"95111684\",\"indices\":[96,108]},{\"screen_name\":\"AdobeVideo\",\"name\":\"Adobe Video & Motion\",\"id\":115584650,\"id_str\":\"115584650\",\"indices\":[109,120]},{\"screen_name\":\"motionpictures\",\"name\":\"Motion Picture Association\",\"id\":289072583,\"id_str\":\"289072583\",\"indices\":[121,136]}],\"urls\":[],\"media\":[{\"id\":1555074608088367107,\"id_str\":\"1555074608088367107\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"url\":\"https:\\/\\/t.co\\/nPzDVBq45i\",\"display_url\":\"pic.twitter.com\\/nPzDVBq45i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akanscript_\\/status\\/1555074729022717955\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"534\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[139,147]},{\"text\":\"BBNaijaS7\",\"indices\":[148,158]},{\"text\":\"Trending\",\"indices\":[159,168]},{\"text\":\"FOREVER1\",\"indices\":[169,178]},{\"text\":\"gistloverblog\",\"indices\":[179,193]},{\"text\":\"Gistlover\",\"indices\":[194,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"Obidatti023\",\"indices\":[213,225]},{\"text\":\"Nigerian\",\"indices\":[226,235]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBCWorld\",\"name\":\"BBC News (World)\",\"id\":742143,\"id_str\":\"742143\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1555073304528125957,\"id_str\":\"1555073304528125957\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"url\":\"https:\\/\\/t.co\\/8SUtRVlRBh\",\"display_url\":\"pic.twitter.com\\/8SUtRVlRBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bigdavidofficia\\/status\\/1555073319896076289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}}]},\"535\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[143,151]},{\"text\":\"BBNaijaS7\",\"indices\":[152,162]},{\"text\":\"Trending\",\"indices\":[163,172]},{\"text\":\"FOREVER1\",\"indices\":[173,182]},{\"text\":\"gistloverblog\",\"indices\":[183,197]},{\"text\":\"Gistlover\",\"indices\":[198,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"Obidatti023\",\"indices\":[217,229]},{\"text\":\"Nigerian\",\"indices\":[230,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iyaboawokoya\",\"name\":\"Madam President: Arinola Ifeoma Nnagi Awokoya @ 61\",\"id\":177113737,\"id_str\":\"177113737\",\"indices\":[0,13]}],\"urls\":[]},\"536\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[139,147]},{\"text\":\"BBNaijaS7\",\"indices\":[148,158]},{\"text\":\"Trending\",\"indices\":[159,168]},{\"text\":\"FOREVER1\",\"indices\":[169,178]},{\"text\":\"gistloverblog\",\"indices\":[179,193]},{\"text\":\"Gistlover\",\"indices\":[194,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"Obidatti023\",\"indices\":[213,225]},{\"text\":\"Nigerian\",\"indices\":[226,235]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"essteeem\",\"name\":\"\\ud835\\uddde!\\ud835\\udde1\\ud835\\uddda \\ud835\\uddde\\ud835\\uddd4\\ud835\\udddf\\ud835\\uddd4\\ud835\\udddf\\ud835\\uddd4\\u25e2\\u25e4\",\"id\":1472179071668957188,\"id_str\":\"1472179071668957188\",\"indices\":[0,9]}],\"urls\":[]},\"537\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"PokemonPresents\",\"indices\":[42,58]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[59,73]},{\"text\":\"HarGharTiranga\",\"indices\":[74,89]},{\"text\":\"Pakistan\",\"indices\":[90,99]},{\"text\":\"Uyajola99\",\"indices\":[100,110]},{\"text\":\"boycottrakshabandhan\",\"indices\":[111,132]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[133,150]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[13,25]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[26,33]}],\"urls\":[],\"media\":[{\"id\":1555072895377965056,\"id_str\":\"1555072895377965056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"url\":\"https:\\/\\/t.co\\/0A2Y7575z3\",\"display_url\":\"pic.twitter.com\\/0A2Y7575z3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NetMakanaki\\/status\\/1555073073103118337\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"538\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[141,149]},{\"text\":\"BBNaijaS7\",\"indices\":[150,160]},{\"text\":\"Trending\",\"indices\":[161,170]},{\"text\":\"FOREVER1\",\"indices\":[171,180]},{\"text\":\"gistloverblog\",\"indices\":[181,195]},{\"text\":\"Gistlover\",\"indices\":[196,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Obidatti023\",\"indices\":[215,227]},{\"text\":\"Nigerian\",\"indices\":[228,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Darasimi__\",\"name\":\"Dee Obiagirlie\",\"id\":501291577,\"id_str\":\"501291577\",\"indices\":[0,11]}],\"urls\":[]},\"539\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[143,151]},{\"text\":\"BBNaijaS7\",\"indices\":[152,162]},{\"text\":\"Trending\",\"indices\":[163,172]},{\"text\":\"FOREVER1\",\"indices\":[173,182]},{\"text\":\"gistloverblog\",\"indices\":[183,197]},{\"text\":\"Gistlover\",\"indices\":[198,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"Obidatti023\",\"indices\":[217,229]},{\"text\":\"Nigerian\",\"indices\":[230,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"chiiinnnyyy_\",\"name\":\"Tellytuby (sheisnotnormal)\",\"id\":1126471047862112256,\"id_str\":\"1126471047862112256\",\"indices\":[0,13]}],\"urls\":[]},\"540\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[141,149]},{\"text\":\"BBNaijaS7\",\"indices\":[150,160]},{\"text\":\"Trending\",\"indices\":[161,170]},{\"text\":\"FOREVER1\",\"indices\":[171,180]},{\"text\":\"gistloverblog\",\"indices\":[181,195]},{\"text\":\"Gistlover\",\"indices\":[196,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Obidatti023\",\"indices\":[215,227]},{\"text\":\"Nigerian\",\"indices\":[228,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"symplyDAPO\",\"name\":\"Dapsy\\ud80c\\udcf5\",\"id\":27998788,\"id_str\":\"27998788\",\"indices\":[0,11]}],\"urls\":[]},\"541\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[145,153]},{\"text\":\"BBNaijaS7\",\"indices\":[154,164]},{\"text\":\"Trending\",\"indices\":[165,174]},{\"text\":\"FOREVER1\",\"indices\":[175,184]},{\"text\":\"gistloverblog\",\"indices\":[185,199]},{\"text\":\"Gistlover\",\"indices\":[200,210]},{\"text\":\"Taiwan\",\"indices\":[211,218]},{\"text\":\"Obidatti023\",\"indices\":[219,231]},{\"text\":\"Nigerian\",\"indices\":[232,241]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Letter_to_Jack\",\"name\":\"Man of Letters.\",\"id\":1266608901346209793,\"id_str\":\"1266608901346209793\",\"indices\":[0,15]}],\"urls\":[]},\"542\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"PokemonPresents\",\"indices\":[105,121]},{\"text\":\"AONArsenal\",\"indices\":[122,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"543\":{\"hashtags\":[{\"text\":\"AONArsenal\",\"indices\":[20,31]},{\"text\":\"FOREVER1\",\"indices\":[32,41]},{\"text\":\"mopar\",\"indices\":[42,48]},{\"text\":\"onstorm\",\"indices\":[49,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555071758092353537,\"id_str\":\"1555071758092353537\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"url\":\"https:\\/\\/t.co\\/sqJJe9gm0r\",\"display_url\":\"pic.twitter.com\\/sqJJe9gm0r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/m_zordAutorep\\/status\\/1555071764933361665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"544\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[186,193]},{\"text\":\"Haaland\",\"indices\":[194,202]},{\"text\":\"PokemonPresents\",\"indices\":[203,219]},{\"text\":\"boycottrakshabandhan\",\"indices\":[220,241]},{\"text\":\"onstorm\",\"indices\":[242,250]},{\"text\":\"BBNaijaS7\",\"indices\":[251,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VZsxxT1HSB\",\"expanded_url\":\"http:\\/\\/bit.ly\\/imuncamp\",\"display_url\":\"bit.ly\\/imuncamp\",\"indices\":[129,152]},{\"url\":\"https:\\/\\/t.co\\/IIHcFl9pHm\",\"expanded_url\":\"http:\\/\\/www.internationalmun.org\",\"display_url\":\"internationalmun.org\",\"indices\":[159,182]}]},\"545\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"BBNajiaS7\",\"indices\":[45,55]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[56,73]},{\"text\":\"Viral\",\"indices\":[74,80]},{\"text\":\"quote\",\"indices\":[81,87]},{\"text\":\"PokemonPresents\",\"indices\":[88,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555069423693832194,\"id_str\":\"1555069423693832194\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"url\":\"https:\\/\\/t.co\\/TbGoJWGBu3\",\"display_url\":\"pic.twitter.com\\/TbGoJWGBu3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_amwordsmith\\/status\\/1555069433441402883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"546\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[20,27]},{\"text\":\"PLA\",\"indices\":[104,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gW1JTcjuze\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Reuters\\/status\\/1555056133601124352\",\"display_url\":\"twitter.com\\/Reuters\\/status\\u2026\",\"indices\":[115,138]}]},\"547\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[4,10]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[153,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555061924630786048,\"id_str\":\"1555061924630786048\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"url\":\"https:\\/\\/t.co\\/pvMPXhug9C\",\"display_url\":\"pic.twitter.com\\/pvMPXhug9C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555061972483588096\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"548\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[42,58]},{\"text\":\"timesupolivia\",\"indices\":[59,73]},{\"text\":\"AONArsenal\",\"indices\":[87,98]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[99,117]},{\"text\":\"FOREVER1\",\"indices\":[118,127]},{\"text\":\"HarGharTiranga\",\"indices\":[128,143]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[144,158]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[159,180]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[181,210]},{\"text\":\"JKLive\",\"indices\":[223,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"evawater111\",\"name\":\"\\u062e\",\"id\":773680737933484034,\"id_str\":\"773680737933484034\",\"indices\":[74,86]},{\"screen_name\":\"EvaWatson_\",\"name\":\"Van \\ud83c\\udf80\\ud83c\\udf38\",\"id\":84779070,\"id_str\":\"84779070\",\"indices\":[211,222]},{\"screen_name\":\"ModenaFyne\",\"name\":\"Fyne Modena\",\"id\":1276315758146936833,\"id_str\":\"1276315758146936833\",\"indices\":[231,242]}],\"urls\":[],\"media\":[{\"id\":1555061315907080193,\"id_str\":\"1555061315907080193\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"}}}]},\"549\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[13,19]},{\"text\":\"PLA\",\"indices\":[22,26]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[247,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555055980148572160,\"id_str\":\"1555055980148572160\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"url\":\"https:\\/\\/t.co\\/7BptZ4Zon2\",\"display_url\":\"pic.twitter.com\\/7BptZ4Zon2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555056027233824768\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"550\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"China\",\"indices\":[160,166]},{\"text\":\"Tibet\",\"indices\":[215,221]},{\"text\":\"EastTurkestan\",\"indices\":[223,237]},{\"text\":\"HongKong\",\"indices\":[244,253]},{\"text\":\"\\u4e2d\\u56fd\",\"indices\":[258,261]},{\"text\":\"\\u53f0\\u6e7e\",\"indices\":[262,265]},{\"text\":\"\\u0627\\u0644\\u0635\\u064a\\u0646\",\"indices\":[266,272]},{\"text\":\"\\u062a\\u064a\\u0648\\u0627\\u0646\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[81,95]}],\"urls\":[],\"media\":[{\"id\":1554913411624042497,\"id_str\":\"1554913411624042497\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"url\":\"https:\\/\\/t.co\\/GlfdeTfWYC\",\"display_url\":\"pic.twitter.com\\/GlfdeTfWYC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andalusio\\/status\\/1555040833744691200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"551\":{\"hashtags\":[{\"text\":\"Somaliland\",\"indices\":[82,93]},{\"text\":\"Taiwan\",\"indices\":[141,148]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Secominfo\",\"name\":\"Secretary Chris Anu\",\"id\":937298996783124480,\"id_str\":\"937298996783124480\",\"indices\":[0,10]},{\"screen_name\":\"BohHerbert\",\"name\":\"Herbert Boh\",\"id\":529047537,\"id_str\":\"529047537\",\"indices\":[245,256]},{\"screen_name\":\"MariantaNjomia\",\"name\":\"President Marianta Njomia\",\"id\":1507474476342067200,\"id_str\":\"1507474476342067200\",\"indices\":[257,272]}],\"urls\":[]},\"552\":{\"hashtags\":[{\"text\":\"talkximg\",\"indices\":[175,184]},{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"Batgirl\",\"indices\":[193,201]},{\"text\":\"AlexJones\",\"indices\":[203,213]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[214,235]},{\"text\":\"PokemonScarletViolet\",\"indices\":[236,257]},{\"text\":\"LoveIslandUSA\",\"indices\":[258,272]},{\"text\":\"RHOBH\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[151,174]}],\"media\":[{\"id\":1555036286783832064,\"id_str\":\"1555036286783832064\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"url\":\"https:\\/\\/t.co\\/pgTYOBpEWl\",\"display_url\":\"pic.twitter.com\\/pgTYOBpEWl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555036308552253440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"}}}]},\"553\":{\"hashtags\":[{\"text\":\"Intelfin\",\"indices\":[132,141]},{\"text\":\"Cosmos\",\"indices\":[142,149]},{\"text\":\"Giveaway\",\"indices\":[150,159]},{\"text\":\"web3\",\"indices\":[160,165]},{\"text\":\"NFTCommumity\",\"indices\":[166,179]},{\"text\":\"P2E\",\"indices\":[180,184]},{\"text\":\"Metaverse\",\"indices\":[185,195]},{\"text\":\"CryptocurrencyNews\",\"indices\":[196,215]},{\"text\":\"CryptoGems\",\"indices\":[216,227]},{\"text\":\"Crypto\",\"indices\":[228,235]},{\"text\":\"nftnews\",\"indices\":[236,244]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"BNB\",\"indices\":[265,269]},{\"text\":\"invest\",\"indices\":[270,277]}],\"symbols\":[{\"text\":\"JUNO\",\"indices\":[245,250]},{\"text\":\"ATOM\",\"indices\":[251,256]}],\"user_mentions\":[{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[7,23]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qYeuwDzdf0\",\"expanded_url\":\"http:\\/\\/intelfin.io\",\"display_url\":\"intelfin.io\",\"indices\":[108,131]}],\"media\":[{\"id\":1555031704716427266,\"id_str\":\"1555031704716427266\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"url\":\"https:\\/\\/t.co\\/jd5z1wrXPL\",\"display_url\":\"pic.twitter.com\\/jd5z1wrXPL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1555031716372381696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"554\":{\"hashtags\":[{\"text\":\"Obalende\",\"indices\":[7,16]},{\"text\":\"PokemonPresents\",\"indices\":[43,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"onstorm\",\"indices\":[68,76]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[77,102]},{\"text\":\"timesupolivia\",\"indices\":[103,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBk0P7D9BU\",\"expanded_url\":\"https:\\/\\/lnk.to\\/obalende\",\"display_url\":\"lnk.to\\/obalende\",\"indices\":[18,41]}]},\"555\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"China\",\"indices\":[216,222]},{\"text\":\"InspirationalQuotes\",\"indices\":[223,243]},{\"text\":\"Motivation\",\"indices\":[244,255]},{\"text\":\"PokemonPresents\",\"indices\":[256,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555020298747092992,\"id_str\":\"1555020298747092992\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"url\":\"https:\\/\\/t.co\\/0farobJifY\",\"display_url\":\"pic.twitter.com\\/0farobJifY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RobertAshu_\\/status\\/1555020307894878208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"556\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[164,187]},{\"text\":\"PeterObi\",\"indices\":[189,198]},{\"text\":\"peterobicampaignfund\",\"indices\":[200,221]},{\"text\":\"BBNaija\",\"indices\":[223,231]},{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"PeterObi4President\",\"indices\":[242,261]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[4,13]}],\"urls\":[]},\"557\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[129,137]},{\"text\":\"BBNaijaS7\",\"indices\":[138,148]},{\"text\":\"Trending\",\"indices\":[149,158]},{\"text\":\"FOREVER1\",\"indices\":[159,168]},{\"text\":\"gistloverblog\",\"indices\":[169,183]},{\"text\":\"Gistlover\",\"indices\":[184,194]},{\"text\":\"Taiwan\",\"indices\":[195,202]},{\"text\":\"Obidatti023\",\"indices\":[203,215]},{\"text\":\"Nigerian\",\"indices\":[216,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"558\":{\"hashtags\":[{\"text\":\"facecare\",\"indices\":[35,44]},{\"text\":\"skinlove\",\"indices\":[45,54]},{\"text\":\"skintips\",\"indices\":[55,64]},{\"text\":\"skincareluxury\",\"indices\":[65,80]},{\"text\":\"skincaretips\",\"indices\":[81,94]},{\"text\":\"LoveIsland2022\",\"indices\":[95,110]},{\"text\":\"Hulk\",\"indices\":[111,116]},{\"text\":\"loveislandNL\",\"indices\":[117,130]},{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"HungarianGP\",\"indices\":[139,151]},{\"text\":\"EURO2022\",\"indices\":[152,161]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MaGeAuNaturel\",\"name\":\"MaG\\u00e9Au Naturel\",\"id\":1509931140827783168,\"id_str\":\"1509931140827783168\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554635543782244352,\"id_str\":\"1554635543782244352\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"url\":\"https:\\/\\/t.co\\/k424DZXWBz\",\"display_url\":\"pic.twitter.com\\/k424DZXWBz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdunolaOgundar1\\/status\\/1555010634030383108\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"559\":{\"hashtags\":[{\"text\":\"Blender3d\",\"indices\":[59,69]},{\"text\":\"blender\",\"indices\":[70,78]},{\"text\":\"blendercommunity\",\"indices\":[79,96]},{\"text\":\"blendercycles\",\"indices\":[97,111]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"PokemonPresents\",\"indices\":[132,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555010029417385985,\"id_str\":\"1555010029417385985\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"560\":{\"hashtags\":[{\"text\":\"Mp3\",\"indices\":[57,61]},{\"text\":\"PokemonPresents\",\"indices\":[99,115]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[116,134]},{\"text\":\"GoldMedal\",\"indices\":[135,145]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[146,167]},{\"text\":\"music\",\"indices\":[168,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fineboybella\",\"name\":\"Yxng Alhaji \\ud83d\\udc90\",\"id\":1111537079811493888,\"id_str\":\"1111537079811493888\",\"indices\":[10,23]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7dlgJ31KEY\",\"expanded_url\":\"http:\\/\\/koserenaija.com\\/2022\\/08\\/04\\/music-bella-shmurda-new-born-fela-mp3-koserenaija\\/\",\"display_url\":\"koserenaija.com\\/2022\\/08\\/04\\/mus\\u2026\",\"indices\":[73,96]},{\"url\":\"https:\\/\\/t.co\\/qCDwWwJr79\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555002271108415492\\/photo\\/1\",\"display_url\":\"pic.twitter.com\\/qCDwWwJr79\",\"indices\":[175,198]}],\"media\":[{\"id\":1555003755673837573,\"id_str\":\"1555003755673837573\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"url\":\"https:\\/\\/t.co\\/niaDffdl4p\",\"display_url\":\"pic.twitter.com\\/niaDffdl4p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555003770404306945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"large\":{\"w\":300,\"h\":297,\"resize\":\"fit\"}}}]},\"561\":{\"hashtags\":[{\"text\":\"twitch\",\"indices\":[151,158]},{\"text\":\"SidHearts\",\"indices\":[159,169]},{\"text\":\"whatwevalue\",\"indices\":[170,182]},{\"text\":\"Putin\",\"indices\":[183,189]},{\"text\":\"Taiwan\",\"indices\":[190,197]},{\"text\":\"clickbanklinkpromotion\",\"indices\":[198,221]},{\"text\":\"clickbankaffiliate\",\"indices\":[222,241]},{\"text\":\"amazonaffiliate\",\"indices\":[242,258]},{\"text\":\"websitetraffic\",\"indices\":[259,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4WdBuXkpqb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3OGAMmJ\",\"display_url\":\"bit.ly\\/3OGAMmJ\",\"indices\":[126,149]}],\"media\":[{\"id\":1554998383789621248,\"id_str\":\"1554998383789621248\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"url\":\"https:\\/\\/t.co\\/kTip6QKDfX\",\"display_url\":\"pic.twitter.com\\/kTip6QKDfX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/THexperrt\\/status\\/1554998401888141312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":712,\"h\":430,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":712,\"h\":430,\"resize\":\"fit\"}}}]},\"562\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"563\":{\"hashtags\":[{\"text\":\"writerslift\",\"indices\":[34,46]},{\"text\":\"wips\",\"indices\":[64,69]},{\"text\":\"arts\",\"indices\":[70,75]},{\"text\":\"books\",\"indices\":[76,82]},{\"text\":\"blogs\",\"indices\":[83,89]},{\"text\":\"poetry\",\"indices\":[90,97]},{\"text\":\"WritingCommunity\",\"indices\":[141,158]},{\"text\":\"explore\",\"indices\":[159,167]},{\"text\":\"AuthorsOfTwitter\",\"indices\":[168,185]},{\"text\":\"bloggers\",\"indices\":[186,195]},{\"text\":\"PokemonScarletViolet\",\"indices\":[197,218]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[219,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"564\":{\"hashtags\":[{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[106,114]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[115,133]},{\"text\":\"YEEZYDAY\",\"indices\":[134,143]},{\"text\":\"BBNaijaS7\",\"indices\":[144,154]},{\"text\":\"YEEZYDAY\",\"indices\":[155,164]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[64,76]}],\"urls\":[],\"media\":[{\"id\":1554985164798918656,\"id_str\":\"1554985164798918656\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"url\":\"https:\\/\\/t.co\\/4HLIhejxeK\",\"display_url\":\"pic.twitter.com\\/4HLIhejxeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betubaba__\\/status\\/1554985257119760390\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"565\":{\"hashtags\":[{\"text\":\"UELQualifier\",\"indices\":[29,42]},{\"text\":\"NaijaBet\",\"indices\":[240,249]},{\"text\":\"BoostedOdds\",\"indices\":[250,262]},{\"text\":\"UEL\",\"indices\":[263,267]},{\"text\":\"Taiwan\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[215,238]}],\"media\":[{\"id\":1554984101656027136,\"id_str\":\"1554984101656027136\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"url\":\"https:\\/\\/t.co\\/j2WZpXricW\",\"display_url\":\"pic.twitter.com\\/j2WZpXricW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554984208589885441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"566\":{\"hashtags\":[{\"text\":\"WritingCommunity\",\"indices\":[4,21]},{\"text\":\"writerslift\",\"indices\":[56,68]},{\"text\":\"ShamelessSelfpromoThursday\",\"indices\":[80,107]},{\"text\":\"links\",\"indices\":[118,124]},{\"text\":\"books\",\"indices\":[125,131]},{\"text\":\"arts\",\"indices\":[132,137]},{\"text\":\"blogs\",\"indices\":[138,144]},{\"text\":\"articles\",\"indices\":[145,154]},{\"text\":\"fiction\",\"indices\":[155,163]},{\"text\":\"peoms\",\"indices\":[164,170]},{\"text\":\"poetry\",\"indices\":[171,178]},{\"text\":\"YouTube\",\"indices\":[179,187]},{\"text\":\"Drama\",\"indices\":[188,194]},{\"text\":\"podcasts\",\"indices\":[195,204]},{\"text\":\"Wips\",\"indices\":[205,210]},{\"text\":\"AuthorsOfTwitter\",\"indices\":[228,245]},{\"text\":\"bloggers\",\"indices\":[246,255]},{\"text\":\"Pelosi\",\"indices\":[256,263]},{\"text\":\"BBNaija\",\"indices\":[264,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554977848884183040,\"id_str\":\"1554977848884183040\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"url\":\"https:\\/\\/t.co\\/unVdsQqRLp\",\"display_url\":\"pic.twitter.com\\/unVdsQqRLp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Enyi_VictorBlog\\/status\\/1554977853988560896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"}}}]},\"567\":{\"hashtags\":[{\"text\":\"BadDecisionsTrailer2\",\"indices\":[141,162]},{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"PeterObi4President2023\",\"indices\":[171,194]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[195,210]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"568\":{\"hashtags\":[{\"text\":\"NationalBoobDay\",\"indices\":[123,139]},{\"text\":\"APCPresidentialPrimaries\",\"indices\":[140,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]},{\"text\":\"ASUU\",\"indices\":[174,179]},{\"text\":\"Tinubu\",\"indices\":[180,187]},{\"text\":\"blackchully\",\"indices\":[188,200]},{\"text\":\"andasuu\",\"indices\":[201,209]},{\"text\":\"PokemonPresents\",\"indices\":[210,226]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KashimSM\",\"name\":\"Kashim Shettima\",\"id\":870565463549505536,\"id_str\":\"870565463549505536\",\"indices\":[55,64]},{\"screen_name\":\"AlikoDangote\",\"name\":\"Aliko Dangote\",\"id\":1900338114,\"id_str\":\"1900338114\",\"indices\":[65,78]},{\"screen_name\":\"DangoteGroup\",\"name\":\"Dangote Group\",\"id\":176396711,\"id_str\":\"176396711\",\"indices\":[79,92]},{\"screen_name\":\"DangoteCement\",\"name\":\"Dangote Cement\",\"id\":2257734363,\"id_str\":\"2257734363\",\"indices\":[93,107]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[108,114]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[115,122]}],\"urls\":[],\"media\":[{\"id\":1554968648737034240,\"id_str\":\"1554968648737034240\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1AfxgSgqgn\",\"display_url\":\"pic.twitter.com\\/1AfxgSgqgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/awana_a_gana\\/status\\/1554968669574283264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"}}}]},\"569\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"USChinaTaiwanTussle\",\"indices\":[156,176]},{\"text\":\"Internationaltrade\",\"indices\":[177,196]},{\"text\":\"EconomicDiplomacy\",\"indices\":[197,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"570\":{\"hashtags\":[{\"text\":\"NationalBoobDay\",\"indices\":[109,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[134,142]},{\"text\":\"PokemonPresents\",\"indices\":[143,159]},{\"text\":\"onstorm\",\"indices\":[160,168]},{\"text\":\"BoycottAliaBhatt\",\"indices\":[169,186]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[187,199]},{\"text\":\"boycottrakshabandhan\",\"indices\":[200,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"571\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[256,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"Beijing\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554964133153587200,\"id_str\":\"1554964133153587200\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"url\":\"https:\\/\\/t.co\\/Um1CyfI94W\",\"display_url\":\"pic.twitter.com\\/Um1CyfI94W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554964398757773312\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"572\":{\"hashtags\":[{\"text\":\"ehu2022\",\"indices\":[24,32]},{\"text\":\"NationalBoobDay\",\"indices\":[33,49]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"PokemonPresents\",\"indices\":[58,74]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[75,83]},{\"text\":\"onstorm\",\"indices\":[84,92]},{\"text\":\"BoycottAliaBhatt\",\"indices\":[93,110]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[111,123]},{\"text\":\"timesupolivia\",\"indices\":[124,138]},{\"text\":\"Prabhas\",\"indices\":[139,147]},{\"text\":\"boycottrakshabandhan\",\"indices\":[148,169]},{\"text\":\"FOREVER1\",\"indices\":[170,179]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[180,201]},{\"text\":\"JeffBarcode\",\"indices\":[202,214]},{\"text\":\"BibleBuild\",\"indices\":[215,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554963908569583625,\"id_str\":\"1554963908569583625\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554963908569583625\\/pu\\/img\\/G7LvlgFP_nqMooA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554963908569583625\\/pu\\/img\\/G7LvlgFP_nqMooA2.jpg\",\"url\":\"https:\\/\\/t.co\\/kvLvW5vIhD\",\"display_url\":\"pic.twitter.com\\/kvLvW5vIhD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OtwoGh\\/status\\/1554964209598881792\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"573\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[12,22]},{\"text\":\"LagosSwindlers\",\"indices\":[54,69]},{\"text\":\"NationalBoobDay\",\"indices\":[70,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"FOREVER1\",\"indices\":[95,104]},{\"text\":\"WritingCommunity\",\"indices\":[105,122]},{\"text\":\"fabrizioromano\",\"indices\":[123,138]},{\"text\":\"Ghostingstory\",\"indices\":[139,153]},{\"text\":\"LagosSwindlers\",\"indices\":[154,169]},{\"text\":\"poetrycommunity\",\"indices\":[170,186]},{\"text\":\"PekinExpress\",\"indices\":[187,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554963406406524929,\"id_str\":\"1554963406406524929\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"url\":\"https:\\/\\/t.co\\/6wVGkuCveM\",\"display_url\":\"pic.twitter.com\\/6wVGkuCveM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554963409325752321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":522,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"}}}]},\"574\":{\"hashtags\":[{\"text\":\"Attention\",\"indices\":[60,70]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"knust\",\"indices\":[185,191]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[217,235]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[236,248]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[249,261]},{\"text\":\"onstorm\",\"indices\":[262,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kwadwosheldon\",\"name\":\"Kwadwo Sheldon\",\"id\":1368507991499149329,\"id_str\":\"1368507991499149329\",\"indices\":[160,174]}],\"urls\":[],\"media\":[{\"id\":1554955735884234757,\"id_str\":\"1554955735884234757\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554955735884234757\\/pu\\/img\\/ziABIZ7sEGh201pf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554955735884234757\\/pu\\/img\\/ziABIZ7sEGh201pf.jpg\",\"url\":\"https:\\/\\/t.co\\/eIhgXy20uR\",\"display_url\":\"pic.twitter.com\\/eIhgXy20uR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Swanskid_\\/status\\/1554956228828319744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}}}]},\"575\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"WWIII\",\"indices\":[47,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"576\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[56,62]},{\"text\":\"bubu\",\"indices\":[63,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"EndSARS\",\"indices\":[77,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"577\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[58,66]},{\"text\":\"timesupolivia\",\"indices\":[67,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"578\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"PokemonPresents\",\"indices\":[48,64]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[65,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"twitterclarets\",\"indices\":[95,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554954752739393538,\"id_str\":\"1554954752739393538\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"url\":\"https:\\/\\/t.co\\/9g4czDBj9I\",\"display_url\":\"pic.twitter.com\\/9g4czDBj9I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonemic\\/status\\/1554954769776656385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"small\":{\"w\":575,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"579\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[0,10]},{\"text\":\"PokemonScarletViolet\",\"indices\":[116,137]},{\"text\":\"Pelosi\",\"indices\":[138,145]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[146,167]},{\"text\":\"GoldMedal\",\"indices\":[168,178]},{\"text\":\"DonBelle\",\"indices\":[179,188]},{\"text\":\"Ninjawarriorsfc\",\"indices\":[189,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[91,114]}]},\"580\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[196,203]},{\"text\":\"timesupolivia\",\"indices\":[204,218]},{\"text\":\"AsiaCup2022\",\"indices\":[219,231]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[232,253]},{\"text\":\"PokemonPresents\",\"indices\":[254,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"the_big_4lf\",\"name\":\"playboi_menace\\ud83c\\udde6\\ud83c\\uddf6\",\"id\":1383569837901828101,\"id_str\":\"1383569837901828101\",\"indices\":[0,12]},{\"screen_name\":\"bod_republic\",\"name\":\"B.O.D\",\"id\":3138923027,\"id_str\":\"3138923027\",\"indices\":[13,26]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s4uVx9u2lp\",\"expanded_url\":\"https:\\/\\/wa.me\\/23409019060747?text=Hello+I'm+interested+in+Joining+*TWITAGRAM9JA+CHANNEL*%0AMy+Name+Is\",\"display_url\":\"wa.me\\/23409019060747\\u2026\",\"indices\":[171,194]}],\"media\":[{\"id\":1554953050497875968,\"id_str\":\"1554953050497875968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"url\":\"https:\\/\\/t.co\\/hL3D2W2oyh\",\"display_url\":\"pic.twitter.com\\/hL3D2W2oyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oceanfocuz\\/status\\/1554953058412527616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"}}}]},\"581\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[192,199]},{\"text\":\"timesupolivia\",\"indices\":[200,214]},{\"text\":\"AsiaCup2022\",\"indices\":[215,227]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[228,249]},{\"text\":\"PokemonPresents\",\"indices\":[250,266]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[0,10]},{\"screen_name\":\"Gamers8GG_AR\",\"name\":\"\\u0645\\u0648\\u0633\\u0645 \\u0627\\u0644\\u062c\\u064a\\u0645\\u0631\\u0632 Esports\",\"id\":1532703799453810690,\"id_str\":\"1532703799453810690\",\"indices\":[11,24]},{\"screen_name\":\"Gamers8GG\",\"name\":\"Gamers8 Esports\",\"id\":1532693504413028354,\"id_str\":\"1532693504413028354\",\"indices\":[25,35]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s4uVx9u2lp\",\"expanded_url\":\"https:\\/\\/wa.me\\/23409019060747?text=Hello+I'm+interested+in+Joining+*TWITAGRAM9JA+CHANNEL*%0AMy+Name+Is\",\"display_url\":\"wa.me\\/23409019060747\\u2026\",\"indices\":[167,190]}]},\"582\":{\"hashtags\":[{\"text\":\"Abuja\",\"indices\":[73,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Gistlover\",\"indices\":[88,98]},{\"text\":\"trenches\",\"indices\":[99,108]},{\"text\":\"Trending\",\"indices\":[110,119]},{\"text\":\"Viruman\",\"indices\":[120,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Py4MEBlgdJ\",\"expanded_url\":\"https:\\/\\/awixy.net\\/single.php?id=370\",\"display_url\":\"awixy.net\\/single.php?id=\\u2026\",\"indices\":[130,153]}],\"media\":[{\"id\":1554952343812202496,\"id_str\":\"1554952343812202496\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"url\":\"https:\\/\\/t.co\\/LRNy2gV78s\",\"display_url\":\"pic.twitter.com\\/LRNy2gV78s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1554952346110775301\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":187,\"resize\":\"fit\"}}}]},\"583\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[83,97]},{\"text\":\"bolatinubu\",\"indices\":[98,109]},{\"text\":\"room1\",\"indices\":[110,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"BB24\",\"indices\":[125,130]},{\"text\":\"davidhundeyin\",\"indices\":[131,145]},{\"text\":\"stress\",\"indices\":[146,153]},{\"text\":\"remedy\",\"indices\":[154,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uoEikCochW\",\"expanded_url\":\"https:\\/\\/youtu.be\\/CyKqTJ6IBaY\",\"display_url\":\"youtu.be\\/CyKqTJ6IBaY\",\"indices\":[58,81]}],\"media\":[{\"id\":1554951610316607495,\"id_str\":\"1554951610316607495\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"url\":\"https:\\/\\/t.co\\/rGiGx9nfeD\",\"display_url\":\"pic.twitter.com\\/rGiGx9nfeD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JerryKatician01\\/status\\/1554951856362819584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"584\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[137,153]},{\"text\":\"PokemonScarletViolet\",\"indices\":[154,175]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[176,184]},{\"text\":\"timesupolivia\",\"indices\":[185,199]},{\"text\":\"Pelosi\",\"indices\":[200,207]},{\"text\":\"FOREVER1\",\"indices\":[208,217]},{\"text\":\"Ninjawarriorsfc\",\"indices\":[219,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[113,136]}]},\"585\":{\"hashtags\":[{\"text\":\"chelsea\",\"indices\":[111,119]},{\"text\":\"niger\",\"indices\":[120,126]},{\"text\":\"Peterobi\",\"indices\":[127,136]},{\"text\":\"Brighton\",\"indices\":[137,146]},{\"text\":\"BBNaijaS7\",\"indices\":[162,172]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[173,188]},{\"text\":\"ASUU\",\"indices\":[200,205]},{\"text\":\"Taiwan\",\"indices\":[206,213]},{\"text\":\"Fabrizio\",\"indices\":[214,223]},{\"text\":\"Emily\",\"indices\":[224,230]},{\"text\":\"Obituary\",\"indices\":[238,247]},{\"text\":\"Biden\",\"indices\":[256,262]},{\"text\":\"Pelosi\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yhBXWin2rz\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[86,109]}],\"media\":[{\"id\":1554947160952766465,\"id_str\":\"1554947160952766465\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"url\":\"https:\\/\\/t.co\\/oULUzjYdc0\",\"display_url\":\"pic.twitter.com\\/oULUzjYdc0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947171329376257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"medium\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"586\":{\"hashtags\":[{\"text\":\"agrolyfe\",\"indices\":[234,243]},{\"text\":\"realestate\",\"indices\":[244,255]},{\"text\":\"Niger\",\"indices\":[256,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"China\",\"indices\":[271,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yhBXWin2rz\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[209,232]}],\"media\":[{\"id\":1554947112533692416,\"id_str\":\"1554947112533692416\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"url\":\"https:\\/\\/t.co\\/biyg4c2idH\",\"display_url\":\"pic.twitter.com\\/biyg4c2idH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947130447495172\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":495,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1484,\"resize\":\"fit\"}}}]},\"587\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"BBNajia\",\"indices\":[63,71]},{\"text\":\"BBNaijaS7\",\"indices\":[112,122]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[133,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554945877382397955,\"id_str\":\"1554945877382397955\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":451,\"resize\":\"fit\"}}}]},\"588\":{\"hashtags\":[{\"text\":\"BolaTinubu\",\"indices\":[35,46]},{\"text\":\"davidhundeyin\",\"indices\":[47,61]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"AtikuOkowa2023\",\"indices\":[70,85]},{\"text\":\"PeterObi\",\"indices\":[86,95]},{\"text\":\"BBNaijaS7\",\"indices\":[96,106]},{\"text\":\"decor\",\"indices\":[107,113]},{\"text\":\"homedecor\",\"indices\":[114,124]},{\"text\":\"arisetv\",\"indices\":[125,133]},{\"text\":\"Buhari\",\"indices\":[134,141]},{\"text\":\"Niger\",\"indices\":[142,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554943954654830592,\"id_str\":\"1554943954654830592\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"url\":\"https:\\/\\/t.co\\/Tp3tQJz3KK\",\"display_url\":\"pic.twitter.com\\/Tp3tQJz3KK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bulky305\\/status\\/1554943957313912833\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"589\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[154,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"590\":{\"hashtags\":[{\"text\":\"GospelEmpireGh\",\"indices\":[177,192]},{\"text\":\"StrictlyGospel\",\"indices\":[193,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"onstorm\",\"indices\":[217,225]},{\"text\":\"JeffBarcode\",\"indices\":[226,238]},{\"text\":\"KNUST\",\"indices\":[239,245]},{\"text\":\"Viruman\",\"indices\":[246,254]},{\"text\":\"life\",\"indices\":[255,260]},{\"text\":\"VCS\",\"indices\":[261,265]},{\"text\":\"F1\",\"indices\":[266,269]},{\"text\":\"YENA\",\"indices\":[270,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"victoriaorenze\",\"name\":\"victoria orenze\",\"id\":247263544,\"id_str\":\"247263544\",\"indices\":[6,21]},{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[91,106]}],\"urls\":[],\"media\":[{\"id\":1554936277077721088,\"id_str\":\"1554936277077721088\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554936277077721088\\/pu\\/img\\/_mOg-gFLlLSBOpNP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554936277077721088\\/pu\\/img\\/_mOg-gFLlLSBOpNP.jpg\",\"url\":\"https:\\/\\/t.co\\/NOjNbrnPYB\",\"display_url\":\"pic.twitter.com\\/NOjNbrnPYB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554936394639986690\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"591\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[123,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]},{\"text\":\"timesupolivia\",\"indices\":[148,162]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[163,188]},{\"text\":\"KNUST\",\"indices\":[189,195]},{\"text\":\"boycottrakshabandhan\",\"indices\":[196,217]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[218,239]},{\"text\":\"Viruman\",\"indices\":[240,248]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ConvergenceFin\",\"name\":\"Convergence Finance\",\"id\":1359091443537563651,\"id_str\":\"1359091443537563651\",\"indices\":[47,62]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5NHIvfXkRL\",\"expanded_url\":\"https:\\/\\/t.me\\/convergencefinanceofficial\",\"display_url\":\"t.me\\/convergencefin\\u2026\",\"indices\":[98,121]}],\"media\":[{\"id\":1554935922902372353,\"id_str\":\"1554935922902372353\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"url\":\"https:\\/\\/t.co\\/yvGKPNEaxP\",\"display_url\":\"pic.twitter.com\\/yvGKPNEaxP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554935935300665344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1534,\"h\":1585,\"resize\":\"fit\"},\"medium\":{\"w\":1161,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"}}}]},\"592\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"BBNajia\",\"indices\":[47,55]},{\"text\":\"BBNaijaS7\",\"indices\":[56,66]},{\"text\":\"ASUU\",\"indices\":[67,72]},{\"text\":\"ObiDatti\",\"indices\":[73,82]},{\"text\":\"PeterObi\",\"indices\":[83,92]},{\"text\":\"Taiwanchina\",\"indices\":[93,105]},{\"text\":\"chaina\",\"indices\":[106,113]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[114,132]},{\"text\":\"CommonwealthGames2022\",\"indices\":[133,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554931987034537985,\"id_str\":\"1554931987034537985\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"url\":\"https:\\/\\/t.co\\/5hephg70Dx\",\"display_url\":\"pic.twitter.com\\/5hephg70Dx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1554932017342578692\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"593\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[202,209]},{\"text\":\"Birmingham2022\",\"indices\":[210,225]},{\"text\":\"Obidatti023\",\"indices\":[226,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[248,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554930793935405056,\"id_str\":\"1554930793935405056\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"url\":\"https:\\/\\/t.co\\/MqQNE0DluW\",\"display_url\":\"pic.twitter.com\\/MqQNE0DluW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaRealityNe1\\/status\\/1554930832753807365\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}}}]},\"594\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[87,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"WuQian\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Et8VA4DuOx\",\"expanded_url\":\"https:\\/\\/www.thekampalareport.com\\/latest\\/world\\/2022080317780\\/spokesperson-of-ministry-of-national-defense-makes-remarks-on-pelosis-visit-to-taiwan.html\",\"display_url\":\"thekampalareport.com\\/latest\\/world\\/2\\u2026\",\"indices\":[110,133]}]},\"595\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"PokemonPresents\",\"indices\":[153,169]},{\"text\":\"AamirKhan\",\"indices\":[170,180]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[181,193]},{\"text\":\"boycottrakshabandhan\",\"indices\":[194,215]},{\"text\":\"davido\",\"indices\":[216,223]},{\"text\":\"Davido\",\"indices\":[224,231]},{\"text\":\"Bod\",\"indices\":[233,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"596\":{\"hashtags\":[{\"text\":\"NightCoppers\",\"indices\":[110,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"NigeriaDecides2023\",\"indices\":[132,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[57,65]},{\"screen_name\":\"NGRPresident\",\"name\":\"Presidency Nigeria\",\"id\":2964950313,\"id_str\":\"2964950313\",\"indices\":[66,79]},{\"screen_name\":\"BashirAhmaad\",\"name\":\"Bashir Ahmad\",\"id\":104296908,\"id_str\":\"104296908\",\"indices\":[80,93]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[94,107]}],\"urls\":[],\"media\":[{\"id\":1554925765602467842,\"id_str\":\"1554925765602467842\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"url\":\"https:\\/\\/t.co\\/1RGXU28Mr5\",\"display_url\":\"pic.twitter.com\\/1RGXU28Mr5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Cleeptvng\\/status\\/1554925804731207680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1200,\"resize\":\"fit\"}}}]},\"597\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[85,89]},{\"text\":\"Crypto\",\"indices\":[98,105]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"Pelosi\",\"indices\":[123,130]},{\"text\":\"ETH\",\"indices\":[131,135]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rovercrc\",\"name\":\"Crypto Rover\",\"id\":1353384573435056128,\"id_str\":\"1353384573435056128\",\"indices\":[0,9]}],\"urls\":[]},\"598\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[184,189]},{\"text\":\"China\",\"indices\":[190,196]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"BBNaija\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"599\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[28,37]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[38,63]},{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"PokemonScarletViolet\",\"indices\":[72,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"PokemonPresents\",\"indices\":[102,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554925006005698560,\"id_str\":\"1554925006005698560\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"url\":\"https:\\/\\/t.co\\/x8ToWVOlaG\",\"display_url\":\"pic.twitter.com\\/x8ToWVOlaG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kutithedirector\\/status\\/1554925033604128768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"600\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"PokemonScarletViolet\",\"indices\":[105,126]},{\"text\":\"PokemonPresents\",\"indices\":[127,143]},{\"text\":\"Pelosi\",\"indices\":[144,151]},{\"text\":\"boycottrakshabandhan\",\"indices\":[152,173]},{\"text\":\"AamirKhan\",\"indices\":[174,184]},{\"text\":\"MeghanMcCainMeltdown\",\"indices\":[185,206]},{\"text\":\"PrabhasForSitaRamam\",\"indices\":[207,227]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[0,15]},{\"screen_name\":\"FCBarcelona\",\"name\":\"FC Barcelona\",\"id\":96951800,\"id_str\":\"96951800\",\"indices\":[59,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iaDXI553hM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FabrizioRomano\\/status\\/1554894630889684999\",\"display_url\":\"twitter.com\\/FabrizioRomano\\u2026\",\"indices\":[228,251]}]},\"601\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"lufc\",\"indices\":[69,74]},{\"text\":\"EPL\",\"indices\":[75,79]},{\"text\":\"PokemonScarletViolet\",\"indices\":[80,101]},{\"text\":\"tundeednut\",\"indices\":[102,113]},{\"text\":\"BBNaija\",\"indices\":[114,122]},{\"text\":\"trans\",\"indices\":[123,129]},{\"text\":\"trendingnow\",\"indices\":[130,142]},{\"text\":\"GoViral\",\"indices\":[143,151]},{\"text\":\"Twitter\",\"indices\":[152,160]},{\"text\":\"vawlencesspace\",\"indices\":[161,176]},{\"text\":\"SummerSlam\",\"indices\":[177,188]},{\"text\":\"Pelosi\",\"indices\":[189,196]},{\"text\":\"pepsi\",\"indices\":[197,203]},{\"text\":\"LateNightTwitter\",\"indices\":[204,221]},{\"text\":\"goodnight\",\"indices\":[222,232]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554922792512020480,\"id_str\":\"1554922792512020480\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"url\":\"https:\\/\\/t.co\\/Ny7cGtBNlr\",\"display_url\":\"pic.twitter.com\\/Ny7cGtBNlr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554922799667503106\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":439,\"resize\":\"fit\"},\"medium\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"}}}]},\"602\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"MeghanMcCainMeltdown\",\"indices\":[24,45]},{\"text\":\"boycottrakshabandhan\",\"indices\":[46,67]},{\"text\":\"PokemonScarletViolet\",\"indices\":[68,89]},{\"text\":\"LagosSwindlers\",\"indices\":[90,105]},{\"text\":\"BBNaija\",\"indices\":[106,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pP196UHxJd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concept_nova\\/status\\/1554847243164860418\",\"display_url\":\"twitter.com\\/concept_nova\\/s\\u2026\",\"indices\":[115,138]}]},\"603\":{\"hashtags\":[{\"text\":\"mumulity\",\"indices\":[194,203]},{\"text\":\"Obidatti023\",\"indices\":[217,229]},{\"text\":\"Taiwan\",\"indices\":[230,237]},{\"text\":\"BBNaija\",\"indices\":[238,246]},{\"text\":\"PokemonPresents\",\"indices\":[247,263]},{\"text\":\"2023Elections\",\"indices\":[264,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554921110038274048,\"id_str\":\"1554921110038274048\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"url\":\"https:\\/\\/t.co\\/UeFEo5kC0H\",\"display_url\":\"pic.twitter.com\\/UeFEo5kC0H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/montero4emirate\\/status\\/1554921120905760778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"small\":{\"w\":669,\"h\":680,\"resize\":\"fit\"}}}]},\"604\":{\"hashtags\":[{\"text\":\"AlexJones\",\"indices\":[102,112]},{\"text\":\"SandyHook\",\"indices\":[113,123]},{\"text\":\"Pokemon\",\"indices\":[124,132]},{\"text\":\"PokemonPresents\",\"indices\":[133,149]},{\"text\":\"Kansas\",\"indices\":[150,157]},{\"text\":\"fidough\",\"indices\":[158,166]},{\"text\":\"Discord\",\"indices\":[167,175]},{\"text\":\"Discovery\",\"indices\":[176,186]},{\"text\":\"HBOMax\",\"indices\":[187,194]},{\"text\":\"colwill\",\"indices\":[195,203]},{\"text\":\"FreakyGirl\",\"indices\":[204,215]},{\"text\":\"Woody\",\"indices\":[216,222]},{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"timesupolivia\",\"indices\":[231,245]},{\"text\":\"talkximg\",\"indices\":[246,255]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"LoveIsland\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554920433736114176,\"id_str\":\"1554920433736114176\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"url\":\"https:\\/\\/t.co\\/a58nuGIcuj\",\"display_url\":\"pic.twitter.com\\/a58nuGIcuj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554920465453535234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"605\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[58,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"AamirKhan\",\"indices\":[83,93]},{\"text\":\"PokemonPresents\",\"indices\":[94,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554920207226994694,\"id_str\":\"1554920207226994694\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"606\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[31,36]},{\"text\":\"MinisterofFinance\",\"indices\":[37,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Hu8zBwbNnw\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/03\\/mrs-harris-goes-to-paris-2022\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/03\\/mrs\\u2026\",\"indices\":[64,87]}]},\"607\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"PokemonScarletViolet\",\"indices\":[25,46]},{\"text\":\"PokemonPresents\",\"indices\":[47,63]},{\"text\":\"boycottrakshabandhan\",\"indices\":[64,85]},{\"text\":\"bbnaija\",\"indices\":[86,94]},{\"text\":\"BigBrotherNaija\",\"indices\":[95,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554919511844945920,\"id_str\":\"1554919511844945920\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"url\":\"https:\\/\\/t.co\\/L5naFHzNv6\",\"display_url\":\"pic.twitter.com\\/L5naFHzNv6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1554919572913930240\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}}}]},\"608\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[63,70]},{\"text\":\"massage\",\"indices\":[71,79]},{\"text\":\"Machala\",\"indices\":[80,88]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"Davido\",\"indices\":[98,105]},{\"text\":\"burnaboy\",\"indices\":[106,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"609\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"PokemonScarletViolet\",\"indices\":[66,87]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[88,96]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[97,115]},{\"text\":\"AamirKhan\",\"indices\":[116,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EKNbMVUSuP\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/taiwan-u-s-china-tensions-flare-as-pelosi-leaves-taiwan\\/\",\"display_url\":\"iexclusivenews.com.ng\\/taiwan-u-s-chi\\u2026\",\"indices\":[127,150]}]},\"610\":{\"hashtags\":[{\"text\":\"music\",\"indices\":[69,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"PokemonScarletViolet\",\"indices\":[84,105]},{\"text\":\"Pelosi\",\"indices\":[106,113]},{\"text\":\"boycottrakshabandhan\",\"indices\":[114,135]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[136,159]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[160,181]},{\"text\":\"Trending\",\"indices\":[182,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554918084397469697,\"id_str\":\"1554918084397469697\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"url\":\"https:\\/\\/t.co\\/b0ZKsnRgJ6\",\"display_url\":\"pic.twitter.com\\/b0ZKsnRgJ6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AmDkenzie\\/status\\/1554918698191831044\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":640,\"resize\":\"fit\"}}}]},\"611\":{\"hashtags\":[{\"text\":\"OUROPINION\",\"indices\":[0,11]},{\"text\":\"apc\",\"indices\":[12,16]},{\"text\":\"NigerRepublic\",\"indices\":[74,88]},{\"text\":\"Buhari\",\"indices\":[147,154]},{\"text\":\"endbuhari\",\"indices\":[175,185]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"USA\",\"indices\":[199,203]},{\"text\":\"zainab_fatemaa\",\"indices\":[204,219]},{\"text\":\"RenosNuggets\",\"indices\":[221,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"612\":{\"hashtags\":[{\"text\":\"JakePaul\",\"indices\":[20,29]},{\"text\":\"\\u0e42\\u0e0a\\u0e04\\u0e23\\u0e16\\u0e41\\u0e2b\\u0e48\",\"indices\":[30,39]},{\"text\":\"PokemonScarletViolet\",\"indices\":[40,61]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[62,74]},{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"boycottrakshabandhan\",\"indices\":[83,104]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[105,126]},{\"text\":\"grace\",\"indices\":[127,133]},{\"text\":\"Trending\",\"indices\":[134,143]},{\"text\":\"godblessings\",\"indices\":[144,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554917648793833475,\"id_str\":\"1554917648793833475\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"url\":\"https:\\/\\/t.co\\/2OrZy9A1BQ\",\"display_url\":\"pic.twitter.com\\/2OrZy9A1BQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZealDise\\/status\\/1554917658948255750\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"613\":{\"hashtags\":[{\"text\":\"facts\",\"indices\":[128,134]},{\"text\":\"LoveIsland\",\"indices\":[135,146]},{\"text\":\"jesus\",\"indices\":[147,153]},{\"text\":\"Christianity\",\"indices\":[154,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"PokemonScarletViolet\",\"indices\":[176,197]},{\"text\":\"PokemonPresents\",\"indices\":[198,214]},{\"text\":\"Pelosi\",\"indices\":[215,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554917340168462337,\"id_str\":\"1554917340168462337\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"url\":\"https:\\/\\/t.co\\/XTI7MngazT\",\"display_url\":\"pic.twitter.com\\/XTI7MngazT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostleJoeUdoh\\/status\\/1554917350310395911\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"}}}]},\"614\":{\"hashtags\":[{\"text\":\"forex\",\"indices\":[73,79]},{\"text\":\"wikifx\",\"indices\":[80,87]},{\"text\":\"trading\",\"indices\":[88,96]},{\"text\":\"MONEY\",\"indices\":[97,103]},{\"text\":\"Crypto\",\"indices\":[104,111]},{\"text\":\"news\",\"indices\":[112,117]},{\"text\":\"skills\",\"indices\":[118,125]},{\"text\":\"beginners\",\"indices\":[126,136]},{\"text\":\"PokemonScarletViolet\",\"indices\":[137,158]},{\"text\":\"PokemonPresents\",\"indices\":[159,175]},{\"text\":\"Pelosi\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OZRROchuBC\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/newsdetail\\/202208033874724444.html\",\"display_url\":\"wikifx.com\\/en\\/newsdetail\\/\\u2026\",\"indices\":[49,72]}],\"media\":[{\"id\":1554916928652730370,\"id_str\":\"1554916928652730370\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"url\":\"https:\\/\\/t.co\\/uNm3Dqi46R\",\"display_url\":\"pic.twitter.com\\/uNm3Dqi46R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1554916934776487936\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":336,\"resize\":\"fit\"}}}]},\"615\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[63,86]},{\"text\":\"BBNaija\",\"indices\":[135,143]},{\"text\":\"nbcDSTV282\",\"indices\":[144,155]},{\"text\":\"BBC\",\"indices\":[156,160]},{\"text\":\"Terrorists\",\"indices\":[161,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554916828358610954,\"id_str\":\"1554916828358610954\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"url\":\"https:\\/\\/t.co\\/Ndvbo56Cix\",\"display_url\":\"pic.twitter.com\\/Ndvbo56Cix\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554916841855848448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}}}]},\"616\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"PokemonScarletViolet\",\"indices\":[45,66]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[67,75]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[76,94]},{\"text\":\"olosho\",\"indices\":[95,102]},{\"text\":\"BBNaija\",\"indices\":[103,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l3lvWc50x6\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/watch-full-black-chully-5-new-videos\\/\",\"display_url\":\"iexclusivenews.com.ng\\/watch-full-bla\\u2026\",\"indices\":[112,135]}]},\"617\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[67,81]},{\"text\":\"benincitymall\",\"indices\":[82,96]},{\"text\":\"BBNajiaS7\",\"indices\":[97,107]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[108,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554916078635171840,\"id_str\":\"1554916078635171840\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"}}}]},\"618\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"LabourParty\",\"indices\":[202,214]},{\"text\":\"Obidatti023\",\"indices\":[215,227]},{\"text\":\"BBNaija\",\"indices\":[228,236]},{\"text\":\"Pelosi\",\"indices\":[237,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554914917198733312,\"id_str\":\"1554914917198733312\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"url\":\"https:\\/\\/t.co\\/jCOYntTTXc\",\"display_url\":\"pic.twitter.com\\/jCOYntTTXc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554914919761453056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":775,\"resize\":\"fit\"},\"small\":{\"w\":632,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":775,\"resize\":\"fit\"}}}]},\"619\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"PokemonPresents\",\"indices\":[145,161]},{\"text\":\"Bbnaija\",\"indices\":[162,170]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iam_timotee\",\"name\":\"Timotee\",\"id\":1282343050149232640,\"id_str\":\"1282343050149232640\",\"indices\":[0,12]},{\"screen_name\":\"rexxiepondabeat\",\"name\":\"Rexxie\",\"id\":209536731,\"id_str\":\"209536731\",\"indices\":[15,31]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[55,64]},{\"screen_name\":\"Alex_Houseof308\",\"name\":\"Four-eyed Edo Boy\\u2122\",\"id\":385986859,\"id_str\":\"385986859\",\"indices\":[65,81]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[82,93]},{\"screen_name\":\"MAVINRECORDS\",\"name\":\"MAVIN RECORDS\",\"id\":546237443,\"id_str\":\"546237443\",\"indices\":[94,107]},{\"screen_name\":\"Ebuka\",\"name\":\"Ebuka Obi-Uchendu\",\"id\":18378475,\"id_str\":\"18378475\",\"indices\":[108,114]},{\"screen_name\":\"DanielRegha\",\"name\":\"Daniel Regha\",\"id\":1213321063465025536,\"id_str\":\"1213321063465025536\",\"indices\":[171,183]}],\"urls\":[],\"media\":[{\"id\":1554914242037432320,\"id_str\":\"1554914242037432320\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"url\":\"https:\\/\\/t.co\\/60kyNTYdVC\",\"display_url\":\"pic.twitter.com\\/60kyNTYdVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_timotee\\/status\\/1554914363928100864\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"620\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"PokemonPresents\",\"indices\":[21,37]},{\"text\":\"twitter\",\"indices\":[38,46]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554914140996632577,\"id_str\":\"1554914140996632577\",\"indices\":[47,70],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"url\":\"https:\\/\\/t.co\\/yiNSoKgXQY\",\"display_url\":\"pic.twitter.com\\/yiNSoKgXQY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554914152052817920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"621\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[57,73]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[74,92]},{\"text\":\"boycottrakshabandhan\",\"indices\":[93,114]},{\"text\":\"AamirKhan\",\"indices\":[115,125]},{\"text\":\"timesupolivia\",\"indices\":[126,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"622\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554913397401128963,\"id_str\":\"1554913397401128963\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"url\":\"https:\\/\\/t.co\\/FVS92zEuL3\",\"display_url\":\"pic.twitter.com\\/FVS92zEuL3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pastppl\\/status\\/1554913407270354947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"623\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[84,98]},{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GUeM5Ldh6Q\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/buhari-govt-confirms-purchase-of-n1-4-billion-worth-of-vehicles-for-niger-republic\\/\",\"display_url\":\"iexclusivenews.com.ng\\/buhari-govt-co\\u2026\",\"indices\":[130,153]}]},\"624\":{\"hashtags\":[{\"text\":\"transfers\",\"indices\":[173,183]},{\"text\":\"EPL\",\"indices\":[184,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"625\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"PokemonScarletViolet\",\"indices\":[102,123]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[124,132]},{\"text\":\"PokemonPresents\",\"indices\":[133,149]},{\"text\":\"BBNaija7\",\"indices\":[150,159]},{\"text\":\"BBNajia\",\"indices\":[160,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554910690321858560,\"id_str\":\"1554910690321858560\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"626\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"aneketwins\",\"indices\":[250,261]},{\"text\":\"worldbesttwins\",\"indices\":[262,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554910195821723648,\"id_str\":\"1554910195821723648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"url\":\"https:\\/\\/t.co\\/t83z7KgCZE\",\"display_url\":\"pic.twitter.com\\/t83z7KgCZE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554910206764765184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"}}}]},\"627\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"Niger\",\"indices\":[124,130]},{\"text\":\"BBNaija\",\"indices\":[131,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554909512221573121,\"id_str\":\"1554909512221573121\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"url\":\"https:\\/\\/t.co\\/7oFsDeYTsH\",\"display_url\":\"pic.twitter.com\\/7oFsDeYTsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554909529577512960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"medium\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"628\":{\"hashtags\":[{\"text\":\"bringbacknigeria\",\"indices\":[110,127]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[128,153]},{\"text\":\"channelstv\",\"indices\":[155,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[176,193]},{\"text\":\"BuhariMustGo\",\"indices\":[195,208]},{\"text\":\"BBNaija\",\"indices\":[210,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554909342398300164,\"id_str\":\"1554909342398300164\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"url\":\"https:\\/\\/t.co\\/httCZHSxTe\",\"display_url\":\"pic.twitter.com\\/httCZHSxTe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554909353592860674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":655,\"resize\":\"fit\"}}}]},\"629\":{\"hashtags\":[{\"text\":\"SkeemSaam\",\"indices\":[138,148]},{\"text\":\"breastfeeding\",\"indices\":[214,228]},{\"text\":\"BBNaija\",\"indices\":[229,237]},{\"text\":\"EndSARS\",\"indices\":[238,246]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[247,254]},{\"text\":\"Taiwan\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"630\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"PokemonPresents\",\"indices\":[57,73]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[74,92]},{\"text\":\"boycottrakshabandhan\",\"indices\":[93,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"631\":{\"hashtags\":[{\"text\":\"SkeemSaam\",\"indices\":[137,147]},{\"text\":\"breastfeeding\",\"indices\":[213,227]},{\"text\":\"BambamSorry\",\"indices\":[228,240]},{\"text\":\"EndSARS\",\"indices\":[241,249]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[250,257]},{\"text\":\"Taiwan\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"632\":{\"hashtags\":[{\"text\":\"SkeemSaam\",\"indices\":[113,123]},{\"text\":\"breastfeeding\",\"indices\":[189,203]},{\"text\":\"BambamSorry\",\"indices\":[204,216]},{\"text\":\"EndSARS\",\"indices\":[217,225]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[226,233]},{\"text\":\"Taiwan\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"633\":{\"hashtags\":[{\"text\":\"yorubavibechurch\",\"indices\":[221,238]},{\"text\":\"Reno\",\"indices\":[239,244]},{\"text\":\"davidhundeyin\",\"indices\":[245,259]},{\"text\":\"WWIII\",\"indices\":[260,266]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"634\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"minister\",\"indices\":[135,144]},{\"text\":\"midemartins\",\"indices\":[145,157]},{\"text\":\"PokemonPresents\",\"indices\":[158,174]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[175,183]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[184,202]},{\"text\":\"Nigeria\",\"indices\":[203,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554907611685871616,\"id_str\":\"1554907611685871616\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":922,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":862,\"resize\":\"fit\"}}}]},\"635\":{\"hashtags\":[{\"text\":\"lagosswindlers\",\"indices\":[85,100]},{\"text\":\"BBNaijaS7\",\"indices\":[101,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[120,133]},{\"screen_name\":\"GistReel\",\"name\":\"GistReel.Com\",\"id\":892153969,\"id_str\":\"892153969\",\"indices\":[134,143]},{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[144,156]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I2g2AcUXoz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Meekzainny\\/status\\/1554880088109453314\",\"display_url\":\"twitter.com\\/Meekzainny\\/sta\\u2026\",\"indices\":[157,180]}]},\"636\":{\"hashtags\":[{\"text\":\"thread\",\"indices\":[108,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"PokemonScarletViolet\",\"indices\":[124,145]},{\"text\":\"AamirKhan\",\"indices\":[146,156]},{\"text\":\"KNUST\",\"indices\":[157,163]},{\"text\":\"tiboinshape\",\"indices\":[164,176]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[177,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"637\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"PokemonPresents\",\"indices\":[37,53]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[54,72]},{\"text\":\"organics\",\"indices\":[73,82]},{\"text\":\"Nengi\",\"indices\":[84,90]},{\"text\":\"trending\",\"indices\":[91,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554905384854470660,\"id_str\":\"1554905384854470660\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"url\":\"https:\\/\\/t.co\\/jriEwqsvvJ\",\"display_url\":\"pic.twitter.com\\/jriEwqsvvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sharon_sleey\\/status\\/1554905444610703361\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"638\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[211,219]},{\"text\":\"\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a\",\"indices\":[220,229]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[230,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[66,75]},{\"screen_name\":\"crayonthis\",\"name\":\"CRAYWAY!\",\"id\":4364203575,\"id_str\":\"4364203575\",\"indices\":[101,112]},{\"screen_name\":\"heisrema\",\"name\":\"REMA\",\"id\":859280289654341636,\"id_str\":\"859280289654341636\",\"indices\":[113,122]},{\"screen_name\":\"rugerofficial\",\"name\":\"da Ruger gon screw u\\ud83d\\udd2b\\ud83c\\udff4\\u200d\\u2620\\ufe0f\\u264e\\ufe0f\",\"id\":1016573586474176512,\"id_str\":\"1016573586474176512\",\"indices\":[123,137]},{\"screen_name\":\"ayrastarr\",\"name\":\"Celestial being\",\"id\":1290633989208911873,\"id_str\":\"1290633989208911873\",\"indices\":[138,148]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[149,160]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[162,175]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mzzNbsFPxT\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazzy-by-dejavudmj\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[178,201]}],\"media\":[{\"id\":1554905006779793413,\"id_str\":\"1554905006779793413\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"url\":\"https:\\/\\/t.co\\/sLgaVkZN1d\",\"display_url\":\"pic.twitter.com\\/sLgaVkZN1d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554905114531577859\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"639\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[149,156]},{\"text\":\"PokemonPresents\",\"indices\":[157,173]},{\"text\":\"Obidatti023\",\"indices\":[174,186]},{\"text\":\"BBNaija\",\"indices\":[187,195]},{\"text\":\"LabourParty\",\"indices\":[196,208]},{\"text\":\"Auto\",\"indices\":[209,214]},{\"text\":\"CarDealership\",\"indices\":[215,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554904267558998017,\"id_str\":\"1554904267558998017\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"url\":\"https:\\/\\/t.co\\/c7Zb8bjK1h\",\"display_url\":\"pic.twitter.com\\/c7Zb8bjK1h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLAMIBODEREHAN\\/status\\/1554904346176929792\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"640\":{\"hashtags\":[{\"text\":\"crochet\",\"indices\":[82,90]},{\"text\":\"Crochet_Sweater\",\"indices\":[91,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"BBNaija\",\"indices\":[116,124]},{\"text\":\"ASUU\",\"indices\":[125,130]},{\"text\":\"KNUST\",\"indices\":[131,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554904263742160896,\"id_str\":\"1554904263742160896\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"641\":{\"hashtags\":[{\"text\":\"BigBrother\",\"indices\":[84,95]},{\"text\":\"Hermes\",\"indices\":[96,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"AamirKhan\",\"indices\":[112,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"642\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[54,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChelseaFC\",\"name\":\"Chelsea FC\",\"id\":22910295,\"id_str\":\"22910295\",\"indices\":[81,91]}],\"urls\":[]},\"643\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"PokemonScarletViolet\",\"indices\":[86,107]},{\"text\":\"PokemonPresents\",\"indices\":[109,125]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554903110451093506,\"id_str\":\"1554903110451093506\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"url\":\"https:\\/\\/t.co\\/JfkK4p5kHo\",\"display_url\":\"pic.twitter.com\\/JfkK4p5kHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BubesTreat_3\\/status\\/1554903129673666560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":421,\"resize\":\"fit\"}}}]},\"644\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[51,58]},{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"MoneyHeist\",\"indices\":[67,78]},{\"text\":\"JARUMA\",\"indices\":[79,86]},{\"text\":\"China\",\"indices\":[87,93]},{\"text\":\"IPOB\",\"indices\":[94,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554901434646265856,\"id_str\":\"1554901434646265856\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"url\":\"https:\\/\\/t.co\\/VjiXPWbX4f\",\"display_url\":\"pic.twitter.com\\/VjiXPWbX4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1554901550665015298\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"645\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[252,259]},{\"text\":\"Pelosi\",\"indices\":[260,267]},{\"text\":\"Machala\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554899220372529153,\"id_str\":\"1554899220372529153\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"url\":\"https:\\/\\/t.co\\/W1zrNyyBd4\",\"display_url\":\"pic.twitter.com\\/W1zrNyyBd4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DL_first_son\\/status\\/1554899262617653248\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":365,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"}}}]},\"646\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"Chelsea\",\"indices\":[152,160]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[81,96]}],\"urls\":[]},\"647\":{\"hashtags\":[{\"text\":\"Azerbaijan\",\"indices\":[230,241]},{\"text\":\"Armenia\",\"indices\":[242,250]},{\"text\":\"Taiwan\",\"indices\":[251,258]},{\"text\":\"Asia\",\"indices\":[259,264]},{\"text\":\"Pelosi\",\"indices\":[265,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895396790476803,\"id_str\":\"1554895396790476803\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"url\":\"https:\\/\\/t.co\\/sSTeJQYgcQ\",\"display_url\":\"pic.twitter.com\\/sSTeJQYgcQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554895525392138241\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"648\":{\"hashtags\":[{\"text\":\"BbnNaija\",\"indices\":[149,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"649\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"BulletTrainMovie\",\"indices\":[169,186]},{\"text\":\"PokemonPresents\",\"indices\":[187,203]},{\"text\":\"BBNaija\",\"indices\":[204,212]},{\"text\":\"BBNajiaS7\",\"indices\":[213,223]},{\"text\":\"sabinus\",\"indices\":[224,232]},{\"text\":\"BB24\",\"indices\":[233,238]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[113,122]},{\"screen_name\":\"MAVINRECORDS\",\"name\":\"MAVIN RECORDS\",\"id\":546237443,\"id_str\":\"546237443\",\"indices\":[123,136]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[137,150]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[151,159]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a2WtXyLF9J\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dtg8\\/song\\/one-boy-zero-stess\",\"display_url\":\"audiomack.com\\/dtg8\\/song\\/one-\\u2026\",\"indices\":[89,112]}],\"media\":[{\"id\":1554893024903282689,\"id_str\":\"1554893024903282689\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"url\":\"https:\\/\\/t.co\\/tA7oQLvgD9\",\"display_url\":\"pic.twitter.com\\/tA7oQLvgD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danthegreyt\\/status\\/1554895023048630272\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":688,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":688,\"h\":640,\"resize\":\"fit\"}}}]},\"650\":{\"hashtags\":[{\"text\":\"SpaceX\",\"indices\":[203,210]},{\"text\":\"Australia\",\"indices\":[211,221]},{\"text\":\"Space\",\"indices\":[222,228]},{\"text\":\"Taiwan\",\"indices\":[229,236]},{\"text\":\"Pelosi\",\"indices\":[237,244]},{\"text\":\"TrendingNow\",\"indices\":[245,257]},{\"text\":\"trending\",\"indices\":[258,267]},{\"text\":\"viral\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554894576321761280,\"id_str\":\"1554894576321761280\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"651\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[184,191]},{\"text\":\"BulletTrainMovie\",\"indices\":[192,209]},{\"text\":\"PokemonScarletViolet\",\"indices\":[210,231]},{\"text\":\"Pelosi\",\"indices\":[232,239]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[240,261]},{\"text\":\"Wizkid\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554894083633602561,\"id_str\":\"1554894083633602561\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"url\":\"https:\\/\\/t.co\\/4cLztckKId\",\"display_url\":\"pic.twitter.com\\/4cLztckKId\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nnachigraciouss\\/status\\/1554894090600325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"large\":{\"w\":450,\"h\":300,\"resize\":\"fit\"}}}]},\"652\":{\"hashtags\":[{\"text\":\"PremierLeague\",\"indices\":[92,106]},{\"text\":\"FPL\",\"indices\":[107,111]},{\"text\":\"ManUtd\",\"indices\":[112,119]},{\"text\":\"ManUtdFreeCristianoRonaldo\",\"indices\":[120,147]},{\"text\":\"BulletTrainMovie\",\"indices\":[148,165]},{\"text\":\"Pelosi\",\"indices\":[166,173]},{\"text\":\"Taiwan\",\"indices\":[174,181]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554893825079926784,\"id_str\":\"1554893825079926784\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"url\":\"https:\\/\\/t.co\\/q13uXAXOhv\",\"display_url\":\"pic.twitter.com\\/q13uXAXOhv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/goziedbrightest\\/status\\/1554893836513599488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"653\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[33,41]},{\"text\":\"BulletTrainMovie\",\"indices\":[43,60]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[62,87]},{\"text\":\"Taiwan\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554892500804030470,\"id_str\":\"1554892500804030470\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"url\":\"https:\\/\\/t.co\\/48uTAiwxOg\",\"display_url\":\"pic.twitter.com\\/48uTAiwxOg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abiye_daniel\\/status\\/1554892872708669440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":575,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":612,\"h\":1278,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"}}}]},\"654\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[75,92]},{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"PokemonScarletViolet\",\"indices\":[101,122]},{\"text\":\"PokemonPresents\",\"indices\":[123,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"655\":{\"hashtags\":[{\"text\":\"BadDecisionsTrailer1\",\"indices\":[84,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Pelosi\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J34HrbVp1r\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/reel\\/CgxJ7rCNYHX\\/?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/reel\\/CgxJ7rCNY\\u2026\",\"indices\":[41,64]}]},\"656\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[147,164]},{\"text\":\"Taiwan\",\"indices\":[165,172]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[173,194]},{\"text\":\"BAT2023\",\"indices\":[195,203]},{\"text\":\"Buhari\",\"indices\":[204,211]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[21,29]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4WJLqys2lZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/davidhundeyin\\/status\\/1554876749888069632\",\"display_url\":\"twitter.com\\/davidhundeyin\\/\\u2026\",\"indices\":[212,235]}]},\"657\":{\"hashtags\":[{\"text\":\"GospelEmpireGh\",\"indices\":[172,187]},{\"text\":\"StrictlyGospel\",\"indices\":[188,203]},{\"text\":\"reels\",\"indices\":[204,210]},{\"text\":\"PokemonScarletViolet\",\"indices\":[211,232]},{\"text\":\"PokemonPresents\",\"indices\":[233,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"timesupolivia\",\"indices\":[258,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[92,107]}],\"urls\":[],\"media\":[{\"id\":1554890358567337987,\"id_str\":\"1554890358567337987\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554890358567337987\\/pu\\/img\\/79zGVgPJcEaE39ou.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554890358567337987\\/pu\\/img\\/79zGVgPJcEaE39ou.jpg\",\"url\":\"https:\\/\\/t.co\\/xTBRxanutb\",\"display_url\":\"pic.twitter.com\\/xTBRxanutb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554890515123937280\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"658\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"Isco\",\"indices\":[140,145]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[146,167]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nurasabitu\",\"name\":\"Noorie\",\"id\":4863822340,\"id_str\":\"4863822340\",\"indices\":[168,179]},{\"screen_name\":\"el_uthmaan\",\"name\":\"I Z A L A\",\"id\":1039267748,\"id_str\":\"1039267748\",\"indices\":[180,191]},{\"screen_name\":\"Arewa_Business_\",\"name\":\"Arewa Business Hub (New acct)\",\"id\":1247643595605147650,\"id_str\":\"1247643595605147650\",\"indices\":[192,208]},{\"screen_name\":\"MalamKaybee\",\"name\":\"MALAM KAYBEE\\ud83d\\udc73\",\"id\":1225193719734906880,\"id_str\":\"1225193719734906880\",\"indices\":[209,221]},{\"screen_name\":\"Maroup_\",\"name\":\"Katy \\uf8ff\",\"id\":1399082755,\"id_str\":\"1399082755\",\"indices\":[222,230]},{\"screen_name\":\"najeebweederjr\",\"name\":\"NAJEEB\\ud83d\\udc51\\ud83d\\udd1e\",\"id\":1442387026100121604,\"id_str\":\"1442387026100121604\",\"indices\":[231,246]}],\"urls\":[],\"media\":[{\"id\":1554889568507379712,\"id_str\":\"1554889568507379712\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"659\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[169,179]},{\"text\":\"PokemonPresents\",\"indices\":[180,196]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"massage\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wimkbaMp6p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\",\"display_url\":\"twitter.com\\/skrimgadgets\\/s\\u2026\",\"indices\":[214,237]}]},\"660\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[36,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"661\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[95,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"BBNaija\",\"indices\":[109,117]},{\"text\":\"BBNaija7\",\"indices\":[118,127]},{\"text\":\"Awful\",\"indices\":[128,134]},{\"text\":\"Asake\",\"indices\":[135,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554888205891141634,\"id_str\":\"1554888205891141634\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"url\":\"https:\\/\\/t.co\\/xC6K2kPOD5\",\"display_url\":\"pic.twitter.com\\/xC6K2kPOD5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamnancy_koko\\/status\\/1554888288187596801\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"662\":{\"hashtags\":[{\"text\":\"UkraineRussiaWar\",\"indices\":[78,95]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[112,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"663\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554887413008404480,\"id_str\":\"1554887413008404480\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"url\":\"https:\\/\\/t.co\\/Etcy2TXr2z\",\"display_url\":\"pic.twitter.com\\/Etcy2TXr2z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/midnytupdates\\/status\\/1554887434168573952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"}}}]},\"664\":{\"hashtags\":[{\"text\":\"Kano\",\"indices\":[148,153]},{\"text\":\"sabinus\",\"indices\":[154,162]},{\"text\":\"BBNaija\",\"indices\":[164,172]},{\"text\":\"Gistlover\",\"indices\":[174,184]},{\"text\":\"UkraineRussiaWar\",\"indices\":[186,203]},{\"text\":\"WWIII\",\"indices\":[205,211]},{\"text\":\"Buhari\",\"indices\":[212,219]},{\"text\":\"Datti\",\"indices\":[221,227]},{\"text\":\"Ministeroffinace\",\"indices\":[229,246]},{\"text\":\"Shettima\",\"indices\":[247,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554884709255102466,\"id_str\":\"1554884709255102466\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"665\":{\"hashtags\":[{\"text\":\"NewMusic\",\"indices\":[48,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"NewMusicDaily\",\"indices\":[66,80]},{\"text\":\"newmusic2022\",\"indices\":[81,94]},{\"text\":\"appleiphones\",\"indices\":[95,108]},{\"text\":\"PokemonPresents\",\"indices\":[109,125]},{\"text\":\"applemusic\",\"indices\":[127,138]},{\"text\":\"Spotify\",\"indices\":[139,147]},{\"text\":\"boomplaymusic\",\"indices\":[148,162]},{\"text\":\"audiomack\",\"indices\":[163,173]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[174,197]},{\"text\":\"latestmusic\",\"indices\":[198,210]},{\"text\":\"applemusicnigeria\",\"indices\":[211,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[268,278]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8QlKDYh454\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/starpankeli\\/terminator\",\"display_url\":\"distrokid.com\\/hyperfollow\\/st\\u2026\",\"indices\":[232,255]}]},\"666\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"BBNaija\",\"indices\":[33,41]},{\"text\":\"BBNajiaS7\",\"indices\":[42,52]},{\"text\":\"Machala\",\"indices\":[53,61]},{\"text\":\"Phyna\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554883391333535744,\"id_str\":\"1554883391333535744\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"url\":\"https:\\/\\/t.co\\/hYyok6F3by\",\"display_url\":\"pic.twitter.com\\/hYyok6F3by\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nworie_david\\/status\\/1554883393925554177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"667\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"trump2024\",\"indices\":[205,215]},{\"text\":\"Democrat\",\"indices\":[216,225]},{\"text\":\"BidenDestroysAmerica\",\"indices\":[235,256]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PressSec\",\"name\":\"Karine Jean-Pierre\",\"id\":1349170292564905988,\"id_str\":\"1349170292564905988\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554883125972434947,\"id_str\":\"1554883125972434947\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"url\":\"https:\\/\\/t.co\\/MQc53z0gzG\",\"display_url\":\"pic.twitter.com\\/MQc53z0gzG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ppell524\\/status\\/1554883174987079681\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"668\":{\"hashtags\":[{\"text\":\"GBPUSD\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"CryptocurrencyNews\",\"indices\":[89,108]},{\"text\":\"NFTs\",\"indices\":[109,114]},{\"text\":\"trade\",\"indices\":[115,121]},{\"text\":\"StocksMarket\",\"indices\":[122,135]},{\"text\":\"wednesdaythought\",\"indices\":[136,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mux6JrXWZj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554765892931801088\",\"display_url\":\"twitter.com\\/drickempire\\/st\\u2026\",\"indices\":[154,177]}],\"media\":[{\"id\":1554883068745469959,\"id_str\":\"1554883068745469959\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"url\":\"https:\\/\\/t.co\\/tyAdCFsssb\",\"display_url\":\"pic.twitter.com\\/tyAdCFsssb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554883093852479491\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":552,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":1208,\"h\":556,\"resize\":\"fit\"}}}]},\"669\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"670\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"koundeisblue\",\"indices\":[251,264]},{\"text\":\"Chelsea\",\"indices\":[265,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"671\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"China\",\"indices\":[55,61]},{\"text\":\"WorldWarIII\",\"indices\":[62,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554881398879789056,\"id_str\":\"1554881398879789056\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"url\":\"https:\\/\\/t.co\\/tspuOt2IEp\",\"display_url\":\"pic.twitter.com\\/tspuOt2IEp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554881430416723970\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"672\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[96,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"PokemonPresents\",\"indices\":[112,128]},{\"text\":\"wednesdaythought\",\"indices\":[129,146]},{\"text\":\"Davido\",\"indices\":[147,154]},{\"text\":\"BBNaija\",\"indices\":[155,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554881027591520260,\"id_str\":\"1554881027591520260\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"url\":\"https:\\/\\/t.co\\/NZ3ygeIhwq\",\"display_url\":\"pic.twitter.com\\/NZ3ygeIhwq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hisvert\\/status\\/1554881056008187904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}}}]},\"673\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[151,158]},{\"text\":\"BuhariMustGo\",\"indices\":[159,172]},{\"text\":\"EndSARS\",\"indices\":[173,181]},{\"text\":\"enassustrike\",\"indices\":[182,195]},{\"text\":\"BBNajiaS7\",\"indices\":[203,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SHfiNDUPTG\",\"expanded_url\":\"https:\\/\\/fantasy.premierleague.com\\/leagues\\/auto-join\\/1fjmg4\",\"display_url\":\"fantasy.premierleague.com\\/leagues\\/auto-j\\u2026\",\"indices\":[77,100]}]},\"674\":{\"hashtags\":[{\"text\":\"Trusttv\",\"indices\":[257,265]},{\"text\":\"Taiwan\",\"indices\":[266,273]},{\"text\":\"Army\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554879877056167942,\"id_str\":\"1554879877056167942\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"url\":\"https:\\/\\/t.co\\/1TfAEXCXbe\",\"display_url\":\"pic.twitter.com\\/1TfAEXCXbe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ind_Journos\\/status\\/1554879886778634243\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"675\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"PokemonPresents\",\"indices\":[93,109]},{\"text\":\"midjourney\",\"indices\":[110,121]},{\"text\":\"adventure\",\"indices\":[122,132]},{\"text\":\"Growth\",\"indices\":[133,140]},{\"text\":\"learn\",\"indices\":[141,147]},{\"text\":\"learning\",\"indices\":[148,157]},{\"text\":\"selfcare\",\"indices\":[158,167]},{\"text\":\"Selfdevelopment\",\"indices\":[168,184]},{\"text\":\"LearnToEarn\",\"indices\":[185,197]},{\"text\":\"LearningAndDevelopment\",\"indices\":[198,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"676\":{\"hashtags\":[{\"text\":\"Documentary\",\"indices\":[10,22]},{\"text\":\"OneChinaPrinciple\",\"indices\":[30,48]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"China\",\"indices\":[78,84]},{\"text\":\"PRC\",\"indices\":[85,89]},{\"text\":\"Japan\",\"indices\":[90,96]},{\"text\":\"UnitedStates\",\"indices\":[97,110]},{\"text\":\"UnitedKingdom\",\"indices\":[111,125]},{\"text\":\"UnitedNations\",\"indices\":[126,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gxa9pVNLl6\",\"expanded_url\":\"https:\\/\\/youtu.be\\/s05njxkt1Dw\",\"display_url\":\"youtu.be\\/s05njxkt1Dw\",\"indices\":[142,165]}]},\"677\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"davidhundeyin\",\"indices\":[257,271]},{\"text\":\"China\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vanguardngrnews\",\"name\":\"Vanguard Newspapers\",\"id\":39975533,\"id_str\":\"39975533\",\"indices\":[232,248]}],\"urls\":[]},\"678\":{\"hashtags\":[{\"text\":\"OBIDIENTS\",\"indices\":[19,29]},{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"Wizkid\",\"indices\":[39,46]},{\"text\":\"EbubeaguMustGo\",\"indices\":[47,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554876192368607233,\"id_str\":\"1554876192368607233\",\"indices\":[63,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"url\":\"https:\\/\\/t.co\\/l9TrkZDPB3\",\"display_url\":\"pic.twitter.com\\/l9TrkZDPB3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jasper_nwankwo\\/status\\/1554876236282863616\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}}}]},\"679\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"sabinus\",\"indices\":[83,91]},{\"text\":\"Buhari\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WvuevmThJO\",\"expanded_url\":\"https:\\/\\/youtu.be\\/jmCkA5CPzg0\",\"display_url\":\"youtu.be\\/jmCkA5CPzg0\",\"indices\":[50,73]}]},\"680\":{\"hashtags\":[{\"text\":\"Terminator\",\"indices\":[48,59]},{\"text\":\"applemusic\",\"indices\":[60,71]},{\"text\":\"SpotifyPlaylist\",\"indices\":[72,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"audiomack\",\"indices\":[97,107]},{\"text\":\"iTunes\",\"indices\":[108,115]},{\"text\":\"applemusicnigeria\",\"indices\":[116,134]},{\"text\":\"AfrobeatRadio\",\"indices\":[135,149]},{\"text\":\"BulletTrainMovie\",\"indices\":[150,167]},{\"text\":\"Terminal21Korat\",\"indices\":[168,184]},{\"text\":\"lagos\",\"indices\":[185,191]},{\"text\":\"NewYorkCity\",\"indices\":[192,204]},{\"text\":\"CaliforniaAdventure\",\"indices\":[205,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[264,274]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8QlKDYh454\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/starpankeli\\/terminator\",\"display_url\":\"distrokid.com\\/hyperfollow\\/st\\u2026\",\"indices\":[228,251]}]},\"681\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[142,149]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"682\":{\"hashtags\":[{\"text\":\"P2Egaming\",\"indices\":[13,23]},{\"text\":\"Whitelist\",\"indices\":[95,105]},{\"text\":\"NFTGiveaways\",\"indices\":[116,129]},{\"text\":\"CryptoNews\",\"indices\":[130,141]},{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"BulletTrainMovie\",\"indices\":[150,167]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WarpBond\",\"name\":\"Warp Game \\/\\/ \\ud835\\udddf\\ud835\\uddd4\\ud835\\udde8\\ud835\\udde1\\ud835\\uddd6\\ud835\\udddb\\ud835\\udddc\\ud835\\udde1\\ud835\\uddda \\ud835\\udde6\\ud835\\uddd8\\ud835\\uddd4\\ud835\\udde6\\ud835\\udde2\\ud835\\udde1 \\ud835\\udfee\",\"id\":1468745083629490188,\"id_str\":\"1468745083629490188\",\"indices\":[40,49]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TVq8PkZ7EX\",\"expanded_url\":\"https:\\/\\/warp.game\\/\",\"display_url\":\"warp.game\",\"indices\":[177,200]},{\"url\":\"https:\\/\\/t.co\\/oWoGOLR8El\",\"expanded_url\":\"https:\\/\\/demo.warp.game\\/\",\"display_url\":\"demo.warp.game\",\"indices\":[207,230]},{\"url\":\"https:\\/\\/t.co\\/3OQiWdyaN6\",\"expanded_url\":\"https:\\/\\/warpcountdown.com\\/\",\"display_url\":\"warpcountdown.com\",\"indices\":[240,263]}],\"media\":[{\"id\":1554875107327238146,\"id_str\":\"1554875107327238146\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"url\":\"https:\\/\\/t.co\\/0abiCiufk2\",\"display_url\":\"pic.twitter.com\\/0abiCiufk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnAshafa\\/status\\/1554875116768608256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"683\":{\"hashtags\":[{\"text\":\"PeterDrury\",\"indices\":[19,30]},{\"text\":\"PeterObi\",\"indices\":[31,40]},{\"text\":\"PremierLeague\",\"indices\":[41,55]},{\"text\":\"BBNaija\",\"indices\":[56,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"China\",\"indices\":[73,79]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554875039073419270,\"id_str\":\"1554875039073419270\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"url\":\"https:\\/\\/t.co\\/Nz9c0LorqE\",\"display_url\":\"pic.twitter.com\\/Nz9c0LorqE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ay_adeyinka\\/status\\/1554875042147827712\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":586,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"}}}]},\"684\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Taipei\",\"indices\":[167,174]},{\"text\":\"Boehly\",\"indices\":[175,182]},{\"text\":\"Mamadollarz\",\"indices\":[183,195]},{\"text\":\"ASUU\",\"indices\":[196,201]},{\"text\":\"PeterDrury\",\"indices\":[202,213]},{\"text\":\"Room1\",\"indices\":[214,220]},{\"text\":\"Osimhem\",\"indices\":[221,229]},{\"text\":\"Vitinha\",\"indices\":[230,238]},{\"text\":\"China\",\"indices\":[239,245]},{\"text\":\"Shower\",\"indices\":[246,253]},{\"text\":\"Isco\",\"indices\":[254,259]},{\"text\":\"kovacic\",\"indices\":[260,268]},{\"text\":\"Buhari\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"betsmasterspro\",\"name\":\"William Iwu\",\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"indices\":[142,157]}],\"urls\":[],\"media\":[{\"id\":1554873912382705664,\"id_str\":\"1554873912382705664\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"url\":\"https:\\/\\/t.co\\/2NDXPRWunF\",\"display_url\":\"pic.twitter.com\\/2NDXPRWunF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AkotuJosep\\/status\\/1554873915180302344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":570,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"}}}]},\"685\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"NancyPelosi\",\"indices\":[6,18]},{\"text\":\"Taiwan\",\"indices\":[19,26]},{\"text\":\"USHouseSpeakerNancyPelosi\",\"indices\":[27,53]},{\"text\":\"Washington\",\"indices\":[54,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C2jJb4l4lU\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SW0Qn3\",\"display_url\":\"dlvr.it\\/SW0Qn3\",\"indices\":[130,153]}]},\"686\":{\"hashtags\":[{\"text\":\"obidients\",\"indices\":[208,218]},{\"text\":\"Taiwan\",\"indices\":[219,226]},{\"text\":\"BBNaija\",\"indices\":[227,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554872529357078530,\"id_str\":\"1554872529357078530\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"url\":\"https:\\/\\/t.co\\/scYmhRCniz\",\"display_url\":\"pic.twitter.com\\/scYmhRCniz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872532582400001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":447,\"resize\":\"fit\"}}}]},\"687\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"boycottrakshabandhan\",\"indices\":[86,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554872198287990785,\"id_str\":\"1554872198287990785\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"url\":\"https:\\/\\/t.co\\/ewQV3c6jLC\",\"display_url\":\"pic.twitter.com\\/ewQV3c6jLC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872252679815169\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"688\":{\"hashtags\":[{\"text\":\"GospelEmpireGh\",\"indices\":[168,183]},{\"text\":\"StrictlyGospel\",\"indices\":[184,199]},{\"text\":\"GospelNews\",\"indices\":[200,211]},{\"text\":\"PokemonPresents\",\"indices\":[212,228]},{\"text\":\"BulletTrainMovie\",\"indices\":[229,246]},{\"text\":\"Taiwan\",\"indices\":[247,254]},{\"text\":\"sabinus\",\"indices\":[255,263]},{\"text\":\"Pokemon\",\"indices\":[264,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[82,97]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mzW0HzUjVl\",\"expanded_url\":\"http:\\/\\/GospelEmpireGh.Com\",\"display_url\":\"GospelEmpireGh.Com\",\"indices\":[18,41]}],\"media\":[{\"id\":1554872065529872384,\"id_str\":\"1554872065529872384\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQD59EWAAA7I87.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQD59EWAAA7I87.jpg\",\"url\":\"https:\\/\\/t.co\\/izGrTYjyjz\",\"display_url\":\"pic.twitter.com\\/izGrTYjyjz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554872078981029889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"689\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"BBNaija\",\"indices\":[82,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"690\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"Godisworking\",\"indices\":[83,96]},{\"text\":\"thingsout\",\"indices\":[97,107]},{\"text\":\"VirumanAudioLaunch\",\"indices\":[108,127]},{\"text\":\"sermon\",\"indices\":[128,135]},{\"text\":\"audio\",\"indices\":[136,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554869821082423302,\"id_str\":\"1554869821082423302\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"url\":\"https:\\/\\/t.co\\/fuKr5l8Xzy\",\"display_url\":\"pic.twitter.com\\/fuKr5l8Xzy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/henry_saliu\\/status\\/1554869975638474752\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":856,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":803,\"resize\":\"fit\"}}}]},\"691\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[134,152]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"accessbank_help\",\"name\":\"Access Bank Help\",\"id\":2164455380,\"id_str\":\"2164455380\",\"indices\":[0,16]}],\"urls\":[]},\"692\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"BulletTrainMovie\",\"indices\":[25,42]},{\"text\":\"PokemonPresents\",\"indices\":[43,59]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[60,68]},{\"text\":\"boycottrakshabandhan\",\"indices\":[69,90]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[91,114]},{\"text\":\"sabinus\",\"indices\":[115,123]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[124,136]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[137,149]},{\"text\":\"PrabhasForSitaRamam\",\"indices\":[150,170]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[171,178]},{\"text\":\"AreYouTubedIn\",\"indices\":[179,193]},{\"text\":\"art\",\"indices\":[194,198]},{\"text\":\"Pokemon\",\"indices\":[199,207]},{\"text\":\"massage\",\"indices\":[209,217]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[218,239]},{\"text\":\"ArtistoftheSummer\",\"indices\":[240,258]},{\"text\":\"artist\",\"indices\":[259,266]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554868645792256005,\"id_str\":\"1554868645792256005\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQAy5jXEAUFSZ0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQAy5jXEAUFSZ0.jpg\",\"url\":\"https:\\/\\/t.co\\/JeHaRLhQQf\",\"display_url\":\"pic.twitter.com\\/JeHaRLhQQf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/belacqua419\\/status\\/1554868702105030657\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"693\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554868053199945732,\"id_str\":\"1554868053199945732\",\"indices\":[36,59],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQAQZ-WAAQvKOP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQAQZ-WAAQvKOP.jpg\",\"url\":\"https:\\/\\/t.co\\/s1IPlki5HP\",\"display_url\":\"pic.twitter.com\\/s1IPlki5HP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HumbleSoulGh\\/status\\/1554868104890548224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"694\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"LoveIsland2022\",\"indices\":[251,266]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"695\":{\"hashtags\":[{\"text\":\"OBIdientlyYUSful\",\"indices\":[210,227]},{\"text\":\"PeterObi\",\"indices\":[228,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sFqLr7SfdN\",\"expanded_url\":\"https:\\/\\/globalupfront.com\\/2022\\/08\\/02\\/on-omatseyes-obituary\\/\",\"display_url\":\"globalupfront.com\\/2022\\/08\\/02\\/on-\\u2026\",\"indices\":[256,279]}]},\"696\":{\"hashtags\":[{\"text\":\"knust\",\"indices\":[118,124]},{\"text\":\"GHOneNews\",\"indices\":[125,135]},{\"text\":\"TV3GH\",\"indices\":[136,142]},{\"text\":\"BulletTrainMovie\",\"indices\":[143,160]},{\"text\":\"PokemonPresents\",\"indices\":[161,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]},{\"text\":\"sabinus\",\"indices\":[186,194]},{\"text\":\"massage\",\"indices\":[195,203]},{\"text\":\"burnaboy\",\"indices\":[204,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8qxrUmffmR\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCAv69et7iH43M97Lp6qgcoQ\",\"display_url\":\"youtube.com\\/channel\\/UCAv69\\u2026\",\"indices\":[93,116]}]},\"697\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Wizkid\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554738998655983618,\"id_str\":\"1554738998655983618\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"url\":\"https:\\/\\/t.co\\/kuHBbuIPqq\",\"display_url\":\"pic.twitter.com\\/kuHBbuIPqq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DIRTY_TROLL_\\/status\\/1554739088699318274\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554739088699318274,\"source_status_id_str\":\"1554739088699318274\",\"source_user_id\":1383416665023516684,\"source_user_id_str\":\"1383416665023516684\"}]},\"698\":{\"hashtags\":[{\"text\":\"Sportivation\",\"indices\":[0,13]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"BulletTrainMovie\",\"indices\":[135,152]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"sabinus\",\"indices\":[172,180]},{\"text\":\"massage\",\"indices\":[182,190]},{\"text\":\"PrabhasForSitaRamam\",\"indices\":[191,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/u9ttZck0yO\",\"expanded_url\":\"https:\\/\\/sportivation.com.ng\\/2022\\/08\\/03\\/marcellinus-anyanwu-joins-nff-presidential-race-reveals-plans-for-nigerian-football\\/\",\"display_url\":\"sportivation.com.ng\\/2022\\/08\\/03\\/mar\\u2026\",\"indices\":[101,124]}]},\"699\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"Taipei\",\"indices\":[152,159]},{\"text\":\"China\",\"indices\":[160,166]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[167,185]},{\"text\":\"NancyPelosi\",\"indices\":[186,198]},{\"text\":\"asantekotoko\",\"indices\":[199,212]},{\"text\":\"GFA\",\"indices\":[213,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554863381533921284,\"id_str\":\"1554863381533921284\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"url\":\"https:\\/\\/t.co\\/IpIJS16Q0a\",\"display_url\":\"pic.twitter.com\\/IpIJS16Q0a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554863391801577475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"700\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"davidhundeyin\",\"indices\":[265,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"701\":{\"hashtags\":[{\"text\":\"CAKEGOD\",\"indices\":[24,32]},{\"text\":\"BulletTrainMovie\",\"indices\":[33,50]},{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[59,81]},{\"text\":\"comedy\",\"indices\":[82,89]},{\"text\":\"NigerianIdol\",\"indices\":[90,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554863071339991040,\"id_str\":\"1554863071339991040\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"url\":\"https:\\/\\/t.co\\/X0g1q2rmkP\",\"display_url\":\"pic.twitter.com\\/X0g1q2rmkP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dazai_Mill\\/status\\/1554863081024589824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"}}}]},\"702\":{\"hashtags\":[{\"text\":\"Bigivy\",\"indices\":[27,34]},{\"text\":\"trans\",\"indices\":[36,42]},{\"text\":\"Sarkodie\",\"indices\":[43,52]},{\"text\":\"shattawaleinnungua\",\"indices\":[53,72]},{\"text\":\"KwesiArthur\",\"indices\":[73,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"sabinus\",\"indices\":[94,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554862730775085060,\"id_str\":\"1554862730775085060\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"url\":\"https:\\/\\/t.co\\/kFuvOwtASi\",\"display_url\":\"pic.twitter.com\\/kFuvOwtASi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Xamhani5\\/status\\/1554862857627598849\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"703\":{\"hashtags\":[{\"text\":\"16children\",\"indices\":[27,38]},{\"text\":\"PeterObi4President2023\",\"indices\":[39,62]},{\"text\":\"Pelosi\",\"indices\":[64,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554859071911727105,\"id_str\":\"1554859071911727105\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"url\":\"https:\\/\\/t.co\\/HdEwRH6iPT\",\"display_url\":\"pic.twitter.com\\/HdEwRH6iPT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLUWASHEYNOR\\/status\\/1554862669466853387\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"704\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[174,188]},{\"text\":\"sabinus\",\"indices\":[189,197]},{\"text\":\"Taiwan\",\"indices\":[198,205]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[56,70]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XYMuG4d0yL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554854442897473539\",\"display_url\":\"twitter.com\\/channelstv\\/sta\\u2026\",\"indices\":[206,229]}]},\"705\":{\"hashtags\":[{\"text\":\"mm2\",\"indices\":[61,65]},{\"text\":\"mm2trading\",\"indices\":[66,77]},{\"text\":\"AamirKhan\",\"indices\":[78,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"ROBLOX\",\"indices\":[97,104]},{\"text\":\"offer\",\"indices\":[105,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"706\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"PokemonScarletViolet\",\"indices\":[29,50]},{\"text\":\"AamirKhan\",\"indices\":[51,61]},{\"text\":\"\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a\",\"indices\":[62,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"707\":{\"hashtags\":[{\"text\":\"Illorin\",\"indices\":[65,73]},{\"text\":\"EndPolio\",\"indices\":[77,86]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"orthosis\",\"indices\":[215,224]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lionheart1759\",\"name\":\"Kunle Adeyanju\",\"id\":1474005633699618823,\"id_str\":\"1474005633699618823\",\"indices\":[47,61]}],\"urls\":[],\"media\":[{\"id\":1554860741462745088,\"id_str\":\"1554860741462745088\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"url\":\"https:\\/\\/t.co\\/bVQg5LLuqJ\",\"display_url\":\"pic.twitter.com\\/bVQg5LLuqJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/taiwosharpakin\\/status\\/1554860847461179392\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"708\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[113,135]},{\"text\":\"AbujaFinders\",\"indices\":[136,149]},{\"text\":\"RealEstate\",\"indices\":[150,161]},{\"text\":\"PeterObi\",\"indices\":[162,171]},{\"text\":\"EndSARS\",\"indices\":[172,180]},{\"text\":\"Barcelona\",\"indices\":[181,191]},{\"text\":\"Barca\",\"indices\":[192,198]},{\"text\":\"PeterObi4President2023\",\"indices\":[199,222]},{\"text\":\"BBNaija7\",\"indices\":[223,232]},{\"text\":\"INEC\",\"indices\":[233,238]},{\"text\":\"Arewa4PeterObi\",\"indices\":[239,254]},{\"text\":\"BBNaija\",\"indices\":[255,263]},{\"text\":\"China\",\"indices\":[264,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554857936593338369,\"id_str\":\"1554857936593338369\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"url\":\"https:\\/\\/t.co\\/serqHvJW2C\",\"display_url\":\"pic.twitter.com\\/serqHvJW2C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554859470001475584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":1240,\"resize\":\"fit\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}}}]},\"709\":{\"hashtags\":[{\"text\":\"Monalisa\",\"indices\":[98,107]},{\"text\":\"GoodmusicGoodTalk\",\"indices\":[183,201]},{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"BBNajia7\",\"indices\":[211,220]},{\"text\":\"Wizkid\",\"indices\":[221,228]},{\"text\":\"Pelosi\",\"indices\":[229,236]},{\"text\":\"China\",\"indices\":[237,243]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Lojaymusic\",\"name\":\"Lojay\",\"id\":216687915,\"id_str\":\"216687915\",\"indices\":[69,80]},{\"screen_name\":\"beatsbysarz\",\"name\":\"I am...\",\"id\":131481766,\"id_str\":\"131481766\",\"indices\":[85,97]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[132,143]}],\"urls\":[],\"media\":[{\"id\":1554858363166593027,\"id_str\":\"1554858363166593027\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":452,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"}}}]},\"710\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[20,27]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0kYIZoEshx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VaakaSegii\\/status\\/1554121845577752577\",\"display_url\":\"twitter.com\\/VaakaSegii\\/sta\\u2026\",\"indices\":[28,51]}],\"media\":[{\"id\":1554857654492741632,\"id_str\":\"1554857654492741632\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"url\":\"https:\\/\\/t.co\\/hXTkpuKOb9\",\"display_url\":\"pic.twitter.com\\/hXTkpuKOb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857741767802884\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"711\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lucqefmX72\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SunChelsea\\/status\\/1554704968506085377\",\"display_url\":\"twitter.com\\/SunChelsea\\/sta\\u2026\",\"indices\":[57,80]}],\"media\":[{\"id\":1554857307246415872,\"id_str\":\"1554857307246415872\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"url\":\"https:\\/\\/t.co\\/M0Ay75iMpk\",\"display_url\":\"pic.twitter.com\\/M0Ay75iMpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857391572795395\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"712\":{\"hashtags\":[{\"text\":\"ASUUStrikeUpdate\",\"indices\":[185,202]},{\"text\":\"Pelosi\",\"indices\":[203,210]},{\"text\":\"2023Elections\",\"indices\":[211,225]},{\"text\":\"ASUUstrike\",\"indices\":[226,237]},{\"text\":\"NaijaNews\",\"indices\":[238,248]},{\"text\":\"Obidatti2023\",\"indices\":[249,262]},{\"text\":\"BAT2023\",\"indices\":[263,271]},{\"text\":\"Atiku\",\"indices\":[272,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[34,42]}],\"urls\":[]},\"713\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"Pelosi\",\"indices\":[24,31]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[32,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"714\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"PokemonScarletViolet\",\"indices\":[53,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"715\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"sabinus\",\"indices\":[54,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"716\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Pelosi\",\"indices\":[62,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"717\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"helicopter\",\"indices\":[118,129]},{\"text\":\"BBNajia\",\"indices\":[130,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554854169730842624,\"id_str\":\"1554854169730842624\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"url\":\"https:\\/\\/t.co\\/QXoeE58mqd\",\"display_url\":\"pic.twitter.com\\/QXoeE58mqd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ivyarcher75\\/status\\/1554854317353586690\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"718\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[220,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"businessowner\",\"indices\":[234,248]},{\"text\":\"businesstips\",\"indices\":[249,262]},{\"text\":\"businessgrowth\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554853575938940931,\"id_str\":\"1554853575938940931\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"url\":\"https:\\/\\/t.co\\/XaBB0uU303\",\"display_url\":\"pic.twitter.com\\/XaBB0uU303\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cyrillle_b\\/status\\/1554853584608673792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"719\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[39,47]},{\"text\":\"PokemonScarletViolet\",\"indices\":[48,69]},{\"text\":\"AamirKhan\",\"indices\":[70,80]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[81,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554851249660608512,\"id_str\":\"1554851249660608512\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"url\":\"https:\\/\\/t.co\\/SFtmooG4n4\",\"display_url\":\"pic.twitter.com\\/SFtmooG4n4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1554853500152336384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"720\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[84,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"helicopter\",\"indices\":[100,111]},{\"text\":\"BBNaija7\",\"indices\":[112,121]},{\"text\":\"Machala\",\"indices\":[122,130]},{\"text\":\"recession\",\"indices\":[131,141]},{\"text\":\"Pelosi\",\"indices\":[142,149]},{\"text\":\"Gistlover\",\"indices\":[150,160]},{\"text\":\"instagram\",\"indices\":[161,171]},{\"text\":\"sabinus\",\"indices\":[172,180]},{\"text\":\"PokemonScarletViolet\",\"indices\":[181,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"721\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"DonBelle\",\"indices\":[142,151]},{\"text\":\"Pelosi\",\"indices\":[152,159]},{\"text\":\"sabinus\",\"indices\":[160,168]},{\"text\":\"malariagenomics\",\"indices\":[169,185]},{\"text\":\"malaria\",\"indices\":[186,194]},{\"text\":\"Health\",\"indices\":[195,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZiEdkQUDPj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lynedgepharma\\/status\\/1554842317974310914?t=yn1ys5C7PGVWmAu5wzerxw&s=19\",\"display_url\":\"twitter.com\\/lynedgepharma\\/\\u2026\",\"indices\":[110,133]}]},\"722\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[20,34]},{\"text\":\"Pelosi\",\"indices\":[35,42]},{\"text\":\"samomatseye\",\"indices\":[43,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554851448164335616,\"id_str\":\"1554851448164335616\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"url\":\"https:\\/\\/t.co\\/DREK7qMgFy\",\"display_url\":\"pic.twitter.com\\/DREK7qMgFy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamadeflow\\/status\\/1554851525855526912\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"723\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[97,119]},{\"text\":\"AbujaFinders\",\"indices\":[120,133]},{\"text\":\"RealEstate\",\"indices\":[134,145]},{\"text\":\"PeterObi\",\"indices\":[146,155]},{\"text\":\"EndSARS\",\"indices\":[156,164]},{\"text\":\"Barcelona\",\"indices\":[165,175]},{\"text\":\"Barca\",\"indices\":[176,182]},{\"text\":\"PeterObi4President2023\",\"indices\":[183,206]},{\"text\":\"BBNaija7\",\"indices\":[207,216]},{\"text\":\"INEC\",\"indices\":[217,222]},{\"text\":\"Arewa4PeterObi\",\"indices\":[223,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"Chelsea\",\"indices\":[248,256]},{\"text\":\"Buhar\",\"indices\":[257,263]},{\"text\":\"China\",\"indices\":[264,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554850860961775625,\"id_str\":\"1554850860961775625\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"url\":\"https:\\/\\/t.co\\/cHw8nDiKoF\",\"display_url\":\"pic.twitter.com\\/cHw8nDiKoF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554850987222917128\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1232,\"resize\":\"fit\"}}}]},\"724\":{\"hashtags\":[{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[68,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[84,105]},{\"text\":\"BlueJays\",\"indices\":[106,115]},{\"text\":\"DonnyPangilinan\",\"indices\":[116,132]},{\"text\":\"Pelosi\",\"indices\":[133,140]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[141,162]},{\"text\":\"music\",\"indices\":[163,169]},{\"text\":\"musique\",\"indices\":[170,178]},{\"text\":\"Musica\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554849122989101058,\"id_str\":\"1554849122989101058\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"url\":\"https:\\/\\/t.co\\/z92cabRhki\",\"display_url\":\"pic.twitter.com\\/z92cabRhki\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magojazzy\\/status\\/1554849169902297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"725\":{\"hashtags\":[{\"text\":\"Bayern\",\"indices\":[32,39]},{\"text\":\"over1\",\"indices\":[40,46]},{\"text\":\"shattawaleinnungua\",\"indices\":[49,68]},{\"text\":\"oshorla\",\"indices\":[69,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ge2P8pQXNC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mygtvsports\\/status\\/1554848382019067906\",\"display_url\":\"twitter.com\\/mygtvsports\\/st\\u2026\",\"indices\":[86,109]}]},\"726\":{\"hashtags\":[{\"text\":\"Cubana\",\"indices\":[226,233]},{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"Pelosi\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Geogem_Contrs\",\"name\":\"Geo-Gem Contractors\",\"id\":1531719197729890304,\"id_str\":\"1531719197729890304\",\"indices\":[141,155]}],\"urls\":[],\"media\":[{\"id\":1554847712171917312,\"id_str\":\"1554847712171917312\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"url\":\"https:\\/\\/t.co\\/cpMeY6l4qn\",\"display_url\":\"pic.twitter.com\\/cpMeY6l4qn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/King_Edrah\\/status\\/1554847720237588483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":485,\"resize\":\"fit\"}}}]},\"727\":{\"hashtags\":[{\"text\":\"drill\",\"indices\":[237,243]},{\"text\":\"Pelosi\",\"indices\":[244,251]},{\"text\":\"MUFC\",\"indices\":[252,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"my234Radio\",\"name\":\"234\\ud835\\udc11\\ud835\\udc1a\\ud835\\udc1d\\ud835\\udc22\\ud835\\udc28 \\ud83c\\udf0d\",\"id\":1601359999,\"id_str\":\"1601359999\",\"indices\":[59,70]},{\"screen_name\":\"Oba_peejay\",\"name\":\"Kheengn Peterson\",\"id\":1507703194671013889,\"id_str\":\"1507703194671013889\",\"indices\":[71,82]},{\"screen_name\":\"KeinzGrm_\",\"name\":\"KEINZ \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udde7\",\"id\":1121149434484678658,\"id_str\":\"1121149434484678658\",\"indices\":[83,93]},{\"screen_name\":\"Dareal_Pterslim\",\"name\":\"Future_God\",\"id\":3434035049,\"id_str\":\"3434035049\",\"indices\":[94,110]},{\"screen_name\":\"Big__Derah\",\"name\":\"Big Derah\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udf6f\\ud83e\\udd85\",\"id\":1463239851344642058,\"id_str\":\"1463239851344642058\",\"indices\":[111,122]},{\"screen_name\":\"roque55O\",\"name\":\"Unruly K!NG\",\"id\":223485283,\"id_str\":\"223485283\",\"indices\":[123,132]},{\"screen_name\":\"HipHopDX\",\"name\":\"HipHopDX\",\"id\":15319698,\"id_str\":\"15319698\",\"indices\":[133,142]},{\"screen_name\":\"mtmedia_uk\",\"name\":\"MTMEDIA.UK\",\"id\":1286657956470239233,\"id_str\":\"1286657956470239233\",\"indices\":[143,154]},{\"screen_name\":\"DailyMail\",\"name\":\"Daily Mail US\",\"id\":380285402,\"id_str\":\"380285402\",\"indices\":[155,165]},{\"screen_name\":\"MTVBaseAfrica\",\"name\":\"MTV Base Africa\",\"id\":25959730,\"id_str\":\"25959730\",\"indices\":[166,180]},{\"screen_name\":\"_EstherOnyinye\",\"name\":\"Hexstelle\\ud83c\\udf3c\\u2b50\",\"id\":1003435925546962944,\"id_str\":\"1003435925546962944\",\"indices\":[181,196]},{\"screen_name\":\"PsychoYP\",\"name\":\"bando baby\\u26a1\\ufe0f\",\"id\":490162127,\"id_str\":\"490162127\",\"indices\":[197,206]},{\"screen_name\":\"JAE5_\",\"name\":\"Jae5\",\"id\":303113270,\"id_str\":\"303113270\",\"indices\":[207,213]},{\"screen_name\":\"Santandave1\",\"name\":\"SANTAN\",\"id\":539506506,\"id_str\":\"539506506\",\"indices\":[214,226]},{\"screen_name\":\"YAWTOG_\",\"name\":\"YUNG BULL\\ud83d\\udc03\",\"id\":1180160657641136128,\"id_str\":\"1180160657641136128\",\"indices\":[227,235]}],\"urls\":[],\"media\":[{\"id\":1554845222231855104,\"id_str\":\"1554845222231855104\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"url\":\"https:\\/\\/t.co\\/Vhy6XUmv6N\",\"display_url\":\"pic.twitter.com\\/Vhy6XUmv6N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jay_Chopa\\/status\\/1554847318733688835\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"728\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LDDvWm5FAU\",\"expanded_url\":\"http:\\/\\/www.jobblasts.com\",\"display_url\":\"jobblasts.com\",\"indices\":[229,252]}],\"media\":[{\"id\":1554847143323750402,\"id_str\":\"1554847143323750402\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"url\":\"https:\\/\\/t.co\\/ERYYncJ91y\",\"display_url\":\"pic.twitter.com\\/ERYYncJ91y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobblasts_ng\\/status\\/1554847181386940416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"729\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"AamirKhan\",\"indices\":[76,86]},{\"text\":\"PokemonScarletViolet\",\"indices\":[87,108]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[109,130]},{\"text\":\"BlueJays\",\"indices\":[131,140]},{\"text\":\"BBC\",\"indices\":[141,145]},{\"text\":\"BBNaijaSeason7\",\"indices\":[146,161]},{\"text\":\"music\",\"indices\":[162,168]},{\"text\":\"LoveIslandUSA\",\"indices\":[169,183]},{\"text\":\"Colorado\",\"indices\":[184,193]},{\"text\":\"PepsiBlue\",\"indices\":[194,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554845900652134403,\"id_str\":\"1554845900652134403\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"url\":\"https:\\/\\/t.co\\/8rhcyAquDi\",\"display_url\":\"pic.twitter.com\\/8rhcyAquDi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554845904175259648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"730\":{\"hashtags\":[{\"text\":\"EmpiresSMP\",\"indices\":[92,103]},{\"text\":\"EndSARS\",\"indices\":[104,112]},{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"AamirKhan\",\"indices\":[121,131]},{\"text\":\"PokemonScarletViolet\",\"indices\":[132,153]},{\"text\":\"Mnakwethu\",\"indices\":[154,164]},{\"text\":\"mavin\",\"indices\":[165,171]},{\"text\":\"30BG\",\"indices\":[172,177]},{\"text\":\"supportingartist\",\"indices\":[178,195]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fireboydml\",\"name\":\"Fireboy DML\",\"id\":4537552402,\"id_str\":\"4537552402\",\"indices\":[24,35]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[36,43]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[44,53]},{\"screen_name\":\"stefflondon\",\"name\":\"1DON\",\"id\":360486593,\"id_str\":\"360486593\",\"indices\":[54,66]},{\"screen_name\":\"EMPIRE\",\"name\":\"EMPIRE\",\"id\":172143832,\"id_str\":\"172143832\",\"indices\":[67,74]},{\"screen_name\":\"WiseKingoffici1\",\"name\":\"Official Wiseking\",\"id\":1342889742501896192,\"id_str\":\"1342889742501896192\",\"indices\":[75,91]}],\"urls\":[],\"media\":[{\"id\":1554845768808370183,\"id_str\":\"1554845768808370183\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"url\":\"https:\\/\\/t.co\\/lomyxzo19t\",\"display_url\":\"pic.twitter.com\\/lomyxzo19t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WiseKingoffici1\\/status\\/1554845844062470145\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"731\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[146,157]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"bankole\",\"indices\":[166,174]},{\"text\":\"vabulance\",\"indices\":[175,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554845195203710983,\"id_str\":\"1554845195203710983\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"url\":\"https:\\/\\/t.co\\/SOq1sp6GTV\",\"display_url\":\"pic.twitter.com\\/SOq1sp6GTV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itz_ikhali\\/status\\/1554845204703854592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"}}}]},\"732\":{\"hashtags\":[{\"text\":\"Batgirl\",\"indices\":[39,47]},{\"text\":\"Taiwan\",\"indices\":[48,55]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C9ax86h1qt\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/03\\/uti-nwachukwu-celebrates-40th-birthday\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/03\\/uti\\u2026\",\"indices\":[58,81]}]},\"733\":{\"hashtags\":[{\"text\":\"kano\",\"indices\":[23,28]},{\"text\":\"Oshiomole\",\"indices\":[29,39]},{\"text\":\"Room1\",\"indices\":[40,46]},{\"text\":\"Napoli\",\"indices\":[47,54]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"arisetv\",\"indices\":[64,72]},{\"text\":\"witcher\",\"indices\":[73,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554843949231120384,\"id_str\":\"1554843949231120384\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"url\":\"https:\\/\\/t.co\\/U490y2rN72\",\"display_url\":\"pic.twitter.com\\/U490y2rN72\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CaresValu\\/status\\/1554844905943564290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1717,\"h\":1016,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":710,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":402,\"resize\":\"fit\"}}}]},\"734\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[11,21]},{\"text\":\"China\",\"indices\":[60,66]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"Pelosi\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554843903404154880,\"id_str\":\"1554843903404154880\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"url\":\"https:\\/\\/t.co\\/COouUZAqTK\",\"display_url\":\"pic.twitter.com\\/COouUZAqTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MixedPie\\/status\\/1554843910261932034\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":278,\"resize\":\"fit\"}}}]},\"735\":{\"hashtags\":[{\"text\":\"obituary\",\"indices\":[19,28]},{\"text\":\"Room1\",\"indices\":[29,35]},{\"text\":\"Wizkid\",\"indices\":[36,43]},{\"text\":\"oshiomole\",\"indices\":[44,54]},{\"text\":\"witcher\",\"indices\":[55,63]},{\"text\":\"ASUU\",\"indices\":[64,69]},{\"text\":\"Taiwan\",\"indices\":[70,77]},{\"text\":\"ifb\",\"indices\":[78,82]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554843508820905984,\"id_str\":\"1554843508820905984\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"url\":\"https:\\/\\/t.co\\/xYqiMXKCQi\",\"display_url\":\"pic.twitter.com\\/xYqiMXKCQi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibbultalkative\\/status\\/1554843537736351744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1122,\"h\":1497,\"resize\":\"fit\"}}}]},\"736\":{\"hashtags\":[{\"text\":\"Noise\",\"indices\":[129,135]},{\"text\":\"Wizkid\",\"indices\":[224,231]},{\"text\":\"helicopter\",\"indices\":[232,243]},{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"UkraineRussiaWar\",\"indices\":[252,269]},{\"text\":\"Russia\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"737\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"PokemonScarletViolet\",\"indices\":[106,127]},{\"text\":\"Viruman\",\"indices\":[128,136]},{\"text\":\"helicopter\",\"indices\":[137,148]},{\"text\":\"Machala\",\"indices\":[149,157]},{\"text\":\"Trending\",\"indices\":[158,167]},{\"text\":\"festac\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554840616395329538,\"id_str\":\"1554840616395329538\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"url\":\"https:\\/\\/t.co\\/HrGoPtUEdp\",\"display_url\":\"pic.twitter.com\\/HrGoPtUEdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialUgoo\\/status\\/1554840769541840897\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"738\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[36,42]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554840585546121216,\"id_str\":\"1554840585546121216\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"url\":\"https:\\/\\/t.co\\/M52dtXFSPt\",\"display_url\":\"pic.twitter.com\\/M52dtXFSPt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officiall_26\\/status\\/1554840595432177666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}}]},\"739\":{\"hashtags\":[{\"text\":\"sapa\",\"indices\":[93,98]},{\"text\":\"MotivationalQuotes\",\"indices\":[99,118]},{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"music\",\"indices\":[127,133]},{\"text\":\"Birmingham2022\",\"indices\":[134,149]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"officialnairam1\",\"name\":\"nairamarley\",\"id\":1150409755342573569,\"id_str\":\"1150409755342573569\",\"indices\":[14,30]},{\"screen_name\":\"zinoleesky01\",\"name\":\"zinoleesky\",\"id\":1356975348559273984,\"id_str\":\"1356975348559273984\",\"indices\":[31,44]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[45,53]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[54,61]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[62,72]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[73,82]},{\"screen_name\":\"miabaga\",\"name\":\"M.I\",\"id\":41662487,\"id_str\":\"41662487\",\"indices\":[83,91]}],\"urls\":[],\"media\":[{\"id\":1554839954383052801,\"id_str\":\"1554839954383052801\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"url\":\"https:\\/\\/t.co\\/Ed0hyzm5a0\",\"display_url\":\"pic.twitter.com\\/Ed0hyzm5a0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magret_james2\\/status\\/1554840044241911810\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"740\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"helicopter\",\"indices\":[69,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839842743279618,\"id_str\":\"1554839842743279618\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"741\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839385920749569,\"id_str\":\"1554839385920749569\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"742\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"professora\",\"indices\":[87,98]},{\"text\":\"Pelosi\",\"indices\":[99,106]},{\"text\":\"akanda\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839111319506944,\"id_str\":\"1554839111319506944\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"url\":\"https:\\/\\/t.co\\/ziFs7wdpro\",\"display_url\":\"pic.twitter.com\\/ziFs7wdpro\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sir_werry\\/status\\/1554839139752652802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":805,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1235,\"resize\":\"fit\"},\"small\":{\"w\":456,\"h\":680,\"resize\":\"fit\"}}}]},\"743\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[102,109]},{\"text\":\"GGA\",\"indices\":[110,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"744\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[231,245]},{\"text\":\"Obituary\",\"indices\":[246,255]},{\"text\":\"bbns7\",\"indices\":[256,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"samomatseye\",\"indices\":[271,283]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[0,14]},{\"screen_name\":\"WestAfricaWeek\",\"name\":\"West Africa Weekly\",\"id\":1364956849804611584,\"id_str\":\"1364956849804611584\",\"indices\":[15,30]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[31,39]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[119,127]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[132,146]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i3YYdzIee8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hillike\\/status\\/1554837707242733569?t=bRRfeUM88Y-4sgyuKv5DTg&s=19\",\"display_url\":\"twitter.com\\/Hillike\\/status\\u2026\",\"indices\":[40,63]}]},\"745\":{\"hashtags\":[{\"text\":\"Sabinus\",\"indices\":[245,253]},{\"text\":\"Taiwan\",\"indices\":[254,261]},{\"text\":\"China\",\"indices\":[262,268]},{\"text\":\"Russia\",\"indices\":[269,276]},{\"text\":\"Ukraine\",\"indices\":[277,285]},{\"text\":\"uk\",\"indices\":[286,289]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"746\":{\"hashtags\":[{\"text\":\"30BG\",\"indices\":[130,135]},{\"text\":\"davido\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"PokemonScarletViolet\",\"indices\":[152,173]},{\"text\":\"AamirKhan\",\"indices\":[174,184]},{\"text\":\"DonBelle\",\"indices\":[185,194]},{\"text\":\"sabinus\",\"indices\":[195,203]},{\"text\":\"helicopter\",\"indices\":[204,215]},{\"text\":\"DonnyPangilinan\",\"indices\":[216,232]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[0,7]},{\"screen_name\":\"Pheelz\",\"name\":\"Pheelz\\ud83d\\udc18\\ud83e\\udd1f\\ud83c\\udffe\",\"id\":202175978,\"id_str\":\"202175978\",\"indices\":[10,17]}],\"urls\":[],\"media\":[{\"id\":1554837753874944002,\"id_str\":\"1554837753874944002\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"url\":\"https:\\/\\/t.co\\/VPSRUhRh8v\",\"display_url\":\"pic.twitter.com\\/VPSRUhRh8v\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554838024537509889\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"747\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554837535502716938,\"id_str\":\"1554837535502716938\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}}]},\"748\":{\"hashtags\":[{\"text\":\"music\",\"indices\":[234,240]},{\"text\":\"Taiwan\",\"indices\":[241,248]},{\"text\":\"UK\",\"indices\":[249,252]},{\"text\":\"USA\",\"indices\":[253,257]},{\"text\":\"sabinus\",\"indices\":[258,266]},{\"text\":\"JackInTheBox\",\"indices\":[267,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"749\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[140,146]},{\"text\":\"Foreign\",\"indices\":[147,155]},{\"text\":\"NancyPelosi\",\"indices\":[156,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"US\",\"indices\":[177,180]},{\"text\":\"bobojay\",\"indices\":[181,189]},{\"text\":\"bobojaytv\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7TgVmLgnwK\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/china-starts-military-exercises-as-nancy-pelosi-meets-taiwans-president\\/\",\"display_url\":\"bobojaytv.com\\/china-starts-m\\u2026\",\"indices\":[84,107]}],\"media\":[{\"id\":1554836955468165121,\"id_str\":\"1554836955468165121\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"url\":\"https:\\/\\/t.co\\/X4VdFxKEE2\",\"display_url\":\"pic.twitter.com\\/X4VdFxKEE2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554836957687005186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":533,\"resize\":\"fit\"}}}]},\"750\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"music\",\"indices\":[234,240]},{\"text\":\"AamirKhan\",\"indices\":[241,251]},{\"text\":\"nsfwtwt\",\"indices\":[264,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"751\":{\"hashtags\":[{\"text\":\"WesternPost\",\"indices\":[83,95]},{\"text\":\"NancyPelosi\",\"indices\":[97,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"USA\",\"indices\":[118,122]},{\"text\":\"China\",\"indices\":[123,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i8u27vB1bD\",\"expanded_url\":\"https:\\/\\/westernpost.ng\\/us-house-speaker-nancy-pelosi-lands-in-taiwan-amid-threats-of-chinese-retaliation\\/\",\"display_url\":\"westernpost.ng\\/us-house-speak\\u2026\",\"indices\":[131,154]}]},\"752\":{\"hashtags\":[{\"text\":\"Russia\",\"indices\":[149,156]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[157,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"Pelosi\",\"indices\":[189,196]},{\"text\":\"Trending\",\"indices\":[197,206]},{\"text\":\"Viral\",\"indices\":[207,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554835170859003904,\"id_str\":\"1554835170859003904\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"url\":\"https:\\/\\/t.co\\/XPenvRyXEc\",\"display_url\":\"pic.twitter.com\\/XPenvRyXEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554835221819731969\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}}}]},\"753\":{\"hashtags\":[{\"text\":\"Foreign\",\"indices\":[148,156]},{\"text\":\"Kremlin\",\"indices\":[157,165]},{\"text\":\"news\",\"indices\":[166,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"bobojay\",\"indices\":[180,188]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Cx1vEaqwqu\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/kremlin-tension-over-nancy-pelosis-taiwan-visit-should-not-be-underestimated\\/\",\"display_url\":\"bobojaytv.com\\/kremlin-tensio\\u2026\",\"indices\":[92,115]}],\"media\":[{\"id\":1554835161350492164,\"id_str\":\"1554835161350492164\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"url\":\"https:\\/\\/t.co\\/lbgqYYK7r6\",\"display_url\":\"pic.twitter.com\\/lbgqYYK7r6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554835162839465992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"754\":{\"hashtags\":[{\"text\":\"moneymadness\",\"indices\":[8,21]},{\"text\":\"africa\",\"indices\":[108,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"Pelosi\",\"indices\":[124,131]},{\"text\":\"news\",\"indices\":[132,137]},{\"text\":\"NEW\",\"indices\":[138,142]},{\"text\":\"music\",\"indices\":[143,149]},{\"text\":\"Demi\",\"indices\":[150,155]},{\"text\":\"MONEY\",\"indices\":[163,169]},{\"text\":\"moneymadness\",\"indices\":[170,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RKTnxgtKzB\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/sappzee-1\\/album\\/simple-lyrics-1\",\"display_url\":\"audiomack.com\\/sappzee-1\\/albu\\u2026\",\"indices\":[83,106]}],\"media\":[{\"id\":1554835050029387782,\"id_str\":\"1554835050029387782\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"url\":\"https:\\/\\/t.co\\/AVYQjSFrmC\",\"display_url\":\"pic.twitter.com\\/AVYQjSFrmC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sappzee\\/status\\/1554835145458212865\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}}}]},\"755\":{\"hashtags\":[{\"text\":\"pi\",\"indices\":[107,110]},{\"text\":\"core\",\"indices\":[111,116]},{\"text\":\"SatoshiPlusConsensus\",\"indices\":[117,138]},{\"text\":\"btcs\",\"indices\":[139,144]},{\"text\":\"btc\",\"indices\":[145,149]},{\"text\":\"Bitcoin\",\"indices\":[150,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Solana\",\"indices\":[167,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[0,11]},{\"screen_name\":\"CoreMining_1\",\"name\":\"CORE Mining (Satoshi)\",\"id\":1553043982623596545,\"id_str\":\"1553043982623596545\",\"indices\":[92,105]}],\"urls\":[],\"media\":[{\"id\":1554835119990456320,\"id_str\":\"1554835119990456320\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"url\":\"https:\\/\\/t.co\\/MkpeC7yxpc\",\"display_url\":\"pic.twitter.com\\/MkpeC7yxpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KafeEazy\\/status\\/1554835123329064961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"},\"small\":{\"w\":449,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"}}}]},\"756\":{\"hashtags\":[{\"text\":\"UnitedNations\",\"indices\":[6,20]},{\"text\":\"OneChina\",\"indices\":[63,72]},{\"text\":\"UNGA\",\"indices\":[114,119]},{\"text\":\"China\",\"indices\":[243,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"Pelosi\",\"indices\":[258,265]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UN\",\"name\":\"United Nations\",\"id\":14159148,\"id_str\":\"14159148\",\"indices\":[186,189]},{\"screen_name\":\"antonioguterres\",\"name\":\"Ant\\u00f3nio Guterres\",\"id\":811229675758505984,\"id_str\":\"811229675758505984\",\"indices\":[225,241]}],\"urls\":[],\"media\":[{\"id\":1554781291983298567,\"id_str\":\"1554781291983298567\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOxWPQWYAcX3k6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOxWPQWYAcX3k6.jpg\",\"url\":\"https:\\/\\/t.co\\/cMXki88fQe\",\"display_url\":\"pic.twitter.com\\/cMXki88fQe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554834472549244937\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":469,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":706,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":706,\"resize\":\"fit\"}}}]},\"757\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[14,21]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[22,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/u6tMQDCudX\",\"expanded_url\":\"https:\\/\\/youtu.be\\/I7JpT2ZMF_Q\",\"display_url\":\"youtu.be\\/I7JpT2ZMF_Q\",\"indices\":[41,64]}]},\"758\":{\"hashtags\":[{\"text\":\"Binnaparlour\",\"indices\":[25,38]},{\"text\":\"food\",\"indices\":[40,45]},{\"text\":\"FastFood\",\"indices\":[46,55]},{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"sabinus\",\"indices\":[65,73]},{\"text\":\"Birmingham2022\",\"indices\":[74,89]},{\"text\":\"PeterObi\",\"indices\":[90,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554831359826284546,\"id_str\":\"1554831359826284546\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPe4kgVUAIn6dJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPe4kgVUAIn6dJ.jpg\",\"url\":\"https:\\/\\/t.co\\/oUEy7JsXqy\",\"display_url\":\"pic.twitter.com\\/oUEy7JsXqy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Obi_Binna\\/status\\/1554831369179516928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"759\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"Xi\",\"indices\":[71,74]},{\"text\":\"Kano\",\"indices\":[83,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554831314158727171,\"id_str\":\"1554831314158727171\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"url\":\"https:\\/\\/t.co\\/EL3gICOawv\",\"display_url\":\"pic.twitter.com\\/EL3gICOawv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ovie_matt\\/status\\/1554831323415490560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"}}}]},\"760\":{\"hashtags\":[{\"text\":\"renticapartment\",\"indices\":[89,105]},{\"text\":\"lagosnigeria\",\"indices\":[106,119]},{\"text\":\"BBNaija\",\"indices\":[121,129]},{\"text\":\"BBNajia\",\"indices\":[135,143]},{\"text\":\"Pelosi\",\"indices\":[222,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554830855607951364,\"id_str\":\"1554830855607951364\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"url\":\"https:\\/\\/t.co\\/MWfCcGsFBl\",\"display_url\":\"pic.twitter.com\\/MWfCcGsFBl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554830864189575175\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"761\":{\"hashtags\":[{\"text\":\"Pinterest\",\"indices\":[104,114]},{\"text\":\"artists\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"762\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"China\",\"indices\":[71,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"763\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[107,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"bellathorne\",\"indices\":[123,135]},{\"text\":\"PeterObi\",\"indices\":[136,145]},{\"text\":\"abuja\",\"indices\":[146,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"764\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[129,136]},{\"text\":\"sabinus\",\"indices\":[137,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"internships\",\"indices\":[154,166]},{\"text\":\"designthinking\",\"indices\":[167,182]},{\"text\":\"designinspiration\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"765\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"RCCGConvention\",\"indices\":[66,81]},{\"text\":\"helicopter\",\"indices\":[84,95]},{\"text\":\"WWIII\",\"indices\":[98,104]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"Xi\",\"indices\":[113,116]},{\"text\":\"World\",\"indices\":[125,131]},{\"text\":\"Reno\",\"indices\":[140,145]},{\"text\":\"TinubuShettima2023\",\"indices\":[146,165]},{\"text\":\"Tinubu\",\"indices\":[166,173]},{\"text\":\"Atiku\",\"indices\":[174,180]},{\"text\":\"IPOB\",\"indices\":[181,186]},{\"text\":\"Hausas\",\"indices\":[189,196]},{\"text\":\"fulani\",\"indices\":[197,204]},{\"text\":\"Yorubas\",\"indices\":[207,215]},{\"text\":\"Igbos\",\"indices\":[216,222]},{\"text\":\"Nigerians\",\"indices\":[223,233]},{\"text\":\"BBNajia\",\"indices\":[234,242]},{\"text\":\"Buhari\",\"indices\":[243,250]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[251,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825216634675202,\"id_str\":\"1554825216634675202\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"url\":\"https:\\/\\/t.co\\/1GLM8ZiUMW\",\"display_url\":\"pic.twitter.com\\/1GLM8ZiUMW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abubillaal\\/status\\/1554825762682769413\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"}}}]},\"766\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[76,99]},{\"text\":\"davidhundeyin\",\"indices\":[101,115]},{\"text\":\"congratulationsozo\",\"indices\":[117,136]},{\"text\":\"arisetv\",\"indices\":[137,145]},{\"text\":\"transhumancoin\",\"indices\":[147,162]},{\"text\":\"oshiomole\",\"indices\":[164,174]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"Ronaldo\",\"indices\":[185,193]},{\"text\":\"Messi\",\"indices\":[195,201]},{\"text\":\"TakeBackNaija\",\"indices\":[203,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ENIBOY\",\"name\":\"Eniola Akinkuotu\",\"id\":73236395,\"id_str\":\"73236395\",\"indices\":[12,19]}],\"urls\":[]},\"767\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"appledaily\",\"indices\":[105,116]},{\"text\":\"sabinus\",\"indices\":[117,125]},{\"text\":\"applemusicrt\",\"indices\":[126,139]},{\"text\":\"ApplePay\",\"indices\":[140,149]},{\"text\":\"ApplePencil\",\"indices\":[150,162]},{\"text\":\"applemusic\",\"indices\":[163,174]},{\"text\":\"applemusicnigeria\",\"indices\":[175,193]},{\"text\":\"Pelosi\",\"indices\":[194,201]},{\"text\":\"BlueJays\",\"indices\":[202,211]},{\"text\":\"LagosSwindlers\",\"indices\":[212,227]},{\"text\":\"applemusicamerica\",\"indices\":[228,246]},{\"text\":\"Haiti\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[61,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SR7gmdCcUq\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/adulthood-anthem-ii-single\\/1631043083?uo=4&app=apple+music\",\"display_url\":\"music.apple.com\\/us\\/album\\/adult\\u2026\",\"indices\":[256,279]}]},\"768\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825360847486980,\"id_str\":\"1554825360847486980\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"769\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825494058508289,\"id_str\":\"1554825494058508289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"}}}]},\"770\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825262377811968,\"id_str\":\"1554825262377811968\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"771\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825186494427139,\"id_str\":\"1554825186494427139\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"772\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825064314417152,\"id_str\":\"1554825064314417152\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}}]},\"773\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"Xi\",\"indices\":[25,28]},{\"text\":\"World\",\"indices\":[37,43]},{\"text\":\"AMVCA8\",\"indices\":[52,59]},{\"text\":\"BBNaija\",\"indices\":[60,68]},{\"text\":\"BlackPantherWakandaForever\",\"indices\":[69,96]},{\"text\":\"Burnaboy\",\"indices\":[97,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824969112080385,\"id_str\":\"1554824969112080385\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZElPVUAERZz1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZElPVUAERZz1.jpg\",\"url\":\"https:\\/\\/t.co\\/aTBOgsEADr\",\"display_url\":\"pic.twitter.com\\/aTBOgsEADr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhyWorri\\/status\\/1554825025114345473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1061,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1810,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"}}}]},\"774\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824914997104643,\"id_str\":\"1554824914997104643\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":527,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"}}}]},\"775\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824782532661254,\"id_str\":\"1554824782532661254\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"}}}]},\"776\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824708050132994,\"id_str\":\"1554824708050132994\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}}]},\"777\":{\"hashtags\":[{\"text\":\"peacefulTaiwan\",\"indices\":[59,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[83,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ukr\",\"name\":\"Ukraine\",\"id\":8043902,\"id_str\":\"8043902\",\"indices\":[10,14]},{\"screen_name\":\"Ukraine\",\"name\":\"Ukraine \\/ \\u0423\\u043a\\u0440\\u0430\\u0457\\u043d\\u0430\",\"id\":732521058507620356,\"id_str\":\"732521058507620356\",\"indices\":[15,23]},{\"screen_name\":\"china\",\"name\":\"CHINA\",\"id\":1196328007,\"id_str\":\"1196328007\",\"indices\":[24,30]},{\"screen_name\":\"PDChinaLife\",\"name\":\"Beautiful China\",\"id\":1164937093656862720,\"id_str\":\"1164937093656862720\",\"indices\":[31,43]},{\"screen_name\":\"Taiwan_Today\",\"name\":\"Taiwan Today\",\"id\":121371581,\"id_str\":\"121371581\",\"indices\":[44,57]}],\"urls\":[]},\"778\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824580723724289,\"id_str\":\"1554824580723724289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}}]},\"779\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824485064192000,\"id_str\":\"1554824485064192000\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":615,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"}}}]},\"780\":{\"hashtags\":[{\"text\":\"osimhen\",\"indices\":[82,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"HelicopterCrash\",\"indices\":[99,115]},{\"text\":\"DonnyPangilinan\",\"indices\":[116,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2g4Wc7gzYP\",\"expanded_url\":\"http:\\/\\/owosports.com.ng\\/osimhen-napolis-future-in-doubt-after-comments-from-president-over-african-stars\\/\",\"display_url\":\"owosports.com.ng\\/osimhen-napoli\\u2026\",\"indices\":[133,156]}]},\"781\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824406114832386,\"id_str\":\"1554824406114832386\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"782\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824310216265728,\"id_str\":\"1554824310216265728\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":667,\"resize\":\"fit\"}}}]},\"783\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824210907684867,\"id_str\":\"1554824210907684867\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"784\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824123146125312,\"id_str\":\"1554824123146125312\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"785\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824058440626177,\"id_str\":\"1554824058440626177\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}}]},\"786\":{\"hashtags\":[{\"text\":\"Cucurella\",\"indices\":[260,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"787\":{\"hashtags\":[{\"text\":\"Gavi\",\"indices\":[30,35]},{\"text\":\"WorldwarIII\",\"indices\":[36,48]},{\"text\":\"sabinus\",\"indices\":[49,57]},{\"text\":\"movies\",\"indices\":[58,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Ukraine\",\"indices\":[74,82]},{\"text\":\"brighton\",\"indices\":[83,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554823196238442499,\"id_str\":\"1554823196238442499\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"url\":\"https:\\/\\/t.co\\/GNZfMrWyoH\",\"display_url\":\"pic.twitter.com\\/GNZfMrWyoH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobinson10\\/status\\/1554823249082605570\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"788\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[126,137]},{\"text\":\"PrivateJet\",\"indices\":[138,149]},{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"Pelosi\",\"indices\":[158,165]},{\"text\":\"travel\",\"indices\":[166,173]},{\"text\":\"Aviation\",\"indices\":[174,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554823128924073984,\"id_str\":\"1554823128924073984\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"url\":\"https:\\/\\/t.co\\/uN0H1vPHWE\",\"display_url\":\"pic.twitter.com\\/uN0H1vPHWE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flyhezix\\/status\\/1554823137191010304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"789\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"Trending\",\"indices\":[63,72]},{\"text\":\"Viral\",\"indices\":[73,79]},{\"text\":\"LoveIsland2022\",\"indices\":[80,95]},{\"text\":\"Pelosi\",\"indices\":[96,103]},{\"text\":\"sabinus\",\"indices\":[104,112]},{\"text\":\"DonBelle\",\"indices\":[113,122]},{\"text\":\"massage\",\"indices\":[123,131]},{\"text\":\"helicopter\",\"indices\":[132,143]},{\"text\":\"Birmingham2022\",\"indices\":[144,159]},{\"text\":\"BelleMariano\",\"indices\":[160,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554822967028109313,\"id_str\":\"1554822967028109313\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"url\":\"https:\\/\\/t.co\\/dYbMkB0eWO\",\"display_url\":\"pic.twitter.com\\/dYbMkB0eWO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pearlz_blaq\\/status\\/1554822970660360192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":438,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":625,\"h\":970,\"resize\":\"fit\"},\"large\":{\"w\":625,\"h\":970,\"resize\":\"fit\"}}}]},\"790\":{\"hashtags\":[{\"text\":\"iTunes\",\"indices\":[92,99]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[100,112]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[113,125]},{\"text\":\"itunes\\u914d\\u5e03\",\"indices\":[126,135]},{\"text\":\"itunesafrica\",\"indices\":[136,149]},{\"text\":\"iPadPro\",\"indices\":[150,158]},{\"text\":\"itunesghana\",\"indices\":[159,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"sabinus\",\"indices\":[180,188]},{\"text\":\"Solana\",\"indices\":[190,197]},{\"text\":\"UkraineRussiaWar\",\"indices\":[198,215]},{\"text\":\"PeterObi4President2023\",\"indices\":[216,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[61,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9BKh8azwH\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/adulthood-anthem-ii-single\\/1631043083?uo=4&app=itunes&at=1001lry3&ct=twitter\",\"display_url\":\"music.apple.com\\/us\\/album\\/adult\\u2026\",\"indices\":[242,265]}]},\"791\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[113,124]},{\"text\":\"Japa\",\"indices\":[125,130]},{\"text\":\"XiJinping\",\"indices\":[131,141]},{\"text\":\"ChelseaFC\",\"indices\":[142,152]},{\"text\":\"BHAFC\",\"indices\":[153,159]},{\"text\":\"CFC\",\"indices\":[160,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eu6MfQUQWL\",\"expanded_url\":\"https:\\/\\/bittylink.com\\/bmv\",\"display_url\":\"bittylink.com\\/bmv\",\"indices\":[89,112]}],\"media\":[{\"id\":1554821460660629504,\"id_str\":\"1554821460660629504\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"url\":\"https:\\/\\/t.co\\/S9yDKiqfdh\",\"display_url\":\"pic.twitter.com\\/S9yDKiqfdh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoorTony\\/status\\/1554822673993068546\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"792\":{\"hashtags\":[{\"text\":\"ASUUStrikeUpdate\",\"indices\":[109,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[135,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"793\":{\"hashtags\":[{\"text\":\"wednesdaythought\",\"indices\":[189,206]},{\"text\":\"esreicht\",\"indices\":[207,216]},{\"text\":\"Taiwan\",\"indices\":[217,224]},{\"text\":\"YENA_SMARTPHONE\",\"indices\":[225,241]},{\"text\":\"BBNaija\",\"indices\":[242,250]},{\"text\":\"Pelosi\",\"indices\":[251,258]},{\"text\":\"sabinus\",\"indices\":[259,267]},{\"text\":\"DonBelle\",\"indices\":[268,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QQdshVYR8Y\",\"expanded_url\":\"https:\\/\\/youtu.be\\/GQg4dhE2d6o\",\"display_url\":\"youtu.be\\/GQg4dhE2d6o\",\"indices\":[121,144]},{\"url\":\"https:\\/\\/t.co\\/nY84jN4orE\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/hopvicproduction\\/\",\"display_url\":\"instagram.com\\/hopvicproducti\\u2026\",\"indices\":[165,188]}]},\"794\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Solana\",\"indices\":[65,72]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[73,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[106,113]},{\"text\":\"Ukraine\",\"indices\":[114,122]},{\"text\":\"BibleBuild\",\"indices\":[123,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"BlueJays\",\"indices\":[154,163]},{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"UkraineRussiaWar\",\"indices\":[176,193]},{\"text\":\"DonnyPangilinan\",\"indices\":[194,210]},{\"text\":\"UkraineRussiaWar\",\"indices\":[211,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820649977143297,\"id_str\":\"1554820649977143297\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"url\":\"https:\\/\\/t.co\\/PLgY1dIXk6\",\"display_url\":\"pic.twitter.com\\/PLgY1dIXk6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820786933735425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"795\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"knust\",\"indices\":[169,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O9ukvE85zh\",\"expanded_url\":\"https:\\/\\/www.ghcelebritybiz.com\\/2022\\/08\\/shs-1-student-2-loaves-despite-school.html?m=1\",\"display_url\":\"ghcelebritybiz.com\\/2022\\/08\\/shs-1-\\u2026\",\"indices\":[109,132]}]},\"796\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Solana\",\"indices\":[65,72]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[73,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[106,113]},{\"text\":\"Ukraine\",\"indices\":[114,122]},{\"text\":\"BibleBuild\",\"indices\":[123,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"BlueJays\",\"indices\":[154,163]},{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"UkraineRussiaWar\",\"indices\":[176,193]},{\"text\":\"DonnyPangilinan\",\"indices\":[194,210]},{\"text\":\"UkraineRussiaWar\",\"indices\":[211,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820479541596162,\"id_str\":\"1554820479541596162\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"url\":\"https:\\/\\/t.co\\/TaQtXc29sS\",\"display_url\":\"pic.twitter.com\\/TaQtXc29sS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820709485928450\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"797\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[206,216]},{\"text\":\"Bbnaija\",\"indices\":[217,225]},{\"text\":\"sabinus\",\"indices\":[226,234]},{\"text\":\"SheggzFC\",\"indices\":[235,244]},{\"text\":\"Machala\",\"indices\":[245,253]},{\"text\":\"Bryann\",\"indices\":[254,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V95Z1YzYt7\",\"expanded_url\":\"https:\\/\\/bit.ly\\/38ZHaGG\",\"display_url\":\"bit.ly\\/38ZHaGG\",\"indices\":[156,179]},{\"url\":\"https:\\/\\/t.co\\/7RLDwaJ1Q9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[181,204]}],\"media\":[{\"id\":1554820524752179200,\"id_str\":\"1554820524752179200\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"url\":\"https:\\/\\/t.co\\/b6Klbwjbg0\",\"display_url\":\"pic.twitter.com\\/b6Klbwjbg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554820531186286592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":530,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":530,\"resize\":\"fit\"}}}]},\"798\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[98,105]},{\"text\":\"LoveIsland2022\",\"indices\":[106,121]},{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[130,138]},{\"text\":\"LoveIsland2022\",\"indices\":[139,154]},{\"text\":\"sabinus\",\"indices\":[155,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820383890497540,\"id_str\":\"1554820383890497540\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"url\":\"https:\\/\\/t.co\\/YnkSN8AI7d\",\"display_url\":\"pic.twitter.com\\/YnkSN8AI7d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BelloIlias\\/status\\/1554820392237248512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"799\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[171,178]},{\"text\":\"PeterObi4President\",\"indices\":[179,198]},{\"text\":\"HapWhiskeyXOZO\",\"indices\":[240,255]},{\"text\":\"OzoemenaChukwuOZO\",\"indices\":[256,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820340127338497,\"id_str\":\"1554820340127338497\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"url\":\"https:\\/\\/t.co\\/zKU1MjgFni\",\"display_url\":\"pic.twitter.com\\/zKU1MjgFni\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1554820342190948353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"large\":{\"w\":616,\"h\":498,\"resize\":\"fit\"}}}]},\"800\":{\"hashtags\":[{\"text\":\"asuu\",\"indices\":[171,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Kano\",\"indices\":[185,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"801\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[245,252]},{\"text\":\"Machala\",\"indices\":[253,261]},{\"text\":\"WednesdayMotivation\",\"indices\":[262,282]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"802\":{\"hashtags\":[{\"text\":\"diabetes\",\"indices\":[83,92]},{\"text\":\"herbalife_nutrition\",\"indices\":[93,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554816408265039873,\"id_str\":\"1554816408265039873\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"803\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"sabinus\",\"indices\":[155,163]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[164,177]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[66,75]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mzzNbsFPxT\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazzy-by-dejavudmj\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[114,137]}],\"media\":[{\"id\":1554816265025462273,\"id_str\":\"1554816265025462273\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"url\":\"https:\\/\\/t.co\\/sYSZHcYIuU\",\"display_url\":\"pic.twitter.com\\/sYSZHcYIuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554816276471681024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"804\":{\"hashtags\":[{\"text\":\"citicbs\",\"indices\":[0,8]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[9,21]},{\"text\":\"tiboinshape\",\"indices\":[23,35]},{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a76\",\"indices\":[46,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rCH5mVvNNM\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PLxLXLeyyS_OIgYGX6oUYkK6jnYaQzx2A2\",\"display_url\":\"youtube.com\\/playlist?list=\\u2026\",\"indices\":[91,114]}]},\"805\":{\"hashtags\":[{\"text\":\"Davido\",\"indices\":[127,134]},{\"text\":\"sabinus\",\"indices\":[135,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554815484083716096,\"id_str\":\"1554815484083716096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"url\":\"https:\\/\\/t.co\\/2hrwFNjoTy\",\"display_url\":\"pic.twitter.com\\/2hrwFNjoTy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554815491369324544\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"806\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554814985557123072,\"id_str\":\"1554814985557123072\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"url\":\"https:\\/\\/t.co\\/gibonV5QKp\",\"display_url\":\"pic.twitter.com\\/gibonV5QKp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554815003668135939\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"807\":{\"hashtags\":[{\"text\":\"BeninCityMall\",\"indices\":[120,134]},{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"sabinus\",\"indices\":[147,155]},{\"text\":\"BibleBuild\",\"indices\":[158,169]},{\"text\":\"Pelosi\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554814611970560000,\"id_str\":\"1554814611970560000\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"url\":\"https:\\/\\/t.co\\/V1HrxtBzz9\",\"display_url\":\"pic.twitter.com\\/V1HrxtBzz9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Obi_ajulu\\/status\\/1554814620853993475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"808\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554814493322088450,\"id_str\":\"1554814493322088450\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"url\":\"https:\\/\\/t.co\\/hXgO9IeAYb\",\"display_url\":\"pic.twitter.com\\/hXgO9IeAYb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554814505036693506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}}}]},\"809\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[196,210]},{\"text\":\"ChinaTaiwan\",\"indices\":[211,223]},{\"text\":\"Nigeria\",\"indices\":[224,232]},{\"text\":\"level2\",\"indices\":[233,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813734006161408,\"id_str\":\"1554813734006161408\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"url\":\"https:\\/\\/t.co\\/JioBYqDFhh\",\"display_url\":\"pic.twitter.com\\/JioBYqDFhh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Naijamatterblog\\/status\\/1554813907788877827\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"810\":{\"hashtags\":[{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[0,12]},{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"LoveDamini\",\"indices\":[21,32]},{\"text\":\"LoveIsland2022\",\"indices\":[33,48]},{\"text\":\"BurnaBoy\",\"indices\":[49,58]},{\"text\":\"music\",\"indices\":[59,65]},{\"text\":\"DONBELLEmpire\",\"indices\":[66,80]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[83,92]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[93,101]},{\"screen_name\":\"ubifranklin1\",\"name\":\"ubi Franklin ofem\",\"id\":15223566,\"id_str\":\"15223566\",\"indices\":[102,115]},{\"screen_name\":\"_AsiwajuLerry\",\"name\":\"LERRY \\ud83d\\udc51\",\"id\":1353862573016428544,\"id_str\":\"1353862573016428544\",\"indices\":[116,130]},{\"screen_name\":\"Iampelga_\",\"name\":\"BabyPel \\ud83e\\udd85\\ud83e\\udd84\\u2763\\ufe0f\",\"id\":1351249442779901961,\"id_str\":\"1351249442779901961\",\"indices\":[131,141]},{\"screen_name\":\"officialnairam1\",\"name\":\"nairamarley\",\"id\":1150409755342573569,\"id_str\":\"1150409755342573569\",\"indices\":[142,158]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[159,166]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[167,176]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[177,186]},{\"screen_name\":\"SOUNDCITYtv\",\"name\":\"SOUNDCITY AFRICA!\",\"id\":35279836,\"id_str\":\"35279836\",\"indices\":[187,199]},{\"screen_name\":\"AtlanticRecords\",\"name\":\"Atlantic Records\",\"id\":24429991,\"id_str\":\"24429991\",\"indices\":[200,216]},{\"screen_name\":\"MAVINRECORDS\",\"name\":\"MAVIN RECORDS\",\"id\":546237443,\"id_str\":\"546237443\",\"indices\":[217,230]},{\"screen_name\":\"AtlanticRcrdsUK\",\"name\":\"Atlantic Records UK\",\"id\":82408842,\"id_str\":\"82408842\",\"indices\":[231,247]}],\"urls\":[],\"media\":[{\"id\":1554813716616691714,\"id_str\":\"1554813716616691714\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"url\":\"https:\\/\\/t.co\\/2Shx63fCq9\",\"display_url\":\"pic.twitter.com\\/2Shx63fCq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554813806672596994\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}}}]},\"811\":{\"hashtags\":[{\"text\":\"AS_I_dey\",\"indices\":[77,86]},{\"text\":\"Taiwan\",\"indices\":[246,253]},{\"text\":\"debhie\",\"indices\":[254,261]},{\"text\":\"AsIDey\",\"indices\":[262,269]},{\"text\":\"sabinus\",\"indices\":[270,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Debhieofficial\",\"name\":\"Debhie \\ud83e\\udd81 AS I DEY VIDEO PREMIERES 6PM TONIGHT\",\"id\":972111695211528192,\"id_str\":\"972111695211528192\",\"indices\":[0,15]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XjTVjKPsm0\",\"expanded_url\":\"https:\\/\\/youtu.be\\/LV32f80iO2I\",\"display_url\":\"youtu.be\\/LV32f80iO2I\",\"indices\":[221,244]}],\"media\":[{\"id\":1554813660085755907,\"id_str\":\"1554813660085755907\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"url\":\"https:\\/\\/t.co\\/estdPqJOQ4\",\"display_url\":\"pic.twitter.com\\/estdPqJOQ4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aprokorepublic\\/status\\/1554813725508571137\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":856,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"medium\":{\"w\":856,\"h\":480,\"resize\":\"fit\"}}}]},\"812\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813486064189442,\"id_str\":\"1554813486064189442\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"url\":\"https:\\/\\/t.co\\/n0O3V41onu\",\"display_url\":\"pic.twitter.com\\/n0O3V41onu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554813586194792448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"813\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[196,201]},{\"text\":\"MamaDollaz\",\"indices\":[203,214]},{\"text\":\"Racism\",\"indices\":[216,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"JackieChan\",\"indices\":[232,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813279620440064,\"id_str\":\"1554813279620440064\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"814\":{\"hashtags\":[{\"text\":\"Osimhen\",\"indices\":[129,137]},{\"text\":\"Chukwuemeka\",\"indices\":[138,150]},{\"text\":\"JackieChan\",\"indices\":[151,162]},{\"text\":\"declan\",\"indices\":[163,170]},{\"text\":\"Obituary\",\"indices\":[171,180]},{\"text\":\"Kano\",\"indices\":[181,186]},{\"text\":\"Cubana\",\"indices\":[187,194]},{\"text\":\"Tinubu\",\"indices\":[195,202]},{\"text\":\"NnamdiKanu\",\"indices\":[203,214]},{\"text\":\"davidhundeyin\",\"indices\":[215,229]},{\"text\":\"airtel\",\"indices\":[230,237]},{\"text\":\"Mourinho\",\"indices\":[238,247]},{\"text\":\"Mount\",\"indices\":[248,254]},{\"text\":\"Taiwan\",\"indices\":[255,262]},{\"text\":\"arisetv\",\"indices\":[263,271]},{\"text\":\"ASUU\",\"indices\":[272,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813156626677760,\"id_str\":\"1554813156626677760\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":514,\"h\":680,\"resize\":\"fit\"}}}]},\"815\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812894998663169,\"id_str\":\"1554812894998663169\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"url\":\"https:\\/\\/t.co\\/8b4mXYiRXi\",\"display_url\":\"pic.twitter.com\\/8b4mXYiRXi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812936102838272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":473,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"816\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"Solana\",\"indices\":[77,84]},{\"text\":\"Ukraine\",\"indices\":[85,93]},{\"text\":\"Wizkid\",\"indices\":[94,101]},{\"text\":\"BibleBuild\",\"indices\":[102,113]},{\"text\":\"news\",\"indices\":[114,119]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[120,138]},{\"text\":\"BBNajiaS7\",\"indices\":[139,149]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[56,66]}],\"urls\":[],\"media\":[{\"id\":1554812860714418178,\"id_str\":\"1554812860714418178\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"url\":\"https:\\/\\/t.co\\/eImPrKR2Vs\",\"display_url\":\"pic.twitter.com\\/eImPrKR2Vs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequesttimes\\/status\\/1554812868356349954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"817\":{\"hashtags\":[{\"text\":\"Church\",\"indices\":[83,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"biblewonderland\",\"indices\":[99,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812796168294401,\"id_str\":\"1554812796168294401\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"url\":\"https:\\/\\/t.co\\/LfYSxPZruW\",\"display_url\":\"pic.twitter.com\\/LfYSxPZruW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BibleWonderLand\\/status\\/1554812801448902656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"818\":{\"hashtags\":[{\"text\":\"DonnyPangilinan\",\"indices\":[40,56]},{\"text\":\"sabinus\",\"indices\":[57,65]},{\"text\":\"helicopter\",\"indices\":[66,77]},{\"text\":\"Twitter\",\"indices\":[78,86]},{\"text\":\"TREASURE\",\"indices\":[87,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[113,120]},{\"text\":\"BlueJays\",\"indices\":[121,130]},{\"text\":\"BelleMariano\",\"indices\":[131,144]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[145,167]},{\"text\":\"massage\",\"indices\":[168,176]},{\"text\":\"LoveDamini\",\"indices\":[177,188]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812704623366144,\"id_str\":\"1554812704623366144\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"url\":\"https:\\/\\/t.co\\/BWJR5IVhyG\",\"display_url\":\"pic.twitter.com\\/BWJR5IVhyG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obi_Jules\\/status\\/1554812726647611393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"819\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812325546303490,\"id_str\":\"1554812325546303490\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"url\":\"https:\\/\\/t.co\\/8wVAc3JTrI\",\"display_url\":\"pic.twitter.com\\/8wVAc3JTrI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812455939092480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":399,\"resize\":\"fit\"}}}]},\"820\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812082058678272,\"id_str\":\"1554812082058678272\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"url\":\"https:\\/\\/t.co\\/aFCQiipXKe\",\"display_url\":\"pic.twitter.com\\/aFCQiipXKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812098168754176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"821\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"sabinus\",\"indices\":[167,175]},{\"text\":\"asuu\",\"indices\":[176,181]},{\"text\":\"ASUU\",\"indices\":[182,187]},{\"text\":\"dejong\",\"indices\":[188,195]},{\"text\":\"machala\",\"indices\":[196,204]},{\"text\":\"Trending\",\"indices\":[205,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"822\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[210,221]},{\"text\":\"Taiwan\",\"indices\":[222,229]},{\"text\":\"sabinus\",\"indices\":[230,238]},{\"text\":\"Obidatti2023\",\"indices\":[239,252]},{\"text\":\"BBNajiaS7\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554811869684187136,\"id_str\":\"1554811869684187136\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"url\":\"https:\\/\\/t.co\\/5gYFCbiciT\",\"display_url\":\"pic.twitter.com\\/5gYFCbiciT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554811872351866882\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"}}}]},\"823\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[187,194]},{\"text\":\"Pelosi\",\"indices\":[195,202]},{\"text\":\"Solana\",\"indices\":[203,210]},{\"text\":\"ASUUstrike\",\"indices\":[211,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"824\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[197,204]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[205,220]},{\"text\":\"BBNaijaS7\",\"indices\":[221,231]},{\"text\":\"BBNaija\",\"indices\":[232,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554810869346979841,\"id_str\":\"1554810869346979841\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"url\":\"https:\\/\\/t.co\\/MTTKUFXeL5\",\"display_url\":\"pic.twitter.com\\/MTTKUFXeL5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldmyneTV\\/status\\/1554810881116078080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":341,\"resize\":\"fit\"}}}]},\"825\":{\"hashtags\":[{\"text\":\"Infertility\",\"indices\":[163,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"NigerRepublic\",\"indices\":[184,198]},{\"text\":\"BBNaijaS7\",\"indices\":[199,209]},{\"text\":\"Obituary\",\"indices\":[210,219]},{\"text\":\"Emily\",\"indices\":[220,226]},{\"text\":\"BeninCityMall\",\"indices\":[227,241]},{\"text\":\"Ronaldo\",\"indices\":[242,250]},{\"text\":\"SamOmatseye\",\"indices\":[251,263]},{\"text\":\"Leno\",\"indices\":[264,269]},{\"text\":\"PeterObi\",\"indices\":[270,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c5IRIQTAQ1\",\"expanded_url\":\"http:\\/\\/www.afrhnigeria.org\",\"display_url\":\"afrhnigeria.org\",\"indices\":[138,161]}],\"media\":[{\"id\":1554809250807005184,\"id_str\":\"1554809250807005184\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"url\":\"https:\\/\\/t.co\\/dSvzH9zKm6\",\"display_url\":\"pic.twitter.com\\/dSvzH9zKm6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AFRHNig\\/status\\/1554810633786466306\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"826\":{\"hashtags\":[{\"text\":\"knust\",\"indices\":[222,228]},{\"text\":\"Taiwan\",\"indices\":[229,236]},{\"text\":\"UkraineRussiaWar\",\"indices\":[237,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"827\":{\"hashtags\":[{\"text\":\"food\",\"indices\":[36,41]},{\"text\":\"Taiwan\",\"indices\":[42,49]},{\"text\":\"sabinus\",\"indices\":[50,58]},{\"text\":\"Batgirl\",\"indices\":[59,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"828\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[0,5]},{\"text\":\"Taiwan\",\"indices\":[6,13]},{\"text\":\"Oshimen\",\"indices\":[14,22]},{\"text\":\"Solana\",\"indices\":[23,30]},{\"text\":\"helicopter\",\"indices\":[31,42]},{\"text\":\"sabinus\",\"indices\":[43,51]},{\"text\":\"Lautech\",\"indices\":[55,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554807689947095040,\"id_str\":\"1554807689947095040\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"url\":\"https:\\/\\/t.co\\/c4YyJ55VCk\",\"display_url\":\"pic.twitter.com\\/c4YyJ55VCk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamdannylaurels\\/status\\/1554807692920766467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"829\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"Solana\",\"indices\":[29,36]},{\"text\":\"ASUUstrike\",\"indices\":[37,48]},{\"text\":\"sabinus\",\"indices\":[49,57]},{\"text\":\"Wizkid\",\"indices\":[58,65]},{\"text\":\"Machala\",\"indices\":[66,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554807508396539907,\"id_str\":\"1554807508396539907\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"url\":\"https:\\/\\/t.co\\/ON0Rt9DZRR\",\"display_url\":\"pic.twitter.com\\/ON0Rt9DZRR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554807550247313408\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"830\":{\"hashtags\":[{\"text\":\"rorajaye\",\"indices\":[100,109]},{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"Batgirl\",\"indices\":[188,196]},{\"text\":\"Wizkid\",\"indices\":[197,204]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[207,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/awDqNWkeWB\",\"expanded_url\":\"https:\\/\\/form.jotform.com\\/222114774018046\",\"display_url\":\"form.jotform.com\\/222114774018046\",\"indices\":[155,178]}],\"media\":[{\"id\":1554807453371580416,\"id_str\":\"1554807453371580416\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"url\":\"https:\\/\\/t.co\\/gEEUK9uuNT\",\"display_url\":\"pic.twitter.com\\/gEEUK9uuNT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oluwanonieefa\\/status\\/1554807534371966981\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"831\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[108,116]},{\"text\":\"Tinubu\",\"indices\":[117,124]},{\"text\":\"Hermes\",\"indices\":[125,132]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"Jaruma\",\"indices\":[141,148]},{\"text\":\"racism\",\"indices\":[149,156]},{\"text\":\"NnamdiKanu\",\"indices\":[157,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"832\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554806476836831233,\"id_str\":\"1554806476836831233\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"url\":\"https:\\/\\/t.co\\/VHF846Ucn9\",\"display_url\":\"pic.twitter.com\\/VHF846Ucn9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554806541835968512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"833\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[146,153]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[154,179]},{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"China\",\"indices\":[189,195]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[196,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554806422696873985,\"id_str\":\"1554806422696873985\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"url\":\"https:\\/\\/t.co\\/Rh4GEKiBzb\",\"display_url\":\"pic.twitter.com\\/Rh4GEKiBzb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_Gpphilipson\\/status\\/1554806450366681088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"834\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"Obidatti2023\",\"indices\":[102,115]},{\"text\":\"Ukraine\",\"indices\":[116,124]},{\"text\":\"sabinus\",\"indices\":[125,133]},{\"text\":\"Wizkid\",\"indices\":[134,141]},{\"text\":\"helicopter\",\"indices\":[142,153]},{\"text\":\"BBNajiaS7\",\"indices\":[154,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554806097223028736,\"id_str\":\"1554806097223028736\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"url\":\"https:\\/\\/t.co\\/zhcpeyoRtP\",\"display_url\":\"pic.twitter.com\\/zhcpeyoRtP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554806099894747138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"835\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"Solana\",\"indices\":[140,147]},{\"text\":\"BBNaijaS7\",\"indices\":[148,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0BiTIgaSYO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\",\"display_url\":\"twitter.com\\/YOUNGPGTECH\\/st\\u2026\",\"indices\":[159,182]}]},\"836\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[257,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"837\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[80,94]},{\"text\":\"Aristv\",\"indices\":[96,103]},{\"text\":\"Ronaldo\",\"indices\":[105,113]},{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554804189703847939,\"id_str\":\"1554804189703847939\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"url\":\"https:\\/\\/t.co\\/DbuVmtLuX0\",\"display_url\":\"pic.twitter.com\\/DbuVmtLuX0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1880Tgold\\/status\\/1554804475784740865\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"838\":{\"hashtags\":[{\"text\":\"Ukraine\",\"indices\":[74,82]},{\"text\":\"UkraineRussiaWar\",\"indices\":[83,100]},{\"text\":\"UkraineWillWin\",\"indices\":[101,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[125,133]},{\"text\":\"Solana\",\"indices\":[134,141]},{\"text\":\"CloserWithDonBelle\",\"indices\":[142,161]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[162,185]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[186,207]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KyivIndependent\",\"name\":\"The Kyiv Independent\",\"id\":1462548977367359490,\"id_str\":\"1462548977367359490\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554804166379405312,\"id_str\":\"1554804166379405312\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"url\":\"https:\\/\\/t.co\\/DLkbtWYTnR\",\"display_url\":\"pic.twitter.com\\/DLkbtWYTnR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fagman01\\/status\\/1554804208410497028\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"839\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"Pelosi\",\"indices\":[207,214]},{\"text\":\"china\",\"indices\":[215,221]},{\"text\":\"WWIII\",\"indices\":[222,228]},{\"text\":\"Scholarships\",\"indices\":[229,242]},{\"text\":\"UK\",\"indices\":[243,246]},{\"text\":\"Cheveningscholarship\",\"indices\":[247,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TxY6NW7rGy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\",\"display_url\":\"twitter.com\\/CheveningFCDO\\/\\u2026\",\"indices\":[269,292]}]},\"840\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Solana\",\"indices\":[95,102]},{\"text\":\"CloserWithDonBelle\",\"indices\":[103,122]},{\"text\":\"Wizkid\",\"indices\":[123,130]},{\"text\":\"Batgirl\",\"indices\":[131,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[34,44]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[45,54]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[55,70]},{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[71,84]}],\"urls\":[],\"media\":[{\"id\":1554801684659986434,\"id_str\":\"1554801684659986434\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"url\":\"https:\\/\\/t.co\\/9RTAmNicmh\",\"display_url\":\"pic.twitter.com\\/9RTAmNicmh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Slimtalker2\\/status\\/1554801857461207042\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"841\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[41,48]},{\"text\":\"CloserWithDonBelle\",\"indices\":[49,68]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[69,77]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[78,101]},{\"text\":\"Ukraine\",\"indices\":[102,110]},{\"text\":\"Batgirl\",\"indices\":[111,119]},{\"text\":\"Wizkid\",\"indices\":[120,127]},{\"text\":\"BibleBuild\",\"indices\":[128,139]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[140,158]},{\"text\":\"helicopter\",\"indices\":[159,170]},{\"text\":\"BlueJays\",\"indices\":[171,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"sabinus\",\"indices\":[189,197]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[198,205]},{\"text\":\"Italy\",\"indices\":[206,212]},{\"text\":\"ChrisBrown\",\"indices\":[213,224]},{\"text\":\"Trending\",\"indices\":[225,234]},{\"text\":\"TREASUREinManila\",\"indices\":[235,252]},{\"text\":\"TREASURE\",\"indices\":[253,262]},{\"text\":\"CFC\",\"indices\":[263,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554801195738439681,\"id_str\":\"1554801195738439681\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"url\":\"https:\\/\\/t.co\\/o6BiiEBYiS\",\"display_url\":\"pic.twitter.com\\/o6BiiEBYiS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554801255620530179\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"842\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[37,45]},{\"text\":\"Solana\",\"indices\":[46,53]},{\"text\":\"CloserWithDonBelle\",\"indices\":[54,73]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[74,97]},{\"text\":\"sabinus\",\"indices\":[98,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554800794024697857,\"id_str\":\"1554800794024697857\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"url\":\"https:\\/\\/t.co\\/icrt1AKjYF\",\"display_url\":\"pic.twitter.com\\/icrt1AKjYF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vintagebraidwig\\/status\\/1554800801729724418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"}}}]},\"843\":{\"hashtags\":[{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[30,53]},{\"text\":\"businessopportunityprevi\",\"indices\":[54,79]},{\"text\":\"bookaholics\",\"indices\":[80,92]},{\"text\":\"celebrityfitnessindonesia\",\"indices\":[93,119]},{\"text\":\"bookaddiction\",\"indices\":[120,134]},{\"text\":\"bookaccount\",\"indices\":[135,147]},{\"text\":\"photoofthedaygallery\",\"indices\":[148,169]},{\"text\":\"businesswomanlife\",\"indices\":[170,188]},{\"text\":\"bookaddicted\",\"indices\":[189,202]},{\"text\":\"celebrityfashion\",\"indices\":[203,220]},{\"text\":\"photooftheday\",\"indices\":[221,235]},{\"text\":\"bookalicious\",\"indices\":[238,251]},{\"text\":\"bookaesthetic\",\"indices\":[252,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554800216875966466,\"id_str\":\"1554800216875966466\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"url\":\"https:\\/\\/t.co\\/UZZgqgILDK\",\"display_url\":\"pic.twitter.com\\/UZZgqgILDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554800267329159170\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"844\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[22,29]},{\"text\":\"mummydollaz\",\"indices\":[31,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554799794090016770,\"id_str\":\"1554799794090016770\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"url\":\"https:\\/\\/t.co\\/EW1947qUVk\",\"display_url\":\"pic.twitter.com\\/EW1947qUVk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gerard33720673\\/status\\/1554799845730390018\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":324,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"}}}]},\"845\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"samomatseye\",\"indices\":[216,228]},{\"text\":\"Ronaldo\",\"indices\":[229,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554798709073911809,\"id_str\":\"1554798709073911809\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"url\":\"https:\\/\\/t.co\\/LkMKDvqJve\",\"display_url\":\"pic.twitter.com\\/LkMKDvqJve\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1554798804939206656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"846\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[250,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554797955626024960,\"id_str\":\"1554797955626024960\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cGChk2NcVy\",\"display_url\":\"pic.twitter.com\\/cGChk2NcVy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554798185935261696\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":429,\"resize\":\"fit\"},\"large\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"}}}]},\"847\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"sabinus\",\"indices\":[98,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"848\":{\"hashtags\":[{\"text\":\"glowhub\",\"indices\":[114,122]},{\"text\":\"gd\",\"indices\":[123,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"branding\",\"indices\":[135,144]},{\"text\":\"photographer\",\"indices\":[145,158]},{\"text\":\"CloserWithDonBelle\",\"indices\":[159,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554797618454302743,\"id_str\":\"1554797618454302743\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"849\":{\"hashtags\":[{\"text\":\"MarvinInu\",\"indices\":[26,36]},{\"text\":\"MarvinInu\",\"indices\":[91,101]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"helicopter\",\"indices\":[122,133]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[134,141]},{\"text\":\"tuesdayvibe\",\"indices\":[142,154]},{\"text\":\"Bitcoin\",\"indices\":[155,163]},{\"text\":\"altcoin\",\"indices\":[165,173]},{\"text\":\"CloserWithDonBelle\",\"indices\":[174,193]},{\"text\":\"BNB\",\"indices\":[194,198]},{\"text\":\"sabinus\",\"indices\":[199,207]},{\"text\":\"Batgirl\",\"indices\":[208,216]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[50,57]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[102,113]}],\"urls\":[],\"media\":[{\"id\":1554796946602299393,\"id_str\":\"1554796946602299393\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"url\":\"https:\\/\\/t.co\\/nSVh0YDIcv\",\"display_url\":\"pic.twitter.com\\/nSVh0YDIcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554796964734189569\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"850\":{\"hashtags\":[{\"text\":\"OneChina\",\"indices\":[194,203]},{\"text\":\"OneChinaPolicy\",\"indices\":[205,220]},{\"text\":\"OneChinaPrinciple\",\"indices\":[222,240]},{\"text\":\"Taiwanchina\",\"indices\":[242,254]},{\"text\":\"ChinaTaiwan\",\"indices\":[256,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"851\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[142,156]},{\"text\":\"benincitymall\",\"indices\":[157,171]},{\"text\":\"BBNajiaS7\",\"indices\":[172,182]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554796541466009601,\"id_str\":\"1554796541466009601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"852\":{\"hashtags\":[{\"text\":\"StarGirl\",\"indices\":[51,60]},{\"text\":\"starGirl\",\"indices\":[87,96]},{\"text\":\"wizkid\",\"indices\":[97,104]},{\"text\":\"Solana\",\"indices\":[105,112]},{\"text\":\"BBNaijaSeason7\",\"indices\":[113,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"BibleBuild\",\"indices\":[137,148]},{\"text\":\"helicopter\",\"indices\":[149,160]},{\"text\":\"BlueJays\",\"indices\":[161,170]},{\"text\":\"oesym\",\"indices\":[171,177]},{\"text\":\"wednesdaythought\",\"indices\":[178,195]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[196,218]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ugoccie\",\"name\":\"UGOCHI\",\"id\":1624713733,\"id_str\":\"1624713733\",\"indices\":[71,79]}],\"urls\":[],\"media\":[{\"id\":1554796177798975488,\"id_str\":\"1554796177798975488\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"url\":\"https:\\/\\/t.co\\/rfTY04O9Pw\",\"display_url\":\"pic.twitter.com\\/rfTY04O9Pw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554796314440916992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"853\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]},{\"text\":\"trending\",\"indices\":[23,32]},{\"text\":\"EndSARS\",\"indices\":[33,41]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554795574276378624,\"id_str\":\"1554795574276378624\",\"indices\":[42,65],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"url\":\"https:\\/\\/t.co\\/pQkRLWUnmy\",\"display_url\":\"pic.twitter.com\\/pQkRLWUnmy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lumy01609368\\/status\\/1554796164574285829\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"854\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"photooftheday\",\"indices\":[43,57]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"larrieoluks\",\"name\":\"LarrieOluksCreative\",\"id\":3639778217,\"id_str\":\"3639778217\",\"indices\":[20,32]}],\"urls\":[],\"media\":[{\"id\":1554795275495133184,\"id_str\":\"1554795275495133184\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"855\":{\"hashtags\":[{\"text\":\"kante\",\"indices\":[99,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Cucurella\",\"indices\":[114,124]},{\"text\":\"GodAbeg\",\"indices\":[125,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DeJongFrenkie21\",\"name\":\"Frenkie de Jong\",\"id\":1132994898511179776,\"id_str\":\"1132994898511179776\",\"indices\":[20,36]},{\"screen_name\":\"cucurella3\",\"name\":\"Marc Cucurella\",\"id\":820280083,\"id_str\":\"820280083\",\"indices\":[38,49]}],\"urls\":[],\"media\":[{\"id\":1554794709524090881,\"id_str\":\"1554794709524090881\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8La4uS2TFA\",\"display_url\":\"pic.twitter.com\\/8La4uS2TFA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanul_max\\/status\\/1554794720462766080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1031,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1445,\"resize\":\"fit\"},\"small\":{\"w\":584,\"h\":680,\"resize\":\"fit\"}}}]},\"856\":{\"hashtags\":[{\"text\":\"ChelseaFC\",\"indices\":[20,30]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"ASUU\",\"indices\":[89,94]},{\"text\":\"NnamdiKanu\",\"indices\":[95,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"857\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[220,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarsSolar__\",\"name\":\"Enoch Nwokike\",\"id\":2280011326,\"id_str\":\"2280011326\",\"indices\":[94,106]}],\"urls\":[],\"media\":[{\"id\":1554793885666344960,\"id_str\":\"1554793885666344960\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"858\":{\"hashtags\":[{\"text\":\"nicert\",\"indices\":[103,110]},{\"text\":\"nicertgroup\",\"indices\":[111,123]},{\"text\":\"wenainitiative\",\"indices\":[125,140]},{\"text\":\"fmard\",\"indices\":[141,147]},{\"text\":\"Agriculture\",\"indices\":[148,160]},{\"text\":\"Export\",\"indices\":[161,168]},{\"text\":\"womenbusinesses\",\"indices\":[169,185]},{\"text\":\"Taiwan\",\"indices\":[186,193]},{\"text\":\"davidhundeyin\",\"indices\":[194,208]},{\"text\":\"samomatseye\",\"indices\":[209,221]},{\"text\":\"Tinubu\",\"indices\":[222,229]},{\"text\":\"arisetv\",\"indices\":[230,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554793397369638913,\"id_str\":\"1554793397369638913\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"url\":\"https:\\/\\/t.co\\/S3lEOp6zY1\",\"display_url\":\"pic.twitter.com\\/S3lEOp6zY1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1554793400167272450\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"}}}]},\"859\":{\"hashtags\":[{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[59,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554792433883521025,\"id_str\":\"1554792433883521025\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554792433883521025\\/pu\\/img\\/1D0wxC4h62Wyolul.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554792433883521025\\/pu\\/img\\/1D0wxC4h62Wyolul.jpg\",\"url\":\"https:\\/\\/t.co\\/9AL6ZpIaGF\",\"display_url\":\"pic.twitter.com\\/9AL6ZpIaGF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554793282881847297\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"860\":{\"hashtags\":[{\"text\":\"NaijaBet\",\"indices\":[203,212]},{\"text\":\"Taiwan\",\"indices\":[213,220]},{\"text\":\"PremierLeague\",\"indices\":[221,235]},{\"text\":\"ChelseaFC\",\"indices\":[236,246]},{\"text\":\"ManCity\",\"indices\":[247,255]},{\"text\":\"Spurs\",\"indices\":[256,262]},{\"text\":\"ManUnited\",\"indices\":[263,273]},{\"text\":\"Arsenal\",\"indices\":[274,282]},{\"text\":\"Liverpool\",\"indices\":[283,293]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554792927439855616,\"id_str\":\"1554792927439855616\",\"indices\":[294,317],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"url\":\"https:\\/\\/t.co\\/Vz160FKf2U\",\"display_url\":\"pic.twitter.com\\/Vz160FKf2U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554792947694112770\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"}}}]},\"861\":{\"hashtags\":[{\"text\":\"kwankwaso\",\"indices\":[119,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"davidhundeyin\",\"indices\":[138,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"862\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[73,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"863\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"Phyna\",\"indices\":[132,138]},{\"text\":\"Mama\",\"indices\":[139,144]},{\"text\":\"Daniella\",\"indices\":[145,154]},{\"text\":\"BBNajiaS7\",\"indices\":[155,165]},{\"text\":\"SheggzFC\",\"indices\":[166,175]},{\"text\":\"JackieChan\",\"indices\":[176,187]},{\"text\":\"Jaruma\",\"indices\":[188,195]},{\"text\":\"Kalid\",\"indices\":[196,202]},{\"text\":\"RCCGConvention\",\"indices\":[203,218]},{\"text\":\"RCTID\",\"indices\":[219,225]},{\"text\":\"Solana\",\"indices\":[226,233]},{\"text\":\"helicopter\",\"indices\":[234,245]},{\"text\":\"PokemonScarletViolet\",\"indices\":[246,267]},{\"text\":\"BibleBuild\",\"indices\":[268,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790943148199937,\"id_str\":\"1554790943148199937\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"864\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Trending\",\"indices\":[69,78]},{\"text\":\"Trending\",\"indices\":[79,88]},{\"text\":\"explorepage\",\"indices\":[89,101]},{\"text\":\"TrendingNow\",\"indices\":[102,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790640617226240,\"id_str\":\"1554790640617226240\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"865\":{\"hashtags\":[{\"text\":\"expression\",\"indices\":[62,73]},{\"text\":\"hifyqoutes\",\"indices\":[75,86]},{\"text\":\"lovequotes\",\"indices\":[87,98]},{\"text\":\"BeninCityMall\",\"indices\":[101,115]},{\"text\":\"BBNajiaS7\",\"indices\":[116,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"Solana\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790528708902913,\"id_str\":\"1554790528708902913\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"url\":\"https:\\/\\/t.co\\/zsA7jZ4Y9U\",\"display_url\":\"pic.twitter.com\\/zsA7jZ4Y9U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hify_2\\/status\\/1554790540369174529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"866\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"helicopter\",\"indices\":[213,224]},{\"text\":\"BBNajiaS7\",\"indices\":[225,235]},{\"text\":\"BBN\",\"indices\":[236,240]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UKRinNGA\",\"name\":\"UKR Emb in Nigeria\",\"id\":3130729995,\"id_str\":\"3130729995\",\"indices\":[193,202]}],\"urls\":[]},\"867\":{\"hashtags\":[{\"text\":\"BNB\",\"indices\":[113,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"BBNajiaS7\",\"indices\":[126,136]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[137,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"868\":{\"hashtags\":[{\"text\":\"Taipei\",\"indices\":[24,31]},{\"text\":\"PLA\",\"indices\":[52,56]},{\"text\":\"Taiwan\",\"indices\":[67,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"869\":{\"hashtags\":[{\"text\":\"Hotjist\",\"indices\":[69,77]},{\"text\":\"Hotjistnaija\",\"indices\":[78,91]},{\"text\":\"Kidnappers\",\"indices\":[92,103]},{\"text\":\"Protest\",\"indices\":[104,112]},{\"text\":\"Lautech\",\"indices\":[113,121]},{\"text\":\"Obituary\",\"indices\":[124,133]},{\"text\":\"Ronaldo\",\"indices\":[135,143]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"Emily\",\"indices\":[155,161]},{\"text\":\"BBNaijaS7\",\"indices\":[163,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jefhbd4wr1\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/protest-as-kidnappers-kill-lautech-student\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/pro\\u2026\",\"indices\":[44,67]}]},\"870\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"PeterObi4President2023\",\"indices\":[53,76]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[78,103]},{\"text\":\"PeterObi\",\"indices\":[104,113]},{\"text\":\"PeterObi2023\",\"indices\":[114,127]},{\"text\":\"PETERMJ\",\"indices\":[128,136]},{\"text\":\"dril\",\"indices\":[137,142]},{\"text\":\"rap\",\"indices\":[143,147]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Apeteofafrika\",\"name\":\"BIG AP \\ud83e\\udd85\\ud83e\\udd85\",\"id\":1034341353403113472,\"id_str\":\"1034341353403113472\",\"indices\":[149,163]}],\"urls\":[],\"media\":[{\"id\":1554789348444356610,\"id_str\":\"1554789348444356610\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"url\":\"https:\\/\\/t.co\\/mYK0GhyoiC\",\"display_url\":\"pic.twitter.com\\/mYK0GhyoiC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/breeze_okoye\\/status\\/1554789438236069888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"871\":{\"hashtags\":[{\"text\":\"hotjist\",\"indices\":[99,107]},{\"text\":\"Nigeria\",\"indices\":[108,116]},{\"text\":\"IGP\",\"indices\":[117,121]},{\"text\":\"Insecurity\",\"indices\":[122,133]},{\"text\":\"BBNaijaS7\",\"indices\":[136,146]},{\"text\":\"Obituary\",\"indices\":[148,157]},{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Ronldo\",\"indices\":[168,175]},{\"text\":\"Emily\",\"indices\":[177,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V4h2C5viZS\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/news-update-igp-meets-cps-others-over-rising-insecurity-in-the-country\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/new\\u2026\",\"indices\":[74,97]}]},\"872\":{\"hashtags\":[{\"text\":\"gafexianart\",\"indices\":[94,106]},{\"text\":\"gafexianzone\",\"indices\":[107,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"Solana\",\"indices\":[129,136]},{\"text\":\"Chelsea\",\"indices\":[137,145]},{\"text\":\"ChelseaFC\",\"indices\":[146,156]},{\"text\":\"biro\",\"indices\":[202,207]},{\"text\":\"explorepage\",\"indices\":[208,220]},{\"text\":\"explore\",\"indices\":[221,229]},{\"text\":\"Explorer\",\"indices\":[230,239]},{\"text\":\"ExploreUganda\",\"indices\":[240,254]},{\"text\":\"artist\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"samkerr1\",\"name\":\"Sam Kerr\",\"id\":320739724,\"id_str\":\"320739724\",\"indices\":[35,44]},{\"screen_name\":\"ChelseaFCW\",\"name\":\"Chelsea FC Women\",\"id\":269713045,\"id_str\":\"269713045\",\"indices\":[157,168]},{\"screen_name\":\"AbsoluteChelsea\",\"name\":\"Absolute Chelsea\",\"id\":4504718963,\"id_str\":\"4504718963\",\"indices\":[169,185]},{\"screen_name\":\"ChelseaFCinUSA\",\"name\":\"Chelsea FC USA\",\"id\":996031284420935680,\"id_str\":\"996031284420935680\",\"indices\":[186,201]},{\"screen_name\":\"ChelseaWomenSG\",\"name\":\"Chelsea Women Supporters Group\",\"id\":3102692859,\"id_str\":\"3102692859\",\"indices\":[255,270]}],\"urls\":[],\"media\":[{\"id\":1554788871627587585,\"id_str\":\"1554788871627587585\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"url\":\"https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"display_url\":\"pic.twitter.com\\/ZRsEBIH9Rb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554788988187283456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1163,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":659,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1984,\"h\":2048,\"resize\":\"fit\"}}}]},\"873\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[124,135]},{\"text\":\"Solana\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"China\",\"indices\":[152,158]},{\"text\":\"ASUUstrike\",\"indices\":[159,170]},{\"text\":\"samomatseye\",\"indices\":[171,183]},{\"text\":\"Finance\",\"indices\":[184,192]},{\"text\":\"Selfdevelopment\",\"indices\":[193,209]},{\"text\":\"cnc\",\"indices\":[210,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"874\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Solana\",\"indices\":[146,153]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[154,162]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[163,186]},{\"text\":\"PokemonScarletViolet\",\"indices\":[187,208]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[209,216]},{\"text\":\"BlueJays\",\"indices\":[217,226]},{\"text\":\"partytime\",\"indices\":[227,237]},{\"text\":\"jbankz\",\"indices\":[238,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554788201600016387,\"id_str\":\"1554788201600016387\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"url\":\"https:\\/\\/t.co\\/qyHhxvm1w1\",\"display_url\":\"pic.twitter.com\\/qyHhxvm1w1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554788274752847874\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"875\":{\"hashtags\":[{\"text\":\"Foodie\",\"indices\":[15,22]},{\"text\":\"FoodieBeauty\",\"indices\":[23,36]},{\"text\":\"Taiwan\",\"indices\":[37,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554788030208249862,\"id_str\":\"1554788030208249862\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"url\":\"https:\\/\\/t.co\\/6Sm8j0zWgv\",\"display_url\":\"pic.twitter.com\\/6Sm8j0zWgv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ugondabai\\/status\\/1554788088794292230\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"876\":{\"hashtags\":[{\"text\":\"Btc\",\"indices\":[0,4]},{\"text\":\"Crypto\",\"indices\":[101,108]},{\"text\":\"NFTCommunity\",\"indices\":[109,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"TradeDeadline\",\"indices\":[131,145]},{\"text\":\"trade\",\"indices\":[146,152]},{\"text\":\"stocks\",\"indices\":[153,160]},{\"text\":\"charts\",\"indices\":[161,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3TZ2RkalOS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553667488369500161\",\"display_url\":\"twitter.com\\/drickempire\\/st\\u2026\",\"indices\":[169,192]}],\"media\":[{\"id\":1554786277551226881,\"id_str\":\"1554786277551226881\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"url\":\"https:\\/\\/t.co\\/LEK6lTXB14\",\"display_url\":\"pic.twitter.com\\/LEK6lTXB14\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554787860460494848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"877\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"ASUU\",\"indices\":[99,104]},{\"text\":\"AriseTV\",\"indices\":[105,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"878\":{\"hashtags\":[{\"text\":\"ibedc\",\"indices\":[159,165]},{\"text\":\"DistributingDarkness\",\"indices\":[166,187]},{\"text\":\"wednesdaythought\",\"indices\":[231,248]},{\"text\":\"Solana\",\"indices\":[249,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"helicopter\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[53,62]},{\"screen_name\":\"via_iure\",\"name\":\"Via iure\",\"id\":1352637558539354117,\"id_str\":\"1352637558539354117\",\"indices\":[188,197]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[198,208]},{\"screen_name\":\"fccpcnigeria\",\"name\":\"FCCPC Nigeria\",\"id\":1229437064,\"id_str\":\"1229437064\",\"indices\":[209,222]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[223,230]}],\"urls\":[]},\"879\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"Knust\",\"indices\":[96,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27lPlh1K4s\",\"expanded_url\":\"https:\\/\\/cityscoopgh.com\\/moses-desire-kouyo-writes-ponderings-of-a-king\\/\",\"display_url\":\"cityscoopgh.com\\/moses-desire-k\\u2026\",\"indices\":[50,73]}]},\"880\":{\"hashtags\":[{\"text\":\"EmmanuelUmoh\",\"indices\":[44,57]},{\"text\":\"Pelosi\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VEa4WP9DO0\",\"expanded_url\":\"http:\\/\\/instagram.com\\/emmanuelumohjr\",\"display_url\":\"instagram.com\\/emmanuelumohjr\",\"indices\":[19,42]}],\"media\":[{\"id\":1554786935746560001,\"id_str\":\"1554786935746560001\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"url\":\"https:\\/\\/t.co\\/XnWs6XKBaB\",\"display_url\":\"pic.twitter.com\\/XnWs6XKBaB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gifshizzle\\/status\\/1554786948564353026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"small\":{\"w\":592,\"h\":680,\"resize\":\"fit\"}}}]},\"881\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"bpa\",\"indices\":[64,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"882\":{\"hashtags\":[{\"text\":\"CommonwealthGames2022\",\"indices\":[140,162]},{\"text\":\"Taiwan\",\"indices\":[163,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554785710649090048,\"id_str\":\"1554785710649090048\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"url\":\"https:\\/\\/t.co\\/Rb6M4G9bfV\",\"display_url\":\"pic.twitter.com\\/Rb6M4G9bfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tinubufrontier\\/status\\/1554785715841646592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"883\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[59,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"PokemonScarletViolet\",\"indices\":[75,96]},{\"text\":\"BibleBuild\",\"indices\":[97,108]},{\"text\":\"helicopter\",\"indices\":[109,120]},{\"text\":\"BlueJays\",\"indices\":[121,130]},{\"text\":\"oesym\",\"indices\":[131,137]},{\"text\":\"Bbnaija\",\"indices\":[138,146]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nnheadlines\",\"name\":\"#BBNAIJA #BreakingNews\",\"id\":939476737628524544,\"id_str\":\"939476737628524544\",\"indices\":[16,28]}],\"urls\":[]},\"884\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[180,187]},{\"text\":\"btc\",\"indices\":[188,192]},{\"text\":\"binance\",\"indices\":[193,201]},{\"text\":\"Taiwan\",\"indices\":[202,209]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rovercrc\",\"name\":\"Crypto Rover\",\"id\":1353384573435056128,\"id_str\":\"1353384573435056128\",\"indices\":[210,219]},{\"screen_name\":\"MMCrypto\",\"name\":\"MMCrypto\",\"id\":904700529988820992,\"id_str\":\"904700529988820992\",\"indices\":[220,229]},{\"screen_name\":\"CrypToomas\",\"name\":\"CrypTomas\",\"id\":1501264217239924750,\"id_str\":\"1501264217239924750\",\"indices\":[230,241]},{\"screen_name\":\"elonmusk\",\"name\":\"Elon Musk\",\"id\":44196397,\"id_str\":\"44196397\",\"indices\":[242,251]},{\"screen_name\":\"StonksReddit\",\"name\":\"Stonks Trading \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\ude80\",\"id\":1354546688967454725,\"id_str\":\"1354546688967454725\",\"indices\":[252,265]}],\"urls\":[],\"media\":[{\"id\":1554785099077517314,\"id_str\":\"1554785099077517314\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"url\":\"https:\\/\\/t.co\\/2VAX1kKY7q\",\"display_url\":\"pic.twitter.com\\/2VAX1kKY7q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BlackdiamondBLD\\/status\\/1554785109202665476\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":433,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1241,\"h\":1949,\"resize\":\"fit\"}}}]},\"885\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"gamingnationxznn\",\"indices\":[134,151]},{\"text\":\"August2022\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gamicguild\",\"name\":\"Gamic Guild\",\"id\":1376243370729816065,\"id_str\":\"1376243370729816065\",\"indices\":[76,87]}],\"urls\":[],\"media\":[{\"id\":1554784568976211977,\"id_str\":\"1554784568976211977\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"url\":\"https:\\/\\/t.co\\/uMhwIVcM6q\",\"display_url\":\"pic.twitter.com\\/uMhwIVcM6q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lastborn_jess\\/status\\/1554784847402598401\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":400,\"resize\":\"fit\"}}}]},\"886\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"Pionners\",\"indices\":[177,186]},{\"text\":\"Pinetwork\",\"indices\":[187,197]},{\"text\":\"sabinus\",\"indices\":[198,206]},{\"text\":\"cryptocurrency\",\"indices\":[207,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[16,27]},{\"screen_name\":\"nkokkalis\",\"name\":\"Nicolas Kokkalis\",\"id\":16536129,\"id_str\":\"16536129\",\"indices\":[136,146]}],\"urls\":[],\"media\":[{\"id\":1554784146966421507,\"id_str\":\"1554784146966421507\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"url\":\"https:\\/\\/t.co\\/E9xunsffM1\",\"display_url\":\"pic.twitter.com\\/E9xunsffM1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1554784157557051392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"887\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[142,156]},{\"text\":\"benincitymall\",\"indices\":[157,171]},{\"text\":\"BBNajiaS7\",\"indices\":[172,182]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554782414433558529,\"id_str\":\"1554782414433558529\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"888\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554783590306701312,\"id_str\":\"1554783590306701312\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"url\":\"https:\\/\\/t.co\\/ncKzoU40Ie\",\"display_url\":\"pic.twitter.com\\/ncKzoU40Ie\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Uma_zum\\/status\\/1554783617787875334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":703,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1001,\"h\":1709,\"resize\":\"fit\"},\"small\":{\"w\":398,\"h\":680,\"resize\":\"fit\"}}}]},\"889\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"China\",\"indices\":[6,12]},{\"text\":\"NancyPelosi\",\"indices\":[13,25]},{\"text\":\"Taiwan\",\"indices\":[26,33]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7zorY8BGJn\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SVzM6n\",\"display_url\":\"dlvr.it\\/SVzM6n\",\"indices\":[101,124]}]},\"890\":{\"hashtags\":[{\"text\":\"GodAbeg\",\"indices\":[31,39]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"China\",\"indices\":[49,55]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Solana\",\"indices\":[64,71]},{\"text\":\"sabinus\",\"indices\":[72,80]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[81,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554783301650587649,\"id_str\":\"1554783301650587649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"url\":\"https:\\/\\/t.co\\/Flwl4VS17Y\",\"display_url\":\"pic.twitter.com\\/Flwl4VS17Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Priceless002\\/status\\/1554783305131753472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":622,\"resize\":\"fit\"}}}]},\"891\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[60,64]},{\"text\":\"artistontwittter\",\"indices\":[65,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554782545367240707,\"id_str\":\"1554782545367240707\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"url\":\"https:\\/\\/t.co\\/5H5czNmAdA\",\"display_url\":\"pic.twitter.com\\/5H5czNmAdA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StEvIe_Alo\\/status\\/1554782552447139840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"892\":{\"hashtags\":[{\"text\":\"Wizkidfc\",\"indices\":[15,24]},{\"text\":\"davido\",\"indices\":[88,95]},{\"text\":\"spyro\",\"indices\":[107,113]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[144,152]},{\"text\":\"Wizkid\",\"indices\":[153,160]},{\"text\":\"BBNaija\",\"indices\":[161,169]},{\"text\":\"BBNajiaS7\",\"indices\":[170,180]},{\"text\":\"Cubana\",\"indices\":[181,188]},{\"text\":\"JARUMA\",\"indices\":[189,196]},{\"text\":\"Deji\",\"indices\":[197,202]},{\"text\":\"bread\",\"indices\":[203,209]},{\"text\":\"CardiB\",\"indices\":[210,217]},{\"text\":\"Tinubu\",\"indices\":[218,225]},{\"text\":\"Dubai\",\"indices\":[226,232]},{\"text\":\"Daniella\",\"indices\":[233,242]},{\"text\":\"NnamdiKanu\",\"indices\":[243,254]},{\"text\":\"ASUU\",\"indices\":[255,260]},{\"text\":\"Taiwan\",\"indices\":[261,268]},{\"text\":\"TAG\",\"indices\":[269,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554782302357667842,\"id_str\":\"1554782302357667842\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"url\":\"https:\\/\\/t.co\\/OBs0ZqYaLT\",\"display_url\":\"pic.twitter.com\\/OBs0ZqYaLT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554782489037742083\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"893\":{\"hashtags\":[{\"text\":\"ronaldo\",\"indices\":[40,48]},{\"text\":\"Europa\",\"indices\":[49,56]},{\"text\":\"PremierLeague\",\"indices\":[58,72]},{\"text\":\"Taiwan\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EuropaLeague\",\"name\":\"UEFA Europa League\",\"id\":789605024,\"id_str\":\"789605024\",\"indices\":[0,13]},{\"screen_name\":\"Cristiano\",\"name\":\"Cristiano Ronaldo\",\"id\":155659213,\"id_str\":\"155659213\",\"indices\":[23,33]}],\"urls\":[],\"media\":[{\"id\":1554782092583641088,\"id_str\":\"1554782092583641088\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"url\":\"https:\\/\\/t.co\\/UMTv580EMA\",\"display_url\":\"pic.twitter.com\\/UMTv580EMA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554782100057899013\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":514,\"resize\":\"fit\"}}}]},\"894\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"China\",\"indices\":[102,108]},{\"text\":\"Solana\",\"indices\":[109,116]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[117,140]},{\"text\":\"sabinus\",\"indices\":[141,149]},{\"text\":\"helicopter\",\"indices\":[150,161]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[162,169]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[170,188]},{\"text\":\"LoveIsland2022\",\"indices\":[189,204]},{\"text\":\"oesym\",\"indices\":[205,211]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[212,234]},{\"text\":\"UkraineRussiaWar\",\"indices\":[235,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cOFgBjIkqz\",\"expanded_url\":\"https:\\/\\/join.ueni.com\\/camp\\/refer-a-friend-us\\/?via=99r03\",\"display_url\":\"join.ueni.com\\/camp\\/refer-a-f\\u2026\",\"indices\":[53,76]}]},\"895\":{\"hashtags\":[{\"text\":\"grateful\",\"indices\":[94,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"sabinus\",\"indices\":[119,127]},{\"text\":\"Nowaydown\",\"indices\":[128,138]},{\"text\":\"BBNaija\",\"indices\":[139,147]},{\"text\":\"Machala\",\"indices\":[149,157]},{\"text\":\"Retweet\",\"indices\":[159,167]},{\"text\":\"rt\",\"indices\":[168,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554781809900195840,\"id_str\":\"1554781809900195840\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"url\":\"https:\\/\\/t.co\\/VgI8iwpoFf\",\"display_url\":\"pic.twitter.com\\/VgI8iwpoFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1554782000061583360\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"896\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[15,23]},{\"text\":\"China\",\"indices\":[70,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"OneChina\",\"indices\":[85,94]},{\"text\":\"USA\",\"indices\":[95,99]},{\"text\":\"House\",\"indices\":[101,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554778511885451265,\"id_str\":\"1554778511885451265\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOu0alXwAEjzL3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOu0alXwAEjzL3.jpg\",\"url\":\"https:\\/\\/t.co\\/aY5dPHwbQl\",\"display_url\":\"pic.twitter.com\\/aY5dPHwbQl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554781623891046400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"897\":{\"hashtags\":[{\"text\":\"SoundCloud\",\"indices\":[81,92]},{\"text\":\"NewMusic\",\"indices\":[153,162]},{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"sabinus\",\"indices\":[178,186]},{\"text\":\"LoveIsland2022\",\"indices\":[187,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/24snMEgLsL\",\"expanded_url\":\"https:\\/\\/soundcloud.app.goo.gl\\/nyE2E\",\"display_url\":\"soundcloud.app.goo.gl\\/nyE2E\",\"indices\":[93,116]}],\"media\":[{\"id\":1554780632630403075,\"id_str\":\"1554780632630403075\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"url\":\"https:\\/\\/t.co\\/MrqMUbG8P6\",\"display_url\":\"pic.twitter.com\\/MrqMUbG8P6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tipcy_Jaej\\/status\\/1554781577946742785\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":333,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":626,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":587,\"h\":1200,\"resize\":\"fit\"}}}]},\"898\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[14,21]},{\"text\":\"Pelosi\",\"indices\":[22,29]},{\"text\":\"China\",\"indices\":[30,36]},{\"text\":\"BigBrother\",\"indices\":[37,48]},{\"text\":\"bigbrother24\",\"indices\":[49,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/owN4hSgzG2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\",\"display_url\":\"twitter.com\\/loyins_onibag\\/\\u2026\",\"indices\":[63,86]}]},\"899\":{\"hashtags\":[{\"text\":\"firmusadvisory\",\"indices\":[84,99]},{\"text\":\"easystart\",\"indices\":[100,110]},{\"text\":\"InspiredToDeliverValue\",\"indices\":[111,134]},{\"text\":\"startnowstarteasy\",\"indices\":[135,153]},{\"text\":\"customersatisfaction\",\"indices\":[154,175]},{\"text\":\"businessgrowth\",\"indices\":[176,191]},{\"text\":\"socialmedia\",\"indices\":[192,204]},{\"text\":\"CitiCBS\",\"indices\":[205,213]},{\"text\":\"Pelosi\",\"indices\":[215,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/opNxEovc6q\",\"expanded_url\":\"https:\\/\\/us06web.zoom.us\\/webinar\\/register\\/WN_K8QqJC7WQB-Jmyq2JCRBRQ\",\"display_url\":\"us06web.zoom.us\\/webinar\\/regist\\u2026\",\"indices\":[59,82]}]},\"900\":{\"hashtags\":[{\"text\":\"20k\",\"indices\":[29,33]},{\"text\":\"benincitymall\",\"indices\":[143,157]},{\"text\":\"Pelosi\",\"indices\":[159,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[175,197]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DayoAmusa\",\"name\":\"DAYO AMUSA\",\"id\":148323720,\"id_str\":\"148323720\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554780148741939201,\"id_str\":\"1554780148741939201\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"url\":\"https:\\/\\/t.co\\/f2CdRuT9tm\",\"display_url\":\"pic.twitter.com\\/f2CdRuT9tm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Richmanonuche1\\/status\\/1554780161714917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":2048,\"resize\":\"fit\"}}}]},\"901\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[11,18]},{\"text\":\"helicopter\",\"indices\":[19,30]},{\"text\":\"Ukraine\",\"indices\":[31,39]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554779811347939329,\"id_str\":\"1554779811347939329\",\"indices\":[40,63],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"url\":\"https:\\/\\/t.co\\/EhISr3PULD\",\"display_url\":\"pic.twitter.com\\/EhISr3PULD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1554779819296137217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1494,\"resize\":\"fit\"},\"medium\":{\"w\":904,\"h\":1200,\"resize\":\"fit\"}}}]},\"902\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[99,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"sabinus\",\"indices\":[116,124]},{\"text\":\"LoveIsland2022\",\"indices\":[125,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"903\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[28,34]},{\"text\":\"Obituary\",\"indices\":[35,44]},{\"text\":\"BeninCityMall\",\"indices\":[45,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"samomatseye\",\"indices\":[68,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777905548378112,\"id_str\":\"1554777905548378112\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"url\":\"https:\\/\\/t.co\\/P62lLRP3fo\",\"display_url\":\"pic.twitter.com\\/P62lLRP3fo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itnewsnigeria1\\/status\\/1554778707788795906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"large\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":514,\"resize\":\"fit\"}}}]},\"904\":{\"hashtags\":[{\"text\":\"renticapartment\",\"indices\":[122,138]},{\"text\":\"lagosbusiness\",\"indices\":[139,153]},{\"text\":\"BBNaija\",\"indices\":[156,164]},{\"text\":\"BBNajia\",\"indices\":[169,177]},{\"text\":\"Pelosi\",\"indices\":[221,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554778637186072577,\"id_str\":\"1554778637186072577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"url\":\"https:\\/\\/t.co\\/HMeHrLovHg\",\"display_url\":\"pic.twitter.com\\/HMeHrLovHg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554778649164976129\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"905\":{\"hashtags\":[{\"text\":\"Enugu2023\",\"indices\":[156,166]},{\"text\":\"PeterObi\",\"indices\":[167,176]},{\"text\":\"wike\",\"indices\":[177,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IamAwesomeJosh\",\"name\":\"Agusiobo Joshua \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde6\\ud83c\\uddfa |The Brand Engineer\",\"id\":1042203823,\"id_str\":\"1042203823\",\"indices\":[193,208]},{\"screen_name\":\"ejykmykel1\",\"name\":\"Ejikeme\\ud83c\\udf0d\",\"id\":191928490,\"id_str\":\"191928490\",\"indices\":[209,220]},{\"screen_name\":\"julietkego\",\"name\":\"Juliet 'Kego | #FLOW #FinancialLiteracy4Women\",\"id\":382413245,\"id_str\":\"382413245\",\"indices\":[221,232]},{\"screen_name\":\"Chude__\",\"name\":\"Columbus\",\"id\":910572372410949632,\"id_str\":\"910572372410949632\",\"indices\":[233,241]},{\"screen_name\":\"flexzyltd\",\"name\":\"Alex Mbelu\",\"id\":444893959,\"id_str\":\"444893959\",\"indices\":[242,252]}],\"urls\":[]},\"906\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[84,92]},{\"text\":\"sabinus\",\"indices\":[93,101]},{\"text\":\"Pelosi\",\"indices\":[102,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554778202651910145,\"id_str\":\"1554778202651910145\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"url\":\"https:\\/\\/t.co\\/EiH8c1kCf0\",\"display_url\":\"pic.twitter.com\\/EiH8c1kCf0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778267999240193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"907\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"sabinus\",\"indices\":[78,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777988721410050,\"id_str\":\"1554777988721410050\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"url\":\"https:\\/\\/t.co\\/xCMNWCnUTt\",\"display_url\":\"pic.twitter.com\\/xCMNWCnUTt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778141675196417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"908\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"sabinus\",\"indices\":[78,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777735389761541,\"id_str\":\"1554777735389761541\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"url\":\"https:\\/\\/t.co\\/g2fU0tPcr9\",\"display_url\":\"pic.twitter.com\\/g2fU0tPcr9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778138995040256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"909\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"sabinus\",\"indices\":[78,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777988033613824,\"id_str\":\"1554777988033613824\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"url\":\"https:\\/\\/t.co\\/aBCGFemwUN\",\"display_url\":\"pic.twitter.com\\/aBCGFemwUN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778135379562496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"910\":{\"hashtags\":[{\"text\":\"wizkid\",\"indices\":[179,186]},{\"text\":\"OBIDIENTS\",\"indices\":[227,237]},{\"text\":\"helicopter\",\"indices\":[258,269]},{\"text\":\"Pelosi\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554778096087310337,\"id_str\":\"1554778096087310337\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"url\":\"https:\\/\\/t.co\\/7Bz4WI63Tr\",\"display_url\":\"pic.twitter.com\\/7Bz4WI63Tr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TAG_authorised\\/status\\/1554778101862879242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":963,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":903,\"h\":1200,\"resize\":\"fit\"}}}]},\"911\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[67,75]},{\"text\":\"sabinus\",\"indices\":[76,84]},{\"text\":\"Pelosi\",\"indices\":[85,92]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777583732105217,\"id_str\":\"1554777583732105217\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"url\":\"https:\\/\\/t.co\\/BH4bmjuQyh\",\"display_url\":\"pic.twitter.com\\/BH4bmjuQyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778051082436608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"912\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[129,139]},{\"text\":\"Machala\",\"indices\":[140,148]},{\"text\":\"Wizkidfc\",\"indices\":[149,158]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[159,167]},{\"text\":\"funnyvideos\",\"indices\":[168,180]},{\"text\":\"lucasdusky\",\"indices\":[181,192]},{\"text\":\"trendingvideos\",\"indices\":[193,208]},{\"text\":\"sabinus\",\"indices\":[209,217]},{\"text\":\"Taiwan\",\"indices\":[218,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]},{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[13,25]}],\"urls\":[],\"media\":[{\"id\":1554777430971351040,\"id_str\":\"1554777430971351040\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"url\":\"https:\\/\\/t.co\\/a4BmMkUray\",\"display_url\":\"pic.twitter.com\\/a4BmMkUray\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LukeKyauta\\/status\\/1554777567802040321\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}}}]},\"913\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[13,21]},{\"text\":\"China\",\"indices\":[92,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]},{\"text\":\"USA\",\"indices\":[107,111]},{\"text\":\"Pelosi\",\"indices\":[112,119]},{\"text\":\"OneChina\",\"indices\":[120,129]},{\"text\":\"House\",\"indices\":[130,136]},{\"text\":\"UnitedStates\",\"indices\":[137,150]},{\"text\":\"UnitedNations\",\"indices\":[151,165]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/d4Q6tD1tDW\",\"expanded_url\":\"https:\\/\\/www.mfa.gov.cn\\/eng\\/zxxx_662805\\/202208\\/t20220803_10732743.html\",\"display_url\":\"mfa.gov.cn\\/eng\\/zxxx_66280\\u2026\",\"indices\":[68,91]}],\"media\":[{\"id\":1554776975105040384,\"id_str\":\"1554776975105040384\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOta9oXoAAwbv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOta9oXoAAwbv9.jpg\",\"url\":\"https:\\/\\/t.co\\/hmoegiq9xp\",\"display_url\":\"pic.twitter.com\\/hmoegiq9xp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554777563842633728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"914\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[27,36]},{\"text\":\"Pelosi\",\"indices\":[46,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554776088911437824,\"id_str\":\"1554776088911437824\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"url\":\"https:\\/\\/t.co\\/p3ARF0hJXT\",\"display_url\":\"pic.twitter.com\\/p3ARF0hJXT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/12_beatz\\/status\\/1554777432208588801\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"915\":{\"hashtags\":[{\"text\":\"racism\",\"indices\":[138,145]},{\"text\":\"realhousewivesofabuja\",\"indices\":[146,168]},{\"text\":\"ASUU\",\"indices\":[169,174]},{\"text\":\"Governor\",\"indices\":[175,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"RCCGConvention\",\"indices\":[193,208]},{\"text\":\"Ronaldo\",\"indices\":[209,217]},{\"text\":\"witcher\",\"indices\":[218,226]},{\"text\":\"JARUMA\",\"indices\":[227,234]},{\"text\":\"geralt\",\"indices\":[235,242]},{\"text\":\"Affiliates\",\"indices\":[243,254]},{\"text\":\"Pelo\",\"indices\":[255,260]},{\"text\":\"BeautyWithBrains\",\"indices\":[261,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777348091908096,\"id_str\":\"1554777348091908096\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"url\":\"https:\\/\\/t.co\\/oihYETkxg9\",\"display_url\":\"pic.twitter.com\\/oihYETkxg9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/daniel_orakwue\\/status\\/1554777354395951105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":575,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":609,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":609,\"resize\":\"fit\"}}}]},\"916\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uagVKfdbEO\",\"expanded_url\":\"https:\\/\\/investogist.com\\/breaking-u-s-speaker-pelosi-departs-taiwan-amid-chinese-threats-military-drills\\/\",\"display_url\":\"investogist.com\\/breaking-u-s-s\\u2026\",\"indices\":[82,105]}]},\"917\":{\"hashtags\":[{\"text\":\"Attention\",\"indices\":[35,45]},{\"text\":\"Knust\",\"indices\":[93,99]},{\"text\":\"Taiwan\",\"indices\":[220,227]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[228,251]},{\"text\":\"helicopter\",\"indices\":[252,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Swanskid_\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"indices\":[18,28]},{\"screen_name\":\"Swanskid_\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"indices\":[139,149]}],\"urls\":[],\"media\":[{\"id\":1554776655788490753,\"id_str\":\"1554776655788490753\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776655788490753\\/pu\\/img\\/BmT8lOLqJe2GdUQi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776655788490753\\/pu\\/img\\/BmT8lOLqJe2GdUQi.jpg\",\"url\":\"https:\\/\\/t.co\\/VH50Y4pAYn\",\"display_url\":\"pic.twitter.com\\/VH50Y4pAYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554777235554435072\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}}}]},\"918\":{\"hashtags\":[{\"text\":\"Big_Ivy\",\"indices\":[123,131]},{\"text\":\"ASUU\",\"indices\":[132,137]},{\"text\":\"Phyna_and_Amaka\",\"indices\":[138,154]},{\"text\":\"Big_Bella\",\"indices\":[155,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]},{\"text\":\"Daniella\",\"indices\":[174,183]},{\"text\":\"God_Abeg\",\"indices\":[184,193]},{\"text\":\"Osimhen\",\"indices\":[194,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LE8VV0jLMS\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JNA0lj\",\"display_url\":\"bit.ly\\/3JNA0lj\",\"indices\":[96,119]}],\"media\":[{\"id\":1554776151024877573,\"id_str\":\"1554776151024877573\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"url\":\"https:\\/\\/t.co\\/9wplK02TX4\",\"display_url\":\"pic.twitter.com\\/9wplK02TX4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amanda_malls\\/status\\/1554776611374989313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"919\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"Pelosi\",\"indices\":[178,185]},{\"text\":\"WebsiteDesign\",\"indices\":[187,201]},{\"text\":\"WebsiteBuilder\",\"indices\":[203,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554776490138550272,\"id_str\":\"1554776490138550272\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"url\":\"https:\\/\\/t.co\\/GoCuemQe8s\",\"display_url\":\"pic.twitter.com\\/GoCuemQe8s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sucdri\\/status\\/1554776497801629696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"920\":{\"hashtags\":[{\"text\":\"amazon\",\"indices\":[33,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"China\",\"indices\":[57,63]},{\"text\":\"Solana\",\"indices\":[64,71]},{\"text\":\"Amazon\",\"indices\":[72,79]},{\"text\":\"amazonsales\",\"indices\":[80,92]},{\"text\":\"shopifymarketing\",\"indices\":[93,110]},{\"text\":\"wears\",\"indices\":[111,117]},{\"text\":\"Ukraine\",\"indices\":[118,126]},{\"text\":\"shopifytips\",\"indices\":[127,139]},{\"text\":\"Shopify\",\"indices\":[140,148]},{\"text\":\"AmazonAffiliate\",\"indices\":[149,165]},{\"text\":\"affiliateprogram\",\"indices\":[166,183]},{\"text\":\"Affiliates\",\"indices\":[184,195]},{\"text\":\"affiliatemarketing\",\"indices\":[196,215]},{\"text\":\"shopifywebsite\",\"indices\":[216,231]},{\"text\":\"shopifydesign\",\"indices\":[232,246]},{\"text\":\"shopifyexpert\",\"indices\":[247,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fQRKX5Dt5Q\",\"expanded_url\":\"http:\\/\\/www.fiverr.com\\/memphis_deepay\",\"display_url\":\"fiverr.com\\/memphis_deepay\",\"indices\":[9,32]}]},\"921\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[165,187]},{\"text\":\"LoveIsland2022\",\"indices\":[189,204]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[206,221]},{\"text\":\"BBNaija\",\"indices\":[223,231]},{\"text\":\"Slaytheprincess\",\"indices\":[233,249]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MonalisNg\",\"name\":\"Monalis-ng\",\"id\":1553476310311247875,\"id_str\":\"1553476310311247875\",\"indices\":[117,127]}],\"urls\":[],\"media\":[{\"id\":1554775383412703232,\"id_str\":\"1554775383412703232\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"url\":\"https:\\/\\/t.co\\/eIFdhakjaV\",\"display_url\":\"pic.twitter.com\\/eIFdhakjaV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MonalisNg\\/status\\/1554775783595544576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"922\":{\"hashtags\":[{\"text\":\"RCCGConvention\",\"indices\":[197,212]},{\"text\":\"Pelosi\",\"indices\":[213,220]},{\"text\":\"BBNaija\",\"indices\":[221,229]},{\"text\":\"Taiwan\",\"indices\":[230,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554775721872089088,\"id_str\":\"1554775721872089088\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"url\":\"https:\\/\\/t.co\\/RNIQwboUkK\",\"display_url\":\"pic.twitter.com\\/RNIQwboUkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554775733179916290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"small\":{\"w\":609,\"h\":680,\"resize\":\"fit\"}}}]},\"923\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[79,87]},{\"text\":\"helicopter\",\"indices\":[88,99]},{\"text\":\"Ukraine\",\"indices\":[100,108]},{\"text\":\"Wizkid\",\"indices\":[109,116]},{\"text\":\"TrendingTopics\",\"indices\":[117,132]},{\"text\":\"Trending\",\"indices\":[133,142]},{\"text\":\"micheal_jackson\",\"indices\":[143,159]},{\"text\":\"Racism\",\"indices\":[160,167]},{\"text\":\"Burna\",\"indices\":[168,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"BBNaija\",\"indices\":[183,191]},{\"text\":\"BBNajiaS7\",\"indices\":[192,202]},{\"text\":\"Twitter\",\"indices\":[203,211]},{\"text\":\"matic\",\"indices\":[212,218]},{\"text\":\"matiasdelrio\",\"indices\":[219,232]},{\"text\":\"fashion\",\"indices\":[233,241]},{\"text\":\"LoveIsland2022\",\"indices\":[242,257]},{\"text\":\"music\",\"indices\":[258,264]},{\"text\":\"trendingmusic\",\"indices\":[265,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Skiibii\",\"name\":\"skiibii mayana\",\"id\":4472970994,\"id_str\":\"4472970994\",\"indices\":[35,43]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[52,59]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[60,68]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[69,78]}],\"urls\":[],\"media\":[{\"id\":1554775508704976896,\"id_str\":\"1554775508704976896\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"url\":\"https:\\/\\/t.co\\/64cx3wVqvf\",\"display_url\":\"pic.twitter.com\\/64cx3wVqvf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554775658554920960\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"924\":{\"hashtags\":[{\"text\":\"Attention\",\"indices\":[35,45]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"China\",\"indices\":[133,139]},{\"text\":\"Solana\",\"indices\":[140,147]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[148,171]},{\"text\":\"sabinus\",\"indices\":[172,180]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[181,188]},{\"text\":\"BibleBuild\",\"indices\":[204,215]},{\"text\":\"Ukraine\",\"indices\":[216,224]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[225,243]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Swanskid_\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"indices\":[18,28]},{\"screen_name\":\"kwadwosheldon\",\"name\":\"Kwadwo Sheldon\",\"id\":1368507991499149329,\"id_str\":\"1368507991499149329\",\"indices\":[189,203]}],\"urls\":[],\"media\":[{\"id\":1554775191053557762,\"id_str\":\"1554775191053557762\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775191053557762\\/pu\\/img\\/bkLCn3FSMw3LF7j8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775191053557762\\/pu\\/img\\/bkLCn3FSMw3LF7j8.jpg\",\"url\":\"https:\\/\\/t.co\\/zSmQMCzoZO\",\"display_url\":\"pic.twitter.com\\/zSmQMCzoZO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554775538765529090\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}}}]},\"925\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[173,180]},{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[9,15]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[29,38]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[53,66]}],\"urls\":[],\"media\":[{\"id\":1554775060853956611,\"id_str\":\"1554775060853956611\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"url\":\"https:\\/\\/t.co\\/v3DBR8PCOb\",\"display_url\":\"pic.twitter.com\\/v3DBR8PCOb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Princeaso_\\/status\\/1554775131767046144\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"926\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[11,15]},{\"text\":\"exercises\",\"indices\":[70,80]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[105,111]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[112,130]},{\"text\":\"Pelosi\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554774884340797440,\"id_str\":\"1554774884340797440\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"url\":\"https:\\/\\/t.co\\/gY9D4euHGU\",\"display_url\":\"pic.twitter.com\\/gY9D4euHGU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554775098518712320\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"927\":{\"hashtags\":[{\"text\":\"Minions2\",\"indices\":[48,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"China\",\"indices\":[66,72]},{\"text\":\"knust\",\"indices\":[73,79]},{\"text\":\"CitiCBS\",\"indices\":[105,113]},{\"text\":\"Sunkwa22\",\"indices\":[155,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554774691910504450,\"id_str\":\"1554774691910504450\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"url\":\"https:\\/\\/t.co\\/vNymkx9byA\",\"display_url\":\"pic.twitter.com\\/vNymkx9byA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Movie__Hack\\/status\\/1554774694976536576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":430,\"h\":680,\"resize\":\"fit\"}}}]},\"928\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"China\",\"indices\":[164,170]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[171,178]},{\"text\":\"RwandaBirds\",\"indices\":[179,191]},{\"text\":\"helicopter\",\"indices\":[193,204]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[205,230]},{\"text\":\"Buhari\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773993567166465,\"id_str\":\"1554773993567166465\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"url\":\"https:\\/\\/t.co\\/o97l2VTsqf\",\"display_url\":\"pic.twitter.com\\/o97l2VTsqf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chidi_Africa\\/status\\/1554773996087943168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":452,\"resize\":\"fit\"}}}]},\"929\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[0,8]},{\"text\":\"helicopter\",\"indices\":[9,20]},{\"text\":\"Pelosi\",\"indices\":[21,28]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Montefiore\",\"name\":\"me\",\"id\":19416168,\"id_str\":\"19416168\",\"indices\":[30,41]},{\"screen_name\":\"MontefioreNYC\",\"name\":\"Montefiore Health System\",\"id\":340356226,\"id_str\":\"340356226\",\"indices\":[42,56]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4zqEsOVY8V\",\"expanded_url\":\"https:\\/\\/csrreporters.com\\/dr-philip-o-ozuah-donates-1m-to-university-of-ibadan-medical-school\\/\",\"display_url\":\"csrreporters.com\\/dr-philip-o-oz\\u2026\",\"indices\":[129,152]}]},\"930\":{\"hashtags\":[{\"text\":\"Hotjist\",\"indices\":[91,99]},{\"text\":\"Hotjistnaija\",\"indices\":[100,113]},{\"text\":\"Insecurity\",\"indices\":[114,125]},{\"text\":\"FederalGovernment\",\"indices\":[126,144]},{\"text\":\"Obituary\",\"indices\":[147,156]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"DeJong\",\"indices\":[167,174]},{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[192,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OiH6YOif4U\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/federal-government-seeks-collective-efforts-to-fight-insecurity\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/fed\\u2026\",\"indices\":[66,89]}]},\"931\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[13,20]},{\"text\":\"sabinus\",\"indices\":[21,29]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[30,37]},{\"text\":\"Ukraine\",\"indices\":[38,46]},{\"text\":\"corset\",\"indices\":[47,54]},{\"text\":\"fashion\",\"indices\":[55,63]},{\"text\":\"fashionblogger\",\"indices\":[64,79]},{\"text\":\"tops\",\"indices\":[80,85]},{\"text\":\"Trending\",\"indices\":[86,95]},{\"text\":\"bbn\",\"indices\":[96,100]},{\"text\":\"fashionstyle\",\"indices\":[101,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773317906796545,\"id_str\":\"1554773317906796545\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"url\":\"https:\\/\\/t.co\\/5uMO3VBzLw\",\"display_url\":\"pic.twitter.com\\/5uMO3VBzLw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequeenhelen1\\/status\\/1554773340077817857\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}}]},\"932\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[112,123]},{\"text\":\"Wizkid\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]},{\"text\":\"BBNaija\",\"indices\":[181,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773004470652929,\"id_str\":\"1554773004470652929\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}}]},\"933\":{\"hashtags\":[{\"text\":\"Taip\\u00e9i\",\"indices\":[43,50]},{\"text\":\"USA\",\"indices\":[105,109]},{\"text\":\"China\",\"indices\":[110,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"America\",\"indices\":[125,133]},{\"text\":\"Pelosi\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554772590178160640,\"id_str\":\"1554772590178160640\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"url\":\"https:\\/\\/t.co\\/N7nn8Fz6vq\",\"display_url\":\"pic.twitter.com\\/N7nn8Fz6vq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554772663498711040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"medium\":{\"w\":828,\"h\":440,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":440,\"resize\":\"fit\"}}}]},\"934\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"VinScully\",\"indices\":[71,81]},{\"text\":\"Batgirl\",\"indices\":[82,90]},{\"text\":\"Pelosi\",\"indices\":[91,98]},{\"text\":\"Merrifield\",\"indices\":[99,110]},{\"text\":\"padres\",\"indices\":[111,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bOmdvPOT5P\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/services\\/product\\/professional-brochure-design-for-your-business-1517461647331160064?ref=project_share\",\"display_url\":\"upwork.com\\/services\\/produ\\u2026\",\"indices\":[120,143]}],\"media\":[{\"id\":1554772621677498368,\"id_str\":\"1554772621677498368\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"url\":\"https:\\/\\/t.co\\/X86S5nOBSN\",\"display_url\":\"pic.twitter.com\\/X86S5nOBSN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Evereztt\\/status\\/1554772632880521218\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1449,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"}}}]},\"935\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[215,225]},{\"text\":\"Pelosi\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"936\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"WorldWarIII\",\"indices\":[52,64]},{\"text\":\"WorldWar3\",\"indices\":[65,75]},{\"text\":\"Obituary\",\"indices\":[76,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554772016070361088,\"id_str\":\"1554772016070361088\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"url\":\"https:\\/\\/t.co\\/IYplsoT20R\",\"display_url\":\"pic.twitter.com\\/IYplsoT20R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChuksCopn\\/status\\/1554772019346022407\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":573,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":849,\"resize\":\"fit\"}}}]},\"937\":{\"hashtags\":[{\"text\":\"Umbrella\",\"indices\":[232,241]},{\"text\":\"Taiwan\",\"indices\":[261,268]},{\"text\":\"Cucurella\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OnorSandy\",\"name\":\"Sen. Prof. Sandy Ojang Onor\",\"id\":1136922427353681920,\"id_str\":\"1136922427353681920\",\"indices\":[4,14]},{\"screen_name\":\"JJarigbe\",\"name\":\"Senator Jarigbe Agom Jarigbe\",\"id\":1251858396376072192,\"id_str\":\"1251858396376072192\",\"indices\":[57,66]},{\"screen_name\":\"HouseNGR\",\"name\":\"House of Reps NGR\",\"id\":727803307880796160,\"id_str\":\"727803307880796160\",\"indices\":[139,148]}],\"urls\":[],\"media\":[{\"id\":1554771128069005315,\"id_str\":\"1554771128069005315\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"938\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[38,53]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[114,128]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[133,141]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[222,228]}],\"urls\":[],\"media\":[{\"id\":1554771075552231427,\"id_str\":\"1554771075552231427\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"939\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"Phyna\",\"indices\":[112,118]},{\"text\":\"BBNaija\",\"indices\":[119,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554770968610017281,\"id_str\":\"1554770968610017281\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":800,\"resize\":\"fit\"}}}]},\"940\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554770257641779200,\"id_str\":\"1554770257641779200\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"url\":\"https:\\/\\/t.co\\/rZNuI5h5Ot\",\"display_url\":\"pic.twitter.com\\/rZNuI5h5Ot\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554770731585589248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"medium\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":496,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"941\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[215,225]},{\"text\":\"Pelosi\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"942\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"Pelosi\",\"indices\":[116,123]},{\"text\":\"ChinaTaiwan\",\"indices\":[207,219]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[4,18]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RpW3XLZ6NP\",\"expanded_url\":\"https:\\/\\/youtu.be\\/_zHV3gd3r54\",\"display_url\":\"youtu.be\\/_zHV3gd3r54\",\"indices\":[220,243]}]},\"943\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[13,21]},{\"text\":\"China\",\"indices\":[68,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764561340895233,\"id_str\":\"1554764561340895233\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiIYwXEAENi7v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiIYwXEAENi7v.jpg\",\"url\":\"https:\\/\\/t.co\\/0Vg5hcq12u\",\"display_url\":\"pic.twitter.com\\/0Vg5hcq12u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554769293211889666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"944\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"Solana\",\"indices\":[174,181]},{\"text\":\"China\",\"indices\":[183,189]},{\"text\":\"sabinus\",\"indices\":[191,199]},{\"text\":\"helicopter\",\"indices\":[201,212]},{\"text\":\"BlueJays\",\"indices\":[214,223]},{\"text\":\"Ukraine\",\"indices\":[225,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554768625726328832,\"id_str\":\"1554768625726328832\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"url\":\"https:\\/\\/t.co\\/WrVic4OPRi\",\"display_url\":\"pic.twitter.com\\/WrVic4OPRi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554768633062215691\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"small\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"large\":{\"w\":648,\"h\":648,\"resize\":\"fit\"}}}]},\"945\":{\"hashtags\":[{\"text\":\"SuccesQuotes\",\"indices\":[9,22]},{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"sabinus\",\"indices\":[31,39]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[40,47]},{\"text\":\"BibleBuild\",\"indices\":[48,59]},{\"text\":\"NFTCommunity\",\"indices\":[60,73]},{\"text\":\"NFTGiveaways\",\"indices\":[74,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"BlueJays\",\"indices\":[103,112]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[113,131]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[132,155]},{\"text\":\"LoveIsland2022\",\"indices\":[156,171]},{\"text\":\"USA\",\"indices\":[172,176]},{\"text\":\"Ukraine\",\"indices\":[177,185]},{\"text\":\"UkraineRussiaWar\",\"indices\":[186,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554768309056331776,\"id_str\":\"1554768309056331776\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"url\":\"https:\\/\\/t.co\\/opacZr7G7c\",\"display_url\":\"pic.twitter.com\\/opacZr7G7c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StephenQuartzz\\/status\\/1554768321983422464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"946\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"USA\",\"indices\":[109,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554767751876468737,\"id_str\":\"1554767751876468737\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"url\":\"https:\\/\\/t.co\\/1c7AflzQAb\",\"display_url\":\"pic.twitter.com\\/1c7AflzQAb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554767858600513536\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":630,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":357,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":672,\"resize\":\"fit\"}}}]},\"947\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"China\",\"indices\":[141,147]},{\"text\":\"Wizkid\",\"indices\":[148,155]},{\"text\":\"nerves\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554767399236341760,\"id_str\":\"1554767399236341760\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"large\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}}]},\"948\":{\"hashtags\":[{\"text\":\"August2022\",\"indices\":[57,68]},{\"text\":\"HappyNewMonth\",\"indices\":[69,83]},{\"text\":\"Davido\",\"indices\":[84,91]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[92,117]},{\"text\":\"China\",\"indices\":[118,124]},{\"text\":\"sabinus\",\"indices\":[125,133]},{\"text\":\"Taiwan\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554766290543427584,\"id_str\":\"1554766290543427584\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"949\":{\"hashtags\":[{\"text\":\"war\",\"indices\":[61,65]},{\"text\":\"Pelosi\",\"indices\":[66,73]},{\"text\":\"Pelosi\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554766146477461509,\"id_str\":\"1554766146477461509\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":405,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":405,\"resize\":\"fit\"}}}]},\"950\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[58,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"Pelosi\",\"indices\":[73,80]},{\"text\":\"Solana\",\"indices\":[81,88]},{\"text\":\"sabinus\",\"indices\":[89,97]},{\"text\":\"asuu\",\"indices\":[98,103]},{\"text\":\"BBNaija\",\"indices\":[104,112]},{\"text\":\"TheCough\",\"indices\":[113,122]},{\"text\":\"Newmusic\",\"indices\":[123,132]},{\"text\":\"wizkid\",\"indices\":[133,140]},{\"text\":\"davido\",\"indices\":[141,148]},{\"text\":\"billboard\",\"indices\":[149,159]},{\"text\":\"applemusic\",\"indices\":[160,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554765834270248962,\"id_str\":\"1554765834270248962\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"url\":\"https:\\/\\/t.co\\/tVKiTCZMPw\",\"display_url\":\"pic.twitter.com\\/tVKiTCZMPw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koliwill1\\/status\\/1554765853220036608\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":576,\"resize\":\"fit\"}}}]},\"951\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"China\",\"indices\":[109,115]},{\"text\":\"sabinus\",\"indices\":[116,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"952\":{\"hashtags\":[{\"text\":\"WWENXT\",\"indices\":[215,222]},{\"text\":\"sabinus\",\"indices\":[223,231]},{\"text\":\"Ukraine\",\"indices\":[232,240]},{\"text\":\"Taiwan\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554765283188940800,\"id_str\":\"1554765283188940800\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"url\":\"https:\\/\\/t.co\\/6kGd3EkX1b\",\"display_url\":\"pic.twitter.com\\/6kGd3EkX1b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1554765285294542850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"large\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"medium\":{\"w\":346,\"h\":457,\"resize\":\"fit\"}}}]},\"953\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[136,142]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"Solana\",\"indices\":[151,158]},{\"text\":\"sabinus\",\"indices\":[159,167]},{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"BibleBuild\",\"indices\":[180,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764964535177216,\"id_str\":\"1554764964535177216\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"url\":\"https:\\/\\/t.co\\/UWvwP9LxNe\",\"display_url\":\"pic.twitter.com\\/UWvwP9LxNe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CmskEmmanuel\\/status\\/1554765082739056641\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"954\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"NancyPelosi\",\"indices\":[80,92]},{\"text\":\"Taipei\",\"indices\":[93,100]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[101,119]},{\"text\":\"China\",\"indices\":[120,126]},{\"text\":\"pelositaiwan\",\"indices\":[127,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764935460073473,\"id_str\":\"1554764935460073473\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"url\":\"https:\\/\\/t.co\\/CR7C9DFv93\",\"display_url\":\"pic.twitter.com\\/CR7C9DFv93\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764958662942720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":346,\"resize\":\"fit\"}}}]},\"955\":{\"hashtags\":[{\"text\":\"SouthKorea\",\"indices\":[38,49]},{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"China\",\"indices\":[60,66]},{\"text\":\"Pelosi\",\"indices\":[67,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764251381657600,\"id_str\":\"1554764251381657600\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"url\":\"https:\\/\\/t.co\\/xCNhf8f5EP\",\"display_url\":\"pic.twitter.com\\/xCNhf8f5EP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764294016737280\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":334,\"resize\":\"fit\"}}}]},\"956\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[63,86]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"China\",\"indices\":[155,161]},{\"text\":\"Solana\",\"indices\":[162,169]},{\"text\":\"sabinus\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeffreyGuterman\",\"name\":\"Dr. Jeffrey Guterman\",\"id\":246103,\"id_str\":\"246103\",\"indices\":[0,16]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[17,26]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[53,62]}],\"urls\":[],\"media\":[{\"id\":1554763832123326464,\"id_str\":\"1554763832123326464\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"957\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[102,125]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[126,151]},{\"text\":\"peterobi\",\"indices\":[152,161]},{\"text\":\"LabourParty\",\"indices\":[162,174]},{\"text\":\"davidhundeyin\",\"indices\":[175,189]},{\"text\":\"plateau\",\"indices\":[190,198]},{\"text\":\"helicopter\",\"indices\":[199,210]},{\"text\":\"Osimhen\",\"indices\":[211,219]},{\"text\":\"Tuchel\",\"indices\":[220,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"Pelosi\",\"indices\":[236,243]},{\"text\":\"Solana\",\"indices\":[244,251]},{\"text\":\"sabinus\",\"indices\":[252,260]},{\"text\":\"BlueJays\",\"indices\":[261,270]},{\"text\":\"GodAbeg\",\"indices\":[271,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[13,22]}],\"urls\":[],\"media\":[{\"id\":1554763035843108864,\"id_str\":\"1554763035843108864\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"url\":\"https:\\/\\/t.co\\/1PxDqmYaXY\",\"display_url\":\"pic.twitter.com\\/1PxDqmYaXY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/benita_ani\\/status\\/1554763044194058240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":969,\"h\":1200,\"resize\":\"fit\"}}}]},\"958\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[175,179]},{\"text\":\"color\",\"indices\":[180,186]},{\"text\":\"artwork\",\"indices\":[187,195]},{\"text\":\"watercolorart\",\"indices\":[196,210]},{\"text\":\"painting\",\"indices\":[211,220]},{\"text\":\"VisualArt\",\"indices\":[221,231]},{\"text\":\"NFTCommunity\",\"indices\":[232,245]},{\"text\":\"Taiwan\",\"indices\":[246,253]},{\"text\":\"Pelosi\",\"indices\":[254,261]},{\"text\":\"China\",\"indices\":[262,268]},{\"text\":\"Solana\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554762200086200321,\"id_str\":\"1554762200086200321\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"959\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[45,57]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"pelositaiwan\",\"indices\":[106,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554762267853352961,\"id_str\":\"1554762267853352961\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"url\":\"https:\\/\\/t.co\\/dg9cm1VN2l\",\"display_url\":\"pic.twitter.com\\/dg9cm1VN2l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554762305824378881\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":432,\"h\":256,\"resize\":\"fit\"}}}]},\"960\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"Pelosi\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dixon_davie\",\"name\":\"\\u26a1\\ufe0fYes We Can\\ud83c\\uddf8\\ud83c\\uddf1\\u26a1\\ufe0f\\u26a1\\ufe0f\\u26a1\\ufe0f\",\"id\":913896118903279617,\"id_str\":\"913896118903279617\",\"indices\":[0,12]}],\"urls\":[]},\"961\":{\"hashtags\":[{\"text\":\"ministerforsoupaffairs\",\"indices\":[12,35]},{\"text\":\"ministerforsoupaffairs\",\"indices\":[168,191]},{\"text\":\"Pelosi\",\"indices\":[192,199]},{\"text\":\"Stew\",\"indices\":[200,205]},{\"text\":\"eathealthy\",\"indices\":[206,217]},{\"text\":\"HealthyFood\",\"indices\":[218,230]},{\"text\":\"Health\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554761742458277888,\"id_str\":\"1554761742458277888\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZzXoicSwjA\",\"display_url\":\"pic.twitter.com\\/ZzXoicSwjA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akande_susan_b\\/status\\/1554761745159409664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"962\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"sabinus\",\"indices\":[24,32]},{\"text\":\"MentalHealthMatters\",\"indices\":[33,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554761507367518211,\"id_str\":\"1554761507367518211\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"url\":\"https:\\/\\/t.co\\/awt1ppOpID\",\"display_url\":\"pic.twitter.com\\/awt1ppOpID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554761554939322368\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"963\":{\"hashtags\":[{\"text\":\"dejong\",\"indices\":[94,101]},{\"text\":\"China\",\"indices\":[102,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[117,140]},{\"text\":\"sabinus\",\"indices\":[141,149]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[150,168]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"michaeljackson\",\"name\":\"Michael Jackson\",\"id\":54387680,\"id_str\":\"54387680\",\"indices\":[56,71]}],\"urls\":[],\"media\":[{\"id\":1554758873453629441,\"id_str\":\"1554758873453629441\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758873453629441\\/pu\\/img\\/AqG_IfTCDBP8kjkk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758873453629441\\/pu\\/img\\/AqG_IfTCDBP8kjkk.jpg\",\"url\":\"https:\\/\\/t.co\\/w65YScUBCN\",\"display_url\":\"pic.twitter.com\\/w65YScUBCN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nickmills21\\/status\\/1554761100834521090\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"964\":{\"hashtags\":[{\"text\":\"LoveIsland2022\",\"indices\":[48,63]},{\"text\":\"China\",\"indices\":[64,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"Trending\",\"indices\":[79,88]},{\"text\":\"trendingreels\",\"indices\":[89,103]},{\"text\":\"Essence\",\"indices\":[104,112]},{\"text\":\"sabinus\",\"indices\":[113,121]},{\"text\":\"wizkid\",\"indices\":[122,129]},{\"text\":\"helicopter\",\"indices\":[130,141]},{\"text\":\"AllorNothing\",\"indices\":[142,155]},{\"text\":\"GodAbeg\",\"indices\":[156,164]},{\"text\":\"MONEY\",\"indices\":[166,172]},{\"text\":\"BBNaija\",\"indices\":[173,181]},{\"text\":\"Influencer\",\"indices\":[182,193]},{\"text\":\"MondayMotivation\",\"indices\":[194,211]},{\"text\":\"fashion\",\"indices\":[212,220]},{\"text\":\"naijamusic\",\"indices\":[221,232]},{\"text\":\"luxury\",\"indices\":[233,240]},{\"text\":\"explorepage\",\"indices\":[241,253]},{\"text\":\"NowPlaying\",\"indices\":[254,265]},{\"text\":\"ChrisBrown\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554760500709396480,\"id_str\":\"1554760500709396480\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"url\":\"https:\\/\\/t.co\\/NEgkLhxrKk\",\"display_url\":\"pic.twitter.com\\/NEgkLhxrKk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554760645769306112\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"965\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"China\",\"indices\":[154,160]},{\"text\":\"sabinus\",\"indices\":[161,169]},{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Ukraine\",\"indices\":[182,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SLBHGR3jvE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GuardpostNg\\/status\\/1554741440797884416\",\"display_url\":\"twitter.com\\/GuardpostNg\\/st\\u2026\",\"indices\":[193,216]}]},\"966\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"NancyPelosi\",\"indices\":[64,76]},{\"text\":\"Taipei\",\"indices\":[77,84]},{\"text\":\"Pelosi\",\"indices\":[85,92]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[93,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"pelositaiwan\",\"indices\":[119,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554760071694864385,\"id_str\":\"1554760071694864385\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"url\":\"https:\\/\\/t.co\\/5UnH7vNTLv\",\"display_url\":\"pic.twitter.com\\/5UnH7vNTLv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554760106612367360\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1270,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":386,\"resize\":\"fit\"}}}]},\"967\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[160,167]},{\"text\":\"sabinus\",\"indices\":[168,176]},{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"China\",\"indices\":[189,195]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[196,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pXP9ujMIMP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GuardpostNg\\/status\\/1554549189392027648\",\"display_url\":\"twitter.com\\/GuardpostNg\\/st\\u2026\",\"indices\":[214,237]}]},\"968\":{\"hashtags\":[{\"text\":\"school\",\"indices\":[35,42]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lPNFb4LFii\",\"expanded_url\":\"https:\\/\\/agbakablog.com\\/2022\\/08\\/03\\/3-killed-in-china-kindergarten-stabbing-afp\\/\",\"display_url\":\"agbakablog.com\\/2022\\/08\\/03\\/3-k\\u2026\",\"indices\":[68,91]}]},\"969\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"dejong\",\"indices\":[109,116]},{\"text\":\"nigerrepublic\",\"indices\":[117,131]},{\"text\":\"Obituary\",\"indices\":[132,141]},{\"text\":\"Emily\",\"indices\":[142,148]},{\"text\":\"Rufai\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UnB0AzoKHG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3BxyUKa\",\"display_url\":\"bit.ly\\/3BxyUKa\",\"indices\":[76,99]}],\"media\":[{\"id\":1554758920064958466,\"id_str\":\"1554758920064958466\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"url\":\"https:\\/\\/t.co\\/2ZhUtWf8xb\",\"display_url\":\"pic.twitter.com\\/2ZhUtWf8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/opuwari66\\/status\\/1554758927639781377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"970\":{\"hashtags\":[{\"text\":\"MUFC\",\"indices\":[70,75]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"sabinus\",\"indices\":[96,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AT13Oficial\",\"name\":\"Alex Telles\",\"id\":1331704359596527621,\"id_str\":\"1331704359596527621\",\"indices\":[0,12]},{\"screen_name\":\"SevillaFC_ENG\",\"name\":\"Sevilla FC\",\"id\":2941994339,\"id_str\":\"2941994339\",\"indices\":[53,67]}],\"urls\":[],\"media\":[{\"id\":1554758636550983680,\"id_str\":\"1554758636550983680\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":961,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1405,\"resize\":\"fit\"}}}]},\"971\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[223,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"Pelosi\",\"indices\":[236,243]},{\"text\":\"Solana\",\"indices\":[244,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"972\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554758166637936640,\"id_str\":\"1554758166637936640\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"url\":\"https:\\/\\/t.co\\/jNjKO4A0JW\",\"display_url\":\"pic.twitter.com\\/jNjKO4A0JW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrwopaa\\/status\\/1554758300004237313\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"973\":{\"hashtags\":[{\"text\":\"Rufai\",\"indices\":[97,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"GodAbeg\",\"indices\":[112,120]},{\"text\":\"arisetv\",\"indices\":[121,129]},{\"text\":\"nigerrepublic\",\"indices\":[130,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hQIkNcxJDz\",\"expanded_url\":\"https:\\/\\/nigeriannewssphere.com\\/arisetv-journalist-rufai-apologies-for-brt-traffic-infractions-in-lagos\\/\",\"display_url\":\"nigeriannewssphere.com\\/arisetv-journa\\u2026\",\"indices\":[146,169]}],\"media\":[{\"id\":1554757310014263296,\"id_str\":\"1554757310014263296\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"url\":\"https:\\/\\/t.co\\/s8oGfNaHs6\",\"display_url\":\"pic.twitter.com\\/s8oGfNaHs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ariemu_ogaga\\/status\\/1554757312325246977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"medium\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"large\":{\"w\":225,\"h\":225,\"resize\":\"fit\"}}}]},\"974\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[91,99]},{\"text\":\"BBNajiaS7\",\"indices\":[100,110]},{\"text\":\"Chelsea\",\"indices\":[111,119]},{\"text\":\"Khalid\",\"indices\":[120,127]},{\"text\":\"dejong\",\"indices\":[128,135]},{\"text\":\"Deji\",\"indices\":[136,141]},{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"Nigeria\",\"indices\":[150,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"975\":{\"hashtags\":[{\"text\":\"CitiCBS\",\"indices\":[130,138]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"MichaelJackson\",\"indices\":[151,166]},{\"text\":\"Bawumia\",\"indices\":[168,176]},{\"text\":\"Pelosi\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"976\":{\"hashtags\":[{\"text\":\"Ambazonia\",\"indices\":[0,10]},{\"text\":\"Somaliland\",\"indices\":[72,83]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AbdulKarimaliSC\",\"name\":\"Abdul Karim Ali\",\"id\":1229318321671151616,\"id_str\":\"1229318321671151616\",\"indices\":[235,251]},{\"screen_name\":\"BohHerbert\",\"name\":\"Herbert Boh\",\"id\":529047537,\"id_str\":\"529047537\",\"indices\":[252,263]},{\"screen_name\":\"MariantaNjomia\",\"name\":\"President Marianta Njomia\",\"id\":1507474476342067200,\"id_str\":\"1507474476342067200\",\"indices\":[264,279]}],\"urls\":[]},\"977\":{\"hashtags\":[{\"text\":\"Sweetgirl\",\"indices\":[7,17]},{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"Solana\",\"indices\":[26,33]},{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"DonBelle\",\"indices\":[42,51]},{\"text\":\"DOB\",\"indices\":[52,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554755190439428096,\"id_str\":\"1554755190439428096\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"url\":\"https:\\/\\/t.co\\/okJ4mPo0Zj\",\"display_url\":\"pic.twitter.com\\/okJ4mPo0Zj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djackyz\\/status\\/1554755756930568193\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"978\":{\"hashtags\":[{\"text\":\"EpitomeStores\",\"indices\":[21,35]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"helicopter\",\"indices\":[59,70]},{\"text\":\"BlueJays\",\"indices\":[71,80]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[81,99]},{\"text\":\"LoveIsland2022\",\"indices\":[100,115]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[116,134]},{\"text\":\"Ukraine\",\"indices\":[135,143]},{\"text\":\"UkraineRussiaWar\",\"indices\":[144,161]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[162,187]},{\"text\":\"oesym\",\"indices\":[188,194]},{\"text\":\"Guerrilla1stWin\",\"indices\":[195,211]},{\"text\":\"wednesdaythought\",\"indices\":[212,229]},{\"text\":\"fashionstyle\",\"indices\":[230,243]},{\"text\":\"Viruman\",\"indices\":[244,252]},{\"text\":\"Piastri\",\"indices\":[253,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"979\":{\"hashtags\":[{\"text\":\"Hotjist\",\"indices\":[101,109]},{\"text\":\"Hotjistnaija\",\"indices\":[110,123]},{\"text\":\"UniversityOfIbadan\",\"indices\":[124,143]},{\"text\":\"Admission\",\"indices\":[144,154]},{\"text\":\"Obituary\",\"indices\":[157,166]},{\"text\":\"SamOmatseye\",\"indices\":[168,180]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"Leno\",\"indices\":[203,208]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bOA5eXnBbt\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/university-of-ibadan-ui-promises-students-with-marks-below-200-admission\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/uni\\u2026\",\"indices\":[76,99]}]},\"980\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[35,45]},{\"text\":\"Rufai\",\"indices\":[46,52]},{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"MichaelJackson\",\"indices\":[61,76]},{\"text\":\"davidhundeyin\",\"indices\":[77,91]},{\"text\":\"Khalid\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554753224216920068,\"id_str\":\"1554753224216920068\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"url\":\"https:\\/\\/t.co\\/PyNUmil5YE\",\"display_url\":\"pic.twitter.com\\/PyNUmil5YE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerryOladapo\\/status\\/1554754395887247361\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":464,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":704,\"resize\":\"fit\"}}}]},\"981\":{\"hashtags\":[{\"text\":\"lifequotes\",\"indices\":[42,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"OBIdient2023\",\"indices\":[62,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554193160506580992,\"id_str\":\"1554193160506580992\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cync8O1w12\",\"display_url\":\"pic.twitter.com\\/Cync8O1w12\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jara_Connect\\/status\\/1554753949986525184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"982\":{\"hashtags\":[{\"text\":\"UkraineRussiaWar\",\"indices\":[146,163]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[164,182]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bftghana\",\"name\":\"Business & Financial Times\",\"id\":467235566,\"id_str\":\"467235566\",\"indices\":[183,192]},{\"screen_name\":\"Verheul_Jeroen\",\"name\":\"NLAmbassadorGhana\",\"id\":1024075152,\"id_str\":\"1024075152\",\"indices\":[193,208]}],\"urls\":[]},\"983\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554753120709877770,\"id_str\":\"1554753120709877770\",\"indices\":[29,52],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"url\":\"https:\\/\\/t.co\\/Q5tlxYu3Bj\",\"display_url\":\"pic.twitter.com\\/Q5tlxYu3Bj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bereal_akpan\\/status\\/1554753222811721728\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"984\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"Davido\",\"indices\":[127,134]},{\"text\":\"WednesdayMotivation\",\"indices\":[135,155]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dremodrizzy\",\"name\":\"DREMO\\ud83d\\udd25\\ud83d\\udc09\",\"id\":203399526,\"id_str\":\"203399526\",\"indices\":[96,108]}],\"urls\":[],\"media\":[{\"id\":1554752373578399745,\"id_str\":\"1554752373578399745\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"url\":\"https:\\/\\/t.co\\/DyHldauMMV\",\"display_url\":\"pic.twitter.com\\/DyHldauMMV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554752436572667904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":398,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":398,\"resize\":\"fit\"}}}]},\"985\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[51,59]},{\"text\":\"Pelosi\",\"indices\":[81,88]},{\"text\":\"helicopter\",\"indices\":[101,112]},{\"text\":\"wonderqoute\",\"indices\":[130,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554752227050491904,\"id_str\":\"1554752227050491904\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"url\":\"https:\\/\\/t.co\\/ovHXa0hzlB\",\"display_url\":\"pic.twitter.com\\/ovHXa0hzlB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wonderqoute\\/status\\/1554752228992368641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"986\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[256,268]},{\"text\":\"KNUST\",\"indices\":[269,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NAkufoAddo\",\"name\":\"Nana Akufo-Addo\",\"id\":247217109,\"id_str\":\"247217109\",\"indices\":[32,43]}],\"urls\":[],\"media\":[{\"id\":1554750894931165184,\"id_str\":\"1554750894931165184\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOVs5aXwAA9UPU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOVs5aXwAA9UPU.jpg\",\"url\":\"https:\\/\\/t.co\\/A28ZFjx7fh\",\"display_url\":\"pic.twitter.com\\/A28ZFjx7fh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554750902178877440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":588,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":588,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":588,\"resize\":\"fit\"}}}]},\"987\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"988\":{\"hashtags\":[{\"text\":\"DirtyNancy\",\"indices\":[0,11]},{\"text\":\"Pelosi\",\"indices\":[43,50]},{\"text\":\"Trump\",\"indices\":[116,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"POTUS45\",\"name\":\"President Trump 45 Archived\",\"id\":822215679726100480,\"id_str\":\"822215679726100480\",\"indices\":[15,23]}],\"urls\":[]},\"989\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"China\",\"indices\":[104,110]},{\"text\":\"pelositaiwan\",\"indices\":[111,124]},{\"text\":\"Pelosi\",\"indices\":[125,132]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[133,151]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554750326871302144,\"id_str\":\"1554750326871302144\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"url\":\"https:\\/\\/t.co\\/FoQKyOEd9r\",\"display_url\":\"pic.twitter.com\\/FoQKyOEd9r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750398535110657\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"990\":{\"hashtags\":[{\"text\":\"Obidatti2023\",\"indices\":[231,244]},{\"text\":\"Taiwan\",\"indices\":[245,252]},{\"text\":\"NigeriaDecides2023\",\"indices\":[259,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WOaKtGkKsD\",\"expanded_url\":\"https:\\/\\/youtu.be\\/VW4wAoj6_m4\",\"display_url\":\"youtu.be\\/VW4wAoj6_m4\",\"indices\":[115,138]}],\"media\":[{\"id\":1554749405697277953,\"id_str\":\"1554749405697277953\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"url\":\"https:\\/\\/t.co\\/L1J8YWRhY5\",\"display_url\":\"pic.twitter.com\\/L1J8YWRhY5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/izzitalk\\/status\\/1554750357292650496\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"991\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"BBNaijaS7\",\"indices\":[225,235]},{\"text\":\"Sabinus\",\"indices\":[238,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"992\":{\"hashtags\":[{\"text\":\"drilling\",\"indices\":[32,41]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"China\",\"indices\":[73,79]},{\"text\":\"Pelosi\",\"indices\":[80,87]},{\"text\":\"pelositaiwan\",\"indices\":[88,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554749832274796545,\"id_str\":\"1554749832274796545\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/xABIkq4zud\",\"display_url\":\"pic.twitter.com\\/xABIkq4zud\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750035895545858\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"993\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"Khalid\",\"indices\":[45,52]},{\"text\":\"audacity\",\"indices\":[54,63]},{\"text\":\"wednesday\",\"indices\":[64,74]},{\"text\":\"memes\",\"indices\":[75,81]},{\"text\":\"bananaisland\",\"indices\":[82,95]},{\"text\":\"realestate\",\"indices\":[96,107]},{\"text\":\"property\",\"indices\":[108,117]},{\"text\":\"landsinlagos\",\"indices\":[118,131]},{\"text\":\"landsinibadan\",\"indices\":[132,146]},{\"text\":\"lekki\",\"indices\":[147,153]},{\"text\":\"epe\",\"indices\":[154,158]},{\"text\":\"audaciaprimerealty\",\"indices\":[159,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"994\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"BibleBuild\",\"indices\":[109,120]},{\"text\":\"sabinus\",\"indices\":[121,129]},{\"text\":\"Wizkid\",\"indices\":[130,137]},{\"text\":\"Obidatti2023\",\"indices\":[138,151]},{\"text\":\"naughy\",\"indices\":[152,159]},{\"text\":\"Essence\",\"indices\":[160,168]},{\"text\":\"omatseye\",\"indices\":[169,178]},{\"text\":\"Tinubu\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554749811965960192,\"id_str\":\"1554749811965960192\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"url\":\"https:\\/\\/t.co\\/1jI8BGtAOK\",\"display_url\":\"pic.twitter.com\\/1jI8BGtAOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfeJerry1\\/status\\/1554749956875067392\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":456,\"h\":450,\"resize\":\"fit\"}}}]},\"995\":{\"hashtags\":[{\"text\":\"OneChina\",\"indices\":[194,203]},{\"text\":\"OneChinaPolicy\",\"indices\":[205,220]},{\"text\":\"OneChinaPrinciple\",\"indices\":[222,240]},{\"text\":\"Taiwan\",\"indices\":[242,249]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"996\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[147,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554749286390308864,\"id_str\":\"1554749286390308864\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"url\":\"https:\\/\\/t.co\\/uWbWNr9sVl\",\"display_url\":\"pic.twitter.com\\/uWbWNr9sVl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554749294770413568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"}}}]},\"997\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Ukraine\",\"indices\":[117,125]},{\"text\":\"bread\",\"indices\":[126,132]},{\"text\":\"Jungkook\",\"indices\":[133,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554748770927222785,\"id_str\":\"1554748770927222785\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"url\":\"https:\\/\\/t.co\\/5FPEyppr3w\",\"display_url\":\"pic.twitter.com\\/5FPEyppr3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SweetMusicMan27\\/status\\/1554748781551288321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"998\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GBrgjulvEy\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/breaking-terrorists-release-5-more-abuja-kaduna-train-hostages-including-one-shot-during-captivity\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/bre\\u2026\",\"indices\":[199,222]}]},\"999\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D2mWMiFPdB\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/russia-ukraine-latest-updates-first-grain-ship-arrives-in-turkey\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/rus\\u2026\",\"indices\":[199,222]}]},\"1000\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pDyetVMxPe\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/ukraine-war-russia-accuses-us-of-direct-role-in-ukraine-war\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/ukr\\u2026\",\"indices\":[199,222]}]},\"1001\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Db8KAoBCa0\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/blueface-addresses-viral-footage-of-physical-altercation-with-chrisean-rock\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/blu\\u2026\",\"indices\":[199,222]}]},\"1002\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cJKMI6dV2E\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/my-body-feels-so-much-lighter-nancy-isime-reacts-to-call-out-by-blessing-ceo-that-she-did-body-surgery\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/my-\\u2026\",\"indices\":[199,222]}]},\"1003\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nELAMJq4aT\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/im-not-sure-of-getting-married-again-korra-obidi\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/im-\\u2026\",\"indices\":[199,222]}]},\"1004\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7spSTcsOvF\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/youths-protest-against-ebubeagu-in-abia\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/you\\u2026\",\"indices\":[199,222]}]},\"1005\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1Wd4CxaVCP\",\"expanded_url\":\"https:\\/\\/www.247globalupdates.com\\/10-min-full-video-bbnaija-khalid-make-love-to-daniella-passionately-as-amaka-watch-live\\/\",\"display_url\":\"247globalupdates.com\\/10-min-full-vi\\u2026\",\"indices\":[199,222]}]},\"1006\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"US\",\"indices\":[11,14]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[40,57]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[58,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1007\":{\"hashtags\":[{\"text\":\"nectarbeauty\",\"indices\":[168,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"Pelosi\",\"indices\":[190,197]},{\"text\":\"Solana\",\"indices\":[198,205]},{\"text\":\"Jungkook\",\"indices\":[206,215]},{\"text\":\"BlueJays\",\"indices\":[216,225]},{\"text\":\"BibleBuild\",\"indices\":[226,237]},{\"text\":\"LoveIsland2022\",\"indices\":[238,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1008\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"BBNaija7\",\"indices\":[41,50]},{\"text\":\"LoveIsland2022\",\"indices\":[51,66]},{\"text\":\"Beyonce\",\"indices\":[67,75]},{\"text\":\"julydump\",\"indices\":[76,85]},{\"text\":\"BBNaija\",\"indices\":[86,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554747204505636864,\"id_str\":\"1554747204505636864\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"url\":\"https:\\/\\/t.co\\/MElRLNOy44\",\"display_url\":\"pic.twitter.com\\/MElRLNOy44\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FredTizzle\\/status\\/1554747247434366977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":633,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1117,\"h\":1200,\"resize\":\"fit\"}}}]},\"1009\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[0,3]},{\"text\":\"Ukraine\",\"indices\":[22,30]},{\"text\":\"Russia\",\"indices\":[40,47]},{\"text\":\"Zelensky\",\"indices\":[64,73]},{\"text\":\"US\",\"indices\":[101,104]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"China\",\"indices\":[149,155]},{\"text\":\"Putin\",\"indices\":[195,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1010\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[204,211]},{\"text\":\"BBNaijaS7\",\"indices\":[213,223]},{\"text\":\"BBNaija\",\"indices\":[225,233]},{\"text\":\"Chelsea\",\"indices\":[235,243]},{\"text\":\"AtikuOkowa2023\",\"indices\":[245,260]},{\"text\":\"Tinubu\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[33,39]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[163,178]},{\"screen_name\":\"IAOkowa\",\"name\":\"Dr. Ifeanyi Arthur Okowa\",\"id\":1026733681912758273,\"id_str\":\"1026733681912758273\",\"indices\":[179,187]},{\"screen_name\":\"Ecowas4atiku23\",\"name\":\"Ecowas4atiku\",\"id\":1098177146386829313,\"id_str\":\"1098177146386829313\",\"indices\":[188,203]}],\"urls\":[],\"media\":[{\"id\":1554745603615252480,\"id_str\":\"1554745603615252480\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"url\":\"https:\\/\\/t.co\\/tj6Iz3obts\",\"display_url\":\"pic.twitter.com\\/tj6Iz3obts\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuel_atser\\/status\\/1554745680635338754\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"1011\":{\"hashtags\":[{\"text\":\"ToxicByOjaDaddy\",\"indices\":[170,186]},{\"text\":\"Pelosi\",\"indices\":[187,194]},{\"text\":\"helicopter\",\"indices\":[195,206]},{\"text\":\"LoveIsland2022\",\"indices\":[207,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OjaDaddy7\",\"name\":\"Ojadaddi\",\"id\":1246161298292977665,\"id_str\":\"1246161298292977665\",\"indices\":[0,10]},{\"screen_name\":\"Se_unofficial\",\"name\":\"Se\\u2019un\",\"id\":926552993658372096,\"id_str\":\"926552993658372096\",\"indices\":[14,28]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S7kMwohQM4\",\"expanded_url\":\"https:\\/\\/youtu.be\\/BYl6AgDuUJM\",\"display_url\":\"youtu.be\\/BYl6AgDuUJM\",\"indices\":[145,168]}],\"media\":[{\"id\":1554745383775096833,\"id_str\":\"1554745383775096833\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"url\":\"https:\\/\\/t.co\\/7y4Kb7qmrv\",\"display_url\":\"pic.twitter.com\\/7y4Kb7qmrv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobzyeasy\\/status\\/1554745475730968580\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1012\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"UkraineRussiaWar\",\"indices\":[157,174]},{\"text\":\"ChinaTaiwan\",\"indices\":[175,187]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[188,210]},{\"text\":\"abujaRTBOT\",\"indices\":[211,222]},{\"text\":\"Chelsea\",\"indices\":[223,231]},{\"text\":\"ASUU\",\"indices\":[232,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MineralSorcerer\",\"name\":\"Solid Mineral Sorcerer\",\"id\":1545418862845476864,\"id_str\":\"1545418862845476864\",\"indices\":[36,52]}],\"urls\":[],\"media\":[{\"id\":1554745248693338112,\"id_str\":\"1554745248693338112\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"url\":\"https:\\/\\/t.co\\/tP7gEqnV9g\",\"display_url\":\"pic.twitter.com\\/tP7gEqnV9g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MineralSorcerer\\/status\\/1554745332243767296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":640,\"resize\":\"fit\"}}}]},\"1013\":{\"hashtags\":[{\"text\":\"writerscommunity\",\"indices\":[32,49]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"helicopter\",\"indices\":[58,69]},{\"text\":\"iamwriting\",\"indices\":[70,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1014\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mn7ZA7TbpO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sfc_talk\\/status\\/1554498675229216768\",\"display_url\":\"twitter.com\\/sfc_talk\\/statu\\u2026\",\"indices\":[281,304]}]},\"1015\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[72,78]},{\"text\":\"oesym\",\"indices\":[79,85]},{\"text\":\"famemma15\",\"indices\":[86,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"relationships\",\"indices\":[105,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1016\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[145,152]},{\"text\":\"PeterObi2023\",\"indices\":[154,167]},{\"text\":\"wcw\",\"indices\":[169,173]},{\"text\":\"asuu\",\"indices\":[174,179]},{\"text\":\"Ukraine\",\"indices\":[181,189]},{\"text\":\"chiomaonyekwere\",\"indices\":[191,207]},{\"text\":\"GoldMedal\",\"indices\":[209,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554743513115500544,\"id_str\":\"1554743513115500544\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"url\":\"https:\\/\\/t.co\\/PWYGApAmQx\",\"display_url\":\"pic.twitter.com\\/PWYGApAmQx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Victorbajju_30\\/status\\/1554743515757903873\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":660,\"resize\":\"fit\"}}}]},\"1017\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"wike\",\"indices\":[116,121]},{\"text\":\"MONEY\",\"indices\":[122,128]},{\"text\":\"Ukraine\",\"indices\":[129,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554743252850556929,\"id_str\":\"1554743252850556929\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1018\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[138,146]},{\"text\":\"BBNajia\",\"indices\":[151,159]},{\"text\":\"Pelosi\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OTHPfDhA0A\",\"expanded_url\":\"http:\\/\\/www.rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[113,136]}],\"media\":[{\"id\":1554741626064539649,\"id_str\":\"1554741626064539649\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"url\":\"https:\\/\\/t.co\\/2zQh46RCfU\",\"display_url\":\"pic.twitter.com\\/2zQh46RCfU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554741633626816513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"1019\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[28,36]},{\"text\":\"Pelosi\",\"indices\":[37,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554739948124880896,\"id_str\":\"1554739948124880896\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"url\":\"https:\\/\\/t.co\\/A5RIiMeVU0\",\"display_url\":\"pic.twitter.com\\/A5RIiMeVU0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mclioon\\/status\\/1554740126550560773\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1020\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[86,97]},{\"text\":\"WWIII\",\"indices\":[98,104]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[105,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554739912653643776,\"id_str\":\"1554739912653643776\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"url\":\"https:\\/\\/t.co\\/gWlbMkTYBc\",\"display_url\":\"pic.twitter.com\\/gWlbMkTYBc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trouve_ng\\/status\\/1554739926125760512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1021\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"China\",\"indices\":[133,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J8wIhsxckV\",\"expanded_url\":\"https:\\/\\/investogist.com\\/chinas-drills-violates-our-sovereignty-amounts-to-air-and-sea-blockade-taiwans-defence-ministry\\/\",\"display_url\":\"investogist.com\\/chinas-drills-\\u2026\",\"indices\":[101,124]}]},\"1022\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[111,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1023\":{\"hashtags\":[{\"text\":\"EndSarsNow\",\"indices\":[130,141]},{\"text\":\"surprise\",\"indices\":[143,152]},{\"text\":\"cakes\",\"indices\":[154,160]},{\"text\":\"RedVelvet\",\"indices\":[162,172]},{\"text\":\"Pelosi\",\"indices\":[174,181]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[183,208]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yFlgAbP7Ot\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348101598722\",\"display_url\":\"wa.me\\/c\\/2348101598722\",\"indices\":[105,128]}],\"media\":[{\"id\":1554738864350167041,\"id_str\":\"1554738864350167041\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"1024\":{\"hashtags\":[{\"text\":\"WIN\",\"indices\":[16,20]},{\"text\":\"yellowTux\",\"indices\":[24,34]},{\"text\":\"BBNajiaS7\",\"indices\":[41,51]},{\"text\":\"Bestfit\",\"indices\":[52,60]},{\"text\":\"Pelosi\",\"indices\":[61,68]},{\"text\":\"LoveIsland2022\",\"indices\":[69,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554738541938327552,\"id_str\":\"1554738541938327552\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKd27XwAAojnr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKd27XwAAojnr.jpg\",\"url\":\"https:\\/\\/t.co\\/IjwqYpiRBY\",\"display_url\":\"pic.twitter.com\\/IjwqYpiRBY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JadonDashery\\/status\\/1554738550238838786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"1025\":{\"hashtags\":[{\"text\":\"2023Elections\",\"indices\":[168,182]},{\"text\":\"NigeriaDecides2023\",\"indices\":[184,203]},{\"text\":\"Pelosi\",\"indices\":[204,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554737719577821184,\"id_str\":\"1554737719577821184\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"url\":\"https:\\/\\/t.co\\/2cCusH98nf\",\"display_url\":\"pic.twitter.com\\/2cCusH98nf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__osinachi__\\/status\\/1554737862293209089\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"1026\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"helicopter\",\"indices\":[65,76]},{\"text\":\"BlueJays\",\"indices\":[77,86]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[87,105]},{\"text\":\"LoveIsland2022\",\"indices\":[106,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[122,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1027\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[191,199]},{\"text\":\"Bread\",\"indices\":[200,206]},{\"text\":\"Hermes\",\"indices\":[207,214]},{\"text\":\"obituaries\",\"indices\":[215,226]},{\"text\":\"Ramsdale\",\"indices\":[227,236]},{\"text\":\"China\",\"indices\":[237,243]},{\"text\":\"Pelosi\",\"indices\":[244,251]},{\"text\":\"helicopter\",\"indices\":[252,263]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735959383674882,\"id_str\":\"1554735959383674882\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"1028\":{\"hashtags\":[{\"text\":\"Datti\",\"indices\":[168,174]},{\"text\":\"saraki\",\"indices\":[175,182]},{\"text\":\"sabinus\",\"indices\":[212,220]},{\"text\":\"BBNaija\",\"indices\":[221,229]},{\"text\":\"Pelosi\",\"indices\":[230,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735874017054722,\"id_str\":\"1554735874017054722\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"url\":\"https:\\/\\/t.co\\/05qgfyGbKI\",\"display_url\":\"pic.twitter.com\\/05qgfyGbKI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stancity3\\/status\\/1554735948960784384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}}}]},\"1029\":{\"hashtags\":[{\"text\":\"Khalid\",\"indices\":[56,63]},{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"Nigerrepublic\",\"indices\":[72,86]},{\"text\":\"Ebubeagu\",\"indices\":[87,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"NNPC\",\"indices\":[106,111]},{\"text\":\"Jubril\",\"indices\":[112,119]},{\"text\":\"welcometochelsea\",\"indices\":[120,137]},{\"text\":\"shes40\",\"indices\":[138,145]},{\"text\":\"Jaruma\",\"indices\":[146,153]},{\"text\":\"Daniella\",\"indices\":[154,163]},{\"text\":\"obituaries\",\"indices\":[164,175]},{\"text\":\"2Naira\",\"indices\":[176,183]},{\"text\":\"EmmanuelUmoh\",\"indices\":[184,197]},{\"text\":\"BeautyWithBrains\",\"indices\":[198,215]},{\"text\":\"Asaba\",\"indices\":[216,222]},{\"text\":\"Shameless\",\"indices\":[223,233]},{\"text\":\"Wizkid\",\"indices\":[234,241]},{\"text\":\"caterefe\",\"indices\":[242,251]},{\"text\":\"Machala\",\"indices\":[252,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735937007112194,\"id_str\":\"1554735937007112194\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"url\":\"https:\\/\\/t.co\\/kwr5SYLOaz\",\"display_url\":\"pic.twitter.com\\/kwr5SYLOaz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554735947413176320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1030\":{\"hashtags\":[{\"text\":\"2Naira\",\"indices\":[129,136]},{\"text\":\"Buhari\",\"indices\":[137,144]},{\"text\":\"Racism\",\"indices\":[145,152]},{\"text\":\"Nigerrepublic\",\"indices\":[153,167]},{\"text\":\"Jaruma\",\"indices\":[168,175]},{\"text\":\"datti\",\"indices\":[176,182]},{\"text\":\"sabinus\",\"indices\":[183,191]},{\"text\":\"ChinaTaiwan\",\"indices\":[193,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735749492260865,\"id_str\":\"1554735749492260865\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"url\":\"https:\\/\\/t.co\\/B1ILEk1MbJ\",\"display_url\":\"pic.twitter.com\\/B1ILEk1MbJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554735759818620928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":971,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":971,\"resize\":\"fit\"}}}]},\"1031\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[72,79]},{\"text\":\"BlueJays\",\"indices\":[80,89]},{\"text\":\"LoveIsland2022\",\"indices\":[90,105]},{\"text\":\"oesym\",\"indices\":[106,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Yhudiee8\",\"name\":\"Yhudiee\",\"id\":1444149360347033601,\"id_str\":\"1444149360347033601\",\"indices\":[34,43]}],\"urls\":[],\"media\":[{\"id\":1554735436928630784,\"id_str\":\"1554735436928630784\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"url\":\"https:\\/\\/t.co\\/cnV6ldQ2ua\",\"display_url\":\"pic.twitter.com\\/cnV6ldQ2ua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nsikanekanemm\\/status\\/1554735453118529537\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1032\":{\"hashtags\":[{\"text\":\"classsuites\",\"indices\":[153,165]},{\"text\":\"hotelsandapartmentsinlagos\",\"indices\":[166,193]},{\"text\":\"apartmentsinlagos\",\"indices\":[194,212]},{\"text\":\"LoveIsland2022\",\"indices\":[213,228]},{\"text\":\"hotelsinnigeria\",\"indices\":[229,245]},{\"text\":\"accomodationinlagos\",\"indices\":[246,266]},{\"text\":\"Pelosi\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735431408914432,\"id_str\":\"1554735431408914432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"url\":\"https:\\/\\/t.co\\/pOOwEAlBEc\",\"display_url\":\"pic.twitter.com\\/pOOwEAlBEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/classsuitehotel\\/status\\/1554735443136192512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"}}}]},\"1033\":{\"hashtags\":[{\"text\":\"Flashback\",\"indices\":[0,10]},{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"BBNaija\",\"indices\":[216,224]},{\"text\":\"BBNajiaS7\",\"indices\":[225,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554734807376076801,\"id_str\":\"1554734807376076801\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"url\":\"https:\\/\\/t.co\\/EUng3m4l60\",\"display_url\":\"pic.twitter.com\\/EUng3m4l60\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554734810131734530\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":551,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":553,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":553,\"resize\":\"fit\"}}}]},\"1034\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[68,76]},{\"text\":\"Badminton\",\"indices\":[78,88]},{\"text\":\"Pelosi\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554734369297891328,\"id_str\":\"1554734369297891328\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"url\":\"https:\\/\\/t.co\\/pCuQbu6Ysx\",\"display_url\":\"pic.twitter.com\\/pCuQbu6Ysx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingrickky23\\/status\\/1554734371969662976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"small\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"large\":{\"w\":607,\"h\":595,\"resize\":\"fit\"}}}]},\"1035\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"helicopter\",\"indices\":[144,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554734270551400448,\"id_str\":\"1554734270551400448\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"url\":\"https:\\/\\/t.co\\/R1s7OnW7dm\",\"display_url\":\"pic.twitter.com\\/R1s7OnW7dm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JobayeResources\\/status\\/1554734274032590850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1636,\"h\":2046,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1036\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[93,103]},{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"Tielemans\",\"indices\":[119,129]},{\"text\":\"Fulani\",\"indices\":[130,137]},{\"text\":\"ASUU\",\"indices\":[138,143]},{\"text\":\"Roma\",\"indices\":[144,149]},{\"text\":\"shes40\",\"indices\":[150,157]},{\"text\":\"wordwarIII\",\"indices\":[158,169]},{\"text\":\"Naughty\",\"indices\":[170,178]},{\"text\":\"Cubana\",\"indices\":[179,186]},{\"text\":\"racism\",\"indices\":[187,194]},{\"text\":\"OKOWA\",\"indices\":[195,201]},{\"text\":\"welcometochelsea\",\"indices\":[202,219]},{\"text\":\"Emerson\",\"indices\":[220,228]},{\"text\":\"Bokoharam\",\"indices\":[229,239]},{\"text\":\"Taiwanchina\",\"indices\":[240,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"BBNajia\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Limosiris1\",\"name\":\"Limosiris\",\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"indices\":[20,31]}],\"urls\":[],\"media\":[{\"id\":1554733300681478144,\"id_str\":\"1554733300681478144\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"url\":\"https:\\/\\/t.co\\/svknsySMh6\",\"display_url\":\"pic.twitter.com\\/svknsySMh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554733314564554752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1037\":{\"hashtags\":[{\"text\":\"Amapiano\",\"indices\":[30,39]},{\"text\":\"Pelosi\",\"indices\":[40,47]},{\"text\":\"WonderWoman\",\"indices\":[48,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554732684127117312,\"id_str\":\"1554732684127117312\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"url\":\"https:\\/\\/t.co\\/xRALFAqC3I\",\"display_url\":\"pic.twitter.com\\/xRALFAqC3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1554733053494403074\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1038\":{\"hashtags\":[{\"text\":\"shortfilm\",\"indices\":[69,79]},{\"text\":\"found\",\"indices\":[80,86]},{\"text\":\"festivals\",\"indices\":[87,97]},{\"text\":\"award\",\"indices\":[98,104]},{\"text\":\"taiwan\",\"indices\":[105,112]},{\"text\":\"portable\",\"indices\":[113,122]},{\"text\":\"china\",\"indices\":[123,129]},{\"text\":\"khalid\",\"indices\":[130,137]},{\"text\":\"asuu\",\"indices\":[138,143]},{\"text\":\"WorldWarIII\",\"indices\":[144,156]},{\"text\":\"shes40\",\"indices\":[157,164]},{\"text\":\"sudan\",\"indices\":[166,172]},{\"text\":\"brighton\",\"indices\":[173,182]},{\"text\":\"sabinus\",\"indices\":[183,191]},{\"text\":\"wizkid\",\"indices\":[192,199]},{\"text\":\"machala\",\"indices\":[200,208]},{\"text\":\"carterefe\",\"indices\":[209,219]},{\"text\":\"davido\",\"indices\":[220,227]},{\"text\":\"tinubu\",\"indices\":[228,235]},{\"text\":\"obituary\",\"indices\":[236,245]},{\"text\":\"datti\",\"indices\":[246,252]},{\"text\":\"BurnaBoy\",\"indices\":[253,262]},{\"text\":\"Modella\",\"indices\":[263,271]},{\"text\":\"BBNaija\",\"indices\":[272,280]},{\"text\":\"Amaka\",\"indices\":[281,287]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554731615561162752,\"id_str\":\"1554731615561162752\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"url\":\"https:\\/\\/t.co\\/DWwoN9Sc4V\",\"display_url\":\"pic.twitter.com\\/DWwoN9Sc4V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/6fiveEmpire\\/status\\/1554732574689443840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"1039\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[206,212]},{\"text\":\"Pelosi\",\"indices\":[213,220]},{\"text\":\"Reparations\",\"indices\":[221,233]},{\"text\":\"Taiwan\",\"indices\":[234,241]},{\"text\":\"Heartsofoak\",\"indices\":[242,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554732320195809282,\"id_str\":\"1554732320195809282\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"url\":\"https:\\/\\/t.co\\/dzITwqWjp7\",\"display_url\":\"pic.twitter.com\\/dzITwqWjp7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554732329196740609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1040\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[241,248]},{\"text\":\"voiceactor\",\"indices\":[249,260]},{\"text\":\"voiceover\",\"indices\":[261,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554731444085444610,\"id_str\":\"1554731444085444610\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"url\":\"https:\\/\\/t.co\\/bN4xCQw4No\",\"display_url\":\"pic.twitter.com\\/bN4xCQw4No\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialOSYB\\/status\\/1554731771115225088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}}}]},\"1041\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[233,241]},{\"text\":\"Pelosi\",\"indices\":[247,254]},{\"text\":\"thiefnubu\",\"indices\":[255,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554730166420733952,\"id_str\":\"1554730166420733952\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"url\":\"https:\\/\\/t.co\\/7FooxwIVkO\",\"display_url\":\"pic.twitter.com\\/7FooxwIVkO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554730661495410688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"1042\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[106,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554730198003843074,\"id_str\":\"1554730198003843074\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"url\":\"https:\\/\\/t.co\\/1VYFNTg3hP\",\"display_url\":\"pic.twitter.com\\/1VYFNTg3hP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jugo_kc\\/status\\/1554730211597586433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1043\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"China\",\"indices\":[85,91]},{\"text\":\"Pelosi\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D5JkwYXMuh\",\"expanded_url\":\"https:\\/\\/investogist.com\\/is-taiwan-a-part-of-china-a-short-history-of-taiwan\\/\",\"display_url\":\"investogist.com\\/is-taiwan-a-pa\\u2026\",\"indices\":[53,76]}]},\"1044\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ry22NVKkUJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGenesix\\/status\\/1554725030566699008\",\"display_url\":\"twitter.com\\/MrGenesix\\/stat\\u2026\",\"indices\":[46,69]}]},\"1045\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"Pelosi\",\"indices\":[24,31]},{\"text\":\"China\",\"indices\":[32,38]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[39,47]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[48,71]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[72,93]},{\"text\":\"BlueJays\",\"indices\":[94,103]},{\"text\":\"helicopter\",\"indices\":[104,115]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[116,134]},{\"text\":\"BadmintonMalaysia\",\"indices\":[135,153]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[154,161]},{\"text\":\"MONEY\",\"indices\":[162,168]},{\"text\":\"UkraineRussiaWar\",\"indices\":[169,186]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[187,212]},{\"text\":\"Wizkid\",\"indices\":[213,220]},{\"text\":\"SABCNews\",\"indices\":[221,230]},{\"text\":\"sabinus\",\"indices\":[231,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554728882691051521,\"id_str\":\"1554728882691051521\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"url\":\"https:\\/\\/t.co\\/bINlXjK7kw\",\"display_url\":\"pic.twitter.com\\/bINlXjK7kw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1554729093857435649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}}}]},\"1046\":{\"hashtags\":[{\"text\":\"Yorubas\",\"indices\":[43,51]},{\"text\":\"samomatseye\",\"indices\":[52,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"sabinus\",\"indices\":[73,81]},{\"text\":\"Datti\",\"indices\":[82,88]},{\"text\":\"Obidatti2023\",\"indices\":[89,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554728955416088577,\"id_str\":\"1554728955416088577\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"url\":\"https:\\/\\/t.co\\/dPgOSI5xlD\",\"display_url\":\"pic.twitter.com\\/dPgOSI5xlD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IgweRichard8\\/status\\/1554728958880612353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":693,\"resize\":\"fit\"}}}]},\"1047\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[210,217]},{\"text\":\"Taiwan\",\"indices\":[218,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[11,19]}],\"urls\":[]},\"1048\":{\"hashtags\":[{\"text\":\"BlueJays\",\"indices\":[55,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"goodmorning\",\"indices\":[73,85]},{\"text\":\"wednesdaythought\",\"indices\":[86,103]},{\"text\":\"MONEY\",\"indices\":[104,110]},{\"text\":\"UkraineRussiaWar\",\"indices\":[111,128]},{\"text\":\"BadmintonMalaysia\",\"indices\":[129,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554726832318054400,\"id_str\":\"1554726832318054400\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"url\":\"https:\\/\\/t.co\\/00jFWrl2SL\",\"display_url\":\"pic.twitter.com\\/00jFWrl2SL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554726841772023808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1049\":{\"hashtags\":[{\"text\":\"wednesdaythought\",\"indices\":[115,132]},{\"text\":\"WednesdayMotivation\",\"indices\":[133,153]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[155,176]},{\"text\":\"China\",\"indices\":[177,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]},{\"text\":\"NewMusic\",\"indices\":[192,201]},{\"text\":\"MONEY\",\"indices\":[202,208]},{\"text\":\"BlueJays\",\"indices\":[209,218]},{\"text\":\"Ukraine\",\"indices\":[219,227]},{\"text\":\"Pelosi\",\"indices\":[228,235]},{\"text\":\"hiphopculture\",\"indices\":[236,250]},{\"text\":\"Nigerianmusic\",\"indices\":[251,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XxPcFL25r1\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/kyng-izy\\/song\\/hitting-different-freestyle\",\"display_url\":\"audiomack.com\\/kyng-izy\\/song\\/\\u2026\",\"indices\":[90,113]}],\"media\":[{\"id\":1554726372932833280,\"id_str\":\"1554726372932833280\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"url\":\"https:\\/\\/t.co\\/GCVr1rxFO5\",\"display_url\":\"pic.twitter.com\\/GCVr1rxFO5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iamkyngizy\\/status\\/1554726590654959616\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":979,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1044,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":555,\"resize\":\"fit\"}}}]},\"1050\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"CORxFLA\",\"indices\":[154,162]},{\"text\":\"Pelosi\",\"indices\":[163,170]},{\"text\":\"China\",\"indices\":[171,177]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[178,203]},{\"text\":\"\\u062d\\u0645\\u062f\\u0627\\u0644\\u0644\\u0647\",\"indices\":[204,212]},{\"text\":\"MAIDinMALACANANG\",\"indices\":[213,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725930014236674,\"id_str\":\"1554725930014236674\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"url\":\"https:\\/\\/t.co\\/QYu1R1lLjy\",\"display_url\":\"pic.twitter.com\\/QYu1R1lLjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554726355853627394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1051\":{\"hashtags\":[{\"text\":\"architecture\",\"indices\":[136,149]},{\"text\":\"construction\",\"indices\":[150,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725413808742400,\"id_str\":\"1554725413808742400\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"url\":\"https:\\/\\/t.co\\/iBJGDUp0bv\",\"display_url\":\"pic.twitter.com\\/iBJGDUp0bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GbengaAdene\\/status\\/1554725439599435777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":805,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1374,\"resize\":\"fit\"}}}]},\"1052\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"China\",\"indices\":[211,217]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[218,239]},{\"text\":\"helicopter\",\"indices\":[240,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725356984303618,\"id_str\":\"1554725356984303618\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1053\":{\"hashtags\":[{\"text\":\"BigThingsComingThrough\",\"indices\":[99,122]},{\"text\":\"Pelosi\",\"indices\":[123,130]},{\"text\":\"august\",\"indices\":[131,138]},{\"text\":\"AugustWish\",\"indices\":[139,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1054\":{\"hashtags\":[{\"text\":\"UECLQualification\",\"indices\":[33,51]},{\"text\":\"NaijaBet\",\"indices\":[231,240]},{\"text\":\"BoostedOdds\",\"indices\":[241,253]},{\"text\":\"HighestOdds\",\"indices\":[254,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[206,229]}],\"media\":[{\"id\":1554723961283411970,\"id_str\":\"1554723961283411970\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"url\":\"https:\\/\\/t.co\\/te9gZGngXO\",\"display_url\":\"pic.twitter.com\\/te9gZGngXO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554723970548699137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1055\":{\"hashtags\":[{\"text\":\"BlueJays\",\"indices\":[91,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"MONEY\",\"indices\":[132,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5xpaEHg8ce\",\"expanded_url\":\"https:\\/\\/youtu.be\\/E9vSwah0g6M\",\"display_url\":\"youtu.be\\/E9vSwah0g6M\",\"indices\":[140,163]}]},\"1056\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"Niger\",\"indices\":[133,139]},{\"text\":\"Emily\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1057\":{\"hashtags\":[{\"text\":\"structures\",\"indices\":[48,59]},{\"text\":\"build\",\"indices\":[60,66]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"lagos\",\"indices\":[75,81]},{\"text\":\"nigeria\",\"indices\":[82,90]},{\"text\":\"lekki\",\"indices\":[91,97]},{\"text\":\"construction\",\"indices\":[98,111]},{\"text\":\"build\",\"indices\":[112,118]},{\"text\":\"projects\",\"indices\":[119,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554721485113147392,\"id_str\":\"1554721485113147392\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"url\":\"https:\\/\\/t.co\\/pCr4hW9X7X\",\"display_url\":\"pic.twitter.com\\/pCr4hW9X7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1554721500996984836\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"}}}]},\"1058\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[76,101]},{\"text\":\"BBNajia\",\"indices\":[102,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554720324557701121,\"id_str\":\"1554720324557701121\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"url\":\"https:\\/\\/t.co\\/EK0Gc5UCOx\",\"display_url\":\"pic.twitter.com\\/EK0Gc5UCOx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1554720326709288960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":467,\"resize\":\"fit\"}}}]},\"1059\":{\"hashtags\":[{\"text\":\"government\",\"indices\":[98,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[118,139]},{\"text\":\"EndSARS\",\"indices\":[140,148]},{\"text\":\"NigeriaDecides2023\",\"indices\":[149,168]},{\"text\":\"vote\",\"indices\":[169,174]},{\"text\":\"BBNaija\",\"indices\":[175,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1060\":{\"hashtags\":[{\"text\":\"UCLQualifiers\",\"indices\":[37,51]},{\"text\":\"NaijaBet\",\"indices\":[236,245]},{\"text\":\"MONEY\",\"indices\":[246,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"HighestOdds\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[211,234]}],\"media\":[{\"id\":1554718930496897026,\"id_str\":\"1554718930496897026\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"url\":\"https:\\/\\/t.co\\/026mVX7MRE\",\"display_url\":\"pic.twitter.com\\/026mVX7MRE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554718940496105473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"1061\":{\"hashtags\":[{\"text\":\"2naira\",\"indices\":[75,82]},{\"text\":\"shes40\",\"indices\":[83,90]},{\"text\":\"sabinus\",\"indices\":[91,99]},{\"text\":\"Osuofia\",\"indices\":[115,123]},{\"text\":\"Pelosi\",\"indices\":[124,131]},{\"text\":\"CloserWithDonBelle\",\"indices\":[132,151]},{\"text\":\"ASUU\",\"indices\":[152,157]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BEEJAYSPECIAL_C\",\"name\":\"Beejayspecial_comedy\",\"id\":1060922787425120256,\"id_str\":\"1060922787425120256\",\"indices\":[18,34]},{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[35,45]},{\"screen_name\":\"mrmacaronii\",\"name\":\"MrMacaroni\",\"id\":302413828,\"id_str\":\"302413828\",\"indices\":[46,58]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[59,74]}],\"urls\":[],\"media\":[{\"id\":1554716543963041794,\"id_str\":\"1554716543963041794\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"url\":\"https:\\/\\/t.co\\/PtDVpyIb3c\",\"display_url\":\"pic.twitter.com\\/PtDVpyIb3c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BEEJAYSPECIAL_C\\/status\\/1554717766523015169\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1062\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[38,41]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"China\",\"indices\":[86,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1063\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"China\",\"indices\":[70,76]},{\"text\":\"MONEY\",\"indices\":[77,83]},{\"text\":\"NancyPelosi\",\"indices\":[84,96]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[97,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554717357368643585,\"id_str\":\"1554717357368643585\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"url\":\"https:\\/\\/t.co\\/ApThT4W86Q\",\"display_url\":\"pic.twitter.com\\/ApThT4W86Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1554717574407020547\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":352,\"resize\":\"fit\"}}}]},\"1064\":{\"hashtags\":[{\"text\":\"Live\",\"indices\":[80,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1065\":{\"hashtags\":[{\"text\":\"NFT\",\"indices\":[70,74]},{\"text\":\"Pelosi\",\"indices\":[145,152]},{\"text\":\"NFTcollections\",\"indices\":[153,168]},{\"text\":\"NFTCommmunity\",\"indices\":[169,183]},{\"text\":\"nftcollector\",\"indices\":[184,197]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[226,234]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0L9xVWRVfW\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/ethereum\\/0x495f947276749ce646f68ac8c248420045cb7b5e\\/20408177402283559812004637536922274245294874380593302696799546581725512466433\\/\",\"display_url\":\"opensea.io\\/assets\\/ethereu\\u2026\",\"indices\":[198,221]}],\"media\":[{\"id\":1554716346495148033,\"id_str\":\"1554716346495148033\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"url\":\"https:\\/\\/t.co\\/uFYpJZTqZn\",\"display_url\":\"pic.twitter.com\\/uFYpJZTqZn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Nation22\\/status\\/1554716381962293253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"1066\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"Pelosi\",\"indices\":[61,68]},{\"text\":\"China\",\"indices\":[69,75]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[76,84]},{\"text\":\"MONEY\",\"indices\":[85,91]},{\"text\":\"BBNaija\",\"indices\":[92,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554715093241397248,\"id_str\":\"1554715093241397248\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"url\":\"https:\\/\\/t.co\\/p19mVRa2AF\",\"display_url\":\"pic.twitter.com\\/p19mVRa2AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554715101596467202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":600,\"resize\":\"fit\"}}}]},\"1067\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[256,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"BBNajia\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554714723341504512,\"id_str\":\"1554714723341504512\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"url\":\"https:\\/\\/t.co\\/3NV2jjlWqk\",\"display_url\":\"pic.twitter.com\\/3NV2jjlWqk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714732828950531\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"1068\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[113,120]},{\"text\":\"China\",\"indices\":[121,127]},{\"text\":\"CloserWithDonBelle\",\"indices\":[128,147]},{\"text\":\"BBNaija\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"isrealdmw\",\"name\":\"@ISREALDMW\",\"id\":989702068821782528,\"id_str\":\"989702068821782528\",\"indices\":[93,103]}],\"urls\":[],\"media\":[{\"id\":1554714291810484224,\"id_str\":\"1554714291810484224\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"url\":\"https:\\/\\/t.co\\/HcavykGv4z\",\"display_url\":\"pic.twitter.com\\/HcavykGv4z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714297980395521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"1069\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"Pelosi\",\"indices\":[143,150]},{\"text\":\"China\",\"indices\":[151,157]},{\"text\":\"helicopter\",\"indices\":[158,169]},{\"text\":\"BBNaija\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"timayatimaya\",\"name\":\"Timaya\",\"id\":148937517,\"id_str\":\"148937517\",\"indices\":[120,133]}],\"urls\":[],\"media\":[{\"id\":1554714055516033024,\"id_str\":\"1554714055516033024\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"url\":\"https:\\/\\/t.co\\/nIr7rFMsXP\",\"display_url\":\"pic.twitter.com\\/nIr7rFMsXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714059471200258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"1070\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"Pelosi\",\"indices\":[232,239]},{\"text\":\"China\",\"indices\":[240,246]},{\"text\":\"MONEY\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554713627369816064,\"id_str\":\"1554713627369816064\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"url\":\"https:\\/\\/t.co\\/BtUY195DPp\",\"display_url\":\"pic.twitter.com\\/BtUY195DPp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554713631694233600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"1071\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"China\",\"indices\":[117,123]},{\"text\":\"helicopter\",\"indices\":[124,135]},{\"text\":\"HelicopterCrash\",\"indices\":[136,152]},{\"text\":\"BBNaija\",\"indices\":[153,161]},{\"text\":\"BBNaija7\",\"indices\":[162,171]},{\"text\":\"LALISA\",\"indices\":[172,179]},{\"text\":\"adventure\",\"indices\":[180,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Mc7MtdXw7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\",\"display_url\":\"twitter.com\\/Houseofmolecul\\u2026\",\"indices\":[191,214]}]},\"1072\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"China\",\"indices\":[48,54]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[55,72]},{\"text\":\"Buhari\",\"indices\":[73,80]},{\"text\":\"GoodGovernance\",\"indices\":[81,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0TNrKS9IkU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Preciou38243071\\/status\\/1554488804538519555\",\"display_url\":\"twitter.com\\/Preciou3824307\\u2026\",\"indices\":[97,120]}]},\"1073\":{\"hashtags\":[{\"text\":\"FalzKneeDown\",\"indices\":[78,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[108,114]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[115,123]},{\"text\":\"LALISA\",\"indices\":[124,131]},{\"text\":\"CloserWithDonBelle\",\"indices\":[132,151]},{\"text\":\"MONEY\",\"indices\":[152,158]},{\"text\":\"Ukraine\",\"indices\":[159,167]},{\"text\":\"sabinus\",\"indices\":[168,176]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1074\":{\"hashtags\":[{\"text\":\"OBIDIENT\",\"indices\":[38,47]},{\"text\":\"Taiwan\",\"indices\":[48,55]},{\"text\":\"CloserWithDonBelle\",\"indices\":[56,75]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[76,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554711438538711040,\"id_str\":\"1554711438538711040\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"url\":\"https:\\/\\/t.co\\/XpJ4IMt8Ke\",\"display_url\":\"pic.twitter.com\\/XpJ4IMt8Ke\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krazy_bankr\\/status\\/1554711445836816384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":363,\"resize\":\"fit\"}}}]},\"1075\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"China\",\"indices\":[39,45]},{\"text\":\"anime\",\"indices\":[46,52]},{\"text\":\"animation\",\"indices\":[53,63]},{\"text\":\"lookdev\",\"indices\":[64,72]},{\"text\":\"3d\",\"indices\":[73,76]},{\"text\":\"3Danimation\",\"indices\":[77,89]},{\"text\":\"autodesk\",\"indices\":[90,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554710889399459841,\"id_str\":\"1554710889399459841\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"url\":\"https:\\/\\/t.co\\/w9hnwCxg17\",\"display_url\":\"pic.twitter.com\\/w9hnwCxg17\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Onos_bee\\/status\\/1554710920110252032\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1076\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"NancyPelosi\",\"indices\":[117,129]},{\"text\":\"JusticeForAlikaOgorchukwu\",\"indices\":[130,156]},{\"text\":\"ChelseaFC\",\"indices\":[157,167]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[168,193]},{\"text\":\"Obidatti2023\",\"indices\":[194,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a0j6A1nMAQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\",\"display_url\":\"twitter.com\\/DavidHundeyin\\/\\u2026\",\"indices\":[208,231]}]},\"1077\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"pelositaiwan\",\"indices\":[205,218]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"1078\":{\"hashtags\":[{\"text\":\"GODDID\",\"indices\":[70,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"China\",\"indices\":[86,92]},{\"text\":\"EndSARS\",\"indices\":[123,131]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"djkhaled\",\"name\":\"DJ KHALED\",\"id\":27673684,\"id_str\":\"27673684\",\"indices\":[60,69]},{\"screen_name\":\"PastorEAAdeboye\",\"name\":\"Pastor Adeboye\",\"id\":235582329,\"id_str\":\"235582329\",\"indices\":[93,109]},{\"screen_name\":\"endsarsbot_\",\"name\":\"Official #EndSARS Bot\",\"id\":1154794876510396419,\"id_str\":\"1154794876510396419\",\"indices\":[110,122]}],\"urls\":[]},\"1079\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"BBNaija\",\"indices\":[46,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554708357851774976,\"id_str\":\"1554708357851774976\",\"indices\":[55,78],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"url\":\"https:\\/\\/t.co\\/yPLk1iZ8xb\",\"display_url\":\"pic.twitter.com\\/yPLk1iZ8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Highkay_Store\\/status\\/1554708959176675329\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1080\":{\"hashtags\":[{\"text\":\"Popular\",\"indices\":[47,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"China\",\"indices\":[72,78]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[79,87]},{\"text\":\"LALISA\",\"indices\":[88,95]},{\"text\":\"CloserWithDonBelle\",\"indices\":[96,115]},{\"text\":\"helicopter\",\"indices\":[116,127]},{\"text\":\"MONEY\",\"indices\":[128,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"Ukraine\",\"indices\":[154,162]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[163,188]},{\"text\":\"NancyPelosi\",\"indices\":[189,201]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[202,220]},{\"text\":\"mbstorm\",\"indices\":[221,229]},{\"text\":\"sabinus\",\"indices\":[230,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554708457663627265,\"id_str\":\"1554708457663627265\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"url\":\"https:\\/\\/t.co\\/PX6DaVUJWp\",\"display_url\":\"pic.twitter.com\\/PX6DaVUJWp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brownsonmfon5\\/status\\/1554708618041298944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"}}}]},\"1081\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"China\",\"indices\":[117,123]},{\"text\":\"Pelosi\",\"indices\":[124,131]},{\"text\":\"pelositaiwan\",\"indices\":[132,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554707911347437568,\"id_str\":\"1554707911347437568\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"url\":\"https:\\/\\/t.co\\/wVaAVdwSYq\",\"display_url\":\"pic.twitter.com\\/wVaAVdwSYq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554707960097828864\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":818,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":872,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":463,\"h\":680,\"resize\":\"fit\"}}}]},\"1082\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[88,96]},{\"text\":\"Jaruma\",\"indices\":[97,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[113,121]},{\"text\":\"Pelosi\",\"indices\":[122,129]},{\"text\":\"LALISA\",\"indices\":[130,137]},{\"text\":\"CloserWithDonBelle\",\"indices\":[138,157]},{\"text\":\"helicopter\",\"indices\":[158,169]},{\"text\":\"MONEY\",\"indices\":[170,176]},{\"text\":\"Ukraine\",\"indices\":[177,185]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[186,204]},{\"text\":\"mbstorm\",\"indices\":[205,213]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[214,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1083\":{\"hashtags\":[{\"text\":\"NEAT\",\"indices\":[103,108]},{\"text\":\"cryptocurrency\",\"indices\":[109,124]},{\"text\":\"Pelosi\",\"indices\":[125,132]}],\"symbols\":[{\"text\":\"neat\",\"indices\":[44,49]}],\"user_mentions\":[{\"screen_name\":\"Neatioking\",\"name\":\"Neatioking\\ud83d\\udc51\\u2728\",\"id\":1431759575523397632,\"id_str\":\"1431759575523397632\",\"indices\":[0,11]},{\"screen_name\":\"neat_io\",\"name\":\"Neatio\",\"id\":1355253149897007110,\"id_str\":\"1355253149897007110\",\"indices\":[12,20]}],\"urls\":[]},\"1084\":{\"hashtags\":[{\"text\":\"MONEY\",\"indices\":[161,167]},{\"text\":\"parttimejob\",\"indices\":[168,180]},{\"text\":\"womenempowerment\",\"indices\":[181,198]},{\"text\":\"Pelosi\",\"indices\":[199,206]},{\"text\":\"LALISA\",\"indices\":[207,214]},{\"text\":\"CloserWithDonBelle\",\"indices\":[215,234]},{\"text\":\"Ukraine\",\"indices\":[235,243]},{\"text\":\"mbstorm\",\"indices\":[244,252]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TECNOMobileNG\",\"name\":\"TECNO Mobile Nigeria\",\"id\":989869530,\"id_str\":\"989869530\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TZulVTSfrW\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\\/help-us-fundraise\",\"display_url\":\"humanaid.org.ng\\/help-us-fundra\\u2026\",\"indices\":[136,159]}],\"media\":[{\"id\":1554706425024241672,\"id_str\":\"1554706425024241672\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"url\":\"https:\\/\\/t.co\\/qIoG1x8dre\",\"display_url\":\"pic.twitter.com\\/qIoG1x8dre\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1554706442460037120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"}}}]},\"1085\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"Obituary\",\"indices\":[175,184]},{\"text\":\"samomatseye\",\"indices\":[185,197]},{\"text\":\"China\",\"indices\":[198,204]},{\"text\":\"speedDatingwithSelema\",\"indices\":[215,237]},{\"text\":\"Pelosi\",\"indices\":[238,245]},{\"text\":\"Education\",\"indices\":[246,256]},{\"text\":\"UNICE\",\"indices\":[257,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialGYBKogi\",\"name\":\"Alhaji Yahaya Bello\",\"id\":1339947103511064576,\"id_str\":\"1339947103511064576\",\"indices\":[150,166]},{\"screen_name\":\"OvieNews\",\"name\":\"\\uf8ff\\u1d0fnowvo_\\u1d0f\\u1d0d\\u1d00s\\u1d0f\\u0280\\u1d0f \\u1d00\\u029f\\u026a \\u1d0f\\u1d20\\u026a\\u1d07 \\u2122\\u2624\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1355004134274031618,\"id_str\":\"1355004134274031618\",\"indices\":[205,214]}],\"urls\":[],\"media\":[{\"id\":1554706289195978754,\"id_str\":\"1554706289195978754\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}}]},\"1086\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[29,36]},{\"text\":\"PLA\",\"indices\":[75,79]},{\"text\":\"drills\",\"indices\":[92,99]},{\"text\":\"Taiwan\",\"indices\":[120,127]},{\"text\":\"China\",\"indices\":[129,135]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"pelositaiwan\",\"indices\":[144,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554705959184134144,\"id_str\":\"1554705959184134144\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"url\":\"https:\\/\\/t.co\\/Qb10wIRB3M\",\"display_url\":\"pic.twitter.com\\/Qb10wIRB3M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554706027442241537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1087\":{\"hashtags\":[{\"text\":\"gospel\",\"indices\":[55,62]},{\"text\":\"WordPress\",\"indices\":[63,73]},{\"text\":\"stevey\",\"indices\":[74,81]},{\"text\":\"asia\",\"indices\":[82,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"Ukraine\",\"indices\":[103,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nathanielblow\",\"name\":\"Nathaniel Bassey\",\"id\":210958383,\"id_str\":\"210958383\",\"indices\":[112,126]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/idG7fjpya1\",\"expanded_url\":\"https:\\/\\/pay.squadco.com\\/Y6QMUZ\",\"display_url\":\"pay.squadco.com\\/Y6QMUZ\",\"indices\":[128,151]}],\"media\":[{\"id\":1554704234200932352,\"id_str\":\"1554704234200932352\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"url\":\"https:\\/\\/t.co\\/Hu0fPeWVzN\",\"display_url\":\"pic.twitter.com\\/Hu0fPeWVzN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Llyodben56\\/status\\/1554704243826823170\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"small\":{\"w\":203,\"h\":248,\"resize\":\"fit\"}}}]},\"1088\":{\"hashtags\":[{\"text\":\"Coinbase\",\"indices\":[71,80]},{\"text\":\"trustwalletpizza\",\"indices\":[81,98]},{\"text\":\"nsfwtwt\",\"indices\":[99,107]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[132,140]},{\"text\":\"LALISA\",\"indices\":[141,148]},{\"text\":\"BadmintonMalaysia\",\"indices\":[149,167]},{\"text\":\"JacksonWang\",\"indices\":[168,180]},{\"text\":\"NancyPelosi\",\"indices\":[181,193]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[194,212]},{\"text\":\"cryptomarket\",\"indices\":[213,226]},{\"text\":\"NFTs\",\"indices\":[227,232]},{\"text\":\"blockchain\",\"indices\":[233,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1089\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[115,121]},{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"pelositaiwan\",\"indices\":[130,143]},{\"text\":\"Pelosi\",\"indices\":[144,151]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[152,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554702844980510720,\"id_str\":\"1554702844980510720\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"url\":\"https:\\/\\/t.co\\/mUSyx7YyU8\",\"display_url\":\"pic.twitter.com\\/mUSyx7YyU8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554703008604102656\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1090\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[18,24]},{\"text\":\"Pelosi\",\"indices\":[25,32]},{\"text\":\"Asake\",\"indices\":[33,39]},{\"text\":\"goodmorning\",\"indices\":[40,52]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554701933344178179,\"id_str\":\"1554701933344178179\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"url\":\"https:\\/\\/t.co\\/uCudsKYuHQ\",\"display_url\":\"pic.twitter.com\\/uCudsKYuHQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gabriel1tv\\/status\\/1554702333577150466\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1091\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"Pelosi\",\"indices\":[239,246]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"MONEY\",\"indices\":[254,260]},{\"text\":\"Ukraine\",\"indices\":[261,269]},{\"text\":\"wednesdaythought\",\"indices\":[270,287]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554701102259527680,\"id_str\":\"1554701102259527680\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1092\":{\"hashtags\":[{\"text\":\"WednesdayMotivation\",\"indices\":[73,93]},{\"text\":\"China\",\"indices\":[94,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"snackstime\",\"indices\":[117,128]},{\"text\":\"peanutburger\",\"indices\":[129,142]},{\"text\":\"greatpeanuts\",\"indices\":[143,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h8OpDyPKzx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\",\"display_url\":\"twitter.com\\/Greatfoodsng\\/s\\u2026\",\"indices\":[157,180]}]},\"1093\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"taiwanwars\",\"indices\":[214,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1094\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"Pelosi\",\"indices\":[32,39]},{\"text\":\"China\",\"indices\":[40,46]},{\"text\":\"welcometochelsea\",\"indices\":[47,64]},{\"text\":\"jaruma\",\"indices\":[65,72]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554697439583551488,\"id_str\":\"1554697439583551488\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"url\":\"https:\\/\\/t.co\\/EDUnzkz6ar\",\"display_url\":\"pic.twitter.com\\/EDUnzkz6ar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OyeseekerSamuel\\/status\\/1554697466905350146\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"1095\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[151,176]},{\"text\":\"BBNaija\",\"indices\":[177,185]},{\"text\":\"Rufai\",\"indices\":[186,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"Nigeria\",\"indices\":[208,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554696305351483392,\"id_str\":\"1554696305351483392\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"url\":\"https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"display_url\":\"pic.twitter.com\\/Q1TM4ZvoeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1554696312964218880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1096\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DJ_TUNEZ\",\"name\":\"DJ TUNEZ\",\"id\":132759561,\"id_str\":\"132759561\",\"indices\":[0,9]},{\"screen_name\":\"wandecoal\",\"name\":\"Wande Coal\",\"id\":36617822,\"id_str\":\"36617822\",\"indices\":[10,20]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1097\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Badboytimz\",\"name\":\"Bad Boy Timz \\u26a1\\ufe0f\",\"id\":186891326,\"id_str\":\"186891326\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1098\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Halcy1023\",\"name\":\"Halcy Wizkid Bestie.eth \\ud83c\\udd7f\\ufe0f\",\"id\":1445811190622404619,\"id_str\":\"1445811190622404619\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1099\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dennisblessed42\",\"name\":\"DENNIS BLESSED\",\"id\":715675218388381696,\"id_str\":\"715675218388381696\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1100\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[171,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"zeenatmikail2\",\"name\":\"Zeenat S Mikail \\ud83c\\udf39\\ud83c\\udf39\",\"id\":1238205589123141633,\"id_str\":\"1238205589123141633\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1101\":{\"hashtags\":[{\"text\":\"GospelEmpireGh\",\"indices\":[150,165]},{\"text\":\"StrictlyGospel\",\"indices\":[166,181]},{\"text\":\"Pelosi\",\"indices\":[182,189]},{\"text\":\"China\",\"indices\":[190,196]},{\"text\":\"LALISA\",\"indices\":[197,204]},{\"text\":\"TUINUANE\",\"indices\":[205,214]},{\"text\":\"NancyPelosi\",\"indices\":[215,227]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[228,253]},{\"text\":\"Vanakkam_Modi\",\"indices\":[254,268]},{\"text\":\"Jesus\",\"indices\":[269,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[102,117]}],\"urls\":[],\"media\":[{\"id\":1554694555114639361,\"id_str\":\"1554694555114639361\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554694555114639361\\/pu\\/img\\/zpK1dVYU5nj1iVLV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554694555114639361\\/pu\\/img\\/zpK1dVYU5nj1iVLV.jpg\",\"url\":\"https:\\/\\/t.co\\/SZoWb3ncZR\",\"display_url\":\"pic.twitter.com\\/SZoWb3ncZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554694632860274688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1102\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"Taipei\",\"indices\":[23,30]},{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"China\",\"indices\":[39,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554694558076010496,\"id_str\":\"1554694558076010496\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"url\":\"https:\\/\\/t.co\\/qKQVzBdYm4\",\"display_url\":\"pic.twitter.com\\/qKQVzBdYm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554694569500897282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"},\"medium\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"}}}]},\"1103\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KAFTAN_TV\",\"name\":\"KAFTANTV\",\"id\":976283614269845504,\"id_str\":\"976283614269845504\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1104\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ShehuSani\",\"name\":\"Senator Shehu Sani\",\"id\":117042662,\"id_str\":\"117042662\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1105\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[172,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RealMrumaDrive\",\"name\":\"Rumani\\u00ae\",\"id\":979437771608805376,\"id_str\":\"979437771608805376\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1106\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HenshawKate\",\"name\":\"Kate Henshaw\",\"id\":135295059,\"id_str\":\"135295059\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1107\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1108\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ManUtd\",\"name\":\"Manchester United\",\"id\":558797310,\"id_str\":\"558797310\",\"indices\":[0,7]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1109\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bbchausa\",\"name\":\"BBC News Hausa\",\"id\":18168536,\"id_str\":\"18168536\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1110\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[51,54]},{\"text\":\"Pelosi\",\"indices\":[55,62]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DerekJGrossman\",\"name\":\"Derek J. Grossman\",\"id\":758701597107032065,\"id_str\":\"758701597107032065\",\"indices\":[0,15]}],\"urls\":[]},\"1111\":{\"hashtags\":[{\"text\":\"HelicopterCrash\",\"indices\":[223,239]},{\"text\":\"Taiwan\",\"indices\":[240,247]},{\"text\":\"Pelosi\",\"indices\":[248,255]},{\"text\":\"BadmintonMalaysia\",\"indices\":[256,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1112\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[165,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Arsenal\",\"name\":\"Arsenal\",\"id\":34613288,\"id_str\":\"34613288\",\"indices\":[0,8]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1113\":{\"hashtags\":[{\"text\":\"TrendingNow\",\"indices\":[7,19]},{\"text\":\"model\",\"indices\":[20,26]},{\"text\":\"Taiwan\",\"indices\":[27,34]},{\"text\":\"viral\",\"indices\":[35,41]},{\"text\":\"fyp\",\"indices\":[42,46]},{\"text\":\"grateful\",\"indices\":[47,56]},{\"text\":\"extraordinary\",\"indices\":[57,71]},{\"text\":\"agency\",\"indices\":[72,79]},{\"text\":\"modelingagency\",\"indices\":[81,96]},{\"text\":\"amirate\",\"indices\":[97,105]},{\"text\":\"arabemirate\",\"indices\":[106,118]},{\"text\":\"airhostess\",\"indices\":[119,130]},{\"text\":\"airlines\",\"indices\":[131,140]},{\"text\":\"obident\",\"indices\":[141,149]},{\"text\":\"love\",\"indices\":[150,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554690663807127557,\"id_str\":\"1554690663807127557\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1114\":{\"hashtags\":[{\"text\":\"OndoEkitiboy\",\"indices\":[54,67]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"Nigeria\",\"indices\":[82,90]},{\"text\":\"Wizkidfc\",\"indices\":[91,100]},{\"text\":\"African\",\"indices\":[101,109]},{\"text\":\"ibile\",\"indices\":[110,116]},{\"text\":\"Depay\",\"indices\":[117,123]},{\"text\":\"DJKhaled\",\"indices\":[124,133]},{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"China\",\"indices\":[142,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"LALISA\",\"indices\":[157,164]},{\"text\":\"WWERaw\",\"indices\":[165,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554690266120044545,\"id_str\":\"1554690266120044545\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"url\":\"https:\\/\\/t.co\\/gb3t8xLJMa\",\"display_url\":\"pic.twitter.com\\/gb3t8xLJMa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DOluwarado\\/status\\/1554690307333160963\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"1115\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dawisu\",\"name\":\"Peacock\",\"id\":266930441,\"id_str\":\"266930441\",\"indices\":[0,7]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[8,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1116\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DrOlusesan\",\"name\":\"Son of David\",\"id\":3042607684,\"id_str\":\"3042607684\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1117\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IAmENISA\",\"name\":\"ENISA\",\"id\":2355632540,\"id_str\":\"2355632540\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1118\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[171,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UmmyAbdullahi\",\"name\":\"ummie_nah\",\"id\":1226473614821789696,\"id_str\":\"1226473614821789696\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1119\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[196,207]},{\"text\":\"Taiwan\",\"indices\":[208,215]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[0,14]},{\"screen_name\":\"WestAfricaWeek\",\"name\":\"West Africa Weekly\",\"id\":1364956849804611584,\"id_str\":\"1364956849804611584\",\"indices\":[15,30]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[31,39]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1120\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"WWERaw\",\"indices\":[59,66]},{\"text\":\"BurnaBoy\",\"indices\":[68,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1121\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"capitalcom\",\"name\":\"Capital.com Worldwide\",\"id\":800629853099696128,\"id_str\":\"800629853099696128\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1122\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vanguardngrnews\",\"name\":\"Vanguard Newspapers\",\"id\":39975533,\"id_str\":\"39975533\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZEd7\",\"display_url\":\"pic.twitter.com\\/y5GWRqZEd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1123\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UBAGroup\",\"name\":\"UBA Group\",\"id\":29944465,\"id_str\":\"29944465\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1124\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]},{\"text\":\"Pelosi\",\"indices\":[90,97]},{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"LALISA\",\"indices\":[105,112]},{\"text\":\"WWERaw\",\"indices\":[113,120]},{\"text\":\"NancyPelosi\",\"indices\":[121,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3i1UHpTCkU\",\"expanded_url\":\"https:\\/\\/www.ghnewslive.com\\/2022\\/01\\/18\\/lady-gets-the-attention-of-netizens-which-kind-of-exercise-is-this\\/\",\"display_url\":\"ghnewslive.com\\/2022\\/01\\/18\\/lad\\u2026\",\"indices\":[135,158]}]},\"1125\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]},{\"text\":\"Pelosi\",\"indices\":[90,97]},{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"LALISA\",\"indices\":[105,112]},{\"text\":\"WWERaw\",\"indices\":[113,120]},{\"text\":\"NancyPelosi\",\"indices\":[121,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3ZqX1zkCc4\",\"expanded_url\":\"https:\\/\\/www.ghnewslive.com\\/2022\\/01\\/18\\/lady-gets-the-attention-of-netizens-which-kind-of-exercise-is-this\\/\",\"display_url\":\"ghnewslive.com\\/2022\\/01\\/18\\/lad\\u2026\",\"indices\":[135,158]}]},\"1126\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"Taipei\",\"indices\":[8,15]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554687110980182016,\"id_str\":\"1554687110980182016\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"url\":\"https:\\/\\/t.co\\/L8esduYBU5\",\"display_url\":\"pic.twitter.com\\/L8esduYBU5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DNobody101\\/status\\/1554687233462251521\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":256,\"h\":400,\"resize\":\"fit\"}}}]},\"1127\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[241,248]},{\"text\":\"AffiliateMarketing\",\"indices\":[249,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554684899164045312,\"id_str\":\"1554684899164045312\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"url\":\"https:\\/\\/t.co\\/K71xuM0B4K\",\"display_url\":\"pic.twitter.com\\/K71xuM0B4K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olojo_michael\\/status\\/1554684901747818497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"1128\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[6,13]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"NancyPelosi\",\"indices\":[65,77]},{\"text\":\"Taipei\",\"indices\":[78,85]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[86,104]},{\"text\":\"China\",\"indices\":[105,111]},{\"text\":\"pelositaiwan\",\"indices\":[112,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554684441557372928,\"id_str\":\"1554684441557372928\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"url\":\"https:\\/\\/t.co\\/bbtfnREtHs\",\"display_url\":\"pic.twitter.com\\/bbtfnREtHs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554684467146792962\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"large\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":375,\"resize\":\"fit\"}}}]},\"1129\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"Pelosi\",\"indices\":[178,185]},{\"text\":\"China\",\"indices\":[186,192]},{\"text\":\"helicopter\",\"indices\":[193,204]},{\"text\":\"HelicopterCrash\",\"indices\":[205,221]},{\"text\":\"BBNaija\",\"indices\":[222,230]},{\"text\":\"BBNaija7\",\"indices\":[231,240]},{\"text\":\"LALISA\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"1130\":{\"hashtags\":[{\"text\":\"ochicanadocares\",\"indices\":[73,89]},{\"text\":\"HelicopterCrash\",\"indices\":[132,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"Taiwan\",\"indices\":[157,164]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"caleb_nwanneka\",\"name\":\"Nwanneka Caleb\",\"id\":1205082200158457856,\"id_str\":\"1205082200158457856\",\"indices\":[51,66]},{\"screen_name\":\"Birthdaysng\",\"name\":\"Birthdays.ng\",\"id\":991425506842238976,\"id_str\":\"991425506842238976\",\"indices\":[101,113]},{\"screen_name\":\"TwitterSupport\",\"name\":\"Twitter Support\",\"id\":17874544,\"id_str\":\"17874544\",\"indices\":[114,129]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YkNNVYgUND\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\",\"display_url\":\"twitter.com\\/caleb_nwanneka\\u2026\",\"indices\":[165,188]}]},\"1131\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[147,153]},{\"text\":\"Pelosi\",\"indices\":[235,242]},{\"text\":\"Taipei\",\"indices\":[256,263]},{\"text\":\"Taiwan\",\"indices\":[265,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554683538263650304,\"id_str\":\"1554683538263650304\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"url\":\"https:\\/\\/t.co\\/t4WEyvpAVd\",\"display_url\":\"pic.twitter.com\\/t4WEyvpAVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554683551077273600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"}}}]},\"1132\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"Pelosi\",\"indices\":[42,49]},{\"text\":\"China\",\"indices\":[50,56]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[57,65]},{\"text\":\"LALISA\",\"indices\":[66,73]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[74,97]},{\"text\":\"helicopter\",\"indices\":[98,109]},{\"text\":\"TUINUANE\",\"indices\":[110,119]},{\"text\":\"BadmintonMalaysia\",\"indices\":[120,138]},{\"text\":\"WWERaw\",\"indices\":[139,146]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[147,154]},{\"text\":\"NancyPelosi\",\"indices\":[155,167]},{\"text\":\"HelicopterCrash\",\"indices\":[168,184]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[185,210]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[211,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554682413741232129,\"id_str\":\"1554682413741232129\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"url\":\"https:\\/\\/t.co\\/nKjT1dfk9O\",\"display_url\":\"pic.twitter.com\\/nKjT1dfk9O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554682464236437505\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1133\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"FolloMe\",\"indices\":[73,81]},{\"text\":\"SoutienBooba\",\"indices\":[82,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554682389405769728,\"id_str\":\"1554682389405769728\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"url\":\"https:\\/\\/t.co\\/OwaPX1mvFZ\",\"display_url\":\"pic.twitter.com\\/OwaPX1mvFZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Balzack_17\\/status\\/1554682393843359744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":151,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":143,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":151,\"resize\":\"fit\"}}}]},\"1134\":{\"hashtags\":[{\"text\":\"GospelEmpireGh\",\"indices\":[167,182]},{\"text\":\"StrictlyGospel\",\"indices\":[183,198]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"Pelosi\",\"indices\":[207,214]},{\"text\":\"LALISA\",\"indices\":[215,222]},{\"text\":\"helicopter\",\"indices\":[223,234]},{\"text\":\"WWERaw\",\"indices\":[235,242]},{\"text\":\"NancyPelosi\",\"indices\":[243,255]},{\"text\":\"HelicopterCrash\",\"indices\":[256,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[95,110]}],\"urls\":[],\"media\":[{\"id\":1554680608529448962,\"id_str\":\"1554680608529448962\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554680608529448962\\/pu\\/img\\/B6c8UH5bG8bteCNu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554680608529448962\\/pu\\/img\\/B6c8UH5bG8bteCNu.jpg\",\"url\":\"https:\\/\\/t.co\\/7BqCMFuyWa\",\"display_url\":\"pic.twitter.com\\/7BqCMFuyWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554680702549086209\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1135\":{\"hashtags\":[{\"text\":\"SpeedDatingWithSelema\",\"indices\":[91,113]},{\"text\":\"Obituary\",\"indices\":[114,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"SamOmatseye\",\"indices\":[132,144]},{\"text\":\"BBNajia\",\"indices\":[145,153]},{\"text\":\"BBNaija\",\"indices\":[154,162]},{\"text\":\"BBNajiaS7\",\"indices\":[163,173]},{\"text\":\"Pelosi\",\"indices\":[174,181]},{\"text\":\"Bernd\",\"indices\":[182,188]},{\"text\":\"Rufai\",\"indices\":[189,195]},{\"text\":\"HappyNewMonth\",\"indices\":[196,210]},{\"text\":\"Cucurella\",\"indices\":[211,221]},{\"text\":\"SaheedBalogun\",\"indices\":[222,236]},{\"text\":\"helicopter\",\"indices\":[237,248]},{\"text\":\"Tinubu\",\"indices\":[249,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zpHYmKO1iM\",\"expanded_url\":\"https:\\/\\/fb.watch\\/eFGHrV-GI4\\/\",\"display_url\":\"fb.watch\\/eFGHrV-GI4\\/\",\"indices\":[0,23]}]},\"1136\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VAPowqw2M6\",\"expanded_url\":\"https:\\/\\/vendasta.grsm.io\\/dw3x0pndw329\",\"display_url\":\"vendasta.grsm.io\\/dw3x0pndw329\",\"indices\":[251,274]}]},\"1137\":{\"hashtags\":[{\"text\":\"Russia\",\"indices\":[25,32]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"pelositaiwan\",\"indices\":[116,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[138,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554678135123488769,\"id_str\":\"1554678135123488769\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"url\":\"https:\\/\\/t.co\\/3ZlCFgyKk7\",\"display_url\":\"pic.twitter.com\\/3ZlCFgyKk7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554678221798400000\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":804,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":754,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":427,\"resize\":\"fit\"}}}]},\"1138\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[23,30]},{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"PelosiinTaiwan\",\"indices\":[79,94]},{\"text\":\"China\",\"indices\":[95,101]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[102,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554676010331049984,\"id_str\":\"1554676010331049984\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"url\":\"https:\\/\\/t.co\\/oddZSMJqci\",\"display_url\":\"pic.twitter.com\\/oddZSMJqci\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554676028567863297\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"medium\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"small\":{\"w\":520,\"h\":292,\"resize\":\"fit\"}}}]},\"1139\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[157,164]},{\"text\":\"China\",\"indices\":[179,185]},{\"text\":\"NancyPelosi\",\"indices\":[188,200]},{\"text\":\"Taipei\",\"indices\":[201,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[217,235]},{\"text\":\"pelositaiwan\",\"indices\":[236,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554675711688196096,\"id_str\":\"1554675711688196096\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"url\":\"https:\\/\\/t.co\\/lFax7HJS5c\",\"display_url\":\"pic.twitter.com\\/lFax7HJS5c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675750741356544\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"1140\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[179,186]},{\"text\":\"Pelosi\",\"indices\":[187,194]},{\"text\":\"China\",\"indices\":[195,201]},{\"text\":\"NancyPelosi\",\"indices\":[202,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554675343805804544,\"id_str\":\"1554675343805804544\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"url\":\"https:\\/\\/t.co\\/yh8YBUNbtJ\",\"display_url\":\"pic.twitter.com\\/yh8YBUNbtJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675349258371072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":418,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"}}}]},\"1141\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"China\",\"indices\":[97,103]},{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"pelositaiwan\",\"indices\":[112,125]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[126,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554674770662531072,\"id_str\":\"1554674770662531072\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"url\":\"https:\\/\\/t.co\\/P3V7zJX26c\",\"display_url\":\"pic.twitter.com\\/P3V7zJX26c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554674844339675136\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1142\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"China\",\"indices\":[97,103]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[104,112]},{\"text\":\"helicopter\",\"indices\":[113,124]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[125,148]},{\"text\":\"LALISA\",\"indices\":[149,156]},{\"text\":\"NancyPelosi\",\"indices\":[157,169]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[170,196]},{\"text\":\"BibleBuild\",\"indices\":[197,208]},{\"text\":\"mbstorm\",\"indices\":[209,217]},{\"text\":\"mbstorm\",\"indices\":[218,226]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[227,245]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[246,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9NItNsYwPM\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/morrishills\\/song\\/young-john-dada-cover\",\"display_url\":\"audiomack.com\\/morrishills\\/so\\u2026\",\"indices\":[48,71]}],\"media\":[{\"id\":1554672480987627523,\"id_str\":\"1554672480987627523\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"url\":\"https:\\/\\/t.co\\/PPFuzmH34P\",\"display_url\":\"pic.twitter.com\\/PPFuzmH34P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554672615503060992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1143\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[20,27]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1144\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taipei\",\"indices\":[17,24]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"China\",\"indices\":[59,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TVZdxlyg5T\",\"expanded_url\":\"http:\\/\\/newz.ug\\/pelosi-visit-to-taipei-us-warships-cruise-near-taiwan-china-to-hold-live-fire-exercises-off-taiwan-coast\\/\",\"display_url\":\"newz.ug\\/pelosi-visit-t\\u2026\",\"indices\":[259,282]}],\"media\":[{\"id\":1554663811361243137,\"id_str\":\"1554663811361243137\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"url\":\"https:\\/\\/t.co\\/WOAC3Y4qkx\",\"display_url\":\"pic.twitter.com\\/WOAC3Y4qkx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mkaketo\\/status\\/1554663850615742467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"},\"large\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"}}}]},\"1145\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[13,19]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[51,65]}],\"urls\":[]},\"1146\":{\"hashtags\":[{\"text\":\"accra\",\"indices\":[113,119]},{\"text\":\"ghana\",\"indices\":[120,126]},{\"text\":\"Abena\",\"indices\":[127,133]},{\"text\":\"abuja\",\"indices\":[141,147]},{\"text\":\"Trending\",\"indices\":[148,157]},{\"text\":\"news\",\"indices\":[158,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"NancyPelosi\",\"indices\":[172,184]},{\"text\":\"Black\",\"indices\":[185,191]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[104,112]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2sJ2iBq23C\",\"expanded_url\":\"https:\\/\\/youtu.be\\/LlOtNOZC0ng\",\"display_url\":\"youtu.be\\/LlOtNOZC0ng\",\"indices\":[76,99]}]},\"1147\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[116,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1148\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"helicopter\",\"indices\":[86,97]},{\"text\":\"NancyPelosi\",\"indices\":[98,110]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[111,119]},{\"text\":\"BadmintonMalaysia\",\"indices\":[120,138]},{\"text\":\"JacksonWang\",\"indices\":[139,151]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[152,178]},{\"text\":\"BoycottBollywood\",\"indices\":[179,196]},{\"text\":\"Badminton\",\"indices\":[197,207]},{\"text\":\"pains\",\"indices\":[208,214]},{\"text\":\"toxic\",\"indices\":[215,221]},{\"text\":\"life\",\"indices\":[222,227]},{\"text\":\"harsh\",\"indices\":[228,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554654391281618947,\"id_str\":\"1554654391281618947\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"url\":\"https:\\/\\/t.co\\/h4c38mQP8m\",\"display_url\":\"pic.twitter.com\\/h4c38mQP8m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554654394930577419\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"}}}]},\"1149\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"Tuinuane\",\"indices\":[96,105]},{\"text\":\"Mnakwethu\",\"indices\":[106,116]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[117,131]},{\"text\":\"BlueJays\",\"indices\":[132,141]},{\"text\":\"JacksonWang\",\"indices\":[142,154]},{\"text\":\"MorningLive\",\"indices\":[155,167]},{\"text\":\"goodmorning\",\"indices\":[168,180]},{\"text\":\"sweet\",\"indices\":[181,187]},{\"text\":\"beautiful\",\"indices\":[188,198]},{\"text\":\"beautifulgirls\",\"indices\":[199,214]},{\"text\":\"sweetlove\",\"indices\":[215,225]},{\"text\":\"love\",\"indices\":[226,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554652697005023232,\"id_str\":\"1554652697005023232\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"url\":\"https:\\/\\/t.co\\/AFriQxiHsH\",\"display_url\":\"pic.twitter.com\\/AFriQxiHsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554652780295495681\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":304,\"h\":640,\"resize\":\"fit\"}}}]},\"1150\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[37,45]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"pharmsavi\",\"indices\":[54,64]},{\"text\":\"christyo\",\"indices\":[65,74]},{\"text\":\"beauty\",\"indices\":[75,82]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554648606262665216,\"id_str\":\"1554648606262665216\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"url\":\"https:\\/\\/t.co\\/TwxxzFGRHo\",\"display_url\":\"pic.twitter.com\\/TwxxzFGRHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eugene_iwunze\\/status\\/1554648838211833856\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"1151\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"official_gavnah\",\"name\":\"Gav Nah\",\"id\":1473702552529215497,\"id_str\":\"1473702552529215497\",\"indices\":[83,99]},{\"screen_name\":\"clixmartgh\",\"name\":\"Clixmart_Ghana\",\"id\":1320407231272189953,\"id_str\":\"1320407231272189953\",\"indices\":[108,119]}],\"urls\":[]},\"1152\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"Machala\",\"indices\":[26,34]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554642733482082313,\"id_str\":\"1554642733482082313\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"url\":\"https:\\/\\/t.co\\/OBdiJp9HTM\",\"display_url\":\"pic.twitter.com\\/OBdiJp9HTM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lit_spych0\\/status\\/1554642745213558785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":630,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"}}}]},\"1153\":{\"hashtags\":[{\"text\":\"she\",\"indices\":[69,73]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"Davido\",\"indices\":[86,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"ikorodu\",\"indices\":[102,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BlueNunWines\",\"name\":\"BlueNunWines\",\"id\":97172624,\"id_str\":\"97172624\",\"indices\":[55,68]}],\"urls\":[],\"media\":[{\"id\":1554637450563276803,\"id_str\":\"1554637450563276803\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"url\":\"https:\\/\\/t.co\\/ajYFtXFLD2\",\"display_url\":\"pic.twitter.com\\/ajYFtXFLD2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9yperri\\/status\\/1554638440527962112\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":680,\"resize\":\"fit\"}}}]},\"1154\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1155\":{\"hashtags\":[{\"text\":\"PelosiVisit\",\"indices\":[154,166]},{\"text\":\"BoycottIsrael\",\"indices\":[167,181]},{\"text\":\"Taiwanchina\",\"indices\":[182,194]},{\"text\":\"ApartheidIsrael\",\"indices\":[195,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"provacateurs\",\"indices\":[220,233]},{\"text\":\"doublestandards\",\"indices\":[234,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rqaX0Oh1Et\",\"expanded_url\":\"https:\\/\\/www.theguardian.com\\/us-news\\/2022\\/aug\\/02\\/pelosi-oped-defends-taiwan-visit?CMP=share_btn_tw\",\"display_url\":\"theguardian.com\\/us-news\\/2022\\/a\\u2026\",\"indices\":[130,153]}]},\"1156\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[132,138]},{\"text\":\"BBNaija\",\"indices\":[153,161]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EmemEdema1\",\"name\":\"Emem Edem\",\"id\":1539828930730917888,\"id_str\":\"1539828930730917888\",\"indices\":[97,108]}],\"urls\":[],\"media\":[{\"id\":1554637063869300736,\"id_str\":\"1554637063869300736\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"url\":\"https:\\/\\/t.co\\/PKifp64k9P\",\"display_url\":\"pic.twitter.com\\/PKifp64k9P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/seemeon79\\/status\\/1554637068256559105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1157\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[31,39]},{\"text\":\"giddyfia\",\"indices\":[40,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554635275258691584,\"id_str\":\"1554635275258691584\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"url\":\"https:\\/\\/t.co\\/xbluBJ1Bzl\",\"display_url\":\"pic.twitter.com\\/xbluBJ1Bzl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zubyblaq4\\/status\\/1554635445933334530\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}}}]},\"1158\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"tuesdayvibe\",\"indices\":[60,72]},{\"text\":\"Mnakwethu\",\"indices\":[73,83]},{\"text\":\"BBNaija\",\"indices\":[84,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554630376060076032,\"id_str\":\"1554630376060076032\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"url\":\"https:\\/\\/t.co\\/YVk6rRhGYx\",\"display_url\":\"pic.twitter.com\\/YVk6rRhGYx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ychizway\\/status\\/1554630465654505472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1159\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[15,21]},{\"text\":\"viral\",\"indices\":[22,28]},{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"Ghana\",\"indices\":[45,51]},{\"text\":\"iamyahayaadam\",\"indices\":[52,66]},{\"text\":\"destinyetikosister\",\"indices\":[67,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554628109382651907,\"id_str\":\"1554628109382651907\",\"indices\":[87,110],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554628109382651907\\/pu\\/img\\/-k8oOp8mmEEfoq9W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554628109382651907\\/pu\\/img\\/-k8oOp8mmEEfoq9W.jpg\",\"url\":\"https:\\/\\/t.co\\/m64YpYaeDU\",\"display_url\":\"pic.twitter.com\\/m64YpYaeDU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamyahayaadam\\/status\\/1554628198813540352\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1160\":{\"hashtags\":[{\"text\":\"FIVESTAR\",\"indices\":[55,64]},{\"text\":\"Trending\",\"indices\":[127,136]},{\"text\":\"bernd\",\"indices\":[137,143]},{\"text\":\"taiwan\",\"indices\":[144,151]},{\"text\":\"BBNajia\",\"indices\":[152,160]},{\"text\":\"NigeriaDecides2023\",\"indices\":[161,180]},{\"text\":\"SheggzFC\",\"indices\":[181,190]},{\"text\":\"BBNajiaS7\",\"indices\":[191,201]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[202,227]},{\"text\":\"ASUU\",\"indices\":[267,272]},{\"text\":\"bbillkin\",\"indices\":[273,282]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[41,54]},{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[93,106]},{\"screen_name\":\"SympLySimi\",\"name\":\"Simi\",\"id\":26216972,\"id_str\":\"26216972\",\"indices\":[228,239]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[240,249]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[250,257]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[258,266]}],\"urls\":[],\"media\":[{\"id\":1554619598124859392,\"id_str\":\"1554619598124859392\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"url\":\"https:\\/\\/t.co\\/Iv9ZvgYBiO\",\"display_url\":\"pic.twitter.com\\/Iv9ZvgYBiO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sheffy_b\\/status\\/1554619892044861441\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1161\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[5,15]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1162\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[26,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554618059440246784,\"id_str\":\"1554618059440246784\",\"indices\":[33,56],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"url\":\"https:\\/\\/t.co\\/AV7wAnvbfr\",\"display_url\":\"pic.twitter.com\\/AV7wAnvbfr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/israelpaulonyah\\/status\\/1554618074481016832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":360,\"resize\":\"fit\"}}}]},\"1163\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[87,99]},{\"text\":\"China\",\"indices\":[227,233]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[235,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1164\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[199,207]},{\"text\":\"Lekki\",\"indices\":[246,252]},{\"text\":\"Taiwan\",\"indices\":[255,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554614868568948736,\"id_str\":\"1554614868568948736\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"large\":{\"w\":403,\"h\":269,\"resize\":\"fit\"}}}]},\"1165\":{\"hashtags\":[{\"text\":\"proverb\",\"indices\":[113,121]},{\"text\":\"sincerelyaccra\",\"indices\":[122,137]},{\"text\":\"Pelosi\",\"indices\":[138,145]},{\"text\":\"China\",\"indices\":[146,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1166\":{\"hashtags\":[{\"text\":\"Obituary\",\"indices\":[98,107]},{\"text\":\"samomatseye\",\"indices\":[108,120]},{\"text\":\"Bernd\",\"indices\":[121,127]},{\"text\":\"Pelosi\",\"indices\":[128,135]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[49,58]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[63,77]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[82,97]}],\"urls\":[]},\"1167\":{\"hashtags\":[{\"text\":\"groovefreedomday\",\"indices\":[131,148]},{\"text\":\"freedomdayevent\",\"indices\":[149,165]},{\"text\":\"freedomday\",\"indices\":[166,177]},{\"text\":\"WWIII\",\"indices\":[179,185]},{\"text\":\"WorldWar3\",\"indices\":[186,196]},{\"text\":\"WWIILIVE\",\"indices\":[197,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Pelosi\",\"indices\":[215,222]},{\"text\":\"China\",\"indices\":[223,229]},{\"text\":\"WWIII\",\"indices\":[230,236]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k6pXz4KtCA\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/W0yZrE\",\"display_url\":\"fiverr.com\\/share\\/W0yZrE\",\"indices\":[107,130]}]},\"1168\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[19,26]},{\"text\":\"Taiwan\",\"indices\":[27,34]},{\"text\":\"China\",\"indices\":[35,41]},{\"text\":\"WWIII\",\"indices\":[42,48]},{\"text\":\"Memes\",\"indices\":[49,55]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554611265712037888,\"id_str\":\"1554611265712037888\",\"indices\":[56,79],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWtaCWIAAx9eu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWtaCWIAAx9eu.jpg\",\"url\":\"https:\\/\\/t.co\\/s8CNiIL5ig\",\"display_url\":\"pic.twitter.com\\/s8CNiIL5ig\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Khojo_Hazard25\\/status\\/1554611268228710402\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":360,\"resize\":\"fit\"}}}]},\"1169\":{\"hashtags\":[{\"text\":\"gafexianzone\",\"indices\":[93,106]},{\"text\":\"gafexianart\",\"indices\":[107,119]},{\"text\":\"Rihanna\",\"indices\":[120,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"helicopter\",\"indices\":[152,163]},{\"text\":\"tuesdayvibe\",\"indices\":[164,176]},{\"text\":\"explorepage\",\"indices\":[177,189]},{\"text\":\"explore\",\"indices\":[190,198]},{\"text\":\"ExploreUganda\",\"indices\":[199,213]},{\"text\":\"NationalGirlfriendDay\",\"indices\":[214,236]},{\"text\":\"artists\",\"indices\":[237,245]},{\"text\":\"ArtOfTheDay\",\"indices\":[246,258]},{\"text\":\"ArtistOnTwitter\",\"indices\":[259,275]},{\"text\":\"art\",\"indices\":[276,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rihanna\",\"name\":\"Rihanna\",\"id\":79293791,\"id_str\":\"79293791\",\"indices\":[32,40]}],\"urls\":[],\"media\":[{\"id\":1554610553548689410,\"id_str\":\"1554610553548689410\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"url\":\"https:\\/\\/t.co\\/mI2CAEvgD3\",\"display_url\":\"pic.twitter.com\\/mI2CAEvgD3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554610609047670785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1625,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":952,\"h\":1200,\"resize\":\"fit\"}}}]},\"1170\":{\"hashtags\":[{\"text\":\"loveright\",\"indices\":[111,121]},{\"text\":\"loveyourhusband\",\"indices\":[122,138]},{\"text\":\"love\",\"indices\":[139,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"helicopter\",\"indices\":[152,163]},{\"text\":\"tuesdayvibe\",\"indices\":[164,176]},{\"text\":\"BoycottBollywood\",\"indices\":[177,194]},{\"text\":\"BORNPINK\",\"indices\":[195,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"Pelosi\",\"indices\":[213,220]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[221,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1171\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"Pelosi\",\"indices\":[206,213]},{\"text\":\"BBNaija\",\"indices\":[214,222]},{\"text\":\"BambamSorry\",\"indices\":[238,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554608983436136448,\"id_str\":\"1554608983436136448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"url\":\"https:\\/\\/t.co\\/k8OQNbybAR\",\"display_url\":\"pic.twitter.com\\/k8OQNbybAR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554609029619523584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1172\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BBNajiaS7\",\"indices\":[82,92]},{\"text\":\"BBNaija7\",\"indices\":[93,102]},{\"text\":\"BBNaijaSeason7\",\"indices\":[103,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554607722762584064,\"id_str\":\"1554607722762584064\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"url\":\"https:\\/\\/t.co\\/4xz5V4RVAT\",\"display_url\":\"pic.twitter.com\\/4xz5V4RVAT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Urbandistrictng\\/status\\/1554607749148905474\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1173\":{\"hashtags\":[{\"text\":\"AbiaState\",\"indices\":[71,81]},{\"text\":\"Nigeria\",\"indices\":[83,91]},{\"text\":\"AlexOtti\",\"indices\":[92,101]},{\"text\":\"DrAlexOtti\",\"indices\":[102,113]},{\"text\":\"LabourParty\",\"indices\":[114,126]},{\"text\":\"ObiNgwa\",\"indices\":[127,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"PeterObi\",\"indices\":[145,154]},{\"text\":\"PeterObi4President2023\",\"indices\":[155,178]},{\"text\":\"PeterObi2023\",\"indices\":[180,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554606533408858113,\"id_str\":\"1554606533408858113\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"url\":\"https:\\/\\/t.co\\/ZkJhDKtoXy\",\"display_url\":\"pic.twitter.com\\/ZkJhDKtoXy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lawehilegbu\\/status\\/1554606539872288769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1174\":{\"hashtags\":[{\"text\":\"Web3\",\"indices\":[45,50]},{\"text\":\"BBNajiaS7\",\"indices\":[51,61]},{\"text\":\"sabinus\",\"indices\":[62,70]},{\"text\":\"Wednesday\",\"indices\":[71,81]},{\"text\":\"MidweekMadness\",\"indices\":[82,97]},{\"text\":\"MONEY\",\"indices\":[98,104]},{\"text\":\"Twitter\",\"indices\":[105,113]},{\"text\":\"ElonMusk\",\"indices\":[114,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"China\",\"indices\":[132,138]},{\"text\":\"BoycottBollywood\",\"indices\":[139,156]},{\"text\":\"Trending\",\"indices\":[157,166]},{\"text\":\"NEW\",\"indices\":[167,171]},{\"text\":\"NewJeans\",\"indices\":[172,181]},{\"text\":\"Dollar\",\"indices\":[182,189]},{\"text\":\"BibleBuild\",\"indices\":[190,201]},{\"text\":\"bitcoins\",\"indices\":[202,211]},{\"text\":\"ElectionTwitter\",\"indices\":[212,228]},{\"text\":\"Tinubu\",\"indices\":[229,236]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554606337211908097,\"id_str\":\"1554606337211908097\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"url\":\"https:\\/\\/t.co\\/c4hYMDSAaq\",\"display_url\":\"pic.twitter.com\\/c4hYMDSAaq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554606340001173504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"small\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"large\":{\"w\":548,\"h\":548,\"resize\":\"fit\"}}}]},\"1175\":{\"hashtags\":[{\"text\":\"morrishills\",\"indices\":[15,27]},{\"text\":\"morrishillsentertainment\",\"indices\":[28,53]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"China\",\"indices\":[63,69]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[70,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"chatsekscerita\",\"indices\":[91,106]},{\"text\":\"IStandWithSithelo\",\"indices\":[107,125]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[126,149]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[150,176]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[177,190]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[191,198]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[199,213]},{\"text\":\"tuesdayvibe\",\"indices\":[214,226]},{\"text\":\"BORNPINK\",\"indices\":[227,236]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[237,255]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\",\"indices\":[256,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554603542266216453,\"id_str\":\"1554603542266216453\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"url\":\"https:\\/\\/t.co\\/G5tXbMi8JI\",\"display_url\":\"pic.twitter.com\\/G5tXbMi8JI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554603566140198912\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":355,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":704,\"resize\":\"fit\"}}}]},\"1176\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"China\",\"indices\":[26,32]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[33,41]},{\"text\":\"helicopter\",\"indices\":[42,53]},{\"text\":\"chatsekscerita\",\"indices\":[54,69]},{\"text\":\"IStandWithSithelo\",\"indices\":[70,88]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[89,112]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[113,139]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[140,153]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[154,161]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[162,176]},{\"text\":\"tuesdayvibe\",\"indices\":[177,189]},{\"text\":\"BORNPINK\",\"indices\":[190,199]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[200,218]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[219,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554602770505809920,\"id_str\":\"1554602770505809920\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"url\":\"https:\\/\\/t.co\\/e54sgy8pxo\",\"display_url\":\"pic.twitter.com\\/e54sgy8pxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602830664802305\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1177\":{\"hashtags\":[{\"text\":\"BORNPINK\",\"indices\":[24,33]},{\"text\":\"drugabuse\",\"indices\":[34,44]},{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"helicopter\",\"indices\":[60,71]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[72,80]},{\"text\":\"chatsekscerita\",\"indices\":[81,96]},{\"text\":\"IStandWithSithelo\",\"indices\":[97,115]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[116,139]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[140,166]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[167,180]},{\"text\":\"tuesdayvibe\",\"indices\":[181,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554601929199714304,\"id_str\":\"1554601929199714304\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"url\":\"https:\\/\\/t.co\\/qtcJ27cTDc\",\"display_url\":\"pic.twitter.com\\/qtcJ27cTDc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602151254556680\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1178\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[7,13]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1179\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[31,35]},{\"text\":\"China\",\"indices\":[126,132]},{\"text\":\"Taiwan\",\"indices\":[213,220]},{\"text\":\"ChinaTaiwan\",\"indices\":[222,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554601188276195329,\"id_str\":\"1554601188276195329\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"url\":\"https:\\/\\/t.co\\/evluzp5XOj\",\"display_url\":\"pic.twitter.com\\/evluzp5XOj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554601323043377152\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":671,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":716,\"resize\":\"fit\"}}}]},\"1180\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"China\",\"indices\":[76,82]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[83,91]},{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"chatsekscerita\",\"indices\":[104,119]},{\"text\":\"IStandWithSithelo\",\"indices\":[120,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554600621277331456,\"id_str\":\"1554600621277331456\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"url\":\"https:\\/\\/t.co\\/2QbWRdDCYQ\",\"display_url\":\"pic.twitter.com\\/2QbWRdDCYQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554600627451449345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1412,\"resize\":\"fit\"}}}]},\"1181\":{\"hashtags\":[{\"text\":\"Warner\",\"indices\":[102,109]},{\"text\":\"Piastri\",\"indices\":[110,118]},{\"text\":\"Corbyn\",\"indices\":[119,126]},{\"text\":\"Monaco\",\"indices\":[127,134]},{\"text\":\"TheBachelorette\",\"indices\":[135,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"support\",\"indices\":[160,168]},{\"text\":\"Webradio\",\"indices\":[169,178]},{\"text\":\"Cannes\",\"indices\":[179,186]},{\"text\":\"France\",\"indices\":[187,194]},{\"text\":\"Listen\",\"indices\":[195,202]},{\"text\":\"Listennow\",\"indices\":[203,213]},{\"text\":\"Followus\",\"indices\":[214,223]},{\"text\":\"Donate\",\"indices\":[224,231]},{\"text\":\"TrumpTreason\",\"indices\":[232,245]},{\"text\":\"\\u0130stanbul\",\"indices\":[246,255]},{\"text\":\"fanart\",\"indices\":[256,263]},{\"text\":\"Biden\",\"indices\":[264,270]},{\"text\":\"west\",\"indices\":[271,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554599720932327425,\"id_str\":\"1554599720932327425\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"url\":\"https:\\/\\/t.co\\/cz3d3iBHCW\",\"display_url\":\"pic.twitter.com\\/cz3d3iBHCW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554599767337992197\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"}}}]},\"1182\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"Pelosi\",\"indices\":[211,218]},{\"text\":\"BBNaija\",\"indices\":[219,227]},{\"text\":\"BambamSorry\",\"indices\":[243,255]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554599422385864704,\"id_str\":\"1554599422385864704\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6uBqjHALV\",\"display_url\":\"pic.twitter.com\\/Y6uBqjHALV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554599480476975104\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1183\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[78,85]},{\"text\":\"China\",\"indices\":[86,92]},{\"text\":\"Pelosi\",\"indices\":[93,100]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[101,109]},{\"text\":\"Wizkid\",\"indices\":[110,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0nAHvzGYAu\",\"expanded_url\":\"https:\\/\\/youtu.be\\/B4fN6As5I74\",\"display_url\":\"youtu.be\\/B4fN6As5I74\",\"indices\":[53,76]}]},\"1184\":{\"hashtags\":[{\"text\":\"Alpine\",\"indices\":[102,109]},{\"text\":\"Donation\",\"indices\":[110,119]},{\"text\":\"helicopter\",\"indices\":[120,131]},{\"text\":\"helpinghand\",\"indices\":[132,144]},{\"text\":\"Help\",\"indices\":[145,150]},{\"text\":\"TailorMade\",\"indices\":[151,162]},{\"text\":\"Tommy\",\"indices\":[163,169]},{\"text\":\"Cina\",\"indices\":[170,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"Pelosi\",\"indices\":[184,191]},{\"text\":\"boss\",\"indices\":[192,197]},{\"text\":\"McLaren\",\"indices\":[198,206]},{\"text\":\"Alonso\",\"indices\":[207,214]},{\"text\":\"Verdi\",\"indices\":[215,221]},{\"text\":\"ayr\\u0131lmazikili\",\"indices\":[222,236]},{\"text\":\"BetterCallSaul\",\"indices\":[237,252]},{\"text\":\"China\",\"indices\":[253,259]},{\"text\":\"crowdfunding\",\"indices\":[260,273]},{\"text\":\"OOTT\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554597524304023552,\"id_str\":\"1554597524304023552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"url\":\"https:\\/\\/t.co\\/FhfDGunyTi\",\"display_url\":\"pic.twitter.com\\/FhfDGunyTi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554597548131745793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"1185\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"Pelosi\",\"indices\":[206,213]},{\"text\":\"BBNaija\",\"indices\":[214,222]},{\"text\":\"BambamSorry\",\"indices\":[238,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554597007825698816,\"id_str\":\"1554597007825698816\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"url\":\"https:\\/\\/t.co\\/uDd8WrJ4ea\",\"display_url\":\"pic.twitter.com\\/uDd8WrJ4ea\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554597054571225088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1186\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[220,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"China\",\"indices\":[236,242]},{\"text\":\"BBNajiaS7\",\"indices\":[252,262]},{\"text\":\"Obidatti023\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554596190947246080,\"id_str\":\"1554596190947246080\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"url\":\"https:\\/\\/t.co\\/RtVmnAvt1C\",\"display_url\":\"pic.twitter.com\\/RtVmnAvt1C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kapital929\\/status\\/1554597018705747968\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"1187\":{\"hashtags\":[{\"text\":\"Cubana\",\"indices\":[230,237]},{\"text\":\"Beijing\",\"indices\":[240,248]},{\"text\":\"WWIII\",\"indices\":[251,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554594537326125056,\"id_str\":\"1554594537326125056\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"url\":\"https:\\/\\/t.co\\/PBdTHFPCJc\",\"display_url\":\"pic.twitter.com\\/PBdTHFPCJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/teacherchike1\\/status\\/1554594793111654402\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1188\":{\"hashtags\":[{\"text\":\"PapaBenji\",\"indices\":[78,88]},{\"text\":\"PapaBenji\",\"indices\":[192,202]},{\"text\":\"WWIII\",\"indices\":[204,210]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"basket_mouth\",\"name\":\"Basket Mouth\",\"id\":101825544,\"id_str\":\"101825544\",\"indices\":[64,77]}],\"urls\":[]},\"1189\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[28,35]},{\"text\":\"Taiwan\",\"indices\":[36,43]},{\"text\":\"Xi\",\"indices\":[44,47]},{\"text\":\"WWIII\",\"indices\":[56,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554591155941253121,\"id_str\":\"1554591155941253121\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"url\":\"https:\\/\\/t.co\\/ShfbN1sSL9\",\"display_url\":\"pic.twitter.com\\/ShfbN1sSL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/louis_prinzy\\/status\\/1554591385281593347\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}}}]},\"1190\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[40,47]},{\"text\":\"China\",\"indices\":[48,54]},{\"text\":\"helicopter\",\"indices\":[55,66]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[67,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DjXznjVYU3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Babyboyav__\\/status\\/1554440191741411328\",\"display_url\":\"twitter.com\\/Babyboyav__\\/st\\u2026\",\"indices\":[76,99]}]},\"1191\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[59,66]},{\"text\":\"China\",\"indices\":[67,73]},{\"text\":\"JacksonWang\",\"indices\":[74,86]},{\"text\":\"WorldWarIII\",\"indices\":[87,99]},{\"text\":\"WorldWar3\",\"indices\":[100,110]},{\"text\":\"Carterefe\",\"indices\":[111,121]},{\"text\":\"Wizkid\",\"indices\":[122,129]},{\"text\":\"AtikuOkowa2023\",\"indices\":[130,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554590630231277572,\"id_str\":\"1554590630231277572\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"url\":\"https:\\/\\/t.co\\/lJPjiWEKfZ\",\"display_url\":\"pic.twitter.com\\/lJPjiWEKfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sirvee101\\/status\\/1554590639408484353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"}}}]},\"1192\":{\"hashtags\":[{\"text\":\"WorldWarIII\",\"indices\":[247,259]},{\"text\":\"ChinaTaiwan\",\"indices\":[260,272]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[273,291]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1193\":{\"hashtags\":[{\"text\":\"sheggzandbella\",\"indices\":[0,15]},{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"saheedbalogun\",\"indices\":[26,40]},{\"text\":\"phyna\",\"indices\":[41,47]},{\"text\":\"doyin\",\"indices\":[48,54]},{\"text\":\"BB24\",\"indices\":[55,60]},{\"text\":\"BBNajia\",\"indices\":[62,70]},{\"text\":\"BBN\",\"indices\":[72,76]},{\"text\":\"BBNaijaSeason7\",\"indices\":[78,93]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[95,110]},{\"text\":\"modella\",\"indices\":[112,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VtjshNhCgN\",\"expanded_url\":\"https:\\/\\/www.lifestylegist.com\\/2022\\/08\\/bbnajia-s7-trouble-looms-for-love.html?m=1\",\"display_url\":\"lifestylegist.com\\/2022\\/08\\/bbnaji\\u2026\",\"indices\":[198,221]}],\"media\":[{\"id\":1554589156348674055,\"id_str\":\"1554589156348674055\",\"indices\":[222,245],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"url\":\"https:\\/\\/t.co\\/4qOh0Bcriz\",\"display_url\":\"pic.twitter.com\\/4qOh0Bcriz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifestylegist1\\/status\\/1554589166352187393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":831,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":831,\"resize\":\"fit\"}}}]},\"1194\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"Pelosi\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Quicktake\",\"name\":\"Bloomberg Quicktake\",\"id\":252751061,\"id_str\":\"252751061\",\"indices\":[0,10]}],\"urls\":[]},\"1195\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"Pelosi\",\"indices\":[8,15]},{\"text\":\"Xi\",\"indices\":[16,19]},{\"text\":\"BBNaija\",\"indices\":[28,36]},{\"text\":\"World\",\"indices\":[37,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554588441756704768,\"id_str\":\"1554588441756704768\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"url\":\"https:\\/\\/t.co\\/Y0fdqSTitx\",\"display_url\":\"pic.twitter.com\\/Y0fdqSTitx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZOrogho\\/status\\/1554588484404449289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":446,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":787,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1284,\"h\":1957,\"resize\":\"fit\"}}}]},\"1196\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[61,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554587975564103680,\"id_str\":\"1554587975564103680\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"url\":\"https:\\/\\/t.co\\/4o2OIyw7oL\",\"display_url\":\"pic.twitter.com\\/4o2OIyw7oL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aboki_30BG\\/status\\/1554587978223288320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":582,\"h\":500,\"resize\":\"fit\"}}}]},\"1197\":{\"hashtags\":[{\"text\":\"money\",\"indices\":[56,62]},{\"text\":\"businessideas\",\"indices\":[63,77]},{\"text\":\"moneymaking\",\"indices\":[78,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"Pelosi\",\"indices\":[99,106]},{\"text\":\"makeoneyonline\",\"indices\":[107,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NdQQwu4ypZ\",\"expanded_url\":\"https:\\/\\/www.gidisblog.com\\/2022\\/08\\/how-to-make-money-without-job.html\",\"display_url\":\"gidisblog.com\\/2022\\/08\\/how-to\\u2026\",\"indices\":[32,55]}]},\"1198\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[215,222]},{\"text\":\"bangalorerains\",\"indices\":[223,238]},{\"text\":\"China\",\"indices\":[239,245]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EkeneUzochukwu1\",\"name\":\"EkeneKennel\",\"id\":1388393546399592449,\"id_str\":\"1388393546399592449\",\"indices\":[137,153]},{\"screen_name\":\"AkunneChinyere4\",\"name\":\"UGOEZE\\ud83d\\udc51\\ud83c\\udde7\\ud83c\\uddeb\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1360296697952428036,\"id_str\":\"1360296697952428036\",\"indices\":[154,170]},{\"screen_name\":\"AmakaVirginia1\",\"name\":\"Amaka Virginia\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\",\"id\":1261588481920446464,\"id_str\":\"1261588481920446464\",\"indices\":[171,186]},{\"screen_name\":\"PalmykennelJos\",\"name\":\"Palmy Kennel Jos\",\"id\":1516740406968528900,\"id_str\":\"1516740406968528900\",\"indices\":[187,202]},{\"screen_name\":\"richmoh600\",\"name\":\"MOMOH RICHARD RICHYKENNEL JOS ,DOG lOVER\",\"id\":3126174473,\"id_str\":\"3126174473\",\"indices\":[203,214]}],\"urls\":[],\"media\":[{\"id\":1554586208952532994,\"id_str\":\"1554586208952532994\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"url\":\"https:\\/\\/t.co\\/d3aa5a3f0V\",\"display_url\":\"pic.twitter.com\\/d3aa5a3f0V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/alabedejoseph1\\/status\\/1554586355518300166\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1199\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"BBNaijaS7\",\"indices\":[48,58]},{\"text\":\"BBNajia\",\"indices\":[59,67]},{\"text\":\"World\",\"indices\":[68,74]},{\"text\":\"doggy\",\"indices\":[83,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1200\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[77,83]},{\"text\":\"Pelosi\",\"indices\":[84,91]},{\"text\":\"ASUUstrike\",\"indices\":[92,103]},{\"text\":\"USA\",\"indices\":[104,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PtryLuVyTO\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3zkumUs\",\"display_url\":\"bit.ly\\/3zkumUs\",\"indices\":[120,143]}]},\"1201\":{\"hashtags\":[{\"text\":\"Modella\",\"indices\":[48,56]},{\"text\":\"Taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554583971324887040,\"id_str\":\"1554583971324887040\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/bmG4W5Hwwy\",\"display_url\":\"pic.twitter.com\\/bmG4W5Hwwy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thisisalagbaa\\/status\\/1554584412356050948\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1202\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"Lekki\",\"indices\":[163,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"Obidatti023\",\"indices\":[177,189]},{\"text\":\"PeterObi4President2023\",\"indices\":[190,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554583816798355461,\"id_str\":\"1554583816798355461\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"url\":\"https:\\/\\/t.co\\/zaYOx6IOCb\",\"display_url\":\"pic.twitter.com\\/zaYOx6IOCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554583820158001152\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"1203\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[37,43]},{\"text\":\"PLA\",\"indices\":[46,50]},{\"text\":\"Xiamen\",\"indices\":[78,85]},{\"text\":\"PelosiinTaiwan\",\"indices\":[108,123]},{\"text\":\"China\",\"indices\":[124,130]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[131,149]},{\"text\":\"ChinaTaiwan\",\"indices\":[150,162]},{\"text\":\"USA\",\"indices\":[163,167]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554582993804873728,\"id_str\":\"1554582993804873728\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"url\":\"https:\\/\\/t.co\\/F075q1h4GA\",\"display_url\":\"pic.twitter.com\\/F075q1h4GA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554583020010901504\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"1204\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1205\":{\"hashtags\":[{\"text\":\"Hosmer\",\"indices\":[228,235]},{\"text\":\"Padres\",\"indices\":[236,243]},{\"text\":\"emily\",\"indices\":[244,250]},{\"text\":\"Taiwan\",\"indices\":[251,258]},{\"text\":\"LoveIsland\",\"indices\":[259,270]},{\"text\":\"instagood\",\"indices\":[271,281]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554568929242226689,\"id_str\":\"1554568929242226689\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLwNGZXoAE31DZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLwNGZXoAE31DZ.jpg\",\"url\":\"https:\\/\\/t.co\\/Kd5k8OVcfa\",\"display_url\":\"pic.twitter.com\\/Kd5k8OVcfa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554582779278548993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":765,\"resize\":\"fit\"},\"small\":{\"w\":667,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":765,\"resize\":\"fit\"}}}]},\"1206\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[19,25]},{\"text\":\"Pelossi\",\"indices\":[34,42]},{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"USA\",\"indices\":[59,63]},{\"text\":\"Aliexpress\",\"indices\":[72,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CNN\",\"name\":\"CNN\",\"id\":759251,\"id_str\":\"759251\",\"indices\":[0,4]},{\"screen_name\":\"selinawangtv\",\"name\":\"Selina Wang\",\"id\":853669477,\"id_str\":\"853669477\",\"indices\":[5,18]}],\"urls\":[]},\"1207\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Pelossi\",\"indices\":[15,23]},{\"text\":\"Taiwan\",\"indices\":[32,39]},{\"text\":\"USA\",\"indices\":[40,44]},{\"text\":\"Aliexpress\",\"indices\":[53,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1208\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[99,106]},{\"text\":\"china\",\"indices\":[107,113]},{\"text\":\"biden\",\"indices\":[114,120]},{\"text\":\"usa\",\"indices\":[121,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1209\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[4,12]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554581897132789760,\"id_str\":\"1554581897132789760\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"url\":\"https:\\/\\/t.co\\/UT5Uy5HRvJ\",\"display_url\":\"pic.twitter.com\\/UT5Uy5HRvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554581905239969792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":912,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":912,\"resize\":\"fit\"}}}]},\"1210\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CGMeifangZhang\",\"name\":\"Zhang Meifang\\u5f20\\u7f8e\\u82b3\",\"id\":1222894323152195586,\"id_str\":\"1222894323152195586\",\"indices\":[0,15]}],\"urls\":[]},\"1211\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[78,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"HappyNewMonth\",\"indices\":[93,107]},{\"text\":\"ASSU\",\"indices\":[108,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1212\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[126,133]},{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"OBIDIENTS\",\"indices\":[149,159]},{\"text\":\"helicopter\",\"indices\":[160,171]},{\"text\":\"HelicopterCrash\",\"indices\":[172,188]},{\"text\":\"JacksonWang\",\"indices\":[189,201]},{\"text\":\"Obidatti023\",\"indices\":[202,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554581234235412481,\"id_str\":\"1554581234235412481\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"url\":\"https:\\/\\/t.co\\/NFhyoMAUlk\",\"display_url\":\"pic.twitter.com\\/NFhyoMAUlk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jos1Saint\\/status\\/1554581240686297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"}}}]},\"1213\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[225,232]},{\"text\":\"AtikuOkowa2023\",\"indices\":[233,248]},{\"text\":\"Lekki\",\"indices\":[249,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"QUEENOFDBLUES1\",\"name\":\"GBEMISOLA CFC\\ud83d\\udc99\",\"id\":1475721397544501248,\"id_str\":\"1475721397544501248\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554581005146652674,\"id_str\":\"1554581005146652674\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"url\":\"https:\\/\\/t.co\\/4VG90Qm9JZ\",\"display_url\":\"pic.twitter.com\\/4VG90Qm9JZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oladeji_ogunsh\\/status\\/1554581013409546248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1792,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"1214\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"Pelosi\",\"indices\":[166,173]},{\"text\":\"China\",\"indices\":[174,180]},{\"text\":\"travelbloggers\",\"indices\":[181,196]},{\"text\":\"Padres\",\"indices\":[197,204]},{\"text\":\"Batgirl\",\"indices\":[205,213]},{\"text\":\"Hosmer\",\"indices\":[214,221]},{\"text\":\"Dodgers\",\"indices\":[222,230]},{\"text\":\"Soto\",\"indices\":[231,236]},{\"text\":\"explorepage\",\"indices\":[237,249]},{\"text\":\"Explore\",\"indices\":[250,258]},{\"text\":\"TravelTuesday\",\"indices\":[259,273]},{\"text\":\"trip\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554580462596767744,\"id_str\":\"1554580462596767744\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL6sbfXwAAKemG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL6sbfXwAAKemG.jpg\",\"url\":\"https:\\/\\/t.co\\/47N7oXkD21\",\"display_url\":\"pic.twitter.com\\/47N7oXkD21\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554580482276335617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":562,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":562,\"resize\":\"fit\"}}}]},\"1215\":{\"hashtags\":[{\"text\":\"brend\",\"indices\":[104,110]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Pelosi\",\"indices\":[119,126]},{\"text\":\"helicopter\",\"indices\":[127,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554579304125763584,\"id_str\":\"1554579304125763584\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"url\":\"https:\\/\\/t.co\\/YMztRiBL5u\",\"display_url\":\"pic.twitter.com\\/YMztRiBL5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamogswagg\\/status\\/1554579339567661056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1216\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[37,43]},{\"text\":\"China\",\"indices\":[44,50]},{\"text\":\"Pelosi\",\"indices\":[52,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554579114564239360,\"id_str\":\"1554579114564239360\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}}]},\"1217\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"KNUST\",\"indices\":[267,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uwy7TfitIh\",\"expanded_url\":\"https:\\/\\/www.ghnewsbanq.com\\/jobs\\/job-vacancy-for-lab-scientists-midwives-registered-nurses\\/\",\"display_url\":\"ghnewsbanq.com\\/jobs\\/job-vacan\\u2026\",\"indices\":[184,207]}]},\"1218\":{\"hashtags\":[{\"text\":\"AudacyAOTS\",\"indices\":[14,25]},{\"text\":\"SalarioRosaVePorMas\",\"indices\":[26,46]},{\"text\":\"CommonwealthGames2022\",\"indices\":[47,69]},{\"text\":\"taiwan\",\"indices\":[70,77]},{\"text\":\"worldwar\",\"indices\":[78,87]},{\"text\":\"GuinnessAugustMeeting\",\"indices\":[88,110]},{\"text\":\"ifb\",\"indices\":[111,115]},{\"text\":\"WritingCommunity\",\"indices\":[116,133]},{\"text\":\"sad\",\"indices\":[134,138]},{\"text\":\"ToyinAbrahamkiddies\",\"indices\":[139,159]},{\"text\":\"BBNajiaS7\",\"indices\":[160,170]},{\"text\":\"BeautyWithBrains\",\"indices\":[171,188]},{\"text\":\"tuesdayvibe\",\"indices\":[189,201]},{\"text\":\"twitterpoet\",\"indices\":[202,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554578031435517954,\"id_str\":\"1554578031435517954\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"url\":\"https:\\/\\/t.co\\/acD1l2dqBM\",\"display_url\":\"pic.twitter.com\\/acD1l2dqBM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554578605518249987\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1219\":{\"hashtags\":[{\"text\":\"WorldAthleticsChamps\",\"indices\":[66,87]},{\"text\":\"WorldWarIII\",\"indices\":[88,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"PeterObi\",\"indices\":[108,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Cristiano\",\"name\":\"Cristiano Ronaldo\",\"id\":155659213,\"id_str\":\"155659213\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554577725578428416,\"id_str\":\"1554577725578428416\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"url\":\"https:\\/\\/t.co\\/WKf1KfCP3I\",\"display_url\":\"pic.twitter.com\\/WKf1KfCP3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danley_codes\\/status\\/1554577906474655744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1220\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/z6pouwofQl\",\"expanded_url\":\"https:\\/\\/sportsleagueudpate.blogspot.com\\/2022\\/08\\/two-wonderkids-signed-for-chelsea-in.html\",\"display_url\":\"sportsleagueudpate.blogspot.com\\/2022\\/08\\/two-wo\\u2026\",\"indices\":[41,64]}]},\"1221\":{\"hashtags\":[{\"text\":\"sheggzandbella\",\"indices\":[29,44]},{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"WWIII\",\"indices\":[52,58]},{\"text\":\"Wizkid\",\"indices\":[59,66]},{\"text\":\"shes40\",\"indices\":[67,74]},{\"text\":\"Machala\",\"indices\":[75,83]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554576149258321921,\"id_str\":\"1554576149258321921\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"url\":\"https:\\/\\/t.co\\/g8U8HCWEfs\",\"display_url\":\"pic.twitter.com\\/g8U8HCWEfs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sub_sidy1\\/status\\/1554577036416618496\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1222\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mvGvintwOT\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/28\\/female-lecturer-fumes-as-famous-student-invites-barber-to-cut-his-hair-in-class-video-causes-stir-on-social-media\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/28\\/fem\\u2026\",\"indices\":[188,211]}]},\"1223\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GDIib6rNwr\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/29\\/a-viral-video-of-lady-dragged-and-thrown-out-of-club-causes-stir-on-social-media-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/29\\/a-v\\u2026\",\"indices\":[188,211]}]},\"1224\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"helicopter\",\"indices\":[46,57]},{\"text\":\"Lekki\",\"indices\":[58,64]},{\"text\":\"over1\",\"indices\":[65,71]},{\"text\":\"asuu\",\"indices\":[74,79]},{\"text\":\"abujakaduna\",\"indices\":[80,92]},{\"text\":\"ibadan\",\"indices\":[93,100]},{\"text\":\"ibadanphotographer\",\"indices\":[101,120]},{\"text\":\"arikeimagery\",\"indices\":[121,134]},{\"text\":\"arikephotography\",\"indices\":[135,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554576110595313664,\"id_str\":\"1554576110595313664\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"1225\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[0,8]},{\"text\":\"Taiwan\",\"indices\":[9,16]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1226\":{\"hashtags\":[{\"text\":\"ikorodu\",\"indices\":[0,8]},{\"text\":\"StopSellingPi\",\"indices\":[9,23]},{\"text\":\"AkwaIbomTwitter\",\"indices\":[24,40]},{\"text\":\"BORNPINK\",\"indices\":[41,50]},{\"text\":\"China\",\"indices\":[51,57]},{\"text\":\"Pelosi\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554575508972736514,\"id_str\":\"1554575508972736514\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"url\":\"https:\\/\\/t.co\\/tXMNBZl0y9\",\"display_url\":\"pic.twitter.com\\/tXMNBZl0y9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/captain_edet\\/status\\/1554575519135440899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"}}}]},\"1227\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aknpVNtG19\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/29\\/man-caught-red-handed-sleeping-with-someone-wife-goes-viral-on-social-media-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/29\\/man\\u2026\",\"indices\":[188,211]}]},\"1228\":{\"hashtags\":[{\"text\":\"MEMES\",\"indices\":[43,49]},{\"text\":\"code\",\"indices\":[50,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"joblife\",\"indices\":[64,72]},{\"text\":\"technology\",\"indices\":[73,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554575505319464961,\"id_str\":\"1554575505319464961\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"url\":\"https:\\/\\/t.co\\/sto3iBuaWX\",\"display_url\":\"pic.twitter.com\\/sto3iBuaWX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbUtEcH_bRo\\/status\\/1554575508922400768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":872,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":463,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":818,\"resize\":\"fit\"}}}]},\"1229\":{\"hashtags\":[{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[109,134]},{\"text\":\"fcklive\",\"indices\":[135,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"China\",\"indices\":[152,158]},{\"text\":\"chatsekscerita\",\"indices\":[159,174]},{\"text\":\"helicopter\",\"indices\":[175,186]},{\"text\":\"Pelosi\",\"indices\":[187,194]},{\"text\":\"ShowtimeAugust2Natin\",\"indices\":[195,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ConvergenceFin\",\"name\":\"Convergence Finance\",\"id\":1359091443537563651,\"id_str\":\"1359091443537563651\",\"indices\":[32,47]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5NHIvfXkRL\",\"expanded_url\":\"https:\\/\\/t.me\\/convergencefinanceofficial\",\"display_url\":\"t.me\\/convergencefin\\u2026\",\"indices\":[84,107]}],\"media\":[{\"id\":1554575368509702145,\"id_str\":\"1554575368509702145\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"url\":\"https:\\/\\/t.co\\/2z0WSFjajx\",\"display_url\":\"pic.twitter.com\\/2z0WSFjajx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554575385966297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1146,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1755,\"h\":1838,\"resize\":\"fit\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"}}}]},\"1230\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OVo7RdTbNm\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/29\\/im-nobody-without-you-lawyer-breaks-down-in-tears-as-he-thanks-his-mom-after-getting-called-to-bar-video\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/29\\/im-\\u2026\",\"indices\":[188,211]}]},\"1231\":{\"hashtags\":[{\"text\":\"BAT\",\"indices\":[46,50]},{\"text\":\"BAT2023\",\"indices\":[84,92]},{\"text\":\"Worldwar\",\"indices\":[118,127]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[128,153]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"Pelosi\",\"indices\":[164,171]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iamhmmad1\",\"name\":\"h-a-m-m-a-d\",\"id\":1377550428880187392,\"id_str\":\"1377550428880187392\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554575316382875651,\"id_str\":\"1554575316382875651\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"url\":\"https:\\/\\/t.co\\/XYDehFbf1r\",\"display_url\":\"pic.twitter.com\\/XYDehFbf1r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554575319453032448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"small\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":554,\"resize\":\"fit\"}}}]},\"1232\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IF09vhNimK\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/29\\/i-will-never-fall-in-love-again-lady-hospitalized-after-boyfriend-dump-her-video\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/29\\/i-w\\u2026\",\"indices\":[188,211]}]},\"1233\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7x4wQHpUl5\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/30\\/stop-twerking-on-social-media-and-focus-on-your-work-bono-grnma-advises-nurses-and-midwives\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/30\\/sto\\u2026\",\"indices\":[188,211]}]},\"1234\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kAl66ZYcDa\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/30\\/mixed-reactions-as-a-frustrates-mother-uses-rope-strap-to-drag-stubborn-son-on-airport-floor-video\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/30\\/mix\\u2026\",\"indices\":[188,211]}]},\"1235\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pYklckKHCJ\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/30\\/dating-a-working-class-is-just-like-using-android-phone-lady-reveals\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/30\\/dat\\u2026\",\"indices\":[188,211]}]},\"1236\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/L4gWB6rZW5\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/07\\/31\\/how-my-girlfriend-started-to-dating-someone-the-used-to-advise-us-in-the-relationship\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/07\\/31\\/how\\u2026\",\"indices\":[188,211]}]},\"1237\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hk60yqk58R\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/01\\/elderly-man-blasts-men-who-cheat-on-their-wife-says-theyre-gluttons\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/01\\/eld\\u2026\",\"indices\":[188,211]}]},\"1238\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[79,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Obituary\",\"indices\":[95,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iamhmmad1\",\"name\":\"h-a-m-m-a-d\",\"id\":1377550428880187392,\"id_str\":\"1377550428880187392\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554574473826893825,\"id_str\":\"1554574473826893825\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"url\":\"https:\\/\\/t.co\\/WaXLSMGJWu\",\"display_url\":\"pic.twitter.com\\/WaXLSMGJWu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554574477953990657\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"small\":{\"w\":259,\"h\":194,\"resize\":\"fit\"}}}]},\"1239\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thecableng\",\"name\":\"TheCable\",\"id\":1954402777,\"id_str\":\"1954402777\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1240\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7XLEmrezDO\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/01\\/man-stages-fight-with-bouncers-at-a-nightclub-to-propose-to-his-girlfriend-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/01\\/man\\u2026\",\"indices\":[188,211]}]},\"1241\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[31,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"MUFC\",\"indices\":[46,51]},{\"text\":\"Lagos\",\"indices\":[52,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554573919142772740,\"id_str\":\"1554573919142772740\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"url\":\"https:\\/\\/t.co\\/sivn4BF0Lt\",\"display_url\":\"pic.twitter.com\\/sivn4BF0Lt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayode_tevi\\/status\\/1554573928336691206\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":946,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"1242\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UaQsyLi9a5\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/01\\/church-members-seen-adorning-the-feet-of-their-pastor-with-money-during-church-service-video-drops-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/01\\/chu\\u2026\",\"indices\":[188,211]}]},\"1243\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/24KJVW97Xw\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/01\\/netizens-reacts-to-a-viral-video-of-a-shameless-mother-caught-sleeping-with-her-daughter-boyfriend-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/01\\/net\\u2026\",\"indices\":[188,211]}]},\"1244\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RaBGcfCvPt\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/02\\/nigerian-street-vendor-beaten-to-death-in-italy-as-witnesses-stand-by-video-drops-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/02\\/nig\\u2026\",\"indices\":[188,211]}]},\"1245\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AishaYesufu\",\"name\":\"Aisha Yesufu\",\"id\":2531005222,\"id_str\":\"2531005222\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1246\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"China\",\"indices\":[158,164]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[185,200]},{\"text\":\"BBNaijaSeason7\",\"indices\":[201,216]},{\"text\":\"BORNPINK\",\"indices\":[217,226]},{\"text\":\"Dollar\",\"indices\":[227,234]},{\"text\":\"SheggzFC\",\"indices\":[235,244]},{\"text\":\"abeokuta\",\"indices\":[245,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FN0kSz1WoA\",\"expanded_url\":\"https:\\/\\/wa.link\\/9o149q\",\"display_url\":\"wa.link\\/9o149q\",\"indices\":[126,149]}],\"media\":[{\"id\":1554573613482872845,\"id_str\":\"1554573613482872845\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"url\":\"https:\\/\\/t.co\\/b3nGbPJ6WI\",\"display_url\":\"pic.twitter.com\\/b3nGbPJ6WI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Topmostnigga\\/status\\/1554573719493910528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"1247\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[78,87]},{\"text\":\"PeterObi2023\",\"indices\":[88,101]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[102,127]},{\"text\":\"Reno\",\"indices\":[129,134]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"Tinubu2023\",\"indices\":[144,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554573601575165952,\"id_str\":\"1554573601575165952\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"url\":\"https:\\/\\/t.co\\/mcz8JzpAuh\",\"display_url\":\"pic.twitter.com\\/mcz8JzpAuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PBplusOilAndGas\\/status\\/1554573632428449801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1248\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KamalaHarris\",\"name\":\"Kamala Harris\",\"id\":30354991,\"id_str\":\"30354991\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1249\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"WATCHTOEARN\",\"indices\":[216,228]},{\"text\":\"WWERaw\",\"indices\":[229,236]},{\"text\":\"Web3\",\"indices\":[237,242]},{\"text\":\"reMARKable24years\",\"indices\":[243,261]},{\"text\":\"ElonMusk\",\"indices\":[262,271]},{\"text\":\"helicopter\",\"indices\":[272,283]},{\"text\":\"China\",\"indices\":[284,290]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1250\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thecableng\",\"name\":\"TheCable\",\"id\":1954402777,\"id_str\":\"1954402777\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1251\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QUy8Tho8qn\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/02\\/can-your-father-give-you-%e2%82%b5200-lady-slams-other-women-who-are-not-grateful-when-their-boyfriends-give-them-money\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/02\\/can\\u2026\",\"indices\":[188,211]}]},\"1252\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"China\",\"indices\":[36,42]},{\"text\":\"AVFC\",\"indices\":[43,48]},{\"text\":\"trending\",\"indices\":[49,58]},{\"text\":\"helicopter\",\"indices\":[59,70]},{\"text\":\"FolloMe\",\"indices\":[71,79]},{\"text\":\"hongbesh\",\"indices\":[80,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554572788920369152,\"id_str\":\"1554572788920369152\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"url\":\"https:\\/\\/t.co\\/HQwbISDLcM\",\"display_url\":\"pic.twitter.com\\/HQwbISDLcM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HGbesh\\/status\\/1554572799079071747\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":378,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":666,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1137,\"h\":2048,\"resize\":\"fit\"}}}]},\"1253\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QBiBWr8r2O\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/02\\/young-lady-argues-with-her-date-for-expecting-her-to-pay-for-expensive-food-she-ordered-video\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/02\\/you\\u2026\",\"indices\":[188,211]}]},\"1254\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Yx2jEA1msh\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/02\\/shs-student-cause-stir-on-social-media-after-showing-off-her-tw3rking-skills-at-the-hostel-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/02\\/shs\\u2026\",\"indices\":[188,211]}]},\"1255\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"5StarAlbum\",\"indices\":[136,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LA1LjnkP2G\",\"expanded_url\":\"https:\\/\\/dailytrendsgh.com\\/2022\\/08\\/02\\/market-women-beats-a-thief-for-daring-to-steal-at-accra-central-market-watch\\/\",\"display_url\":\"dailytrendsgh.com\\/2022\\/08\\/02\\/mar\\u2026\",\"indices\":[188,211]}]},\"1256\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"Machala\",\"indices\":[32,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554572134692839424,\"id_str\":\"1554572134692839424\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"url\":\"https:\\/\\/t.co\\/tcuRoXXAF3\",\"display_url\":\"pic.twitter.com\\/tcuRoXXAF3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CamillusChinon1\\/status\\/1554572159581814787\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1257\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1258\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[172,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lawrencekitema\",\"name\":\"Lawrence Kitema\",\"id\":584004949,\"id_str\":\"584004949\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1259\":{\"hashtags\":[{\"text\":\"tuesdayvibe\",\"indices\":[40,52]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"Obidatti023\",\"indices\":[76,88]},{\"text\":\"TakeBackNaija\",\"indices\":[89,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554571677832560649,\"id_str\":\"1554571677832560649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"1260\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[251,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"delick_manzi\",\"name\":\"KINGSMAN \\u2122\",\"id\":1470452794066972674,\"id_str\":\"1470452794066972674\",\"indices\":[0,13]},{\"screen_name\":\"sammiemanini1\",\"name\":\"Sammie Manini\",\"id\":1477239688389926912,\"id_str\":\"1477239688389926912\",\"indices\":[14,28]},{\"screen_name\":\"bamwinejnr\",\"name\":\"Phil.\\ud83d\\udc51\\ud83e\\udd85\\ud83d\\udc10\",\"id\":1291370812302413825,\"id_str\":\"1291370812302413825\",\"indices\":[29,40]},{\"screen_name\":\"MrrChapter\",\"name\":\"Mr_Chapter\\ud83d\\udc51\\u26f9\\ufe0f\\u200d\\u2642\\ufe0f\\ud83d\\ude09\",\"id\":1359381835806048257,\"id_str\":\"1359381835806048257\",\"indices\":[41,52]},{\"screen_name\":\"LilyNampa\",\"name\":\"Lily Love\\ud83d\\udc96\\ud83e\\udd8b\",\"id\":1164792252339642375,\"id_str\":\"1164792252339642375\",\"indices\":[53,63]},{\"screen_name\":\"CanaanArinda\",\"name\":\"Noise Maker\\u2122\\ud83d\\udc68\\ud83c\\udffe\\u200d\\ud83e\\uddaf\",\"id\":1102240397491912710,\"id_str\":\"1102240397491912710\",\"indices\":[64,77]},{\"screen_name\":\"ArthurMuhwezi12\",\"name\":\"Arthur \\u2660\",\"id\":1260532390088376322,\"id_str\":\"1260532390088376322\",\"indices\":[78,94]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1261\":{\"hashtags\":[{\"text\":\"thenextfour\",\"indices\":[18,30]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"NancyPelosi\",\"indices\":[76,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554571484919652353,\"id_str\":\"1554571484919652353\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"url\":\"https:\\/\\/t.co\\/3fvdTVhxz3\",\"display_url\":\"pic.twitter.com\\/3fvdTVhxz3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/erioluu\\/status\\/1554571502409981952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"1262\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1263\":{\"hashtags\":[{\"text\":\"Davido\",\"indices\":[204,211]},{\"text\":\"EndSARS\",\"indices\":[213,221]},{\"text\":\"StopSellingPi\",\"indices\":[223,237]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"Pelosi\",\"indices\":[248,255]},{\"text\":\"China\",\"indices\":[257,263]},{\"text\":\"helicopter\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554571272939503617,\"id_str\":\"1554571272939503617\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"url\":\"https:\\/\\/t.co\\/StLsLPAdY2\",\"display_url\":\"pic.twitter.com\\/StLsLPAdY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554571349196242944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":528,\"h\":480,\"resize\":\"fit\"}}}]},\"1264\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[148,155]},{\"text\":\"Obidiots\",\"indices\":[156,165]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"oyostategovt\",\"name\":\"Oyo State Government\",\"id\":586572792,\"id_str\":\"586572792\",\"indices\":[166,179]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RjAIU2Hqlb\",\"expanded_url\":\"https:\\/\\/truetellsnigeria.com\\/2022\\/08\\/02\\/blueface-physically-fights-girlfriend-chrisean-rock-in-public-video\\/\",\"display_url\":\"truetellsnigeria.com\\/2022\\/08\\/02\\/blu\\u2026\",\"indices\":[100,123]}]},\"1265\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gyaigyyimii\",\"name\":\"KALYJAY \\uea00\",\"id\":1382488424,\"id_str\":\"1382488424\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1266\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"NorthKorea\",\"indices\":[90,101]},{\"text\":\"NuclearWar\",\"indices\":[102,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"realDonaldTrump\",\"name\":\"Donald J. Trump\",\"id\":25073877,\"id_str\":\"25073877\",\"indices\":[65,81]}],\"urls\":[]},\"1267\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"BBNaija\",\"indices\":[108,116]},{\"text\":\"Cubana\",\"indices\":[117,124]},{\"text\":\"helicopter\",\"indices\":[125,136]},{\"text\":\"BellaOkagbue\",\"indices\":[137,150]},{\"text\":\"Trending\",\"indices\":[151,160]},{\"text\":\"Tinubu\",\"indices\":[161,168]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[169,194]},{\"text\":\"fun\",\"indices\":[195,199]},{\"text\":\"bread\",\"indices\":[200,206]},{\"text\":\"Ilebaye\",\"indices\":[207,215]},{\"text\":\"China\",\"indices\":[216,222]},{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"ASUU\",\"indices\":[231,236]},{\"text\":\"cruise\",\"indices\":[237,244]},{\"text\":\"Wizkidfc\",\"indices\":[245,254]},{\"text\":\"Wizkid\",\"indices\":[255,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554569453408485381,\"id_str\":\"1554569453408485381\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"url\":\"https:\\/\\/t.co\\/g210vExw4h\",\"display_url\":\"pic.twitter.com\\/g210vExw4h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554570096919646214\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":508,\"h\":360,\"resize\":\"fit\"}}}]},\"1268\":{\"hashtags\":[{\"text\":\"Naira\",\"indices\":[60,66]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[83,91]},{\"text\":\"China\",\"indices\":[92,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O6bpvTJjJ6\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/breaking-naira-appreciate-n665-to-a-dollar-at-black-market\\/\",\"display_url\":\"iexclusivenews.com.ng\\/breaking-naira\\u2026\",\"indices\":[99,122]}]},\"1269\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ShehuSani\",\"name\":\"Senator Shehu Sani\",\"id\":117042662,\"id_str\":\"117042662\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1270\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[55,63]},{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"Obidatti2023\",\"indices\":[72,85]},{\"text\":\"Wizkidfc\",\"indices\":[86,95]},{\"text\":\"30BG\",\"indices\":[96,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554567277638553600,\"id_str\":\"1554567277638553600\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"url\":\"https:\\/\\/t.co\\/5QOb1BIQY2\",\"display_url\":\"pic.twitter.com\\/5QOb1BIQY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pluse_official\\/status\\/1554567302422609920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1271\":{\"hashtags\":[{\"text\":\"XiaomiImagery\",\"indices\":[120,134]},{\"text\":\"macdavisken\",\"indices\":[135,147]},{\"text\":\"China\",\"indices\":[149,155]},{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Pelosi\",\"indices\":[168,175]},{\"text\":\"JacksonWang\",\"indices\":[176,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Xiaomi\",\"name\":\"Xiaomi\",\"id\":377228272,\"id_str\":\"377228272\",\"indices\":[47,54]},{\"screen_name\":\"XiaomiNigeria\",\"name\":\"Xiaomi Nigeria\",\"id\":1113053142545924097,\"id_str\":\"1113053142545924097\",\"indices\":[55,69]}],\"urls\":[],\"media\":[{\"id\":1554567165231112192,\"id_str\":\"1554567165231112192\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"url\":\"https:\\/\\/t.co\\/sfUGAQ8nua\",\"display_url\":\"pic.twitter.com\\/sfUGAQ8nua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Macdavvis1\\/status\\/1554567192582258688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"1272\":{\"hashtags\":[{\"text\":\"SouthAfrica\",\"indices\":[226,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"Pelosi\",\"indices\":[247,254]},{\"text\":\"China\",\"indices\":[255,261]},{\"text\":\"GistLoverStory\",\"indices\":[262,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554567052840603650,\"id_str\":\"1554567052840603650\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"url\":\"https:\\/\\/t.co\\/LG5PfsgYol\",\"display_url\":\"pic.twitter.com\\/LG5PfsgYol\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554567123468443649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":480,\"resize\":\"fit\"}}}]},\"1273\":{\"hashtags\":[{\"text\":\"3km\",\"indices\":[147,151]},{\"text\":\"PlayToEarn\",\"indices\":[152,163]},{\"text\":\"NFTGiveaway\",\"indices\":[164,176]},{\"text\":\"blockchain\",\"indices\":[177,188]},{\"text\":\"cryptocurrency\",\"indices\":[189,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"helicopter\",\"indices\":[213,224]},{\"text\":\"WIN\",\"indices\":[225,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"3KMOfficial\",\"name\":\"3KM_Official\",\"id\":1528957203905798144,\"id_str\":\"1528957203905798144\",\"indices\":[19,31]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wNxSYmMpWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/3KMOfficial\\/status\\/1554557140702044161\",\"display_url\":\"twitter.com\\/3KMOfficial\\/st\\u2026\",\"indices\":[230,253]}]},\"1274\":{\"hashtags\":[{\"text\":\"obituary\",\"indices\":[106,115]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[116,141]},{\"text\":\"OBIdient2023\",\"indices\":[142,155]},{\"text\":\"Pelosi\",\"indices\":[157,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554566342237364224,\"id_str\":\"1554566342237364224\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"url\":\"https:\\/\\/t.co\\/G4k25DjFCh\",\"display_url\":\"pic.twitter.com\\/G4k25DjFCh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/enginecarboncl3\\/status\\/1554566359635435522\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"small\":{\"w\":621,\"h\":680,\"resize\":\"fit\"}}}]},\"1275\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"NancyPelosi\",\"indices\":[189,201]},{\"text\":\"China\",\"indices\":[202,208]},{\"text\":\"helicopter\",\"indices\":[209,220]},{\"text\":\"taiwanischina\",\"indices\":[221,235]},{\"text\":\"Taipei\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554566176721850370,\"id_str\":\"1554566176721850370\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1276\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[135,142]},{\"text\":\"China\",\"indices\":[144,150]},{\"text\":\"Worldwar111\",\"indices\":[152,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565836060368900,\"id_str\":\"1554565836060368900\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"url\":\"https:\\/\\/t.co\\/OCxbv6UNJE\",\"display_url\":\"pic.twitter.com\\/OCxbv6UNJE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1554565885150609412\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"}}}]},\"1277\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[190,196]},{\"text\":\"Pelosi\",\"indices\":[197,204]},{\"text\":\"WorldWarIII\",\"indices\":[205,217]},{\"text\":\"NancyPelosi\",\"indices\":[227,239]},{\"text\":\"MrPeterObi\",\"indices\":[240,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1278\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[38,45]},{\"text\":\"Freestyle\",\"indices\":[46,56]},{\"text\":\"RAP\",\"indices\":[57,61]},{\"text\":\"newtrend\",\"indices\":[62,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565458031960065,\"id_str\":\"1554565458031960065\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"url\":\"https:\\/\\/t.co\\/I0oRy79J6S\",\"display_url\":\"pic.twitter.com\\/I0oRy79J6S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554565609727397888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1279\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[233,240]},{\"text\":\"China\",\"indices\":[241,247]},{\"text\":\"taiwanischina\",\"indices\":[248,262]},{\"text\":\"NancyPelosi\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565442655686662,\"id_str\":\"1554565442655686662\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"url\":\"https:\\/\\/t.co\\/DMOVY73bxJ\",\"display_url\":\"pic.twitter.com\\/DMOVY73bxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565491808784386\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1280\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"NancyPelosi\",\"indices\":[99,111]},{\"text\":\"China\",\"indices\":[179,185]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[186,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565367259090944,\"id_str\":\"1554565367259090944\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"url\":\"https:\\/\\/t.co\\/LK9Tgqbfpo\",\"display_url\":\"pic.twitter.com\\/LK9Tgqbfpo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554565373692747777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"1281\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"taiwanischina\",\"indices\":[103,117]},{\"text\":\"TaiwanIsaCountry\",\"indices\":[118,135]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"NancyPelosi\",\"indices\":[144,156]},{\"text\":\"helicopter\",\"indices\":[157,168]},{\"text\":\"Trending\",\"indices\":[169,178]},{\"text\":\"TrendingNow\",\"indices\":[179,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554564980330094592,\"id_str\":\"1554564980330094592\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"url\":\"https:\\/\\/t.co\\/3keenBlNEu\",\"display_url\":\"pic.twitter.com\\/3keenBlNEu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565016489279498\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1282\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"China\",\"indices\":[29,35]},{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[49,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554564792278450177,\"id_str\":\"1554564792278450177\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"url\":\"https:\\/\\/t.co\\/09SipiAiwx\",\"display_url\":\"pic.twitter.com\\/09SipiAiwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554564794887421954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":492,\"h\":973,\"resize\":\"fit\"},\"small\":{\"w\":344,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":492,\"h\":973,\"resize\":\"fit\"}}}]},\"1283\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[94,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554564605208313857,\"id_str\":\"1554564605208313857\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564605208313857\\/pu\\/img\\/GtDBX50dsdiSR9uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564605208313857\\/pu\\/img\\/GtDBX50dsdiSR9uv.jpg\",\"url\":\"https:\\/\\/t.co\\/2VrIbfuJiq\",\"display_url\":\"pic.twitter.com\\/2VrIbfuJiq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554564668982808579\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"1284\":{\"hashtags\":[{\"text\":\"OBIdient2023\",\"indices\":[128,141]},{\"text\":\"wizkid\",\"indices\":[158,165]},{\"text\":\"OBIDIENTS\",\"indices\":[226,236]},{\"text\":\"helicopter\",\"indices\":[257,268]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[28,37]}],\"urls\":[],\"media\":[{\"id\":1554564294246899713,\"id_str\":\"1554564294246899713\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1285\":{\"hashtags\":[{\"text\":\"Iran\",\"indices\":[159,164]},{\"text\":\"Baghdad\",\"indices\":[165,173]},{\"text\":\"Gistlover\",\"indices\":[174,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"NancyPelosi\",\"indices\":[200,212]},{\"text\":\"Trending\",\"indices\":[213,222]},{\"text\":\"TrendingNow\",\"indices\":[223,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563909604065282,\"id_str\":\"1554563909604065282\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"url\":\"https:\\/\\/t.co\\/4GXSetMpTG\",\"display_url\":\"pic.twitter.com\\/4GXSetMpTG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554564046287953921\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1286\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[98,106]},{\"text\":\"helicopter\",\"indices\":[107,118]},{\"text\":\"NancyPelosi\",\"indices\":[119,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563716204601344,\"id_str\":\"1554563716204601344\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"url\":\"https:\\/\\/t.co\\/tESlr2Og8O\",\"display_url\":\"pic.twitter.com\\/tESlr2Og8O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FadoroTobi\\/status\\/1554563834324652032\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}}}]},\"1287\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"BBNajiaS7\",\"indices\":[92,102]},{\"text\":\"BBNaijaSeason7\",\"indices\":[103,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563339052892162,\"id_str\":\"1554563339052892162\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"url\":\"https:\\/\\/t.co\\/JY1Tr0L5rC\",\"display_url\":\"pic.twitter.com\\/JY1Tr0L5rC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ade_omo_Giwa\\/status\\/1554563551221760001\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"1288\":{\"hashtags\":[{\"text\":\"airdropalert\",\"indices\":[119,132]},{\"text\":\"BSCGems\",\"indices\":[133,141]},{\"text\":\"Crypto\",\"indices\":[142,149]},{\"text\":\"Giveaway\",\"indices\":[150,159]},{\"text\":\"NFTGiveaway\",\"indices\":[160,172]},{\"text\":\"NFTAirdrop\",\"indices\":[173,184]},{\"text\":\"NFTCommumity\",\"indices\":[185,198]},{\"text\":\"NFTfamily\",\"indices\":[199,209]},{\"text\":\"NFTProject\",\"indices\":[210,221]},{\"text\":\"Metaverse\",\"indices\":[223,233]},{\"text\":\"GameFi\",\"indices\":[234,241]},{\"text\":\"P2E\",\"indices\":[242,246]},{\"text\":\"BSC\",\"indices\":[248,252]},{\"text\":\"Pelosi\",\"indices\":[253,260]},{\"text\":\"Web3\",\"indices\":[261,266]},{\"text\":\"Crypto\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[0,16]},{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[102,118]}],\"urls\":[],\"media\":[{\"id\":1554563235650707460,\"id_str\":\"1554563235650707460\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"url\":\"https:\\/\\/t.co\\/9viU1HDss1\",\"display_url\":\"pic.twitter.com\\/9viU1HDss1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1554563249894555648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1289\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1290\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"China\",\"indices\":[84,90]},{\"text\":\"BBNaija\",\"indices\":[91,99]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[100,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554560263009042439,\"id_str\":\"1554560263009042439\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"url\":\"https:\\/\\/t.co\\/j6e1GbRdG3\",\"display_url\":\"pic.twitter.com\\/j6e1GbRdG3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gbachis\\/status\\/1554560269271048199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":736,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":736,\"resize\":\"fit\"}}}]},\"1291\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"NancyPelosi\",\"indices\":[61,73]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nentawe1\",\"name\":\"Nentawe G. Yilwatda\",\"id\":825488924,\"id_str\":\"825488924\",\"indices\":[75,84]}],\"urls\":[],\"media\":[{\"id\":1554560154431111170,\"id_str\":\"1554560154431111170\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"url\":\"https:\\/\\/t.co\\/szWcNq2iac\",\"display_url\":\"pic.twitter.com\\/szWcNq2iac\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Longdenjr1\\/status\\/1554560172017811465\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"1292\":{\"hashtags\":[{\"text\":\"BeautyWithBrains\",\"indices\":[42,59]},{\"text\":\"Bbnaija\",\"indices\":[60,68]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[77,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554560136332681217,\"id_str\":\"1554560136332681217\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"url\":\"https:\\/\\/t.co\\/Sjbw8y0IwH\",\"display_url\":\"pic.twitter.com\\/Sjbw8y0IwH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DicksonFunkeye\\/status\\/1554560151427993602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1088,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":361,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":638,\"h\":1200,\"resize\":\"fit\"}}}]},\"1293\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1294\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[100,111]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[112,127]},{\"text\":\"SuperTuna_Jin\",\"indices\":[128,142]},{\"text\":\"Pelosi\",\"indices\":[143,150]},{\"text\":\"NancyPelosi\",\"indices\":[151,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1295\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[18,24]},{\"text\":\"Pelosi\",\"indices\":[25,32]},{\"text\":\"helicopter\",\"indices\":[33,44]},{\"text\":\"BBNaija\",\"indices\":[45,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554558659690102785,\"id_str\":\"1554558659690102785\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"url\":\"https:\\/\\/t.co\\/vrjqi5d14o\",\"display_url\":\"pic.twitter.com\\/vrjqi5d14o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554559036997226499\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"1296\":{\"hashtags\":[{\"text\":\"anime\",\"indices\":[35,41]},{\"text\":\"Nigeria\",\"indices\":[42,50]},{\"text\":\"manga\",\"indices\":[51,57]},{\"text\":\"new\",\"indices\":[58,62]},{\"text\":\"Pelosi\",\"indices\":[63,70]},{\"text\":\"naija\",\"indices\":[71,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554558875575238656,\"id_str\":\"1554558875575238656\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"url\":\"https:\\/\\/t.co\\/FEUIKswiB5\",\"display_url\":\"pic.twitter.com\\/FEUIKswiB5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Otaku_konnect\\/status\\/1554559032274345993\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"1297\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[103,110]},{\"text\":\"NancyPelosi\",\"indices\":[112,124]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[126,151]},{\"text\":\"Obidatti023\",\"indices\":[153,165]},{\"text\":\"Obidatti2023\",\"indices\":[167,180]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[182,199]},{\"text\":\"BBNaija\",\"indices\":[201,209]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[211,220]}],\"urls\":[],\"media\":[{\"id\":1554557954673807372,\"id_str\":\"1554557954673807372\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"url\":\"https:\\/\\/t.co\\/dR7enXaCX9\",\"display_url\":\"pic.twitter.com\\/dR7enXaCX9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thebenfeyijimi\\/status\\/1554557971069374464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"}}}]},\"1298\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CGMeifangZhang\",\"name\":\"Zhang Meifang\\u5f20\\u7f8e\\u82b3\",\"id\":1222894323152195586,\"id_str\":\"1222894323152195586\",\"indices\":[0,15]}],\"urls\":[]},\"1299\":{\"hashtags\":[{\"text\":\"bhimnationgloba\",\"indices\":[23,39]},{\"text\":\"China\",\"indices\":[40,46]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"helicopter\",\"indices\":[55,66]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"stonebwoy\",\"name\":\"1GAD\",\"id\":105137891,\"id_str\":\"105137891\",\"indices\":[12,22]}],\"urls\":[],\"media\":[{\"id\":1554556880302792706,\"id_str\":\"1554556880302792706\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLlPwmWYAIAGGn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLlPwmWYAIAGGn.jpg\",\"url\":\"https:\\/\\/t.co\\/7K0kAP7QF5\",\"display_url\":\"pic.twitter.com\\/7K0kAP7QF5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicholaskofiCo4\\/status\\/1554556886346776577\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":587,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":803,\"h\":693,\"resize\":\"fit\"}}}]},\"1300\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"BBNaija\",\"indices\":[170,178]},{\"text\":\"Obidatti023\",\"indices\":[179,191]},{\"text\":\"PeterObi4President2023\",\"indices\":[192,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554556553323233282,\"id_str\":\"1554556553323233282\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"url\":\"https:\\/\\/t.co\\/aEHGtnzasE\",\"display_url\":\"pic.twitter.com\\/aEHGtnzasE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554556555688910849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"1301\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"China\",\"indices\":[29,35]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[36,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1302\":{\"hashtags\":[{\"text\":\"Hepatitis\",\"indices\":[103,113]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[114,131]},{\"text\":\"China\",\"indices\":[239,245]},{\"text\":\"Pelosi\",\"indices\":[246,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/saVxYVwPVi\",\"expanded_url\":\"https:\\/\\/myhealthmatterstoday.wordpress.com\\/2022\\/08\\/02\\/myth-and-facts-about-hepatitis\",\"display_url\":\"myhealthmatterstoday.wordpress.com\\/2022\\/08\\/02\\/myt\\u2026\",\"indices\":[254,277]}]},\"1303\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[161,168]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RT_com\",\"name\":\"RT\",\"id\":64643056,\"id_str\":\"64643056\",\"indices\":[0,7]}],\"urls\":[]},\"1304\":{\"hashtags\":[{\"text\":\"Summer\",\"indices\":[14,21]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[23,30]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[32,57]},{\"text\":\"CharlotteXRica\",\"indices\":[58,73]},{\"text\":\"\\u0e1e\\u0e34\\u0e28\\u0e27\\u0e32\\u0e2a\\u0e06\\u0e32\\u0e15\\u0e40\\u0e01\\u0e21\\u0e2a\\u0e4cep10\",\"indices\":[74,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[102,125]},{\"text\":\"Pelosi\",\"indices\":[126,133]},{\"text\":\"\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08\",\"indices\":[135,150]},{\"text\":\"\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08\",\"indices\":[151,166]},{\"text\":\"oesym\",\"indices\":[167,173]},{\"text\":\"China\",\"indices\":[174,180]},{\"text\":\"JacksonWang\",\"indices\":[181,193]},{\"text\":\"explorepage\",\"indices\":[194,206]},{\"text\":\"explore\",\"indices\":[207,215]},{\"text\":\"indiemusic\",\"indices\":[216,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554555511479144457,\"id_str\":\"1554555511479144457\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"url\":\"https:\\/\\/t.co\\/2liLRM6tlC\",\"display_url\":\"pic.twitter.com\\/2liLRM6tlC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554555643092140034\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"1305\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[78,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554555488305614848,\"id_str\":\"1554555488305614848\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"url\":\"https:\\/\\/t.co\\/AhTJ0ySCrx\",\"display_url\":\"pic.twitter.com\\/AhTJ0ySCrx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChoWurld\\/status\\/1554555495012343808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":628,\"resize\":\"fit\"}}}]},\"1306\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"psychologyfact\",\"indices\":[110,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554554894576754691,\"id_str\":\"1554554894576754691\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"url\":\"https:\\/\\/t.co\\/Raxmh0ZXgW\",\"display_url\":\"pic.twitter.com\\/Raxmh0ZXgW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nobleman_0\\/status\\/1554554904034811906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"medium\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"small\":{\"w\":200,\"h\":176,\"resize\":\"fit\"}}}]},\"1307\":{\"hashtags\":[{\"text\":\"heartbreakonaweekend\",\"indices\":[47,68]},{\"text\":\"yungskizzy\",\"indices\":[77,88]},{\"text\":\"promphizy\",\"indices\":[89,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[108,114]},{\"text\":\"YEEZYDAY\",\"indices\":[115,124]},{\"text\":\"helicopter\",\"indices\":[125,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554554838129721344,\"id_str\":\"1554554838129721344\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1308\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"over1\",\"indices\":[53,59]},{\"text\":\"knust\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554554643858034688,\"id_str\":\"1554554643858034688\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjNlMXkAAFd7e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjNlMXkAAFd7e.jpg\",\"url\":\"https:\\/\\/t.co\\/Ah8fWjdhTv\",\"display_url\":\"pic.twitter.com\\/Ah8fWjdhTv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EmmyKin4\\/status\\/1554554648719245312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":848,\"resize\":\"fit\"}}}]},\"1309\":{\"hashtags\":[{\"text\":\"Soto\",\"indices\":[114,119]},{\"text\":\"Gallo\",\"indices\":[120,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"Happy\",\"indices\":[135,141]},{\"text\":\"Dolphins\",\"indices\":[157,166]},{\"text\":\"China\",\"indices\":[167,173]},{\"text\":\"thatsmoney\",\"indices\":[174,185]},{\"text\":\"Dane\",\"indices\":[186,191]},{\"text\":\"Alpine\",\"indices\":[197,204]},{\"text\":\"McLaren\",\"indices\":[205,213]},{\"text\":\"NO\",\"indices\":[214,217]},{\"text\":\"Yeezy\",\"indices\":[234,240]},{\"text\":\"MLBTradeDeadline\",\"indices\":[241,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w9fxUoTjHc\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/jgzB3o\",\"display_url\":\"fiverr.com\\/share\\/jgzB3o\",\"indices\":[90,113]}]},\"1310\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[146,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1311\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"China\",\"indices\":[137,143]},{\"text\":\"Obidatti023\",\"indices\":[144,156]},{\"text\":\"PeterObi4President2023\",\"indices\":[157,180]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[119,128]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5wQdeTGtV\",\"expanded_url\":\"https:\\/\\/labourparty.com.ng\\/insecurity-my-solution-will-be-decisive-and-immediate-says-peter-obi\\/\",\"display_url\":\"labourparty.com.ng\\/insecurity-my-\\u2026\",\"indices\":[71,94]}],\"media\":[{\"id\":1554553574088130562,\"id_str\":\"1554553574088130562\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"url\":\"https:\\/\\/t.co\\/alCbOqU2TQ\",\"display_url\":\"pic.twitter.com\\/alCbOqU2TQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554553577816920067\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"large\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1551897942151380996,\"id_str\":\"1551897942151380996\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"url\":\"https:\\/\\/t.co\\/ZkxAtQ2d0G\",\"display_url\":\"pic.twitter.com\\/ZkxAtQ2d0G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1551897982672535552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"medium\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":1551897982672535552,\"source_status_id_str\":\"1551897982672535552\",\"source_user_id\":1529562333751689217,\"source_user_id_str\":\"1529562333751689217\"}]},\"1312\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[96,104]},{\"text\":\"Machala\",\"indices\":[105,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[122,147]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[148,163]},{\"text\":\"BBNaija7\",\"indices\":[164,173]},{\"text\":\"BAT2023\",\"indices\":[174,182]},{\"text\":\"China\",\"indices\":[183,189]},{\"text\":\"helicopter\",\"indices\":[190,201]},{\"text\":\"PremierLeague\",\"indices\":[202,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fb\",\"name\":\"FB\",\"id\":1144267346913005568,\"id_str\":\"1144267346913005568\",\"indices\":[59,62]},{\"screen_name\":\"iG\",\"name\":\"Portal iG\",\"id\":14311308,\"id_str\":\"14311308\",\"indices\":[77,80]}],\"urls\":[],\"media\":[{\"id\":1554553387211001857,\"id_str\":\"1554553387211001857\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"url\":\"https:\\/\\/t.co\\/NhsBTtDwFP\",\"display_url\":\"pic.twitter.com\\/NhsBTtDwFP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OtakhorEmmanuel\\/status\\/1554553518006075392\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"1313\":{\"hashtags\":[{\"text\":\"Ukraine\",\"indices\":[145,153]},{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"Pelosi\",\"indices\":[162,169]},{\"text\":\"China\",\"indices\":[170,176]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1314\":{\"hashtags\":[{\"text\":\"Hermes\",\"indices\":[166,173]},{\"text\":\"Taiwan\",\"indices\":[174,181]},{\"text\":\"YEEZYDAY\",\"indices\":[182,191]},{\"text\":\"BBNajiaS7\",\"indices\":[192,202]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[203,218]},{\"text\":\"bbrightvc\",\"indices\":[219,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[59,66]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[67,76]},{\"screen_name\":\"patorankingfire\",\"name\":\"PATORANKING\",\"id\":66000793,\"id_str\":\"66000793\",\"indices\":[77,93]},{\"screen_name\":\"yemialadee\",\"name\":\"\\u270a\\ud83c\\udffe yemialade\",\"id\":166070714,\"id_str\":\"166070714\",\"indices\":[94,105]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[106,119]},{\"screen_name\":\"rudeboypsquare\",\"name\":\"Rudeboy\",\"id\":320327987,\"id_str\":\"320327987\",\"indices\":[120,135]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[136,145]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[146,153]}],\"urls\":[],\"media\":[{\"id\":1554550701040275459,\"id_str\":\"1554550701040275459\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"url\":\"https:\\/\\/t.co\\/Ze5IxvlGee\",\"display_url\":\"pic.twitter.com\\/Ze5IxvlGee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/me_azal\\/status\\/1554553249323253761\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1315\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[50,56]},{\"text\":\"helicopter\",\"indices\":[57,68]},{\"text\":\"ASUU\",\"indices\":[69,74]},{\"text\":\"bbnajia\",\"indices\":[75,83]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1316\":{\"hashtags\":[{\"text\":\"Igbo\",\"indices\":[248,253]},{\"text\":\"lekki\",\"indices\":[254,260]},{\"text\":\"Lagos\",\"indices\":[261,267]},{\"text\":\"Pelosi\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552848704323585,\"id_str\":\"1554552848704323585\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"url\":\"https:\\/\\/t.co\\/V2ui30jamm\",\"display_url\":\"pic.twitter.com\\/V2ui30jamm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/overhplus\\/status\\/1554553045366853634\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1317\":{\"hashtags\":[{\"text\":\"ObiDatti2023\",\"indices\":[100,113]},{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"China\",\"indices\":[142,148]},{\"text\":\"BBNajiaS7\",\"indices\":[149,159]},{\"text\":\"Obidatti023\",\"indices\":[160,172]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[114,123]},{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[124,133]}],\"urls\":[],\"media\":[{\"id\":1554552988705890308,\"id_str\":\"1554552988705890308\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"url\":\"https:\\/\\/t.co\\/Kovj709BMT\",\"display_url\":\"pic.twitter.com\\/Kovj709BMT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554552991683936257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1318\":{\"hashtags\":[{\"text\":\"digitalsafety\",\"indices\":[76,90]},{\"text\":\"internetsafety\",\"indices\":[91,106]},{\"text\":\"technology\",\"indices\":[107,118]},{\"text\":\"edunovativeconceptng\",\"indices\":[119,140]},{\"text\":\"smartclicksng\",\"indices\":[141,155]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[164,171]},{\"text\":\"China\",\"indices\":[172,178]},{\"text\":\"JacksonWang\",\"indices\":[179,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552833843896320,\"id_str\":\"1554552833843896320\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xu2ljAYTk\",\"display_url\":\"pic.twitter.com\\/8Xu2ljAYTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennygirl4succes\\/status\\/1554552848750346241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1319\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[68,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552635730137096,\"id_str\":\"1554552635730137096\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhYsVXkAgd1oc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhYsVXkAgd1oc.jpg\",\"url\":\"https:\\/\\/t.co\\/Mpvt8jWeV3\",\"display_url\":\"pic.twitter.com\\/Mpvt8jWeV3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554552644525604865\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":879,\"resize\":\"fit\"},\"small\":{\"w\":580,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":879,\"resize\":\"fit\"}}}]},\"1320\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"helicopter\",\"indices\":[41,52]},{\"text\":\"JacksonWang\",\"indices\":[53,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552357991731201,\"id_str\":\"1554552357991731201\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"url\":\"https:\\/\\/t.co\\/aQw7WbalFJ\",\"display_url\":\"pic.twitter.com\\/aQw7WbalFJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554552365029724160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1321\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/LCSaSYlEaZ\",\"display_url\":\"pic.twitter.com\\/LCSaSYlEaZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1322\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"Pelosi\",\"indices\":[234,241]},{\"text\":\"China\",\"indices\":[242,248]},{\"text\":\"WorldWar3\",\"indices\":[249,259]},{\"text\":\"Africa\",\"indices\":[260,267]},{\"text\":\"Italy\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGOELITESTAR\",\"name\":\"Elite Star Foundation\",\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"indices\":[187,200]}],\"urls\":[]},\"1323\":{\"hashtags\":[{\"text\":\"Bbnaija\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"Hermes\",\"indices\":[120,127]},{\"text\":\"PeterObi2023\",\"indices\":[128,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1324\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554551317397442565,\"id_str\":\"1554551317397442565\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"url\":\"https:\\/\\/t.co\\/lp2xxqa7u3\",\"display_url\":\"pic.twitter.com\\/lp2xxqa7u3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554551325458849794\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1325\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[247,254]},{\"text\":\"bbnaija\",\"indices\":[255,263]},{\"text\":\"ASUU\",\"indices\":[264,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pHFT0TbZNT\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/Ecgprh2KECg2TiA19S7D0d\",\"display_url\":\"chat.whatsapp.com\\/Ecgprh2KECg2Ti\\u2026\",\"indices\":[222,245]}]},\"1326\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[3,10]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554550693905764353,\"id_str\":\"1554550693905764353\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"url\":\"https:\\/\\/t.co\\/dkwjpnxd1V\",\"display_url\":\"pic.twitter.com\\/dkwjpnxd1V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/keep_itreal81\\/status\\/1554550700868247553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":349,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"}}}]},\"1327\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[249,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1328\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[116,126]},{\"text\":\"helicopter\",\"indices\":[143,154]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"desiadenyo97\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"indices\":[28,41]},{\"screen_name\":\"CalinaMark\",\"name\":\"Calina Mark \\ud83c\\uddf7\\ud83c\\uddfa\",\"id\":1530595616132411392,\"id_str\":\"1530595616132411392\",\"indices\":[44,55]}],\"urls\":[],\"media\":[{\"id\":1554550337264140288,\"id_str\":\"1554550337264140288\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLfS54XwAALBzI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLfS54XwAALBzI.jpg\",\"url\":\"https:\\/\\/t.co\\/qxUf8OEmum\",\"display_url\":\"pic.twitter.com\\/qxUf8OEmum\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554550345572958212\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1329\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[86,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[102,125]}]},\"1330\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1331\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"Lekki\",\"indices\":[91,97]},{\"text\":\"Pelosi\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1332\":{\"hashtags\":[{\"text\":\"obedient\",\"indices\":[16,25]},{\"text\":\"WWIII\",\"indices\":[205,211]},{\"text\":\"obituary\",\"indices\":[213,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1333\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1334\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[215,222]},{\"text\":\"Biden\",\"indices\":[223,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KarenBassLA\",\"name\":\"Karen Bass\",\"id\":113494390,\"id_str\":\"113494390\",\"indices\":[0,12]},{\"screen_name\":\"KamalaHarris\",\"name\":\"Kamala Harris\",\"id\":30354991,\"id_str\":\"30354991\",\"indices\":[13,26]}],\"urls\":[]},\"1335\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"1336\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p1QUU5yEVY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olulion\\/status\\/1554546109523050498\",\"display_url\":\"twitter.com\\/olulion\\/status\\u2026\",\"indices\":[46,69]}],\"media\":[{\"id\":1554546949315067909,\"id_str\":\"1554546949315067909\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"url\":\"https:\\/\\/t.co\\/SQ7SoQkXfY\",\"display_url\":\"pic.twitter.com\\/SQ7SoQkXfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akomscopy\\/status\\/1554546962938171393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"large\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"}}}]},\"1337\":{\"hashtags\":[{\"text\":\"Ninjawarriorsfc\",\"indices\":[59,75]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"Pelosi\",\"indices\":[86,93]},{\"text\":\"China\",\"indices\":[94,100]},{\"text\":\"YEEZYDAY\",\"indices\":[101,110]},{\"text\":\"LowerPassingRate\",\"indices\":[111,128]},{\"text\":\"Kep1er\",\"indices\":[129,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554546273600131079,\"id_str\":\"1554546273600131079\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"url\":\"https:\\/\\/t.co\\/VOuUsPJWID\",\"display_url\":\"pic.twitter.com\\/VOuUsPJWID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554546282605207553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}}}]},\"1338\":{\"hashtags\":[{\"text\":\"ClementAfreh\",\"indices\":[111,124]},{\"text\":\"HisVessel\",\"indices\":[126,136]},{\"text\":\"Taiwan\",\"indices\":[219,226]},{\"text\":\"China\",\"indices\":[227,233]},{\"text\":\"helicopter\",\"indices\":[235,246]},{\"text\":\"YEEZYDAY\",\"indices\":[247,256]},{\"text\":\"Pelosi\",\"indices\":[257,264]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EugeneZuta\",\"name\":\"Eugene Zuta\",\"id\":3021709018,\"id_str\":\"3021709018\",\"indices\":[40,51]},{\"screen_name\":\"CBCInc_hypes\",\"name\":\"Christian Blog of Choice CBCInc Hypes\",\"id\":895873914705805313,\"id_str\":\"895873914705805313\",\"indices\":[96,109]}],\"urls\":[],\"media\":[{\"id\":1554545773810966530,\"id_str\":\"1554545773810966530\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545773810966530\\/pu\\/img\\/HPvm0a_YA6VxXMJ7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545773810966530\\/pu\\/img\\/HPvm0a_YA6VxXMJ7.jpg\",\"url\":\"https:\\/\\/t.co\\/BFLWak5IhB\",\"display_url\":\"pic.twitter.com\\/BFLWak5IhB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/clement_afreh\\/status\\/1554545801929555968\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":474,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":688,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":688,\"h\":480,\"resize\":\"fit\"}}}]},\"1339\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"PelosiinTaiwan\",\"indices\":[83,98]},{\"text\":\"China\",\"indices\":[99,105]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[106,124]},{\"text\":\"ChinaTaiwan\",\"indices\":[125,137]},{\"text\":\"USA\",\"indices\":[138,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554545717922131968,\"id_str\":\"1554545717922131968\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"url\":\"https:\\/\\/t.co\\/LM6VSMyzjG\",\"display_url\":\"pic.twitter.com\\/LM6VSMyzjG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554545745671647232\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"1340\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[9,15]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1341\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"Pelosi\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/900QcCpy8i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\",\"display_url\":\"twitter.com\\/NgLabour\\/statu\\u2026\",\"indices\":[88,111]}]},\"1342\":{\"hashtags\":[{\"text\":\"ghanajobs\",\"indices\":[178,188]},{\"text\":\"ghananews\",\"indices\":[189,199]},{\"text\":\"ghtrending\",\"indices\":[200,211]},{\"text\":\"missmalaika22\",\"indices\":[212,226]},{\"text\":\"gmb22\",\"indices\":[227,233]},{\"text\":\"showbizgh\",\"indices\":[234,244]},{\"text\":\"job\",\"indices\":[245,249]},{\"text\":\"jobsearch\",\"indices\":[250,260]},{\"text\":\"Taiwan\",\"indices\":[261,268]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DeloitteGhana\",\"name\":\"Deloitte Ghana\",\"id\":2967962321,\"id_str\":\"2967962321\",\"indices\":[43,57]}],\"urls\":[],\"media\":[{\"id\":1554544677600239617,\"id_str\":\"1554544677600239617\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaJd_WIAEqsCd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaJd_WIAEqsCd.jpg\",\"url\":\"https:\\/\\/t.co\\/jNCRtfsYxu\",\"display_url\":\"pic.twitter.com\\/jNCRtfsYxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554544689168224257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":996,\"h\":996,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":996,\"h\":996,\"resize\":\"fit\"}}}]},\"1343\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[179,185]},{\"text\":\"Pelosi\",\"indices\":[186,193]},{\"text\":\"helicopter\",\"indices\":[252,263]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[264,271]},{\"text\":\"Kep1er\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[104,112]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I9yK4OCRbh\",\"expanded_url\":\"https:\\/\\/youtu.be\\/9Rxj_a9ggwA\",\"display_url\":\"youtu.be\\/9Rxj_a9ggwA\",\"indices\":[76,99]}],\"media\":[{\"id\":1554544403217321990,\"id_str\":\"1554544403217321990\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554544403217321990\\/pu\\/img\\/RovCAtN8vS3q4ty3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554544403217321990\\/pu\\/img\\/RovCAtN8vS3q4ty3.jpg\",\"url\":\"https:\\/\\/t.co\\/DDh6VrtdWh\",\"display_url\":\"pic.twitter.com\\/DDh6VrtdWh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/antwicharles26\\/status\\/1554544560809951233\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1060,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":994,\"h\":1200,\"resize\":\"fit\"}}}]},\"1344\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[165,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554544531168788492,\"id_str\":\"1554544531168788492\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}}]},\"1345\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"Pelosi\",\"indices\":[92,99]},{\"text\":\"China\",\"indices\":[100,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554544457730629632,\"id_str\":\"1554544457730629632\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"url\":\"https:\\/\\/t.co\\/nSesxfnDTK\",\"display_url\":\"pic.twitter.com\\/nSesxfnDTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itycletylove\\/status\\/1554544471437606920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":956,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":896,\"resize\":\"fit\"}}}]},\"1346\":{\"hashtags\":[{\"text\":\"ghanajobs\",\"indices\":[183,193]},{\"text\":\"ghananews\",\"indices\":[194,204]},{\"text\":\"ghtrending\",\"indices\":[205,216]},{\"text\":\"missmalaika22\",\"indices\":[217,231]},{\"text\":\"gmb22\",\"indices\":[232,238]},{\"text\":\"showbizgh\",\"indices\":[239,249]},{\"text\":\"job\",\"indices\":[250,254]},{\"text\":\"jobsearch\",\"indices\":[255,265]},{\"text\":\"Taiwan\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GhanaTechLab\",\"name\":\"Ghana Tech Lab\",\"id\":1053610219878711296,\"id_str\":\"1053610219878711296\",\"indices\":[49,62]}],\"urls\":[],\"media\":[{\"id\":1554544235260567552,\"id_str\":\"1554544235260567552\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZvuJWYAA6ork.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZvuJWYAA6ork.jpg\",\"url\":\"https:\\/\\/t.co\\/uGMcyDN5DT\",\"display_url\":\"pic.twitter.com\\/uGMcyDN5DT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554544243770900482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1347\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[209,215]},{\"text\":\"Pelosi\",\"indices\":[216,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554543983598116865,\"id_str\":\"1554543983598116865\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWIAEB3in.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWIAEB3in.jpg\",\"url\":\"https:\\/\\/t.co\\/qwQ0nkqakn\",\"display_url\":\"pic.twitter.com\\/qwQ0nkqakn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfiaOkorewaa\\/status\\/1554543995967229953\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"1348\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"China\",\"indices\":[69,75]},{\"text\":\"JacksonWang\",\"indices\":[76,88]},{\"text\":\"helicopter\",\"indices\":[89,100]},{\"text\":\"YEEZYDAY\",\"indices\":[101,110]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[111,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[130,153]}]},\"1349\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"Peace\",\"indices\":[252,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UN\",\"name\":\"United Nations\",\"id\":14159148,\"id_str\":\"14159148\",\"indices\":[259,262]},{\"screen_name\":\"ghanamissionun\",\"name\":\"GhanaUN\",\"id\":1039904243916918784,\"id_str\":\"1039904243916918784\",\"indices\":[263,278]}],\"urls\":[]},\"1350\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[35,42]},{\"text\":\"China\",\"indices\":[43,49]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[50,72]},{\"text\":\"YEEZYDAY\",\"indices\":[73,82]},{\"text\":\"tuesdayvibe\",\"indices\":[83,95]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[96,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Obaji_007\",\"name\":\"\\ud83d\\udc51Mazi 1 Of Twiita ESQ\",\"id\":1317475561,\"id_str\":\"1317475561\",\"indices\":[22,32]}],\"urls\":[],\"media\":[{\"id\":1554543071760613376,\"id_str\":\"1554543071760613376\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"url\":\"https:\\/\\/t.co\\/1alsIAGmpL\",\"display_url\":\"pic.twitter.com\\/1alsIAGmpL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mentie_pride\\/status\\/1554543236122804227\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"1351\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"Rascism\",\"indices\":[209,217]},{\"text\":\"WWIII\",\"indices\":[219,225]},{\"text\":\"Lekki\",\"indices\":[241,247]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ManUtd\",\"name\":\"Manchester United\",\"id\":558797310,\"id_str\":\"558797310\",\"indices\":[13,20]}],\"urls\":[],\"media\":[{\"id\":1554542946720038915,\"id_str\":\"1554542946720038915\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"url\":\"https:\\/\\/t.co\\/aLAPq2Ps0u\",\"display_url\":\"pic.twitter.com\\/aLAPq2Ps0u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554542950096543744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"1352\":{\"hashtags\":[{\"text\":\"ghanajobs\",\"indices\":[178,188]},{\"text\":\"ghananews\",\"indices\":[189,199]},{\"text\":\"ghtrending\",\"indices\":[200,211]},{\"text\":\"missmalaika22\",\"indices\":[212,226]},{\"text\":\"gmb22\",\"indices\":[227,233]},{\"text\":\"showbizgh\",\"indices\":[234,244]},{\"text\":\"job\",\"indices\":[245,249]},{\"text\":\"jobsearch\",\"indices\":[250,260]},{\"text\":\"Taiwan\",\"indices\":[261,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554542891376205830,\"id_str\":\"1554542891376205830\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYhfyWYAYeYp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYhfyWYAYeYp0.jpg\",\"url\":\"https:\\/\\/t.co\\/l2WiT7tNEA\",\"display_url\":\"pic.twitter.com\\/l2WiT7tNEA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554542909042696192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":719,\"resize\":\"fit\"}}}]},\"1353\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[135,141]},{\"text\":\"WorldWar3\",\"indices\":[142,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"Pelosi\",\"indices\":[161,168]},{\"text\":\"China\",\"indices\":[169,175]},{\"text\":\"WW3\",\"indices\":[176,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554542635007836165,\"id_str\":\"1554542635007836165\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"url\":\"https:\\/\\/t.co\\/crUGc0k2UF\",\"display_url\":\"pic.twitter.com\\/crUGc0k2UF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibrahim_IbbJnr8\\/status\\/1554542637566332931\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":563,\"resize\":\"fit\"}}}]},\"1354\":{\"hashtags\":[{\"text\":\"ghanajobs\",\"indices\":[179,189]},{\"text\":\"ghananews\",\"indices\":[190,200]},{\"text\":\"ghtrending\",\"indices\":[201,212]},{\"text\":\"missmalaika22\",\"indices\":[213,227]},{\"text\":\"gmb22\",\"indices\":[228,234]},{\"text\":\"showbizgh\",\"indices\":[235,245]},{\"text\":\"job\",\"indices\":[246,250]},{\"text\":\"jobsearch\",\"indices\":[251,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jollykartgh\",\"name\":\"Jollykart\",\"id\":1546960432887463937,\"id_str\":\"1546960432887463937\",\"indices\":[47,59]}],\"urls\":[],\"media\":[{\"id\":1554542157297590274,\"id_str\":\"1554542157297590274\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLX2xIXoAIlCcb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLX2xIXoAIlCcb.jpg\",\"url\":\"https:\\/\\/t.co\\/SlABzIMvPC\",\"display_url\":\"pic.twitter.com\\/SlABzIMvPC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554542183092555779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":710,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":710,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":671,\"resize\":\"fit\"}}}]},\"1355\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[57,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6DEiwtv3NU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\",\"display_url\":\"twitter.com\\/OdNa_TaKa9l\\/st\\u2026\",\"indices\":[64,87]}]},\"1356\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]},{\"text\":\"Pelosi\",\"indices\":[23,30]},{\"text\":\"helicopter\",\"indices\":[31,42]},{\"text\":\"chatsekscerita\",\"indices\":[43,58]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[59,81]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[82,100]},{\"text\":\"YEEZYDAY\",\"indices\":[101,110]},{\"text\":\"tuesdayvibe\",\"indices\":[111,123]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[124,138]},{\"text\":\"NCT127\",\"indices\":[139,146]},{\"text\":\"SuperTuna_Jin\",\"indices\":[148,162]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[163,171]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[172,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540335862353920,\"id_str\":\"1554540335862353920\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"url\":\"https:\\/\\/t.co\\/r7UJdM5Vc3\",\"display_url\":\"pic.twitter.com\\/r7UJdM5Vc3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1554541886446178305\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}}}]},\"1357\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"helicopter\",\"indices\":[200,211]},{\"text\":\"Datti\",\"indices\":[224,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/y1caKEYuCw\",\"expanded_url\":\"https:\\/\\/ginnyent.org\\/others\\/trending-video-of-police-officer-beating-man-with-a-machete-in-cross-river\\/\",\"display_url\":\"ginnyent.org\\/others\\/trendin\\u2026\",\"indices\":[162,185]}]},\"1358\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"helicopter\",\"indices\":[206,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NcqTO5kOSy\",\"expanded_url\":\"https:\\/\\/ginnyent.org\\/news\\/youths-in-aba-stage-protests-demanding-an-end-to-ebubeagu-militia-in-igboland-photos-video\\/\",\"display_url\":\"ginnyent.org\\/news\\/youths-in\\u2026\",\"indices\":[168,191]}]},\"1359\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"helicopter\",\"indices\":[69,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540500048384008,\"id_str\":\"1554540500048384008\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"url\":\"https:\\/\\/t.co\\/bdasAJa1dE\",\"display_url\":\"pic.twitter.com\\/bdasAJa1dE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/faithluseno\\/status\\/1554540517962178561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1262,\"resize\":\"fit\"}}}]},\"1360\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[28,35]},{\"text\":\"helicopter\",\"indices\":[36,47]},{\"text\":\"chatsekscerita\",\"indices\":[48,63]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[64,86]},{\"text\":\"tuesdayvibe\",\"indices\":[87,99]},{\"text\":\"YEEZYDAY\",\"indices\":[100,109]},{\"text\":\"NCT127\",\"indices\":[110,117]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[118,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540278492663810,\"id_str\":\"1554540278492663810\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"url\":\"https:\\/\\/t.co\\/CIOjlFCbwK\",\"display_url\":\"pic.twitter.com\\/CIOjlFCbwK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554540287493562369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1361\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[29,36]},{\"text\":\"OmoAgege\",\"indices\":[37,46]},{\"text\":\"Abuja\",\"indices\":[47,53]},{\"text\":\"helicopter\",\"indices\":[61,72]},{\"text\":\"Grammy\",\"indices\":[73,80]},{\"text\":\"machala\",\"indices\":[81,89]},{\"text\":\"Racism\",\"indices\":[90,97]},{\"text\":\"foden\",\"indices\":[98,104]},{\"text\":\"StartMount\",\"indices\":[105,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540156438384640,\"id_str\":\"1554540156438384640\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"1362\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Ukraine\\ufe0f\",\"indices\":[96,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IWCxu2HLYp\",\"expanded_url\":\"https:\\/\\/www.washingtonpost.com\\/opinions\\/2022\\/08\\/02\\/nancy-pelosi-taiwan-visit-op-ed\\/\",\"display_url\":\"washingtonpost.com\\/opinions\\/2022\\/\\u2026\",\"indices\":[106,129]}]},\"1363\":{\"hashtags\":[{\"text\":\"chatsekscerita\",\"indices\":[64,79]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[80,105]},{\"text\":\"helicopter\",\"indices\":[141,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"Pelosi\",\"indices\":[161,168]},{\"text\":\"oesym\",\"indices\":[169,175]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[176,183]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[184,192]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[193,206]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Pres_Adebayo\",\"name\":\"Adewole Adebayo ESQ\",\"id\":1042535723071676416,\"id_str\":\"1042535723071676416\",\"indices\":[207,220]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[221,227]},{\"screen_name\":\"edwinbushJnr\",\"name\":\"LEADERSHiP\\ud83d\\udcbf\",\"id\":2619515667,\"id_str\":\"2619515667\",\"indices\":[228,241]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"1364\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[53,75]},{\"text\":\"chatsekscerita\",\"indices\":[76,91]},{\"text\":\"tuesdayvibe\",\"indices\":[92,104]},{\"text\":\"BBNaija7\",\"indices\":[105,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539305804120065,\"id_str\":\"1554539305804120065\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"url\":\"https:\\/\\/t.co\\/7XISsANW5B\",\"display_url\":\"pic.twitter.com\\/7XISsANW5B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/official_pizz\\/status\\/1554539314142388225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"}}}]},\"1365\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"Trending\",\"indices\":[71,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1366\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539199705096193,\"id_str\":\"1554539199705096193\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"url\":\"https:\\/\\/t.co\\/3sZQZxnKak\",\"display_url\":\"pic.twitter.com\\/3sZQZxnKak\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539206222946305\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"1367\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539155560058882,\"id_str\":\"1554539155560058882\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"url\":\"https:\\/\\/t.co\\/JoInBfSZQN\",\"display_url\":\"pic.twitter.com\\/JoInBfSZQN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539165949349888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"1368\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539104871874560,\"id_str\":\"1554539104871874560\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"url\":\"https:\\/\\/t.co\\/zNr4ata000\",\"display_url\":\"pic.twitter.com\\/zNr4ata000\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539112664817665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"1369\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539053537808385,\"id_str\":\"1554539053537808385\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"url\":\"https:\\/\\/t.co\\/rYMBkaPkQH\",\"display_url\":\"pic.twitter.com\\/rYMBkaPkQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539059573293061\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"1370\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539013234692099,\"id_str\":\"1554539013234692099\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"url\":\"https:\\/\\/t.co\\/Y3LUJdpeAc\",\"display_url\":\"pic.twitter.com\\/Y3LUJdpeAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539019513495552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"1371\":{\"hashtags\":[{\"text\":\"aneketwins\",\"indices\":[223,234]},{\"text\":\"tuesdayvibe\",\"indices\":[235,247]},{\"text\":\"atwinsdesign\",\"indices\":[248,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atwinsdesigns\",\"name\":\"Atwinsdesigns\",\"id\":1147118077391360000,\"id_str\":\"1147118077391360000\",\"indices\":[208,222]}],\"urls\":[],\"media\":[{\"id\":1554538999016050692,\"id_str\":\"1554538999016050692\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"url\":\"https:\\/\\/t.co\\/ehyeapFYxO\",\"display_url\":\"pic.twitter.com\\/ehyeapFYxO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554539007748579328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":525,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":926,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":988,\"h\":1280,\"resize\":\"fit\"}}}]},\"1372\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538887204294658,\"id_str\":\"1554538887204294658\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"url\":\"https:\\/\\/t.co\\/LLtQNjQfnc\",\"display_url\":\"pic.twitter.com\\/LLtQNjQfnc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538894305234946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"1373\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[92,117]},{\"text\":\"BBNaija7\",\"indices\":[118,127]},{\"text\":\"YEEZYDAY\",\"indices\":[128,137]},{\"text\":\"ambode\",\"indices\":[138,145]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mickkycutz\",\"name\":\"adebanjo micheal\",\"id\":817531158,\"id_str\":\"817531158\",\"indices\":[18,29]}],\"urls\":[],\"media\":[{\"id\":1554538865230336001,\"id_str\":\"1554538865230336001\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"1374\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538793205743617,\"id_str\":\"1554538793205743617\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"url\":\"https:\\/\\/t.co\\/InPATnRTxc\",\"display_url\":\"pic.twitter.com\\/InPATnRTxc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538800491233280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1375\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"helicopter\",\"indices\":[112,123]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[180,197]},{\"text\":\"Obidatti2023\",\"indices\":[199,212]},{\"text\":\"chatsekscerita\",\"indices\":[214,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1376\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"China\",\"indices\":[258,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554538742010023937,\"id_str\":\"1554538742010023937\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"url\":\"https:\\/\\/t.co\\/vQBBaRizSE\",\"display_url\":\"pic.twitter.com\\/vQBBaRizSE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwazibruce\\/status\\/1554538774037667843\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1160,\"resize\":\"fit\"}}}]},\"1377\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538750205743104,\"id_str\":\"1554538750205743104\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"url\":\"https:\\/\\/t.co\\/8WGIbboap0\",\"display_url\":\"pic.twitter.com\\/8WGIbboap0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538758644580352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"1378\":{\"hashtags\":[{\"text\":\"shellanayourmate\",\"indices\":[126,143]},{\"text\":\"organicchemistry\",\"indices\":[144,161]},{\"text\":\"bbnaija\",\"indices\":[163,171]},{\"text\":\"Pelosi\",\"indices\":[172,179]},{\"text\":\"ASUU\",\"indices\":[180,185]},{\"text\":\"Omoagege\",\"indices\":[186,195]},{\"text\":\"WorldWarlll\",\"indices\":[196,208]},{\"text\":\"fabrizio\",\"indices\":[209,218]},{\"text\":\"machala\",\"indices\":[219,227]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ProfZulum\",\"name\":\"Prof. Babagana Umara Zulum\",\"id\":1046746450917543936,\"id_str\":\"1046746450917543936\",\"indices\":[27,37]}],\"urls\":[],\"media\":[{\"id\":1554538720321323008,\"id_str\":\"1554538720321323008\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"url\":\"https:\\/\\/t.co\\/IIJkhdS1Dw\",\"display_url\":\"pic.twitter.com\\/IIJkhdS1Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554538727535435776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"1379\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"akure\",\"indices\":[134,140]},{\"text\":\"futa\",\"indices\":[186,191]},{\"text\":\"ondo\",\"indices\":[192,197]},{\"text\":\"tuesdayvibe\",\"indices\":[198,210]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adeleye_temmie\",\"name\":\"IYALODE OF AKURE\",\"id\":814140653072420865,\"id_str\":\"814140653072420865\",\"indices\":[141,156]},{\"screen_name\":\"Akureevents\",\"name\":\"Akure Events \\ud83d\\udccd\",\"id\":1105981500875509760,\"id_str\":\"1105981500875509760\",\"indices\":[157,169]},{\"screen_name\":\"YemieFashMedia\",\"name\":\"YemieFash Media\",\"id\":199507109,\"id_str\":\"199507109\",\"indices\":[170,185]}],\"urls\":[],\"media\":[{\"id\":1554538627375550466,\"id_str\":\"1554538627375550466\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"url\":\"https:\\/\\/t.co\\/UYxgp6ZvVo\",\"display_url\":\"pic.twitter.com\\/UYxgp6ZvVo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bolireloaded\\/status\\/1554538715862765568\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":366,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":645,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":688,\"h\":1280,\"resize\":\"fit\"}}}]},\"1380\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538686951395329,\"id_str\":\"1554538686951395329\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"url\":\"https:\\/\\/t.co\\/bVtPU0oPmE\",\"display_url\":\"pic.twitter.com\\/bVtPU0oPmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538696090714112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"1381\":{\"hashtags\":[{\"text\":\"lovedaminialbum\",\"indices\":[46,62]},{\"text\":\"sabinus\",\"indices\":[167,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[36,45]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[132,141]},{\"screen_name\":\"MI_Abaga\",\"name\":\"The Guy\",\"id\":50246444,\"id_str\":\"50246444\",\"indices\":[184,193]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[194,204]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[205,214]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[215,228]}],\"urls\":[],\"media\":[{\"id\":1554537760454737922,\"id_str\":\"1554537760454737922\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"url\":\"https:\\/\\/t.co\\/lYDHjtOK2B\",\"display_url\":\"pic.twitter.com\\/lYDHjtOK2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidmmhdMomoh\\/status\\/1554538271279128581\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1382\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[77,83]},{\"text\":\"SaheedBalogun\",\"indices\":[84,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MTNNG\",\"name\":\"MTN Nigeria\",\"id\":69266428,\"id_str\":\"69266428\",\"indices\":[0,6]}],\"urls\":[],\"media\":[{\"id\":1554537620385972224,\"id_str\":\"1554537620385972224\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"url\":\"https:\\/\\/t.co\\/gmg5Y1glGZ\",\"display_url\":\"pic.twitter.com\\/gmg5Y1glGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Anya_Nyako2505\\/status\\/1554537633778483209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":532,\"resize\":\"fit\"}}}]},\"1383\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"GreatReset\",\"indices\":[41,52]},{\"text\":\"greatestshowman\",\"indices\":[53,69]},{\"text\":\"greatcampbell\",\"indices\":[70,84]},{\"text\":\"champagnebaby\",\"indices\":[85,99]},{\"text\":\"drake\",\"indices\":[100,106]},{\"text\":\"30bg\",\"indices\":[107,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1384\":{\"hashtags\":[{\"text\":\"Hosmer\",\"indices\":[93,100]},{\"text\":\"Padres\",\"indices\":[101,108]},{\"text\":\"Nats\",\"indices\":[109,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"Dolphins\",\"indices\":[123,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6fBkKNGnJu\",\"expanded_url\":\"https:\\/\\/jokoshq.com\\/how-to-invest-in-a-food-truck-tips-for-getting-started\\/\",\"display_url\":\"jokoshq.com\\/how-to-invest-\\u2026\",\"indices\":[69,92]}],\"media\":[{\"id\":1554536731394785280,\"id_str\":\"1554536731394785280\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"url\":\"https:\\/\\/t.co\\/9lwlUKtDZw\",\"display_url\":\"pic.twitter.com\\/9lwlUKtDZw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnfromjokoshq\\/status\\/1554536733772984325\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":854,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":801,\"resize\":\"fit\"}}}]},\"1385\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[116,123]},{\"text\":\"Lekki\",\"indices\":[124,130]},{\"text\":\"helicopter\",\"indices\":[145,156]},{\"text\":\"Taiwan\",\"indices\":[157,164]},{\"text\":\"Pelosi\",\"indices\":[172,179]},{\"text\":\"China\",\"indices\":[180,186]},{\"text\":\"Obidatti023\",\"indices\":[236,248]},{\"text\":\"XiJinping\",\"indices\":[263,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1386\":{\"hashtags\":[{\"text\":\"NancyPelosy\",\"indices\":[43,55]},{\"text\":\"Africa\",\"indices\":[102,109]},{\"text\":\"China\",\"indices\":[111,117]},{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"United\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1387\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[28,40]},{\"text\":\"Taipei\",\"indices\":[41,48]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[57,75]},{\"text\":\"China\",\"indices\":[76,82]},{\"text\":\"pelositaiwan\",\"indices\":[83,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554533563248558080,\"id_str\":\"1554533563248558080\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"url\":\"https:\\/\\/t.co\\/s8EVHXHeQu\",\"display_url\":\"pic.twitter.com\\/s8EVHXHeQu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554535866445402112\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":560,\"resize\":\"fit\"}}}]},\"1388\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[60,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"tuesdayvibe\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554534881459306496,\"id_str\":\"1554534881459306496\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"url\":\"https:\\/\\/t.co\\/xwkwF6pzK4\",\"display_url\":\"pic.twitter.com\\/xwkwF6pzK4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/malltallerny\\/status\\/1554535404321251331\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"1389\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[278,285]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1390\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[35,41]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1391\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[{\"text\":\"EBAY\",\"indices\":[24,29]},{\"text\":\"MP\",\"indices\":[30,33]},{\"text\":\"PLTR\",\"indices\":[34,39]},{\"text\":\"RBLX\",\"indices\":[40,45]},{\"text\":\"ORGN\",\"indices\":[46,51]},{\"text\":\"PYPL\",\"indices\":[52,57]},{\"text\":\"CLX\",\"indices\":[58,62]}],\"user_mentions\":[],\"urls\":[]},\"1392\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"chatsekscerita\",\"indices\":[114,129]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wtpnigeria\",\"name\":\"We The People\",\"id\":910507806175956992,\"id_str\":\"910507806175956992\",\"indices\":[85,96]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Rzn4pbYszl\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3PD2jXj\",\"display_url\":\"bit.ly\\/3PD2jXj\",\"indices\":[48,71]}],\"media\":[{\"id\":1554534144243388417,\"id_str\":\"1554534144243388417\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"url\":\"https:\\/\\/t.co\\/XLK8mXSAGJ\",\"display_url\":\"pic.twitter.com\\/XLK8mXSAGJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PHChurchgirl\\/status\\/1554534153915359234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"}}}]},\"1393\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"chatsekscerita\",\"indices\":[73,88]},{\"text\":\"helicopter\",\"indices\":[89,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[109,131]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[132,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554533707033214976,\"id_str\":\"1554533707033214976\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"url\":\"https:\\/\\/t.co\\/m71TwAoEWS\",\"display_url\":\"pic.twitter.com\\/m71TwAoEWS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kosisochukw_\\/status\\/1554533761794072582\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"},\"medium\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"}}}]},\"1394\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[31,37]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1395\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"USA\",\"indices\":[127,131]},{\"text\":\"China\",\"indices\":[169,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1396\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[128,139]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[159,177]},{\"text\":\"Tinubu\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532757677776898,\"id_str\":\"1554532757677776898\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"url\":\"https:\\/\\/t.co\\/hR4kZxxeQH\",\"display_url\":\"pic.twitter.com\\/hR4kZxxeQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532762673111045\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":610,\"h\":480,\"resize\":\"fit\"}}}]},\"1397\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[123,141]},{\"text\":\"Tinubu\",\"indices\":[190,197]},{\"text\":\"Lekki\",\"indices\":[230,236]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[238,246]},{\"text\":\"chatsekscerita\",\"indices\":[248,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532260363247616,\"id_str\":\"1554532260363247616\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"url\":\"https:\\/\\/t.co\\/rOWH1F4sUj\",\"display_url\":\"pic.twitter.com\\/rOWH1F4sUj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532268265377798\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":718,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":678,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":718,\"resize\":\"fit\"}}}]},\"1398\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[123,141]},{\"text\":\"Tinubu\",\"indices\":[190,197]},{\"text\":\"Lekki\",\"indices\":[230,236]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[238,246]},{\"text\":\"chatsekscerita\",\"indices\":[248,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532215308140545,\"id_str\":\"1554532215308140545\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"url\":\"https:\\/\\/t.co\\/4gnSBIXGVm\",\"display_url\":\"pic.twitter.com\\/4gnSBIXGVm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532226620178433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":719,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":719,\"resize\":\"fit\"}}}]},\"1399\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[129,137]},{\"text\":\"Wizkid\",\"indices\":[138,145]},{\"text\":\"Taiwan\",\"indices\":[146,153]},{\"text\":\"samkwe\",\"indices\":[154,161]},{\"text\":\"ToyinAbrahamkiddies\",\"indices\":[260,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554530182576455680,\"id_str\":\"1554530182576455680\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}}]},\"1400\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[76,83]},{\"text\":\"BBNajiaS7\",\"indices\":[84,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/85u9VNvn5s\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[95,118]}]},\"1401\":{\"hashtags\":[{\"text\":\"Lekki\",\"indices\":[5,11]},{\"text\":\"Yorubas\",\"indices\":[88,96]},{\"text\":\"yoruba\",\"indices\":[99,106]},{\"text\":\"igbos\",\"indices\":[120,126]},{\"text\":\"North\",\"indices\":[140,146]},{\"text\":\"OBIDIENTS\",\"indices\":[239,249]},{\"text\":\"IPOB\",\"indices\":[252,257]},{\"text\":\"Reno\",\"indices\":[260,265]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554528751584681985,\"id_str\":\"1554528751584681985\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"url\":\"https:\\/\\/t.co\\/psWDUaimY4\",\"display_url\":\"pic.twitter.com\\/psWDUaimY4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PreciousP001\\/status\\/1554528762456379392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":625,\"resize\":\"fit\"}}}]},\"1402\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[98,105]},{\"text\":\"WorldWarIII\",\"indices\":[106,118]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SavvyRinu\",\"name\":\"Rinu Oduala \\ud83d\\udd25\\ud83d\\udd2b\",\"id\":991043283534139392,\"id_str\":\"991043283534139392\",\"indices\":[73,83]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[84,97]}],\"urls\":[],\"media\":[{\"id\":1554528584324288513,\"id_str\":\"1554528584324288513\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"url\":\"https:\\/\\/t.co\\/8bsqiolcDu\",\"display_url\":\"pic.twitter.com\\/8bsqiolcDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kenneth51428693\\/status\\/1554528652737536000\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":426,\"resize\":\"fit\"}}}]},\"1403\":{\"hashtags\":[{\"text\":\"sun\",\"indices\":[24,28]},{\"text\":\"KNUST\",\"indices\":[32,38]},{\"text\":\"helicopter\",\"indices\":[39,50]},{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"tuesdayvibe\",\"indices\":[59,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554528568218107909,\"id_str\":\"1554528568218107909\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528568218107909\\/pu\\/img\\/MopM_nKtIvIEk7Tt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528568218107909\\/pu\\/img\\/MopM_nKtIvIEk7Tt.jpg\",\"url\":\"https:\\/\\/t.co\\/JUHW0TigVl\",\"display_url\":\"pic.twitter.com\\/JUHW0TigVl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nanadiabour_1\\/status\\/1554528594168348673\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1404\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"China\",\"indices\":[77,83]},{\"text\":\"USA\",\"indices\":[84,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[89,112]}]},\"1405\":{\"hashtags\":[{\"text\":\"WW3\",\"indices\":[174,178]},{\"text\":\"WWIII\",\"indices\":[179,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1406\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"China\",\"indices\":[72,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"tuesdayvibe\",\"indices\":[91,103]},{\"text\":\"tuesdayvibe\",\"indices\":[104,116]},{\"text\":\"chatsekscerita\",\"indices\":[117,132]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[133,140]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[141,166]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[167,185]},{\"text\":\"GoldMedal\",\"indices\":[186,196]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[197,211]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[212,237]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[238,256]},{\"text\":\"GoldMedal\",\"indices\":[257,267]},{\"text\":\"Prabhas\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554527735808139264,\"id_str\":\"1554527735808139264\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"url\":\"https:\\/\\/t.co\\/bcawOh7ghe\",\"display_url\":\"pic.twitter.com\\/bcawOh7ghe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Young_X391\\/status\\/1554527789856051200\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1407\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[109,127]},{\"text\":\"ASUU\",\"indices\":[128,133]},{\"text\":\"BigBrotherNaija\",\"indices\":[134,150]},{\"text\":\"Rufai\",\"indices\":[151,157]},{\"text\":\"Ilebaye\",\"indices\":[158,166]},{\"text\":\"tuesdayvibe\",\"indices\":[167,179]},{\"text\":\"saheedbalogun\",\"indices\":[180,194]},{\"text\":\"PeterObi4President\",\"indices\":[195,214]},{\"text\":\"tinubu\",\"indices\":[215,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Omah_Lay\",\"name\":\"Omah Lay\",\"id\":1114311810,\"id_str\":\"1114311810\",\"indices\":[26,35]}],\"urls\":[],\"media\":[{\"id\":1554526808661524481,\"id_str\":\"1554526808661524481\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"url\":\"https:\\/\\/t.co\\/1XSoCGB8rM\",\"display_url\":\"pic.twitter.com\\/1XSoCGB8rM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bettyshairven\\/status\\/1554527634888982532\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1408\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554526455593312259,\"id_str\":\"1554526455593312259\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"url\":\"https:\\/\\/t.co\\/b6J542Frck\",\"display_url\":\"pic.twitter.com\\/b6J542Frck\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554526464267227136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"1409\":{\"hashtags\":[{\"text\":\"Crypto\",\"indices\":[0,7]},{\"text\":\"Bitcoin\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1410\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[17,28]},{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"WWIII\",\"indices\":[37,43]},{\"text\":\"tuesdayvibe\",\"indices\":[44,56]},{\"text\":\"BBNajiaS7\",\"indices\":[57,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554524957996187648,\"id_str\":\"1554524957996187648\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"1411\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"ASUUstrike\",\"indices\":[246,257]},{\"text\":\"ASUU\",\"indices\":[258,263]},{\"text\":\"WWIII\",\"indices\":[264,270]},{\"text\":\"Pelosi\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1412\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"helicopter\",\"indices\":[116,127]},{\"text\":\"tuesdayvibe\",\"indices\":[128,140]},{\"text\":\"GoldMedal\",\"indices\":[141,151]},{\"text\":\"ISAC2022\",\"indices\":[152,161]},{\"text\":\"Pelosi\",\"indices\":[162,169]},{\"text\":\"Trending\",\"indices\":[170,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[71,80]},{\"screen_name\":\"KraksTV\",\"name\":\"www.KRAKS.co\",\"id\":3457791256,\"id_str\":\"3457791256\",\"indices\":[81,89]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[90,105]}],\"urls\":[],\"media\":[{\"id\":1554524327487438849,\"id_str\":\"1554524327487438849\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"url\":\"https:\\/\\/t.co\\/PKOrCb2wOK\",\"display_url\":\"pic.twitter.com\\/PKOrCb2wOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trylips\\/status\\/1554524433955569664\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"1413\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[140,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1414\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[77,84]},{\"text\":\"helicopter\",\"indices\":[85,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1415\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"China\",\"indices\":[74,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1416\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[243,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GfSa10O7eC\",\"expanded_url\":\"http:\\/\\/Sproutaits.com\",\"display_url\":\"Sproutaits.com\",\"indices\":[179,202]}],\"media\":[{\"id\":1554523021251158016,\"id_str\":\"1554523021251158016\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1417\":{\"hashtags\":[{\"text\":\"PiNetworkUpdates\",\"indices\":[177,194]},{\"text\":\"Pinetwork\",\"indices\":[196,206]},{\"text\":\"Pionners\",\"indices\":[207,216]},{\"text\":\"Taiwan\",\"indices\":[217,224]},{\"text\":\"Stopsellingpi\",\"indices\":[226,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1418\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[211,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521789283311616,\"id_str\":\"1554521789283311616\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"url\":\"https:\\/\\/t.co\\/1CoGL7BvNu\",\"display_url\":\"pic.twitter.com\\/1CoGL7BvNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521869461618688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1419\":{\"hashtags\":[{\"text\":\"Lekki\",\"indices\":[67,73]},{\"text\":\"helicopter\",\"indices\":[80,91]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"China\",\"indices\":[116,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521594877419520,\"id_str\":\"1554521594877419520\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"url\":\"https:\\/\\/t.co\\/ciSc0yx3ED\",\"display_url\":\"pic.twitter.com\\/ciSc0yx3ED\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danielgbenda\\/status\\/1554521604608196614\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":867,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":867,\"resize\":\"fit\"}}}]},\"1420\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[211,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521082723553280,\"id_str\":\"1554521082723553280\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"url\":\"https:\\/\\/t.co\\/DCUApG0DFj\",\"display_url\":\"pic.twitter.com\\/DCUApG0DFj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521163749023744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1421\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[39,46]},{\"text\":\"China\",\"indices\":[47,53]},{\"text\":\"tuesdayvibe\",\"indices\":[54,66]},{\"text\":\"art\",\"indices\":[67,71]},{\"text\":\"artists\",\"indices\":[72,80]},{\"text\":\"Pencildrawing\",\"indices\":[81,95]},{\"text\":\"pencilsketch\",\"indices\":[96,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"m_ekeonuoha\",\"name\":\"SonnetArts\",\"id\":818212912389124096,\"id_str\":\"818212912389124096\",\"indices\":[110,122]},{\"screen_name\":\"abramopex1\",\"name\":\"NFT Collector and Artist \\ud83c\\udfa8\\ud83c\\udde8\\ud83c\\udde6\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1379216766,\"id_str\":\"1379216766\",\"indices\":[123,134]},{\"screen_name\":\"DrawsLa\",\"name\":\"LA Draws\",\"id\":1064423207829155840,\"id_str\":\"1064423207829155840\",\"indices\":[135,143]},{\"screen_name\":\"penpencildraw\",\"name\":\"PenPencilDraw\",\"id\":1243121140542791680,\"id_str\":\"1243121140542791680\",\"indices\":[144,158]}],\"urls\":[],\"media\":[{\"id\":1554520486616436736,\"id_str\":\"1554520486616436736\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"url\":\"https:\\/\\/t.co\\/aihFMPNCZb\",\"display_url\":\"pic.twitter.com\\/aihFMPNCZb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/okeey_m\\/status\\/1554520500147200000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1422\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554520292889968641,\"id_str\":\"1554520292889968641\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"url\":\"https:\\/\\/t.co\\/7jOk7acoqF\",\"display_url\":\"pic.twitter.com\\/7jOk7acoqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uglyyorubadboy\\/status\\/1554520489074327552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"1423\":{\"hashtags\":[{\"text\":\"CFC\",\"indices\":[112,116]},{\"text\":\"football\",\"indices\":[133,142]},{\"text\":\"CharlotteXRica\",\"indices\":[143,158]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[159,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]},{\"text\":\"GoldMedal\",\"indices\":[193,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"Taiwan\",\"indices\":[211,218]},{\"text\":\"tuesdayvibe\",\"indices\":[219,231]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[117,132]}],\"urls\":[],\"media\":[{\"id\":1554520323831259136,\"id_str\":\"1554520323831259136\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoTNCbIJln\",\"display_url\":\"pic.twitter.com\\/ZoTNCbIJln\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AnthonySneh\\/status\\/1554520326926655490\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":495,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1424\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[20,26]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1425\":{\"hashtags\":[{\"text\":\"GoldMedal\",\"indices\":[83,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1426\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"tuesdayvibe\",\"indices\":[189,201]},{\"text\":\"China\",\"indices\":[202,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"ISAC2022\",\"indices\":[217,226]},{\"text\":\"GoldMedal\",\"indices\":[227,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554519402061742081,\"id_str\":\"1554519402061742081\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1427\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[13,21]},{\"text\":\"NancyPelosi\",\"indices\":[94,106]},{\"text\":\"Taipei\",\"indices\":[107,114]},{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[123,141]},{\"text\":\"China\",\"indices\":[142,148]},{\"text\":\"pelositaiwan\",\"indices\":[149,162]},{\"text\":\"Taiwan\",\"indices\":[163,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1428\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[110,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"China\",\"indices\":[126,132]},{\"text\":\"Liveupdates\",\"indices\":[133,145]},{\"text\":\"USA\",\"indices\":[146,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[151,169]},{\"text\":\"NancyPelosi\",\"indices\":[170,182]},{\"text\":\"Biden\",\"indices\":[183,189]},{\"text\":\"XiJinping\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554519161811996674,\"id_str\":\"1554519161811996674\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"url\":\"https:\\/\\/t.co\\/4ywqop01W7\",\"display_url\":\"pic.twitter.com\\/4ywqop01W7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554519169512660994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"1429\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"helicopter\",\"indices\":[155,166]},{\"text\":\"China\",\"indices\":[167,173]},{\"text\":\"tuesdayvibe\",\"indices\":[174,186]},{\"text\":\"chatsekscerita\",\"indices\":[187,202]},{\"text\":\"ISAC2022\",\"indices\":[203,212]},{\"text\":\"GoldMedal\",\"indices\":[213,223]},{\"text\":\"Prabhas\",\"indices\":[224,232]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[233,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1430\":{\"hashtags\":[{\"text\":\"phynaamaka\",\"indices\":[16,27]},{\"text\":\"phyna\",\"indices\":[28,34]},{\"text\":\"amaka\",\"indices\":[35,41]},{\"text\":\"BigBrother\",\"indices\":[42,53]},{\"text\":\"bigbrother24\",\"indices\":[54,67]},{\"text\":\"BB24\",\"indices\":[68,73]},{\"text\":\"Trending\",\"indices\":[74,83]},{\"text\":\"Pelosi\",\"indices\":[84,91]},{\"text\":\"China\",\"indices\":[92,98]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[99,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554518257213837313,\"id_str\":\"1554518257213837313\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"url\":\"https:\\/\\/t.co\\/bGUuuACmdc\",\"display_url\":\"pic.twitter.com\\/bGUuuACmdc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Creativeprimez\\/status\\/1554518265938026503\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1431\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[16,23]},{\"text\":\"tuesdayvibe\",\"indices\":[24,36]},{\"text\":\"OneMuzikGh\",\"indices\":[37,48]},{\"text\":\"OneMuzikGhHype\",\"indices\":[49,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554517895480229888,\"id_str\":\"1554517895480229888\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"url\":\"https:\\/\\/t.co\\/aQs9X4makk\",\"display_url\":\"pic.twitter.com\\/aQs9X4makk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/asonyagh\\/status\\/1554517903122243588\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"large\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"small\":{\"w\":420,\"h\":525,\"resize\":\"fit\"}}}]},\"1432\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"tuesdayvibe\",\"indices\":[25,37]},{\"text\":\"GoldMedal\",\"indices\":[38,48]},{\"text\":\"industrialdesign\",\"indices\":[49,66]},{\"text\":\"Internshipopportunity\",\"indices\":[67,89]},{\"text\":\"conceptart\",\"indices\":[90,101]},{\"text\":\"productdesign\",\"indices\":[102,116]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[117,135]},{\"text\":\"designer\",\"indices\":[136,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554517448593997825,\"id_str\":\"1554517448593997825\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1433\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"BBNaija\",\"indices\":[167,175]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CCSoludo\",\"name\":\"Chukwuma Charles SOLUDO\",\"id\":1038847045249978368,\"id_str\":\"1038847045249978368\",\"indices\":[149,158]}],\"urls\":[],\"media\":[{\"id\":1554516435765977092,\"id_str\":\"1554516435765977092\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"url\":\"https:\\/\\/t.co\\/tiD2f47UBX\",\"display_url\":\"pic.twitter.com\\/tiD2f47UBX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amSirkings\\/status\\/1554517312392368131\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":412,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":412,\"resize\":\"fit\"}}}]},\"1434\":{\"hashtags\":[{\"text\":\"rethinkandgrowrich\",\"indices\":[30,49]},{\"text\":\"taiwan\",\"indices\":[119,126]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PaulOMahony\",\"name\":\"Paul O'Mahony I Author I Speaker I Rethink Founder\",\"id\":57619292,\"id_str\":\"57619292\",\"indices\":[63,75]}],\"urls\":[],\"media\":[{\"id\":1554517150160900098,\"id_str\":\"1554517150160900098\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"url\":\"https:\\/\\/t.co\\/ZpFgTAF0PU\",\"display_url\":\"pic.twitter.com\\/ZpFgTAF0PU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dubaidollars\\/status\\/1554517160407572485\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":228,\"resize\":\"fit\"}}}]},\"1435\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"Tinubu\",\"indices\":[145,152]},{\"text\":\"China\",\"indices\":[153,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554516469114982401,\"id_str\":\"1554516469114982401\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"url\":\"https:\\/\\/t.co\\/lcVoMynzKS\",\"display_url\":\"pic.twitter.com\\/lcVoMynzKS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dadadavidob\\/status\\/1554516660421365762\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1436\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"WorldWar3\",\"indices\":[193,203]},{\"text\":\"PeterObi4President2023\",\"indices\":[204,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1437\":{\"hashtags\":[{\"text\":\"hausas\",\"indices\":[74,81]},{\"text\":\"SamOmatseye\",\"indices\":[82,94]},{\"text\":\"worldwarlll\",\"indices\":[95,107]},{\"text\":\"XiJinping\",\"indices\":[108,118]},{\"text\":\"CaridadCharityFoundation\",\"indices\":[119,144]},{\"text\":\"Tinubu\",\"indices\":[145,152]},{\"text\":\"Russia\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554516297483960320,\"id_str\":\"1554516297483960320\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1438\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"Pelosi\",\"indices\":[130,137]},{\"text\":\"China\",\"indices\":[138,144]},{\"text\":\"dontpayuk\",\"indices\":[145,155]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[156,174]},{\"text\":\"BORNPINK\",\"indices\":[175,184]},{\"text\":\"helicopter\",\"indices\":[185,196]},{\"text\":\"tuesdayvibe\",\"indices\":[197,209]},{\"text\":\"bachelorette\",\"indices\":[210,223]},{\"text\":\"GoldMedal\",\"indices\":[224,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wrBwXCBU1g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Eminitybaba_\\/status\\/1554011432055865344\",\"display_url\":\"twitter.com\\/Eminitybaba_\\/s\\u2026\",\"indices\":[235,258]}]},\"1439\":{\"hashtags\":[{\"text\":\"Deborah\",\"indices\":[0,8]},{\"text\":\"helicopter\",\"indices\":[130,141]},{\"text\":\"WorldWarIII\",\"indices\":[151,163]},{\"text\":\"Tinubu\",\"indices\":[177,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"Terrorists\",\"indices\":[200,211]},{\"text\":\"Rufai\",\"indices\":[212,218]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[219,236]},{\"text\":\"BBNaija\",\"indices\":[237,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Qxsyz1y71O\",\"expanded_url\":\"https:\\/\\/lagoseyemedia.wordpress.com\\/2022\\/08\\/02\\/deborah-gov-tambuwal-receives-unrest-investigation-report-considers-reopening-college-lagos-eye-news\\/\",\"display_url\":\"lagoseyemedia.wordpress.com\\/2022\\/08\\/02\\/deb\\u2026\",\"indices\":[105,128]}]},\"1440\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"China\",\"indices\":[117,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1441\":{\"hashtags\":[{\"text\":\"GraphicDesigner\",\"indices\":[235,251]},{\"text\":\"graphicdesign\",\"indices\":[252,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554515405439369216,\"id_str\":\"1554515405439369216\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"url\":\"https:\\/\\/t.co\\/zn57X39Cdp\",\"display_url\":\"pic.twitter.com\\/zn57X39Cdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554515408891305984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1442\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"China\",\"indices\":[113,119]},{\"text\":\"dontpayuk\",\"indices\":[120,130]},{\"text\":\"tuesdayvibe\",\"indices\":[131,143]},{\"text\":\"assu\",\"indices\":[144,149]},{\"text\":\"GoldMedal\",\"indices\":[150,160]},{\"text\":\"Nigeria\",\"indices\":[161,169]},{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"BORNPINK\",\"indices\":[182,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZVrecl12Br\",\"expanded_url\":\"https:\\/\\/hit-game.com?referrerid=9RR2F67U1AF\",\"display_url\":\"hit-game.com\\/?referrerid=9R\\u2026\",\"indices\":[72,95]}]},\"1443\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[81,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554514934259646465,\"id_str\":\"1554514934259646465\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"url\":\"https:\\/\\/t.co\\/IGfPS2hgII\",\"display_url\":\"pic.twitter.com\\/IGfPS2hgII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/posh_emperor\\/status\\/1554514940857401344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"},\"medium\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"}}}]},\"1444\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[211,218]},{\"text\":\"NancyPelosi\",\"indices\":[219,231]},{\"text\":\"China\",\"indices\":[232,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"USTaiwan\",\"indices\":[247,256]},{\"text\":\"WorldWar3\",\"indices\":[257,267]},{\"text\":\"ChinaTaiwan\",\"indices\":[268,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554514575684411394,\"id_str\":\"1554514575684411394\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"url\":\"https:\\/\\/t.co\\/ez1KF3TssA\",\"display_url\":\"pic.twitter.com\\/ez1KF3TssA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554514586954596353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"1445\":{\"hashtags\":[{\"text\":\"LevelUp\",\"indices\":[48,56]},{\"text\":\"Giveaway\",\"indices\":[57,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"China\",\"indices\":[75,81]},{\"text\":\"Pelosi\",\"indices\":[82,89]},{\"text\":\"food\",\"indices\":[90,95]},{\"text\":\"dontpayuk\",\"indices\":[96,106]},{\"text\":\"lagos\",\"indices\":[107,113]},{\"text\":\"August2022\",\"indices\":[114,125]},{\"text\":\"helicopter\",\"indices\":[126,137]},{\"text\":\"tuesdayvibe\",\"indices\":[138,150]},{\"text\":\"GoldMedal\",\"indices\":[151,161]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[162,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554514242648346626,\"id_str\":\"1554514242648346626\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"url\":\"https:\\/\\/t.co\\/yY9KxsoIA6\",\"display_url\":\"pic.twitter.com\\/yY9KxsoIA6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WumiAnu\\/status\\/1554514249975828480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1446\":{\"hashtags\":[{\"text\":\"RetweetPlease\",\"indices\":[53,67]},{\"text\":\"GospelEmpireGh\",\"indices\":[171,186]},{\"text\":\"StrictlyGospel\",\"indices\":[187,202]},{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"dontpayuk\",\"indices\":[211,221]},{\"text\":\"Pelosi\",\"indices\":[222,229]},{\"text\":\"China\",\"indices\":[230,236]},{\"text\":\"BORNPINK\",\"indices\":[237,246]},{\"text\":\"chatsekscerita\",\"indices\":[247,262]},{\"text\":\"GoldMedal\",\"indices\":[263,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[123,138]}],\"urls\":[],\"media\":[{\"id\":1554513402994753542,\"id_str\":\"1554513402994753542\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554513402994753542\\/pu\\/img\\/PjdqJNqLcq_6sAWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554513402994753542\\/pu\\/img\\/PjdqJNqLcq_6sAWd.jpg\",\"url\":\"https:\\/\\/t.co\\/xJCEmjUIic\",\"display_url\":\"pic.twitter.com\\/xJCEmjUIic\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554513509953708033\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1447\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SkyNews\",\"name\":\"Sky News\",\"id\":7587032,\"id_str\":\"7587032\",\"indices\":[0,8]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[25,48]}]},\"1448\":{\"hashtags\":[{\"text\":\"Obidatti023\",\"indices\":[122,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1449\":{\"hashtags\":[{\"text\":\"adobeillustrator\",\"indices\":[85,102]},{\"text\":\"Adobe\",\"indices\":[103,109]},{\"text\":\"wallpaperdesign\",\"indices\":[110,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ApxYMDpYbH\",\"expanded_url\":\"https:\\/\\/cutt.ly\\/KZRiKdH\",\"display_url\":\"cutt.ly\\/KZRiKdH\",\"indices\":[60,83]}],\"media\":[{\"id\":1554512105172246534,\"id_str\":\"1554512105172246534\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"url\":\"https:\\/\\/t.co\\/GT2cRzGWjm\",\"display_url\":\"pic.twitter.com\\/GT2cRzGWjm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554512107630116864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1450\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"China\",\"indices\":[94,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511966923784192,\"id_str\":\"1554511966923784192\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":772,\"h\":679,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":772,\"h\":679,\"resize\":\"fit\"}}}]},\"1451\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[113,124]},{\"text\":\"WorldWarIII\",\"indices\":[134,146]},{\"text\":\"Tinubu\",\"indices\":[160,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"China\",\"indices\":[176,182]},{\"text\":\"Terrorists\",\"indices\":[183,194]},{\"text\":\"Rufai\",\"indices\":[195,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511934954905601,\"id_str\":\"1554511934954905601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"url\":\"https:\\/\\/t.co\\/UORpoe3ZY2\",\"display_url\":\"pic.twitter.com\\/UORpoe3ZY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554511937723146242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1452\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[32,42]},{\"text\":\"Taipei\",\"indices\":[43,50]},{\"text\":\"WWIII\",\"indices\":[51,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511236750274560,\"id_str\":\"1554511236750274560\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"url\":\"https:\\/\\/t.co\\/GJ1GzU7jGV\",\"display_url\":\"pic.twitter.com\\/GJ1GzU7jGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554511554326179840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":908,\"h\":443,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":908,\"h\":443,\"resize\":\"fit\"}}}]},\"1453\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[102,108]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\",\"indices\":[125,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[14,24]},{\"screen_name\":\"wizkidfc_\",\"name\":\"Wizkid FC\",\"id\":781048616064585728,\"id_str\":\"781048616064585728\",\"indices\":[25,35]},{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[78,90]}],\"urls\":[],\"media\":[{\"id\":1554510572514844673,\"id_str\":\"1554510572514844673\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"url\":\"https:\\/\\/t.co\\/QV20BAgK9G\",\"display_url\":\"pic.twitter.com\\/QV20BAgK9G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RankingSmoothy\\/status\\/1554510730334011399\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":656,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":700,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"}}}]},\"1454\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[79,91]},{\"text\":\"Taipei\",\"indices\":[92,99]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[108,126]},{\"text\":\"China\",\"indices\":[127,133]},{\"text\":\"pelositaiwan\",\"indices\":[134,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554509791514738688,\"id_str\":\"1554509791514738688\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"url\":\"https:\\/\\/t.co\\/P2uLzsGYPc\",\"display_url\":\"pic.twitter.com\\/P2uLzsGYPc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554509836968427521\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":336,\"resize\":\"fit\"}}}]},\"1455\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"PeterObi4President2023\",\"indices\":[112,135]},{\"text\":\"Obidatti023\",\"indices\":[136,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1456\":{\"hashtags\":[{\"text\":\"tuesdaymotivations\",\"indices\":[127,146]},{\"text\":\"tuesdayvibe\",\"indices\":[147,159]},{\"text\":\"LOONAinLA\",\"indices\":[160,170]},{\"text\":\"ProvamedxGulf\",\"indices\":[171,185]},{\"text\":\"Guerrilla1stWin\",\"indices\":[186,202]},{\"text\":\"ENGGER\",\"indices\":[203,210]},{\"text\":\"AlQaeda\",\"indices\":[211,219]},{\"text\":\"abstorm\",\"indices\":[220,228]},{\"text\":\"ISAC2022\",\"indices\":[229,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"sure_odds11\",\"name\":\"\\ud83d\\udd1eSURE WINNING \\u26bd FIXED MATCH PLATFORM \\ud83d\\udcb0\",\"id\":1522975092359184385,\"id_str\":\"1522975092359184385\",\"indices\":[87,99]}],\"urls\":[],\"media\":[{\"id\":1554509721264160769,\"id_str\":\"1554509721264160769\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"1457\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[36,43]},{\"text\":\"China\",\"indices\":[44,50]},{\"text\":\"NewProfilePic\",\"indices\":[51,65]},{\"text\":\"massageinRiyadh\",\"indices\":[66,82]},{\"text\":\"massage_vip_riyadh\",\"indices\":[83,102]},{\"text\":\"realestate\",\"indices\":[103,114]},{\"text\":\"TikTok\",\"indices\":[115,122]},{\"text\":\"Hi\",\"indices\":[123,126]},{\"text\":\"Padres\",\"indices\":[127,134]},{\"text\":\"thatsmoney\",\"indices\":[135,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554509469513650181,\"id_str\":\"1554509469513650181\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"url\":\"https:\\/\\/t.co\\/MoJu2j7Qas\",\"display_url\":\"pic.twitter.com\\/MoJu2j7Qas\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ryder07575428\\/status\\/1554509479911346176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"medium\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1458\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[228,234]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ILRUSSO1\",\"name\":\"\\ud83c\\uddf7\\ud83c\\uddfaThe man who saved the world\\ud83c\\uddf7\\ud83c\\uddfa\",\"id\":1508382160494944259,\"id_str\":\"1508382160494944259\",\"indices\":[0,9]}],\"urls\":[]},\"1459\":{\"hashtags\":[{\"text\":\"BeautyWithBrains\",\"indices\":[63,80]},{\"text\":\"cubana\",\"indices\":[82,89]},{\"text\":\"Tinubu\",\"indices\":[91,98]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"China\",\"indices\":[118,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554508205828489216,\"id_str\":\"1554508205828489216\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"url\":\"https:\\/\\/t.co\\/7RaExlFZdy\",\"display_url\":\"pic.twitter.com\\/7RaExlFZdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554508215945142273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1460\":{\"hashtags\":[{\"text\":\"NewNFTProfilePic\",\"indices\":[0,17]},{\"text\":\"NFTCommmunity\",\"indices\":[97,111]},{\"text\":\"NFTMintAlert\",\"indices\":[112,125]},{\"text\":\"Pelosi\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AsyncArt\",\"name\":\"Async Art\",\"id\":1197673655473324033,\"id_str\":\"1197673655473324033\",\"indices\":[29,38]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPai9pIu8o\",\"expanded_url\":\"https:\\/\\/async.art\\/blueprints\\/627a896ef5760657969a28d7\\/spicyshrimptaco-buffalo-book-club\",\"display_url\":\"async.art\\/blueprints\\/627\\u2026\",\"indices\":[73,96]}],\"media\":[{\"id\":1554507682463334402,\"id_str\":\"1554507682463334402\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"url\":\"https:\\/\\/t.co\\/X7gsur3N0k\",\"display_url\":\"pic.twitter.com\\/X7gsur3N0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hodlzilla\\/status\\/1554507686431150081\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}}]},\"1461\":{\"hashtags\":[{\"text\":\"FYP\",\"indices\":[127,131]},{\"text\":\"tiktok\",\"indices\":[132,139]},{\"text\":\"Taiwan\",\"indices\":[140,147]},{\"text\":\"China\",\"indices\":[148,154]},{\"text\":\"dontpayuk\",\"indices\":[155,165]},{\"text\":\"tuesdayvibe\",\"indices\":[166,178]},{\"text\":\"helicopter\",\"indices\":[179,190]},{\"text\":\"RealEstate\",\"indices\":[191,202]},{\"text\":\"realestateinvestor\",\"indices\":[203,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554507154136207371,\"id_str\":\"1554507154136207371\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"url\":\"https:\\/\\/t.co\\/zQAIZsAEgs\",\"display_url\":\"pic.twitter.com\\/zQAIZsAEgs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/boprinhomes\\/status\\/1554507669574131715\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1462\":{\"hashtags\":[{\"text\":\"Ghana\",\"indices\":[38,44]},{\"text\":\"Ukraine\",\"indices\":[45,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"BambamSorry\",\"indices\":[70,82]},{\"text\":\"abstorm\",\"indices\":[83,91]},{\"text\":\"chatsekscerita\",\"indices\":[92,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Imkwesi_\",\"name\":\"I'm Kwesi\",\"id\":1490616678253801475,\"id_str\":\"1490616678253801475\",\"indices\":[27,36]}],\"urls\":[],\"media\":[{\"id\":1554507371887689731,\"id_str\":\"1554507371887689731\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"url\":\"https:\\/\\/t.co\\/nkgeEcubJC\",\"display_url\":\"pic.twitter.com\\/nkgeEcubJC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Imkwesi_\\/status\\/1554507374265786369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":715,\"h\":725,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":725,\"resize\":\"fit\"}}}]},\"1463\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"washingtonpost\",\"name\":\"The Washington Post\",\"id\":2467791,\"id_str\":\"2467791\",\"indices\":[15,30]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[91,114]}]},\"1464\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"BBNaija\",\"indices\":[25,33]},{\"text\":\"viral\",\"indices\":[34,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554506278268977152,\"id_str\":\"1554506278268977152\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK3OVVWQAAmUa7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK3OVVWQAAmUa7.jpg\",\"url\":\"https:\\/\\/t.co\\/tffyAASECh\",\"display_url\":\"pic.twitter.com\\/tffyAASECh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pelumi2_pelumi\\/status\\/1554506299714437123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1465\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"Taipei\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"washingtonpost\",\"name\":\"The Washington Post\",\"id\":2467791,\"id_str\":\"2467791\",\"indices\":[15,30]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[49,72]}]},\"1466\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[265,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1467\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[168,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"China\",\"indices\":[184,190]},{\"text\":\"helicopter\",\"indices\":[191,202]},{\"text\":\"tuesdayvibe\",\"indices\":[203,215]},{\"text\":\"Whatsapp\",\"indices\":[216,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554505347448152064,\"id_str\":\"1554505347448152064\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"url\":\"https:\\/\\/t.co\\/YMk2Mn69cr\",\"display_url\":\"pic.twitter.com\\/YMk2Mn69cr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554505425168568320\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1468\":{\"hashtags\":[{\"text\":\"NaijaBet\",\"indices\":[189,198]},{\"text\":\"Pelosi\",\"indices\":[199,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"BambamSorry\",\"indices\":[215,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C1Qdss0pAK\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3vjznus\",\"display_url\":\"bit.ly\\/3vjznus\",\"indices\":[164,187]}],\"media\":[{\"id\":1554505094112198659,\"id_str\":\"1554505094112198659\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"url\":\"https:\\/\\/t.co\\/csNNINnmIS\",\"display_url\":\"pic.twitter.com\\/csNNINnmIS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1554505114249052162\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":675,\"h\":680,\"resize\":\"fit\"}}}]},\"1469\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"WorldWarIII\",\"indices\":[43,55]},{\"text\":\"US\",\"indices\":[57,60]},{\"text\":\"China\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554504752481898496,\"id_str\":\"1554504752481898496\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"url\":\"https:\\/\\/t.co\\/ivpyHUQNnb\",\"display_url\":\"pic.twitter.com\\/ivpyHUQNnb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahsaan444\\/status\\/1554504829770219520\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"1470\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[18,24]},{\"text\":\"Pelosi\",\"indices\":[58,65]},{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"OneChina\",\"indices\":[113,122]},{\"text\":\"USA\",\"indices\":[123,127]},{\"text\":\"Congress\",\"indices\":[128,137]},{\"text\":\"PelosiVisit\",\"indices\":[138,150]},{\"text\":\"UNGA\",\"indices\":[151,156]},{\"text\":\"UnitedNations\",\"indices\":[157,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5VkHoMn9go\",\"expanded_url\":\"https:\\/\\/www.fmprc.gov.cn\\/eng\\/zxxx_662805\\/202208\\/t20220802_10732293.html\",\"display_url\":\"fmprc.gov.cn\\/eng\\/zxxx_66280\\u2026\",\"indices\":[88,111]}],\"media\":[{\"id\":1554503487215603718,\"id_str\":\"1554503487215603718\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0r32XkAYpkEw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0r32XkAYpkEw.jpg\",\"url\":\"https:\\/\\/t.co\\/b1rJctznfa\",\"display_url\":\"pic.twitter.com\\/b1rJctznfa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554504025030201345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1016,\"h\":550,\"resize\":\"fit\"},\"large\":{\"w\":1016,\"h\":550,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":368,\"resize\":\"fit\"}}}]},\"1471\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"Pelosi\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554503007227756544,\"id_str\":\"1554503007227756544\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"url\":\"https:\\/\\/t.co\\/HhiXO7ZmPy\",\"display_url\":\"pic.twitter.com\\/HhiXO7ZmPy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554503024973938690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"small\":{\"w\":569,\"h\":375,\"resize\":\"fit\"}}}]},\"1472\":{\"hashtags\":[{\"text\":\"WorldWarIII\",\"indices\":[212,224]},{\"text\":\"zackorji\",\"indices\":[225,234]},{\"text\":\"China\",\"indices\":[235,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"PeterObiForPresident\",\"indices\":[250,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554502771952553986,\"id_str\":\"1554502771952553986\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"url\":\"https:\\/\\/t.co\\/TdmyUy3XBp\",\"display_url\":\"pic.twitter.com\\/TdmyUy3XBp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chukzmiki\\/status\\/1554502879318315018\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1473\":{\"hashtags\":[{\"text\":\"Stonebwoy\",\"indices\":[12,22]},{\"text\":\"Nana\",\"indices\":[24,29]},{\"text\":\"Ashanti\",\"indices\":[35,43]},{\"text\":\"Black\",\"indices\":[51,57]},{\"text\":\"Shatta\",\"indices\":[65,72]},{\"text\":\"Hearts\",\"indices\":[73,80]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"Ghana\",\"indices\":[97,103]},{\"text\":\"FixtheCountry\",\"indices\":[109,123]},{\"text\":\"Benjamin\",\"indices\":[124,133]},{\"text\":\"Reece\",\"indices\":[142,148]},{\"text\":\"KNUST\",\"indices\":[150,156]},{\"text\":\"Kwesi\",\"indices\":[158,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SvtTJHkFyR\",\"expanded_url\":\"https:\\/\\/broadcastghana.net\\/td-jakes-church-half-empty-after-pastor-kept-disrespecting-black-women-in-his-sermons-watch-video\\/\",\"display_url\":\"broadcastghana.net\\/td-jakes-churc\\u2026\",\"indices\":[247,270]}]},\"1474\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"China\",\"indices\":[52,58]},{\"text\":\"BBNaija\",\"indices\":[59,67]},{\"text\":\"BBNaija7\",\"indices\":[68,77]},{\"text\":\"BBNaija7\",\"indices\":[78,87]},{\"text\":\"BBNaija2022\",\"indices\":[88,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"firstladyship\",\"name\":\"NEFERTITI\",\"id\":201237617,\"id_str\":\"201237617\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554502394603601920,\"id_str\":\"1554502394603601920\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"url\":\"https:\\/\\/t.co\\/zkX2Sbg0bN\",\"display_url\":\"pic.twitter.com\\/zkX2Sbg0bN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ObidientYoutube\\/status\\/1554502403889807362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1242,\"h\":698,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"1475\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[23,29]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554501901521403904,\"id_str\":\"1554501901521403904\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"url\":\"https:\\/\\/t.co\\/6pzyCrCJWe\",\"display_url\":\"pic.twitter.com\\/6pzyCrCJWe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554502371946172416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"}}}]},\"1476\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[280,287]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"aaakhigbe\",\"name\":\"Andy Akhigbe\",\"id\":1970724968,\"id_str\":\"1970724968\",\"indices\":[15,25]}],\"urls\":[]},\"1477\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[58,67]},{\"text\":\"fightschool\",\"indices\":[68,80]},{\"text\":\"FightClub\",\"indices\":[81,91]},{\"text\":\"fightingvideo\",\"indices\":[92,106]},{\"text\":\"FightBack\",\"indices\":[107,117]},{\"text\":\"fightnight\",\"indices\":[118,129]},{\"text\":\"fighter\",\"indices\":[130,138]},{\"text\":\"ViralVideo\",\"indices\":[139,150]},{\"text\":\"viral\",\"indices\":[151,157]},{\"text\":\"fighthub\",\"indices\":[158,167]},{\"text\":\"Sheggz\",\"indices\":[168,175]},{\"text\":\"BBNajia\",\"indices\":[176,184]},{\"text\":\"BBNaijaS7\",\"indices\":[185,195]},{\"text\":\"PiNetwork\",\"indices\":[196,206]},{\"text\":\"China\",\"indices\":[207,213]},{\"text\":\"Taiwan\",\"indices\":[214,221]},{\"text\":\"dontpayuk\",\"indices\":[222,232]},{\"text\":\"HuntedAU\",\"indices\":[233,242]},{\"text\":\"bachelorette\",\"indices\":[243,256]},{\"text\":\"Tembisa\",\"indices\":[257,265]},{\"text\":\"helicopter\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554501297348513793,\"id_str\":\"1554501297348513793\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"url\":\"https:\\/\\/t.co\\/ibD6jbcgbc\",\"display_url\":\"pic.twitter.com\\/ibD6jbcgbc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554501332723179524\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"1478\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"business\",\"name\":\"Bloomberg\",\"id\":34713362,\"id_str\":\"34713362\",\"indices\":[0,9]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[42,65]}]},\"1479\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[100,107]},{\"text\":\"BBNajiaS7\",\"indices\":[205,215]},{\"text\":\"Taiwan\",\"indices\":[235,242]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eIYo6IOEWV\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2349018681172\",\"display_url\":\"wa.me\\/+2349018681172\",\"indices\":[61,84]}],\"media\":[{\"id\":1554500996553998337,\"id_str\":\"1554500996553998337\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"url\":\"https:\\/\\/t.co\\/1X3rwlfzDm\",\"display_url\":\"pic.twitter.com\\/1X3rwlfzDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaunceySean1\\/status\\/1554501006838431744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1241,\"h\":1562,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":953,\"h\":1200,\"resize\":\"fit\"}}}]},\"1480\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1481\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[26,35]},{\"text\":\"fightschool\",\"indices\":[36,48]},{\"text\":\"FightClub\",\"indices\":[49,59]},{\"text\":\"fightingvideo\",\"indices\":[60,74]},{\"text\":\"FightBack\",\"indices\":[75,85]},{\"text\":\"fightnight\",\"indices\":[86,97]},{\"text\":\"fighter\",\"indices\":[98,106]},{\"text\":\"ViralVideo\",\"indices\":[107,118]},{\"text\":\"viral\",\"indices\":[119,125]},{\"text\":\"fighthub\",\"indices\":[126,135]},{\"text\":\"Sheggz\",\"indices\":[136,143]},{\"text\":\"BBNajia\",\"indices\":[144,152]},{\"text\":\"BBNaijaS7\",\"indices\":[153,163]},{\"text\":\"PiNetwork\",\"indices\":[164,174]},{\"text\":\"China\",\"indices\":[175,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"dontpayuk\",\"indices\":[190,200]},{\"text\":\"HuntedAU\",\"indices\":[201,210]},{\"text\":\"bachelorette\",\"indices\":[211,224]},{\"text\":\"Tembisa\",\"indices\":[225,233]},{\"text\":\"helicopter\",\"indices\":[234,245]},{\"text\":\"SuperTuna_Jin\",\"indices\":[246,260]},{\"text\":\"tuesdayvibe\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500816718938114,\"id_str\":\"1554500816718938114\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/XigzZJDjZT\",\"display_url\":\"pic.twitter.com\\/XigzZJDjZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500874185089025\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":520,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":942,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":942,\"resize\":\"fit\"}}}]},\"1482\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[240,247]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"Obidatti023\",\"indices\":[256,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500275339239430,\"id_str\":\"1554500275339239430\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"url\":\"https:\\/\\/t.co\\/ROTOrsvY71\",\"display_url\":\"pic.twitter.com\\/ROTOrsvY71\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rinxe_\\/status\\/1554500278094905347\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":583,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":840,\"resize\":\"fit\"}}}]},\"1483\":{\"hashtags\":[{\"text\":\"EndSARS\",\"indices\":[53,61]},{\"text\":\"helicopter\",\"indices\":[62,73]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"Tinubu\",\"indices\":[102,109]},{\"text\":\"wike\",\"indices\":[110,115]},{\"text\":\"peterObiForPresident\",\"indices\":[116,137]},{\"text\":\"pelosi\",\"indices\":[138,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500195148341249,\"id_str\":\"1554500195148341249\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"url\":\"https:\\/\\/t.co\\/2KNksCfwdg\",\"display_url\":\"pic.twitter.com\\/2KNksCfwdg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Atomic379\\/status\\/1554500207177596928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"}}}]},\"1484\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[70,79]},{\"text\":\"fightschool\",\"indices\":[80,92]},{\"text\":\"FightClub\",\"indices\":[93,103]},{\"text\":\"fightingvideo\",\"indices\":[104,118]},{\"text\":\"FightBack\",\"indices\":[119,129]},{\"text\":\"fightnight\",\"indices\":[130,141]},{\"text\":\"fighter\",\"indices\":[142,150]},{\"text\":\"ViralVideo\",\"indices\":[151,162]},{\"text\":\"viral\",\"indices\":[163,169]},{\"text\":\"fighthub\",\"indices\":[170,179]},{\"text\":\"Sheggz\",\"indices\":[180,187]},{\"text\":\"BBNajia\",\"indices\":[188,196]},{\"text\":\"BBNaijaS7\",\"indices\":[197,207]},{\"text\":\"PiNetwork\",\"indices\":[208,218]},{\"text\":\"China\",\"indices\":[219,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"dontpayuk\",\"indices\":[234,244]},{\"text\":\"HuntedAU\",\"indices\":[245,254]},{\"text\":\"bachelorette\",\"indices\":[255,268]},{\"text\":\"Tembisa\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500123123765248,\"id_str\":\"1554500123123765248\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"url\":\"https:\\/\\/t.co\\/65H2indrwE\",\"display_url\":\"pic.twitter.com\\/65H2indrwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500163846262789\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1485\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[252,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554499817635778562,\"id_str\":\"1554499817635778562\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"url\":\"https:\\/\\/t.co\\/T7kgQYTzJ8\",\"display_url\":\"pic.twitter.com\\/T7kgQYTzJ8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezekingwealth\\/status\\/1554499852234637313\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}}}]},\"1486\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[75,84]},{\"text\":\"fightschool\",\"indices\":[85,97]},{\"text\":\"FightClub\",\"indices\":[98,108]},{\"text\":\"fightingvideo\",\"indices\":[109,123]},{\"text\":\"FightBack\",\"indices\":[124,134]},{\"text\":\"fightnight\",\"indices\":[135,146]},{\"text\":\"fighter\",\"indices\":[147,155]},{\"text\":\"ViralVideo\",\"indices\":[156,167]},{\"text\":\"viral\",\"indices\":[168,174]},{\"text\":\"fighthub\",\"indices\":[175,184]},{\"text\":\"Sheggz\",\"indices\":[185,192]},{\"text\":\"BBNajia\",\"indices\":[193,201]},{\"text\":\"BBNaijaS7\",\"indices\":[202,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"China\",\"indices\":[224,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"dontpayuk\",\"indices\":[239,249]},{\"text\":\"HuntedAU\",\"indices\":[250,259]},{\"text\":\"bachelorette\",\"indices\":[260,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554498460908486657,\"id_str\":\"1554498460908486657\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"url\":\"https:\\/\\/t.co\\/wGq0ra4JHP\",\"display_url\":\"pic.twitter.com\\/wGq0ra4JHP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554498498958987264\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"1487\":{\"hashtags\":[{\"text\":\"badmanstoney\",\"indices\":[155,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"dontpayuk\",\"indices\":[177,187]},{\"text\":\"asuu\",\"indices\":[188,193]},{\"text\":\"EndSARS\",\"indices\":[194,202]},{\"text\":\"helicopter\",\"indices\":[203,214]},{\"text\":\"China\",\"indices\":[215,221]},{\"text\":\"HuntedAU\",\"indices\":[222,231]},{\"text\":\"tuesdayvibe\",\"indices\":[232,244]},{\"text\":\"bachelorette\",\"indices\":[245,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[8,20]},{\"screen_name\":\"wandecoal\",\"name\":\"Wande Coal\",\"id\":36617822,\"id_str\":\"36617822\",\"indices\":[21,31]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[32,39]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[40,50]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[51,60]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[61,74]},{\"screen_name\":\"Omah_Lay\",\"name\":\"Omah Lay\",\"id\":1114311810,\"id_str\":\"1114311810\",\"indices\":[75,84]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[85,94]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[95,102]},{\"screen_name\":\"Mayorkun\",\"name\":\"MAYORKUN\",\"id\":251838519,\"id_str\":\"251838519\",\"indices\":[103,112]},{\"screen_name\":\"sydney_talker\",\"name\":\"SYDNEY \\ud83d\\udd4a\",\"id\":391983313,\"id_str\":\"391983313\",\"indices\":[113,127]},{\"screen_name\":\"SympLySimi\",\"name\":\"Simi\",\"id\":26216972,\"id_str\":\"26216972\",\"indices\":[128,139]},{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[140,153]}],\"urls\":[],\"media\":[{\"id\":1554497715492503552,\"id_str\":\"1554497715492503552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"url\":\"https:\\/\\/t.co\\/JoHhIzFS0J\",\"display_url\":\"pic.twitter.com\\/JoHhIzFS0J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Badman__Stoney\\/status\\/1554498360329003010\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1488\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[162,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"tuesdayvibe\",\"indices\":[177,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554497177329848321,\"id_str\":\"1554497177329848321\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"url\":\"https:\\/\\/t.co\\/24V0Z563Hz\",\"display_url\":\"pic.twitter.com\\/24V0Z563Hz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554497190243864577\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1489\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"democracy\",\"indices\":[226,236]},{\"text\":\"autocracy\",\"indices\":[241,251]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBCWorld\",\"name\":\"BBC News (World)\",\"id\":742143,\"id_str\":\"742143\",\"indices\":[0,9]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B48wtqVt4x\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SpeakerPelosi\\/status\\/1554482274430844928\",\"display_url\":\"twitter.com\\/SpeakerPelosi\\/\\u2026\",\"indices\":[281,304]}]},\"1490\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"ChinaTaiwan\",\"indices\":[69,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yqZpgQAKAT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SpeakerPelosi\\/status\\/1554482274430844928\",\"display_url\":\"twitter.com\\/SpeakerPelosi\\/\\u2026\",\"indices\":[82,105]}]},\"1491\":{\"hashtags\":[{\"text\":\"NewProfilePic\",\"indices\":[17,31]},{\"text\":\"Taiwan\",\"indices\":[32,39]},{\"text\":\"China\",\"indices\":[40,46]},{\"text\":\"dontpayuk\",\"indices\":[47,57]},{\"text\":\"worldwide\",\"indices\":[58,68]},{\"text\":\"Tembisa\",\"indices\":[69,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554495900172550147,\"id_str\":\"1554495900172550147\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"url\":\"https:\\/\\/t.co\\/mC1IGTqxZN\",\"display_url\":\"pic.twitter.com\\/mC1IGTqxZN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nonstopdancer55\\/status\\/1554495902836031493\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"large\":{\"w\":508,\"h\":508,\"resize\":\"fit\"}}}]},\"1492\":{\"hashtags\":[{\"text\":\"luckytripgh\",\"indices\":[91,103]},{\"text\":\"outnow\",\"indices\":[104,111]},{\"text\":\"blackstars\",\"indices\":[112,123]},{\"text\":\"godabeg\",\"indices\":[124,132]},{\"text\":\"knust\",\"indices\":[133,139]},{\"text\":\"chelsea\",\"indices\":[140,148]},{\"text\":\"dumfries\",\"indices\":[149,158]},{\"text\":\"akure\",\"indices\":[159,165]},{\"text\":\"chomzy\",\"indices\":[166,173]},{\"text\":\"accra\",\"indices\":[174,180]},{\"text\":\"ghana\",\"indices\":[181,187]},{\"text\":\"china\",\"indices\":[188,194]},{\"text\":\"Taiwan\",\"indices\":[195,202]},{\"text\":\"dontpayuk\",\"indices\":[203,213]},{\"text\":\"helicopter\",\"indices\":[214,225]},{\"text\":\"Tembisa\",\"indices\":[226,234]},{\"text\":\"HuntedAU\",\"indices\":[235,244]},{\"text\":\"BLACKPINK\",\"indices\":[245,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mensah_jackline\",\"name\":\"Jackline Mensah\",\"id\":1183391227712102400,\"id_str\":\"1183391227712102400\",\"indices\":[5,21]}],\"urls\":[],\"media\":[{\"id\":1554495630927601665,\"id_str\":\"1554495630927601665\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554495630927601665\\/pu\\/img\\/izU0J-fnZo8gdaoC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554495630927601665\\/pu\\/img\\/izU0J-fnZo8gdaoC.jpg\",\"url\":\"https:\\/\\/t.co\\/PxHuMMIWCJ\",\"display_url\":\"pic.twitter.com\\/PxHuMMIWCJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LuckyTripGh\\/status\\/1554495686971953157\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":576,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":768,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1493\":{\"hashtags\":[{\"text\":\"personalbaby\",\"indices\":[21,34]},{\"text\":\"ASUUstrike\",\"indices\":[44,55]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[56,73]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"Pelosi\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Wizkidfc\",\"indices\":[98,107]},{\"text\":\"Machala\",\"indices\":[108,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[4,11]}],\"urls\":[]},\"1494\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"ASUU\",\"indices\":[55,60]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"BambamSorry\",\"indices\":[68,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554494932181721088,\"id_str\":\"1554494932181721088\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"url\":\"https:\\/\\/t.co\\/ut4fE6Z6FA\",\"display_url\":\"pic.twitter.com\\/ut4fE6Z6FA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realproscrow\\/status\\/1554495310986203141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"1495\":{\"hashtags\":[{\"text\":\"Nigeria\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"China\",\"indices\":[132,138]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[139,164]},{\"text\":\"OBIDIENT\",\"indices\":[165,174]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554494836379713538,\"id_str\":\"1554494836379713538\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"url\":\"https:\\/\\/t.co\\/YHkClDAdeG\",\"display_url\":\"pic.twitter.com\\/YHkClDAdeG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CucumberTV1\\/status\\/1554494846739615744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":726,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":1481,\"resize\":\"fit\"},\"small\":{\"w\":411,\"h\":680,\"resize\":\"fit\"}}}]},\"1496\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[65,73]},{\"text\":\"bbnajia\",\"indices\":[74,82]},{\"text\":\"China\",\"indices\":[83,89]},{\"text\":\"Pelosi\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554494610143166468,\"id_str\":\"1554494610143166468\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554494610143166468\\/pu\\/img\\/maAX9qXR9FWHaryQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554494610143166468\\/pu\\/img\\/maAX9qXR9FWHaryQ.jpg\",\"url\":\"https:\\/\\/t.co\\/JkFp5xv6m9\",\"display_url\":\"pic.twitter.com\\/JkFp5xv6m9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1554494703873232901\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":480,\"resize\":\"fit\"}}}]},\"1497\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[26,32]},{\"text\":\"pelositaiwan\",\"indices\":[33,46]},{\"text\":\"Taiwan\",\"indices\":[47,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1498\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"PelosiVisit\",\"indices\":[58,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/odR1me7EVX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AP\\/status\\/1554478901476446210\",\"display_url\":\"twitter.com\\/AP\\/status\\/1554\\u2026\",\"indices\":[71,94]}]},\"1499\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1500\":{\"hashtags\":[{\"text\":\"Educational_Post\",\"indices\":[0,17]},{\"text\":\"Btc\",\"indices\":[115,119]},{\"text\":\"Crypto\",\"indices\":[120,127]},{\"text\":\"helicopter\",\"indices\":[128,139]},{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"China\",\"indices\":[211,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554492935130972168,\"id_str\":\"1554492935130972168\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"url\":\"https:\\/\\/t.co\\/Dp6PmdnfRH\",\"display_url\":\"pic.twitter.com\\/Dp6PmdnfRH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dan_nyeche\\/status\\/1554492944031399938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"1501\":{\"hashtags\":[{\"text\":\"nigerianbusiness\",\"indices\":[126,143]},{\"text\":\"fintech\",\"indices\":[144,152]},{\"text\":\"startup\",\"indices\":[153,161]},{\"text\":\"lagosnigeria\",\"indices\":[162,175]},{\"text\":\"nigerian\",\"indices\":[176,185]},{\"text\":\"smallbusiness\",\"indices\":[186,200]},{\"text\":\"Pelosi\",\"indices\":[201,208]},{\"text\":\"lagos\",\"indices\":[209,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554492448331780105,\"id_str\":\"1554492448331780105\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"url\":\"https:\\/\\/t.co\\/IrHVBZAtGj\",\"display_url\":\"pic.twitter.com\\/IrHVBZAtGj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_usejuju\\/status\\/1554492463200571395\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"1502\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[53,65]},{\"text\":\"Taipei\",\"indices\":[66,73]},{\"text\":\"Pelosi\",\"indices\":[74,81]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[82,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"pelositaiwan\",\"indices\":[108,121]},{\"text\":\"Taiwan\",\"indices\":[122,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554492065962401792,\"id_str\":\"1554492065962401792\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"url\":\"https:\\/\\/t.co\\/SuqnCpdGVH\",\"display_url\":\"pic.twitter.com\\/SuqnCpdGVH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554492105506304000\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1503\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JohnRoss43\",\"name\":\"John Ross\",\"id\":15286685,\"id_str\":\"15286685\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[29,52]}]},\"1504\":{\"hashtags\":[{\"text\":\"GetIntoAsoRock\",\"indices\":[210,225]},{\"text\":\"Akure\",\"indices\":[227,233]},{\"text\":\"Pelosi\",\"indices\":[234,241]},{\"text\":\"China\",\"indices\":[242,248]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[107,116]}],\"urls\":[],\"media\":[{\"id\":1554491570216472577,\"id_str\":\"1554491570216472577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"url\":\"https:\\/\\/t.co\\/1omjHcInPM\",\"display_url\":\"pic.twitter.com\\/1omjHcInPM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunladeAbiola1\\/status\\/1554491572502372353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"1505\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"China\",\"indices\":[106,112]},{\"text\":\"NancyPelosi\",\"indices\":[251,263]},{\"text\":\"pelositaiwan\",\"indices\":[264,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554491505427247104,\"id_str\":\"1554491505427247104\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"url\":\"https:\\/\\/t.co\\/u3VHsLGAP0\",\"display_url\":\"pic.twitter.com\\/u3VHsLGAP0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554491545810014208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1506\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[42,48]},{\"text\":\"ChristJesus\",\"indices\":[192,204]},{\"text\":\"WWIII\",\"indices\":[228,234]},{\"text\":\"Nostrademe\",\"indices\":[236,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1507\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RonnyJacksonTX\",\"name\":\"Ronny Jackson\",\"id\":1201953403099893760,\"id_str\":\"1201953403099893760\",\"indices\":[0,15]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[30,53]}]},\"1508\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"China\",\"indices\":[279,285]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490875413434368,\"id_str\":\"1554490875413434368\",\"indices\":[286,309],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"url\":\"https:\\/\\/t.co\\/BVOXlr4uF0\",\"display_url\":\"pic.twitter.com\\/BVOXlr4uF0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490944380354560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1509\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[178,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490735684206593,\"id_str\":\"1554490735684206593\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"url\":\"https:\\/\\/t.co\\/mo8Q7t3wg2\",\"display_url\":\"pic.twitter.com\\/mo8Q7t3wg2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554490738594938883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"medium\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":345,\"resize\":\"fit\"}}}]},\"1510\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[49,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[25,48]}]},\"1511\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[26,29]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"China\",\"indices\":[92,98]},{\"text\":\"NancyPelosi\",\"indices\":[116,128]},{\"text\":\"Taipei\",\"indices\":[129,136]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[145,163]},{\"text\":\"China\",\"indices\":[164,170]},{\"text\":\"pelositaiwan\",\"indices\":[171,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490669972230146,\"id_str\":\"1554490669972230146\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"url\":\"https:\\/\\/t.co\\/KPehr8eDvd\",\"display_url\":\"pic.twitter.com\\/KPehr8eDvd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490676796354561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":504,\"resize\":\"fit\"}}}]},\"1512\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[217,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1513\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"China\",\"indices\":[77,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nexta_tv\",\"name\":\"NEXTA\",\"id\":1891490382,\"id_str\":\"1891490382\",\"indices\":[0,9]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[45,68]}]},\"1514\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[231,238]},{\"text\":\"China\",\"indices\":[239,245]},{\"text\":\"dontpayuk\",\"indices\":[246,256]},{\"text\":\"Guerrilla1stWin\",\"indices\":[257,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"accessbank_help\",\"name\":\"Access Bank Help\",\"id\":2164455380,\"id_str\":\"2164455380\",\"indices\":[0,16]}],\"urls\":[]},\"1515\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[17,24]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Stargazer_28671\",\"name\":\"Stargazer\",\"id\":1507947119654563842,\"id_str\":\"1507947119654563842\",\"indices\":[0,16]}],\"urls\":[]},\"1516\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490352496680960,\"id_str\":\"1554490352496680960\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"url\":\"https:\\/\\/t.co\\/OhafhnOHNP\",\"display_url\":\"pic.twitter.com\\/OhafhnOHNP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1554490355508191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"1517\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[158,164]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"China\",\"indices\":[173,179]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1518\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[50,56]},{\"text\":\"taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"disclosetv\",\"name\":\"Disclose.tv\",\"id\":15392486,\"id_str\":\"15392486\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[26,49]}]},\"1519\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[0,6]},{\"text\":\"Pelosi\",\"indices\":[34,41]},{\"text\":\"China\",\"indices\":[42,48]},{\"text\":\"taiwanwar\",\"indices\":[49,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1520\":{\"hashtags\":[{\"text\":\"phcity\",\"indices\":[154,161]},{\"text\":\"portharcourt\",\"indices\":[162,175]},{\"text\":\"Machala\",\"indices\":[176,184]},{\"text\":\"Wizkidfc\",\"indices\":[185,194]},{\"text\":\"Davido\",\"indices\":[195,202]},{\"text\":\"Pelosi\",\"indices\":[204,211]},{\"text\":\"OBIDIENTS\",\"indices\":[212,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554489126585614336,\"id_str\":\"1554489126585614336\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"url\":\"https:\\/\\/t.co\\/o5IYOG2cGu\",\"display_url\":\"pic.twitter.com\\/o5IYOG2cGu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/freeworldmaster\\/status\\/1554489145971572737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1521\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1522\":{\"hashtags\":[{\"text\":\"superfmph\",\"indices\":[86,96]},{\"text\":\"soup\",\"indices\":[97,102]},{\"text\":\"foodie\",\"indices\":[103,110]},{\"text\":\"mrbayo\",\"indices\":[111,118]},{\"text\":\"China\",\"indices\":[119,125]},{\"text\":\"ASUU\",\"indices\":[126,131]},{\"text\":\"lekki\",\"indices\":[132,138]},{\"text\":\"Pelosi\",\"indices\":[139,146]},{\"text\":\"stoplying\",\"indices\":[147,157]},{\"text\":\"BBNaija\",\"indices\":[158,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554488879247495171,\"id_str\":\"1554488879247495171\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"url\":\"https:\\/\\/t.co\\/zOwwS1AqzK\",\"display_url\":\"pic.twitter.com\\/zOwwS1AqzK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superfm933\\/status\\/1554488888789536768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":839,\"resize\":\"fit\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":839,\"resize\":\"fit\"}}}]},\"1523\":{\"hashtags\":[{\"text\":\"BREAKING\",\"indices\":[0,9]},{\"text\":\"China\",\"indices\":[10,16]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554488556680355841,\"id_str\":\"1554488556680355841\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"url\":\"https:\\/\\/t.co\\/QmblcXb8XR\",\"display_url\":\"pic.twitter.com\\/QmblcXb8XR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554488563089162242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":900,\"resize\":\"fit\"}}}]},\"1524\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[258,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1525\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MrGenius_Tips\",\"name\":\"Mr Genius\",\"id\":1042520177039077377,\"id_str\":\"1042520177039077377\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UhahxGgEdG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3KReBIp\",\"display_url\":\"bit.ly\\/3KReBIp\",\"indices\":[65,88]}],\"media\":[{\"id\":1554487793941979141,\"id_str\":\"1554487793941979141\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"url\":\"https:\\/\\/t.co\\/lde207mcTI\",\"display_url\":\"pic.twitter.com\\/lde207mcTI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487803244847104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"1526\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MrGenius_Tips\",\"name\":\"Mr Genius\",\"id\":1042520177039077377,\"id_str\":\"1042520177039077377\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UhahxGgEdG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3KReBIp\",\"display_url\":\"bit.ly\\/3KReBIp\",\"indices\":[65,88]}],\"media\":[{\"id\":1554487700522156038,\"id_str\":\"1554487700522156038\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"url\":\"https:\\/\\/t.co\\/x6FJ08mKpH\",\"display_url\":\"pic.twitter.com\\/x6FJ08mKpH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487719132282880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"1527\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MrGenius_Tips\",\"name\":\"Mr Genius\",\"id\":1042520177039077377,\"id_str\":\"1042520177039077377\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UhahxGgEdG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3KReBIp\",\"display_url\":\"bit.ly\\/3KReBIp\",\"indices\":[65,88]}]},\"1528\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[140,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[155,181]},{\"text\":\"dontpayuk\",\"indices\":[182,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wimkbaMp6p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\",\"display_url\":\"twitter.com\\/skrimgadgets\\/s\\u2026\",\"indices\":[193,216]}]},\"1529\":{\"hashtags\":[{\"text\":\"NFT\",\"indices\":[228,232]},{\"text\":\"Pelosi\",\"indices\":[233,240]},{\"text\":\"NFTCommunity\",\"indices\":[241,254]},{\"text\":\"100Devs\",\"indices\":[255,263]},{\"text\":\"drawing\",\"indices\":[264,272]},{\"text\":\"nftart\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[127,135]},{\"screen_name\":\"Attractbysight\",\"name\":\"Attraction By Sight LLC\",\"id\":1501572186838081538,\"id_str\":\"1501572186838081538\",\"indices\":[212,227]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ccGYRz7I1S\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/matic\\/0x2953399124f0cbb46d2cbacd8a89cf0599974963\\/40386918039180471665116977127635031425041571541600337167240519540714244145153\\/\",\"display_url\":\"opensea.io\\/assets\\/matic\\/0\\u2026\",\"indices\":[188,211]}]},\"1530\":{\"hashtags\":[{\"text\":\"AmberHeardIsAMonster\",\"indices\":[27,48]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"AmberHeardIsFinished\",\"indices\":[57,78]},{\"text\":\"JohnnyDeppIsALegend\",\"indices\":[79,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554486449805877248,\"id_str\":\"1554486449805877248\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"url\":\"https:\\/\\/t.co\\/I695L4ShPk\",\"display_url\":\"pic.twitter.com\\/I695L4ShPk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554486456894242817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"},\"small\":{\"w\":476,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"}}}]},\"1531\":{\"hashtags\":[{\"text\":\"Governor\",\"indices\":[189,198]},{\"text\":\"Rufai\",\"indices\":[199,205]},{\"text\":\"arisetv\",\"indices\":[206,214]},{\"text\":\"SportyBet\",\"indices\":[215,225]},{\"text\":\"BigBella\",\"indices\":[226,235]},{\"text\":\"OKOWA\",\"indices\":[236,242]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[243,268]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1532\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChineseEmbinUS\",\"name\":\"Chinese Embassy in US\",\"id\":1136383051917910017,\"id_str\":\"1136383051917910017\",\"indices\":[37,52]}],\"urls\":[]},\"1533\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[41,48]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"China\",\"indices\":[57,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1534\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"Pelosi\",\"indices\":[256,263]},{\"text\":\"China\",\"indices\":[265,271]},{\"text\":\"pelositaiwan\",\"indices\":[272,285]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554485294040494080,\"id_str\":\"1554485294040494080\",\"indices\":[286,309],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKkI4_aMAA4mBp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKkI4_aMAA4mBp.jpg\",\"url\":\"https:\\/\\/t.co\\/gfnLgQjAke\",\"display_url\":\"pic.twitter.com\\/gfnLgQjAke\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554485299530854400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1535\":{\"hashtags\":[{\"text\":\"Obidatti023\",\"indices\":[49,61]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[62,79]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"BBNaija\",\"indices\":[123,131]},{\"text\":\"helicopter\",\"indices\":[133,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554485121193054208,\"id_str\":\"1554485121193054208\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKj-1FXkAAOANO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKj-1FXkAAOANO.jpg\",\"url\":\"https:\\/\\/t.co\\/VdSai3EeOY\",\"display_url\":\"pic.twitter.com\\/VdSai3EeOY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lucky_kierian\\/status\\/1554485128256229376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":1024,\"resize\":\"fit\"}}}]},\"1536\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[73,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"WWIII\",\"indices\":[96,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554484898391638017,\"id_str\":\"1554484898391638017\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKjx3FXwAE459t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKjx3FXwAE459t.jpg\",\"url\":\"https:\\/\\/t.co\\/XADV9AQJJl\",\"display_url\":\"pic.twitter.com\\/XADV9AQJJl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554484902371926017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"1537\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[169,181]},{\"text\":\"Taipei\",\"indices\":[182,189]},{\"text\":\"Pelosi\",\"indices\":[190,197]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[198,216]},{\"text\":\"China\",\"indices\":[217,223]},{\"text\":\"pelositaiwan\",\"indices\":[224,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554484739087962112,\"id_str\":\"1554484739087962112\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKjoloakAApv78.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKjoloakAApv78.jpg\",\"url\":\"https:\\/\\/t.co\\/Ne1xXYczKB\",\"display_url\":\"pic.twitter.com\\/Ne1xXYczKB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554484758859894785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"}}}]},\"1538\":{\"hashtags\":[{\"text\":\"DidYouKnow\",\"indices\":[0,11]},{\"text\":\"techfact\",\"indices\":[12,21]},{\"text\":\"TechTips\",\"indices\":[23,32]},{\"text\":\"techblog\",\"indices\":[234,243]},{\"text\":\"techie\",\"indices\":[244,251]},{\"text\":\"Pelosi\",\"indices\":[252,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554484651342823425,\"id_str\":\"1554484651342823425\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKjjewWAAE1Nfa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKjjewWAAE1Nfa.jpg\",\"url\":\"https:\\/\\/t.co\\/HGSyOtnMaK\",\"display_url\":\"pic.twitter.com\\/HGSyOtnMaK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IsraelEspirit\\/status\\/1554484654056640514\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":454,\"h\":1193,\"resize\":\"fit\"},\"medium\":{\"w\":454,\"h\":1193,\"resize\":\"fit\"},\"small\":{\"w\":259,\"h\":680,\"resize\":\"fit\"}}}]},\"1539\":{\"hashtags\":[{\"text\":\"Helicopter\",\"indices\":[108,119]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"China\",\"indices\":[161,167]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1540\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"China\",\"indices\":[59,65]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CNNnews18\",\"name\":\"News18\",\"id\":6509832,\"id_str\":\"6509832\",\"indices\":[66,76]}],\"urls\":[],\"media\":[{\"id\":1554483074972499968,\"id_str\":\"1554483074972499968\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483074972499968\\/pu\\/img\\/-VyDJDVBSgFONBY3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483074972499968\\/pu\\/img\\/-VyDJDVBSgFONBY3.jpg\",\"url\":\"https:\\/\\/t.co\\/AhiUcTQdDK\",\"display_url\":\"pic.twitter.com\\/AhiUcTQdDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NKM_Global\\/status\\/1554484413584609280\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"1541\":{\"hashtags\":[{\"text\":\"Ukraine\",\"indices\":[74,82]},{\"text\":\"NancyPelosi\",\"indices\":[86,98]},{\"text\":\"Taipei\",\"indices\":[99,106]},{\"text\":\"Pelosi\",\"indices\":[107,114]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[115,133]},{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"pelositaiwan\",\"indices\":[141,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1554484321805037573,\"id_str\":\"1554484321805037573\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554484321805037573\\/pu\\/img\\/qDOCVDbqMbGAIYJ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554484321805037573\\/pu\\/img\\/qDOCVDbqMbGAIYJ_.jpg\",\"url\":\"https:\\/\\/t.co\\/ES9Y70N49q\",\"display_url\":\"pic.twitter.com\\/ES9Y70N49q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554484350129156097\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}}}]},\"1542\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[62,69]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ABC\",\"name\":\"ABC News\",\"id\":28785486,\"id_str\":\"28785486\",\"indices\":[0,4]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[38,61]}]},\"1543\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"China\",\"indices\":[236,242]},{\"text\":\"Olaidemarketing\",\"indices\":[243,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1544\":{\"hashtags\":[{\"text\":\"Helicopter\",\"indices\":[202,213]},{\"text\":\"Pelosi\",\"indices\":[230,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"China\",\"indices\":[255,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1545\":{\"hashtags\":[{\"text\":\"Foreignfundingcase\",\"indices\":[186,205]},{\"text\":\"Taiwan\",\"indices\":[206,213]},{\"text\":\"\\u0635\\u0627\\u062f\\u0642_\\u0648_\\u0627\\u0645\\u06cc\\u0646_\\u0639\\u0645\\u0631\\u0627\\u0646_\\u062e\\u0627\\u0646\",\"indices\":[214,236]},{\"text\":\"AlQaeda\",\"indices\":[237,245]},{\"text\":\"jhope\",\"indices\":[246,252]},{\"text\":\"Biden\",\"indices\":[253,259]},{\"text\":\"kabul\",\"indices\":[260,266]},{\"text\":\"Ayman\",\"indices\":[267,273]},{\"text\":\"PMLN\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[162,185]}],\"media\":[{\"id\":1554483167431741440,\"id_str\":\"1554483167431741440\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"url\":\"https:\\/\\/t.co\\/qSXunCgTi2\",\"display_url\":\"pic.twitter.com\\/qSXunCgTi2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554484017214492674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":408,\"resize\":\"fit\"}}}]},\"1546\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[0,11]},{\"text\":\"Akure\",\"indices\":[12,18]},{\"text\":\"Taiwan\",\"indices\":[19,26]},{\"text\":\"Pelosi\",\"indices\":[27,34]},{\"text\":\"China\",\"indices\":[52,58]},{\"text\":\"Whatsapp\",\"indices\":[169,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554483852026036224,\"id_str\":\"1554483852026036224\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483852026036224\\/pu\\/img\\/rxv9amlOvyMX9IYS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483852026036224\\/pu\\/img\\/rxv9amlOvyMX9IYS.jpg\",\"url\":\"https:\\/\\/t.co\\/4j1dmJRcsL\",\"display_url\":\"pic.twitter.com\\/4j1dmJRcsL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554483923031318528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1547\":{\"hashtags\":[{\"text\":\"football\",\"indices\":[114,123]},{\"text\":\"footballplayer\",\"indices\":[124,139]},{\"text\":\"reborn\",\"indices\":[141,148]},{\"text\":\"star\",\"indices\":[149,154]},{\"text\":\"borntoplay\",\"indices\":[156,167]},{\"text\":\"roadtothedream\",\"indices\":[169,184]},{\"text\":\"soccer\",\"indices\":[185,192]},{\"text\":\"soccerlife\",\"indices\":[193,204]},{\"text\":\"Pelosi\",\"indices\":[205,212]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554483845965254659,\"id_str\":\"1554483845965254659\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483845965254659\\/pu\\/img\\/NCIYrRox0c71uA7G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483845965254659\\/pu\\/img\\/NCIYrRox0c71uA7G.jpg\",\"url\":\"https:\\/\\/t.co\\/wdeLiUudUm\",\"display_url\":\"pic.twitter.com\\/wdeLiUudUm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shegx007\\/status\\/1554483917431996416\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"1548\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[99,106]},{\"text\":\"Taipei\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[75,98]}]},\"1549\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[0,12]},{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"Taiwanchina\",\"indices\":[47,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554483389201354754,\"id_str\":\"1554483389201354754\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiaA6XkAIBXot.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiaA6XkAIBXot.jpg\",\"url\":\"https:\\/\\/t.co\\/iIZ4w36QCu\",\"display_url\":\"pic.twitter.com\\/iIZ4w36QCu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554483391562661893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1125,\"h\":663,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":663,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":401,\"resize\":\"fit\"}}}]},\"1550\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[199,211]},{\"text\":\"Taipei\",\"indices\":[212,219]},{\"text\":\"Pelosi\",\"indices\":[220,227]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[228,246]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"pelositaiwan\",\"indices\":[254,267]},{\"text\":\"Taiwan\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554483304757628928,\"id_str\":\"1554483304757628928\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483304757628928\\/pu\\/img\\/LiAZABBtJ8cCxoqQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483304757628928\\/pu\\/img\\/LiAZABBtJ8cCxoqQ.jpg\",\"url\":\"https:\\/\\/t.co\\/PBNkmGV8oI\",\"display_url\":\"pic.twitter.com\\/PBNkmGV8oI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554483373045063680\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":413,\"resize\":\"fit\"}}}]},\"1551\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[120,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"China\",\"indices\":[154,160]},{\"text\":\"PeterObi4President2023\",\"indices\":[161,184]},{\"text\":\"EndASUUStrike\",\"indices\":[185,199]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[201,226]},{\"text\":\"PeterObi2023\",\"indices\":[228,241]},{\"text\":\"EndSARS\",\"indices\":[242,250]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[252,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554483342929793024,\"id_str\":\"1554483342929793024\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"url\":\"https:\\/\\/t.co\\/khWHTKmnVb\",\"display_url\":\"pic.twitter.com\\/khWHTKmnVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1554483355172933641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":902,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":677,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"1552\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[28,40]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Taipei\",\"indices\":[78,85]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[105,123]},{\"text\":\"China\",\"indices\":[124,130]},{\"text\":\"pelositaiwan\",\"indices\":[131,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554482770923368452,\"id_str\":\"1554482770923368452\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554482770923368452\\/pu\\/img\\/uAhUFfOn9P1vUAYd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554482770923368452\\/pu\\/img\\/uAhUFfOn9P1vUAYd.jpg\",\"url\":\"https:\\/\\/t.co\\/IlA3rcIYKP\",\"display_url\":\"pic.twitter.com\\/IlA3rcIYKP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554482789952925702\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":616,\"h\":432,\"resize\":\"fit\"},\"large\":{\"w\":616,\"h\":432,\"resize\":\"fit\"},\"small\":{\"w\":616,\"h\":432,\"resize\":\"fit\"}}}]},\"1553\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[64,76]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554482605986385920,\"id_str\":\"1554482605986385920\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"url\":\"https:\\/\\/t.co\\/mymu8Wotml\",\"display_url\":\"pic.twitter.com\\/mymu8Wotml\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tobilobaddon\\/status\\/1554482608142254083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"small\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":568,\"h\":328,\"resize\":\"fit\"}}}]},\"1554\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[14,21]},{\"text\":\"JacksonWang\",\"indices\":[22,34]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1555\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ihsBndA5XZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwame_stalwart\\/status\\/1554481393891172352\",\"display_url\":\"twitter.com\\/kwame_stalwart\\u2026\",\"indices\":[36,59]}],\"media\":[{\"id\":1554481963116920833,\"id_str\":\"1554481963116920833\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhHAVWAAElIl4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhHAVWAAElIl4.jpg\",\"url\":\"https:\\/\\/t.co\\/FZsh57rmlF\",\"display_url\":\"pic.twitter.com\\/FZsh57rmlF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwame_stalwart\\/status\\/1554481970180227072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"medium\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"large\":{\"w\":262,\"h\":229,\"resize\":\"fit\"}}}]},\"1556\":{\"hashtags\":[{\"text\":\"Afrobeat\",\"indices\":[36,45]},{\"text\":\"Machala\",\"indices\":[46,54]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"August2022\",\"indices\":[63,74]},{\"text\":\"BBNajia\",\"indices\":[75,83]},{\"text\":\"BBNaija\",\"indices\":[84,92]},{\"text\":\"BBNaijaSeason7\",\"indices\":[93,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[23,35]}],\"urls\":[],\"media\":[{\"id\":1554481884524171267,\"id_str\":\"1554481884524171267\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhCbjX0AMqUvA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhCbjX0AMqUvA.jpg\",\"url\":\"https:\\/\\/t.co\\/eXTzX8xHQk\",\"display_url\":\"pic.twitter.com\\/eXTzX8xHQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/delywest_\\/status\\/1554481892346445824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1123,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":567,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1123,\"h\":936,\"resize\":\"fit\"}}}]},\"1557\":{\"hashtags\":[{\"text\":\"coding\",\"indices\":[258,265]},{\"text\":\"Pelosi\",\"indices\":[266,273]},{\"text\":\"lekki\",\"indices\":[274,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yFjK3XJD0l\",\"expanded_url\":\"http:\\/\\/www.rubiestechnologies.org\\/brace22\",\"display_url\":\"rubiestechnologies.org\\/brace22\",\"indices\":[233,256]}],\"media\":[{\"id\":1554481821919887362,\"id_str\":\"1554481821919887362\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg-yVWQAI8k0p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg-yVWQAI8k0p.jpg\",\"url\":\"https:\\/\\/t.co\\/TfEpOwszt4\",\"display_url\":\"pic.twitter.com\\/TfEpOwszt4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1554481852064440334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1558\":{\"hashtags\":[{\"text\":\"PeterObi2023\",\"indices\":[52,65]},{\"text\":\"Helicopter\",\"indices\":[132,143]},{\"text\":\"Pelosi\",\"indices\":[160,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"China\",\"indices\":[185,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1559\":{\"hashtags\":[{\"text\":\"Trending\",\"indices\":[132,141]},{\"text\":\"Pelosi\",\"indices\":[142,149]},{\"text\":\"helicopter\",\"indices\":[150,161]},{\"text\":\"JacksonWang\",\"indices\":[162,174]},{\"text\":\"Obidatti023\",\"indices\":[175,187]},{\"text\":\"VoteThemAllOut2022\",\"indices\":[188,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554481705255374848,\"id_str\":\"1554481705255374848\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"url\":\"https:\\/\\/t.co\\/XRhDOqdGKn\",\"display_url\":\"pic.twitter.com\\/XRhDOqdGKn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eagle103_voice\\/status\\/1554481716479381506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1065,\"h\":1391,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":919,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":521,\"h\":680,\"resize\":\"fit\"}}}]},\"1560\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"politics\",\"indices\":[41,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1561\":{\"hashtags\":[{\"text\":\"Bitcoin\",\"indices\":[161,169]},{\"text\":\"Taiwan\",\"indices\":[252,259]},{\"text\":\"Pelosi\",\"indices\":[260,267]},{\"text\":\"China\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1562\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[127,134]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[135,153]},{\"text\":\"China\",\"indices\":[154,160]},{\"text\":\"pelositaiwan\",\"indices\":[161,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1563\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[31,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"Pelosi\",\"indices\":[46,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554481206649143304,\"id_str\":\"1554481206649143304\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ew5eZ1Fkee\",\"display_url\":\"pic.twitter.com\\/Ew5eZ1Fkee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/qf00_\\/status\\/1554481216363061253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"1564\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[79,86]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[105,123]},{\"text\":\"China\",\"indices\":[124,130]},{\"text\":\"pelositaiwan\",\"indices\":[131,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554481069889835009,\"id_str\":\"1554481069889835009\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481069889835009\\/pu\\/img\\/63rvVhiteVolS3v6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481069889835009\\/pu\\/img\\/63rvVhiteVolS3v6.jpg\",\"url\":\"https:\\/\\/t.co\\/fJ6XMMFoBO\",\"display_url\":\"pic.twitter.com\\/fJ6XMMFoBO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554481183542878210\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1565\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[98,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1566\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"Pelosi\",\"indices\":[91,98]},{\"text\":\"China\",\"indices\":[99,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554481002176733184,\"id_str\":\"1554481002176733184\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"url\":\"https:\\/\\/t.co\\/Nf5jmVAtUC\",\"display_url\":\"pic.twitter.com\\/Nf5jmVAtUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Molobeduu\\/status\\/1554481031083859973\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":594,\"h\":360,\"resize\":\"fit\"}}}]},\"1567\":{\"hashtags\":[{\"text\":\"BellaOkagbue\",\"indices\":[87,100]},{\"text\":\"Rebellz\",\"indices\":[101,109]},{\"text\":\"China\",\"indices\":[110,116]},{\"text\":\"Pelosi\",\"indices\":[117,124]},{\"text\":\"ISAC2022\",\"indices\":[125,134]},{\"text\":\"BBNaija\",\"indices\":[135,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554480632612487169,\"id_str\":\"1554480632612487169\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480632612487169\\/pu\\/img\\/6yLZyZt492tFm_m_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480632612487169\\/pu\\/img\\/6yLZyZt492tFm_m_.jpg\",\"url\":\"https:\\/\\/t.co\\/tDgt2EQYyT\",\"display_url\":\"pic.twitter.com\\/tDgt2EQYyT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tina_Obodoke\\/status\\/1554480953665495040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1568\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[92,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BKKeyAxwNd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ejmalrai\\/status\\/1554478967410905091\",\"display_url\":\"twitter.com\\/ejmalrai\\/statu\\u2026\",\"indices\":[108,131]}]},\"1569\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1570\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"China\",\"indices\":[65,71]},{\"text\":\"BBNajia\",\"indices\":[72,80]},{\"text\":\"BBNaija\",\"indices\":[81,89]},{\"text\":\"BBNaija7\",\"indices\":[90,99]},{\"text\":\"helicopter\",\"indices\":[100,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554480660156407808,\"id_str\":\"1554480660156407808\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"url\":\"https:\\/\\/t.co\\/OJmnM0SGwE\",\"display_url\":\"pic.twitter.com\\/OJmnM0SGwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554480671648792578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1070,\"h\":1427,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1571\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[17,24]},{\"text\":\"Taiwan\",\"indices\":[34,41]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554480517617254400,\"id_str\":\"1554480517617254400\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480517617254400\\/pu\\/img\\/e8gclSjsTDAjj85c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480517617254400\\/pu\\/img\\/e8gclSjsTDAjj85c.jpg\",\"url\":\"https:\\/\\/t.co\\/UvWL9mhNB8\",\"display_url\":\"pic.twitter.com\\/UvWL9mhNB8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554480667806863362\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1572\":{\"hashtags\":[{\"text\":\"Helicopter\",\"indices\":[180,191]},{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"Taiwan\",\"indices\":[216,223]},{\"text\":\"China\",\"indices\":[233,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1573\":{\"hashtags\":[{\"text\":\"CyberAttack\",\"indices\":[65,77]},{\"text\":\"Pelosi\",\"indices\":[79,86]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[87,105]},{\"text\":\"China\",\"indices\":[106,112]},{\"text\":\"pelositaiwan\",\"indices\":[113,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1574\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"China\",\"indices\":[63,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554479932788641793,\"id_str\":\"1554479932788641793\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"url\":\"https:\\/\\/t.co\\/s6lXtlwBZP\",\"display_url\":\"pic.twitter.com\\/s6lXtlwBZP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1554479982822543361\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":352,\"resize\":\"fit\"}}}]},\"1575\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[3,10]},{\"text\":\"Taiwan\",\"indices\":[36,43]},{\"text\":\"China\",\"indices\":[58,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1576\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1577\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[7,14]},{\"text\":\"XiJinping\",\"indices\":[33,43]},{\"text\":\"China\",\"indices\":[48,54]},{\"text\":\"Taiwan\",\"indices\":[55,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oeQZZFnJhE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Investingcom\\/status\\/1554478350114201601\",\"display_url\":\"twitter.com\\/Investingcom\\/s\\u2026\",\"indices\":[63,86]}]},\"1578\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[10,17]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554479779327479810,\"id_str\":\"1554479779327479810\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"url\":\"https:\\/\\/t.co\\/Isv0fNWq2f\",\"display_url\":\"pic.twitter.com\\/Isv0fNWq2f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dynamicfxtrader\\/status\\/1554479786671702017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1744,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1579\":{\"hashtags\":[{\"text\":\"makana\",\"indices\":[35,42]},{\"text\":\"Taiwan\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554478188125995008,\"id_str\":\"1554478188125995008\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478188125995008\\/pu\\/img\\/NQi9YnR8vLD5Qrt9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478188125995008\\/pu\\/img\\/NQi9YnR8vLD5Qrt9.jpg\",\"url\":\"https:\\/\\/t.co\\/qbHYMgsMlY\",\"display_url\":\"pic.twitter.com\\/qbHYMgsMlY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makana_Media\\/status\\/1554479761736572929\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":854,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":854,\"resize\":\"fit\"}}}]},\"1580\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[72,79]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[80,98]},{\"text\":\"China\",\"indices\":[99,105]},{\"text\":\"pelositaiwan\",\"indices\":[106,119]},{\"text\":\"Taiwan\",\"indices\":[120,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554479222600925185,\"id_str\":\"1554479222600925185\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479222600925185\\/pu\\/img\\/w7sRD-kHg-VNkQpT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479222600925185\\/pu\\/img\\/w7sRD-kHg-VNkQpT.jpg\",\"url\":\"https:\\/\\/t.co\\/OEd4FpVh4u\",\"display_url\":\"pic.twitter.com\\/OEd4FpVh4u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554479329631178753\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1581\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[41,46]},{\"text\":\"BIGWIZ\",\"indices\":[47,54]},{\"text\":\"Wizkidfc\",\"indices\":[55,64]},{\"text\":\"BBNajia\",\"indices\":[65,73]},{\"text\":\"BBNaijaSeason7\",\"indices\":[74,89]},{\"text\":\"helicopter\",\"indices\":[90,101]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554479004706635777,\"id_str\":\"1554479004706635777\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479004706635777\\/pu\\/img\\/p_0Mf60NC9W3Qf_h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479004706635777\\/pu\\/img\\/p_0Mf60NC9W3Qf_h.jpg\",\"url\":\"https:\\/\\/t.co\\/9IBK8acoor\",\"display_url\":\"pic.twitter.com\\/9IBK8acoor\",\"expanded_url\":\"https:\\/\\/twitter.com\\/joephyszn\\/status\\/1554479079415496704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"1582\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[14,21]},{\"text\":\"Pelosi\",\"indices\":[42,49]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[50,68]},{\"text\":\"China\",\"indices\":[69,75]},{\"text\":\"pelositaiwan\",\"indices\":[76,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554478860850569217,\"id_str\":\"1554478860850569217\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478860850569217\\/pu\\/img\\/sMqM4dtyzsOovZ0y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478860850569217\\/pu\\/img\\/sMqM4dtyzsOovZ0y.jpg\",\"url\":\"https:\\/\\/t.co\\/tC6L7Hm4gB\",\"display_url\":\"pic.twitter.com\\/tC6L7Hm4gB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554478933676277760\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1583\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554478789043920909,\"id_str\":\"1554478789043920909\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKeOP_XoA0kBrf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKeOP_XoA0kBrf.jpg\",\"url\":\"https:\\/\\/t.co\\/oIpu4sjFkh\",\"display_url\":\"pic.twitter.com\\/oIpu4sjFkh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olasekoni\\/status\\/1554478802495066112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"}}}]},\"1584\":{\"hashtags\":[{\"text\":\"btc\",\"indices\":[83,87]},{\"text\":\"cryptocurrencies\",\"indices\":[88,105]},{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"StopSellingPi\",\"indices\":[176,190]},{\"text\":\"Pelosi\",\"indices\":[235,242]}],\"symbols\":[{\"text\":\"Waves\",\"indices\":[0,6]}],\"user_mentions\":[],\"urls\":[]},\"1585\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1586\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[64,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554478361531109376,\"id_str\":\"1554478361531109376\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKd1XYX0AA5V7G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKd1XYX0AA5V7G.jpg\",\"url\":\"https:\\/\\/t.co\\/MJEePYwZOk\",\"display_url\":\"pic.twitter.com\\/MJEePYwZOk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olasekoni\\/status\\/1554478363896684544\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":832,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":832,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":471,\"resize\":\"fit\"}}}]},\"1587\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[19,26]},{\"text\":\"SPAR19\",\"indices\":[27,34]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554478134275211265,\"id_str\":\"1554478134275211265\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKdoIyWAAE4wSv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKdoIyWAAE4wSv.jpg\",\"url\":\"https:\\/\\/t.co\\/Xa2yZdhaL4\",\"display_url\":\"pic.twitter.com\\/Xa2yZdhaL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndStrats\\/status\\/1554478223240601602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1680,\"h\":1082,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":773,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":438,\"resize\":\"fit\"}}}]},\"1588\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"China\",\"indices\":[116,122]},{\"text\":\"JacksonWang\",\"indices\":[123,135]},{\"text\":\"dontpayuk\",\"indices\":[136,146]},{\"text\":\"ISAC2022\",\"indices\":[147,156]},{\"text\":\"ArchieBattersbee\",\"indices\":[157,174]},{\"text\":\"ux\",\"indices\":[175,178]},{\"text\":\"uxdesign\",\"indices\":[179,188]},{\"text\":\"uiux\",\"indices\":[189,194]},{\"text\":\"uidesign\",\"indices\":[195,204]},{\"text\":\"uiuxdesign\",\"indices\":[205,216]},{\"text\":\"uidesigner\",\"indices\":[217,228]},{\"text\":\"uxtwitter\",\"indices\":[229,239]},{\"text\":\"techtwitter\",\"indices\":[240,252]},{\"text\":\"fintech\",\"indices\":[253,261]},{\"text\":\"NTBTS\",\"indices\":[262,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554478110531371010,\"id_str\":\"1554478110531371010\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKdmwVXwAI3aYH.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKdmwVXwAI3aYH.png\",\"url\":\"https:\\/\\/t.co\\/tPwDLc2kyd\",\"display_url\":\"pic.twitter.com\\/tPwDLc2kyd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UcheJS\\/status\\/1554478124385148928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":682,\"h\":444,\"resize\":\"fit\"},\"medium\":{\"w\":682,\"h\":444,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":443,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1589\":{\"hashtags\":[{\"text\":\"JacksonWang\",\"indices\":[222,234]},{\"text\":\"dontpayuk\",\"indices\":[235,245]},{\"text\":\"China\",\"indices\":[246,252]},{\"text\":\"Pelosi\",\"indices\":[253,260]},{\"text\":\"HelicopterCrash\",\"indices\":[261,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1590\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[55,73]},{\"text\":\"China\",\"indices\":[74,80]},{\"text\":\"pelositaiwan\",\"indices\":[81,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554478053564497923,\"id_str\":\"1554478053564497923\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478053564497923\\/pu\\/img\\/ZTCzgQqmzq65sRpX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478053564497923\\/pu\\/img\\/ZTCzgQqmzq65sRpX.jpg\",\"url\":\"https:\\/\\/t.co\\/3S2l2KEDQB\",\"display_url\":\"pic.twitter.com\\/3S2l2KEDQB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554478083818008581\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":515,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":950,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":950,\"resize\":\"fit\"}}}]},\"1591\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1592\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"Pelosi\",\"indices\":[8,15]},{\"text\":\"helicopter\",\"indices\":[16,27]},{\"text\":\"China\",\"indices\":[28,34]},{\"text\":\"JacksonWang\",\"indices\":[35,47]},{\"text\":\"WhatsApp\",\"indices\":[132,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554477677729517569,\"id_str\":\"1554477677729517569\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554477677729517569\\/pu\\/img\\/v2NjkElkf6fYr48B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554477677729517569\\/pu\\/img\\/v2NjkElkf6fYr48B.jpg\",\"url\":\"https:\\/\\/t.co\\/jKZ6KXMSQr\",\"display_url\":\"pic.twitter.com\\/jKZ6KXMSQr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554477740459544579\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":714,\"h\":1278,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"}}}]},\"1593\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"FixTheCountry\",\"indices\":[64,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554477677456809985,\"id_str\":\"1554477677456809985\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKdNjAWYAEcAdp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKdNjAWYAEcAdp.jpg\",\"url\":\"https:\\/\\/t.co\\/hr2hYJMYEZ\",\"display_url\":\"pic.twitter.com\\/hr2hYJMYEZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/honeysucklegh\\/status\\/1554477695626612742\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1594\":{\"hashtags\":[{\"text\":\"heran\",\"indices\":[71,77]},{\"text\":\"dontpayuk\",\"indices\":[78,88]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"China\",\"indices\":[105,111]},{\"text\":\"JacksonWang\",\"indices\":[112,124]},{\"text\":\"NancyPelosi\",\"indices\":[125,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1595\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[25,32]},{\"text\":\"SPAR19\",\"indices\":[33,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554477137574432771,\"id_str\":\"1554477137574432771\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKcuHyXEAM44uY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKcuHyXEAM44uY.jpg\",\"url\":\"https:\\/\\/t.co\\/p09gbZugsh\",\"display_url\":\"pic.twitter.com\\/p09gbZugsh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndStrats\\/status\\/1554477248228507648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":545,\"resize\":\"fit\"},\"large\":{\"w\":1512,\"h\":1212,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":962,\"resize\":\"fit\"}}}]},\"1596\":{\"hashtags\":[{\"text\":\"Hermes\",\"indices\":[67,74]},{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"JacksonWang\",\"indices\":[98,110]},{\"text\":\"dontpayuk\",\"indices\":[111,121]},{\"text\":\"helicopter\",\"indices\":[122,133]},{\"text\":\"amaka\",\"indices\":[134,140]},{\"text\":\"phyna\",\"indices\":[141,147]},{\"text\":\"bbnaija\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1597\":{\"hashtags\":[{\"text\":\"RealEstate\",\"indices\":[201,212]},{\"text\":\"Pelosi\",\"indices\":[213,220]},{\"text\":\"Taiwan\",\"indices\":[221,228]},{\"text\":\"helicopter\",\"indices\":[229,240]},{\"text\":\"bachelorette\",\"indices\":[241,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1598\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[55,73]},{\"text\":\"China\",\"indices\":[74,80]},{\"text\":\"pelositaiwan\",\"indices\":[81,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1599\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[61,68]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[69,87]},{\"text\":\"China\",\"indices\":[88,94]},{\"text\":\"pelositaiwan\",\"indices\":[95,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554476515488038915,\"id_str\":\"1554476515488038915\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476515488038915\\/pu\\/img\\/0FetRwU8zGvrs0L8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476515488038915\\/pu\\/img\\/0FetRwU8zGvrs0L8.jpg\",\"url\":\"https:\\/\\/t.co\\/RYMTUBWuxH\",\"display_url\":\"pic.twitter.com\\/RYMTUBWuxH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554476578226438144\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":413,\"resize\":\"fit\"}}}]},\"1600\":{\"hashtags\":[{\"text\":\"Wike\",\"indices\":[77,82]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"StopSellingPi\",\"indices\":[144,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dszJmjOCPJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lazarusfemi2\\/status\\/1554077777573609472\",\"display_url\":\"twitter.com\\/lazarusfemi2\\/s\\u2026\",\"indices\":[159,182]}]},\"1601\":{\"hashtags\":[{\"text\":\"60secsmaritimechallenge\",\"indices\":[66,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Taiwan\",\"indices\":[98,105]},{\"text\":\"Pelosi\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nimasaofficial\",\"name\":\"NIGERIAN MARITIME ADMNISTRATION & SAFETY AGENCY\",\"id\":2732014405,\"id_str\":\"2732014405\",\"indices\":[50,65]}],\"urls\":[],\"media\":[{\"id\":1554476238479171589,\"id_str\":\"1554476238479171589\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476238479171589\\/pu\\/img\\/MYKlm0yR8yTLGXlM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476238479171589\\/pu\\/img\\/MYKlm0yR8yTLGXlM.jpg\",\"url\":\"https:\\/\\/t.co\\/lZDNKHvZSl\",\"display_url\":\"pic.twitter.com\\/lZDNKHvZSl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oguntunnbi\\/status\\/1554476483275624450\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1602\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[96,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"JacksonWang\",\"indices\":[119,131]},{\"text\":\"NancyPelosi\",\"indices\":[132,144]},{\"text\":\"dontpayuk\",\"indices\":[145,155]},{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"PremierLeague\",\"indices\":[168,182]},{\"text\":\"FixTheCountry\",\"indices\":[183,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1603\":{\"hashtags\":[{\"text\":\"tinubu\",\"indices\":[82,89]},{\"text\":\"KANO\",\"indices\":[90,95]},{\"text\":\"Atiku\",\"indices\":[96,102]},{\"text\":\"Pelosi\",\"indices\":[103,110]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"China\",\"indices\":[120,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554475762861973504,\"id_str\":\"1554475762861973504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKbeGlXoAA9UJH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKbeGlXoAA9UJH.jpg\",\"url\":\"https:\\/\\/t.co\\/uh5jN63Bim\",\"display_url\":\"pic.twitter.com\\/uh5jN63Bim\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554475770491330564\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":443,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":443,\"h\":492,\"resize\":\"fit\"},\"medium\":{\"w\":443,\"h\":492,\"resize\":\"fit\"}}}]},\"1604\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[106,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"pelositaiwan\",\"indices\":[132,145]},{\"text\":\"Taiwan\",\"indices\":[146,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1605\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[152,164]},{\"text\":\"Taiwan\",\"indices\":[165,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554475083061665792,\"id_str\":\"1554475083061665792\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"url\":\"https:\\/\\/t.co\\/xIXhJMAMYn\",\"display_url\":\"pic.twitter.com\\/xIXhJMAMYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SayNoToRACISMW1\\/status\\/1554475085347655681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"small\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"large\":{\"w\":566,\"h\":317,\"resize\":\"fit\"}}}]},\"1606\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"China\",\"indices\":[187,193]},{\"text\":\"ChinaJoe\",\"indices\":[194,203]},{\"text\":\"Pelosi\",\"indices\":[204,211]},{\"text\":\"5August6\",\"indices\":[247,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1607\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[38,45]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[46,64]},{\"text\":\"China\",\"indices\":[65,71]},{\"text\":\"pelositaiwan\",\"indices\":[72,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554474907387699207,\"id_str\":\"1554474907387699207\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474907387699207\\/pu\\/img\\/0HbCfBTfvRHKGkgs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474907387699207\\/pu\\/img\\/0HbCfBTfvRHKGkgs.jpg\",\"url\":\"https:\\/\\/t.co\\/Y0yBAlAgD7\",\"display_url\":\"pic.twitter.com\\/Y0yBAlAgD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554474945828519936\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}}}]},\"1608\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"Pelosi\",\"indices\":[175,182]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1609\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[70,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554474784339251202,\"id_str\":\"1554474784339251202\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKalJTX0AIwU5M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKalJTX0AIwU5M.jpg\",\"url\":\"https:\\/\\/t.co\\/3e7pX6Irkp\",\"display_url\":\"pic.twitter.com\\/3e7pX6Irkp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamadeflow\\/status\\/1554474792052555777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"1610\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[0,3]},{\"text\":\"Pelosi\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554474526855122944,\"id_str\":\"1554474526855122944\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKaWKGX0AAGuIY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKaWKGX0AAGuIY.jpg\",\"url\":\"https:\\/\\/t.co\\/CwJqnO4wFs\",\"display_url\":\"pic.twitter.com\\/CwJqnO4wFs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olasekoni\\/status\\/1554474529778548737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":425,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":425,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":425,\"h\":680,\"resize\":\"fit\"}}}]},\"1611\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[192,198]},{\"text\":\"Wike\",\"indices\":[199,204]},{\"text\":\"China\",\"indices\":[205,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[220,245]},{\"text\":\"BBNaija\",\"indices\":[246,254]},{\"text\":\"Tinubu\",\"indices\":[255,262]},{\"text\":\"Reno\",\"indices\":[263,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1612\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"China\",\"indices\":[203,209]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1613\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[105,123]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[124,141]},{\"text\":\"China\",\"indices\":[142,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554474240724041730,\"id_str\":\"1554474240724041730\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474240724041730\\/pu\\/img\\/YqoZuU24C8zG3FvW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474240724041730\\/pu\\/img\\/YqoZuU24C8zG3FvW.jpg\",\"url\":\"https:\\/\\/t.co\\/5enZSQOo5j\",\"display_url\":\"pic.twitter.com\\/5enZSQOo5j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554474287431823362\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1614\":{\"hashtags\":[{\"text\":\"Zhangzhou\",\"indices\":[97,107]},{\"text\":\"Fujian\",\"indices\":[179,186]},{\"text\":\"Pelosi\",\"indices\":[189,196]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[197,215]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[216,233]},{\"text\":\"China\",\"indices\":[234,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1615\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[0,3]},{\"text\":\"Pelosi\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1616\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1617\":{\"hashtags\":[{\"text\":\"Painting\",\"indices\":[19,28]},{\"text\":\"artwork\\u0e2d\\u0e0b\\u0e17\\u0e0b\",\"indices\":[29,41]},{\"text\":\"originalart\",\"indices\":[42,54]},{\"text\":\"abstractart\",\"indices\":[55,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[76,94]},{\"text\":\"JacksonWang\",\"indices\":[95,107]},{\"text\":\"BulletTrainMovie\",\"indices\":[108,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554472994759663616,\"id_str\":\"1554472994759663616\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKY8-mWYAAaLxc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKY8-mWYAAaLxc.jpg\",\"url\":\"https:\\/\\/t.co\\/RuTQYWKsr5\",\"display_url\":\"pic.twitter.com\\/RuTQYWKsr5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opheliathearti6\\/status\\/1554473008533757957\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}}}]},\"1618\":{\"hashtags\":[{\"text\":\"BREAKING\",\"indices\":[0,9]},{\"text\":\"China\",\"indices\":[37,43]},{\"text\":\"NancyPelosi\",\"indices\":[63,75]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1619\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[118,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"KANO\",\"indices\":[141,146]},{\"text\":\"Lekki\",\"indices\":[147,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554472310782005248,\"id_str\":\"1554472310782005248\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554472310782005248\\/pu\\/img\\/c8T-zOa-G2SfUV8x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554472310782005248\\/pu\\/img\\/c8T-zOa-G2SfUV8x.jpg\",\"url\":\"https:\\/\\/t.co\\/5XoffHWNjo\",\"display_url\":\"pic.twitter.com\\/5XoffHWNjo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554472637530869763\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":320,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":320,\"h\":240,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":240,\"resize\":\"fit\"}}}]},\"1620\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[155,162]},{\"text\":\"Wike\",\"indices\":[163,168]},{\"text\":\"peterobi\",\"indices\":[169,178]},{\"text\":\"atiku\",\"indices\":[179,185]},{\"text\":\"Reno\",\"indices\":[186,191]},{\"text\":\"gistlovers\",\"indices\":[192,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1621\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[258,265]},{\"text\":\"Taiwan\",\"indices\":[266,273]},{\"text\":\"helicopter\",\"indices\":[274,285]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1622\":{\"hashtags\":[{\"text\":\"osupa\",\"indices\":[164,170]},{\"text\":\"asaba\",\"indices\":[171,177]},{\"text\":\"BRTlane\",\"indices\":[178,186]},{\"text\":\"saheedbalogun\",\"indices\":[187,201]},{\"text\":\"Pelosi\",\"indices\":[202,209]},{\"text\":\"yoruba\",\"indices\":[210,217]},{\"text\":\"petlover\",\"indices\":[218,227]},{\"text\":\"eskimo\",\"indices\":[228,235]},{\"text\":\"businessProposal\",\"indices\":[236,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554471920887889921,\"id_str\":\"1554471920887889921\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKX-eHXgAE0rWl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKX-eHXgAE0rWl.jpg\",\"url\":\"https:\\/\\/t.co\\/FCi2kXTd5N\",\"display_url\":\"pic.twitter.com\\/FCi2kXTd5N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OlaAkanni7\\/status\\/1554471940013887494\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1623\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"WhatsApp\",\"indices\":[155,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554471515743207428,\"id_str\":\"1554471515743207428\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471515743207428\\/pu\\/img\\/TtcakyimR4tijC0o.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471515743207428\\/pu\\/img\\/TtcakyimR4tijC0o.jpg\",\"url\":\"https:\\/\\/t.co\\/HM2GuGYaIO\",\"display_url\":\"pic.twitter.com\\/HM2GuGYaIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554471561867952128\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1624\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[163,188]},{\"text\":\"Wike\",\"indices\":[216,221]},{\"text\":\"Taiwan\",\"indices\":[222,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554471389511536640,\"id_str\":\"1554471389511536640\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"url\":\"https:\\/\\/t.co\\/wHFRX1347o\",\"display_url\":\"pic.twitter.com\\/wHFRX1347o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Valiantjoe1\\/status\\/1554471394880225281\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1625\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[0,8]},{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"georgegalloway\",\"name\":\"George Galloway\",\"id\":15484198,\"id_str\":\"15484198\",\"indices\":[51,66]}],\"urls\":[]},\"1626\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554471160594710531,\"id_str\":\"1554471160594710531\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471160594710531\\/pu\\/img\\/gHxyVyPigur2r35t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471160594710531\\/pu\\/img\\/gHxyVyPigur2r35t.jpg\",\"url\":\"https:\\/\\/t.co\\/xC7HYy295A\",\"display_url\":\"pic.twitter.com\\/xC7HYy295A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554471218316705796\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1627\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[72,90]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[91,108]},{\"text\":\"China\",\"indices\":[109,115]},{\"text\":\"USA\",\"indices\":[116,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554471055900954631,\"id_str\":\"1554471055900954631\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471055900954631\\/pu\\/img\\/k8nXm9R3CBCsIrCF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471055900954631\\/pu\\/img\\/k8nXm9R3CBCsIrCF.jpg\",\"url\":\"https:\\/\\/t.co\\/ALr1WjP5bV\",\"display_url\":\"pic.twitter.com\\/ALr1WjP5bV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554471104647151617\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":576,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":576,\"resize\":\"fit\"}}}]},\"1628\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cVvIG9MumQ\",\"expanded_url\":\"https:\\/\\/citizenkwame.com\\/how-to-turn-off-mtn-contact-xchange-1-and-mtn-msgxpress1-annoying-popups\\/\",\"display_url\":\"citizenkwame.com\\/how-to-turn-of\\u2026\",\"indices\":[192,215]}]},\"1629\":{\"hashtags\":[{\"text\":\"tinubu\",\"indices\":[173,180]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554470879916179458,\"id_str\":\"1554470879916179458\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKXB4MXwAIMS99.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKXB4MXwAIMS99.jpg\",\"url\":\"https:\\/\\/t.co\\/kmIGqN2bF9\",\"display_url\":\"pic.twitter.com\\/kmIGqN2bF9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/prudenceovlagos\\/status\\/1554470884785721348\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":320,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":320,\"resize\":\"fit\"}}}]},\"1630\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"Pelosi\",\"indices\":[41,48]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[49,67]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[68,85]},{\"text\":\"China\",\"indices\":[86,92]},{\"text\":\"USA\",\"indices\":[93,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554470215278534656,\"id_str\":\"1554470215278534656\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554470215278534656\\/pu\\/img\\/T9PjKu6JmvGt_33_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554470215278534656\\/pu\\/img\\/T9PjKu6JmvGt_33_.jpg\",\"url\":\"https:\\/\\/t.co\\/90AXSsVvyl\",\"display_url\":\"pic.twitter.com\\/90AXSsVvyl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554470286439124993\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":326,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":576,\"resize\":\"fit\"}}}]},\"1631\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[63,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554469977557794817,\"id_str\":\"1554469977557794817\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKWNWpXgAETild.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKWNWpXgAETild.jpg\",\"url\":\"https:\\/\\/t.co\\/JEoJMFIx81\",\"display_url\":\"pic.twitter.com\\/JEoJMFIx81\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dnaomi876\\/status\\/1554469984067362817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1632\":{\"hashtags\":[{\"text\":\"PremierLeague\",\"indices\":[95,109]},{\"text\":\"Transfers\",\"indices\":[110,120]},{\"text\":\"FPL\",\"indices\":[121,125]},{\"text\":\"Pelosi\",\"indices\":[126,133]},{\"text\":\"LeagueOfLegends\",\"indices\":[134,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XYVunteeTD\",\"expanded_url\":\"https:\\/\\/fantasyfootballmanager.app\\/join\\/088kv9\",\"display_url\":\"fantasyfootballmanager.app\\/join\\/088kv9\",\"indices\":[54,77]}],\"media\":[{\"id\":1554469912105598977,\"id_str\":\"1554469912105598977\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKWJi0WQAEhxQ6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKWJi0WQAEhxQ6.jpg\",\"url\":\"https:\\/\\/t.co\\/fDoav6kCCU\",\"display_url\":\"pic.twitter.com\\/fDoav6kCCU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PraiseMACHINE02\\/status\\/1554469920737476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":919,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":538,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":305,\"h\":680,\"resize\":\"fit\"}}}]},\"1633\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[166,173]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[174,192]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[193,210]},{\"text\":\"China\",\"indices\":[211,217]},{\"text\":\"USA\",\"indices\":[218,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1634\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1635\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[107,115]},{\"text\":\"BBNaija7\",\"indices\":[116,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554469476212645888,\"id_str\":\"1554469476212645888\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469476212645888\\/pu\\/img\\/b2z62oEemvVeAmDH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469476212645888\\/pu\\/img\\/b2z62oEemvVeAmDH.jpg\",\"url\":\"https:\\/\\/t.co\\/QHFrOjG3Io\",\"display_url\":\"pic.twitter.com\\/QHFrOjG3Io\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SundayBabajid10\\/status\\/1554469545678618624\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1636\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[74,81]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[82,100]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[101,118]},{\"text\":\"China\",\"indices\":[119,125]},{\"text\":\"USA\",\"indices\":[126,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554469314270736384,\"id_str\":\"1554469314270736384\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469314270736384\\/pu\\/img\\/YDffBzLhd7tANLwE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469314270736384\\/pu\\/img\\/YDffBzLhd7tANLwE.jpg\",\"url\":\"https:\\/\\/t.co\\/8yellfvyeC\",\"display_url\":\"pic.twitter.com\\/8yellfvyeC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554469468939911171\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1637\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"Wike\",\"indices\":[116,121]},{\"text\":\"cubana\",\"indices\":[122,129]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[131,156]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Meta_force_TEC\",\"name\":\"Meta Force Technical Support\",\"id\":1530299665828257792,\"id_str\":\"1530299665828257792\",\"indices\":[67,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SFtzboAJQc\",\"expanded_url\":\"https:\\/\\/meta-force.space\\/r\\/FMr4nbp8Xg\",\"display_url\":\"meta-force.space\\/r\\/FMr4nbp8Xg\",\"indices\":[84,107]}],\"media\":[{\"id\":1554469413599977472,\"id_str\":\"1554469413599977472\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"url\":\"https:\\/\\/t.co\\/U2R14Y4sei\",\"display_url\":\"pic.twitter.com\\/U2R14Y4sei\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itodougo\\/status\\/1554469421036576769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"medium\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"}}}]},\"1638\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"JacksonWang\",\"indices\":[84,96]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[97,115]},{\"text\":\"Chinese\",\"indices\":[116,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[132,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ShSAfHwwXD\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/chinese-warplanes-fly-close-to-taiwan-ahead-of-nancy-pelosis-visit\\/\",\"display_url\":\"iexclusivenews.com.ng\\/chinese-warpla\\u2026\",\"indices\":[151,174]}]},\"1639\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Pelosi\",\"indices\":[112,119]},{\"text\":\"Taipei\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[178,201]}]},\"1640\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[253,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554468330450436097,\"id_str\":\"1554468330450436097\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKUtesXwAEFtyh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKUtesXwAEFtyh.jpg\",\"url\":\"https:\\/\\/t.co\\/2pZNcRvJbe\",\"display_url\":\"pic.twitter.com\\/2pZNcRvJbe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Senatorisiaq\\/status\\/1554468337685512193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1125,\"h\":1263,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1069,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":606,\"h\":680,\"resize\":\"fit\"}}}]},\"1641\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[107,114]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[115,133]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[134,151]},{\"text\":\"China\",\"indices\":[152,158]},{\"text\":\"USA\",\"indices\":[159,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554468096131608577,\"id_str\":\"1554468096131608577\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554468096131608577\\/pu\\/img\\/XmYSGJJuMZB-B6J5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554468096131608577\\/pu\\/img\\/XmYSGJJuMZB-B6J5.jpg\",\"url\":\"https:\\/\\/t.co\\/E82iDiEi2O\",\"display_url\":\"pic.twitter.com\\/E82iDiEi2O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554468130847879169\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}}}]},\"1642\":{\"hashtags\":[{\"text\":\"retweetplease\",\"indices\":[76,90]},{\"text\":\"GospelEmpireGh\",\"indices\":[191,206]},{\"text\":\"StrictlyGospel\",\"indices\":[207,222]},{\"text\":\"Love\",\"indices\":[223,228]},{\"text\":\"inspirational\",\"indices\":[229,243]},{\"text\":\"compliment\",\"indices\":[244,255]},{\"text\":\"JacksonWang\",\"indices\":[256,268]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[127,142]}],\"urls\":[],\"media\":[{\"id\":1554467830392823808,\"id_str\":\"1554467830392823808\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467830392823808\\/pu\\/img\\/AVsJwBqD66DzYSip.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467830392823808\\/pu\\/img\\/AVsJwBqD66DzYSip.jpg\",\"url\":\"https:\\/\\/t.co\\/cIenhmGeCX\",\"display_url\":\"pic.twitter.com\\/cIenhmGeCX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554467930699603970\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1643\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[123,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[99,122]}]},\"1644\":{\"hashtags\":[{\"text\":\"NewMusicAlert\",\"indices\":[50,64]},{\"text\":\"melodiesformama\",\"indices\":[66,82]},{\"text\":\"wegtexentertainment\",\"indices\":[83,103]},{\"text\":\"waltexmusic\",\"indices\":[104,116]},{\"text\":\"Pelosi\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Chillyway\",\"name\":\"ChillyWay \\ud83d\\udc9c\\ud83d\\udda4\",\"id\":877910448,\"id_str\":\"877910448\",\"indices\":[19,29]},{\"screen_name\":\"superfm933\",\"name\":\"Superfmph\",\"id\":1484150022614695938,\"id_str\":\"1484150022614695938\",\"indices\":[34,45]}],\"urls\":[],\"media\":[{\"id\":1554467168103944195,\"id_str\":\"1554467168103944195\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467168103944195\\/pu\\/img\\/WXk8BdBgbsnkvJAN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467168103944195\\/pu\\/img\\/WXk8BdBgbsnkvJAN.jpg\",\"url\":\"https:\\/\\/t.co\\/PS6m6PbrNu\",\"display_url\":\"pic.twitter.com\\/PS6m6PbrNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ijeomambama\\/status\\/1554467209052930048\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"1645\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[105,123]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[124,141]},{\"text\":\"China\",\"indices\":[142,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554466414228307971,\"id_str\":\"1554466414228307971\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554466414228307971\\/pu\\/img\\/tZobzjy4vmzRkVUj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554466414228307971\\/pu\\/img\\/tZobzjy4vmzRkVUj.jpg\",\"url\":\"https:\\/\\/t.co\\/XX7MdNqzMM\",\"display_url\":\"pic.twitter.com\\/XX7MdNqzMM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554466482536718336\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1646\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"Pelosi\",\"indices\":[151,158]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[12,26]}],\"urls\":[]},\"1647\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[29,37]},{\"text\":\"Pelosi\",\"indices\":[38,45]},{\"text\":\"Trending\",\"indices\":[46,55]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554465870575030275,\"id_str\":\"1554465870575030275\",\"indices\":[56,79],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"url\":\"https:\\/\\/t.co\\/qSszhovah4\",\"display_url\":\"pic.twitter.com\\/qSszhovah4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bryteazy\\/status\\/1554466213534769152\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":1140,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1069,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":606,\"resize\":\"fit\"}}}]},\"1648\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[190,197]},{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"JacksonWang\",\"indices\":[206,218]},{\"text\":\"helicopter\",\"indices\":[219,230]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[231,249]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1649\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[36,43]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[52,70]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[71,88]},{\"text\":\"China\",\"indices\":[89,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554465564449738755,\"id_str\":\"1554465564449738755\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465564449738755\\/pu\\/img\\/seC_b6Lv5BHxYBGX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465564449738755\\/pu\\/img\\/seC_b6Lv5BHxYBGX.jpg\",\"url\":\"https:\\/\\/t.co\\/cUdPKXBg3e\",\"display_url\":\"pic.twitter.com\\/cUdPKXBg3e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554465726966419456\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"1650\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[176,183]},{\"text\":\"helicopter\",\"indices\":[184,195]},{\"text\":\"JacksonWang\",\"indices\":[196,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554465523370426370,\"id_str\":\"1554465523370426370\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"url\":\"https:\\/\\/t.co\\/ecNkeV31YO\",\"display_url\":\"pic.twitter.com\\/ecNkeV31YO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/medicare_in\\/status\\/1554465540617506818\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1414,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"}}}]},\"1651\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[99,106]},{\"text\":\"JacksonWang\",\"indices\":[107,119]},{\"text\":\"Death\",\"indices\":[120,126]},{\"text\":\"LiveArtXGlobal100\",\"indices\":[127,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554465162324738050,\"id_str\":\"1554465162324738050\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKR1EgWAAIzevD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKR1EgWAAIzevD.jpg\",\"url\":\"https:\\/\\/t.co\\/DB8Tnfp3dS\",\"display_url\":\"pic.twitter.com\\/DB8Tnfp3dS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pearlsammy5\\/status\\/1554465166091231233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}}}]},\"1652\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"BBNaija\",\"indices\":[47,55]},{\"text\":\"dontpayuk\",\"indices\":[56,66]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1653\":{\"hashtags\":[{\"text\":\"FixTheCountry\",\"indices\":[28,42]},{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"KNUST\",\"indices\":[51,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554464008060772354,\"id_str\":\"1554464008060772354\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554464008060772354\\/pu\\/img\\/nlsLqWJrirlllFDL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554464008060772354\\/pu\\/img\\/nlsLqWJrirlllFDL.jpg\",\"url\":\"https:\\/\\/t.co\\/lIO0je9V1J\",\"display_url\":\"pic.twitter.com\\/lIO0je9V1J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/inanakwasi\\/status\\/1554464354522828803\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":724,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":724,\"resize\":\"fit\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}}]},\"1654\":{\"hashtags\":[{\"text\":\"hermes\",\"indices\":[121,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GDyqNrtmTZ\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/02\\/heres-the-addictive-song-thats-currently-topping-charts-and-disturbing-tik-tok-carter-efe-machala-featuring-berri-tiga\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/02\\/her\\u2026\",\"indices\":[137,160]}]},\"1655\":{\"hashtags\":[{\"text\":\"beautiful\",\"indices\":[237,247]},{\"text\":\"Pelosi\",\"indices\":[248,255]},{\"text\":\"Taiwan\",\"indices\":[256,263]},{\"text\":\"ISAC2022\",\"indices\":[264,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cantubeauty\",\"name\":\"Cantu Beauty\",\"id\":739497433,\"id_str\":\"739497433\",\"indices\":[11,23]},{\"screen_name\":\"cantubeauty\",\"name\":\"Cantu Beauty\",\"id\":739497433,\"id_str\":\"739497433\",\"indices\":[104,116]},{\"screen_name\":\"NectarBeautyHub\",\"name\":\"NectarBeautyHub\",\"id\":3999803356,\"id_str\":\"3999803356\",\"indices\":[131,147]},{\"screen_name\":\"cantubeauty\",\"name\":\"Cantu Beauty\",\"id\":739497433,\"id_str\":\"739497433\",\"indices\":[172,184]}],\"urls\":[],\"media\":[{\"id\":1554463903660261376,\"id_str\":\"1554463903660261376\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQrznWQAAVHFZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQrznWQAAVHFZ.jpg\",\"url\":\"https:\\/\\/t.co\\/A4epmydzTR\",\"display_url\":\"pic.twitter.com\\/A4epmydzTR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554463907498139649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1656\":{\"hashtags\":[{\"text\":\"LekkiMassacre\",\"indices\":[59,73]},{\"text\":\"bbillkin\",\"indices\":[75,84]},{\"text\":\"Yediiklim\",\"indices\":[85,95]},{\"text\":\"ShowtimeAugust2Natin\",\"indices\":[97,118]},{\"text\":\"Pelosi\",\"indices\":[120,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554463340562464771,\"id_str\":\"1554463340562464771\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463340562464771\\/pu\\/img\\/AxayEwJgbNVXfc78.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463340562464771\\/pu\\/img\\/AxayEwJgbNVXfc78.jpg\",\"url\":\"https:\\/\\/t.co\\/fDJwE6jlg6\",\"display_url\":\"pic.twitter.com\\/fDJwE6jlg6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dannypete4\\/status\\/1554463462511853568\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1657\":{\"hashtags\":[{\"text\":\"EXTRACTION\",\"indices\":[163,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"bachelorette\",\"indices\":[183,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554463378256658432,\"id_str\":\"1554463378256658432\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"url\":\"https:\\/\\/t.co\\/EcL52eIPAV\",\"display_url\":\"pic.twitter.com\\/EcL52eIPAV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoviePlusx\\/status\\/1554463390118121475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":718,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":898,\"resize\":\"fit\"}}}]},\"1658\":{\"hashtags\":[{\"text\":\"mrbayo\",\"indices\":[29,36]},{\"text\":\"cometochelsea\",\"indices\":[37,51]},{\"text\":\"Taiwan\",\"indices\":[52,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554463350402285568,\"id_str\":\"1554463350402285568\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"url\":\"https:\\/\\/t.co\\/m6ECdRSDzU\",\"display_url\":\"pic.twitter.com\\/m6ECdRSDzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olisasegun1\\/status\\/1554463372409700353\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}}}]},\"1659\":{\"hashtags\":[{\"text\":\"taipei\",\"indices\":[38,45]},{\"text\":\"pelosi\",\"indices\":[46,53]},{\"text\":\"taiwan\",\"indices\":[54,61]},{\"text\":\"spar19\",\"indices\":[62,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554463155962642432,\"id_str\":\"1554463155962642432\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQASOWAAAmAUn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQASOWAAAmAUn.jpg\",\"url\":\"https:\\/\\/t.co\\/5wPCn0MdWL\",\"display_url\":\"pic.twitter.com\\/5wPCn0MdWL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554463159053950976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":404,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":428,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":428,\"resize\":\"fit\"}}}]},\"1660\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]},{\"text\":\"tuesdayvibe\",\"indices\":[23,35]},{\"text\":\"babygirl\",\"indices\":[36,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554462666688708608,\"id_str\":\"1554462666688708608\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"url\":\"https:\\/\\/t.co\\/cuyRJDGRbG\",\"display_url\":\"pic.twitter.com\\/cuyRJDGRbG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nickyB112\\/status\\/1554462671868674048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"1661\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"EndSARS\",\"indices\":[57,65]},{\"text\":\"BBNaija\",\"indices\":[66,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OVvXnKEVBx\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/02\\/sanwo-olu-mourns-the-death-of-aide-in-auto-crash\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/02\\/san\\u2026\",\"indices\":[76,99]}]},\"1662\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[117,135]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[136,153]},{\"text\":\"China\",\"indices\":[154,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554462016458596352,\"id_str\":\"1554462016458596352\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554462016458596352\\/pu\\/img\\/pslQeGPQj--ax4C0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554462016458596352\\/pu\\/img\\/pslQeGPQj--ax4C0.jpg\",\"url\":\"https:\\/\\/t.co\\/jf1POOysjy\",\"display_url\":\"pic.twitter.com\\/jf1POOysjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554462112042610688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1663\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"EndSARS\",\"indices\":[62,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oL78msct7H\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/02\\/hyundai-motor-and-kia-sign-research-agreement\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/02\\/hyu\\u2026\",\"indices\":[73,96]}]},\"1664\":{\"hashtags\":[{\"text\":\"5starchallange\",\"indices\":[48,63]},{\"text\":\"Pelosi\",\"indices\":[82,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"JacksonWang\",\"indices\":[98,110]},{\"text\":\"dontpayuk\",\"indices\":[111,121]},{\"text\":\"helicopter\",\"indices\":[122,133]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[134,152]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[153,179]},{\"text\":\"HelicopterCrash\",\"indices\":[180,196]},{\"text\":\"\\uc5d0\\uc774\\ud2f0\\uc988\",\"indices\":[197,202]},{\"text\":\"WatchOutForKaran\",\"indices\":[203,220]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[221,246]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[24,37]}],\"urls\":[],\"media\":[{\"id\":1554461471794413568,\"id_str\":\"1554461471794413568\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"url\":\"https:\\/\\/t.co\\/AEHJLCBgvR\",\"display_url\":\"pic.twitter.com\\/AEHJLCBgvR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/callmelemontee\\/status\\/1554461575834107905\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1665\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[90,96]},{\"text\":\"Pelosi\",\"indices\":[143,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[151,169]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[170,187]},{\"text\":\"China\",\"indices\":[188,194]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554461313346453504,\"id_str\":\"1554461313346453504\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461313346453504\\/pu\\/img\\/NjpYwQiL62Bw_J2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461313346453504\\/pu\\/img\\/NjpYwQiL62Bw_J2l.jpg\",\"url\":\"https:\\/\\/t.co\\/JSyjDFEg8f\",\"display_url\":\"pic.twitter.com\\/JSyjDFEg8f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554461394799837184\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1666\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[55,80]},{\"text\":\"PeterObi4President\",\"indices\":[81,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554461077555011584,\"id_str\":\"1554461077555011584\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"url\":\"https:\\/\\/t.co\\/YbG5YomfHO\",\"display_url\":\"pic.twitter.com\\/YbG5YomfHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sam_Deck\\/status\\/1554461094823034885\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":922,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"1667\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[99,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"BBNaija7\",\"indices\":[116,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thisisAQ\",\"name\":\"Gilbert Bani\",\"id\":198274234,\"id_str\":\"198274234\",\"indices\":[126,135]},{\"screen_name\":\"iam_kulgee\",\"name\":\"Onyema Courage \\ud83d\\udd0c\",\"id\":1474601059,\"id_str\":\"1474601059\",\"indices\":[136,147]},{\"screen_name\":\"PeediPicasso\",\"name\":\"Piriye Isokrari\",\"id\":134769387,\"id_str\":\"134769387\",\"indices\":[148,161]},{\"screen_name\":\"OfficialTQuest\",\"name\":\"#RS\\u00dfG\",\"id\":347907542,\"id_str\":\"347907542\",\"indices\":[162,177]},{\"screen_name\":\"olaoluwasanmi\",\"name\":\"Brand Engineer | k\\u00f3w\\u00f3 p\\u00e9\",\"id\":369557224,\"id_str\":\"369557224\",\"indices\":[178,192]},{\"screen_name\":\"KontentSensei\",\"name\":\"KontentSensei(Music business Enlightener)\",\"id\":1506199887452512256,\"id_str\":\"1506199887452512256\",\"indices\":[193,207]},{\"screen_name\":\"ExcelJoab\",\"name\":\"Y\\u00f8ung Excel \\u2614\\ufe0f\",\"id\":260843564,\"id_str\":\"260843564\",\"indices\":[208,218]}],\"urls\":[],\"media\":[{\"id\":1554460508446756864,\"id_str\":\"1554460508446756864\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554460508446756864\\/pu\\/img\\/V1tgZqmBdixQpWyR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554460508446756864\\/pu\\/img\\/V1tgZqmBdixQpWyR.jpg\",\"url\":\"https:\\/\\/t.co\\/Gu5OyC7hrY\",\"display_url\":\"pic.twitter.com\\/Gu5OyC7hrY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdajaMusic\\/status\\/1554460717239226369\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":886,\"h\":768,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":589,\"resize\":\"fit\"}}}]},\"1668\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]},{\"text\":\"EndSARS\",\"indices\":[86,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ziItCHJZCo\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/02\\/toyota-opens-the-largest-auto-parts-warehouse-in-southern-hemisphere\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/02\\/toy\\u2026\",\"indices\":[95,118]}]},\"1669\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[19,26]},{\"text\":\"explosives\",\"indices\":[90,101]},{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[112,130]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[131,148]},{\"text\":\"China\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554458533432786944,\"id_str\":\"1554458533432786944\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458533432786944\\/pu\\/img\\/3VX1Rafl249_Puql.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458533432786944\\/pu\\/img\\/3VX1Rafl249_Puql.jpg\",\"url\":\"https:\\/\\/t.co\\/rvGgV5usv9\",\"display_url\":\"pic.twitter.com\\/rvGgV5usv9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PhoenixTVHK\\/status\\/1554458601514729480\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"source_status_id\":1554458601514729480,\"source_status_id_str\":\"1554458601514729480\",\"source_user_id\":2269976876,\"source_user_id_str\":\"2269976876\"}]},\"1670\":{\"hashtags\":[{\"text\":\"EndAsuuStrikeNow\",\"indices\":[108,125]},{\"text\":\"helicopter\",\"indices\":[126,137]},{\"text\":\"Taiwan\",\"indices\":[138,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554459418854625281,\"id_str\":\"1554459418854625281\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554459418854625281\\/pu\\/img\\/qdzfa_ztUNFt1K8Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554459418854625281\\/pu\\/img\\/qdzfa_ztUNFt1K8Z.jpg\",\"url\":\"https:\\/\\/t.co\\/555A3TEfiX\",\"display_url\":\"pic.twitter.com\\/555A3TEfiX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BabatundeSoji\\/status\\/1554459460155867138\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":384,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":384,\"h\":640,\"resize\":\"fit\"}}}]},\"1671\":{\"hashtags\":[{\"text\":\"knowyourtruckparts\",\"indices\":[58,77]},{\"text\":\"ASUU\",\"indices\":[260,265]},{\"text\":\"Taiwan\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1672\":{\"hashtags\":[{\"text\":\"finance\",\"indices\":[204,212]},{\"text\":\"trainee\",\"indices\":[213,221]},{\"text\":\"jobs\",\"indices\":[222,227]},{\"text\":\"pelosi\",\"indices\":[228,235]},{\"text\":\"remotejobs\",\"indices\":[248,259]},{\"text\":\"consultingjobs\",\"indices\":[260,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1673\":{\"hashtags\":[{\"text\":\"asuu\",\"indices\":[98,103]},{\"text\":\"bigbrothernaija\",\"indices\":[104,120]},{\"text\":\"nancyisime\",\"indices\":[121,132]},{\"text\":\"funnytweet\",\"indices\":[133,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1674\":{\"hashtags\":[{\"text\":\"lekki\",\"indices\":[74,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/T3XrQLOzzC\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/02\\/policy-inconsistency-responsible-for-the-decline-of-nigeria-auto-industry\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/02\\/pol\\u2026\",\"indices\":[89,112]}]},\"1675\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[175,186]},{\"text\":\"Amaka\",\"indices\":[187,193]},{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"BambamSorry\",\"indices\":[202,214]},{\"text\":\"abstorm\",\"indices\":[215,223]},{\"text\":\"BORNPINK\",\"indices\":[224,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FZIyLtDhml\",\"expanded_url\":\"http:\\/\\/weletproperties.com.ng\",\"display_url\":\"weletproperties.com.ng\",\"indices\":[117,140]}],\"media\":[{\"id\":1554458620338774017,\"id_str\":\"1554458620338774017\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458620338774017\\/pu\\/img\\/AiYLeTlHLQjrlKvi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458620338774017\\/pu\\/img\\/AiYLeTlHLQjrlKvi.jpg\",\"url\":\"https:\\/\\/t.co\\/VNz2IEWjvZ\",\"display_url\":\"pic.twitter.com\\/VNz2IEWjvZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/properties_we\\/status\\/1554458899335479296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1676\":{\"hashtags\":[{\"text\":\"Pipayments\",\"indices\":[0,11]},{\"text\":\"PiNetworkUpdates\",\"indices\":[12,29]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[30,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"bbillkin\",\"indices\":[64,73]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[74,81]},{\"text\":\"\\u0627\\u064a\\u0645\\u0646_\\u0627\\u0644\\u0638\\u0648\\u0627\\u0647\\u0631\\u064a\",\"indices\":[82,96]},{\"text\":\"abstorm\",\"indices\":[97,105]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[106,124]},{\"text\":\"BORNPINK\",\"indices\":[125,134]},{\"text\":\"JacksonWang\",\"indices\":[135,147]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[148,174]},{\"text\":\"dontpayuk\",\"indices\":[175,185]},{\"text\":\"PiNetwork\",\"indices\":[203,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iaOC7U4J5l\",\"expanded_url\":\"https:\\/\\/minepi.com\\/dBaronX\",\"display_url\":\"minepi.com\\/dBaronX\",\"indices\":[223,246]},{\"url\":\"https:\\/\\/t.co\\/iz7ljgUhN3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aisha_PiNetwork\\/status\\/1554134332687646720\",\"display_url\":\"twitter.com\\/Aisha_PiNetwor\\u2026\",\"indices\":[247,270]}]},\"1677\":{\"hashtags\":[{\"text\":\"SPAR19\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"NANCY_PELOSI\",\"indices\":[31,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554458406907531264,\"id_str\":\"1554458406907531264\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKLr2nX0AAx9Uf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKLr2nX0AAx9Uf.jpg\",\"url\":\"https:\\/\\/t.co\\/v54NqP785O\",\"display_url\":\"pic.twitter.com\\/v54NqP785O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jen_mazzei\\/status\\/1554458420522123265\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1013,\"h\":1721,\"resize\":\"fit\"},\"medium\":{\"w\":706,\"h\":1200,\"resize\":\"fit\"}}}]},\"1678\":{\"hashtags\":[{\"text\":\"Pipayments\",\"indices\":[0,11]},{\"text\":\"PiNetworkUpdates\",\"indices\":[12,29]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[30,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"bbillkin\",\"indices\":[64,73]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[74,81]},{\"text\":\"\\u0627\\u064a\\u0645\\u0646_\\u0627\\u0644\\u0638\\u0648\\u0627\\u0647\\u0631\\u064a\",\"indices\":[82,96]},{\"text\":\"abstorm\",\"indices\":[97,105]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[106,124]},{\"text\":\"BORNPINK\",\"indices\":[125,134]},{\"text\":\"JacksonWang\",\"indices\":[135,147]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[148,174]},{\"text\":\"dontpayuk\",\"indices\":[175,185]},{\"text\":\"PiNetwork\",\"indices\":[203,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iaOC7U4J5l\",\"expanded_url\":\"https:\\/\\/minepi.com\\/dBaronX\",\"display_url\":\"minepi.com\\/dBaronX\",\"indices\":[223,246]},{\"url\":\"https:\\/\\/t.co\\/4CaSEBlStw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WoodyLightyearx\\/status\\/1554395650011316224\",\"display_url\":\"twitter.com\\/WoodyLightyear\\u2026\",\"indices\":[247,270]}]},\"1679\":{\"hashtags\":[{\"text\":\"jobsinAwka\",\"indices\":[106,117]},{\"text\":\"jobs\",\"indices\":[118,123]},{\"text\":\"pelosi\",\"indices\":[124,131]},{\"text\":\"salonmanager\",\"indices\":[144,157]},{\"text\":\"barberjob\",\"indices\":[158,168]},{\"text\":\"manicurist\",\"indices\":[169,180]},{\"text\":\"hairstylist\",\"indices\":[181,193]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Themastercutz\",\"name\":\"Mastercutz Barbershop & Lounge\",\"id\":1507611507894493184,\"id_str\":\"1507611507894493184\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554457464489349120,\"id_str\":\"1554457464489349120\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"url\":\"https:\\/\\/t.co\\/XIHsYklIxS\",\"display_url\":\"pic.twitter.com\\/XIHsYklIxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554457473960103938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":771,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":764,\"h\":771,\"resize\":\"fit\"}}}]},\"1680\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[27,34]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554457083604602882,\"id_str\":\"1554457083604602882\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKKe07XkAIBdAl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKKe07XkAIBdAl.jpg\",\"url\":\"https:\\/\\/t.co\\/bFQGFMSKln\",\"display_url\":\"pic.twitter.com\\/bFQGFMSKln\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554457091351486467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1636,\"h\":764,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":318,\"resize\":\"fit\"}}}]},\"1681\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[143,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[151,169]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[170,187]},{\"text\":\"China\",\"indices\":[188,194]},{\"text\":\"USA\",\"indices\":[195,199]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554456432028037120,\"id_str\":\"1554456432028037120\",\"indices\":[200,223],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554456432028037120\\/pu\\/img\\/EFZg0EwQVB9PiQWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554456432028037120\\/pu\\/img\\/EFZg0EwQVB9PiQWa.jpg\",\"url\":\"https:\\/\\/t.co\\/8UNYBypwYl\",\"display_url\":\"pic.twitter.com\\/8UNYBypwYl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554456457743339520\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1682\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[170,178]},{\"text\":\"BBNajia\",\"indices\":[179,187]},{\"text\":\"Taiwan\",\"indices\":[188,195]},{\"text\":\"Khalid\",\"indices\":[196,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554456166964629506,\"id_str\":\"1554456166964629506\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKJpeLXkAIzl0l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKJpeLXkAIzl0l.jpg\",\"url\":\"https:\\/\\/t.co\\/QgssnsWuOP\",\"display_url\":\"pic.twitter.com\\/QgssnsWuOP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsEghosa\\/status\\/1554456169065992194\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":455,\"h\":436,\"resize\":\"fit\"},\"large\":{\"w\":455,\"h\":436,\"resize\":\"fit\"},\"medium\":{\"w\":455,\"h\":436,\"resize\":\"fit\"}}}]},\"1683\":{\"hashtags\":[{\"text\":\"Malik\",\"indices\":[252,258]},{\"text\":\"Taiwan\",\"indices\":[259,266]},{\"text\":\"BBNaija\",\"indices\":[267,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554454951190986753,\"id_str\":\"1554454951190986753\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"url\":\"https:\\/\\/t.co\\/gh7OVsyT2j\",\"display_url\":\"pic.twitter.com\\/gh7OVsyT2j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/samuelobiora21\\/status\\/1554454961697820673\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1684\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[113,120]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[121,139]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[140,157]},{\"text\":\"China\",\"indices\":[158,164]},{\"text\":\"USA\",\"indices\":[165,169]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554454829166379008,\"id_str\":\"1554454829166379008\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454829166379008\\/pu\\/img\\/GIeYkf3o__V0EeQS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454829166379008\\/pu\\/img\\/GIeYkf3o__V0EeQS.jpg\",\"url\":\"https:\\/\\/t.co\\/Fung4wT3eh\",\"display_url\":\"pic.twitter.com\\/Fung4wT3eh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554454897709690881\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1685\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"JacksonWang\",\"indices\":[164,176]},{\"text\":\"dontpayuk\",\"indices\":[177,187]},{\"text\":\"helicoptero\",\"indices\":[188,200]},{\"text\":\"BambamSorry\",\"indices\":[201,213]},{\"text\":\"abstorm\",\"indices\":[214,222]},{\"text\":\"Trending\",\"indices\":[223,232]},{\"text\":\"TrendingNow\",\"indices\":[233,245]},{\"text\":\"government\",\"indices\":[246,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[22,31]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[50,56]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[61,75]},{\"screen_name\":\"Nigeria\",\"name\":\"Nigeria\",\"id\":740576456544256000,\"id_str\":\"740576456544256000\",\"indices\":[145,153]}],\"urls\":[]},\"1686\":{\"hashtags\":[{\"text\":\"Pitransactions\",\"indices\":[188,203]},{\"text\":\"PiNetwork\",\"indices\":[204,214]},{\"text\":\"Taiwan\",\"indices\":[215,222]},{\"text\":\"WEURO2022\",\"indices\":[223,233]},{\"text\":\"helicopter\",\"indices\":[234,245]},{\"text\":\"JacksonWang\",\"indices\":[246,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1687\":{\"hashtags\":[{\"text\":\"PuraVida\",\"indices\":[59,68]},{\"text\":\"Beach\",\"indices\":[69,75]},{\"text\":\"August\",\"indices\":[76,83]},{\"text\":\"Vacation\",\"indices\":[84,93]},{\"text\":\"Relax\",\"indices\":[94,100]},{\"text\":\"Fun\",\"indices\":[101,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Lagos\",\"indices\":[114,120]},{\"text\":\"Ilashe\",\"indices\":[121,128]},{\"text\":\"Relax\",\"indices\":[129,135]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1688\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[106,124]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[125,142]},{\"text\":\"China\",\"indices\":[143,149]},{\"text\":\"USA\",\"indices\":[150,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554454168085368832,\"id_str\":\"1554454168085368832\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454168085368832\\/pu\\/img\\/AKqDDlQjcWJaSNuJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454168085368832\\/pu\\/img\\/AKqDDlQjcWJaSNuJ.jpg\",\"url\":\"https:\\/\\/t.co\\/WqshEnyAxe\",\"display_url\":\"pic.twitter.com\\/WqshEnyAxe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554454222472904705\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":464,\"h\":848,\"resize\":\"fit\"},\"large\":{\"w\":464,\"h\":848,\"resize\":\"fit\"}}}]},\"1689\":{\"hashtags\":[{\"text\":\"SPAR19\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"ww3\",\"indices\":[91,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554454067900026880,\"id_str\":\"1554454067900026880\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKHvSjXkAAYDrp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKHvSjXkAAYDrp.jpg\",\"url\":\"https:\\/\\/t.co\\/eVRnNjG5tu\",\"display_url\":\"pic.twitter.com\\/eVRnNjG5tu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jen_mazzei\\/status\\/1554454089001582593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":663,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":375,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1101,\"h\":1994,\"resize\":\"fit\"}}}]},\"1690\":{\"hashtags\":[{\"text\":\"Naira\",\"indices\":[60,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"BBNajia\",\"indices\":[75,83]},{\"text\":\"BreakingNews\",\"indices\":[84,97]},{\"text\":\"BBNajiaS7\",\"indices\":[98,108]},{\"text\":\"JacksonWang\",\"indices\":[109,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O6bpvTJjJ6\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/breaking-naira-appreciate-n665-to-a-dollar-at-black-market\\/\",\"display_url\":\"iexclusivenews.com.ng\\/breaking-naira\\u2026\",\"indices\":[122,145]}]},\"1691\":{\"hashtags\":[{\"text\":\"mrbayo\",\"indices\":[69,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[86,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1692\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[150,158]},{\"text\":\"sheggz\",\"indices\":[159,166]},{\"text\":\"Modella\",\"indices\":[167,175]},{\"text\":\"Machala\",\"indices\":[176,184]},{\"text\":\"helicopter\",\"indices\":[185,196]},{\"text\":\"Wizkid\",\"indices\":[197,204]},{\"text\":\"Davido\",\"indices\":[205,212]},{\"text\":\"bbillkin\",\"indices\":[213,222]},{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[231,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SXks2o3IBY\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3SkY7x5\",\"display_url\":\"bit.ly\\/3SkY7x5\",\"indices\":[125,148]}],\"media\":[{\"id\":1554453674776313857,\"id_str\":\"1554453674776313857\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"url\":\"https:\\/\\/t.co\\/642t62L8pp\",\"display_url\":\"pic.twitter.com\\/642t62L8pp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554453682267250688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1693\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[40,47]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"China\",\"indices\":[56,62]},{\"text\":\"WW3\",\"indices\":[63,67]},{\"text\":\"war\",\"indices\":[68,72]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GdiIiDlDBD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerceraVenida\\/status\\/1550178616104853505\",\"display_url\":\"twitter.com\\/TerceraVenida\\/\\u2026\",\"indices\":[73,96]}]},\"1694\":{\"hashtags\":[{\"text\":\"communicationassistant\",\"indices\":[203,226]},{\"text\":\"media\",\"indices\":[227,233]},{\"text\":\"jobsinabuja\",\"indices\":[234,246]},{\"text\":\"jobs\",\"indices\":[247,252]},{\"text\":\"pelosi\",\"indices\":[253,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zKcnLsddKI\",\"expanded_url\":\"https:\\/\\/docs.google.com\\/forms\\/d\\/e\\/1FAIpQLSdWh3Gau0KKAV5M3vjdJyf3F5dGC1alufeSrhK-9oHQdHPP0w\\/viewform\",\"display_url\":\"docs.google.com\\/forms\\/d\\/e\\/1FAI\\u2026\",\"indices\":[178,201]}]},\"1695\":{\"hashtags\":[{\"text\":\"Xiamen\",\"indices\":[42,49]},{\"text\":\"Pelosi\",\"indices\":[73,80]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[81,99]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[100,117]},{\"text\":\"China\",\"indices\":[118,124]},{\"text\":\"USA\",\"indices\":[125,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554453106989346816,\"id_str\":\"1554453106989346816\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554453106989346816\\/pu\\/img\\/RDA-A08wv5dNqSFC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554453106989346816\\/pu\\/img\\/RDA-A08wv5dNqSFC.jpg\",\"url\":\"https:\\/\\/t.co\\/VwrhTGkrR6\",\"display_url\":\"pic.twitter.com\\/VwrhTGkrR6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554453161360125952\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}}}]},\"1696\":{\"hashtags\":[{\"text\":\"Cubana\",\"indices\":[54,61]},{\"text\":\"pogba\",\"indices\":[62,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"Don\",\"indices\":[77,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554453095563902976,\"id_str\":\"1554453095563902976\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"url\":\"https:\\/\\/t.co\\/CLoG9bLDcw\",\"display_url\":\"pic.twitter.com\\/CLoG9bLDcw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Joynerkardinal\\/status\\/1554453118456369153\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"}}}]},\"1697\":{\"hashtags\":[{\"text\":\"Wordle409\",\"indices\":[17,27]},{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"JacksonWang\",\"indices\":[36,48]},{\"text\":\"dontpayuk\",\"indices\":[49,59]},{\"text\":\"helicopter\",\"indices\":[60,71]},{\"text\":\"BambamSorry\",\"indices\":[72,84]},{\"text\":\"abstorm\",\"indices\":[85,93]},{\"text\":\"BORNPINK\",\"indices\":[94,103]},{\"text\":\"dontpayuk\",\"indices\":[104,114]},{\"text\":\"eimiko\",\"indices\":[115,122]},{\"text\":\"DestinyTheGame\",\"indices\":[123,138]},{\"text\":\"ComicCon\",\"indices\":[139,148]},{\"text\":\"ocyduncomedy\",\"indices\":[149,162]},{\"text\":\"XPLUS\",\"indices\":[163,169]},{\"text\":\"nigeriansinuk\",\"indices\":[170,184]},{\"text\":\"buharitormentor\",\"indices\":[185,201]},{\"text\":\"TinubuShettima2023\",\"indices\":[202,221]},{\"text\":\"Nigerian\",\"indices\":[222,231]},{\"text\":\"JacksonWang\",\"indices\":[232,244]},{\"text\":\"Comedystoreug\",\"indices\":[245,259]},{\"text\":\"smilingfriends\",\"indices\":[260,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554452964005265408,\"id_str\":\"1554452964005265408\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKGvCOWQAAk9Ei.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKGvCOWQAAk9Ei.jpg\",\"url\":\"https:\\/\\/t.co\\/iXfzrJihsp\",\"display_url\":\"pic.twitter.com\\/iXfzrJihsp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1554452967595692035\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":431,\"h\":396,\"resize\":\"fit\"},\"small\":{\"w\":431,\"h\":396,\"resize\":\"fit\"},\"medium\":{\"w\":431,\"h\":396,\"resize\":\"fit\"}}}]},\"1698\":{\"hashtags\":[{\"text\":\"SPAR19\",\"indices\":[0,7]},{\"text\":\"nancypelosi\",\"indices\":[79,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554452844748619777,\"id_str\":\"1554452844748619777\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKGoF9WQAEpICU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKGoF9WQAEpICU.jpg\",\"url\":\"https:\\/\\/t.co\\/SjxB4OMnnE\",\"display_url\":\"pic.twitter.com\\/SjxB4OMnnE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jen_mazzei\\/status\\/1554452864642289666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1045,\"h\":1775,\"resize\":\"fit\"},\"medium\":{\"w\":706,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":680,\"resize\":\"fit\"}}}]},\"1699\":{\"hashtags\":[{\"text\":\"Retweet\",\"indices\":[75,83]},{\"text\":\"GospelEmpireGh\",\"indices\":[209,224]},{\"text\":\"StrictlyGospel\",\"indices\":[225,240]},{\"text\":\"FamilyLove\",\"indices\":[241,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"helicopter\",\"indices\":[261,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[145,160]}],\"urls\":[],\"media\":[{\"id\":1554452719095660546,\"id_str\":\"1554452719095660546\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452719095660546\\/pu\\/img\\/IqELUzk0tJL0pKc-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452719095660546\\/pu\\/img\\/IqELUzk0tJL0pKc-.jpg\",\"url\":\"https:\\/\\/t.co\\/07SOC30rqV\",\"display_url\":\"pic.twitter.com\\/07SOC30rqV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554452801647935488\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1700\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"China\",\"indices\":[34,40]},{\"text\":\"Cubana\",\"indices\":[41,48]},{\"text\":\"ambode\",\"indices\":[49,56]},{\"text\":\"OKOWA\",\"indices\":[57,63]},{\"text\":\"Italy\",\"indices\":[64,70]},{\"text\":\"osuofia\",\"indices\":[71,79]},{\"text\":\"Wike\",\"indices\":[80,85]},{\"text\":\"Rufai\",\"indices\":[86,92]},{\"text\":\"Wizkid\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554452595485327368,\"id_str\":\"1554452595485327368\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKGZlYWQAg6iX3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKGZlYWQAg6iX3.jpg\",\"url\":\"https:\\/\\/t.co\\/AlKeH9FK4t\",\"display_url\":\"pic.twitter.com\\/AlKeH9FK4t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bulky305\\/status\\/1554452602141786113\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":600,\"resize\":\"fit\"}}}]},\"1701\":{\"hashtags\":[{\"text\":\"Wike\",\"indices\":[133,138]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[139,164]},{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1702\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[75,93]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[94,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"USA\",\"indices\":[119,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554452243302449152,\"id_str\":\"1554452243302449152\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452243302449152\\/pu\\/img\\/49eKs6gZu4-tD_Ye.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452243302449152\\/pu\\/img\\/49eKs6gZu4-tD_Ye.jpg\",\"url\":\"https:\\/\\/t.co\\/htgQ3dPEQv\",\"display_url\":\"pic.twitter.com\\/htgQ3dPEQv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554452339570114560\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":406,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":406,\"resize\":\"fit\"}}}]},\"1703\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Erc1974C\",\"name\":\"Eric C\",\"id\":1503920544689029120,\"id_str\":\"1503920544689029120\",\"indices\":[0,9]}],\"urls\":[]},\"1704\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[188,195]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[196,214]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[215,232]},{\"text\":\"China\",\"indices\":[233,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554451577288949761,\"id_str\":\"1554451577288949761\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554451577288949761\\/pu\\/img\\/kDb6Kyo-gqOe4bcH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554451577288949761\\/pu\\/img\\/kDb6Kyo-gqOe4bcH.jpg\",\"url\":\"https:\\/\\/t.co\\/takZPebuQm\",\"display_url\":\"pic.twitter.com\\/takZPebuQm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554451611594149888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"1705\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[82,89]},{\"text\":\"Lekki\",\"indices\":[90,96]},{\"text\":\"Sabinus\",\"indices\":[97,105]},{\"text\":\"helicopter\",\"indices\":[106,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554451334740512769,\"id_str\":\"1554451334740512769\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}}]},\"1706\":{\"hashtags\":[{\"text\":\"traineeprogram\",\"indices\":[45,60]},{\"text\":\"energysector\",\"indices\":[61,74]},{\"text\":\"oiljobs\",\"indices\":[75,83]},{\"text\":\"graduatetrainee\",\"indices\":[84,100]},{\"text\":\"jobs\",\"indices\":[101,106]},{\"text\":\"pelosi\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554451058251923456,\"id_str\":\"1554451058251923456\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"url\":\"https:\\/\\/t.co\\/X6qCM1jrbW\",\"display_url\":\"pic.twitter.com\\/X6qCM1jrbW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554451066577641472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":737,\"h\":933,\"resize\":\"fit\"},\"small\":{\"w\":537,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":737,\"h\":933,\"resize\":\"fit\"}}}]},\"1707\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[103,110]},{\"text\":\"BambamSorry\",\"indices\":[111,123]},{\"text\":\"helicopter\",\"indices\":[124,135]},{\"text\":\"sabinus\",\"indices\":[136,144]},{\"text\":\"shortlets\",\"indices\":[145,155]},{\"text\":\"Airbnb\",\"indices\":[156,163]},{\"text\":\"homes\",\"indices\":[164,170]},{\"text\":\"lagos\",\"indices\":[171,177]},{\"text\":\"shortletsinlagos\",\"indices\":[178,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554450613844459520,\"id_str\":\"1554450613844459520\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKEmPMWQAAIZ8g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKEmPMWQAAIZ8g.jpg\",\"url\":\"https:\\/\\/t.co\\/6vuOGM1bVY\",\"display_url\":\"pic.twitter.com\\/6vuOGM1bVY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hhouseshortlet\\/status\\/1554450631997407235\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":449,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":792,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1352,\"resize\":\"fit\"}}}]},\"1708\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[31,35]},{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[112,130]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[131,148]},{\"text\":\"China\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554450477978648582,\"id_str\":\"1554450477978648582\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKEeVDagAYoWrd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKEeVDagAYoWrd.jpg\",\"url\":\"https:\\/\\/t.co\\/Nd5CqzxIc5\",\"display_url\":\"pic.twitter.com\\/Nd5CqzxIc5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554450492344123392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":450,\"resize\":\"fit\"}}}]},\"1709\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[203,210]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[211,229]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[230,247]},{\"text\":\"China\",\"indices\":[248,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554450337343639557,\"id_str\":\"1554450337343639557\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKEWJJakAUJbUw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKEWJJakAUJbUw.jpg\",\"url\":\"https:\\/\\/t.co\\/wXUU9nLQu7\",\"display_url\":\"pic.twitter.com\\/wXUU9nLQu7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554450355085516800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1710\":{\"hashtags\":[{\"text\":\"mylespudo\",\"indices\":[87,97]},{\"text\":\"delivery\",\"indices\":[98,107]},{\"text\":\"ghana\",\"indices\":[108,114]},{\"text\":\"OnlineBusiness\",\"indices\":[115,130]},{\"text\":\"Pelosi\",\"indices\":[131,138]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"courier\",\"indices\":[147,155]},{\"text\":\"pickupservice\",\"indices\":[156,170]},{\"text\":\"BBNajia\",\"indices\":[171,179]},{\"text\":\"GharWaapsiOnHotstar\",\"indices\":[180,200]},{\"text\":\"GhanaCard\",\"indices\":[201,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wdpF5sevEu\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/pulse\\/what-some-tips-increasing-sales-online-business-myles-pudo\",\"display_url\":\"linkedin.com\\/pulse\\/what-som\\u2026\",\"indices\":[63,86]}]},\"1711\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[237,244]},{\"text\":\"Pelosi\",\"indices\":[245,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554449599494033410,\"id_str\":\"1554449599494033410\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDrMcXEAIXDTL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDrMcXEAIXDTL.jpg\",\"url\":\"https:\\/\\/t.co\\/Flt9lyrjr0\",\"display_url\":\"pic.twitter.com\\/Flt9lyrjr0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554449602358689792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"1712\":{\"hashtags\":[{\"text\":\"Taipei\",\"indices\":[11,18]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"Pelosi\",\"indices\":[178,185]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[186,204]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[205,222]},{\"text\":\"China\",\"indices\":[223,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554449376961253376,\"id_str\":\"1554449376961253376\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554449376961253376\\/pu\\/img\\/8bcY5QsNpqk4SCM-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554449376961253376\\/pu\\/img\\/8bcY5QsNpqk4SCM-.jpg\",\"url\":\"https:\\/\\/t.co\\/hjsA0QBPtc\",\"display_url\":\"pic.twitter.com\\/hjsA0QBPtc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554449420179374080\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":668,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":712,\"resize\":\"fit\"}}}]},\"1713\":{\"hashtags\":[{\"text\":\"edutech\",\"indices\":[164,172]},{\"text\":\"salesjob\",\"indices\":[173,182]},{\"text\":\"nyscjob\",\"indices\":[183,191]},{\"text\":\"jobs\",\"indices\":[192,197]},{\"text\":\"pelosi\",\"indices\":[198,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FffgOogRgI\",\"expanded_url\":\"https:\\/\\/docs.google.com\\/forms\\/d\\/e\\/1FAIpQLSexypIXkQdesAntZQ-AFj092JCxS-60URmaD6kc_0WEOJA22A\\/viewform\",\"display_url\":\"docs.google.com\\/forms\\/d\\/e\\/1FAI\\u2026\",\"indices\":[139,162]}]},\"1714\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[92,99]},{\"text\":\"helicopter\",\"indices\":[100,111]},{\"text\":\"bachelorette\",\"indices\":[112,125]},{\"text\":\"BBCBreakfast\",\"indices\":[126,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"potam1304\",\"name\":\"POTAM\\u2122 \\ud83d\\udc99\",\"id\":961633504202313729,\"id_str\":\"961633504202313729\",\"indices\":[141,151]},{\"screen_name\":\"iambayoajayi\",\"name\":\"Bayo Ajayi\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":155678293,\"id_str\":\"155678293\",\"indices\":[152,165]},{\"screen_name\":\"mrbayoa1\",\"name\":\"Mr Bayo\",\"id\":1280152605474373635,\"id_str\":\"1280152605474373635\",\"indices\":[166,175]},{\"screen_name\":\"realfemiadebayo\",\"name\":\"Femi Adebayo\",\"id\":314492141,\"id_str\":\"314492141\",\"indices\":[176,192]},{\"screen_name\":\"TrendOgun\",\"name\":\"OGUN STATE TRENDS.\",\"id\":2822363152,\"id_str\":\"2822363152\",\"indices\":[193,203]},{\"screen_name\":\"Ekinne_Olalekan\",\"name\":\"Ola of Ogun \\ud83e\\udd8b\",\"id\":2734264942,\"id_str\":\"2734264942\",\"indices\":[204,220]},{\"screen_name\":\"nkay_yo\",\"name\":\"RU\\u2019 OF THE BUJ\\u2019\",\"id\":1071179222,\"id_str\":\"1071179222\",\"indices\":[221,229]},{\"screen_name\":\"UnclePamilerin\",\"name\":\"Pamilerin Adegoke\",\"id\":1181897121068437505,\"id_str\":\"1181897121068437505\",\"indices\":[230,245]}],\"urls\":[],\"media\":[{\"id\":1554449139953549312,\"id_str\":\"1554449139953549312\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDQchXwAAJ-48.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDQchXwAAJ-48.jpg\",\"url\":\"https:\\/\\/t.co\\/5hoQOJlimF\",\"display_url\":\"pic.twitter.com\\/5hoQOJlimF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zees_grillz\\/status\\/1554449149210279943\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":624,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":939,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":939,\"resize\":\"fit\"}}}]},\"1715\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"Pelosi\",\"indices\":[96,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554448579049259011,\"id_str\":\"1554448579049259011\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"url\":\"https:\\/\\/t.co\\/Yj5h9sBlMv\",\"display_url\":\"pic.twitter.com\\/Yj5h9sBlMv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554448582018826241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"large\":{\"w\":663,\"h\":364,\"resize\":\"fit\"}}}]},\"1716\":{\"hashtags\":[{\"text\":\"realestate\",\"indices\":[84,95]},{\"text\":\"realtor\",\"indices\":[96,104]},{\"text\":\"pencityrealty\",\"indices\":[105,119]},{\"text\":\"thiefnubu\",\"indices\":[120,130]},{\"text\":\"JacksonWang\",\"indices\":[131,143]},{\"text\":\"Pelosi\",\"indices\":[144,151]},{\"text\":\"BambamSorry\",\"indices\":[152,164]},{\"text\":\"osuofia\",\"indices\":[165,173]},{\"text\":\"LOONAinLA\",\"indices\":[174,184]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1717\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[16,19]},{\"text\":\"Pelosi\",\"indices\":[131,138]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[139,157]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[158,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554446969665626112,\"id_str\":\"1554446969665626112\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554446969665626112\\/pu\\/img\\/1K3ue6O6k6EgbRAy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554446969665626112\\/pu\\/img\\/1K3ue6O6k6EgbRAy.jpg\",\"url\":\"https:\\/\\/t.co\\/cMdqs1TIub\",\"display_url\":\"pic.twitter.com\\/cMdqs1TIub\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554447036694798337\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}}}]},\"1718\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Pelosi\",\"indices\":[232,239]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[240,258]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[259,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554445792290930688,\"id_str\":\"1554445792290930688\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKANlgaAAA-qt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKANlgaAAA-qt7.jpg\",\"url\":\"https:\\/\\/t.co\\/fyrQ8e71cZ\",\"display_url\":\"pic.twitter.com\\/fyrQ8e71cZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554445847362150401\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"}}}]},\"1719\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[127,133]},{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[142,159]},{\"text\":\"Taiwanchina\",\"indices\":[160,172]},{\"text\":\"Pelosi\",\"indices\":[173,180]},{\"text\":\"Russia\",\"indices\":[181,188]},{\"text\":\"USA\",\"indices\":[189,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554445182359293952,\"id_str\":\"1554445182359293952\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554445182359293952\\/pu\\/img\\/0A8q0uWDOi6KV15j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554445182359293952\\/pu\\/img\\/0A8q0uWDOi6KV15j.jpg\",\"url\":\"https:\\/\\/t.co\\/Eug7GZp0KJ\",\"display_url\":\"pic.twitter.com\\/Eug7GZp0KJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554445335958659072\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":555,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":315,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":592,\"resize\":\"fit\"}}}]},\"1720\":{\"hashtags\":[{\"text\":\"buzzynessonline\",\"indices\":[223,239]},{\"text\":\"TuesdaysAndThursdays\",\"indices\":[240,261]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"Pelosi\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554444631999451137,\"id_str\":\"1554444631999451137\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"url\":\"https:\\/\\/t.co\\/7weOt1UVAc\",\"display_url\":\"pic.twitter.com\\/7weOt1UVAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/buzzy_comedian\\/status\\/1554444641898057728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"1721\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[204,211]},{\"text\":\"PeterObi2023\",\"indices\":[212,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1722\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[70,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[86,104]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[105,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554443540465614848,\"id_str\":\"1554443540465614848\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443540465614848\\/pu\\/img\\/iv7lAMWv3kGKIJa3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443540465614848\\/pu\\/img\\/iv7lAMWv3kGKIJa3.jpg\",\"url\":\"https:\\/\\/t.co\\/m3tlfjQSaM\",\"display_url\":\"pic.twitter.com\\/m3tlfjQSaM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554443623445700608\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"1723\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"nancyisme\",\"indices\":[145,155]},{\"text\":\"dejong\",\"indices\":[156,163]},{\"text\":\"Machala\",\"indices\":[164,172]},{\"text\":\"Wizkid\",\"indices\":[173,180]},{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"JacksonWang\",\"indices\":[189,201]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[202,224]},{\"text\":\"BambamSorry\",\"indices\":[225,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"swatc_music\",\"name\":\"SWAT C\",\"id\":1075280000293715970,\"id_str\":\"1075280000293715970\",\"indices\":[32,44]},{\"screen_name\":\"Akon\",\"name\":\"AKON\",\"id\":25421094,\"id_str\":\"25421094\",\"indices\":[81,86]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[87,96]},{\"screen_name\":\"AndyjnrUmaru\",\"name\":\"AndyJnr \\u00b0 Umaru \\uea00\",\"id\":1024982780831260673,\"id_str\":\"1024982780831260673\",\"indices\":[97,110]},{\"screen_name\":\"wizkhalifa\",\"name\":\"Wiz Khalifa\",\"id\":20322929,\"id_str\":\"20322929\",\"indices\":[111,122]},{\"screen_name\":\"WarnerMedia\",\"name\":\"WarnerMedia\",\"id\":33956270,\"id_str\":\"33956270\",\"indices\":[123,135]}],\"urls\":[],\"media\":[{\"id\":1554443348240392192,\"id_str\":\"1554443348240392192\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"url\":\"https:\\/\\/t.co\\/HbfHLJrcab\",\"display_url\":\"pic.twitter.com\\/HbfHLJrcab\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swatc_music\\/status\\/1554443572098760704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1724\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[17,23]},{\"text\":\"PLA\",\"indices\":[126,130]},{\"text\":\"China\",\"indices\":[133,139]},{\"text\":\"Taiwan\",\"indices\":[140,147]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[148,165]},{\"text\":\"Taiwanchina\",\"indices\":[166,178]},{\"text\":\"Pelosi\",\"indices\":[179,186]},{\"text\":\"Russia\",\"indices\":[187,194]},{\"text\":\"USA\",\"indices\":[195,199]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554443162772717569,\"id_str\":\"1554443162772717569\",\"indices\":[200,223],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443162772717569\\/pu\\/img\\/wHr1ZZa286DhbCA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443162772717569\\/pu\\/img\\/wHr1ZZa286DhbCA2.jpg\",\"url\":\"https:\\/\\/t.co\\/4CjjyFPex2\",\"display_url\":\"pic.twitter.com\\/4CjjyFPex2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554443241701150727\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"1725\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[15,19]},{\"text\":\"China\",\"indices\":[42,48]},{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[57,74]},{\"text\":\"Taiwanchina\",\"indices\":[75,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"Russia\",\"indices\":[96,103]},{\"text\":\"USA\",\"indices\":[104,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554442087088943105,\"id_str\":\"1554442087088943105\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554442087088943105\\/pu\\/img\\/4dy-0aDGu-1uo2Lc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554442087088943105\\/pu\\/img\\/4dy-0aDGu-1uo2Lc.jpg\",\"url\":\"https:\\/\\/t.co\\/pBhMWw2xDw\",\"display_url\":\"pic.twitter.com\\/pBhMWw2xDw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554442180621901825\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1726\":{\"hashtags\":[{\"text\":\"Grind\",\"indices\":[30,36]},{\"text\":\"nbvsquad\",\"indices\":[93,102]},{\"text\":\"nbv\",\"indices\":[103,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lil_shappi\",\"name\":\"Lil Shappi\",\"id\":1510753964660305923,\"id_str\":\"1510753964660305923\",\"indices\":[48,59]},{\"screen_name\":\"iambillirano\",\"name\":\"BILLIRANO\",\"id\":1486320047958249472,\"id_str\":\"1486320047958249472\",\"indices\":[62,75]},{\"screen_name\":\"teesmartlevel\",\"name\":\"Tee Smart Originator\",\"id\":1192415378678390784,\"id_str\":\"1192415378678390784\",\"indices\":[78,92]}],\"urls\":[],\"media\":[{\"id\":1554441613799174144,\"id_str\":\"1554441613799174144\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441613799174144\\/pu\\/img\\/a5vFVdMxpxqTvsSF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441613799174144\\/pu\\/img\\/a5vFVdMxpxqTvsSF.jpg\",\"url\":\"https:\\/\\/t.co\\/EeTxIql7Tv\",\"display_url\":\"pic.twitter.com\\/EeTxIql7Tv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lil_shappi\\/status\\/1554441999188496384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":512,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":512,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":512,\"h\":640,\"resize\":\"fit\"}}}]},\"1727\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"China\",\"indices\":[150,156]},{\"text\":\"Taiwan\",\"indices\":[157,164]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[165,182]},{\"text\":\"Taiwanchina\",\"indices\":[183,195]},{\"text\":\"Pelosi\",\"indices\":[196,203]},{\"text\":\"Russia\",\"indices\":[204,211]},{\"text\":\"USA\",\"indices\":[212,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554441196931784706,\"id_str\":\"1554441196931784706\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441196931784706\\/pu\\/img\\/lcfVrJsIb1XaaWdp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441196931784706\\/pu\\/img\\/lcfVrJsIb1XaaWdp.jpg\",\"url\":\"https:\\/\\/t.co\\/VGFk9oKJ2G\",\"display_url\":\"pic.twitter.com\\/VGFk9oKJ2G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554441266129420289\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1728\":{\"hashtags\":[{\"text\":\"SaitaProRelease\",\"indices\":[22,38]},{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"SHIBARMY\",\"indices\":[47,56]},{\"text\":\"tech\",\"indices\":[57,62]},{\"text\":\"Web3\",\"indices\":[63,68]},{\"text\":\"webdevelopers\",\"indices\":[69,83]},{\"text\":\"cryptocurrency\",\"indices\":[84,99]},{\"text\":\"StockMarket\",\"indices\":[100,112]},{\"text\":\"BTC\",\"indices\":[113,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554441116908507137,\"id_str\":\"1554441116908507137\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ79cWX0AE8Lvt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ79cWX0AE8Lvt.jpg\",\"url\":\"https:\\/\\/t.co\\/APjmtyd5P7\",\"display_url\":\"pic.twitter.com\\/APjmtyd5P7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/steve_crownn\\/status\\/1554441136730767363\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":638,\"h\":653,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":638,\"h\":653,\"resize\":\"fit\"},\"small\":{\"w\":638,\"h\":653,\"resize\":\"fit\"}}}]},\"1729\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[120,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[135,152]},{\"text\":\"Taiwanchina\",\"indices\":[153,165]},{\"text\":\"Pelosi\",\"indices\":[166,173]},{\"text\":\"Russia\",\"indices\":[174,181]},{\"text\":\"USA\",\"indices\":[182,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554439782683791363,\"id_str\":\"1554439782683791363\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ6vx-aUAMB0Wg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ6vx-aUAMB0Wg.jpg\",\"url\":\"https:\\/\\/t.co\\/e7yrxvFOtm\",\"display_url\":\"pic.twitter.com\\/e7yrxvFOtm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554439797590355969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":392,\"resize\":\"fit\"},\"large\":{\"w\":1278,\"h\":736,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":691,\"resize\":\"fit\"}}}]},\"1730\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[38,45]},{\"text\":\"Lekki\",\"indices\":[46,52]},{\"text\":\"StopSellingPi\",\"indices\":[53,67]},{\"text\":\"Lagos\",\"indices\":[68,74]},{\"text\":\"Ziclisynergy\",\"indices\":[75,88]},{\"text\":\"EndSARS\",\"indices\":[89,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554439632342990848,\"id_str\":\"1554439632342990848\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ6nB6XwAAqoQc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ6nB6XwAAqoQc.jpg\",\"url\":\"https:\\/\\/t.co\\/4jgjODSHh6\",\"display_url\":\"pic.twitter.com\\/4jgjODSHh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ziclisynergy1\\/status\\/1554439645601185792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1731\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[93,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[108,125]},{\"text\":\"Taiwanchina\",\"indices\":[126,138]},{\"text\":\"Pelosi\",\"indices\":[139,146]},{\"text\":\"Russia\",\"indices\":[147,154]},{\"text\":\"USA\",\"indices\":[155,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554439023191793668,\"id_str\":\"1554439023191793668\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554439023191793668\\/pu\\/img\\/8n5fD3n8j1ikuhVz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554439023191793668\\/pu\\/img\\/8n5fD3n8j1ikuhVz.jpg\",\"url\":\"https:\\/\\/t.co\\/K5cv295Adw\",\"display_url\":\"pic.twitter.com\\/K5cv295Adw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554439093714845697\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"1732\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[20,27]},{\"text\":\"Taiwan\",\"indices\":[32,39]},{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"China\",\"indices\":[236,242]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[243,260]},{\"text\":\"Taiwanchina\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554438832900407296,\"id_str\":\"1554438832900407296\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554438832900407296\\/pu\\/img\\/5vcVTzy-dzlInyiv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554438832900407296\\/pu\\/img\\/5vcVTzy-dzlInyiv.jpg\",\"url\":\"https:\\/\\/t.co\\/PVDhaVHt4E\",\"display_url\":\"pic.twitter.com\\/PVDhaVHt4E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554438884162822146\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1733\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"August\",\"indices\":[131,138]},{\"text\":\"Trending\",\"indices\":[139,148]},{\"text\":\"HappyEnding\",\"indices\":[149,161]},{\"text\":\"HappyNewMonth\",\"indices\":[162,176]},{\"text\":\"Twiter\",\"indices\":[178,185]},{\"text\":\"creators\",\"indices\":[186,195]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[18,30]},{\"screen_name\":\"JamesEpomComedy\",\"name\":\"JAMES EPOM COMEDY.\",\"id\":1276194873335590913,\"id_str\":\"1276194873335590913\",\"indices\":[91,107]},{\"screen_name\":\"JAMESEPOMTV\",\"name\":\"IT'S HOSPITALITY - OFFICIALS\",\"id\":1469397471206031362,\"id_str\":\"1469397471206031362\",\"indices\":[109,121]}],\"urls\":[],\"media\":[{\"id\":1554438148544991235,\"id_str\":\"1554438148544991235\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ5QqVXEAMjoMU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ5QqVXEAMjoMU.jpg\",\"url\":\"https:\\/\\/t.co\\/c4orTHRuz3\",\"display_url\":\"pic.twitter.com\\/c4orTHRuz3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JamesEpomComedy\\/status\\/1554438153251000321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1734\":{\"hashtags\":[{\"text\":\"Taipei\",\"indices\":[70,77]},{\"text\":\"USA\",\"indices\":[80,84]},{\"text\":\"China\",\"indices\":[85,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[100,117]},{\"text\":\"Taiwanchina\",\"indices\":[118,130]},{\"text\":\"Pelosi\",\"indices\":[131,138]},{\"text\":\"Russia\",\"indices\":[139,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554437676862181377,\"id_str\":\"1554437676862181377\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437676862181377\\/pu\\/img\\/caxvn56FrrUL3jS_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437676862181377\\/pu\\/img\\/caxvn56FrrUL3jS_.jpg\",\"url\":\"https:\\/\\/t.co\\/AL7yZNNpiV\",\"display_url\":\"pic.twitter.com\\/AL7yZNNpiV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554437713725882368\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1735\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[247,252]},{\"text\":\"EndSARS\",\"indices\":[253,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C31nBaUMOj\",\"expanded_url\":\"https:\\/\\/theeverymann.blogspot.com\\/2022\\/08\\/like-feminism-brocode-101-and-extremism.html\",\"display_url\":\"theeverymann.blogspot.com\\/2022\\/08\\/like-f\\u2026\",\"indices\":[222,245]}]},\"1736\":{\"hashtags\":[{\"text\":\"chichi\",\"indices\":[120,127]},{\"text\":\"MadeinLagosdeluxe\",\"indices\":[130,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"BambamSorry\",\"indices\":[157,169]},{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"abstorm\",\"indices\":[182,190]},{\"text\":\"dontpayuk\",\"indices\":[191,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554437395403214849,\"id_str\":\"1554437395403214849\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0qXkAEOULF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0qXkAEOULF.jpg\",\"url\":\"https:\\/\\/t.co\\/OHFJUzHcCQ\",\"display_url\":\"pic.twitter.com\\/OHFJUzHcCQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554437404425166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1737\":{\"hashtags\":[{\"text\":\"USA\",\"indices\":[50,54]},{\"text\":\"China\",\"indices\":[55,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[70,87]},{\"text\":\"Taiwanchina\",\"indices\":[88,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"Russia\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554437031811780608,\"id_str\":\"1554437031811780608\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437031811780608\\/pu\\/img\\/IlQz1upbHQyfAFTo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437031811780608\\/pu\\/img\\/IlQz1upbHQyfAFTo.jpg\",\"url\":\"https:\\/\\/t.co\\/7pwOTE4GDY\",\"display_url\":\"pic.twitter.com\\/7pwOTE4GDY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554437187680497665\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":434,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1128,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1128,\"resize\":\"fit\"}}}]},\"1738\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"FixTheCountry\",\"indices\":[10,24]},{\"text\":\"CitiCBS\",\"indices\":[92,100]},{\"text\":\"KNUST\",\"indices\":[153,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pWtaQmK23B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NCGhanacard\\/status\\/1554430889735626755\",\"display_url\":\"twitter.com\\/NCGhanacard\\/st\\u2026\",\"indices\":[221,244]}]},\"1739\":{\"hashtags\":[{\"text\":\"over\",\"indices\":[131,136]},{\"text\":\"Maldives\",\"indices\":[142,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"helicopter\",\"indices\":[160,171]},{\"text\":\"brtlane\",\"indices\":[172,180]},{\"text\":\"lekki\",\"indices\":[181,187]},{\"text\":\"blocked\",\"indices\":[188,196]},{\"text\":\"ohaneze\",\"indices\":[198,206]},{\"text\":\"travel\",\"indices\":[207,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554436041670524928,\"id_str\":\"1554436041670524928\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ3WBnWAAAY78L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ3WBnWAAAY78L.jpg\",\"url\":\"https:\\/\\/t.co\\/CIdaT8511R\",\"display_url\":\"pic.twitter.com\\/CIdaT8511R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/g126travelsng\\/status\\/1554436054303870978\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1740\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554435926151106560,\"id_str\":\"1554435926151106560\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435926151106560\\/pu\\/img\\/i3EvkpKY2febcoVx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435926151106560\\/pu\\/img\\/i3EvkpKY2febcoVx.jpg\",\"url\":\"https:\\/\\/t.co\\/2OdgeUqpTR\",\"display_url\":\"pic.twitter.com\\/2OdgeUqpTR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554435994178420736\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1554330274778972162,\"id_str\":\"1554330274778972162\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330274778972162\\/pu\\/img\\/wUwnfH7DnEmq1LHx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330274778972162\\/pu\\/img\\/wUwnfH7DnEmq1LHx.jpg\",\"url\":\"https:\\/\\/t.co\\/lvtVrllPR0\",\"display_url\":\"pic.twitter.com\\/lvtVrllPR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/INTELPSF\\/status\\/1554330313408512001\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"source_status_id\":1554330313408512001,\"source_status_id_str\":\"1554330313408512001\",\"source_user_id\":1511994544015155205,\"source_user_id_str\":\"1511994544015155205\"}]},\"1741\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[68,74]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MahuiChina\",\"name\":\"MA Hui \\u9a6c \\u8f89\",\"id\":1187372311604858882,\"id_str\":\"1187372311604858882\",\"indices\":[0,11]}],\"urls\":[]},\"1742\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[125,132]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[141,159]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[160,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554435606738259969,\"id_str\":\"1554435606738259969\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435606738259969\\/pu\\/img\\/6RcjH3-aoZdw1mcf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435606738259969\\/pu\\/img\\/6RcjH3-aoZdw1mcf.jpg\",\"url\":\"https:\\/\\/t.co\\/UGrz44tRcv\",\"display_url\":\"pic.twitter.com\\/UGrz44tRcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554435766381846528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1743\":{\"hashtags\":[{\"text\":\"Flightradar\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[72,79]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"XiJinping\",\"indices\":[118,128]},{\"text\":\"China\",\"indices\":[132,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/paPs0eX3OV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flightradar24\\/status\\/1554411125755842560\",\"display_url\":\"twitter.com\\/flightradar24\\/\\u2026\",\"indices\":[139,162]}]},\"1744\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[169,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]},{\"text\":\"LagosState\",\"indices\":[186,197]},{\"text\":\"Khalid\",\"indices\":[198,205]},{\"text\":\"Doyin\",\"indices\":[206,212]},{\"text\":\"davido\",\"indices\":[213,220]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554434977609252864,\"id_str\":\"1554434977609252864\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434977609252864\\/pu\\/img\\/uM67RNW3zdfDslOp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434977609252864\\/pu\\/img\\/uM67RNW3zdfDslOp.jpg\",\"url\":\"https:\\/\\/t.co\\/baWINb5Ugs\",\"display_url\":\"pic.twitter.com\\/baWINb5Ugs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554435128239312896\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1745\":{\"hashtags\":[{\"text\":\"LekkiMassacre\",\"indices\":[34,48]},{\"text\":\"bbillkin\",\"indices\":[49,58]},{\"text\":\"ShowtimeAugust2Natin\",\"indices\":[59,80]},{\"text\":\"BambamSorry\",\"indices\":[81,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[103,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554434552759828482,\"id_str\":\"1554434552759828482\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ1_W_XwAIBA8B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ1_W_XwAIBA8B.jpg\",\"url\":\"https:\\/\\/t.co\\/cqendw4MWr\",\"display_url\":\"pic.twitter.com\\/cqendw4MWr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dannypete4\\/status\\/1554434581587267586\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1746\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[179,186]},{\"text\":\"Taiwan\",\"indices\":[187,194]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[195,213]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[214,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554434157052571650,\"id_str\":\"1554434157052571650\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434157052571650\\/pu\\/img\\/MzSyOfRtdDCxm2bs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434157052571650\\/pu\\/img\\/MzSyOfRtdDCxm2bs.jpg\",\"url\":\"https:\\/\\/t.co\\/tZUBhW8Ljl\",\"display_url\":\"pic.twitter.com\\/tZUBhW8Ljl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554434190367924224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1747\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1748\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[17,21]},{\"text\":\"Kinmen\",\"indices\":[97,104]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[153,171]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[172,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554433736057683968,\"id_str\":\"1554433736057683968\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554433736057683968\\/pu\\/img\\/JExodTu2odg53IxE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554433736057683968\\/pu\\/img\\/JExodTu2odg53IxE.jpg\",\"url\":\"https:\\/\\/t.co\\/flmamDFC66\",\"display_url\":\"pic.twitter.com\\/flmamDFC66\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554433775152828416\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}}}]},\"1749\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[28,36]},{\"text\":\"Fujian\",\"indices\":[91,98]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[125,143]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[144,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554432393444208646,\"id_str\":\"1554432393444208646\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554432393444208646\\/pu\\/img\\/AhbydGrYc0bwIqxz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554432393444208646\\/pu\\/img\\/AhbydGrYc0bwIqxz.jpg\",\"url\":\"https:\\/\\/t.co\\/rQW9bDMjTy\",\"display_url\":\"pic.twitter.com\\/rQW9bDMjTy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554432428823162881\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":432,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":432,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"1750\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TheInsiderPaper\",\"name\":\"Insider Paper\",\"id\":1247223374717296647,\"id_str\":\"1247223374717296647\",\"indices\":[0,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[66,89]}]},\"1751\":{\"hashtags\":[{\"text\":\"BambamSorry\",\"indices\":[149,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"dontpayuk\",\"indices\":[170,180]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[181,207]},{\"text\":\"BBNaija\",\"indices\":[208,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EboCuteGh1\",\"name\":\"THE CUTEST\",\"id\":920963851256061952,\"id_str\":\"920963851256061952\",\"indices\":[27,38]},{\"screen_name\":\"RogerSarkodie\",\"name\":\"SARK NATIVE\",\"id\":1238782701727035392,\"id_str\":\"1238782701727035392\",\"indices\":[39,53]},{\"screen_name\":\"BlaqDeeva\",\"name\":\"Esborn\\u2019s Girl \\ud83e\\udd8b\",\"id\":292475463,\"id_str\":\"292475463\",\"indices\":[54,64]},{\"screen_name\":\"adahorxyz\",\"name\":\"Wilfred Adahor\",\"id\":3060782457,\"id_str\":\"3060782457\",\"indices\":[65,75]},{\"screen_name\":\"KobbyMckenzie\",\"name\":\"Kobby\\u2648\\ufe0f\",\"id\":1142588710258712579,\"id_str\":\"1142588710258712579\",\"indices\":[76,90]},{\"screen_name\":\"KobbyMckenzie\",\"name\":\"Kobby\\u2648\\ufe0f\",\"id\":1142588710258712579,\"id_str\":\"1142588710258712579\",\"indices\":[91,105]},{\"screen_name\":\"daddys_girlT\",\"name\":\"Saada \\ud83c\\uddec\\ud83c\\udded \\ud83d\\udc2c\",\"id\":820645640472526849,\"id_str\":\"820645640472526849\",\"indices\":[106,119]},{\"screen_name\":\"datLabadiBoy\",\"name\":\"harmless boy\",\"id\":289072568,\"id_str\":\"289072568\",\"indices\":[120,133]},{\"screen_name\":\"WeGoTalkAm1\",\"name\":\"Joe Felix Akroku\",\"id\":1141863704646078470,\"id_str\":\"1141863704646078470\",\"indices\":[134,146]}],\"urls\":[],\"media\":[{\"id\":1554431667854508032,\"id_str\":\"1554431667854508032\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554431667854508032\\/pu\\/img\\/p1SyhDD_EhS65OHb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554431667854508032\\/pu\\/img\\/p1SyhDD_EhS65OHb.jpg\",\"url\":\"https:\\/\\/t.co\\/iGErCYKbt5\",\"display_url\":\"pic.twitter.com\\/iGErCYKbt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfyaSeedorfina\\/status\\/1554431780777754630\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"1752\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[73,80]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TheInsiderPaper\",\"name\":\"Insider Paper\",\"id\":1247223374717296647,\"id_str\":\"1247223374717296647\",\"indices\":[0,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[81,104]}]},\"1753\":{\"hashtags\":[{\"text\":\"Chelsea\",\"indices\":[143,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"Pelosi\",\"indices\":[160,167]},{\"text\":\"BambamSorry\",\"indices\":[168,180]},{\"text\":\"helicopter\",\"indices\":[181,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1754\":{\"hashtags\":[{\"text\":\"ISAC2022\",\"indices\":[219,228]},{\"text\":\"BambamSorry\",\"indices\":[229,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"abstorm\",\"indices\":[250,258]},{\"text\":\"HOBIPALOOZA\",\"indices\":[259,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1755\":{\"hashtags\":[{\"text\":\"LekkiMassacre\",\"indices\":[88,102]},{\"text\":\"lekki\",\"indices\":[103,109]},{\"text\":\"taiwan\",\"indices\":[110,117]},{\"text\":\"shibainu\",\"indices\":[118,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dandptravels\",\"name\":\"dandptravels\",\"id\":28119116,\"id_str\":\"28119116\",\"indices\":[72,85]}],\"urls\":[]},\"1756\":{\"hashtags\":[{\"text\":\"JUBILEEYNGA\",\"indices\":[22,34]},{\"text\":\"BetterCallSaul\",\"indices\":[79,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"asuu\",\"indices\":[104,109]},{\"text\":\"wizkid\",\"indices\":[110,117]},{\"text\":\"madeinlagos\",\"indices\":[118,130]},{\"text\":\"startfoden\",\"indices\":[131,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TIONWAYNE\",\"name\":\"Wizzy Wayne\",\"id\":158169267,\"id_str\":\"158169267\",\"indices\":[35,45]},{\"screen_name\":\"ArrDeeTweets\",\"name\":\"@ArrDeeTweets\",\"id\":4830988835,\"id_str\":\"4830988835\",\"indices\":[46,59]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[60,67]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[68,78]}],\"urls\":[],\"media\":[{\"id\":1554430516996325376,\"id_str\":\"1554430516996325376\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430516996325376\\/pu\\/img\\/BQsbflr8k3nJzr2a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430516996325376\\/pu\\/img\\/BQsbflr8k3nJzr2a.jpg\",\"url\":\"https:\\/\\/t.co\\/aWiHIg9VxJ\",\"display_url\":\"pic.twitter.com\\/aWiHIg9VxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgaJubilee\\/status\\/1554430707279208449\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}}}]},\"1757\":{\"hashtags\":[{\"text\":\"STREET\",\"indices\":[20,27]},{\"text\":\"fixthecountry\",\"indices\":[138,152]},{\"text\":\"Taiwan\",\"indices\":[160,167]},{\"text\":\"Pelosi\",\"indices\":[168,175]},{\"text\":\"BambamSorry\",\"indices\":[176,188]},{\"text\":\"helicopter\",\"indices\":[189,200]},{\"text\":\"dontpayuk\",\"indices\":[201,211]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GermanChino7\",\"name\":\"GerMan\\ud83c\\udde9\\ud83c\\uddea ChiNo\",\"id\":1550547454277423104,\"id_str\":\"1550547454277423104\",\"indices\":[0,13]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LOwrTnx4ui\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/german-chino\\/song\\/chino-street-mixed-by-wakersmix\",\"display_url\":\"audiomack.com\\/german-chino\\/s\\u2026\",\"indices\":[85,108]}],\"media\":[{\"id\":1554430429037461504,\"id_str\":\"1554430429037461504\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430429037461504\\/pu\\/img\\/63N9MTcFyAYDu3PE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430429037461504\\/pu\\/img\\/63N9MTcFyAYDu3PE.jpg\",\"url\":\"https:\\/\\/t.co\\/pGJD13AfeT\",\"display_url\":\"pic.twitter.com\\/pGJD13AfeT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554430501720563713\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"1758\":{\"hashtags\":[{\"text\":\"Wordpress\",\"indices\":[79,89]},{\"text\":\"LockheedMartin\",\"indices\":[90,105]},{\"text\":\"DeshaunWatson\",\"indices\":[106,120]},{\"text\":\"hobi\",\"indices\":[121,126]},{\"text\":\"TheNFL\",\"indices\":[127,134]},{\"text\":\"Pelosi\",\"indices\":[135,142]},{\"text\":\"Ayman\",\"indices\":[143,149]},{\"text\":\"AlQaeda\",\"indices\":[150,158]},{\"text\":\"Andor\",\"indices\":[159,165]},{\"text\":\"Montas\",\"indices\":[166,173]},{\"text\":\"Drake\",\"indices\":[174,180]},{\"text\":\"Ridley\",\"indices\":[181,188]},{\"text\":\"Luca\",\"indices\":[189,194]},{\"text\":\"Afghanistan\",\"indices\":[195,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w8R4T0Meb8\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3z7dGA0\",\"display_url\":\"bit.ly\\/3z7dGA0\",\"indices\":[54,77]}],\"media\":[{\"id\":1554430115165110273,\"id_str\":\"1554430115165110273\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJx9DqWAAEEWFB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJx9DqWAAEEWFB.jpg\",\"url\":\"https:\\/\\/t.co\\/PH9ryIWI2z\",\"display_url\":\"pic.twitter.com\\/PH9ryIWI2z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1554430230638563329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":318,\"h\":159,\"resize\":\"fit\"},\"large\":{\"w\":318,\"h\":159,\"resize\":\"fit\"},\"small\":{\"w\":318,\"h\":159,\"resize\":\"fit\"}}}]},\"1759\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[20,24]},{\"text\":\"China\",\"indices\":[72,78]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[93,111]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[112,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554429518089433089,\"id_str\":\"1554429518089433089\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554429518089433089\\/pu\\/img\\/uKYMi-iemG5OITYY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554429518089433089\\/pu\\/img\\/uKYMi-iemG5OITYY.jpg\",\"url\":\"https:\\/\\/t.co\\/Kr1wknfW1c\",\"display_url\":\"pic.twitter.com\\/Kr1wknfW1c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554429585126989825\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1760\":{\"hashtags\":[{\"text\":\"Clickfunnels\",\"indices\":[197,210]},{\"text\":\"Taiwan\",\"indices\":[211,218]},{\"text\":\"China\",\"indices\":[219,225]},{\"text\":\"Graham\",\"indices\":[226,233]},{\"text\":\"Pablo\",\"indices\":[234,240]},{\"text\":\"Chip\",\"indices\":[241,246]},{\"text\":\"NichelleNichols\",\"indices\":[247,263]},{\"text\":\"RunBTS\",\"indices\":[264,271]},{\"text\":\"WWERaw\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bYxm81cXG0\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3vhcwAM\",\"display_url\":\"bit.ly\\/3vhcwAM\",\"indices\":[172,195]}],\"media\":[{\"id\":1554428566472892416,\"id_str\":\"1554428566472892416\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJwi6VWIAAc1O_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJwi6VWIAAc1O_.jpg\",\"url\":\"https:\\/\\/t.co\\/RS9K2MlNbz\",\"display_url\":\"pic.twitter.com\\/RS9K2MlNbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1554428980417241089\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":301,\"h\":167,\"resize\":\"fit\"},\"medium\":{\"w\":301,\"h\":167,\"resize\":\"fit\"},\"large\":{\"w\":301,\"h\":167,\"resize\":\"fit\"}}}]},\"1761\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[56,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1762\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[28,35]},{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[127,145]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[146,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554427250074075136,\"id_str\":\"1554427250074075136\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554427250074075136\\/pu\\/img\\/d3YOp5mIb1hTBiEB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554427250074075136\\/pu\\/img\\/d3YOp5mIb1hTBiEB.jpg\",\"url\":\"https:\\/\\/t.co\\/VoxYSLFlgQ\",\"display_url\":\"pic.twitter.com\\/VoxYSLFlgQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554427291438313472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}}}]},\"1763\":{\"hashtags\":[{\"text\":\"Xiamen\",\"indices\":[93,100]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[112,130]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[131,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554426681737478144,\"id_str\":\"1554426681737478144\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554426681737478144\\/pu\\/img\\/0YJHspckaP73j8i0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554426681737478144\\/pu\\/img\\/0YJHspckaP73j8i0.jpg\",\"url\":\"https:\\/\\/t.co\\/6kZCJtJfXa\",\"display_url\":\"pic.twitter.com\\/6kZCJtJfXa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554426733033832448\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"1764\":{\"hashtags\":[{\"text\":\"Deshaun\",\"indices\":[29,37]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"Wordle\",\"indices\":[53,60]},{\"text\":\"Hader\",\"indices\":[67,73]},{\"text\":\"Al\",\"indices\":[74,77]},{\"text\":\"Guerrilla1stWin\",\"indices\":[84,100]},{\"text\":\"Bill\",\"indices\":[101,106]},{\"text\":\"The\",\"indices\":[115,119]},{\"text\":\"calvin\",\"indices\":[124,131]},{\"text\":\"WWERaw\",\"indices\":[139,146]},{\"text\":\"NationalGirlfriendDay\",\"indices\":[147,169]},{\"text\":\"tuesdayvibe\",\"indices\":[170,182]},{\"text\":\"TheBachelorette\",\"indices\":[183,199]},{\"text\":\"Nichelle\",\"indices\":[201,210]},{\"text\":\"termsandconditions\",\"indices\":[219,238]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WWE\",\"name\":\"WWE\",\"id\":7517222,\"id_str\":\"7517222\",\"indices\":[0,4]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GF5KbcxFJD\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/9jpq90\",\"display_url\":\"fiverr.com\\/share\\/9jpq90\",\"indices\":[5,28]}],\"media\":[{\"id\":1554425337932644355,\"id_str\":\"1554425337932644355\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJtm_FXgAMBdzm.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJtm_FXgAMBdzm.png\",\"url\":\"https:\\/\\/t.co\\/2FcsICLJFI\",\"display_url\":\"pic.twitter.com\\/2FcsICLJFI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fs_commerce\\/status\\/1554425361986977793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":430,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":430,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":406,\"resize\":\"fit\"}}}]},\"1765\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[49,57]},{\"text\":\"PLA\",\"indices\":[58,62]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[207,225]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[226,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554424896046120960,\"id_str\":\"1554424896046120960\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554424896046120960\\/pu\\/img\\/xhtxywrOK9Gp7j8b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554424896046120960\\/pu\\/img\\/xhtxywrOK9Gp7j8b.jpg\",\"url\":\"https:\\/\\/t.co\\/uC8fC2y04g\",\"display_url\":\"pic.twitter.com\\/uC8fC2y04g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554424929483132928\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"1766\":{\"hashtags\":[{\"text\":\"nysc\",\"indices\":[225,230]},{\"text\":\"BambamSorry\",\"indices\":[231,243]},{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"helicopter\",\"indices\":[252,263]},{\"text\":\"BetterCallSaul\",\"indices\":[264,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554424824218488835,\"id_str\":\"1554424824218488835\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJtJFWXkAMHTrQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJtJFWXkAMHTrQ.jpg\",\"url\":\"https:\\/\\/t.co\\/q5qLvBvkGd\",\"display_url\":\"pic.twitter.com\\/q5qLvBvkGd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Silvaweb247\\/status\\/1554424830598021121\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":595,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":395,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":595,\"resize\":\"fit\"}}}]},\"1767\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[65,73]},{\"text\":\"CommonwealthGames2022\",\"indices\":[74,96]},{\"text\":\"Jamaica60\",\"indices\":[97,107]},{\"text\":\"DubaiDudesNFT\",\"indices\":[108,122]},{\"text\":\"Guerrilla1stWin\",\"indices\":[123,139]},{\"text\":\"WWERaw\",\"indices\":[140,147]},{\"text\":\"NationalGirlfriendDay\",\"indices\":[148,170]},{\"text\":\"Foreignfundingcase\",\"indices\":[171,190]},{\"text\":\"DNBP\",\"indices\":[191,196]},{\"text\":\"NSPPD\",\"indices\":[197,203]},{\"text\":\"FestivalQueen2022\",\"indices\":[204,222]},{\"text\":\"HelicopterCrash\",\"indices\":[223,239]},{\"text\":\"Taiwan\",\"indices\":[247,254]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"King_Enam\",\"name\":\"Africa In Me-AIM EP\\ud83e\\udd34\\ud83c\\udffe\",\"id\":2358172939,\"id_str\":\"2358172939\",\"indices\":[54,64]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3Dhf1s1rGk\",\"expanded_url\":\"http:\\/\\/kingenam.com\",\"display_url\":\"kingenam.com\",\"indices\":[13,36]}],\"media\":[{\"id\":1554424539148337155,\"id_str\":\"1554424539148337155\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJs4fYWQAMtMzd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJs4fYWQAMtMzd.jpg\",\"url\":\"https:\\/\\/t.co\\/7URIrVBAXw\",\"display_url\":\"pic.twitter.com\\/7URIrVBAXw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Builsa_MaN\\/status\\/1554424546412924929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1768\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[73,91]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[92,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554423739437445121,\"id_str\":\"1554423739437445121\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554423739437445121\\/pu\\/img\\/dy-Do9SAnrCp99cb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554423739437445121\\/pu\\/img\\/dy-Do9SAnrCp99cb.jpg\",\"url\":\"https:\\/\\/t.co\\/q3kWBgyCxB\",\"display_url\":\"pic.twitter.com\\/q3kWBgyCxB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554423799193665536\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}}}]},\"1769\":{\"hashtags\":[{\"text\":\"BambamSorry\",\"indices\":[229,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"BetterCallSaul\",\"indices\":[250,265]},{\"text\":\"helicopter\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554423353645088771,\"id_str\":\"1554423353645088771\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrzfCWQAM3YNr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrzfCWQAM3YNr.jpg\",\"url\":\"https:\\/\\/t.co\\/CUSAEHLNZa\",\"display_url\":\"pic.twitter.com\\/CUSAEHLNZa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554423362092683265\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}}]},\"1770\":{\"hashtags\":[{\"text\":\"BetterCallSaul\",\"indices\":[44,59]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"LOONAinLA\",\"indices\":[70,80]},{\"text\":\"JacksonWang\",\"indices\":[82,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554423117019287553,\"id_str\":\"1554423117019287553\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1771\":{\"hashtags\":[{\"text\":\"USA\",\"indices\":[57,61]},{\"text\":\"China\",\"indices\":[62,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[77,94]},{\"text\":\"Taiwanchina\",\"indices\":[95,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554422915617423362,\"id_str\":\"1554422915617423362\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554422915617423362\\/pu\\/img\\/f95sQLMQNEo04le8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554422915617423362\\/pu\\/img\\/f95sQLMQNEo04le8.jpg\",\"url\":\"https:\\/\\/t.co\\/4ZPUAOsDeM\",\"display_url\":\"pic.twitter.com\\/4ZPUAOsDeM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554422937109024772\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":584,\"resize\":\"fit\"},\"medium\":{\"w\":320,\"h\":584,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":584,\"resize\":\"fit\"}}}]},\"1772\":{\"hashtags\":[{\"text\":\"superfmph\",\"indices\":[48,58]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[59,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"BBNaija\",\"indices\":[85,93]},{\"text\":\"onne\",\"indices\":[94,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554422054111289345,\"id_str\":\"1554422054111289345\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqn15WIAEvSbO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqn15WIAEvSbO.jpg\",\"url\":\"https:\\/\\/t.co\\/Z9sQo2PZ14\",\"display_url\":\"pic.twitter.com\\/Z9sQo2PZ14\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superfm933\\/status\\/1554422065523990528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":544,\"resize\":\"fit\"},\"large\":{\"w\":827,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":447,\"resize\":\"fit\"}}}]},\"1773\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[133,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1774\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[28,32]},{\"text\":\"WeChat\",\"indices\":[66,73]},{\"text\":\"Taiwan\",\"indices\":[120,127]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[128,146]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[147,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554420317690687488,\"id_str\":\"1554420317690687488\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420317690687488\\/pu\\/img\\/41Y6GJSuSt9VNsie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420317690687488\\/pu\\/img\\/41Y6GJSuSt9VNsie.jpg\",\"url\":\"https:\\/\\/t.co\\/D9PanjR8X4\",\"display_url\":\"pic.twitter.com\\/D9PanjR8X4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554420391254589441\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"1775\":{\"hashtags\":[{\"text\":\"BetterCallSaul\",\"indices\":[56,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"JacksonWang\",\"indices\":[80,92]},{\"text\":\"BambamSorry\",\"indices\":[93,105]},{\"text\":\"helicopter\",\"indices\":[106,117]},{\"text\":\"abstorm\",\"indices\":[118,126]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[127,145]},{\"text\":\"dontpayuk\",\"indices\":[146,156]},{\"text\":\"chatsekscerita\",\"indices\":[157,172]},{\"text\":\"chatsekscerita\",\"indices\":[173,188]},{\"text\":\"ISAC2022\",\"indices\":[189,198]},{\"text\":\"BBNajia\",\"indices\":[199,207]},{\"text\":\"bbillkin\",\"indices\":[208,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554420335201685504,\"id_str\":\"1554420335201685504\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"url\":\"https:\\/\\/t.co\\/N2GpRHozvt\",\"display_url\":\"pic.twitter.com\\/N2GpRHozvt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mr_caustic\\/status\\/1554420378725916672\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"1776\":{\"hashtags\":[{\"text\":\"FujianBeaches\",\"indices\":[40,54]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[118,136]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[137,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554419638448308224,\"id_str\":\"1554419638448308224\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419638448308224\\/pu\\/img\\/v-mzDBW8ay0bNNiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419638448308224\\/pu\\/img\\/v-mzDBW8ay0bNNiT.jpg\",\"url\":\"https:\\/\\/t.co\\/0PbLnU5MnH\",\"display_url\":\"pic.twitter.com\\/0PbLnU5MnH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554419662112563200\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"1777\":{\"hashtags\":[{\"text\":\"EndSARS\",\"indices\":[172,180]},{\"text\":\"Tinubu\",\"indices\":[181,188]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[189,214]},{\"text\":\"malik\",\"indices\":[215,221]},{\"text\":\"BetterCallSaul\",\"indices\":[222,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"helicopter\",\"indices\":[246,257]},{\"text\":\"ISAC2022\",\"indices\":[258,267]},{\"text\":\"BBNajia\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1778\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[7,13]},{\"text\":\"PLA\",\"indices\":[198,202]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"ChinaTaiwan\",\"indices\":[250,262]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[263,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554419344104656902,\"id_str\":\"1554419344104656902\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419344104656902\\/pu\\/img\\/kMWAylwkhIYVGG_a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419344104656902\\/pu\\/img\\/kMWAylwkhIYVGG_a.jpg\",\"url\":\"https:\\/\\/t.co\\/BmPpK8dBkF\",\"display_url\":\"pic.twitter.com\\/BmPpK8dBkF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554419422303240192\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"1779\":{\"hashtags\":[{\"text\":\"BetterCallSaul\",\"indices\":[44,59]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[70,88]},{\"text\":\"HelicopterCrash\",\"indices\":[90,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554419269416501252,\"id_str\":\"1554419269416501252\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419269416501252\\/pu\\/img\\/DlrSVsCi0hnVZAep.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419269416501252\\/pu\\/img\\/DlrSVsCi0hnVZAep.jpg\",\"url\":\"https:\\/\\/t.co\\/zaYLs657tc\",\"display_url\":\"pic.twitter.com\\/zaYLs657tc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sir_Money_gh\\/status\\/1554419373040979969\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"1780\":{\"hashtags\":[{\"text\":\"Nationwidedelivery\",\"indices\":[81,100]},{\"text\":\"BetterCallSaul\",\"indices\":[101,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"helicopter\",\"indices\":[125,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pfKjvlEvaE\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/TXVA7V2RXYFDE1\",\"display_url\":\"wa.me\\/message\\/TXVA7V\\u2026\",\"indices\":[57,80]}],\"media\":[{\"id\":1554419271295451137,\"id_str\":\"1554419271295451137\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJoF3GWQAED6iM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJoF3GWQAED6iM.jpg\",\"url\":\"https:\\/\\/t.co\\/AA5J4lUxjc\",\"display_url\":\"pic.twitter.com\\/AA5J4lUxjc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Medagh_\\/status\\/1554419319517372416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}}]},\"1781\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[44,51]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"ChinaTaiwan\",\"indices\":[171,183]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[184,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554418377380499456,\"id_str\":\"1554418377380499456\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554418377380499456\\/pu\\/img\\/ir9ph3oZbzfLlzgM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554418377380499456\\/pu\\/img\\/ir9ph3oZbzfLlzgM.jpg\",\"url\":\"https:\\/\\/t.co\\/mXUgQ6ueQ5\",\"display_url\":\"pic.twitter.com\\/mXUgQ6ueQ5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554418424105037824\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"1782\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"ChinaTaiwanWar\",\"indices\":[68,83]},{\"text\":\"China\",\"indices\":[85,91]},{\"text\":\"Pelosi\",\"indices\":[92,99]},{\"text\":\"WWIII\",\"indices\":[101,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554417818086653952,\"id_str\":\"1554417818086653952\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417818086653952\\/pu\\/img\\/HVsY93f-6nIpHBPC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417818086653952\\/pu\\/img\\/HVsY93f-6nIpHBPC.jpg\",\"url\":\"https:\\/\\/t.co\\/PQbwxmSLGJ\",\"display_url\":\"pic.twitter.com\\/PQbwxmSLGJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danielf35506865\\/status\\/1554417894028607488\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"1783\":{\"hashtags\":[{\"text\":\"FujianBeaches\",\"indices\":[24,38]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[102,120]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[121,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554417624880402433,\"id_str\":\"1554417624880402433\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417624880402433\\/pu\\/img\\/WvYDzvGAx5qM_08j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417624880402433\\/pu\\/img\\/WvYDzvGAx5qM_08j.jpg\",\"url\":\"https:\\/\\/t.co\\/TBM4gBXkZ9\",\"display_url\":\"pic.twitter.com\\/TBM4gBXkZ9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554417810398654464\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":623,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":664,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":353,\"resize\":\"fit\"}}}]},\"1784\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[22,29]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dragondescendan\",\"name\":\"Meiguolao Watcher \\u262d\",\"id\":1334479213424902146,\"id_str\":\"1334479213424902146\",\"indices\":[0,16]}],\"urls\":[]},\"1785\":{\"hashtags\":[{\"text\":\"Nigeria\",\"indices\":[123,131]},{\"text\":\"EndSARS\",\"indices\":[155,163]},{\"text\":\"Pelosi\",\"indices\":[182,189]},{\"text\":\"Afghanistan\",\"indices\":[191,203]},{\"text\":\"Lagos\",\"indices\":[210,216]},{\"text\":\"Abuja\",\"indices\":[218,224]},{\"text\":\"GiPay\",\"indices\":[233,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Gidi_Traffic\",\"name\":\"GIDI\",\"id\":378809160,\"id_str\":\"378809160\",\"indices\":[243,256]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3TmlI0FUUK\",\"expanded_url\":\"http:\\/\\/www.giteksol.com\\/download-apk\",\"display_url\":\"giteksol.com\\/download-apk\",\"indices\":[84,107]}],\"media\":[{\"id\":1554417160621023232,\"id_str\":\"1554417160621023232\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417160621023232\\/pu\\/img\\/mi0uQ6ZCTwCgzppD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417160621023232\\/pu\\/img\\/mi0uQ6ZCTwCgzppD.jpg\",\"url\":\"https:\\/\\/t.co\\/90xxNCBBpc\",\"display_url\":\"pic.twitter.com\\/90xxNCBBpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GeorgeUwaifo\\/status\\/1554417232633012224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":590,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"1786\":{\"hashtags\":[{\"text\":\"saada\",\"indices\":[77,83]},{\"text\":\"togbe\",\"indices\":[84,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1787\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[94,98]},{\"text\":\"crytocurrency\",\"indices\":[99,113]},{\"text\":\"StopSellingPi\",\"indices\":[114,128]},{\"text\":\"AlQaeda\",\"indices\":[189,197]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"EndSARS\",\"indices\":[220,228]}],\"symbols\":[{\"text\":\"Etc\",\"indices\":[0,4]}],\"user_mentions\":[],\"urls\":[]},\"1788\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"BBNajia\",\"indices\":[83,91]},{\"text\":\"dontpayuk\",\"indices\":[92,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554413801755262976,\"id_str\":\"1554413801755262976\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJjHfeWQAAe3Ea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJjHfeWQAAe3Ea.jpg\",\"url\":\"https:\\/\\/t.co\\/0JYSxYwsgH\",\"display_url\":\"pic.twitter.com\\/0JYSxYwsgH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ee_zuu_art\\/status\\/1554413814560563201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":812,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":812,\"h\":1080,\"resize\":\"fit\"}}}]},\"1789\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[23,30]},{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"XiJinping\",\"indices\":[103,113]},{\"text\":\"China\",\"indices\":[117,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ngZ5wLSFDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Investingcom\\/status\\/1554391566231511040\",\"display_url\":\"twitter.com\\/Investingcom\\/s\\u2026\",\"indices\":[124,147]}]},\"1790\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"Gistlover\",\"indices\":[140,150]},{\"text\":\"BBNaija\",\"indices\":[151,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554412767876087808,\"id_str\":\"1554412767876087808\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"1791\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"Watawi\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554412411058266112,\"id_str\":\"1554412411058266112\",\"indices\":[87,110],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554412411058266112\\/pu\\/img\\/S-L6EEBuPcUz7jcR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554412411058266112\\/pu\\/img\\/S-L6EEBuPcUz7jcR.jpg\",\"url\":\"https:\\/\\/t.co\\/QF2ZrUOnK2\",\"display_url\":\"pic.twitter.com\\/QF2ZrUOnK2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554412471301046272\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":408,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":800,\"resize\":\"fit\"}}}]},\"1792\":{\"hashtags\":[{\"text\":\"EndSARS\",\"indices\":[101,109]},{\"text\":\"Pelosi\",\"indices\":[110,117]},{\"text\":\"OBIDIENTS\",\"indices\":[118,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554412160436011008,\"id_str\":\"1554412160436011008\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJhn9FWAAAQ9xB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJhn9FWAAAQ9xB.jpg\",\"url\":\"https:\\/\\/t.co\\/0evlh9SBVk\",\"display_url\":\"pic.twitter.com\\/0evlh9SBVk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoorTony\\/status\\/1554412198910468097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1414,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"}}}]},\"1793\":{\"hashtags\":[{\"text\":\"WritingCommunity\",\"indices\":[110,127]},{\"text\":\"writers\",\"indices\":[128,136]},{\"text\":\"AuthorsOfTwitter\",\"indices\":[137,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"helicopter\",\"indices\":[163,174]},{\"text\":\"abstorm\",\"indices\":[175,183]},{\"text\":\"HOBIPALOOZA\",\"indices\":[184,196]},{\"text\":\"BBNajia\",\"indices\":[197,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554411249974247425,\"id_str\":\"1554411249974247425\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJgy9WWAAEPAvf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJgy9WWAAEPAvf.jpg\",\"url\":\"https:\\/\\/t.co\\/fl97j4UFf4\",\"display_url\":\"pic.twitter.com\\/fl97j4UFf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/samuel_osakue\\/status\\/1554411253086519298\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"}}}]},\"1794\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Quicktake\",\"name\":\"Bloomberg Quicktake\",\"id\":252751061,\"id_str\":\"252751061\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[44,67]}]},\"1795\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FoxNews\",\"name\":\"Fox News\",\"id\":1367531,\"id_str\":\"1367531\",\"indices\":[0,8]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[48,71]}]},\"1796\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[73,80]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TheInsiderPaper\",\"name\":\"Insider Paper\",\"id\":1247223374717296647,\"id_str\":\"1247223374717296647\",\"indices\":[0,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[49,72]}]},\"1797\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[44,52]},{\"text\":\"PeterObi\",\"indices\":[54,63]},{\"text\":\"Taiwan\",\"indices\":[65,72]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554408765562265601,\"id_str\":\"1554408765562265601\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554408765562265601\\/pu\\/img\\/9oDXVi7TAjzl40Qu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554408765562265601\\/pu\\/img\\/9oDXVi7TAjzl40Qu.jpg\",\"url\":\"https:\\/\\/t.co\\/4xZQVuxvKn\",\"display_url\":\"pic.twitter.com\\/4xZQVuxvKn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Urbandistrictng\\/status\\/1554408865386610688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1798\":{\"hashtags\":[{\"text\":\"nonprofits\",\"indices\":[185,196]},{\"text\":\"Pelosi\",\"indices\":[197,204]},{\"text\":\"China\",\"indices\":[205,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"STEM\",\"indices\":[220,225]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[226,248]},{\"text\":\"SDG4\",\"indices\":[249,254]},{\"text\":\"Google\",\"indices\":[255,262]},{\"text\":\"Ethiopia\",\"indices\":[263,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554406977853423622,\"id_str\":\"1554406977853423622\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"url\":\"https:\\/\\/t.co\\/nUxgLZ5V5V\",\"display_url\":\"pic.twitter.com\\/nUxgLZ5V5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WAAW_Foundation\\/status\\/1554408047849644034\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1799\":{\"hashtags\":[{\"text\":\"hypealert_gh\",\"indices\":[136,149]},{\"text\":\"Taiwan\",\"indices\":[150,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554407678327259136,\"id_str\":\"1554407678327259136\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJdjD7WAAA7eYz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJdjD7WAAA7eYz.jpg\",\"url\":\"https:\\/\\/t.co\\/e07NqLgW9x\",\"display_url\":\"pic.twitter.com\\/e07NqLgW9x\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hypealert_gh\\/status\\/1554407698711678981\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1800\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"abstorm\",\"indices\":[258,266]},{\"text\":\"nectar\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NectarBeautyHub\",\"name\":\"NectarBeautyHub\",\"id\":3999803356,\"id_str\":\"3999803356\",\"indices\":[231,247]}],\"urls\":[],\"media\":[{\"id\":1554407527034589184,\"id_str\":\"1554407527034589184\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJdaQUXEAAeqI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJdaQUXEAAeqI-.jpg\",\"url\":\"https:\\/\\/t.co\\/kisdiv3ca1\",\"display_url\":\"pic.twitter.com\\/kisdiv3ca1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554407529739964417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}}]},\"1801\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[188,195]},{\"text\":\"LOONAinLA\",\"indices\":[197,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1802\":{\"hashtags\":[{\"text\":\"Trending\",\"indices\":[86,95]},{\"text\":\"TrendingNow\",\"indices\":[96,108]},{\"text\":\"Machala\",\"indices\":[109,117]},{\"text\":\"Wizkidfc\",\"indices\":[118,127]},{\"text\":\"Yankees\",\"indices\":[128,136]},{\"text\":\"oilandgas\",\"indices\":[137,147]},{\"text\":\"CCTVFootage\",\"indices\":[148,160]},{\"text\":\"BIGBANG_StillLife\",\"indices\":[161,179]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[180,198]},{\"text\":\"OBSYDIACrossing\",\"indices\":[199,215]},{\"text\":\"Taiwan\",\"indices\":[216,223]},{\"text\":\"instablog\",\"indices\":[224,234]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jegcysystemsltd\",\"name\":\"JEGCY SYSTEMS COMPANY LTD\",\"id\":1333394451625021440,\"id_str\":\"1333394451625021440\",\"indices\":[18,34]}],\"urls\":[],\"media\":[{\"id\":1554404712224636934,\"id_str\":\"1554404712224636934\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554404712224636934\\/pu\\/img\\/IwJ62_wVzglKB66w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554404712224636934\\/pu\\/img\\/IwJ62_wVzglKB66w.jpg\",\"url\":\"https:\\/\\/t.co\\/lCrcL9ajAW\",\"display_url\":\"pic.twitter.com\\/lCrcL9ajAW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jegcysystemsltd\\/status\\/1554406477242195968\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1803\":{\"hashtags\":[{\"text\":\"BBC\",\"indices\":[48,52]},{\"text\":\"Obidatti2023\",\"indices\":[53,66]},{\"text\":\"GoodGovernance\",\"indices\":[67,82]},{\"text\":\"NewNigeria\",\"indices\":[83,94]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[95,112]},{\"text\":\"NigeriaNews\",\"indices\":[113,125]},{\"text\":\"BBNaija7\",\"indices\":[126,135]},{\"text\":\"Nigeria\",\"indices\":[136,144]},{\"text\":\"buhari\",\"indices\":[145,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"helicopter\",\"indices\":[161,172]},{\"text\":\"Ukraine\",\"indices\":[173,181]},{\"text\":\"Lagos\",\"indices\":[182,188]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[189,211]},{\"text\":\"Obidiots\",\"indices\":[212,221]},{\"text\":\"bachelorette\",\"indices\":[222,235]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[236,251]},{\"text\":\"BBNaijaS7\",\"indices\":[252,262]},{\"text\":\"Arewa4PeterObi\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554405846892814336,\"id_str\":\"1554405846892814336\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"url\":\"https:\\/\\/t.co\\/DGb6mixasv\",\"display_url\":\"pic.twitter.com\\/DGb6mixasv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KingsEmpire1\\/status\\/1554406081807503360\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}}}]},\"1804\":{\"hashtags\":[{\"text\":\"firmusadvisory\",\"indices\":[69,84]},{\"text\":\"easystart\",\"indices\":[85,95]},{\"text\":\"InspiredToDeliverValue\",\"indices\":[96,119]},{\"text\":\"startnowstarteasy\",\"indices\":[120,138]},{\"text\":\"Messi\",\"indices\":[139,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"GoodMorningCMSir\",\"indices\":[154,171]},{\"text\":\"businessgrowth\",\"indices\":[172,187]},{\"text\":\"socialmedia\",\"indices\":[188,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UTJedhDrZX\",\"expanded_url\":\"https:\\/\\/us06web.zoom.us\\/...\\/reg...\\/WN_K8QqJC7WQB-Jmyq2JCRBRQ\",\"display_url\":\"us06web.zoom.us\\/...\\/reg...\\/WN_\\u2026\",\"indices\":[44,67]}]},\"1805\":{\"hashtags\":[{\"text\":\"WonderWoman\",\"indices\":[53,65]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[116,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AmbLiuXiaoMing\",\"name\":\"\\u5218\\u6653\\u660eLiu Xiaoming\",\"id\":1181936905820266496,\"id_str\":\"1181936905820266496\",\"indices\":[0,15]},{\"screen_name\":\"Ambassador_Liu\",\"name\":\"Liu Yuxi\",\"id\":1186556215767252992,\"id_str\":\"1186556215767252992\",\"indices\":[16,31]}],\"urls\":[]},\"1806\":{\"hashtags\":[{\"text\":\"WonderWoman\",\"indices\":[31,43]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"China\",\"indices\":[94,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AndyBxxx\",\"name\":\"Andy Boreham \\u5b89\\u67cf\\u7136\",\"id\":23499976,\"id_str\":\"23499976\",\"indices\":[0,9]}],\"urls\":[]},\"1807\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[186,194]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"helicopter\",\"indices\":[205,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1808\":{\"hashtags\":[{\"text\":\"WonderWoman\",\"indices\":[21,33]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"China\",\"indices\":[84,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1809\":{\"hashtags\":[{\"text\":\"NaijaloveinfoForeign\",\"indices\":[113,134]},{\"text\":\"politics\",\"indices\":[135,144]},{\"text\":\"Naijaloveinfo\",\"indices\":[145,159]},{\"text\":\"NancyPelosi\",\"indices\":[160,172]},{\"text\":\"pelosivisittotaiwan\",\"indices\":[173,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1fTWGdlOMl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timand2037\\/status\\/1553522343657472003\",\"display_url\":\"twitter.com\\/timand2037\\/sta\\u2026\",\"indices\":[194,217]}]},\"1810\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[55,62]},{\"text\":\"Atiku\",\"indices\":[63,69]},{\"text\":\"davidhundeyin\",\"indices\":[70,84]},{\"text\":\"chelsea\",\"indices\":[85,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"BBNajia\",\"indices\":[102,110]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[111,136]},{\"text\":\"PeterObi4President2023\",\"indices\":[137,160]},{\"text\":\"peterobi\",\"indices\":[161,170]},{\"text\":\"muslim\",\"indices\":[171,178]},{\"text\":\"Christianity\",\"indices\":[179,192]},{\"text\":\"labour\",\"indices\":[193,200]},{\"text\":\"lagos\",\"indices\":[201,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554403155420618752,\"id_str\":\"1554403155420618752\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403155420618752\\/pu\\/img\\/RnRy9sAjpP0t2vQv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403155420618752\\/pu\\/img\\/RnRy9sAjpP0t2vQv.jpg\",\"url\":\"https:\\/\\/t.co\\/SArKA5ljZo\",\"display_url\":\"pic.twitter.com\\/SArKA5ljZo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DivineCity6\\/status\\/1554403204703703043\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1811\":{\"hashtags\":[{\"text\":\"batshetima\",\"indices\":[211,222]},{\"text\":\"bbnseason7\",\"indices\":[223,234]},{\"text\":\"infonaija\",\"indices\":[235,245]},{\"text\":\"Rufai\",\"indices\":[247,253]},{\"text\":\"Taiwan\",\"indices\":[255,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554400010002960384,\"id_str\":\"1554400010002960384\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJWktMXEAAwTmR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJWktMXEAAwTmR.jpg\",\"url\":\"https:\\/\\/t.co\\/hEpOWmHgUo\",\"display_url\":\"pic.twitter.com\\/hEpOWmHgUo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/upshotreports\\/status\\/1554400016898445312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":641,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":641,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"}}}]},\"1812\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"helicopter\",\"indices\":[130,141]},{\"text\":\"watches\",\"indices\":[142,150]},{\"text\":\"jewelry\",\"indices\":[151,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554399948971687936,\"id_str\":\"1554399948971687936\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ1XwAAgqnZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ1XwAAgqnZ.jpg\",\"url\":\"https:\\/\\/t.co\\/sNo6nErSIl\",\"display_url\":\"pic.twitter.com\\/sNo6nErSIl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EstelleWatches\\/status\\/1554399955682557952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":792,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":792,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"}}}]},\"1813\":{\"hashtags\":[{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[90,97]},{\"text\":\"BBNajia\",\"indices\":[128,136]},{\"text\":\"Taiwan\",\"indices\":[137,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1814\":{\"hashtags\":[{\"text\":\"BB24\",\"indices\":[83,88]},{\"text\":\"BBNaija\",\"indices\":[90,98]},{\"text\":\"BeautyTukura\",\"indices\":[109,122]},{\"text\":\"beauty\",\"indices\":[125,132]},{\"text\":\"BambamSorry\",\"indices\":[135,147]},{\"text\":\"Wike\",\"indices\":[148,153]},{\"text\":\"TheBachelorette\",\"indices\":[154,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"LOONAinLA\",\"indices\":[179,189]},{\"text\":\"helicopter\",\"indices\":[190,201]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[202,220]},{\"text\":\"AlQaeda\",\"indices\":[221,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3GvsGRqMZ\",\"expanded_url\":\"https:\\/\\/hotstorybase.wordpress.com\\/2022\\/08\\/02\\/video-sex-already-in-the-bbnaija-house\\/\",\"display_url\":\"hotstorybase.wordpress.com\\/2022\\/08\\/02\\/vid\\u2026\",\"indices\":[232,255]}],\"media\":[{\"id\":1554397528505958400,\"id_str\":\"1554397528505958400\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"url\":\"https:\\/\\/t.co\\/egpmD7humb\",\"display_url\":\"pic.twitter.com\\/egpmD7humb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hotstorybase\\/status\\/1554397534994501634\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"1815\":{\"hashtags\":[{\"text\":\"TheBachelorette\",\"indices\":[107,123]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"BBNajia\",\"indices\":[134,142]},{\"text\":\"NanaNu\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Postsubman\",\"name\":\"Postsubman\",\"id\":913431260554567680,\"id_str\":\"913431260554567680\",\"indices\":[153,164]},{\"screen_name\":\"UtdDistrict\",\"name\":\"Utd District\",\"id\":1230516935072321537,\"id_str\":\"1230516935072321537\",\"indices\":[166,178]},{\"screen_name\":\"PH_Socials\",\"name\":\"Port Harcourt Socials\\ud83c\\uddf3\\ud83c\\uddec\\ud83d\\udcaf%OBI-dient\\ud83d\\udcaa\",\"id\":1367396160563007514,\"id_str\":\"1367396160563007514\",\"indices\":[180,191]},{\"screen_name\":\"Chinnizm\",\"name\":\"\\ud835\\ude1a\\ud835\\ude26\\ud835\\ude39\\ud835\\ude3a Chinnizm of PORTHARCOURT \\u2764\\ufe0f\",\"id\":1490813505397829636,\"id_str\":\"1490813505397829636\",\"indices\":[193,202]},{\"screen_name\":\"genesisultan\",\"name\":\"PORTHARCOURT SELFLOADER PLUG\",\"id\":1487044264848769025,\"id_str\":\"1487044264848769025\",\"indices\":[204,217]},{\"screen_name\":\"Kcee_cares\",\"name\":\"Kcee_1 of p\\u00f4rth\\u0101r\\u00e7\\u00f4urt\",\"id\":1481737250509574149,\"id_str\":\"1481737250509574149\",\"indices\":[219,230]},{\"screen_name\":\"Lizzyda16843901\",\"name\":\"Duchess of Portharcourt\",\"id\":1201839702157996034,\"id_str\":\"1201839702157996034\",\"indices\":[232,248]},{\"screen_name\":\"Manlike_ED\",\"name\":\"Nwo-Diali Port Harcourt\\ud80c\\udcf5\",\"id\":2250580296,\"id_str\":\"2250580296\",\"indices\":[250,261]},{\"screen_name\":\"Mr_Pucca\",\"name\":\"Godfather of PortHarcourt \\ud83c\\udfa9\",\"id\":322675109,\"id_str\":\"322675109\",\"indices\":[263,272]}],\"urls\":[],\"media\":[{\"id\":1554397117984243712,\"id_str\":\"1554397117984243712\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJT8XlXgAAIgyR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJT8XlXgAAIgyR.jpg\",\"url\":\"https:\\/\\/t.co\\/10ngdvISoZ\",\"display_url\":\"pic.twitter.com\\/10ngdvISoZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itzprince007\\/status\\/1554397130789457921\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1444,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":846,\"h\":1200,\"resize\":\"fit\"}}}]},\"1816\":{\"hashtags\":[{\"text\":\"SouthEast\",\"indices\":[129,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]},{\"text\":\"Rufai\",\"indices\":[148,154]},{\"text\":\"ASUU\",\"indices\":[155,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"Osinbajo\",\"indices\":[169,178]},{\"text\":\"Omatseye\",\"indices\":[179,188]},{\"text\":\"CaterEfe\",\"indices\":[189,198]},{\"text\":\"OsamaBinLaden\",\"indices\":[199,213]},{\"text\":\"ZackOrji\",\"indices\":[214,223]},{\"text\":\"Chelsea\",\"indices\":[224,232]},{\"text\":\"Fati\",\"indices\":[233,238]},{\"text\":\"Kaduna\",\"indices\":[239,246]},{\"text\":\"Ethiopia\",\"indices\":[247,256]},{\"text\":\"China\",\"indices\":[257,263]},{\"text\":\"Igbos\",\"indices\":[264,270]},{\"text\":\"AlQaeda\",\"indices\":[271,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554396625849704448,\"id_str\":\"1554396625849704448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":519,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"}}}]},\"1817\":{\"hashtags\":[{\"text\":\"Attention\",\"indices\":[42,52]},{\"text\":\"sarkodie\",\"indices\":[145,154]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"thehighestblog\",\"indices\":[175,190]},{\"text\":\"swanskid\",\"indices\":[191,200]},{\"text\":\"LOONAinLA\",\"indices\":[201,211]},{\"text\":\"abstorm\",\"indices\":[212,220]},{\"text\":\"HOBIPALOOZA\",\"indices\":[221,233]},{\"text\":\"chatsekscerita\",\"indices\":[234,249]},{\"text\":\"BBNajia\",\"indices\":[250,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Swanskid_\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"indices\":[19,29]},{\"screen_name\":\"kwadwosheldon\",\"name\":\"Kwadwo Sheldon\",\"id\":1368507991499149329,\"id_str\":\"1368507991499149329\",\"indices\":[259,273]}],\"urls\":[],\"media\":[{\"id\":1554394546628329473,\"id_str\":\"1554394546628329473\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554394546628329473\\/pu\\/img\\/8Znf4h_APNDST1SU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554394546628329473\\/pu\\/img\\/8Znf4h_APNDST1SU.jpg\",\"url\":\"https:\\/\\/t.co\\/kNfJpXzEWh\",\"display_url\":\"pic.twitter.com\\/kNfJpXzEWh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554395441390915585\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}}}]},\"1818\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[14,20]},{\"text\":\"Taiwan\",\"indices\":[34,41]}],\"symbols\":[{\"text\":\"Gold\",\"indices\":[69,74]}],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1xtob4nllt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TpyxaNews\\/status\\/1554368842343800832\",\"display_url\":\"twitter.com\\/TpyxaNews\\/stat\\u2026\",\"indices\":[84,107]}]},\"1819\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[247,254]},{\"text\":\"TheBachelorette\",\"indices\":[255,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554390527885328385,\"id_str\":\"1554390527885328385\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJN8xjWQAEobyL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJN8xjWQAEobyL.jpg\",\"url\":\"https:\\/\\/t.co\\/L1zRvN2KQu\",\"display_url\":\"pic.twitter.com\\/L1zRvN2KQu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/chairbornegsl\\/status\\/1554390539612684290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1820\":{\"hashtags\":[{\"text\":\"LittleMissMemes\",\"indices\":[134,150]},{\"text\":\"Taiwan\",\"indices\":[151,158]},{\"text\":\"TheBachelorette\",\"indices\":[159,175]},{\"text\":\"smockafriq\",\"indices\":[176,187]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554390085935718406,\"id_str\":\"1554390085935718406\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJNjDKWYAYp2oC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJNjDKWYAYp2oC.jpg\",\"url\":\"https:\\/\\/t.co\\/HfKQxECynC\",\"display_url\":\"pic.twitter.com\\/HfKQxECynC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/smockafriq\\/status\\/1554390099101712384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"1821\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[152,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1822\":{\"hashtags\":[{\"text\":\"BettaIsBetta4APC\",\"indices\":[11,28]},{\"text\":\"BettaEdu\",\"indices\":[32,41]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[42,49]},{\"text\":\"Pelosi\",\"indices\":[50,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554385342282797061,\"id_str\":\"1554385342282797061\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJJO7rXEAUXnEf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJJO7rXEAUXnEf.jpg\",\"url\":\"https:\\/\\/t.co\\/UM1qF5VIak\",\"display_url\":\"pic.twitter.com\\/UM1qF5VIak\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abasisom\\/status\\/1554385350532939777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"}}}]},\"1823\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[129,137]},{\"text\":\"Carterefe\",\"indices\":[138,148]},{\"text\":\"breastfeeding\",\"indices\":[149,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"HOBIPALOOZA\",\"indices\":[172,184]},{\"text\":\"BlokirKominfo\",\"indices\":[185,199]},{\"text\":\"Serbia\",\"indices\":[200,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554378754461519872,\"id_str\":\"1554378754461519872\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554378754461519872\\/pu\\/img\\/VLO3xYBYGTUg7Kes.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554378754461519872\\/pu\\/img\\/VLO3xYBYGTUg7Kes.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjm7zKFdQa\",\"display_url\":\"pic.twitter.com\\/Qjm7zKFdQa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnduranceOfoye2\\/status\\/1554378933935771649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1824\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[115,122]},{\"text\":\"China\",\"indices\":[123,129]},{\"text\":\"usa\",\"indices\":[130,134]},{\"text\":\"ChinaTaiwan\",\"indices\":[135,147]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CryptoRusputin\",\"name\":\"Rasputin\\ud80c\\udd00\\u1d36\\u02b3 \\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\\u200e\",\"id\":499545927,\"id_str\":\"499545927\",\"indices\":[0,15]}],\"urls\":[]},\"1825\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[76,83]},{\"text\":\"BBNajia\",\"indices\":[84,92]},{\"text\":\"Malaysia\",\"indices\":[93,102]},{\"text\":\"Trending\",\"indices\":[103,112]},{\"text\":\"TrendingNow\",\"indices\":[113,125]},{\"text\":\"viral\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554366488051580929,\"id_str\":\"1554366488051580929\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"url\":\"https:\\/\\/t.co\\/79PsEmTWxo\",\"display_url\":\"pic.twitter.com\\/79PsEmTWxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554366504594030592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":905,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":848,\"resize\":\"fit\"}}}]},\"1826\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"helicopter\",\"indices\":[83,94]},{\"text\":\"BBNajia\",\"indices\":[95,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1827\":{\"hashtags\":[{\"text\":\"Obidatti023\",\"indices\":[145,157]},{\"text\":\"WEURO2022\",\"indices\":[158,168]},{\"text\":\"PeterObi4President2023\",\"indices\":[169,192]},{\"text\":\"Taiwan\",\"indices\":[193,200]},{\"text\":\"BBNajiaS7\",\"indices\":[201,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554339791671595009,\"id_str\":\"1554339791671595009\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIfzibXEAEOoL2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIfzibXEAEOoL2.jpg\",\"url\":\"https:\\/\\/t.co\\/sXhWaguCll\",\"display_url\":\"pic.twitter.com\\/sXhWaguCll\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554339795895488513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1767,\"h\":1421,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":547,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":965,\"resize\":\"fit\"}}}]},\"1828\":{\"hashtags\":[{\"text\":\"Obidatti2023\",\"indices\":[135,148]},{\"text\":\"Taiwan\",\"indices\":[149,156]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[157,182]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[113,122]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[123,134]}],\"urls\":[],\"media\":[{\"id\":1554335951442350080,\"id_str\":\"1554335951442350080\",\"indices\":[183,206],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIcUAdXEAA5y6T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIcUAdXEAA5y6T.jpg\",\"url\":\"https:\\/\\/t.co\\/k4GUlSEBIn\",\"display_url\":\"pic.twitter.com\\/k4GUlSEBIn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554335953795293184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":486,\"h\":493,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":486,\"h\":493,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":493,\"resize\":\"fit\"}}}]},\"1829\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"BBNajia\",\"indices\":[142,150]},{\"text\":\"helicopter\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1830\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]},{\"text\":\"BBNajia\",\"indices\":[90,98]},{\"text\":\"HOBIPALOOZA\",\"indices\":[99,111]},{\"text\":\"WEURO2022\",\"indices\":[112,122]},{\"text\":\"BBNajiaS7\",\"indices\":[123,133]},{\"text\":\"Wizkidfc\",\"indices\":[134,143]},{\"text\":\"sabinus\",\"indices\":[144,152]},{\"text\":\"BBNajiaS7\",\"indices\":[153,163]},{\"text\":\"CartierThailand\",\"indices\":[164,180]},{\"text\":\"DGISPR\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wizkidfc_\",\"name\":\"Wizkid FC\",\"id\":781048616064585728,\"id_str\":\"781048616064585728\",\"indices\":[34,44]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AyJB2cNvoF\",\"expanded_url\":\"https:\\/\\/youtu.be\\/U5KSgu0lebs\",\"display_url\":\"youtu.be\\/U5KSgu0lebs\",\"indices\":[58,81]}],\"media\":[{\"id\":1554330385508597763,\"id_str\":\"1554330385508597763\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330385508597763\\/pu\\/img\\/rblIvqs9hj5jpqfG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330385508597763\\/pu\\/img\\/rblIvqs9hj5jpqfG.jpg\",\"url\":\"https:\\/\\/t.co\\/Gsc6VYtLIQ\",\"display_url\":\"pic.twitter.com\\/Gsc6VYtLIQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dopatunes\\/status\\/1554330444191207425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":402,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":402,\"resize\":\"fit\"}}}]},\"1831\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]},{\"text\":\"BBNajia\",\"indices\":[90,98]},{\"text\":\"HOBIPALOOZA\",\"indices\":[99,111]},{\"text\":\"WEURO2022\",\"indices\":[112,122]},{\"text\":\"BBNajiaS7\",\"indices\":[123,133]},{\"text\":\"sabinus\",\"indices\":[134,142]},{\"text\":\"Machala\",\"indices\":[143,151]},{\"text\":\"Carterefe\",\"indices\":[152,162]},{\"text\":\"bachelorette\",\"indices\":[164,177]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[178,196]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wizkidfc_\",\"name\":\"Wizkid FC\",\"id\":781048616064585728,\"id_str\":\"781048616064585728\",\"indices\":[34,44]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AyJB2cNvoF\",\"expanded_url\":\"https:\\/\\/youtu.be\\/U5KSgu0lebs\",\"display_url\":\"youtu.be\\/U5KSgu0lebs\",\"indices\":[58,81]}],\"media\":[{\"id\":1554329875804217344,\"id_str\":\"1554329875804217344\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIWyW8WYAA4i5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIWyW8WYAA4i5m.jpg\",\"url\":\"https:\\/\\/t.co\\/xFqlXftWei\",\"display_url\":\"pic.twitter.com\\/xFqlXftWei\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dopatunes\\/status\\/1554329878681604096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":872,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":872,\"h\":488,\"resize\":\"fit\"}}}]},\"1832\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[163,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"WEURO2022\",\"indices\":[184,194]},{\"text\":\"JacksonWang\",\"indices\":[195,207]},{\"text\":\"KareenaKapoorKhan\",\"indices\":[208,226]},{\"text\":\"CommonwealthGames2022\",\"indices\":[227,249]},{\"text\":\"bellashmurda\",\"indices\":[250,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[264,273]}],\"urls\":[],\"media\":[{\"id\":1554323141777932289,\"id_str\":\"1554323141777932289\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554323141777932289\\/pu\\/img\\/kC5m9oweN5PtoXJU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554323141777932289\\/pu\\/img\\/kC5m9oweN5PtoXJU.jpg\",\"url\":\"https:\\/\\/t.co\\/Q4lHDOIvDn\",\"display_url\":\"pic.twitter.com\\/Q4lHDOIvDn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olomo_deeno\\/status\\/1554323533551095813\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":315,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":555,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":592,\"h\":1280,\"resize\":\"fit\"}}}]},\"1833\":{\"hashtags\":[{\"text\":\"Cucurella\",\"indices\":[226,236]},{\"text\":\"ASUU\",\"indices\":[237,242]},{\"text\":\"BBNajia\",\"indices\":[243,251]},{\"text\":\"Colwill\",\"indices\":[252,260]},{\"text\":\"Taiwan\",\"indices\":[261,268]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MOphotos_\",\"name\":\"MOphotos\\ud83d\\udcf8\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1486535340982685700,\"id_str\":\"1486535340982685700\",\"indices\":[214,224]}],\"urls\":[],\"media\":[{\"id\":1554321139295571971,\"id_str\":\"1554321139295571971\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIO106X0AMTA5f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIO106X0AMTA5f.jpg\",\"url\":\"https:\\/\\/t.co\\/uAJmMcFR0j\",\"display_url\":\"pic.twitter.com\\/uAJmMcFR0j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOphotos_\\/status\\/1554321183327375362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1834\":{\"hashtags\":[{\"text\":\"ChrisEvans\",\"indices\":[89,100]},{\"text\":\"christyo\",\"indices\":[101,110]},{\"text\":\"sabinus\",\"indices\":[111,119]},{\"text\":\"Lagos\",\"indices\":[120,126]},{\"text\":\"Amen\",\"indices\":[127,132]},{\"text\":\"1stOfAugust\",\"indices\":[133,145]},{\"text\":\"ZackOrji\",\"indices\":[146,155]},{\"text\":\"SamOmatseye\",\"indices\":[156,168]},{\"text\":\"Tinubu\",\"indices\":[169,176]},{\"text\":\"Modella\",\"indices\":[177,185]},{\"text\":\"BambamSorry\",\"indices\":[186,198]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"Tuesday\",\"indices\":[207,215]},{\"text\":\"tuesdaythoughts\",\"indices\":[216,232]},{\"text\":\"tuesdaymotivations\",\"indices\":[233,252]},{\"text\":\"tuesdayvibe\",\"indices\":[253,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uYIZsnNsWW\",\"expanded_url\":\"https:\\/\\/fb.watch\\/eEmUWVuY4a\\/\",\"display_url\":\"fb.watch\\/eEmUWVuY4a\\/\",\"indices\":[0,23]}]},\"1835\":{\"hashtags\":[{\"text\":\"Crypto\",\"indices\":[216,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"DGISPR\",\"indices\":[232,239]},{\"text\":\"NFT\",\"indices\":[240,244]},{\"text\":\"sabinus\",\"indices\":[245,253]},{\"text\":\"BBNajia\",\"indices\":[254,262]},{\"text\":\"cryptocurrency\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/toWDdXD6xY\",\"expanded_url\":\"https:\\/\\/youtu.be\\/B99G2_izh-w\",\"display_url\":\"youtu.be\\/B99G2_izh-w\",\"indices\":[0,23]}]},\"1836\":{\"hashtags\":[{\"text\":\"Crypto\",\"indices\":[216,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"DGISPR\",\"indices\":[232,239]},{\"text\":\"NFT\",\"indices\":[240,244]},{\"text\":\"sabinus\",\"indices\":[245,253]},{\"text\":\"BBNajia\",\"indices\":[254,262]},{\"text\":\"cryptocurrency\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/toWDdXD6xY\",\"expanded_url\":\"https:\\/\\/youtu.be\\/B99G2_izh-w\",\"display_url\":\"youtu.be\\/B99G2_izh-w\",\"indices\":[0,23]}]},\"1837\":{\"hashtags\":[{\"text\":\"movienight\",\"indices\":[55,66]},{\"text\":\"movie\",\"indices\":[67,73]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"risethemovie\",\"indices\":[93,106]},{\"text\":\"RiseWithUs\",\"indices\":[107,118]},{\"text\":\"riseabove\",\"indices\":[119,129]},{\"text\":\"julydump\",\"indices\":[142,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EdifyCity\",\"name\":\"EdifyCity\",\"id\":1176540560,\"id_str\":\"1176540560\",\"indices\":[130,140]}],\"urls\":[],\"media\":[{\"id\":1554308303773220864,\"id_str\":\"1554308303773220864\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIDKs3XwAAJirR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIDKs3XwAAJirR.jpg\",\"url\":\"https:\\/\\/t.co\\/3UGKg2j9zW\",\"display_url\":\"pic.twitter.com\\/3UGKg2j9zW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsAlaremu\\/status\\/1554308386270986240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"}}}]},\"1838\":{\"hashtags\":[{\"text\":\"Mount\",\"indices\":[44,50]},{\"text\":\"Tinubu\",\"indices\":[51,58]},{\"text\":\"China\",\"indices\":[59,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Tembisa\",\"indices\":[74,82]},{\"text\":\"HOBIPALOOZA\",\"indices\":[83,95]},{\"text\":\"BambamSorry\",\"indices\":[96,108]},{\"text\":\"BBNajia\",\"indices\":[109,117]},{\"text\":\"helicopter\",\"indices\":[118,129]},{\"text\":\"WEURO2022\",\"indices\":[130,140]},{\"text\":\"BBNajiaS7\",\"indices\":[141,151]},{\"text\":\"JacksonWang\",\"indices\":[152,164]},{\"text\":\"bachelorette\",\"indices\":[165,178]},{\"text\":\"Tembisa\",\"indices\":[179,187]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4JiZD94nSX\",\"expanded_url\":\"https:\\/\\/youtu.be\\/juL8Q_ISO-0\",\"display_url\":\"youtu.be\\/juL8Q_ISO-0\",\"indices\":[20,43]}],\"media\":[{\"id\":1554297524537724929,\"id_str\":\"1554297524537724929\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554297524537724929\\/pu\\/img\\/EtefB9Ms4dnkcfgt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554297524537724929\\/pu\\/img\\/EtefB9Ms4dnkcfgt.jpg\",\"url\":\"https:\\/\\/t.co\\/HfsltgYerP\",\"display_url\":\"pic.twitter.com\\/HfsltgYerP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ayoola_igwe\\/status\\/1554297604602793984\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"1839\":{\"hashtags\":[{\"text\":\"Poll\",\"indices\":[91,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1840\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"BambamSorry\",\"indices\":[29,41]},{\"text\":\"CartierThailand\",\"indices\":[42,58]},{\"text\":\"MissUniverseThailand2022\",\"indices\":[59,84]},{\"text\":\"BBNajia\",\"indices\":[85,93]},{\"text\":\"assmenassociation\",\"indices\":[94,112]},{\"text\":\"assmenass\",\"indices\":[113,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554287372942049280,\"id_str\":\"1554287372942049280\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554287372942049280\\/pu\\/img\\/ph3EF-FgWCBpZzbK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554287372942049280\\/pu\\/img\\/ph3EF-FgWCBpZzbK.jpg\",\"url\":\"https:\\/\\/t.co\\/dHcRIVWsmH\",\"display_url\":\"pic.twitter.com\\/dHcRIVWsmH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tiktokvidncom\\/status\\/1554287425572290564\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1841\":{\"hashtags\":[{\"text\":\"GospelEmpireGh\",\"indices\":[148,163]},{\"text\":\"StrictlyGospel\",\"indices\":[164,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"LaalSinghChaddha\",\"indices\":[188,205]},{\"text\":\"BBNajia\",\"indices\":[206,214]},{\"text\":\"BambamSorry\",\"indices\":[215,227]},{\"text\":\"WEURO2022\",\"indices\":[228,238]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[239,259]},{\"text\":\"IdolsSA\",\"indices\":[260,268]},{\"text\":\"DGISPR\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GospelEmpireGh\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"indices\":[80,95]}],\"urls\":[],\"media\":[{\"id\":1554278032101228544,\"id_str\":\"1554278032101228544\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHnoqGWQAAPRzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHnoqGWQAAPRzt.jpg\",\"url\":\"https:\\/\\/t.co\\/kTBD54YVNs\",\"display_url\":\"pic.twitter.com\\/kTBD54YVNs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554278034739544067\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1842\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"BBNajia\",\"indices\":[171,179]},{\"text\":\"BambamSorry\",\"indices\":[181,193]},{\"text\":\"WEURO2022\",\"indices\":[195,205]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[207,226]},{\"text\":\"breastfeeding\",\"indices\":[228,242]},{\"text\":\"Daniella\",\"indices\":[244,253]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[255,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554277465144664064,\"id_str\":\"1554277465144664064\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHnHqBXoAAw03W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHnHqBXoAAw03W.jpg\",\"url\":\"https:\\/\\/t.co\\/JUSyuW8qX1\",\"display_url\":\"pic.twitter.com\\/JUSyuW8qX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Adedamolaartt\\/status\\/1554277477400330240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1843\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[249,259]},{\"text\":\"BambamSorry\",\"indices\":[260,272]},{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1844\":{\"hashtags\":[{\"text\":\"Ayman\",\"indices\":[39,45]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"China\",\"indices\":[176,182]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[8,14]}],\"urls\":[]},\"1845\":{\"hashtags\":[{\"text\":\"twitterblades\",\"indices\":[18,32]},{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"WEURO2022\",\"indices\":[41,51]},{\"text\":\"CartierThailand\",\"indices\":[52,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"shattawalegh\",\"name\":\"SHATTA WALE\",\"id\":310709509,\"id_str\":\"310709509\",\"indices\":[77,90]}],\"urls\":[],\"media\":[{\"id\":1554263591699759108,\"id_str\":\"1554263591699759108\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554263591699759108\\/pu\\/img\\/otwv_rThENenUvYE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554263591699759108\\/pu\\/img\\/otwv_rThENenUvYE.jpg\",\"url\":\"https:\\/\\/t.co\\/D56uMBIgM0\",\"display_url\":\"pic.twitter.com\\/D56uMBIgM0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vido_Lengar\\/status\\/1554263646557147138\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"1846\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[75,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"Nigeria\",\"indices\":[94,102]},{\"text\":\"BLACKPINK\",\"indices\":[103,113]},{\"text\":\"twitterblades\",\"indices\":[114,128]},{\"text\":\"BBNaijaSeason7\",\"indices\":[129,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1847\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"WEURO2022\",\"indices\":[26,36]},{\"text\":\"BambamSorry\",\"indices\":[37,49]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[50,68]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[70,88]},{\"text\":\"August\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554259722835984384,\"id_str\":\"1554259722835984384\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHW-6xWAAA6Jw-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHW-6xWAAA6Jw-.jpg\",\"url\":\"https:\\/\\/t.co\\/IBXTyaSezn\",\"display_url\":\"pic.twitter.com\\/IBXTyaSezn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Micheal_keyz_\\/status\\/1554259730595561472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1848\":{\"hashtags\":[{\"text\":\"MissUniverseThailand2022\",\"indices\":[47,72]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[73,92]},{\"text\":\"twitterblades\",\"indices\":[93,107]},{\"text\":\"BLACKPINK\",\"indices\":[108,118]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[119,138]},{\"text\":\"Kosovo\",\"indices\":[139,146]},{\"text\":\"twitterblades\",\"indices\":[147,161]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[162,182]},{\"text\":\"bbillkin\",\"indices\":[183,192]},{\"text\":\"CartierThailand\",\"indices\":[193,209]},{\"text\":\"helicopter\",\"indices\":[210,221]},{\"text\":\"BambamSorry\",\"indices\":[222,234]},{\"text\":\"Taiwan\",\"indices\":[235,242]},{\"text\":\"itscomehome\",\"indices\":[243,255]},{\"text\":\"BORNPINK\",\"indices\":[256,265]},{\"text\":\"BBNaija7\",\"indices\":[266,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"paragon_qtm\",\"name\":\"PARAGON QTM\",\"id\":731499127255773184,\"id_str\":\"731499127255773184\",\"indices\":[8,20]},{\"screen_name\":\"ZoroSwagbag\",\"name\":\"Zeebeibe\",\"id\":252961245,\"id_str\":\"252961245\",\"indices\":[24,36]},{\"screen_name\":\"Talk2Raw\",\"name\":\"Livinus\",\"id\":1364053782,\"id_str\":\"1364053782\",\"indices\":[37,46]}],\"urls\":[],\"media\":[{\"id\":1554255024049557505,\"id_str\":\"1554255024049557505\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554255024049557505\\/pu\\/img\\/ajEELLVV9VcMRuPR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554255024049557505\\/pu\\/img\\/ajEELLVV9VcMRuPR.jpg\",\"url\":\"https:\\/\\/t.co\\/3fsUrrjRPY\",\"display_url\":\"pic.twitter.com\\/3fsUrrjRPY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/streetdoings\\/status\\/1554255179482107909\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1849\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[109,119]},{\"text\":\"BBNajia\",\"indices\":[120,128]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[129,144]},{\"text\":\"BBNaijaSeason7\",\"indices\":[145,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bodexng\",\"name\":\"Bodex Media Nigeria\",\"id\":2383332362,\"id_str\":\"2383332362\",\"indices\":[87,95]},{\"screen_name\":\"realbodex\",\"name\":\"Bodex F. Hungbo, SPMIIM\",\"id\":844494857032941568,\"id_str\":\"844494857032941568\",\"indices\":[96,106]}],\"urls\":[],\"media\":[{\"id\":1554253617921671169,\"id_str\":\"1554253617921671169\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"url\":\"https:\\/\\/t.co\\/2qnLi9wjTb\",\"display_url\":\"pic.twitter.com\\/2qnLi9wjTb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adamazi_mbonu\\/status\\/1554253705226162176\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1850\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"TheFlash\",\"indices\":[36,45]},{\"text\":\"BBNajiaS7\",\"indices\":[46,56]},{\"text\":\"Obidatti2023\",\"indices\":[57,70]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[71,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MFXv8By8Ri\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Movement_4_Obi\\/status\\/1554195741203202049\",\"display_url\":\"twitter.com\\/Movement_4_Obi\\u2026\",\"indices\":[97,120]}]},\"1851\":{\"hashtags\":[{\"text\":\"BambamSorry\",\"indices\":[36,48]},{\"text\":\"TheFlash\",\"indices\":[49,58]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[59,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554249901529305088,\"id_str\":\"1554249901529305088\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"url\":\"https:\\/\\/t.co\\/KnUGijTCXF\",\"display_url\":\"pic.twitter.com\\/KnUGijTCXF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desportspastor\\/status\\/1554249904695959556\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"}}}]},\"1852\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[14,21]},{\"text\":\"HOBIPALOOZA\",\"indices\":[22,34]},{\"text\":\"TheFlash\",\"indices\":[35,44]},{\"text\":\"BambamSorry\",\"indices\":[45,57]},{\"text\":\"AsiaCup2022\",\"indices\":[58,70]},{\"text\":\"asuu\",\"indices\":[71,76]},{\"text\":\"BB24\",\"indices\":[77,82]},{\"text\":\"trends\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554247548478554112,\"id_str\":\"1554247548478554112\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHL6RwWAAAK_50.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHL6RwWAAAK_50.jpg\",\"url\":\"https:\\/\\/t.co\\/YzAaOBweRs\",\"display_url\":\"pic.twitter.com\\/YzAaOBweRs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tominsin_Joseph\\/status\\/1554247555311099904\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1125,\"h\":1021,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":617,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1021,\"resize\":\"fit\"}}}]},\"1853\":{\"hashtags\":[{\"text\":\"TheFlash\",\"indices\":[62,71]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[82,101]},{\"text\":\"BeautyTukura\",\"indices\":[103,116]},{\"text\":\"AmakaXAmazons\",\"indices\":[118,132]},{\"text\":\"davidoafronation\",\"indices\":[134,151]},{\"text\":\"physed\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1854\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[43,51]},{\"text\":\"Wizkidfc\",\"indices\":[52,61]},{\"text\":\"BBNaijaSeason7\",\"indices\":[62,77]},{\"text\":\"BBNajia\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"HOBIPALOOZA\",\"indices\":[95,107]},{\"text\":\"BambamSorry\",\"indices\":[108,120]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[121,141]},{\"text\":\"CartierThailand\",\"indices\":[142,158]},{\"text\":\"helicopter\",\"indices\":[159,170]},{\"text\":\"bbillkin\",\"indices\":[171,180]},{\"text\":\"Serbia\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[32,41]}],\"urls\":[],\"media\":[{\"id\":1554239241328132099,\"id_str\":\"1554239241328132099\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554239241328132099\\/pu\\/img\\/YTcrJ5JFTX6htu34.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554239241328132099\\/pu\\/img\\/YTcrJ5JFTX6htu34.jpg\",\"url\":\"https:\\/\\/t.co\\/eLUBHzjIDG\",\"display_url\":\"pic.twitter.com\\/eLUBHzjIDG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BgmGoldenboy\\/status\\/1554239689049120772\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":722,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":677,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}}}]},\"1855\":{\"hashtags\":[{\"text\":\"GodAbeg\",\"indices\":[70,78]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"BambamSorry\",\"indices\":[90,102]},{\"text\":\"BLACKPINK\",\"indices\":[104,114]},{\"text\":\"twitterblades\",\"indices\":[116,130]},{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[141,159]},{\"text\":\"BamBamWeloveyou\",\"indices\":[161,177]},{\"text\":\"bbillkin\",\"indices\":[178,187]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554236780538380292,\"id_str\":\"1554236780538380292\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"url\":\"https:\\/\\/t.co\\/w6vBipGCtz\",\"display_url\":\"pic.twitter.com\\/w6vBipGCtz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatjaicaleb\\/status\\/1554236858175037440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1856\":{\"hashtags\":[{\"text\":\"adeyyytweets\",\"indices\":[28,41]},{\"text\":\"newmonth\",\"indices\":[42,51]},{\"text\":\"August\",\"indices\":[52,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"sabinus\",\"indices\":[68,76]},{\"text\":\"twitterblades\",\"indices\":[77,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554235553729716224,\"id_str\":\"1554235553729716224\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHBAF1XoAAAIYE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHBAF1XoAAAIYE.jpg\",\"url\":\"https:\\/\\/t.co\\/bXH7Zy0d9H\",\"display_url\":\"pic.twitter.com\\/bXH7Zy0d9H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/247_adeyyy\\/status\\/1554235564337012736\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1857\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[208,230]},{\"text\":\"afrogospel\",\"indices\":[231,242]},{\"text\":\"machala\",\"indices\":[243,251]},{\"text\":\"ASUUStrikeMustEnd\",\"indices\":[252,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FRANKRICHBOY\",\"name\":\"FRANK EDWARDS\",\"id\":183752203,\"id_str\":\"183752203\",\"indices\":[141,154]},{\"screen_name\":\"thisisprinx\",\"name\":\"Prinx Emmanuel !! Reverb!!\",\"id\":730354650239647744,\"id_str\":\"730354650239647744\",\"indices\":[155,167]},{\"screen_name\":\"Limoblaze\",\"name\":\"Limoblaze\",\"id\":739003249,\"id_str\":\"739003249\",\"indices\":[169,179]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[180,189]},{\"screen_name\":\"EeZeeConceptz18\",\"name\":\"EeZee Conceptz Global\",\"id\":848369989,\"id_str\":\"848369989\",\"indices\":[190,206]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Pxw3tlsJLO\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/omalexzy\\/not-me\",\"display_url\":\"distrokid.com\\/hyperfollow\\/om\\u2026\",\"indices\":[74,97]}],\"media\":[{\"id\":1554234790714511360,\"id_str\":\"1554234790714511360\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"url\":\"https:\\/\\/t.co\\/zQtHHQOWRz\",\"display_url\":\"pic.twitter.com\\/zQtHHQOWRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EphraimOmale\\/status\\/1554235561086525440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1858\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[117,125]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"HOBIPALOOZA\",\"indices\":[151,163]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UBAGroup\",\"name\":\"UBA Group\",\"id\":29944465,\"id_str\":\"29944465\",\"indices\":[180,189]},{\"screen_name\":\"OliverAlawuba\",\"name\":\"Oliver Alawuba\",\"id\":870653745096527872,\"id_str\":\"870653745096527872\",\"indices\":[190,204]},{\"screen_name\":\"TonyElumeluFDN\",\"name\":\"Tony Elumelu Foundation\",\"id\":277985183,\"id_str\":\"277985183\",\"indices\":[205,220]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/z3dW4u0zzE\",\"expanded_url\":\"https:\\/\\/brandescortng.com\\/i-am-very-pleased-to-announce-oliver-alawuba-as-the-new-group-md-ceo-of-uba-group-elumelu\\/\",\"display_url\":\"brandescortng.com\\/i-am-very-plea\\u2026\",\"indices\":[92,115]}]},\"1859\":{\"hashtags\":[{\"text\":\"NFTMarketplace\",\"indices\":[55,70]},{\"text\":\"openseanfts\",\"indices\":[71,83]},{\"text\":\"nftarts\",\"indices\":[84,92]},{\"text\":\"NFTCollection\",\"indices\":[93,107]},{\"text\":\"NFTCollectibles\",\"indices\":[108,124]},{\"text\":\"nftcollectors\",\"indices\":[125,139]},{\"text\":\"NFTCommmunity\",\"indices\":[140,154]},{\"text\":\"Ethereum\",\"indices\":[155,164]},{\"text\":\"Taiwan\",\"indices\":[165,172]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[173,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AP1GB4E6tn\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/matic\\/0x2953399124f0cbb46d2cbacd8a89cf0599974963\\/114052806666638825397635698780101974206971908054610333471954204551669520269313\\/\",\"display_url\":\"opensea.io\\/assets\\/matic\\/0\\u2026\",\"indices\":[193,216]}]},\"1860\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[25,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"BambamSorry\",\"indices\":[46,58]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[59,79]},{\"text\":\"helicopter\",\"indices\":[80,91]},{\"text\":\"CartierThailand\",\"indices\":[92,108]},{\"text\":\"sabinus\",\"indices\":[109,117]},{\"text\":\"bbillkin\",\"indices\":[118,127]},{\"text\":\"Kosovo\",\"indices\":[128,135]},{\"text\":\"Serbia\",\"indices\":[136,143]},{\"text\":\"BLACKPINK\",\"indices\":[144,154]},{\"text\":\"JACKBAM_KPOPMASTERZBKK\",\"indices\":[155,178]},{\"text\":\"twitterblades\",\"indices\":[179,193]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[194,213]},{\"text\":\"BamBam_KpopMasterzMNL\",\"indices\":[214,236]},{\"text\":\"MissUniverseThailand2022\",\"indices\":[237,262]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YungWillis\",\"name\":\"William Aronhalt\",\"id\":97487839,\"id_str\":\"97487839\",\"indices\":[13,24]}],\"urls\":[],\"media\":[{\"id\":1554233633623400451,\"id_str\":\"1554233633623400451\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554233633623400451\\/pu\\/img\\/f_alULUBmGjXMpqj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554233633623400451\\/pu\\/img\\/f_alULUBmGjXMpqj.jpg\",\"url\":\"https:\\/\\/t.co\\/V3ghu8lbvk\",\"display_url\":\"pic.twitter.com\\/V3ghu8lbvk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/streetdoings\\/status\\/1554234023555338241\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1861\":{\"hashtags\":[{\"text\":\"follo4folloback\",\"indices\":[43,59]},{\"text\":\"FolloMe\",\"indices\":[60,68]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[69,94]},{\"text\":\"BATSHET2023\",\"indices\":[95,107]},{\"text\":\"AtikuOkowa2023\",\"indices\":[108,123]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"HOBIPALOOZA\",\"indices\":[133,145]},{\"text\":\"BambamSorry\",\"indices\":[146,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1862\":{\"hashtags\":[{\"text\":\"follo4folloback\",\"indices\":[43,59]},{\"text\":\"FolloMe\",\"indices\":[60,68]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[69,94]},{\"text\":\"BATSHET2023\",\"indices\":[95,107]},{\"text\":\"AtikuOkowa2023\",\"indices\":[108,123]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"HOBIPALOOZA\",\"indices\":[133,145]},{\"text\":\"BambamSorry\",\"indices\":[146,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1863\":{\"hashtags\":[{\"text\":\"follo4folloback\",\"indices\":[43,59]},{\"text\":\"FolloMe\",\"indices\":[60,68]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[69,94]},{\"text\":\"BATSHET2023\",\"indices\":[95,107]},{\"text\":\"AtikuOkowa2023\",\"indices\":[108,123]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"HOBIPALOOZA\",\"indices\":[133,145]},{\"text\":\"BambamSorry\",\"indices\":[146,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1864\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"HOBIPALOOZA\",\"indices\":[55,67]},{\"text\":\"BambamSorry\",\"indices\":[68,80]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[81,99]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[100,120]},{\"text\":\"CartierThailand\",\"indices\":[121,137]},{\"text\":\"RapSht\",\"indices\":[138,145]},{\"text\":\"rapper\",\"indices\":[146,153]},{\"text\":\"BLACKPINK\",\"indices\":[154,164]},{\"text\":\"twitterblades\",\"indices\":[165,179]},{\"text\":\"Serbia\",\"indices\":[180,187]},{\"text\":\"Kosovo\",\"indices\":[188,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554232577854144513,\"id_str\":\"1554232577854144513\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"url\":\"https:\\/\\/t.co\\/DMKDoJ0LDv\",\"display_url\":\"pic.twitter.com\\/DMKDoJ0LDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DonaldTomax\\/status\\/1554232665645191170\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1865\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[85,95]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"twitterblades\",\"indices\":[106,120]},{\"text\":\"goviral\",\"indices\":[121,129]},{\"text\":\"BOOMchallenge\",\"indices\":[130,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"BambamSorry\",\"indices\":[153,165]},{\"text\":\"HappyNewMonth\",\"indices\":[166,180]},{\"text\":\"CartierThailand\",\"indices\":[181,197]},{\"text\":\"twitterhandle\",\"indices\":[198,212]},{\"text\":\"Twitter\",\"indices\":[213,221]},{\"text\":\"explode\",\"indices\":[222,230]},{\"text\":\"earthquake\",\"indices\":[231,242]},{\"text\":\"GoodMusicGoodTalkDial\",\"indices\":[243,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HHgRXpJbj7\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/skillerdo\\/song\\/likki-likki\",\"display_url\":\"audiomack.com\\/skillerdo\\/song\\u2026\",\"indices\":[55,78]}],\"media\":[{\"id\":1554231493031071749,\"id_str\":\"1554231493031071749\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554231493031071749\\/pu\\/img\\/3ggYqRdVN65ZkQlf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554231493031071749\\/pu\\/img\\/3ggYqRdVN65ZkQlf.jpg\",\"url\":\"https:\\/\\/t.co\\/ehjfrhKK7X\",\"display_url\":\"pic.twitter.com\\/ehjfrhKK7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554231575642079232\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"1866\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"HOBIPALOOZA\",\"indices\":[105,117]},{\"text\":\"BB24\",\"indices\":[118,123]},{\"text\":\"BBNajia\",\"indices\":[124,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1867\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[101,119]},{\"text\":\"breastfeeding\",\"indices\":[133,147]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[148,167]},{\"text\":\"pltcashprize\",\"indices\":[168,181]},{\"text\":\"LoveIsland2022\",\"indices\":[224,239]},{\"text\":\"BBUK\",\"indices\":[252,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"itchio\",\"name\":\"itch.io\",\"id\":445189971,\"id_str\":\"445189971\",\"indices\":[31,38]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LBql7iOXZT\",\"expanded_url\":\"https:\\/\\/maxielgamestudio.itch.io\\/marvel-quiz-challenge\\/purchase\",\"display_url\":\"maxielgamestudio.itch.io\\/marvel-quiz-ch\\u2026\",\"indices\":[68,91]}],\"media\":[{\"id\":1554227764659617796,\"id_str\":\"1554227764659617796\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZG56tSWAAQrEcO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZG56tSWAAQrEcO.jpg\",\"url\":\"https:\\/\\/t.co\\/UjYlIcvSyj\",\"display_url\":\"pic.twitter.com\\/UjYlIcvSyj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nnheadlines\\/status\\/1554227827758833664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":872,\"resize\":\"fit\"},\"small\":{\"w\":585,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":872,\"resize\":\"fit\"}}}]},\"1868\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"Wizkidfc\",\"indices\":[101,110]},{\"text\":\"30bg\",\"indices\":[111,116]},{\"text\":\"sabinus\",\"indices\":[117,125]},{\"text\":\"GodAbeg\",\"indices\":[126,134]},{\"text\":\"Osupa\",\"indices\":[135,141]},{\"text\":\"GodAbeg\",\"indices\":[142,150]},{\"text\":\"nkemowoh\",\"indices\":[151,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1869\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"sabinus\",\"indices\":[52,60]},{\"text\":\"Ethereum\",\"indices\":[61,70]},{\"text\":\"Bullish\",\"indices\":[71,79]}],\"symbols\":[{\"text\":\"Fury\",\"indices\":[8,13]}],\"user_mentions\":[],\"urls\":[]},\"1870\":{\"hashtags\":[{\"text\":\"nkemowoh\",\"indices\":[240,249]},{\"text\":\"channels\",\"indices\":[250,259]},{\"text\":\"Taiwan\",\"indices\":[260,267]},{\"text\":\"CNN360\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554225245380395011,\"id_str\":\"1554225245380395011\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZG3oEPXwAMC5mH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZG3oEPXwAMC5mH.jpg\",\"url\":\"https:\\/\\/t.co\\/5JHbPFTf3V\",\"display_url\":\"pic.twitter.com\\/5JHbPFTf3V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sunteky\\/status\\/1554225305946054656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"1871\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[58,70]},{\"text\":\"breastfeeding\",\"indices\":[71,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"BambamSorry\",\"indices\":[94,106]},{\"text\":\"follobackforfolloback\",\"indices\":[107,129]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Itsdbabafatbili\",\"name\":\"Billiboy\",\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"indices\":[40,56]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[131,138]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[139,148]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[149,158]},{\"screen_name\":\"UMG\",\"name\":\"Universal Music Group\",\"id\":18033062,\"id_str\":\"18033062\",\"indices\":[159,163]},{\"screen_name\":\"BIGHIT_MUSIC\",\"name\":\"BIGHIT MUSIC\",\"id\":168683422,\"id_str\":\"168683422\",\"indices\":[164,177]},{\"screen_name\":\"TwitterMusic\",\"name\":\"Twitter Music is listening to Maggie Rogers\",\"id\":373471064,\"id_str\":\"373471064\",\"indices\":[178,191]}],\"urls\":[],\"media\":[{\"id\":1554216627239092228,\"id_str\":\"1554216627239092228\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"url\":\"https:\\/\\/t.co\\/6uJ0Iz5I5n\",\"display_url\":\"pic.twitter.com\\/6uJ0Iz5I5n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1554220296223211523\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"1872\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"NancyPelosi\",\"indices\":[121,133]},{\"text\":\"China\",\"indices\":[134,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1873\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"NancyPelosi\",\"indices\":[138,150]},{\"text\":\"China\",\"indices\":[151,157]},{\"text\":\"Asia\",\"indices\":[158,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1874\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"breastfeeding\",\"indices\":[113,127]},{\"text\":\"empowerment\",\"indices\":[128,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/993olzwzER\",\"expanded_url\":\"https:\\/\\/managarciya.com\\/empowerment-humanitarian-ministry-conduct-geep-20-training-for-south-east-zone\",\"display_url\":\"managarciya.com\\/empowerment-hu\\u2026\",\"indices\":[81,104]}]},\"1875\":{\"hashtags\":[{\"text\":\"APC\",\"indices\":[109,113]},{\"text\":\"pdp\",\"indices\":[114,118]},{\"text\":\"breastfeeding\",\"indices\":[119,133]},{\"text\":\"Nigeria\",\"indices\":[134,142]},{\"text\":\"Taiwan\",\"indices\":[143,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1876\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[36,46]},{\"text\":\"bbillkin\",\"indices\":[79,88]},{\"text\":\"HOBIPALOOZA\",\"indices\":[89,101]},{\"text\":\"\\u0e41\\u0e1c\\u0e48\\u0e19\\u0e14\\u0e34\\u0e19\\u0e44\\u0e2b\\u0e27\",\"indices\":[102,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"breastfeeding\",\"indices\":[122,136]},{\"text\":\"Ninjawarriorsfc\",\"indices\":[137,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554211252880171008,\"id_str\":\"1554211252880171008\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGq5mHWYAAPn9E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGq5mHWYAAPn9E.jpg\",\"url\":\"https:\\/\\/t.co\\/VpS5RTXpAg\",\"display_url\":\"pic.twitter.com\\/VpS5RTXpAg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554211256982245376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1877\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[159,167]},{\"text\":\"RealEstate\",\"indices\":[194,205]},{\"text\":\"lagosbusiness\",\"indices\":[206,220]},{\"text\":\"rent\",\"indices\":[221,226]},{\"text\":\"OfficeSpace\",\"indices\":[227,239]},{\"text\":\"WEURO2022\",\"indices\":[240,250]},{\"text\":\"Taiwan\",\"indices\":[251,258]},{\"text\":\"HAPPYMARKDAY\",\"indices\":[259,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554211134445584384,\"id_str\":\"1554211134445584384\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGqys6WAAANBLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGqys6WAAANBLl.jpg\",\"url\":\"https:\\/\\/t.co\\/FI8xDQc5Vu\",\"display_url\":\"pic.twitter.com\\/FI8xDQc5Vu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnyteInvestment\\/status\\/1554211137880834050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1878\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[200,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"nkemowo\",\"indices\":[217,225]},{\"text\":\"okoloartcommunity\",\"indices\":[226,244]},{\"text\":\"davidhundeyin\",\"indices\":[245,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554209391141871616,\"id_str\":\"1554209391141871616\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGpNOmWYAAU2Wn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGpNOmWYAAU2Wn.jpg\",\"url\":\"https:\\/\\/t.co\\/IJ1D0u7p0y\",\"display_url\":\"pic.twitter.com\\/IJ1D0u7p0y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Okolo_Community\\/status\\/1554209400348450820\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1879\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[33,39]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1880\":{\"hashtags\":[{\"text\":\"DoToEarn\",\"indices\":[132,141]},{\"text\":\"crypto\",\"indices\":[142,149]},{\"text\":\"NFTs\",\"indices\":[150,155]},{\"text\":\"metaverse\",\"indices\":[156,166]},{\"text\":\"DeFi\",\"indices\":[167,172]},{\"text\":\"web3\",\"indices\":[173,178]},{\"text\":\"sabinus\",\"indices\":[180,188]},{\"text\":\"taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554204452093140992,\"id_str\":\"1554204452093140992\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"url\":\"https:\\/\\/t.co\\/BNFbyWrV1Y\",\"display_url\":\"pic.twitter.com\\/BNFbyWrV1Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChainDustry\\/status\\/1554206276476870658\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1881\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"breastfeeding\",\"indices\":[189,203]},{\"text\":\"CommonwealthGames2022\",\"indices\":[205,227]},{\"text\":\"Trending\",\"indices\":[229,238]},{\"text\":\"WEURO2022\",\"indices\":[240,250]},{\"text\":\"Kosovo\",\"indices\":[252,259]},{\"text\":\"bbillkin\",\"indices\":[261,270]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554204623443034115,\"id_str\":\"1554204623443034115\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204623443034115\\/pu\\/img\\/hq1eFgTPZX9eqcwq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204623443034115\\/pu\\/img\\/hq1eFgTPZX9eqcwq.jpg\",\"url\":\"https:\\/\\/t.co\\/g02CkrFAsf\",\"display_url\":\"pic.twitter.com\\/g02CkrFAsf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adebayotosin80\\/status\\/1554204666476609545\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":426,\"h\":244,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":244,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":244,\"resize\":\"fit\"}}}]},\"1882\":{\"hashtags\":[{\"text\":\"30bgAnthem\",\"indices\":[37,48]},{\"text\":\"davido\",\"indices\":[49,56]},{\"text\":\"Machala\",\"indices\":[57,65]},{\"text\":\"trending\",\"indices\":[66,75]},{\"text\":\"ogbrecent\",\"indices\":[76,86]},{\"text\":\"HOBIPALOOZA\",\"indices\":[87,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"BORNPINK\",\"indices\":[108,117]},{\"text\":\"BORNPINK\",\"indices\":[118,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554203650687369216,\"id_str\":\"1554203650687369216\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554203650687369216\\/pu\\/img\\/WjZsn4-Pe8YtvGMo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554203650687369216\\/pu\\/img\\/WjZsn4-Pe8YtvGMo.jpg\",\"url\":\"https:\\/\\/t.co\\/MTEiayyU1Z\",\"display_url\":\"pic.twitter.com\\/MTEiayyU1Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HGbesh\\/status\\/1554203858104197124\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1883\":{\"hashtags\":[{\"text\":\"reminder\",\"indices\":[0,9]},{\"text\":\"retweet\",\"indices\":[74,82]},{\"text\":\"nkemowoh\",\"indices\":[83,92]},{\"text\":\"channelstv\",\"indices\":[93,104]},{\"text\":\"femiadebayo\",\"indices\":[105,117]},{\"text\":\"osupa\",\"indices\":[118,124]},{\"text\":\"lizbenson\",\"indices\":[125,135]},{\"text\":\"zackorji\",\"indices\":[136,145]},{\"text\":\"davidhundeyin\",\"indices\":[146,160]},{\"text\":\"Anambrastate\",\"indices\":[161,174]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[175,200]},{\"text\":\"Asiwaju\",\"indices\":[201,209]},{\"text\":\"BBNaija\",\"indices\":[210,218]},{\"text\":\"Taiwan\",\"indices\":[219,226]},{\"text\":\"shortfilm\",\"indices\":[227,237]},{\"text\":\"Machala\",\"indices\":[252,260]},{\"text\":\"CartierThailand\",\"indices\":[261,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554198440766279680,\"id_str\":\"1554198440766279680\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"url\":\"https:\\/\\/t.co\\/cJYbjTHw10\",\"display_url\":\"pic.twitter.com\\/cJYbjTHw10\",\"expanded_url\":\"https:\\/\\/twitter.com\\/s_ifame\\/status\\/1554198465030258689\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"1884\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[83,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"CryptoNews\",\"indices\":[104,115]},{\"text\":\"cryptopunks\",\"indices\":[116,128]},{\"text\":\"NFT\",\"indices\":[129,133]},{\"text\":\"cryptocurrency\",\"indices\":[134,149]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N9HnMCskFX\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/cryptopunks-gains1847-after-tiffany-co-launches-exclusive-nft-collection\\/\",\"display_url\":\"iexclusivenews.com.ng\\/cryptopunks-ga\\u2026\",\"indices\":[150,173]}]},\"1885\":{\"hashtags\":[{\"text\":\"actsphotography\",\"indices\":[48,64]},{\"text\":\"042cinema\",\"indices\":[66,76]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[78,103]},{\"text\":\"peterobicampaignfund\",\"indices\":[105,126]},{\"text\":\"PeterObi2023\",\"indices\":[128,141]},{\"text\":\"PeterObi\",\"indices\":[143,152]},{\"text\":\"HOBIPALOOZA\",\"indices\":[154,166]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554196568487641088,\"id_str\":\"1554196568487641088\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554196568487641088\\/pu\\/img\\/grYUFiuOhp6to3Ux.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554196568487641088\\/pu\\/img\\/grYUFiuOhp6to3Ux.jpg\",\"url\":\"https:\\/\\/t.co\\/gIHTxx6dG3\",\"display_url\":\"pic.twitter.com\\/gIHTxx6dG3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChiazorThompson\\/status\\/1554196630576025600\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}}}]},\"1886\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"BeautyTukura\",\"indices\":[134,147]},{\"text\":\"Tobi\",\"indices\":[148,153]},{\"text\":\"davidhundeyin\",\"indices\":[154,168]},{\"text\":\"level2\",\"indices\":[169,176]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OUtHA5Huqa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yusfultweets\\/status\\/1554065525352939520\",\"display_url\":\"twitter.com\\/yusfultweets\\/s\\u2026\",\"indices\":[177,200]}]},\"1887\":{\"hashtags\":[{\"text\":\"Kosovo\",\"indices\":[170,177]},{\"text\":\"WEURO2022\",\"indices\":[178,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"CommonwealthGames2022\",\"indices\":[197,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1888\":{\"hashtags\":[{\"text\":\"CUBEXTAKEOVER\",\"indices\":[93,107]},{\"text\":\"NFT\",\"indices\":[108,112]},{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"CubeXNft\",\"indices\":[121,130]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cubexnft\",\"name\":\"CubeX\",\"id\":1497758039163691015,\"id_str\":\"1497758039163691015\",\"indices\":[82,91]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GUyAyfbPWh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UdodirimUche\\/status\\/1554189211737153537\",\"display_url\":\"twitter.com\\/UdodirimUche\\/s\\u2026\",\"indices\":[138,161]}]},\"1889\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[70,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"CartierThailand\",\"indices\":[91,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1890\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"julydump\",\"indices\":[158,167]},{\"text\":\"marriage\",\"indices\":[168,177]},{\"text\":\"BambamSorry\",\"indices\":[178,190]},{\"text\":\"CommonwealthGames2022\",\"indices\":[191,213]},{\"text\":\"WEURO2022\",\"indices\":[214,224]},{\"text\":\"sabinus\",\"indices\":[225,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GwilK70XZu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/riyike001\\/status\\/1553758109100871680\",\"display_url\":\"twitter.com\\/riyike001\\/stat\\u2026\",\"indices\":[234,257]}]},\"1891\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[64,72]},{\"text\":\"HOBIPALOOZA\",\"indices\":[73,85]},{\"text\":\"taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554190243825319939,\"id_str\":\"1554190243825319939\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554190243825319939\\/pu\\/img\\/hx4DTclgOvJyI8UR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554190243825319939\\/pu\\/img\\/hx4DTclgOvJyI8UR.jpg\",\"url\":\"https:\\/\\/t.co\\/JvxqQWIYkG\",\"display_url\":\"pic.twitter.com\\/JvxqQWIYkG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EclairageAfrica\\/status\\/1554190277384015873\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"1892\":{\"hashtags\":[{\"text\":\"johnfrancis\",\"indices\":[0,12]},{\"text\":\"bbillkin\",\"indices\":[45,54]},{\"text\":\"HOBIPALOOZA\",\"indices\":[55,67]},{\"text\":\"\\u0627\\u0644\\u0645\\u0646\\u062e\\u0641\\u0636_\\u0627\\u0644\\u0645\\u062f\\u0627\\u0631\\u064a\",\"indices\":[68,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"CartierThailand\",\"indices\":[93,109]},{\"text\":\"KareenaKapoorKhan\",\"indices\":[110,128]},{\"text\":\"ClashdeCartier\",\"indices\":[129,144]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"minJohnfrancis\",\"name\":\"john francis official\",\"id\":1350449482605932545,\"id_str\":\"1350449482605932545\",\"indices\":[27,42]}],\"urls\":[],\"media\":[{\"id\":1554189350178619393,\"id_str\":\"1554189350178619393\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGW-sMXgAE5056.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGW-sMXgAE5056.jpg\",\"url\":\"https:\\/\\/t.co\\/oMhWzebz1H\",\"display_url\":\"pic.twitter.com\\/oMhWzebz1H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/minJohnfrancis\\/status\\/1554189363269050369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1893\":{\"hashtags\":[{\"text\":\"ANewNigeriaWePlead\",\"indices\":[88,107]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"Kosovo\",\"indices\":[177,184]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[185,210]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gJtMbSLYWg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lazarusfemi2\\/status\\/1554077777573609472\",\"display_url\":\"twitter.com\\/lazarusfemi2\\/s\\u2026\",\"indices\":[211,234]}]},\"1894\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[7,19]},{\"text\":\"CommonwealthGames2022\",\"indices\":[20,42]},{\"text\":\"Taiwan\",\"indices\":[43,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554186450261909506,\"id_str\":\"1554186450261909506\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"url\":\"https:\\/\\/t.co\\/dW10Gpztl4\",\"display_url\":\"pic.twitter.com\\/dW10Gpztl4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/haleemamusah\\/status\\/1554186459778801664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1112,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":369,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":652,\"h\":1200,\"resize\":\"fit\"}}}]},\"1895\":{\"hashtags\":[{\"text\":\"brandstrategy\",\"indices\":[103,117]},{\"text\":\"businessgrowth\",\"indices\":[118,133]},{\"text\":\"adennn\",\"indices\":[134,141]},{\"text\":\"brandidentity\",\"indices\":[142,156]},{\"text\":\"BambamSorry\",\"indices\":[157,169]},{\"text\":\"WWIII\",\"indices\":[170,176]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554185276821569539,\"id_str\":\"1554185276821569539\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"url\":\"https:\\/\\/t.co\\/fCK2E788IZ\",\"display_url\":\"pic.twitter.com\\/fCK2E788IZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdennnConsult\\/status\\/1554185285428191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"1896\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[134,146]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"WEURO2022\",\"indices\":[157,167]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1897\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"sabinus\",\"indices\":[123,131]},{\"text\":\"Wizkidfc\",\"indices\":[206,215]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[253,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554183410318561286,\"id_str\":\"1554183410318561286\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"url\":\"https:\\/\\/t.co\\/CUBz7ldRnk\",\"display_url\":\"pic.twitter.com\\/CUBz7ldRnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554183475233693697\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":656,\"resize\":\"fit\"}}}]},\"1898\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1899\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"sabinus\",\"indices\":[182,190]},{\"text\":\"Wizkidfc\",\"indices\":[264,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554181811319742465,\"id_str\":\"1554181811319742465\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"url\":\"https:\\/\\/t.co\\/ZyiQgn4CTX\",\"display_url\":\"pic.twitter.com\\/ZyiQgn4CTX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554181881100472323\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"1900\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[10,20]},{\"text\":\"bbrightvc\",\"indices\":[28,38]},{\"text\":\"BBNajia\",\"indices\":[39,47]},{\"text\":\"CartierThailand\",\"indices\":[56,72]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554180752782376963,\"id_str\":\"1554180752782376963\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554180752782376963\\/pu\\/img\\/8CVNFTOdThx2MiYl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554180752782376963\\/pu\\/img\\/8CVNFTOdThx2MiYl.jpg\",\"url\":\"https:\\/\\/t.co\\/MDkabUxKgK\",\"display_url\":\"pic.twitter.com\\/MDkabUxKgK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olathefunny\\/status\\/1554181569841184771\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1901\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[175,182]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554180848680943616,\"id_str\":\"1554180848680943616\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGPP1pXwAA4B5B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGPP1pXwAA4B5B.jpg\",\"url\":\"https:\\/\\/t.co\\/6T86iAwjJc\",\"display_url\":\"pic.twitter.com\\/6T86iAwjJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SambaBoy00\\/status\\/1554180854993272835\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":543,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":342,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":543,\"h\":1080,\"resize\":\"fit\"}}}]},\"1902\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554180504500535300,\"id_str\":\"1554180504500535300\",\"indices\":[48,71],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGO7zeXgAQcHD2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGO7zeXgAQcHD2.jpg\",\"url\":\"https:\\/\\/t.co\\/I9LoC0DERj\",\"display_url\":\"pic.twitter.com\\/I9LoC0DERj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554180507532988416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"small\":{\"w\":401,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1903\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[91,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"BBNajia\",\"indices\":[112,120]},{\"text\":\"Serbia\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k4iKIA9tRn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog?t=DCjXnNhkFnGYPLlxDy3nVA&s=09\",\"display_url\":\"twitter.com\\/thehighestblog\\u2026\",\"indices\":[66,89]}],\"media\":[{\"id\":1554176601490874376,\"id_str\":\"1554176601490874376\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGLYnoWYAgpgdg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGLYnoWYAgpgdg.jpg\",\"url\":\"https:\\/\\/t.co\\/vwgIXQLOT4\",\"display_url\":\"pic.twitter.com\\/vwgIXQLOT4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554177218670108673\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":654,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":749,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":749,\"resize\":\"fit\"}}}]},\"1904\":{\"hashtags\":[{\"text\":\"birthday\",\"indices\":[228,237]},{\"text\":\"HappyBirthday\",\"indices\":[238,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"love\",\"indices\":[261,266]},{\"text\":\"Travel\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554175903483166722,\"id_str\":\"1554175903483166722\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKv_WWAAIYRCF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKv_WWAAIYRCF.jpg\",\"url\":\"https:\\/\\/t.co\\/myQlXwZlZT\",\"display_url\":\"pic.twitter.com\\/myQlXwZlZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NKST_HighLevel\\/status\\/1554175923339026432\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":535,\"h\":535,\"resize\":\"fit\"},\"large\":{\"w\":535,\"h\":535,\"resize\":\"fit\"},\"small\":{\"w\":535,\"h\":535,\"resize\":\"fit\"}}}]},\"1905\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[58,63]},{\"text\":\"WWIII\",\"indices\":[64,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554175656929497089,\"id_str\":\"1554175656929497089\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"url\":\"https:\\/\\/t.co\\/X7rfQ2rEPP\",\"display_url\":\"pic.twitter.com\\/X7rfQ2rEPP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554175663430684679\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":568,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":601,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":601,\"resize\":\"fit\"}}}]},\"1906\":{\"hashtags\":[{\"text\":\"YorkshireDay\",\"indices\":[136,149]},{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"WEURO2022\",\"indices\":[158,168]},{\"text\":\"BBNajia\",\"indices\":[169,177]},{\"text\":\"LaalSinghChaddha\",\"indices\":[178,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ToNSJkIxWT\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100064843457503\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[85,108]}],\"media\":[{\"id\":1554175558036119555,\"id_str\":\"1554175558036119555\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKb4dWYAMi9oh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKb4dWYAMi9oh.jpg\",\"url\":\"https:\\/\\/t.co\\/eXlUInEdo1\",\"display_url\":\"pic.twitter.com\\/eXlUInEdo1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554175582669312001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":817,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":599,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":817,\"resize\":\"fit\"}}}]},\"1907\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[34,46]},{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"BBNajia\",\"indices\":[55,63]},{\"text\":\"\\u0e04\\u0e34\\u0e21\\u0e40\\u0e1a\\u0e2d\\u0e23\\u0e4c\\u0e25\\u0e35\\u0e48\",\"indices\":[64,76]},{\"text\":\"LaalSinghChaddha\",\"indices\":[77,94]},{\"text\":\"KareenaKapoorKhan\",\"indices\":[95,113]},{\"text\":\"Andor\",\"indices\":[114,120]},{\"text\":\"AreYouTubedIn\",\"indices\":[121,135]},{\"text\":\"rihanna\",\"indices\":[136,144]},{\"text\":\"BambamSorry\",\"indices\":[145,157]},{\"text\":\"korean\",\"indices\":[158,165]},{\"text\":\"BbPilipinas2022\",\"indices\":[166,182]},{\"text\":\"WEURO2022\",\"indices\":[183,193]},{\"text\":\"FIFA23\",\"indices\":[194,201]},{\"text\":\"LaalSinghChaddha\",\"indices\":[202,219]},{\"text\":\"CartierThailand\",\"indices\":[220,236]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554173435038818306,\"id_str\":\"1554173435038818306\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGIgTrWYAITzRb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGIgTrWYAITzRb.jpg\",\"url\":\"https:\\/\\/t.co\\/V2PmeBB50q\",\"display_url\":\"pic.twitter.com\\/V2PmeBB50q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DIXXONofficial\\/status\\/1554173437576372230\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":485,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":485,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":485,\"resize\":\"fit\"}}}]},\"1908\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[19,31]},{\"text\":\"Taiwan\",\"indices\":[32,39]},{\"text\":\"WEURO2022\",\"indices\":[40,50]},{\"text\":\"BBNajia\",\"indices\":[51,59]},{\"text\":\"BBNaijaS7\",\"indices\":[60,70]},{\"text\":\"BBNaija7\",\"indices\":[71,80]},{\"text\":\"R2Bess\",\"indices\":[81,88]},{\"text\":\"5StarAlbum\",\"indices\":[89,100]},{\"text\":\"BURNABOY\\ud80c\\udcf5\",\"indices\":[101,111]},{\"text\":\"Damini\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554172944963731456,\"id_str\":\"1554172944963731456\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554172944963731456\\/pu\\/img\\/ok7j1ukogvNrePU_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554172944963731456\\/pu\\/img\\/ok7j1ukogvNrePU_.jpg\",\"url\":\"https:\\/\\/t.co\\/ud3jjDMVu4\",\"display_url\":\"pic.twitter.com\\/ud3jjDMVu4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rappsycho21\\/status\\/1554173065260564481\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1909\":{\"hashtags\":[{\"text\":\"EndSARS\",\"indices\":[82,90]},{\"text\":\"EndBadgovernment\",\"indices\":[92,109]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[110,127]},{\"text\":\"Obidatti023\",\"indices\":[129,141]},{\"text\":\"BBNajia\",\"indices\":[143,151]},{\"text\":\"labourchallenge\",\"indices\":[153,169]},{\"text\":\"BBNaija7\",\"indices\":[171,180]},{\"text\":\"HOBIPALOOZA\",\"indices\":[182,194]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"WEURO2022\",\"indices\":[205,215]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Official_ABAT\",\"name\":\"Asiwaju Bola Ahmed Tinubu\",\"id\":271614089,\"id_str\":\"271614089\",\"indices\":[45,59]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TovN2qJV7A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmy4life02\\/status\\/1554114694406967297\",\"display_url\":\"twitter.com\\/emmy4life02\\/st\\u2026\",\"indices\":[216,239]}]},\"1910\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"kellybhadie\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fqpeLXBMMy\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/watch-full-sex-tape-of-togolese-tiktoker-bhadie-kellys-lookalike\\/\",\"display_url\":\"iexclusivenews.com.ng\\/watch-full-sex\\u2026\",\"indices\":[88,111]}]},\"1911\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[24,31]},{\"text\":\"karimbenzema\",\"indices\":[32,45]},{\"text\":\"RealMadrid\",\"indices\":[46,57]},{\"text\":\"WEURO2022\",\"indices\":[58,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554169632340180992,\"id_str\":\"1554169632340180992\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554169632340180992\\/pu\\/img\\/KGTHznL8l9X_2toJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554169632340180992\\/pu\\/img\\/KGTHznL8l9X_2toJ.jpg\",\"url\":\"https:\\/\\/t.co\\/h8wiD4WeVp\",\"display_url\":\"pic.twitter.com\\/h8wiD4WeVp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OneBlood_1\\/status\\/1554169718545780738\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1912\":{\"hashtags\":[{\"text\":\"photo\",\"indices\":[97,103]},{\"text\":\"photograghy\",\"indices\":[104,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"WEURO2022\",\"indices\":[125,135]},{\"text\":\"Kosovo\",\"indices\":[136,143]},{\"text\":\"MondayMotivation\",\"indices\":[144,161]},{\"text\":\"qanda\",\"indices\":[162,168]},{\"text\":\"lifedrawing\",\"indices\":[169,181]},{\"text\":\"love\",\"indices\":[182,187]},{\"text\":\"HappyEnding\",\"indices\":[188,200]},{\"text\":\"web\",\"indices\":[201,205]},{\"text\":\"Metaverse\",\"indices\":[206,216]},{\"text\":\"BBNaija7\",\"indices\":[217,226]},{\"text\":\"Twitter\",\"indices\":[227,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554169158547513347,\"id_str\":\"1554169158547513347\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGEnYgXoAMDD8q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGEnYgXoAMDD8q.jpg\",\"url\":\"https:\\/\\/t.co\\/vl2y3aQJUA\",\"display_url\":\"pic.twitter.com\\/vl2y3aQJUA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MEGAMAN638\\/status\\/1554169225371127813\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1913\":{\"hashtags\":[{\"text\":\"loml\",\"indices\":[34,39]},{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"breastfeeding\",\"indices\":[48,62]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[63,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"Serbia\",\"indices\":[92,99]},{\"text\":\"WEURO2022\",\"indices\":[100,110]},{\"text\":\"August1st\",\"indices\":[111,121]},{\"text\":\"Asiwaju\",\"indices\":[122,130]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[131,150]},{\"text\":\"MondayMotivation\",\"indices\":[151,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554168940330459137,\"id_str\":\"1554168940330459137\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"url\":\"https:\\/\\/t.co\\/PLF3UKH9sI\",\"display_url\":\"pic.twitter.com\\/PLF3UKH9sI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olaadura4christ\\/status\\/1554168957476773888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1914\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[193,200]},{\"text\":\"WEURO2022\",\"indices\":[201,211]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[212,232]},{\"text\":\"LaalSinghChaddha\",\"indices\":[233,250]},{\"text\":\"Kosovo\",\"indices\":[251,258]},{\"text\":\"LalSinghChaddha\",\"indices\":[259,275]},{\"text\":\"ETH\",\"indices\":[276,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1915\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"NancyPelosi\",\"indices\":[91,103]},{\"text\":\"China\",\"indices\":[104,110]},{\"text\":\"War\",\"indices\":[112,116]},{\"text\":\"PLA\",\"indices\":[117,121]},{\"text\":\"Xi\",\"indices\":[122,125]},{\"text\":\"President\",\"indices\":[126,136]},{\"text\":\"Biden\",\"indices\":[137,143]},{\"text\":\"WorldWar\",\"indices\":[144,153]},{\"text\":\"Russian\",\"indices\":[154,162]},{\"text\":\"RussianArmy\",\"indices\":[163,175]},{\"text\":\"Russia\",\"indices\":[176,183]},{\"text\":\"RussiaUkraineWar\",\"indices\":[184,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554166613896839168,\"id_str\":\"1554166613896839168\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGCTQ8XwAAj4SL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGCTQ8XwAAj4SL.jpg\",\"url\":\"https:\\/\\/t.co\\/qNdwENoIg0\",\"display_url\":\"pic.twitter.com\\/qNdwENoIg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554166628996333570\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"1916\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Pelosi\",\"indices\":[66,73]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kalibaro\",\"name\":\"kkl\",\"id\":1532754174294773767,\"id_str\":\"1532754174294773767\",\"indices\":[0,9]},{\"screen_name\":\"thecyrusjanssen\",\"name\":\"Cyrus Janssen\",\"id\":886749256807100416,\"id_str\":\"886749256807100416\",\"indices\":[10,26]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[50,64]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1917\":{\"hashtags\":[{\"text\":\"thistailormadgan\",\"indices\":[43,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"breastfeeding\",\"indices\":[69,83]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[84,108]},{\"text\":\"justrite\",\"indices\":[109,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554165756857929728,\"id_str\":\"1554165756857929728\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGBhYOX0AAuaQx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGBhYOX0AAuaQx.jpg\",\"url\":\"https:\\/\\/t.co\\/1BSBnsdam3\",\"display_url\":\"pic.twitter.com\\/1BSBnsdam3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/snowkween9\\/status\\/1554165799585185792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1918\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DevonHeinen\",\"name\":\"Devon Heinen\",\"id\":80483638,\"id_str\":\"80483638\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1919\":{\"hashtags\":[{\"text\":\"FIFA23\",\"indices\":[76,83]},{\"text\":\"sturbbornacademy\",\"indices\":[84,101]},{\"text\":\"soccerbetproleague\",\"indices\":[102,121]},{\"text\":\"Rundiamount\",\"indices\":[122,134]},{\"text\":\"StopSellingPi\",\"indices\":[135,149]},{\"text\":\"BambamSorry\",\"indices\":[155,167]},{\"text\":\"BORNPINK\",\"indices\":[168,177]},{\"text\":\"BBNaija7\",\"indices\":[178,187]},{\"text\":\"HungarianGP\",\"indices\":[188,200]},{\"text\":\"Taiwan\",\"indices\":[230,237]},{\"text\":\"WEURO2022\",\"indices\":[238,248]},{\"text\":\"breastfeeding\",\"indices\":[249,263]},{\"text\":\"Kosovo\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"King_Enam\",\"name\":\"Africa In Me-AIM EP\\ud83e\\udd34\\ud83c\\udffe\",\"id\":2358172939,\"id_str\":\"2358172939\",\"indices\":[64,74]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3Dhf1s1rGk\",\"expanded_url\":\"http:\\/\\/kingenam.com\",\"display_url\":\"kingenam.com\",\"indices\":[40,63]}],\"media\":[{\"id\":1554165713937604608,\"id_str\":\"1554165713937604608\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554165713937604608\\/pu\\/img\\/RK1ArmWWOm4XbyRr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554165713937604608\\/pu\\/img\\/RK1ArmWWOm4XbyRr.jpg\",\"url\":\"https:\\/\\/t.co\\/IK1pLZQY1y\",\"display_url\":\"pic.twitter.com\\/IK1pLZQY1y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Builsa_MaN\\/status\\/1554165782267002883\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"1920\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"faststocknewss\",\"name\":\"Fast Stock Market News\",\"id\":1455294902451904516,\"id_str\":\"1455294902451904516\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1921\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"financialjuice\",\"name\":\"Breaking Market News \\u26a1\\ufe0f\",\"id\":381696140,\"id_str\":\"381696140\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1922\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dimitrilascaris\",\"name\":\"Dimitri Lascaris\",\"id\":214708464,\"id_str\":\"214708464\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1923\":{\"hashtags\":[{\"text\":\"learnoflix\",\"indices\":[132,143]},{\"text\":\"breastfeeding\",\"indices\":[157,171]},{\"text\":\"Taiwan\",\"indices\":[173,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1924\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cnni\",\"name\":\"CNN International\",\"id\":2097571,\"id_str\":\"2097571\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1925\":{\"hashtags\":[{\"text\":\"ASSU\",\"indices\":[31,36]},{\"text\":\"August2022\",\"indices\":[37,48]},{\"text\":\"BBNaija7\",\"indices\":[49,58]},{\"text\":\"HappyNewMonth\",\"indices\":[59,73]},{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"WEURO2022\",\"indices\":[82,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554163737937969158,\"id_str\":\"1554163737937969158\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF_r3KWAAYV0qo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF_r3KWAAYV0qo.jpg\",\"url\":\"https:\\/\\/t.co\\/4tcOjmrumP\",\"display_url\":\"pic.twitter.com\\/4tcOjmrumP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AD_osahon\\/status\\/1554163745198333952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1113,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1113,\"resize\":\"fit\"}}}]},\"1926\":{\"hashtags\":[{\"text\":\"NFTs\",\"indices\":[59,64]},{\"text\":\"Metaverse\",\"indices\":[65,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Favvs_luv\",\"name\":\"Favour Ekpot\",\"id\":1456211469431934982,\"id_str\":\"1456211469431934982\",\"indices\":[22,32]},{\"screen_name\":\"gifttedone\",\"name\":\"Gifttedone\",\"id\":1551879259358208000,\"id_str\":\"1551879259358208000\",\"indices\":[33,44]},{\"screen_name\":\"VitalieNFT\",\"name\":\"Vitalie The Bull\",\"id\":1355094671404494848,\"id_str\":\"1355094671404494848\",\"indices\":[45,56]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/g0kPuR0w81\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gameta_official\\/status\\/1554074466124062720\",\"display_url\":\"twitter.com\\/gameta_officia\\u2026\",\"indices\":[84,107]}]},\"1927\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[78,90]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"Chinese\",\"indices\":[131,139]},{\"text\":\"Taiwan\",\"indices\":[140,147]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tenzin_tsenpey\",\"name\":\"Tsenpey\",\"id\":786739327887867904,\"id_str\":\"786739327887867904\",\"indices\":[0,15]},{\"screen_name\":\"tacocheeeze\",\"name\":\"Godron\",\"id\":783824442656829440,\"id_str\":\"783824442656829440\",\"indices\":[16,28]},{\"screen_name\":\"evilccgsr\",\"name\":\"evilgsr\\ud83c\\udde6\\ud83c\\uddfa\",\"id\":1430473995984408579,\"id_str\":\"1430473995984408579\",\"indices\":[29,39]},{\"screen_name\":\"ReutersWorld\",\"name\":\"Reuters World\",\"id\":335455570,\"id_str\":\"335455570\",\"indices\":[40,53]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[54,68]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[92,106]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1928\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SecBlinken\",\"name\":\"Secretary Antony Blinken\",\"id\":1350150750966603777,\"id_str\":\"1350150750966603777\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1929\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"WEURO2022\",\"indices\":[25,35]},{\"text\":\"breastfeeding\",\"indices\":[36,50]},{\"text\":\"BBNajia\",\"indices\":[51,59]},{\"text\":\"geomedphix\",\"indices\":[60,71]},{\"text\":\"idographics\",\"indices\":[72,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554162536177598471,\"id_str\":\"1554162536177598471\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF-l6QWAAc2-8j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF-l6QWAAc2-8j.jpg\",\"url\":\"https:\\/\\/t.co\\/2PlI32PKrC\",\"display_url\":\"pic.twitter.com\\/2PlI32PKrC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Georgegodwin303\\/status\\/1554162546009149442\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2047,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1199,\"resize\":\"fit\"}}}]},\"1930\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1931\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lesiavasylenko\",\"name\":\"Lesia Vasylenko\",\"id\":1219232377605644289,\"id_str\":\"1219232377605644289\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1932\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MZHemingway\",\"name\":\"Mollie\",\"id\":18005085,\"id_str\":\"18005085\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1933\":{\"hashtags\":[{\"text\":\"inmymind\",\"indices\":[127,136]},{\"text\":\"breastfeeding\",\"indices\":[137,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"tweetviral\",\"indices\":[160,171]},{\"text\":\"TWICE\",\"indices\":[172,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1934\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MZHemingway\",\"name\":\"Mollie\",\"id\":18005085,\"id_str\":\"18005085\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1935\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"amyklobuchar\",\"name\":\"Amy Klobuchar\",\"id\":33537967,\"id_str\":\"33537967\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1936\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lesiavasylenko\",\"name\":\"Lesia Vasylenko\",\"id\":1219232377605644289,\"id_str\":\"1219232377605644289\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1937\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JoJoFromJerz\",\"name\":\"Jo \\ud83c\\udf3b\",\"id\":818893114979061761,\"id_str\":\"818893114979061761\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1938\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[70,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"McFaul\",\"name\":\"Michael McFaul\",\"id\":454099919,\"id_str\":\"454099919\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1939\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"PiNetwork\",\"indices\":[257,267]},{\"text\":\"PUBG\",\"indices\":[268,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kWIlfMlFB3\",\"expanded_url\":\"https:\\/\\/minepi.com\\/lxythegreattt\",\"display_url\":\"minepi.com\\/lxythegreattt\",\"indices\":[132,155]}]},\"1940\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"breastfeeding\",\"indices\":[136,150]},{\"text\":\"WEURO2022\",\"indices\":[151,161]},{\"text\":\"BBNajia\",\"indices\":[162,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554161997469700097,\"id_str\":\"1554161997469700097\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"url\":\"https:\\/\\/t.co\\/0sHsnO4v1A\",\"display_url\":\"pic.twitter.com\\/0sHsnO4v1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wildwestshoppin\\/status\\/1554162076708372480\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1941\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"BBNajiaS7\",\"indices\":[103,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1942\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[164,169]},{\"text\":\"Kano\",\"indices\":[170,175]},{\"text\":\"PeterObi\",\"indices\":[176,185]},{\"text\":\"Tinubu\",\"indices\":[186,193]},{\"text\":\"Modella\",\"indices\":[194,202]},{\"text\":\"WWIII\",\"indices\":[203,209]},{\"text\":\"LOML\",\"indices\":[210,215]},{\"text\":\"BBnaija\",\"indices\":[216,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554161617214083072,\"id_str\":\"1554161617214083072\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161617214083072\\/pu\\/img\\/-PwZh0ZP_gqqnqMv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161617214083072\\/pu\\/img\\/-PwZh0ZP_gqqnqMv.jpg\",\"url\":\"https:\\/\\/t.co\\/I7cy0ZJJCH\",\"display_url\":\"pic.twitter.com\\/I7cy0ZJJCH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Thatcrochetgal\\/status\\/1554161682028658689\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}}}]},\"1943\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"ASUUStrike\",\"indices\":[51,62]},{\"text\":\"BBNajia\",\"indices\":[164,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554160409657180163,\"id_str\":\"1554160409657180163\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF8qIWXgAMzh0t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF8qIWXgAMzh0t.jpg\",\"url\":\"https:\\/\\/t.co\\/9NAV1ek83W\",\"display_url\":\"pic.twitter.com\\/9NAV1ek83W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsTezi\\/status\\/1554160417123061760\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":473,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":473,\"h\":1024,\"resize\":\"fit\"}}}]},\"1944\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"markmackinnon\",\"name\":\"Mark MacKinnon\",\"id\":20759034,\"id_str\":\"20759034\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1945\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"matthewstoller\",\"name\":\"Matt Stoller\",\"id\":2030711,\"id_str\":\"2030711\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1946\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"matthewstoller\",\"name\":\"Matt Stoller\",\"id\":2030711,\"id_str\":\"2030711\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1947\":{\"hashtags\":[{\"text\":\"Nancy\",\"indices\":[14,20]},{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[62,70]},{\"text\":\"NANCY_PELOSI\",\"indices\":[183,196]},{\"text\":\"WEURO2022\",\"indices\":[197,207]},{\"text\":\"FightingXiaoting\",\"indices\":[208,225]},{\"text\":\"\\u0e04\\u0e34\\u0e21\\u0e40\\u0e1a\\u0e2d\\u0e23\\u0e4c\\u0e25\\u0e35\\u0e48\",\"indices\":[226,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LHRkDDU1Ae\",\"expanded_url\":\"http:\\/\\/t.me\\/Yorlak\",\"display_url\":\"t.me\\/Yorlak\",\"indices\":[240,263]}],\"media\":[{\"id\":1554158998299058176,\"id_str\":\"1554158998299058176\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158998299058176\\/pu\\/img\\/gLTO-oxiITPsBDbT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158998299058176\\/pu\\/img\\/gLTO-oxiITPsBDbT.jpg\",\"url\":\"https:\\/\\/t.co\\/6JSTNrIZMR\",\"display_url\":\"pic.twitter.com\\/6JSTNrIZMR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hetreeli\\/status\\/1554159685770559496\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":436,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":371,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":436,\"resize\":\"fit\"}}}]},\"1948\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JamesTHarris\",\"name\":\"James T Harris\",\"id\":19358947,\"id_str\":\"19358947\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1949\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ryankakiuchan\",\"name\":\"Ryan Chan \\u9673\\u5bb6\\u7ff9\",\"id\":385397551,\"id_str\":\"385397551\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1950\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"usatodayDC\",\"name\":\"USA TODAY Politics\",\"id\":7998482,\"id_str\":\"7998482\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1951\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[31,41]},{\"text\":\"binance\",\"indices\":[42,50]},{\"text\":\"BBNaija\",\"indices\":[51,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554159191950086144,\"id_str\":\"1554159191950086144\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"url\":\"https:\\/\\/t.co\\/aXpX9C8mNH\",\"display_url\":\"pic.twitter.com\\/aXpX9C8mNH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1554159199227101185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"1952\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[14,21]},{\"text\":\"BBNajia\",\"indices\":[22,30]},{\"text\":\"SummerVibes\",\"indices\":[31,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554159071401578497,\"id_str\":\"1554159071401578497\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7cO9XkAER4Nu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7cO9XkAER4Nu.jpg\",\"url\":\"https:\\/\\/t.co\\/Pv6m41SylF\",\"display_url\":\"pic.twitter.com\\/Pv6m41SylF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/baby_girl_karen\\/status\\/1554159079597260800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}}]},\"1953\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[44,53]},{\"text\":\"majikhub\",\"indices\":[54,63]},{\"text\":\"bbnaija\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"WEURO2022\",\"indices\":[81,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554158609285644290,\"id_str\":\"1554158609285644290\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"url\":\"https:\\/\\/t.co\\/lrJoRAaQRz\",\"display_url\":\"pic.twitter.com\\/lrJoRAaQRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_majikhub\\/status\\/1554158622007037960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1954\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[44,54]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"officialnyscng\",\"name\":\"NYSC NDHQ\",\"id\":1014140711678152709,\"id_str\":\"1014140711678152709\",\"indices\":[66,81]},{\"screen_name\":\"KizzDaniel\",\"name\":\"VADO D\\u2018GREAT \\ud83c\\udf99\",\"id\":2159951120,\"id_str\":\"2159951120\",\"indices\":[83,94]},{\"screen_name\":\"falzthebahdguy\",\"name\":\"Bop Daddy\",\"id\":58465556,\"id_str\":\"58465556\",\"indices\":[96,111]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[113,120]}],\"urls\":[],\"media\":[{\"id\":1554158338493014017,\"id_str\":\"1554158338493014017\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158338493014017\\/pu\\/img\\/SPGzfh8TI5w9ttnF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158338493014017\\/pu\\/img\\/SPGzfh8TI5w9ttnF.jpg\",\"url\":\"https:\\/\\/t.co\\/OECVty5uP6\",\"display_url\":\"pic.twitter.com\\/OECVty5uP6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nezzylayo\\/status\\/1554158482215018498\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":1028,\"resize\":\"fit\"},\"small\":{\"w\":496,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1028,\"resize\":\"fit\"}}}]},\"1955\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E2p2n3SGZv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wendugodson\\/status\\/1554157842617229312\",\"display_url\":\"twitter.com\\/wendugodson\\/st\\u2026\",\"indices\":[52,75]}]},\"1956\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"townhallcom\",\"name\":\"Townhall.com\",\"id\":28614262,\"id_str\":\"28614262\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1957\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ReutersWorld\",\"name\":\"Reuters World\",\"id\":335455570,\"id_str\":\"335455570\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1958\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[35,47]},{\"text\":\"Pelosi\",\"indices\":[65,72]},{\"text\":\"Chinese\",\"indices\":[88,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LennyDykstra\",\"name\":\"Lenny Dykstra\",\"id\":720373269803589632,\"id_str\":\"720373269803589632\",\"indices\":[0,13]},{\"screen_name\":\"disclosetv\",\"name\":\"Disclose.tv\",\"id\":15392486,\"id_str\":\"15392486\",\"indices\":[14,25]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[49,63]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1959\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YanniKouts\",\"name\":\"Yannis Koutsomitis\",\"id\":77528520,\"id_str\":\"77528520\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1960\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WarMonitor3\",\"name\":\"WarMonitor\\ud83c\\uddfa\\ud83c\\udde6\",\"id\":1498973278744031232,\"id_str\":\"1498973278744031232\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1961\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[62,72]},{\"text\":\"Machala\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]},{\"text\":\"davido\",\"indices\":[90,97]},{\"text\":\"WEURO2022\",\"indices\":[98,108]},{\"text\":\"BLACKPINK\",\"indices\":[109,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[40,47]},{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[48,61]}],\"urls\":[],\"media\":[{\"id\":1554157046446055426,\"id_str\":\"1554157046446055426\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554157046446055426\\/pu\\/img\\/9ij0Q3UlAfRZ8uED.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554157046446055426\\/pu\\/img\\/9ij0Q3UlAfRZ8uED.jpg\",\"url\":\"https:\\/\\/t.co\\/pOm7Om460e\",\"display_url\":\"pic.twitter.com\\/pOm7Om460e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialmyb_\\/status\\/1554157118214873089\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":555,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1044,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":979,\"h\":1200,\"resize\":\"fit\"}}}]},\"1962\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Ehsan_Butt\",\"name\":\"Ehsan Butt\",\"id\":1066202484,\"id_str\":\"1066202484\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1963\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EWErickson\",\"name\":\"Erick Erickson\",\"id\":640893,\"id_str\":\"640893\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1964\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Faytuks\",\"name\":\"Faytuks News \\u0394\",\"id\":861939645256523777,\"id_str\":\"861939645256523777\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1965\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZackCooper\",\"name\":\"Zack Cooper\",\"id\":15152752,\"id_str\":\"15152752\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1966\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZackCooper\",\"name\":\"Zack Cooper\",\"id\":15152752,\"id_str\":\"15152752\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1967\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZackCooper\",\"name\":\"Zack Cooper\",\"id\":15152752,\"id_str\":\"15152752\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1968\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AnthonyAdragna\",\"name\":\"Anthony Adragna\",\"id\":460246990,\"id_str\":\"460246990\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1969\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[30,42]},{\"text\":\"Pelosi\",\"indices\":[60,67]},{\"text\":\"Chinese\",\"indices\":[83,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"xeni\",\"name\":\"Xeni\",\"id\":767,\"id_str\":\"767\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[6,20]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[44,58]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1970\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[179,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"WEURO2022\",\"indices\":[200,210]},{\"text\":\"breastfeeding\",\"indices\":[211,225]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[226,246]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[247,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1971\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"xeni\",\"name\":\"Xeni\",\"id\":767,\"id_str\":\"767\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1972\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CBSEveningNews\",\"name\":\"CBS Evening News\",\"id\":42958829,\"id_str\":\"42958829\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1973\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[37,49]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iainmarlow\",\"name\":\"Iain Marlow\",\"id\":19631069,\"id_str\":\"19631069\",\"indices\":[0,11]},{\"screen_name\":\"HouseInSession\",\"name\":\"Billy House\",\"id\":45604374,\"id_str\":\"45604374\",\"indices\":[12,27]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[51,65]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1974\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SullyCNBC\",\"name\":\"Brian Sullivan\",\"id\":24443284,\"id_str\":\"24443284\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1975\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"20committee\",\"name\":\"John Schindler\",\"id\":635608354,\"id_str\":\"635608354\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1976\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Newsweek\",\"name\":\"Newsweek\",\"id\":2884771,\"id_str\":\"2884771\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1977\":{\"hashtags\":[{\"text\":\"Kwankwaso\",\"indices\":[187,197]},{\"text\":\"Taiwan\",\"indices\":[245,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uismrZ4sRV\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/virtuegrace\",\"display_url\":\"youtube.com\\/c\\/virtuegrace\",\"indices\":[144,167]}],\"media\":[{\"id\":1554154521445781504,\"id_str\":\"1554154521445781504\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554154521445781504\\/pu\\/img\\/p62zJ4qXPXt0Epa_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554154521445781504\\/pu\\/img\\/p62zJ4qXPXt0Epa_.jpg\",\"url\":\"https:\\/\\/t.co\\/hQmqYCqcfY\",\"display_url\":\"pic.twitter.com\\/hQmqYCqcfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/virtue_grace\\/status\\/1554154616530640896\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"1978\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AtlanticCouncil\",\"name\":\"Atlantic Council\",\"id\":18267548,\"id_str\":\"18267548\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1979\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jsolomonReports\",\"name\":\"John Solomon\",\"id\":523248016,\"id_str\":\"523248016\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1980\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jsolomonReports\",\"name\":\"John Solomon\",\"id\":523248016,\"id_str\":\"523248016\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1981\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"usatodayDC\",\"name\":\"USA TODAY Politics\",\"id\":7998482,\"id_str\":\"7998482\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1982\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[70,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fox5ny\",\"name\":\"Fox5NY\",\"id\":9229672,\"id_str\":\"9229672\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1983\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"StephenGlahn\",\"name\":\"Geo Steve\",\"id\":2572956582,\"id_str\":\"2572956582\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[14,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1984\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[70,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rwang0\",\"name\":\"R.NFT R \\u201cRay\\u201d Wang \\u738b\\u745e\\u5149 1A #Metaverse #RuleTheWorld\",\"id\":14562685,\"id_str\":\"14562685\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1985\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[29,41]},{\"text\":\"Pelosi\",\"indices\":[59,66]},{\"text\":\"Chinese\",\"indices\":[82,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CNN\",\"name\":\"CNN\",\"id\":759251,\"id_str\":\"759251\",\"indices\":[0,4]},{\"screen_name\":\"willripleyCNN\",\"name\":\"Will Ripley\",\"id\":22138134,\"id_str\":\"22138134\",\"indices\":[5,19]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[43,57]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1986\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"seanspicer\",\"name\":\"Sean Spicer\",\"id\":20776147,\"id_str\":\"20776147\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1987\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[32,44]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"Chinese\",\"indices\":[85,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jankibaat1\",\"name\":\"Jan Ki Baat\",\"id\":4456498874,\"id_str\":\"4456498874\",\"indices\":[0,11]},{\"screen_name\":\"pradip103\",\"name\":\"Pradeep Bhandari(\\u092a\\u094d\\u0930\\u0926\\u0940\\u092a \\u092d\\u0902\\u0921\\u093e\\u0930\\u0940)\\ud83c\\uddee\\ud83c\\uddf3\",\"id\":340814070,\"id_str\":\"340814070\",\"indices\":[12,22]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[46,60]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1988\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bpolitics\",\"name\":\"Bloomberg Politics\",\"id\":564111558,\"id_str\":\"564111558\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1989\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[53,65]},{\"text\":\"Pelosi\",\"indices\":[83,90]},{\"text\":\"Chinese\",\"indices\":[106,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AtlanticCouncil\",\"name\":\"Atlantic Council\",\"id\":18267548,\"id_str\":\"18267548\",\"indices\":[0,16]},{\"screen_name\":\"MarkTEsper\",\"name\":\"Dr. Mark T. Esper\",\"id\":1331074442236227585,\"id_str\":\"1331074442236227585\",\"indices\":[17,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[67,81]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1990\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[112,117]},{\"text\":\"GistLoverStory\",\"indices\":[118,133]},{\"text\":\"StopSellingPi\",\"indices\":[134,148]},{\"text\":\"Taiwan\",\"indices\":[149,156]},{\"text\":\"Bbnaija\",\"indices\":[157,165]},{\"text\":\"BellaOkagbue\",\"indices\":[166,179]},{\"text\":\"BBNaija7\",\"indices\":[219,228]},{\"text\":\"Modella\",\"indices\":[229,237]},{\"text\":\"BamBamSorry\",\"indices\":[238,250]},{\"text\":\"sabinus\",\"indices\":[251,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"1991\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"xeni\",\"name\":\"Xeni\",\"id\":767,\"id_str\":\"767\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1992\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[40,52]},{\"text\":\"Pelosi\",\"indices\":[70,77]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SenRickScott\",\"name\":\"Rick Scott\",\"id\":131546062,\"id_str\":\"131546062\",\"indices\":[0,13]},{\"screen_name\":\"MarshaBlackburn\",\"name\":\"Sen. Marsha Blackburn\",\"id\":278145569,\"id_str\":\"278145569\",\"indices\":[14,30]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[54,68]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1993\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"starsandstripes\",\"name\":\"Stars and Stripes\",\"id\":9130702,\"id_str\":\"9130702\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1994\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[70,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nktpnd\",\"name\":\"Ankit Panda\",\"id\":153503737,\"id_str\":\"153503737\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1995\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wartranslated\",\"name\":\"Dmitri\",\"id\":1722806024,\"id_str\":\"1722806024\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1996\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_JakubJanda\",\"name\":\"Jakub Janda \\u694a\\u96c5\\u56b3\",\"id\":539010491,\"id_str\":\"539010491\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1997\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MonaSalama_\",\"name\":\"Mona Salama\",\"id\":1568858138,\"id_str\":\"1568858138\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1998\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yeongno3\",\"name\":\"\\uc601\\ub178\",\"id\":1377280394232356867,\"id_str\":\"1377280394232356867\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"1999\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[41,53]},{\"text\":\"Pelosi\",\"indices\":[71,78]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"en_haili\",\"name\":\"En Haili Aziz\",\"id\":1451919101165805569,\"id_str\":\"1451919101165805569\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[10,24]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[25,31]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[55,69]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2000\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"anniefreyshow\",\"name\":\"Annie Frey\",\"id\":263826460,\"id_str\":\"263826460\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2001\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpecCoffeeHouse\",\"name\":\"Coffee House\",\"id\":127503320,\"id_str\":\"127503320\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2002\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WIONews\",\"name\":\"WION\",\"id\":711760467383877632,\"id_str\":\"711760467383877632\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2003\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MailOnline\",\"name\":\"Daily Mail Online\",\"id\":15438913,\"id_str\":\"15438913\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2004\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"StockMKTNewz\",\"name\":\"Stock Market News\",\"id\":1250830691824283648,\"id_str\":\"1250830691824283648\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2005\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wildeyeq\",\"name\":\"Edward Israel-Ayide\",\"id\":36921996,\"id_str\":\"36921996\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2006\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[70,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nktpnd\",\"name\":\"Ankit Panda\",\"id\":153503737,\"id_str\":\"153503737\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2007\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Newsweek\",\"name\":\"Newsweek\",\"id\":2884771,\"id_str\":\"2884771\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2008\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[27,39]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Chinese\",\"indices\":[80,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CNBC\",\"name\":\"CNBC\",\"id\":20402945,\"id_str\":\"20402945\",\"indices\":[0,5]},{\"screen_name\":\"onlyyoontv\",\"name\":\"Eunice Yoon\",\"id\":37397428,\"id_str\":\"37397428\",\"indices\":[6,17]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[41,55]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2009\":{\"hashtags\":[{\"text\":\"okowa\",\"indices\":[161,167]},{\"text\":\"atiku\",\"indices\":[170,176]},{\"text\":\"Taiwan\",\"indices\":[179,186]},{\"text\":\"princeaso\",\"indices\":[188,198]},{\"text\":\"NigeriaDecides2023\",\"indices\":[199,218]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[0,6]},{\"screen_name\":\"IAOkowa\",\"name\":\"Dr. Ifeanyi Arthur Okowa\",\"id\":1026733681912758273,\"id_str\":\"1026733681912758273\",\"indices\":[11,19]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[93,108]},{\"screen_name\":\"Rasheethe\",\"name\":\"Abdul Rasheeth\",\"id\":601777051,\"id_str\":\"601777051\",\"indices\":[124,134]},{\"screen_name\":\"renoomokri\",\"name\":\"Reno Omokri\",\"id\":264248576,\"id_str\":\"264248576\",\"indices\":[135,146]},{\"screen_name\":\"Princeaso_\",\"name\":\"prince aso\",\"id\":999980858986680320,\"id_str\":\"999980858986680320\",\"indices\":[148,159]}],\"urls\":[],\"media\":[{\"id\":1554150747801001987,\"id_str\":\"1554150747801001987\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554150747801001987\\/pu\\/img\\/Ml-WEV2DLftvi0A9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554150747801001987\\/pu\\/img\\/Ml-WEV2DLftvi0A9.jpg\",\"url\":\"https:\\/\\/t.co\\/TJ2rq8YZYa\",\"display_url\":\"pic.twitter.com\\/TJ2rq8YZYa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Princeaso_\\/status\\/1554150809616654336\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2010\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"20committee\",\"name\":\"John Schindler\",\"id\":635608354,\"id_str\":\"635608354\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2011\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[46,58]},{\"text\":\"Pelosi\",\"indices\":[76,83]},{\"text\":\"Chinese\",\"indices\":[99,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IndiaToday\",\"name\":\"IndiaToday\",\"id\":19897138,\"id_str\":\"19897138\",\"indices\":[0,11]},{\"screen_name\":\"ehtangen\",\"name\":\"Einar Tangen\",\"id\":2555653836,\"id_str\":\"2555653836\",\"indices\":[12,21]},{\"screen_name\":\"gauravcsawant\",\"name\":\"GAURAV C SAWANT\",\"id\":177886974,\"id_str\":\"177886974\",\"indices\":[22,36]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[60,74]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2012\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"20committee\",\"name\":\"John Schindler\",\"id\":635608354,\"id_str\":\"635608354\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2013\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bmusonza\",\"name\":\"Bla B\",\"id\":32836225,\"id_str\":\"32836225\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2014\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AmichaiStein1\",\"name\":\"Amichai Stein\",\"id\":744601892,\"id_str\":\"744601892\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2015\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ftworldnews\",\"name\":\"FT World News\",\"id\":312677640,\"id_str\":\"312677640\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2016\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[143,152]},{\"text\":\"bbnaija\",\"indices\":[153,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"HOBIPALOOZA\",\"indices\":[170,182]},{\"text\":\"breastfeeding\",\"indices\":[183,197]},{\"text\":\"YouTuber\",\"indices\":[198,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MBH8D8Fqop\",\"expanded_url\":\"https:\\/\\/youtu.be\\/IWrhStishnc\",\"display_url\":\"youtu.be\\/IWrhStishnc\",\"indices\":[41,64]}]},\"2017\":{\"hashtags\":[{\"text\":\"August2022\",\"indices\":[73,84]},{\"text\":\"gratefulheart\",\"indices\":[85,99]},{\"text\":\"Bmadonna\",\"indices\":[100,109]},{\"text\":\"NFTGiveaway\",\"indices\":[112,124]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"EuroWomen2022\",\"indices\":[161,175]},{\"text\":\"EURO2022\",\"indices\":[176,185]},{\"text\":\"nft\",\"indices\":[186,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MfV62ryHqb\",\"expanded_url\":\"https:\\/\\/discord.gg\\/mZbUx4ygRN\",\"display_url\":\"discord.gg\\/mZbUx4ygRN\",\"indices\":[127,150]}],\"media\":[{\"id\":1554147085133512704,\"id_str\":\"1554147085133512704\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"url\":\"https:\\/\\/t.co\\/6923p84X0g\",\"display_url\":\"pic.twitter.com\\/6923p84X0g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialbmadona\\/status\\/1554148011684630528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1600,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"2018\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Joelsherman1\",\"name\":\"Joel Sherman\",\"id\":41591898,\"id_str\":\"41591898\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2019\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FoxNews\",\"name\":\"Fox News\",\"id\":1367531,\"id_str\":\"1367531\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2020\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RnaudBertrand\",\"name\":\"Arnaud Bertrand\",\"id\":43061739,\"id_str\":\"43061739\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2021\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[41,53]},{\"text\":\"Pelosi\",\"indices\":[71,78]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GarlandSculptor\",\"name\":\"Garland Hopkins\",\"id\":1436914142800084995,\"id_str\":\"1436914142800084995\",\"indices\":[0,16]},{\"screen_name\":\"RnaudBertrand\",\"name\":\"Arnaud Bertrand\",\"id\":43061739,\"id_str\":\"43061739\",\"indices\":[17,31]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[55,69]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2022\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"Pelosi\",\"indices\":[46,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jCtrQ7eZrr\",\"expanded_url\":\"https:\\/\\/asia.nikkei.com\\/Politics\\/International-relations\\/Indo-Pacific\\/U.S.-deploys-ships-and-planes-near-Taiwan-as-Pelosi-eyes-visit\",\"display_url\":\"asia.nikkei.com\\/Politics\\/Inter\\u2026\",\"indices\":[66,89]}]},\"2023\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"guardian\",\"name\":\"The Guardian\",\"id\":87818409,\"id_str\":\"87818409\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2024\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RnaudBertrand\",\"name\":\"Arnaud Bertrand\",\"id\":43061739,\"id_str\":\"43061739\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2025\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SameeraKhan\",\"name\":\"samirah\",\"id\":116363549,\"id_str\":\"116363549\",\"indices\":[0,12]},{\"screen_name\":\"AlMayadeenNews\",\"name\":\"\\u0642\\u0646\\u0627\\u0629 \\u0627\\u0644\\u0645\\u064a\\u0627\\u062f\\u064a\\u0646\",\"id\":594813423,\"id_str\":\"594813423\",\"indices\":[13,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2026\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"politico\",\"name\":\"POLITICO\",\"id\":9300262,\"id_str\":\"9300262\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2027\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bpolitics\",\"name\":\"Bloomberg Politics\",\"id\":564111558,\"id_str\":\"564111558\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2028\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OliviaSiongCNA\",\"name\":\"Olivia Siong\",\"id\":3104228294,\"id_str\":\"3104228294\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2029\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OliviaSiongCNA\",\"name\":\"Olivia Siong\",\"id\":3104228294,\"id_str\":\"3104228294\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2030\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[72,84]},{\"text\":\"Pelosi\",\"indices\":[102,109]},{\"text\":\"Chinese\",\"indices\":[125,133]},{\"text\":\"Taiwan\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PaulHuangReport\",\"name\":\"Paul Huang\",\"id\":736279751036264448,\"id_str\":\"736279751036264448\",\"indices\":[0,16]},{\"screen_name\":\"tingtingliuTVBS\",\"name\":\"Tingting Liu \\u5289\\u4ead\\u5ef7\",\"id\":89761235,\"id_str\":\"89761235\",\"indices\":[17,33]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]},{\"screen_name\":\"newtgingrich\",\"name\":\"Newt Gingrich\",\"id\":20713061,\"id_str\":\"20713061\",\"indices\":[49,62]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[86,100]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2031\":{\"hashtags\":[{\"text\":\"up2dateEntertainment\",\"indices\":[67,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"Kosovo\",\"indices\":[97,104]},{\"text\":\"Kosovo\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"QwadwoHoodstar\",\"name\":\"Ugly is 26 BaBy\\ud83d\\ude08\\u2764\\ufe0f\",\"id\":1283667414010519553,\"id_str\":\"1283667414010519553\",\"indices\":[113,128]},{\"screen_name\":\"y1025fm\",\"name\":\"YFM KUMASI \\ud83c\\uddec\\ud83c\\udded\",\"id\":2828345130,\"id_str\":\"2828345130\",\"indices\":[129,137]},{\"screen_name\":\"Ultimate1069fm\",\"name\":\"#Ultimate1069Fm\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"id\":532444718,\"id_str\":\"532444718\",\"indices\":[139,154]},{\"screen_name\":\"kuami_lexis_kl\",\"name\":\"Kuami Lexis\",\"id\":1537852211807518721,\"id_str\":\"1537852211807518721\",\"indices\":[156,171]}],\"urls\":[]},\"2032\":{\"hashtags\":[{\"text\":\"brtlane\",\"indices\":[120,128]},{\"text\":\"WWWIII\",\"indices\":[129,136]},{\"text\":\"breastfeeding\",\"indices\":[137,151]},{\"text\":\"LagosState\",\"indices\":[152,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"Tinubu\",\"indices\":[172,179]},{\"text\":\"traitors\",\"indices\":[180,189]},{\"text\":\"bigwiz\",\"indices\":[190,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7RHKT3iaJt\",\"expanded_url\":\"http:\\/\\/www.blacqtv.com\",\"display_url\":\"blacqtv.com\",\"indices\":[96,119]}],\"media\":[{\"id\":1554143720307658753,\"id_str\":\"1554143720307658753\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554143720307658753\\/pu\\/img\\/LbzHls_3w6QjPdxP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554143720307658753\\/pu\\/img\\/LbzHls_3w6QjPdxP.jpg\",\"url\":\"https:\\/\\/t.co\\/iCDKK9zSO4\",\"display_url\":\"pic.twitter.com\\/iCDKK9zSO4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blacqtv\\/status\\/1554144408303415296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2033\":{\"hashtags\":[{\"text\":\"GistLoverStory\",\"indices\":[105,120]},{\"text\":\"WEURO2022\",\"indices\":[122,132]},{\"text\":\"breastfeeding\",\"indices\":[133,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2034\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[41,53]},{\"text\":\"Pelosi\",\"indices\":[71,78]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tingtingliuTVBS\",\"name\":\"Tingting Liu \\u5289\\u4ead\\u5ef7\",\"id\":89761235,\"id_str\":\"89761235\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[17,31]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[55,69]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2035\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"joshrogin\",\"name\":\"Josh Rogin\",\"id\":15766082,\"id_str\":\"15766082\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2036\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WalesOnline\",\"name\":\"WalesOnline \\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc77\\udb40\\udc6c\\udb40\\udc73\\udb40\\udc7f\",\"id\":15179672,\"id_str\":\"15179672\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2037\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NavalInstitute\",\"name\":\"U.S. Naval Institute\",\"id\":17871088,\"id_str\":\"17871088\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2038\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"G_CURLEY\",\"name\":\"Grace Curley\",\"id\":131880063,\"id_str\":\"131880063\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2039\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[37,49]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RnaudBertrand\",\"name\":\"Arnaud Bertrand\",\"id\":43061739,\"id_str\":\"43061739\",\"indices\":[0,14]},{\"screen_name\":\"pedoscanrot\",\"name\":\"PerfectCellsBussy\\ud83d\\udc15\\u200d\\ud83e\\uddba\",\"id\":790281207657353216,\"id_str\":\"790281207657353216\",\"indices\":[15,27]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[51,65]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2040\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[30,42]},{\"text\":\"Pelosi\",\"indices\":[60,67]},{\"text\":\"Chinese\",\"indices\":[83,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IuliiaMendel\",\"name\":\"Iuliia Mendel\",\"id\":1424639970,\"id_str\":\"1424639970\",\"indices\":[0,13]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[14,20]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[44,58]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2041\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_JakubJanda\",\"name\":\"Jakub Janda \\u694a\\u96c5\\u56b3\",\"id\":539010491,\"id_str\":\"539010491\",\"indices\":[0,12]},{\"screen_name\":\"Vystrcil_Milos\",\"name\":\"Milo\\u0161 Vystr\\u010dil\",\"id\":1735061095,\"id_str\":\"1735061095\",\"indices\":[13,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2042\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EWErickson\",\"name\":\"Erick Erickson\",\"id\":640893,\"id_str\":\"640893\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2043\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RepMarkGreen\",\"name\":\"Rep. Mark Green\",\"id\":1080477288955826176,\"id_str\":\"1080477288955826176\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[14,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2044\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[50,62]},{\"text\":\"Pelosi\",\"indices\":[80,87]},{\"text\":\"Chinese\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AndrewDesiderio\",\"name\":\"Andrew Desiderio\",\"id\":427630477,\"id_str\":\"427630477\",\"indices\":[0,16]},{\"screen_name\":\"alexbward\",\"name\":\"Alex Ward\",\"id\":385447668,\"id_str\":\"385447668\",\"indices\":[17,27]},{\"screen_name\":\"paulmcleary\",\"name\":\"Paul McLeary\",\"id\":15972530,\"id_str\":\"15972530\",\"indices\":[28,40]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[64,78]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2045\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AndrewDesiderio\",\"name\":\"Andrew Desiderio\",\"id\":427630477,\"id_str\":\"427630477\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2046\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"HOBIPALOOZA\",\"indices\":[190,202]},{\"text\":\"WEURO2022\",\"indices\":[203,213]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[214,238]},{\"text\":\"bigwiz\",\"indices\":[239,246]},{\"text\":\"Cucurella\",\"indices\":[247,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554143177514389508,\"id_str\":\"1554143177514389508\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFs_FnXkAQ--f0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFs_FnXkAQ--f0.jpg\",\"url\":\"https:\\/\\/t.co\\/TMldnVY2jN\",\"display_url\":\"pic.twitter.com\\/TMldnVY2jN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554143187475828737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}}]},\"2047\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[9,21]},{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"Chinese\",\"indices\":[62,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[23,37]}],\"urls\":[],\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2048\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[9,21]},{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"Chinese\",\"indices\":[62,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[23,37]}],\"urls\":[],\"media\":[{\"id\":1554142652077146114,\"id_str\":\"1554142652077146114\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142652077146114\\/pu\\/img\\/lY4CUmRbjlSyZslP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142652077146114\\/pu\\/img\\/lY4CUmRbjlSyZslP.jpg\",\"url\":\"https:\\/\\/t.co\\/0v5dUVHyQw\",\"display_url\":\"pic.twitter.com\\/0v5dUVHyQw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554142791177064449\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2049\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[0,10]},{\"text\":\"HOBIPALOOZA\",\"indices\":[34,46]},{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"FightingXiaoting\",\"indices\":[55,72]},{\"text\":\"thevoicept\",\"indices\":[73,84]},{\"text\":\"ENGGER\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554142690056478720,\"id_str\":\"1554142690056478720\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFsitsWIAACWRR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFsitsWIAACWRR.jpg\",\"url\":\"https:\\/\\/t.co\\/38TTtS8Nkp\",\"display_url\":\"pic.twitter.com\\/38TTtS8Nkp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554142693298786306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}}]},\"2050\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[10,20]},{\"text\":\"SoloAlbum\",\"indices\":[103,113]},{\"text\":\"zomergasten\",\"indices\":[176,188]},{\"text\":\"WEURO2022\",\"indices\":[189,199]},{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"bb24\",\"indices\":[208,213]},{\"text\":\"BambamSorry\",\"indices\":[214,226]},{\"text\":\"Ninjawarriorsfc\",\"indices\":[227,243]},{\"text\":\"MissUniverseThailand2022\",\"indices\":[244,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[118,141]}]},\"2051\":{\"hashtags\":[{\"text\":\"NFTGiveaways\",\"indices\":[222,235]},{\"text\":\"NFTs\",\"indices\":[236,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"cotonu\",\"indices\":[250,257]},{\"text\":\"NFTCommmunity\",\"indices\":[258,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[59,67]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/alsdPxw3mQ\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/ethereum\\/0x495f947276749ce646f68ac8c248420045cb7b5e\\/81211926543326704882696797180146958066150781213207322010655196937576377221121\\/\",\"display_url\":\"opensea.io\\/assets\\/ethereu\\u2026\",\"indices\":[31,54]}]},\"2052\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Newsquawk\",\"name\":\"Newsquawk\",\"id\":42589787,\"id_str\":\"42589787\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2053\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"breastfeeding\",\"indices\":[131,145]},{\"text\":\"WEURO2022\",\"indices\":[146,156]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[157,177]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[178,202]},{\"text\":\"25LawsofEmotionalIntelligence\",\"indices\":[203,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2054\":{\"hashtags\":[{\"text\":\"beholdhomes\",\"indices\":[130,142]},{\"text\":\"happynewmonth\",\"indices\":[143,157]},{\"text\":\"helloaugust\",\"indices\":[158,170]},{\"text\":\"realestate\",\"indices\":[171,182]},{\"text\":\"homeownership\",\"indices\":[183,197]},{\"text\":\"ASUU\",\"indices\":[198,203]},{\"text\":\"BamBamFansignMNL\",\"indices\":[204,221]},{\"text\":\"Tinubu\",\"indices\":[222,229]},{\"text\":\"Anambra\",\"indices\":[230,238]},{\"text\":\"LagosState\",\"indices\":[239,250]},{\"text\":\"WW3\",\"indices\":[251,255]},{\"text\":\"WEURO2022\",\"indices\":[256,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554140556158271488,\"id_str\":\"1554140556158271488\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFqmgTXgAAnPMT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFqmgTXgAAnPMT.jpg\",\"url\":\"https:\\/\\/t.co\\/8bqWGTWDkW\",\"display_url\":\"pic.twitter.com\\/8bqWGTWDkW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Behold_Homes\\/status\\/1554140559530463243\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2055\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[25,32]},{\"text\":\"StopLying\",\"indices\":[33,43]},{\"text\":\"HOBIPALOOZA\",\"indices\":[44,56]},{\"text\":\"BBNaija\",\"indices\":[57,65]},{\"text\":\"breastfeeding\",\"indices\":[66,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"Elections2022\",\"indices\":[89,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554140261328064513,\"id_str\":\"1554140261328064513\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554140261328064513\\/pu\\/img\\/eQ4MzSUV-PCGO4Rc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554140261328064513\\/pu\\/img\\/eQ4MzSUV-PCGO4Rc.jpg\",\"url\":\"https:\\/\\/t.co\\/y4qnjB5rNx\",\"display_url\":\"pic.twitter.com\\/y4qnjB5rNx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femiafricaNG\\/status\\/1554140500617224192\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":497,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":936,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":878,\"h\":1200,\"resize\":\"fit\"}}}]},\"2056\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[112,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"USA\",\"indices\":[133,137]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O3iw8rNJiM\",\"expanded_url\":\"https:\\/\\/www.wsj.com\\/articles\\/nancy-pelosi-begins-asian-tour-in-singapore-as-china-again-warns-against-visiting-taiwan-11659358264\",\"display_url\":\"wsj.com\\/articles\\/nancy\\u2026\",\"indices\":[195,218]}]},\"2057\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"NancyPerosi\",\"indices\":[25,37]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554139219307659276,\"id_str\":\"1554139219307659276\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFpYsJWAAwlpOc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFpYsJWAAwlpOc.jpg\",\"url\":\"https:\\/\\/t.co\\/3EwEgnhvnk\",\"display_url\":\"pic.twitter.com\\/3EwEgnhvnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DearDapson\\/status\\/1554139221434273799\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":604,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":959,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":959,\"resize\":\"fit\"}}}]},\"2058\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[20,32]},{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"WEURO2022\",\"indices\":[41,51]},{\"text\":\"breastfeeding\",\"indices\":[52,66]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[67,87]},{\"text\":\"Serbia\",\"indices\":[88,95]},{\"text\":\"Kosovo\",\"indices\":[96,103]},{\"text\":\"JACKBAM_KPOPMASTERZBKK\",\"indices\":[104,127]},{\"text\":\"Machala\",\"indices\":[128,136]},{\"text\":\"BambamSorry\",\"indices\":[137,149]},{\"text\":\"ENGGER\",\"indices\":[150,157]},{\"text\":\"BLACKPINK\",\"indices\":[158,168]},{\"text\":\"qanda\",\"indices\":[169,175]},{\"text\":\"bachelorette\",\"indices\":[176,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554135843866087425,\"id_str\":\"1554135843866087425\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}}]},\"2059\":{\"hashtags\":[{\"text\":\"AgroMarketSquare\",\"indices\":[126,143]},{\"text\":\"newmonth\",\"indices\":[144,153]},{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"Agriculture\",\"indices\":[162,174]},{\"text\":\"AgroLife\",\"indices\":[175,184]},{\"text\":\"Agriculture\",\"indices\":[185,197]},{\"text\":\"foods\",\"indices\":[198,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554134920573902849,\"id_str\":\"1554134920573902849\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"url\":\"https:\\/\\/t.co\\/C4Lj4tJjjI\",\"display_url\":\"pic.twitter.com\\/C4Lj4tJjjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/agromarketsquar\\/status\\/1554134928413134848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2060\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[53,63]},{\"text\":\"breastfeeding\",\"indices\":[64,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2061\":{\"hashtags\":[{\"text\":\"NaijaBet\",\"indices\":[135,144]},{\"text\":\"WEURO2022\",\"indices\":[145,155]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Transfers\",\"indices\":[164,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Santi_J_FM\",\"name\":\"Santi Aouna\",\"id\":1199736038874324993,\"id_str\":\"1199736038874324993\",\"indices\":[120,131]}],\"urls\":[],\"media\":[{\"id\":1554127197891428352,\"id_str\":\"1554127197891428352\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"url\":\"https:\\/\\/t.co\\/brnptiS1U6\",\"display_url\":\"pic.twitter.com\\/brnptiS1U6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554127208016379906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":816,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1392,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":462,\"resize\":\"fit\"}}}]},\"2062\":{\"hashtags\":[{\"text\":\"PlayingWithFire\",\"indices\":[0,16]},{\"text\":\"US\",\"indices\":[18,21]},{\"text\":\"China\",\"indices\":[22,28]},{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dFSsCYKxhG\",\"expanded_url\":\"https:\\/\\/www.rt.com\\/news\\/560008-china-ready-to-fight\\/\",\"display_url\":\"rt.com\\/news\\/560008-ch\\u2026\",\"indices\":[80,103]}]},\"2063\":{\"hashtags\":[{\"text\":\"breastfeeding\",\"indices\":[213,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"WEURO2022\",\"indices\":[236,246]},{\"text\":\"qanda\",\"indices\":[247,253]},{\"text\":\"BLACKPINK\",\"indices\":[254,264]},{\"text\":\"ENGGER\",\"indices\":[265,272]},{\"text\":\"Kosovo\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2064\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[59,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"BBNaija\",\"indices\":[80,88]},{\"text\":\"WEURO2022\",\"indices\":[89,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554124578724761603,\"id_str\":\"1554124578724761603\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"url\":\"https:\\/\\/t.co\\/HyV09hKL85\",\"display_url\":\"pic.twitter.com\\/HyV09hKL85\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554124771629174786\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2065\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[171,175]},{\"text\":\"artcollector\",\"indices\":[176,189]},{\"text\":\"artprint\",\"indices\":[190,199]},{\"text\":\"walldeco\",\"indices\":[200,209]},{\"text\":\"nft\",\"indices\":[210,214]},{\"text\":\"japancollector\",\"indices\":[215,230]},{\"text\":\"WEURO2022\",\"indices\":[231,241]},{\"text\":\"drawing\",\"indices\":[242,250]},{\"text\":\"design\",\"indices\":[251,258]},{\"text\":\"Taiwan\",\"indices\":[259,266]},{\"text\":\"HOBIPALOOZA\",\"indices\":[267,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vw3P0wsMj4\",\"expanded_url\":\"http:\\/\\/otobong-johnson.pixels.com\",\"display_url\":\"otobong-johnson.pixels.com\",\"indices\":[147,170]}],\"media\":[{\"id\":1554123346412961792,\"id_str\":\"1554123346412961792\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":456,\"resize\":\"fit\"}}}]},\"2066\":{\"hashtags\":[{\"text\":\"jhopeAtLollapalooza\",\"indices\":[132,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554122608614014978,\"id_str\":\"1554122608614014978\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"url\":\"https:\\/\\/t.co\\/LXSlna9e0M\",\"display_url\":\"pic.twitter.com\\/LXSlna9e0M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554122616927125504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"medium\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":443,\"resize\":\"fit\"}}}]},\"2067\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[82,87]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[88,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2068\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[264,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2069\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[256,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2070\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[267,272]},{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554120642974343170,\"id_str\":\"1554120642974343170\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFYfZ6WYAIPrbh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFYfZ6WYAIPrbh.jpg\",\"url\":\"https:\\/\\/t.co\\/tbCfHRdBxB\",\"display_url\":\"pic.twitter.com\\/tbCfHRdBxB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/charles_etoh\\/status\\/1554120646363435008\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":607,\"h\":561,\"resize\":\"fit\"},\"small\":{\"w\":607,\"h\":561,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":607,\"h\":561,\"resize\":\"fit\"}}}]},\"2071\":{\"hashtags\":[{\"text\":\"Modellabbn\",\"indices\":[15,26]},{\"text\":\"WEURO2022\",\"indices\":[46,56]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"Nigerian\",\"indices\":[66,75]},{\"text\":\"breastfeeding\",\"indices\":[76,90]},{\"text\":\"BBNaija\",\"indices\":[91,99]},{\"text\":\"BBNaija\",\"indices\":[101,109]},{\"text\":\"BBC\",\"indices\":[111,115]},{\"text\":\"BBNajiaS7\",\"indices\":[116,126]},{\"text\":\"BBNaija2022\",\"indices\":[127,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554119089995632640,\"id_str\":\"1554119089995632640\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"url\":\"https:\\/\\/t.co\\/alddff8jzd\",\"display_url\":\"pic.twitter.com\\/alddff8jzd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/modellabbn\\/status\\/1554119100007333888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":848,\"resize\":\"fit\"}}}]},\"2072\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"Sweden\",\"indices\":[208,215]},{\"text\":\"WEuro2022Final\",\"indices\":[216,231]},{\"text\":\"100DaysOfCode\",\"indices\":[232,246]},{\"text\":\"1000xgem\",\"indices\":[247,256]},{\"text\":\"100T\",\"indices\":[257,262]},{\"text\":\"WEURO2022\",\"indices\":[263,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2073\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[167,179]},{\"text\":\"WEURO2022\",\"indices\":[180,190]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"100DaysOfCode\",\"indices\":[199,213]},{\"text\":\"Taiwan\",\"indices\":[214,221]},{\"text\":\"breastfeeding\",\"indices\":[222,236]},{\"text\":\"Serbia\",\"indices\":[237,244]},{\"text\":\"1000xgem\",\"indices\":[245,254]},{\"text\":\"Bitcoin\",\"indices\":[255,263]},{\"text\":\"JHOPE\",\"indices\":[264,270]},{\"text\":\"Browns\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2074\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[214,226]},{\"text\":\"Taiwan\",\"indices\":[227,234]},{\"text\":\"Kosovo\",\"indices\":[235,242]},{\"text\":\"Serbia\",\"indices\":[243,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554116327538888705,\"id_str\":\"1554116327538888705\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFUkNqXEAECoc_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFUkNqXEAECoc_.jpg\",\"url\":\"https:\\/\\/t.co\\/x9TpnTDuBS\",\"display_url\":\"pic.twitter.com\\/x9TpnTDuBS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554116335331934210\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2075\":{\"hashtags\":[{\"text\":\"Churchhilldown\",\"indices\":[72,87]},{\"text\":\"KNUST\",\"indices\":[88,94]},{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2076\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[100,108]},{\"text\":\"BBNaija7\",\"indices\":[109,118]},{\"text\":\"WEURO2022\",\"indices\":[119,129]},{\"text\":\"HOBIPALOOZA\",\"indices\":[130,142]},{\"text\":\"August2022\",\"indices\":[143,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"breastfeeding\",\"indices\":[163,177]},{\"text\":\"Kosovo\",\"indices\":[178,185]},{\"text\":\"Serbia\",\"indices\":[186,193]},{\"text\":\"BambamSorry\",\"indices\":[194,206]},{\"text\":\"Browns\",\"indices\":[207,214]},{\"text\":\"WEuro2022Final\",\"indices\":[215,230]},{\"text\":\"JHOPE\",\"indices\":[231,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bobmarley\",\"name\":\"Bob Marley\",\"id\":42927636,\"id_str\":\"42927636\",\"indices\":[19,29]},{\"screen_name\":\"ericatasia\",\"name\":\"Eric Atasia \\ud83d\\udc9b\\ud83d\\udc99\",\"id\":810013640,\"id_str\":\"810013640\",\"indices\":[39,50]},{\"screen_name\":\"teekayclassic_\",\"name\":\"Teekay Classic\",\"id\":193184977,\"id_str\":\"193184977\",\"indices\":[63,78]}],\"urls\":[],\"media\":[{\"id\":1554113147673378819,\"id_str\":\"1554113147673378819\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113147673378819\\/pu\\/img\\/gyPDw9c9Q6HWSvra.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113147673378819\\/pu\\/img\\/gyPDw9c9Q6HWSvra.jpg\",\"url\":\"https:\\/\\/t.co\\/PcMK6IPWIb\",\"display_url\":\"pic.twitter.com\\/PcMK6IPWIb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ericatasia\\/status\\/1554113437529251848\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2077\":{\"hashtags\":[{\"text\":\"100DaysOfCode\",\"indices\":[135,149]},{\"text\":\"javascript\",\"indices\":[151,162]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"WEURO2022\",\"indices\":[173,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554112926323281924,\"id_str\":\"1554112926323281924\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFRePJXkAQANUw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFRePJXkAQANUw.jpg\",\"url\":\"https:\\/\\/t.co\\/10hp6dxgxr\",\"display_url\":\"pic.twitter.com\\/10hp6dxgxr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AlugbinGodwin\\/status\\/1554112929057968130\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":586,\"resize\":\"fit\"},\"large\":{\"w\":580,\"h\":586,\"resize\":\"fit\"},\"small\":{\"w\":580,\"h\":586,\"resize\":\"fit\"}}}]},\"2078\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[187,212]},{\"text\":\"taiwan\",\"indices\":[213,220]},{\"text\":\"BBNaija\",\"indices\":[221,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2079\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"gistloverstory\",\"indices\":[172,187]},{\"text\":\"StopSellingPi\",\"indices\":[188,202]},{\"text\":\"lekki\",\"indices\":[210,216]},{\"text\":\"breastfeeding\",\"indices\":[260,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i1f6XamVxK\",\"expanded_url\":\"https:\\/\\/buff.ly\\/3oLBULg\",\"display_url\":\"buff.ly\\/3oLBULg\",\"indices\":[66,89]}]},\"2080\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MintPressNews\",\"name\":\"MintPress News\",\"id\":414962189,\"id_str\":\"414962189\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554100959437012994,\"id_str\":\"1554100959437012994\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFGlrBWQAI_et7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFGlrBWQAI_et7.jpg\",\"url\":\"https:\\/\\/t.co\\/iODSOsQUWW\",\"display_url\":\"pic.twitter.com\\/iODSOsQUWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/devinieke\\/status\\/1554100962473680899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":428,\"resize\":\"fit\"}}}]},\"2081\":{\"hashtags\":[{\"text\":\"lekki\",\"indices\":[11,17]},{\"text\":\"breastfeeding\",\"indices\":[18,32]},{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"Asiwaju\",\"indices\":[66,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554099626621419521,\"id_str\":\"1554099626621419521\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFFYF5WQAEydRW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFFYF5WQAEydRW.jpg\",\"url\":\"https:\\/\\/t.co\\/flDaMtP9fT\",\"display_url\":\"pic.twitter.com\\/flDaMtP9fT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Asquaremichael\\/status\\/1554099630031470599\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"small\":{\"w\":554,\"h\":554,\"resize\":\"fit\"}}}]},\"2082\":{\"hashtags\":[{\"text\":\"Ukrainian\",\"indices\":[0,10]},{\"text\":\"Russian\",\"indices\":[32,40]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Kosovo\",\"indices\":[88,95]},{\"text\":\"TXTPALOOZA\",\"indices\":[96,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a0AZU6614O\",\"expanded_url\":\"https:\\/\\/youtu.be\\/OPXjuRwB6Dc\",\"display_url\":\"youtu.be\\/OPXjuRwB6Dc\",\"indices\":[55,78]}]},\"2083\":{\"hashtags\":[{\"text\":\"Wizkidfc\",\"indices\":[27,36]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"BADNE\",\"indices\":[115,121]},{\"text\":\"MANDEM\",\"indices\":[124,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p3HnABzvsm\",\"expanded_url\":\"https:\\/\\/badnedollardollar.trac.co\\/badnedollardollarmandem\",\"display_url\":\"badnedollardollar.trac.co\\/badnedollardol\\u2026\",\"indices\":[201,224]},{\"url\":\"https:\\/\\/t.co\\/zZHAOgnYui\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/funjumbo\\/song\\/mandem\",\"display_url\":\"audiomack.com\\/funjumbo\\/song\\/\\u2026\",\"indices\":[226,249]}],\"media\":[{\"id\":1554098913459724288,\"id_str\":\"1554098913459724288\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554098913459724288\\/pu\\/img\\/taYhOf7zHwKSyEtj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554098913459724288\\/pu\\/img\\/taYhOf7zHwKSyEtj.jpg\",\"url\":\"https:\\/\\/t.co\\/KGhaoXaca8\",\"display_url\":\"pic.twitter.com\\/KGhaoXaca8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FunJumbo\\/status\\/1554099088576110592\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2084\":{\"hashtags\":[{\"text\":\"Nancy\",\"indices\":[0,6]},{\"text\":\"Pelosi\",\"indices\":[7,14]},{\"text\":\"China\",\"indices\":[24,30]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"Kosovo\",\"indices\":[80,87]},{\"text\":\"JHOPE\",\"indices\":[88,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gQ0WXcKEqD\",\"expanded_url\":\"https:\\/\\/youtu.be\\/PlvlxrZWf9I\",\"display_url\":\"youtu.be\\/PlvlxrZWf9I\",\"indices\":[47,70]}]},\"2085\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mikepompeo\",\"name\":\"Mike Pompeo\",\"id\":1163992520252153857,\"id_str\":\"1163992520252153857\",\"indices\":[122,133]},{\"screen_name\":\"ScottPresler\",\"name\":\"#ThePersistence\",\"id\":931286316,\"id_str\":\"931286316\",\"indices\":[144,157]}],\"urls\":[]},\"2086\":{\"hashtags\":[{\"text\":\"Btc\",\"indices\":[76,80]},{\"text\":\"cryptocurrency\",\"indices\":[81,96]},{\"text\":\"Wizkidfc\",\"indices\":[133,142]},{\"text\":\"LUNC\",\"indices\":[168,173]},{\"text\":\"StopSellingPi\",\"indices\":[188,202]},{\"text\":\"breastfeeding\",\"indices\":[224,238]},{\"text\":\"marriage\",\"indices\":[253,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]}],\"symbols\":[{\"text\":\"Bond\",\"indices\":[0,5]}],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554096934876581889,\"id_str\":\"1554096934876581889\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFC7aXXkAEtaHq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFC7aXXkAEtaHq.png\",\"url\":\"https:\\/\\/t.co\\/kJcWBoYlfh\",\"display_url\":\"pic.twitter.com\\/kJcWBoYlfh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dan_nyeche\\/status\\/1554096943260999681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"2087\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[64,76]},{\"text\":\"Wizkidfc\",\"indices\":[78,87]},{\"text\":\"BurnaBoy\",\"indices\":[89,98]},{\"text\":\"bellashmurda\",\"indices\":[100,113]},{\"text\":\"GodAbeg\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"breastfeeding\",\"indices\":[133,147]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[148,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554096478230118400,\"id_str\":\"1554096478230118400\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554096478230118400\\/pu\\/img\\/HtcXfqLEJA9m_xJZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554096478230118400\\/pu\\/img\\/HtcXfqLEJA9m_xJZ.jpg\",\"url\":\"https:\\/\\/t.co\\/4PAZj84JeP\",\"display_url\":\"pic.twitter.com\\/4PAZj84JeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/COURAGEOUZ1\\/status\\/1554096718039465985\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"2088\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[109,121]},{\"text\":\"ChinaTaiwan\",\"indices\":[122,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2089\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[23,30]},{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"XiJinping\",\"indices\":[75,85]},{\"text\":\"China\",\"indices\":[89,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yH4RqoEXaS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Forbes\\/status\\/1554093462525513729\",\"display_url\":\"twitter.com\\/Forbes\\/status\\/\\u2026\",\"indices\":[96,119]}]},\"2090\":{\"hashtags\":[{\"text\":\"abstractart\",\"indices\":[66,78]},{\"text\":\"GALLERYDEPT\",\"indices\":[79,91]},{\"text\":\"artgallery\",\"indices\":[92,103]},{\"text\":\"arttweet\",\"indices\":[104,113]},{\"text\":\"HOBIPALOOZA\",\"indices\":[114,126]},{\"text\":\"WEURO2022\",\"indices\":[127,137]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[138,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"breastfeeding\",\"indices\":[167,181]},{\"text\":\"Kosovo\",\"indices\":[182,189]},{\"text\":\"BORNPINK\",\"indices\":[190,199]},{\"text\":\"JHOPE\",\"indices\":[200,206]},{\"text\":\"BambamSorry\",\"indices\":[207,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554094865994186759,\"id_str\":\"1554094865994186759\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFBC_LXgAcO9Ef.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFBC_LXgAcO9Ef.jpg\",\"url\":\"https:\\/\\/t.co\\/qGTxy5nqXe\",\"display_url\":\"pic.twitter.com\\/qGTxy5nqXe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opheliathearti6\\/status\\/1554094882452553729\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1302,\"h\":1627,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"2091\":{\"hashtags\":[{\"text\":\"JHOPE\",\"indices\":[65,71]},{\"text\":\"HOBIPALOOZA\",\"indices\":[72,84]},{\"text\":\"WEURO2022\",\"indices\":[85,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"BBNaija\",\"indices\":[104,112]},{\"text\":\"BBNaijaS7\",\"indices\":[113,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554094381170397192,\"id_str\":\"1554094381170397192\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554094381170397192\\/pu\\/img\\/F-nJn2drfb2Bi8Kr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554094381170397192\\/pu\\/img\\/F-nJn2drfb2Bi8Kr.jpg\",\"url\":\"https:\\/\\/t.co\\/xIbwr9gXJl\",\"display_url\":\"pic.twitter.com\\/xIbwr9gXJl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1554094474044870657\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":480,\"resize\":\"fit\"}}}]},\"2092\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2093\":{\"hashtags\":[{\"text\":\"MEMECOIN\",\"indices\":[66,75]},{\"text\":\"MarvinInu\",\"indices\":[85,95]},{\"text\":\"1000Xgems\",\"indices\":[191,201]},{\"text\":\"Taiwan\",\"indices\":[202,209]},{\"text\":\"WEURO2022\",\"indices\":[210,220]},{\"text\":\"Kosovo\",\"indices\":[221,228]},{\"text\":\"BNB\",\"indices\":[229,233]},{\"text\":\"BBNaija\",\"indices\":[234,242]},{\"text\":\"btc\",\"indices\":[243,247]},{\"text\":\"MarvinInu\",\"indices\":[248,258]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[156,163]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[179,190]}],\"urls\":[],\"media\":[{\"id\":1554094295795351552,\"id_str\":\"1554094295795351552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"url\":\"https:\\/\\/t.co\\/xPmn2jesjy\",\"display_url\":\"pic.twitter.com\\/xPmn2jesjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554094314493468674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"2094\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[55,62]},{\"text\":\"JHOPE\",\"indices\":[63,69]},{\"text\":\"WEURO2022\",\"indices\":[70,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zholntUazT\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/artist\\/1nd0MuNcrmdHzdYgN9wGuR?si=GjEA5Jf0QpODzt1KZQMVVw\",\"display_url\":\"open.spotify.com\\/artist\\/1nd0MuN\\u2026\",\"indices\":[0,23]}]},\"2095\":{\"hashtags\":[{\"text\":\"holycorruption\",\"indices\":[26,41]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"KNUST\",\"indices\":[119,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"samgeorgegh\",\"name\":\"Sam 'Dzata' George\",\"id\":255019878,\"id_str\":\"255019878\",\"indices\":[4,16]}],\"urls\":[],\"media\":[{\"id\":1554090706213421056,\"id_str\":\"1554090706213421056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554090706213421056\\/pu\\/img\\/ubItgIxbfBXdpd33.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554090706213421056\\/pu\\/img\\/ubItgIxbfBXdpd33.jpg\",\"url\":\"https:\\/\\/t.co\\/AsSYtWesl8\",\"display_url\":\"pic.twitter.com\\/AsSYtWesl8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554091249518477312\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":608,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":608,\"h\":480,\"resize\":\"fit\"}}}]},\"2096\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ReutersChina\",\"name\":\"Reuters China\",\"id\":599065130,\"id_str\":\"599065130\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2097\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"katie_martin_fx\",\"name\":\"Katie Martin\",\"id\":57268394,\"id_str\":\"57268394\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2098\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[50,62]},{\"text\":\"Pelosi\",\"indices\":[80,87]},{\"text\":\"Chinese\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"hugolowell\",\"name\":\"Hugo Lowell\",\"id\":2475407894,\"id_str\":\"2475407894\",\"indices\":[0,11]},{\"screen_name\":\"BadBradRSR\",\"name\":\"Official Account of (Activist) \\\"Bad\\\" Brad Berkwitt\",\"id\":886060860,\"id_str\":\"886060860\",\"indices\":[12,23]},{\"screen_name\":\"BadBradBerkwitt\",\"name\":\"Official Page Of The \\u201cBad\\u201d Brad Berkwitt Show\",\"id\":1526449450033487883,\"id_str\":\"1526449450033487883\",\"indices\":[24,40]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[64,78]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2099\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ReutersChina\",\"name\":\"Reuters China\",\"id\":599065130,\"id_str\":\"599065130\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2100\":{\"hashtags\":[{\"text\":\"StopSellingPi\",\"indices\":[110,124]},{\"text\":\"marriage\",\"indices\":[125,134]},{\"text\":\"breastfeeding\",\"indices\":[135,149]},{\"text\":\"Taiwan\",\"indices\":[177,184]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554088176087666689,\"id_str\":\"1554088176087666689\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE69lVXEAE0UTe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE69lVXEAE0UTe.jpg\",\"url\":\"https:\\/\\/t.co\\/falX93ixiI\",\"display_url\":\"pic.twitter.com\\/falX93ixiI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gen2crystal\\/status\\/1554088256739893248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2101\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"Asiwaju\",\"indices\":[148,156]},{\"text\":\"SolanaNFT\",\"indices\":[157,167]},{\"text\":\"breastfeeding\",\"indices\":[237,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qDHdUtiSc7\",\"expanded_url\":\"https:\\/\\/wa.me\\/+2348140491420\",\"display_url\":\"wa.me\\/+2348140491420\",\"indices\":[90,113]}]},\"2102\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[17,29]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[30,50]},{\"text\":\"HappyNewMonth\",\"indices\":[51,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554087194805010432,\"id_str\":\"1554087194805010432\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE6EdxWAAAHDNR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE6EdxWAAAHDNR.jpg\",\"url\":\"https:\\/\\/t.co\\/HllT8bGlHB\",\"display_url\":\"pic.twitter.com\\/HllT8bGlHB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EkoClubNigeria\\/status\\/1554087205588566017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"2103\":{\"hashtags\":[{\"text\":\"brandnerds\",\"indices\":[134,145]},{\"text\":\"BBNaija7\",\"indices\":[146,155]},{\"text\":\"WEURO2022\",\"indices\":[156,166]},{\"text\":\"CitiCBS\",\"indices\":[196,204]},{\"text\":\"Kosovo\",\"indices\":[265,272]},{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zrV9nsmhY0\",\"expanded_url\":\"http:\\/\\/brandnerds.co\",\"display_url\":\"brandnerds.co\",\"indices\":[86,109]}],\"media\":[{\"id\":1554086705497620481,\"id_str\":\"1554086705497620481\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE5n-9XwAEYAKw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE5n-9XwAEYAKw.jpg\",\"url\":\"https:\\/\\/t.co\\/pS9xXRvM6A\",\"display_url\":\"pic.twitter.com\\/pS9xXRvM6A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandnerdsltd\\/status\\/1554086710476259330\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2104\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[151,156]},{\"text\":\"Carterefe\",\"indices\":[157,167]},{\"text\":\"Khalid\",\"indices\":[168,175]},{\"text\":\"yorubas\",\"indices\":[176,184]},{\"text\":\"davido\",\"indices\":[185,192]},{\"text\":\"nysc\",\"indices\":[193,198]},{\"text\":\"Dami\",\"indices\":[199,204]},{\"text\":\"marriage\",\"indices\":[205,214]},{\"text\":\"LagosState\",\"indices\":[215,226]},{\"text\":\"breastfeeding\",\"indices\":[227,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"BBNaija\",\"indices\":[250,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554086634592796673,\"id_str\":\"1554086634592796673\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086634592796673\\/pu\\/img\\/wRlyhRjR4883UBuO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086634592796673\\/pu\\/img\\/wRlyhRjR4883UBuO.jpg\",\"url\":\"https:\\/\\/t.co\\/eGU4KQ0iph\",\"display_url\":\"pic.twitter.com\\/eGU4KQ0iph\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554086683938889728\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2105\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[76,81]},{\"text\":\"BTC\",\"indices\":[214,218]},{\"text\":\"PiNetwork\",\"indices\":[219,229]},{\"text\":\"CORE\",\"indices\":[230,235]},{\"text\":\"HOBIPALOOZA\",\"indices\":[236,248]},{\"text\":\"JHOPE\",\"indices\":[250,256]},{\"text\":\"BBNaija7\",\"indices\":[257,266]},{\"text\":\"StopSellingPi\",\"indices\":[267,281]},{\"text\":\"Taiwan\",\"indices\":[282,289]},{\"text\":\"ASUU\",\"indices\":[290,295]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"pinetwork_world\",\"name\":\"Pi Network World \\u03c0\",\"id\":1491584644394799105,\"id_str\":\"1491584644394799105\",\"indices\":[0,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[190,213]}]},\"2106\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[163,171]},{\"text\":\"ASUU\",\"indices\":[172,177]},{\"text\":\"Carterefe\",\"indices\":[178,188]},{\"text\":\"Khalid\",\"indices\":[189,196]},{\"text\":\"yorubas\",\"indices\":[197,205]},{\"text\":\"davido\",\"indices\":[206,213]},{\"text\":\"nysc\",\"indices\":[214,219]},{\"text\":\"Dami\",\"indices\":[220,225]},{\"text\":\"marriage\",\"indices\":[226,235]},{\"text\":\"LagosState\",\"indices\":[236,247]},{\"text\":\"breastfeeding\",\"indices\":[248,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554086014142005249,\"id_str\":\"1554086014142005249\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086014142005249\\/pu\\/img\\/WxiJxUXi0PYR9DqB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086014142005249\\/pu\\/img\\/WxiJxUXi0PYR9DqB.jpg\",\"url\":\"https:\\/\\/t.co\\/N6nHd97aYr\",\"display_url\":\"pic.twitter.com\\/N6nHd97aYr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554086108291600387\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2107\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[71,76]},{\"text\":\"BTC\",\"indices\":[209,213]},{\"text\":\"PiNetwork\",\"indices\":[214,224]},{\"text\":\"CORE\",\"indices\":[225,230]},{\"text\":\"HOBIPALOOZA\",\"indices\":[231,243]},{\"text\":\"JHOPE\",\"indices\":[245,251]},{\"text\":\"BBNaija7\",\"indices\":[253,262]},{\"text\":\"BambamSorry\",\"indices\":[263,275]},{\"text\":\"Taiwan\",\"indices\":[276,283]},{\"text\":\"ASUU\",\"indices\":[284,289]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"khollyjhay\",\"name\":\"Jayeola Kolade Opeyemi {\\u03c0} \\ud83c\\udf0d\",\"id\":1394047838942744581,\"id_str\":\"1394047838942744581\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[185,208]}],\"media\":[{\"id\":1554085980403126273,\"id_str\":\"1554085980403126273\",\"indices\":[290,313],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"url\":\"https:\\/\\/t.co\\/d36ETfc2is\",\"display_url\":\"pic.twitter.com\\/d36ETfc2is\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085998321192961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2108\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[70,75]},{\"text\":\"BTC\",\"indices\":[208,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"CORE\",\"indices\":[224,229]},{\"text\":\"HOBIPALOOZA\",\"indices\":[230,242]},{\"text\":\"JHOPE\",\"indices\":[244,250]},{\"text\":\"BBNaija7\",\"indices\":[252,261]},{\"text\":\"BambamSorry\",\"indices\":[262,274]},{\"text\":\"Taiwan\",\"indices\":[275,282]},{\"text\":\"ASUU\",\"indices\":[283,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"99tension\",\"name\":\"tension \\u26a1\\ud83d\\udd25\",\"id\":1524698434200031232,\"id_str\":\"1524698434200031232\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[184,207]}],\"media\":[{\"id\":1554085798483578881,\"id_str\":\"1554085798483578881\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"url\":\"https:\\/\\/t.co\\/JON6RErm7P\",\"display_url\":\"pic.twitter.com\\/JON6RErm7P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085812974899202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2109\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[70,75]},{\"text\":\"BTC\",\"indices\":[208,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"CORE\",\"indices\":[224,229]},{\"text\":\"HOBIPALOOZA\",\"indices\":[230,242]},{\"text\":\"JHOPE\",\"indices\":[244,250]},{\"text\":\"BBNaija7\",\"indices\":[252,261]},{\"text\":\"BambamSorry\",\"indices\":[262,274]},{\"text\":\"Taiwan\",\"indices\":[275,282]},{\"text\":\"ASUU\",\"indices\":[283,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"___Chachi\",\"name\":\"Chachi\",\"id\":1177976672785764353,\"id_str\":\"1177976672785764353\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[184,207]}],\"media\":[{\"id\":1554085414822187009,\"id_str\":\"1554085414822187009\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"url\":\"https:\\/\\/t.co\\/edeuEUUKmE\",\"display_url\":\"pic.twitter.com\\/edeuEUUKmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085432538841090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2110\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[137,146]},{\"text\":\"ASUU\",\"indices\":[148,153]},{\"text\":\"Carterefe\",\"indices\":[154,164]},{\"text\":\"Khalid\",\"indices\":[165,172]},{\"text\":\"yorubas\",\"indices\":[173,181]},{\"text\":\"davido\",\"indices\":[182,189]},{\"text\":\"nysc\",\"indices\":[190,195]},{\"text\":\"Dami\",\"indices\":[196,201]},{\"text\":\"marriage\",\"indices\":[202,211]},{\"text\":\"LagosState\",\"indices\":[212,223]},{\"text\":\"breastfeeding\",\"indices\":[224,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554085382081417218,\"id_str\":\"1554085382081417218\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4a82XEAIsUw_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4a82XEAIsUw_.jpg\",\"url\":\"https:\\/\\/t.co\\/08JqBCXvSR\",\"display_url\":\"pic.twitter.com\\/08JqBCXvSR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554085399433302016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"}}}]},\"2111\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[74,79]},{\"text\":\"BTC\",\"indices\":[212,216]},{\"text\":\"PiNetwork\",\"indices\":[217,227]},{\"text\":\"CORE\",\"indices\":[228,233]},{\"text\":\"HOBIPALOOZA\",\"indices\":[234,246]},{\"text\":\"JHOPE\",\"indices\":[248,254]},{\"text\":\"BBNaija7\",\"indices\":[256,265]},{\"text\":\"BambamSorry\",\"indices\":[266,278]},{\"text\":\"Taiwan\",\"indices\":[279,286]},{\"text\":\"ASUU\",\"indices\":[287,292]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"firstladyship\",\"name\":\"NEFERTITI\",\"id\":201237617,\"id_str\":\"201237617\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[188,211]}],\"media\":[{\"id\":1554085337202393093,\"id_str\":\"1554085337202393093\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"url\":\"https:\\/\\/t.co\\/0Wp9yQ0JHO\",\"display_url\":\"pic.twitter.com\\/0Wp9yQ0JHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085368139583489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2112\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[74,79]},{\"text\":\"BTC\",\"indices\":[212,216]},{\"text\":\"PiNetwork\",\"indices\":[217,227]},{\"text\":\"CORE\",\"indices\":[228,233]},{\"text\":\"HOBIPALOOZA\",\"indices\":[234,246]},{\"text\":\"JHOPE\",\"indices\":[248,254]},{\"text\":\"BBNaija7\",\"indices\":[256,265]},{\"text\":\"BambamSorry\",\"indices\":[266,278]},{\"text\":\"Taiwan\",\"indices\":[279,286]},{\"text\":\"ASUU\",\"indices\":[287,292]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VictorIsrael_\",\"name\":\"Chlorpheniramine #EndSARS \\ud83c\\uddf3\\ud83c\\uddec\",\"id\":989234511362879488,\"id_str\":\"989234511362879488\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[188,211]}],\"media\":[{\"id\":1554085254452871169,\"id_str\":\"1554085254452871169\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/yiAW9zI1nH\",\"display_url\":\"pic.twitter.com\\/yiAW9zI1nH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085268386447361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2113\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[72,77]},{\"text\":\"BTC\",\"indices\":[210,214]},{\"text\":\"PiNetwork\",\"indices\":[215,225]},{\"text\":\"CORE\",\"indices\":[226,231]},{\"text\":\"HOBIPALOOZA\",\"indices\":[232,244]},{\"text\":\"JHOPE\",\"indices\":[246,252]},{\"text\":\"BBNaija7\",\"indices\":[254,263]},{\"text\":\"BambamSorry\",\"indices\":[264,276]},{\"text\":\"Taiwan\",\"indices\":[277,284]},{\"text\":\"ASUU\",\"indices\":[285,290]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_Just_Malik\",\"name\":\"\\ud835\\udc0c\\ud835\\udc1a\\ud835\\udc25\\ud835\\udc22\\ud835\\udc24 \\u2728\",\"id\":1508516530589425669,\"id_str\":\"1508516530589425669\",\"indices\":[0,12]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[186,209]}],\"media\":[{\"id\":1554085161104449537,\"id_str\":\"1554085161104449537\",\"indices\":[291,314],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6maa8aNF7\",\"display_url\":\"pic.twitter.com\\/Y6maa8aNF7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085193945849858\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2114\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[70,75]},{\"text\":\"BTC\",\"indices\":[208,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"CORE\",\"indices\":[224,229]},{\"text\":\"HOBIPALOOZA\",\"indices\":[230,242]},{\"text\":\"JHOPE\",\"indices\":[244,250]},{\"text\":\"BBNaija7\",\"indices\":[252,261]},{\"text\":\"BambamSorry\",\"indices\":[262,274]},{\"text\":\"Taiwan\",\"indices\":[275,282]},{\"text\":\"ASUU\",\"indices\":[283,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"oou_prime\",\"name\":\"PRIME \\ud83d\\udca5\",\"id\":1053790262017904640,\"id_str\":\"1053790262017904640\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[184,207]}],\"media\":[{\"id\":1554085056712515585,\"id_str\":\"1554085056712515585\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"url\":\"https:\\/\\/t.co\\/Kelu2VUCKU\",\"display_url\":\"pic.twitter.com\\/Kelu2VUCKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085067063967744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2115\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[71,76]},{\"text\":\"BTC\",\"indices\":[209,213]},{\"text\":\"PiNetwork\",\"indices\":[214,224]},{\"text\":\"CORE\",\"indices\":[225,230]},{\"text\":\"HOBIPALOOZA\",\"indices\":[231,243]},{\"text\":\"JHOPE\",\"indices\":[245,251]},{\"text\":\"BBNaija7\",\"indices\":[253,262]},{\"text\":\"BambamSorry\",\"indices\":[263,275]},{\"text\":\"Taiwan\",\"indices\":[276,283]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FilmmeTalk\",\"name\":\"Filmme Talk\",\"id\":1493758776540684289,\"id_str\":\"1493758776540684289\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[185,208]}],\"media\":[{\"id\":1554084700276379651,\"id_str\":\"1554084700276379651\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"url\":\"https:\\/\\/t.co\\/k9Dya2b4UL\",\"display_url\":\"pic.twitter.com\\/k9Dya2b4UL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084711147995137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2116\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[76,81]},{\"text\":\"BTC\",\"indices\":[214,218]},{\"text\":\"PiNetwork\",\"indices\":[219,229]},{\"text\":\"CORE\",\"indices\":[230,235]},{\"text\":\"HOBIPALOOZA\",\"indices\":[236,248]},{\"text\":\"JHOPE\",\"indices\":[250,256]},{\"text\":\"BBNaija7\",\"indices\":[258,267]},{\"text\":\"BambamSorry\",\"indices\":[268,280]},{\"text\":\"Taiwan\",\"indices\":[281,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"danielaflorezz_\",\"name\":\"\\ud835\\udc6b.\",\"id\":1369459769535197188,\"id_str\":\"1369459769535197188\",\"indices\":[0,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[190,213]}],\"media\":[{\"id\":1554084525629743111,\"id_str\":\"1554084525629743111\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"url\":\"https:\\/\\/t.co\\/O7sl5TBlhn\",\"display_url\":\"pic.twitter.com\\/O7sl5TBlhn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084536727863387\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2117\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[125,134]},{\"text\":\"ASUU\",\"indices\":[136,141]},{\"text\":\"Carterefe\",\"indices\":[142,152]},{\"text\":\"Khalid\",\"indices\":[153,160]},{\"text\":\"yorubas\",\"indices\":[161,169]},{\"text\":\"davido\",\"indices\":[170,177]},{\"text\":\"nysc\",\"indices\":[178,183]},{\"text\":\"Dami\",\"indices\":[184,189]},{\"text\":\"marriage\",\"indices\":[190,199]},{\"text\":\"LagosState\",\"indices\":[200,211]},{\"text\":\"breastfeeding\",\"indices\":[212,226]},{\"text\":\"Taiwan\",\"indices\":[227,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554084146338844672,\"id_str\":\"1554084146338844672\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3TBWX0AA2Wz2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3TBWX0AA2Wz2.jpg\",\"url\":\"https:\\/\\/t.co\\/2vYeLJMZbj\",\"display_url\":\"pic.twitter.com\\/2vYeLJMZbj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554084153997524993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"}}}]},\"2118\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[171,176]},{\"text\":\"Carterefe\",\"indices\":[177,187]},{\"text\":\"Khalid\",\"indices\":[188,195]},{\"text\":\"yorubas\",\"indices\":[196,204]},{\"text\":\"davido\",\"indices\":[205,212]},{\"text\":\"nysc\",\"indices\":[213,218]},{\"text\":\"Dami\",\"indices\":[219,224]},{\"text\":\"marriage\",\"indices\":[225,234]},{\"text\":\"LagosState\",\"indices\":[235,246]},{\"text\":\"breastfeeding\",\"indices\":[247,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554083544879828993,\"id_str\":\"1554083544879828993\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2wAvXkAERYqn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2wAvXkAERYqn.jpg\",\"url\":\"https:\\/\\/t.co\\/rtsv7qMXJY\",\"display_url\":\"pic.twitter.com\\/rtsv7qMXJY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083555277422593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1288,\"h\":1607,\"resize\":\"fit\"}}}]},\"2119\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[148,153]},{\"text\":\"Carterefe\",\"indices\":[154,164]},{\"text\":\"Khalid\",\"indices\":[165,172]},{\"text\":\"yorubas\",\"indices\":[173,181]},{\"text\":\"davido\",\"indices\":[182,189]},{\"text\":\"nysc\",\"indices\":[190,195]},{\"text\":\"Dami\",\"indices\":[196,201]},{\"text\":\"marriage\",\"indices\":[202,211]},{\"text\":\"LagosState\",\"indices\":[212,223]},{\"text\":\"breastfeeding\",\"indices\":[224,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554083265417515008,\"id_str\":\"1554083265417515008\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2fvqXEAAkmLS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2fvqXEAAkmLS.jpg\",\"url\":\"https:\\/\\/t.co\\/44vS1j86Oq\",\"display_url\":\"pic.twitter.com\\/44vS1j86Oq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083275743891456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"2120\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[21,29]},{\"text\":\"breastfeeding\",\"indices\":[30,44]},{\"text\":\"TREASURE\",\"indices\":[45,54]},{\"text\":\"Ukraine\",\"indices\":[55,63]},{\"text\":\"JHOPE\",\"indices\":[64,70]},{\"text\":\"Khalid\",\"indices\":[71,78]},{\"text\":\"Modella\",\"indices\":[79,87]},{\"text\":\"BellaOkagbue\",\"indices\":[88,101]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[102,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"Kosovo\",\"indices\":[131,138]},{\"text\":\"Serbia\",\"indices\":[139,146]},{\"text\":\"LalSinghChaddha\",\"indices\":[147,163]},{\"text\":\"SuzukiPakistan\",\"indices\":[164,179]},{\"text\":\"TXTPALOOZA\",\"indices\":[180,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554078882810191879,\"id_str\":\"1554078882810191879\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"url\":\"https:\\/\\/t.co\\/b9gCgh80hJ\",\"display_url\":\"pic.twitter.com\\/b9gCgh80hJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ocheene\\/status\\/1554079628473602049\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"2121\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"ASUU\",\"indices\":[231,236]},{\"text\":\"BIGWIZ\",\"indices\":[237,244]},{\"text\":\"Carterefe\",\"indices\":[245,255]},{\"text\":\"Peterobi\",\"indices\":[256,265]},{\"text\":\"yoruba\",\"indices\":[266,273]},{\"text\":\"Ethereum\",\"indices\":[274,283]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554079443991334913,\"id_str\":\"1554079443991334913\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554079443991334913\\/pu\\/img\\/xgOuhdvJlMw8GNZX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554079443991334913\\/pu\\/img\\/xgOuhdvJlMw8GNZX.jpg\",\"url\":\"https:\\/\\/t.co\\/bJrpcKyfop\",\"display_url\":\"pic.twitter.com\\/bJrpcKyfop\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554079606923223040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2122\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KenRoth\",\"name\":\"Kenneth Roth\",\"id\":17839398,\"id_str\":\"17839398\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2123\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[48,60]},{\"text\":\"Pelosi\",\"indices\":[78,85]},{\"text\":\"Chinese\",\"indices\":[101,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BillKristol\",\"name\":\"Bill Kristol\",\"id\":2800581040,\"id_str\":\"2800581040\",\"indices\":[0,12]},{\"screen_name\":\"BizRoundtable\",\"name\":\"Business Roundtable\",\"id\":44682276,\"id_str\":\"44682276\",\"indices\":[13,27]},{\"screen_name\":\"USChamber\",\"name\":\"U.S. Chamber\",\"id\":85606078,\"id_str\":\"85606078\",\"indices\":[28,38]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[62,76]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2124\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Morning_Joe\",\"name\":\"Morning Joe\",\"id\":254117355,\"id_str\":\"254117355\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2125\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[79,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"The_RockTrading\",\"name\":\"John @ The Rock Trading Co.\",\"id\":21764428,\"id_str\":\"21764428\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2126\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"destandaard\",\"name\":\"De Standaard\",\"id\":21408400,\"id_str\":\"21408400\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2127\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SwarajyaMag\",\"name\":\"Swarajya\",\"id\":2451476942,\"id_str\":\"2451476942\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2128\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"monitoreamos\",\"name\":\"Monitoreamos\",\"id\":1253485143156817925,\"id_str\":\"1253485143156817925\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2129\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBCNews\",\"name\":\"BBC News (UK)\",\"id\":612473,\"id_str\":\"612473\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2130\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[163,173]},{\"text\":\"garner\",\"indices\":[175,182]},{\"text\":\"StopSellingPi\",\"indices\":[184,198]},{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"NYSC\",\"indices\":[209,214]},{\"text\":\"Fofana\",\"indices\":[215,222]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[224,249]},{\"text\":\"OBIDIENTS\",\"indices\":[251,261]},{\"text\":\"zulum\",\"indices\":[263,269]},{\"text\":\"Southeast\",\"indices\":[270,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554074786254430213,\"id_str\":\"1554074786254430213\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"url\":\"https:\\/\\/t.co\\/guCA89QtKv\",\"display_url\":\"pic.twitter.com\\/guCA89QtKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554074794538291201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2131\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[70,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nypost\",\"name\":\"New York Post\",\"id\":17469289,\"id_str\":\"17469289\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2132\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[30,42]},{\"text\":\"Pelosi\",\"indices\":[60,67]},{\"text\":\"Chinese\",\"indices\":[83,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SimonLevyMx\",\"name\":\"Sim\\u00f3n Levy\",\"id\":998380790,\"id_str\":\"998380790\",\"indices\":[0,12]},{\"screen_name\":\"cnnbrk\",\"name\":\"CNN Breaking News\",\"id\":428333,\"id_str\":\"428333\",\"indices\":[13,20]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[44,58]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2133\":{\"hashtags\":[{\"text\":\"MondayMotivation\",\"indices\":[96,113]},{\"text\":\"Kosovo\",\"indices\":[114,121]},{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"TREASURE\",\"indices\":[130,139]},{\"text\":\"BORNPINK\",\"indices\":[140,149]},{\"text\":\"BBNaija7\",\"indices\":[150,159]},{\"text\":\"world\",\"indices\":[160,166]},{\"text\":\"happy\",\"indices\":[167,173]},{\"text\":\"August2022\",\"indices\":[174,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2134\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jeltjeb\",\"name\":\"Jeltjeb, we leven in leugens!\",\"id\":90880428,\"id_str\":\"90880428\",\"indices\":[0,8]},{\"screen_name\":\"NOS\",\"name\":\"NOS\",\"id\":7174972,\"id_str\":\"7174972\",\"indices\":[9,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2135\":{\"hashtags\":[{\"text\":\"jhopeAtLollapalooza\",\"indices\":[117,137]},{\"text\":\"Kosovo\",\"indices\":[138,145]},{\"text\":\"Taiwan\",\"indices\":[146,153]},{\"text\":\"Serbia\",\"indices\":[154,161]},{\"text\":\"TREASURE\",\"indices\":[162,171]},{\"text\":\"BORNPINK\",\"indices\":[172,181]},{\"text\":\"breastfeeding\",\"indices\":[182,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2136\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"visegrad24\",\"name\":\"Visegr\\u00e1d 24\",\"id\":1222773302441148416,\"id_str\":\"1222773302441148416\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2137\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ustaiwan\",\"name\":\"US-Taiwan Business Council\",\"id\":133016978,\"id_str\":\"133016978\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2138\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[32,44]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"Chinese\",\"indices\":[85,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"QuincyInst\",\"name\":\"Quincy Institute\",\"id\":1111662651870973952,\"id_str\":\"1111662651870973952\",\"indices\":[0,11]},{\"screen_name\":\"Dalzell60\",\"name\":\"Michael D. Swaine\",\"id\":363431676,\"id_str\":\"363431676\",\"indices\":[12,22]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[46,60]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2139\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thewire_in\",\"name\":\"The Wire\",\"id\":3150940290,\"id_str\":\"3150940290\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2140\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"James_E_White\",\"name\":\"State Rep. James White\",\"id\":155942845,\"id_str\":\"155942845\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2141\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rommari\",\"name\":\"Maria Romanenko\",\"id\":20368663,\"id_str\":\"20368663\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2142\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBCNews\",\"name\":\"BBC News (UK)\",\"id\":612473,\"id_str\":\"612473\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2143\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TelegraphWorld\",\"name\":\"Telegraph World News\",\"id\":19706851,\"id_str\":\"19706851\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2144\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jeffreyatucker\",\"name\":\"Jeffrey A Tucker\",\"id\":23485648,\"id_str\":\"23485648\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2145\":{\"hashtags\":[{\"text\":\"Ukraine\",\"indices\":[32,40]},{\"text\":\"Taiwan\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554073009094270976,\"id_str\":\"1554073009094270976\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEtKv4WIAA29jx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEtKv4WIAA29jx.jpg\",\"url\":\"https:\\/\\/t.co\\/RCTA6UIYLy\",\"display_url\":\"pic.twitter.com\\/RCTA6UIYLy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/titooh_john\\/status\\/1554073033735913472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"2146\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[14,26]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"Chinese\",\"indices\":[67,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ABC\",\"name\":\"ABC News\",\"id\":28785486,\"id_str\":\"28785486\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[28,42]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2147\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeromeTaylor\",\"name\":\"Jerome Taylor\",\"id\":27284203,\"id_str\":\"27284203\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2148\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SteveDeaceShow\",\"name\":\"Steve Deace\",\"id\":177564016,\"id_str\":\"177564016\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2149\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Joyce_Karam\",\"name\":\"Joyce Karam\",\"id\":42407972,\"id_str\":\"42407972\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2150\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[155,160]},{\"text\":\"Carterefe\",\"indices\":[162,172]},{\"text\":\"garner\",\"indices\":[174,181]},{\"text\":\"StopSellingPi\",\"indices\":[183,197]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"NYSC\",\"indices\":[208,213]},{\"text\":\"Fofana\",\"indices\":[214,221]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[223,248]},{\"text\":\"OBIDIENTS\",\"indices\":[250,260]},{\"text\":\"zulum\",\"indices\":[262,268]},{\"text\":\"Southeast\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554072685868728322,\"id_str\":\"1554072685868728322\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"url\":\"https:\\/\\/t.co\\/3IGUplY2N4\",\"display_url\":\"pic.twitter.com\\/3IGUplY2N4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554072695142338561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2151\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[59,71]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"Chinese\",\"indices\":[112,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JuddLegum\",\"name\":\"Judd Legum\",\"id\":15464697,\"id_str\":\"15464697\",\"indices\":[0,10]},{\"screen_name\":\"mtbarra\",\"name\":\"Mary Barra\",\"id\":1219824320,\"id_str\":\"1219824320\",\"indices\":[11,19]},{\"screen_name\":\"BizRoundtable\",\"name\":\"Business Roundtable\",\"id\":44682276,\"id_str\":\"44682276\",\"indices\":[20,34]},{\"screen_name\":\"SenatorSinema\",\"name\":\"Kyrsten Sinema\",\"id\":1080844782,\"id_str\":\"1080844782\",\"indices\":[35,49]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[73,87]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2152\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[77,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GOPChairwoman\",\"name\":\"Ronna McDaniel\",\"id\":2353605901,\"id_str\":\"2353605901\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2153\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Joyce_Karam\",\"name\":\"Joyce Karam\",\"id\":42407972,\"id_str\":\"42407972\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2154\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FoxNews\",\"name\":\"Fox News\",\"id\":1367531,\"id_str\":\"1367531\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2155\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[14,26]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"Chinese\",\"indices\":[67,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WSJ\",\"name\":\"The Wall Street Journal\",\"id\":3108351,\"id_str\":\"3108351\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[28,42]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2156\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[14,26]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"Chinese\",\"indices\":[67,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ABC\",\"name\":\"ABC News\",\"id\":28785486,\"id_str\":\"28785486\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[28,42]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2157\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CBSNews\",\"name\":\"CBS News\",\"id\":15012486,\"id_str\":\"15012486\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2158\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"guardian\",\"name\":\"The Guardian\",\"id\":87818409,\"id_str\":\"87818409\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2159\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Le_Figaro\",\"name\":\"Le Figaro\",\"id\":8350912,\"id_str\":\"8350912\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2160\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2161\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[16,28]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Chinese\",\"indices\":[69,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BFMTV\",\"name\":\"BFMTV\",\"id\":133663801,\"id_str\":\"133663801\",\"indices\":[0,6]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[30,44]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2162\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[35,47]},{\"text\":\"Pelosi\",\"indices\":[65,72]},{\"text\":\"Chinese\",\"indices\":[88,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SteveDeaceShow\",\"name\":\"Steve Deace\",\"id\":177564016,\"id_str\":\"177564016\",\"indices\":[0,15]},{\"screen_name\":\"theblaze\",\"name\":\"TheBlaze\",\"id\":10774652,\"id_str\":\"10774652\",\"indices\":[16,25]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[49,63]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2163\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"washingtonpost\",\"name\":\"The Washington Post\",\"id\":2467791,\"id_str\":\"2467791\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2164\":{\"hashtags\":[{\"text\":\"jhopeAtLollapalooza\",\"indices\":[82,102]},{\"text\":\"BBNaija\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"Kosovo\",\"indices\":[120,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"flyairpeace\",\"name\":\"Air Peace\",\"id\":2364221636,\"id_str\":\"2364221636\",\"indices\":[0,12]}],\"urls\":[]},\"2165\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[37,49]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BarbMcQuade\",\"name\":\"Barb McQuade\",\"id\":20094409,\"id_str\":\"20094409\",\"indices\":[0,12]},{\"screen_name\":\"JRubinBlogger\",\"name\":\"Jennifer \\\"Pro-privacy\\\" Rubin\",\"id\":218975278,\"id_str\":\"218975278\",\"indices\":[13,27]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[51,65]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2166\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"conorsen\",\"name\":\"Conor Sen\",\"id\":70778344,\"id_str\":\"70778344\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2167\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[48,60]},{\"text\":\"Pelosi\",\"indices\":[78,85]},{\"text\":\"Chinese\",\"indices\":[101,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JuddLegum\",\"name\":\"Judd Legum\",\"id\":15464697,\"id_str\":\"15464697\",\"indices\":[0,10]},{\"screen_name\":\"GM\",\"name\":\"General Motors\",\"id\":10850192,\"id_str\":\"10850192\",\"indices\":[11,14]},{\"screen_name\":\"mtbarra\",\"name\":\"Mary Barra\",\"id\":1219824320,\"id_str\":\"1219824320\",\"indices\":[15,23]},{\"screen_name\":\"BizRoundtable\",\"name\":\"Business Roundtable\",\"id\":44682276,\"id_str\":\"44682276\",\"indices\":[24,38]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[62,76]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2168\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EliotHiggins\",\"name\":\"Eliot Higgins\",\"id\":288755234,\"id_str\":\"288755234\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2169\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PrisonPlanet\",\"name\":\"Paul Joseph Watson\",\"id\":18643437,\"id_str\":\"18643437\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2170\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PrisonPlanet\",\"name\":\"Paul Joseph Watson\",\"id\":18643437,\"id_str\":\"18643437\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2171\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PrisonPlanet\",\"name\":\"Paul Joseph Watson\",\"id\":18643437,\"id_str\":\"18643437\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2172\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[40,52]},{\"text\":\"Pelosi\",\"indices\":[70,77]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"peterbakernyt\",\"name\":\"Peter Baker\",\"id\":123327472,\"id_str\":\"123327472\",\"indices\":[0,14]},{\"screen_name\":\"bruceweber1103\",\"name\":\"bruce weber\",\"id\":176922637,\"id_str\":\"176922637\",\"indices\":[15,30]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[54,68]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2173\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[16,28]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Chinese\",\"indices\":[69,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"pbump\",\"name\":\"Philip Bump\",\"id\":950531,\"id_str\":\"950531\",\"indices\":[0,6]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[30,44]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2174\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[71,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mtaibbi\",\"name\":\"Matt Taibbi\",\"id\":38271276,\"id_str\":\"38271276\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2175\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EURACTIV\",\"name\":\"EURACTIV\",\"id\":14808226,\"id_str\":\"14808226\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2176\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[74,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SamRamani2\",\"name\":\"Samuel Ramani\",\"id\":1957610664,\"id_str\":\"1957610664\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2177\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BarstoolBigCat\",\"name\":\"Big Cat\",\"id\":123276343,\"id_str\":\"123276343\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2178\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[9,21]},{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"Chinese\",\"indices\":[62,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[23,37]}],\"urls\":[],\"media\":[{\"id\":1554068586636926979,\"id_str\":\"1554068586636926979\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEpJU8WYAMX9EV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEpJU8WYAMX9EV.jpg\",\"url\":\"https:\\/\\/t.co\\/wGO4kZzOHa\",\"display_url\":\"pic.twitter.com\\/wGO4kZzOHa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554068589812060173\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1041,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":610,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":346,\"h\":680,\"resize\":\"fit\"}}}]},\"2179\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RULiquid\",\"name\":\"Ruliquid Trader\",\"id\":36990709,\"id_str\":\"36990709\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2180\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DailyMail\",\"name\":\"Daily Mail US\",\"id\":380285402,\"id_str\":\"380285402\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2181\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[76,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"alessionaval\",\"name\":\"Alessio Patalano\",\"id\":1316331686,\"id_str\":\"1316331686\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2182\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jeff_kaye\",\"name\":\"Jeffrey Kaye\",\"id\":47035436,\"id_str\":\"47035436\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2183\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"brianhioe\",\"name\":\"Brian Hioe \\u4e18\\u7426\\u6b23\",\"id\":203822998,\"id_str\":\"203822998\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2184\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ivan_8848\",\"name\":\"Ignorance, the root and stem of all evil\",\"id\":765599356980498432,\"id_str\":\"765599356980498432\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2185\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HindustanTimes\",\"name\":\"Hindustan Times\",\"id\":1066972567943053312,\"id_str\":\"1066972567943053312\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2186\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[59,71]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"Chinese\",\"indices\":[112,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"willripleyCNN\",\"name\":\"Will Ripley\",\"id\":22138134,\"id_str\":\"22138134\",\"indices\":[0,14]},{\"screen_name\":\"EricCheungwc\",\"name\":\"Eric Cheung\",\"id\":1678851919,\"id_str\":\"1678851919\",\"indices\":[15,28]},{\"screen_name\":\"kylieatwood\",\"name\":\"Kylie Atwood\",\"id\":56001656,\"id_str\":\"56001656\",\"indices\":[29,41]},{\"screen_name\":\"NewDay\",\"name\":\"New Day\",\"id\":1375289149,\"id_str\":\"1375289149\",\"indices\":[42,49]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[73,87]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2187\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[28,40]},{\"text\":\"Pelosi\",\"indices\":[58,65]},{\"text\":\"Chinese\",\"indices\":[81,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeromeTaylor\",\"name\":\"Jerome Taylor\",\"id\":27284203,\"id_str\":\"27284203\",\"indices\":[0,13]},{\"screen_name\":\"AFP\",\"name\":\"AFP News Agency\",\"id\":380648579,\"id_str\":\"380648579\",\"indices\":[14,18]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[42,56]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2188\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[40,52]},{\"text\":\"Pelosi\",\"indices\":[70,77]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"andreasharsono\",\"name\":\"Andreas Harsono\",\"id\":25250613,\"id_str\":\"25250613\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[16,30]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[54,68]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2189\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[75,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BillKristol\",\"name\":\"Bill Kristol\",\"id\":2800581040,\"id_str\":\"2800581040\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2190\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ndtvfeed\",\"name\":\"NDTV News feed\",\"id\":96900937,\"id_str\":\"96900937\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2191\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"spectatorindex\",\"name\":\"The Spectator Index\",\"id\":1626294277,\"id_str\":\"1626294277\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2192\":{\"hashtags\":[{\"text\":\"BORNPINK\",\"indices\":[89,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]},{\"text\":\"BeautyTukura\",\"indices\":[107,120]},{\"text\":\"BBNajia\",\"indices\":[121,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2193\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[73,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AnonOpsSE\",\"name\":\"Anonymous Operations\",\"id\":1009546724,\"id_str\":\"1009546724\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2194\":{\"hashtags\":[{\"text\":\"August\",\"indices\":[9,16]},{\"text\":\"Mondayvibes\",\"indices\":[93,105]},{\"text\":\"Tembisa\",\"indices\":[107,115]},{\"text\":\"StopSellingPi\",\"indices\":[116,130]},{\"text\":\"breastfeeding\",\"indices\":[131,145]},{\"text\":\"Wizkidfc\",\"indices\":[146,155]},{\"text\":\"LUNC\",\"indices\":[156,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Ilebaye\",\"indices\":[170,178]},{\"text\":\"Asuu\",\"indices\":[180,185]},{\"text\":\"nigerians\",\"indices\":[186,196]},{\"text\":\"twitter\",\"indices\":[197,205]},{\"text\":\"lagosnigeria\",\"indices\":[206,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554061549962252289,\"id_str\":\"1554061549962252289\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEivvSX0AEkjhJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEivvSX0AEkjhJ.jpg\",\"url\":\"https:\\/\\/t.co\\/ttoQqo8OUd\",\"display_url\":\"pic.twitter.com\\/ttoQqo8OUd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shoppurple_mall\\/status\\/1554061552902443015\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2195\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SkyNews\",\"name\":\"Sky News\",\"id\":7587032,\"id_str\":\"7587032\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2196\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[16,28]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Chinese\",\"indices\":[87,95]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ltntw\",\"name\":\"\\u81ea\\u7531\\u6642\\u5831\",\"id\":3029501171,\"id_str\":\"3029501171\",\"indices\":[0,6]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[30,44]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2197\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[47,59]},{\"text\":\"Pelosi\",\"indices\":[77,84]},{\"text\":\"Chinese\",\"indices\":[118,126]},{\"text\":\"Taiwan\",\"indices\":[128,135]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"Breakingviews\",\"name\":\"ReutersBreakingviews\",\"id\":12794362,\"id_str\":\"12794362\",\"indices\":[9,23]},{\"screen_name\":\"JennHughes13\",\"name\":\"Jenn Hughes\",\"id\":17487346,\"id_str\":\"17487346\",\"indices\":[24,37]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[61,75]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2198\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SkyNews\",\"name\":\"Sky News\",\"id\":7587032,\"id_str\":\"7587032\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2199\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[35,47]},{\"text\":\"Pelosi\",\"indices\":[65,72]},{\"text\":\"Chinese\",\"indices\":[106,114]},{\"text\":\"Taiwan\",\"indices\":[116,123]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AsiaFreePress\",\"name\":\"Asia Free Press (AFP)\",\"id\":1425471172880310277,\"id_str\":\"1425471172880310277\",\"indices\":[0,14]},{\"screen_name\":\"MFA_China\",\"name\":\"Spokesperson\\u53d1\\u8a00\\u4eba\\u529e\\u516c\\u5ba4\",\"id\":1183694592433983489,\"id_str\":\"1183694592433983489\",\"indices\":[15,25]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[49,63]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2200\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[86,94]},{\"text\":\"Taiwan\",\"indices\":[96,103]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cnni\",\"name\":\"CNN International\",\"id\":2097571,\"id_str\":\"2097571\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2201\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SCMPNews\",\"name\":\"South China Morning Post\",\"id\":23922797,\"id_str\":\"23922797\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2202\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[86,94]},{\"text\":\"Taiwan\",\"indices\":[96,103]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cnni\",\"name\":\"CNN International\",\"id\":2097571,\"id_str\":\"2097571\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2203\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[46,53]},{\"text\":\"Trending\",\"indices\":[54,63]},{\"text\":\"ViralVideo\",\"indices\":[64,75]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BestShadito\",\"name\":\"Shadito\\ud83d\\udc93Best Tv\",\"id\":1372255015734239233,\"id_str\":\"1372255015734239233\",\"indices\":[76,88]},{\"screen_name\":\"AmgMedikal\",\"name\":\"KING MED \\ud83d\\udc51\",\"id\":338473960,\"id_str\":\"338473960\",\"indices\":[89,100]},{\"screen_name\":\"shattawalegh\",\"name\":\"SHATTA WALE\",\"id\":310709509,\"id_str\":\"310709509\",\"indices\":[101,114]},{\"screen_name\":\"phobia_fans\",\"name\":\"Accra Hearts of Oak SC Fans \\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddf9\\ud83c\\udde9\",\"id\":1947112224,\"id_str\":\"1947112224\",\"indices\":[115,127]}],\"urls\":[],\"media\":[{\"id\":1554060082450759682,\"id_str\":\"1554060082450759682\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554060082450759682\\/pu\\/img\\/pCPR6HrFBDEhYjuj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554060082450759682\\/pu\\/img\\/pCPR6HrFBDEhYjuj.jpg\",\"url\":\"https:\\/\\/t.co\\/VzsqenS9T5\",\"display_url\":\"pic.twitter.com\\/VzsqenS9T5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BestShadito\\/status\\/1554060418125074435\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"2204\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MirMAKOfficial\",\"name\":\"Mir Mohammad Alikhan\",\"id\":3106815751,\"id_str\":\"3106815751\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2205\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"taiwanplusnews\",\"name\":\"TaiwanPlus\",\"id\":1339765547907465216,\"id_str\":\"1339765547907465216\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2206\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nathanlawkc\",\"name\":\"Nathan Law \\u7f85\\u51a0\\u8070\",\"id\":735811158469423105,\"id_str\":\"735811158469423105\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2207\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[51,63]},{\"text\":\"Pelosi\",\"indices\":[81,88]},{\"text\":\"Chinese\",\"indices\":[122,130]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"taiwanplusnews\",\"name\":\"TaiwanPlus\",\"id\":1339765547907465216,\"id_str\":\"1339765547907465216\",\"indices\":[0,15]},{\"screen_name\":\"JosephWen___\",\"name\":\"Joseph.W \\u7d04\\u745f\",\"id\":1520724037713874945,\"id_str\":\"1520724037713874945\",\"indices\":[16,29]},{\"screen_name\":\"bingwangtw\",\"name\":\"Bing Wang \\u738b\\u658c\",\"id\":1360490812623048706,\"id_str\":\"1360490812623048706\",\"indices\":[30,41]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[65,79]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2208\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[44,56]},{\"text\":\"Pelosi\",\"indices\":[74,81]},{\"text\":\"Chinese\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[125,132]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mkraju\",\"name\":\"Manu Raju\",\"id\":39155029,\"id_str\":\"39155029\",\"indices\":[0,7]},{\"screen_name\":\"EricCheungwc\",\"name\":\"Eric Cheung\",\"id\":1678851919,\"id_str\":\"1678851919\",\"indices\":[8,21]},{\"screen_name\":\"kylieatwood\",\"name\":\"Kylie Atwood\",\"id\":56001656,\"id_str\":\"56001656\",\"indices\":[22,34]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[58,72]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2209\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dw_hotspotasia\",\"name\":\"DW Asia\",\"id\":1219176308720181248,\"id_str\":\"1219176308720181248\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2210\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Pelosi\",\"indices\":[66,73]},{\"text\":\"Chinese\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Taiwan_Today\",\"name\":\"Taiwan Today\",\"id\":121371581,\"id_str\":\"121371581\",\"indices\":[0,13]},{\"screen_name\":\"MOFA_Taiwan\",\"name\":\"\\u5916\\u4ea4\\u90e8 Ministry of Foreign Affairs, ROC (Taiwan) \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":976995099170062338,\"id_str\":\"976995099170062338\",\"indices\":[14,26]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[50,64]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2211\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2212\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[14,26]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"Chinese\",\"indices\":[85,93]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CNN\",\"name\":\"CNN\",\"id\":759251,\"id_str\":\"759251\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[28,42]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2213\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[14,26]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"Chinese\",\"indices\":[85,93]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CNN\",\"name\":\"CNN\",\"id\":759251,\"id_str\":\"759251\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[28,42]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2214\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2215\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[86,94]},{\"text\":\"Taiwan\",\"indices\":[96,103]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cnni\",\"name\":\"CNN International\",\"id\":2097571,\"id_str\":\"2097571\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2216\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[49,58]},{\"text\":\"breastfeeding\",\"indices\":[59,73]},{\"text\":\"BORNPINK\",\"indices\":[74,83]},{\"text\":\"HOBIPALOOZA\",\"indices\":[84,96]},{\"text\":\"StopRussiaNOW\",\"indices\":[97,111]},{\"text\":\"StopSellingPi\",\"indices\":[112,126]},{\"text\":\"Tembisashutdown\",\"indices\":[127,143]},{\"text\":\"Ilebaye\",\"indices\":[144,152]},{\"text\":\"wizkidfc\",\"indices\":[153,162]},{\"text\":\"Serbia\",\"indices\":[163,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"BeautyTukura\",\"indices\":[179,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554056415291080704,\"id_str\":\"1554056415291080704\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2217\":{\"hashtags\":[{\"text\":\"firmusadvisory\",\"indices\":[66,81]},{\"text\":\"easystart\",\"indices\":[82,92]},{\"text\":\"InspiredToDeliverValue\",\"indices\":[93,116]},{\"text\":\"startnowstarteasy\",\"indices\":[117,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"CitiCBS\",\"indices\":[144,152]},{\"text\":\"Messi\",\"indices\":[153,159]},{\"text\":\"businessgrowth\",\"indices\":[161,176]},{\"text\":\"socialmedia\",\"indices\":[177,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UTJedhDrZX\",\"expanded_url\":\"https:\\/\\/us06web.zoom.us\\/...\\/reg...\\/WN_K8QqJC7WQB-Jmyq2JCRBRQ\",\"display_url\":\"us06web.zoom.us\\/...\\/reg...\\/WN_\\u2026\",\"indices\":[41,64]}]},\"2218\":{\"hashtags\":[{\"text\":\"rozarealtor\",\"indices\":[216,228]},{\"text\":\"lagosrealestate\",\"indices\":[229,245]},{\"text\":\"Serbia\",\"indices\":[246,253]},{\"text\":\"Taiwan\",\"indices\":[254,261]},{\"text\":\"BORNPINK\",\"indices\":[262,271]},{\"text\":\"Kosovo\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2219\":{\"hashtags\":[{\"text\":\"web\",\"indices\":[24,28]},{\"text\":\"webistagram\",\"indices\":[29,41]},{\"text\":\"webs\",\"indices\":[42,47]},{\"text\":\"webstagram\",\"indices\":[48,59]},{\"text\":\"Akure\",\"indices\":[60,66]},{\"text\":\"company\",\"indices\":[68,76]},{\"text\":\"websitecompany\",\"indices\":[77,92]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[94,101]},{\"text\":\"Wizkid\",\"indices\":[102,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iampaulemeka\",\"name\":\"Paul Emeka\",\"id\":824783948853047297,\"id_str\":\"824783948853047297\",\"indices\":[118,131]},{\"screen_name\":\"Dwayneire\",\"name\":\"Stona\",\"id\":402387203,\"id_str\":\"402387203\",\"indices\":[132,142]},{\"screen_name\":\"Oluwasogo123\",\"name\":\"olu of Akure\",\"id\":957401670308319234,\"id_str\":\"957401670308319234\",\"indices\":[143,156]},{\"screen_name\":\"JojoNationNG\",\"name\":\"AKURE BOI \\ud83c\\uddf3 the nightmare\",\"id\":980519288044965890,\"id_str\":\"980519288044965890\",\"indices\":[157,170]},{\"screen_name\":\"_mmanwu_\",\"name\":\"IZUCHUKWU jr.\",\"id\":775987612624494592,\"id_str\":\"775987612624494592\",\"indices\":[172,181]},{\"screen_name\":\"kennisfootwears\",\"name\":\"Onibata\\ud83d\\udc5e of Akure\",\"id\":1280417332159033344,\"id_str\":\"1280417332159033344\",\"indices\":[182,198]},{\"screen_name\":\"YummyTreat_\",\"name\":\"Yummy Treats Akure\",\"id\":1363544335011217409,\"id_str\":\"1363544335011217409\",\"indices\":[199,211]},{\"screen_name\":\"iam_hikay\",\"name\":\"Asst. Deji of Akure \\ud83d\\udc51\",\"id\":1460389028,\"id_str\":\"1460389028\",\"indices\":[213,223]},{\"screen_name\":\"AKURECITY\",\"name\":\"City Of \\u00c0k\\u00far\\u1eb9\\u0301 (Ol\\u00f3y\\u00e8m\\u1eb9kun)\",\"id\":1754198978,\"id_str\":\"1754198978\",\"indices\":[224,234]},{\"screen_name\":\"Akurezaddy\",\"name\":\"Zaddy of Akure\",\"id\":2426495415,\"id_str\":\"2426495415\",\"indices\":[235,246]},{\"screen_name\":\"AkureBuynSell\",\"name\":\"OFFICIAL AKURE BUY & SELL BEST PLUG\",\"id\":1506540267242987522,\"id_str\":\"1506540267242987522\",\"indices\":[247,261]},{\"screen_name\":\"Syno_Imperio\",\"name\":\"MIXOLOGIST OF AKURE\",\"id\":288000130,\"id_str\":\"288000130\",\"indices\":[262,275]}],\"urls\":[],\"media\":[{\"id\":1554047791734865920,\"id_str\":\"1554047791734865920\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEWO55WQAAFU9r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEWO55WQAAFU9r.jpg\",\"url\":\"https:\\/\\/t.co\\/N9iF4AGHDy\",\"display_url\":\"pic.twitter.com\\/N9iF4AGHDy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/paulotechng\\/status\\/1554048149836242944\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"2220\":{\"hashtags\":[{\"text\":\"web\",\"indices\":[109,113]},{\"text\":\"webistagram\",\"indices\":[114,126]},{\"text\":\"webs\",\"indices\":[127,132]},{\"text\":\"webstagram\",\"indices\":[133,144]},{\"text\":\"webdesign\",\"indices\":[145,155]},{\"text\":\"web3\",\"indices\":[156,161]},{\"text\":\"website\",\"indices\":[162,170]},{\"text\":\"Akure\",\"indices\":[171,177]},{\"text\":\"company\",\"indices\":[179,187]},{\"text\":\"websitecompany\",\"indices\":[188,203]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[204,211]},{\"text\":\"Wizkid\",\"indices\":[212,219]},{\"text\":\"Taiwan\",\"indices\":[220,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554044586451935232,\"id_str\":\"1554044586451935232\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZETUVSWIAAyDXv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZETUVSWIAAyDXv.jpg\",\"url\":\"https:\\/\\/t.co\\/rSu0H3Ysup\",\"display_url\":\"pic.twitter.com\\/rSu0H3Ysup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iampaulemeka\\/status\\/1554046306125025281\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"2221\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KeithJKrach\",\"name\":\"Keith J. Krach\",\"id\":350987335,\"id_str\":\"350987335\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[13,27]}],\"urls\":[]},\"2222\":{\"hashtags\":[{\"text\":\"artcollector\",\"indices\":[70,83]},{\"text\":\"nft\",\"indices\":[84,88]},{\"text\":\"art\",\"indices\":[89,93]},{\"text\":\"Taiwan\",\"indices\":[103,110]},{\"text\":\"obo\",\"indices\":[111,115]},{\"text\":\"nfthub\",\"indices\":[116,123]},{\"text\":\"fineartamerica\",\"indices\":[124,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[94,102]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vw3P0wsMj4\",\"expanded_url\":\"http:\\/\\/otobong-johnson.pixels.com\",\"display_url\":\"otobong-johnson.pixels.com\",\"indices\":[142,165]}]},\"2223\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Newsquawk\",\"name\":\"Newsquawk\",\"id\":42589787,\"id_str\":\"42589787\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2224\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[85,97]},{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"Chinese\",\"indices\":[156,164]},{\"text\":\"Taiwan\",\"indices\":[166,173]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MOFA_Taiwan\",\"name\":\"\\u5916\\u4ea4\\u90e8 Ministry of Foreign Affairs, ROC (Taiwan) \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":976995099170062338,\"id_str\":\"976995099170062338\",\"indices\":[0,12]},{\"screen_name\":\"DanteMossi\",\"name\":\"Dante Mossi\",\"id\":830042012065918978,\"id_str\":\"830042012065918978\",\"indices\":[13,24]},{\"screen_name\":\"CABEI_Org\",\"name\":\"CABEI\",\"id\":751177329054023680,\"id_str\":\"751177329054023680\",\"indices\":[25,35]},{\"screen_name\":\"EnriqueReinaHN\",\"name\":\"Enrique Reina\",\"id\":358823600,\"id_str\":\"358823600\",\"indices\":[36,51]},{\"screen_name\":\"CancilleriaHN\",\"name\":\"Canciller\\u00eda Honduras\",\"id\":229993443,\"id_str\":\"229993443\",\"indices\":[52,66]},{\"screen_name\":\"MinexGt\",\"name\":\"MINEX Guatemala \\ud83c\\uddec\\ud83c\\uddf9\",\"id\":163221131,\"id_str\":\"163221131\",\"indices\":[67,75]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[99,113]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2225\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2226\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[216,228]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[229,249]},{\"text\":\"Kosovo\",\"indices\":[250,257]},{\"text\":\"Serbia\",\"indices\":[258,265]},{\"text\":\"Taiwan\",\"indices\":[266,273]},{\"text\":\"BLACKPINK\",\"indices\":[274,284]},{\"text\":\"UFC277\",\"indices\":[285,292]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554040474175930369,\"id_str\":\"1554040474175930369\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEPk93WAAEXeZK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEPk93WAAEXeZK.jpg\",\"url\":\"https:\\/\\/t.co\\/5qEEYKR6Xg\",\"display_url\":\"pic.twitter.com\\/5qEEYKR6Xg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554040492173791232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2227\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[20,29]},{\"text\":\"August2022\",\"indices\":[30,41]},{\"text\":\"Taiwan\",\"indices\":[42,49]},{\"text\":\"AugustWish\",\"indices\":[50,61]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554037122063126528,\"id_str\":\"1554037122063126528\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"url\":\"https:\\/\\/t.co\\/TP3THbcurf\",\"display_url\":\"pic.twitter.com\\/TP3THbcurf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HoftDevelopers\\/status\\/1554037139071025155\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2228\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"HOBIPALOOZA\",\"indices\":[32,44]},{\"text\":\"Trending\",\"indices\":[45,54]},{\"text\":\"WEURO2022\",\"indices\":[55,65]},{\"text\":\"TrendingNow\",\"indices\":[66,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554036339481497601,\"id_str\":\"1554036339481497601\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"url\":\"https:\\/\\/t.co\\/Qpkfw5I2oz\",\"display_url\":\"pic.twitter.com\\/Qpkfw5I2oz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Survival690\\/status\\/1554036352378888192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2229\":{\"hashtags\":[{\"text\":\"vennrhymes\",\"indices\":[23,34]},{\"text\":\"internationalspeaker\",\"indices\":[35,56]},{\"text\":\"Serbia\",\"indices\":[57,64]},{\"text\":\"Kosovo\",\"indices\":[65,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BLACKPINK\",\"indices\":[81,91]},{\"text\":\"BBNaija7\",\"indices\":[92,101]},{\"text\":\"breastfeeding\",\"indices\":[102,116]},{\"text\":\"mondaythoughts\",\"indices\":[117,132]},{\"text\":\"MotivationalQuotes\",\"indices\":[133,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554033726383865856,\"id_str\":\"1554033726383865856\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEJcMYWQAAb5OG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEJcMYWQAAb5OG.jpg\",\"url\":\"https:\\/\\/t.co\\/GyKivgJTKm\",\"display_url\":\"pic.twitter.com\\/GyKivgJTKm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VennRhymes\\/status\\/1554033731681263617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2230\":{\"hashtags\":[{\"text\":\"African\",\"indices\":[47,55]},{\"text\":\"AfricasWomensDay\",\"indices\":[56,73]},{\"text\":\"AfricaWomensDay\",\"indices\":[74,90]},{\"text\":\"africanprostitute\",\"indices\":[91,109]},{\"text\":\"AfricanFootball\",\"indices\":[110,126]},{\"text\":\"africanteen\",\"indices\":[127,139]},{\"text\":\"Africa\",\"indices\":[140,147]},{\"text\":\"HOBIPALOOZA\",\"indices\":[148,160]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[161,181]},{\"text\":\"Kosovo\",\"indices\":[182,189]},{\"text\":\"Serbia\",\"indices\":[190,197]},{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"BLACKPINK\",\"indices\":[206,216]},{\"text\":\"Serbia\",\"indices\":[217,224]},{\"text\":\"Lollapalooza\",\"indices\":[226,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554032890933121025,\"id_str\":\"1554032890933121025\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEIrkFXkAEruor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEIrkFXkAEruor.jpg\",\"url\":\"https:\\/\\/t.co\\/SjIb9fEcHe\",\"display_url\":\"pic.twitter.com\\/SjIb9fEcHe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1554032902287007744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":715,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":715,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2231\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[155,164]},{\"text\":\"HOBIPALOOZA\",\"indices\":[165,177]},{\"text\":\"Serbia\",\"indices\":[178,185]},{\"text\":\"Taiwan\",\"indices\":[186,193]},{\"text\":\"BLACKPINK\",\"indices\":[194,204]},{\"text\":\"breastfeeding\",\"indices\":[205,219]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"youngbobby4real\",\"name\":\"Young Bobby\",\"id\":1138159680570740736,\"id_str\":\"1138159680570740736\",\"indices\":[56,72]}],\"urls\":[],\"media\":[{\"id\":1554030435428192258,\"id_str\":\"1554030435428192258\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"url\":\"https:\\/\\/t.co\\/U2kEVZJVPo\",\"display_url\":\"pic.twitter.com\\/U2kEVZJVPo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legitinfong\\/status\\/1554030867332431873\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2232\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[213,220]},{\"text\":\"Obidatti023\",\"indices\":[245,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2233\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[113,122]},{\"text\":\"New\",\"indices\":[123,127]},{\"text\":\"breastfeeding\",\"indices\":[128,142]},{\"text\":\"HOBIPALOOZA\",\"indices\":[143,155]},{\"text\":\"Serbia\",\"indices\":[156,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"BLACKPINK\",\"indices\":[172,182]},{\"text\":\"BBNaija7\",\"indices\":[183,192]},{\"text\":\"kpss2022\",\"indices\":[193,202]},{\"text\":\"Lollapalooza\",\"indices\":[203,216]},{\"text\":\"\\ub108\\ud76c\\uacc1\\uc5d0_STAY\\ud55c\\uc9c0_4\\ub144\",\"indices\":[217,232]},{\"text\":\"TaapseePannu\",\"indices\":[233,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554029463196811266,\"id_str\":\"1554029463196811266\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"url\":\"https:\\/\\/t.co\\/JscPy4y8kZ\",\"display_url\":\"pic.twitter.com\\/JscPy4y8kZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostolicGraceN\\/status\\/1554029474986991618\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2234\":{\"hashtags\":[{\"text\":\"Serbia\",\"indices\":[250,257]},{\"text\":\"Taiwan\",\"indices\":[258,265]},{\"text\":\"BLACKPINK\",\"indices\":[266,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/atTUd8qhFi\",\"expanded_url\":\"http:\\/\\/www.Jobblasts.com\",\"display_url\":\"Jobblasts.com\",\"indices\":[170,193]}],\"media\":[{\"id\":1554029289909231619,\"id_str\":\"1554029289909231619\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEFZ9OXoAM0e3H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEFZ9OXoAM0e3H.jpg\",\"url\":\"https:\\/\\/t.co\\/6phqI5q4Vn\",\"display_url\":\"pic.twitter.com\\/6phqI5q4Vn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobblasts_ng\\/status\\/1554029296246788096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"2235\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[109,121]},{\"text\":\"Serbia\",\"indices\":[122,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"breastfeeding\",\"indices\":[138,152]},{\"text\":\"vawulence\",\"indices\":[153,163]},{\"text\":\"vawulenceTv\",\"indices\":[164,176]},{\"text\":\"vawulenceHQ\",\"indices\":[177,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554027337997602816,\"id_str\":\"1554027337997602816\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"url\":\"https:\\/\\/t.co\\/RhFri0ZtWW\",\"display_url\":\"pic.twitter.com\\/RhFri0ZtWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554027348588216324\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":269,\"resize\":\"fit\"}}}]},\"2236\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[47,57]},{\"text\":\"Kosovo\",\"indices\":[58,65]},{\"text\":\"Abuja\",\"indices\":[66,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BLACKPINK\",\"indices\":[81,91]},{\"text\":\"August\",\"indices\":[92,99]},{\"text\":\"breastfeeding\",\"indices\":[100,114]},{\"text\":\"Serbia\",\"indices\":[115,122]},{\"text\":\"JHOPE\",\"indices\":[123,129]},{\"text\":\"BamBam\",\"indices\":[130,137]},{\"text\":\"MissUniverseThailand2022\",\"indices\":[138,163]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[164,186]},{\"text\":\"BBNajia\",\"indices\":[187,195]},{\"text\":\"bbnaija\",\"indices\":[196,204]},{\"text\":\"Bbnaija\",\"indices\":[205,213]},{\"text\":\"newmonth\",\"indices\":[214,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554026497995788289,\"id_str\":\"1554026497995788289\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"url\":\"https:\\/\\/t.co\\/5sJUGqLYM3\",\"display_url\":\"pic.twitter.com\\/5sJUGqLYM3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BnBhairsalon\\/status\\/1554026517906083841\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":360,\"resize\":\"fit\"}}}]},\"2237\":{\"hashtags\":[{\"text\":\"august\",\"indices\":[34,41]},{\"text\":\"youtube\",\"indices\":[87,95]},{\"text\":\"Fnktvetalk\",\"indices\":[96,107]},{\"text\":\"fashionmataz\",\"indices\":[108,121]},{\"text\":\"fnksiblings\",\"indices\":[123,135]},{\"text\":\"comedy\",\"indices\":[137,144]},{\"text\":\"Fnktv\",\"indices\":[145,151]},{\"text\":\"trending\",\"indices\":[152,161]},{\"text\":\"afrobeats\",\"indices\":[162,172]},{\"text\":\"nigeriaentertainment\",\"indices\":[174,195]},{\"text\":\"ghanaentertainment\",\"indices\":[197,216]},{\"text\":\"mondaymotivation\",\"indices\":[218,235]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[237,259]},{\"text\":\"BBNaija7\",\"indices\":[260,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554022925891735552,\"id_str\":\"1554022925891735552\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZD_nhaXEAAzXor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZD_nhaXEAAzXor.jpg\",\"url\":\"https:\\/\\/t.co\\/ngR2bsaPZx\",\"display_url\":\"pic.twitter.com\\/ngR2bsaPZx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fnktvchannel\\/status\\/1554022939816869895\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2238\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"brianhioe\",\"name\":\"Brian Hioe \\u4e18\\u7426\\u6b23\",\"id\":203822998,\"id_str\":\"203822998\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2239\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Focus_Taiwan\",\"name\":\"Focus Taiwan (CNA English News)\",\"id\":60514666,\"id_str\":\"60514666\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2240\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[39,51]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"Chinese\",\"indices\":[110,118]},{\"text\":\"Taiwan\",\"indices\":[120,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rosemaryCNN\",\"name\":\"Rosemary Church\",\"id\":27443744,\"id_str\":\"27443744\",\"indices\":[0,12]},{\"screen_name\":\"LevinsonJessica\",\"name\":\"Jessica Levinson\",\"id\":137589397,\"id_str\":\"137589397\",\"indices\":[13,29]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[53,67]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2241\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LinkeviciusL\",\"name\":\"Linas Linkevicius\",\"id\":1042307696,\"id_str\":\"1042307696\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2242\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nytchinese\",\"name\":\"\\u7ebd\\u7ea6\\u65f6\\u62a5\\u4e2d\\u6587\\u7f51\",\"id\":620632841,\"id_str\":\"620632841\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2243\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CBSNews\",\"name\":\"CBS News\",\"id\":15012486,\"id_str\":\"15012486\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2244\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lukedepulford\",\"name\":\"Luke de Pulford \\u88f4\\u502b\\u5fb7\",\"id\":2279301618,\"id_str\":\"2279301618\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2245\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SCMPNews\",\"name\":\"South China Morning Post\",\"id\":23922797,\"id_str\":\"23922797\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2246\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[50,62]},{\"text\":\"Pelosi\",\"indices\":[80,87]},{\"text\":\"Chinese\",\"indices\":[121,129]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WSJ\",\"name\":\"The Wall Street Journal\",\"id\":3108351,\"id_str\":\"3108351\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[64,78]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2247\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GilbertCollard\",\"name\":\"Gilbert Collard\",\"id\":471163803,\"id_str\":\"471163803\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2248\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[28,40]},{\"text\":\"Pelosi\",\"indices\":[58,65]},{\"text\":\"Chinese\",\"indices\":[99,107]},{\"text\":\"Taiwan\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MSNBC\",\"name\":\"MSNBC\",\"id\":2836421,\"id_str\":\"2836421\",\"indices\":[0,6]},{\"screen_name\":\"thereidout\",\"name\":\"The ReidOut\",\"id\":205864193,\"id_str\":\"205864193\",\"indices\":[7,18]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[42,56]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2249\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2250\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[86,94]},{\"text\":\"Taiwan\",\"indices\":[96,103]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cnni\",\"name\":\"CNN International\",\"id\":2097571,\"id_str\":\"2097571\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2251\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HannaLiubakova\",\"name\":\"Hanna Liubakova\",\"id\":720139699,\"id_str\":\"720139699\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2252\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"yarotrof\",\"name\":\"Yaroslav Trofimov\",\"id\":30011100,\"id_str\":\"30011100\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2253\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RediTlhabi\",\"name\":\"Redi Tlhabi\",\"id\":126240387,\"id_str\":\"126240387\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2254\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JujuliaGrace\",\"name\":\"Dr Julia Grace Patterson\\ud83d\\udc99\",\"id\":1315053256343719936,\"id_str\":\"1315053256343719936\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2255\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2256\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dw_chinese\",\"name\":\"DW \\u4e2d\\u6587- \\u5fb7\\u56fd\\u4e4b\\u58f0\",\"id\":143810986,\"id_str\":\"143810986\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2257\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SkyNews\",\"name\":\"Sky News\",\"id\":7587032,\"id_str\":\"7587032\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2258\":{\"hashtags\":[{\"text\":\"ShibaDoge\",\"indices\":[32,42]},{\"text\":\"family\",\"indices\":[43,50]},{\"text\":\"SHIBARMY\",\"indices\":[66,75]},{\"text\":\"DOGEARMY\",\"indices\":[76,85]},{\"text\":\"SHIBARIUM\",\"indices\":[86,96]},{\"text\":\"unity\",\"indices\":[97,103]},{\"text\":\"love\",\"indices\":[104,109]},{\"text\":\"Respect\",\"indices\":[110,118]},{\"text\":\"NFTs\",\"indices\":[119,124]},{\"text\":\"NFTGiveaway\",\"indices\":[125,137]},{\"text\":\"NFT\",\"indices\":[138,142]},{\"text\":\"BBNaija7\",\"indices\":[143,152]},{\"text\":\"NATO\",\"indices\":[153,158]},{\"text\":\"Kosovo\",\"indices\":[159,166]},{\"text\":\"Serbia\",\"indices\":[167,174]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[175,195]},{\"text\":\"BLACKPINK\",\"indices\":[196,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"BeautyTukura\",\"indices\":[215,228]},{\"text\":\"HOBIPALO0ZA\",\"indices\":[229,241]},{\"text\":\"JHOPE\",\"indices\":[242,248]},{\"text\":\"TXTPALOOZA\",\"indices\":[249,260]},{\"text\":\"HobiPaloozalsComin\",\"indices\":[261,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RealShibaDoge\",\"name\":\"Shiba Doge\",\"id\":1474178850305110017,\"id_str\":\"1474178850305110017\",\"indices\":[51,65]}],\"urls\":[],\"media\":[{\"id\":1553991940902977536,\"id_str\":\"1553991940902977536\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDjb9VXgAAJJ5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDjb9VXgAAJJ5b.jpg\",\"url\":\"https:\\/\\/t.co\\/5raea53SKE\",\"display_url\":\"pic.twitter.com\\/5raea53SKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MRunswag\\/status\\/1553991949765513217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2259\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[48,57]},{\"text\":\"august\",\"indices\":[58,65]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[68,88]},{\"text\":\"Serbia\",\"indices\":[89,96]},{\"text\":\"Kosovo\",\"indices\":[97,104]},{\"text\":\"BLACKPINK\",\"indices\":[105,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"BBNaija7\",\"indices\":[124,133]},{\"text\":\"BeautyTukura\",\"indices\":[134,147]},{\"text\":\"NATO\",\"indices\":[148,153]},{\"text\":\"JHOPE\",\"indices\":[154,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553990294718357505,\"id_str\":\"1553990294718357505\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDh8I0XoAEOj56.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDh8I0XoAEOj56.jpg\",\"url\":\"https:\\/\\/t.co\\/xRSc2cPjYW\",\"display_url\":\"pic.twitter.com\\/xRSc2cPjYW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PetrousyD\\/status\\/1553990303949983745\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2260\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[35,44]},{\"text\":\"august\",\"indices\":[45,52]},{\"text\":\"business\",\"indices\":[53,62]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[65,85]},{\"text\":\"Serbia\",\"indices\":[86,93]},{\"text\":\"Kosovo\",\"indices\":[94,101]},{\"text\":\"BLACKPINK\",\"indices\":[102,112]},{\"text\":\"BBNaija7\",\"indices\":[113,122]},{\"text\":\"BAMBAM_KPOPMASTERZBKK\",\"indices\":[123,145]},{\"text\":\"Taiwan\",\"indices\":[146,153]},{\"text\":\"BeautyTukura\",\"indices\":[154,167]},{\"text\":\"NATO\",\"indices\":[168,173]},{\"text\":\"JHOPE\",\"indices\":[174,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553989959081758722,\"id_str\":\"1553989959081758722\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDhomeXkAImO3n.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDhomeXkAImO3n.jpg\",\"url\":\"https:\\/\\/t.co\\/JjHyJ7KvAk\",\"display_url\":\"pic.twitter.com\\/JjHyJ7KvAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PetrousyD\\/status\\/1553989969529692162\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2261\":{\"hashtags\":[{\"text\":\"jhopeAtLollapalooza\",\"indices\":[50,70]},{\"text\":\"Serbia\",\"indices\":[71,78]},{\"text\":\"Kosovo\",\"indices\":[79,86]},{\"text\":\"BeautyTukura\",\"indices\":[87,100]},{\"text\":\"NATO\",\"indices\":[101,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]},{\"text\":\"deputygovernor\",\"indices\":[115,130]},{\"text\":\"HOBIPALO0ZA\",\"indices\":[131,143]},{\"text\":\"HarryStylesPortugal\",\"indices\":[144,164]},{\"text\":\"AmberHeardIsALiar\",\"indices\":[165,183]},{\"text\":\"BAMBAM_KPOPMASTERZBKK\",\"indices\":[184,206]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553987260923756545,\"id_str\":\"1553987260923756545\",\"indices\":[207,230],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553987260923756545\\/pu\\/img\\/i3Fvuivv0q875A-i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553987260923756545\\/pu\\/img\\/i3Fvuivv0q875A-i.jpg\",\"url\":\"https:\\/\\/t.co\\/gahv6I41Cx\",\"display_url\":\"pic.twitter.com\\/gahv6I41Cx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ayoola_igwe\\/status\\/1553987312983351297\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2262\":{\"hashtags\":[{\"text\":\"shinepublications\",\"indices\":[161,179]},{\"text\":\"salmamumin\",\"indices\":[180,191]},{\"text\":\"zongoboys\",\"indices\":[192,202]},{\"text\":\"NATO\",\"indices\":[203,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"GhanaCard\",\"indices\":[217,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553987294977302530,\"id_str\":\"1553987294977302530\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDfNh6XoAIn5TQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDfNh6XoAIn5TQ.jpg\",\"url\":\"https:\\/\\/t.co\\/mUso2qBbTk\",\"display_url\":\"pic.twitter.com\\/mUso2qBbTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShinepubGhana\\/status\\/1553987304494178306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":629,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":629,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":600,\"resize\":\"fit\"}}}]},\"2263\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[224,233]},{\"text\":\"Taiwan\",\"indices\":[234,241]},{\"text\":\"GistLoverStory\",\"indices\":[252,267]},{\"text\":\"Nigeria\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[242,251]}],\"urls\":[]},\"2264\":{\"hashtags\":[{\"text\":\"Nigeria\",\"indices\":[35,43]},{\"text\":\"BBNaija\",\"indices\":[44,52]},{\"text\":\"BeautyTukura\",\"indices\":[53,66]},{\"text\":\"JHOPE\",\"indices\":[67,73]},{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"AmberHeardIsALiar\",\"indices\":[82,100]},{\"text\":\"BLACKPINK\",\"indices\":[127,137]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IAmENISA\",\"name\":\"ENISA\",\"id\":2355632540,\"id_str\":\"2355632540\",\"indices\":[101,110]},{\"screen_name\":\"Tylathecurator\",\"name\":\"Tyla\",\"id\":1239083957423128576,\"id_str\":\"1239083957423128576\",\"indices\":[111,126]},{\"screen_name\":\"bella_okagbue\",\"name\":\"BELLA OKAGBUE\\u26a1\\ufe0f\",\"id\":184197158,\"id_str\":\"184197158\",\"indices\":[138,152]}],\"urls\":[]},\"2265\":{\"hashtags\":[{\"text\":\"Kosovo\",\"indices\":[135,142]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"HobiPaloozalsComing\",\"indices\":[151,171]},{\"text\":\"BeautyTukura\",\"indices\":[172,185]},{\"text\":\"BAMBAM_KPOPMASTERZBKK\",\"indices\":[186,208]},{\"text\":\"HarryStylesPortugal\",\"indices\":[209,229]},{\"text\":\"Serbia\",\"indices\":[230,237]},{\"text\":\"BLACKPINK\",\"indices\":[238,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qnT9SYwRP4\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/Qwqaw1\",\"display_url\":\"fiverr.com\\/share\\/Qwqaw1\",\"indices\":[253,276]}]},\"2266\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[55,63]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[65,85]},{\"text\":\"StopSellingPi\",\"indices\":[87,101]},{\"text\":\"Serbia\",\"indices\":[103,110]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553980665665814528,\"id_str\":\"1553980665665814528\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"url\":\"https:\\/\\/t.co\\/5ax4aWy7WO\",\"display_url\":\"pic.twitter.com\\/5ax4aWy7WO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1553980672951422976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"2267\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2268\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"politicalelle\",\"name\":\"Erielle Davidson\",\"id\":695054484083470336,\"id_str\":\"695054484083470336\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2269\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cskun1989\",\"name\":\"\\u8521\\u614e\\u5764\",\"id\":876321004120936448,\"id_str\":\"876321004120936448\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2270\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dw_chinese\",\"name\":\"DW \\u4e2d\\u6587- \\u5fb7\\u56fd\\u4e4b\\u58f0\",\"id\":143810986,\"id_str\":\"143810986\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2271\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2272\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MZHemingway\",\"name\":\"Mollie\",\"id\":18005085,\"id_str\":\"18005085\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2273\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2274\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2275\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lindyli\",\"name\":\"Lindy Li\",\"id\":270132611,\"id_str\":\"270132611\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2276\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"S7i5FV0JOz6sV3A\",\"name\":\"\\u6d69\\u54e5i\\u271d\\ufe0fi\\ud83c\\uddfa\\ud83c\\uddf8iA2\",\"id\":857374372218142720,\"id_str\":\"857374372218142720\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2277\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"meimei1935\",\"name\":\"\\u83f2\\u83f24.0\",\"id\":1280346745470439429,\"id_str\":\"1280346745470439429\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2278\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"narendramodi\",\"name\":\"Narendra Modi\",\"id\":18839785,\"id_str\":\"18839785\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2279\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MZHemingway\",\"name\":\"Mollie\",\"id\":18005085,\"id_str\":\"18005085\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2280\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"narendramodi\",\"name\":\"Narendra Modi\",\"id\":18839785,\"id_str\":\"18839785\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2281\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JoJoFromJerz\",\"name\":\"Jo \\ud83c\\udf3b\",\"id\":818893114979061761,\"id_str\":\"818893114979061761\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2282\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[109,117]},{\"text\":\"Taiwan\",\"indices\":[119,126]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JoJoFromJerz\",\"name\":\"Jo \\ud83c\\udf3b\",\"id\":818893114979061761,\"id_str\":\"818893114979061761\",\"indices\":[0,13]},{\"screen_name\":\"TheRickWilson\",\"name\":\"Rick Wilson\",\"id\":19084896,\"id_str\":\"19084896\",\"indices\":[14,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2283\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Pelosi\",\"indices\":[66,73]},{\"text\":\"Chinese\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"AngryGoTFan\",\"name\":\"AngryGoTFan\",\"id\":1099854275168092162,\"id_str\":\"1099854275168092162\",\"indices\":[14,26]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[50,64]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2284\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Realrclark25\",\"name\":\"Ryan Clark\",\"id\":2312904278,\"id_str\":\"2312904278\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2285\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DDNewslive\",\"name\":\"DD News\",\"id\":1100927498,\"id_str\":\"1100927498\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2286\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[50,62]},{\"text\":\"Pelosi\",\"indices\":[80,87]},{\"text\":\"Chinese\",\"indices\":[121,129]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Taiwan_Today\",\"name\":\"Taiwan Today\",\"id\":121371581,\"id_str\":\"121371581\",\"indices\":[0,13]},{\"screen_name\":\"KaohsiungCity\",\"name\":\"Kaohsiung City\",\"id\":3289650685,\"id_str\":\"3289650685\",\"indices\":[14,28]},{\"screen_name\":\"chimaichen\",\"name\":\"\\u9673\\u5176\\u9081\",\"id\":1072502907365339136,\"id_str\":\"1072502907365339136\",\"indices\":[29,40]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[64,78]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2287\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Pelosi\",\"indices\":[66,73]},{\"text\":\"Chinese\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"benedictrogers\",\"name\":\"Benedict Rogers \\u7f85\\u5091\\u65af\",\"id\":49035671,\"id_str\":\"49035671\",\"indices\":[0,15]},{\"screen_name\":\"spectator\",\"name\":\"The Spectator\",\"id\":16683666,\"id_str\":\"16683666\",\"indices\":[16,26]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[50,64]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2288\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RedState\",\"name\":\"RedState\",\"id\":3135241,\"id_str\":\"3135241\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2289\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[32,44]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"Chinese\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[113,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NBCNews\",\"name\":\"NBC News\",\"id\":14173315,\"id_str\":\"14173315\",\"indices\":[0,8]},{\"screen_name\":\"NBCNewsTHINK\",\"name\":\"NBC News THINK\",\"id\":905416143313219584,\"id_str\":\"905416143313219584\",\"indices\":[9,22]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[46,60]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2290\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2291\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[0,12]},{\"text\":\"Taiwan\",\"indices\":[22,29]},{\"text\":\"PatrickLeahy\",\"indices\":[37,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553848333302501376,\"id_str\":\"1553848333302501376\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"url\":\"https:\\/\\/t.co\\/vsETtshyt3\",\"display_url\":\"pic.twitter.com\\/vsETtshyt3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553848334531457026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"2292\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[4,16]},{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"China\",\"indices\":[78,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553830980439326721,\"id_str\":\"1553830980439326721\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"url\":\"https:\\/\\/t.co\\/MS2xpI5o0k\",\"display_url\":\"pic.twitter.com\\/MS2xpI5o0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553830981844406273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"2293\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[14,21]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2294\":{\"hashtags\":[{\"text\":\"237showbiz\",\"indices\":[119,130]},{\"text\":\"Cameroon\",\"indices\":[131,140]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"SummerSlam\",\"indices\":[149,160]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[161,183]},{\"text\":\"earthquake\",\"indices\":[184,195]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Realjmartins\",\"name\":\"J Martins\",\"id\":490412454,\"id_str\":\"490412454\",\"indices\":[21,34]},{\"screen_name\":\"johnPelfor237\",\"name\":\"John Pelfor official\",\"id\":1311402570808778754,\"id_str\":\"1311402570808778754\",\"indices\":[41,55]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JIDWh4yOn2\",\"expanded_url\":\"https:\\/\\/237showbiz.com\\/music\\/music-videos\\/video-download-j-martins-ft-john-pelfor-tension-remix-prod-by-godemma\\/\",\"display_url\":\"237showbiz.com\\/music\\/music-vi\\u2026\",\"indices\":[94,117]}]},\"2295\":{\"hashtags\":[{\"text\":\"PelosiWatch\",\"indices\":[0,12]},{\"text\":\"Qdrop6\",\"indices\":[13,20]},{\"text\":\"NoTaiwan\",\"indices\":[21,30]},{\"text\":\"Taiwan\",\"indices\":[32,39]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8mADUNGDxT\",\"expanded_url\":\"https:\\/\\/time.com\\/6202402\\/nancy-pelosi-asia-taiwan\\/\",\"display_url\":\"time.com\\/6202402\\/nancy-\\u2026\",\"indices\":[228,251]}]},\"2296\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"China\",\"indices\":[84,90]},{\"text\":\"US\",\"indices\":[91,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2297\":{\"hashtags\":[{\"text\":\"Wizkidfc\",\"indices\":[74,83]},{\"text\":\"Machala\",\"indices\":[118,126]},{\"text\":\"Taiwan\",\"indices\":[179,186]},{\"text\":\"BeautyTukura\",\"indices\":[187,200]},{\"text\":\"PastorKumuyiSaid\",\"indices\":[227,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/evpr5hHEN3\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/obiz\\/rhythm\",\"display_url\":\"distrokid.com\\/hyperfollow\\/ob\\u2026\",\"indices\":[30,53]}],\"media\":[{\"id\":1553752034968571904,\"id_str\":\"1553752034968571904\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553752034968571904\\/pu\\/img\\/WEesRFnNexRbHU6V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553752034968571904\\/pu\\/img\\/WEesRFnNexRbHU6V.jpg\",\"url\":\"https:\\/\\/t.co\\/EFVl0k7LQm\",\"display_url\":\"pic.twitter.com\\/EFVl0k7LQm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterseyi7281\\/status\\/1553752107890663425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2298\":{\"hashtags\":[{\"text\":\"beats\",\"indices\":[65,71]},{\"text\":\"beats4sale\",\"indices\":[72,83]},{\"text\":\"beatsbydre\",\"indices\":[84,95]},{\"text\":\"beatsforrappers\",\"indices\":[96,112]},{\"text\":\"beatsforsale\",\"indices\":[113,126]},{\"text\":\"beatsheadphones\",\"indices\":[127,143]},{\"text\":\"beatstars\",\"indices\":[144,154]},{\"text\":\"chelsea\",\"indices\":[155,163]},{\"text\":\"drdre\",\"indices\":[164,170]},{\"text\":\"fingerdrumming\",\"indices\":[171,186]},{\"text\":\"freebeats\",\"indices\":[187,197]},{\"text\":\"gym\",\"indices\":[198,202]},{\"text\":\"gymlife\",\"indices\":[203,211]},{\"text\":\"gymmotivation\",\"indices\":[212,226]},{\"text\":\"gymrat\",\"indices\":[227,234]},{\"text\":\"headphone\",\"indices\":[235,245]},{\"text\":\"headphones\",\"indices\":[246,257]},{\"text\":\"hiphopbeats\",\"indices\":[258,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MeZl1xCmvn\",\"expanded_url\":\"https:\\/\\/youtu.be\\/mcHHyPBNx-Y\",\"display_url\":\"youtu.be\\/mcHHyPBNx-Y\",\"indices\":[31,54]}],\"media\":[{\"id\":1553749726608216074,\"id_str\":\"1553749726608216074\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"url\":\"https:\\/\\/t.co\\/cS2Fw2TBPr\",\"display_url\":\"pic.twitter.com\\/cS2Fw2TBPr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k_endox\\/status\\/1553749966664916992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2299\":{\"hashtags\":[{\"text\":\"NFS\",\"indices\":[75,79]},{\"text\":\"SummerSlam\",\"indices\":[83,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[103,125]},{\"text\":\"FreakyGirl\",\"indices\":[126,137]},{\"text\":\"kpss2022\",\"indices\":[138,147]},{\"text\":\"binance\",\"indices\":[148,156]},{\"text\":\"2023Elections\",\"indices\":[157,171]},{\"text\":\"GetYourPVC\",\"indices\":[172,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553749043259604993,\"id_str\":\"1553749043259604993\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"url\":\"https:\\/\\/t.co\\/XVtQ6tcN06\",\"display_url\":\"pic.twitter.com\\/XVtQ6tcN06\",\"expanded_url\":\"https:\\/\\/twitter.com\\/11signofficial\\/status\\/1553749106207739904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":868,\"resize\":\"fit\"},\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":868,\"resize\":\"fit\"}}}]},\"2300\":{\"hashtags\":[{\"text\":\"MCNeillex\",\"indices\":[22,32]},{\"text\":\"Dub\",\"indices\":[39,43]},{\"text\":\"237showbiz\",\"indices\":[87,98]},{\"text\":\"Cameroon\",\"indices\":[99,108]},{\"text\":\"SummerSlam\",\"indices\":[109,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[129,151]},{\"text\":\"earthquake\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X9x5kJnS4o\",\"expanded_url\":\"https:\\/\\/237showbiz.com\\/music\\/music-videos\\/video-downloadmc-neillex-arrey-ft-dub-what-if-prod-by-dub\\/\",\"display_url\":\"237showbiz.com\\/music\\/music-vi\\u2026\",\"indices\":[62,85]}],\"media\":[{\"id\":1553748497819738113,\"id_str\":\"1553748497819738113\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748497819738113\\/pu\\/img\\/nY2hWuSSLsXMWnEu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748497819738113\\/pu\\/img\\/nY2hWuSSLsXMWnEu.jpg\",\"url\":\"https:\\/\\/t.co\\/wfA440sIzV\",\"display_url\":\"pic.twitter.com\\/wfA440sIzV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/237Showbiz\\/status\\/1553748631311761411\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"2301\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[94,116]},{\"text\":\"SummerSlam\",\"indices\":[118,129]},{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"earthquake\",\"indices\":[140,151]},{\"text\":\"FreakyGirl\",\"indices\":[153,164]},{\"text\":\"BAMBAM_KPOPMASTERZBKK\",\"indices\":[166,188]},{\"text\":\"binance\",\"indices\":[190,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553748486423814144,\"id_str\":\"1553748486423814144\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748486423814144\\/pu\\/img\\/6P4Jle1c95XrNycK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748486423814144\\/pu\\/img\\/6P4Jle1c95XrNycK.jpg\",\"url\":\"https:\\/\\/t.co\\/zXmnyJEvZZ\",\"display_url\":\"pic.twitter.com\\/zXmnyJEvZZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ojajohnson\\/status\\/1553748569122816000\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":654,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":698,\"h\":1280,\"resize\":\"fit\"}}}]},\"2302\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[165,187]},{\"text\":\"earthquake\",\"indices\":[188,199]},{\"text\":\"StubbornAcademy\",\"indices\":[230,246]},{\"text\":\"Taiwan\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[104,112]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I9yK4OCRbh\",\"expanded_url\":\"https:\\/\\/youtu.be\\/9Rxj_a9ggwA\",\"display_url\":\"youtu.be\\/9Rxj_a9ggwA\",\"indices\":[76,99]}],\"media\":[{\"id\":1553748265715261440,\"id_str\":\"1553748265715261440\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748265715261440\\/pu\\/img\\/YRSAhhcJQCRJTFuy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748265715261440\\/pu\\/img\\/YRSAhhcJQCRJTFuy.jpg\",\"url\":\"https:\\/\\/t.co\\/AKlA1xj1lb\",\"display_url\":\"pic.twitter.com\\/AKlA1xj1lb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/antwicharles26\\/status\\/1553748544615550979\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1060,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":994,\"h\":1200,\"resize\":\"fit\"}}}]},\"2303\":{\"hashtags\":[{\"text\":\"earthquake\",\"indices\":[178,189]},{\"text\":\"SummerSlam\",\"indices\":[190,201]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[202,224]},{\"text\":\"binance\",\"indices\":[225,233]},{\"text\":\"sundayvibes\",\"indices\":[234,246]},{\"text\":\"Taiwan\",\"indices\":[247,254]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[255,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[166,175]}],\"urls\":[],\"media\":[{\"id\":1553747881600974848,\"id_str\":\"1553747881600974848\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"url\":\"https:\\/\\/t.co\\/7TGcKQpHd2\",\"display_url\":\"pic.twitter.com\\/7TGcKQpHd2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gava34\\/status\\/1553747889687609351\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"}}}]},\"2304\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[60,82]},{\"text\":\"BBNaija\",\"indices\":[83,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"SummerSlam\",\"indices\":[100,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553745891080769536,\"id_str\":\"1553745891080769536\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553745891080769536\\/pu\\/img\\/I1von6OFuzxxbwrI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553745891080769536\\/pu\\/img\\/I1von6OFuzxxbwrI.jpg\",\"url\":\"https:\\/\\/t.co\\/LO53hz3pmI\",\"display_url\":\"pic.twitter.com\\/LO53hz3pmI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1553746043455635458\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":480,\"resize\":\"fit\"}}}]},\"2305\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[57,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"ManUtd\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553743561874706435,\"id_str\":\"1553743561874706435\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZABiZWXkAMZpXl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZABiZWXkAMZpXl.jpg\",\"url\":\"https:\\/\\/t.co\\/KqBDT0mISo\",\"display_url\":\"pic.twitter.com\\/KqBDT0mISo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1553743581202063361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":536,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":506,\"resize\":\"fit\"}}}]},\"2306\":{\"hashtags\":[{\"text\":\"VoicenoteByTClassic\",\"indices\":[0,20]},{\"text\":\"FanBantsOzoOut\",\"indices\":[21,36]},{\"text\":\"PastorKumuyiSaid\",\"indices\":[37,54]},{\"text\":\"wearethenew\",\"indices\":[112,124]},{\"text\":\"Solana\",\"indices\":[154,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"BBNaija7\",\"indices\":[170,179]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[180,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2307\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"SummerSlam\",\"indices\":[98,109]},{\"text\":\"TREASURE\",\"indices\":[110,119]},{\"text\":\"FreakyGirl\",\"indices\":[120,131]},{\"text\":\"kpss2022\",\"indices\":[132,141]},{\"text\":\"Lollapalooza\",\"indices\":[142,155]},{\"text\":\"binance\",\"indices\":[156,164]},{\"text\":\"TREASUREinBANGKOK\",\"indices\":[165,183]},{\"text\":\"SanjayRautExposed\",\"indices\":[184,202]},{\"text\":\"ADA\",\"indices\":[203,207]},{\"text\":\"VikrantRonaBlockBuster\",\"indices\":[208,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2yarHEjoSv\",\"expanded_url\":\"https:\\/\\/anchor.fm\\/blessing-edibite\\/episodes\\/My-parents-are-bullies-e1ltgbd\",\"display_url\":\"anchor.fm\\/blessing-edibi\\u2026\",\"indices\":[59,82]}]},\"2308\":{\"hashtags\":[{\"text\":\"100DaysOfCode\",\"indices\":[122,136]},{\"text\":\"Lekki\",\"indices\":[137,143]},{\"text\":\"Tinubu\",\"indices\":[144,151]},{\"text\":\"Itachi\",\"indices\":[152,159]},{\"text\":\"NairaMarley\",\"indices\":[160,172]},{\"text\":\"Uber\",\"indices\":[173,178]},{\"text\":\"BBNaija\",\"indices\":[179,187]},{\"text\":\"ivanatrump\",\"indices\":[188,199]},{\"text\":\"Black\",\"indices\":[200,206]},{\"text\":\"Chelsea\",\"indices\":[207,215]},{\"text\":\"Yorubas\",\"indices\":[216,224]},{\"text\":\"Daniella\",\"indices\":[225,234]},{\"text\":\"PrinceCharles\",\"indices\":[235,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"Esther\",\"indices\":[258,265]},{\"text\":\"Vicepresident\",\"indices\":[266,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Emmanuelbest506\",\"name\":\"\\ud83d\\udcaf\\ud83d\\udcaf@BILLION_CODE_ODDS\\ud83d\\udcaf\",\"id\":1262742428508798977,\"id_str\":\"1262742428508798977\",\"indices\":[59,75]}],\"urls\":[],\"media\":[{\"id\":1553736211000446978,\"id_str\":\"1553736211000446978\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"url\":\"https:\\/\\/t.co\\/FXjOwhXEjI\",\"display_url\":\"pic.twitter.com\\/FXjOwhXEjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hagusokayson\\/status\\/1553736217761648640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":370,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":653,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":696,\"h\":1280,\"resize\":\"fit\"}}}]},\"2309\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[18,27]},{\"text\":\"VoiceNotebyTClassic\",\"indices\":[28,48]},{\"text\":\"FreakyGirl\",\"indices\":[49,60]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[61,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553731663489912833,\"id_str\":\"1553731663489912833\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553731663489912833\\/pu\\/img\\/hB5wN2jbZxFBq89G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553731663489912833\\/pu\\/img\\/hB5wN2jbZxFBq89G.jpg\",\"url\":\"https:\\/\\/t.co\\/fGtUB1fBM6\",\"display_url\":\"pic.twitter.com\\/fGtUB1fBM6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aytee001\\/status\\/1553731700131336192\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2310\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[8,30]},{\"text\":\"TREASURE\",\"indices\":[31,40]},{\"text\":\"NMIXX\",\"indices\":[41,47]},{\"text\":\"TREASUREinBANGKOK\",\"indices\":[48,66]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[67,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QOYwHv3cmU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aytee001\\/status\\/1542015643347783681\",\"display_url\":\"twitter.com\\/Aytee001\\/statu\\u2026\",\"indices\":[110,133]}]},\"2311\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[76,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"BBNaija7\",\"indices\":[96,105]},{\"text\":\"China\",\"indices\":[106,112]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[113,135]},{\"text\":\"BAMBAM_KPOPMASTERZBKK\",\"indices\":[136,158]},{\"text\":\"Lollapalooza\",\"indices\":[159,172]},{\"text\":\"INDvPAK\",\"indices\":[173,181]},{\"text\":\"kpss2022\",\"indices\":[182,191]},{\"text\":\"NMIXX\",\"indices\":[192,198]},{\"text\":\"TREASUREinBANGKOK\",\"indices\":[199,217]},{\"text\":\"sundayvibes\",\"indices\":[218,230]},{\"text\":\"SanjayRautExposed\",\"indices\":[231,249]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[250,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2312\":{\"hashtags\":[{\"text\":\"letGodBetheJudge\",\"indices\":[86,103]},{\"text\":\"JudgementDay\",\"indices\":[105,118]},{\"text\":\"RENAISSANCE\",\"indices\":[120,132]},{\"text\":\"Four4HorseMen\",\"indices\":[134,148]},{\"text\":\"BBNaija7\",\"indices\":[150,159]},{\"text\":\"China\",\"indices\":[161,167]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"TheBustwizeConspiracy\",\"indices\":[180,202]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[204,226]},{\"text\":\"PastorKumuyiSaid\",\"indices\":[228,245]},{\"text\":\"SUNCOV\",\"indices\":[247,254]},{\"text\":\"CommonwealthGames2022\",\"indices\":[256,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2313\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[93,104]},{\"text\":\"China\",\"indices\":[105,111]},{\"text\":\"BBNaija7\",\"indices\":[112,121]},{\"text\":\"music\",\"indices\":[122,128]},{\"text\":\"flipbar\",\"indices\":[129,137]},{\"text\":\"osu\",\"indices\":[138,142]},{\"text\":\"TREASURE\",\"indices\":[143,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kminty_gd\",\"name\":\"KM\",\"id\":282489848,\"id_str\":\"282489848\",\"indices\":[69,79]},{\"screen_name\":\"FLIPBarOsu\",\"name\":\"FLIPBar OSU \\ud83c\\uddec\\ud83c\\udded\",\"id\":1071497315771449344,\"id_str\":\"1071497315771449344\",\"indices\":[80,91]}],\"urls\":[],\"media\":[{\"id\":1553726328234512386,\"id_str\":\"1553726328234512386\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553726328234512386\\/pu\\/img\\/fErEGjoqx60CZecp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553726328234512386\\/pu\\/img\\/fErEGjoqx60CZecp.jpg\",\"url\":\"https:\\/\\/t.co\\/G4glnkYqs6\",\"display_url\":\"pic.twitter.com\\/G4glnkYqs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bombamann7\\/status\\/1553726741201518593\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2314\":{\"hashtags\":[{\"text\":\"abstractexpressionism\",\"indices\":[26,48]},{\"text\":\"painting\",\"indices\":[49,58]},{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"BBNaija7\",\"indices\":[67,76]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[77,99]},{\"text\":\"TREASURE\",\"indices\":[100,109]},{\"text\":\"Lollapalooza\",\"indices\":[110,123]},{\"text\":\"binance\",\"indices\":[124,132]},{\"text\":\"ThankYouPakArmy\",\"indices\":[133,149]},{\"text\":\"INDvPAK\",\"indices\":[150,158]},{\"text\":\"FGO7\\u5468\\u5e74\\u30e1\\u30c3\\u30bb\\u30fc\\u30b8\",\"indices\":[159,171]},{\"text\":\"artwork\",\"indices\":[172,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553720600916594690,\"id_str\":\"1553720600916594690\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_sp5HXEAILUKG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_sp5HXEAILUKG.jpg\",\"url\":\"https:\\/\\/t.co\\/io3avlvA3r\",\"display_url\":\"pic.twitter.com\\/io3avlvA3r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opheliathearti6\\/status\\/1553720615332454400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2315\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[100,109]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[110,132]},{\"text\":\"asake\",\"indices\":[133,139]},{\"text\":\"doyin\",\"indices\":[140,146]},{\"text\":\"Taiwan\",\"indices\":[147,154]},{\"text\":\"Lollapalooza\",\"indices\":[155,168]},{\"text\":\"binance\",\"indices\":[169,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2316\":{\"hashtags\":[{\"text\":\"DesireCapitalsLimited\",\"indices\":[135,157]},{\"text\":\"SummerSlam\",\"indices\":[159,170]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"BBNaija7\",\"indices\":[181,190]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[192,214]},{\"text\":\"TREASURE\",\"indices\":[216,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"desirecapitals\",\"name\":\"DESIRE CAPITALS LIMITED\",\"id\":1311664780160258048,\"id_str\":\"1311664780160258048\",\"indices\":[118,133]}],\"urls\":[],\"media\":[{\"id\":1553717857766236160,\"id_str\":\"1553717857766236160\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"url\":\"https:\\/\\/t.co\\/KDquXVYd5V\",\"display_url\":\"pic.twitter.com\\/KDquXVYd5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desirecapitals\\/status\\/1553717865894780935\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":413,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"},\"medium\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"}}}]},\"2317\":{\"hashtags\":[{\"text\":\"donjazzy\",\"indices\":[38,47]},{\"text\":\"SummerSlam\",\"indices\":[62,73]},{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"BBNaija7\",\"indices\":[82,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LadiPoe\",\"name\":\"LADIPOE\",\"id\":312670274,\"id_str\":\"312670274\",\"indices\":[0,8]}],\"urls\":[],\"media\":[{\"id\":1553717296157294592,\"id_str\":\"1553717296157294592\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553717296157294592\\/pu\\/img\\/nAKZnHW2v2tgGTNE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553717296157294592\\/pu\\/img\\/nAKZnHW2v2tgGTNE.jpg\",\"url\":\"https:\\/\\/t.co\\/8GFPWOwdYk\",\"display_url\":\"pic.twitter.com\\/8GFPWOwdYk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553717350351896576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2318\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"SummerSlam\",\"indices\":[123,134]},{\"text\":\"forexscam\",\"indices\":[135,145]},{\"text\":\"forexbrokers\",\"indices\":[146,159]},{\"text\":\"crypto\",\"indices\":[160,167]},{\"text\":\"forextrading\",\"indices\":[168,181]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[182,204]},{\"text\":\"BBNaija7\",\"indices\":[205,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1s7KF561aa\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/newsdetail\\/202207299924230394.html\",\"display_url\":\"wikifx.com\\/en\\/newsdetail\\/\\u2026\",\"indices\":[91,114]}],\"media\":[{\"id\":1553717008348348418,\"id_str\":\"1553717008348348418\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"url\":\"https:\\/\\/t.co\\/tYUGEX9JF6\",\"display_url\":\"pic.twitter.com\\/tYUGEX9JF6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1553717013650063360\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":313,\"resize\":\"fit\"}}}]},\"2319\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"SummerSlam\",\"indices\":[104,115]},{\"text\":\"BBNaija7\",\"indices\":[116,125]},{\"text\":\"CommunityShield\",\"indices\":[126,142]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[143,165]},{\"text\":\"TREASURE\",\"indices\":[166,175]},{\"text\":\"Lollapalooza\",\"indices\":[176,189]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[190,212]},{\"text\":\"binance\",\"indices\":[213,221]},{\"text\":\"kpss2022\",\"indices\":[222,231]},{\"text\":\"FGO7\\u5468\\u5e74\",\"indices\":[232,239]},{\"text\":\"sundayvibes\",\"indices\":[240,252]},{\"text\":\"comedy\",\"indices\":[253,260]},{\"text\":\"ElonMusk\",\"indices\":[261,270]},{\"text\":\"Elon\",\"indices\":[271,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553715398180278273,\"id_str\":\"1553715398180278273\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715398180278273\\/pu\\/img\\/k5FSIx8rGLWo-T9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715398180278273\\/pu\\/img\\/k5FSIx8rGLWo-T9R.jpg\",\"url\":\"https:\\/\\/t.co\\/BpOIQUaHlP\",\"display_url\":\"pic.twitter.com\\/BpOIQUaHlP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1553716228899880960\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2320\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"TREASURE\",\"indices\":[76,85]},{\"text\":\"binance\",\"indices\":[86,94]},{\"text\":\"Amaka\",\"indices\":[95,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553715305343553539,\"id_str\":\"1553715305343553539\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715305343553539\\/pu\\/img\\/w-hUeaNKeG0mlWyY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715305343553539\\/pu\\/img\\/w-hUeaNKeG0mlWyY.jpg\",\"url\":\"https:\\/\\/t.co\\/9wcuEUbrEx\",\"display_url\":\"pic.twitter.com\\/9wcuEUbrEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mentie_pride\\/status\\/1553715895171686402\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"2321\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"ASUU\",\"indices\":[137,142]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[143,165]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553715513737592832,\"id_str\":\"1553715513737592832\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_oBx5XwAAOpIW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_oBx5XwAAOpIW.jpg\",\"url\":\"https:\\/\\/t.co\\/AiGwKWgeJs\",\"display_url\":\"pic.twitter.com\\/AiGwKWgeJs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oluebube_joshua\\/status\\/1553715524625960960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":749,\"h\":975,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":522,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":975,\"resize\":\"fit\"}}}]},\"2322\":{\"hashtags\":[{\"text\":\"August\",\"indices\":[59,66]},{\"text\":\"SummerSlam\",\"indices\":[116,127]},{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"BBNaija7\",\"indices\":[136,145]},{\"text\":\"CommunityShield\",\"indices\":[146,162]},{\"text\":\"FGO7\\u5468\\u5e74\",\"indices\":[163,170]},{\"text\":\"sundayvibes\",\"indices\":[171,183]},{\"text\":\"TREASURE\",\"indices\":[184,193]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[194,216]},{\"text\":\"binance\",\"indices\":[217,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"garyhgoodridge\",\"name\":\"Gary Goodridge\",\"id\":287453721,\"id_str\":\"287453721\",\"indices\":[0,15]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[103,112]}],\"urls\":[],\"media\":[{\"id\":1553715001587900418,\"id_str\":\"1553715001587900418\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715001587900418\\/pu\\/img\\/FiDQtWHRh2AM2DXK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715001587900418\\/pu\\/img\\/FiDQtWHRh2AM2DXK.jpg\",\"url\":\"https:\\/\\/t.co\\/KacbwBXXtB\",\"display_url\":\"pic.twitter.com\\/KacbwBXXtB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553715104738414594\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":630,\"h\":1200,\"resize\":\"fit\"}}}]},\"2323\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[34,42]},{\"text\":\"Machala\",\"indices\":[43,51]},{\"text\":\"BBNaija7\",\"indices\":[52,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"GistLoverStory\",\"indices\":[76,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553713994438959111,\"id_str\":\"1553713994438959111\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713994438959111\\/pu\\/img\\/ozlHn8COiDNDxAu8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713994438959111\\/pu\\/img\\/ozlHn8COiDNDxAu8.jpg\",\"url\":\"https:\\/\\/t.co\\/r3G6GOTiKW\",\"display_url\":\"pic.twitter.com\\/r3G6GOTiKW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/praisejohnn\\/status\\/1553714076899053568\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"2324\":{\"hashtags\":[{\"text\":\"August\",\"indices\":[30,37]},{\"text\":\"SummerSlam\",\"indices\":[40,51]},{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[60,82]},{\"text\":\"FGO7\\u5468\\u5e74\",\"indices\":[83,90]},{\"text\":\"TREASURE\",\"indices\":[91,100]},{\"text\":\"Lollapalooza\",\"indices\":[101,114]},{\"text\":\"binance\",\"indices\":[115,123]},{\"text\":\"kpss2022\",\"indices\":[124,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1553713601176915974,\"id_str\":\"1553713601176915974\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713601176915974\\/pu\\/img\\/iABXQTWSRFCyq10z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713601176915974\\/pu\\/img\\/iABXQTWSRFCyq10z.jpg\",\"url\":\"https:\\/\\/t.co\\/fSST2DCdgG\",\"display_url\":\"pic.twitter.com\\/fSST2DCdgG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553713648203403264\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2325\":{\"hashtags\":[{\"text\":\"August\",\"indices\":[35,42]},{\"text\":\"SummerSlam\",\"indices\":[106,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"BBNaija7\",\"indices\":[126,135]},{\"text\":\"CommunityShield\",\"indices\":[136,152]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[153,175]},{\"text\":\"TREASURE\",\"indices\":[176,185]},{\"text\":\"FGO7\\u5468\\u5e74\",\"indices\":[186,193]},{\"text\":\"JHOPE\",\"indices\":[194,200]},{\"text\":\"sundayvibes\",\"indices\":[201,213]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialSaskay\",\"name\":\"Saskay\",\"id\":819082686656577536,\"id_str\":\"819082686656577536\",\"indices\":[0,15]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[71,80]}],\"urls\":[],\"media\":[{\"id\":1553713231952318464,\"id_str\":\"1553713231952318464\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713231952318464\\/pu\\/img\\/T5a2YWmlQ2o_LSXq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713231952318464\\/pu\\/img\\/T5a2YWmlQ2o_LSXq.jpg\",\"url\":\"https:\\/\\/t.co\\/Qf1MgOJUGV\",\"display_url\":\"pic.twitter.com\\/Qf1MgOJUGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553713272943165440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2326\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[46,55]},{\"text\":\"sundayvibes\",\"indices\":[76,88]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"FGO7\\u5468\\u5e74\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553712352020889601,\"id_str\":\"1553712352020889601\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553712352020889601\\/pu\\/img\\/C1bWvCK-P4D2CdHz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553712352020889601\\/pu\\/img\\/C1bWvCK-P4D2CdHz.jpg\",\"url\":\"https:\\/\\/t.co\\/WwNLYezDV5\",\"display_url\":\"pic.twitter.com\\/WwNLYezDV5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feeenahh\\/status\\/1553712403652775937\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}}}]},\"2327\":{\"hashtags\":[{\"text\":\"womenempowerment\",\"indices\":[62,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"CommunityShield\",\"indices\":[88,104]},{\"text\":\"QueenLikeBella\",\"indices\":[105,120]},{\"text\":\"womenempowerment\",\"indices\":[121,138]},{\"text\":\"JHOPE\",\"indices\":[139,145]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UKMoments\",\"name\":\"Twitter Moments UK & Ireland\",\"id\":2296297326,\"id_str\":\"2296297326\",\"indices\":[146,156]}],\"urls\":[],\"media\":[{\"id\":1553711629023461376,\"id_str\":\"1553711629023461376\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"url\":\"https:\\/\\/t.co\\/IYWcic6UEo\",\"display_url\":\"pic.twitter.com\\/IYWcic6UEo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1553711639521812482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":734,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":390,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":688,\"resize\":\"fit\"}}}]},\"2328\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[32,43]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[44,66]},{\"text\":\"CommunityShield\",\"indices\":[67,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"sundayvibes\",\"indices\":[92,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553710383063605248,\"id_str\":\"1553710383063605248\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"url\":\"https:\\/\\/t.co\\/Vp6TR5AKx9\",\"display_url\":\"pic.twitter.com\\/Vp6TR5AKx9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1553710607052029953\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"2329\":{\"hashtags\":[{\"text\":\"bags\",\"indices\":[70,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[84,106]},{\"text\":\"kpss2022\",\"indices\":[107,116]},{\"text\":\"CommunityShield\",\"indices\":[117,133]},{\"text\":\"FELIPonASAPfordaWin\",\"indices\":[134,154]},{\"text\":\"PValleyStarz\",\"indices\":[155,168]},{\"text\":\"sundayvibes\",\"indices\":[169,181]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553708206605717507,\"id_str\":\"1553708206605717507\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_hYctX0AMY-t4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_hYctX0AMY-t4.jpg\",\"url\":\"https:\\/\\/t.co\\/QQqNYWEN5M\",\"display_url\":\"pic.twitter.com\\/QQqNYWEN5M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oluwakemistry\\/status\\/1553708230559371264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2330\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[23,34]},{\"text\":\"BBNaija7\",\"indices\":[35,44]},{\"text\":\"Lollapalooza\",\"indices\":[45,58]},{\"text\":\"binance\",\"indices\":[59,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553705277563731969,\"id_str\":\"1553705277563731969\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553705277563731969\\/pu\\/img\\/v_kYxsEuUtGejIBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553705277563731969\\/pu\\/img\\/v_kYxsEuUtGejIBD.jpg\",\"url\":\"https:\\/\\/t.co\\/nWc6Sxyxvu\",\"display_url\":\"pic.twitter.com\\/nWc6Sxyxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/priestlynews1\\/status\\/1553705315069313025\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"2331\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[86,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"CommunityShield\",\"indices\":[117,133]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[134,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2332\":{\"hashtags\":[{\"text\":\"GistLoverStory\",\"indices\":[188,203]},{\"text\":\"BBNaija7\",\"indices\":[222,231]},{\"text\":\"SummerSlam\",\"indices\":[250,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553700770553466880,\"id_str\":\"1553700770553466880\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553700770553466880\\/pu\\/img\\/DQquNEYSglF4iW8b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553700770553466880\\/pu\\/img\\/DQquNEYSglF4iW8b.jpg\",\"url\":\"https:\\/\\/t.co\\/bA3ejk7XYv\",\"display_url\":\"pic.twitter.com\\/bA3ejk7XYv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PToplexnice\\/status\\/1553700842909335552\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2333\":{\"hashtags\":[{\"text\":\"TweetOfTheDay\",\"indices\":[13,27]},{\"text\":\"SummerSlam\",\"indices\":[28,39]},{\"text\":\"BBNaija7\",\"indices\":[40,49]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"CommunityShield\",\"indices\":[58,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553700737506578432,\"id_str\":\"1553700737506578432\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_alsJXkAA_xOC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_alsJXkAA_xOC.jpg\",\"url\":\"https:\\/\\/t.co\\/xmBeThWr8l\",\"display_url\":\"pic.twitter.com\\/xmBeThWr8l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YutchayBella\\/status\\/1553700746067165186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":608,\"h\":839,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":608,\"h\":839,\"resize\":\"fit\"},\"small\":{\"w\":493,\"h\":680,\"resize\":\"fit\"}}}]},\"2334\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[69,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"China\",\"indices\":[89,95]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[96,118]},{\"text\":\"abujafinders\",\"indices\":[119,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553697731130032128,\"id_str\":\"1553697731130032128\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2335\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[70,77]},{\"text\":\"BBNaija7\",\"indices\":[78,87]},{\"text\":\"KiaraAdvani\",\"indices\":[88,100]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[101,126]},{\"text\":\"earthquake\",\"indices\":[127,138]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[139,165]},{\"text\":\"Lollapalooza\",\"indices\":[166,179]},{\"text\":\"Lollapalooza\",\"indices\":[180,193]},{\"text\":\"QueenLikeBella\",\"indices\":[194,209]},{\"text\":\"BeautyTukura\",\"indices\":[210,223]},{\"text\":\"GAPyuri1stFansign\",\"indices\":[224,242]},{\"text\":\"LISA\",\"indices\":[243,248]},{\"text\":\"UnitedShowbiz\",\"indices\":[249,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553696828448727046,\"id_str\":\"1553696828448727046\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_XCJxWYAYj5j-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_XCJxWYAYj5j-.jpg\",\"url\":\"https:\\/\\/t.co\\/ndnpZDwvpa\",\"display_url\":\"pic.twitter.com\\/ndnpZDwvpa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1553696834677268480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":591,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"2336\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FoxNews\",\"name\":\"Fox News\",\"id\":1367531,\"id_str\":\"1367531\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2337\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Tagesspiegel\",\"name\":\"Tagesspiegel\",\"id\":22926365,\"id_str\":\"22926365\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2338\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"aawsat_eng\",\"name\":\"Asharq Al-Awsat English\",\"id\":224430095,\"id_str\":\"224430095\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2339\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[26,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"30BG\",\"indices\":[46,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553693668250361858,\"id_str\":\"1553693668250361858\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_UKNHWIAIxPbz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_UKNHWIAIxPbz.jpg\",\"url\":\"https:\\/\\/t.co\\/YxvS7SJOHY\",\"display_url\":\"pic.twitter.com\\/YxvS7SJOHY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/panquespark\\/status\\/1553693677083660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1180,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":392,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":691,\"h\":1200,\"resize\":\"fit\"}}}]},\"2340\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[27,38]},{\"text\":\"Taiwan\",\"indices\":[39,46]},{\"text\":\"BBNaija7\",\"indices\":[47,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2341\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Ameengwaska\",\"name\":\"Ameen Adam\",\"id\":1475147076069691399,\"id_str\":\"1475147076069691399\",\"indices\":[32,44]},{\"screen_name\":\"_ameeserh\",\"name\":\"halimah\\ud83e\\udd40\",\"id\":1484311429746499585,\"id_str\":\"1484311429746499585\",\"indices\":[45,55]},{\"screen_name\":\"Abdoulmaleek001\",\"name\":\"Abdulmaleek\",\"id\":1392048183916875780,\"id_str\":\"1392048183916875780\",\"indices\":[56,72]},{\"screen_name\":\"___Bils\",\"name\":\"bils\",\"id\":719099843931729920,\"id_str\":\"719099843931729920\",\"indices\":[73,81]},{\"screen_name\":\"90sSophie\",\"name\":\"sophia\",\"id\":719570209393156097,\"id_str\":\"719570209393156097\",\"indices\":[82,92]}],\"urls\":[],\"media\":[{\"id\":1553691375979356166,\"id_str\":\"1553691375979356166\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"url\":\"https:\\/\\/t.co\\/8jXGvh6oGt\",\"display_url\":\"pic.twitter.com\\/8jXGvh6oGt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1553691378995142659\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":297,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1650,\"resize\":\"fit\"},\"medium\":{\"w\":524,\"h\":1200,\"resize\":\"fit\"}}}]},\"2342\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[109,117]},{\"text\":\"Taiwan\",\"indices\":[119,126]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JolyonMaugham\",\"name\":\"Jo Maugham\",\"id\":406842374,\"id_str\":\"406842374\",\"indices\":[0,14]},{\"screen_name\":\"NesrineMalik\",\"name\":\"Nesrine Malik\",\"id\":1189205972,\"id_str\":\"1189205972\",\"indices\":[15,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2343\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[40,62]},{\"text\":\"ajapsv\",\"indices\":[63,70]},{\"text\":\"BBNaija7\",\"indices\":[71,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"CommunityShield\",\"indices\":[89,105]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[106,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2344\":{\"hashtags\":[{\"text\":\"poetrytwitter\",\"indices\":[108,122]},{\"text\":\"poetrycommunity\",\"indices\":[123,139]},{\"text\":\"poetry\",\"indices\":[140,147]},{\"text\":\"poetrylovers\",\"indices\":[148,161]},{\"text\":\"poetizer\",\"indices\":[162,171]},{\"text\":\"miraquill\",\"indices\":[172,182]},{\"text\":\"poets\",\"indices\":[183,189]},{\"text\":\"SummerSlam\",\"indices\":[190,201]},{\"text\":\"Taiwan\",\"indices\":[202,209]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553689051076694018,\"id_str\":\"1553689051076694018\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_P9czXEAI3F4s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_P9czXEAI3F4s.jpg\",\"url\":\"https:\\/\\/t.co\\/yUlWXOJXht\",\"display_url\":\"pic.twitter.com\\/yUlWXOJXht\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YutchayBella\\/status\\/1553689061503664128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":654,\"h\":1025,\"resize\":\"fit\"},\"small\":{\"w\":434,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":654,\"h\":1025,\"resize\":\"fit\"}}}]},\"2345\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2346\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[67,75]},{\"text\":\"Carterefe\",\"indices\":[76,86]},{\"text\":\"BBNaija7\",\"indices\":[87,96]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[97,122]},{\"text\":\"LISA\",\"indices\":[123,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"NFTCommmunity\",\"indices\":[137,151]},{\"text\":\"NFTartist\",\"indices\":[152,162]},{\"text\":\"NFTGiveaways\",\"indices\":[163,176]},{\"text\":\"NFTExpoverse\",\"indices\":[177,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"boy_kaptain\",\"name\":\"KAPTAIN\",\"id\":1056797290403389441,\"id_str\":\"1056797290403389441\",\"indices\":[36,48]}],\"urls\":[],\"media\":[{\"id\":1553687826172153856,\"id_str\":\"1553687826172153856\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553687826172153856\\/pu\\/img\\/T9ieHyn13cRFyH0A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553687826172153856\\/pu\\/img\\/T9ieHyn13cRFyH0A.jpg\",\"url\":\"https:\\/\\/t.co\\/xJhhPxiOjV\",\"display_url\":\"pic.twitter.com\\/xJhhPxiOjV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OEJOZEFF\\/status\\/1553688061355200512\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2347\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sootradhar\",\"name\":\"Jayess\",\"id\":18304860,\"id_str\":\"18304860\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2348\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"svtnyheter\",\"name\":\"SVT Nyheter\",\"id\":372142346,\"id_str\":\"372142346\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2349\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Independent\",\"name\":\"The Independent\",\"id\":16973333,\"id_str\":\"16973333\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2350\":{\"hashtags\":[{\"text\":\"Wordpress\",\"indices\":[28,38]},{\"text\":\"WooCommerce\",\"indices\":[39,51]},{\"text\":\"UFC277\",\"indices\":[80,87]},{\"text\":\"Nunes\",\"indices\":[88,94]},{\"text\":\"SummerSlam\",\"indices\":[95,106]},{\"text\":\"Moreno\",\"indices\":[107,114]},{\"text\":\"Chan\",\"indices\":[115,120]},{\"text\":\"Brock\",\"indices\":[121,127]},{\"text\":\"Roman\",\"indices\":[128,134]},{\"text\":\"hobi\",\"indices\":[135,140]},{\"text\":\"INKIGAYO\",\"indices\":[141,150]},{\"text\":\"Taehyun\",\"indices\":[151,159]},{\"text\":\"Ronda\",\"indices\":[160,166]},{\"text\":\"TripleH\",\"indices\":[167,175]},{\"text\":\"Bayley\",\"indices\":[176,183]},{\"text\":\"yeonjun\",\"indices\":[184,192]},{\"text\":\"BIGHOPE\",\"indices\":[193,201]},{\"text\":\"Zoro\",\"indices\":[202,207]},{\"text\":\"TXTPALOOZA\",\"indices\":[208,219]},{\"text\":\"Taiwan\",\"indices\":[220,227]},{\"text\":\"Sana\",\"indices\":[228,233]},{\"text\":\"Paxlovid\",\"indices\":[234,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rEJBAcxvEj\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Q2gJjM\",\"display_url\":\"bit.ly\\/3Q2gJjM\",\"indices\":[55,78]}],\"media\":[{\"id\":1553686961235312640,\"id_str\":\"1553686961235312640\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_ODziWQAA2Ys7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_ODziWQAA2Ys7.jpg\",\"url\":\"https:\\/\\/t.co\\/fxw4NNEGKL\",\"display_url\":\"pic.twitter.com\\/fxw4NNEGKL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1553687498500571136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":476,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":896,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":840,\"resize\":\"fit\"}}}]},\"2351\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[92,101]},{\"text\":\"Taiwan\",\"indices\":[116,123]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"shattawalegh\",\"name\":\"SHATTA WALE\",\"id\":310709509,\"id_str\":\"310709509\",\"indices\":[36,49]}],\"urls\":[]},\"2352\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[109,117]},{\"text\":\"Taiwan\",\"indices\":[119,126]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarkHalperin\",\"name\":\"Mark Halperin\",\"id\":184136149,\"id_str\":\"184136149\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[14,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2353\":{\"hashtags\":[{\"text\":\"earthquake\",\"indices\":[44,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2354\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2355\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[13,25]},{\"text\":\"Pelosi\",\"indices\":[43,50]},{\"text\":\"Chinese\",\"indices\":[84,92]},{\"text\":\"Taiwan\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AP\",\"name\":\"The Associated Press\",\"id\":51241574,\"id_str\":\"51241574\",\"indices\":[0,3]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[27,41]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2356\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jerusalem_Post\",\"name\":\"The Jerusalem Post\",\"id\":19489239,\"id_str\":\"19489239\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2357\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MOFA_Taiwan\",\"name\":\"\\u5916\\u4ea4\\u90e8 Ministry of Foreign Affairs, ROC (Taiwan) \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":976995099170062338,\"id_str\":\"976995099170062338\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2358\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[158,167]},{\"text\":\"CommunityShield\",\"indices\":[168,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[193,215]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[216,242]},{\"text\":\"siKShoes\",\"indices\":[243,252]},{\"text\":\"nigeria\",\"indices\":[253,261]},{\"text\":\"mensshoes\",\"indices\":[262,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"sikshoes\",\"name\":\"SIKSHOES.NG\",\"id\":1283730913902370816,\"id_str\":\"1283730913902370816\",\"indices\":[147,156]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a6rzotkBdD\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/sikshoes.ng\",\"display_url\":\"instagram.com\\/sikshoes.ng\",\"indices\":[81,104]},{\"url\":\"https:\\/\\/t.co\\/Me02UNv5fb\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/sikshoes.ng\",\"display_url\":\"facebook.com\\/sikshoes.ng\",\"indices\":[115,138]}],\"media\":[{\"id\":1553683792442916864,\"id_str\":\"1553683792442916864\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2359\":{\"hashtags\":[{\"text\":\"QuantumComputing\",\"indices\":[41,58]},{\"text\":\"Taiwan\",\"indices\":[59,66]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553682571640332288,\"id_str\":\"1553682571640332288\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2360\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[28,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[46,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553682444745936897,\"id_str\":\"1553682444745936897\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"url\":\"https:\\/\\/t.co\\/sheCT5ZSVb\",\"display_url\":\"pic.twitter.com\\/sheCT5ZSVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Exclusive_Paull\\/status\\/1553682457970593792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":329,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":644,\"h\":1333,\"resize\":\"fit\"}}}]},\"2361\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"BBNaija7\",\"indices\":[100,109]},{\"text\":\"Asari\",\"indices\":[110,116]},{\"text\":\"Tinubu\",\"indices\":[117,124]},{\"text\":\"earthquake\",\"indices\":[125,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VjPHEpdOJv\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Q9M3ge\",\"display_url\":\"bit.ly\\/3Q9M3ge\",\"indices\":[147,170]}]},\"2362\":{\"hashtags\":[{\"text\":\"CommunityShield\",\"indices\":[81,97]},{\"text\":\"SummerSlam\",\"indices\":[98,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"BBNaija7\",\"indices\":[118,127]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[128,153]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[154,176]},{\"text\":\"KiaraAdvani\",\"indices\":[177,189]},{\"text\":\"GarciaBenavidez\",\"indices\":[190,206]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[207,233]},{\"text\":\"SS9inBKK_DAY1\",\"indices\":[234,248]},{\"text\":\"GistLoverStory\",\"indices\":[249,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553681028769882113,\"id_str\":\"1553681028769882113\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_IqfYXoAEqGWN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_IqfYXoAEqGWN.jpg\",\"url\":\"https:\\/\\/t.co\\/L3csQBt4ly\",\"display_url\":\"pic.twitter.com\\/L3csQBt4ly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ajibolatweet\\/status\\/1553681037603278848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"2363\":{\"hashtags\":[{\"text\":\"inspiration\",\"indices\":[131,143]},{\"text\":\"UFC277\",\"indices\":[206,213]},{\"text\":\"SummerSlam\",\"indices\":[214,225]},{\"text\":\"Caturday\",\"indices\":[226,235]},{\"text\":\"Taiwan\",\"indices\":[236,243]},{\"text\":\"TXTPALOOZAA\",\"indices\":[244,256]},{\"text\":\"lunARTparty\",\"indices\":[257,269]},{\"text\":\"Caribana\",\"indices\":[270,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/21izZia0YK\",\"expanded_url\":\"https:\\/\\/zeep.ly\\/zmTj6\",\"display_url\":\"zeep.ly\\/zmTj6\",\"indices\":[182,205]}]},\"2364\":{\"hashtags\":[{\"text\":\"isabouttimeconcert\",\"indices\":[62,81]},{\"text\":\"UnitedShowbiz\",\"indices\":[106,120]},{\"text\":\"SummerSlam\",\"indices\":[121,132]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"BBNaija7\",\"indices\":[141,150]},{\"text\":\"CommunityShield\",\"indices\":[151,167]},{\"text\":\"GarciaBenavidez\",\"indices\":[168,184]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553679154482126848,\"id_str\":\"1553679154482126848\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553679154482126848\\/pu\\/img\\/xHXXUY4BXnkFMBkT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553679154482126848\\/pu\\/img\\/xHXXUY4BXnkFMBkT.jpg\",\"url\":\"https:\\/\\/t.co\\/kzf7m9IiDV\",\"display_url\":\"pic.twitter.com\\/kzf7m9IiDV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1553679283079585792\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":416,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":784,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":784,\"resize\":\"fit\"}}}]},\"2365\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[53,62]},{\"text\":\"SummerSlam\",\"indices\":[63,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"CommunityShield\",\"indices\":[83,99]},{\"text\":\"NigeriaDecides2023\",\"indices\":[100,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[9,18]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[37,50]}],\"urls\":[],\"media\":[{\"id\":1553677467495317504,\"id_str\":\"1553677467495317504\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"url\":\"https:\\/\\/t.co\\/ZKzvW7tT69\",\"display_url\":\"pic.twitter.com\\/ZKzvW7tT69\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GovaRidechief\\/status\\/1553677470389469186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"2366\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[132,141]},{\"text\":\"SummerSlam\",\"indices\":[142,153]},{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"earthquake\",\"indices\":[162,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553677350302277632,\"id_str\":\"1553677350302277632\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_FUYBWYAAT0ii.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_FUYBWYAAT0ii.jpg\",\"url\":\"https:\\/\\/t.co\\/77sDiQmFng\",\"display_url\":\"pic.twitter.com\\/77sDiQmFng\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AsaraDaniel1\\/status\\/1553677361119379456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"2367\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[182,191]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[192,214]},{\"text\":\"Taiwan\",\"indices\":[215,222]},{\"text\":\"Tinubu\",\"indices\":[223,230]},{\"text\":\"TinubuandAtiku\",\"indices\":[231,246]},{\"text\":\"PoliticsLive\",\"indices\":[247,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2368\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553676816279281665,\"id_str\":\"1553676816279281665\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_E1SoWIAEjsQg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_E1SoWIAEjsQg.jpg\",\"url\":\"https:\\/\\/t.co\\/gqsQbMA7NK\",\"display_url\":\"pic.twitter.com\\/gqsQbMA7NK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SambaBoy00\\/status\\/1553676823921311744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":552,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":1581,\"resize\":\"fit\"},\"medium\":{\"w\":975,\"h\":1200,\"resize\":\"fit\"}}}]},\"2369\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"StopSellingPi\",\"indices\":[89,103]},{\"text\":\"Pitransactions\",\"indices\":[104,119]},{\"text\":\"Pipayments\",\"indices\":[120,131]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Vindicatedchidi\",\"name\":\"Vi\\u03c0dicated Chidi\",\"id\":843511366451380224,\"id_str\":\"843511366451380224\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1553675482083872769,\"id_str\":\"1553675482083872769\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_DnoXX0AES-ra.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_DnoXX0AES-ra.jpg\",\"url\":\"https:\\/\\/t.co\\/Ni97k16Apq\",\"display_url\":\"pic.twitter.com\\/Ni97k16Apq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/misragold\\/status\\/1553675484914917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":719,\"h\":205,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":719,\"h\":205,\"resize\":\"fit\"}}}]},\"2370\":{\"hashtags\":[{\"text\":\"AbnTv\",\"indices\":[98,104]},{\"text\":\"MukTv\",\"indices\":[105,111]},{\"text\":\"ViralVideo\",\"indices\":[112,123]},{\"text\":\"BBNaija7\",\"indices\":[124,133]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"CommunityShield\",\"indices\":[143,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553674475299905539,\"id_str\":\"1553674475299905539\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"url\":\"https:\\/\\/t.co\\/Zk5bwOgNlt\",\"display_url\":\"pic.twitter.com\\/Zk5bwOgNlt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abnonlinetv\\/status\\/1553674549207748609\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2371\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"BBNaija7\",\"indices\":[112,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2372\":{\"hashtags\":[{\"text\":\"fyp\",\"indices\":[132,136]},{\"text\":\"FYP\",\"indices\":[137,141]},{\"text\":\"SummerSlam\",\"indices\":[142,153]},{\"text\":\"BBNaija7\",\"indices\":[154,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[172,194]},{\"text\":\"CommunityShield\",\"indices\":[195,211]},{\"text\":\"QueenLikeBella\",\"indices\":[212,227]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[228,253]},{\"text\":\"viral\",\"indices\":[254,260]},{\"text\":\"ViralVideo\",\"indices\":[261,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J70Y1qsGKq\",\"expanded_url\":\"https:\\/\\/instagram.com\\/gainweightwith_sisi?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/gainweightwith\\u2026\",\"indices\":[80,103]}],\"media\":[{\"id\":1553671273158434816,\"id_str\":\"1553671273158434816\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"url\":\"https:\\/\\/t.co\\/rYS4rVM16a\",\"display_url\":\"pic.twitter.com\\/rYS4rVM16a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/weightgainfire\\/status\\/1553672054062342144\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"}}}]},\"2373\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"BBNaija7\",\"indices\":[34,43]},{\"text\":\"earthquake\",\"indices\":[44,55]},{\"text\":\"QueenLikeBella\",\"indices\":[56,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553671114462838784,\"id_str\":\"1553671114462838784\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"url\":\"https:\\/\\/t.co\\/p8sQJlBCFf\",\"display_url\":\"pic.twitter.com\\/p8sQJlBCFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553671116941672449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":326,\"h\":304,\"resize\":\"fit\"}}}]},\"2374\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[56,67]},{\"text\":\"BBNaija7\",\"indices\":[68,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"earthquake\",\"indices\":[86,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwtDjpS5sP\",\"expanded_url\":\"https:\\/\\/tekkxe.blogspot.com\\/2022\\/07\\/university-of-kansas-international-2022.html\",\"display_url\":\"tekkxe.blogspot.com\\/2022\\/07\\/univer\\u2026\",\"indices\":[99,122]}]},\"2375\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[75,83]},{\"text\":\"BBNaija7\",\"indices\":[85,94]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"SummerSlam\",\"indices\":[105,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553668295416586245,\"id_str\":\"1553668295416586245\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"url\":\"https:\\/\\/t.co\\/n4MFJpTmDu\",\"display_url\":\"pic.twitter.com\\/n4MFJpTmDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553668298004480000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":719,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":719,\"resize\":\"fit\"}}}]},\"2376\":{\"hashtags\":[{\"text\":\"JulyPhotoDump\",\"indices\":[13,27]},{\"text\":\"SummerSlam\",\"indices\":[29,40]},{\"text\":\"BBNaija7\",\"indices\":[42,51]},{\"text\":\"Taiwan\",\"indices\":[53,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553668179733450755,\"id_str\":\"1553668179733450755\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"url\":\"https:\\/\\/t.co\\/I010NXmDDu\",\"display_url\":\"pic.twitter.com\\/I010NXmDDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__amandoo\\/status\\/1553668196879814656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2377\":{\"hashtags\":[{\"text\":\"realestateinvesting\",\"indices\":[241,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2378\":{\"hashtags\":[{\"text\":\"BigBrotherNaija\",\"indices\":[211,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"QueenLikeBella\",\"indices\":[236,251]},{\"text\":\"CommunityShield\",\"indices\":[252,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553664661354061825,\"id_str\":\"1553664661354061825\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"url\":\"https:\\/\\/t.co\\/qkJPQkTV7n\",\"display_url\":\"pic.twitter.com\\/qkJPQkTV7n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mr_Bayo_jnr\\/status\\/1553664668815835136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":562,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"}}}]},\"2379\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"R2bees\",\"indices\":[100,107]},{\"text\":\"Sarkodie\",\"indices\":[108,117]},{\"text\":\"Vodafone\",\"indices\":[118,127]},{\"text\":\"Gimpa\",\"indices\":[128,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2380\":{\"hashtags\":[{\"text\":\"PartyWithBeauty\",\"indices\":[51,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"UkraineRussiaWar\",\"indices\":[76,93]},{\"text\":\"SummerSlam\",\"indices\":[94,105]},{\"text\":\"SS9inBKK_DAY1\",\"indices\":[106,120]},{\"text\":\"GarciaBenavidez\",\"indices\":[121,137]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bcleanfrench\",\"name\":\"BCLEAN FRENCH\",\"id\":789675456,\"id_str\":\"789675456\",\"indices\":[138,151]},{\"screen_name\":\"9teen42\",\"name\":\"9Teen\",\"id\":161690490,\"id_str\":\"161690490\",\"indices\":[152,160]},{\"screen_name\":\"MrYoungGod\",\"name\":\"YoungGod \\ud83d\\udc51\",\"id\":220117890,\"id_str\":\"220117890\",\"indices\":[161,172]},{\"screen_name\":\"youngbobby4real\",\"name\":\"Young Bobby\",\"id\":1138159680570740736,\"id_str\":\"1138159680570740736\",\"indices\":[173,189]},{\"screen_name\":\"Darkhoodafrica\",\"name\":\"Dark Hood Africa\\u2122\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":104417578,\"id_str\":\"104417578\",\"indices\":[190,205]},{\"screen_name\":\"GlenfiddichSMW\",\"name\":\"Glenfiddich Whisky\",\"id\":196102409,\"id_str\":\"196102409\",\"indices\":[206,221]},{\"screen_name\":\"Femi_OfMainland\",\"name\":\"Mubarak Adigun \\ud83e\\udd34\\ud83c\\udfff {Ex}\",\"id\":398538822,\"id_str\":\"398538822\",\"indices\":[222,238]},{\"screen_name\":\"IjiomaOluchi\",\"name\":\"SUNFLOWER \\ud83d\\udc51\\ud83d\\ude0d\",\"id\":710058202705096704,\"id_str\":\"710058202705096704\",\"indices\":[239,252]},{\"screen_name\":\"mimisexyluv\",\"name\":\"Marian Briggs \\ud83c\\udf99\",\"id\":960825531481624576,\"id_str\":\"960825531481624576\",\"indices\":[253,265]},{\"screen_name\":\"datdreadgirl\",\"name\":\"Bzingers #BBNaija \\ud80c\\udcf5 \\u277c\",\"id\":1388969254591082496,\"id_str\":\"1388969254591082496\",\"indices\":[266,279]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Iczd7QgWep\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mc_Actually\\/status\\/1553661422088982528\",\"display_url\":\"twitter.com\\/Mc_Actually\\/st\\u2026\",\"indices\":[280,303]}]},\"2381\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[59,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"BBNaija7\",\"indices\":[79,88]},{\"text\":\"CommunityShield\",\"indices\":[89,105]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[106,128]},{\"text\":\"Nigeria\",\"indices\":[129,137]},{\"text\":\"badgovernment\",\"indices\":[138,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553662649476448256,\"id_str\":\"1553662649476448256\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662649476448256\\/pu\\/img\\/-FL6rYkZbkDv3vG9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662649476448256\\/pu\\/img\\/-FL6rYkZbkDv3vG9.jpg\",\"url\":\"https:\\/\\/t.co\\/AkYDRWvNBj\",\"display_url\":\"pic.twitter.com\\/AkYDRWvNBj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GrtJovial\\/status\\/1553662704761593856\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":752,\"resize\":\"fit\"},\"small\":{\"w\":434,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":752,\"resize\":\"fit\"}}}]},\"2382\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[146,155]},{\"text\":\"Taiwan\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Burnaboygram\",\"name\":\"Burna Boy #Burna\",\"id\":1221231829451255811,\"id_str\":\"1221231829451255811\",\"indices\":[83,96]},{\"screen_name\":\"vict0ny\",\"name\":\"VICTONY\",\"id\":910299617136447488,\"id_str\":\"910299617136447488\",\"indices\":[103,111]}],\"urls\":[],\"media\":[{\"id\":1553662306378289153,\"id_str\":\"1553662306378289153\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662306378289153\\/pu\\/img\\/SNShq-HckMWoKXTj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662306378289153\\/pu\\/img\\/SNShq-HckMWoKXTj.jpg\",\"url\":\"https:\\/\\/t.co\\/SKX3RY7e7F\",\"display_url\":\"pic.twitter.com\\/SKX3RY7e7F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Boyolamzie\\/status\\/1553662625409548290\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"2383\":{\"hashtags\":[{\"text\":\"GistLoverStory\",\"indices\":[46,61]},{\"text\":\"MUFC\",\"indices\":[62,67]},{\"text\":\"SummerSlam\",\"indices\":[68,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"BBNaija7\",\"indices\":[88,97]},{\"text\":\"CommunityShield\",\"indices\":[98,114]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[115,137]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[138,163]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[164,189]},{\"text\":\"Haaland\",\"indices\":[190,198]},{\"text\":\"hazard\",\"indices\":[199,206]},{\"text\":\"earthquake\",\"indices\":[207,218]},{\"text\":\"ZeeNuNew\",\"indices\":[219,228]},{\"text\":\"SS9inBKK_DAY1\",\"indices\":[229,243]},{\"text\":\"SanjayRautExposed\",\"indices\":[244,262]},{\"text\":\"QueenLikeBella\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2384\":{\"hashtags\":[{\"text\":\"Gospel\",\"indices\":[40,47]},{\"text\":\"sundayvibes\",\"indices\":[48,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"BBNaija7\",\"indices\":[69,78]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[79,101]},{\"text\":\"MUFC\",\"indices\":[102,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553661826189197317,\"id_str\":\"1553661826189197317\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553661826189197317\\/pu\\/img\\/dPVXY75RgRDlyV00.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553661826189197317\\/pu\\/img\\/dPVXY75RgRDlyV00.jpg\",\"url\":\"https:\\/\\/t.co\\/5BHjztle1F\",\"display_url\":\"pic.twitter.com\\/5BHjztle1F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concepts_tm\\/status\\/1553661894002704385\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2385\":{\"hashtags\":[{\"text\":\"daily\",\"indices\":[27,33]},{\"text\":\"dailythoughts\",\"indices\":[34,48]},{\"text\":\"dailymotivation\",\"indices\":[49,65]},{\"text\":\"BBNaija7\",\"indices\":[66,75]},{\"text\":\"sundaygame\",\"indices\":[76,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"earthquake\",\"indices\":[96,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553660445604601856,\"id_str\":\"1553660445604601856\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-18ZHWYAAuqI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-18ZHWYAAuqI7.jpg\",\"url\":\"https:\\/\\/t.co\\/SV1haNKXM5\",\"display_url\":\"pic.twitter.com\\/SV1haNKXM5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kay_Blaq01\\/status\\/1553660462243397632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"}}}]},\"2386\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[39,47]},{\"text\":\"Taiwan\",\"indices\":[48,55]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[56,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553659369887342592,\"id_str\":\"1553659369887342592\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-09xwXoAACXm9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-09xwXoAACXm9.jpg\",\"url\":\"https:\\/\\/t.co\\/uGowkodDNw\",\"display_url\":\"pic.twitter.com\\/uGowkodDNw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_bjbizzy\\/status\\/1553659378573737984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2387\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[45,67]},{\"text\":\"halland\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2388\":{\"hashtags\":[{\"text\":\"StopSellingPi\",\"indices\":[158,172]},{\"text\":\"Pipayments\",\"indices\":[173,184]},{\"text\":\"crytocurrency\",\"indices\":[186,200]},{\"text\":\"Taiwan\",\"indices\":[201,208]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WoodyLightyearx\",\"name\":\"Woody Lightyear \\u03c0\",\"id\":125613934,\"id_str\":\"125613934\",\"indices\":[209,225]},{\"screen_name\":\"vinfi\",\"name\":\"Riadi OT\",\"id\":732144823,\"id_str\":\"732144823\",\"indices\":[227,233]}],\"urls\":[],\"media\":[{\"id\":1553657261150674944,\"id_str\":\"1553657261150674944\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"url\":\"https:\\/\\/t.co\\/GM61YwTbdk\",\"display_url\":\"pic.twitter.com\\/GM61YwTbdk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1553657275822350338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1448,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"}}}]},\"2389\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[30,40]},{\"text\":\"CommunityShield\",\"indices\":[42,58]},{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553656335425757184,\"id_str\":\"1553656335425757184\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-yNJgWYAAQAmM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-yNJgWYAAQAmM.jpg\",\"url\":\"https:\\/\\/t.co\\/VzCsr3NG1J\",\"display_url\":\"pic.twitter.com\\/VzCsr3NG1J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kelvinbillions_\\/status\\/1553656350227447809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1122,\"resize\":\"fit\"},\"large\":{\"w\":1283,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":636,\"resize\":\"fit\"}}}]},\"2390\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[0,11]},{\"text\":\"Taiwan\",\"indices\":[12,19]},{\"text\":\"earthquake\",\"indices\":[20,31]},{\"text\":\"Lollapalooza\",\"indices\":[32,45]},{\"text\":\"CommunityShield\",\"indices\":[46,62]},{\"text\":\"UnitedShowbiz\",\"indices\":[63,77]},{\"text\":\"ZeeNuNew\",\"indices\":[78,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rCH5mVvNNM\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PLxLXLeyyS_OIgYGX6oUYkK6jnYaQzx2A2\",\"display_url\":\"youtube.com\\/playlist?list=\\u2026\",\"indices\":[172,195]}]},\"2391\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[199,210]},{\"text\":\"Taiwan\",\"indices\":[211,218]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[219,241]},{\"text\":\"CommunityShield\",\"indices\":[242,258]},{\"text\":\"BBNaija7\",\"indices\":[259,268]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Oloyedey4u\",\"name\":\"OL\\u00d3Y\\u00c8\\u25fd\",\"id\":948115760,\"id_str\":\"948115760\",\"indices\":[148,159]},{\"screen_name\":\"T_Bakare\",\"name\":\"Dr. Tunde Bakare\",\"id\":380592102,\"id_str\":\"380592102\",\"indices\":[160,169]},{\"screen_name\":\"TundeEednut\",\"name\":\"Tunde Ednut\",\"id\":1040839333,\"id_str\":\"1040839333\",\"indices\":[170,182]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[183,198]}],\"urls\":[],\"media\":[{\"id\":1553652842006822913,\"id_str\":\"1553652842006822913\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553652842006822913\\/pu\\/img\\/9Bhu3NUBAcd-jF4Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553652842006822913\\/pu\\/img\\/9Bhu3NUBAcd-jF4Q.jpg\",\"url\":\"https:\\/\\/t.co\\/6FBaqERv5u\",\"display_url\":\"pic.twitter.com\\/6FBaqERv5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AnthonySneh\\/status\\/1553652872394440705\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"2392\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[119,129]},{\"text\":\"Mappedout\",\"indices\":[130,140]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"SummerSlam\",\"indices\":[149,160]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[161,183]},{\"text\":\"CommunityShield\",\"indices\":[185,201]},{\"text\":\"BBNaija7\",\"indices\":[202,211]},{\"text\":\"HOBIPALOOZA\",\"indices\":[212,224]},{\"text\":\"GarciaBenavidez\",\"indices\":[226,242]},{\"text\":\"earthquake\",\"indices\":[243,254]},{\"text\":\"wizkid\",\"indices\":[255,262]},{\"text\":\"mastablade\",\"indices\":[263,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s8wdmDvsDE\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/mastablade\\/mapped-out\",\"display_url\":\"distrokid.com\\/hyperfollow\\/ma\\u2026\",\"indices\":[94,117]}],\"media\":[{\"id\":1553652101208850432,\"id_str\":\"1553652101208850432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"url\":\"https:\\/\\/t.co\\/PsjlGa6Orw\",\"display_url\":\"pic.twitter.com\\/PsjlGa6Orw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/farukcalypse2\\/status\\/1553652117272944640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"2393\":{\"hashtags\":[{\"text\":\"deliveryinlagos\",\"indices\":[122,138]},{\"text\":\"July2022\",\"indices\":[139,148]},{\"text\":\"BBNaija\",\"indices\":[149,157]},{\"text\":\"TREASURE\",\"indices\":[158,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"SummerSlam\",\"indices\":[176,187]},{\"text\":\"CommunityShield\",\"indices\":[188,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553650006246162432,\"id_str\":\"1553650006246162432\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-scveWAAAlIGC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-scveWAAAlIGC.jpg\",\"url\":\"https:\\/\\/t.co\\/wTwXGFPjhZ\",\"display_url\":\"pic.twitter.com\\/wTwXGFPjhZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/helpsendit\\/status\\/1553650050949173250\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2394\":{\"hashtags\":[{\"text\":\"Rashford\",\"indices\":[113,122]},{\"text\":\"Carterefe\",\"indices\":[123,133]},{\"text\":\"GistLoverStory\",\"indices\":[134,149]},{\"text\":\"RomanReigns\",\"indices\":[150,162]},{\"text\":\"QueenLikeBella\",\"indices\":[163,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]},{\"text\":\"BBNaija\",\"indices\":[187,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2395\":{\"hashtags\":[{\"text\":\"FreakyGirl\",\"indices\":[13,24]},{\"text\":\"BBNaija\",\"indices\":[25,33]},{\"text\":\"SummerSlam\",\"indices\":[34,45]},{\"text\":\"Taiwan\",\"indices\":[46,53]},{\"text\":\"BBNaija7\",\"indices\":[54,63]},{\"text\":\"GistLoverStory\",\"indices\":[64,79]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZScDyM5jLp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Thabe_lang\\/status\\/1553269427373752320\",\"display_url\":\"twitter.com\\/Thabe_lang\\/sta\\u2026\",\"indices\":[80,103]}]},\"2396\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[103,114]},{\"text\":\"BBNaija\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"CommunityShield\",\"indices\":[132,148]},{\"text\":\"BBNaija7\",\"indices\":[149,158]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[159,184]},{\"text\":\"GarciaBenavidez\",\"indices\":[185,201]},{\"text\":\"earthquake\",\"indices\":[202,213]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[214,240]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[241,267]},{\"text\":\"TREASURE\",\"indices\":[268,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2397\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dwnews\",\"name\":\"DW News\",\"id\":6134882,\"id_str\":\"6134882\",\"indices\":[0,7]}],\"urls\":[]},\"2398\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"Sheggz\",\"indices\":[73,80]},{\"text\":\"BBNaija\",\"indices\":[81,89]},{\"text\":\"LoveDamini\",\"indices\":[90,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2399\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"WWIII\",\"indices\":[164,170]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"2400\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[49,60]},{\"text\":\"BBNaija\",\"indices\":[62,70]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"CommunityShield\",\"indices\":[81,97]},{\"text\":\"BBNaija7\",\"indices\":[99,108]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[110,135]},{\"text\":\"GarciaBenavidez\",\"indices\":[137,153]},{\"text\":\"earthquake\",\"indices\":[155,166]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[168,194]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[196,220]},{\"text\":\"ZeeNuNew\",\"indices\":[222,231]},{\"text\":\"QueenLikeBella\",\"indices\":[233,248]},{\"text\":\"TREASURE\",\"indices\":[250,259]},{\"text\":\"SanjayRautExposed\",\"indices\":[261,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553641745237385216,\"id_str\":\"1553641745237385216\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"url\":\"https:\\/\\/t.co\\/HsB6cWtw26\",\"display_url\":\"pic.twitter.com\\/HsB6cWtw26\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1553641752690663424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":391,\"h\":680,\"resize\":\"fit\"}}}]},\"2401\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[163,171]},{\"text\":\"SummerSlam\",\"indices\":[173,184]},{\"text\":\"CommunityShield\",\"indices\":[186,202]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[204,226]},{\"text\":\"BBNaija7\",\"indices\":[228,237]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[239,264]},{\"text\":\"Taiwan\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553638549450260481,\"id_str\":\"1553638549450260481\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-iB3lWAAEFY2I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-iB3lWAAEFY2I.jpg\",\"url\":\"https:\\/\\/t.co\\/DvePI0WYHV\",\"display_url\":\"pic.twitter.com\\/DvePI0WYHV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Clemen2Clement\\/status\\/1553638557931245568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2402\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[103,110]},{\"text\":\"FreakyGirl\",\"indices\":[111,122]},{\"text\":\"gistloverblog\",\"indices\":[124,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553638321384996866,\"id_str\":\"1553638321384996866\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"url\":\"https:\\/\\/t.co\\/apDiNjnMd7\",\"display_url\":\"pic.twitter.com\\/apDiNjnMd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/citypeople01\\/status\\/1553638323977166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":394,\"resize\":\"fit\"},\"large\":{\"w\":920,\"h\":533,\"resize\":\"fit\"},\"medium\":{\"w\":920,\"h\":533,\"resize\":\"fit\"}}}]},\"2403\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"BBNaija\",\"indices\":[61,69]},{\"text\":\"CHURCHGIRL\",\"indices\":[70,81]},{\"text\":\"church\",\"indices\":[82,89]},{\"text\":\"life\",\"indices\":[90,95]},{\"text\":\"beauty\",\"indices\":[96,103]},{\"text\":\"Jesus\",\"indices\":[104,110]},{\"text\":\"LIVMCI\",\"indices\":[111,118]},{\"text\":\"Lagos\",\"indices\":[119,125]},{\"text\":\"SummerSlam\",\"indices\":[126,137]},{\"text\":\"PrettyLittleLiars\",\"indices\":[138,156]},{\"text\":\"prettyyoungteen\",\"indices\":[157,173]},{\"text\":\"prettylittlething\",\"indices\":[174,192]},{\"text\":\"LoveIslandUSA\",\"indices\":[193,207]},{\"text\":\"Twitter\",\"indices\":[208,216]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[217,234]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[235,260]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[261,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553637665718902784,\"id_str\":\"1553637665718902784\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-hObbXoAAFWEc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-hObbXoAAFWEc.jpg\",\"url\":\"https:\\/\\/t.co\\/qHBOqe8fxJ\",\"display_url\":\"pic.twitter.com\\/qHBOqe8fxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obiorah1010\\/status\\/1553637683955728384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1549,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"}}}]},\"2404\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[89,97]},{\"text\":\"SummerSlam\",\"indices\":[98,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"CommunityShield\",\"indices\":[118,134]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[135,157]},{\"text\":\"BBNaija7\",\"indices\":[158,167]},{\"text\":\"MirabaiChanu\",\"indices\":[168,181]},{\"text\":\"earthquake\",\"indices\":[182,193]},{\"text\":\"TREASURE\",\"indices\":[194,203]},{\"text\":\"ItsNeverGoodbyeDREAM\",\"indices\":[204,225]},{\"text\":\"donjazzy\",\"indices\":[226,235]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cuppymusic\",\"name\":\"Cuppy\",\"id\":226944459,\"id_str\":\"226944459\",\"indices\":[0,11]},{\"screen_name\":\"1Xtra\",\"name\":\"BBC Radio 1Xtra\",\"id\":814760,\"id_str\":\"814760\",\"indices\":[12,18]}],\"urls\":[],\"media\":[{\"id\":1553633190010667008,\"id_str\":\"1553633190010667008\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553633190010667008\\/pu\\/img\\/e02PxcbxGrMYhAV2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553633190010667008\\/pu\\/img\\/e02PxcbxGrMYhAV2.jpg\",\"url\":\"https:\\/\\/t.co\\/kpiUGVbD17\",\"display_url\":\"pic.twitter.com\\/kpiUGVbD17\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553633279730933761\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2405\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[171,182]},{\"text\":\"gistloverblog\",\"indices\":[183,197]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[198,220]},{\"text\":\"Taiwan\",\"indices\":[222,229]},{\"text\":\"CommunityShield\",\"indices\":[231,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2406\":{\"hashtags\":[{\"text\":\"howeyoudey\",\"indices\":[38,49]},{\"text\":\"SummerSlam\",\"indices\":[80,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[100,122]},{\"text\":\"CommunityShield\",\"indices\":[123,139]},{\"text\":\"CommunityShield\",\"indices\":[140,156]},{\"text\":\"BBNaija7\",\"indices\":[157,166]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[167,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"meg_comedy\",\"name\":\"Edioba\",\"id\":1479751891110223873,\"id_str\":\"1479751891110223873\",\"indices\":[25,36]},{\"screen_name\":\"patorankingfire\",\"name\":\"PATORANKING\",\"id\":66000793,\"id_str\":\"66000793\",\"indices\":[50,66]},{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[68,78]}],\"urls\":[],\"media\":[{\"id\":1553624865080578049,\"id_str\":\"1553624865080578049\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553624865080578049\\/pu\\/img\\/EjNQPPuwuX_82MkQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553624865080578049\\/pu\\/img\\/EjNQPPuwuX_82MkQ.jpg\",\"url\":\"https:\\/\\/t.co\\/f1lp0rLYnp\",\"display_url\":\"pic.twitter.com\\/f1lp0rLYnp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meg_comedy\\/status\\/1553625599792619520\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2407\":{\"hashtags\":[{\"text\":\"CommunityShield\",\"indices\":[39,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"SummerSlam\",\"indices\":[64,75]},{\"text\":\"BBNaija7\",\"indices\":[76,85]},{\"text\":\"BBNaijaS7\",\"indices\":[86,96]},{\"text\":\"BBNajia\",\"indices\":[97,105]},{\"text\":\"LIVMCI\",\"indices\":[106,113]},{\"text\":\"UFC_277\",\"indices\":[114,122]},{\"text\":\"ufc277\",\"indices\":[123,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2408\":{\"hashtags\":[{\"text\":\"BeieveYouCan\",\"indices\":[98,111]},{\"text\":\"lhordswaalah\",\"indices\":[112,125]},{\"text\":\"SummerSlam\",\"indices\":[126,137]},{\"text\":\"BBNaija7\",\"indices\":[138,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2409\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[11,18]},{\"text\":\"BBNaija7\",\"indices\":[19,28]},{\"text\":\"Smilesandmelody\",\"indices\":[29,45]},{\"text\":\"CommunityShield\",\"indices\":[46,62]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[63,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553611894539390977,\"id_str\":\"1553611894539390977\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"url\":\"https:\\/\\/t.co\\/IGIlCZSH02\",\"display_url\":\"pic.twitter.com\\/IGIlCZSH02\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HollaBYoung\\/status\\/1553611898549161984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2410\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"washingtonpost\",\"name\":\"The Washington Post\",\"id\":2467791,\"id_str\":\"2467791\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2411\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[88,96]},{\"text\":\"Taiwan\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nypost\",\"name\":\"New York Post\",\"id\":17469289,\"id_str\":\"17469289\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2412\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"catmamgo\",\"name\":\"\\u732b\\u603b\",\"id\":779799806,\"id_str\":\"779799806\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2413\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2414\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BeijingEvening\",\"name\":\"Beijing Evening News\",\"id\":1457869861414080512,\"id_str\":\"1457869861414080512\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2415\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dajiyuan\",\"name\":\"\\u5927\\u7eaa\\u5143\\u65b0\\u95fb\\u7f51\",\"id\":56572394,\"id_str\":\"56572394\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2416\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"arabnews\",\"name\":\"Arab News\",\"id\":69172612,\"id_str\":\"69172612\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2417\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MotherJones\",\"name\":\"Mother Jones\",\"id\":18510860,\"id_str\":\"18510860\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2418\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jerusalem_Post\",\"name\":\"The Jerusalem Post\",\"id\":19489239,\"id_str\":\"19489239\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2419\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"scottwongDC\",\"name\":\"Scott Wong\",\"id\":136550204,\"id_str\":\"136550204\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2420\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[54,66]},{\"text\":\"Pelosi\",\"indices\":[84,91]},{\"text\":\"Chinese\",\"indices\":[125,133]},{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BrianKoontz59\",\"name\":\"Brian Koontz\",\"id\":1337112477214138373,\"id_str\":\"1337112477214138373\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[68,82]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2421\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"StephanieAYang\",\"name\":\"Stephanie Yang\",\"id\":376326941,\"id_str\":\"376326941\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2422\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"StephanieAYang\",\"name\":\"Stephanie Yang\",\"id\":376326941,\"id_str\":\"376326941\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2423\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"StephanieAYang\",\"name\":\"Stephanie Yang\",\"id\":376326941,\"id_str\":\"376326941\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2424\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AHMalcolm\",\"name\":\"Andrew Malcolm\",\"id\":14465607,\"id_str\":\"14465607\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2425\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TimednewsC\",\"name\":\"TimedNews.com\",\"id\":1335493192783777793,\"id_str\":\"1335493192783777793\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2426\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SoyDonCruz\",\"name\":\"Don Cruz Trevi\\u00f1o\",\"id\":1224702899000946693,\"id_str\":\"1224702899000946693\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2427\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"B_Estefan\",\"name\":\"Brenda Estefan\",\"id\":551232817,\"id_str\":\"551232817\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2428\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"B_Estefan\",\"name\":\"Brenda Estefan\",\"id\":551232817,\"id_str\":\"551232817\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2429\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"B_Estefan\",\"name\":\"Brenda Estefan\",\"id\":551232817,\"id_str\":\"551232817\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2430\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"B_Estefan\",\"name\":\"Brenda Estefan\",\"id\":551232817,\"id_str\":\"551232817\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2431\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"B_Estefan\",\"name\":\"Brenda Estefan\",\"id\":551232817,\"id_str\":\"551232817\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2432\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"B_Estefan\",\"name\":\"Brenda Estefan\",\"id\":551232817,\"id_str\":\"551232817\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2433\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"swissbusiness\",\"name\":\"swissbusiness\",\"id\":14770715,\"id_str\":\"14770715\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2434\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeromeTaylor\",\"name\":\"Jerome Taylor\",\"id\":27284203,\"id_str\":\"27284203\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2435\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeromeTaylor\",\"name\":\"Jerome Taylor\",\"id\":27284203,\"id_str\":\"27284203\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2436\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[39,51]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"Chinese\",\"indices\":[110,118]},{\"text\":\"Taiwan\",\"indices\":[120,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeromeTaylor\",\"name\":\"Jerome Taylor\",\"id\":27284203,\"id_str\":\"27284203\",\"indices\":[0,13]},{\"screen_name\":\"wangxiangweihk\",\"name\":\"Wang Xiangwei\",\"id\":33887688,\"id_str\":\"33887688\",\"indices\":[14,29]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[53,67]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2437\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AusOfficeTPE\",\"name\":\"Jenny Bloomfield\",\"id\":2842936406,\"id_str\":\"2842936406\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2438\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HansMahncke\",\"name\":\"Hans Mahncke\",\"id\":2565360157,\"id_str\":\"2565360157\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2439\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[41,53]},{\"text\":\"Pelosi\",\"indices\":[71,78]},{\"text\":\"Chinese\",\"indices\":[112,120]},{\"text\":\"Taiwan\",\"indices\":[122,129]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpecialSitsNews\",\"name\":\"Special Situations \\ud83c\\udf10 Research Newsletter (Jay)\",\"id\":1242122660500381696,\"id_str\":\"1242122660500381696\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[17,31]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[55,69]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2440\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[30,37]},{\"text\":\"BBNaija7\",\"indices\":[38,47]},{\"text\":\"viral\",\"indices\":[48,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/L5liAEmgr2\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/emp-gang\\/song\\/blessings\",\"display_url\":\"audiomack.com\\/emp-gang\\/song\\/\\u2026\",\"indices\":[57,80]}],\"media\":[{\"id\":1553598336699191297,\"id_str\":\"1553598336699191297\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY99dLaX0AEpumY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY99dLaX0AEpumY.jpg\",\"url\":\"https:\\/\\/t.co\\/JEF2A4LwOP\",\"display_url\":\"pic.twitter.com\\/JEF2A4LwOP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bm_nya\\/status\\/1553598343900700672\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"2441\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DailyMail\",\"name\":\"Daily Mail US\",\"id\":380285402,\"id_str\":\"380285402\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2442\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[45,57]},{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"Chinese\",\"indices\":[116,124]},{\"text\":\"Taiwan\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TonyMoonbeam\",\"name\":\"Incumbent Elden Lord\",\"id\":1185604783765278720,\"id_str\":\"1185604783765278720\",\"indices\":[0,13]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[14,20]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[21,35]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[59,73]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2443\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Prison_Health\",\"name\":\"Prison_Health\",\"id\":85601740,\"id_str\":\"85601740\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2444\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[64,76]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"Chinese\",\"indices\":[135,143]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CurtisSChin\",\"name\":\"\\ud83d\\udeb6\\ud83c\\udffbCurtis S. Chin\",\"id\":2267964218,\"id_str\":\"2267964218\",\"indices\":[0,12]},{\"screen_name\":\"StephanieAYang\",\"name\":\"Stephanie Yang\",\"id\":376326941,\"id_str\":\"376326941\",\"indices\":[13,28]},{\"screen_name\":\"dhpierson\",\"name\":\"David Pierson\",\"id\":66259130,\"id_str\":\"66259130\",\"indices\":[29,39]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[78,92]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2445\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"henry_chuangVB\",\"name\":\"Henry Chuang\",\"id\":335673568,\"id_str\":\"335673568\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2446\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Pelosi\",\"indices\":[66,73]},{\"text\":\"Chinese\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dcexaminer\",\"name\":\"Washington Examiner\",\"id\":18956073,\"id_str\":\"18956073\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[12,26]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[50,64]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2447\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[27,39]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Chinese\",\"indices\":[98,106]},{\"text\":\"Taiwan\",\"indices\":[108,115]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iingwen\",\"name\":\"\\u8521\\u82f1\\u6587 Tsai Ing-wen\",\"id\":155814794,\"id_str\":\"155814794\",\"indices\":[0,8]},{\"screen_name\":\"gacc_tw\",\"name\":\"\\u4e2d\\u83ef\\u6587\\u5316\\u7e3d\\u6703GACC\",\"id\":1247048003300425729,\"id_str\":\"1247048003300425729\",\"indices\":[9,17]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[41,55]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2448\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[108,120]},{\"text\":\"Pelosi\",\"indices\":[138,145]},{\"text\":\"Chinese\",\"indices\":[179,187]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MOFA_Taiwan\",\"name\":\"\\u5916\\u4ea4\\u90e8 Ministry of Foreign Affairs, ROC (Taiwan) \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":976995099170062338,\"id_str\":\"976995099170062338\",\"indices\":[0,12]},{\"screen_name\":\"DanteMossi\",\"name\":\"Dante Mossi\",\"id\":830042012065918978,\"id_str\":\"830042012065918978\",\"indices\":[13,24]},{\"screen_name\":\"CABEI_Org\",\"name\":\"CABEI\",\"id\":751177329054023680,\"id_str\":\"751177329054023680\",\"indices\":[25,35]},{\"screen_name\":\"BCIE_Org\",\"name\":\"BCIE\",\"id\":3075296855,\"id_str\":\"3075296855\",\"indices\":[36,45]},{\"screen_name\":\"CancilleriaHN\",\"name\":\"Canciller\\u00eda Honduras\",\"id\":229993443,\"id_str\":\"229993443\",\"indices\":[46,60]},{\"screen_name\":\"EnriqueReinaHN\",\"name\":\"Enrique Reina\",\"id\":358823600,\"id_str\":\"358823600\",\"indices\":[61,76]},{\"screen_name\":\"embhntw\",\"name\":\"Emb. Honduras en Taiwan\",\"id\":2989445104,\"id_str\":\"2989445104\",\"indices\":[77,85]},{\"screen_name\":\"TW_Honduras\",\"name\":\"Embajada de la Rep. de China (Taiw\\u00e1n) en Honduras\",\"id\":942231797718507520,\"id_str\":\"942231797718507520\",\"indices\":[86,98]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[122,136]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2449\":{\"hashtags\":[{\"text\":\"Congratulations\",\"indices\":[52,68]},{\"text\":\"birthdayboy\",\"indices\":[69,81]},{\"text\":\"HappyBirthday\",\"indices\":[82,96]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[97,119]},{\"text\":\"Taiwan\",\"indices\":[120,127]},{\"text\":\"BBNaija7\",\"indices\":[128,137]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[138,164]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[165,185]},{\"text\":\"Machala\",\"indices\":[186,194]},{\"text\":\"QueenLikeBella\",\"indices\":[195,210]},{\"text\":\"DejateQuerer\",\"indices\":[211,224]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[225,240]},{\"text\":\"KominfoKontol\",\"indices\":[241,255]},{\"text\":\"TREASURE\",\"indices\":[256,265]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"skido_vibes\",\"name\":\"Skido Vibes\",\"id\":3384515710,\"id_str\":\"3384515710\",\"indices\":[21,33]}],\"urls\":[],\"media\":[{\"id\":1553595877788368897,\"id_str\":\"1553595877788368897\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553595877788368897\\/pu\\/img\\/WGtzrlaowoCOu564.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553595877788368897\\/pu\\/img\\/WGtzrlaowoCOu564.jpg\",\"url\":\"https:\\/\\/t.co\\/TFkEfDqPMe\",\"display_url\":\"pic.twitter.com\\/TFkEfDqPMe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ochicanado\\/status\\/1553596212997226499\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2450\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[120,142]},{\"text\":\"SummerSlam\",\"indices\":[143,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"BBNaija7\",\"indices\":[163,172]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[173,199]},{\"text\":\"shiba\",\"indices\":[200,206]},{\"text\":\"ItsNeverGoodbyeDREAM\",\"indices\":[207,228]},{\"text\":\"Lollapalooza\",\"indices\":[229,242]},{\"text\":\"TREASURE\",\"indices\":[243,252]},{\"text\":\"MIKFESTIVAL\",\"indices\":[253,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3SLzN9q6yz\",\"expanded_url\":\"https:\\/\\/youtu.be\\/fowuLI5ObjQ\",\"display_url\":\"youtu.be\\/fowuLI5ObjQ\",\"indices\":[54,77]},{\"url\":\"https:\\/\\/t.co\\/MMJBZck9dq\",\"expanded_url\":\"https:\\/\\/www.beatstars.com\\/dopatunes\\/tracks\",\"display_url\":\"beatstars.com\\/dopatunes\\/trac\\u2026\",\"indices\":[96,119]}],\"media\":[{\"id\":1553582437778821120,\"id_str\":\"1553582437778821120\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553582437778821120\\/pu\\/img\\/U8ZXrx124LrTe_gh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553582437778821120\\/pu\\/img\\/U8ZXrx124LrTe_gh.jpg\",\"url\":\"https:\\/\\/t.co\\/YIDnQWSaVf\",\"display_url\":\"pic.twitter.com\\/YIDnQWSaVf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dopatunes\\/status\\/1553582458779607040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"2451\":{\"hashtags\":[{\"text\":\"StopSellingPi\",\"indices\":[31,45]},{\"text\":\"O\",\"indices\":[47,49]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[56,78]},{\"text\":\"SummerSlam\",\"indices\":[79,90]},{\"text\":\"CommunityShield\",\"indices\":[91,107]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[108,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"HOBIPALOOZA\",\"indices\":[143,155]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[156,181]},{\"text\":\"Birmingham2022\",\"indices\":[182,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553564599433273344,\"id_str\":\"1553564599433273344\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"url\":\"https:\\/\\/t.co\\/mBrs0m6gxJ\",\"display_url\":\"pic.twitter.com\\/mBrs0m6gxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Abbanya1\\/status\\/1553564690663481344\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2452\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"CommunityShield\",\"indices\":[116,132]},{\"text\":\"Lollapalooza\",\"indices\":[133,146]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[147,173]},{\"text\":\"QueenLikeBella\",\"indices\":[174,189]},{\"text\":\"KominfoKontol\",\"indices\":[190,204]},{\"text\":\"dreamama\",\"indices\":[205,214]},{\"text\":\"BETHESUNinSG\",\"indices\":[215,228]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[229,251]},{\"text\":\"SHIB\",\"indices\":[252,257]},{\"text\":\"soldierboy\",\"indices\":[258,269]},{\"text\":\"NFT\",\"indices\":[270,274]},{\"text\":\"WWE\",\"indices\":[275,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2453\":{\"hashtags\":[{\"text\":\"CommunityShield\",\"indices\":[53,69]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[70,95]},{\"text\":\"explore\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"explorepage\",\"indices\":[113,125]},{\"text\":\"BBNaija7\",\"indices\":[126,135]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2454\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"terror_alarm\",\"name\":\"Terror Alarm\",\"id\":754718787237281792,\"id_str\":\"754718787237281792\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2455\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"terror_alarm\",\"name\":\"Terror Alarm\",\"id\":754718787237281792,\"id_str\":\"754718787237281792\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2456\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[0,12]},{\"text\":\"China\",\"indices\":[23,29]},{\"text\":\"Nancy\",\"indices\":[82,88]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"CNN\",\"indices\":[172,176]},{\"text\":\"Beijing\",\"indices\":[187,195]},{\"text\":\"\\u0627\\u0637\\u0631\\u062f\\u0648\\u0627_\\u0634\\u0627\\u062a\\u0645_\\u0627\\u0644\\u0635\\u062d\\u0627\\u0628\\u0647\",\"indices\":[197,217]},{\"text\":\"\\u0e2d\\u0e34\\u0e07\\u0e1f\\u0e49\\u0e32\\u0e21\\u0e34\\u0e2a\\u0e41\\u0e01\\u0e23\\u0e19\\u0e14\\u0e4c\\u0e44\\u0e17\\u0e22\\u0e41\\u0e25\\u0e19\\u0e14\\u0e4c\",\"indices\":[219,243]},{\"text\":\"TREASURE\",\"indices\":[244,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LHRkDDCqbE\",\"expanded_url\":\"http:\\/\\/t.me\\/Yorlak\",\"display_url\":\"t.me\\/Yorlak\",\"indices\":[254,277]}],\"media\":[{\"id\":1553550683378524160,\"id_str\":\"1553550683378524160\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553550683378524160\\/pu\\/img\\/MskXSun9cyMczwNR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553550683378524160\\/pu\\/img\\/MskXSun9cyMczwNR.jpg\",\"url\":\"https:\\/\\/t.co\\/HovKgDPTb9\",\"display_url\":\"pic.twitter.com\\/HovKgDPTb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hetreeli\\/status\\/1553557621470179330\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":520,\"resize\":\"fit\"}}}]},\"2457\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[0,12]},{\"text\":\"China\",\"indices\":[29,35]},{\"text\":\"Nancy\",\"indices\":[88,94]},{\"text\":\"Pelosi\",\"indices\":[95,102]},{\"text\":\"CNN\",\"indices\":[178,182]},{\"text\":\"Beijing\",\"indices\":[193,201]},{\"text\":\"\\u0e2d\\u0e34\\u0e07\\u0e1f\\u0e49\\u0e32\\u0e21\\u0e34\\u0e2a\\u0e41\\u0e01\\u0e23\\u0e19\\u0e14\\u0e4c\\u0e44\\u0e17\\u0e22\\u0e41\\u0e25\\u0e19\\u0e14\\u0e4c\",\"indices\":[203,227]},{\"text\":\"ZeeNuNew\",\"indices\":[228,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LHRkDDU1Ae\",\"expanded_url\":\"http:\\/\\/t.me\\/Yorlak\",\"display_url\":\"t.me\\/Yorlak\",\"indices\":[252,275]}],\"media\":[{\"id\":1553544628913278976,\"id_str\":\"1553544628913278976\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553544628913278976\\/pu\\/img\\/5PsQEoC9JXhvR5Zu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553544628913278976\\/pu\\/img\\/5PsQEoC9JXhvR5Zu.jpg\",\"url\":\"https:\\/\\/t.co\\/aJ2aJVMipz\",\"display_url\":\"pic.twitter.com\\/aJ2aJVMipz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hetreeli\\/status\\/1553551419822809090\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":520,\"resize\":\"fit\"}}}]},\"2458\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[23,30]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2459\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[232,254]},{\"text\":\"KNUST\",\"indices\":[256,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2460\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[64,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553516945605025796,\"id_str\":\"1553516945605025796\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":616,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1086,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1854,\"h\":2048,\"resize\":\"fit\"}}}]},\"2461\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[27,49]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"GogoSkhotheni\",\"indices\":[58,72]},{\"text\":\"ajapsv\",\"indices\":[73,80]},{\"text\":\"\\u0627\\u0637\\u0631\\u062f\\u0648\\u0627_\\u0634\\u0627\\u062a\\u0645_\\u0627\\u0644\\u0635\\u062d\\u0627\\u0628\\u0647\",\"indices\":[81,101]},{\"text\":\"\\u0e2d\\u0e34\\u0e07\\u0e1f\\u0e49\\u0e32\\u0e21\\u0e34\\u0e2a\\u0e41\\u0e01\\u0e23\\u0e19\\u0e14\\u0e4c\\u0e44\\u0e17\\u0e22\\u0e41\\u0e25\\u0e19\\u0e14\\u0e4c\",\"indices\":[102,126]},{\"text\":\"ZeeNuNew\",\"indices\":[127,136]},{\"text\":\"LoveMechanicsEP9\",\"indices\":[137,154]},{\"text\":\"TREASURE\",\"indices\":[155,164]},{\"text\":\"oluwadammy\",\"indices\":[165,176]},{\"text\":\"dammysingsongz\",\"indices\":[177,192]},{\"text\":\"olamide\",\"indices\":[193,201]},{\"text\":\"wizkid\",\"indices\":[202,209]},{\"text\":\"davido\",\"indices\":[210,217]},{\"text\":\"machala\",\"indices\":[218,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553515713423368198,\"id_str\":\"1553515713423368198\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553515713423368198\\/pu\\/img\\/u7EORAZYVEgULGvZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553515713423368198\\/pu\\/img\\/u7EORAZYVEgULGvZ.jpg\",\"url\":\"https:\\/\\/t.co\\/HEGVGnLXdK\",\"display_url\":\"pic.twitter.com\\/HEGVGnLXdK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oluwadammy_jb\\/status\\/1553515856822517761\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"2462\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[30,52]},{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"TREASURE\",\"indices\":[61,70]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Rain_goddd\",\"name\":\"RAIN\\ud83d\\udca7\\u2614\\ufe0f\",\"id\":1316773480835223552,\"id_str\":\"1316773480835223552\",\"indices\":[71,82]},{\"screen_name\":\"gyaigyyimii\",\"name\":\"KALYJAY \\uea00\",\"id\":1382488424,\"id_str\":\"1382488424\",\"indices\":[83,95]}],\"urls\":[]},\"2463\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[29,41]},{\"text\":\"Pelosi\",\"indices\":[59,66]},{\"text\":\"Chinese\",\"indices\":[100,108]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ananavarro\",\"name\":\"Ana Navarro-C\\u00e1rdenas\",\"id\":19568591,\"id_str\":\"19568591\",\"indices\":[0,11]},{\"screen_name\":\"SECNAV\",\"name\":\"Office of the Secretary of the Navy\",\"id\":117821354,\"id_str\":\"117821354\",\"indices\":[12,19]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[43,57]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2464\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TimRunsHisMouth\",\"name\":\"Tim Young\",\"id\":34367582,\"id_str\":\"34367582\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2465\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kylenabecker\",\"name\":\"Kyle Becker\",\"id\":321954654,\"id_str\":\"321954654\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2466\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2467\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[35,47]},{\"text\":\"Pelosi\",\"indices\":[65,72]},{\"text\":\"Chinese\",\"indices\":[106,114]},{\"text\":\"Taiwan\",\"indices\":[116,123]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"coldxman\",\"name\":\"Coleman Hughes\",\"id\":88315048,\"id_str\":\"88315048\",\"indices\":[0,9]},{\"screen_name\":\"ProfDBernstein\",\"name\":\"David Bernstein\",\"id\":2227458877,\"id_str\":\"2227458877\",\"indices\":[10,25]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[49,63]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2468\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DemocracyDocket\",\"name\":\"Democracy Docket\",\"id\":841489249157468161,\"id_str\":\"841489249157468161\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2469\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[32,44]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"Chinese\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[113,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kyrstensinema\",\"name\":\"Kyrsten Sinema\",\"id\":20747881,\"id_str\":\"20747881\",\"indices\":[0,14]},{\"screen_name\":\"SBAgov\",\"name\":\"SBA\",\"id\":153149305,\"id_str\":\"153149305\",\"indices\":[15,22]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[46,60]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2470\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HansMahncke\",\"name\":\"Hans Mahncke\",\"id\":2565360157,\"id_str\":\"2565360157\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2471\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AnonOpsSE\",\"name\":\"Anonymous Operations\",\"id\":1009546724,\"id_str\":\"1009546724\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2472\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChuckCallesto\",\"name\":\"Chuck Callesto\",\"id\":4765364386,\"id_str\":\"4765364386\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2473\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thehill\",\"name\":\"The Hill\",\"id\":1917731,\"id_str\":\"1917731\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2474\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TODAYshow\",\"name\":\"TODAY\",\"id\":7744592,\"id_str\":\"7744592\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2475\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FoxNews\",\"name\":\"Fox News\",\"id\":1367531,\"id_str\":\"1367531\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2476\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BillKristol\",\"name\":\"Bill Kristol\",\"id\":2800581040,\"id_str\":\"2800581040\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2477\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2478\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kenklippenstein\",\"name\":\"Ken Klippenstein\",\"id\":1634248890,\"id_str\":\"1634248890\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2479\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thehill\",\"name\":\"The Hill\",\"id\":1917731,\"id_str\":\"1917731\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2480\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nytimes\",\"name\":\"The New York Times\",\"id\":807095,\"id_str\":\"807095\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2481\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2482\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GeorgeTakei\",\"name\":\"George Takei\",\"id\":237845487,\"id_str\":\"237845487\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2483\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeremyDBoreing\",\"name\":\"Jeremy Boreing\",\"id\":70174349,\"id_str\":\"70174349\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2484\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[33,45]},{\"text\":\"Pelosi\",\"indices\":[63,70]},{\"text\":\"Chinese\",\"indices\":[104,112]},{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AaronParnas\",\"name\":\"Aaron Parnas\",\"id\":3103505578,\"id_str\":\"3103505578\",\"indices\":[0,12]},{\"screen_name\":\"Booker4KY\",\"name\":\"Charles Booker\",\"id\":3298708805,\"id_str\":\"3298708805\",\"indices\":[13,23]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[47,61]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2485\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[88,96]},{\"text\":\"Taiwan\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Alkanz\",\"name\":\"Al Kanz\",\"id\":7627832,\"id_str\":\"7627832\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2486\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Leftylockdowns1\",\"name\":\"Jenin Younes\",\"id\":1302455125739556869,\"id_str\":\"1302455125739556869\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2487\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TeamPelosi\",\"name\":\"Nancy Pelosi\",\"id\":2461810448,\"id_str\":\"2461810448\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2488\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RonFilipkowski\",\"name\":\"Ron Filipkowski \\ud83c\\uddfa\\ud83c\\udde6\",\"id\":1298372735383605249,\"id_str\":\"1298372735383605249\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2489\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2490\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[37,49]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"Chinese\",\"indices\":[108,116]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"ScottPresler\",\"name\":\"#ThePersistence\",\"id\":931286316,\"id_str\":\"931286316\",\"indices\":[14,27]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[51,65]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2491\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SenTedCruz\",\"name\":\"Senator Ted Cruz\",\"id\":1074480192,\"id_str\":\"1074480192\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2492\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JackPosobiec\",\"name\":\"Jack Posobiec \\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":592730371,\"id_str\":\"592730371\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2493\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2494\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[32,44]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"Chinese\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[113,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BrianKarem\",\"name\":\"Brian J. Karem\",\"id\":21001599,\"id_str\":\"21001599\",\"indices\":[0,11]},{\"screen_name\":\"mattgaetz\",\"name\":\"Matt Gaetz\",\"id\":58579942,\"id_str\":\"58579942\",\"indices\":[12,22]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[46,60]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2495\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BryanDeanWright\",\"name\":\"BDW\",\"id\":4787411118,\"id_str\":\"4787411118\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2496\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[47,59]},{\"text\":\"Pelosi\",\"indices\":[77,84]},{\"text\":\"Chinese\",\"indices\":[118,126]},{\"text\":\"Taiwan\",\"indices\":[128,135]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Feinsand\",\"name\":\"Mark Feinsand\",\"id\":40709264,\"id_str\":\"40709264\",\"indices\":[0,9]},{\"screen_name\":\"ByRobertMurray\",\"name\":\"Robert Murray\",\"id\":721451365,\"id_str\":\"721451365\",\"indices\":[10,25]},{\"screen_name\":\"JeffPassan\",\"name\":\"Jeff Passan\",\"id\":33857883,\"id_str\":\"33857883\",\"indices\":[26,37]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[61,75]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2497\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"S7i5FV0JOz6sV3A\",\"name\":\"\\u6d69\\u54e5i\\u271d\\ufe0fi\\ud83c\\uddfa\\ud83c\\uddf8iA2\",\"id\":857374372218142720,\"id_str\":\"857374372218142720\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2498\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nytimesworld\",\"name\":\"New York Times World\",\"id\":1877831,\"id_str\":\"1877831\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2499\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"le_Parisien\",\"name\":\"Le Parisien\",\"id\":38142665,\"id_str\":\"38142665\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2500\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"baseballcrank\",\"name\":\"Dan McLaughlin\",\"id\":38021361,\"id_str\":\"38021361\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2501\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NBSaphierMD\",\"name\":\"Nicole Saphier, MD\",\"id\":3065301110,\"id_str\":\"3065301110\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2502\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"guardian\",\"name\":\"The Guardian\",\"id\":87818409,\"id_str\":\"87818409\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2503\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[38,50]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Chinese\",\"indices\":[109,117]},{\"text\":\"Taiwan\",\"indices\":[119,126]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LukeMixonLA\",\"name\":\"Luke Mixon\",\"id\":1441111022283079682,\"id_str\":\"1441111022283079682\",\"indices\":[0,12]},{\"screen_name\":\"SenJohnKennedy\",\"name\":\"John Kennedy\",\"id\":816683274076614656,\"id_str\":\"816683274076614656\",\"indices\":[13,28]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2504\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[24,36]},{\"text\":\"Pelosi\",\"indices\":[54,61]},{\"text\":\"Chinese\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TheRealHoarse\",\"name\":\"The Hoarse Whisperer\",\"id\":784575415457308672,\"id_str\":\"784575415457308672\",\"indices\":[0,14]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[38,52]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2505\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[32,44]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"Chinese\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[113,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MaxMillerOH\",\"name\":\"Max Miller\",\"id\":1148299267481563138,\"id_str\":\"1148299267481563138\",\"indices\":[0,12]},{\"screen_name\":\"JoeBiden\",\"name\":\"Joe Biden\",\"id\":939091,\"id_str\":\"939091\",\"indices\":[13,22]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[46,60]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2506\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[14,26]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"Chinese\",\"indices\":[85,93]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WSJ\",\"name\":\"The Wall Street Journal\",\"id\":3108351,\"id_str\":\"3108351\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[28,42]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2507\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Joelsherman1\",\"name\":\"Joel Sherman\",\"id\":41591898,\"id_str\":\"41591898\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2508\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[39,51]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"Chinese\",\"indices\":[110,118]},{\"text\":\"Taiwan\",\"indices\":[120,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Joelsherman1\",\"name\":\"Joel Sherman\",\"id\":41591898,\"id_str\":\"41591898\",\"indices\":[0,13]},{\"screen_name\":\"ByRobertMurray\",\"name\":\"Robert Murray\",\"id\":721451365,\"id_str\":\"721451365\",\"indices\":[14,29]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[53,67]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2509\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2510\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"S7i5FV0JOz6sV3A\",\"name\":\"\\u6d69\\u54e5i\\u271d\\ufe0fi\\ud83c\\uddfa\\ud83c\\uddf8iA2\",\"id\":857374372218142720,\"id_str\":\"857374372218142720\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2511\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2512\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[49,61]},{\"text\":\"Pelosi\",\"indices\":[79,86]},{\"text\":\"Chinese\",\"indices\":[120,128]},{\"text\":\"Taiwan\",\"indices\":[130,137]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TheRealHoarse\",\"name\":\"The Hoarse Whisperer\",\"id\":784575415457308672,\"id_str\":\"784575415457308672\",\"indices\":[0,14]},{\"screen_name\":\"bdomenech\",\"name\":\"Ben Domenech\",\"id\":14989516,\"id_str\":\"14989516\",\"indices\":[15,25]},{\"screen_name\":\"LucasKunceMO\",\"name\":\"Lucas Kunce\",\"id\":1349087733793382408,\"id_str\":\"1349087733793382408\",\"indices\":[26,39]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[63,77]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2513\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FoxNews\",\"name\":\"Fox News\",\"id\":1367531,\"id_str\":\"1367531\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2514\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[17,29]},{\"text\":\"Pelosi\",\"indices\":[47,54]},{\"text\":\"Chinese\",\"indices\":[88,96]},{\"text\":\"Taiwan\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nypost\",\"name\":\"New York Post\",\"id\":17469289,\"id_str\":\"17469289\",\"indices\":[0,7]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[31,45]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2515\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"sahouraxo\",\"name\":\"Sarah Abdallah\",\"id\":3293406121,\"id_str\":\"3293406121\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2516\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"S7i5FV0JOz6sV3A\",\"name\":\"\\u6d69\\u54e5i\\u271d\\ufe0fi\\ud83c\\uddfa\\ud83c\\uddf8iA2\",\"id\":857374372218142720,\"id_str\":\"857374372218142720\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2517\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Chinese\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZaleskiLuke\",\"name\":\"Luke Zaleski\",\"id\":1488026569,\"id_str\":\"1488026569\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2518\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ByRobertMurray\",\"name\":\"Robert Murray\",\"id\":721451365,\"id_str\":\"721451365\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2519\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JonHeyman\",\"name\":\"Jon Heyman\",\"id\":36139166,\"id_str\":\"36139166\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2520\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SharylAttkisson\",\"name\":\"Sharyl Attkisson\\ud83d\\udd75\\ufe0f\\u200d\\u2642\\ufe0f\",\"id\":203226736,\"id_str\":\"203226736\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2521\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Chinese\",\"indices\":[90,98]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RedState\",\"name\":\"RedState\",\"id\":3135241,\"id_str\":\"3135241\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2522\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mavivatannet\",\"name\":\"MaviVatan.net\",\"id\":1241739791202496516,\"id_str\":\"1241739791202496516\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2523\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[14,26]},{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"Chinese\",\"indices\":[85,93]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AFP\",\"name\":\"AFP News Agency\",\"id\":380648579,\"id_str\":\"380648579\",\"indices\":[0,4]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[28,42]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2524\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kittypurrzog\",\"name\":\"Katie Herzog\",\"id\":14994676,\"id_str\":\"14994676\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2525\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"Chinese\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SchmittNYC\",\"name\":\"Rob Schmitt\",\"id\":22869693,\"id_str\":\"22869693\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2526\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Variety\",\"name\":\"Variety\",\"id\":17525171,\"id_str\":\"17525171\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2527\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TelegraphWorld\",\"name\":\"Telegraph World News\",\"id\":19706851,\"id_str\":\"19706851\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2528\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"Chinese\",\"indices\":[96,104]},{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RonFilipkowski\",\"name\":\"Ron Filipkowski \\ud83c\\uddfa\\ud83c\\udde6\",\"id\":1298372735383605249,\"id_str\":\"1298372735383605249\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2529\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TIME\",\"name\":\"TIME\",\"id\":14293310,\"id_str\":\"14293310\",\"indices\":[0,5]},{\"screen_name\":\"szacharek\",\"name\":\"Stephanie Zacharek\",\"id\":239179240,\"id_str\":\"239179240\",\"indices\":[6,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2530\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NBCNews\",\"name\":\"NBC News\",\"id\":14173315,\"id_str\":\"14173315\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2531\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[15,27]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Chinese\",\"indices\":[86,94]},{\"text\":\"Taiwan\",\"indices\":[96,103]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cnni\",\"name\":\"CNN International\",\"id\":2097571,\"id_str\":\"2097571\",\"indices\":[0,5]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[29,43]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2532\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DefenceHQ\",\"name\":\"Ministry of Defence \\ud83c\\uddec\\ud83c\\udde7\",\"id\":16133530,\"id_str\":\"16133530\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2533\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[16,28]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Chinese\",\"indices\":[87,95]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[0,6]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[30,44]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2534\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[23,35]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Chinese\",\"indices\":[94,102]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PalmerReport\",\"name\":\"Palmer Report\",\"id\":15115280,\"id_str\":\"15115280\",\"indices\":[0,13]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[37,51]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2535\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[20,27]},{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"XiJinping\",\"indices\":[72,82]},{\"text\":\"China\",\"indices\":[83,89]},{\"text\":\"WWIII\",\"indices\":[90,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7XHc3Bh1JB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerribleMaps\\/status\\/1549868866469302277\",\"display_url\":\"twitter.com\\/TerribleMaps\\/s\\u2026\",\"indices\":[97,120]}]},\"2536\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[20,32]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"Chinese\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AnonOpsSE\",\"name\":\"Anonymous Operations\",\"id\":1009546724,\"id_str\":\"1009546724\",\"indices\":[0,10]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2537\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"Chinese\",\"indices\":[89,97]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2538\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[26,38]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Chinese\",\"indices\":[97,105]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TimRunsHisMouth\",\"name\":\"Tim Young\",\"id\":34367582,\"id_str\":\"34367582\",\"indices\":[0,16]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[40,54]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2539\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Chinese\",\"indices\":[87,95]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GrecianFormula\",\"name\":\"Harry Kazianis\",\"id\":198573171,\"id_str\":\"198573171\",\"indices\":[0,15]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[39,53]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2540\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[18,30]},{\"text\":\"Chinese\",\"indices\":[80,88]},{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OsintTv\",\"name\":\"OsintTv\\ud83d\\udcfa\",\"id\":1428403959362846728,\"id_str\":\"1428403959362846728\",\"indices\":[0,8]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[32,46]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2541\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[22,34]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PM_Thornton\",\"name\":\"Patricia M Thornton\",\"id\":754430965737488384,\"id_str\":\"754430965737488384\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[36,50]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2542\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"eha_news\",\"name\":\"EHA News\",\"id\":803648695660986369,\"id_str\":\"803648695660986369\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2543\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MoNDefense\",\"name\":\"\\u570b\\u9632\\u90e8 Ministry of National Defense, R.O.C. \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":1247017297098575874,\"id_str\":\"1247017297098575874\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2544\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[75,87]},{\"text\":\"Taiwan\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MOFA_Taiwan\",\"name\":\"\\u5916\\u4ea4\\u90e8 Ministry of Foreign Affairs, ROC (Taiwan) \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":976995099170062338,\"id_str\":\"976995099170062338\",\"indices\":[0,12]},{\"screen_name\":\"cpyne\",\"name\":\"Christopher Pyne\",\"id\":2592733051,\"id_str\":\"2592733051\",\"indices\":[13,19]},{\"screen_name\":\"kevinandrewsmp\",\"name\":\"Kevin Andrews\",\"id\":252331819,\"id_str\":\"252331819\",\"indices\":[20,35]},{\"screen_name\":\"TaiwanAustralia\",\"name\":\"Taiwan in Australia\",\"id\":1128104546327093248,\"id_str\":\"1128104546327093248\",\"indices\":[36,52]},{\"screen_name\":\"TECO_SYDNEY\",\"name\":\"Taiwan in Sydney\",\"id\":1230394018174922752,\"id_str\":\"1230394018174922752\",\"indices\":[53,65]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[89,103]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\"}]},\"2545\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[21,33]},{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HuXijin_GT\",\"name\":\"Hu Xijin \\u80e1\\u9521\\u8fdb\",\"id\":2775998016,\"id_str\":\"2775998016\",\"indices\":[0,11]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[35,49]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7wAhA8vv3P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553458928247242755\\/video\\/1\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[101,124]}]},\"2546\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[9,21]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[23,37]}],\"urls\":[],\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}}}]},\"2547\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[19,31]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"eha_news\",\"name\":\"EHA News\",\"id\":803648695660986369,\"id_str\":\"803648695660986369\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[33,47]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7wAhA8vv3P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553458928247242755\\/video\\/1\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[99,122]}]},\"2548\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"China\",\"indices\":[42,48]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[105,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"China\",\"indices\":[131,137]},{\"text\":\"USA\",\"indices\":[138,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553407218212474880,\"id_str\":\"1553407218212474880\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553407218212474880\\/pu\\/img\\/LiVzuinI1iXX8M9V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553407218212474880\\/pu\\/img\\/LiVzuinI1iXX8M9V.jpg\",\"url\":\"https:\\/\\/t.co\\/hRWTB04QSc\",\"display_url\":\"pic.twitter.com\\/hRWTB04QSc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1553407255604670464\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}}}]},\"2549\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[4,12]},{\"text\":\"USA\",\"indices\":[116,120]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[143,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"China\",\"indices\":[169,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553406499463999488,\"id_str\":\"1553406499463999488\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553406499463999488\\/pu\\/img\\/0W36e4oRLUXEMICJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553406499463999488\\/pu\\/img\\/0W36e4oRLUXEMICJ.jpg\",\"url\":\"https:\\/\\/t.co\\/PFwm8IZ8Op\",\"display_url\":\"pic.twitter.com\\/PFwm8IZ8Op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1553406731371159552\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1270,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":386,\"resize\":\"fit\"}}}]},\"2550\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[245,252]},{\"text\":\"Ivana\",\"indices\":[253,259]},{\"text\":\"SheWasNice\",\"indices\":[260,271]},{\"text\":\"liverpool\",\"indices\":[272,282]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Baruch4ever\",\"name\":\"Olusegun Abisoye\",\"id\":2754466714,\"id_str\":\"2754466714\",\"indices\":[232,244]}],\"urls\":[],\"media\":[{\"id\":1553394413749035009,\"id_str\":\"1553394413749035009\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY7D_TOWYAEtJs4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY7D_TOWYAEtJs4.jpg\",\"url\":\"https:\\/\\/t.co\\/eLdzCV4Hww\",\"display_url\":\"pic.twitter.com\\/eLdzCV4Hww\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1553394444744925184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1062,\"h\":1062,\"resize\":\"fit\"},\"medium\":{\"w\":1062,\"h\":1062,\"resize\":\"fit\"}}}]},\"2551\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"asuo6565\",\"name\":\"Asuo Gyebi\",\"id\":2969340039,\"id_str\":\"2969340039\",\"indices\":[230,239]}],\"urls\":[]},\"2552\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChadPergram\",\"name\":\"Chad Pergram\",\"id\":16187637,\"id_str\":\"16187637\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[13,27]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[103,126]}]},\"2553\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChadPergram\",\"name\":\"Chad Pergram\",\"id\":16187637,\"id_str\":\"16187637\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[13,27]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[103,126]}]},\"2554\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"Abuja\",\"indices\":[250,256]},{\"text\":\"MUNATM\",\"indices\":[257,264]},{\"text\":\"LordJesus\",\"indices\":[265,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Baruch4ever\",\"name\":\"Olusegun Abisoye\",\"id\":2754466714,\"id_str\":\"2754466714\",\"indices\":[215,227]},{\"screen_name\":\"iyaboawokoya\",\"name\":\"Madam President: Arinola Ifeoma Nnagi Awokoya @ 61\",\"id\":177113737,\"id_str\":\"177113737\",\"indices\":[228,241]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Xfy54gvxau\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1543242101579812865\",\"display_url\":\"twitter.com\\/popularhoney\\/s\\u2026\",\"indices\":[277,300]}]},\"2555\":{\"hashtags\":[{\"text\":\"Zinchenko\",\"indices\":[207,217]},{\"text\":\"LiverpoolFC\",\"indices\":[218,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"LordJesus\",\"indices\":[239,249]},{\"text\":\"Abuja\",\"indices\":[250,256]},{\"text\":\"MUNATM\",\"indices\":[257,264]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Baruch4ever\",\"name\":\"Olusegun Abisoye\",\"id\":2754466714,\"id_str\":\"2754466714\",\"indices\":[265,277]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rm1rTQ5Vwf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1504051837342781441\",\"display_url\":\"twitter.com\\/popularhoney\\/s\\u2026\",\"indices\":[278,301]}]},\"2556\":{\"hashtags\":[{\"text\":\"SurvivorExtincion\",\"indices\":[56,74]},{\"text\":\"BLACKPINKxPUBGM\",\"indices\":[75,91]},{\"text\":\"mirror\\u6f14\\u5531\\u6703\",\"indices\":[92,102]},{\"text\":\"XiJinping\",\"indices\":[103,113]},{\"text\":\"MYSYNK_aespa\",\"indices\":[114,127]},{\"text\":\"FriendshipDay\",\"indices\":[128,142]},{\"text\":\"JackBam\",\"indices\":[143,151]},{\"text\":\"Neighbours\",\"indices\":[152,163]},{\"text\":\"aespa\",\"indices\":[164,170]},{\"text\":\"dreampremiere\",\"indices\":[171,185]},{\"text\":\"HOBIPALOOZA\",\"indices\":[186,198]},{\"text\":\"RIPLisa\",\"indices\":[199,207]},{\"text\":\"Arsenal\",\"indices\":[208,216]},{\"text\":\"Fiverr\",\"indices\":[217,224]},{\"text\":\"Store\",\"indices\":[225,231]},{\"text\":\"CustomizedShopify\",\"indices\":[232,250]},{\"text\":\"Customized\",\"indices\":[251,262]},{\"text\":\"RankingVale\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X9lkB1cLhr\",\"expanded_url\":\"https:\\/\\/soefashion.com\",\"display_url\":\"soefashion.com\",\"indices\":[32,55]}]},\"2557\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"US\",\"indices\":[141,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"economy\",\"indices\":[153,161]},{\"text\":\"SupplyChain\",\"indices\":[162,174]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553314939141591043,\"id_str\":\"1553314939141591043\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY57tRPXkAMz3xF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY57tRPXkAMz3xF.jpg\",\"url\":\"https:\\/\\/t.co\\/zvkRs9y0oY\",\"display_url\":\"pic.twitter.com\\/zvkRs9y0oY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1553315791545712640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"2558\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thejcoop\",\"name\":\"John Cooper\",\"id\":818568920684756992,\"id_str\":\"818568920684756992\",\"indices\":[0,9]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[10,24]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[99,122]}]},\"2559\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MOFA_Taiwan\",\"name\":\"\\u5916\\u4ea4\\u90e8 Ministry of Foreign Affairs, ROC (Taiwan) \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":976995099170062338,\"id_str\":\"976995099170062338\",\"indices\":[0,12]},{\"screen_name\":\"freedomhouse\",\"name\":\"Freedom House\",\"id\":18270066,\"id_str\":\"18270066\",\"indices\":[13,26]},{\"screen_name\":\"abramowitz\",\"name\":\"Mike Abramowitz\",\"id\":15988876,\"id_str\":\"15988876\",\"indices\":[27,38]},{\"screen_name\":\"UroojSArshad\",\"name\":\"Urooj Arshad\",\"id\":388629477,\"id_str\":\"388629477\",\"indices\":[39,52]},{\"screen_name\":\"Sarah_G_Cook\",\"name\":\"Sarah Cook\",\"id\":3659148448,\"id_str\":\"3659148448\",\"indices\":[53,66]},{\"screen_name\":\"__datt\",\"name\":\"Angeli Datt\",\"id\":2238051828,\"id_str\":\"2238051828\",\"indices\":[67,74]},{\"screen_name\":\"Cathryn_Grothe\",\"name\":\"Cathryn Grothe\",\"id\":4236757695,\"id_str\":\"4236757695\",\"indices\":[75,90]},{\"screen_name\":\"VJurkonis\",\"name\":\"Vytis Jurkonis\",\"id\":2443680896,\"id_str\":\"2443680896\",\"indices\":[91,101]},{\"screen_name\":\"farishtasakhi\",\"name\":\"Farishta Sakhi\",\"id\":3198573939,\"id_str\":\"3198573939\",\"indices\":[102,116]},{\"screen_name\":\"Laraky29\",\"name\":\"Lara Shane\",\"id\":2427519444,\"id_str\":\"2427519444\",\"indices\":[117,126]},{\"screen_name\":\"amy_slip\",\"name\":\"Amy Slipowitz\",\"id\":2520500479,\"id_str\":\"2520500479\",\"indices\":[127,136]},{\"screen_name\":\"TECRO_USA\",\"name\":\"Taiwan in the US\",\"id\":1449728766,\"id_str\":\"1449728766\",\"indices\":[137,147]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[148,162]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[237,260]}]},\"2560\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[167,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MOFA_Taiwan\",\"name\":\"\\u5916\\u4ea4\\u90e8 Ministry of Foreign Affairs, ROC (Taiwan) \\ud83c\\uddf9\\ud83c\\uddfc\",\"id\":976995099170062338,\"id_str\":\"976995099170062338\",\"indices\":[0,12]},{\"screen_name\":\"freedomhouse\",\"name\":\"Freedom House\",\"id\":18270066,\"id_str\":\"18270066\",\"indices\":[13,26]},{\"screen_name\":\"abramowitz\",\"name\":\"Mike Abramowitz\",\"id\":15988876,\"id_str\":\"15988876\",\"indices\":[27,38]},{\"screen_name\":\"UroojSArshad\",\"name\":\"Urooj Arshad\",\"id\":388629477,\"id_str\":\"388629477\",\"indices\":[39,52]},{\"screen_name\":\"Sarah_G_Cook\",\"name\":\"Sarah Cook\",\"id\":3659148448,\"id_str\":\"3659148448\",\"indices\":[53,66]},{\"screen_name\":\"__datt\",\"name\":\"Angeli Datt\",\"id\":2238051828,\"id_str\":\"2238051828\",\"indices\":[67,74]},{\"screen_name\":\"Cathryn_Grothe\",\"name\":\"Cathryn Grothe\",\"id\":4236757695,\"id_str\":\"4236757695\",\"indices\":[75,90]},{\"screen_name\":\"VJurkonis\",\"name\":\"Vytis Jurkonis\",\"id\":2443680896,\"id_str\":\"2443680896\",\"indices\":[91,101]},{\"screen_name\":\"farishtasakhi\",\"name\":\"Farishta Sakhi\",\"id\":3198573939,\"id_str\":\"3198573939\",\"indices\":[102,116]},{\"screen_name\":\"Laraky29\",\"name\":\"Lara Shane\",\"id\":2427519444,\"id_str\":\"2427519444\",\"indices\":[117,126]},{\"screen_name\":\"amy_slip\",\"name\":\"Amy Slipowitz\",\"id\":2520500479,\"id_str\":\"2520500479\",\"indices\":[127,136]},{\"screen_name\":\"TECRO_USA\",\"name\":\"Taiwan in the US\",\"id\":1449728766,\"id_str\":\"1449728766\",\"indices\":[137,147]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[221,244]}]},\"2561\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Taiwan\",\"indices\":[69,76]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553184237146124288,\"id_str\":\"1553184237146124288\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"url\":\"https:\\/\\/t.co\\/qqDRk2W4n0\",\"display_url\":\"pic.twitter.com\\/qqDRk2W4n0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553184238345736192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"2562\":{\"hashtags\":[{\"text\":\"Biden\",\"indices\":[5,11]},{\"text\":\"US\",\"indices\":[17,20]},{\"text\":\"China\",\"indices\":[51,57]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"WW3\",\"indices\":[79,83]},{\"text\":\"XiJinping\",\"indices\":[86,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qPtZP8eQAa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/russian_market\\/status\\/1553099298748993540\",\"display_url\":\"twitter.com\\/russian_market\\u2026\",\"indices\":[97,120]}]},\"2563\":{\"hashtags\":[{\"text\":\"WWlll\",\"indices\":[59,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2564\":{\"hashtags\":[{\"text\":\"wordpress\",\"indices\":[160,170]},{\"text\":\"Shakira\",\"indices\":[171,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"Kentucky\",\"indices\":[188,197]},{\"text\":\"Ohtani\",\"indices\":[198,205]},{\"text\":\"ChurchGirl\",\"indices\":[206,217]},{\"text\":\"Wikipedia\",\"indices\":[218,228]},{\"text\":\"AlienSuperstar\",\"indices\":[229,244]},{\"text\":\"BreakMySoul\",\"indices\":[245,257]},{\"text\":\"Vets\",\"indices\":[258,263]},{\"text\":\"WillSmith\",\"indices\":[264,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rEJBAcxvEj\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Q2gJjM\",\"display_url\":\"bit.ly\\/3Q2gJjM\",\"indices\":[136,159]}],\"media\":[{\"id\":1553113859979988997,\"id_str\":\"1553113859979988997\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY3E06_X0AUEruj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY3E06_X0AUEruj.jpg\",\"url\":\"https:\\/\\/t.co\\/kHCgFSgq6e\",\"display_url\":\"pic.twitter.com\\/kHCgFSgq6e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1553113913146875904\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":896,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":476,\"resize\":\"fit\"}}}]},\"2565\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MintPressNews\",\"name\":\"MintPress News\",\"id\":414962189,\"id_str\":\"414962189\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[88,111]}]},\"2566\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[82,105]}]},\"2567\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[30,37]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AnonOpsSE\",\"name\":\"Anonymous Operations\",\"id\":1009546724,\"id_str\":\"1009546724\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[84,107]}]},\"2568\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"idreesali114\",\"name\":\"Idrees Ali\",\"id\":268636316,\"id_str\":\"268636316\",\"indices\":[0,13]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[87,110]}]},\"2569\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BaldingsWorld\",\"name\":\"Davos Bro Balding \\u5927\\u8001\\u677f\",\"id\":603344194,\"id_str\":\"603344194\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[88,111]}]},\"2570\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[30,37]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lemondefr\",\"name\":\"Le Monde\",\"id\":24744541,\"id_str\":\"24744541\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[84,107]}]},\"2571\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mrbcyber\",\"name\":\"Michael Ron Bowling\",\"id\":3224540611,\"id_str\":\"3224540611\",\"indices\":[0,9]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[83,106]}]},\"2572\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WSJ\",\"name\":\"The Wall Street Journal\",\"id\":3108351,\"id_str\":\"3108351\",\"indices\":[0,4]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JaJMGmgivl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376?s=19\",\"display_url\":\"twitter.com\\/EasierYeah\\/sta\\u2026\",\"indices\":[78,101]}]},\"2573\":{\"hashtags\":[{\"text\":\"thomaspartey\",\"indices\":[30,43]},{\"text\":\"RENAISSANCE\",\"indices\":[115,127]},{\"text\":\"XiJinping\",\"indices\":[188,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c9GjedPLcS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1553008488237916161\\/photo\\/1\",\"display_url\":\"pic.twitter.com\\/c9GjedPLcS\",\"indices\":[231,254]}],\"media\":[{\"id\":1553009334652739584,\"id_str\":\"1553009334652739584\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1lwvzXoAALAJR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1lwvzXoAALAJR.jpg\",\"url\":\"https:\\/\\/t.co\\/RuHMuaDOeK\",\"display_url\":\"pic.twitter.com\\/RuHMuaDOeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1553009343188058115\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":794,\"h\":850,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":635,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":850,\"resize\":\"fit\"}}}]},\"2574\":{\"hashtags\":[{\"text\":\"thomaspartey\",\"indices\":[59,72]},{\"text\":\"RENAISSANCE\",\"indices\":[144,156]},{\"text\":\"XiJinping\",\"indices\":[217,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553009091760513024,\"id_str\":\"1553009091760513024\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1lim9WYAAuc1l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1lim9WYAAuc1l.jpg\",\"url\":\"https:\\/\\/t.co\\/w2c3tuo4Jz\",\"display_url\":\"pic.twitter.com\\/w2c3tuo4Jz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1553009094386241536\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":572,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":909,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":909,\"h\":1080,\"resize\":\"fit\"}}}]},\"2575\":{\"hashtags\":[{\"text\":\"Bandits\",\"indices\":[129,137]},{\"text\":\"DestinyEtiko\",\"indices\":[138,151]},{\"text\":\"Abuja\",\"indices\":[152,158]},{\"text\":\"2baba\",\"indices\":[159,165]},{\"text\":\"thomaspartey\",\"indices\":[166,179]},{\"text\":\"LaiMohammed\",\"indices\":[180,192]},{\"text\":\"Emefiele\",\"indices\":[193,202]},{\"text\":\"goodluckJonathan\",\"indices\":[203,220]},{\"text\":\"Brighton\",\"indices\":[221,230]},{\"text\":\"Gistlover\",\"indices\":[231,241]},{\"text\":\"Aisha\",\"indices\":[242,248]},{\"text\":\"Machala\",\"indices\":[249,257]},{\"text\":\"Taiwan\",\"indices\":[258,265]},{\"text\":\"Dollars\",\"indices\":[266,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1552978148416970753,\"id_str\":\"1552978148416970753\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"}}}]},\"2576\":{\"hashtags\":[{\"text\":\"princewilliamaffair\",\"indices\":[192,212]},{\"text\":\"AIDS2022\",\"indices\":[221,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1552976379918139393,\"id_str\":\"1552976379918139393\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1Hyh2XwAEOIWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1Hyh2XwAEOIWd.jpg\",\"url\":\"https:\\/\\/t.co\\/dZrW3o1Vym\",\"display_url\":\"pic.twitter.com\\/dZrW3o1Vym\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1552976481231544323\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":651,\"h\":816,\"resize\":\"fit\"},\"small\":{\"w\":543,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":651,\"h\":816,\"resize\":\"fit\"}}}]},\"2577\":{\"hashtags\":[{\"text\":\"TaiwanIsaCountry\",\"indices\":[75,92]},{\"text\":\"JoeBiden\",\"indices\":[93,102]},{\"text\":\"XiJinping\",\"indices\":[103,113]},{\"text\":\"China\",\"indices\":[114,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NF0hN85TjF\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\\/chinas-xi-jinping-warns-joe-biden-against-playing-with-fire-over-taiwan\\/\",\"display_url\":\"onlinepikin.com\\/chinas-xi-jinp\\u2026\",\"indices\":[122,145]}]},\"2578\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Wg38dmx59g\",\"expanded_url\":\"http:\\/\\/veewhoje.com\\/Mef\",\"display_url\":\"veewhoje.com\\/Mef\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/5k8oyXFBfc\",\"expanded_url\":\"https:\\/\\/bold-by-uze-world-s-most.kckb.st\\/2fc4cd4e\",\"display_url\":\"bold-by-uze-world-s-most.kckb.st\\/2fc4cd4e\",\"indices\":[254,277]}]},\"2579\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JL5NTwjO9Q\",\"expanded_url\":\"http:\\/\\/veewhoje.com\\/May\",\"display_url\":\"veewhoje.com\\/May\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/1JfhaC3m4p\",\"expanded_url\":\"https:\\/\\/delione-flex-n-fresh-container.kckb.st\\/ce39c7f2\",\"display_url\":\"delione-flex-n-fresh-container.kckb.st\\/ce39c7f2\",\"indices\":[254,277]}]},\"2580\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yOIbTBWlUR\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xUG\",\"display_url\":\"stoodsef.com\\/4xUG\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/4mQxYUCd01\",\"expanded_url\":\"https:\\/\\/supermini-go-versatile-stylish.kckb.st\\/6608bab6\",\"display_url\":\"supermini-go-versatile-stylish.kckb.st\\/6608bab6\",\"indices\":[254,277]}]},\"2581\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OzcFBetOQn\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xTl\",\"display_url\":\"stoodsef.com\\/4xTl\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/fnkmVhzZqx\",\"expanded_url\":\"https:\\/\\/sovrygn-calendarsophistication.kckb.st\\/b108b73e\",\"display_url\":\"sovrygn-calendarsophistication.kckb.st\\/b108b73e\",\"indices\":[254,277]}]},\"2582\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tJSzGaoMDj\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xTR\",\"display_url\":\"stoodsef.com\\/4xTR\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/y4l7em895R\",\"expanded_url\":\"https:\\/\\/sonic-soak-1.kckb.st\\/3a568fba\",\"display_url\":\"sonic-soak-1.kckb.st\\/3a568fba\",\"indices\":[254,277]}]},\"2583\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/A1Fil5E7m2\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xSS\",\"display_url\":\"stoodsef.com\\/4xSS\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/2UIJIeqWfM\",\"expanded_url\":\"https:\\/\\/salt-stone-naturally-cleanse.kckb.st\\/56fb4074\",\"display_url\":\"salt-stone-naturally-cleanse.kckb.st\\/56fb4074\",\"indices\":[254,277]}]},\"2584\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LtgwQOozZK\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xS6\",\"display_url\":\"stoodsef.com\\/4xS6\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/Dd8qT43ULM\",\"expanded_url\":\"https:\\/\\/prone-cushion-an-ergonomic.kckb.st\\/c36e68c9\",\"display_url\":\"prone-cushion-an-ergonomic.kckb.st\\/c36e68c9\",\"indices\":[254,277]}]},\"2585\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Q2wSBIt56e\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xRe\",\"display_url\":\"stoodsef.com\\/4xRe\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/vf3p0B8dO7\",\"expanded_url\":\"https:\\/\\/popupiano-smart-portable-piano.kckb.st\\/2b2a32ef\",\"display_url\":\"popupiano-smart-portable-piano.kckb.st\\/2b2a32ef\",\"indices\":[254,277]}]},\"2586\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tEC874Q2LZ\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xRH\",\"display_url\":\"stoodsef.com\\/4xRH\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/UkTzI6zMDG\",\"expanded_url\":\"https:\\/\\/pix-nii-most-powerful-mini-pc.kckb.st\\/e9a95685\",\"display_url\":\"pix-nii-most-powerful-mini-pc.kckb.st\\/e9a95685\",\"indices\":[254,277]}]},\"2587\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jeH3XPP7Ah\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xQr\",\"display_url\":\"stoodsef.com\\/4xQr\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/v1mvmJgSEY\",\"expanded_url\":\"https:\\/\\/oyo-total-body-massager.kckb.st\\/80e1b0d7\",\"display_url\":\"oyo-total-body-massager.kckb.st\\/80e1b0d7\",\"indices\":[254,277]}]},\"2588\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4DtWXpAO2r\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xQJ\",\"display_url\":\"stoodsef.com\\/4xQJ\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/ou1Y0Rhl1G\",\"expanded_url\":\"https:\\/\\/meca-3-in-1-webcam-eye-contact.kckb.st\\/b4f8db36\",\"display_url\":\"meca-3-in-1-webcam-eye-contact.kckb.st\\/b4f8db36\",\"indices\":[254,277]}]},\"2589\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mdfATzagTq\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xPr\",\"display_url\":\"stoodsef.com\\/4xPr\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/p5AfWyA07m\",\"expanded_url\":\"https:\\/\\/lucislightpatch.kckb.st\\/6d6ad702\",\"display_url\":\"lucislightpatch.kckb.st\\/6d6ad702\",\"indices\":[254,277]}]},\"2590\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/L0LyfRtSXD\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xPB\",\"display_url\":\"stoodsef.com\\/4xPB\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/8d1LzjIe0t\",\"expanded_url\":\"https:\\/\\/loom-footwear.kckb.st\\/8189e524\",\"display_url\":\"loom-footwear.kckb.st\\/8189e524\",\"indices\":[254,277]}]},\"2591\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gIiKlSnZaQ\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xOd\",\"display_url\":\"stoodsef.com\\/4xOd\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/3KcUT8Zrkp\",\"expanded_url\":\"https:\\/\\/kara-pure-make-pure-water-from.kckb.st\\/14b1fcdf\",\"display_url\":\"kara-pure-make-pure-water-from.kckb.st\\/14b1fcdf\",\"indices\":[254,277]}]},\"2592\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fm3WP2HEEo\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xO3\",\"display_url\":\"stoodsef.com\\/4xO3\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/457ZAOlQ9M\",\"expanded_url\":\"https:\\/\\/kanga-coolers.kckb.st\\/cba3b783\",\"display_url\":\"kanga-coolers.kckb.st\\/cba3b783\",\"indices\":[254,277]}]},\"2593\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MnpWhRWMH3\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xNX\",\"display_url\":\"stoodsef.com\\/4xNX\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/PZRtUYvLqP\",\"expanded_url\":\"https:\\/\\/floately.kckb.st\\/588588df\",\"display_url\":\"floately.kckb.st\\/588588df\",\"indices\":[254,277]}]},\"2594\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hiIRb4Vn6j\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4xN1\",\"display_url\":\"stoodsef.com\\/4xN1\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/5k8oyXFBfc\",\"expanded_url\":\"https:\\/\\/bold-by-uze-world-s-most.kckb.st\\/2fc4cd4e\",\"display_url\":\"bold-by-uze-world-s-most.kckb.st\\/2fc4cd4e\",\"indices\":[254,277]}]},\"2595\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kW37tx5D81\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4wNT\",\"display_url\":\"stoodsef.com\\/4wNT\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/FLWsySXfmF\",\"expanded_url\":\"https:\\/\\/boat-gadgetkickboosterme.kckb.st\\/c5cfa1ea\",\"display_url\":\"boat-gadgetkickboosterme.kckb.st\\/c5cfa1ea\",\"indices\":[254,277]}]},\"2596\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gpCyiGfxgB\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4uV1\",\"display_url\":\"stoodsef.com\\/4uV1\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/TeAM7KIOLa\",\"expanded_url\":\"https:\\/\\/arpara-world-s-first-5k-micro.kckb.st\\/446a5072\",\"display_url\":\"arpara-world-s-first-5k-micro.kckb.st\\/446a5072\",\"indices\":[254,277]}]},\"2597\":{\"hashtags\":[{\"text\":\"kickbooster\",\"indices\":[67,79]},{\"text\":\"discordteen\",\"indices\":[81,93]},{\"text\":\"discordnsfw\",\"indices\":[94,106]},{\"text\":\"onlyfansleaks\",\"indices\":[107,121]},{\"text\":\"onlyfansdiscord\",\"indices\":[122,138]},{\"text\":\"GetWellSoonAPO\",\"indices\":[139,154]},{\"text\":\"Biden\",\"indices\":[155,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Jinan\",\"indices\":[170,176]},{\"text\":\"XiJinping\",\"indices\":[177,187]},{\"text\":\"mobilegames\",\"indices\":[188,200]},{\"text\":\"mobilegames\",\"indices\":[201,213]},{\"text\":\"apocolleagues\",\"indices\":[214,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KickBooster\",\"name\":\"Kickbooster\",\"id\":3308850773,\"id_str\":\"3308850773\",\"indices\":[54,66]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hC40JReWJO\",\"expanded_url\":\"http:\\/\\/stoodsef.com\\/4uQn\",\"display_url\":\"stoodsef.com\\/4uQn\",\"indices\":[230,253]},{\"url\":\"https:\\/\\/t.co\\/EeA3wNoQTD\",\"expanded_url\":\"https:\\/\\/aluminate-the-ultimate.kckb.st\\/c105ae8c\",\"display_url\":\"aluminate-the-ultimate.kckb.st\\/c105ae8c\",\"indices\":[254,277]}]},\"2598\":{\"hashtags\":[{\"text\":\"Palestine\",\"indices\":[99,109]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[110,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Bvv9Web7CF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/darkdarkair\\/status\\/1556281287421431808\",\"display_url\":\"twitter.com\\/darkdarkair\\/st\\u2026\",\"indices\":[129,152]}]},\"2599\":{\"hashtags\":[{\"text\":\"America\",\"indices\":[10,18]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Africa\",\"indices\":[125,132]},{\"text\":\"watching\",\"indices\":[141,150]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZelenskyyUa\",\"name\":\"\\u0412\\u043e\\u043b\\u043e\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0417\\u0435\\u043b\\u0435\\u043d\\u0441\\u044c\\u043a\\u0438\\u0439\",\"id\":1120633726478823425,\"id_str\":\"1120633726478823425\",\"indices\":[23,35]},{\"screen_name\":\"Ukraine\",\"name\":\"Ukraine \\/ \\u0423\\u043a\\u0440\\u0430\\u0457\\u043d\\u0430\",\"id\":732521058507620356,\"id_str\":\"732521058507620356\",\"indices\":[65,73]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Luu4F1ewcS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ForeignPolicy\\/status\\/1556037525214461962\",\"display_url\":\"twitter.com\\/ForeignPolicy\\/\\u2026\",\"indices\":[153,176]}]},\"2600\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[30,37]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LumIrja2YA\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/watch?v=YDw-aqbwiMg&t=2s\",\"display_url\":\"youtube.com\\/watch?v=YDw-aq\\u2026\",\"indices\":[73,96]}]},\"2601\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[108,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556169515268014082,\"id_str\":\"1556169515268014082\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZif7d_XgAIuDi5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZif7d_XgAIuDi5.jpg\",\"url\":\"https:\\/\\/t.co\\/WSTph7LJpi\",\"display_url\":\"pic.twitter.com\\/WSTph7LJpi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1556169524197703680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":2000,\"resize\":\"fit\"}}}]},\"2602\":{\"hashtags\":[{\"text\":\"Alians\",\"indices\":[10,17]},{\"text\":\"bots\",\"indices\":[31,36]},{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"stillanunpaidfreelancer\",\"indices\":[154,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"elonmusk\",\"name\":\"Elon Musk\",\"id\":44196397,\"id_str\":\"44196397\",\"indices\":[0,9]},{\"screen_name\":\"Twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[22,30]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vtOoVgRUq6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tedcoine\\/status\\/1555895786508107777\",\"display_url\":\"twitter.com\\/tedcoine\\/statu\\u2026\",\"indices\":[179,202]}],\"media\":[{\"id\":1555898429829685254,\"id_str\":\"1555898429829685254\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZepYOCWIAYX1GM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZepYOCWIAYX1GM.jpg\",\"url\":\"https:\\/\\/t.co\\/cYPEk2xZX5\",\"display_url\":\"pic.twitter.com\\/cYPEk2xZX5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kobus_Bekker7\\/status\\/1555898441544392704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":498,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":352,\"resize\":\"fit\"}}}]},\"2603\":{\"hashtags\":[{\"text\":\"invitation\",\"indices\":[29,40]},{\"text\":\"China\",\"indices\":[54,60]},{\"text\":\"Putin\",\"indices\":[72,78]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"condemns\",\"indices\":[124,133]},{\"text\":\"Russian\",\"indices\":[161,169]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZelenskyyUa\",\"name\":\"\\u0412\\u043e\\u043b\\u043e\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0417\\u0435\\u043b\\u0435\\u043d\\u0441\\u044c\\u043a\\u0438\\u0439\",\"id\":1120633726478823425,\"id_str\":\"1120633726478823425\",\"indices\":[0,12]},{\"screen_name\":\"ZelenskyyUa\",\"name\":\"\\u0412\\u043e\\u043b\\u043e\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0417\\u0435\\u043b\\u0435\\u043d\\u0441\\u044c\\u043a\\u0438\\u0439\",\"id\":1120633726478823425,\"id_str\":\"1120633726478823425\",\"indices\":[100,112]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6hyv1Wvh3H\",\"expanded_url\":\"https:\\/\\/www.businesslive.co.za\\/bd\\/national\\/2022-08-04-zelensky-condemns-sas-neutral-stance-on-the-russian-invasion\\/\",\"display_url\":\"businesslive.co.za\\/bd\\/national\\/20\\u2026\",\"indices\":[179,202]}]},\"2604\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[17,24]},{\"text\":\"Pelosi\",\"indices\":[202,209]},{\"text\":\"Washington\",\"indices\":[210,221]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[223,240]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LivePretoria\",\"name\":\"PretoriaLIVE\",\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"indices\":[242,255]}],\"urls\":[],\"media\":[{\"id\":1555857589346377730,\"id_str\":\"1555857589346377730\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeEO_YWIAIwbsC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeEO_YWIAIwbsC.jpg\",\"url\":\"https:\\/\\/t.co\\/zIKDqhyU60\",\"display_url\":\"pic.twitter.com\\/zIKDqhyU60\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1555857595021377536\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":567,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1707,\"h\":2048,\"resize\":\"fit\"}}}]},\"2605\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[244,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555837991528054784,\"id_str\":\"1555837991528054784\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555837991528054784\\/pu\\/img\\/U98QwYqp-Px7nOiM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555837991528054784\\/pu\\/img\\/U98QwYqp-Px7nOiM.jpg\",\"url\":\"https:\\/\\/t.co\\/czzchnXkNt\",\"display_url\":\"pic.twitter.com\\/czzchnXkNt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555838191055290370\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":425,\"resize\":\"fit\"},\"medium\":{\"w\":1152,\"h\":720,\"resize\":\"fit\"}}}]},\"2606\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555830729749192706,\"id_str\":\"1555830729749192706\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdrzjlWYAIOhZZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdrzjlWYAIOhZZ.jpg\",\"url\":\"https:\\/\\/t.co\\/8xbEfOYHO5\",\"display_url\":\"pic.twitter.com\\/8xbEfOYHO5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555830737336688642\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":400,\"resize\":\"fit\"}}}]},\"2607\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555830642952310784,\"id_str\":\"1555830642952310784\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdrugPXEAACHSm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdrugPXEAACHSm.jpg\",\"url\":\"https:\\/\\/t.co\\/gEWWvEvonB\",\"display_url\":\"pic.twitter.com\\/gEWWvEvonB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555830656126550017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1707,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":567,\"h\":680,\"resize\":\"fit\"}}}]},\"2608\":{\"hashtags\":[{\"text\":\"OneChina\",\"indices\":[172,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555830502266998784,\"id_str\":\"1555830502266998784\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555830502266998784\\/pu\\/img\\/0pVqpHYSgB6TK03T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555830502266998784\\/pu\\/img\\/0pVqpHYSgB6TK03T.jpg\",\"url\":\"https:\\/\\/t.co\\/IB14KjYfaL\",\"display_url\":\"pic.twitter.com\\/IB14KjYfaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555830595237855234\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}}}]},\"2609\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[38,56]},{\"text\":\"ZimbabweCrisis\",\"indices\":[89,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2610\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[0,7]},{\"text\":\"china\",\"indices\":[75,81]},{\"text\":\"taiwon\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555788744434876416,\"id_str\":\"1555788744434876416\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdFnsGXgAAhgXR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdFnsGXgAAhgXR.jpg\",\"url\":\"https:\\/\\/t.co\\/jRSrglqfoE\",\"display_url\":\"pic.twitter.com\\/jRSrglqfoE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/crisis2peace_\\/status\\/1555788768275202048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2016,\"h\":1512,\"resize\":\"fit\"}}}]},\"2611\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[175,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"Hawaii\",\"indices\":[190,197]},{\"text\":\"USA\",\"indices\":[198,202]},{\"text\":\"blind\",\"indices\":[203,209]},{\"text\":\"Warmongers\",\"indices\":[210,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2612\":{\"hashtags\":[{\"text\":\"only\",\"indices\":[47,52]},{\"text\":\"ChinaTaiwan\",\"indices\":[73,85]},{\"text\":\"improve\",\"indices\":[102,110]},{\"text\":\"brain\",\"indices\":[116,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZelenskyyUa\",\"name\":\"\\u0412\\u043e\\u043b\\u043e\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0417\\u0435\\u043b\\u0435\\u043d\\u0441\\u044c\\u043a\\u0438\\u0439\",\"id\":1120633726478823425,\"id_str\":\"1120633726478823425\",\"indices\":[0,12]},{\"screen_name\":\"uganda_kim\",\"name\":\"Kim Coffee Roasters Uganda\",\"id\":1385153969446694913,\"id_str\":\"1385153969446694913\",\"indices\":[57,68]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/084VDZl87p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoanKatusiime4\\/status\\/1555576736213094401\",\"display_url\":\"twitter.com\\/JoanKatusiime4\\u2026\",\"indices\":[175,198]}]},\"2613\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[235,242]},{\"text\":\"China\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZelenskyyUa\",\"name\":\"\\u0412\\u043e\\u043b\\u043e\\u0434\\u0438\\u043c\\u0438\\u0440 \\u0417\\u0435\\u043b\\u0435\\u043d\\u0441\\u044c\\u043a\\u0438\\u0439\",\"id\":1120633726478823425,\"id_str\":\"1120633726478823425\",\"indices\":[57,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wuSVuEffs7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBCWorld\\/status\\/1555554738774614019\",\"display_url\":\"twitter.com\\/BBCWorld\\/statu\\u2026\",\"indices\":[254,277]}],\"media\":[{\"id\":1555627581176676352,\"id_str\":\"1555627581176676352\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZazCwLWAAA-L-h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZazCwLWAAA-L-h.jpg\",\"url\":\"https:\\/\\/t.co\\/bjhJZwWfes\",\"display_url\":\"pic.twitter.com\\/bjhJZwWfes\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kobus_Bekker7\\/status\\/1555627593084411906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}}}]},\"2614\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[8,14]},{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"Russia\",\"indices\":[62,69]},{\"text\":\"China\",\"indices\":[109,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/R2Mri4Uydf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TelegraphWorld\\/status\\/1555266505205497860\",\"display_url\":\"twitter.com\\/TelegraphWorld\\u2026\",\"indices\":[129,152]}]},\"2615\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[194,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555448075862286336,\"id_str\":\"1555448075862286336\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555448075862286336\\/pu\\/img\\/tuc5RhIDThCLOdwl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555448075862286336\\/pu\\/img\\/tuc5RhIDThCLOdwl.jpg\",\"url\":\"https:\\/\\/t.co\\/xl78BOWsKL\",\"display_url\":\"pic.twitter.com\\/xl78BOWsKL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555448195425206272\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"2616\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555447674102489088,\"id_str\":\"1555447674102489088\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYPayGWIAAHT4Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYPayGWIAAHT4Q.jpg\",\"url\":\"https:\\/\\/t.co\\/HYKMtVLfda\",\"display_url\":\"pic.twitter.com\\/HYKMtVLfda\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555447751944577029\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":459,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1382,\"resize\":\"fit\"}}}]},\"2617\":{\"hashtags\":[{\"text\":\"Latest\",\"indices\":[0,7]},{\"text\":\"Pelosi\",\"indices\":[95,102]},{\"text\":\"OneChinaPrinciple\",\"indices\":[148,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555421269394350081,\"id_str\":\"1555421269394350081\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX3Z05WYAExdMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX3Z05WYAExdMh.jpg\",\"url\":\"https:\\/\\/t.co\\/B62HXsnVZv\",\"display_url\":\"pic.twitter.com\\/B62HXsnVZv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CTemazburg\\/status\\/1555421307927511042\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":300,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":300,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":300,\"resize\":\"fit\"}}}]},\"2618\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"iphone14\",\"indices\":[42,51]},{\"text\":\"PuleMabe\",\"indices\":[52,61]},{\"text\":\"KagisoShutDown\",\"indices\":[62,77]},{\"text\":\"Esona\",\"indices\":[78,84]},{\"text\":\"capitec\",\"indices\":[86,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555409847780347904,\"id_str\":\"1555409847780347904\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555409847780347904\\/pu\\/img\\/3fcnaJ-X5zpKO5Tm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555409847780347904\\/pu\\/img\\/3fcnaJ-X5zpKO5Tm.jpg\",\"url\":\"https:\\/\\/t.co\\/QM5vuZyGXl\",\"display_url\":\"pic.twitter.com\\/QM5vuZyGXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nhlanhlanndlovu\\/status\\/1555410043557871621\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"2619\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"USHouseSpeaker\",\"indices\":[21,36]},{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cartoonmovement\",\"name\":\"The Cartoon Movement\",\"id\":194042592,\"id_str\":\"194042592\",\"indices\":[62,78]},{\"screen_name\":\"Ramireztoons\",\"name\":\"Michael Ramirez\",\"id\":3042305678,\"id_str\":\"3042305678\",\"indices\":[79,92]},{\"screen_name\":\"The_BigConvo\",\"name\":\"The BIG Conversation\",\"id\":1269922510499450882,\"id_str\":\"1269922510499450882\",\"indices\":[93,106]}],\"urls\":[],\"media\":[{\"id\":1555333788439281670,\"id_str\":\"1555333788439281670\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWn1w8WAAYqwoa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWn1w8WAAYqwoa.jpg\",\"url\":\"https:\\/\\/t.co\\/iI3MnxyQ1V\",\"display_url\":\"pic.twitter.com\\/iI3MnxyQ1V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bchiketo\\/status\\/1555333799654866944\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}}]},\"2620\":{\"hashtags\":[{\"text\":\"KagisoShutDown\",\"indices\":[93,108]},{\"text\":\"Krugersdorp\",\"indices\":[110,122]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"malema\",\"indices\":[133,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555299535102115842,\"id_str\":\"1555299535102115842\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWIr9UXgAIK22w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWIr9UXgAIK22w.jpg\",\"url\":\"https:\\/\\/t.co\\/lLoNNXkVEL\",\"display_url\":\"pic.twitter.com\\/lLoNNXkVEL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KatumpaSteel1\\/status\\/1555299616568246272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"2621\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[213,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"bitcoin\",\"indices\":[239,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NDclDpEGSS\",\"expanded_url\":\"https:\\/\\/ref.surveyj.co\\/RelebogileRN\",\"display_url\":\"ref.surveyj.co\\/RelebogileRN\",\"indices\":[189,212]}]},\"2622\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"capitec\",\"indices\":[72,80]},{\"text\":\"iphone14\",\"indices\":[82,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2623\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[0,12]},{\"text\":\"WWIII\",\"indices\":[113,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2624\":{\"hashtags\":[{\"text\":\"capitec\",\"indices\":[44,52]},{\"text\":\"timesupolivia\",\"indices\":[161,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"onstorm\",\"indices\":[184,192]},{\"text\":\"kagiso\",\"indices\":[193,200]},{\"text\":\"MilePhakphum\",\"indices\":[201,214]},{\"text\":\"forex\",\"indices\":[215,221]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ForexKts\",\"name\":\"KTS_FOREX\",\"id\":1141820262838616066,\"id_str\":\"1141820262838616066\",\"indices\":[64,73]}],\"urls\":[],\"media\":[{\"id\":1555239833659908096,\"id_str\":\"1555239833659908096\",\"indices\":[222,245],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555239833659908096\\/pu\\/img\\/iHuEGB6HNs8rEynH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555239833659908096\\/pu\\/img\\/iHuEGB6HNs8rEynH.jpg\",\"url\":\"https:\\/\\/t.co\\/unpqoELOuf\",\"display_url\":\"pic.twitter.com\\/unpqoELOuf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ThatoModiba_02\\/status\\/1555239970033524739\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2625\":{\"hashtags\":[{\"text\":\"Usang\",\"indices\":[112,118]},{\"text\":\"comingsoon\",\"indices\":[146,157]},{\"text\":\"podcastandchillwithmacg\",\"indices\":[158,182]},{\"text\":\"KagisoShutDown\",\"indices\":[184,199]},{\"text\":\"ASAPRocky\",\"indices\":[201,211]},{\"text\":\"Taiwan\",\"indices\":[213,220]},{\"text\":\"capitec\",\"indices\":[221,229]},{\"text\":\"timesupolivia\",\"indices\":[230,244]},{\"text\":\"BibleSumett\",\"indices\":[245,257]},{\"text\":\"PokemonPresents\",\"indices\":[258,274]},{\"text\":\"Somizi\",\"indices\":[275,282]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555238839257649155,\"id_str\":\"1555238839257649155\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238839257649155\\/pu\\/img\\/f2D9BtGwRPmQyU2c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238839257649155\\/pu\\/img\\/f2D9BtGwRPmQyU2c.jpg\",\"url\":\"https:\\/\\/t.co\\/sOr1VY7DOb\",\"display_url\":\"pic.twitter.com\\/sOr1VY7DOb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SkayMuzic\\/status\\/1555238891585773568\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":794,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":617,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":720,\"resize\":\"fit\"}}}]},\"2626\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"KagisoShutDown\",\"indices\":[178,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2I0Vjdt5Md\",\"expanded_url\":\"https:\\/\\/youtube.com\\/shorts\\/NJH8hBnlk54?feature=share\",\"display_url\":\"youtube.com\\/shorts\\/NJH8hBn\\u2026\",\"indices\":[118,141]}],\"media\":[{\"id\":1555230812253159425,\"id_str\":\"1555230812253159425\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230812253159425\\/pu\\/img\\/LMGU__JCoBi_lFfe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230812253159425\\/pu\\/img\\/LMGU__JCoBi_lFfe.jpg\",\"url\":\"https:\\/\\/t.co\\/FrBWxiCYBl\",\"display_url\":\"pic.twitter.com\\/FrBWxiCYBl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GeeHafe\\/status\\/1555230882155438080\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2627\":{\"hashtags\":[{\"text\":\"Africa\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[42,65]},{\"text\":\"capitec\",\"indices\":[66,74]},{\"text\":\"kagiso\",\"indices\":[75,82]},{\"text\":\"thursdayvibes\",\"indices\":[83,97]},{\"text\":\"NationalShutdown\",\"indices\":[98,115]},{\"text\":\"timesupolivia\",\"indices\":[116,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555229958536052738,\"id_str\":\"1555229958536052738\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVJaEaWQAIa3eS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVJaEaWQAIa3eS.jpg\",\"url\":\"https:\\/\\/t.co\\/7gHvSmthDm\",\"display_url\":\"pic.twitter.com\\/7gHvSmthDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Electriccars8\\/status\\/1555229965905526785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":553,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":728,\"h\":896,\"resize\":\"fit\"},\"large\":{\"w\":728,\"h\":896,\"resize\":\"fit\"}}}]},\"2628\":{\"hashtags\":[{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[105,134]},{\"text\":\"capitec\",\"indices\":[135,143]},{\"text\":\"PokemonPresents\",\"indices\":[144,160]},{\"text\":\"thursdayvibes\",\"indices\":[161,175]},{\"text\":\"sabinus\",\"indices\":[176,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iWNlYF47iW\",\"expanded_url\":\"https:\\/\\/songwhip.com\\/hlokwa-wa-afrika\\/somayah\",\"display_url\":\"songwhip.com\\/hlokwa-wa-afri\\u2026\",\"indices\":[80,103]}],\"media\":[{\"id\":1555222101933674497,\"id_str\":\"1555222101933674497\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVCQwSX0AEJj86.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVCQwSX0AEJj86.jpg\",\"url\":\"https:\\/\\/t.co\\/nCx9bBH47d\",\"display_url\":\"pic.twitter.com\\/nCx9bBH47d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HlokwaA\\/status\\/1555222113929334786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":567,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":1019,\"resize\":\"fit\"},\"medium\":{\"w\":850,\"h\":1019,\"resize\":\"fit\"}}}]},\"2629\":{\"hashtags\":[{\"text\":\"MohaleOTR\",\"indices\":[55,65]},{\"text\":\"Somizi\",\"indices\":[66,73]},{\"text\":\"Taiwan\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555221621279019008,\"id_str\":\"1555221621279019008\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221621279019008\\/pu\\/img\\/SrxeL7_3cWf3c1ha.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221621279019008\\/pu\\/img\\/SrxeL7_3cWf3c1ha.jpg\",\"url\":\"https:\\/\\/t.co\\/T6xsQZ0Gh8\",\"display_url\":\"pic.twitter.com\\/T6xsQZ0Gh8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BestWorldNews2\\/status\\/1555221785049808898\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"2630\":{\"hashtags\":[{\"text\":\"Somizi\",\"indices\":[33,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"MohaleOTR\",\"indices\":[49,59]},{\"text\":\"mohale\",\"indices\":[60,67]},{\"text\":\"idolsSA\",\"indices\":[68,76]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555221128393768961,\"id_str\":\"1555221128393768961\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221128393768961\\/pu\\/img\\/oShBay7sTZzc5hyh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221128393768961\\/pu\\/img\\/oShBay7sTZzc5hyh.jpg\",\"url\":\"https:\\/\\/t.co\\/SQjOZ6uAFS\",\"display_url\":\"pic.twitter.com\\/SQjOZ6uAFS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WithPraisee\\/status\\/1555221222669033478\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"2631\":{\"hashtags\":[{\"text\":\"capitec\",\"indices\":[43,51]},{\"text\":\"Taiwan\",\"indices\":[53,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555220259396849672,\"id_str\":\"1555220259396849672\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220259396849672\\/pu\\/img\\/o-hx7Ilo_s2kJph1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220259396849672\\/pu\\/img\\/o-hx7Ilo_s2kJph1.jpg\",\"url\":\"https:\\/\\/t.co\\/WmLUxb331i\",\"display_url\":\"pic.twitter.com\\/WmLUxb331i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IssaVanh\\/status\\/1555220426757967875\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":784,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":784,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":624,\"resize\":\"fit\"}}}]},\"2632\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"China\",\"indices\":[125,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555214128205135872,\"id_str\":\"1555214128205135872\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU7An1WAAAxZG9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU7An1WAAAxZG9.jpg\",\"url\":\"https:\\/\\/t.co\\/A8kjlEBT6P\",\"display_url\":\"pic.twitter.com\\/A8kjlEBT6P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TrotskySA\\/status\\/1555214138334498818\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1218,\"h\":1437,\"resize\":\"fit\"},\"medium\":{\"w\":1017,\"h\":1200,\"resize\":\"fit\"}}}]},\"2633\":{\"hashtags\":[{\"text\":\"capitec\",\"indices\":[198,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"kagiso\",\"indices\":[215,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2634\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[27,36]},{\"text\":\"capitec\",\"indices\":[37,45]},{\"text\":\"malema\",\"indices\":[46,53]},{\"text\":\"krugersdrop\",\"indices\":[54,66]},{\"text\":\"zamazama\",\"indices\":[67,76]},{\"text\":\"Kagisoshutdown\",\"indices\":[77,92]},{\"text\":\"MohaleOTR\",\"indices\":[93,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"STAGE2\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555199945644335104,\"id_str\":\"1555199945644335104\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUuHFrWYAA8Lc-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUuHFrWYAA8Lc-.jpg\",\"url\":\"https:\\/\\/t.co\\/yZEBgmKP6L\",\"display_url\":\"pic.twitter.com\\/yZEBgmKP6L\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WolfFX13\\/status\\/1555199957417721856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"}}}]},\"2635\":{\"hashtags\":[{\"text\":\"zamazama\",\"indices\":[62,71]},{\"text\":\"mohale\",\"indices\":[72,79]},{\"text\":\"KagisoShutDown\",\"indices\":[80,95]},{\"text\":\"capitec\",\"indices\":[96,104]},{\"text\":\"Explosion\",\"indices\":[105,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"TheVoiceCHV\",\"indices\":[124,136]},{\"text\":\"massage\",\"indices\":[137,145]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[146,166]},{\"text\":\"ichmachenichtmehrmit\",\"indices\":[167,188]},{\"text\":\"Somizi\",\"indices\":[189,196]},{\"text\":\"KellyKhumalo\",\"indices\":[197,210]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555196454347612161,\"id_str\":\"1555196454347612161\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUq73lWIAEJXIW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUq73lWIAEJXIW.jpg\",\"url\":\"https:\\/\\/t.co\\/svCQ0njM4A\",\"display_url\":\"pic.twitter.com\\/svCQ0njM4A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555196478406131713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":602,\"h\":402,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":602,\"h\":402,\"resize\":\"fit\"},\"large\":{\"w\":602,\"h\":402,\"resize\":\"fit\"}}}]},\"2636\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"USA\",\"indices\":[68,72]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hIPLapO3Xs\",\"expanded_url\":\"https:\\/\\/arynews.tv\\/china-fires-missiles-near-taiwan-after-pelosi-visit\\/\",\"display_url\":\"arynews.tv\\/china-fires-mi\\u2026\",\"indices\":[74,97]}]},\"2637\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[104,110]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"Taiwanchina\",\"indices\":[121,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/odLXSZuIZi\",\"expanded_url\":\"https:\\/\\/www.cnbc.com\\/2022\\/08\\/04\\/china-begins-live-fire-military-drills-around-taiwan-a-day-after-pelosi-visit.html?__source=sharebar|twitter&par=sharebar\",\"display_url\":\"cnbc.com\\/2022\\/08\\/04\\/chi\\u2026\",\"indices\":[79,102]}]},\"2638\":{\"hashtags\":[{\"text\":\"Zaniolo\",\"indices\":[48,56]},{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"House\",\"indices\":[65,71]},{\"text\":\"housemusic\",\"indices\":[72,83]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JvEfxlDcpt\",\"expanded_url\":\"https:\\/\\/hearthis.at\\/artandsole\\/art-sole-soloist-tape-vol-57-the-big-sun\\/\",\"display_url\":\"hearthis.at\\/artandsole\\/art\\u2026\",\"indices\":[23,46]}],\"media\":[{\"id\":1555175690064084992,\"id_str\":\"1555175690064084992\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUYDOmXwAAKh7T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUYDOmXwAAKh7T.jpg\",\"url\":\"https:\\/\\/t.co\\/t1aW2vnyEK\",\"display_url\":\"pic.twitter.com\\/t1aW2vnyEK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sole_willy\\/status\\/1555175693843054597\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1242,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2639\":{\"hashtags\":[{\"text\":\"ActionSA\",\"indices\":[62,71]},{\"text\":\"Makashule\",\"indices\":[72,82]},{\"text\":\"Fabrizio\",\"indices\":[83,92]},{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"XolaPakati\",\"indices\":[101,112]},{\"text\":\"Portugal\",\"indices\":[113,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"SenzoMeyiwatrial\",\"indices\":[145,162]},{\"text\":\"idolssa\",\"indices\":[163,171]},{\"text\":\"NtsikiMazwai\",\"indices\":[172,185]},{\"text\":\"KellyKhumalo\",\"indices\":[186,199]},{\"text\":\"Tembisa\",\"indices\":[200,208]},{\"text\":\"mohale\",\"indices\":[209,216]},{\"text\":\"MohaleOnTheRecord\",\"indices\":[217,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555158389222678528,\"id_str\":\"1555158389222678528\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUIUL8WIAAtU-2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUIUL8WIAAtU-2.jpg\",\"url\":\"https:\\/\\/t.co\\/MtrkTXXpeV\",\"display_url\":\"pic.twitter.com\\/MtrkTXXpeV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555158422194192390\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2640\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[177,184]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USEmbZim\",\"name\":\"U.S. Embassy Zimbabwe\",\"id\":58451369,\"id_str\":\"58451369\",\"indices\":[109,118]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[119,133]},{\"screen_name\":\"CGMeifangZhang\",\"name\":\"Zhang Meifang\\u5f20\\u7f8e\\u82b3\",\"id\":1222894323152195586,\"id_str\":\"1222894323152195586\",\"indices\":[134,149]},{\"screen_name\":\"ZimChina\",\"name\":\"Zim-China Friendship Association\",\"id\":1487293298649747456,\"id_str\":\"1487293298649747456\",\"indices\":[150,159]},{\"screen_name\":\"ChineseZimbabwe\",\"name\":\"Chinese Embassy in Zimbabwe\",\"id\":1036897953334607873,\"id_str\":\"1036897953334607873\",\"indices\":[160,176]}],\"urls\":[],\"media\":[{\"id\":1555150797066977281,\"id_str\":\"1555150797066977281\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBaQ9XwAE_9tp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBaQ9XwAE_9tp.jpg\",\"url\":\"https:\\/\\/t.co\\/h76bBvMzdX\",\"display_url\":\"pic.twitter.com\\/h76bBvMzdX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/babieRinenharo\\/status\\/1555150806978105344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":670,\"h\":417,\"resize\":\"fit\"},\"medium\":{\"w\":670,\"h\":417,\"resize\":\"fit\"},\"large\":{\"w\":670,\"h\":417,\"resize\":\"fit\"}}}]},\"2641\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"Uyajola99\",\"indices\":[65,75]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"2022AFRICA\",\"name\":\"2022 AFRICA\",\"id\":991303418152144897,\"id_str\":\"991303418152144897\",\"indices\":[45,56]}],\"urls\":[],\"media\":[{\"id\":1555144174575435776,\"id_str\":\"1555144174575435776\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555144174575435776\\/pu\\/img\\/obWjllIiGloSI87K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555144174575435776\\/pu\\/img\\/obWjllIiGloSI87K.jpg\",\"url\":\"https:\\/\\/t.co\\/gSOS7TqUVC\",\"display_url\":\"pic.twitter.com\\/gSOS7TqUVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Main_C_official\\/status\\/1555144289734299649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2642\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[115,131]},{\"text\":\"PokemonScarletViolet\",\"indices\":[132,153]},{\"text\":\"Taiwan\",\"indices\":[154,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hHgYQ1o59w\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/PotegoMRakobela\",\"display_url\":\"youtube.com\\/c\\/PotegoMRakob\\u2026\",\"indices\":[49,72]}],\"media\":[{\"id\":1555138868478984192,\"id_str\":\"1555138868478984192\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2j7gXwAAR9r1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2j7gXwAAR9r1.jpg\",\"url\":\"https:\\/\\/t.co\\/fIT9kFu96Q\",\"display_url\":\"pic.twitter.com\\/fIT9kFu96Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MokgadiPR\\/status\\/1555138922048618496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2643\":{\"hashtags\":[{\"text\":\"EvogueRadioWorld\",\"indices\":[42,59]},{\"text\":\"TheExhaligShow\",\"indices\":[60,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"Somizi\",\"indices\":[84,91]},{\"text\":\"WhatsApp\",\"indices\":[92,101]},{\"text\":\"Naledi\",\"indices\":[102,109]},{\"text\":\"SolPhenduka\",\"indices\":[110,122]},{\"text\":\"DineoRanaka\",\"indices\":[123,135]},{\"text\":\"China\",\"indices\":[136,142]},{\"text\":\"zamazama\",\"indices\":[143,152]},{\"text\":\"MohaleOTR\",\"indices\":[153,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2644\":{\"hashtags\":[{\"text\":\"SOWETO\",\"indices\":[28,35]},{\"text\":\"kagiso\",\"indices\":[185,192]},{\"text\":\"ZamaZamas\",\"indices\":[193,203]},{\"text\":\"MakashuleGana\",\"indices\":[204,218]},{\"text\":\"MohaleOTR\",\"indices\":[219,229]},{\"text\":\"PlatinumWomensDay\",\"indices\":[230,248]},{\"text\":\"capitec\",\"indices\":[249,257]},{\"text\":\"Taiwan\",\"indices\":[258,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2645\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555109453841793025,\"id_str\":\"1555109453841793025\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTbzxcXgAEbfer.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTbzxcXgAEbfer.jpg\",\"url\":\"https:\\/\\/t.co\\/EO4gOJ2O0K\",\"display_url\":\"pic.twitter.com\\/EO4gOJ2O0K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SakhyKhuzwayo\\/status\\/1555109457838981120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"2646\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[0,18]},{\"text\":\"NancyPelosi\",\"indices\":[19,31]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555096998382108672,\"id_str\":\"1555096998382108672\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096998382108672\\/pu\\/img\\/L-m3TmvamCEbHbDg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096998382108672\\/pu\\/img\\/L-m3TmvamCEbHbDg.jpg\",\"url\":\"https:\\/\\/t.co\\/XqnP6fSujv\",\"display_url\":\"pic.twitter.com\\/XqnP6fSujv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohanStapelbe15\\/status\\/1555097074634473472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":560,\"resize\":\"fit\"}}}]},\"2647\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[107,114]},{\"text\":\"PokemonPresents\",\"indices\":[115,131]},{\"text\":\"herbalifenutrition\",\"indices\":[132,151]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2648\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"ChelseaFC\",\"indices\":[103,113]},{\"text\":\"SbNaijaS7\",\"indices\":[114,124]},{\"text\":\"SinkyMnisi\",\"indices\":[125,136]},{\"text\":\"welele\",\"indices\":[137,144]},{\"text\":\"Naledi\",\"indices\":[145,152]},{\"text\":\"Fabrizio\",\"indices\":[153,162]},{\"text\":\"IREvsSA\",\"indices\":[163,171]},{\"text\":\"Portugal\",\"indices\":[172,181]},{\"text\":\"Stubbs\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555020804022231040,\"id_str\":\"1555020804022231040\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSLLrIWYAAwek8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSLLrIWYAAwek8.jpg\",\"url\":\"https:\\/\\/t.co\\/vfRD2xkYO9\",\"display_url\":\"pic.twitter.com\\/vfRD2xkYO9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555020854425174016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"2649\":{\"hashtags\":[{\"text\":\"progress\",\"indices\":[44,53]},{\"text\":\"perfection\",\"indices\":[58,69]},{\"text\":\"Trading\",\"indices\":[70,78]},{\"text\":\"CradleOHK\",\"indices\":[79,89]},{\"text\":\"Liquidity\",\"indices\":[90,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554956764856057856,\"id_str\":\"1554956764856057856\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRQ8GpWAAAR_I5.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRQ8GpWAAAR_I5.png\",\"url\":\"https:\\/\\/t.co\\/oMUlgSbMII\",\"display_url\":\"pic.twitter.com\\/oMUlgSbMII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CradleOhk\\/status\\/1554956767964135425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":298,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":525,\"resize\":\"fit\"},\"large\":{\"w\":1362,\"h\":596,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2650\":{\"hashtags\":[{\"text\":\"Txiki\",\"indices\":[16,22]},{\"text\":\"Pretoria\",\"indices\":[23,32]},{\"text\":\"B2022Athletics\",\"indices\":[33,48]},{\"text\":\"KNUSTLive\",\"indices\":[49,59]},{\"text\":\"PeterDrury\",\"indices\":[60,71]},{\"text\":\"EPL\",\"indices\":[72,76]},{\"text\":\"FCBarcelona\",\"indices\":[77,89]},{\"text\":\"Amakhosi4Life\",\"indices\":[90,104]},{\"text\":\"OnceAlways\",\"indices\":[105,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554951005514731531,\"id_str\":\"1554951005514731531\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951005514731531\\/pu\\/img\\/sbyOuoFrCupZjwqK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951005514731531\\/pu\\/img\\/sbyOuoFrCupZjwqK.jpg\",\"url\":\"https:\\/\\/t.co\\/pZiRXMGO7E\",\"display_url\":\"pic.twitter.com\\/pZiRXMGO7E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MulaloJNR\\/status\\/1554951598547271680\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2651\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[80,98]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Afrasid_\",\"name\":\"AFRASID\",\"id\":1475070370117996546,\"id_str\":\"1475070370117996546\",\"indices\":[70,79]}],\"urls\":[]},\"2652\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[39,45]},{\"text\":\"Uyghur\",\"indices\":[124,131]},{\"text\":\"Xinjiang\",\"indices\":[143,152]},{\"text\":\"DalaiLama\",\"indices\":[219,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fakudet\",\"name\":\"Thembisa Fakude\",\"id\":127301823,\"id_str\":\"127301823\",\"indices\":[260,268]}],\"urls\":[],\"media\":[{\"id\":1554940382324170752,\"id_str\":\"1554940382324170752\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554940382324170752\\/pu\\/img\\/1YX8fASOpSyq8kmq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554940382324170752\\/pu\\/img\\/1YX8fASOpSyq8kmq.jpg\",\"url\":\"https:\\/\\/t.co\\/EfSoggum2P\",\"display_url\":\"pic.twitter.com\\/EfSoggum2P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/salaamedia\\/status\\/1554940866858565634\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2653\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"Pelosi\",\"indices\":[72,79]},{\"text\":\"ChinaTaiwan\",\"indices\":[81,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SfBjn1ULso\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SCMPNews\\/status\\/1554920037831647240\",\"display_url\":\"twitter.com\\/SCMPNews\\/statu\\u2026\",\"indices\":[94,117]}]},\"2654\":{\"hashtags\":[{\"text\":\"Uyajola99\",\"indices\":[40,50]},{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"Pelosi\",\"indices\":[59,66]},{\"text\":\"IdolsSA\",\"indices\":[67,75]},{\"text\":\"BBNaija7\",\"indices\":[76,85]},{\"text\":\"AreaYouTubedIn\",\"indices\":[134,149]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554920493588922368,\"id_str\":\"1554920493588922368\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554920493588922368\\/pu\\/img\\/URuiyYC2gQBOXHyq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554920493588922368\\/pu\\/img\\/URuiyYC2gQBOXHyq.jpg\",\"url\":\"https:\\/\\/t.co\\/MfSx1Fphzp\",\"display_url\":\"pic.twitter.com\\/MfSx1Fphzp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SkaiCole\\/status\\/1554920695259451393\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":926,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":926,\"resize\":\"fit\"},\"small\":{\"w\":551,\"h\":680,\"resize\":\"fit\"}}}]},\"2655\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"Pelosi\",\"indices\":[65,72]},{\"text\":\"CyrilRamaphosamustgo\",\"indices\":[74,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3m3bqJSIG0\",\"expanded_url\":\"http:\\/\\/www.khoikhoi.co.za\",\"display_url\":\"khoikhoi.co.za\",\"indices\":[31,54]}],\"media\":[{\"id\":1554916926576525312,\"id_str\":\"1554916926576525312\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstNfWAAAR29s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstNfWAAAR29s.jpg\",\"url\":\"https:\\/\\/t.co\\/DnGROE8IM2\",\"display_url\":\"pic.twitter.com\\/DnGROE8IM2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/khoikhoi_sa\\/status\\/1554916933467869185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1173,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1214,\"resize\":\"fit\"}}}]},\"2656\":{\"hashtags\":[{\"text\":\"ZamaZamas\",\"indices\":[155,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hwRHMSsSIg\",\"expanded_url\":\"https:\\/\\/careerzzone.co.za\\/?p=173\",\"display_url\":\"careerzzone.co.za\\/?p=173\",\"indices\":[89,112]}]},\"2657\":{\"hashtags\":[{\"text\":\"AreYouTubedIn\",\"indices\":[127,141]},{\"text\":\"Nota\",\"indices\":[142,147]},{\"text\":\"JHBCBD\",\"indices\":[148,155]},{\"text\":\"Sol\",\"indices\":[156,160]},{\"text\":\"SolPhenduka\",\"indices\":[161,173]},{\"text\":\"Taiwan\",\"indices\":[174,181]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2658\":{\"hashtags\":[{\"text\":\"afrohouse\",\"indices\":[105,115]},{\"text\":\"deephouse\",\"indices\":[116,126]},{\"text\":\"PokemonPresents\",\"indices\":[147,163]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[164,182]},{\"text\":\"boycottrakshabandhan\",\"indices\":[183,204]},{\"text\":\"timesupolivia\",\"indices\":[205,219]},{\"text\":\"PrabhasForSitaRamam\",\"indices\":[220,240]},{\"text\":\"tiboinshape\",\"indices\":[241,253]},{\"text\":\"PodcastAndChill\",\"indices\":[254,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[133,141]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7hPhDnDyf0\",\"expanded_url\":\"http:\\/\\/youtu.be\\/f6aW6CSH254\",\"display_url\":\"youtu.be\\/f6aW6CSH254\",\"indices\":[74,97]}],\"media\":[{\"id\":1554906675173269504,\"id_str\":\"1554906675173269504\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554906675173269504\\/pu\\/img\\/NFSLds8TJ07s5juD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554906675173269504\\/pu\\/img\\/NFSLds8TJ07s5juD.jpg\",\"url\":\"https:\\/\\/t.co\\/c33y04Yst1\",\"display_url\":\"pic.twitter.com\\/c33y04Yst1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MthembuSisekelo\\/status\\/1554906763010478081\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":854,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":854,\"resize\":\"fit\"}}}]},\"2659\":{\"hashtags\":[{\"text\":\"markets\",\"indices\":[102,110]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"globalmacro\",\"indices\":[119,131]},{\"text\":\"DAX\",\"indices\":[132,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JY6W2pulg2\",\"expanded_url\":\"http:\\/\\/dailyfx.com\",\"display_url\":\"dailyfx.com\",\"indices\":[78,101]},{\"url\":\"https:\\/\\/t.co\\/eSUhUrcMpH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zvawda\\/status\\/1554830251414265856\",\"display_url\":\"twitter.com\\/zvawda\\/status\\/\\u2026\",\"indices\":[137,160]}]},\"2660\":{\"hashtags\":[{\"text\":\"DineoRanaka\",\"indices\":[28,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"Uyajola99\",\"indices\":[49,59]},{\"text\":\"Stage2\",\"indices\":[60,67]},{\"text\":\"SolPhenduka\",\"indices\":[68,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554902691280830472,\"id_str\":\"1554902691280830472\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQfwm4XwAghkJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQfwm4XwAghkJy.jpg\",\"url\":\"https:\\/\\/t.co\\/RTLyNYvO6s\",\"display_url\":\"pic.twitter.com\\/RTLyNYvO6s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WolfFX13\\/status\\/1554902702018240513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":540,\"h\":1204,\"resize\":\"fit\"},\"small\":{\"w\":305,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":538,\"h\":1200,\"resize\":\"fit\"}}}]},\"2661\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[201,209]},{\"text\":\"BulletTrainMovie\",\"indices\":[210,227]},{\"text\":\"Taiwan\",\"indices\":[229,236]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleolopade\",\"name\":\"Adekunle #BBNaija\",\"id\":363334556,\"id_str\":\"363334556\",\"indices\":[148,164]},{\"screen_name\":\"teamAdekunlebbn\",\"name\":\"Adekunle bbnaija Fan Page\",\"id\":789468098445402112,\"id_str\":\"789468098445402112\",\"indices\":[183,199]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiMMkpX9J7\",\"expanded_url\":\"https:\\/\\/instagram.com\\/adekunleolopade_?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/adekunleolopad\\u2026\",\"indices\":[72,95]},{\"url\":\"https:\\/\\/t.co\\/jdC87mulvR\",\"expanded_url\":\"https:\\/\\/instagram.com\\/adirenation?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/adirenation?ig\\u2026\",\"indices\":[115,138]}]},\"2662\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"BulletTrainMovie\",\"indices\":[34,51]},{\"text\":\"F1\",\"indices\":[52,55]},{\"text\":\"LewisHamilton\",\"indices\":[56,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554893613343145990,\"id_str\":\"1554893613343145990\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893613343145990\\/pu\\/img\\/kLuJ2lESsU_C88h_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893613343145990\\/pu\\/img\\/kLuJ2lESsU_C88h_.jpg\",\"url\":\"https:\\/\\/t.co\\/02Nd4xXTth\",\"display_url\":\"pic.twitter.com\\/02Nd4xXTth\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jansfin\\/status\\/1554893882336415744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"2663\":{\"hashtags\":[{\"text\":\"Makgoba_Proverbs\",\"indices\":[106,123]},{\"text\":\"wednesdaythought\",\"indices\":[126,143]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"Limpopo\",\"indices\":[154,162]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554885829117546497,\"id_str\":\"1554885829117546497\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQQbGbXEAE9If8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQQbGbXEAE9If8.jpg\",\"url\":\"https:\\/\\/t.co\\/jlTdejrWya\",\"display_url\":\"pic.twitter.com\\/jlTdejrWya\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LesibaHorns\\/status\\/1554885832791793665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":374,\"h\":511,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":374,\"h\":511,\"resize\":\"fit\"},\"medium\":{\"w\":374,\"h\":511,\"resize\":\"fit\"}}}]},\"2664\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PO8JZt5u6v\",\"expanded_url\":\"https:\\/\\/www.news24.com\\/news24\\/world\\/news\\/china-says-military-drills-around-taiwan-are-necessary-reaction-to-us-provocation-20220803\",\"display_url\":\"news24.com\\/news24\\/world\\/n\\u2026\",\"indices\":[261,284]}]},\"2665\":{\"hashtags\":[{\"text\":\"USA\",\"indices\":[84,88]},{\"text\":\"Taiwan\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2666\":{\"hashtags\":[{\"text\":\"SolPhenduka\",\"indices\":[20,32]},{\"text\":\"pretoria\",\"indices\":[33,42]},{\"text\":\"welele\",\"indices\":[43,50]},{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"Mnakwethu\",\"indices\":[59,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554856228827942918,\"id_str\":\"1554856228827942918\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554856228827942918\\/pu\\/img\\/c57f_JNmMR2qnKfr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554856228827942918\\/pu\\/img\\/c57f_JNmMR2qnKfr.jpg\",\"url\":\"https:\\/\\/t.co\\/U5tdprryKC\",\"display_url\":\"pic.twitter.com\\/U5tdprryKC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ProffNyembe\\/status\\/1554856427742715904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2667\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"Uyajola99\",\"indices\":[82,92]},{\"text\":\"mihlali\",\"indices\":[93,101]},{\"text\":\"bonang\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PhophiRamathuba\",\"name\":\"Dr Phophi Ramathuba\",\"id\":717350740482723841,\"id_str\":\"717350740482723841\",\"indices\":[0,16]}],\"urls\":[]},\"2668\":{\"hashtags\":[{\"text\":\"riebeckite\",\"indices\":[78,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"AamirKhan\",\"indices\":[98,108]},{\"text\":\"PokemonScarletViolet\",\"indices\":[109,130]},{\"text\":\"Pelosi\",\"indices\":[131,138]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[139,162]},{\"text\":\"\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a\",\"indices\":[163,172]},{\"text\":\"DonBelle\",\"indices\":[173,182]},{\"text\":\"Mnakwethu\",\"indices\":[183,193]},{\"text\":\"Viruman\",\"indices\":[194,202]},{\"text\":\"helicopter\",\"indices\":[203,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554848290168049665,\"id_str\":\"1554848290168049665\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554848290168049665\\/pu\\/img\\/RGQqnBaWs7mFGjsV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554848290168049665\\/pu\\/img\\/RGQqnBaWs7mFGjsV.jpg\",\"url\":\"https:\\/\\/t.co\\/J9Uv6K7gR5\",\"display_url\":\"pic.twitter.com\\/J9Uv6K7gR5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/riebeckitecloth\\/status\\/1554848418639536128\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1020,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1020,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":680,\"resize\":\"fit\"}}}]},\"2669\":{\"hashtags\":[{\"text\":\"forexlondon\",\"indices\":[17,29]},{\"text\":\"profits\",\"indices\":[30,38]},{\"text\":\"happytrader\",\"indices\":[39,51]},{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"forexmoney\",\"indices\":[60,71]},{\"text\":\"earnmoney\",\"indices\":[72,82]},{\"text\":\"workfromhome\",\"indices\":[83,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"wallstreet\",\"indices\":[105,116]},{\"text\":\"bloomberg\",\"indices\":[117,127]},{\"text\":\"nfp\",\"indices\":[128,132]},{\"text\":\"EURUSD\",\"indices\":[133,140]},{\"text\":\"news\",\"indices\":[141,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839314109935616,\"id_str\":\"1554839314109935616\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmHkhVsAAYYtv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmHkhVsAAYYtv.jpg\",\"url\":\"https:\\/\\/t.co\\/KLOrtnRCha\",\"display_url\":\"pic.twitter.com\\/KLOrtnRCha\",\"expanded_url\":\"https:\\/\\/twitter.com\\/garothedj\\/status\\/1554839364391280642\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":960,\"resize\":\"fit\"}}}]},\"2670\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[36,43]},{\"text\":\"LoveIsland2022\",\"indices\":[44,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2671\":{\"hashtags\":[{\"text\":\"ZamaZamas\",\"indices\":[75,85]},{\"text\":\"Tembisa\",\"indices\":[254,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"China\",\"indices\":[271,277]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SAPoliceService\",\"name\":\"SA Police Service \\ud83c\\uddff\\ud83c\\udde6\",\"id\":320644276,\"id_str\":\"320644276\",\"indices\":[0,16]},{\"screen_name\":\"CyrilRamaphosa\",\"name\":\"Cyril Ramaphosa \\ud83c\\uddff\\ud83c\\udde6\",\"id\":2987156301,\"id_str\":\"2987156301\",\"indices\":[167,182]},{\"screen_name\":\"PresidencyZA\",\"name\":\"Presidency | South Africa \\ud83c\\uddff\\ud83c\\udde6\",\"id\":40839292,\"id_str\":\"40839292\",\"indices\":[183,196]}],\"urls\":[]},\"2672\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[34,40]},{\"text\":\"Taiwan\",\"indices\":[128,135]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2673\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[190,202]},{\"text\":\"Pelosi\",\"indices\":[203,210]},{\"text\":\"sanctions\",\"indices\":[211,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2674\":{\"hashtags\":[{\"text\":\"JobsThatHaveTheMostSex\",\"indices\":[76,99]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"podcastandchillwithmacg\",\"indices\":[120,144]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MphoPopps\",\"name\":\"Mpho Popps Modikoane\",\"id\":204261629,\"id_str\":\"204261629\",\"indices\":[13,23]}],\"urls\":[]},\"2675\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"2676\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554794381986643968,\"id_str\":\"1554794381986643968\",\"indices\":[63,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554794381986643968\\/pu\\/img\\/lq-pfLy2VkLtGfA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554794381986643968\\/pu\\/img\\/lq-pfLy2VkLtGfA1.jpg\",\"url\":\"https:\\/\\/t.co\\/bxLvbjLE83\",\"display_url\":\"pic.twitter.com\\/bxLvbjLE83\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MakgatlheK\\/status\\/1554794430921687043\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2677\":{\"hashtags\":[{\"text\":\"SolPhenduka\",\"indices\":[178,190]},{\"text\":\"Dineo\",\"indices\":[191,197]},{\"text\":\"Netflorist\",\"indices\":[198,209]},{\"text\":\"Uyajola99\",\"indices\":[210,220]},{\"text\":\"Mnakwethu\",\"indices\":[221,231]},{\"text\":\"Taiwan\",\"indices\":[232,239]},{\"text\":\"ChinaTaiwan\",\"indices\":[240,252]},{\"text\":\"Esona\",\"indices\":[253,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554793255912480773,\"id_str\":\"1554793255912480773\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8OoXWIAUYNtr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8OoXWIAUYNtr.jpg\",\"url\":\"https:\\/\\/t.co\\/3IHH3W96jW\",\"display_url\":\"pic.twitter.com\\/3IHH3W96jW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mccools_corner\\/status\\/1554793285134213120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":596,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":694,\"h\":792,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":694,\"h\":792,\"resize\":\"fit\"}}}]},\"2678\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"NancyPelosi\",\"indices\":[132,144]},{\"text\":\"Taiwan\",\"indices\":[154,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2679\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"ZamaZamas\",\"indices\":[53,63]},{\"text\":\"Mpofu\",\"indices\":[64,70]},{\"text\":\"PhalaPhalaFarmGate\",\"indices\":[71,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554782125316079616,\"id_str\":\"1554782125316079616\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782125316079616\\/pu\\/img\\/XtALwCEO0qeWs8Sz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782125316079616\\/pu\\/img\\/XtALwCEO0qeWs8Sz.jpg\",\"url\":\"https:\\/\\/t.co\\/6zVhPb66Q7\",\"display_url\":\"pic.twitter.com\\/6zVhPb66Q7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MavuthelaCom\\/status\\/1554782179963568128\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"2680\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[256,266]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Naked_Dj\",\"name\":\"Quinton Masina\",\"id\":68889214,\"id_str\":\"68889214\",\"indices\":[0,9]},{\"screen_name\":\"DJTira\",\"name\":\"Makoya Bearings\",\"id\":40930781,\"id_str\":\"40930781\",\"indices\":[63,70]},{\"screen_name\":\"dineoranaka\",\"name\":\"#UKHONA OUT NOW\",\"id\":41605989,\"id_str\":\"41605989\",\"indices\":[71,83]},{\"screen_name\":\"LuloCafe\",\"name\":\"MALIWA\",\"id\":31783904,\"id_str\":\"31783904\",\"indices\":[84,93]},{\"screen_name\":\"HarrisonCrump\",\"name\":\"Harrison Crump\",\"id\":47342781,\"id_str\":\"47342781\",\"indices\":[94,108]},{\"screen_name\":\"SabbyTheDJ\",\"name\":\"The Best Thing Ever Official\",\"id\":516082346,\"id_str\":\"516082346\",\"indices\":[109,120]},{\"screen_name\":\"IAmDJVoodoo\",\"name\":\"DJ VOODOO \\ud83c\\udf52\",\"id\":175013677,\"id_str\":\"175013677\",\"indices\":[121,133]},{\"screen_name\":\"MsCosmoSA\",\"name\":\"BHUTI \\ud83d\\udc8b\\ud83d\\udc84\",\"id\":31366301,\"id_str\":\"31366301\",\"indices\":[134,144]},{\"screen_name\":\"LindaMoeketsi\",\"name\":\"Linda Moeketsi\",\"id\":40860130,\"id_str\":\"40860130\",\"indices\":[145,159]},{\"screen_name\":\"FrankySA\",\"name\":\"DJ Franky\",\"id\":33451616,\"id_str\":\"33451616\",\"indices\":[160,169]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/poS6eksott\",\"expanded_url\":\"https:\\/\\/computicket-boxoffice.com\\/e\\/naked-dj-birthday-at-propaganda-Qj9TAX\",\"display_url\":\"computicket-boxoffice.com\\/e\\/naked-dj-bir\\u2026\",\"indices\":[231,254]}],\"media\":[{\"id\":1554778386219913219,\"id_str\":\"1554778386219913219\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOutGcX0AMrY86.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOutGcX0AMrY86.jpg\",\"url\":\"https:\\/\\/t.co\\/yF725swjJG\",\"display_url\":\"pic.twitter.com\\/yF725swjJG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PropagandaPTA\\/status\\/1554778392322621440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2681\":{\"hashtags\":[{\"text\":\"TheJobsThatHaveTheMostSex\",\"indices\":[30,56]},{\"text\":\"SolPhenduka\",\"indices\":[58,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777924473131008,\"id_str\":\"1554777924473131008\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuSOTXEAAnr2u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuSOTXEAAnr2u.jpg\",\"url\":\"https:\\/\\/t.co\\/mxWX6CwBOR\",\"display_url\":\"pic.twitter.com\\/mxWX6CwBOR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ThanduxoloMdak1\\/status\\/1554777927241302016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":535,\"h\":670,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":535,\"h\":670,\"resize\":\"fit\"},\"medium\":{\"w\":535,\"h\":670,\"resize\":\"fit\"}}}]},\"2682\":{\"hashtags\":[{\"text\":\"WomanPower\",\"indices\":[93,104]},{\"text\":\"WomanOnTop\",\"indices\":[105,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"Pelosi\",\"indices\":[125,132]},{\"text\":\"Solana\",\"indices\":[133,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554776312442720256,\"id_str\":\"1554776312442720256\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs0ZBXEAAUEGI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs0ZBXEAAUEGI.jpg\",\"url\":\"https:\\/\\/t.co\\/BEhDGMUUzC\",\"display_url\":\"pic.twitter.com\\/BEhDGMUUzC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOURMEDIA_ZA\\/status\\/1554776322890768385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2683\":{\"hashtags\":[{\"text\":\"esona\",\"indices\":[165,171]},{\"text\":\"Pelosi\",\"indices\":[173,180]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"esonasekeleni\",\"name\":\"Esona Sekeleni\",\"id\":1552506167670226944,\"id_str\":\"1552506167670226944\",\"indices\":[0,14]},{\"screen_name\":\"2022AFRICA\",\"name\":\"2022 AFRICA\",\"id\":991303418152144897,\"id_str\":\"991303418152144897\",\"indices\":[137,148]},{\"screen_name\":\"SisaFlatela_\",\"name\":\"\\ud835\\udd7e\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd86 \\ud835\\udd71\\ud835\\udd91\\ud835\\udd86\\ud835\\udd99\\ud835\\udd8a\\ud835\\udd91\\ud835\\udd86\",\"id\":805312251527917568,\"id_str\":\"805312251527917568\",\"indices\":[150,163]}],\"urls\":[],\"media\":[{\"id\":1554776165956685824,\"id_str\":\"1554776165956685824\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsr3UXkAAFVpC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsr3UXkAAFVpC.jpg\",\"url\":\"https:\\/\\/t.co\\/I2qzQo0GXl\",\"display_url\":\"pic.twitter.com\\/I2qzQo0GXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sphinx_Mnguni\\/status\\/1554776173900693506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1084,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1241,\"h\":1374,\"resize\":\"fit\"},\"small\":{\"w\":614,\"h\":680,\"resize\":\"fit\"}}}]},\"2684\":{\"hashtags\":[{\"text\":\"thechopshop137\",\"indices\":[146,161]},{\"text\":\"landrover\",\"indices\":[162,172]},{\"text\":\"rangerover\",\"indices\":[173,184]},{\"text\":\"rangeroversport\",\"indices\":[185,201]},{\"text\":\"encanews\",\"indices\":[202,211]},{\"text\":\"southafrica\",\"indices\":[212,224]},{\"text\":\"trevornoah\",\"indices\":[225,236]},{\"text\":\"Pelosi\",\"indices\":[237,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773139615367169,\"id_str\":\"1554773139615367169\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp7tUXwAE1Sg4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp7tUXwAE1Sg4.jpg\",\"url\":\"https:\\/\\/t.co\\/WfQglM0Fnp\",\"display_url\":\"pic.twitter.com\\/WfQglM0Fnp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TheChopShop137\\/status\\/1554773164550397955\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"}}}]},\"2685\":{\"hashtags\":[{\"text\":\"ChangingLives\",\"indices\":[62,76]},{\"text\":\"Stage2\",\"indices\":[77,84]},{\"text\":\"centurionmall\",\"indices\":[85,99]},{\"text\":\"Dineo\",\"indices\":[100,106]},{\"text\":\"AreYouTubedIn\",\"indices\":[108,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"Pelosi\",\"indices\":[131,138]},{\"text\":\"China\",\"indices\":[139,145]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[146,172]},{\"text\":\"ICanWithAbsa\",\"indices\":[173,186]},{\"text\":\"Mnakwethu\",\"indices\":[187,197]},{\"text\":\"netflorist\",\"indices\":[198,209]},{\"text\":\"esona\",\"indices\":[210,216]},{\"text\":\"SolPhenduka\",\"indices\":[217,229]},{\"text\":\"alpine\",\"indices\":[230,237]},{\"text\":\"mshishi\",\"indices\":[238,246]},{\"text\":\"juluka\",\"indices\":[247,254]},{\"text\":\"DoctorStrange\",\"indices\":[255,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554767908726837249,\"id_str\":\"1554767908726837249\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOlLOvXEAE1SD7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOlLOvXEAE1SD7.jpg\",\"url\":\"https:\\/\\/t.co\\/yXfYpvIRoW\",\"display_url\":\"pic.twitter.com\\/yXfYpvIRoW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554767939320119296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}}]},\"2686\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"TUINUANE\",\"indices\":[70,79]},{\"text\":\"VWGroup\",\"indices\":[80,88]},{\"text\":\"Dineo\",\"indices\":[89,95]},{\"text\":\"dinner\",\"indices\":[96,103]},{\"text\":\"Tembisa\",\"indices\":[104,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554766266187104258,\"id_str\":\"1554766266187104258\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjrnzXwAIVSi2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjrnzXwAIVSi2.jpg\",\"url\":\"https:\\/\\/t.co\\/SnrooVq7lP\",\"display_url\":\"pic.twitter.com\\/SnrooVq7lP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554766324185939971\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2687\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[30,37]},{\"text\":\"China\",\"indices\":[38,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ASGd3onL2f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MFA_China\\/status\\/1554474781730545665\",\"display_url\":\"twitter.com\\/MFA_China\\/stat\\u2026\",\"indices\":[45,68]}]},\"2688\":{\"hashtags\":[{\"text\":\"PacificBlues\",\"indices\":[61,74]},{\"text\":\"BRICS\",\"indices\":[75,81]},{\"text\":\"Taiwan\",\"indices\":[82,89]},{\"text\":\"Pelosi\",\"indices\":[90,97]},{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"ZamaZamas\",\"indices\":[105,115]},{\"text\":\"Tembisa\",\"indices\":[116,124]},{\"text\":\"BeautyWithBrains\",\"indices\":[125,142]},{\"text\":\"BhekiCeleMustGo\",\"indices\":[143,159]},{\"text\":\"SolPhenduka\",\"indices\":[160,172]},{\"text\":\"Stager\",\"indices\":[173,180]},{\"text\":\"PhalaPhalaFarmGate\",\"indices\":[181,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554763869972733953,\"id_str\":\"1554763869972733953\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554763869972733953\\/pu\\/img\\/tjubsSRfa9XbHUEv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554763869972733953\\/pu\\/img\\/tjubsSRfa9XbHUEv.jpg\",\"url\":\"https:\\/\\/t.co\\/4P3iO7prSS\",\"display_url\":\"pic.twitter.com\\/4P3iO7prSS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pacificblues_SA\\/status\\/1554764141822447619\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"2689\":{\"hashtags\":[{\"text\":\"PacificBlues\",\"indices\":[26,39]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"Pelosi\",\"indices\":[63,70]},{\"text\":\"China\",\"indices\":[71,77]},{\"text\":\"ZamaZamas\",\"indices\":[78,88]},{\"text\":\"pretoria\",\"indices\":[89,98]},{\"text\":\"Jobsthathavethemostsex\",\"indices\":[99,122]},{\"text\":\"Tembisa\",\"indices\":[123,131]},{\"text\":\"SolPhenduka\",\"indices\":[132,144]},{\"text\":\"Stage2\",\"indices\":[145,152]},{\"text\":\"BhekiCeleMustGo\",\"indices\":[153,169]},{\"text\":\"PhalaPhalaFarmGate\",\"indices\":[170,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554763235160719361,\"id_str\":\"1554763235160719361\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOg7MWXgAEP87a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOg7MWXgAEP87a.jpg\",\"url\":\"https:\\/\\/t.co\\/RCkYjeZd3y\",\"display_url\":\"pic.twitter.com\\/RCkYjeZd3y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pacificblues_SA\\/status\\/1554763238784569344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2690\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[122,132]},{\"text\":\"XiJinpingThePooh\",\"indices\":[133,150]},{\"text\":\"Pelosi\",\"indices\":[151,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554762588382167042,\"id_str\":\"1554762588382167042\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgVi6WAAIB-Ta.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgVi6WAAIB-Ta.jpg\",\"url\":\"https:\\/\\/t.co\\/uRG6dcyxvO\",\"display_url\":\"pic.twitter.com\\/uRG6dcyxvO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Molobeduu\\/status\\/1554762590605266945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":244,\"h\":244,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":244,\"resize\":\"fit\"},\"small\":{\"w\":244,\"h\":244,\"resize\":\"fit\"}}}]},\"2691\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[94,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554761250638274560,\"id_str\":\"1554761250638274560\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761250638274560\\/pu\\/img\\/704a13i8Yke5llKH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761250638274560\\/pu\\/img\\/704a13i8Yke5llKH.jpg\",\"url\":\"https:\\/\\/t.co\\/MHubaCKuGZ\",\"display_url\":\"pic.twitter.com\\/MHubaCKuGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ABOBALOYI\\/status\\/1554761301947293696\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":555,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":315,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":592,\"resize\":\"fit\"}}}]},\"2692\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"China\",\"indices\":[171,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554759905906757633,\"id_str\":\"1554759905906757633\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOd5Z6XkAEQYEC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOd5Z6XkAEQYEC.jpg\",\"url\":\"https:\\/\\/t.co\\/iQ7kW1wz1G\",\"display_url\":\"pic.twitter.com\\/iQ7kW1wz1G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SakhyKhuzwayo\\/status\\/1554759922285518849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":964,\"h\":805,\"resize\":\"fit\"},\"medium\":{\"w\":964,\"h\":805,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":568,\"resize\":\"fit\"}}}]},\"2693\":{\"hashtags\":[{\"text\":\"Fidelity\",\"indices\":[29,38]},{\"text\":\"Taiwan\",\"indices\":[39,46]},{\"text\":\"Limpopo\",\"indices\":[47,55]},{\"text\":\"Venda\",\"indices\":[56,62]},{\"text\":\"Heist\",\"indices\":[63,69]},{\"text\":\"MONEY\",\"indices\":[70,76]},{\"text\":\"MoneyHeist\",\"indices\":[77,88]},{\"text\":\"SolPhenduka\",\"indices\":[89,101]},{\"text\":\"Tembisa\",\"indices\":[102,110]},{\"text\":\"stage2\",\"indices\":[111,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554759579191369728,\"id_str\":\"1554759579191369728\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554759579191369728\\/pu\\/img\\/2QNEWW9KvGd4w0yT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554759579191369728\\/pu\\/img\\/2QNEWW9KvGd4w0yT.jpg\",\"url\":\"https:\\/\\/t.co\\/K6xumIKSoH\",\"display_url\":\"pic.twitter.com\\/K6xumIKSoH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BestWorldNews2\\/status\\/1554759628918992897\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"2694\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[0,12]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[13,31]},{\"text\":\"ChinaTaiwanWar\",\"indices\":[32,47]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"PelosiVisit\",\"indices\":[56,68]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AJEnglish\",\"name\":\"Al Jazeera English\",\"id\":4970411,\"id_str\":\"4970411\",\"indices\":[192,202]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aClGAQJ3h7\",\"expanded_url\":\"https:\\/\\/aje.io\\/bchkeu\",\"display_url\":\"aje.io\\/bchkeu\",\"indices\":[164,187]}]},\"2695\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"Mamkhize\",\"indices\":[93,102]},{\"text\":\"sbahle\",\"indices\":[103,110]},{\"text\":\"grootman\",\"indices\":[111,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bookingcom\",\"name\":\"Booking.com\",\"id\":26516576,\"id_str\":\"26516576\",\"indices\":[0,11]}],\"urls\":[]},\"2696\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[253,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LivePretoria\",\"name\":\"PretoriaLIVE\",\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"indices\":[262,275]}],\"urls\":[],\"media\":[{\"id\":1554739860044496897,\"id_str\":\"1554739860044496897\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLqlQXwAE5Jn9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLqlQXwAE5Jn9.jpg\",\"url\":\"https:\\/\\/t.co\\/YgKuOp7uH8\",\"display_url\":\"pic.twitter.com\\/YgKuOp7uH8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554739863139786754\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2697\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"SenzoMeyiwatrial\",\"indices\":[183,200]},{\"text\":\"Tembisa\",\"indices\":[202,210]},{\"text\":\"Mnakwethu\",\"indices\":[212,222]},{\"text\":\"27August\",\"indices\":[224,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554736837050175488,\"id_str\":\"1554736837050175488\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOI6nuXEAAHRSU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOI6nuXEAAHRSU.jpg\",\"url\":\"https:\\/\\/t.co\\/2JffP0XPVz\",\"display_url\":\"pic.twitter.com\\/2JffP0XPVz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MzansiGFund\\/status\\/1554736840787345408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":954,\"resize\":\"fit\"},\"small\":{\"w\":513,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":954,\"resize\":\"fit\"}}}]},\"2698\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xOAQw90DlU\",\"expanded_url\":\"https:\\/\\/www.fmprc.gov.cn\\/eng\\/zxxx_662805\\/202208\\/t20220803_10732743.html\",\"display_url\":\"fmprc.gov.cn\\/eng\\/zxxx_66280\\u2026\",\"indices\":[106,129]}],\"media\":[{\"id\":1554734830088241152,\"id_str\":\"1554734830088241152\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHFzNWQAACJT1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHFzNWQAACJT1.jpg\",\"url\":\"https:\\/\\/t.co\\/slvoc9LA9Z\",\"display_url\":\"pic.twitter.com\\/slvoc9LA9Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1554734881942405121\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1013,\"h\":758,\"resize\":\"fit\"},\"large\":{\"w\":1013,\"h\":758,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"2699\":{\"hashtags\":[{\"text\":\"History\",\"indices\":[146,154]},{\"text\":\"Archives\",\"indices\":[155,164]},{\"text\":\"Taiwan\",\"indices\":[165,172]},{\"text\":\"Pelosi\",\"indices\":[173,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554733720107683842,\"id_str\":\"1554733720107683842\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGFMNXEAIJ45_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGFMNXEAIJ45_.jpg\",\"url\":\"https:\\/\\/t.co\\/zrJaKKja2O\",\"display_url\":\"pic.twitter.com\\/zrJaKKja2O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MothebeThebi\\/status\\/1554733728110354437\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":567,\"h\":699,\"resize\":\"fit\"},\"small\":{\"w\":552,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":567,\"h\":699,\"resize\":\"fit\"}}}]},\"2700\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[35,41]},{\"text\":\"Taiwan\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidMonyae\",\"name\":\"David Monyae\",\"id\":785562094573850624,\"id_str\":\"785562094573850624\",\"indices\":[83,95]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JyumTjPXWr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/broadcasts\\/1MYGNnMQEAzGw\",\"display_url\":\"twitter.com\\/i\\/broadcasts\\/1\\u2026\",\"indices\":[255,278]}]},\"2701\":{\"hashtags\":[{\"text\":\"CRESGLOBAL\",\"indices\":[31,42]},{\"text\":\"CRESGLOBALFOREX\",\"indices\":[43,59]},{\"text\":\"CRESGLOBALFOREXLUMINARIES\",\"indices\":[60,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Pelosi\",\"indices\":[95,102]},{\"text\":\"China\",\"indices\":[103,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554732035016622080,\"id_str\":\"1554732035016622080\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEjGwWAAA1P6t.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEjGwWAAA1P6t.png\",\"url\":\"https:\\/\\/t.co\\/3LUTaHBn6u\",\"display_url\":\"pic.twitter.com\\/3LUTaHBn6u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/crescent_forex\\/status\\/1554732037910798336\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":666,\"resize\":\"fit\"},\"large\":{\"w\":1834,\"h\":1018,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2702\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"China\",\"indices\":[58,64]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dailymaverick\",\"name\":\"Daily Maverick\",\"id\":71594919,\"id_str\":\"71594919\",\"indices\":[0,14]}],\"urls\":[]},\"2703\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[66,72]},{\"text\":\"USA\",\"indices\":[167,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2704\":{\"hashtags\":[{\"text\":\"France\",\"indices\":[39,46]},{\"text\":\"UK\",\"indices\":[55,58]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"China\",\"indices\":[133,139]},{\"text\":\"USA\",\"indices\":[149,153]},{\"text\":\"Syria\",\"indices\":[200,206]},{\"text\":\"Lybia\",\"indices\":[208,214]},{\"text\":\"Yemen\",\"indices\":[216,222]},{\"text\":\"Ukraine\",\"indices\":[223,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2705\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[76,82]},{\"text\":\"USA\",\"indices\":[84,88]},{\"text\":\"Europe\",\"indices\":[90,97]},{\"text\":\"Taiwan\",\"indices\":[108,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2706\":{\"hashtags\":[{\"text\":\"DRC\",\"indices\":[7,11]},{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"China\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2707\":{\"hashtags\":[{\"text\":\"Africa\",\"indices\":[30,37]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"China\",\"indices\":[271,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2708\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[283,290]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Buhlenomuhle\",\"name\":\"Minister of retweets\\ud83d\\udd04\",\"id\":1446961000427687936,\"id_str\":\"1446961000427687936\",\"indices\":[0,13]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Qv4fMTN2Gv\",\"expanded_url\":\"http:\\/\\/dopedev.w3spaces.com\",\"display_url\":\"dopedev.w3spaces.com\",\"indices\":[211,234]}],\"media\":[{\"id\":1554719834172276736,\"id_str\":\"1554719834172276736\",\"indices\":[291,314],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719834172276736\\/pu\\/img\\/EbSf9WrZ7ljAEV3r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719834172276736\\/pu\\/img\\/EbSf9WrZ7ljAEV3r.jpg\",\"url\":\"https:\\/\\/t.co\\/o1zngHxoMV\",\"display_url\":\"pic.twitter.com\\/o1zngHxoMV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingpin10123\\/status\\/1554720003840266242\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2709\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Pelosi\",\"indices\":[167,174]},{\"text\":\"ChinaTaiwan\",\"indices\":[175,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KMutisi\",\"name\":\"\\ud835\\udc72\\ud835\\udc96\\ud835\\udc85\\ud835\\udc9b\\ud835\\udc82\\ud835\\udc8a \\ud835\\udc74\\ud835\\udc96\\ud835\\udc95\\ud835\\udc8a\\ud835\\udc94\\ud835\\udc8a\",\"id\":2426742387,\"id_str\":\"2426742387\",\"indices\":[103,111]},{\"screen_name\":\"ChinaAmbUN\",\"name\":\"Zhang Jun\",\"id\":1233144962583343105,\"id_str\":\"1233144962583343105\",\"indices\":[112,123]},{\"screen_name\":\"mhofela_mhofu\",\"name\":\"Mhofu\",\"id\":1372591237568593927,\"id_str\":\"1372591237568593927\",\"indices\":[124,138]},{\"screen_name\":\"XHNews\",\"name\":\"China Xinhua News\",\"id\":487118986,\"id_str\":\"487118986\",\"indices\":[139,146]},{\"screen_name\":\"SCMPNews\",\"name\":\"South China Morning Post\",\"id\":23922797,\"id_str\":\"23922797\",\"indices\":[147,156]}],\"urls\":[]},\"2710\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aHApmsNA9g\",\"expanded_url\":\"https:\\/\\/dopedev.w3spaces.com\",\"display_url\":\"dopedev.w3spaces.com\",\"indices\":[197,220]}],\"media\":[{\"id\":1554719280176005124,\"id_str\":\"1554719280176005124\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719280176005124\\/pu\\/img\\/6WUAXhWcB8lXi_Vl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719280176005124\\/pu\\/img\\/6WUAXhWcB8lXi_Vl.jpg\",\"url\":\"https:\\/\\/t.co\\/ch7V71uNKt\",\"display_url\":\"pic.twitter.com\\/ch7V71uNKt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingpin10123\\/status\\/1554719449856765952\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2711\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[28,34]},{\"text\":\"US\",\"indices\":[36,39]},{\"text\":\"NancyPelosi\",\"indices\":[54,66]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fakudet\",\"name\":\"Thembisa Fakude\",\"id\":127301823,\"id_str\":\"127301823\",\"indices\":[104,112]},{\"screen_name\":\"Afrasid_\",\"name\":\"AFRASID\",\"id\":1475070370117996546,\"id_str\":\"1475070370117996546\",\"indices\":[145,154]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I8NNEgeWCV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/broadcasts\\/1YqxopvnBdyKv\",\"display_url\":\"twitter.com\\/i\\/broadcasts\\/1\\u2026\",\"indices\":[168,191]}]},\"2712\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[223,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"ChinaTaiwan\",\"indices\":[240,252]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LivePretoria\",\"name\":\"PretoriaLIVE\",\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"indices\":[254,267]}],\"urls\":[],\"media\":[{\"id\":1554713730419769344,\"id_str\":\"1554713730419769344\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNz5o0XwAAG-Rj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNz5o0XwAAG-Rj.jpg\",\"url\":\"https:\\/\\/t.co\\/0t4gHSHDMN\",\"display_url\":\"pic.twitter.com\\/0t4gHSHDMN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554713733607342080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":375,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":375,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"}}}]},\"2713\":{\"hashtags\":[{\"text\":\"Kaya\",\"indices\":[222,227]},{\"text\":\"Krugersdorp\",\"indices\":[228,240]},{\"text\":\"Shisanyama\",\"indices\":[241,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"whites\",\"indices\":[261,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554712887142277120,\"id_str\":\"1554712887142277120\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzIjXWYAA6LJD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzIjXWYAA6LJD.jpg\",\"url\":\"https:\\/\\/t.co\\/OW4U4UvXzE\",\"display_url\":\"pic.twitter.com\\/OW4U4UvXzE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/netha_fn\\/status\\/1554712896839589894\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2714\":{\"hashtags\":[{\"text\":\"LetsFixSouthAfrica\",\"indices\":[240,259]},{\"text\":\"Pelosi\",\"indices\":[260,267]},{\"text\":\"China\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Eskom_SA\",\"name\":\"Eskom Hld SOC Ltd\",\"id\":466420346,\"id_str\":\"466420346\",\"indices\":[11,20]},{\"screen_name\":\"PresJGZuma\",\"name\":\"Jacob G Zuma\",\"id\":1068480961808162816,\"id_str\":\"1068480961808162816\",\"indices\":[189,200]},{\"screen_name\":\"Newzroom405\",\"name\":\"Newzroom Afrika\",\"id\":1085786884566118400,\"id_str\":\"1085786884566118400\",\"indices\":[201,213]},{\"screen_name\":\"SABCNews\",\"name\":\"SABC News\",\"id\":25088746,\"id_str\":\"25088746\",\"indices\":[214,223]},{\"screen_name\":\"SAfmnews\",\"name\":\"SAfm news\",\"id\":82578750,\"id_str\":\"82578750\",\"indices\":[224,233]},{\"screen_name\":\"eNCA\",\"name\":\"eNCA\",\"id\":301309392,\"id_str\":\"301309392\",\"indices\":[234,239]}],\"urls\":[],\"media\":[{\"id\":1554696014514331649,\"id_str\":\"1554696014514331649\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNjyb7XoAEhHMB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNjyb7XoAEhHMB.jpg\",\"url\":\"https:\\/\\/t.co\\/QhTsxx9rBK\",\"display_url\":\"pic.twitter.com\\/QhTsxx9rBK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZandySeal\\/status\\/1554696017110507520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":403,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":455,\"resize\":\"fit\"}}}]},\"2715\":{\"hashtags\":[{\"text\":\"RETWEET\",\"indices\":[28,36]},{\"text\":\"ramaphosamustgo\",\"indices\":[117,133]},{\"text\":\"Krugersdorp\",\"indices\":[134,146]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"BeautyWithBrains\",\"indices\":[186,203]},{\"text\":\"PhalaPhalaFarmGate\",\"indices\":[212,231]},{\"text\":\"Tembisa\",\"indices\":[232,240]},{\"text\":\"etvScandal\",\"indices\":[241,252]},{\"text\":\"ZamaZamas\",\"indices\":[258,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qn9w7UP6rp\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2790679950\",\"display_url\":\"wa.me\\/+2790679950\",\"indices\":[81,104]}],\"media\":[{\"id\":1554695448979509249,\"id_str\":\"1554695448979509249\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNjRhJXEAEGGWC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNjRhJXEAEGGWC.jpg\",\"url\":\"https:\\/\\/t.co\\/vSiTSGunjh\",\"display_url\":\"pic.twitter.com\\/vSiTSGunjh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MbusoProBet_ZA\\/status\\/1554695462292176896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":359,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":204,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":613,\"h\":2048,\"resize\":\"fit\"}}}]},\"2716\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"China\",\"indices\":[163,169]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2717\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[14,20]},{\"text\":\"Taiwan\",\"indices\":[63,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2718\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[231,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/39QE2fpbGN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/business\\/status\\/1554689538391416832\",\"display_url\":\"twitter.com\\/business\\/statu\\u2026\",\"indices\":[247,270]}]},\"2719\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[62,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554680211454758914,\"id_str\":\"1554680211454758914\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNVak8XEAIMe4G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNVak8XEAIMe4G.jpg\",\"url\":\"https:\\/\\/t.co\\/m6COG8Mwow\",\"display_url\":\"pic.twitter.com\\/m6COG8Mwow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554680242102767617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}}]},\"2720\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[121,127]},{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"China\",\"indices\":[144,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554675223357800453,\"id_str\":\"1554675223357800453\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675223357800453\\/pu\\/img\\/p_T2zd5RXBUdmxXp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675223357800453\\/pu\\/img\\/p_T2zd5RXBUdmxXp.jpg\",\"url\":\"https:\\/\\/t.co\\/7JzF438P9T\",\"display_url\":\"pic.twitter.com\\/7JzF438P9T\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EvolvingAfrican\\/status\\/1554675724656807942\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2721\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[21,27]},{\"text\":\"Pelosi\",\"indices\":[145,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2722\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Mnakwethu\",\"indices\":[60,70]},{\"text\":\"PodcastAndChill\",\"indices\":[71,87]},{\"text\":\"China\",\"indices\":[88,94]},{\"text\":\"WorldWarIII\",\"indices\":[95,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554645851590598656,\"id_str\":\"1554645851590598656\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554645851590598656\\/pu\\/img\\/HJ0RwOP2p6Vld1J1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554645851590598656\\/pu\\/img\\/HJ0RwOP2p6Vld1J1.jpg\",\"url\":\"https:\\/\\/t.co\\/Fol7OGY40C\",\"display_url\":\"pic.twitter.com\\/Fol7OGY40C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EvnsMamabolo\\/status\\/1554645939704528897\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"2723\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Mmw0CUknda\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zerohedge\\/status\\/1554632463443427331\",\"display_url\":\"twitter.com\\/zerohedge\\/stat\\u2026\",\"indices\":[60,83]}]},\"2724\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"China\",\"indices\":[100,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554616315712868353,\"id_str\":\"1554616315712868353\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMbTWwXkAEw-ts.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMbTWwXkAEw-ts.jpg\",\"url\":\"https:\\/\\/t.co\\/Xux9FY51lf\",\"display_url\":\"pic.twitter.com\\/Xux9FY51lf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SakhyKhuzwayo\\/status\\/1554616325926002688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1231,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":721,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"2725\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[135,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BN5rqAP2lI\",\"expanded_url\":\"https:\\/\\/www.reuters.com\\/article\\/us-usa-shutdown-idUSKCN1PB2TG\",\"display_url\":\"reuters.com\\/article\\/us-usa\\u2026\",\"indices\":[111,134]}]},\"2726\":{\"hashtags\":[{\"text\":\"thatsmoney\",\"indices\":[191,202]},{\"text\":\"WWIII\",\"indices\":[223,229]},{\"text\":\"DiepCityMzansi\",\"indices\":[236,251]},{\"text\":\"ClimateScam\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2727\":{\"hashtags\":[{\"text\":\"i_cant_imagine\",\"indices\":[24,39]},{\"text\":\"StrangerThings\",\"indices\":[80,95]},{\"text\":\"China\",\"indices\":[118,124]},{\"text\":\"Pelosi\",\"indices\":[125,132]},{\"text\":\"Nota\",\"indices\":[133,138]},{\"text\":\"WorldWarIII\",\"indices\":[139,151]},{\"text\":\"27August\",\"indices\":[152,161]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Nasty_CSA\",\"name\":\"IVYSON\",\"id\":575508800,\"id_str\":\"575508800\",\"indices\":[13,23]}],\"urls\":[],\"media\":[{\"id\":1554585246498267142,\"id_str\":\"1554585246498267142\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554585246498267142\\/pu\\/img\\/4XxuafNiHhq1qWHN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554585246498267142\\/pu\\/img\\/4XxuafNiHhq1qWHN.jpg\",\"url\":\"https:\\/\\/t.co\\/LGmUXmjO7R\",\"display_url\":\"pic.twitter.com\\/LGmUXmjO7R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Pro_Cyn\\/status\\/1554585298876747776\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":306,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":576,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":540,\"resize\":\"fit\"}}}]},\"2728\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[168,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"NancyPelosi\",\"indices\":[183,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2729\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"China\",\"indices\":[59,65]},{\"text\":\"Somizi\",\"indices\":[66,73]},{\"text\":\"Mnakwethu\",\"indices\":[74,84]},{\"text\":\"SkeemSaam\",\"indices\":[85,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2730\":{\"hashtags\":[{\"text\":\"blueface\",\"indices\":[78,87]},{\"text\":\"chriseanrock\",\"indices\":[88,101]},{\"text\":\"Taiwan\",\"indices\":[102,109]},{\"text\":\"BBNaija\",\"indices\":[110,118]},{\"text\":\"BBNajiaS7\",\"indices\":[119,129]},{\"text\":\"somizi\",\"indices\":[130,137]},{\"text\":\"nota\",\"indices\":[138,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554575917426642945,\"id_str\":\"1554575917426642945\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554575917426642945\\/pu\\/img\\/pO2RGBKUJGQbLvs0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554575917426642945\\/pu\\/img\\/pO2RGBKUJGQbLvs0.jpg\",\"url\":\"https:\\/\\/t.co\\/YPqOvZqkwr\",\"display_url\":\"pic.twitter.com\\/YPqOvZqkwr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WithPraisee\\/status\\/1554578542633140224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":676,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":724,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":724,\"resize\":\"fit\"}}}]},\"2731\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[225,232]},{\"text\":\"China\",\"indices\":[233,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2732\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[48,55]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"China\",\"indices\":[64,70]},{\"text\":\"Krugersdorp\",\"indices\":[71,83]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2733\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[96,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JIKuxQ2mxJ\",\"expanded_url\":\"https:\\/\\/d8-earn.buzz\\/810665335708\",\"display_url\":\"d8-earn.buzz\\/810665335708\",\"indices\":[72,95]}]},\"2734\":{\"hashtags\":[{\"text\":\"America\",\"indices\":[6,14]},{\"text\":\"China\",\"indices\":[26,32]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[62,80]},{\"text\":\"Chinese\",\"indices\":[111,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[183,197]}],\"urls\":[],\"media\":[{\"id\":1554553192435912711,\"id_str\":\"1554553192435912711\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLh5GOXkAcDbsI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLh5GOXkAcDbsI.jpg\",\"url\":\"https:\\/\\/t.co\\/NhDU1oDGXS\",\"display_url\":\"pic.twitter.com\\/NhDU1oDGXS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NNehoreka\\/status\\/1554559619569270785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":724,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":724,\"h\":1024,\"resize\":\"fit\"}}}]},\"2735\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[211,222]},{\"text\":\"WWIII\",\"indices\":[241,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aAm1s8lUcD\",\"expanded_url\":\"https:\\/\\/youtu.be\\/TxzxwJDYYLk\",\"display_url\":\"youtu.be\\/TxzxwJDYYLk\",\"indices\":[29,52]}],\"media\":[{\"id\":1554552795956744198,\"id_str\":\"1554552795956744198\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552795956744198\\/pu\\/img\\/_vX4Mw6YHa00Me2R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552795956744198\\/pu\\/img\\/_vX4Mw6YHa00Me2R.jpg\",\"url\":\"https:\\/\\/t.co\\/4iMHRu1d8D\",\"display_url\":\"pic.twitter.com\\/4iMHRu1d8D\",\"expanded_url\":\"https:\\/\\/twitter.com\\/serotobale\\/status\\/1554553478655221760\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2736\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[171,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dineoranaka\",\"name\":\"#UKHONA OUT NOW\",\"id\":41605989,\"id_str\":\"41605989\",\"indices\":[40,52]},{\"screen_name\":\"MacGUnleashed\",\"name\":\"MacG \\ud83c\\uddff\\ud83c\\udde6\",\"id\":21162262,\"id_str\":\"21162262\",\"indices\":[60,74]},{\"screen_name\":\"Solphendukaa\",\"name\":\"Solomzi\",\"id\":1332282181755019264,\"id_str\":\"1332282181755019264\",\"indices\":[85,98]},{\"screen_name\":\"podcastwithmacg\",\"name\":\"Podcast with MacG\",\"id\":1063371800611041280,\"id_str\":\"1063371800611041280\",\"indices\":[108,124]}],\"urls\":[]},\"2737\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"Taiwan\",\"indices\":[53,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554541307346944007,\"id_str\":\"1554541307346944007\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLXFS0WAAckZsX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLXFS0WAAckZsX.jpg\",\"url\":\"https:\\/\\/t.co\\/MjMZg9MvlZ\",\"display_url\":\"pic.twitter.com\\/MjMZg9MvlZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/breezymak\\/status\\/1554541309792329729\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":586,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":586,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":586,\"resize\":\"fit\"}}}]},\"2738\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[194,204]},{\"text\":\"BB24\",\"indices\":[217,222]},{\"text\":\"etvScandal\",\"indices\":[224,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539853328572416,\"id_str\":\"1554539853328572416\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVwqLWYAAbBUH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVwqLWYAAbBUH.jpg\",\"url\":\"https:\\/\\/t.co\\/AXEJlyAdII\",\"display_url\":\"pic.twitter.com\\/AXEJlyAdII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sniper_E_Master\\/status\\/1554540400534294535\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1440,\"resize\":\"fit\"}}}]},\"2739\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"Thembisa\",\"indices\":[81,90]},{\"text\":\"helicopter\",\"indices\":[91,102]},{\"text\":\"Pelosi\",\"indices\":[103,110]},{\"text\":\"tuesdayvibe\",\"indices\":[111,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YvsXe27SXK\",\"expanded_url\":\"http:\\/\\/Www.Iscathulo.com\",\"display_url\":\"Iscathulo.com\",\"indices\":[48,71]}],\"media\":[{\"id\":1554539623396921345,\"id_str\":\"1554539623396921345\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVjRnX0AEFATT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVjRnX0AEFATT.jpg\",\"url\":\"https:\\/\\/t.co\\/JmYMwBZuk8\",\"display_url\":\"pic.twitter.com\\/JmYMwBZuk8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iscathulo_SA\\/status\\/1554539640404811780\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":799,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1364,\"h\":2048,\"resize\":\"fit\"}}}]},\"2740\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[149,156]},{\"text\":\"China\",\"indices\":[157,163]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PetersWonderboy\",\"name\":\"Wonderboy Peters\",\"id\":1199068813955915777,\"id_str\":\"1199068813955915777\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554538812235186178,\"id_str\":\"1554538812235186178\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLU0DzWAAI4WPs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLU0DzWAAI4WPs.jpg\",\"url\":\"https:\\/\\/t.co\\/pyRcdH2hkM\",\"display_url\":\"pic.twitter.com\\/pyRcdH2hkM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DrPatriotSA\\/status\\/1554538822553190409\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":498,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":494,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":494,\"resize\":\"fit\"}}}]},\"2741\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[0,6]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554538307144617990,\"id_str\":\"1554538307144617990\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUWqMXkAYk4hq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUWqMXkAYk4hq.jpg\",\"url\":\"https:\\/\\/t.co\\/AKtRyjzCDU\",\"display_url\":\"pic.twitter.com\\/AKtRyjzCDU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shabathegreat\\/status\\/1554538310940360706\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":374,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":374,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":374,\"resize\":\"fit\"}}}]},\"2742\":{\"hashtags\":[{\"text\":\"localcontent\",\"indices\":[83,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"helicopter\",\"indices\":[105,116]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[117,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]},{\"text\":\"YEEZYDAY\",\"indices\":[148,157]},{\"text\":\"tuesdayvibe\",\"indices\":[158,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IFeERx16nI\",\"expanded_url\":\"http:\\/\\/Www.Iscathulo.com\",\"display_url\":\"Iscathulo.com\",\"indices\":[58,81]}],\"media\":[{\"id\":1554535226675789825,\"id_str\":\"1554535226675789825\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLRjWjXgAEyUMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLRjWjXgAEyUMh.jpg\",\"url\":\"https:\\/\\/t.co\\/XwTtvAncfE\",\"display_url\":\"pic.twitter.com\\/XwTtvAncfE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RudzaniWiseman\\/status\\/1554535272053874695\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":799,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1364,\"h\":2048,\"resize\":\"fit\"}}}]},\"2743\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[51,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2744\":{\"hashtags\":[{\"text\":\"Russia\",\"indices\":[26,33]},{\"text\":\"Ukraine\",\"indices\":[42,50]},{\"text\":\"China\",\"indices\":[90,96]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"Taiwan\",\"indices\":[122,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2745\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554531263813394436,\"id_str\":\"1554531263813394436\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLN8rvWIAQufkp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLN8rvWIAQufkp.jpg\",\"url\":\"https:\\/\\/t.co\\/rCNlRayEuh\",\"display_url\":\"pic.twitter.com\\/rCNlRayEuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OnlyRhangani\\/status\\/1554531270889291777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":576,\"h\":504,\"resize\":\"fit\"},\"small\":{\"w\":576,\"h\":504,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":504,\"resize\":\"fit\"}}}]},\"2746\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[186,204]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[206,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554531041339232257,\"id_str\":\"1554531041339232257\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLNvu9X0AEyzEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLNvu9X0AEyzEL.jpg\",\"url\":\"https:\\/\\/t.co\\/OobwhYmXCh\",\"display_url\":\"pic.twitter.com\\/OobwhYmXCh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoeMajozie\\/status\\/1554531043562213377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":627,\"h\":418,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":627,\"h\":418,\"resize\":\"fit\"},\"large\":{\"w\":627,\"h\":418,\"resize\":\"fit\"}}}]},\"2747\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[139,146]},{\"text\":\"Taiwan\",\"indices\":[147,154]},{\"text\":\"\\u4e2d\\u56fd\",\"indices\":[155,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2748\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sentletse\",\"name\":\"Sentletse \\ud83c\\uddf7\\ud83c\\uddfa\\ud83c\\uddff\\ud83c\\udde6\",\"id\":40548465,\"id_str\":\"40548465\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554530653554753537,\"id_str\":\"1554530653554753537\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554530653554753537\\/pu\\/img\\/7kiKZGveVm7PNzfh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554530653554753537\\/pu\\/img\\/7kiKZGveVm7PNzfh.jpg\",\"url\":\"https:\\/\\/t.co\\/u1X6S8OCS9\",\"display_url\":\"pic.twitter.com\\/u1X6S8OCS9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ntembekoS\\/status\\/1554530700992430081\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":640,\"resize\":\"fit\"}}}]},\"2749\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"Pelosi\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2750\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[129,147]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554528550748917764,\"id_str\":\"1554528550748917764\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLLewyXkAQ_b1e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLLewyXkAQ_b1e.jpg\",\"url\":\"https:\\/\\/t.co\\/cpQhxyS60y\",\"display_url\":\"pic.twitter.com\\/cpQhxyS60y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DrPatriotSA\\/status\\/1554528555404611587\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"2751\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[153,165]},{\"text\":\"NancyPelositaiwan\",\"indices\":[166,184]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[185,203]},{\"text\":\"China\",\"indices\":[204,210]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LxFPHyVYeR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thabangdikaee\\/status\\/1554125364460490753\",\"display_url\":\"twitter.com\\/thabangdikaee\\/\\u2026\",\"indices\":[211,234]}],\"media\":[{\"id\":1554525075688361986,\"id_str\":\"1554525075688361986\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLIUfLXkAIjWny.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLIUfLXkAIjWny.jpg\",\"url\":\"https:\\/\\/t.co\\/493WacWKBG\",\"display_url\":\"pic.twitter.com\\/493WacWKBG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thabangdikaee\\/status\\/1554525081367461889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":459,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":459,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":459,\"h\":600,\"resize\":\"fit\"}}}]},\"2752\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[107,113]},{\"text\":\"tuesdayvibe\",\"indices\":[211,223]},{\"text\":\"Taiwan\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eTvwwM8cJH\",\"expanded_url\":\"https:\\/\\/youtu.be\\/_QBfwgfd0W8\",\"display_url\":\"youtu.be\\/_QBfwgfd0W8\",\"indices\":[53,76]}],\"media\":[{\"id\":1554517828430184449,\"id_str\":\"1554517828430184449\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554517828430184449\\/pu\\/img\\/amBmntpgrelFELVZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554517828430184449\\/pu\\/img\\/amBmntpgrelFELVZ.jpg\",\"url\":\"https:\\/\\/t.co\\/roEvq8iwc2\",\"display_url\":\"pic.twitter.com\\/roEvq8iwc2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vaderrr_ggm\\/status\\/1554518083112353792\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1082,\"resize\":\"fit\"}}}]},\"2753\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2754\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[37,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2755\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Taiwan\",\"indices\":[65,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KhayaJames\",\"name\":\"KhayelihleKhumalo-James Jnr\",\"id\":1456545516,\"id_str\":\"1456545516\",\"indices\":[23,34]}],\"urls\":[]},\"2756\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[173,180]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"2757\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[17,23]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2758\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[9,16]},{\"text\":\"US\",\"indices\":[19,22]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554509948494782465,\"id_str\":\"1554509948494782465\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509948494782465\\/pu\\/img\\/AvQXIN_3HP8ocMsf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509948494782465\\/pu\\/img\\/AvQXIN_3HP8ocMsf.jpg\",\"url\":\"https:\\/\\/t.co\\/5K0yUJdw18\",\"display_url\":\"pic.twitter.com\\/5K0yUJdw18\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lastki2King\\/status\\/1554510243580755971\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2759\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554509780647116805,\"id_str\":\"1554509780647116805\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6aMtXgAUSWLB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6aMtXgAUSWLB.jpg\",\"url\":\"https:\\/\\/t.co\\/AqJKsLOsxh\",\"display_url\":\"pic.twitter.com\\/AqJKsLOsxh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TamsanqaMkoko\\/status\\/1554509787680935950\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1170,\"h\":1150,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1170,\"h\":1150,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"}}}]},\"2760\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2761\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[173,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"dontpayuk\",\"indices\":[188,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554502557095149570,\"id_str\":\"1554502557095149570\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554502557095149570\\/img\\/hI-QZm8cFXAqmLSd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554502557095149570\\/img\\/hI-QZm8cFXAqmLSd.jpg\",\"url\":\"https:\\/\\/t.co\\/n0sReOf9zK\",\"display_url\":\"pic.twitter.com\\/n0sReOf9zK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/business\\/status\\/1554503541112410114\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}},\"source_status_id\":1554503541112410114,\"source_status_id_str\":\"1554503541112410114\",\"source_user_id\":34713362,\"source_user_id_str\":\"34713362\"}]},\"2762\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[119,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"China\",\"indices\":[135,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2763\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[34,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[49,67]},{\"text\":\"dontpayuk\",\"indices\":[68,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500466029088769,\"id_str\":\"1554500466029088769\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKx8BDX0AEqw8n.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKx8BDX0AEqw8n.jpg\",\"url\":\"https:\\/\\/t.co\\/wfcKf4fzdC\",\"display_url\":\"pic.twitter.com\\/wfcKf4fzdC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/joas_moloto\\/status\\/1554500469648756738\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1344,\"resize\":\"fit\"},\"small\":{\"w\":546,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":964,\"h\":1200,\"resize\":\"fit\"}}}]},\"2764\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2765\":{\"hashtags\":[{\"text\":\"USAirForce\",\"indices\":[74,85]},{\"text\":\"Cuba\",\"indices\":[99,104]},{\"text\":\"XiJinping\",\"indices\":[123,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554495757314625538,\"id_str\":\"1554495757314625538\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKtp7uXEAIXSa8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKtp7uXEAIXSa8.jpg\",\"url\":\"https:\\/\\/t.co\\/56IvZquu0h\",\"display_url\":\"pic.twitter.com\\/56IvZquu0h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shabs_i_r\\/status\\/1554495766860800002\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":498,\"h\":280,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":280,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":280,\"resize\":\"fit\"}}}]},\"2766\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[103,110]},{\"text\":\"China\",\"indices\":[111,117]},{\"text\":\"ChinaTaiwan\",\"indices\":[118,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2767\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2768\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[81,88]},{\"text\":\"China\",\"indices\":[89,95]},{\"text\":\"ChinaTaiwan\",\"indices\":[96,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2769\":{\"hashtags\":[{\"text\":\"publicProtector\",\"indices\":[100,116]},{\"text\":\"mkhwebaneimpeachment\",\"indices\":[126,147]},{\"text\":\"DaliMpofu\",\"indices\":[148,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2770\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[8,14]},{\"text\":\"The\",\"indices\":[15,19]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490154169008130,\"id_str\":\"1554490154169008130\",\"indices\":[28,51],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKojyYWAAIEa5y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKojyYWAAIEa5y.jpg\",\"url\":\"https:\\/\\/t.co\\/O2MURMyCfd\",\"display_url\":\"pic.twitter.com\\/O2MURMyCfd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MaxwellPhakath3\\/status\\/1554490164868792320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1157,\"h\":753,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":443,\"resize\":\"fit\"},\"large\":{\"w\":1157,\"h\":753,\"resize\":\"fit\"}}}]},\"2771\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[74,80]},{\"text\":\"Pelosi\",\"indices\":[81,88]},{\"text\":\"XiJinping\",\"indices\":[89,99]},{\"text\":\"taiwanwar\",\"indices\":[100,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554489855316475905,\"id_str\":\"1554489855316475905\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKoSZEWQAExk8D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKoSZEWQAExk8D.jpg\",\"url\":\"https:\\/\\/t.co\\/Uhn4Xr4kcc\",\"display_url\":\"pic.twitter.com\\/Uhn4Xr4kcc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mncebans\\/status\\/1554489863310827521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1446,\"resize\":\"fit\"},\"medium\":{\"w\":896,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":680,\"resize\":\"fit\"}}}]},\"2772\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YoungFrankTalk\",\"name\":\"Tshepo\",\"id\":239461635,\"id_str\":\"239461635\",\"indices\":[105,120]}],\"urls\":[]},\"2773\":{\"hashtags\":[{\"text\":\"CramDeckerChallenge\",\"indices\":[85,105]},{\"text\":\"Thembisa\",\"indices\":[106,115]},{\"text\":\"pelosi\",\"indices\":[116,123]},{\"text\":\"IStandWithSithelo\",\"indices\":[124,142]},{\"text\":\"IdolSA\",\"indices\":[222,229]},{\"text\":\"ThePopeOfPopCulture\",\"indices\":[230,250]},{\"text\":\"SkeemSaam\",\"indices\":[256,266]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RFBhpPxb1w\",\"expanded_url\":\"https:\\/\\/youtu.be\\/DCIOSkA0DZs\",\"display_url\":\"youtu.be\\/DCIOSkA0DZs\",\"indices\":[61,84]}],\"media\":[{\"id\":1554486685232238592,\"id_str\":\"1554486685232238592\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKlZ3lXkAAIO14.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKlZ3lXkAAIO14.jpg\",\"url\":\"https:\\/\\/t.co\\/Wlc7x6tM2p\",\"display_url\":\"pic.twitter.com\\/Wlc7x6tM2p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SASOCIALMEDIANE\\/status\\/1554486695206297601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"2774\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[10,17]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"spar19\",\"indices\":[158,165]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2775\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[43,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2776\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[17,23]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2777\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[11,18]},{\"text\":\"China\",\"indices\":[21,27]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2778\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"China\",\"indices\":[73,79]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2779\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[82,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"China\",\"indices\":[98,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2780\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[27,34]},{\"text\":\"NancyPelosi\",\"indices\":[169,181]},{\"text\":\"WWIII\",\"indices\":[182,188]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554479225855418368,\"id_str\":\"1554479225855418368\",\"indices\":[207,230],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKenrPWIAAC9rI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKenrPWIAAC9rI.jpg\",\"url\":\"https:\\/\\/t.co\\/AFHM8HOQfo\",\"display_url\":\"pic.twitter.com\\/AFHM8HOQfo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katsomedia24\\/status\\/1554479228913127425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"small\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":568,\"h\":328,\"resize\":\"fit\"}}}]},\"2781\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"ChinaTaiwan\",\"indices\":[41,53]},{\"text\":\"Pelosi\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChinaAmbSA\",\"name\":\"AmbCHENXiaodong\",\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"indices\":[12,23]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3bKCqgzLvc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/digidiploTaiwan\\/status\\/1468476586186129408\",\"display_url\":\"twitter.com\\/digidiploTaiwa\\u2026\",\"indices\":[62,85]}]},\"2782\":{\"hashtags\":[{\"text\":\"spar19\",\"indices\":[0,7]},{\"text\":\"Pelosi\",\"indices\":[155,162]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2783\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[7,14]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"China\",\"indices\":[169,175]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JoeBiden\",\"name\":\"Joe Biden\",\"id\":939091,\"id_str\":\"939091\",\"indices\":[44,53]},{\"screen_name\":\"SecBlinken\",\"name\":\"Secretary Antony Blinken\",\"id\":1350150750966603777,\"id_str\":\"1350150750966603777\",\"indices\":[96,107]}],\"urls\":[],\"media\":[{\"id\":1554478697591312385,\"id_str\":\"1554478697591312385\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478697591312385\\/pu\\/img\\/wE2eZfNZHzmtQsxG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478697591312385\\/pu\\/img\\/wE2eZfNZHzmtQsxG.jpg\",\"url\":\"https:\\/\\/t.co\\/EscvsPxmiY\",\"display_url\":\"pic.twitter.com\\/EscvsPxmiY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NNehoreka\\/status\\/1554478892198625286\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"2784\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"Pelosi\",\"indices\":[43,50]},{\"text\":\"China\",\"indices\":[51,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2785\":{\"hashtags\":[{\"text\":\"Breaking\",\"indices\":[0,9]},{\"text\":\"Taiwan\",\"indices\":[69,76]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2786\":{\"hashtags\":[{\"text\":\"PhalaPhalaGateFarm\",\"indices\":[24,43]},{\"text\":\"julyunrest\",\"indices\":[65,76]},{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"RamaphosaMustGo\",\"indices\":[158,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_AfricanSoil\",\"name\":\"Sphithiphithi Evaluator\",\"id\":1063336350,\"id_str\":\"1063336350\",\"indices\":[99,112]},{\"screen_name\":\"Ngizwe_Mchunu\",\"name\":\"NgizweMchunu\",\"id\":1680462924,\"id_str\":\"1680462924\",\"indices\":[113,127]}],\"urls\":[]},\"2787\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[5,12]},{\"text\":\"China\",\"indices\":[16,22]},{\"text\":\"UnitedStates\",\"indices\":[26,39]},{\"text\":\"Pelosi\",\"indices\":[40,47]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2788\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"USChina\",\"indices\":[76,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2789\":{\"hashtags\":[{\"text\":\"zakweversechallange\",\"indices\":[214,234]},{\"text\":\"hippop\",\"indices\":[235,242]},{\"text\":\"rap\",\"indices\":[244,248]},{\"text\":\"stage2\",\"indices\":[250,257]},{\"text\":\"Pelosi\",\"indices\":[259,266]},{\"text\":\"andile\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZakweSA\",\"name\":\"Cebisa\",\"id\":271673784,\"id_str\":\"271673784\",\"indices\":[117,125]},{\"screen_name\":\"ZakweSA\",\"name\":\"Cebisa\",\"id\":271673784,\"id_str\":\"271673784\",\"indices\":[153,161]},{\"screen_name\":\"DuncanSkuva\",\"name\":\"#ZAKWE&DUNCAN\",\"id\":176846466,\"id_str\":\"176846466\",\"indices\":[162,174]},{\"screen_name\":\"BigZulu_ZN\",\"name\":\"Big Zulu\",\"id\":3077041761,\"id_str\":\"3077041761\",\"indices\":[175,186]},{\"screen_name\":\"casspernyovest\",\"name\":\"Don Billiato\",\"id\":183253150,\"id_str\":\"183253150\",\"indices\":[187,202]},{\"screen_name\":\"ZamohCofi\",\"name\":\"Zamoh Cofi\",\"id\":1124244683373334529,\"id_str\":\"1124244683373334529\",\"indices\":[203,213]}],\"urls\":[],\"media\":[{\"id\":1554457134791856129,\"id_str\":\"1554457134791856129\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554457134791856129\\/pu\\/img\\/9p76OAUqcnfOa_HV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554457134791856129\\/pu\\/img\\/9p76OAUqcnfOa_HV.jpg\",\"url\":\"https:\\/\\/t.co\\/vDQRp0yqRL\",\"display_url\":\"pic.twitter.com\\/vDQRp0yqRL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MR_MoreTAR\\/status\\/1554457188806049793\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":900,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"}}}]},\"2790\":{\"hashtags\":[{\"text\":\"fintwit\",\"indices\":[119,127]},{\"text\":\"StockMarket\",\"indices\":[128,140]},{\"text\":\"pelosi\",\"indices\":[141,148]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dougboneparth\",\"name\":\"Douglas A. Boneparth\",\"id\":158049457,\"id_str\":\"158049457\",\"indices\":[3,17]}],\"urls\":[]},\"2791\":{\"hashtags\":[{\"text\":\"DjSBU\",\"indices\":[76,82]},{\"text\":\"imvelo\",\"indices\":[83,90]},{\"text\":\"IStandWithSithelo\",\"indices\":[92,110]},{\"text\":\"Taiwan\",\"indices\":[111,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554449136623255558,\"id_str\":\"1554449136623255558\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDQQHXgAYmwSB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDQQHXgAYmwSB.jpg\",\"url\":\"https:\\/\\/t.co\\/2gHeUoCHhy\",\"display_url\":\"pic.twitter.com\\/2gHeUoCHhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blacjesusernest\\/status\\/1554449181854601220\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2792\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[80,87]},{\"text\":\"taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DrMikey13\",\"name\":\"Dr_Mikey\\ud83c\\uddfa\\ud83c\\uddf8 \\ud83d\\udc99\\ud83d\\udc9b\",\"id\":1379763568074235906,\"id_str\":\"1379763568074235906\",\"indices\":[0,10]},{\"screen_name\":\"GDarkconrad\",\"name\":\"Manu G\\u00f3mez\",\"id\":760761161910460416,\"id_str\":\"760761161910460416\",\"indices\":[11,23]}],\"urls\":[]},\"2793\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[10,17]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2794\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"pelositaiwan\",\"indices\":[39,52]},{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"china\",\"indices\":[61,67]},{\"text\":\"usa\",\"indices\":[68,72]},{\"text\":\"fintwit\",\"indices\":[73,81]},{\"text\":\"trading\",\"indices\":[82,90]},{\"text\":\"podcast\",\"indices\":[91,99]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ProSlackerverse\",\"name\":\"Pro Slackers Universe\",\"id\":1479131681495916544,\"id_str\":\"1479131681495916544\",\"indices\":[102,118]}],\"urls\":[],\"media\":[{\"id\":1554447421517750273,\"id_str\":\"1554447421517750273\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKBsa2WYAEJzIr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKBsa2WYAEJzIr.jpg\",\"url\":\"https:\\/\\/t.co\\/N9ZqGf3VN7\",\"display_url\":\"pic.twitter.com\\/N9ZqGf3VN7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sgmpodcst\\/status\\/1554447424743145473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":1636,\"h\":764,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":560,\"resize\":\"fit\"}}}]},\"2795\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[108,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"NancyPelosi\",\"indices\":[127,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EzhRocZzpB\",\"expanded_url\":\"https:\\/\\/www.ft.com\\/content\\/3450039a-0315-449d-890a-aff67f1a083c\",\"display_url\":\"ft.com\\/content\\/345003\\u2026\",\"indices\":[84,107]}]},\"2796\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"China\",\"indices\":[65,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554445545602793473,\"id_str\":\"1554445545602793473\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ__OhXwAEkQp_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ__OhXwAEkQp_.jpg\",\"url\":\"https:\\/\\/t.co\\/NAdqxigYof\",\"display_url\":\"pic.twitter.com\\/NAdqxigYof\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Shaidz\\/status\\/1554445549478330370\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":922,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"}}}]},\"2797\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"JacksonWang\",\"indices\":[59,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554443688658575362,\"id_str\":\"1554443688658575362\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ-TI3XoAIlLR9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ-TI3XoAIlLR9.jpg\",\"url\":\"https:\\/\\/t.co\\/9BeySZNhIz\",\"display_url\":\"pic.twitter.com\\/9BeySZNhIz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nianyi_yishujia\\/status\\/1554443692014010369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1552,\"h\":1552,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2798\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[86,92]},{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2799\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"JacksonWang\",\"indices\":[29,41]},{\"text\":\"helicopter\",\"indices\":[42,53]},{\"text\":\"SouthAfrican\",\"indices\":[54,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554443348676591617,\"id_str\":\"1554443348676591617\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WVWQAEjeAl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WVWQAEjeAl.jpg\",\"url\":\"https:\\/\\/t.co\\/4dKijouIaE\",\"display_url\":\"pic.twitter.com\\/4dKijouIaE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/035Trendsetter\\/status\\/1554443355383373824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":457,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":457,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":457,\"resize\":\"fit\"}}}]},\"2800\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2801\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[11,18]},{\"text\":\"Taiwan\",\"indices\":[75,82]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2802\":{\"hashtags\":[{\"text\":\"flightradar24\",\"indices\":[0,14]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"Taiwan\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2803\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2804\":{\"hashtags\":[{\"text\":\"Russia\",\"indices\":[195,202]},{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"USA\",\"indices\":[211,215]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[216,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2805\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[132,139]},{\"text\":\"Taiwan\",\"indices\":[140,147]},{\"text\":\"China\",\"indices\":[148,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DJOCxyzztW\",\"expanded_url\":\"https:\\/\\/www.ft.com\\/content\\/a2a69c08-b327-4a4d-99ff-20f92a4437f3\",\"display_url\":\"ft.com\\/content\\/a2a69c\\u2026\",\"indices\":[53,76]}]},\"2806\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[140,147]},{\"text\":\"ChinaTaiwanWar\",\"indices\":[148,163]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LivePretoria\",\"name\":\"PretoriaLIVE\",\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"indices\":[165,178]}],\"urls\":[],\"media\":[{\"id\":1554414416040452103,\"id_str\":\"1554414416040452103\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJjrP3WYAclSdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJjrP3WYAclSdI.jpg\",\"url\":\"https:\\/\\/t.co\\/fAsforigNa\",\"display_url\":\"pic.twitter.com\\/fAsforigNa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554414418879979521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2807\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LivePretoria\",\"name\":\"PretoriaLIVE\",\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"indices\":[242,255]}],\"urls\":[],\"media\":[{\"id\":1554413464898228225,\"id_str\":\"1554413464898228225\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiz4lX0AEs5zY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiz4lX0AEs5zY.jpg\",\"url\":\"https:\\/\\/t.co\\/K1PNNdGn6i\",\"display_url\":\"pic.twitter.com\\/K1PNNdGn6i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554413467653873667\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2808\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[188,194]},{\"text\":\"Taiwan\",\"indices\":[195,202]},{\"text\":\"News\",\"indices\":[203,208]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554412195747864578,\"id_str\":\"1554412195747864578\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJhqAoWIAI3868.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJhqAoWIAI3868.jpg\",\"url\":\"https:\\/\\/t.co\\/CxXd6UhkBz\",\"display_url\":\"pic.twitter.com\\/CxXd6UhkBz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554412198834872322\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2809\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"China\",\"indices\":[65,71]},{\"text\":\"Dems4USA\",\"indices\":[102,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TeamPelosi\",\"name\":\"Nancy Pelosi\",\"id\":2461810448,\"id_str\":\"2461810448\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qexAsGPl7Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AmbLiuXiaoMing\\/status\\/1554257955289268224\",\"display_url\":\"twitter.com\\/AmbLiuXiaoMing\\u2026\",\"indices\":[147,170]}]},\"2810\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[59,66]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554399300125425664,\"id_str\":\"1554399300125425664\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJV7YsXgAAN87k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJV7YsXgAAN87k.jpg\",\"url\":\"https:\\/\\/t.co\\/UFe6dxtSUs\",\"display_url\":\"pic.twitter.com\\/UFe6dxtSUs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sabutanawa\\/status\\/1554399326910152705\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"2811\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"Pelosi\",\"indices\":[171,178]},{\"text\":\"RamaphosaMustGo\",\"indices\":[194,210]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554393781797003264,\"id_str\":\"1554393781797003264\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554393781797003264\\/pu\\/img\\/_hRKPBaOmC2zfJqa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554393781797003264\\/pu\\/img\\/_hRKPBaOmC2zfJqa.jpg\",\"url\":\"https:\\/\\/t.co\\/HRv6z2Rr39\",\"display_url\":\"pic.twitter.com\\/HRv6z2Rr39\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mbhape1\\/status\\/1554393853423230976\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2812\":{\"hashtags\":[{\"text\":\"Basotho\",\"indices\":[127,135]},{\"text\":\"RamaphosaMustGo\",\"indices\":[136,152]},{\"text\":\"Pelosi\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554390694319489024,\"id_str\":\"1554390694319489024\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554390694319489024\\/pu\\/img\\/twxKxHgadjqBuAoq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554390694319489024\\/pu\\/img\\/twxKxHgadjqBuAoq.jpg\",\"url\":\"https:\\/\\/t.co\\/uSy9eqVBoM\",\"display_url\":\"pic.twitter.com\\/uSy9eqVBoM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mbhape1\\/status\\/1554390773868658688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2813\":{\"hashtags\":[{\"text\":\"wellmaid\",\"indices\":[139,148]},{\"text\":\"team\",\"indices\":[150,155]},{\"text\":\"weservepassion\",\"indices\":[156,171]},{\"text\":\"food\",\"indices\":[173,178]},{\"text\":\"customerservice\",\"indices\":[180,196]},{\"text\":\"HOBIPALOOZA\",\"indices\":[198,210]},{\"text\":\"Taiwan\",\"indices\":[212,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554389677603536896,\"id_str\":\"1554389677603536896\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554389677603536896\\/pu\\/img\\/HmrgsSyqIC9AZ1mk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554389677603536896\\/pu\\/img\\/HmrgsSyqIC9AZ1mk.jpg\",\"url\":\"https:\\/\\/t.co\\/goNfNSu1uR\",\"display_url\":\"pic.twitter.com\\/goNfNSu1uR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wellmaidsa\\/status\\/1554389905765269504\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2814\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"Taiwan\",\"indices\":[116,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JEhKZpNwyf\",\"expanded_url\":\"https:\\/\\/www.ft.com\\/content\\/50f56242-2bd7-44c6-8878-a755ad1e3043\",\"display_url\":\"ft.com\\/content\\/50f562\\u2026\",\"indices\":[71,94]}]},\"2815\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[26,33]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"ZAR\",\"indices\":[98,102]},{\"text\":\"Markets\",\"indices\":[163,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2816\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"Zelensky\",\"indices\":[111,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2817\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[102,114]},{\"text\":\"Taiwan\",\"indices\":[116,123]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2818\":{\"hashtags\":[{\"text\":\"BambamSorry\",\"indices\":[113,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2819\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[49,59]},{\"text\":\"Taiwan\",\"indices\":[61,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2820\":{\"hashtags\":[{\"text\":\"BRICS\",\"indices\":[106,112]},{\"text\":\"RamaphosaMustGo\",\"indices\":[114,130]},{\"text\":\"UkraineRussia\",\"indices\":[132,146]},{\"text\":\"WWIII\",\"indices\":[148,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2821\":{\"hashtags\":[{\"text\":\"Coffee\",\"indices\":[15,22]},{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"BBNajia\",\"indices\":[31,39]},{\"text\":\"CoffeeLover\",\"indices\":[40,52]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554178680838037506,\"id_str\":\"1554178680838037506\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGNRpzWIAI66_D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGNRpzWIAI66_D.jpg\",\"url\":\"https:\\/\\/t.co\\/rmtR5q8WIC\",\"display_url\":\"pic.twitter.com\\/rmtR5q8WIC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TTraemuziq\\/status\\/1554178720222642177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"2822\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Kosovo\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2823\":{\"hashtags\":[{\"text\":\"PodcastAndChill\",\"indices\":[188,204]},{\"text\":\"LilWayne\",\"indices\":[205,214]},{\"text\":\"Taiwan\",\"indices\":[215,222]},{\"text\":\"mihlali\",\"indices\":[224,232]},{\"text\":\"AreYouTubedin\",\"indices\":[233,247]},{\"text\":\"IdolsSA\",\"indices\":[255,263]},{\"text\":\"Tembisa\",\"indices\":[270,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Solphendukaa\",\"name\":\"Solomzi\",\"id\":1332282181755019264,\"id_str\":\"1332282181755019264\",\"indices\":[107,120]},{\"screen_name\":\"MacGUnleashed\",\"name\":\"MacG \\ud83c\\uddff\\ud83c\\udde6\",\"id\":21162262,\"id_str\":\"21162262\",\"indices\":[121,135]},{\"screen_name\":\"slikouron\",\"name\":\"Slikour OnLife\",\"id\":22920188,\"id_str\":\"22920188\",\"indices\":[136,146]},{\"screen_name\":\"SlikTalk_SA\",\"name\":\"Slik Talk\",\"id\":2933597963,\"id_str\":\"2933597963\",\"indices\":[147,159]},{\"screen_name\":\"ChrisExcel102\",\"name\":\"ChrisExcel\",\"id\":1213725053117796353,\"id_str\":\"1213725053117796353\",\"indices\":[160,174]},{\"screen_name\":\"iamtbotouch\",\"name\":\"Tbo Touch\",\"id\":554893646,\"id_str\":\"554893646\",\"indices\":[175,187]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GFGVY8phpZ\",\"expanded_url\":\"https:\\/\\/youtu.be\\/V78lU9mW8Gg\",\"display_url\":\"youtu.be\\/V78lU9mW8Gg\",\"indices\":[66,89]}],\"media\":[{\"id\":1554167109072130053,\"id_str\":\"1554167109072130053\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554167109072130053\\/pu\\/img\\/xjVO9hYkNUwInrE_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554167109072130053\\/pu\\/img\\/xjVO9hYkNUwInrE_.jpg\",\"url\":\"https:\\/\\/t.co\\/q3ImrGHJGZ\",\"display_url\":\"pic.twitter.com\\/q3ImrGHJGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bigsmokevisuals\\/status\\/1554167352694120451\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2824\":{\"hashtags\":[{\"text\":\"RICHESSE\",\"indices\":[0,9]},{\"text\":\"Taiwan\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554163360006021122,\"id_str\":\"1554163360006021122\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF_V3QWIAILNsL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF_V3QWIAILNsL.jpg\",\"url\":\"https:\\/\\/t.co\\/Pt2UpQ0VwC\",\"display_url\":\"pic.twitter.com\\/Pt2UpQ0VwC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TNkangane\\/status\\/1554163364196225025\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":1600,\"resize\":\"fit\"}}}]},\"2825\":{\"hashtags\":[{\"text\":\"goalalu\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[201,208]},{\"text\":\"breastfeeding\",\"indices\":[209,223]},{\"text\":\"Somizi\",\"indices\":[224,231]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"alueducation\",\"name\":\"African Leadership University\",\"id\":2653767276,\"id_str\":\"2653767276\",\"indices\":[145,158]}],\"urls\":[],\"media\":[{\"id\":1554160313498537985,\"id_str\":\"1554160313498537985\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF8kiIXEAEpEfa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF8kiIXEAEpEfa.jpg\",\"url\":\"https:\\/\\/t.co\\/eTHU88ALsz\",\"display_url\":\"pic.twitter.com\\/eTHU88ALsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/intandoyabantu\\/status\\/1554160326706438147\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":705,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":1792,\"h\":1053,\"resize\":\"fit\"}}}]},\"2826\":{\"hashtags\":[{\"text\":\"SouthAfricanGP\",\"indices\":[41,56]},{\"text\":\"time\",\"indices\":[57,62]},{\"text\":\"egv\",\"indices\":[63,67]},{\"text\":\"essentialgoodvibes\",\"indices\":[68,87]},{\"text\":\"soulfulmusic\",\"indices\":[88,101]},{\"text\":\"HOBIPALOOZA\",\"indices\":[102,114]},{\"text\":\"WEURO2022\",\"indices\":[115,125]},{\"text\":\"africa2022\",\"indices\":[126,137]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[138,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Kosovo\",\"indices\":[167,174]},{\"text\":\"Browns\",\"indices\":[175,182]},{\"text\":\"ts\",\"indices\":[183,186]},{\"text\":\"DeepLove\",\"indices\":[187,196]},{\"text\":\"tellafriend\",\"indices\":[197,209]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bGzZdoP17b\",\"expanded_url\":\"http:\\/\\/www.deeplomatikkradio.co.uk\",\"display_url\":\"deeplomatikkradio.co.uk\",\"indices\":[15,38]}],\"media\":[{\"id\":1554115923337961472,\"id_str\":\"1554115923337961472\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFUMr5WYAAhSn7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFUMr5WYAAhSn7.jpg\",\"url\":\"https:\\/\\/t.co\\/rhQ2uMKB5X\",\"display_url\":\"pic.twitter.com\\/rhQ2uMKB5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/therd_suspect\\/status\\/1554115937758072832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2827\":{\"hashtags\":[{\"text\":\"VOWFMDriveMoments\",\"indices\":[0,18]},{\"text\":\"VOWFMDriveWithZakesTwala\",\"indices\":[144,169]},{\"text\":\"JusticeServedNetflix\",\"indices\":[172,193]},{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"Tembisa\",\"indices\":[202,210]},{\"text\":\"PodcastAndChillWithMacG\",\"indices\":[211,235]},{\"text\":\"mihlali\",\"indices\":[236,244]},{\"text\":\"Mzansi\",\"indices\":[245,252]},{\"text\":\"SouthAfrican\",\"indices\":[253,266]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554113577455435778,\"id_str\":\"1554113577455435778\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113577455435778\\/pu\\/img\\/hjIDhAKkbuiNb9Bz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113577455435778\\/pu\\/img\\/hjIDhAKkbuiNb9Bz.jpg\",\"url\":\"https:\\/\\/t.co\\/08VXh3IRc9\",\"display_url\":\"pic.twitter.com\\/08VXh3IRc9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zakes_Twala\\/status\\/1554113629376626689\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":516,\"h\":528,\"resize\":\"fit\"},\"large\":{\"w\":516,\"h\":528,\"resize\":\"fit\"},\"medium\":{\"w\":516,\"h\":528,\"resize\":\"fit\"}}}]},\"2828\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[44,50]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"Orania\",\"indices\":[112,119]},{\"text\":\"SouthAfrica\",\"indices\":[123,135]},{\"text\":\"America\",\"indices\":[171,179]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2829\":{\"hashtags\":[{\"text\":\"Thembisa\",\"indices\":[239,248]},{\"text\":\"AlAhly\",\"indices\":[250,257]},{\"text\":\"ANCIN2024\",\"indices\":[258,268]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WU4Vta4zLL\",\"expanded_url\":\"http:\\/\\/Dopekicksa.store\",\"display_url\":\"Dopekicksa.store\",\"indices\":[210,233]}],\"media\":[{\"id\":1554101251129970688,\"id_str\":\"1554101251129970688\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFG2pqXkAAO0eU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFG2pqXkAAO0eU.jpg\",\"url\":\"https:\\/\\/t.co\\/35QUXOLcbz\",\"display_url\":\"pic.twitter.com\\/35QUXOLcbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/N_Mphakama\\/status\\/1554101272650850304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"2830\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[28,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"Kosovo\",\"indices\":[49,56]},{\"text\":\"BORNPINK\",\"indices\":[57,66]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[67,87]},{\"text\":\"breastfeeding\",\"indices\":[88,102]},{\"text\":\"Serbia\",\"indices\":[103,110]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[111,135]},{\"text\":\"JACKBAM_KPOPMASTERZBKK\",\"indices\":[136,159]},{\"text\":\"BambamSorry\",\"indices\":[160,172]},{\"text\":\"SuzukiPakistan\",\"indices\":[173,188]},{\"text\":\"LalSinghChaddha\",\"indices\":[189,205]},{\"text\":\"TXTPALOOZA\",\"indices\":[206,217]},{\"text\":\"JHOPE\",\"indices\":[218,224]},{\"text\":\"BambamSorry\",\"indices\":[225,237]},{\"text\":\"BBNaija7\",\"indices\":[238,247]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[248,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554093602036391937,\"id_str\":\"1554093602036391937\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554093602036391937\\/pu\\/img\\/Q9_bxow5Ha8smmHs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554093602036391937\\/pu\\/img\\/Q9_bxow5Ha8smmHs.jpg\",\"url\":\"https:\\/\\/t.co\\/bzkTt1pzOI\",\"display_url\":\"pic.twitter.com\\/bzkTt1pzOI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/devilbehindart\\/status\\/1554094011962597381\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2831\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"Ukraine\\ufe0f\",\"indices\":[46,55]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2832\":{\"hashtags\":[{\"text\":\"GratitudetoGOD\",\"indices\":[207,222]},{\"text\":\"Kosovo\",\"indices\":[223,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"Serbia\",\"indices\":[239,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2833\":{\"hashtags\":[{\"text\":\"love\",\"indices\":[32,37]},{\"text\":\"gratitude\",\"indices\":[118,128]},{\"text\":\"GratitudetoGOD\",\"indices\":[175,190]},{\"text\":\"Kosovo\",\"indices\":[191,198]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"Serbia\",\"indices\":[207,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2834\":{\"hashtags\":[{\"text\":\"theconversationcapital\",\"indices\":[25,48]},{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Tembisa\",\"indices\":[57,65]},{\"text\":\"Tembisashutdown\",\"indices\":[66,82]},{\"text\":\"MissUniverseThailand2022\",\"indices\":[83,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554050008177049600,\"id_str\":\"1554050008177049600\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554050008177049600\\/pu\\/img\\/Qjz03TkpRu2TMiye.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554050008177049600\\/pu\\/img\\/Qjz03TkpRu2TMiye.jpg\",\"url\":\"https:\\/\\/t.co\\/FGkia7HxT1\",\"display_url\":\"pic.twitter.com\\/FGkia7HxT1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShalomDrt\\/status\\/1554050111839297537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2835\":{\"hashtags\":[{\"text\":\"Tembisa\",\"indices\":[135,143]},{\"text\":\"Tembisashutdown\",\"indices\":[144,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2836\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[169,180]},{\"text\":\"BBNaija7\",\"indices\":[181,190]},{\"text\":\"MissUniverseThailand2022\",\"indices\":[191,216]},{\"text\":\"China\",\"indices\":[217,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NDclDpEGSS\",\"expanded_url\":\"https:\\/\\/ref.surveyj.co\\/RelebogileRN\",\"display_url\":\"ref.surveyj.co\\/RelebogileRN\",\"indices\":[145,168]}]},\"2837\":{\"hashtags\":[{\"text\":\"ANCPolicyConference\",\"indices\":[50,70]},{\"text\":\"SummerSlam\",\"indices\":[71,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"earthquake\",\"indices\":[91,102]},{\"text\":\"BBNaija7\",\"indices\":[103,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"News24\",\"name\":\"News24\",\"id\":14697575,\"id_str\":\"14697575\",\"indices\":[0,7]}],\"urls\":[]},\"2838\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[99,110]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"BBNaija7\",\"indices\":[119,128]},{\"text\":\"CommunityShield\",\"indices\":[129,145]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[146,168]},{\"text\":\"GarciaBenavidez\",\"indices\":[169,185]},{\"text\":\"KiaraAdvani\",\"indices\":[186,198]},{\"text\":\"earthquake\",\"indices\":[199,210]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[211,237]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[238,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[85,93]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SgWnuKRgVD\",\"expanded_url\":\"http:\\/\\/youtu.be\\/_lsraqZE20s\",\"display_url\":\"youtu.be\\/_lsraqZE20s\",\"indices\":[55,78]}],\"media\":[{\"id\":1553683471444361218,\"id_str\":\"1553683471444361218\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553683471444361218\\/pu\\/img\\/8geYnQEq2Y1OU6tb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553683471444361218\\/pu\\/img\\/8geYnQEq2Y1OU6tb.jpg\",\"url\":\"https:\\/\\/t.co\\/FMpJmPhb5g\",\"display_url\":\"pic.twitter.com\\/FMpJmPhb5g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MthembuSisekelo\\/status\\/1553683702181494786\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2839\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[36,43]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1553660229103108097,\"id_str\":\"1553660229103108097\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FY-1vylXwAEMZ9j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FY-1vylXwAEMZ9j.jpg\",\"url\":\"https:\\/\\/t.co\\/Ewd1idfKZJ\",\"display_url\":\"pic.twitter.com\\/Ewd1idfKZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TshabalalaP\\/status\\/1553660238896812033\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":354,\"h\":252,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":354,\"h\":252,\"resize\":\"fit\"},\"medium\":{\"w\":354,\"h\":252,\"resize\":\"fit\"}}}]},\"2840\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[66,72]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553456869200601089,\"id_str\":\"1553456869200601089\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY78yr6XoAEgi9p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY78yr6XoAEgi9p.jpg\",\"url\":\"https:\\/\\/t.co\\/hYMu1t5kcS\",\"display_url\":\"pic.twitter.com\\/hYMu1t5kcS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ConormaraZ\\/status\\/1553456916604518400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"}}}]},\"2841\":{\"hashtags\":[{\"text\":\"Beyonce\",\"indices\":[150,158]},{\"text\":\"Caturday\",\"indices\":[159,168]},{\"text\":\"SaturdayMorning\",\"indices\":[169,185]},{\"text\":\"VeteransDeserveBetter\",\"indices\":[186,208]},{\"text\":\"MegaMillions\",\"indices\":[209,222]},{\"text\":\"SaturdayVibes\",\"indices\":[223,237]},{\"text\":\"Elanga\",\"indices\":[238,245]},{\"text\":\"Kelis\",\"indices\":[246,252]},{\"text\":\"CUFFIT\",\"indices\":[253,260]},{\"text\":\"Shakira\",\"indices\":[261,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uFcaSZKuhp\",\"expanded_url\":\"https:\\/\\/totemnetwork.blogspot.com\\/p\\/home_13.html\",\"display_url\":\"totemnetwork.blogspot.com\\/p\\/home_13.html\",\"indices\":[125,148]}],\"media\":[{\"id\":1553371681707753477,\"id_str\":\"1553371681707753477\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY6vUHxXgAULRHg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY6vUHxXgAULRHg.jpg\",\"url\":\"https:\\/\\/t.co\\/FiMTVBbjgy\",\"display_url\":\"pic.twitter.com\\/FiMTVBbjgy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AllLife2Africa\\/status\\/1553371739631112192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}}]},\"2842\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2843\":{\"hashtags\":[{\"text\":\"NATO\",\"indices\":[105,110]},{\"text\":\"Taiwan\",\"indices\":[230,237]},{\"text\":\"China\",\"indices\":[238,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553288189812539392,\"id_str\":\"1553288189812539392\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY5jYQOWAAAER8m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY5jYQOWAAAER8m.jpg\",\"url\":\"https:\\/\\/t.co\\/crrUDJNatt\",\"display_url\":\"pic.twitter.com\\/crrUDJNatt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/babieRinenharo\\/status\\/1553288217084010497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":587,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":587,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":554,\"resize\":\"fit\"}}}]},\"2844\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"US\",\"indices\":[98,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553267670019186694,\"id_str\":\"1553267670019186694\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY5Qt2CXoAYAWOO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY5Qt2CXoAYAWOO.jpg\",\"url\":\"https:\\/\\/t.co\\/MQmgXsTTVn\",\"display_url\":\"pic.twitter.com\\/MQmgXsTTVn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1553267678663557120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":1199,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":204,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":360,\"h\":1199,\"resize\":\"fit\"}}}]},\"2845\":{\"hashtags\":[{\"text\":\"Jan6\",\"indices\":[195,200]},{\"text\":\"China\",\"indices\":[201,207]},{\"text\":\"Taiwan\",\"indices\":[208,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2846\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[162,172]},{\"text\":\"PhalaPhalaFarmGate\",\"indices\":[181,200]},{\"text\":\"BBNaija\",\"indices\":[214,222]},{\"text\":\"Adekunle\",\"indices\":[223,232]},{\"text\":\"JusticeServed\",\"indices\":[233,247]},{\"text\":\"Tshegofatsopule\",\"indices\":[248,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553018254779731968,\"id_str\":\"1553018254779731968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1t393X0AAJbw7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1t393X0AAJbw7.jpg\",\"url\":\"https:\\/\\/t.co\\/f3nk93VtWj\",\"display_url\":\"pic.twitter.com\\/f3nk93VtWj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Loot_HereZA\\/status\\/1553018275403104258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":573,\"h\":655,\"resize\":\"fit\"},\"small\":{\"w\":573,\"h\":655,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":573,\"h\":655,\"resize\":\"fit\"}}}]},\"2847\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[249,261]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LivePretoria\",\"name\":\"PretoriaLIVE\",\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"indices\":[263,276]}],\"urls\":[],\"media\":[{\"id\":1552911060935626753,\"id_str\":\"1552911060935626753\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY0MYdrX0AEh9pl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY0MYdrX0AEh9pl.jpg\",\"url\":\"https:\\/\\/t.co\\/op0RXnNbgg\",\"display_url\":\"pic.twitter.com\\/op0RXnNbgg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1552911064886550528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"}}}]},\"2848\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"NewsUpdate\",\"indices\":[62,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J23E2xwI7w\",\"expanded_url\":\"https:\\/\\/chiexclusive.com\\/chinas-largest-ever-taiwan-military-drills-draw-to-a-close\\/\",\"display_url\":\"chiexclusive.com\\/chinas-largest\\u2026\",\"indices\":[76,99]}]},\"2849\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"CommonwealthGame\",\"indices\":[258,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Asabari_CC\",\"name\":\"AsabariConsultativeCouncil\",\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"indices\":[14,25]},{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[27,36]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[213,220]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[239,249]}],\"urls\":[]},\"2850\":{\"hashtags\":[{\"text\":\"BoycottSnickers\",\"indices\":[0,16]},{\"text\":\"ChinaIsABully\",\"indices\":[50,64]},{\"text\":\"TaiwanIsaCountry\",\"indices\":[173,190]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"CCPThugs\",\"indices\":[246,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"globaltimesnews\",\"name\":\"Global Times\",\"id\":49616273,\"id_str\":\"49616273\",\"indices\":[199,215]},{\"screen_name\":\"ChinaConSydney\",\"name\":\"Chinese Consulate General in Sydney\",\"id\":1253534354032087041,\"id_str\":\"1253534354032087041\",\"indices\":[216,231]},{\"screen_name\":\"SkyNewsAust\",\"name\":\"Sky News Australia\",\"id\":16834659,\"id_str\":\"16834659\",\"indices\":[232,244]},{\"screen_name\":\"SNICKERS\",\"name\":\"SNICKERS\",\"id\":50741466,\"id_str\":\"50741466\",\"indices\":[256,265]},{\"screen_name\":\"SnickersAU\",\"name\":\"SNICKERS\\u00ae Australia\",\"id\":3260532656,\"id_str\":\"3260532656\",\"indices\":[266,277]}],\"urls\":[],\"media\":[{\"id\":1556137549256880128,\"id_str\":\"1556137549256880128\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZiC2zUacAAILlm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZiC2zUacAAILlm.jpg\",\"url\":\"https:\\/\\/t.co\\/vw2BMTOixp\",\"display_url\":\"pic.twitter.com\\/vw2BMTOixp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GpbartlettP\\/status\\/1556137553518272512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":940,\"resize\":\"fit\"},\"small\":{\"w\":624,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":940,\"resize\":\"fit\"}}}]},\"2851\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[4,10]},{\"text\":\"ChinaTaiwan\",\"indices\":[65,77]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[78,98]},{\"text\":\"BidenRecession\",\"indices\":[99,114]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[115,135]},{\"text\":\"NancyPelosi\",\"indices\":[136,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2852\":{\"hashtags\":[{\"text\":\"xinping\",\"indices\":[23,31]},{\"text\":\"china\",\"indices\":[56,62]},{\"text\":\"china\",\"indices\":[80,86]},{\"text\":\"taiwan\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[12,18]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[121,127]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[130,136]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[146,160]}],\"urls\":[]},\"2853\":{\"hashtags\":[{\"text\":\"GazaUnderAttack\",\"indices\":[86,102]},{\"text\":\"PreyMovie\",\"indices\":[103,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"BBNajiaS7\",\"indices\":[122,132]},{\"text\":\"nsfwtwt\",\"indices\":[133,141]},{\"text\":\"Wars1stBDFanmeet\",\"indices\":[142,159]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[76,84]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6R4h5j9Gi7\",\"expanded_url\":\"https:\\/\\/youtu.be\\/qWBmRvLymSc\",\"display_url\":\"youtu.be\\/qWBmRvLymSc\",\"indices\":[48,71]}]},\"2854\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[193,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555992362622615553,\"id_str\":\"1555992362622615553\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"url\":\"https:\\/\\/t.co\\/DiKgxF4oTL\",\"display_url\":\"pic.twitter.com\\/DiKgxF4oTL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555992372194021376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":410,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":723,\"resize\":\"fit\"},\"large\":{\"w\":1279,\"h\":771,\"resize\":\"fit\"}}}]},\"2855\":{\"hashtags\":[{\"text\":\"Israel\",\"indices\":[85,92]},{\"text\":\"Kasarani\",\"indices\":[93,102]},{\"text\":\"nyayostadium\",\"indices\":[103,116]},{\"text\":\"Gaza\",\"indices\":[117,122]},{\"text\":\"BadDecisions\",\"indices\":[123,136]},{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"Ukraine\",\"indices\":[145,153]},{\"text\":\"TREASURE\",\"indices\":[154,163]},{\"text\":\"Trending\",\"indices\":[164,173]},{\"text\":\"trend\",\"indices\":[174,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555984739168927748,\"id_str\":\"1555984739168927748\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"url\":\"https:\\/\\/t.co\\/Fh3oav9sPe\",\"display_url\":\"pic.twitter.com\\/Fh3oav9sPe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555984785004281857\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":480,\"resize\":\"fit\"}}}]},\"2856\":{\"hashtags\":[{\"text\":\"TOP\",\"indices\":[0,4]},{\"text\":\"SINGLE\",\"indices\":[5,12]},{\"text\":\"BOOMPLAY\",\"indices\":[13,22]},{\"text\":\"FEAT\",\"indices\":[55,60]},{\"text\":\"YouTube\",\"indices\":[95,103]},{\"text\":\"kebetu\",\"indices\":[104,111]},{\"text\":\"Senegal\",\"indices\":[112,120]},{\"text\":\"Dakar\",\"indices\":[121,127]},{\"text\":\"Charts\",\"indices\":[128,135]},{\"text\":\"hits\",\"indices\":[136,141]},{\"text\":\"Stream\",\"indices\":[142,149]},{\"text\":\"Streaming\",\"indices\":[150,160]},{\"text\":\"Streamer\",\"indices\":[162,171]},{\"text\":\"Artist\",\"indices\":[172,179]},{\"text\":\"Kosovo\",\"indices\":[180,187]},{\"text\":\"Rap\",\"indices\":[188,192]},{\"text\":\"Afro\",\"indices\":[193,198]},{\"text\":\"Galsen\",\"indices\":[199,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Serbia\",\"indices\":[215,222]},{\"text\":\"binance\",\"indices\":[223,231]},{\"text\":\"Music\",\"indices\":[232,238]},{\"text\":\"Soul\",\"indices\":[239,244]},{\"text\":\"Rnb\",\"indices\":[245,249]},{\"text\":\"Beyonce\",\"indices\":[250,258]},{\"text\":\"Alonso\",\"indices\":[259,266]},{\"text\":\"Rap\",\"indices\":[267,271]},{\"text\":\"hiphop\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VbolXXwnGB\",\"expanded_url\":\"https:\\/\\/youtu.be\\/WSc390EqP8g\",\"display_url\":\"youtu.be\\/WSc390EqP8g\",\"indices\":[69,92]}]},\"2857\":{\"hashtags\":[{\"text\":\"Indiana\",\"indices\":[150,158]},{\"text\":\"JUNGKOOK\",\"indices\":[159,168]},{\"text\":\"nyayostadium\",\"indices\":[169,182]},{\"text\":\"Nunez\",\"indices\":[183,189]},{\"text\":\"LFC\",\"indices\":[190,194]},{\"text\":\"andAUDITION\",\"indices\":[195,207]},{\"text\":\"SitaRamam\",\"indices\":[208,218]},{\"text\":\"FOREVER1\",\"indices\":[219,228]},{\"text\":\"WAFC\",\"indices\":[229,234]},{\"text\":\"RHOBH\",\"indices\":[235,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"GoFundMe\",\"indices\":[250,259]},{\"text\":\"help\",\"indices\":[260,265]},{\"text\":\"TREASURE\",\"indices\":[266,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[126,149]}],\"media\":[{\"id\":1555940231827832834,\"id_str\":\"1555940231827832834\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"url\":\"https:\\/\\/t.co\\/rPmfa5ojNK\",\"display_url\":\"pic.twitter.com\\/rPmfa5ojNK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555940250551259136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1067,\"resize\":\"fit\"}}}]},\"2858\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"Drone\",\"indices\":[141,147]},{\"text\":\"Foreign\",\"indices\":[148,156]},{\"text\":\"Gist\",\"indices\":[157,162]},{\"text\":\"news\",\"indices\":[163,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"US\",\"indices\":[177,180]},{\"text\":\"bobojay\",\"indices\":[181,189]},{\"text\":\"bobojaytv\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iFl0xbm0Ow\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/taiwan-chinese-planes-ships-carry-out-attack-simulation-exercise\\/\",\"display_url\":\"bobojaytv.com\\/taiwan-chinese\\u2026\",\"indices\":[78,101]}],\"media\":[{\"id\":1555921612242767873,\"id_str\":\"1555921612242767873\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"url\":\"https:\\/\\/t.co\\/Jt6aduFcg8\",\"display_url\":\"pic.twitter.com\\/Jt6aduFcg8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555921613857492993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":420,\"resize\":\"fit\"}}}]},\"2859\":{\"hashtags\":[{\"text\":\"Beijing\",\"indices\":[144,152]},{\"text\":\"China\",\"indices\":[153,159]},{\"text\":\"Foreign\",\"indices\":[160,168]},{\"text\":\"news\",\"indices\":[169,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"bobojay\",\"indices\":[183,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IortearyBW\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/taiwan-accuses-beijing-of-simulating-invasion-as-us-china-relations-nosedive\\/\",\"display_url\":\"bobojaytv.com\\/taiwan-accuses\\u2026\",\"indices\":[88,111]}],\"media\":[{\"id\":1555920653005402114,\"id_str\":\"1555920653005402114\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"url\":\"https:\\/\\/t.co\\/cpsTb251y5\",\"display_url\":\"pic.twitter.com\\/cpsTb251y5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555920654368575488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"2860\":{\"hashtags\":[{\"text\":\"AntonioGuterres\",\"indices\":[128,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"Foreign\",\"indices\":[152,160]},{\"text\":\"news\",\"indices\":[161,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"UN\",\"indices\":[175,178]},{\"text\":\"bobojay\",\"indices\":[179,187]},{\"text\":\"bobojaytv\",\"indices\":[188,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cSMbwgBTbO\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/un-chief-warns-nuclear-weapons-are-loaded-gun-for-humanity\\/\",\"display_url\":\"bobojaytv.com\\/un-chief-warns\\u2026\",\"indices\":[72,95]}]},\"2861\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2862\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[36,49]},{\"text\":\"FULLIV\",\"indices\":[51,58]},{\"text\":\"UkrainianArmy\",\"indices\":[59,73]},{\"text\":\"Taiwan\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555886494941958146,\"id_str\":\"1555886494941958146\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"url\":\"https:\\/\\/t.co\\/7S8nXC3rt6\",\"display_url\":\"pic.twitter.com\\/7S8nXC3rt6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ClintonSnowbird\\/status\\/1555886548486443008\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"}}}]},\"2863\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[113,119]},{\"text\":\"USA\",\"indices\":[120,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"Pelosi\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SoAbONf1yX\",\"expanded_url\":\"https:\\/\\/investogist.com\\/calls-from-usa-defense-ministry-to-top-chinese-military-officials-being-ignored-report\\/\",\"display_url\":\"investogist.com\\/calls-from-usa\\u2026\",\"indices\":[89,112]}]},\"2864\":{\"hashtags\":[{\"text\":\"VocalcarCoach\",\"indices\":[53,67]},{\"text\":\"TheChi\",\"indices\":[107,114]},{\"text\":\"BBNaijaJohnnieWalker\",\"indices\":[137,158]},{\"text\":\"BB24\",\"indices\":[159,164]},{\"text\":\"Cheating\",\"indices\":[165,174]},{\"text\":\"PremierLeague\",\"indices\":[175,189]},{\"text\":\"Taiwan\",\"indices\":[190,197]},{\"text\":\"BryannOnly\",\"indices\":[207,218]},{\"text\":\"PiConsensus\",\"indices\":[219,231]},{\"text\":\"binance\",\"indices\":[232,240]},{\"text\":\"Sandman\",\"indices\":[241,249]},{\"text\":\"weekendvibes\",\"indices\":[250,263]},{\"text\":\"USA\",\"indices\":[264,268]},{\"text\":\"Ukraine\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555828432784789509,\"id_str\":\"1555828432784789509\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"url\":\"https:\\/\\/t.co\\/RsGGLqKP4f\",\"display_url\":\"pic.twitter.com\\/RsGGLqKP4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555828561424121857\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2865\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[186,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2866\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"PLLOriginalSin\",\"indices\":[158,173]},{\"text\":\"helpinghand\",\"indices\":[174,186]},{\"text\":\"donate\",\"indices\":[187,194]},{\"text\":\"KarachiRains\",\"indices\":[195,208]},{\"text\":\"BB24\",\"indices\":[209,214]},{\"text\":\"RHOBH\",\"indices\":[215,221]},{\"text\":\"midjourney\",\"indices\":[222,233]},{\"text\":\"TREASUREinManila\",\"indices\":[234,251]},{\"text\":\"Trending\",\"indices\":[252,261]},{\"text\":\"trend\",\"indices\":[262,268]},{\"text\":\"Yankees\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[126,149]}],\"media\":[{\"id\":1555765671199473664,\"id_str\":\"1555765671199473664\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"url\":\"https:\\/\\/t.co\\/lpzUJdfPzo\",\"display_url\":\"pic.twitter.com\\/lpzUJdfPzo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555765691919261696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":479,\"h\":320,\"resize\":\"fit\"}}}]},\"2867\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"PremierLeague\",\"indices\":[45,59]},{\"text\":\"BBNaijaS7\",\"indices\":[60,70]},{\"text\":\"newsongalert\",\"indices\":[71,84]},{\"text\":\"Naijaleaks\",\"indices\":[85,96]},{\"text\":\"Afrobeats\",\"indices\":[97,107]},{\"text\":\"lovesongs\",\"indices\":[108,118]},{\"text\":\"worldmusic\",\"indices\":[119,130]},{\"text\":\"Trending\",\"indices\":[131,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"amuse_io\",\"name\":\"amuse\",\"id\":3817266689,\"id_str\":\"3817266689\",\"indices\":[170,179]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XujdyI76mw\",\"expanded_url\":\"https:\\/\\/share.amuse.io\\/0I5ZVI6Wk5yo\",\"display_url\":\"share.amuse.io\\/0I5ZVI6Wk5yo\",\"indices\":[142,165]}]},\"2868\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[48,52]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AJEnglish\",\"name\":\"Al Jazeera English\",\"id\":4970411,\"id_str\":\"4970411\",\"indices\":[0,10]}],\"urls\":[]},\"2869\":{\"hashtags\":[{\"text\":\"KenyaDecides2022\",\"indices\":[65,82]},{\"text\":\"\\u30dd\\u30b1\\u30e2\\u30f3\",\"indices\":[83,88]},{\"text\":\"LALISA\",\"indices\":[89,96]},{\"text\":\"FOREVER1_OUTNOW\",\"indices\":[97,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"BadDecisions\",\"indices\":[121,134]},{\"text\":\"TheSandman\",\"indices\":[135,146]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[147,167]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[168,188]},{\"text\":\"binance\",\"indices\":[189,197]},{\"text\":\"FOREVER1\",\"indices\":[198,207]},{\"text\":\"WeLoveYouBamBam\",\"indices\":[208,224]},{\"text\":\"BajrangPunia\",\"indices\":[225,238]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"morrishills_\",\"name\":\"Morris Hills\",\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"indices\":[18,31]},{\"screen_name\":\"kiaramoontv\",\"name\":\"Kiara Moon - 345k\",\"id\":700591332285263872,\"id_str\":\"700591332285263872\",\"indices\":[32,44]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[45,52]},{\"screen_name\":\"iamcardib\",\"name\":\"Cardi B\",\"id\":866953267,\"id_str\":\"866953267\",\"indices\":[53,63]}],\"urls\":[],\"media\":[{\"id\":1555645859471171584,\"id_str\":\"1555645859471171584\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"url\":\"https:\\/\\/t.co\\/G0zzCuKFup\",\"display_url\":\"pic.twitter.com\\/G0zzCuKFup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645910100631559\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2870\":{\"hashtags\":[{\"text\":\"MarvinInu\",\"indices\":[0,10]},{\"text\":\"1000x\",\"indices\":[143,149]},{\"text\":\"BNB\",\"indices\":[192,196]},{\"text\":\"BSC\",\"indices\":[198,202]},{\"text\":\"ETH\",\"indices\":[215,219]},{\"text\":\"BTC\",\"indices\":[220,224]},{\"text\":\"WeLoveYouBamBam\",\"indices\":[225,241]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[242,262]},{\"text\":\"BajrangPunia\",\"indices\":[263,276]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[75,82]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[203,214]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CrEIDE4VLU\",\"expanded_url\":\"http:\\/\\/Marvininueth.com\",\"display_url\":\"Marvininueth.com\",\"indices\":[168,191]}],\"media\":[{\"id\":1555645871194357764,\"id_str\":\"1555645871194357764\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"url\":\"https:\\/\\/t.co\\/RPgFeJQ0op\",\"display_url\":\"pic.twitter.com\\/RPgFeJQ0op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1555645888277762050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":641,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":581,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":641,\"resize\":\"fit\"}}}]},\"2871\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[21,34]},{\"text\":\"TheSandman\",\"indices\":[35,46]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[47,67]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[68,88]},{\"text\":\"binance\",\"indices\":[89,97]},{\"text\":\"FOREVER1\",\"indices\":[98,107]},{\"text\":\"KenyaDecides2022\",\"indices\":[108,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555645149941825537,\"id_str\":\"1555645149941825537\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"url\":\"https:\\/\\/t.co\\/Cp9nEotCf4\",\"display_url\":\"pic.twitter.com\\/Cp9nEotCf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645152223543297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":561,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":594,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":594,\"resize\":\"fit\"}}}]},\"2872\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[75,88]},{\"text\":\"TheSandman\",\"indices\":[89,100]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[101,121]},{\"text\":\"binance\",\"indices\":[122,130]},{\"text\":\"FOREVER1\",\"indices\":[131,140]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[141,161]},{\"text\":\"wrestling\",\"indices\":[167,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2873\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[249,269]},{\"text\":\"Children\",\"indices\":[270,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGOELITESTAR\",\"name\":\"Elite Star Foundation\",\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"indices\":[209,222]}],\"urls\":[],\"media\":[{\"id\":1555642257319018499,\"id_str\":\"1555642257319018499\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"url\":\"https:\\/\\/t.co\\/541B1PcgCb\",\"display_url\":\"pic.twitter.com\\/541B1PcgCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NGOELITESTAR\\/status\\/1555642259760205824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":985,\"h\":830,\"resize\":\"fit\"},\"medium\":{\"w\":985,\"h\":830,\"resize\":\"fit\"}}}]},\"2874\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[127,141]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LFgTD6WFrg\",\"expanded_url\":\"https:\\/\\/www.theguardian.com\\/world\\/2022\\/aug\\/05\\/china-halts-us-cooperation-nancy-pelosi-taiwan\",\"display_url\":\"theguardian.com\\/world\\/2022\\/aug\\u2026\",\"indices\":[257,280]}]},\"2875\":{\"hashtags\":[{\"text\":\"Python\",\"indices\":[40,47]},{\"text\":\"BigData\",\"indices\":[48,56]},{\"text\":\"Analytics\",\"indices\":[57,67]},{\"text\":\"AI\",\"indices\":[68,71]},{\"text\":\"DataScience\",\"indices\":[72,84]},{\"text\":\"IoT\",\"indices\":[85,89]},{\"text\":\"Azure\",\"indices\":[90,96]},{\"text\":\"RStats\",\"indices\":[97,104]},{\"text\":\"DotNet\",\"indices\":[105,112]},{\"text\":\"C\",\"indices\":[113,115]},{\"text\":\"CPP\",\"indices\":[116,120]},{\"text\":\"Java\",\"indices\":[121,126]},{\"text\":\"CSharp\",\"indices\":[127,134]},{\"text\":\"Flutter\",\"indices\":[135,143]},{\"text\":\"SQL\",\"indices\":[144,148]},{\"text\":\"PHP\",\"indices\":[149,153]},{\"text\":\"BBNaijaS7\",\"indices\":[154,164]},{\"text\":\"JavaScript\",\"indices\":[165,176]},{\"text\":\"ReactJS\",\"indices\":[177,185]},{\"text\":\"Pelosi\",\"indices\":[186,193]},{\"text\":\"MachineLearning\",\"indices\":[194,210]},{\"text\":\"Serverless\",\"indices\":[211,222]},{\"text\":\"DataScientist\",\"indices\":[223,237]},{\"text\":\"Linux\",\"indices\":[238,244]},{\"text\":\"Programming\",\"indices\":[245,257]},{\"text\":\"Coding\",\"indices\":[258,265]},{\"text\":\"100DaysofCode\",\"indices\":[266,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555599301182734336,\"id_str\":\"1555599301182734336\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"url\":\"https:\\/\\/t.co\\/PTk5Jmo7kY\",\"display_url\":\"pic.twitter.com\\/PTk5Jmo7kY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555599475577704449\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2876\":{\"hashtags\":[{\"text\":\"Python\",\"indices\":[46,53]},{\"text\":\"BigData\",\"indices\":[54,62]},{\"text\":\"Analytics\",\"indices\":[63,73]},{\"text\":\"AI\",\"indices\":[74,77]},{\"text\":\"DataScience\",\"indices\":[78,90]},{\"text\":\"IoT\",\"indices\":[91,95]},{\"text\":\"Azure\",\"indices\":[96,102]},{\"text\":\"RStats\",\"indices\":[103,110]},{\"text\":\"DotNet\",\"indices\":[111,118]},{\"text\":\"C\",\"indices\":[119,121]},{\"text\":\"CPP\",\"indices\":[122,126]},{\"text\":\"Java\",\"indices\":[127,132]},{\"text\":\"CSharp\",\"indices\":[133,140]},{\"text\":\"Flutter\",\"indices\":[141,149]},{\"text\":\"SQL\",\"indices\":[150,154]},{\"text\":\"PHP\",\"indices\":[155,159]},{\"text\":\"BBNaijaS7\",\"indices\":[160,170]},{\"text\":\"JavaScript\",\"indices\":[171,182]},{\"text\":\"ReactJS\",\"indices\":[183,191]},{\"text\":\"MachineLearning\",\"indices\":[192,208]},{\"text\":\"Serverless\",\"indices\":[209,220]},{\"text\":\"DataScientist\",\"indices\":[221,235]},{\"text\":\"Linux\",\"indices\":[236,242]},{\"text\":\"pelosi\",\"indices\":[243,250]},{\"text\":\"game\",\"indices\":[251,256]},{\"text\":\"Coding\",\"indices\":[257,264]},{\"text\":\"100DaysofCode\",\"indices\":[265,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555598991483699200,\"id_str\":\"1555598991483699200\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"url\":\"https:\\/\\/t.co\\/6PzTwoecxo\",\"display_url\":\"pic.twitter.com\\/6PzTwoecxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555598994277023744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"2877\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"NancyPelosi\",\"indices\":[6,18]},{\"text\":\"Taiwan\",\"indices\":[19,26]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/K5tn3bZYek\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SW6rjz\",\"display_url\":\"dlvr.it\\/SW6rjz\",\"indices\":[94,117]}]},\"2878\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[263,283]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2879\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[36,49]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[50,70]},{\"text\":\"ChelseaFC\",\"indices\":[71,81]},{\"text\":\"BibleSumett\",\"indices\":[82,94]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[95,113]},{\"text\":\"Chinese\",\"indices\":[114,122]},{\"text\":\"PeterObi4President2023\",\"indices\":[123,146]},{\"text\":\"Obidiots\",\"indices\":[147,156]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[157,174]},{\"text\":\"OBIDIENTS\",\"indices\":[175,185]},{\"text\":\"obikin\",\"indices\":[186,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/89wMCfK63b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\",\"display_url\":\"twitter.com\\/Nkemchor_\\/stat\\u2026\",\"indices\":[194,217]}]},\"2880\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[216,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2881\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2882\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[257,277]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Evaglobal01\",\"name\":\"Oluwatobiloba Amusan, OLY\",\"id\":4839182503,\"id_str\":\"4839182503\",\"indices\":[56,68]},{\"screen_name\":\"birminghamcg22\",\"name\":\"Birmingham 2022\",\"id\":855750715914031105,\"id_str\":\"855750715914031105\",\"indices\":[167,182]}],\"urls\":[],\"media\":[{\"id\":1555519327293657088,\"id_str\":\"1555519327293657088\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xqw6R7zay\",\"display_url\":\"pic.twitter.com\\/8Xqw6R7zay\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tomidearoso\\/status\\/1555519330288287746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"large\":{\"w\":594,\"h\":396,\"resize\":\"fit\"}}}]},\"2883\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[53,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mSmZKXqiuw\",\"expanded_url\":\"https:\\/\\/www.thecable.ng\\/china-imposes-sanctions-on-us-speaker-over-visit-to-taiwan\",\"display_url\":\"thecable.ng\\/china-imposes-\\u2026\",\"indices\":[72,95]}],\"media\":[{\"id\":1555507551046967296,\"id_str\":\"1555507551046967296\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"url\":\"https:\\/\\/t.co\\/k5tjgsoLCv\",\"display_url\":\"pic.twitter.com\\/k5tjgsoLCv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thecableng\\/status\\/1555507581048741889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"medium\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2884\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2885\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[10,16]},{\"text\":\"NancyPelosi\",\"indices\":[58,70]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPJ7C81tQH\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/p\\/Cg3yJqNDSEH\\/?igshid=YTgzYjQ4ZTY=\",\"display_url\":\"instagram.com\\/p\\/Cg3yJqNDSEH\\/\\u2026\",\"indices\":[149,172]}]},\"2886\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[137,141]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"China\",\"indices\":[205,211]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[212,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555166743181549575,\"id_str\":\"1555166743181549575\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"url\":\"https:\\/\\/t.co\\/0x9UZXqgs4\",\"display_url\":\"pic.twitter.com\\/0x9UZXqgs4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firamnews\\/status\\/1555166784336150528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"source_status_id\":1555166784336150528,\"source_status_id_str\":\"1555166784336150528\",\"source_user_id\":957288307179900930,\"source_user_id_str\":\"957288307179900930\"}]},\"2887\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[24,30]},{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555467858410459136,\"id_str\":\"1555467858410459136\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"url\":\"https:\\/\\/t.co\\/SMudtOtjrp\",\"display_url\":\"pic.twitter.com\\/SMudtOtjrp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SaveThePeoplle\\/status\\/1555467862516666371\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"2888\":{\"hashtags\":[{\"text\":\"Conzummate\",\"indices\":[222,233]},{\"text\":\"marketing\",\"indices\":[235,245]},{\"text\":\"Taiwan\",\"indices\":[246,253]},{\"text\":\"Russia\",\"indices\":[254,261]},{\"text\":\"Trump\",\"indices\":[262,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555463480823644162,\"id_str\":\"1555463480823644162\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"url\":\"https:\\/\\/t.co\\/ux84VrdNeJ\",\"display_url\":\"pic.twitter.com\\/ux84VrdNeJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/conzummate\\/status\\/1555464376261672960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2889\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[112,119]},{\"text\":\"NATO\",\"indices\":[142,147]},{\"text\":\"Ukraine\",\"indices\":[209,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USUN\",\"name\":\"U.S. Mission to the UN\",\"id\":249677516,\"id_str\":\"249677516\",\"indices\":[0,5]},{\"screen_name\":\"USAmbUN\",\"name\":\"Ambassador Linda Thomas-Greenfield\",\"id\":1354525155238801413,\"id_str\":\"1354525155238801413\",\"indices\":[6,14]},{\"screen_name\":\"biannagolodryga\",\"name\":\"Bianna Golodryga\",\"id\":14135350,\"id_str\":\"14135350\",\"indices\":[15,31]},{\"screen_name\":\"AmanpourCoPBS\",\"name\":\"Amanpour and Company\",\"id\":1022853254273818625,\"id_str\":\"1022853254273818625\",\"indices\":[32,46]}],\"urls\":[]},\"2890\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"bbnajia\",\"indices\":[193,201]},{\"text\":\"BBNaijaS7\",\"indices\":[202,212]},{\"text\":\"Obidatti023\",\"indices\":[265,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555439841231478787,\"id_str\":\"1555439841231478787\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"url\":\"https:\\/\\/t.co\\/MaKgKNoo2B\",\"display_url\":\"pic.twitter.com\\/MaKgKNoo2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1555440103807504385\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2891\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[110,117]},{\"text\":\"bbnajia\",\"indices\":[118,126]},{\"text\":\"BBNaijaS7\",\"indices\":[127,137]},{\"text\":\"Obidatti023\",\"indices\":[190,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555432425475432449,\"id_str\":\"1555432425475432449\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"url\":\"https:\\/\\/t.co\\/MBGIPebu1u\",\"display_url\":\"pic.twitter.com\\/MBGIPebu1u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/muyiwaowen\\/status\\/1555432430298882049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2892\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[219,226]},{\"text\":\"bbnajia\",\"indices\":[227,235]},{\"text\":\"BBNaijaS7\",\"indices\":[236,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555429781474254848,\"id_str\":\"1555429781474254848\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"url\":\"https:\\/\\/t.co\\/aEzpnS8MzB\",\"display_url\":\"pic.twitter.com\\/aEzpnS8MzB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phone_Stores\\/status\\/1555429855797428224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2893\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[32,49]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[50,70]},{\"text\":\"bennyXBTSXSnoopDogg\",\"indices\":[71,91]},{\"text\":\"capitec\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"BattleForNo10\",\"indices\":[109,123]},{\"text\":\"\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50\",\"indices\":[124,136]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[137,149]},{\"text\":\"ZamaZamas\",\"indices\":[150,160]},{\"text\":\"AONArsenal\",\"indices\":[161,172]},{\"text\":\"China\",\"indices\":[173,179]},{\"text\":\"Ask\\u0130cin\",\"indices\":[180,188]},{\"text\":\"Explosion\",\"indices\":[189,199]},{\"text\":\"LISA\",\"indices\":[200,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555428357860458499,\"id_str\":\"1555428357860458499\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"url\":\"https:\\/\\/t.co\\/daV6xVvXdF\",\"display_url\":\"pic.twitter.com\\/daV6xVvXdF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555428458246848513\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2894\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"IPPIS\",\"indices\":[36,42]},{\"text\":\"PiConsensus\",\"indices\":[43,55]},{\"text\":\"iphone14\",\"indices\":[56,65]},{\"text\":\"BBNaija\",\"indices\":[66,74]},{\"text\":\"Arewatwitter\",\"indices\":[75,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555427167911256067,\"id_str\":\"1555427167911256067\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"url\":\"https:\\/\\/t.co\\/YAElbkZ8X3\",\"display_url\":\"pic.twitter.com\\/YAElbkZ8X3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555427170872352768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":554,\"resize\":\"fit\"}}}]},\"2895\":{\"hashtags\":[{\"text\":\"OBIDIENT\",\"indices\":[17,26]},{\"text\":\"davidhundeyin\",\"indices\":[39,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Sabinus\",\"indices\":[62,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gBR7IocNaC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\",\"display_url\":\"twitter.com\\/maryam_shehu_\\/\\u2026\",\"indices\":[71,94]}]},\"2896\":{\"hashtags\":[{\"text\":\"IPPIS\",\"indices\":[41,47]},{\"text\":\"PiConsensus\",\"indices\":[48,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"iphone14\",\"indices\":[69,78]},{\"text\":\"BBNaija\",\"indices\":[79,87]},{\"text\":\"BadDecisions\",\"indices\":[88,101]},{\"text\":\"cryptocurrency\",\"indices\":[102,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555423884165382144,\"id_str\":\"1555423884165382144\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":960,\"resize\":\"fit\"}}}]},\"2897\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[138,155]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[156,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Ask\\u0130cin\",\"indices\":[185,193]},{\"text\":\"AONArsenal\",\"indices\":[194,205]},{\"text\":\"China\",\"indices\":[206,212]},{\"text\":\"BadDecisions\",\"indices\":[213,226]},{\"text\":\"\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35\",\"indices\":[227,243]},{\"text\":\"\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50\",\"indices\":[244,256]},{\"text\":\"BattleForNo10\",\"indices\":[257,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555420334974697472,\"id_str\":\"1555420334974697472\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"url\":\"https:\\/\\/t.co\\/0AcEwTwWsz\",\"display_url\":\"pic.twitter.com\\/0AcEwTwWsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555423133896695808\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2898\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[217,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555420509881487360,\"id_str\":\"1555420509881487360\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"url\":\"https:\\/\\/t.co\\/rpnWM9UjaN\",\"display_url\":\"pic.twitter.com\\/rpnWM9UjaN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ffcproperties\\/status\\/1555420559139393537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"2899\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[204,212]},{\"text\":\"Online\",\"indices\":[213,220]},{\"text\":\"Vocalcarecoach\",\"indices\":[221,236]},{\"text\":\"ChoirCapacityCoach\",\"indices\":[237,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"China\",\"indices\":[265,271]},{\"text\":\"Birmingham2022\",\"indices\":[272,287]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555414321768943618,\"id_str\":\"1555414321768943618\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"url\":\"https:\\/\\/t.co\\/8APk6oYuGN\",\"display_url\":\"pic.twitter.com\\/8APk6oYuGN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555414324369391616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"}}}]},\"2900\":{\"hashtags\":[{\"text\":\"Asuu\",\"indices\":[107,112]},{\"text\":\"BulletTrainMovie\",\"indices\":[113,130]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2901\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[56,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"HBOMax\",\"indices\":[74,81]},{\"text\":\"capitec\",\"indices\":[82,90]},{\"text\":\"nig\",\"indices\":[91,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555407802868310016,\"id_str\":\"1555407802868310016\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"url\":\"https:\\/\\/t.co\\/kdtxBAi7ug\",\"display_url\":\"pic.twitter.com\\/kdtxBAi7ug\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opiyansky\\/status\\/1555407811441467393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":824,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":824,\"resize\":\"fit\"}}}]},\"2902\":{\"hashtags\":[{\"text\":\"trenches\",\"indices\":[81,90]},{\"text\":\"EFCC\",\"indices\":[91,96]},{\"text\":\"Rema\",\"indices\":[97,102]},{\"text\":\"Taiwan\",\"indices\":[103,110]},{\"text\":\"Fireboy\",\"indices\":[111,119]},{\"text\":\"olamide\",\"indices\":[120,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2903\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555403686330994690,\"id_str\":\"1555403686330994690\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"url\":\"https:\\/\\/t.co\\/zltNrcYkjY\",\"display_url\":\"pic.twitter.com\\/zltNrcYkjY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yaaseir\\/status\\/1555403943349714944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"2904\":{\"hashtags\":[{\"text\":\"Xi\",\"indices\":[118,121]},{\"text\":\"World\",\"indices\":[130,136]},{\"text\":\"WWIII\",\"indices\":[145,151]},{\"text\":\"UkraineWar\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555400976043220992,\"id_str\":\"1555400976043220992\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"url\":\"https:\\/\\/t.co\\/enFmEAy2gz\",\"display_url\":\"pic.twitter.com\\/enFmEAy2gz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Darling41595671\\/status\\/1555400982259179520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"2905\":{\"hashtags\":[{\"text\":\"Chelsea\",\"indices\":[238,246]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"Taiwan\",\"indices\":[254,261]},{\"text\":\"BattleForNo10\",\"indices\":[262,276]},{\"text\":\"Amnesty\",\"indices\":[277,285]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"estressecurado\",\"name\":\"esse perfil \\u00e9 a cura do estresse\",\"id\":1388960611997032462,\"id_str\":\"1388960611997032462\",\"indices\":[0,15]}],\"urls\":[]},\"2906\":{\"hashtags\":[{\"text\":\"NigeriaDecides2023\",\"indices\":[47,66]},{\"text\":\"BATSHET2023\",\"indices\":[67,79]},{\"text\":\"PeterObi4President2023\",\"indices\":[80,103]},{\"text\":\"Obidatti2023\",\"indices\":[104,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"China\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TherealUGman\",\"name\":\"UG MAN \\u277c\",\"id\":1391005482396028928,\"id_str\":\"1391005482396028928\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1555375344168869892,\"id_str\":\"1555375344168869892\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"url\":\"https:\\/\\/t.co\\/NwtOsx7Z7p\",\"display_url\":\"pic.twitter.com\\/NwtOsx7Z7p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NFPJNig\\/status\\/1555375695559380994\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"2907\":{\"hashtags\":[{\"text\":\"PremierLeague\",\"indices\":[41,55]},{\"text\":\"NaijaBet\",\"indices\":[264,273]},{\"text\":\"Taiwan\",\"indices\":[274,281]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[239,262]}],\"media\":[{\"id\":1555370210193989632,\"id_str\":\"1555370210193989632\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"url\":\"https:\\/\\/t.co\\/SK3JMA9FMG\",\"display_url\":\"pic.twitter.com\\/SK3JMA9FMG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1555370218377166853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2908\":{\"hashtags\":[{\"text\":\"brandorx\",\"indices\":[70,79]},{\"text\":\"EverythingBranding\",\"indices\":[80,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"BBNaijaS7\",\"indices\":[116,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555363980968853504,\"id_str\":\"1555363980968853504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"url\":\"https:\\/\\/t.co\\/0NAHWhR8MZ\",\"display_url\":\"pic.twitter.com\\/0NAHWhR8MZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandorxinc\\/status\\/1555363998995988483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2909\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[103,125]},{\"text\":\"AbujaFinders\",\"indices\":[126,139]},{\"text\":\"RealEstate\",\"indices\":[140,151]},{\"text\":\"PeterObi\",\"indices\":[152,161]},{\"text\":\"EndSARS\",\"indices\":[162,170]},{\"text\":\"Barcelona\",\"indices\":[171,181]},{\"text\":\"Barca\",\"indices\":[182,188]},{\"text\":\"PeterObi4President2023\",\"indices\":[189,212]},{\"text\":\"BBNaija7\",\"indices\":[213,222]},{\"text\":\"INEC\",\"indices\":[223,228]},{\"text\":\"Arewa4PeterObi\",\"indices\":[229,244]},{\"text\":\"BBNaija\",\"indices\":[245,253]},{\"text\":\"China\",\"indices\":[254,260]},{\"text\":\"Chelsea\",\"indices\":[261,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555341930967572482,\"id_str\":\"1555341930967572482\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"url\":\"https:\\/\\/t.co\\/2ueIR9txeq\",\"display_url\":\"pic.twitter.com\\/2ueIR9txeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555341970872090626\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}}}]},\"2910\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555341318657802240,\"id_str\":\"1555341318657802240\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"url\":\"https:\\/\\/t.co\\/iAL0HSO7tQ\",\"display_url\":\"pic.twitter.com\\/iAL0HSO7tQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sobioemma\\/status\\/1555341323653242880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2911\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[73,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[93,113]},{\"text\":\"ASUU\",\"indices\":[114,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GmJsQslGLp\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Q39GYu\",\"display_url\":\"bit.ly\\/3Q39GYu\",\"indices\":[130,153]}]},\"2912\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[224,231]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CatrionaLaing1\",\"name\":\"Catriona Laing\",\"id\":535088290,\"id_str\":\"535088290\",\"indices\":[112,127]}],\"urls\":[],\"media\":[{\"id\":1555330350544461824,\"id_str\":\"1555330350544461824\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"2913\":{\"hashtags\":[{\"text\":\"ETH\",\"indices\":[70,74]},{\"text\":\"Ethereum\",\"indices\":[75,84]},{\"text\":\"CryptoNews\",\"indices\":[85,96]},{\"text\":\"DeFi\",\"indices\":[97,102]},{\"text\":\"Metaverse\",\"indices\":[103,113]},{\"text\":\"Poshmark\",\"indices\":[114,123]},{\"text\":\"BBNaija\",\"indices\":[124,132]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"nftart\",\"indices\":[141,148]},{\"text\":\"NFT\",\"indices\":[149,153]},{\"text\":\"BTC\",\"indices\":[154,158]},{\"text\":\"institutions\",\"indices\":[159,172]},{\"text\":\"AdoptATeacher\",\"indices\":[173,187]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555317034237526017,\"id_str\":\"1555317034237526017\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"url\":\"https:\\/\\/t.co\\/ud1UpF6RVS\",\"display_url\":\"pic.twitter.com\\/ud1UpF6RVS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SammyGr96158056\\/status\\/1555317037097951233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"2914\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[0,10]},{\"text\":\"Taiwan\",\"indices\":[11,18]},{\"text\":\"BigBrother\",\"indices\":[19,30]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[31,49]},{\"text\":\"BBNajia\",\"indices\":[50,58]},{\"text\":\"BBNaija\",\"indices\":[59,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555316793249599489,\"id_str\":\"1555316793249599489\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"url\":\"https:\\/\\/t.co\\/npACZaYBZJ\",\"display_url\":\"pic.twitter.com\\/npACZaYBZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndrewKunz7\\/status\\/1555316858437484544\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2915\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555313890539573252,\"id_str\":\"1555313890539573252\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"url\":\"https:\\/\\/t.co\\/sGrgwMYnR0\",\"display_url\":\"pic.twitter.com\\/sGrgwMYnR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zeus_el_Savage\\/status\\/1555313928296665088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":202,\"h\":424,\"resize\":\"fit\"}}}]},\"2916\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[34,51]},{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[60,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2917\":{\"hashtags\":[{\"text\":\"birthday\",\"indices\":[42,51]},{\"text\":\"streaming\",\"indices\":[52,62]},{\"text\":\"smallstreamers\",\"indices\":[79,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"BulletTrainMovie\",\"indices\":[103,120]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[121,133]},{\"text\":\"twitch\",\"indices\":[134,141]},{\"text\":\"twitchstreamer\",\"indices\":[142,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Se7h95ajvo\",\"expanded_url\":\"http:\\/\\/Twitch.tv\\/fast_paced_sloth\",\"display_url\":\"Twitch.tv\\/fast_paced_slo\\u2026\",\"indices\":[0,23]}]},\"2918\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"Bullish\",\"indices\":[45,53]},{\"text\":\"iphone14\",\"indices\":[54,63]},{\"text\":\"PiConsensus\",\"indices\":[64,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555313075116449793,\"id_str\":\"1555313075116449793\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"url\":\"https:\\/\\/t.co\\/J5gc59nY80\",\"display_url\":\"pic.twitter.com\\/J5gc59nY80\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555313085501652992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":866,\"h\":1298,\"resize\":\"fit\"}}}]},\"2919\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"BBNaijaS7\",\"indices\":[25,35]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[36,54]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[55,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555308891436621826,\"id_str\":\"1555308891436621826\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"url\":\"https:\\/\\/t.co\\/pHWTp7I5mJ\",\"display_url\":\"pic.twitter.com\\/pHWTp7I5mJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555309544292630528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2920\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[194,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555303203847249921,\"id_str\":\"1555303203847249921\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"url\":\"https:\\/\\/t.co\\/cbSE372zmL\",\"display_url\":\"pic.twitter.com\\/cbSE372zmL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Twenty_naira\\/status\\/1555303207236255744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":414,\"resize\":\"fit\"}}}]},\"2921\":{\"hashtags\":[{\"text\":\"prank\",\"indices\":[40,46]},{\"text\":\"trender_sam\",\"indices\":[47,59]},{\"text\":\"explore\",\"indices\":[60,68]},{\"text\":\"ManUnited\",\"indices\":[69,79]},{\"text\":\"China\",\"indices\":[80,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"capitec\",\"indices\":[95,103]},{\"text\":\"Birmingham2022\",\"indices\":[104,119]},{\"text\":\"trendingvideos\",\"indices\":[120,135]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555299449458622465,\"id_str\":\"1555299449458622465\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"url\":\"https:\\/\\/t.co\\/XmsWKco1NS\",\"display_url\":\"pic.twitter.com\\/XmsWKco1NS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trender_sam\\/status\\/1555299516613627904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"}}}]},\"2922\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"capitec\",\"indices\":[246,254]},{\"text\":\"China\",\"indices\":[255,261]},{\"text\":\"onstorm\",\"indices\":[262,270]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[271,291]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555297038035714048,\"id_str\":\"1555297038035714048\",\"indices\":[292,315],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/Na4Yekzzmu\",\"display_url\":\"pic.twitter.com\\/Na4Yekzzmu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555298493316665346\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2923\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[5,20]}],\"urls\":[]},\"2924\":{\"hashtags\":[{\"text\":\"crowdfundingcampaign\",\"indices\":[166,187]},{\"text\":\"Kickstarter\",\"indices\":[188,200]},{\"text\":\"GoFundMe\",\"indices\":[201,210]},{\"text\":\"support\",\"indices\":[211,219]},{\"text\":\"Taiwan\",\"indices\":[220,227]},{\"text\":\"TejRan\",\"indices\":[228,235]},{\"text\":\"TREASUREinManila\",\"indices\":[236,253]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[254,279]},{\"text\":\"YEONJUN\",\"indices\":[280,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"httpxellise\",\"name\":\"Ellise\",\"id\":1235930251844153344,\"id_str\":\"1235930251844153344\",\"indices\":[0,12]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[142,165]}],\"media\":[{\"id\":1555289978367889411,\"id_str\":\"1555289978367889411\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"url\":\"https:\\/\\/t.co\\/7rnj6pp7NE\",\"display_url\":\"pic.twitter.com\\/7rnj6pp7NE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555290140561625090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"2925\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[143,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"capitec\",\"indices\":[169,177]},{\"text\":\"onstorm\",\"indices\":[178,186]},{\"text\":\"recession\",\"indices\":[187,197]},{\"text\":\"news\",\"indices\":[198,203]},{\"text\":\"PokemonPresents\",\"indices\":[204,220]},{\"text\":\"ChelseaFC\",\"indices\":[221,231]},{\"text\":\"Birmingham2022\",\"indices\":[232,247]},{\"text\":\"music\",\"indices\":[248,254]},{\"text\":\"Musica\",\"indices\":[255,262]},{\"text\":\"vocalcarecoach\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555288389473259522,\"id_str\":\"1555288389473259522\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"url\":\"https:\\/\\/t.co\\/48lu9wGaF4\",\"display_url\":\"pic.twitter.com\\/48lu9wGaF4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555289069831311363\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2926\":{\"hashtags\":[{\"text\":\"my5starstory\",\"indices\":[70,83]},{\"text\":\"capitec\",\"indices\":[183,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"BulletTrainMovie\",\"indices\":[200,217]},{\"text\":\"onstorm\",\"indices\":[218,226]},{\"text\":\"music\",\"indices\":[227,233]},{\"text\":\"BB24\",\"indices\":[234,239]},{\"text\":\"BBNaijaS7\",\"indices\":[240,250]},{\"text\":\"BulletTrain\",\"indices\":[251,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[145,158]}],\"urls\":[],\"media\":[{\"id\":1555286117347459072,\"id_str\":\"1555286117347459072\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"url\":\"https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"display_url\":\"pic.twitter.com\\/Ie9UaQ7YBU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kinqbrizy1\\/status\\/1555286290148589571\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"2927\":{\"hashtags\":[{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[42,50]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[51,65]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[66,78]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[79,102]},{\"text\":\"ichmachenichtmehrmit\",\"indices\":[103,124]},{\"text\":\"BulletTrainMovie\",\"indices\":[125,142]},{\"text\":\"\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059\",\"indices\":[143,159]},{\"text\":\"Taiwan\",\"indices\":[160,167]},{\"text\":\"capitec\",\"indices\":[168,176]},{\"text\":\"Sismo\",\"indices\":[177,183]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a78\",\"indices\":[184,192]},{\"text\":\"\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a\",\"indices\":[193,211]},{\"text\":\"\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a\",\"indices\":[212,230]},{\"text\":\"\\u0643\\u0644\\u0646\\u0627_\\u0627\\u0644\\u0634\\u064a\\u062e_\\u0628\\u0646_\\u062d\\u0645\\u064a\\u062f\",\"indices\":[231,250]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a77\",\"indices\":[251,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"morrishills_\",\"name\":\"Morris Hills\",\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"indices\":[26,39]}],\"urls\":[],\"media\":[{\"id\":1555279899912552448,\"id_str\":\"1555279899912552448\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/eggArJK1mA\",\"display_url\":\"pic.twitter.com\\/eggArJK1mA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555279982598946821\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2928\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[40,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"capitec\",\"indices\":[67,75]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[76,88]},{\"text\":\"trends\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8EIbvwItzv\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/LH7J57RB2GUON1\",\"display_url\":\"wa.me\\/message\\/LH7J57\\u2026\",\"indices\":[110,133]}],\"media\":[{\"id\":1555279715027587080,\"id_str\":\"1555279715027587080\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1355,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}}]},\"2929\":{\"hashtags\":[{\"text\":\"Lebanon\",\"indices\":[192,200]},{\"text\":\"Taiwan\",\"indices\":[201,208]},{\"text\":\"crime\",\"indices\":[209,215]},{\"text\":\"WHO\",\"indices\":[216,220]},{\"text\":\"recession\",\"indices\":[221,231]},{\"text\":\"BulletTrainMovie\",\"indices\":[232,249]},{\"text\":\"TrendingNow\",\"indices\":[250,262]},{\"text\":\"Trending\",\"indices\":[263,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555274103359168513,\"id_str\":\"1555274103359168513\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"url\":\"https:\\/\\/t.co\\/XLJzMjNhun\",\"display_url\":\"pic.twitter.com\\/XLJzMjNhun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555274246074548227\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2930\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"MohaleOTR\",\"indices\":[93,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Rvk8u5qP58\",\"expanded_url\":\"https:\\/\\/touchaheart.com.ng\\/2022\\/08\\/04\\/nigerian-doughnuts-filled-with-jam-recipe-method-history-types\\/\",\"display_url\":\"touchaheart.com.ng\\/2022\\/08\\/04\\/nig\\u2026\",\"indices\":[104,127]}]},\"2931\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[74,82]},{\"text\":\"BulletTrainMovie\",\"indices\":[83,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"Wizkid\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwBvCavfgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/spaces\\/1MnGnkMXbjoJO\",\"display_url\":\"twitter.com\\/i\\/spaces\\/1MnGn\\u2026\",\"indices\":[50,73]}]},\"2932\":{\"hashtags\":[{\"text\":\"Azerbaijan\",\"indices\":[189,200]},{\"text\":\"london\",\"indices\":[201,208]},{\"text\":\"Diplomacy\",\"indices\":[209,219]},{\"text\":\"BulletTrainMovie\",\"indices\":[220,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"PokemonPresents\",\"indices\":[246,262]},{\"text\":\"Trending\",\"indices\":[263,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555272561373609984,\"id_str\":\"1555272561373609984\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"url\":\"https:\\/\\/t.co\\/A84bZqVB2K\",\"display_url\":\"pic.twitter.com\\/A84bZqVB2K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555272697474588673\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}}}]},\"2933\":{\"hashtags\":[{\"text\":\"Pantami\",\"indices\":[253,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]},{\"text\":\"NigerRepublic\",\"indices\":[270,284]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270714822983680,\"id_str\":\"1555270714822983680\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"2934\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"pere\",\"indices\":[141,146]},{\"text\":\"RahmanJago\",\"indices\":[147,158]},{\"text\":\"eico\",\"indices\":[159,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270415982936065,\"id_str\":\"1555270415982936065\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}}]},\"2935\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[43,51]},{\"text\":\"VIBRYANNTS\",\"indices\":[64,75]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/RMj7g6MMC1\",\"display_url\":\"pic.twitter.com\\/RMj7g6MMC1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}},\"source_status_id\":1555248905692086274,\"source_status_id_str\":\"1555248905692086274\",\"source_user_id\":1279448672183476224,\"source_user_id_str\":\"1279448672183476224\"}]},\"2936\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[52,59]},{\"text\":\"Deborah\",\"indices\":[60,68]},{\"text\":\"iphone14\",\"indices\":[69,78]},{\"text\":\"RahmanJago\",\"indices\":[79,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555253487654641667,\"id_str\":\"1555253487654641667\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"url\":\"https:\\/\\/t.co\\/vEn321p0T2\",\"display_url\":\"pic.twitter.com\\/vEn321p0T2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Am_Benco\\/status\\/1555253770518405123\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2937\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[0,8]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"VIBRYANNTS\",\"indices\":[126,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555250710274523136,\"id_str\":\"1555250710274523136\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"url\":\"https:\\/\\/t.co\\/EfUaut9kOK\",\"display_url\":\"pic.twitter.com\\/EfUaut9kOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555250716188581893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"2938\":{\"hashtags\":[{\"text\":\"Repost\",\"indices\":[70,77]},{\"text\":\"BulletTrainMovie\",\"indices\":[78,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"capitec\",\"indices\":[104,112]},{\"text\":\"timesupolivia\",\"indices\":[113,127]},{\"text\":\"BibleSumett\",\"indices\":[128,140]},{\"text\":\"PokemonScarletViolet\",\"indices\":[141,162]},{\"text\":\"kagiso\",\"indices\":[163,170]},{\"text\":\"Billing\",\"indices\":[195,203]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[171,178]},{\"screen_name\":\"SpyroTheDragon\",\"name\":\"Spyro\",\"id\":964267437037305858,\"id_str\":\"964267437037305858\",\"indices\":[179,194]}],\"urls\":[],\"media\":[{\"id\":1555250004314431489,\"id_str\":\"1555250004314431489\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"url\":\"https:\\/\\/t.co\\/kzmzAnO5vv\",\"display_url\":\"pic.twitter.com\\/kzmzAnO5vv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Treasuregodwi7\\/status\\/1555250097927110658\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2939\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[43,51]},{\"text\":\"VIBRYANNTS\",\"indices\":[64,75]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/cmaB04hQQc\",\"display_url\":\"pic.twitter.com\\/cmaB04hQQc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}}}]},\"2940\":{\"hashtags\":[{\"text\":\"VIBRYANNTS\",\"indices\":[33,44]},{\"text\":\"BulletTrainMovie\",\"indices\":[54,71]},{\"text\":\"BBNaija\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555247726476115968,\"id_str\":\"1555247726476115968\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"url\":\"https:\\/\\/t.co\\/UPSQQiIjql\",\"display_url\":\"pic.twitter.com\\/UPSQQiIjql\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555247814728470528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"}}}]},\"2941\":{\"hashtags\":[{\"text\":\"forex\",\"indices\":[61,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"onstorm\",\"indices\":[76,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2942\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"thursdayvibes\",\"indices\":[82,96]},{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"capitec\",\"indices\":[115,123]},{\"text\":\"timesupolivia\",\"indices\":[124,138]},{\"text\":\"BibleSumett\",\"indices\":[139,151]},{\"text\":\"PokemonScarletViolet\",\"indices\":[152,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555245840435912705,\"id_str\":\"1555245840435912705\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"url\":\"https:\\/\\/t.co\\/ifvkYa4wvx\",\"display_url\":\"pic.twitter.com\\/ifvkYa4wvx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SiR__DONY\\/status\\/1555245847591403520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":422,\"resize\":\"fit\"}}}]},\"2943\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"inflation\",\"indices\":[160,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555241323099312129,\"id_str\":\"1555241323099312129\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"url\":\"https:\\/\\/t.co\\/DGoLBK68RJ\",\"display_url\":\"pic.twitter.com\\/DGoLBK68RJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1555241326807060480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":348,\"resize\":\"fit\"}}}]},\"2944\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[25,42]},{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"capitec\",\"indices\":[51,59]},{\"text\":\"timesupolivia\",\"indices\":[60,74]},{\"text\":\"BibleSumett\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555240673586069506,\"id_str\":\"1555240673586069506\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"url\":\"https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"display_url\":\"pic.twitter.com\\/3Z0k3P5ZFq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555240679495929856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":351,\"h\":680,\"resize\":\"fit\"}}}]},\"2945\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[27,44]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"capitec\",\"indices\":[53,61]},{\"text\":\"timesupolivia\",\"indices\":[62,76]},{\"text\":\"BibleSumett\",\"indices\":[77,89]},{\"text\":\"onstorm\",\"indices\":[90,98]},{\"text\":\"PokemonScarletViolet\",\"indices\":[99,120]},{\"text\":\"BBNaija\",\"indices\":[121,129]},{\"text\":\"sabinus\",\"indices\":[130,138]},{\"text\":\"kagiso\",\"indices\":[139,146]},{\"text\":\"MilePhakphum\",\"indices\":[147,160]},{\"text\":\"thursdayvibes\",\"indices\":[161,175]},{\"text\":\"Grunewald\",\"indices\":[176,186]},{\"text\":\"fyp\",\"indices\":[187,191]},{\"text\":\"Trending\",\"indices\":[192,201]},{\"text\":\"sports\",\"indices\":[202,209]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555238932593377281,\"id_str\":\"1555238932593377281\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"url\":\"https:\\/\\/t.co\\/1UsANAgJJV\",\"display_url\":\"pic.twitter.com\\/1UsANAgJJV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brian_naija\\/status\\/1555239078848765957\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2946\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[227,234]},{\"text\":\"capitec\",\"indices\":[235,243]},{\"text\":\"NECL\",\"indices\":[244,249]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555237487114584064,\"id_str\":\"1555237487114584064\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"url\":\"https:\\/\\/t.co\\/ii0ZYtyYog\",\"display_url\":\"pic.twitter.com\\/ii0ZYtyYog\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555237490612731906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}}]},\"2947\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"capitec\",\"indices\":[63,71]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[72,95]},{\"text\":\"timesupolivia\",\"indices\":[96,110]},{\"text\":\"BibleSumett\",\"indices\":[111,123]},{\"text\":\"PokemonScarletViolet\",\"indices\":[124,145]},{\"text\":\"onstorm\",\"indices\":[146,154]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[155,169]},{\"text\":\"PokemonPresents\",\"indices\":[170,186]},{\"text\":\"kagiso\",\"indices\":[187,194]},{\"text\":\"MilePhakphum\",\"indices\":[195,208]},{\"text\":\"JKLive\",\"indices\":[209,216]},{\"text\":\"BibleBuild\",\"indices\":[217,228]},{\"text\":\"TASYAXTRAFARASYA\",\"indices\":[229,246]},{\"text\":\"thursdayvibes\",\"indices\":[247,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555236063790104577,\"id_str\":\"1555236063790104577\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"url\":\"https:\\/\\/t.co\\/q3EnTanOHT\",\"display_url\":\"pic.twitter.com\\/q3EnTanOHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555236168366686208\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2948\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"capitec\",\"indices\":[108,116]},{\"text\":\"thursdayvibes\",\"indices\":[117,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2949\":{\"hashtags\":[{\"text\":\"omojesucfr\",\"indices\":[24,35]},{\"text\":\"followme\",\"indices\":[36,45]},{\"text\":\"Taiwan\",\"indices\":[46,53]},{\"text\":\"capitec\",\"indices\":[54,62]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[63,86]},{\"text\":\"timesupolivia\",\"indices\":[87,101]},{\"text\":\"BibleSumett\",\"indices\":[102,114]},{\"text\":\"PokemonScarletViolet\",\"indices\":[115,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"PokemonPresents\",\"indices\":[146,162]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[163,177]},{\"text\":\"kagiso\",\"indices\":[178,185]},{\"text\":\"MilePhakphum\",\"indices\":[186,199]},{\"text\":\"JKLive\",\"indices\":[200,207]},{\"text\":\"BibleBuild\",\"indices\":[208,219]},{\"text\":\"thursdayvibes\",\"indices\":[220,234]},{\"text\":\"TASYAXTRAFARASYA\",\"indices\":[235,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231241796042752,\"id_str\":\"1555231241796042752\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"url\":\"https:\\/\\/t.co\\/0VeX3MpLGa\",\"display_url\":\"pic.twitter.com\\/0VeX3MpLGa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OMOJESUCFR\\/status\\/1555231420993478661\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":870,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":563,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":720,\"resize\":\"fit\"}}}]},\"2950\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2951\":{\"hashtags\":[{\"text\":\"Memes\",\"indices\":[139,145]},{\"text\":\"memesdaily\",\"indices\":[146,157]},{\"text\":\"BUGA\",\"indices\":[158,163]},{\"text\":\"Twitter\",\"indices\":[164,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]},{\"text\":\"timesupolivia\",\"indices\":[181,195]},{\"text\":\"PokemonScarletViolet\",\"indices\":[196,217]},{\"text\":\"onstorm\",\"indices\":[218,226]},{\"text\":\"PokemonPresents\",\"indices\":[227,243]},{\"text\":\"memetopiaz\",\"indices\":[244,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"memetopiaz\",\"name\":\"memetopia\",\"id\":1547297863759273985,\"id_str\":\"1547297863759273985\",\"indices\":[72,83]},{\"screen_name\":\"iFunnymemeIG\",\"name\":\"iFunnymeme\",\"id\":116409573,\"id_str\":\"116409573\",\"indices\":[84,97]},{\"screen_name\":\"introvertsmemes\",\"name\":\"MEMES\",\"id\":312230865,\"id_str\":\"312230865\",\"indices\":[98,114]},{\"screen_name\":\"memes\",\"name\":\"Memes.com\",\"id\":536582046,\"id_str\":\"536582046\",\"indices\":[115,121]},{\"screen_name\":\"memesbychroath\",\"name\":\"CHRoaTh\",\"id\":1137801995195232258,\"id_str\":\"1137801995195232258\",\"indices\":[122,137]}],\"urls\":[]},\"2952\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[67,85]},{\"text\":\"news\",\"indices\":[86,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2NvI1GWAPI\",\"expanded_url\":\"https:\\/\\/www.brief.ng\\/politics\\/update-on-the-taiwan-china-crisis\\/\",\"display_url\":\"brief.ng\\/politics\\/updat\\u2026\",\"indices\":[34,57]}],\"media\":[{\"id\":1555224387703513092,\"id_str\":\"1555224387703513092\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"url\":\"https:\\/\\/t.co\\/W1gUdkdJgc\",\"display_url\":\"pic.twitter.com\\/W1gUdkdJgc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BriefNig\\/status\\/1555224391016931329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"medium\":{\"w\":577,\"h\":428,\"resize\":\"fit\"}}}]},\"2953\":{\"hashtags\":[{\"text\":\"BreakingNews\",\"indices\":[25,38]},{\"text\":\"Taiwan\",\"indices\":[39,46]},{\"text\":\"AsifGhafoor\",\"indices\":[47,59]},{\"text\":\"HelicopterCrash\",\"indices\":[60,76]},{\"text\":\"AhadRazaMir\",\"indices\":[77,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555219206618103808,\"id_str\":\"1555219206618103808\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"url\":\"https:\\/\\/t.co\\/s1bj2Id58o\",\"display_url\":\"pic.twitter.com\\/s1bj2Id58o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fatima_shaaikh\\/status\\/1555219220975308802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":668,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":379,\"h\":680,\"resize\":\"fit\"}}}]},\"2954\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[234,241]},{\"text\":\"Sheggz\",\"indices\":[242,249]},{\"text\":\"ASUU\",\"indices\":[250,255]},{\"text\":\"arisetv\",\"indices\":[256,264]},{\"text\":\"buhari\",\"indices\":[265,272]},{\"text\":\"wizkid\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555212987299946497,\"id_str\":\"1555212987299946497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"url\":\"https:\\/\\/t.co\\/2T16mzm66j\",\"display_url\":\"pic.twitter.com\\/2T16mzm66j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/edublogsng\\/status\\/1555213282570514433\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2955\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"capitec\",\"indices\":[198,206]},{\"text\":\"CommonwealthGames2022\",\"indices\":[207,229]},{\"text\":\"iphone14\",\"indices\":[235,244]},{\"text\":\"Wizkid\",\"indices\":[245,252]},{\"text\":\"Cucurella\",\"indices\":[253,263]},{\"text\":\"BBNaija\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555210948415307777,\"id_str\":\"1555210948415307777\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"url\":\"https:\\/\\/t.co\\/ttOTCeFsTr\",\"display_url\":\"pic.twitter.com\\/ttOTCeFsTr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1555210958066294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"2956\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"ASUUstrike\",\"indices\":[73,84]},{\"text\":\"ASUU\",\"indices\":[85,90]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[92,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4dhL4QTvks\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Src90b\",\"display_url\":\"bit.ly\\/3Src90b\",\"indices\":[126,149]}]},\"2957\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"timesupolivia\",\"indices\":[88,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsWwjgB9jA\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3zVk1jl\",\"display_url\":\"bit.ly\\/3zVk1jl\",\"indices\":[113,136]}]},\"2958\":{\"hashtags\":[{\"text\":\"iphone11\",\"indices\":[125,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[144,164]},{\"text\":\"AamirKhan\",\"indices\":[166,176]},{\"text\":\"MONEY\",\"indices\":[178,184]},{\"text\":\"sabinus\",\"indices\":[186,194]},{\"text\":\"SheggzOlu\",\"indices\":[196,206]},{\"text\":\"onstorm\",\"indices\":[208,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GistHubNaija\",\"name\":\"GistHub\",\"id\":854041219156070400,\"id_str\":\"854041219156070400\",\"indices\":[110,123]}],\"urls\":[],\"media\":[{\"id\":1555203508659490816,\"id_str\":\"1555203508659490816\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjge4pwSaL\",\"display_url\":\"pic.twitter.com\\/Qjge4pwSaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GistHubNaija\\/status\\/1555203587046887425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2959\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Simp\",\"indices\":[74,79]},{\"text\":\"superettan\",\"indices\":[80,91]},{\"text\":\"SuperEagles\",\"indices\":[92,104]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[105,125]},{\"text\":\"CristianoRonaldo\",\"indices\":[126,143]},{\"text\":\"iPhone13\",\"indices\":[144,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P0plKFZF5o\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JupmBn\",\"display_url\":\"bit.ly\\/3JupmBn\",\"indices\":[164,187]}]},\"2960\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"piconsensus2022\",\"indices\":[34,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555203034082414594,\"id_str\":\"1555203034082414594\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"url\":\"https:\\/\\/t.co\\/LcDAYcTaY0\",\"display_url\":\"pic.twitter.com\\/LcDAYcTaY0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1555203105435836416\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2961\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"LovelyINU\",\"indices\":[72,82]},{\"text\":\"iphone14\",\"indices\":[83,92]},{\"text\":\"iphone6\",\"indices\":[93,101]},{\"text\":\"piConsen\",\"indices\":[102,111]},{\"text\":\"Slimp\",\"indices\":[112,118]},{\"text\":\"Bone\",\"indices\":[119,124]},{\"text\":\"JustinBieber\",\"indices\":[125,138]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"MONEY\",\"indices\":[147,153]},{\"text\":\"Airtel\",\"indices\":[154,161]},{\"text\":\"London\",\"indices\":[162,169]},{\"text\":\"NeverAgain\",\"indices\":[170,181]},{\"text\":\"SquidGame\",\"indices\":[182,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2962\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[60,83]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[84,102]},{\"text\":\"ChinaTaiwan\",\"indices\":[103,115]},{\"text\":\"iPhone\",\"indices\":[116,123]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[124,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fwteHWjrmq\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JJw9rj\",\"display_url\":\"bit.ly\\/3JJw9rj\",\"indices\":[156,179]}]},\"2963\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[86,109]},{\"text\":\"ASUUstrike\",\"indices\":[110,121]},{\"text\":\"Simp\",\"indices\":[122,127]},{\"text\":\"iPhone13\",\"indices\":[128,137]},{\"text\":\"IPPIS\",\"indices\":[138,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WGP9is3TsK\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3QojlZv\",\"display_url\":\"bit.ly\\/3QojlZv\",\"indices\":[155,178]}]},\"2964\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[227,234]},{\"text\":\"timesupolivia\",\"indices\":[235,249]},{\"text\":\"TEAMWANGdesignTHAILAND\",\"indices\":[250,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2965\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[47,59]},{\"text\":\"UkraineRussiaWar\",\"indices\":[60,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2966\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[104,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555196687752335361,\"id_str\":\"1555196687752335361\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"url\":\"https:\\/\\/t.co\\/LonB0rDlm4\",\"display_url\":\"pic.twitter.com\\/LonB0rDlm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olubabaoshole\\/status\\/1555196763736342531\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2967\":{\"hashtags\":[{\"text\":\"NancyPelosiTaiwanVisit\",\"indices\":[72,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[104,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BQhNvR2qE4\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\\/breaking-china-fires-missiles-near-taiwan-in-drills-after-pelosi-visit\\/\",\"display_url\":\"onlinepikin.com\\/breaking-china\\u2026\",\"indices\":[124,147]}]},\"2968\":{\"hashtags\":[{\"text\":\"Peace\",\"indices\":[145,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"China\",\"indices\":[160,166]},{\"text\":\"war\",\"indices\":[167,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555190711372365825,\"id_str\":\"1555190711372365825\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"url\":\"https:\\/\\/t.co\\/geJezowyMb\",\"display_url\":\"pic.twitter.com\\/geJezowyMb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmaijoseph\\/status\\/1555191096170479617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2969\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"BBNaija\",\"indices\":[126,134]},{\"text\":\"BBNajia\",\"indices\":[135,143]},{\"text\":\"BBNaijaS7\",\"indices\":[144,154]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[155,170]},{\"text\":\"BBNaijaQuidax\",\"indices\":[171,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2970\":{\"hashtags\":[{\"text\":\"SheggzOlu\",\"indices\":[68,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555183806751055874,\"id_str\":\"1555183806751055874\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"url\":\"https:\\/\\/t.co\\/wyrlRD1y4C\",\"display_url\":\"pic.twitter.com\\/wyrlRD1y4C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dj_borsh\\/status\\/1555184514900582401\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2971\":{\"hashtags\":[{\"text\":\"mobilevideography\",\"indices\":[62,80]},{\"text\":\"musicvideo\",\"indices\":[81,92]},{\"text\":\"music\",\"indices\":[93,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"LoveIslandUSA\",\"indices\":[108,122]},{\"text\":\"blackpanther\",\"indices\":[123,136]},{\"text\":\"zeeteroliver\",\"indices\":[137,150]},{\"text\":\"Amapiano\",\"indices\":[151,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555180460329897992,\"id_str\":\"1555180460329897992\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1933,\"resize\":\"fit\"}}}]},\"2972\":{\"hashtags\":[{\"text\":\"Motivation\",\"indices\":[95,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2973\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[145,159]},{\"text\":\"Mompha\",\"indices\":[160,167]},{\"text\":\"Obidatti023\",\"indices\":[168,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Qdpaper2\",\"name\":\"Qudus Akanbi Eleyi.\",\"id\":1497996117153353737,\"id_str\":\"1497996117153353737\",\"indices\":[0,9]},{\"screen_name\":\"adams_oshiomole\",\"name\":\"Adams Oshiomole\",\"id\":2273438128,\"id_str\":\"2273438128\",\"indices\":[19,35]}],\"urls\":[]},\"2974\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"LoveIslandUSA\",\"indices\":[33,47]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[48,68]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[69,89]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[90,110]},{\"text\":\"timesupolivia\",\"indices\":[111,125]},{\"text\":\"PokemonPresents\",\"indices\":[126,142]},{\"text\":\"onstorm\",\"indices\":[143,151]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[152,175]},{\"text\":\"kagiso\",\"indices\":[176,183]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[184,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555174887903432704,\"id_str\":\"1555174887903432704\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"url\":\"https:\\/\\/t.co\\/OwCNmTJy2S\",\"display_url\":\"pic.twitter.com\\/OwCNmTJy2S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/K_h_a_l_i_f\\/status\\/1555174968110878720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"2975\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"PiConsensus\",\"indices\":[163,175]},{\"text\":\"PiNetworkUpdates\",\"indices\":[176,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8sgE1PQYKE\",\"expanded_url\":\"http:\\/\\/www.minealpha.net\",\"display_url\":\"minealpha.net\",\"indices\":[99,122]}]},\"2976\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"TaiwanIsaCountry\",\"indices\":[112,129]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[130,148]},{\"text\":\"LoveIslandUSA\",\"indices\":[149,163]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[164,184]},{\"text\":\"timesupolivia\",\"indices\":[185,199]},{\"text\":\"Trending\",\"indices\":[200,209]},{\"text\":\"trekkerterroristen\",\"indices\":[210,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555173183489277957,\"id_str\":\"1555173183489277957\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"url\":\"https:\\/\\/t.co\\/1k4n29zj8M\",\"display_url\":\"pic.twitter.com\\/1k4n29zj8M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555173247641161729\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"2977\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Gombe\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VSqloXTTN7\",\"expanded_url\":\"https:\\/\\/infactng.com\\/2022\\/08\\/04\\/shocker-after-failing-his-exams-goke-committed-suicide\\/\",\"display_url\":\"infactng.com\\/2022\\/08\\/04\\/sho\\u2026\",\"indices\":[70,93]}]},\"2978\":{\"hashtags\":[{\"text\":\"Eloswag\",\"indices\":[98,106]},{\"text\":\"davidhundeyin\",\"indices\":[119,133]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"Obidatti023\",\"indices\":[144,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555167868895068165,\"id_str\":\"1555167868895068165\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"url\":\"https:\\/\\/t.co\\/U63Lw3koX1\",\"display_url\":\"pic.twitter.com\\/U63Lw3koX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nwakaibeya001\\/status\\/1555168058779525126\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"2979\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[259,266]},{\"text\":\"sabinus\",\"indices\":[267,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555165190198640640,\"id_str\":\"1555165190198640640\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"url\":\"https:\\/\\/t.co\\/Brr9ZnDADz\",\"display_url\":\"pic.twitter.com\\/Brr9ZnDADz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555165192924831744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":502,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":638,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":638,\"resize\":\"fit\"}}}]},\"2980\":{\"hashtags\":[{\"text\":\"gobarta\",\"indices\":[58,66]},{\"text\":\"barter\",\"indices\":[67,74]},{\"text\":\"trading\",\"indices\":[75,83]},{\"text\":\"tradebybarter\",\"indices\":[84,98]},{\"text\":\"BBNajiaS7\",\"indices\":[99,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gobarta_\",\"name\":\"gobarta_\",\"id\":1382325349107830792,\"id_str\":\"1382325349107830792\",\"indices\":[13,22]}],\"urls\":[],\"media\":[{\"id\":1555161212412989443,\"id_str\":\"1555161212412989443\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"url\":\"https:\\/\\/t.co\\/C2HwqBfqlE\",\"display_url\":\"pic.twitter.com\\/C2HwqBfqlE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gobarta_\\/status\\/1555161230607777793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2981\":{\"hashtags\":[{\"text\":\"abeggod\",\"indices\":[143,151]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[152,172]},{\"text\":\"Archie\",\"indices\":[173,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"PokemonPresents\",\"indices\":[189,205]},{\"text\":\"erica\",\"indices\":[206,212]},{\"text\":\"BBNaija7\",\"indices\":[213,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555156992766902274,\"id_str\":\"1555156992766902274\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"url\":\"https:\\/\\/t.co\\/gliY1QIjih\",\"display_url\":\"pic.twitter.com\\/gliY1QIjih\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555157065131298817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"}}}]},\"2982\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[191,198]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"minorta\",\"name\":\"Lin Ching-Yi\",\"id\":11616642,\"id_str\":\"11616642\",\"indices\":[0,8]}],\"urls\":[]},\"2983\":{\"hashtags\":[{\"text\":\"spacemallio\",\"indices\":[46,58]},{\"text\":\"spacemallshopping\",\"indices\":[59,77]},{\"text\":\"spacemallapp\",\"indices\":[78,91]},{\"text\":\"iphone11\",\"indices\":[92,101]},{\"text\":\"Iphone14ProMax\",\"indices\":[102,117]},{\"text\":\"BeautyTukura\",\"indices\":[118,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"Entrepreneur\",\"indices\":[140,153]},{\"text\":\"BusinessOwners\",\"indices\":[154,169]},{\"text\":\"SMESupportHour\",\"indices\":[170,185]},{\"text\":\"SMEs\",\"indices\":[186,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555152665503563776,\"id_str\":\"1555152665503563776\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"url\":\"https:\\/\\/t.co\\/WOacyTORbz\",\"display_url\":\"pic.twitter.com\\/WOacyTORbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/spacemallio\\/status\\/1555152668116533248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2984\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"timesupolivia\",\"indices\":[141,155]},{\"text\":\"CommonwealthGames2022\",\"indices\":[156,178]},{\"text\":\"Nigeria\",\"indices\":[179,187]},{\"text\":\"shopping\",\"indices\":[188,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555149692396265473,\"id_str\":\"1555149692396265473\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"url\":\"https:\\/\\/t.co\\/k24n6sdcoO\",\"display_url\":\"pic.twitter.com\\/k24n6sdcoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BargainFortress\\/status\\/1555149702697476101\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":856,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"2985\":{\"hashtags\":[{\"text\":\"designers\",\"indices\":[94,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"CommonwealthGames2022\",\"indices\":[113,135]},{\"text\":\"timesupolivia\",\"indices\":[136,150]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Nabhel_\",\"name\":\"Nabhel\",\"id\":561937140,\"id_str\":\"561937140\",\"indices\":[63,71]},{\"screen_name\":\"pixelyut\",\"name\":\"Bright Mba\\ud83e\\udd85\\ud83e\\udd85\",\"id\":702750969440899072,\"id_str\":\"702750969440899072\",\"indices\":[72,81]},{\"screen_name\":\"Big_Heeazy\",\"name\":\"SonOfMan\",\"id\":794142226255376384,\"id_str\":\"794142226255376384\",\"indices\":[82,93]}],\"urls\":[],\"media\":[{\"id\":1555149362526830592,\"id_str\":\"1555149362526830592\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"url\":\"https:\\/\\/t.co\\/UWW30ahzr7\",\"display_url\":\"pic.twitter.com\\/UWW30ahzr7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rukegetrich09\\/status\\/1555149398035906561\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":224,\"resize\":\"fit\"}}}]},\"2986\":{\"hashtags\":[{\"text\":\"wizkid\",\"indices\":[142,149]},{\"text\":\"festac\",\"indices\":[150,157]},{\"text\":\"iPhone13\",\"indices\":[158,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"invest\",\"indices\":[176,183]},{\"text\":\"capitec\",\"indices\":[184,192]},{\"text\":\"teni\",\"indices\":[193,198]},{\"text\":\"explore\",\"indices\":[199,207]},{\"text\":\"BBNajiaS7\",\"indices\":[208,218]},{\"text\":\"BBNaija\",\"indices\":[219,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VJMnsXbNYd\",\"expanded_url\":\"http:\\/\\/myabove.ng\",\"display_url\":\"myabove.ng\",\"indices\":[82,105]}],\"media\":[{\"id\":1555148898599141376,\"id_str\":\"1555148898599141376\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"url\":\"https:\\/\\/t.co\\/vJ5ijjcRis\",\"display_url\":\"pic.twitter.com\\/vJ5ijjcRis\",\"expanded_url\":\"https:\\/\\/twitter.com\\/welcometoabove\\/status\\/1555148913782493185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"2987\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"AppleMusic\",\"indices\":[91,102]},{\"text\":\"AppleEvent\",\"indices\":[103,114]},{\"text\":\"AppleMusicRT\",\"indices\":[115,128]},{\"text\":\"portapottydubai\",\"indices\":[129,145]},{\"text\":\"portharcourt\",\"indices\":[147,160]},{\"text\":\"lagos\",\"indices\":[161,167]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[168,190]},{\"text\":\"Kano\",\"indices\":[191,196]},{\"text\":\"timesupolivia\",\"indices\":[197,211]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[212,220]},{\"text\":\"CommonwealthGames2022\",\"indices\":[221,243]},{\"text\":\"AFROBEAT\",\"indices\":[244,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[47,57]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SEd4udv6bm\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/jaiye-single\\/1634846567?uo=4&app=apple+music\",\"display_url\":\"music.apple.com\\/us\\/album\\/jaiye\\u2026\",\"indices\":[255,278]}]},\"2988\":{\"hashtags\":[{\"text\":\"zigproperties\",\"indices\":[33,47]},{\"text\":\"sabinus\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"CommonwealthGames2022\",\"indices\":[132,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555144210206031873,\"id_str\":\"1555144210206031873\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"url\":\"https:\\/\\/t.co\\/ZFgC36Ucpe\",\"display_url\":\"pic.twitter.com\\/ZFgC36Ucpe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zigproperties\\/status\\/1555144224714231809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2989\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2990\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2991\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555140005584142337,\"id_str\":\"1555140005584142337\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"url\":\"https:\\/\\/t.co\\/GeyHHH3sFh\",\"display_url\":\"pic.twitter.com\\/GeyHHH3sFh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555140625653186560\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}}}]},\"2992\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2993\":{\"hashtags\":[{\"text\":\"SapeleRoadMatters\",\"indices\":[83,101]},{\"text\":\"FixSapeleRoad\",\"indices\":[103,117]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"PokemonPresents\",\"indices\":[207,223]},{\"text\":\"onstorm\",\"indices\":[224,232]},{\"text\":\"timesupolivia\",\"indices\":[233,247]},{\"text\":\"GizliSakli\",\"indices\":[248,259]},{\"text\":\"Niger\",\"indices\":[261,267]},{\"text\":\"PDP\",\"indices\":[268,272]},{\"text\":\"ASUU\",\"indices\":[273,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FMWHNIG\",\"name\":\"Federal Ministry of Works & Housing\",\"id\":720608960550715392,\"id_str\":\"720608960550715392\",\"indices\":[128,136]},{\"screen_name\":\"tundefashola\",\"name\":\"Babatunde Fashola\",\"id\":153209413,\"id_str\":\"153209413\",\"indices\":[137,150]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[151,159]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[160,171]},{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[172,184]},{\"screen_name\":\"thecableng\",\"name\":\"TheCable\",\"id\":1954402777,\"id_str\":\"1954402777\",\"indices\":[185,196]}],\"urls\":[],\"media\":[{\"id\":1555138634113753088,\"id_str\":\"1555138634113753088\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"url\":\"https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"display_url\":\"pic.twitter.com\\/ZdoPAt0eNQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bright_agbons\\/status\\/1555139152135561218\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"medium\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"large\":{\"w\":224,\"h\":416,\"resize\":\"fit\"}}}]},\"2994\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"PokemonPresents\",\"indices\":[26,42]},{\"text\":\"onstorm\",\"indices\":[43,51]},{\"text\":\"PokemonScarletViolet\",\"indices\":[52,73]},{\"text\":\"timesupolivia\",\"indices\":[74,88]},{\"text\":\"CommonwealthGames2022\",\"indices\":[89,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555138321642409985,\"id_str\":\"1555138321642409985\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"url\":\"https:\\/\\/t.co\\/FkCxF40SeP\",\"display_url\":\"pic.twitter.com\\/FkCxF40SeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1555138525649043457\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}}}]},\"2995\":{\"hashtags\":[{\"text\":\"benincitymall\",\"indices\":[218,232]},{\"text\":\"iPhone14\",\"indices\":[234,243]},{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"Oshiomole\",\"indices\":[252,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555136504955125761,\"id_str\":\"1555136504955125761\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"url\":\"https:\\/\\/t.co\\/WeK9AczT9n\",\"display_url\":\"pic.twitter.com\\/WeK9AczT9n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555136512567697408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2996\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[98,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]},{\"text\":\"badagry\",\"indices\":[115,123]},{\"text\":\"socialmediamarketing\",\"indices\":[124,145]},{\"text\":\"socialmedia\",\"indices\":[146,158]},{\"text\":\"dabrandcity\",\"indices\":[159,171]},{\"text\":\"socialbrandcity\",\"indices\":[172,188]},{\"text\":\"ThrowbackThursday\",\"indices\":[189,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"2997\":{\"hashtags\":[{\"text\":\"CannabisCommunity\",\"indices\":[78,96]},{\"text\":\"party\",\"indices\":[97,103]},{\"text\":\"HypeBeast\",\"indices\":[104,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555135449693392896,\"id_str\":\"1555135449693392896\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"url\":\"https:\\/\\/t.co\\/E8Qdn5xljL\",\"display_url\":\"pic.twitter.com\\/E8Qdn5xljL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Christoph7Onoja\\/status\\/1555135839843352576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"2998\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[32,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BarackObama\",\"name\":\"Barack Obama\",\"id\":813286,\"id_str\":\"813286\",\"indices\":[14,26]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[49,64]},{\"screen_name\":\"legitngnews\",\"name\":\"Legit.ng | Leading the way\",\"id\":569053466,\"id_str\":\"569053466\",\"indices\":[65,77]},{\"screen_name\":\"BarackObama\",\"name\":\"Barack Obama\",\"id\":813286,\"id_str\":\"813286\",\"indices\":[108,120]},{\"screen_name\":\"BBCBreaking\",\"name\":\"BBC Breaking News\",\"id\":5402612,\"id_str\":\"5402612\",\"indices\":[121,133]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[134,145]}],\"urls\":[],\"media\":[{\"id\":1555134911127887872,\"id_str\":\"1555134911127887872\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"2999\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"CommonwealthGames2022\",\"indices\":[231,253]},{\"text\":\"thursdayvibes\",\"indices\":[254,268]},{\"text\":\"GoldMedal\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[0,9]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[186,193]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[212,222]}],\"urls\":[]},\"3000\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[163,175]},{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"WW3\",\"indices\":[236,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555132227209789440,\"id_str\":\"1555132227209789440\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"url\":\"https:\\/\\/t.co\\/zduT6xE89u\",\"display_url\":\"pic.twitter.com\\/zduT6xE89u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CrystosD\\/status\\/1555132666793840641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"},\"medium\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"large\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3001\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[173,179]},{\"text\":\"Finland\",\"indices\":[180,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"PokemonPresents\",\"indices\":[197,213]},{\"text\":\"onstorm\",\"indices\":[215,223]},{\"text\":\"Tinubu\",\"indices\":[224,231]},{\"text\":\"SDGs\",\"indices\":[233,238]},{\"text\":\"OBIDIENTS\",\"indices\":[239,249]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[250,262]},{\"text\":\"onstorm\",\"indices\":[263,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555130887028760576,\"id_str\":\"1555130887028760576\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"url\":\"https:\\/\\/t.co\\/I3KElydxVd\",\"display_url\":\"pic.twitter.com\\/I3KElydxVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1555130893794267138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}}]},\"3002\":{\"hashtags\":[{\"text\":\"bellashmurda\",\"indices\":[90,103]},{\"text\":\"Finance\",\"indices\":[104,112]},{\"text\":\"Wizkid\",\"indices\":[113,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"BBNaija\",\"indices\":[129,137]},{\"text\":\"davido\",\"indices\":[138,145]},{\"text\":\"iphone14\",\"indices\":[146,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555129115388350464,\"id_str\":\"1555129115388350464\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"3003\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3004\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[46,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3005\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[55,62]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"PokemonScarletViolet\",\"indices\":[76,97]},{\"text\":\"YEEZYDAY\",\"indices\":[98,107]},{\"text\":\"Nigeria\",\"indices\":[108,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555127653304238080,\"id_str\":\"1555127653304238080\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"url\":\"https:\\/\\/t.co\\/AzpwIvRGzg\",\"display_url\":\"pic.twitter.com\\/AzpwIvRGzg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BernardTwise\\/status\\/1555127655908970497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"},\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"}}}]},\"3006\":{\"hashtags\":[{\"text\":\"bbnaija\",\"indices\":[184,192]},{\"text\":\"Taiwan\",\"indices\":[193,200]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SupremeContine1\",\"name\":\"Supreme_Continental\",\"id\":1472152760397307906,\"id_str\":\"1472152760397307906\",\"indices\":[103,119]}],\"urls\":[],\"media\":[{\"id\":1555126804217843712,\"id_str\":\"1555126804217843712\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"url\":\"https:\\/\\/t.co\\/GkUDEs2ebr\",\"display_url\":\"pic.twitter.com\\/GkUDEs2ebr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SupremeContine1\\/status\\/1555126966491152384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":448,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":359,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":448,\"resize\":\"fit\"}}}]},\"3007\":{\"hashtags\":[{\"text\":\"Binance\",\"indices\":[108,116]},{\"text\":\"BNB\",\"indices\":[117,121]},{\"text\":\"onstorm\",\"indices\":[122,130]},{\"text\":\"CommonwealthGames2022\",\"indices\":[131,153]},{\"text\":\"Finance\",\"indices\":[154,162]},{\"text\":\"Coinbase\",\"indices\":[163,172]},{\"text\":\"CryptocurrencyNews\",\"indices\":[173,192]},{\"text\":\"Taiwan\",\"indices\":[193,200]},{\"text\":\"r4today\",\"indices\":[201,209]},{\"text\":\"YEEZYDAY\",\"indices\":[210,219]},{\"text\":\"blockchaintechnology\",\"indices\":[220,241]},{\"text\":\"BlockchainCentral\",\"indices\":[242,260]},{\"text\":\"BBNaija\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555123015662424065,\"id_str\":\"1555123015662424065\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"url\":\"https:\\/\\/t.co\\/VjXGAOwrhN\",\"display_url\":\"pic.twitter.com\\/VjXGAOwrhN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1555123024881500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3008\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"CommonwealthGames2022\",\"indices\":[33,55]},{\"text\":\"ASUU\",\"indices\":[56,61]},{\"text\":\"BBNajia\",\"indices\":[62,70]},{\"text\":\"AsiaCup2022\",\"indices\":[71,83]},{\"text\":\"Ukraine\",\"indices\":[84,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555122389062750208,\"id_str\":\"1555122389062750208\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"url\":\"https:\\/\\/t.co\\/MICtAAyTx6\",\"display_url\":\"pic.twitter.com\\/MICtAAyTx6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555122411443478528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3009\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"Taipei\",\"indices\":[132,139]},{\"text\":\"Beijing\",\"indices\":[140,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CizsNSzYIK\",\"expanded_url\":\"https:\\/\\/investogist.com\\/china-begins-live-fire-military-drills-around-taiwan-taiwan-says-ballistic-missiles-fired\\/\",\"display_url\":\"investogist.com\\/china-begins-l\\u2026\",\"indices\":[93,116]}]},\"3010\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[162,167]},{\"text\":\"BBNajia\",\"indices\":[168,176]},{\"text\":\"AsiaCup2022\",\"indices\":[177,189]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[190,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"CommonwealthGames2022\",\"indices\":[217,239]},{\"text\":\"COVID19\",\"indices\":[240,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555114382283218950,\"id_str\":\"1555114382283218950\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"url\":\"https:\\/\\/t.co\\/6FJESNlTb5\",\"display_url\":\"pic.twitter.com\\/6FJESNlTb5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555114494996660224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":426,\"resize\":\"fit\"}}}]},\"3011\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"PokemonPresents\",\"indices\":[24,40]},{\"text\":\"PokemonScarletViolet\",\"indices\":[41,62]},{\"text\":\"onstorm\",\"indices\":[63,71]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[72,84]},{\"text\":\"timesupolivia\",\"indices\":[85,99]},{\"text\":\"knust\",\"indices\":[100,106]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[107,128]},{\"text\":\"DonBelle\",\"indices\":[129,138]},{\"text\":\"FOREVER1\",\"indices\":[139,148]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[149,163]},{\"text\":\"DONBELLEmpire\",\"indices\":[164,178]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[179,202]},{\"text\":\"Pakistan\",\"indices\":[203,212]},{\"text\":\"AsiaCup2022\",\"indices\":[213,225]},{\"text\":\"SheggzOlu\",\"indices\":[226,236]},{\"text\":\"Wizkid\",\"indices\":[237,244]},{\"text\":\"Ethereum\",\"indices\":[245,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555108327671078912,\"id_str\":\"1555108327671078912\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"url\":\"https:\\/\\/t.co\\/o5Pmz3XLfc\",\"display_url\":\"pic.twitter.com\\/o5Pmz3XLfc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1555113873476313088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}}}]},\"3012\":{\"hashtags\":[{\"text\":\"Batgirl\",\"indices\":[26,34]},{\"text\":\"Batgirl\",\"indices\":[187,195]},{\"text\":\"batgirlmovie\",\"indices\":[196,209]},{\"text\":\"BatgirlForever\",\"indices\":[210,225]},{\"text\":\"LeakBatgirl\",\"indices\":[226,238]},{\"text\":\"LeakBatgirlMovie\",\"indices\":[239,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"AsiaCup2022\",\"indices\":[266,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3013\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[100,107]},{\"text\":\"Zamazamas\",\"indices\":[108,118]},{\"text\":\"Afrobeats\",\"indices\":[119,129]},{\"text\":\"TheGuy\",\"indices\":[130,137]},{\"text\":\"onstorm\",\"indices\":[138,146]},{\"text\":\"Taiwan\",\"indices\":[147,154]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"choccitymusic\",\"name\":\"Chocolate City Music\",\"id\":84534309,\"id_str\":\"84534309\",\"indices\":[65,79]},{\"screen_name\":\"MI_Abaga\",\"name\":\"The Guy\",\"id\":50246444,\"id_str\":\"50246444\",\"indices\":[80,89]},{\"screen_name\":\"thisisAQ\",\"name\":\"Gilbert Bani\",\"id\":198274234,\"id_str\":\"198274234\",\"indices\":[90,99]}],\"urls\":[],\"media\":[{\"id\":1555109039897546755,\"id_str\":\"1555109039897546755\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"url\":\"https:\\/\\/t.co\\/njEI0I4SGm\",\"display_url\":\"pic.twitter.com\\/njEI0I4SGm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PeculiarHype\\/status\\/1555109135024328704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":374,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":704,\"resize\":\"fit\"}}}]},\"3014\":{\"hashtags\":[{\"text\":\"FYP\",\"indices\":[57,61]},{\"text\":\"DonBelle\",\"indices\":[62,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"knust\",\"indices\":[80,86]},{\"text\":\"artistsontwitter\",\"indices\":[87,104]},{\"text\":\"AsiaCup2022\",\"indices\":[105,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555106120620036096,\"id_str\":\"1555106120620036096\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}}]},\"3015\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[122,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"PeterObi4President2023\",\"indices\":[139,162]},{\"text\":\"EndASUUStrike\",\"indices\":[163,177]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[179,204]},{\"text\":\"PeterObi2023\",\"indices\":[206,219]},{\"text\":\"EndSARS\",\"indices\":[220,228]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[230,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104570979893249,\"id_str\":\"1555104570979893249\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"url\":\"https:\\/\\/t.co\\/LFmXT3mSmp\",\"display_url\":\"pic.twitter.com\\/LFmXT3mSmp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104574884683777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"3016\":{\"hashtags\":[{\"text\":\"RYE\",\"indices\":[29,33]},{\"text\":\"ryeci\",\"indices\":[34,40]},{\"text\":\"Bitcoin\",\"indices\":[41,49]},{\"text\":\"cryptocurrencies\",\"indices\":[50,67]},{\"text\":\"Crypto\",\"indices\":[68,75]},{\"text\":\"analysis\",\"indices\":[76,85]},{\"text\":\"triclown\",\"indices\":[88,97]},{\"text\":\"PokemonPresents\",\"indices\":[98,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"knust\",\"indices\":[123,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104188203520001,\"id_str\":\"1555104188203520001\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"url\":\"https:\\/\\/t.co\\/adGWS5HU7U\",\"display_url\":\"pic.twitter.com\\/adGWS5HU7U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DDadalekan\\/status\\/1555104345552715776\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}}}]},\"3017\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[101,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"PeterObi4President2023\",\"indices\":[117,140]},{\"text\":\"EndASUUStrike\",\"indices\":[141,155]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[157,182]},{\"text\":\"PeterObi2023\",\"indices\":[184,197]},{\"text\":\"EndSARS\",\"indices\":[198,206]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[208,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104124575916032,\"id_str\":\"1555104124575916032\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"url\":\"https:\\/\\/t.co\\/mWBy6AU7IA\",\"display_url\":\"pic.twitter.com\\/mWBy6AU7IA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104127406989312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"3018\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[54,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"PeterObi4President2023\",\"indices\":[70,93]},{\"text\":\"EndASUUStrike\",\"indices\":[94,108]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[110,135]},{\"text\":\"PeterObi2023\",\"indices\":[137,150]},{\"text\":\"EndSARS\",\"indices\":[151,159]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[161,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555103188058906624,\"id_str\":\"1555103188058906624\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"url\":\"https:\\/\\/t.co\\/SGhptaePzL\",\"display_url\":\"pic.twitter.com\\/SGhptaePzL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555103518092140545\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"3019\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[113,129]},{\"text\":\"NFT\",\"indices\":[130,134]},{\"text\":\"P2EGame\",\"indices\":[135,143]},{\"text\":\"videogames\",\"indices\":[144,155]},{\"text\":\"onstorm\",\"indices\":[156,164]},{\"text\":\"DONBELLEmpire\",\"indices\":[165,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"PokemonPresents\",\"indices\":[188,204]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"safrootics\",\"name\":\"Safrootics Game\",\"id\":1489151831745912844,\"id_str\":\"1489151831745912844\",\"indices\":[59,70]}],\"urls\":[]},\"3020\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Taipei\",\"indices\":[98,105]},{\"text\":\"Beijing\",\"indices\":[106,114]},{\"text\":\"Pelosi\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p7udXGzOWk\",\"expanded_url\":\"https:\\/\\/investogist.com\\/china-hits-taiwan-with-penalties-in-wake-of-pelosis-visit\\/\",\"display_url\":\"investogist.com\\/china-hits-tai\\u2026\",\"indices\":[59,82]}]},\"3021\":{\"hashtags\":[{\"text\":\"UkraineRussiaWar\",\"indices\":[156,173]},{\"text\":\"Ukraine\",\"indices\":[174,182]},{\"text\":\"Russia\",\"indices\":[183,190]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"UkraineWillWin\",\"indices\":[199,214]},{\"text\":\"UkraineWar\",\"indices\":[215,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3022\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"NigerRepublic\",\"indices\":[177,191]},{\"text\":\"Nigeria\",\"indices\":[192,200]},{\"text\":\"Buhari\",\"indices\":[201,208]},{\"text\":\"SUV\",\"indices\":[209,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555100150342770688,\"id_str\":\"1555100150342770688\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"url\":\"https:\\/\\/t.co\\/gmCqDCXAtU\",\"display_url\":\"pic.twitter.com\\/gmCqDCXAtU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555100209516056576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3023\":{\"hashtags\":[{\"text\":\"personaldevelopment\",\"indices\":[89,109]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Beintentional\",\"indices\":[120,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3024\":{\"hashtags\":[{\"text\":\"ASSU\",\"indices\":[22,27]},{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"AsiaCup2022\",\"indices\":[36,48]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555097733924618241,\"id_str\":\"1555097733924618241\",\"indices\":[49,72],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"url\":\"https:\\/\\/t.co\\/r19nkT6Hvz\",\"display_url\":\"pic.twitter.com\\/r19nkT6Hvz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xminister0\\/status\\/1555097790358904834\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3025\":{\"hashtags\":[{\"text\":\"timesupolivia\",\"indices\":[193,207]},{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"sexworkiswork\",\"indices\":[216,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HivosWiL\",\"name\":\"Hivos-SheLeads\",\"id\":882127791994662913,\"id_str\":\"882127791994662913\",\"indices\":[167,176]},{\"screen_name\":\"gwheri\",\"name\":\"Herianto\",\"id\":194414063,\"id_str\":\"194414063\",\"indices\":[177,184]},{\"screen_name\":\"VSI_ng\",\"name\":\"Vision Spring Initiatives\",\"id\":970949740786577409,\"id_str\":\"970949740786577409\",\"indices\":[185,192]}],\"urls\":[]},\"3026\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"AppleMusicRT\",\"indices\":[77,90]},{\"text\":\"applestoashesgame\",\"indices\":[91,109]},{\"text\":\"applemusic\\u0e23\\u0e32\\u0e04\\u0e32\\u0e16\\u0e39\\u0e01\",\"indices\":[110,128]},{\"text\":\"iTunes\",\"indices\":[129,136]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[137,149]},{\"text\":\"PokemonPresents\",\"indices\":[150,166]},{\"text\":\"appleiphones\",\"indices\":[167,180]},{\"text\":\"airpodsgen2\",\"indices\":[181,193]},{\"text\":\"applemusicnigeria\",\"indices\":[194,212]},{\"text\":\"applemusicaustralia\",\"indices\":[213,233]},{\"text\":\"applemusicUK\",\"indices\":[234,247]},{\"text\":\"iphone14pro\",\"indices\":[248,260]},{\"text\":\"iPhones\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3027\":{\"hashtags\":[{\"text\":\"kwintemper\",\"indices\":[149,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"PokemonPresents\",\"indices\":[169,185]},{\"text\":\"enugu\",\"indices\":[186,192]},{\"text\":\"anambra\",\"indices\":[193,201]},{\"text\":\"imostate\",\"indices\":[202,211]},{\"text\":\"abia\",\"indices\":[212,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kwinmusic_\",\"name\":\"siren \\ud83e\\udddc\\ud83c\\udffb\\u200d\\u2640\\ufe0f\\ud83c\\udf0a\",\"id\":1136944832826548224,\"id_str\":\"1136944832826548224\",\"indices\":[22,33]}],\"urls\":[],\"media\":[{\"id\":1555094694941581317,\"id_str\":\"1555094694941581317\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"url\":\"https:\\/\\/t.co\\/GWdlCnhlVA\",\"display_url\":\"pic.twitter.com\\/GWdlCnhlVA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PRFirmNG\\/status\\/1555094753410170880\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3028\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[183,190]},{\"text\":\"Scholarship\",\"indices\":[191,203]},{\"text\":\"stipend\",\"indices\":[204,212]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555092895455125504,\"id_str\":\"1555092895455125504\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"url\":\"https:\\/\\/t.co\\/P4cWauuqsP\",\"display_url\":\"pic.twitter.com\\/P4cWauuqsP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kellysteveo\\/status\\/1555092899624325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"thumb\":{\"w\":122,\"h\":122,\"resize\":\"crop\"}}}]},\"3029\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/IaOMul24J1\",\"display_url\":\"pic.twitter.com\\/IaOMul24J1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"3030\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"AONArsenal\",\"indices\":[184,195]},{\"text\":\"FOREVER1\",\"indices\":[196,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555084499490377728,\"id_str\":\"1555084499490377728\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3031\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/2nqfH7Fu77\",\"display_url\":\"pic.twitter.com\\/2nqfH7Fu77\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"3032\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"Fabrizio\",\"indices\":[44,53]},{\"text\":\"Nike\",\"indices\":[54,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555089203746185216,\"id_str\":\"1555089203746185216\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"url\":\"https:\\/\\/t.co\\/xVic1GMEyb\",\"display_url\":\"pic.twitter.com\\/xVic1GMEyb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theFlareabove\\/status\\/1555089213820993540\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":706,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":706,\"resize\":\"fit\"}}}]},\"3033\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]},{\"text\":\"PokemonPresents\",\"indices\":[50,66]},{\"text\":\"onstorm\",\"indices\":[67,75]},{\"text\":\"songwriter\",\"indices\":[76,87]},{\"text\":\"artist\",\"indices\":[88,95]},{\"text\":\"ArtistOnTwitter\",\"indices\":[96,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555086679995736064,\"id_str\":\"1555086679995736064\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/hkLJd20xwd\",\"display_url\":\"pic.twitter.com\\/hkLJd20xwd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uno_fini\\/status\\/1555086880462577664\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3034\":{\"hashtags\":[{\"text\":\"AllorNothing\",\"indices\":[30,43]},{\"text\":\"arisetv\",\"indices\":[44,52]},{\"text\":\"cynithaokereke\",\"indices\":[53,68]},{\"text\":\"Asuu\",\"indices\":[69,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"AsiaCup2022\",\"indices\":[83,95]},{\"text\":\"BBNaija\",\"indices\":[96,104]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[105,123]},{\"text\":\"DONBELLEmpire\",\"indices\":[124,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3035\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"BBNaija\",\"indices\":[76,84]},{\"text\":\"BBNajiaS7\",\"indices\":[85,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q5ihXkZI0y\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/bbnaija-s7-khalid-grants-daniella-midnight-ecstasy-under-d-duvet\\/\",\"display_url\":\"iexclusivenews.com.ng\\/bbnaija-s7-kha\\u2026\",\"indices\":[96,119]}]},\"3036\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[97,119]},{\"text\":\"AbujaFinders\",\"indices\":[120,133]},{\"text\":\"RealEstate\",\"indices\":[134,145]},{\"text\":\"PeterObi\",\"indices\":[146,155]},{\"text\":\"EndSARS\",\"indices\":[156,164]},{\"text\":\"Barcelona\",\"indices\":[165,175]},{\"text\":\"Barca\",\"indices\":[176,182]},{\"text\":\"PeterObi4President2023\",\"indices\":[183,206]},{\"text\":\"BBNaija7\",\"indices\":[207,216]},{\"text\":\"INEC\",\"indices\":[217,222]},{\"text\":\"Arewa4PeterObi\",\"indices\":[223,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"Taiwan\",\"indices\":[255,262]},{\"text\":\"davidhundeyin\",\"indices\":[263,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555078073728598018,\"id_str\":\"1555078073728598018\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cs1HxMDA4O\",\"display_url\":\"pic.twitter.com\\/Cs1HxMDA4O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555078393535897600\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3037\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_theladymo\",\"name\":\"\\u1eccM\\u1ecc\\u0301T\\u00c1R\\u00c1 \\u00c0K\\u00c0NN\\u00cd\",\"id\":1187135845444280320,\"id_str\":\"1187135845444280320\",\"indices\":[50,61]},{\"screen_name\":\"Abdulhermeed001\",\"name\":\"L\\u00ebgend \\u00e4bdul ch\\u00e4fe\",\"id\":1533827781800480770,\"id_str\":\"1533827781800480770\",\"indices\":[62,78]},{\"screen_name\":\"Ameengwaska\",\"name\":\"Ameen Adam\",\"id\":1475147076069691399,\"id_str\":\"1475147076069691399\",\"indices\":[79,91]},{\"screen_name\":\"cuppymusic\",\"name\":\"Cuppy\",\"id\":226944459,\"id_str\":\"226944459\",\"indices\":[92,103]},{\"screen_name\":\"Abdoulmaleek001\",\"name\":\"Abdulmaleek\",\"id\":1392048183916875780,\"id_str\":\"1392048183916875780\",\"indices\":[104,120]},{\"screen_name\":\"muftahu_E\",\"name\":\"Muftahu B Excellency\",\"id\":1539616595739279361,\"id_str\":\"1539616595739279361\",\"indices\":[121,131]},{\"screen_name\":\"AhmadCeleh\",\"name\":\"AHMAD CELEH\",\"id\":1503629007585173504,\"id_str\":\"1503629007585173504\",\"indices\":[132,143]}],\"urls\":[],\"media\":[{\"id\":1555078029604536320,\"id_str\":\"1555078029604536320\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"url\":\"https:\\/\\/t.co\\/ie1QIkk4Ul\",\"display_url\":\"pic.twitter.com\\/ie1QIkk4Ul\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1555078032158855169\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"}}}]},\"3038\":{\"hashtags\":[{\"text\":\"Khalid\",\"indices\":[44,51]},{\"text\":\"Deji\",\"indices\":[52,57]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"timesupolivia\",\"indices\":[88,102]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Videosnwhatever\",\"name\":\"VideosWhatever\",\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"indices\":[58,74]},{\"screen_name\":\"LFC\",\"name\":\"Liverpool FC\",\"id\":19583545,\"id_str\":\"19583545\",\"indices\":[75,79]}],\"urls\":[],\"media\":[{\"id\":1555076636365692934,\"id_str\":\"1555076636365692934\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"url\":\"https:\\/\\/t.co\\/A812edBOgl\",\"display_url\":\"pic.twitter.com\\/A812edBOgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1555076714312699904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3039\":{\"hashtags\":[{\"text\":\"BLACKPINK\",\"indices\":[137,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"PokemonPresents\",\"indices\":[156,172]},{\"text\":\"arisetv\",\"indices\":[173,181]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[182,211]},{\"text\":\"onstorm\",\"indices\":[212,220]},{\"text\":\"timesupolivia\",\"indices\":[221,235]},{\"text\":\"AONArsenal\",\"indices\":[236,247]},{\"text\":\"FOREVER1\",\"indices\":[248,257]},{\"text\":\"GoldMedal\",\"indices\":[258,268]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AkanScript\",\"name\":\"akan isong\",\"id\":2979322396,\"id_str\":\"2979322396\",\"indices\":[55,66]},{\"screen_name\":\"fiverr\",\"name\":\"Fiverr\",\"id\":150248263,\"id_str\":\"150248263\",\"indices\":[80,87]},{\"screen_name\":\"Upwork\",\"name\":\"Upwork\",\"id\":15225375,\"id_str\":\"15225375\",\"indices\":[88,95]},{\"screen_name\":\"anoncontent\",\"name\":\"Anonymous Content\",\"id\":95111684,\"id_str\":\"95111684\",\"indices\":[96,108]},{\"screen_name\":\"AdobeVideo\",\"name\":\"Adobe Video & Motion\",\"id\":115584650,\"id_str\":\"115584650\",\"indices\":[109,120]},{\"screen_name\":\"motionpictures\",\"name\":\"Motion Picture Association\",\"id\":289072583,\"id_str\":\"289072583\",\"indices\":[121,136]}],\"urls\":[],\"media\":[{\"id\":1555074608088367107,\"id_str\":\"1555074608088367107\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"url\":\"https:\\/\\/t.co\\/nPzDVBq45i\",\"display_url\":\"pic.twitter.com\\/nPzDVBq45i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akanscript_\\/status\\/1555074729022717955\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3040\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"PokemonPresents\",\"indices\":[42,58]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[59,73]},{\"text\":\"HarGharTiranga\",\"indices\":[74,89]},{\"text\":\"Pakistan\",\"indices\":[90,99]},{\"text\":\"Uyajola99\",\"indices\":[100,110]},{\"text\":\"boycottrakshabandhan\",\"indices\":[111,132]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[133,150]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[13,25]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[26,33]}],\"urls\":[],\"media\":[{\"id\":1555072895377965056,\"id_str\":\"1555072895377965056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"url\":\"https:\\/\\/t.co\\/0A2Y7575z3\",\"display_url\":\"pic.twitter.com\\/0A2Y7575z3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NetMakanaki\\/status\\/1555073073103118337\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3041\":{\"hashtags\":[{\"text\":\"AONArsenal\",\"indices\":[20,31]},{\"text\":\"FOREVER1\",\"indices\":[32,41]},{\"text\":\"mopar\",\"indices\":[42,48]},{\"text\":\"onstorm\",\"indices\":[49,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555071758092353537,\"id_str\":\"1555071758092353537\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"url\":\"https:\\/\\/t.co\\/sqJJe9gm0r\",\"display_url\":\"pic.twitter.com\\/sqJJe9gm0r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/m_zordAutorep\\/status\\/1555071764933361665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"3042\":{\"hashtags\":[{\"text\":\"talkximg\",\"indices\":[175,184]},{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"Batgirl\",\"indices\":[193,201]},{\"text\":\"AlexJones\",\"indices\":[203,213]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[214,235]},{\"text\":\"PokemonScarletViolet\",\"indices\":[236,257]},{\"text\":\"LoveIslandUSA\",\"indices\":[258,272]},{\"text\":\"RHOBH\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[151,174]}],\"media\":[{\"id\":1555036286783832064,\"id_str\":\"1555036286783832064\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"url\":\"https:\\/\\/t.co\\/pgTYOBpEWl\",\"display_url\":\"pic.twitter.com\\/pgTYOBpEWl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555036308552253440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"}}}]},\"3043\":{\"hashtags\":[{\"text\":\"Intelfin\",\"indices\":[132,141]},{\"text\":\"Cosmos\",\"indices\":[142,149]},{\"text\":\"Giveaway\",\"indices\":[150,159]},{\"text\":\"web3\",\"indices\":[160,165]},{\"text\":\"NFTCommumity\",\"indices\":[166,179]},{\"text\":\"P2E\",\"indices\":[180,184]},{\"text\":\"Metaverse\",\"indices\":[185,195]},{\"text\":\"CryptocurrencyNews\",\"indices\":[196,215]},{\"text\":\"CryptoGems\",\"indices\":[216,227]},{\"text\":\"Crypto\",\"indices\":[228,235]},{\"text\":\"nftnews\",\"indices\":[236,244]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"BNB\",\"indices\":[265,269]},{\"text\":\"invest\",\"indices\":[270,277]}],\"symbols\":[{\"text\":\"JUNO\",\"indices\":[245,250]},{\"text\":\"ATOM\",\"indices\":[251,256]}],\"user_mentions\":[{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[7,23]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qYeuwDzdf0\",\"expanded_url\":\"http:\\/\\/intelfin.io\",\"display_url\":\"intelfin.io\",\"indices\":[108,131]}],\"media\":[{\"id\":1555031704716427266,\"id_str\":\"1555031704716427266\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"url\":\"https:\\/\\/t.co\\/jd5z1wrXPL\",\"display_url\":\"pic.twitter.com\\/jd5z1wrXPL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1555031716372381696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3044\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"China\",\"indices\":[216,222]},{\"text\":\"InspirationalQuotes\",\"indices\":[223,243]},{\"text\":\"Motivation\",\"indices\":[244,255]},{\"text\":\"PokemonPresents\",\"indices\":[256,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555020298747092992,\"id_str\":\"1555020298747092992\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"url\":\"https:\\/\\/t.co\\/0farobJifY\",\"display_url\":\"pic.twitter.com\\/0farobJifY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RobertAshu_\\/status\\/1555020307894878208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"3045\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[164,187]},{\"text\":\"PeterObi\",\"indices\":[189,198]},{\"text\":\"peterobicampaignfund\",\"indices\":[200,221]},{\"text\":\"BBNaija\",\"indices\":[223,231]},{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"PeterObi4President\",\"indices\":[242,261]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[4,13]}],\"urls\":[]},\"3046\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[13,19]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"russia\",\"indices\":[52,59]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NonFungDark\",\"name\":\"NonFungibleDark\",\"id\":1525108520579997697,\"id_str\":\"1525108520579997697\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1555003486953123840,\"id_str\":\"1555003486953123840\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR7bsBVsAAIDGe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR7bsBVsAAIDGe.jpg\",\"url\":\"https:\\/\\/t.co\\/DMdn4SAuz1\",\"display_url\":\"pic.twitter.com\\/DMdn4SAuz1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1555003584068009987\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":192,\"h\":200,\"resize\":\"fit\"},\"large\":{\"w\":192,\"h\":200,\"resize\":\"fit\"},\"small\":{\"w\":192,\"h\":200,\"resize\":\"fit\"}}}]},\"3047\":{\"hashtags\":[{\"text\":\"twitch\",\"indices\":[151,158]},{\"text\":\"SidHearts\",\"indices\":[159,169]},{\"text\":\"whatwevalue\",\"indices\":[170,182]},{\"text\":\"Putin\",\"indices\":[183,189]},{\"text\":\"Taiwan\",\"indices\":[190,197]},{\"text\":\"clickbanklinkpromotion\",\"indices\":[198,221]},{\"text\":\"clickbankaffiliate\",\"indices\":[222,241]},{\"text\":\"amazonaffiliate\",\"indices\":[242,258]},{\"text\":\"websitetraffic\",\"indices\":[259,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4WdBuXkpqb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3OGAMmJ\",\"display_url\":\"bit.ly\\/3OGAMmJ\",\"indices\":[126,149]}],\"media\":[{\"id\":1554998383789621248,\"id_str\":\"1554998383789621248\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"url\":\"https:\\/\\/t.co\\/kTip6QKDfX\",\"display_url\":\"pic.twitter.com\\/kTip6QKDfX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/THexperrt\\/status\\/1554998401888141312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":712,\"h\":430,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":712,\"h\":430,\"resize\":\"fit\"}}}]},\"3048\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"3049\":{\"hashtags\":[{\"text\":\"writerslift\",\"indices\":[34,46]},{\"text\":\"wips\",\"indices\":[64,69]},{\"text\":\"arts\",\"indices\":[70,75]},{\"text\":\"books\",\"indices\":[76,82]},{\"text\":\"blogs\",\"indices\":[83,89]},{\"text\":\"poetry\",\"indices\":[90,97]},{\"text\":\"WritingCommunity\",\"indices\":[141,158]},{\"text\":\"explore\",\"indices\":[159,167]},{\"text\":\"AuthorsOfTwitter\",\"indices\":[168,185]},{\"text\":\"bloggers\",\"indices\":[186,195]},{\"text\":\"PokemonScarletViolet\",\"indices\":[197,218]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[219,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3050\":{\"hashtags\":[{\"text\":\"UELQualifier\",\"indices\":[29,42]},{\"text\":\"NaijaBet\",\"indices\":[240,249]},{\"text\":\"BoostedOdds\",\"indices\":[250,262]},{\"text\":\"UEL\",\"indices\":[263,267]},{\"text\":\"Taiwan\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[215,238]}],\"media\":[{\"id\":1554984101656027136,\"id_str\":\"1554984101656027136\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"url\":\"https:\\/\\/t.co\\/j2WZpXricW\",\"display_url\":\"pic.twitter.com\\/j2WZpXricW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554984208589885441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3051\":{\"hashtags\":[{\"text\":\"WritingCommunity\",\"indices\":[4,21]},{\"text\":\"writerslift\",\"indices\":[56,68]},{\"text\":\"ShamelessSelfpromoThursday\",\"indices\":[80,107]},{\"text\":\"links\",\"indices\":[118,124]},{\"text\":\"books\",\"indices\":[125,131]},{\"text\":\"arts\",\"indices\":[132,137]},{\"text\":\"blogs\",\"indices\":[138,144]},{\"text\":\"articles\",\"indices\":[145,154]},{\"text\":\"fiction\",\"indices\":[155,163]},{\"text\":\"peoms\",\"indices\":[164,170]},{\"text\":\"poetry\",\"indices\":[171,178]},{\"text\":\"YouTube\",\"indices\":[179,187]},{\"text\":\"Drama\",\"indices\":[188,194]},{\"text\":\"podcasts\",\"indices\":[195,204]},{\"text\":\"Wips\",\"indices\":[205,210]},{\"text\":\"AuthorsOfTwitter\",\"indices\":[228,245]},{\"text\":\"bloggers\",\"indices\":[246,255]},{\"text\":\"Pelosi\",\"indices\":[256,263]},{\"text\":\"BBNaija\",\"indices\":[264,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554977848884183040,\"id_str\":\"1554977848884183040\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"url\":\"https:\\/\\/t.co\\/unVdsQqRLp\",\"display_url\":\"pic.twitter.com\\/unVdsQqRLp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Enyi_VictorBlog\\/status\\/1554977853988560896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"}}}]},\"3052\":{\"hashtags\":[{\"text\":\"NationalBoobDay\",\"indices\":[123,139]},{\"text\":\"APCPresidentialPrimaries\",\"indices\":[140,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]},{\"text\":\"ASUU\",\"indices\":[174,179]},{\"text\":\"Tinubu\",\"indices\":[180,187]},{\"text\":\"blackchully\",\"indices\":[188,200]},{\"text\":\"andasuu\",\"indices\":[201,209]},{\"text\":\"PokemonPresents\",\"indices\":[210,226]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KashimSM\",\"name\":\"Kashim Shettima\",\"id\":870565463549505536,\"id_str\":\"870565463549505536\",\"indices\":[55,64]},{\"screen_name\":\"AlikoDangote\",\"name\":\"Aliko Dangote\",\"id\":1900338114,\"id_str\":\"1900338114\",\"indices\":[65,78]},{\"screen_name\":\"DangoteGroup\",\"name\":\"Dangote Group\",\"id\":176396711,\"id_str\":\"176396711\",\"indices\":[79,92]},{\"screen_name\":\"DangoteCement\",\"name\":\"Dangote Cement\",\"id\":2257734363,\"id_str\":\"2257734363\",\"indices\":[93,107]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[108,114]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[115,122]}],\"urls\":[],\"media\":[{\"id\":1554968648737034240,\"id_str\":\"1554968648737034240\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1AfxgSgqgn\",\"display_url\":\"pic.twitter.com\\/1AfxgSgqgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/awana_a_gana\\/status\\/1554968669574283264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"}}}]},\"3053\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"USChinaTaiwanTussle\",\"indices\":[156,176]},{\"text\":\"Internationaltrade\",\"indices\":[177,196]},{\"text\":\"EconomicDiplomacy\",\"indices\":[197,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3054\":{\"hashtags\":[{\"text\":\"NationalBoobDay\",\"indices\":[109,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[134,142]},{\"text\":\"PokemonPresents\",\"indices\":[143,159]},{\"text\":\"onstorm\",\"indices\":[160,168]},{\"text\":\"BoycottAliaBhatt\",\"indices\":[169,186]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[187,199]},{\"text\":\"boycottrakshabandhan\",\"indices\":[200,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3055\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[256,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"Beijing\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554964133153587200,\"id_str\":\"1554964133153587200\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"url\":\"https:\\/\\/t.co\\/Um1CyfI94W\",\"display_url\":\"pic.twitter.com\\/Um1CyfI94W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554964398757773312\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"3056\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"WWIII\",\"indices\":[47,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3057\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[58,66]},{\"text\":\"timesupolivia\",\"indices\":[67,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3058\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"PokemonPresents\",\"indices\":[48,64]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[65,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"twitterclarets\",\"indices\":[95,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554954752739393538,\"id_str\":\"1554954752739393538\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"url\":\"https:\\/\\/t.co\\/9g4czDBj9I\",\"display_url\":\"pic.twitter.com\\/9g4czDBj9I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonemic\\/status\\/1554954769776656385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"small\":{\"w\":575,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3059\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[196,203]},{\"text\":\"timesupolivia\",\"indices\":[204,218]},{\"text\":\"AsiaCup2022\",\"indices\":[219,231]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[232,253]},{\"text\":\"PokemonPresents\",\"indices\":[254,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"the_big_4lf\",\"name\":\"playboi_menace\\ud83c\\udde6\\ud83c\\uddf6\",\"id\":1383569837901828101,\"id_str\":\"1383569837901828101\",\"indices\":[0,12]},{\"screen_name\":\"bod_republic\",\"name\":\"B.O.D\",\"id\":3138923027,\"id_str\":\"3138923027\",\"indices\":[13,26]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s4uVx9u2lp\",\"expanded_url\":\"https:\\/\\/wa.me\\/23409019060747?text=Hello+I'm+interested+in+Joining+*TWITAGRAM9JA+CHANNEL*%0AMy+Name+Is\",\"display_url\":\"wa.me\\/23409019060747\\u2026\",\"indices\":[171,194]}],\"media\":[{\"id\":1554953050497875968,\"id_str\":\"1554953050497875968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"url\":\"https:\\/\\/t.co\\/hL3D2W2oyh\",\"display_url\":\"pic.twitter.com\\/hL3D2W2oyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oceanfocuz\\/status\\/1554953058412527616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"}}}]},\"3060\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[192,199]},{\"text\":\"timesupolivia\",\"indices\":[200,214]},{\"text\":\"AsiaCup2022\",\"indices\":[215,227]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[228,249]},{\"text\":\"PokemonPresents\",\"indices\":[250,266]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[0,10]},{\"screen_name\":\"Gamers8GG_AR\",\"name\":\"\\u0645\\u0648\\u0633\\u0645 \\u0627\\u0644\\u062c\\u064a\\u0645\\u0631\\u0632 Esports\",\"id\":1532703799453810690,\"id_str\":\"1532703799453810690\",\"indices\":[11,24]},{\"screen_name\":\"Gamers8GG\",\"name\":\"Gamers8 Esports\",\"id\":1532693504413028354,\"id_str\":\"1532693504413028354\",\"indices\":[25,35]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s4uVx9u2lp\",\"expanded_url\":\"https:\\/\\/wa.me\\/23409019060747?text=Hello+I'm+interested+in+Joining+*TWITAGRAM9JA+CHANNEL*%0AMy+Name+Is\",\"display_url\":\"wa.me\\/23409019060747\\u2026\",\"indices\":[167,190]}]},\"3061\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[83,97]},{\"text\":\"bolatinubu\",\"indices\":[98,109]},{\"text\":\"room1\",\"indices\":[110,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"BB24\",\"indices\":[125,130]},{\"text\":\"davidhundeyin\",\"indices\":[131,145]},{\"text\":\"stress\",\"indices\":[146,153]},{\"text\":\"remedy\",\"indices\":[154,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uoEikCochW\",\"expanded_url\":\"https:\\/\\/youtu.be\\/CyKqTJ6IBaY\",\"display_url\":\"youtu.be\\/CyKqTJ6IBaY\",\"indices\":[58,81]}],\"media\":[{\"id\":1554951610316607495,\"id_str\":\"1554951610316607495\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"url\":\"https:\\/\\/t.co\\/rGiGx9nfeD\",\"display_url\":\"pic.twitter.com\\/rGiGx9nfeD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JerryKatician01\\/status\\/1554951856362819584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3062\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"BBNajia\",\"indices\":[63,71]},{\"text\":\"BBNaijaS7\",\"indices\":[112,122]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[133,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554945877382397955,\"id_str\":\"1554945877382397955\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":451,\"resize\":\"fit\"}}}]},\"3063\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"BBNajia\",\"indices\":[47,55]},{\"text\":\"BBNaijaS7\",\"indices\":[56,66]},{\"text\":\"ASUU\",\"indices\":[67,72]},{\"text\":\"ObiDatti\",\"indices\":[73,82]},{\"text\":\"PeterObi\",\"indices\":[83,92]},{\"text\":\"Taiwanchina\",\"indices\":[93,105]},{\"text\":\"chaina\",\"indices\":[106,113]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[114,132]},{\"text\":\"CommonwealthGames2022\",\"indices\":[133,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554931987034537985,\"id_str\":\"1554931987034537985\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"url\":\"https:\\/\\/t.co\\/5hephg70Dx\",\"display_url\":\"pic.twitter.com\\/5hephg70Dx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1554932017342578692\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3064\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[202,209]},{\"text\":\"Birmingham2022\",\"indices\":[210,225]},{\"text\":\"Obidatti023\",\"indices\":[226,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[248,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554930793935405056,\"id_str\":\"1554930793935405056\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"url\":\"https:\\/\\/t.co\\/MqQNE0DluW\",\"display_url\":\"pic.twitter.com\\/MqQNE0DluW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaRealityNe1\\/status\\/1554930832753807365\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}}}]},\"3065\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[87,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"WuQian\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Et8VA4DuOx\",\"expanded_url\":\"https:\\/\\/www.thekampalareport.com\\/latest\\/world\\/2022080317780\\/spokesperson-of-ministry-of-national-defense-makes-remarks-on-pelosis-visit-to-taiwan.html\",\"display_url\":\"thekampalareport.com\\/latest\\/world\\/2\\u2026\",\"indices\":[110,133]}]},\"3066\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[85,89]},{\"text\":\"Crypto\",\"indices\":[98,105]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"Pelosi\",\"indices\":[123,130]},{\"text\":\"ETH\",\"indices\":[131,135]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rovercrc\",\"name\":\"Crypto Rover\",\"id\":1353384573435056128,\"id_str\":\"1353384573435056128\",\"indices\":[0,9]}],\"urls\":[]},\"3067\":{\"hashtags\":[{\"text\":\"AlexJones\",\"indices\":[102,112]},{\"text\":\"SandyHook\",\"indices\":[113,123]},{\"text\":\"Pokemon\",\"indices\":[124,132]},{\"text\":\"PokemonPresents\",\"indices\":[133,149]},{\"text\":\"Kansas\",\"indices\":[150,157]},{\"text\":\"fidough\",\"indices\":[158,166]},{\"text\":\"Discord\",\"indices\":[167,175]},{\"text\":\"Discovery\",\"indices\":[176,186]},{\"text\":\"HBOMax\",\"indices\":[187,194]},{\"text\":\"colwill\",\"indices\":[195,203]},{\"text\":\"FreakyGirl\",\"indices\":[204,215]},{\"text\":\"Woody\",\"indices\":[216,222]},{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"timesupolivia\",\"indices\":[231,245]},{\"text\":\"talkximg\",\"indices\":[246,255]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"LoveIsland\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554920433736114176,\"id_str\":\"1554920433736114176\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"url\":\"https:\\/\\/t.co\\/a58nuGIcuj\",\"display_url\":\"pic.twitter.com\\/a58nuGIcuj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554920465453535234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"3068\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"PokemonScarletViolet\",\"indices\":[25,46]},{\"text\":\"PokemonPresents\",\"indices\":[47,63]},{\"text\":\"boycottrakshabandhan\",\"indices\":[64,85]},{\"text\":\"bbnaija\",\"indices\":[86,94]},{\"text\":\"BigBrotherNaija\",\"indices\":[95,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554919511844945920,\"id_str\":\"1554919511844945920\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"url\":\"https:\\/\\/t.co\\/L5naFHzNv6\",\"display_url\":\"pic.twitter.com\\/L5naFHzNv6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1554919572913930240\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}}}]},\"3069\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[63,70]},{\"text\":\"massage\",\"indices\":[71,79]},{\"text\":\"Machala\",\"indices\":[80,88]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"Davido\",\"indices\":[98,105]},{\"text\":\"burnaboy\",\"indices\":[106,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3070\":{\"hashtags\":[{\"text\":\"forex\",\"indices\":[73,79]},{\"text\":\"wikifx\",\"indices\":[80,87]},{\"text\":\"trading\",\"indices\":[88,96]},{\"text\":\"MONEY\",\"indices\":[97,103]},{\"text\":\"Crypto\",\"indices\":[104,111]},{\"text\":\"news\",\"indices\":[112,117]},{\"text\":\"skills\",\"indices\":[118,125]},{\"text\":\"beginners\",\"indices\":[126,136]},{\"text\":\"PokemonScarletViolet\",\"indices\":[137,158]},{\"text\":\"PokemonPresents\",\"indices\":[159,175]},{\"text\":\"Pelosi\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OZRROchuBC\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/newsdetail\\/202208033874724444.html\",\"display_url\":\"wikifx.com\\/en\\/newsdetail\\/\\u2026\",\"indices\":[49,72]}],\"media\":[{\"id\":1554916928652730370,\"id_str\":\"1554916928652730370\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"url\":\"https:\\/\\/t.co\\/uNm3Dqi46R\",\"display_url\":\"pic.twitter.com\\/uNm3Dqi46R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1554916934776487936\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":336,\"resize\":\"fit\"}}}]},\"3071\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"PokemonPresents\",\"indices\":[145,161]},{\"text\":\"Bbnaija\",\"indices\":[162,170]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iam_timotee\",\"name\":\"Timotee\",\"id\":1282343050149232640,\"id_str\":\"1282343050149232640\",\"indices\":[0,12]},{\"screen_name\":\"rexxiepondabeat\",\"name\":\"Rexxie\",\"id\":209536731,\"id_str\":\"209536731\",\"indices\":[15,31]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[55,64]},{\"screen_name\":\"Alex_Houseof308\",\"name\":\"Four-eyed Edo Boy\\u2122\",\"id\":385986859,\"id_str\":\"385986859\",\"indices\":[65,81]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[82,93]},{\"screen_name\":\"MAVINRECORDS\",\"name\":\"MAVIN RECORDS\",\"id\":546237443,\"id_str\":\"546237443\",\"indices\":[94,107]},{\"screen_name\":\"Ebuka\",\"name\":\"Ebuka Obi-Uchendu\",\"id\":18378475,\"id_str\":\"18378475\",\"indices\":[108,114]},{\"screen_name\":\"DanielRegha\",\"name\":\"Daniel Regha\",\"id\":1213321063465025536,\"id_str\":\"1213321063465025536\",\"indices\":[171,183]}],\"urls\":[],\"media\":[{\"id\":1554914242037432320,\"id_str\":\"1554914242037432320\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"url\":\"https:\\/\\/t.co\\/60kyNTYdVC\",\"display_url\":\"pic.twitter.com\\/60kyNTYdVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_timotee\\/status\\/1554914363928100864\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3072\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554913397401128963,\"id_str\":\"1554913397401128963\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"url\":\"https:\\/\\/t.co\\/FVS92zEuL3\",\"display_url\":\"pic.twitter.com\\/FVS92zEuL3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pastppl\\/status\\/1554913407270354947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"3073\":{\"hashtags\":[{\"text\":\"transfers\",\"indices\":[173,183]},{\"text\":\"EPL\",\"indices\":[184,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3074\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"aneketwins\",\"indices\":[250,261]},{\"text\":\"worldbesttwins\",\"indices\":[262,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554910195821723648,\"id_str\":\"1554910195821723648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"url\":\"https:\\/\\/t.co\\/t83z7KgCZE\",\"display_url\":\"pic.twitter.com\\/t83z7KgCZE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554910206764765184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"}}}]},\"3075\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"minister\",\"indices\":[135,144]},{\"text\":\"midemartins\",\"indices\":[145,157]},{\"text\":\"PokemonPresents\",\"indices\":[158,174]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[175,183]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[184,202]},{\"text\":\"Nigeria\",\"indices\":[203,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554907611685871616,\"id_str\":\"1554907611685871616\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":922,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":862,\"resize\":\"fit\"}}}]},\"3076\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"PokemonPresents\",\"indices\":[37,53]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[54,72]},{\"text\":\"organics\",\"indices\":[73,82]},{\"text\":\"Nengi\",\"indices\":[84,90]},{\"text\":\"trending\",\"indices\":[91,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554905384854470660,\"id_str\":\"1554905384854470660\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"url\":\"https:\\/\\/t.co\\/jriEwqsvvJ\",\"display_url\":\"pic.twitter.com\\/jriEwqsvvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sharon_sleey\\/status\\/1554905444610703361\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3077\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"DefendDemocracy\",\"indices\":[164,180]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"padaignault\",\"name\":\"Peter Andr\\u00e9 Daignault\",\"id\":48264413,\"id_str\":\"48264413\",\"indices\":[0,12]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[52,66]}],\"urls\":[]},\"3078\":{\"hashtags\":[{\"text\":\"Azerbaijan\",\"indices\":[230,241]},{\"text\":\"Armenia\",\"indices\":[242,250]},{\"text\":\"Taiwan\",\"indices\":[251,258]},{\"text\":\"Asia\",\"indices\":[259,264]},{\"text\":\"Pelosi\",\"indices\":[265,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895396790476803,\"id_str\":\"1554895396790476803\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"url\":\"https:\\/\\/t.co\\/sSTeJQYgcQ\",\"display_url\":\"pic.twitter.com\\/sSTeJQYgcQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554895525392138241\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"3079\":{\"hashtags\":[{\"text\":\"SpaceX\",\"indices\":[203,210]},{\"text\":\"Australia\",\"indices\":[211,221]},{\"text\":\"Space\",\"indices\":[222,228]},{\"text\":\"Taiwan\",\"indices\":[229,236]},{\"text\":\"Pelosi\",\"indices\":[237,244]},{\"text\":\"TrendingNow\",\"indices\":[245,257]},{\"text\":\"trending\",\"indices\":[258,267]},{\"text\":\"viral\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554894576321761280,\"id_str\":\"1554894576321761280\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3080\":{\"hashtags\":[{\"text\":\"PremierLeague\",\"indices\":[92,106]},{\"text\":\"FPL\",\"indices\":[107,111]},{\"text\":\"ManUtd\",\"indices\":[112,119]},{\"text\":\"ManUtdFreeCristianoRonaldo\",\"indices\":[120,147]},{\"text\":\"BulletTrainMovie\",\"indices\":[148,165]},{\"text\":\"Pelosi\",\"indices\":[166,173]},{\"text\":\"Taiwan\",\"indices\":[174,181]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554893825079926784,\"id_str\":\"1554893825079926784\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"url\":\"https:\\/\\/t.co\\/q13uXAXOhv\",\"display_url\":\"pic.twitter.com\\/q13uXAXOhv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/goziedbrightest\\/status\\/1554893836513599488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"3081\":{\"hashtags\":[{\"text\":\"BadDecisionsTrailer1\",\"indices\":[84,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Pelosi\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J34HrbVp1r\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/reel\\/CgxJ7rCNYHX\\/?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/reel\\/CgxJ7rCNY\\u2026\",\"indices\":[41,64]}]},\"3082\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"Isco\",\"indices\":[140,145]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[146,167]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nurasabitu\",\"name\":\"Noorie\",\"id\":4863822340,\"id_str\":\"4863822340\",\"indices\":[168,179]},{\"screen_name\":\"el_uthmaan\",\"name\":\"I Z A L A\",\"id\":1039267748,\"id_str\":\"1039267748\",\"indices\":[180,191]},{\"screen_name\":\"Arewa_Business_\",\"name\":\"Arewa Business Hub (New acct)\",\"id\":1247643595605147650,\"id_str\":\"1247643595605147650\",\"indices\":[192,208]},{\"screen_name\":\"MalamKaybee\",\"name\":\"MALAM KAYBEE\\ud83d\\udc73\",\"id\":1225193719734906880,\"id_str\":\"1225193719734906880\",\"indices\":[209,221]},{\"screen_name\":\"Maroup_\",\"name\":\"Katy \\uf8ff\",\"id\":1399082755,\"id_str\":\"1399082755\",\"indices\":[222,230]},{\"screen_name\":\"najeebweederjr\",\"name\":\"NAJEEB\\ud83d\\udc51\\ud83d\\udd1e\",\"id\":1442387026100121604,\"id_str\":\"1442387026100121604\",\"indices\":[231,246]}],\"urls\":[],\"media\":[{\"id\":1554889568507379712,\"id_str\":\"1554889568507379712\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"3083\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[36,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3084\":{\"hashtags\":[{\"text\":\"UkraineRussiaWar\",\"indices\":[78,95]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[112,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3085\":{\"hashtags\":[{\"text\":\"Kano\",\"indices\":[148,153]},{\"text\":\"sabinus\",\"indices\":[154,162]},{\"text\":\"BBNaija\",\"indices\":[164,172]},{\"text\":\"Gistlover\",\"indices\":[174,184]},{\"text\":\"UkraineRussiaWar\",\"indices\":[186,203]},{\"text\":\"WWIII\",\"indices\":[205,211]},{\"text\":\"Buhari\",\"indices\":[212,219]},{\"text\":\"Datti\",\"indices\":[221,227]},{\"text\":\"Ministeroffinace\",\"indices\":[229,246]},{\"text\":\"Shettima\",\"indices\":[247,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554884709255102466,\"id_str\":\"1554884709255102466\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"3086\":{\"hashtags\":[{\"text\":\"NewMusic\",\"indices\":[48,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"NewMusicDaily\",\"indices\":[66,80]},{\"text\":\"newmusic2022\",\"indices\":[81,94]},{\"text\":\"appleiphones\",\"indices\":[95,108]},{\"text\":\"PokemonPresents\",\"indices\":[109,125]},{\"text\":\"applemusic\",\"indices\":[127,138]},{\"text\":\"Spotify\",\"indices\":[139,147]},{\"text\":\"boomplaymusic\",\"indices\":[148,162]},{\"text\":\"audiomack\",\"indices\":[163,173]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[174,197]},{\"text\":\"latestmusic\",\"indices\":[198,210]},{\"text\":\"applemusicnigeria\",\"indices\":[211,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[268,278]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8QlKDYh454\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/starpankeli\\/terminator\",\"display_url\":\"distrokid.com\\/hyperfollow\\/st\\u2026\",\"indices\":[232,255]}]},\"3087\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"trump2024\",\"indices\":[205,215]},{\"text\":\"Democrat\",\"indices\":[216,225]},{\"text\":\"BidenDestroysAmerica\",\"indices\":[235,256]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PressSec\",\"name\":\"Karine Jean-Pierre\",\"id\":1349170292564905988,\"id_str\":\"1349170292564905988\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554883125972434947,\"id_str\":\"1554883125972434947\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"url\":\"https:\\/\\/t.co\\/MQc53z0gzG\",\"display_url\":\"pic.twitter.com\\/MQc53z0gzG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ppell524\\/status\\/1554883174987079681\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3088\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3089\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"koundeisblue\",\"indices\":[251,264]},{\"text\":\"Chelsea\",\"indices\":[265,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3090\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[96,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"PokemonPresents\",\"indices\":[112,128]},{\"text\":\"wednesdaythought\",\"indices\":[129,146]},{\"text\":\"Davido\",\"indices\":[147,154]},{\"text\":\"BBNaija\",\"indices\":[155,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554881027591520260,\"id_str\":\"1554881027591520260\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"url\":\"https:\\/\\/t.co\\/NZ3ygeIhwq\",\"display_url\":\"pic.twitter.com\\/NZ3ygeIhwq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hisvert\\/status\\/1554881056008187904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}}}]},\"3091\":{\"hashtags\":[{\"text\":\"Trusttv\",\"indices\":[257,265]},{\"text\":\"Taiwan\",\"indices\":[266,273]},{\"text\":\"Army\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554879877056167942,\"id_str\":\"1554879877056167942\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"url\":\"https:\\/\\/t.co\\/1TfAEXCXbe\",\"display_url\":\"pic.twitter.com\\/1TfAEXCXbe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ind_Journos\\/status\\/1554879886778634243\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"3092\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"PokemonPresents\",\"indices\":[93,109]},{\"text\":\"midjourney\",\"indices\":[110,121]},{\"text\":\"adventure\",\"indices\":[122,132]},{\"text\":\"Growth\",\"indices\":[133,140]},{\"text\":\"learn\",\"indices\":[141,147]},{\"text\":\"learning\",\"indices\":[148,157]},{\"text\":\"selfcare\",\"indices\":[158,167]},{\"text\":\"Selfdevelopment\",\"indices\":[168,184]},{\"text\":\"LearnToEarn\",\"indices\":[185,197]},{\"text\":\"LearningAndDevelopment\",\"indices\":[198,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3093\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[92,110]},{\"text\":\"china\",\"indices\":[111,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[126,140]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OaQh6tNNZW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vyctw\\/status\\/1554489414310821888\",\"display_url\":\"twitter.com\\/vyctw\\/status\\/1\\u2026\",\"indices\":[141,164]}]},\"3094\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"davidhundeyin\",\"indices\":[257,271]},{\"text\":\"China\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vanguardngrnews\",\"name\":\"Vanguard Newspapers\",\"id\":39975533,\"id_str\":\"39975533\",\"indices\":[232,248]}],\"urls\":[]},\"3095\":{\"hashtags\":[{\"text\":\"Terminator\",\"indices\":[48,59]},{\"text\":\"applemusic\",\"indices\":[60,71]},{\"text\":\"SpotifyPlaylist\",\"indices\":[72,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"audiomack\",\"indices\":[97,107]},{\"text\":\"iTunes\",\"indices\":[108,115]},{\"text\":\"applemusicnigeria\",\"indices\":[116,134]},{\"text\":\"AfrobeatRadio\",\"indices\":[135,149]},{\"text\":\"BulletTrainMovie\",\"indices\":[150,167]},{\"text\":\"Terminal21Korat\",\"indices\":[168,184]},{\"text\":\"lagos\",\"indices\":[185,191]},{\"text\":\"NewYorkCity\",\"indices\":[192,204]},{\"text\":\"CaliforniaAdventure\",\"indices\":[205,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[264,274]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8QlKDYh454\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/starpankeli\\/terminator\",\"display_url\":\"distrokid.com\\/hyperfollow\\/st\\u2026\",\"indices\":[228,251]}]},\"3096\":{\"hashtags\":[{\"text\":\"P2Egaming\",\"indices\":[13,23]},{\"text\":\"Whitelist\",\"indices\":[95,105]},{\"text\":\"NFTGiveaways\",\"indices\":[116,129]},{\"text\":\"CryptoNews\",\"indices\":[130,141]},{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"BulletTrainMovie\",\"indices\":[150,167]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WarpBond\",\"name\":\"Warp Game \\/\\/ \\ud835\\udddf\\ud835\\uddd4\\ud835\\udde8\\ud835\\udde1\\ud835\\uddd6\\ud835\\udddb\\ud835\\udddc\\ud835\\udde1\\ud835\\uddda \\ud835\\udde6\\ud835\\uddd8\\ud835\\uddd4\\ud835\\udde6\\ud835\\udde2\\ud835\\udde1 \\ud835\\udfee\",\"id\":1468745083629490188,\"id_str\":\"1468745083629490188\",\"indices\":[40,49]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TVq8PkZ7EX\",\"expanded_url\":\"https:\\/\\/warp.game\\/\",\"display_url\":\"warp.game\",\"indices\":[177,200]},{\"url\":\"https:\\/\\/t.co\\/oWoGOLR8El\",\"expanded_url\":\"https:\\/\\/demo.warp.game\\/\",\"display_url\":\"demo.warp.game\",\"indices\":[207,230]},{\"url\":\"https:\\/\\/t.co\\/3OQiWdyaN6\",\"expanded_url\":\"https:\\/\\/warpcountdown.com\\/\",\"display_url\":\"warpcountdown.com\",\"indices\":[240,263]}],\"media\":[{\"id\":1554875107327238146,\"id_str\":\"1554875107327238146\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"url\":\"https:\\/\\/t.co\\/0abiCiufk2\",\"display_url\":\"pic.twitter.com\\/0abiCiufk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnAshafa\\/status\\/1554875116768608256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"3097\":{\"hashtags\":[{\"text\":\"PeterDrury\",\"indices\":[19,30]},{\"text\":\"PeterObi\",\"indices\":[31,40]},{\"text\":\"PremierLeague\",\"indices\":[41,55]},{\"text\":\"BBNaija\",\"indices\":[56,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"China\",\"indices\":[73,79]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554875039073419270,\"id_str\":\"1554875039073419270\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"url\":\"https:\\/\\/t.co\\/Nz9c0LorqE\",\"display_url\":\"pic.twitter.com\\/Nz9c0LorqE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ay_adeyinka\\/status\\/1554875042147827712\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":586,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"}}}]},\"3098\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"NancyPelosi\",\"indices\":[6,18]},{\"text\":\"Taiwan\",\"indices\":[19,26]},{\"text\":\"USHouseSpeakerNancyPelosi\",\"indices\":[27,53]},{\"text\":\"Washington\",\"indices\":[54,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C2jJb4l4lU\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SW0Qn3\",\"display_url\":\"dlvr.it\\/SW0Qn3\",\"indices\":[130,153]}]},\"3099\":{\"hashtags\":[{\"text\":\"ChinaDoesNotPlayFairly\",\"indices\":[103,126]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[128,146]},{\"text\":\"FreedomOfNavigation\",\"indices\":[148,168]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IndiaFi47688004\",\"name\":\"India_First\",\"id\":1274637254825132033,\"id_str\":\"1274637254825132033\",\"indices\":[0,16]},{\"screen_name\":\"globaltimesnews\",\"name\":\"Global Times\",\"id\":49616273,\"id_str\":\"49616273\",\"indices\":[17,33]}],\"urls\":[]},\"3100\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"Godisworking\",\"indices\":[83,96]},{\"text\":\"thingsout\",\"indices\":[97,107]},{\"text\":\"VirumanAudioLaunch\",\"indices\":[108,127]},{\"text\":\"sermon\",\"indices\":[128,135]},{\"text\":\"audio\",\"indices\":[136,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554869821082423302,\"id_str\":\"1554869821082423302\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"url\":\"https:\\/\\/t.co\\/fuKr5l8Xzy\",\"display_url\":\"pic.twitter.com\\/fuKr5l8Xzy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/henry_saliu\\/status\\/1554869975638474752\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":856,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":803,\"resize\":\"fit\"}}}]},\"3101\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[134,152]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"accessbank_help\",\"name\":\"Access Bank Help\",\"id\":2164455380,\"id_str\":\"2164455380\",\"indices\":[0,16]}],\"urls\":[]},\"3102\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[58,76]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lz8964\",\"name\":\"PaperTiger\",\"id\":68334156,\"id_str\":\"68334156\",\"indices\":[0,7]},{\"screen_name\":\"bang6_7\",\"name\":\"bang bang\",\"id\":1489650293646180355,\"id_str\":\"1489650293646180355\",\"indices\":[8,16]},{\"screen_name\":\"iingwen\",\"name\":\"\\u8521\\u82f1\\u6587 Tsai Ing-wen\",\"id\":155814794,\"id_str\":\"155814794\",\"indices\":[17,25]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[26,40]}],\"urls\":[],\"media\":[{\"id\":1554867923126145024,\"id_str\":\"1554867923126145024\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQAI1aVUAAmbDy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQAI1aVUAAmbDy.jpg\",\"url\":\"https:\\/\\/t.co\\/peCFVx8p0u\",\"display_url\":\"pic.twitter.com\\/peCFVx8p0u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GpbartlettP\\/status\\/1554867926930313216\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":600,\"resize\":\"fit\"}}}]},\"3103\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[113,135]},{\"text\":\"AbujaFinders\",\"indices\":[136,149]},{\"text\":\"RealEstate\",\"indices\":[150,161]},{\"text\":\"PeterObi\",\"indices\":[162,171]},{\"text\":\"EndSARS\",\"indices\":[172,180]},{\"text\":\"Barcelona\",\"indices\":[181,191]},{\"text\":\"Barca\",\"indices\":[192,198]},{\"text\":\"PeterObi4President2023\",\"indices\":[199,222]},{\"text\":\"BBNaija7\",\"indices\":[223,232]},{\"text\":\"INEC\",\"indices\":[233,238]},{\"text\":\"Arewa4PeterObi\",\"indices\":[239,254]},{\"text\":\"BBNaija\",\"indices\":[255,263]},{\"text\":\"China\",\"indices\":[264,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554857936593338369,\"id_str\":\"1554857936593338369\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"url\":\"https:\\/\\/t.co\\/serqHvJW2C\",\"display_url\":\"pic.twitter.com\\/serqHvJW2C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554859470001475584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":1240,\"resize\":\"fit\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}}}]},\"3104\":{\"hashtags\":[{\"text\":\"Monalisa\",\"indices\":[98,107]},{\"text\":\"GoodmusicGoodTalk\",\"indices\":[183,201]},{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"BBNajia7\",\"indices\":[211,220]},{\"text\":\"Wizkid\",\"indices\":[221,228]},{\"text\":\"Pelosi\",\"indices\":[229,236]},{\"text\":\"China\",\"indices\":[237,243]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Lojaymusic\",\"name\":\"Lojay\",\"id\":216687915,\"id_str\":\"216687915\",\"indices\":[69,80]},{\"screen_name\":\"beatsbysarz\",\"name\":\"I am...\",\"id\":131481766,\"id_str\":\"131481766\",\"indices\":[85,97]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[132,143]}],\"urls\":[],\"media\":[{\"id\":1554858363166593027,\"id_str\":\"1554858363166593027\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":452,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"}}}]},\"3105\":{\"hashtags\":[{\"text\":\"ASUUStrikeUpdate\",\"indices\":[185,202]},{\"text\":\"Pelosi\",\"indices\":[203,210]},{\"text\":\"2023Elections\",\"indices\":[211,225]},{\"text\":\"ASUUstrike\",\"indices\":[226,237]},{\"text\":\"NaijaNews\",\"indices\":[238,248]},{\"text\":\"Obidatti2023\",\"indices\":[249,262]},{\"text\":\"BAT2023\",\"indices\":[263,271]},{\"text\":\"Atiku\",\"indices\":[272,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[34,42]}],\"urls\":[]},\"3106\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"Pelosi\",\"indices\":[24,31]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[32,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3107\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"PokemonScarletViolet\",\"indices\":[53,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3108\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"sabinus\",\"indices\":[54,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3109\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Pelosi\",\"indices\":[62,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3110\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[39,47]},{\"text\":\"PokemonScarletViolet\",\"indices\":[48,69]},{\"text\":\"AamirKhan\",\"indices\":[70,80]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[81,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554851249660608512,\"id_str\":\"1554851249660608512\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"url\":\"https:\\/\\/t.co\\/SFtmooG4n4\",\"display_url\":\"pic.twitter.com\\/SFtmooG4n4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1554853500152336384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3111\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[97,119]},{\"text\":\"AbujaFinders\",\"indices\":[120,133]},{\"text\":\"RealEstate\",\"indices\":[134,145]},{\"text\":\"PeterObi\",\"indices\":[146,155]},{\"text\":\"EndSARS\",\"indices\":[156,164]},{\"text\":\"Barcelona\",\"indices\":[165,175]},{\"text\":\"Barca\",\"indices\":[176,182]},{\"text\":\"PeterObi4President2023\",\"indices\":[183,206]},{\"text\":\"BBNaija7\",\"indices\":[207,216]},{\"text\":\"INEC\",\"indices\":[217,222]},{\"text\":\"Arewa4PeterObi\",\"indices\":[223,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"Chelsea\",\"indices\":[248,256]},{\"text\":\"Buhar\",\"indices\":[257,263]},{\"text\":\"China\",\"indices\":[264,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554850860961775625,\"id_str\":\"1554850860961775625\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"url\":\"https:\\/\\/t.co\\/cHw8nDiKoF\",\"display_url\":\"pic.twitter.com\\/cHw8nDiKoF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554850987222917128\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1232,\"resize\":\"fit\"}}}]},\"3112\":{\"hashtags\":[{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[68,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[84,105]},{\"text\":\"BlueJays\",\"indices\":[106,115]},{\"text\":\"DonnyPangilinan\",\"indices\":[116,132]},{\"text\":\"Pelosi\",\"indices\":[133,140]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[141,162]},{\"text\":\"music\",\"indices\":[163,169]},{\"text\":\"musique\",\"indices\":[170,178]},{\"text\":\"Musica\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554849122989101058,\"id_str\":\"1554849122989101058\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"url\":\"https:\\/\\/t.co\\/z92cabRhki\",\"display_url\":\"pic.twitter.com\\/z92cabRhki\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magojazzy\\/status\\/1554849169902297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3113\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[146,157]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"bankole\",\"indices\":[166,174]},{\"text\":\"vabulance\",\"indices\":[175,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554845195203710983,\"id_str\":\"1554845195203710983\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"url\":\"https:\\/\\/t.co\\/SOq1sp6GTV\",\"display_url\":\"pic.twitter.com\\/SOq1sp6GTV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itz_ikhali\\/status\\/1554845204703854592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"}}}]},\"3114\":{\"hashtags\":[{\"text\":\"obituary\",\"indices\":[19,28]},{\"text\":\"Room1\",\"indices\":[29,35]},{\"text\":\"Wizkid\",\"indices\":[36,43]},{\"text\":\"oshiomole\",\"indices\":[44,54]},{\"text\":\"witcher\",\"indices\":[55,63]},{\"text\":\"ASUU\",\"indices\":[64,69]},{\"text\":\"Taiwan\",\"indices\":[70,77]},{\"text\":\"ifb\",\"indices\":[78,82]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554843508820905984,\"id_str\":\"1554843508820905984\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"url\":\"https:\\/\\/t.co\\/xYqiMXKCQi\",\"display_url\":\"pic.twitter.com\\/xYqiMXKCQi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibbultalkative\\/status\\/1554843537736351744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1122,\"h\":1497,\"resize\":\"fit\"}}}]},\"3115\":{\"hashtags\":[{\"text\":\"Noise\",\"indices\":[129,135]},{\"text\":\"Wizkid\",\"indices\":[224,231]},{\"text\":\"helicopter\",\"indices\":[232,243]},{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"UkraineRussiaWar\",\"indices\":[252,269]},{\"text\":\"Russia\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3116\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"helicopter\",\"indices\":[69,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839842743279618,\"id_str\":\"1554839842743279618\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"3117\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839385920749569,\"id_str\":\"1554839385920749569\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"3118\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[231,245]},{\"text\":\"Obituary\",\"indices\":[246,255]},{\"text\":\"bbns7\",\"indices\":[256,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"samomatseye\",\"indices\":[271,283]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[0,14]},{\"screen_name\":\"WestAfricaWeek\",\"name\":\"West Africa Weekly\",\"id\":1364956849804611584,\"id_str\":\"1364956849804611584\",\"indices\":[15,30]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[31,39]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[119,127]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[132,146]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i3YYdzIee8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hillike\\/status\\/1554837707242733569?t=bRRfeUM88Y-4sgyuKv5DTg&s=19\",\"display_url\":\"twitter.com\\/Hillike\\/status\\u2026\",\"indices\":[40,63]}]},\"3119\":{\"hashtags\":[{\"text\":\"Sabinus\",\"indices\":[245,253]},{\"text\":\"Taiwan\",\"indices\":[254,261]},{\"text\":\"China\",\"indices\":[262,268]},{\"text\":\"Russia\",\"indices\":[269,276]},{\"text\":\"Ukraine\",\"indices\":[277,285]},{\"text\":\"uk\",\"indices\":[286,289]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3120\":{\"hashtags\":[{\"text\":\"music\",\"indices\":[234,240]},{\"text\":\"Taiwan\",\"indices\":[241,248]},{\"text\":\"UK\",\"indices\":[249,252]},{\"text\":\"USA\",\"indices\":[253,257]},{\"text\":\"sabinus\",\"indices\":[258,266]},{\"text\":\"JackInTheBox\",\"indices\":[267,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3121\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[140,146]},{\"text\":\"Foreign\",\"indices\":[147,155]},{\"text\":\"NancyPelosi\",\"indices\":[156,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"US\",\"indices\":[177,180]},{\"text\":\"bobojay\",\"indices\":[181,189]},{\"text\":\"bobojaytv\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7TgVmLgnwK\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/china-starts-military-exercises-as-nancy-pelosi-meets-taiwans-president\\/\",\"display_url\":\"bobojaytv.com\\/china-starts-m\\u2026\",\"indices\":[84,107]}],\"media\":[{\"id\":1554836955468165121,\"id_str\":\"1554836955468165121\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"url\":\"https:\\/\\/t.co\\/X4VdFxKEE2\",\"display_url\":\"pic.twitter.com\\/X4VdFxKEE2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554836957687005186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":533,\"resize\":\"fit\"}}}]},\"3122\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"music\",\"indices\":[234,240]},{\"text\":\"AamirKhan\",\"indices\":[241,251]},{\"text\":\"nsfwtwt\",\"indices\":[264,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3123\":{\"hashtags\":[{\"text\":\"WesternPost\",\"indices\":[83,95]},{\"text\":\"NancyPelosi\",\"indices\":[97,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"USA\",\"indices\":[118,122]},{\"text\":\"China\",\"indices\":[123,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i8u27vB1bD\",\"expanded_url\":\"https:\\/\\/westernpost.ng\\/us-house-speaker-nancy-pelosi-lands-in-taiwan-amid-threats-of-chinese-retaliation\\/\",\"display_url\":\"westernpost.ng\\/us-house-speak\\u2026\",\"indices\":[131,154]}]},\"3124\":{\"hashtags\":[{\"text\":\"Russia\",\"indices\":[149,156]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[157,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"Pelosi\",\"indices\":[189,196]},{\"text\":\"Trending\",\"indices\":[197,206]},{\"text\":\"Viral\",\"indices\":[207,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554835170859003904,\"id_str\":\"1554835170859003904\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"url\":\"https:\\/\\/t.co\\/XPenvRyXEc\",\"display_url\":\"pic.twitter.com\\/XPenvRyXEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554835221819731969\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}}}]},\"3125\":{\"hashtags\":[{\"text\":\"Foreign\",\"indices\":[148,156]},{\"text\":\"Kremlin\",\"indices\":[157,165]},{\"text\":\"news\",\"indices\":[166,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"bobojay\",\"indices\":[180,188]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Cx1vEaqwqu\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/kremlin-tension-over-nancy-pelosis-taiwan-visit-should-not-be-underestimated\\/\",\"display_url\":\"bobojaytv.com\\/kremlin-tensio\\u2026\",\"indices\":[92,115]}],\"media\":[{\"id\":1554835161350492164,\"id_str\":\"1554835161350492164\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"url\":\"https:\\/\\/t.co\\/lbgqYYK7r6\",\"display_url\":\"pic.twitter.com\\/lbgqYYK7r6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554835162839465992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"3126\":{\"hashtags\":[{\"text\":\"moneymadness\",\"indices\":[8,21]},{\"text\":\"africa\",\"indices\":[108,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"Pelosi\",\"indices\":[124,131]},{\"text\":\"news\",\"indices\":[132,137]},{\"text\":\"NEW\",\"indices\":[138,142]},{\"text\":\"music\",\"indices\":[143,149]},{\"text\":\"Demi\",\"indices\":[150,155]},{\"text\":\"MONEY\",\"indices\":[163,169]},{\"text\":\"moneymadness\",\"indices\":[170,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RKTnxgtKzB\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/sappzee-1\\/album\\/simple-lyrics-1\",\"display_url\":\"audiomack.com\\/sappzee-1\\/albu\\u2026\",\"indices\":[83,106]}],\"media\":[{\"id\":1554835050029387782,\"id_str\":\"1554835050029387782\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"url\":\"https:\\/\\/t.co\\/AVYQjSFrmC\",\"display_url\":\"pic.twitter.com\\/AVYQjSFrmC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sappzee\\/status\\/1554835145458212865\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}}}]},\"3127\":{\"hashtags\":[{\"text\":\"pi\",\"indices\":[107,110]},{\"text\":\"core\",\"indices\":[111,116]},{\"text\":\"SatoshiPlusConsensus\",\"indices\":[117,138]},{\"text\":\"btcs\",\"indices\":[139,144]},{\"text\":\"btc\",\"indices\":[145,149]},{\"text\":\"Bitcoin\",\"indices\":[150,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Solana\",\"indices\":[167,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[0,11]},{\"screen_name\":\"CoreMining_1\",\"name\":\"CORE Mining (Satoshi)\",\"id\":1553043982623596545,\"id_str\":\"1553043982623596545\",\"indices\":[92,105]}],\"urls\":[],\"media\":[{\"id\":1554835119990456320,\"id_str\":\"1554835119990456320\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"url\":\"https:\\/\\/t.co\\/MkpeC7yxpc\",\"display_url\":\"pic.twitter.com\\/MkpeC7yxpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KafeEazy\\/status\\/1554835123329064961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"},\"small\":{\"w\":449,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"}}}]},\"3128\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[107,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"bellathorne\",\"indices\":[123,135]},{\"text\":\"PeterObi\",\"indices\":[136,145]},{\"text\":\"abuja\",\"indices\":[146,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3129\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"RCCGConvention\",\"indices\":[66,81]},{\"text\":\"helicopter\",\"indices\":[84,95]},{\"text\":\"WWIII\",\"indices\":[98,104]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"Xi\",\"indices\":[113,116]},{\"text\":\"World\",\"indices\":[125,131]},{\"text\":\"Reno\",\"indices\":[140,145]},{\"text\":\"TinubuShettima2023\",\"indices\":[146,165]},{\"text\":\"Tinubu\",\"indices\":[166,173]},{\"text\":\"Atiku\",\"indices\":[174,180]},{\"text\":\"IPOB\",\"indices\":[181,186]},{\"text\":\"Hausas\",\"indices\":[189,196]},{\"text\":\"fulani\",\"indices\":[197,204]},{\"text\":\"Yorubas\",\"indices\":[207,215]},{\"text\":\"Igbos\",\"indices\":[216,222]},{\"text\":\"Nigerians\",\"indices\":[223,233]},{\"text\":\"BBNajia\",\"indices\":[234,242]},{\"text\":\"Buhari\",\"indices\":[243,250]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[251,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825216634675202,\"id_str\":\"1554825216634675202\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"url\":\"https:\\/\\/t.co\\/1GLM8ZiUMW\",\"display_url\":\"pic.twitter.com\\/1GLM8ZiUMW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abubillaal\\/status\\/1554825762682769413\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"}}}]},\"3130\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"appledaily\",\"indices\":[105,116]},{\"text\":\"sabinus\",\"indices\":[117,125]},{\"text\":\"applemusicrt\",\"indices\":[126,139]},{\"text\":\"ApplePay\",\"indices\":[140,149]},{\"text\":\"ApplePencil\",\"indices\":[150,162]},{\"text\":\"applemusic\",\"indices\":[163,174]},{\"text\":\"applemusicnigeria\",\"indices\":[175,193]},{\"text\":\"Pelosi\",\"indices\":[194,201]},{\"text\":\"BlueJays\",\"indices\":[202,211]},{\"text\":\"LagosSwindlers\",\"indices\":[212,227]},{\"text\":\"applemusicamerica\",\"indices\":[228,246]},{\"text\":\"Haiti\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[61,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SR7gmdCcUq\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/adulthood-anthem-ii-single\\/1631043083?uo=4&app=apple+music\",\"display_url\":\"music.apple.com\\/us\\/album\\/adult\\u2026\",\"indices\":[256,279]}]},\"3131\":{\"hashtags\":[{\"text\":\"peacefulTaiwan\",\"indices\":[59,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[83,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ukr\",\"name\":\"Ukraine\",\"id\":8043902,\"id_str\":\"8043902\",\"indices\":[10,14]},{\"screen_name\":\"Ukraine\",\"name\":\"Ukraine \\/ \\u0423\\u043a\\u0440\\u0430\\u0457\\u043d\\u0430\",\"id\":732521058507620356,\"id_str\":\"732521058507620356\",\"indices\":[15,23]},{\"screen_name\":\"china\",\"name\":\"CHINA\",\"id\":1196328007,\"id_str\":\"1196328007\",\"indices\":[24,30]},{\"screen_name\":\"PDChinaLife\",\"name\":\"Beautiful China\",\"id\":1164937093656862720,\"id_str\":\"1164937093656862720\",\"indices\":[31,43]},{\"screen_name\":\"Taiwan_Today\",\"name\":\"Taiwan Today\",\"id\":121371581,\"id_str\":\"121371581\",\"indices\":[44,57]}],\"urls\":[]},\"3132\":{\"hashtags\":[{\"text\":\"osimhen\",\"indices\":[82,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"HelicopterCrash\",\"indices\":[99,115]},{\"text\":\"DonnyPangilinan\",\"indices\":[116,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2g4Wc7gzYP\",\"expanded_url\":\"http:\\/\\/owosports.com.ng\\/osimhen-napolis-future-in-doubt-after-comments-from-president-over-african-stars\\/\",\"display_url\":\"owosports.com.ng\\/osimhen-napoli\\u2026\",\"indices\":[133,156]}]},\"3133\":{\"hashtags\":[{\"text\":\"Cucurella\",\"indices\":[260,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3134\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[126,137]},{\"text\":\"PrivateJet\",\"indices\":[138,149]},{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"Pelosi\",\"indices\":[158,165]},{\"text\":\"travel\",\"indices\":[166,173]},{\"text\":\"Aviation\",\"indices\":[174,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554823128924073984,\"id_str\":\"1554823128924073984\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"url\":\"https:\\/\\/t.co\\/uN0H1vPHWE\",\"display_url\":\"pic.twitter.com\\/uN0H1vPHWE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flyhezix\\/status\\/1554823137191010304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3135\":{\"hashtags\":[{\"text\":\"iTunes\",\"indices\":[92,99]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[100,112]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[113,125]},{\"text\":\"itunes\\u914d\\u5e03\",\"indices\":[126,135]},{\"text\":\"itunesafrica\",\"indices\":[136,149]},{\"text\":\"iPadPro\",\"indices\":[150,158]},{\"text\":\"itunesghana\",\"indices\":[159,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"sabinus\",\"indices\":[180,188]},{\"text\":\"Solana\",\"indices\":[190,197]},{\"text\":\"UkraineRussiaWar\",\"indices\":[198,215]},{\"text\":\"PeterObi4President2023\",\"indices\":[216,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[61,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9BKh8azwH\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/adulthood-anthem-ii-single\\/1631043083?uo=4&app=itunes&at=1001lry3&ct=twitter\",\"display_url\":\"music.apple.com\\/us\\/album\\/adult\\u2026\",\"indices\":[242,265]}]},\"3136\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Solana\",\"indices\":[65,72]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[73,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[106,113]},{\"text\":\"Ukraine\",\"indices\":[114,122]},{\"text\":\"BibleBuild\",\"indices\":[123,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"BlueJays\",\"indices\":[154,163]},{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"UkraineRussiaWar\",\"indices\":[176,193]},{\"text\":\"DonnyPangilinan\",\"indices\":[194,210]},{\"text\":\"UkraineRussiaWar\",\"indices\":[211,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820649977143297,\"id_str\":\"1554820649977143297\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"url\":\"https:\\/\\/t.co\\/PLgY1dIXk6\",\"display_url\":\"pic.twitter.com\\/PLgY1dIXk6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820786933735425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3137\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Solana\",\"indices\":[65,72]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[73,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[106,113]},{\"text\":\"Ukraine\",\"indices\":[114,122]},{\"text\":\"BibleBuild\",\"indices\":[123,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"BlueJays\",\"indices\":[154,163]},{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"UkraineRussiaWar\",\"indices\":[176,193]},{\"text\":\"DonnyPangilinan\",\"indices\":[194,210]},{\"text\":\"UkraineRussiaWar\",\"indices\":[211,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820479541596162,\"id_str\":\"1554820479541596162\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"url\":\"https:\\/\\/t.co\\/TaQtXc29sS\",\"display_url\":\"pic.twitter.com\\/TaQtXc29sS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820709485928450\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3138\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[206,216]},{\"text\":\"Bbnaija\",\"indices\":[217,225]},{\"text\":\"sabinus\",\"indices\":[226,234]},{\"text\":\"SheggzFC\",\"indices\":[235,244]},{\"text\":\"Machala\",\"indices\":[245,253]},{\"text\":\"Bryann\",\"indices\":[254,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V95Z1YzYt7\",\"expanded_url\":\"https:\\/\\/bit.ly\\/38ZHaGG\",\"display_url\":\"bit.ly\\/38ZHaGG\",\"indices\":[156,179]},{\"url\":\"https:\\/\\/t.co\\/7RLDwaJ1Q9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[181,204]}],\"media\":[{\"id\":1554820524752179200,\"id_str\":\"1554820524752179200\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"url\":\"https:\\/\\/t.co\\/b6Klbwjbg0\",\"display_url\":\"pic.twitter.com\\/b6Klbwjbg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554820531186286592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":530,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":530,\"resize\":\"fit\"}}}]},\"3139\":{\"hashtags\":[{\"text\":\"asuu\",\"indices\":[171,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Kano\",\"indices\":[185,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3140\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[196,201]},{\"text\":\"MamaDollaz\",\"indices\":[203,214]},{\"text\":\"Racism\",\"indices\":[216,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"JackieChan\",\"indices\":[232,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813279620440064,\"id_str\":\"1554813279620440064\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"3141\":{\"hashtags\":[{\"text\":\"Osimhen\",\"indices\":[129,137]},{\"text\":\"Chukwuemeka\",\"indices\":[138,150]},{\"text\":\"JackieChan\",\"indices\":[151,162]},{\"text\":\"declan\",\"indices\":[163,170]},{\"text\":\"Obituary\",\"indices\":[171,180]},{\"text\":\"Kano\",\"indices\":[181,186]},{\"text\":\"Cubana\",\"indices\":[187,194]},{\"text\":\"Tinubu\",\"indices\":[195,202]},{\"text\":\"NnamdiKanu\",\"indices\":[203,214]},{\"text\":\"davidhundeyin\",\"indices\":[215,229]},{\"text\":\"airtel\",\"indices\":[230,237]},{\"text\":\"Mourinho\",\"indices\":[238,247]},{\"text\":\"Mount\",\"indices\":[248,254]},{\"text\":\"Taiwan\",\"indices\":[255,262]},{\"text\":\"arisetv\",\"indices\":[263,271]},{\"text\":\"ASUU\",\"indices\":[272,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813156626677760,\"id_str\":\"1554813156626677760\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":514,\"h\":680,\"resize\":\"fit\"}}}]},\"3142\":{\"hashtags\":[{\"text\":\"DonnyPangilinan\",\"indices\":[40,56]},{\"text\":\"sabinus\",\"indices\":[57,65]},{\"text\":\"helicopter\",\"indices\":[66,77]},{\"text\":\"Twitter\",\"indices\":[78,86]},{\"text\":\"TREASURE\",\"indices\":[87,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[113,120]},{\"text\":\"BlueJays\",\"indices\":[121,130]},{\"text\":\"BelleMariano\",\"indices\":[131,144]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[145,167]},{\"text\":\"massage\",\"indices\":[168,176]},{\"text\":\"LoveDamini\",\"indices\":[177,188]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812704623366144,\"id_str\":\"1554812704623366144\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"url\":\"https:\\/\\/t.co\\/BWJR5IVhyG\",\"display_url\":\"pic.twitter.com\\/BWJR5IVhyG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obi_Jules\\/status\\/1554812726647611393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3143\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[257,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3144\":{\"hashtags\":[{\"text\":\"Ukraine\",\"indices\":[74,82]},{\"text\":\"UkraineRussiaWar\",\"indices\":[83,100]},{\"text\":\"UkraineWillWin\",\"indices\":[101,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[125,133]},{\"text\":\"Solana\",\"indices\":[134,141]},{\"text\":\"CloserWithDonBelle\",\"indices\":[142,161]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[162,185]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[186,207]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KyivIndependent\",\"name\":\"The Kyiv Independent\",\"id\":1462548977367359490,\"id_str\":\"1462548977367359490\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554804166379405312,\"id_str\":\"1554804166379405312\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"url\":\"https:\\/\\/t.co\\/DLkbtWYTnR\",\"display_url\":\"pic.twitter.com\\/DLkbtWYTnR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fagman01\\/status\\/1554804208410497028\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"3145\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"Pelosi\",\"indices\":[207,214]},{\"text\":\"china\",\"indices\":[215,221]},{\"text\":\"WWIII\",\"indices\":[222,228]},{\"text\":\"Scholarships\",\"indices\":[229,242]},{\"text\":\"UK\",\"indices\":[243,246]},{\"text\":\"Cheveningscholarship\",\"indices\":[247,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TxY6NW7rGy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\",\"display_url\":\"twitter.com\\/CheveningFCDO\\/\\u2026\",\"indices\":[269,292]}]},\"3146\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Solana\",\"indices\":[95,102]},{\"text\":\"CloserWithDonBelle\",\"indices\":[103,122]},{\"text\":\"Wizkid\",\"indices\":[123,130]},{\"text\":\"Batgirl\",\"indices\":[131,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[34,44]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[45,54]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[55,70]},{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[71,84]}],\"urls\":[],\"media\":[{\"id\":1554801684659986434,\"id_str\":\"1554801684659986434\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"url\":\"https:\\/\\/t.co\\/9RTAmNicmh\",\"display_url\":\"pic.twitter.com\\/9RTAmNicmh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Slimtalker2\\/status\\/1554801857461207042\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3147\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[41,48]},{\"text\":\"CloserWithDonBelle\",\"indices\":[49,68]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[69,77]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[78,101]},{\"text\":\"Ukraine\",\"indices\":[102,110]},{\"text\":\"Batgirl\",\"indices\":[111,119]},{\"text\":\"Wizkid\",\"indices\":[120,127]},{\"text\":\"BibleBuild\",\"indices\":[128,139]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[140,158]},{\"text\":\"helicopter\",\"indices\":[159,170]},{\"text\":\"BlueJays\",\"indices\":[171,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"sabinus\",\"indices\":[189,197]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[198,205]},{\"text\":\"Italy\",\"indices\":[206,212]},{\"text\":\"ChrisBrown\",\"indices\":[213,224]},{\"text\":\"Trending\",\"indices\":[225,234]},{\"text\":\"TREASUREinManila\",\"indices\":[235,252]},{\"text\":\"TREASURE\",\"indices\":[253,262]},{\"text\":\"CFC\",\"indices\":[263,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554801195738439681,\"id_str\":\"1554801195738439681\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"url\":\"https:\\/\\/t.co\\/o6BiiEBYiS\",\"display_url\":\"pic.twitter.com\\/o6BiiEBYiS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554801255620530179\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3148\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[37,45]},{\"text\":\"Solana\",\"indices\":[46,53]},{\"text\":\"CloserWithDonBelle\",\"indices\":[54,73]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[74,97]},{\"text\":\"sabinus\",\"indices\":[98,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554800794024697857,\"id_str\":\"1554800794024697857\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"url\":\"https:\\/\\/t.co\\/icrt1AKjYF\",\"display_url\":\"pic.twitter.com\\/icrt1AKjYF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vintagebraidwig\\/status\\/1554800801729724418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"}}}]},\"3149\":{\"hashtags\":[{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[30,53]},{\"text\":\"businessopportunityprevi\",\"indices\":[54,79]},{\"text\":\"bookaholics\",\"indices\":[80,92]},{\"text\":\"celebrityfitnessindonesia\",\"indices\":[93,119]},{\"text\":\"bookaddiction\",\"indices\":[120,134]},{\"text\":\"bookaccount\",\"indices\":[135,147]},{\"text\":\"photoofthedaygallery\",\"indices\":[148,169]},{\"text\":\"businesswomanlife\",\"indices\":[170,188]},{\"text\":\"bookaddicted\",\"indices\":[189,202]},{\"text\":\"celebrityfashion\",\"indices\":[203,220]},{\"text\":\"photooftheday\",\"indices\":[221,235]},{\"text\":\"bookalicious\",\"indices\":[238,251]},{\"text\":\"bookaesthetic\",\"indices\":[252,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554800216875966466,\"id_str\":\"1554800216875966466\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"url\":\"https:\\/\\/t.co\\/UZZgqgILDK\",\"display_url\":\"pic.twitter.com\\/UZZgqgILDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554800267329159170\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3150\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"samomatseye\",\"indices\":[216,228]},{\"text\":\"Ronaldo\",\"indices\":[229,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554798709073911809,\"id_str\":\"1554798709073911809\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"url\":\"https:\\/\\/t.co\\/LkMKDvqJve\",\"display_url\":\"pic.twitter.com\\/LkMKDvqJve\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1554798804939206656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"3151\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[250,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554797955626024960,\"id_str\":\"1554797955626024960\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cGChk2NcVy\",\"display_url\":\"pic.twitter.com\\/cGChk2NcVy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554798185935261696\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":429,\"resize\":\"fit\"},\"large\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"}}}]},\"3152\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"sabinus\",\"indices\":[98,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3153\":{\"hashtags\":[{\"text\":\"glowhub\",\"indices\":[114,122]},{\"text\":\"gd\",\"indices\":[123,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"branding\",\"indices\":[135,144]},{\"text\":\"photographer\",\"indices\":[145,158]},{\"text\":\"CloserWithDonBelle\",\"indices\":[159,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554797618454302743,\"id_str\":\"1554797618454302743\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3154\":{\"hashtags\":[{\"text\":\"MarvinInu\",\"indices\":[26,36]},{\"text\":\"MarvinInu\",\"indices\":[91,101]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"helicopter\",\"indices\":[122,133]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[134,141]},{\"text\":\"tuesdayvibe\",\"indices\":[142,154]},{\"text\":\"Bitcoin\",\"indices\":[155,163]},{\"text\":\"altcoin\",\"indices\":[165,173]},{\"text\":\"CloserWithDonBelle\",\"indices\":[174,193]},{\"text\":\"BNB\",\"indices\":[194,198]},{\"text\":\"sabinus\",\"indices\":[199,207]},{\"text\":\"Batgirl\",\"indices\":[208,216]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[50,57]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[102,113]}],\"urls\":[],\"media\":[{\"id\":1554796946602299393,\"id_str\":\"1554796946602299393\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"url\":\"https:\\/\\/t.co\\/nSVh0YDIcv\",\"display_url\":\"pic.twitter.com\\/nSVh0YDIcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554796964734189569\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"3155\":{\"hashtags\":[{\"text\":\"StarGirl\",\"indices\":[51,60]},{\"text\":\"starGirl\",\"indices\":[87,96]},{\"text\":\"wizkid\",\"indices\":[97,104]},{\"text\":\"Solana\",\"indices\":[105,112]},{\"text\":\"BBNaijaSeason7\",\"indices\":[113,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"BibleBuild\",\"indices\":[137,148]},{\"text\":\"helicopter\",\"indices\":[149,160]},{\"text\":\"BlueJays\",\"indices\":[161,170]},{\"text\":\"oesym\",\"indices\":[171,177]},{\"text\":\"wednesdaythought\",\"indices\":[178,195]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[196,218]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ugoccie\",\"name\":\"UGOCHI\",\"id\":1624713733,\"id_str\":\"1624713733\",\"indices\":[71,79]}],\"urls\":[],\"media\":[{\"id\":1554796177798975488,\"id_str\":\"1554796177798975488\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"url\":\"https:\\/\\/t.co\\/rfTY04O9Pw\",\"display_url\":\"pic.twitter.com\\/rfTY04O9Pw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554796314440916992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3156\":{\"hashtags\":[{\"text\":\"kante\",\"indices\":[99,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Cucurella\",\"indices\":[114,124]},{\"text\":\"GodAbeg\",\"indices\":[125,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DeJongFrenkie21\",\"name\":\"Frenkie de Jong\",\"id\":1132994898511179776,\"id_str\":\"1132994898511179776\",\"indices\":[20,36]},{\"screen_name\":\"cucurella3\",\"name\":\"Marc Cucurella\",\"id\":820280083,\"id_str\":\"820280083\",\"indices\":[38,49]}],\"urls\":[],\"media\":[{\"id\":1554794709524090881,\"id_str\":\"1554794709524090881\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8La4uS2TFA\",\"display_url\":\"pic.twitter.com\\/8La4uS2TFA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanul_max\\/status\\/1554794720462766080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1031,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1445,\"resize\":\"fit\"},\"small\":{\"w\":584,\"h\":680,\"resize\":\"fit\"}}}]},\"3157\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[220,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarsSolar__\",\"name\":\"Enoch Nwokike\",\"id\":2280011326,\"id_str\":\"2280011326\",\"indices\":[94,106]}],\"urls\":[],\"media\":[{\"id\":1554793885666344960,\"id_str\":\"1554793885666344960\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"3158\":{\"hashtags\":[{\"text\":\"nicert\",\"indices\":[103,110]},{\"text\":\"nicertgroup\",\"indices\":[111,123]},{\"text\":\"wenainitiative\",\"indices\":[125,140]},{\"text\":\"fmard\",\"indices\":[141,147]},{\"text\":\"Agriculture\",\"indices\":[148,160]},{\"text\":\"Export\",\"indices\":[161,168]},{\"text\":\"womenbusinesses\",\"indices\":[169,185]},{\"text\":\"Taiwan\",\"indices\":[186,193]},{\"text\":\"davidhundeyin\",\"indices\":[194,208]},{\"text\":\"samomatseye\",\"indices\":[209,221]},{\"text\":\"Tinubu\",\"indices\":[222,229]},{\"text\":\"arisetv\",\"indices\":[230,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554793397369638913,\"id_str\":\"1554793397369638913\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"url\":\"https:\\/\\/t.co\\/S3lEOp6zY1\",\"display_url\":\"pic.twitter.com\\/S3lEOp6zY1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1554793400167272450\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"}}}]},\"3159\":{\"hashtags\":[{\"text\":\"NaijaBet\",\"indices\":[203,212]},{\"text\":\"Taiwan\",\"indices\":[213,220]},{\"text\":\"PremierLeague\",\"indices\":[221,235]},{\"text\":\"ChelseaFC\",\"indices\":[236,246]},{\"text\":\"ManCity\",\"indices\":[247,255]},{\"text\":\"Spurs\",\"indices\":[256,262]},{\"text\":\"ManUnited\",\"indices\":[263,273]},{\"text\":\"Arsenal\",\"indices\":[274,282]},{\"text\":\"Liverpool\",\"indices\":[283,293]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554792927439855616,\"id_str\":\"1554792927439855616\",\"indices\":[294,317],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"url\":\"https:\\/\\/t.co\\/Vz160FKf2U\",\"display_url\":\"pic.twitter.com\\/Vz160FKf2U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554792947694112770\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"}}}]},\"3160\":{\"hashtags\":[{\"text\":\"kwankwaso\",\"indices\":[119,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"davidhundeyin\",\"indices\":[138,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3161\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"Phyna\",\"indices\":[132,138]},{\"text\":\"Mama\",\"indices\":[139,144]},{\"text\":\"Daniella\",\"indices\":[145,154]},{\"text\":\"BBNajiaS7\",\"indices\":[155,165]},{\"text\":\"SheggzFC\",\"indices\":[166,175]},{\"text\":\"JackieChan\",\"indices\":[176,187]},{\"text\":\"Jaruma\",\"indices\":[188,195]},{\"text\":\"Kalid\",\"indices\":[196,202]},{\"text\":\"RCCGConvention\",\"indices\":[203,218]},{\"text\":\"RCTID\",\"indices\":[219,225]},{\"text\":\"Solana\",\"indices\":[226,233]},{\"text\":\"helicopter\",\"indices\":[234,245]},{\"text\":\"PokemonScarletViolet\",\"indices\":[246,267]},{\"text\":\"BibleBuild\",\"indices\":[268,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790943148199937,\"id_str\":\"1554790943148199937\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3162\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Trending\",\"indices\":[69,78]},{\"text\":\"Trending\",\"indices\":[79,88]},{\"text\":\"explorepage\",\"indices\":[89,101]},{\"text\":\"TrendingNow\",\"indices\":[102,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790640617226240,\"id_str\":\"1554790640617226240\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"3163\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"helicopter\",\"indices\":[213,224]},{\"text\":\"BBNajiaS7\",\"indices\":[225,235]},{\"text\":\"BBN\",\"indices\":[236,240]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UKRinNGA\",\"name\":\"UKR Emb in Nigeria\",\"id\":3130729995,\"id_str\":\"3130729995\",\"indices\":[193,202]}],\"urls\":[]},\"3164\":{\"hashtags\":[{\"text\":\"gafexianart\",\"indices\":[94,106]},{\"text\":\"gafexianzone\",\"indices\":[107,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"Solana\",\"indices\":[129,136]},{\"text\":\"Chelsea\",\"indices\":[137,145]},{\"text\":\"ChelseaFC\",\"indices\":[146,156]},{\"text\":\"biro\",\"indices\":[202,207]},{\"text\":\"explorepage\",\"indices\":[208,220]},{\"text\":\"explore\",\"indices\":[221,229]},{\"text\":\"Explorer\",\"indices\":[230,239]},{\"text\":\"ExploreUganda\",\"indices\":[240,254]},{\"text\":\"artist\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"samkerr1\",\"name\":\"Sam Kerr\",\"id\":320739724,\"id_str\":\"320739724\",\"indices\":[35,44]},{\"screen_name\":\"ChelseaFCW\",\"name\":\"Chelsea FC Women\",\"id\":269713045,\"id_str\":\"269713045\",\"indices\":[157,168]},{\"screen_name\":\"AbsoluteChelsea\",\"name\":\"Absolute Chelsea\",\"id\":4504718963,\"id_str\":\"4504718963\",\"indices\":[169,185]},{\"screen_name\":\"ChelseaFCinUSA\",\"name\":\"Chelsea FC USA\",\"id\":996031284420935680,\"id_str\":\"996031284420935680\",\"indices\":[186,201]},{\"screen_name\":\"ChelseaWomenSG\",\"name\":\"Chelsea Women Supporters Group\",\"id\":3102692859,\"id_str\":\"3102692859\",\"indices\":[255,270]}],\"urls\":[],\"media\":[{\"id\":1554788871627587585,\"id_str\":\"1554788871627587585\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"url\":\"https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"display_url\":\"pic.twitter.com\\/ZRsEBIH9Rb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554788988187283456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1163,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":659,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1984,\"h\":2048,\"resize\":\"fit\"}}}]},\"3165\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Solana\",\"indices\":[146,153]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[154,162]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[163,186]},{\"text\":\"PokemonScarletViolet\",\"indices\":[187,208]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[209,216]},{\"text\":\"BlueJays\",\"indices\":[217,226]},{\"text\":\"partytime\",\"indices\":[227,237]},{\"text\":\"jbankz\",\"indices\":[238,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554788201600016387,\"id_str\":\"1554788201600016387\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"url\":\"https:\\/\\/t.co\\/qyHhxvm1w1\",\"display_url\":\"pic.twitter.com\\/qyHhxvm1w1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554788274752847874\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3166\":{\"hashtags\":[{\"text\":\"ibedc\",\"indices\":[159,165]},{\"text\":\"DistributingDarkness\",\"indices\":[166,187]},{\"text\":\"wednesdaythought\",\"indices\":[231,248]},{\"text\":\"Solana\",\"indices\":[249,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"helicopter\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[53,62]},{\"screen_name\":\"via_iure\",\"name\":\"Via iure\",\"id\":1352637558539354117,\"id_str\":\"1352637558539354117\",\"indices\":[188,197]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[198,208]},{\"screen_name\":\"fccpcnigeria\",\"name\":\"FCCPC Nigeria\",\"id\":1229437064,\"id_str\":\"1229437064\",\"indices\":[209,222]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[223,230]}],\"urls\":[]},\"3167\":{\"hashtags\":[{\"text\":\"EmmanuelUmoh\",\"indices\":[44,57]},{\"text\":\"Pelosi\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VEa4WP9DO0\",\"expanded_url\":\"http:\\/\\/instagram.com\\/emmanuelumohjr\",\"display_url\":\"instagram.com\\/emmanuelumohjr\",\"indices\":[19,42]}],\"media\":[{\"id\":1554786935746560001,\"id_str\":\"1554786935746560001\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"url\":\"https:\\/\\/t.co\\/XnWs6XKBaB\",\"display_url\":\"pic.twitter.com\\/XnWs6XKBaB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gifshizzle\\/status\\/1554786948564353026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"small\":{\"w\":592,\"h\":680,\"resize\":\"fit\"}}}]},\"3168\":{\"hashtags\":[{\"text\":\"CommonwealthGames2022\",\"indices\":[140,162]},{\"text\":\"Taiwan\",\"indices\":[163,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554785710649090048,\"id_str\":\"1554785710649090048\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"url\":\"https:\\/\\/t.co\\/Rb6M4G9bfV\",\"display_url\":\"pic.twitter.com\\/Rb6M4G9bfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tinubufrontier\\/status\\/1554785715841646592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"3169\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[180,187]},{\"text\":\"btc\",\"indices\":[188,192]},{\"text\":\"binance\",\"indices\":[193,201]},{\"text\":\"Taiwan\",\"indices\":[202,209]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rovercrc\",\"name\":\"Crypto Rover\",\"id\":1353384573435056128,\"id_str\":\"1353384573435056128\",\"indices\":[210,219]},{\"screen_name\":\"MMCrypto\",\"name\":\"MMCrypto\",\"id\":904700529988820992,\"id_str\":\"904700529988820992\",\"indices\":[220,229]},{\"screen_name\":\"CrypToomas\",\"name\":\"CrypTomas\",\"id\":1501264217239924750,\"id_str\":\"1501264217239924750\",\"indices\":[230,241]},{\"screen_name\":\"elonmusk\",\"name\":\"Elon Musk\",\"id\":44196397,\"id_str\":\"44196397\",\"indices\":[242,251]},{\"screen_name\":\"StonksReddit\",\"name\":\"Stonks Trading \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\ude80\",\"id\":1354546688967454725,\"id_str\":\"1354546688967454725\",\"indices\":[252,265]}],\"urls\":[],\"media\":[{\"id\":1554785099077517314,\"id_str\":\"1554785099077517314\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"url\":\"https:\\/\\/t.co\\/2VAX1kKY7q\",\"display_url\":\"pic.twitter.com\\/2VAX1kKY7q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BlackdiamondBLD\\/status\\/1554785109202665476\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":433,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1241,\"h\":1949,\"resize\":\"fit\"}}}]},\"3170\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"Pionners\",\"indices\":[177,186]},{\"text\":\"Pinetwork\",\"indices\":[187,197]},{\"text\":\"sabinus\",\"indices\":[198,206]},{\"text\":\"cryptocurrency\",\"indices\":[207,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[16,27]},{\"screen_name\":\"nkokkalis\",\"name\":\"Nicolas Kokkalis\",\"id\":16536129,\"id_str\":\"16536129\",\"indices\":[136,146]}],\"urls\":[],\"media\":[{\"id\":1554784146966421507,\"id_str\":\"1554784146966421507\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"url\":\"https:\\/\\/t.co\\/E9xunsffM1\",\"display_url\":\"pic.twitter.com\\/E9xunsffM1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1554784157557051392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"3171\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"China\",\"indices\":[6,12]},{\"text\":\"NancyPelosi\",\"indices\":[13,25]},{\"text\":\"Taiwan\",\"indices\":[26,33]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7zorY8BGJn\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SVzM6n\",\"display_url\":\"dlvr.it\\/SVzM6n\",\"indices\":[101,124]}]},\"3172\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"China\",\"indices\":[102,108]},{\"text\":\"Solana\",\"indices\":[109,116]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[117,140]},{\"text\":\"sabinus\",\"indices\":[141,149]},{\"text\":\"helicopter\",\"indices\":[150,161]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[162,169]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[170,188]},{\"text\":\"LoveIsland2022\",\"indices\":[189,204]},{\"text\":\"oesym\",\"indices\":[205,211]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[212,234]},{\"text\":\"UkraineRussiaWar\",\"indices\":[235,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cOFgBjIkqz\",\"expanded_url\":\"https:\\/\\/join.ueni.com\\/camp\\/refer-a-friend-us\\/?via=99r03\",\"display_url\":\"join.ueni.com\\/camp\\/refer-a-f\\u2026\",\"indices\":[53,76]}]},\"3173\":{\"hashtags\":[{\"text\":\"SoundCloud\",\"indices\":[81,92]},{\"text\":\"NewMusic\",\"indices\":[153,162]},{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"sabinus\",\"indices\":[178,186]},{\"text\":\"LoveIsland2022\",\"indices\":[187,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/24snMEgLsL\",\"expanded_url\":\"https:\\/\\/soundcloud.app.goo.gl\\/nyE2E\",\"display_url\":\"soundcloud.app.goo.gl\\/nyE2E\",\"indices\":[93,116]}],\"media\":[{\"id\":1554780632630403075,\"id_str\":\"1554780632630403075\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"url\":\"https:\\/\\/t.co\\/MrqMUbG8P6\",\"display_url\":\"pic.twitter.com\\/MrqMUbG8P6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tipcy_Jaej\\/status\\/1554781577946742785\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":333,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":626,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":587,\"h\":1200,\"resize\":\"fit\"}}}]},\"3174\":{\"hashtags\":[{\"text\":\"20k\",\"indices\":[29,33]},{\"text\":\"benincitymall\",\"indices\":[143,157]},{\"text\":\"Pelosi\",\"indices\":[159,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[175,197]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DayoAmusa\",\"name\":\"DAYO AMUSA\",\"id\":148323720,\"id_str\":\"148323720\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554780148741939201,\"id_str\":\"1554780148741939201\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"url\":\"https:\\/\\/t.co\\/f2CdRuT9tm\",\"display_url\":\"pic.twitter.com\\/f2CdRuT9tm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Richmanonuche1\\/status\\/1554780161714917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":2048,\"resize\":\"fit\"}}}]},\"3175\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[11,18]},{\"text\":\"helicopter\",\"indices\":[19,30]},{\"text\":\"Ukraine\",\"indices\":[31,39]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554779811347939329,\"id_str\":\"1554779811347939329\",\"indices\":[40,63],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"url\":\"https:\\/\\/t.co\\/EhISr3PULD\",\"display_url\":\"pic.twitter.com\\/EhISr3PULD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1554779819296137217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1494,\"resize\":\"fit\"},\"medium\":{\"w\":904,\"h\":1200,\"resize\":\"fit\"}}}]},\"3176\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[129,139]},{\"text\":\"Machala\",\"indices\":[140,148]},{\"text\":\"Wizkidfc\",\"indices\":[149,158]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[159,167]},{\"text\":\"funnyvideos\",\"indices\":[168,180]},{\"text\":\"lucasdusky\",\"indices\":[181,192]},{\"text\":\"trendingvideos\",\"indices\":[193,208]},{\"text\":\"sabinus\",\"indices\":[209,217]},{\"text\":\"Taiwan\",\"indices\":[218,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]},{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[13,25]}],\"urls\":[],\"media\":[{\"id\":1554777430971351040,\"id_str\":\"1554777430971351040\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"url\":\"https:\\/\\/t.co\\/a4BmMkUray\",\"display_url\":\"pic.twitter.com\\/a4BmMkUray\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LukeKyauta\\/status\\/1554777567802040321\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}}}]},\"3177\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uagVKfdbEO\",\"expanded_url\":\"https:\\/\\/investogist.com\\/breaking-u-s-speaker-pelosi-departs-taiwan-amid-chinese-threats-military-drills\\/\",\"display_url\":\"investogist.com\\/breaking-u-s-s\\u2026\",\"indices\":[82,105]}]},\"3178\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"China\",\"indices\":[164,170]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[171,178]},{\"text\":\"RwandaBirds\",\"indices\":[179,191]},{\"text\":\"helicopter\",\"indices\":[193,204]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[205,230]},{\"text\":\"Buhari\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773993567166465,\"id_str\":\"1554773993567166465\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"url\":\"https:\\/\\/t.co\\/o97l2VTsqf\",\"display_url\":\"pic.twitter.com\\/o97l2VTsqf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chidi_Africa\\/status\\/1554773996087943168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":452,\"resize\":\"fit\"}}}]},\"3179\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[112,123]},{\"text\":\"Wizkid\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]},{\"text\":\"BBNaija\",\"indices\":[181,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773004470652929,\"id_str\":\"1554773004470652929\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}}]},\"3180\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[215,225]},{\"text\":\"Pelosi\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3181\":{\"hashtags\":[{\"text\":\"Umbrella\",\"indices\":[232,241]},{\"text\":\"Taiwan\",\"indices\":[261,268]},{\"text\":\"Cucurella\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OnorSandy\",\"name\":\"Sen. Prof. Sandy Ojang Onor\",\"id\":1136922427353681920,\"id_str\":\"1136922427353681920\",\"indices\":[4,14]},{\"screen_name\":\"JJarigbe\",\"name\":\"Senator Jarigbe Agom Jarigbe\",\"id\":1251858396376072192,\"id_str\":\"1251858396376072192\",\"indices\":[57,66]},{\"screen_name\":\"HouseNGR\",\"name\":\"House of Reps NGR\",\"id\":727803307880796160,\"id_str\":\"727803307880796160\",\"indices\":[139,148]}],\"urls\":[],\"media\":[{\"id\":1554771128069005315,\"id_str\":\"1554771128069005315\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"3182\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[38,53]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[114,128]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[133,141]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[222,228]}],\"urls\":[],\"media\":[{\"id\":1554771075552231427,\"id_str\":\"1554771075552231427\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"3183\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"Phyna\",\"indices\":[112,118]},{\"text\":\"BBNaija\",\"indices\":[119,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554770968610017281,\"id_str\":\"1554770968610017281\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":800,\"resize\":\"fit\"}}}]},\"3184\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[215,225]},{\"text\":\"Pelosi\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3185\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"Solana\",\"indices\":[174,181]},{\"text\":\"China\",\"indices\":[183,189]},{\"text\":\"sabinus\",\"indices\":[191,199]},{\"text\":\"helicopter\",\"indices\":[201,212]},{\"text\":\"BlueJays\",\"indices\":[214,223]},{\"text\":\"Ukraine\",\"indices\":[225,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554768625726328832,\"id_str\":\"1554768625726328832\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"url\":\"https:\\/\\/t.co\\/WrVic4OPRi\",\"display_url\":\"pic.twitter.com\\/WrVic4OPRi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554768633062215691\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"small\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"large\":{\"w\":648,\"h\":648,\"resize\":\"fit\"}}}]},\"3186\":{\"hashtags\":[{\"text\":\"SuccesQuotes\",\"indices\":[9,22]},{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"sabinus\",\"indices\":[31,39]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[40,47]},{\"text\":\"BibleBuild\",\"indices\":[48,59]},{\"text\":\"NFTCommunity\",\"indices\":[60,73]},{\"text\":\"NFTGiveaways\",\"indices\":[74,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"BlueJays\",\"indices\":[103,112]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[113,131]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[132,155]},{\"text\":\"LoveIsland2022\",\"indices\":[156,171]},{\"text\":\"USA\",\"indices\":[172,176]},{\"text\":\"Ukraine\",\"indices\":[177,185]},{\"text\":\"UkraineRussiaWar\",\"indices\":[186,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554768309056331776,\"id_str\":\"1554768309056331776\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"url\":\"https:\\/\\/t.co\\/opacZr7G7c\",\"display_url\":\"pic.twitter.com\\/opacZr7G7c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StephenQuartzz\\/status\\/1554768321983422464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"3187\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"China\",\"indices\":[141,147]},{\"text\":\"Wizkid\",\"indices\":[148,155]},{\"text\":\"nerves\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554767399236341760,\"id_str\":\"1554767399236341760\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"large\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}}]},\"3188\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"China\",\"indices\":[109,115]},{\"text\":\"sabinus\",\"indices\":[116,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3189\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[136,142]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"Solana\",\"indices\":[151,158]},{\"text\":\"sabinus\",\"indices\":[159,167]},{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"BibleBuild\",\"indices\":[180,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764964535177216,\"id_str\":\"1554764964535177216\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"url\":\"https:\\/\\/t.co\\/UWvwP9LxNe\",\"display_url\":\"pic.twitter.com\\/UWvwP9LxNe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CmskEmmanuel\\/status\\/1554765082739056641\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3190\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[63,86]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"China\",\"indices\":[155,161]},{\"text\":\"Solana\",\"indices\":[162,169]},{\"text\":\"sabinus\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeffreyGuterman\",\"name\":\"Dr. Jeffrey Guterman\",\"id\":246103,\"id_str\":\"246103\",\"indices\":[0,16]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[17,26]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[53,62]}],\"urls\":[],\"media\":[{\"id\":1554763832123326464,\"id_str\":\"1554763832123326464\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3191\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[102,125]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[126,151]},{\"text\":\"peterobi\",\"indices\":[152,161]},{\"text\":\"LabourParty\",\"indices\":[162,174]},{\"text\":\"davidhundeyin\",\"indices\":[175,189]},{\"text\":\"plateau\",\"indices\":[190,198]},{\"text\":\"helicopter\",\"indices\":[199,210]},{\"text\":\"Osimhen\",\"indices\":[211,219]},{\"text\":\"Tuchel\",\"indices\":[220,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"Pelosi\",\"indices\":[236,243]},{\"text\":\"Solana\",\"indices\":[244,251]},{\"text\":\"sabinus\",\"indices\":[252,260]},{\"text\":\"BlueJays\",\"indices\":[261,270]},{\"text\":\"GodAbeg\",\"indices\":[271,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[13,22]}],\"urls\":[],\"media\":[{\"id\":1554763035843108864,\"id_str\":\"1554763035843108864\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"url\":\"https:\\/\\/t.co\\/1PxDqmYaXY\",\"display_url\":\"pic.twitter.com\\/1PxDqmYaXY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/benita_ani\\/status\\/1554763044194058240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":969,\"h\":1200,\"resize\":\"fit\"}}}]},\"3192\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"Pelosi\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dixon_davie\",\"name\":\"\\u26a1\\ufe0fYes We Can\\ud83c\\uddf8\\ud83c\\uddf1\\u26a1\\ufe0f\\u26a1\\ufe0f\\u26a1\\ufe0f\",\"id\":913896118903279617,\"id_str\":\"913896118903279617\",\"indices\":[0,12]}],\"urls\":[]},\"3193\":{\"hashtags\":[{\"text\":\"ministerforsoupaffairs\",\"indices\":[12,35]},{\"text\":\"ministerforsoupaffairs\",\"indices\":[168,191]},{\"text\":\"Pelosi\",\"indices\":[192,199]},{\"text\":\"Stew\",\"indices\":[200,205]},{\"text\":\"eathealthy\",\"indices\":[206,217]},{\"text\":\"HealthyFood\",\"indices\":[218,230]},{\"text\":\"Health\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554761742458277888,\"id_str\":\"1554761742458277888\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZzXoicSwjA\",\"display_url\":\"pic.twitter.com\\/ZzXoicSwjA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akande_susan_b\\/status\\/1554761745159409664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"3194\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"China\",\"indices\":[154,160]},{\"text\":\"sabinus\",\"indices\":[161,169]},{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Ukraine\",\"indices\":[182,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SLBHGR3jvE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GuardpostNg\\/status\\/1554741440797884416\",\"display_url\":\"twitter.com\\/GuardpostNg\\/st\\u2026\",\"indices\":[193,216]}]},\"3195\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[160,167]},{\"text\":\"sabinus\",\"indices\":[168,176]},{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"China\",\"indices\":[189,195]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[196,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pXP9ujMIMP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GuardpostNg\\/status\\/1554549189392027648\",\"display_url\":\"twitter.com\\/GuardpostNg\\/st\\u2026\",\"indices\":[214,237]}]},\"3196\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"dejong\",\"indices\":[109,116]},{\"text\":\"nigerrepublic\",\"indices\":[117,131]},{\"text\":\"Obituary\",\"indices\":[132,141]},{\"text\":\"Emily\",\"indices\":[142,148]},{\"text\":\"Rufai\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UnB0AzoKHG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3BxyUKa\",\"display_url\":\"bit.ly\\/3BxyUKa\",\"indices\":[76,99]}],\"media\":[{\"id\":1554758920064958466,\"id_str\":\"1554758920064958466\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"url\":\"https:\\/\\/t.co\\/2ZhUtWf8xb\",\"display_url\":\"pic.twitter.com\\/2ZhUtWf8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/opuwari66\\/status\\/1554758927639781377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"3197\":{\"hashtags\":[{\"text\":\"MUFC\",\"indices\":[70,75]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"sabinus\",\"indices\":[96,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AT13Oficial\",\"name\":\"Alex Telles\",\"id\":1331704359596527621,\"id_str\":\"1331704359596527621\",\"indices\":[0,12]},{\"screen_name\":\"SevillaFC_ENG\",\"name\":\"Sevilla FC\",\"id\":2941994339,\"id_str\":\"2941994339\",\"indices\":[53,67]}],\"urls\":[],\"media\":[{\"id\":1554758636550983680,\"id_str\":\"1554758636550983680\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":961,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1405,\"resize\":\"fit\"}}}]},\"3198\":{\"hashtags\":[{\"text\":\"Rufai\",\"indices\":[97,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"GodAbeg\",\"indices\":[112,120]},{\"text\":\"arisetv\",\"indices\":[121,129]},{\"text\":\"nigerrepublic\",\"indices\":[130,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hQIkNcxJDz\",\"expanded_url\":\"https:\\/\\/nigeriannewssphere.com\\/arisetv-journalist-rufai-apologies-for-brt-traffic-infractions-in-lagos\\/\",\"display_url\":\"nigeriannewssphere.com\\/arisetv-journa\\u2026\",\"indices\":[146,169]}],\"media\":[{\"id\":1554757310014263296,\"id_str\":\"1554757310014263296\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"url\":\"https:\\/\\/t.co\\/s8oGfNaHs6\",\"display_url\":\"pic.twitter.com\\/s8oGfNaHs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ariemu_ogaga\\/status\\/1554757312325246977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"medium\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"large\":{\"w\":225,\"h\":225,\"resize\":\"fit\"}}}]},\"3199\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[91,99]},{\"text\":\"BBNajiaS7\",\"indices\":[100,110]},{\"text\":\"Chelsea\",\"indices\":[111,119]},{\"text\":\"Khalid\",\"indices\":[120,127]},{\"text\":\"dejong\",\"indices\":[128,135]},{\"text\":\"Deji\",\"indices\":[136,141]},{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"Nigeria\",\"indices\":[150,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3200\":{\"hashtags\":[{\"text\":\"EpitomeStores\",\"indices\":[21,35]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"helicopter\",\"indices\":[59,70]},{\"text\":\"BlueJays\",\"indices\":[71,80]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[81,99]},{\"text\":\"LoveIsland2022\",\"indices\":[100,115]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[116,134]},{\"text\":\"Ukraine\",\"indices\":[135,143]},{\"text\":\"UkraineRussiaWar\",\"indices\":[144,161]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[162,187]},{\"text\":\"oesym\",\"indices\":[188,194]},{\"text\":\"Guerrilla1stWin\",\"indices\":[195,211]},{\"text\":\"wednesdaythought\",\"indices\":[212,229]},{\"text\":\"fashionstyle\",\"indices\":[230,243]},{\"text\":\"Viruman\",\"indices\":[244,252]},{\"text\":\"Piastri\",\"indices\":[253,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3201\":{\"hashtags\":[{\"text\":\"lifequotes\",\"indices\":[42,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"OBIdient2023\",\"indices\":[62,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554193160506580992,\"id_str\":\"1554193160506580992\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cync8O1w12\",\"display_url\":\"pic.twitter.com\\/Cync8O1w12\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jara_Connect\\/status\\/1554753949986525184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3202\":{\"hashtags\":[{\"text\":\"DirtyNancy\",\"indices\":[0,11]},{\"text\":\"Pelosi\",\"indices\":[43,50]},{\"text\":\"Trump\",\"indices\":[116,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"POTUS45\",\"name\":\"President Trump 45 Archived\",\"id\":822215679726100480,\"id_str\":\"822215679726100480\",\"indices\":[15,23]}],\"urls\":[]},\"3203\":{\"hashtags\":[{\"text\":\"Obidatti2023\",\"indices\":[231,244]},{\"text\":\"Taiwan\",\"indices\":[245,252]},{\"text\":\"NigeriaDecides2023\",\"indices\":[259,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WOaKtGkKsD\",\"expanded_url\":\"https:\\/\\/youtu.be\\/VW4wAoj6_m4\",\"display_url\":\"youtu.be\\/VW4wAoj6_m4\",\"indices\":[115,138]}],\"media\":[{\"id\":1554749405697277953,\"id_str\":\"1554749405697277953\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"url\":\"https:\\/\\/t.co\\/L1J8YWRhY5\",\"display_url\":\"pic.twitter.com\\/L1J8YWRhY5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/izzitalk\\/status\\/1554750357292650496\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3204\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"BBNaijaS7\",\"indices\":[225,235]},{\"text\":\"Sabinus\",\"indices\":[238,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3205\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"US\",\"indices\":[11,14]},{\"text\":\"TaiwanIsNotChina\",\"indices\":[40,57]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[58,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3206\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[0,3]},{\"text\":\"Ukraine\",\"indices\":[22,30]},{\"text\":\"Russia\",\"indices\":[40,47]},{\"text\":\"Zelensky\",\"indices\":[64,73]},{\"text\":\"US\",\"indices\":[101,104]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"China\",\"indices\":[149,155]},{\"text\":\"Putin\",\"indices\":[195,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3207\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[204,211]},{\"text\":\"BBNaijaS7\",\"indices\":[213,223]},{\"text\":\"BBNaija\",\"indices\":[225,233]},{\"text\":\"Chelsea\",\"indices\":[235,243]},{\"text\":\"AtikuOkowa2023\",\"indices\":[245,260]},{\"text\":\"Tinubu\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[33,39]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[163,178]},{\"screen_name\":\"IAOkowa\",\"name\":\"Dr. Ifeanyi Arthur Okowa\",\"id\":1026733681912758273,\"id_str\":\"1026733681912758273\",\"indices\":[179,187]},{\"screen_name\":\"Ecowas4atiku23\",\"name\":\"Ecowas4atiku\",\"id\":1098177146386829313,\"id_str\":\"1098177146386829313\",\"indices\":[188,203]}],\"urls\":[],\"media\":[{\"id\":1554745603615252480,\"id_str\":\"1554745603615252480\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"url\":\"https:\\/\\/t.co\\/tj6Iz3obts\",\"display_url\":\"pic.twitter.com\\/tj6Iz3obts\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuel_atser\\/status\\/1554745680635338754\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"3208\":{\"hashtags\":[{\"text\":\"ToxicByOjaDaddy\",\"indices\":[170,186]},{\"text\":\"Pelosi\",\"indices\":[187,194]},{\"text\":\"helicopter\",\"indices\":[195,206]},{\"text\":\"LoveIsland2022\",\"indices\":[207,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OjaDaddy7\",\"name\":\"Ojadaddi\",\"id\":1246161298292977665,\"id_str\":\"1246161298292977665\",\"indices\":[0,10]},{\"screen_name\":\"Se_unofficial\",\"name\":\"Se\\u2019un\",\"id\":926552993658372096,\"id_str\":\"926552993658372096\",\"indices\":[14,28]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S7kMwohQM4\",\"expanded_url\":\"https:\\/\\/youtu.be\\/BYl6AgDuUJM\",\"display_url\":\"youtu.be\\/BYl6AgDuUJM\",\"indices\":[145,168]}],\"media\":[{\"id\":1554745383775096833,\"id_str\":\"1554745383775096833\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"url\":\"https:\\/\\/t.co\\/7y4Kb7qmrv\",\"display_url\":\"pic.twitter.com\\/7y4Kb7qmrv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobzyeasy\\/status\\/1554745475730968580\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3209\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"UkraineRussiaWar\",\"indices\":[157,174]},{\"text\":\"ChinaTaiwan\",\"indices\":[175,187]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[188,210]},{\"text\":\"abujaRTBOT\",\"indices\":[211,222]},{\"text\":\"Chelsea\",\"indices\":[223,231]},{\"text\":\"ASUU\",\"indices\":[232,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MineralSorcerer\",\"name\":\"Solid Mineral Sorcerer\",\"id\":1545418862845476864,\"id_str\":\"1545418862845476864\",\"indices\":[36,52]}],\"urls\":[],\"media\":[{\"id\":1554745248693338112,\"id_str\":\"1554745248693338112\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"url\":\"https:\\/\\/t.co\\/tP7gEqnV9g\",\"display_url\":\"pic.twitter.com\\/tP7gEqnV9g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MineralSorcerer\\/status\\/1554745332243767296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":640,\"resize\":\"fit\"}}}]},\"3210\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[72,78]},{\"text\":\"oesym\",\"indices\":[79,85]},{\"text\":\"famemma15\",\"indices\":[86,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"relationships\",\"indices\":[105,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3211\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[145,152]},{\"text\":\"PeterObi2023\",\"indices\":[154,167]},{\"text\":\"wcw\",\"indices\":[169,173]},{\"text\":\"asuu\",\"indices\":[174,179]},{\"text\":\"Ukraine\",\"indices\":[181,189]},{\"text\":\"chiomaonyekwere\",\"indices\":[191,207]},{\"text\":\"GoldMedal\",\"indices\":[209,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554743513115500544,\"id_str\":\"1554743513115500544\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"url\":\"https:\\/\\/t.co\\/PWYGApAmQx\",\"display_url\":\"pic.twitter.com\\/PWYGApAmQx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Victorbajju_30\\/status\\/1554743515757903873\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":660,\"resize\":\"fit\"}}}]},\"3212\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[86,97]},{\"text\":\"WWIII\",\"indices\":[98,104]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[105,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554739912653643776,\"id_str\":\"1554739912653643776\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"url\":\"https:\\/\\/t.co\\/gWlbMkTYBc\",\"display_url\":\"pic.twitter.com\\/gWlbMkTYBc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trouve_ng\\/status\\/1554739926125760512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3213\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"China\",\"indices\":[133,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J8wIhsxckV\",\"expanded_url\":\"https:\\/\\/investogist.com\\/chinas-drills-violates-our-sovereignty-amounts-to-air-and-sea-blockade-taiwans-defence-ministry\\/\",\"display_url\":\"investogist.com\\/chinas-drills-\\u2026\",\"indices\":[101,124]}]},\"3214\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[111,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3215\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"helicopter\",\"indices\":[65,76]},{\"text\":\"BlueJays\",\"indices\":[77,86]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[87,105]},{\"text\":\"LoveIsland2022\",\"indices\":[106,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[122,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3216\":{\"hashtags\":[{\"text\":\"Datti\",\"indices\":[168,174]},{\"text\":\"saraki\",\"indices\":[175,182]},{\"text\":\"sabinus\",\"indices\":[212,220]},{\"text\":\"BBNaija\",\"indices\":[221,229]},{\"text\":\"Pelosi\",\"indices\":[230,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735874017054722,\"id_str\":\"1554735874017054722\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"url\":\"https:\\/\\/t.co\\/05qgfyGbKI\",\"display_url\":\"pic.twitter.com\\/05qgfyGbKI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stancity3\\/status\\/1554735948960784384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}}}]},\"3217\":{\"hashtags\":[{\"text\":\"Khalid\",\"indices\":[56,63]},{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"Nigerrepublic\",\"indices\":[72,86]},{\"text\":\"Ebubeagu\",\"indices\":[87,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"NNPC\",\"indices\":[106,111]},{\"text\":\"Jubril\",\"indices\":[112,119]},{\"text\":\"welcometochelsea\",\"indices\":[120,137]},{\"text\":\"shes40\",\"indices\":[138,145]},{\"text\":\"Jaruma\",\"indices\":[146,153]},{\"text\":\"Daniella\",\"indices\":[154,163]},{\"text\":\"obituaries\",\"indices\":[164,175]},{\"text\":\"2Naira\",\"indices\":[176,183]},{\"text\":\"EmmanuelUmoh\",\"indices\":[184,197]},{\"text\":\"BeautyWithBrains\",\"indices\":[198,215]},{\"text\":\"Asaba\",\"indices\":[216,222]},{\"text\":\"Shameless\",\"indices\":[223,233]},{\"text\":\"Wizkid\",\"indices\":[234,241]},{\"text\":\"caterefe\",\"indices\":[242,251]},{\"text\":\"Machala\",\"indices\":[252,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735937007112194,\"id_str\":\"1554735937007112194\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"url\":\"https:\\/\\/t.co\\/kwr5SYLOaz\",\"display_url\":\"pic.twitter.com\\/kwr5SYLOaz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554735947413176320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3218\":{\"hashtags\":[{\"text\":\"2Naira\",\"indices\":[129,136]},{\"text\":\"Buhari\",\"indices\":[137,144]},{\"text\":\"Racism\",\"indices\":[145,152]},{\"text\":\"Nigerrepublic\",\"indices\":[153,167]},{\"text\":\"Jaruma\",\"indices\":[168,175]},{\"text\":\"datti\",\"indices\":[176,182]},{\"text\":\"sabinus\",\"indices\":[183,191]},{\"text\":\"ChinaTaiwan\",\"indices\":[193,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735749492260865,\"id_str\":\"1554735749492260865\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"url\":\"https:\\/\\/t.co\\/B1ILEk1MbJ\",\"display_url\":\"pic.twitter.com\\/B1ILEk1MbJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554735759818620928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":971,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":971,\"resize\":\"fit\"}}}]},\"3219\":{\"hashtags\":[{\"text\":\"classsuites\",\"indices\":[153,165]},{\"text\":\"hotelsandapartmentsinlagos\",\"indices\":[166,193]},{\"text\":\"apartmentsinlagos\",\"indices\":[194,212]},{\"text\":\"LoveIsland2022\",\"indices\":[213,228]},{\"text\":\"hotelsinnigeria\",\"indices\":[229,245]},{\"text\":\"accomodationinlagos\",\"indices\":[246,266]},{\"text\":\"Pelosi\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735431408914432,\"id_str\":\"1554735431408914432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"url\":\"https:\\/\\/t.co\\/pOOwEAlBEc\",\"display_url\":\"pic.twitter.com\\/pOOwEAlBEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/classsuitehotel\\/status\\/1554735443136192512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"}}}]},\"3220\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[93,103]},{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"Tielemans\",\"indices\":[119,129]},{\"text\":\"Fulani\",\"indices\":[130,137]},{\"text\":\"ASUU\",\"indices\":[138,143]},{\"text\":\"Roma\",\"indices\":[144,149]},{\"text\":\"shes40\",\"indices\":[150,157]},{\"text\":\"wordwarIII\",\"indices\":[158,169]},{\"text\":\"Naughty\",\"indices\":[170,178]},{\"text\":\"Cubana\",\"indices\":[179,186]},{\"text\":\"racism\",\"indices\":[187,194]},{\"text\":\"OKOWA\",\"indices\":[195,201]},{\"text\":\"welcometochelsea\",\"indices\":[202,219]},{\"text\":\"Emerson\",\"indices\":[220,228]},{\"text\":\"Bokoharam\",\"indices\":[229,239]},{\"text\":\"Taiwanchina\",\"indices\":[240,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"BBNajia\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Limosiris1\",\"name\":\"Limosiris\",\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"indices\":[20,31]}],\"urls\":[],\"media\":[{\"id\":1554733300681478144,\"id_str\":\"1554733300681478144\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"url\":\"https:\\/\\/t.co\\/svknsySMh6\",\"display_url\":\"pic.twitter.com\\/svknsySMh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554733314564554752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3221\":{\"hashtags\":[{\"text\":\"Amapiano\",\"indices\":[30,39]},{\"text\":\"Pelosi\",\"indices\":[40,47]},{\"text\":\"WonderWoman\",\"indices\":[48,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554732684127117312,\"id_str\":\"1554732684127117312\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"url\":\"https:\\/\\/t.co\\/xRALFAqC3I\",\"display_url\":\"pic.twitter.com\\/xRALFAqC3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1554733053494403074\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3222\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[241,248]},{\"text\":\"voiceactor\",\"indices\":[249,260]},{\"text\":\"voiceover\",\"indices\":[261,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554731444085444610,\"id_str\":\"1554731444085444610\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"url\":\"https:\\/\\/t.co\\/bN4xCQw4No\",\"display_url\":\"pic.twitter.com\\/bN4xCQw4No\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialOSYB\\/status\\/1554731771115225088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}}}]},\"3223\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"China\",\"indices\":[85,91]},{\"text\":\"Pelosi\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D5JkwYXMuh\",\"expanded_url\":\"https:\\/\\/investogist.com\\/is-taiwan-a-part-of-china-a-short-history-of-taiwan\\/\",\"display_url\":\"investogist.com\\/is-taiwan-a-pa\\u2026\",\"indices\":[53,76]}]},\"3224\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"Pelosi\",\"indices\":[24,31]},{\"text\":\"China\",\"indices\":[32,38]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[39,47]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[48,71]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[72,93]},{\"text\":\"BlueJays\",\"indices\":[94,103]},{\"text\":\"helicopter\",\"indices\":[104,115]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[116,134]},{\"text\":\"BadmintonMalaysia\",\"indices\":[135,153]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[154,161]},{\"text\":\"MONEY\",\"indices\":[162,168]},{\"text\":\"UkraineRussiaWar\",\"indices\":[169,186]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[187,212]},{\"text\":\"Wizkid\",\"indices\":[213,220]},{\"text\":\"SABCNews\",\"indices\":[221,230]},{\"text\":\"sabinus\",\"indices\":[231,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554728882691051521,\"id_str\":\"1554728882691051521\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"url\":\"https:\\/\\/t.co\\/bINlXjK7kw\",\"display_url\":\"pic.twitter.com\\/bINlXjK7kw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1554729093857435649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}}}]},\"3225\":{\"hashtags\":[{\"text\":\"Yorubas\",\"indices\":[43,51]},{\"text\":\"samomatseye\",\"indices\":[52,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"sabinus\",\"indices\":[73,81]},{\"text\":\"Datti\",\"indices\":[82,88]},{\"text\":\"Obidatti2023\",\"indices\":[89,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554728955416088577,\"id_str\":\"1554728955416088577\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"url\":\"https:\\/\\/t.co\\/dPgOSI5xlD\",\"display_url\":\"pic.twitter.com\\/dPgOSI5xlD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IgweRichard8\\/status\\/1554728958880612353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":693,\"resize\":\"fit\"}}}]},\"3226\":{\"hashtags\":[{\"text\":\"BlueJays\",\"indices\":[55,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"goodmorning\",\"indices\":[73,85]},{\"text\":\"wednesdaythought\",\"indices\":[86,103]},{\"text\":\"MONEY\",\"indices\":[104,110]},{\"text\":\"UkraineRussiaWar\",\"indices\":[111,128]},{\"text\":\"BadmintonMalaysia\",\"indices\":[129,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554726832318054400,\"id_str\":\"1554726832318054400\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"url\":\"https:\\/\\/t.co\\/00jFWrl2SL\",\"display_url\":\"pic.twitter.com\\/00jFWrl2SL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554726841772023808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3227\":{\"hashtags\":[{\"text\":\"architecture\",\"indices\":[136,149]},{\"text\":\"construction\",\"indices\":[150,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725413808742400,\"id_str\":\"1554725413808742400\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"url\":\"https:\\/\\/t.co\\/iBJGDUp0bv\",\"display_url\":\"pic.twitter.com\\/iBJGDUp0bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GbengaAdene\\/status\\/1554725439599435777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":805,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1374,\"resize\":\"fit\"}}}]},\"3228\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"China\",\"indices\":[211,217]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[218,239]},{\"text\":\"helicopter\",\"indices\":[240,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725356984303618,\"id_str\":\"1554725356984303618\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3229\":{\"hashtags\":[{\"text\":\"UECLQualification\",\"indices\":[33,51]},{\"text\":\"NaijaBet\",\"indices\":[231,240]},{\"text\":\"BoostedOdds\",\"indices\":[241,253]},{\"text\":\"HighestOdds\",\"indices\":[254,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[206,229]}],\"media\":[{\"id\":1554723961283411970,\"id_str\":\"1554723961283411970\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"url\":\"https:\\/\\/t.co\\/te9gZGngXO\",\"display_url\":\"pic.twitter.com\\/te9gZGngXO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554723970548699137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3230\":{\"hashtags\":[{\"text\":\"BlueJays\",\"indices\":[91,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"MONEY\",\"indices\":[132,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5xpaEHg8ce\",\"expanded_url\":\"https:\\/\\/youtu.be\\/E9vSwah0g6M\",\"display_url\":\"youtu.be\\/E9vSwah0g6M\",\"indices\":[140,163]}]},\"3231\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"Niger\",\"indices\":[133,139]},{\"text\":\"Emily\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3232\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[166,173]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"globaltimesnews\",\"name\":\"Global Times\",\"id\":49616273,\"id_str\":\"49616273\",\"indices\":[0,16]}],\"urls\":[]},\"3233\":{\"hashtags\":[{\"text\":\"government\",\"indices\":[98,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[118,139]},{\"text\":\"EndSARS\",\"indices\":[140,148]},{\"text\":\"NigeriaDecides2023\",\"indices\":[149,168]},{\"text\":\"vote\",\"indices\":[169,174]},{\"text\":\"BBNaija\",\"indices\":[175,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3234\":{\"hashtags\":[{\"text\":\"UCLQualifiers\",\"indices\":[37,51]},{\"text\":\"NaijaBet\",\"indices\":[236,245]},{\"text\":\"MONEY\",\"indices\":[246,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"HighestOdds\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[211,234]}],\"media\":[{\"id\":1554718930496897026,\"id_str\":\"1554718930496897026\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"url\":\"https:\\/\\/t.co\\/026mVX7MRE\",\"display_url\":\"pic.twitter.com\\/026mVX7MRE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554718940496105473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"3235\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"China\",\"indices\":[70,76]},{\"text\":\"MONEY\",\"indices\":[77,83]},{\"text\":\"NancyPelosi\",\"indices\":[84,96]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[97,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554717357368643585,\"id_str\":\"1554717357368643585\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"url\":\"https:\\/\\/t.co\\/ApThT4W86Q\",\"display_url\":\"pic.twitter.com\\/ApThT4W86Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1554717574407020547\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":352,\"resize\":\"fit\"}}}]},\"3236\":{\"hashtags\":[{\"text\":\"Live\",\"indices\":[80,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3237\":{\"hashtags\":[{\"text\":\"NFT\",\"indices\":[70,74]},{\"text\":\"Pelosi\",\"indices\":[145,152]},{\"text\":\"NFTcollections\",\"indices\":[153,168]},{\"text\":\"NFTCommmunity\",\"indices\":[169,183]},{\"text\":\"nftcollector\",\"indices\":[184,197]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[226,234]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0L9xVWRVfW\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/ethereum\\/0x495f947276749ce646f68ac8c248420045cb7b5e\\/20408177402283559812004637536922274245294874380593302696799546581725512466433\\/\",\"display_url\":\"opensea.io\\/assets\\/ethereu\\u2026\",\"indices\":[198,221]}],\"media\":[{\"id\":1554716346495148033,\"id_str\":\"1554716346495148033\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"url\":\"https:\\/\\/t.co\\/uFYpJZTqZn\",\"display_url\":\"pic.twitter.com\\/uFYpJZTqZn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Nation22\\/status\\/1554716381962293253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"3238\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"Pelosi\",\"indices\":[61,68]},{\"text\":\"China\",\"indices\":[69,75]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[76,84]},{\"text\":\"MONEY\",\"indices\":[85,91]},{\"text\":\"BBNaija\",\"indices\":[92,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554715093241397248,\"id_str\":\"1554715093241397248\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"url\":\"https:\\/\\/t.co\\/p19mVRa2AF\",\"display_url\":\"pic.twitter.com\\/p19mVRa2AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554715101596467202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":600,\"resize\":\"fit\"}}}]},\"3239\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[256,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"BBNajia\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554714723341504512,\"id_str\":\"1554714723341504512\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"url\":\"https:\\/\\/t.co\\/3NV2jjlWqk\",\"display_url\":\"pic.twitter.com\\/3NV2jjlWqk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714732828950531\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"3240\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[113,120]},{\"text\":\"China\",\"indices\":[121,127]},{\"text\":\"CloserWithDonBelle\",\"indices\":[128,147]},{\"text\":\"BBNaija\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"isrealdmw\",\"name\":\"@ISREALDMW\",\"id\":989702068821782528,\"id_str\":\"989702068821782528\",\"indices\":[93,103]}],\"urls\":[],\"media\":[{\"id\":1554714291810484224,\"id_str\":\"1554714291810484224\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"url\":\"https:\\/\\/t.co\\/HcavykGv4z\",\"display_url\":\"pic.twitter.com\\/HcavykGv4z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714297980395521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"3241\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"Pelosi\",\"indices\":[143,150]},{\"text\":\"China\",\"indices\":[151,157]},{\"text\":\"helicopter\",\"indices\":[158,169]},{\"text\":\"BBNaija\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"timayatimaya\",\"name\":\"Timaya\",\"id\":148937517,\"id_str\":\"148937517\",\"indices\":[120,133]}],\"urls\":[],\"media\":[{\"id\":1554714055516033024,\"id_str\":\"1554714055516033024\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"url\":\"https:\\/\\/t.co\\/nIr7rFMsXP\",\"display_url\":\"pic.twitter.com\\/nIr7rFMsXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714059471200258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"3242\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"Pelosi\",\"indices\":[232,239]},{\"text\":\"China\",\"indices\":[240,246]},{\"text\":\"MONEY\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554713627369816064,\"id_str\":\"1554713627369816064\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"url\":\"https:\\/\\/t.co\\/BtUY195DPp\",\"display_url\":\"pic.twitter.com\\/BtUY195DPp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554713631694233600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"3243\":{\"hashtags\":[{\"text\":\"FalzKneeDown\",\"indices\":[78,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[108,114]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[115,123]},{\"text\":\"LALISA\",\"indices\":[124,131]},{\"text\":\"CloserWithDonBelle\",\"indices\":[132,151]},{\"text\":\"MONEY\",\"indices\":[152,158]},{\"text\":\"Ukraine\",\"indices\":[159,167]},{\"text\":\"sabinus\",\"indices\":[168,176]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3244\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"pelositaiwan\",\"indices\":[205,218]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"3245\":{\"hashtags\":[{\"text\":\"Popular\",\"indices\":[47,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"China\",\"indices\":[72,78]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[79,87]},{\"text\":\"LALISA\",\"indices\":[88,95]},{\"text\":\"CloserWithDonBelle\",\"indices\":[96,115]},{\"text\":\"helicopter\",\"indices\":[116,127]},{\"text\":\"MONEY\",\"indices\":[128,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"Ukraine\",\"indices\":[154,162]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[163,188]},{\"text\":\"NancyPelosi\",\"indices\":[189,201]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[202,220]},{\"text\":\"mbstorm\",\"indices\":[221,229]},{\"text\":\"sabinus\",\"indices\":[230,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554708457663627265,\"id_str\":\"1554708457663627265\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"url\":\"https:\\/\\/t.co\\/PX6DaVUJWp\",\"display_url\":\"pic.twitter.com\\/PX6DaVUJWp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brownsonmfon5\\/status\\/1554708618041298944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"}}}]},\"3246\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[88,96]},{\"text\":\"Jaruma\",\"indices\":[97,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[113,121]},{\"text\":\"Pelosi\",\"indices\":[122,129]},{\"text\":\"LALISA\",\"indices\":[130,137]},{\"text\":\"CloserWithDonBelle\",\"indices\":[138,157]},{\"text\":\"helicopter\",\"indices\":[158,169]},{\"text\":\"MONEY\",\"indices\":[170,176]},{\"text\":\"Ukraine\",\"indices\":[177,185]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[186,204]},{\"text\":\"mbstorm\",\"indices\":[205,213]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[214,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3247\":{\"hashtags\":[{\"text\":\"NEAT\",\"indices\":[103,108]},{\"text\":\"cryptocurrency\",\"indices\":[109,124]},{\"text\":\"Pelosi\",\"indices\":[125,132]}],\"symbols\":[{\"text\":\"neat\",\"indices\":[44,49]}],\"user_mentions\":[{\"screen_name\":\"Neatioking\",\"name\":\"Neatioking\\ud83d\\udc51\\u2728\",\"id\":1431759575523397632,\"id_str\":\"1431759575523397632\",\"indices\":[0,11]},{\"screen_name\":\"neat_io\",\"name\":\"Neatio\",\"id\":1355253149897007110,\"id_str\":\"1355253149897007110\",\"indices\":[12,20]}],\"urls\":[]},\"3248\":{\"hashtags\":[{\"text\":\"MONEY\",\"indices\":[161,167]},{\"text\":\"parttimejob\",\"indices\":[168,180]},{\"text\":\"womenempowerment\",\"indices\":[181,198]},{\"text\":\"Pelosi\",\"indices\":[199,206]},{\"text\":\"LALISA\",\"indices\":[207,214]},{\"text\":\"CloserWithDonBelle\",\"indices\":[215,234]},{\"text\":\"Ukraine\",\"indices\":[235,243]},{\"text\":\"mbstorm\",\"indices\":[244,252]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TECNOMobileNG\",\"name\":\"TECNO Mobile Nigeria\",\"id\":989869530,\"id_str\":\"989869530\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TZulVTSfrW\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\\/help-us-fundraise\",\"display_url\":\"humanaid.org.ng\\/help-us-fundra\\u2026\",\"indices\":[136,159]}],\"media\":[{\"id\":1554706425024241672,\"id_str\":\"1554706425024241672\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"url\":\"https:\\/\\/t.co\\/qIoG1x8dre\",\"display_url\":\"pic.twitter.com\\/qIoG1x8dre\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1554706442460037120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"}}}]},\"3249\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"Obituary\",\"indices\":[175,184]},{\"text\":\"samomatseye\",\"indices\":[185,197]},{\"text\":\"China\",\"indices\":[198,204]},{\"text\":\"speedDatingwithSelema\",\"indices\":[215,237]},{\"text\":\"Pelosi\",\"indices\":[238,245]},{\"text\":\"Education\",\"indices\":[246,256]},{\"text\":\"UNICE\",\"indices\":[257,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialGYBKogi\",\"name\":\"Alhaji Yahaya Bello\",\"id\":1339947103511064576,\"id_str\":\"1339947103511064576\",\"indices\":[150,166]},{\"screen_name\":\"OvieNews\",\"name\":\"\\uf8ff\\u1d0fnowvo_\\u1d0f\\u1d0d\\u1d00s\\u1d0f\\u0280\\u1d0f \\u1d00\\u029f\\u026a \\u1d0f\\u1d20\\u026a\\u1d07 \\u2122\\u2624\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1355004134274031618,\"id_str\":\"1355004134274031618\",\"indices\":[205,214]}],\"urls\":[],\"media\":[{\"id\":1554706289195978754,\"id_str\":\"1554706289195978754\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}}]},\"3250\":{\"hashtags\":[{\"text\":\"Coinbase\",\"indices\":[71,80]},{\"text\":\"trustwalletpizza\",\"indices\":[81,98]},{\"text\":\"nsfwtwt\",\"indices\":[99,107]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[132,140]},{\"text\":\"LALISA\",\"indices\":[141,148]},{\"text\":\"BadmintonMalaysia\",\"indices\":[149,167]},{\"text\":\"JacksonWang\",\"indices\":[168,180]},{\"text\":\"NancyPelosi\",\"indices\":[181,193]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[194,212]},{\"text\":\"cryptomarket\",\"indices\":[213,226]},{\"text\":\"NFTs\",\"indices\":[227,232]},{\"text\":\"blockchain\",\"indices\":[233,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3251\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DeanForTruth\",\"name\":\"\\ud83e\\udd21\\ud83c\\udf0e Observer - What a dumpster fire\",\"id\":1185352123673919493,\"id_str\":\"1185352123673919493\",\"indices\":[0,13]}],\"urls\":[]},\"3252\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[18,24]},{\"text\":\"Pelosi\",\"indices\":[25,32]},{\"text\":\"Asake\",\"indices\":[33,39]},{\"text\":\"goodmorning\",\"indices\":[40,52]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554701933344178179,\"id_str\":\"1554701933344178179\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"url\":\"https:\\/\\/t.co\\/uCudsKYuHQ\",\"display_url\":\"pic.twitter.com\\/uCudsKYuHQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gabriel1tv\\/status\\/1554702333577150466\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3253\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"Pelosi\",\"indices\":[239,246]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"MONEY\",\"indices\":[254,260]},{\"text\":\"Ukraine\",\"indices\":[261,269]},{\"text\":\"wednesdaythought\",\"indices\":[270,287]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554701102259527680,\"id_str\":\"1554701102259527680\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3254\":{\"hashtags\":[{\"text\":\"WednesdayMotivation\",\"indices\":[73,93]},{\"text\":\"China\",\"indices\":[94,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"snackstime\",\"indices\":[117,128]},{\"text\":\"peanutburger\",\"indices\":[129,142]},{\"text\":\"greatpeanuts\",\"indices\":[143,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h8OpDyPKzx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\",\"display_url\":\"twitter.com\\/Greatfoodsng\\/s\\u2026\",\"indices\":[157,180]}]},\"3255\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"taiwanwars\",\"indices\":[214,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3256\":{\"hashtags\":[{\"text\":\"USA\",\"indices\":[0,4]},{\"text\":\"Terrorist\",\"indices\":[39,49]},{\"text\":\"Israel\",\"indices\":[59,66]},{\"text\":\"Russia\",\"indices\":[81,88]},{\"text\":\"UkraineWar\",\"indices\":[101,112]},{\"text\":\"China\",\"indices\":[132,138]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"Global\",\"indices\":[204,211]},{\"text\":\"superpower\",\"indices\":[212,223]},{\"text\":\"America\",\"indices\":[237,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554699843205054464,\"id_str\":\"1554699843205054464\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNnRS6XwAAJ-WK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNnRS6XwAAJ-WK.jpg\",\"url\":\"https:\\/\\/t.co\\/1kmZspJzt4\",\"display_url\":\"pic.twitter.com\\/1kmZspJzt4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealLlamaDuck\\/status\\/1554699844798775298\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"small\":{\"w\":401,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3257\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[151,176]},{\"text\":\"BBNaija\",\"indices\":[177,185]},{\"text\":\"Rufai\",\"indices\":[186,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"Nigeria\",\"indices\":[208,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554696305351483392,\"id_str\":\"1554696305351483392\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"url\":\"https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"display_url\":\"pic.twitter.com\\/Q1TM4ZvoeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1554696312964218880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3258\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DJ_TUNEZ\",\"name\":\"DJ TUNEZ\",\"id\":132759561,\"id_str\":\"132759561\",\"indices\":[0,9]},{\"screen_name\":\"wandecoal\",\"name\":\"Wande Coal\",\"id\":36617822,\"id_str\":\"36617822\",\"indices\":[10,20]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3259\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Badboytimz\",\"name\":\"Bad Boy Timz \\u26a1\\ufe0f\",\"id\":186891326,\"id_str\":\"186891326\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3260\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Halcy1023\",\"name\":\"Halcy Wizkid Bestie.eth \\ud83c\\udd7f\\ufe0f\",\"id\":1445811190622404619,\"id_str\":\"1445811190622404619\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3261\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dennisblessed42\",\"name\":\"DENNIS BLESSED\",\"id\":715675218388381696,\"id_str\":\"715675218388381696\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3262\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[171,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"zeenatmikail2\",\"name\":\"Zeenat S Mikail \\ud83c\\udf39\\ud83c\\udf39\",\"id\":1238205589123141633,\"id_str\":\"1238205589123141633\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3263\":{\"hashtags\":[{\"text\":\"chinese\",\"indices\":[28,36]},{\"text\":\"Tiawan\",\"indices\":[54,61]},{\"text\":\"dpr\",\"indices\":[135,139]},{\"text\":\"lpr\",\"indices\":[140,144]},{\"text\":\"Ukraine\",\"indices\":[148,156]},{\"text\":\"Taiwan\",\"indices\":[186,193]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Frontlinestory\",\"name\":\"Frontline\",\"id\":1197017532365803520,\"id_str\":\"1197017532365803520\",\"indices\":[0,15]}],\"urls\":[]},\"3264\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KAFTAN_TV\",\"name\":\"KAFTANTV\",\"id\":976283614269845504,\"id_str\":\"976283614269845504\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3265\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ShehuSani\",\"name\":\"Senator Shehu Sani\",\"id\":117042662,\"id_str\":\"117042662\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3266\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[172,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RealMrumaDrive\",\"name\":\"Rumani\\u00ae\",\"id\":979437771608805376,\"id_str\":\"979437771608805376\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3267\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HenshawKate\",\"name\":\"Kate Henshaw\",\"id\":135295059,\"id_str\":\"135295059\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3268\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3269\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ManUtd\",\"name\":\"Manchester United\",\"id\":558797310,\"id_str\":\"558797310\",\"indices\":[0,7]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3270\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bbchausa\",\"name\":\"BBC News Hausa\",\"id\":18168536,\"id_str\":\"18168536\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3271\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[165,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Arsenal\",\"name\":\"Arsenal\",\"id\":34613288,\"id_str\":\"34613288\",\"indices\":[0,8]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3272\":{\"hashtags\":[{\"text\":\"TrendingNow\",\"indices\":[7,19]},{\"text\":\"model\",\"indices\":[20,26]},{\"text\":\"Taiwan\",\"indices\":[27,34]},{\"text\":\"viral\",\"indices\":[35,41]},{\"text\":\"fyp\",\"indices\":[42,46]},{\"text\":\"grateful\",\"indices\":[47,56]},{\"text\":\"extraordinary\",\"indices\":[57,71]},{\"text\":\"agency\",\"indices\":[72,79]},{\"text\":\"modelingagency\",\"indices\":[81,96]},{\"text\":\"amirate\",\"indices\":[97,105]},{\"text\":\"arabemirate\",\"indices\":[106,118]},{\"text\":\"airhostess\",\"indices\":[119,130]},{\"text\":\"airlines\",\"indices\":[131,140]},{\"text\":\"obident\",\"indices\":[141,149]},{\"text\":\"love\",\"indices\":[150,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554690663807127557,\"id_str\":\"1554690663807127557\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3273\":{\"hashtags\":[{\"text\":\"OndoEkitiboy\",\"indices\":[54,67]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"Nigeria\",\"indices\":[82,90]},{\"text\":\"Wizkidfc\",\"indices\":[91,100]},{\"text\":\"African\",\"indices\":[101,109]},{\"text\":\"ibile\",\"indices\":[110,116]},{\"text\":\"Depay\",\"indices\":[117,123]},{\"text\":\"DJKhaled\",\"indices\":[124,133]},{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"China\",\"indices\":[142,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"LALISA\",\"indices\":[157,164]},{\"text\":\"WWERaw\",\"indices\":[165,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554690266120044545,\"id_str\":\"1554690266120044545\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"url\":\"https:\\/\\/t.co\\/gb3t8xLJMa\",\"display_url\":\"pic.twitter.com\\/gb3t8xLJMa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DOluwarado\\/status\\/1554690307333160963\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"3274\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dawisu\",\"name\":\"Peacock\",\"id\":266930441,\"id_str\":\"266930441\",\"indices\":[0,7]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[8,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3275\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DrOlusesan\",\"name\":\"Son of David\",\"id\":3042607684,\"id_str\":\"3042607684\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3276\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IAmENISA\",\"name\":\"ENISA\",\"id\":2355632540,\"id_str\":\"2355632540\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3277\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[171,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UmmyAbdullahi\",\"name\":\"ummie_nah\",\"id\":1226473614821789696,\"id_str\":\"1226473614821789696\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3278\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[196,207]},{\"text\":\"Taiwan\",\"indices\":[208,215]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[0,14]},{\"screen_name\":\"WestAfricaWeek\",\"name\":\"West Africa Weekly\",\"id\":1364956849804611584,\"id_str\":\"1364956849804611584\",\"indices\":[15,30]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[31,39]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3279\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"capitalcom\",\"name\":\"Capital.com Worldwide\",\"id\":800629853099696128,\"id_str\":\"800629853099696128\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3280\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vanguardngrnews\",\"name\":\"Vanguard Newspapers\",\"id\":39975533,\"id_str\":\"39975533\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZEd7\",\"display_url\":\"pic.twitter.com\\/y5GWRqZEd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3281\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UBAGroup\",\"name\":\"UBA Group\",\"id\":29944465,\"id_str\":\"29944465\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3282\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"Taipei\",\"indices\":[8,15]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554687110980182016,\"id_str\":\"1554687110980182016\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"url\":\"https:\\/\\/t.co\\/L8esduYBU5\",\"display_url\":\"pic.twitter.com\\/L8esduYBU5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DNobody101\\/status\\/1554687233462251521\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":256,\"h\":400,\"resize\":\"fit\"}}}]},\"3283\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"Pelosi\",\"indices\":[42,49]},{\"text\":\"China\",\"indices\":[50,56]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[57,65]},{\"text\":\"LALISA\",\"indices\":[66,73]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[74,97]},{\"text\":\"helicopter\",\"indices\":[98,109]},{\"text\":\"TUINUANE\",\"indices\":[110,119]},{\"text\":\"BadmintonMalaysia\",\"indices\":[120,138]},{\"text\":\"WWERaw\",\"indices\":[139,146]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[147,154]},{\"text\":\"NancyPelosi\",\"indices\":[155,167]},{\"text\":\"HelicopterCrash\",\"indices\":[168,184]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[185,210]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[211,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554682413741232129,\"id_str\":\"1554682413741232129\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"url\":\"https:\\/\\/t.co\\/nKjT1dfk9O\",\"display_url\":\"pic.twitter.com\\/nKjT1dfk9O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554682464236437505\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3284\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"FolloMe\",\"indices\":[73,81]},{\"text\":\"SoutienBooba\",\"indices\":[82,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554682389405769728,\"id_str\":\"1554682389405769728\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"url\":\"https:\\/\\/t.co\\/OwaPX1mvFZ\",\"display_url\":\"pic.twitter.com\\/OwaPX1mvFZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Balzack_17\\/status\\/1554682393843359744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":151,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":143,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":151,\"resize\":\"fit\"}}}]},\"3285\":{\"hashtags\":[{\"text\":\"Flight24\",\"indices\":[10,19]},{\"text\":\"Pelosi\",\"indices\":[20,27]},{\"text\":\"military\",\"indices\":[28,37]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554676146490556416,\"id_str\":\"1554676146490556416\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNRt9xXwAAWx1_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNRt9xXwAAWx1_.jpg\",\"url\":\"https:\\/\\/t.co\\/9waqiKJ6XC\",\"display_url\":\"pic.twitter.com\\/9waqiKJ6XC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zoeys_Mom74\\/status\\/1554676151293022209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"3286\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"China\",\"indices\":[97,103]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[104,112]},{\"text\":\"helicopter\",\"indices\":[113,124]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[125,148]},{\"text\":\"LALISA\",\"indices\":[149,156]},{\"text\":\"NancyPelosi\",\"indices\":[157,169]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[170,196]},{\"text\":\"BibleBuild\",\"indices\":[197,208]},{\"text\":\"mbstorm\",\"indices\":[209,217]},{\"text\":\"mbstorm\",\"indices\":[218,226]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[227,245]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[246,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9NItNsYwPM\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/morrishills\\/song\\/young-john-dada-cover\",\"display_url\":\"audiomack.com\\/morrishills\\/so\\u2026\",\"indices\":[48,71]}],\"media\":[{\"id\":1554672480987627523,\"id_str\":\"1554672480987627523\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"url\":\"https:\\/\\/t.co\\/PPFuzmH34P\",\"display_url\":\"pic.twitter.com\\/PPFuzmH34P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554672615503060992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3287\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[61,67]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SurinMahan\",\"name\":\"\\u82cf\\u6797 \\u9a6c\\u6c49\",\"id\":913259876318560256,\"id_str\":\"913259876318560256\",\"indices\":[0,11]},{\"screen_name\":\"duandang\",\"name\":\"Duan Dang\",\"id\":250604392,\"id_str\":\"250604392\",\"indices\":[12,21]}],\"urls\":[]},\"3288\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taipei\",\"indices\":[17,24]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"China\",\"indices\":[59,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TVZdxlyg5T\",\"expanded_url\":\"http:\\/\\/newz.ug\\/pelosi-visit-to-taipei-us-warships-cruise-near-taiwan-china-to-hold-live-fire-exercises-off-taiwan-coast\\/\",\"display_url\":\"newz.ug\\/pelosi-visit-t\\u2026\",\"indices\":[259,282]}],\"media\":[{\"id\":1554663811361243137,\"id_str\":\"1554663811361243137\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"url\":\"https:\\/\\/t.co\\/WOAC3Y4qkx\",\"display_url\":\"pic.twitter.com\\/WOAC3Y4qkx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mkaketo\\/status\\/1554663850615742467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"},\"large\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"}}}]},\"3289\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[13,19]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[51,65]}],\"urls\":[]},\"3290\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"Machala\",\"indices\":[26,34]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554642733482082313,\"id_str\":\"1554642733482082313\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"url\":\"https:\\/\\/t.co\\/OBdiJp9HTM\",\"display_url\":\"pic.twitter.com\\/OBdiJp9HTM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lit_spych0\\/status\\/1554642745213558785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":630,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"}}}]},\"3291\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[132,138]},{\"text\":\"BBNaija\",\"indices\":[153,161]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EmemEdema1\",\"name\":\"Emem Edem\",\"id\":1539828930730917888,\"id_str\":\"1539828930730917888\",\"indices\":[97,108]}],\"urls\":[],\"media\":[{\"id\":1554637063869300736,\"id_str\":\"1554637063869300736\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"url\":\"https:\\/\\/t.co\\/PKifp64k9P\",\"display_url\":\"pic.twitter.com\\/PKifp64k9P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/seemeon79\\/status\\/1554637068256559105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3292\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"tuesdayvibe\",\"indices\":[60,72]},{\"text\":\"Mnakwethu\",\"indices\":[73,83]},{\"text\":\"BBNaija\",\"indices\":[84,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554630376060076032,\"id_str\":\"1554630376060076032\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"url\":\"https:\\/\\/t.co\\/YVk6rRhGYx\",\"display_url\":\"pic.twitter.com\\/YVk6rRhGYx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ychizway\\/status\\/1554630465654505472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3293\":{\"hashtags\":[{\"text\":\"groovefreedomday\",\"indices\":[131,148]},{\"text\":\"freedomdayevent\",\"indices\":[149,165]},{\"text\":\"freedomday\",\"indices\":[166,177]},{\"text\":\"WWIII\",\"indices\":[179,185]},{\"text\":\"WorldWar3\",\"indices\":[186,196]},{\"text\":\"WWIILIVE\",\"indices\":[197,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Pelosi\",\"indices\":[215,222]},{\"text\":\"China\",\"indices\":[223,229]},{\"text\":\"WWIII\",\"indices\":[230,236]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k6pXz4KtCA\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/W0yZrE\",\"display_url\":\"fiverr.com\\/share\\/W0yZrE\",\"indices\":[107,130]}]},\"3294\":{\"hashtags\":[{\"text\":\"gafexianzone\",\"indices\":[93,106]},{\"text\":\"gafexianart\",\"indices\":[107,119]},{\"text\":\"Rihanna\",\"indices\":[120,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"helicopter\",\"indices\":[152,163]},{\"text\":\"tuesdayvibe\",\"indices\":[164,176]},{\"text\":\"explorepage\",\"indices\":[177,189]},{\"text\":\"explore\",\"indices\":[190,198]},{\"text\":\"ExploreUganda\",\"indices\":[199,213]},{\"text\":\"NationalGirlfriendDay\",\"indices\":[214,236]},{\"text\":\"artists\",\"indices\":[237,245]},{\"text\":\"ArtOfTheDay\",\"indices\":[246,258]},{\"text\":\"ArtistOnTwitter\",\"indices\":[259,275]},{\"text\":\"art\",\"indices\":[276,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rihanna\",\"name\":\"Rihanna\",\"id\":79293791,\"id_str\":\"79293791\",\"indices\":[32,40]}],\"urls\":[],\"media\":[{\"id\":1554610553548689410,\"id_str\":\"1554610553548689410\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"url\":\"https:\\/\\/t.co\\/mI2CAEvgD3\",\"display_url\":\"pic.twitter.com\\/mI2CAEvgD3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554610609047670785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1625,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":952,\"h\":1200,\"resize\":\"fit\"}}}]},\"3295\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"Pelosi\",\"indices\":[206,213]},{\"text\":\"BBNaija\",\"indices\":[214,222]},{\"text\":\"BambamSorry\",\"indices\":[238,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554608983436136448,\"id_str\":\"1554608983436136448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"url\":\"https:\\/\\/t.co\\/k8OQNbybAR\",\"display_url\":\"pic.twitter.com\\/k8OQNbybAR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554609029619523584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3296\":{\"hashtags\":[{\"text\":\"morrishills\",\"indices\":[15,27]},{\"text\":\"morrishillsentertainment\",\"indices\":[28,53]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"China\",\"indices\":[63,69]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[70,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"chatsekscerita\",\"indices\":[91,106]},{\"text\":\"IStandWithSithelo\",\"indices\":[107,125]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[126,149]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[150,176]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[177,190]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[191,198]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[199,213]},{\"text\":\"tuesdayvibe\",\"indices\":[214,226]},{\"text\":\"BORNPINK\",\"indices\":[227,236]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[237,255]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\",\"indices\":[256,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554603542266216453,\"id_str\":\"1554603542266216453\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"url\":\"https:\\/\\/t.co\\/G5tXbMi8JI\",\"display_url\":\"pic.twitter.com\\/G5tXbMi8JI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554603566140198912\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":355,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":704,\"resize\":\"fit\"}}}]},\"3297\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"China\",\"indices\":[26,32]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[33,41]},{\"text\":\"helicopter\",\"indices\":[42,53]},{\"text\":\"chatsekscerita\",\"indices\":[54,69]},{\"text\":\"IStandWithSithelo\",\"indices\":[70,88]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[89,112]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[113,139]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[140,153]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[154,161]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[162,176]},{\"text\":\"tuesdayvibe\",\"indices\":[177,189]},{\"text\":\"BORNPINK\",\"indices\":[190,199]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[200,218]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[219,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554602770505809920,\"id_str\":\"1554602770505809920\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"url\":\"https:\\/\\/t.co\\/e54sgy8pxo\",\"display_url\":\"pic.twitter.com\\/e54sgy8pxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602830664802305\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3298\":{\"hashtags\":[{\"text\":\"BORNPINK\",\"indices\":[24,33]},{\"text\":\"drugabuse\",\"indices\":[34,44]},{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"helicopter\",\"indices\":[60,71]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[72,80]},{\"text\":\"chatsekscerita\",\"indices\":[81,96]},{\"text\":\"IStandWithSithelo\",\"indices\":[97,115]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[116,139]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[140,166]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[167,180]},{\"text\":\"tuesdayvibe\",\"indices\":[181,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554601929199714304,\"id_str\":\"1554601929199714304\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"url\":\"https:\\/\\/t.co\\/qtcJ27cTDc\",\"display_url\":\"pic.twitter.com\\/qtcJ27cTDc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602151254556680\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3299\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"China\",\"indices\":[76,82]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[83,91]},{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"chatsekscerita\",\"indices\":[104,119]},{\"text\":\"IStandWithSithelo\",\"indices\":[120,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554600621277331456,\"id_str\":\"1554600621277331456\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"url\":\"https:\\/\\/t.co\\/2QbWRdDCYQ\",\"display_url\":\"pic.twitter.com\\/2QbWRdDCYQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554600627451449345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1412,\"resize\":\"fit\"}}}]},\"3300\":{\"hashtags\":[{\"text\":\"Warner\",\"indices\":[102,109]},{\"text\":\"Piastri\",\"indices\":[110,118]},{\"text\":\"Corbyn\",\"indices\":[119,126]},{\"text\":\"Monaco\",\"indices\":[127,134]},{\"text\":\"TheBachelorette\",\"indices\":[135,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"support\",\"indices\":[160,168]},{\"text\":\"Webradio\",\"indices\":[169,178]},{\"text\":\"Cannes\",\"indices\":[179,186]},{\"text\":\"France\",\"indices\":[187,194]},{\"text\":\"Listen\",\"indices\":[195,202]},{\"text\":\"Listennow\",\"indices\":[203,213]},{\"text\":\"Followus\",\"indices\":[214,223]},{\"text\":\"Donate\",\"indices\":[224,231]},{\"text\":\"TrumpTreason\",\"indices\":[232,245]},{\"text\":\"\\u0130stanbul\",\"indices\":[246,255]},{\"text\":\"fanart\",\"indices\":[256,263]},{\"text\":\"Biden\",\"indices\":[264,270]},{\"text\":\"west\",\"indices\":[271,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554599720932327425,\"id_str\":\"1554599720932327425\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"url\":\"https:\\/\\/t.co\\/cz3d3iBHCW\",\"display_url\":\"pic.twitter.com\\/cz3d3iBHCW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554599767337992197\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"}}}]},\"3301\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"Pelosi\",\"indices\":[211,218]},{\"text\":\"BBNaija\",\"indices\":[219,227]},{\"text\":\"BambamSorry\",\"indices\":[243,255]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554599422385864704,\"id_str\":\"1554599422385864704\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6uBqjHALV\",\"display_url\":\"pic.twitter.com\\/Y6uBqjHALV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554599480476975104\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3302\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[78,85]},{\"text\":\"China\",\"indices\":[86,92]},{\"text\":\"Pelosi\",\"indices\":[93,100]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[101,109]},{\"text\":\"Wizkid\",\"indices\":[110,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0nAHvzGYAu\",\"expanded_url\":\"https:\\/\\/youtu.be\\/B4fN6As5I74\",\"display_url\":\"youtu.be\\/B4fN6As5I74\",\"indices\":[53,76]}]},\"3303\":{\"hashtags\":[{\"text\":\"Alpine\",\"indices\":[102,109]},{\"text\":\"Donation\",\"indices\":[110,119]},{\"text\":\"helicopter\",\"indices\":[120,131]},{\"text\":\"helpinghand\",\"indices\":[132,144]},{\"text\":\"Help\",\"indices\":[145,150]},{\"text\":\"TailorMade\",\"indices\":[151,162]},{\"text\":\"Tommy\",\"indices\":[163,169]},{\"text\":\"Cina\",\"indices\":[170,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"Pelosi\",\"indices\":[184,191]},{\"text\":\"boss\",\"indices\":[192,197]},{\"text\":\"McLaren\",\"indices\":[198,206]},{\"text\":\"Alonso\",\"indices\":[207,214]},{\"text\":\"Verdi\",\"indices\":[215,221]},{\"text\":\"ayr\\u0131lmazikili\",\"indices\":[222,236]},{\"text\":\"BetterCallSaul\",\"indices\":[237,252]},{\"text\":\"China\",\"indices\":[253,259]},{\"text\":\"crowdfunding\",\"indices\":[260,273]},{\"text\":\"OOTT\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554597524304023552,\"id_str\":\"1554597524304023552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"url\":\"https:\\/\\/t.co\\/FhfDGunyTi\",\"display_url\":\"pic.twitter.com\\/FhfDGunyTi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554597548131745793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"3304\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"Pelosi\",\"indices\":[206,213]},{\"text\":\"BBNaija\",\"indices\":[214,222]},{\"text\":\"BambamSorry\",\"indices\":[238,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554597007825698816,\"id_str\":\"1554597007825698816\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"url\":\"https:\\/\\/t.co\\/uDd8WrJ4ea\",\"display_url\":\"pic.twitter.com\\/uDd8WrJ4ea\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554597054571225088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3305\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[220,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"China\",\"indices\":[236,242]},{\"text\":\"BBNajiaS7\",\"indices\":[252,262]},{\"text\":\"Obidatti023\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554596190947246080,\"id_str\":\"1554596190947246080\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"url\":\"https:\\/\\/t.co\\/RtVmnAvt1C\",\"display_url\":\"pic.twitter.com\\/RtVmnAvt1C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kapital929\\/status\\/1554597018705747968\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"3306\":{\"hashtags\":[{\"text\":\"Cubana\",\"indices\":[230,237]},{\"text\":\"Beijing\",\"indices\":[240,248]},{\"text\":\"WWIII\",\"indices\":[251,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554594537326125056,\"id_str\":\"1554594537326125056\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"url\":\"https:\\/\\/t.co\\/PBdTHFPCJc\",\"display_url\":\"pic.twitter.com\\/PBdTHFPCJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/teacherchike1\\/status\\/1554594793111654402\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3307\":{\"hashtags\":[{\"text\":\"PapaBenji\",\"indices\":[78,88]},{\"text\":\"PapaBenji\",\"indices\":[192,202]},{\"text\":\"WWIII\",\"indices\":[204,210]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"basket_mouth\",\"name\":\"Basket Mouth\",\"id\":101825544,\"id_str\":\"101825544\",\"indices\":[64,77]}],\"urls\":[]},\"3308\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[40,47]},{\"text\":\"China\",\"indices\":[48,54]},{\"text\":\"helicopter\",\"indices\":[55,66]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[67,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DjXznjVYU3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Babyboyav__\\/status\\/1554440191741411328\",\"display_url\":\"twitter.com\\/Babyboyav__\\/st\\u2026\",\"indices\":[76,99]}]},\"3309\":{\"hashtags\":[{\"text\":\"WorldWarIII\",\"indices\":[247,259]},{\"text\":\"ChinaTaiwan\",\"indices\":[260,272]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[273,291]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3310\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"Pelosi\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Quicktake\",\"name\":\"Bloomberg Quicktake\",\"id\":252751061,\"id_str\":\"252751061\",\"indices\":[0,10]}],\"urls\":[]},\"3311\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[61,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554587975564103680,\"id_str\":\"1554587975564103680\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"url\":\"https:\\/\\/t.co\\/4o2OIyw7oL\",\"display_url\":\"pic.twitter.com\\/4o2OIyw7oL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aboki_30BG\\/status\\/1554587978223288320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":582,\"h\":500,\"resize\":\"fit\"}}}]},\"3312\":{\"hashtags\":[{\"text\":\"money\",\"indices\":[56,62]},{\"text\":\"businessideas\",\"indices\":[63,77]},{\"text\":\"moneymaking\",\"indices\":[78,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"Pelosi\",\"indices\":[99,106]},{\"text\":\"makeoneyonline\",\"indices\":[107,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NdQQwu4ypZ\",\"expanded_url\":\"https:\\/\\/www.gidisblog.com\\/2022\\/08\\/how-to-make-money-without-job.html\",\"display_url\":\"gidisblog.com\\/2022\\/08\\/how-to\\u2026\",\"indices\":[32,55]}]},\"3313\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[215,222]},{\"text\":\"bangalorerains\",\"indices\":[223,238]},{\"text\":\"China\",\"indices\":[239,245]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EkeneUzochukwu1\",\"name\":\"EkeneKennel\",\"id\":1388393546399592449,\"id_str\":\"1388393546399592449\",\"indices\":[137,153]},{\"screen_name\":\"AkunneChinyere4\",\"name\":\"UGOEZE\\ud83d\\udc51\\ud83c\\udde7\\ud83c\\uddeb\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1360296697952428036,\"id_str\":\"1360296697952428036\",\"indices\":[154,170]},{\"screen_name\":\"AmakaVirginia1\",\"name\":\"Amaka Virginia\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\",\"id\":1261588481920446464,\"id_str\":\"1261588481920446464\",\"indices\":[171,186]},{\"screen_name\":\"PalmykennelJos\",\"name\":\"Palmy Kennel Jos\",\"id\":1516740406968528900,\"id_str\":\"1516740406968528900\",\"indices\":[187,202]},{\"screen_name\":\"richmoh600\",\"name\":\"MOMOH RICHARD RICHYKENNEL JOS ,DOG lOVER\",\"id\":3126174473,\"id_str\":\"3126174473\",\"indices\":[203,214]}],\"urls\":[],\"media\":[{\"id\":1554586208952532994,\"id_str\":\"1554586208952532994\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"url\":\"https:\\/\\/t.co\\/d3aa5a3f0V\",\"display_url\":\"pic.twitter.com\\/d3aa5a3f0V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/alabedejoseph1\\/status\\/1554586355518300166\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3314\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"BBNaijaS7\",\"indices\":[48,58]},{\"text\":\"BBNajia\",\"indices\":[59,67]},{\"text\":\"World\",\"indices\":[68,74]},{\"text\":\"doggy\",\"indices\":[83,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3315\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[77,83]},{\"text\":\"Pelosi\",\"indices\":[84,91]},{\"text\":\"ASUUstrike\",\"indices\":[92,103]},{\"text\":\"USA\",\"indices\":[104,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PtryLuVyTO\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3zkumUs\",\"display_url\":\"bit.ly\\/3zkumUs\",\"indices\":[120,143]}]},\"3316\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3317\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CGMeifangZhang\",\"name\":\"Zhang Meifang\\u5f20\\u7f8e\\u82b3\",\"id\":1222894323152195586,\"id_str\":\"1222894323152195586\",\"indices\":[0,15]}],\"urls\":[]},\"3318\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[78,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"HappyNewMonth\",\"indices\":[93,107]},{\"text\":\"ASSU\",\"indices\":[108,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3319\":{\"hashtags\":[{\"text\":\"brend\",\"indices\":[104,110]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Pelosi\",\"indices\":[119,126]},{\"text\":\"helicopter\",\"indices\":[127,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554579304125763584,\"id_str\":\"1554579304125763584\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"url\":\"https:\\/\\/t.co\\/YMztRiBL5u\",\"display_url\":\"pic.twitter.com\\/YMztRiBL5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamogswagg\\/status\\/1554579339567661056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3320\":{\"hashtags\":[{\"text\":\"WorldAthleticsChamps\",\"indices\":[66,87]},{\"text\":\"WorldWarIII\",\"indices\":[88,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"PeterObi\",\"indices\":[108,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Cristiano\",\"name\":\"Cristiano Ronaldo\",\"id\":155659213,\"id_str\":\"155659213\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554577725578428416,\"id_str\":\"1554577725578428416\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"url\":\"https:\\/\\/t.co\\/WKf1KfCP3I\",\"display_url\":\"pic.twitter.com\\/WKf1KfCP3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danley_codes\\/status\\/1554577906474655744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3321\":{\"hashtags\":[{\"text\":\"sheggzandbella\",\"indices\":[29,44]},{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"WWIII\",\"indices\":[52,58]},{\"text\":\"Wizkid\",\"indices\":[59,66]},{\"text\":\"shes40\",\"indices\":[67,74]},{\"text\":\"Machala\",\"indices\":[75,83]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554576149258321921,\"id_str\":\"1554576149258321921\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"url\":\"https:\\/\\/t.co\\/g8U8HCWEfs\",\"display_url\":\"pic.twitter.com\\/g8U8HCWEfs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sub_sidy1\\/status\\/1554577036416618496\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3322\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[176,183]},{\"text\":\"uspoli\",\"indices\":[184,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GfhcyqA7xv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SpeakerPelosi\\/status\\/1554486953990668288\",\"display_url\":\"twitter.com\\/SpeakerPelosi\\/\\u2026\",\"indices\":[200,223]}]},\"3323\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[26,33]},{\"text\":\"Taiwan\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554573316358254592,\"id_str\":\"1554573316358254592\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573316358254592\\/pu\\/img\\/Ym2lGVq8WGEFe_eA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573316358254592\\/pu\\/img\\/Ym2lGVq8WGEFe_eA.jpg\",\"url\":\"https:\\/\\/t.co\\/8HHW4wyIgC\",\"display_url\":\"pic.twitter.com\\/8HHW4wyIgC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bilbo52835554\\/status\\/1554573835566923776\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":464,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":464,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":464,\"resize\":\"fit\"}}}]},\"3324\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[78,87]},{\"text\":\"PeterObi2023\",\"indices\":[88,101]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[102,127]},{\"text\":\"Reno\",\"indices\":[129,134]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"Tinubu2023\",\"indices\":[144,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554573601575165952,\"id_str\":\"1554573601575165952\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"url\":\"https:\\/\\/t.co\\/mcz8JzpAuh\",\"display_url\":\"pic.twitter.com\\/mcz8JzpAuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PBplusOilAndGas\\/status\\/1554573632428449801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3325\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3326\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[172,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lawrencekitema\",\"name\":\"Lawrence Kitema\",\"id\":584004949,\"id_str\":\"584004949\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3327\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[251,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"delick_manzi\",\"name\":\"KINGSMAN \\u2122\",\"id\":1470452794066972674,\"id_str\":\"1470452794066972674\",\"indices\":[0,13]},{\"screen_name\":\"sammiemanini1\",\"name\":\"Sammie Manini\",\"id\":1477239688389926912,\"id_str\":\"1477239688389926912\",\"indices\":[14,28]},{\"screen_name\":\"bamwinejnr\",\"name\":\"Phil.\\ud83d\\udc51\\ud83e\\udd85\\ud83d\\udc10\",\"id\":1291370812302413825,\"id_str\":\"1291370812302413825\",\"indices\":[29,40]},{\"screen_name\":\"MrrChapter\",\"name\":\"Mr_Chapter\\ud83d\\udc51\\u26f9\\ufe0f\\u200d\\u2642\\ufe0f\\ud83d\\ude09\",\"id\":1359381835806048257,\"id_str\":\"1359381835806048257\",\"indices\":[41,52]},{\"screen_name\":\"LilyNampa\",\"name\":\"Lily Love\\ud83d\\udc96\\ud83e\\udd8b\",\"id\":1164792252339642375,\"id_str\":\"1164792252339642375\",\"indices\":[53,63]},{\"screen_name\":\"CanaanArinda\",\"name\":\"Noise Maker\\u2122\\ud83d\\udc68\\ud83c\\udffe\\u200d\\ud83e\\uddaf\",\"id\":1102240397491912710,\"id_str\":\"1102240397491912710\",\"indices\":[64,77]},{\"screen_name\":\"ArthurMuhwezi12\",\"name\":\"Arthur \\u2660\",\"id\":1260532390088376322,\"id_str\":\"1260532390088376322\",\"indices\":[78,94]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3328\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3329\":{\"hashtags\":[{\"text\":\"Davido\",\"indices\":[204,211]},{\"text\":\"EndSARS\",\"indices\":[213,221]},{\"text\":\"StopSellingPi\",\"indices\":[223,237]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"Pelosi\",\"indices\":[248,255]},{\"text\":\"China\",\"indices\":[257,263]},{\"text\":\"helicopter\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554571272939503617,\"id_str\":\"1554571272939503617\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"url\":\"https:\\/\\/t.co\\/StLsLPAdY2\",\"display_url\":\"pic.twitter.com\\/StLsLPAdY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554571349196242944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":528,\"h\":480,\"resize\":\"fit\"}}}]},\"3330\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[148,155]},{\"text\":\"Obidiots\",\"indices\":[156,165]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"oyostategovt\",\"name\":\"Oyo State Government\",\"id\":586572792,\"id_str\":\"586572792\",\"indices\":[166,179]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RjAIU2Hqlb\",\"expanded_url\":\"https:\\/\\/truetellsnigeria.com\\/2022\\/08\\/02\\/blueface-physically-fights-girlfriend-chrisean-rock-in-public-video\\/\",\"display_url\":\"truetellsnigeria.com\\/2022\\/08\\/02\\/blu\\u2026\",\"indices\":[100,123]}]},\"3331\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gyaigyyimii\",\"name\":\"KALYJAY \\uea00\",\"id\":1382488424,\"id_str\":\"1382488424\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3332\":{\"hashtags\":[{\"text\":\"SouthAfrica\",\"indices\":[226,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"Pelosi\",\"indices\":[247,254]},{\"text\":\"China\",\"indices\":[255,261]},{\"text\":\"GistLoverStory\",\"indices\":[262,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554567052840603650,\"id_str\":\"1554567052840603650\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"url\":\"https:\\/\\/t.co\\/LG5PfsgYol\",\"display_url\":\"pic.twitter.com\\/LG5PfsgYol\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554567123468443649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":480,\"resize\":\"fit\"}}}]},\"3333\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"NancyPelosi\",\"indices\":[189,201]},{\"text\":\"China\",\"indices\":[202,208]},{\"text\":\"helicopter\",\"indices\":[209,220]},{\"text\":\"taiwanischina\",\"indices\":[221,235]},{\"text\":\"Taipei\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554566176721850370,\"id_str\":\"1554566176721850370\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3334\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[38,45]},{\"text\":\"Freestyle\",\"indices\":[46,56]},{\"text\":\"RAP\",\"indices\":[57,61]},{\"text\":\"newtrend\",\"indices\":[62,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565458031960065,\"id_str\":\"1554565458031960065\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"url\":\"https:\\/\\/t.co\\/I0oRy79J6S\",\"display_url\":\"pic.twitter.com\\/I0oRy79J6S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554565609727397888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3335\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[233,240]},{\"text\":\"China\",\"indices\":[241,247]},{\"text\":\"taiwanischina\",\"indices\":[248,262]},{\"text\":\"NancyPelosi\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565442655686662,\"id_str\":\"1554565442655686662\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"url\":\"https:\\/\\/t.co\\/DMOVY73bxJ\",\"display_url\":\"pic.twitter.com\\/DMOVY73bxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565491808784386\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3336\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"taiwanischina\",\"indices\":[103,117]},{\"text\":\"TaiwanIsaCountry\",\"indices\":[118,135]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"NancyPelosi\",\"indices\":[144,156]},{\"text\":\"helicopter\",\"indices\":[157,168]},{\"text\":\"Trending\",\"indices\":[169,178]},{\"text\":\"TrendingNow\",\"indices\":[179,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554564980330094592,\"id_str\":\"1554564980330094592\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"url\":\"https:\\/\\/t.co\\/3keenBlNEu\",\"display_url\":\"pic.twitter.com\\/3keenBlNEu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565016489279498\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3337\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"China\",\"indices\":[29,35]},{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[49,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554564792278450177,\"id_str\":\"1554564792278450177\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"url\":\"https:\\/\\/t.co\\/09SipiAiwx\",\"display_url\":\"pic.twitter.com\\/09SipiAiwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554564794887421954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":492,\"h\":973,\"resize\":\"fit\"},\"small\":{\"w\":344,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":492,\"h\":973,\"resize\":\"fit\"}}}]},\"3338\":{\"hashtags\":[{\"text\":\"OBIdient2023\",\"indices\":[128,141]},{\"text\":\"wizkid\",\"indices\":[158,165]},{\"text\":\"OBIDIENTS\",\"indices\":[226,236]},{\"text\":\"helicopter\",\"indices\":[257,268]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[28,37]}],\"urls\":[],\"media\":[{\"id\":1554564294246899713,\"id_str\":\"1554564294246899713\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3339\":{\"hashtags\":[{\"text\":\"Iran\",\"indices\":[159,164]},{\"text\":\"Baghdad\",\"indices\":[165,173]},{\"text\":\"Gistlover\",\"indices\":[174,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"NancyPelosi\",\"indices\":[200,212]},{\"text\":\"Trending\",\"indices\":[213,222]},{\"text\":\"TrendingNow\",\"indices\":[223,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563909604065282,\"id_str\":\"1554563909604065282\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"url\":\"https:\\/\\/t.co\\/4GXSetMpTG\",\"display_url\":\"pic.twitter.com\\/4GXSetMpTG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554564046287953921\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3340\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"BBNajiaS7\",\"indices\":[92,102]},{\"text\":\"BBNaijaSeason7\",\"indices\":[103,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563339052892162,\"id_str\":\"1554563339052892162\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"url\":\"https:\\/\\/t.co\\/JY1Tr0L5rC\",\"display_url\":\"pic.twitter.com\\/JY1Tr0L5rC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ade_omo_Giwa\\/status\\/1554563551221760001\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"3341\":{\"hashtags\":[{\"text\":\"airdropalert\",\"indices\":[119,132]},{\"text\":\"BSCGems\",\"indices\":[133,141]},{\"text\":\"Crypto\",\"indices\":[142,149]},{\"text\":\"Giveaway\",\"indices\":[150,159]},{\"text\":\"NFTGiveaway\",\"indices\":[160,172]},{\"text\":\"NFTAirdrop\",\"indices\":[173,184]},{\"text\":\"NFTCommumity\",\"indices\":[185,198]},{\"text\":\"NFTfamily\",\"indices\":[199,209]},{\"text\":\"NFTProject\",\"indices\":[210,221]},{\"text\":\"Metaverse\",\"indices\":[223,233]},{\"text\":\"GameFi\",\"indices\":[234,241]},{\"text\":\"P2E\",\"indices\":[242,246]},{\"text\":\"BSC\",\"indices\":[248,252]},{\"text\":\"Pelosi\",\"indices\":[253,260]},{\"text\":\"Web3\",\"indices\":[261,266]},{\"text\":\"Crypto\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[0,16]},{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[102,118]}],\"urls\":[],\"media\":[{\"id\":1554563235650707460,\"id_str\":\"1554563235650707460\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"url\":\"https:\\/\\/t.co\\/9viU1HDss1\",\"display_url\":\"pic.twitter.com\\/9viU1HDss1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1554563249894555648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3342\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3343\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"NancyPelosi\",\"indices\":[61,73]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nentawe1\",\"name\":\"Nentawe G. Yilwatda\",\"id\":825488924,\"id_str\":\"825488924\",\"indices\":[75,84]}],\"urls\":[],\"media\":[{\"id\":1554560154431111170,\"id_str\":\"1554560154431111170\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"url\":\"https:\\/\\/t.co\\/szWcNq2iac\",\"display_url\":\"pic.twitter.com\\/szWcNq2iac\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Longdenjr1\\/status\\/1554560172017811465\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"3344\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3345\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[18,24]},{\"text\":\"Pelosi\",\"indices\":[25,32]},{\"text\":\"helicopter\",\"indices\":[33,44]},{\"text\":\"BBNaija\",\"indices\":[45,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554558659690102785,\"id_str\":\"1554558659690102785\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"url\":\"https:\\/\\/t.co\\/vrjqi5d14o\",\"display_url\":\"pic.twitter.com\\/vrjqi5d14o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554559036997226499\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"3346\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CGMeifangZhang\",\"name\":\"Zhang Meifang\\u5f20\\u7f8e\\u82b3\",\"id\":1222894323152195586,\"id_str\":\"1222894323152195586\",\"indices\":[0,15]}],\"urls\":[]},\"3347\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"China\",\"indices\":[29,35]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[36,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3348\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[161,168]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RT_com\",\"name\":\"RT\",\"id\":64643056,\"id_str\":\"64643056\",\"indices\":[0,7]}],\"urls\":[]},\"3349\":{\"hashtags\":[{\"text\":\"Summer\",\"indices\":[14,21]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[23,30]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[32,57]},{\"text\":\"CharlotteXRica\",\"indices\":[58,73]},{\"text\":\"\\u0e1e\\u0e34\\u0e28\\u0e27\\u0e32\\u0e2a\\u0e06\\u0e32\\u0e15\\u0e40\\u0e01\\u0e21\\u0e2a\\u0e4cep10\",\"indices\":[74,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[102,125]},{\"text\":\"Pelosi\",\"indices\":[126,133]},{\"text\":\"\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08\",\"indices\":[135,150]},{\"text\":\"\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08\",\"indices\":[151,166]},{\"text\":\"oesym\",\"indices\":[167,173]},{\"text\":\"China\",\"indices\":[174,180]},{\"text\":\"JacksonWang\",\"indices\":[181,193]},{\"text\":\"explorepage\",\"indices\":[194,206]},{\"text\":\"explore\",\"indices\":[207,215]},{\"text\":\"indiemusic\",\"indices\":[216,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554555511479144457,\"id_str\":\"1554555511479144457\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"url\":\"https:\\/\\/t.co\\/2liLRM6tlC\",\"display_url\":\"pic.twitter.com\\/2liLRM6tlC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554555643092140034\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3350\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[78,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554555488305614848,\"id_str\":\"1554555488305614848\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"url\":\"https:\\/\\/t.co\\/AhTJ0ySCrx\",\"display_url\":\"pic.twitter.com\\/AhTJ0ySCrx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChoWurld\\/status\\/1554555495012343808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":628,\"resize\":\"fit\"}}}]},\"3351\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"psychologyfact\",\"indices\":[110,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554554894576754691,\"id_str\":\"1554554894576754691\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"url\":\"https:\\/\\/t.co\\/Raxmh0ZXgW\",\"display_url\":\"pic.twitter.com\\/Raxmh0ZXgW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nobleman_0\\/status\\/1554554904034811906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"medium\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"small\":{\"w\":200,\"h\":176,\"resize\":\"fit\"}}}]},\"3352\":{\"hashtags\":[{\"text\":\"heartbreakonaweekend\",\"indices\":[47,68]},{\"text\":\"yungskizzy\",\"indices\":[77,88]},{\"text\":\"promphizy\",\"indices\":[89,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[108,114]},{\"text\":\"YEEZYDAY\",\"indices\":[115,124]},{\"text\":\"helicopter\",\"indices\":[125,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554554838129721344,\"id_str\":\"1554554838129721344\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3353\":{\"hashtags\":[{\"text\":\"digitalsafety\",\"indices\":[76,90]},{\"text\":\"internetsafety\",\"indices\":[91,106]},{\"text\":\"technology\",\"indices\":[107,118]},{\"text\":\"edunovativeconceptng\",\"indices\":[119,140]},{\"text\":\"smartclicksng\",\"indices\":[141,155]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[164,171]},{\"text\":\"China\",\"indices\":[172,178]},{\"text\":\"JacksonWang\",\"indices\":[179,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552833843896320,\"id_str\":\"1554552833843896320\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xu2ljAYTk\",\"display_url\":\"pic.twitter.com\\/8Xu2ljAYTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennygirl4succes\\/status\\/1554552848750346241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3354\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"helicopter\",\"indices\":[41,52]},{\"text\":\"JacksonWang\",\"indices\":[53,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552357991731201,\"id_str\":\"1554552357991731201\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"url\":\"https:\\/\\/t.co\\/aQw7WbalFJ\",\"display_url\":\"pic.twitter.com\\/aQw7WbalFJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554552365029724160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3355\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/LCSaSYlEaZ\",\"display_url\":\"pic.twitter.com\\/LCSaSYlEaZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3356\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"Pelosi\",\"indices\":[234,241]},{\"text\":\"China\",\"indices\":[242,248]},{\"text\":\"WorldWar3\",\"indices\":[249,259]},{\"text\":\"Africa\",\"indices\":[260,267]},{\"text\":\"Italy\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGOELITESTAR\",\"name\":\"Elite Star Foundation\",\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"indices\":[187,200]}],\"urls\":[]},\"3357\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554551317397442565,\"id_str\":\"1554551317397442565\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"url\":\"https:\\/\\/t.co\\/lp2xxqa7u3\",\"display_url\":\"pic.twitter.com\\/lp2xxqa7u3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554551325458849794\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3358\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[247,254]},{\"text\":\"bbnaija\",\"indices\":[255,263]},{\"text\":\"ASUU\",\"indices\":[264,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pHFT0TbZNT\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/Ecgprh2KECg2TiA19S7D0d\",\"display_url\":\"chat.whatsapp.com\\/Ecgprh2KECg2Ti\\u2026\",\"indices\":[222,245]}]},\"3359\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[86,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[102,125]}]},\"3360\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"3361\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"Lekki\",\"indices\":[91,97]},{\"text\":\"Pelosi\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3362\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[215,222]},{\"text\":\"Biden\",\"indices\":[223,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KarenBassLA\",\"name\":\"Karen Bass\",\"id\":113494390,\"id_str\":\"113494390\",\"indices\":[0,12]},{\"screen_name\":\"KamalaHarris\",\"name\":\"Kamala Harris\",\"id\":30354991,\"id_str\":\"30354991\",\"indices\":[13,26]}],\"urls\":[]},\"3363\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"Pelosi\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/900QcCpy8i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\",\"display_url\":\"twitter.com\\/NgLabour\\/statu\\u2026\",\"indices\":[88,111]}]},\"3364\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[165,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554544531168788492,\"id_str\":\"1554544531168788492\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}}]},\"3365\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"China\",\"indices\":[69,75]},{\"text\":\"JacksonWang\",\"indices\":[76,88]},{\"text\":\"helicopter\",\"indices\":[89,100]},{\"text\":\"YEEZYDAY\",\"indices\":[101,110]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[111,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[130,153]}]},\"3366\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[135,141]},{\"text\":\"WorldWar3\",\"indices\":[142,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"Pelosi\",\"indices\":[161,168]},{\"text\":\"China\",\"indices\":[169,175]},{\"text\":\"WW3\",\"indices\":[176,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554542635007836165,\"id_str\":\"1554542635007836165\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"url\":\"https:\\/\\/t.co\\/crUGc0k2UF\",\"display_url\":\"pic.twitter.com\\/crUGc0k2UF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibrahim_IbbJnr8\\/status\\/1554542637566332931\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":563,\"resize\":\"fit\"}}}]},\"3367\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[57,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6DEiwtv3NU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\",\"display_url\":\"twitter.com\\/OdNa_TaKa9l\\/st\\u2026\",\"indices\":[64,87]}]},\"3368\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"helicopter\",\"indices\":[200,211]},{\"text\":\"Datti\",\"indices\":[224,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/y1caKEYuCw\",\"expanded_url\":\"https:\\/\\/ginnyent.org\\/others\\/trending-video-of-police-officer-beating-man-with-a-machete-in-cross-river\\/\",\"display_url\":\"ginnyent.org\\/others\\/trendin\\u2026\",\"indices\":[162,185]}]},\"3369\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"helicopter\",\"indices\":[206,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NcqTO5kOSy\",\"expanded_url\":\"https:\\/\\/ginnyent.org\\/news\\/youths-in-aba-stage-protests-demanding-an-end-to-ebubeagu-militia-in-igboland-photos-video\\/\",\"display_url\":\"ginnyent.org\\/news\\/youths-in\\u2026\",\"indices\":[168,191]}]},\"3370\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"helicopter\",\"indices\":[69,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540500048384008,\"id_str\":\"1554540500048384008\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"url\":\"https:\\/\\/t.co\\/bdasAJa1dE\",\"display_url\":\"pic.twitter.com\\/bdasAJa1dE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/faithluseno\\/status\\/1554540517962178561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1262,\"resize\":\"fit\"}}}]},\"3371\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[28,35]},{\"text\":\"helicopter\",\"indices\":[36,47]},{\"text\":\"chatsekscerita\",\"indices\":[48,63]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[64,86]},{\"text\":\"tuesdayvibe\",\"indices\":[87,99]},{\"text\":\"YEEZYDAY\",\"indices\":[100,109]},{\"text\":\"NCT127\",\"indices\":[110,117]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[118,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540278492663810,\"id_str\":\"1554540278492663810\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"url\":\"https:\\/\\/t.co\\/CIOjlFCbwK\",\"display_url\":\"pic.twitter.com\\/CIOjlFCbwK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554540287493562369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3372\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Ukraine\\ufe0f\",\"indices\":[96,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IWCxu2HLYp\",\"expanded_url\":\"https:\\/\\/www.washingtonpost.com\\/opinions\\/2022\\/08\\/02\\/nancy-pelosi-taiwan-visit-op-ed\\/\",\"display_url\":\"washingtonpost.com\\/opinions\\/2022\\/\\u2026\",\"indices\":[106,129]}]},\"3373\":{\"hashtags\":[{\"text\":\"aneketwins\",\"indices\":[223,234]},{\"text\":\"tuesdayvibe\",\"indices\":[235,247]},{\"text\":\"atwinsdesign\",\"indices\":[248,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atwinsdesigns\",\"name\":\"Atwinsdesigns\",\"id\":1147118077391360000,\"id_str\":\"1147118077391360000\",\"indices\":[208,222]}],\"urls\":[],\"media\":[{\"id\":1554538999016050692,\"id_str\":\"1554538999016050692\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"url\":\"https:\\/\\/t.co\\/ehyeapFYxO\",\"display_url\":\"pic.twitter.com\\/ehyeapFYxO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554539007748579328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":525,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":926,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":988,\"h\":1280,\"resize\":\"fit\"}}}]},\"3374\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[92,117]},{\"text\":\"BBNaija7\",\"indices\":[118,127]},{\"text\":\"YEEZYDAY\",\"indices\":[128,137]},{\"text\":\"ambode\",\"indices\":[138,145]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mickkycutz\",\"name\":\"adebanjo micheal\",\"id\":817531158,\"id_str\":\"817531158\",\"indices\":[18,29]}],\"urls\":[],\"media\":[{\"id\":1554538865230336001,\"id_str\":\"1554538865230336001\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"3375\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[77,83]},{\"text\":\"SaheedBalogun\",\"indices\":[84,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MTNNG\",\"name\":\"MTN Nigeria\",\"id\":69266428,\"id_str\":\"69266428\",\"indices\":[0,6]}],\"urls\":[],\"media\":[{\"id\":1554537620385972224,\"id_str\":\"1554537620385972224\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"url\":\"https:\\/\\/t.co\\/gmg5Y1glGZ\",\"display_url\":\"pic.twitter.com\\/gmg5Y1glGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Anya_Nyako2505\\/status\\/1554537633778483209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":532,\"resize\":\"fit\"}}}]},\"3376\":{\"hashtags\":[{\"text\":\"NancyPelosy\",\"indices\":[43,55]},{\"text\":\"Africa\",\"indices\":[102,109]},{\"text\":\"China\",\"indices\":[111,117]},{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"United\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3377\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[60,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"tuesdayvibe\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554534881459306496,\"id_str\":\"1554534881459306496\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"url\":\"https:\\/\\/t.co\\/xwkwF6pzK4\",\"display_url\":\"pic.twitter.com\\/xwkwF6pzK4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/malltallerny\\/status\\/1554535404321251331\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"3378\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[278,285]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3379\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[35,41]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3380\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[{\"text\":\"EBAY\",\"indices\":[24,29]},{\"text\":\"MP\",\"indices\":[30,33]},{\"text\":\"PLTR\",\"indices\":[34,39]},{\"text\":\"RBLX\",\"indices\":[40,45]},{\"text\":\"ORGN\",\"indices\":[46,51]},{\"text\":\"PYPL\",\"indices\":[52,57]},{\"text\":\"CLX\",\"indices\":[58,62]}],\"user_mentions\":[],\"urls\":[]},\"3381\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[31,37]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3382\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[128,139]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[159,177]},{\"text\":\"Tinubu\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532757677776898,\"id_str\":\"1554532757677776898\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"url\":\"https:\\/\\/t.co\\/hR4kZxxeQH\",\"display_url\":\"pic.twitter.com\\/hR4kZxxeQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532762673111045\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":610,\"h\":480,\"resize\":\"fit\"}}}]},\"3383\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[123,141]},{\"text\":\"Tinubu\",\"indices\":[190,197]},{\"text\":\"Lekki\",\"indices\":[230,236]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[238,246]},{\"text\":\"chatsekscerita\",\"indices\":[248,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532260363247616,\"id_str\":\"1554532260363247616\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"url\":\"https:\\/\\/t.co\\/rOWH1F4sUj\",\"display_url\":\"pic.twitter.com\\/rOWH1F4sUj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532268265377798\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":718,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":678,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":718,\"resize\":\"fit\"}}}]},\"3384\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[123,141]},{\"text\":\"Tinubu\",\"indices\":[190,197]},{\"text\":\"Lekki\",\"indices\":[230,236]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[238,246]},{\"text\":\"chatsekscerita\",\"indices\":[248,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532215308140545,\"id_str\":\"1554532215308140545\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"url\":\"https:\\/\\/t.co\\/4gnSBIXGVm\",\"display_url\":\"pic.twitter.com\\/4gnSBIXGVm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532226620178433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":719,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":719,\"resize\":\"fit\"}}}]},\"3385\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"China\",\"indices\":[77,83]},{\"text\":\"USA\",\"indices\":[84,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[89,112]}]},\"3386\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554526455593312259,\"id_str\":\"1554526455593312259\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"url\":\"https:\\/\\/t.co\\/b6J542Frck\",\"display_url\":\"pic.twitter.com\\/b6J542Frck\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554526464267227136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3387\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[17,28]},{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"WWIII\",\"indices\":[37,43]},{\"text\":\"tuesdayvibe\",\"indices\":[44,56]},{\"text\":\"BBNajiaS7\",\"indices\":[57,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554524957996187648,\"id_str\":\"1554524957996187648\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"3388\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[140,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3389\":{\"hashtags\":[{\"text\":\"PiNetworkUpdates\",\"indices\":[177,194]},{\"text\":\"Pinetwork\",\"indices\":[196,206]},{\"text\":\"Pionners\",\"indices\":[207,216]},{\"text\":\"Taiwan\",\"indices\":[217,224]},{\"text\":\"Stopsellingpi\",\"indices\":[226,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3390\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[211,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521789283311616,\"id_str\":\"1554521789283311616\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"url\":\"https:\\/\\/t.co\\/1CoGL7BvNu\",\"display_url\":\"pic.twitter.com\\/1CoGL7BvNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521869461618688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3391\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[211,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521082723553280,\"id_str\":\"1554521082723553280\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"url\":\"https:\\/\\/t.co\\/DCUApG0DFj\",\"display_url\":\"pic.twitter.com\\/DCUApG0DFj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521163749023744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3392\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[16,23]},{\"text\":\"tuesdayvibe\",\"indices\":[24,36]},{\"text\":\"OneMuzikGh\",\"indices\":[37,48]},{\"text\":\"OneMuzikGhHype\",\"indices\":[49,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554517895480229888,\"id_str\":\"1554517895480229888\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"url\":\"https:\\/\\/t.co\\/aQs9X4makk\",\"display_url\":\"pic.twitter.com\\/aQs9X4makk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/asonyagh\\/status\\/1554517903122243588\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"large\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"small\":{\"w\":420,\"h\":525,\"resize\":\"fit\"}}}]},\"3393\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"tuesdayvibe\",\"indices\":[25,37]},{\"text\":\"GoldMedal\",\"indices\":[38,48]},{\"text\":\"industrialdesign\",\"indices\":[49,66]},{\"text\":\"Internshipopportunity\",\"indices\":[67,89]},{\"text\":\"conceptart\",\"indices\":[90,101]},{\"text\":\"productdesign\",\"indices\":[102,116]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[117,135]},{\"text\":\"designer\",\"indices\":[136,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554517448593997825,\"id_str\":\"1554517448593997825\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3394\":{\"hashtags\":[{\"text\":\"rethinkandgrowrich\",\"indices\":[30,49]},{\"text\":\"taiwan\",\"indices\":[119,126]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PaulOMahony\",\"name\":\"Paul O'Mahony I Author I Speaker I Rethink Founder\",\"id\":57619292,\"id_str\":\"57619292\",\"indices\":[63,75]}],\"urls\":[],\"media\":[{\"id\":1554517150160900098,\"id_str\":\"1554517150160900098\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"url\":\"https:\\/\\/t.co\\/ZpFgTAF0PU\",\"display_url\":\"pic.twitter.com\\/ZpFgTAF0PU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dubaidollars\\/status\\/1554517160407572485\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":228,\"resize\":\"fit\"}}}]},\"3395\":{\"hashtags\":[{\"text\":\"hausas\",\"indices\":[74,81]},{\"text\":\"SamOmatseye\",\"indices\":[82,94]},{\"text\":\"worldwarlll\",\"indices\":[95,107]},{\"text\":\"XiJinping\",\"indices\":[108,118]},{\"text\":\"CaridadCharityFoundation\",\"indices\":[119,144]},{\"text\":\"Tinubu\",\"indices\":[145,152]},{\"text\":\"Russia\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554516297483960320,\"id_str\":\"1554516297483960320\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3396\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"China\",\"indices\":[117,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3397\":{\"hashtags\":[{\"text\":\"Obidatti023\",\"indices\":[122,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3398\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"China\",\"indices\":[94,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511966923784192,\"id_str\":\"1554511966923784192\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":772,\"h\":679,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":772,\"h\":679,\"resize\":\"fit\"}}}]},\"3399\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[32,42]},{\"text\":\"Taipei\",\"indices\":[43,50]},{\"text\":\"WWIII\",\"indices\":[51,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511236750274560,\"id_str\":\"1554511236750274560\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"url\":\"https:\\/\\/t.co\\/GJ1GzU7jGV\",\"display_url\":\"pic.twitter.com\\/GJ1GzU7jGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554511554326179840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":908,\"h\":443,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":908,\"h\":443,\"resize\":\"fit\"}}}]},\"3400\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[228,234]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ILRUSSO1\",\"name\":\"\\ud83c\\uddf7\\ud83c\\uddfaThe man who saved the world\\ud83c\\uddf7\\ud83c\\uddfa\",\"id\":1508382160494944259,\"id_str\":\"1508382160494944259\",\"indices\":[0,9]}],\"urls\":[]},\"3401\":{\"hashtags\":[{\"text\":\"BeautyWithBrains\",\"indices\":[63,80]},{\"text\":\"cubana\",\"indices\":[82,89]},{\"text\":\"Tinubu\",\"indices\":[91,98]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"China\",\"indices\":[118,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554508205828489216,\"id_str\":\"1554508205828489216\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"url\":\"https:\\/\\/t.co\\/7RaExlFZdy\",\"display_url\":\"pic.twitter.com\\/7RaExlFZdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554508215945142273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3402\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"WorldWarIII\",\"indices\":[43,55]},{\"text\":\"US\",\"indices\":[57,60]},{\"text\":\"China\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554504752481898496,\"id_str\":\"1554504752481898496\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"url\":\"https:\\/\\/t.co\\/ivpyHUQNnb\",\"display_url\":\"pic.twitter.com\\/ivpyHUQNnb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahsaan444\\/status\\/1554504829770219520\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"3403\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"US\",\"indices\":[114,117]},{\"text\":\"china\",\"indices\":[143,149]},{\"text\":\"russia\",\"indices\":[171,178]},{\"text\":\"Ukraine\",\"indices\":[185,193]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WSWS_Updates\",\"name\":\"World Socialist Web Site\",\"id\":117810351,\"id_str\":\"117810351\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554504651654934529,\"id_str\":\"1554504651654934529\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK1vpuVsAEYaFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK1vpuVsAEYaFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/QUxG0FexRP\",\"display_url\":\"pic.twitter.com\\/QUxG0FexRP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1554504669308674048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":261,\"h\":193,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":261,\"h\":193,\"resize\":\"fit\"},\"small\":{\"w\":261,\"h\":193,\"resize\":\"fit\"}}}]},\"3404\":{\"hashtags\":[{\"text\":\"putin\",\"indices\":[31,37]},{\"text\":\"Ukraine\",\"indices\":[46,54]},{\"text\":\"china\",\"indices\":[122,128]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"US\",\"indices\":[175,178]},{\"text\":\"Pelosi\",\"indices\":[186,193]},{\"text\":\"US\",\"indices\":[228,231]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RegimeChangeUS\",\"name\":\"Regime Change\",\"id\":1538564518527262720,\"id_str\":\"1538564518527262720\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554502822032396288,\"id_str\":\"1554502822032396288\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0FJ2VUAAAsou.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0FJ2VUAAAsou.jpg\",\"url\":\"https:\\/\\/t.co\\/cDAteuAkvW\",\"display_url\":\"pic.twitter.com\\/cDAteuAkvW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1554503515556327425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":263,\"h\":192,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":263,\"h\":192,\"resize\":\"fit\"},\"medium\":{\"w\":263,\"h\":192,\"resize\":\"fit\"}}}]},\"3405\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"China\",\"indices\":[52,58]},{\"text\":\"BBNaija\",\"indices\":[59,67]},{\"text\":\"BBNaija7\",\"indices\":[68,77]},{\"text\":\"BBNaija7\",\"indices\":[78,87]},{\"text\":\"BBNaija2022\",\"indices\":[88,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"firstladyship\",\"name\":\"NEFERTITI\",\"id\":201237617,\"id_str\":\"201237617\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554502394603601920,\"id_str\":\"1554502394603601920\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"url\":\"https:\\/\\/t.co\\/zkX2Sbg0bN\",\"display_url\":\"pic.twitter.com\\/zkX2Sbg0bN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ObidientYoutube\\/status\\/1554502403889807362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1242,\"h\":698,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"3406\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[23,29]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554501901521403904,\"id_str\":\"1554501901521403904\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"url\":\"https:\\/\\/t.co\\/6pzyCrCJWe\",\"display_url\":\"pic.twitter.com\\/6pzyCrCJWe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554502371946172416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"}}}]},\"3407\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[280,287]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"aaakhigbe\",\"name\":\"Andy Akhigbe\",\"id\":1970724968,\"id_str\":\"1970724968\",\"indices\":[15,25]}],\"urls\":[]},\"3408\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[58,67]},{\"text\":\"fightschool\",\"indices\":[68,80]},{\"text\":\"FightClub\",\"indices\":[81,91]},{\"text\":\"fightingvideo\",\"indices\":[92,106]},{\"text\":\"FightBack\",\"indices\":[107,117]},{\"text\":\"fightnight\",\"indices\":[118,129]},{\"text\":\"fighter\",\"indices\":[130,138]},{\"text\":\"ViralVideo\",\"indices\":[139,150]},{\"text\":\"viral\",\"indices\":[151,157]},{\"text\":\"fighthub\",\"indices\":[158,167]},{\"text\":\"Sheggz\",\"indices\":[168,175]},{\"text\":\"BBNajia\",\"indices\":[176,184]},{\"text\":\"BBNaijaS7\",\"indices\":[185,195]},{\"text\":\"PiNetwork\",\"indices\":[196,206]},{\"text\":\"China\",\"indices\":[207,213]},{\"text\":\"Taiwan\",\"indices\":[214,221]},{\"text\":\"dontpayuk\",\"indices\":[222,232]},{\"text\":\"HuntedAU\",\"indices\":[233,242]},{\"text\":\"bachelorette\",\"indices\":[243,256]},{\"text\":\"Tembisa\",\"indices\":[257,265]},{\"text\":\"helicopter\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554501297348513793,\"id_str\":\"1554501297348513793\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"url\":\"https:\\/\\/t.co\\/ibD6jbcgbc\",\"display_url\":\"pic.twitter.com\\/ibD6jbcgbc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554501332723179524\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"3409\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[26,35]},{\"text\":\"fightschool\",\"indices\":[36,48]},{\"text\":\"FightClub\",\"indices\":[49,59]},{\"text\":\"fightingvideo\",\"indices\":[60,74]},{\"text\":\"FightBack\",\"indices\":[75,85]},{\"text\":\"fightnight\",\"indices\":[86,97]},{\"text\":\"fighter\",\"indices\":[98,106]},{\"text\":\"ViralVideo\",\"indices\":[107,118]},{\"text\":\"viral\",\"indices\":[119,125]},{\"text\":\"fighthub\",\"indices\":[126,135]},{\"text\":\"Sheggz\",\"indices\":[136,143]},{\"text\":\"BBNajia\",\"indices\":[144,152]},{\"text\":\"BBNaijaS7\",\"indices\":[153,163]},{\"text\":\"PiNetwork\",\"indices\":[164,174]},{\"text\":\"China\",\"indices\":[175,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"dontpayuk\",\"indices\":[190,200]},{\"text\":\"HuntedAU\",\"indices\":[201,210]},{\"text\":\"bachelorette\",\"indices\":[211,224]},{\"text\":\"Tembisa\",\"indices\":[225,233]},{\"text\":\"helicopter\",\"indices\":[234,245]},{\"text\":\"SuperTuna_Jin\",\"indices\":[246,260]},{\"text\":\"tuesdayvibe\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500816718938114,\"id_str\":\"1554500816718938114\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/XigzZJDjZT\",\"display_url\":\"pic.twitter.com\\/XigzZJDjZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500874185089025\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":520,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":942,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":942,\"resize\":\"fit\"}}}]},\"3410\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[240,247]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"Obidatti023\",\"indices\":[256,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500275339239430,\"id_str\":\"1554500275339239430\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"url\":\"https:\\/\\/t.co\\/ROTOrsvY71\",\"display_url\":\"pic.twitter.com\\/ROTOrsvY71\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rinxe_\\/status\\/1554500278094905347\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":583,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":840,\"resize\":\"fit\"}}}]},\"3411\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[70,79]},{\"text\":\"fightschool\",\"indices\":[80,92]},{\"text\":\"FightClub\",\"indices\":[93,103]},{\"text\":\"fightingvideo\",\"indices\":[104,118]},{\"text\":\"FightBack\",\"indices\":[119,129]},{\"text\":\"fightnight\",\"indices\":[130,141]},{\"text\":\"fighter\",\"indices\":[142,150]},{\"text\":\"ViralVideo\",\"indices\":[151,162]},{\"text\":\"viral\",\"indices\":[163,169]},{\"text\":\"fighthub\",\"indices\":[170,179]},{\"text\":\"Sheggz\",\"indices\":[180,187]},{\"text\":\"BBNajia\",\"indices\":[188,196]},{\"text\":\"BBNaijaS7\",\"indices\":[197,207]},{\"text\":\"PiNetwork\",\"indices\":[208,218]},{\"text\":\"China\",\"indices\":[219,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"dontpayuk\",\"indices\":[234,244]},{\"text\":\"HuntedAU\",\"indices\":[245,254]},{\"text\":\"bachelorette\",\"indices\":[255,268]},{\"text\":\"Tembisa\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500123123765248,\"id_str\":\"1554500123123765248\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"url\":\"https:\\/\\/t.co\\/65H2indrwE\",\"display_url\":\"pic.twitter.com\\/65H2indrwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500163846262789\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3412\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[75,84]},{\"text\":\"fightschool\",\"indices\":[85,97]},{\"text\":\"FightClub\",\"indices\":[98,108]},{\"text\":\"fightingvideo\",\"indices\":[109,123]},{\"text\":\"FightBack\",\"indices\":[124,134]},{\"text\":\"fightnight\",\"indices\":[135,146]},{\"text\":\"fighter\",\"indices\":[147,155]},{\"text\":\"ViralVideo\",\"indices\":[156,167]},{\"text\":\"viral\",\"indices\":[168,174]},{\"text\":\"fighthub\",\"indices\":[175,184]},{\"text\":\"Sheggz\",\"indices\":[185,192]},{\"text\":\"BBNajia\",\"indices\":[193,201]},{\"text\":\"BBNaijaS7\",\"indices\":[202,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"China\",\"indices\":[224,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"dontpayuk\",\"indices\":[239,249]},{\"text\":\"HuntedAU\",\"indices\":[250,259]},{\"text\":\"bachelorette\",\"indices\":[260,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554498460908486657,\"id_str\":\"1554498460908486657\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"url\":\"https:\\/\\/t.co\\/wGq0ra4JHP\",\"display_url\":\"pic.twitter.com\\/wGq0ra4JHP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554498498958987264\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3413\":{\"hashtags\":[{\"text\":\"personalbaby\",\"indices\":[21,34]},{\"text\":\"ASUUstrike\",\"indices\":[44,55]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[56,73]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"Pelosi\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Wizkidfc\",\"indices\":[98,107]},{\"text\":\"Machala\",\"indices\":[108,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[4,11]}],\"urls\":[]},\"3414\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"ASUU\",\"indices\":[55,60]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"BambamSorry\",\"indices\":[68,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554494932181721088,\"id_str\":\"1554494932181721088\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"url\":\"https:\\/\\/t.co\\/ut4fE6Z6FA\",\"display_url\":\"pic.twitter.com\\/ut4fE6Z6FA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realproscrow\\/status\\/1554495310986203141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"3415\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[26,32]},{\"text\":\"pelositaiwan\",\"indices\":[33,46]},{\"text\":\"Taiwan\",\"indices\":[47,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3416\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"PelosiVisit\",\"indices\":[58,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/odR1me7EVX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AP\\/status\\/1554478901476446210\",\"display_url\":\"twitter.com\\/AP\\/status\\/1554\\u2026\",\"indices\":[71,94]}]},\"3417\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3418\":{\"hashtags\":[{\"text\":\"GetIntoAsoRock\",\"indices\":[210,225]},{\"text\":\"Akure\",\"indices\":[227,233]},{\"text\":\"Pelosi\",\"indices\":[234,241]},{\"text\":\"China\",\"indices\":[242,248]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[107,116]}],\"urls\":[],\"media\":[{\"id\":1554491570216472577,\"id_str\":\"1554491570216472577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"url\":\"https:\\/\\/t.co\\/1omjHcInPM\",\"display_url\":\"pic.twitter.com\\/1omjHcInPM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunladeAbiola1\\/status\\/1554491572502372353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"3419\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[178,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490735684206593,\"id_str\":\"1554490735684206593\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"url\":\"https:\\/\\/t.co\\/mo8Q7t3wg2\",\"display_url\":\"pic.twitter.com\\/mo8Q7t3wg2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554490738594938883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"medium\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":345,\"resize\":\"fit\"}}}]},\"3420\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[231,238]},{\"text\":\"China\",\"indices\":[239,245]},{\"text\":\"dontpayuk\",\"indices\":[246,256]},{\"text\":\"Guerrilla1stWin\",\"indices\":[257,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"accessbank_help\",\"name\":\"Access Bank Help\",\"id\":2164455380,\"id_str\":\"2164455380\",\"indices\":[0,16]}],\"urls\":[]},\"3421\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[158,164]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"China\",\"indices\":[173,179]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3422\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[0,6]},{\"text\":\"Pelosi\",\"indices\":[34,41]},{\"text\":\"China\",\"indices\":[42,48]},{\"text\":\"taiwanwar\",\"indices\":[49,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3423\":{\"hashtags\":[{\"text\":\"BREAKING\",\"indices\":[0,9]},{\"text\":\"China\",\"indices\":[10,16]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554488556680355841,\"id_str\":\"1554488556680355841\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"url\":\"https:\\/\\/t.co\\/QmblcXb8XR\",\"display_url\":\"pic.twitter.com\\/QmblcXb8XR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554488563089162242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":900,\"resize\":\"fit\"}}}]},\"3424\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChineseEmbinUS\",\"name\":\"Chinese Embassy in US\",\"id\":1136383051917910017,\"id_str\":\"1136383051917910017\",\"indices\":[37,52]}],\"urls\":[]},\"3425\":{\"hashtags\":[{\"text\":\"Helicopter\",\"indices\":[108,119]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"China\",\"indices\":[161,167]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3426\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"China\",\"indices\":[236,242]},{\"text\":\"Olaidemarketing\",\"indices\":[243,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3427\":{\"hashtags\":[{\"text\":\"Helicopter\",\"indices\":[202,213]},{\"text\":\"Pelosi\",\"indices\":[230,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"China\",\"indices\":[255,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3428\":{\"hashtags\":[{\"text\":\"Foreignfundingcase\",\"indices\":[186,205]},{\"text\":\"Taiwan\",\"indices\":[206,213]},{\"text\":\"\\u0635\\u0627\\u062f\\u0642_\\u0648_\\u0627\\u0645\\u06cc\\u0646_\\u0639\\u0645\\u0631\\u0627\\u0646_\\u062e\\u0627\\u0646\",\"indices\":[214,236]},{\"text\":\"AlQaeda\",\"indices\":[237,245]},{\"text\":\"jhope\",\"indices\":[246,252]},{\"text\":\"Biden\",\"indices\":[253,259]},{\"text\":\"kabul\",\"indices\":[260,266]},{\"text\":\"Ayman\",\"indices\":[267,273]},{\"text\":\"PMLN\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[162,185]}],\"media\":[{\"id\":1554483167431741440,\"id_str\":\"1554483167431741440\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"url\":\"https:\\/\\/t.co\\/qSXunCgTi2\",\"display_url\":\"pic.twitter.com\\/qSXunCgTi2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554484017214492674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":408,\"resize\":\"fit\"}}}]},\"3429\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[120,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"China\",\"indices\":[154,160]},{\"text\":\"PeterObi4President2023\",\"indices\":[161,184]},{\"text\":\"EndASUUStrike\",\"indices\":[185,199]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[201,226]},{\"text\":\"PeterObi2023\",\"indices\":[228,241]},{\"text\":\"EndSARS\",\"indices\":[242,250]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[252,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554483342929793024,\"id_str\":\"1554483342929793024\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"url\":\"https:\\/\\/t.co\\/khWHTKmnVb\",\"display_url\":\"pic.twitter.com\\/khWHTKmnVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1554483355172933641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":902,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":677,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3430\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[64,76]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554482605986385920,\"id_str\":\"1554482605986385920\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"url\":\"https:\\/\\/t.co\\/mymu8Wotml\",\"display_url\":\"pic.twitter.com\\/mymu8Wotml\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tobilobaddon\\/status\\/1554482608142254083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"small\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":568,\"h\":328,\"resize\":\"fit\"}}}]},\"3431\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[14,21]},{\"text\":\"JacksonWang\",\"indices\":[22,34]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3432\":{\"hashtags\":[{\"text\":\"PeterObi2023\",\"indices\":[52,65]},{\"text\":\"Helicopter\",\"indices\":[132,143]},{\"text\":\"Pelosi\",\"indices\":[160,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"China\",\"indices\":[185,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3433\":{\"hashtags\":[{\"text\":\"Trending\",\"indices\":[132,141]},{\"text\":\"Pelosi\",\"indices\":[142,149]},{\"text\":\"helicopter\",\"indices\":[150,161]},{\"text\":\"JacksonWang\",\"indices\":[162,174]},{\"text\":\"Obidatti023\",\"indices\":[175,187]},{\"text\":\"VoteThemAllOut2022\",\"indices\":[188,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554481705255374848,\"id_str\":\"1554481705255374848\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"url\":\"https:\\/\\/t.co\\/XRhDOqdGKn\",\"display_url\":\"pic.twitter.com\\/XRhDOqdGKn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eagle103_voice\\/status\\/1554481716479381506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1065,\"h\":1391,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":919,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":521,\"h\":680,\"resize\":\"fit\"}}}]},\"3434\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"politics\",\"indices\":[41,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3435\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[31,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"Pelosi\",\"indices\":[46,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554481206649143304,\"id_str\":\"1554481206649143304\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ew5eZ1Fkee\",\"display_url\":\"pic.twitter.com\\/Ew5eZ1Fkee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/qf00_\\/status\\/1554481216363061253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"3436\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"Pelosi\",\"indices\":[91,98]},{\"text\":\"China\",\"indices\":[99,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554481002176733184,\"id_str\":\"1554481002176733184\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"url\":\"https:\\/\\/t.co\\/Nf5jmVAtUC\",\"display_url\":\"pic.twitter.com\\/Nf5jmVAtUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Molobeduu\\/status\\/1554481031083859973\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":594,\"h\":360,\"resize\":\"fit\"}}}]},\"3437\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[92,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BKKeyAxwNd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ejmalrai\\/status\\/1554478967410905091\",\"display_url\":\"twitter.com\\/ejmalrai\\/statu\\u2026\",\"indices\":[108,131]}]},\"3438\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3439\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"China\",\"indices\":[65,71]},{\"text\":\"BBNajia\",\"indices\":[72,80]},{\"text\":\"BBNaija\",\"indices\":[81,89]},{\"text\":\"BBNaija7\",\"indices\":[90,99]},{\"text\":\"helicopter\",\"indices\":[100,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554480660156407808,\"id_str\":\"1554480660156407808\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"url\":\"https:\\/\\/t.co\\/OJmnM0SGwE\",\"display_url\":\"pic.twitter.com\\/OJmnM0SGwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554480671648792578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1070,\"h\":1427,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3440\":{\"hashtags\":[{\"text\":\"Helicopter\",\"indices\":[180,191]},{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"Taiwan\",\"indices\":[216,223]},{\"text\":\"China\",\"indices\":[233,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3441\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"China\",\"indices\":[63,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554479932788641793,\"id_str\":\"1554479932788641793\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"url\":\"https:\\/\\/t.co\\/s6lXtlwBZP\",\"display_url\":\"pic.twitter.com\\/s6lXtlwBZP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1554479982822543361\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":352,\"resize\":\"fit\"}}}]},\"3442\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[3,10]},{\"text\":\"Taiwan\",\"indices\":[36,43]},{\"text\":\"China\",\"indices\":[58,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3443\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3444\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[10,17]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554479779327479810,\"id_str\":\"1554479779327479810\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"url\":\"https:\\/\\/t.co\\/Isv0fNWq2f\",\"display_url\":\"pic.twitter.com\\/Isv0fNWq2f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dynamicfxtrader\\/status\\/1554479786671702017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1744,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3445\":{\"hashtags\":[{\"text\":\"heran\",\"indices\":[71,77]},{\"text\":\"dontpayuk\",\"indices\":[78,88]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"China\",\"indices\":[105,111]},{\"text\":\"JacksonWang\",\"indices\":[112,124]},{\"text\":\"NancyPelosi\",\"indices\":[125,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3446\":{\"hashtags\":[{\"text\":\"Xi\",\"indices\":[0,3]},{\"text\":\"pelosi\",\"indices\":[140,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3447\":{\"hashtags\":[{\"text\":\"Hermes\",\"indices\":[67,74]},{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"JacksonWang\",\"indices\":[98,110]},{\"text\":\"dontpayuk\",\"indices\":[111,121]},{\"text\":\"helicopter\",\"indices\":[122,133]},{\"text\":\"amaka\",\"indices\":[134,140]},{\"text\":\"phyna\",\"indices\":[141,147]},{\"text\":\"bbnaija\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3448\":{\"hashtags\":[{\"text\":\"chinese\",\"indices\":[4,12]},{\"text\":\"pelosi\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3449\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[152,164]},{\"text\":\"Taiwan\",\"indices\":[165,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554475083061665792,\"id_str\":\"1554475083061665792\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"url\":\"https:\\/\\/t.co\\/xIXhJMAMYn\",\"display_url\":\"pic.twitter.com\\/xIXhJMAMYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SayNoToRACISMW1\\/status\\/1554475085347655681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"small\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"large\":{\"w\":566,\"h\":317,\"resize\":\"fit\"}}}]},\"3450\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[192,198]},{\"text\":\"Wike\",\"indices\":[199,204]},{\"text\":\"China\",\"indices\":[205,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[220,245]},{\"text\":\"BBNaija\",\"indices\":[246,254]},{\"text\":\"Tinubu\",\"indices\":[255,262]},{\"text\":\"Reno\",\"indices\":[263,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3451\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"China\",\"indices\":[203,209]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3452\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[0,3]},{\"text\":\"Pelosi\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3453\":{\"hashtags\":[{\"text\":\"BREAKING\",\"indices\":[0,9]},{\"text\":\"China\",\"indices\":[37,43]},{\"text\":\"NancyPelosi\",\"indices\":[63,75]},{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3454\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[155,162]},{\"text\":\"Wike\",\"indices\":[163,168]},{\"text\":\"peterobi\",\"indices\":[169,178]},{\"text\":\"atiku\",\"indices\":[179,185]},{\"text\":\"Reno\",\"indices\":[186,191]},{\"text\":\"gistlovers\",\"indices\":[192,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3455\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[163,188]},{\"text\":\"Wike\",\"indices\":[216,221]},{\"text\":\"Taiwan\",\"indices\":[222,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554471389511536640,\"id_str\":\"1554471389511536640\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"url\":\"https:\\/\\/t.co\\/wHFRX1347o\",\"display_url\":\"pic.twitter.com\\/wHFRX1347o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Valiantjoe1\\/status\\/1554471394880225281\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3456\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[0,8]},{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"georgegalloway\",\"name\":\"George Galloway\",\"id\":15484198,\"id_str\":\"15484198\",\"indices\":[51,66]}],\"urls\":[]},\"3457\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"Wike\",\"indices\":[116,121]},{\"text\":\"cubana\",\"indices\":[122,129]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[131,156]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Meta_force_TEC\",\"name\":\"Meta Force Technical Support\",\"id\":1530299665828257792,\"id_str\":\"1530299665828257792\",\"indices\":[67,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SFtzboAJQc\",\"expanded_url\":\"https:\\/\\/meta-force.space\\/r\\/FMr4nbp8Xg\",\"display_url\":\"meta-force.space\\/r\\/FMr4nbp8Xg\",\"indices\":[84,107]}],\"media\":[{\"id\":1554469413599977472,\"id_str\":\"1554469413599977472\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"url\":\"https:\\/\\/t.co\\/U2R14Y4sei\",\"display_url\":\"pic.twitter.com\\/U2R14Y4sei\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itodougo\\/status\\/1554469421036576769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"medium\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"}}}]},\"3458\":{\"hashtags\":[{\"text\":\"nancy\",\"indices\":[33,39]},{\"text\":\"Pelosi\",\"indices\":[40,47]},{\"text\":\"WWWIII\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3459\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[29,37]},{\"text\":\"Pelosi\",\"indices\":[38,45]},{\"text\":\"Trending\",\"indices\":[46,55]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554465870575030275,\"id_str\":\"1554465870575030275\",\"indices\":[56,79],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"url\":\"https:\\/\\/t.co\\/qSszhovah4\",\"display_url\":\"pic.twitter.com\\/qSszhovah4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bryteazy\\/status\\/1554466213534769152\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":1140,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1069,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":606,\"resize\":\"fit\"}}}]},\"3460\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[176,183]},{\"text\":\"helicopter\",\"indices\":[184,195]},{\"text\":\"JacksonWang\",\"indices\":[196,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554465523370426370,\"id_str\":\"1554465523370426370\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"url\":\"https:\\/\\/t.co\\/ecNkeV31YO\",\"display_url\":\"pic.twitter.com\\/ecNkeV31YO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/medicare_in\\/status\\/1554465540617506818\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1414,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"}}}]},\"3461\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"BBNaija\",\"indices\":[47,55]},{\"text\":\"dontpayuk\",\"indices\":[56,66]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3462\":{\"hashtags\":[{\"text\":\"EXTRACTION\",\"indices\":[163,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"bachelorette\",\"indices\":[183,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554463378256658432,\"id_str\":\"1554463378256658432\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"url\":\"https:\\/\\/t.co\\/EcL52eIPAV\",\"display_url\":\"pic.twitter.com\\/EcL52eIPAV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoviePlusx\\/status\\/1554463390118121475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":718,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":898,\"resize\":\"fit\"}}}]},\"3463\":{\"hashtags\":[{\"text\":\"mrbayo\",\"indices\":[29,36]},{\"text\":\"cometochelsea\",\"indices\":[37,51]},{\"text\":\"Taiwan\",\"indices\":[52,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554463350402285568,\"id_str\":\"1554463350402285568\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"url\":\"https:\\/\\/t.co\\/m6ECdRSDzU\",\"display_url\":\"pic.twitter.com\\/m6ECdRSDzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olisasegun1\\/status\\/1554463372409700353\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}}}]},\"3464\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]},{\"text\":\"tuesdayvibe\",\"indices\":[23,35]},{\"text\":\"babygirl\",\"indices\":[36,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554462666688708608,\"id_str\":\"1554462666688708608\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"url\":\"https:\\/\\/t.co\\/cuyRJDGRbG\",\"display_url\":\"pic.twitter.com\\/cuyRJDGRbG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nickyB112\\/status\\/1554462671868674048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"3465\":{\"hashtags\":[{\"text\":\"5starchallange\",\"indices\":[48,63]},{\"text\":\"Pelosi\",\"indices\":[82,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"JacksonWang\",\"indices\":[98,110]},{\"text\":\"dontpayuk\",\"indices\":[111,121]},{\"text\":\"helicopter\",\"indices\":[122,133]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[134,152]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[153,179]},{\"text\":\"HelicopterCrash\",\"indices\":[180,196]},{\"text\":\"\\uc5d0\\uc774\\ud2f0\\uc988\",\"indices\":[197,202]},{\"text\":\"WatchOutForKaran\",\"indices\":[203,220]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[221,246]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[24,37]}],\"urls\":[],\"media\":[{\"id\":1554461471794413568,\"id_str\":\"1554461471794413568\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"url\":\"https:\\/\\/t.co\\/AEHJLCBgvR\",\"display_url\":\"pic.twitter.com\\/AEHJLCBgvR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/callmelemontee\\/status\\/1554461575834107905\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3466\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[55,80]},{\"text\":\"PeterObi4President\",\"indices\":[81,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554461077555011584,\"id_str\":\"1554461077555011584\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"url\":\"https:\\/\\/t.co\\/YbG5YomfHO\",\"display_url\":\"pic.twitter.com\\/YbG5YomfHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sam_Deck\\/status\\/1554461094823034885\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":922,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"3467\":{\"hashtags\":[{\"text\":\"finance\",\"indices\":[204,212]},{\"text\":\"trainee\",\"indices\":[213,221]},{\"text\":\"jobs\",\"indices\":[222,227]},{\"text\":\"pelosi\",\"indices\":[228,235]},{\"text\":\"remotejobs\",\"indices\":[248,259]},{\"text\":\"consultingjobs\",\"indices\":[260,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3468\":{\"hashtags\":[{\"text\":\"jobsinAwka\",\"indices\":[106,117]},{\"text\":\"jobs\",\"indices\":[118,123]},{\"text\":\"pelosi\",\"indices\":[124,131]},{\"text\":\"salonmanager\",\"indices\":[144,157]},{\"text\":\"barberjob\",\"indices\":[158,168]},{\"text\":\"manicurist\",\"indices\":[169,180]},{\"text\":\"hairstylist\",\"indices\":[181,193]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Themastercutz\",\"name\":\"Mastercutz Barbershop & Lounge\",\"id\":1507611507894493184,\"id_str\":\"1507611507894493184\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554457464489349120,\"id_str\":\"1554457464489349120\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"url\":\"https:\\/\\/t.co\\/XIHsYklIxS\",\"display_url\":\"pic.twitter.com\\/XIHsYklIxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554457473960103938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":771,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":764,\"h\":771,\"resize\":\"fit\"}}}]},\"3469\":{\"hashtags\":[{\"text\":\"Malik\",\"indices\":[252,258]},{\"text\":\"Taiwan\",\"indices\":[259,266]},{\"text\":\"BBNaija\",\"indices\":[267,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554454951190986753,\"id_str\":\"1554454951190986753\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"url\":\"https:\\/\\/t.co\\/gh7OVsyT2j\",\"display_url\":\"pic.twitter.com\\/gh7OVsyT2j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/samuelobiora21\\/status\\/1554454961697820673\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3470\":{\"hashtags\":[{\"text\":\"mrbayo\",\"indices\":[69,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[86,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3471\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[150,158]},{\"text\":\"sheggz\",\"indices\":[159,166]},{\"text\":\"Modella\",\"indices\":[167,175]},{\"text\":\"Machala\",\"indices\":[176,184]},{\"text\":\"helicopter\",\"indices\":[185,196]},{\"text\":\"Wizkid\",\"indices\":[197,204]},{\"text\":\"Davido\",\"indices\":[205,212]},{\"text\":\"bbillkin\",\"indices\":[213,222]},{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[231,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SXks2o3IBY\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3SkY7x5\",\"display_url\":\"bit.ly\\/3SkY7x5\",\"indices\":[125,148]}],\"media\":[{\"id\":1554453674776313857,\"id_str\":\"1554453674776313857\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"url\":\"https:\\/\\/t.co\\/642t62L8pp\",\"display_url\":\"pic.twitter.com\\/642t62L8pp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554453682267250688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3472\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[40,47]},{\"text\":\"Pelosi\",\"indices\":[48,55]},{\"text\":\"China\",\"indices\":[56,62]},{\"text\":\"WW3\",\"indices\":[63,67]},{\"text\":\"war\",\"indices\":[68,72]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GdiIiDlDBD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerceraVenida\\/status\\/1550178616104853505\",\"display_url\":\"twitter.com\\/TerceraVenida\\/\\u2026\",\"indices\":[73,96]}]},\"3473\":{\"hashtags\":[{\"text\":\"communicationassistant\",\"indices\":[203,226]},{\"text\":\"media\",\"indices\":[227,233]},{\"text\":\"jobsinabuja\",\"indices\":[234,246]},{\"text\":\"jobs\",\"indices\":[247,252]},{\"text\":\"pelosi\",\"indices\":[253,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zKcnLsddKI\",\"expanded_url\":\"https:\\/\\/docs.google.com\\/forms\\/d\\/e\\/1FAIpQLSdWh3Gau0KKAV5M3vjdJyf3F5dGC1alufeSrhK-9oHQdHPP0w\\/viewform\",\"display_url\":\"docs.google.com\\/forms\\/d\\/e\\/1FAI\\u2026\",\"indices\":[178,201]}]},\"3474\":{\"hashtags\":[{\"text\":\"Cubana\",\"indices\":[54,61]},{\"text\":\"pogba\",\"indices\":[62,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"Don\",\"indices\":[77,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554453095563902976,\"id_str\":\"1554453095563902976\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"url\":\"https:\\/\\/t.co\\/CLoG9bLDcw\",\"display_url\":\"pic.twitter.com\\/CLoG9bLDcw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Joynerkardinal\\/status\\/1554453118456369153\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"}}}]},\"3475\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Erc1974C\",\"name\":\"Eric C\",\"id\":1503920544689029120,\"id_str\":\"1503920544689029120\",\"indices\":[0,9]}],\"urls\":[]},\"3476\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[82,89]},{\"text\":\"Lekki\",\"indices\":[90,96]},{\"text\":\"Sabinus\",\"indices\":[97,105]},{\"text\":\"helicopter\",\"indices\":[106,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554451334740512769,\"id_str\":\"1554451334740512769\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}}]},\"3477\":{\"hashtags\":[{\"text\":\"traineeprogram\",\"indices\":[45,60]},{\"text\":\"energysector\",\"indices\":[61,74]},{\"text\":\"oiljobs\",\"indices\":[75,83]},{\"text\":\"graduatetrainee\",\"indices\":[84,100]},{\"text\":\"jobs\",\"indices\":[101,106]},{\"text\":\"pelosi\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554451058251923456,\"id_str\":\"1554451058251923456\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"url\":\"https:\\/\\/t.co\\/X6qCM1jrbW\",\"display_url\":\"pic.twitter.com\\/X6qCM1jrbW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554451066577641472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":737,\"h\":933,\"resize\":\"fit\"},\"small\":{\"w\":537,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":737,\"h\":933,\"resize\":\"fit\"}}}]},\"3478\":{\"hashtags\":[{\"text\":\"edutech\",\"indices\":[164,172]},{\"text\":\"salesjob\",\"indices\":[173,182]},{\"text\":\"nyscjob\",\"indices\":[183,191]},{\"text\":\"jobs\",\"indices\":[192,197]},{\"text\":\"pelosi\",\"indices\":[198,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FffgOogRgI\",\"expanded_url\":\"https:\\/\\/docs.google.com\\/forms\\/d\\/e\\/1FAIpQLSexypIXkQdesAntZQ-AFj092JCxS-60URmaD6kc_0WEOJA22A\\/viewform\",\"display_url\":\"docs.google.com\\/forms\\/d\\/e\\/1FAI\\u2026\",\"indices\":[139,162]}]},\"3479\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"Pelosi\",\"indices\":[96,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554448579049259011,\"id_str\":\"1554448579049259011\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"url\":\"https:\\/\\/t.co\\/Yj5h9sBlMv\",\"display_url\":\"pic.twitter.com\\/Yj5h9sBlMv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554448582018826241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"large\":{\"w\":663,\"h\":364,\"resize\":\"fit\"}}}]},\"3480\":{\"hashtags\":[{\"text\":\"buzzynessonline\",\"indices\":[223,239]},{\"text\":\"TuesdaysAndThursdays\",\"indices\":[240,261]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"Pelosi\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554444631999451137,\"id_str\":\"1554444631999451137\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"url\":\"https:\\/\\/t.co\\/7weOt1UVAc\",\"display_url\":\"pic.twitter.com\\/7weOt1UVAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/buzzy_comedian\\/status\\/1554444641898057728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"3481\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"nancyisme\",\"indices\":[145,155]},{\"text\":\"dejong\",\"indices\":[156,163]},{\"text\":\"Machala\",\"indices\":[164,172]},{\"text\":\"Wizkid\",\"indices\":[173,180]},{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"JacksonWang\",\"indices\":[189,201]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[202,224]},{\"text\":\"BambamSorry\",\"indices\":[225,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"swatc_music\",\"name\":\"SWAT C\",\"id\":1075280000293715970,\"id_str\":\"1075280000293715970\",\"indices\":[32,44]},{\"screen_name\":\"Akon\",\"name\":\"AKON\",\"id\":25421094,\"id_str\":\"25421094\",\"indices\":[81,86]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[87,96]},{\"screen_name\":\"AndyjnrUmaru\",\"name\":\"AndyJnr \\u00b0 Umaru \\uea00\",\"id\":1024982780831260673,\"id_str\":\"1024982780831260673\",\"indices\":[97,110]},{\"screen_name\":\"wizkhalifa\",\"name\":\"Wiz Khalifa\",\"id\":20322929,\"id_str\":\"20322929\",\"indices\":[111,122]},{\"screen_name\":\"WarnerMedia\",\"name\":\"WarnerMedia\",\"id\":33956270,\"id_str\":\"33956270\",\"indices\":[123,135]}],\"urls\":[],\"media\":[{\"id\":1554443348240392192,\"id_str\":\"1554443348240392192\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"url\":\"https:\\/\\/t.co\\/HbfHLJrcab\",\"display_url\":\"pic.twitter.com\\/HbfHLJrcab\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swatc_music\\/status\\/1554443572098760704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3482\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[247,252]},{\"text\":\"EndSARS\",\"indices\":[253,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C31nBaUMOj\",\"expanded_url\":\"https:\\/\\/theeverymann.blogspot.com\\/2022\\/08\\/like-feminism-brocode-101-and-extremism.html\",\"display_url\":\"theeverymann.blogspot.com\\/2022\\/08\\/like-f\\u2026\",\"indices\":[222,245]}]},\"3483\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[68,74]},{\"text\":\"Taiwan\",\"indices\":[104,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MahuiChina\",\"name\":\"MA Hui \\u9a6c \\u8f89\",\"id\":1187372311604858882,\"id_str\":\"1187372311604858882\",\"indices\":[0,11]}],\"urls\":[]},\"3484\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3485\":{\"hashtags\":[{\"text\":\"LekkiMassacre\",\"indices\":[88,102]},{\"text\":\"lekki\",\"indices\":[103,109]},{\"text\":\"taiwan\",\"indices\":[110,117]},{\"text\":\"shibainu\",\"indices\":[118,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dandptravels\",\"name\":\"dandptravels\",\"id\":28119116,\"id_str\":\"28119116\",\"indices\":[72,85]}],\"urls\":[]},\"3486\":{\"hashtags\":[{\"text\":\"BetterCallSaul\",\"indices\":[44,59]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"LOONAinLA\",\"indices\":[70,80]},{\"text\":\"JacksonWang\",\"indices\":[82,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554423117019287553,\"id_str\":\"1554423117019287553\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3487\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[133,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3488\":{\"hashtags\":[{\"text\":\"BetterCallSaul\",\"indices\":[56,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"JacksonWang\",\"indices\":[80,92]},{\"text\":\"BambamSorry\",\"indices\":[93,105]},{\"text\":\"helicopter\",\"indices\":[106,117]},{\"text\":\"abstorm\",\"indices\":[118,126]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[127,145]},{\"text\":\"dontpayuk\",\"indices\":[146,156]},{\"text\":\"chatsekscerita\",\"indices\":[157,172]},{\"text\":\"chatsekscerita\",\"indices\":[173,188]},{\"text\":\"ISAC2022\",\"indices\":[189,198]},{\"text\":\"BBNajia\",\"indices\":[199,207]},{\"text\":\"bbillkin\",\"indices\":[208,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554420335201685504,\"id_str\":\"1554420335201685504\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"url\":\"https:\\/\\/t.co\\/N2GpRHozvt\",\"display_url\":\"pic.twitter.com\\/N2GpRHozvt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mr_caustic\\/status\\/1554420378725916672\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"3489\":{\"hashtags\":[{\"text\":\"EndSARS\",\"indices\":[172,180]},{\"text\":\"Tinubu\",\"indices\":[181,188]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[189,214]},{\"text\":\"malik\",\"indices\":[215,221]},{\"text\":\"BetterCallSaul\",\"indices\":[222,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"helicopter\",\"indices\":[246,257]},{\"text\":\"ISAC2022\",\"indices\":[258,267]},{\"text\":\"BBNajia\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3490\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"Gistlover\",\"indices\":[140,150]},{\"text\":\"BBNaija\",\"indices\":[151,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554412767876087808,\"id_str\":\"1554412767876087808\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"3491\":{\"hashtags\":[{\"text\":\"nonprofits\",\"indices\":[185,196]},{\"text\":\"Pelosi\",\"indices\":[197,204]},{\"text\":\"China\",\"indices\":[205,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"STEM\",\"indices\":[220,225]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[226,248]},{\"text\":\"SDG4\",\"indices\":[249,254]},{\"text\":\"Google\",\"indices\":[255,262]},{\"text\":\"Ethiopia\",\"indices\":[263,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554406977853423622,\"id_str\":\"1554406977853423622\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"url\":\"https:\\/\\/t.co\\/nUxgLZ5V5V\",\"display_url\":\"pic.twitter.com\\/nUxgLZ5V5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WAAW_Foundation\\/status\\/1554408047849644034\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3492\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[188,195]},{\"text\":\"LOONAinLA\",\"indices\":[197,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3493\":{\"hashtags\":[{\"text\":\"BBC\",\"indices\":[48,52]},{\"text\":\"Obidatti2023\",\"indices\":[53,66]},{\"text\":\"GoodGovernance\",\"indices\":[67,82]},{\"text\":\"NewNigeria\",\"indices\":[83,94]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[95,112]},{\"text\":\"NigeriaNews\",\"indices\":[113,125]},{\"text\":\"BBNaija7\",\"indices\":[126,135]},{\"text\":\"Nigeria\",\"indices\":[136,144]},{\"text\":\"buhari\",\"indices\":[145,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"helicopter\",\"indices\":[161,172]},{\"text\":\"Ukraine\",\"indices\":[173,181]},{\"text\":\"Lagos\",\"indices\":[182,188]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[189,211]},{\"text\":\"Obidiots\",\"indices\":[212,221]},{\"text\":\"bachelorette\",\"indices\":[222,235]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[236,251]},{\"text\":\"BBNaijaS7\",\"indices\":[252,262]},{\"text\":\"Arewa4PeterObi\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554405846892814336,\"id_str\":\"1554405846892814336\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"url\":\"https:\\/\\/t.co\\/DGb6mixasv\",\"display_url\":\"pic.twitter.com\\/DGb6mixasv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KingsEmpire1\\/status\\/1554406081807503360\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}}}]},\"3494\":{\"hashtags\":[{\"text\":\"WonderWoman\",\"indices\":[53,65]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[116,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AmbLiuXiaoMing\",\"name\":\"\\u5218\\u6653\\u660eLiu Xiaoming\",\"id\":1181936905820266496,\"id_str\":\"1181936905820266496\",\"indices\":[0,15]},{\"screen_name\":\"Ambassador_Liu\",\"name\":\"Liu Yuxi\",\"id\":1186556215767252992,\"id_str\":\"1186556215767252992\",\"indices\":[16,31]}],\"urls\":[]},\"3495\":{\"hashtags\":[{\"text\":\"WonderWoman\",\"indices\":[31,43]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"China\",\"indices\":[94,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AndyBxxx\",\"name\":\"Andy Boreham \\u5b89\\u67cf\\u7136\",\"id\":23499976,\"id_str\":\"23499976\",\"indices\":[0,9]}],\"urls\":[]},\"3496\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[186,194]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"helicopter\",\"indices\":[205,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3497\":{\"hashtags\":[{\"text\":\"WonderWoman\",\"indices\":[21,33]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"China\",\"indices\":[84,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3498\":{\"hashtags\":[{\"text\":\"NaijaloveinfoForeign\",\"indices\":[113,134]},{\"text\":\"politics\",\"indices\":[135,144]},{\"text\":\"Naijaloveinfo\",\"indices\":[145,159]},{\"text\":\"NancyPelosi\",\"indices\":[160,172]},{\"text\":\"pelosivisittotaiwan\",\"indices\":[173,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1fTWGdlOMl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timand2037\\/status\\/1553522343657472003\",\"display_url\":\"twitter.com\\/timand2037\\/sta\\u2026\",\"indices\":[194,217]}]},\"3499\":{\"hashtags\":[{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[90,97]},{\"text\":\"BBNajia\",\"indices\":[128,136]},{\"text\":\"Taiwan\",\"indices\":[137,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3500\":{\"hashtags\":[{\"text\":\"BB24\",\"indices\":[83,88]},{\"text\":\"BBNaija\",\"indices\":[90,98]},{\"text\":\"BeautyTukura\",\"indices\":[109,122]},{\"text\":\"beauty\",\"indices\":[125,132]},{\"text\":\"BambamSorry\",\"indices\":[135,147]},{\"text\":\"Wike\",\"indices\":[148,153]},{\"text\":\"TheBachelorette\",\"indices\":[154,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"LOONAinLA\",\"indices\":[179,189]},{\"text\":\"helicopter\",\"indices\":[190,201]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[202,220]},{\"text\":\"AlQaeda\",\"indices\":[221,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3GvsGRqMZ\",\"expanded_url\":\"https:\\/\\/hotstorybase.wordpress.com\\/2022\\/08\\/02\\/video-sex-already-in-the-bbnaija-house\\/\",\"display_url\":\"hotstorybase.wordpress.com\\/2022\\/08\\/02\\/vid\\u2026\",\"indices\":[232,255]}],\"media\":[{\"id\":1554397528505958400,\"id_str\":\"1554397528505958400\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"url\":\"https:\\/\\/t.co\\/egpmD7humb\",\"display_url\":\"pic.twitter.com\\/egpmD7humb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hotstorybase\\/status\\/1554397534994501634\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"3501\":{\"hashtags\":[{\"text\":\"SouthEast\",\"indices\":[129,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]},{\"text\":\"Rufai\",\"indices\":[148,154]},{\"text\":\"ASUU\",\"indices\":[155,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"Osinbajo\",\"indices\":[169,178]},{\"text\":\"Omatseye\",\"indices\":[179,188]},{\"text\":\"CaterEfe\",\"indices\":[189,198]},{\"text\":\"OsamaBinLaden\",\"indices\":[199,213]},{\"text\":\"ZackOrji\",\"indices\":[214,223]},{\"text\":\"Chelsea\",\"indices\":[224,232]},{\"text\":\"Fati\",\"indices\":[233,238]},{\"text\":\"Kaduna\",\"indices\":[239,246]},{\"text\":\"Ethiopia\",\"indices\":[247,256]},{\"text\":\"China\",\"indices\":[257,263]},{\"text\":\"Igbos\",\"indices\":[264,270]},{\"text\":\"AlQaeda\",\"indices\":[271,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554396625849704448,\"id_str\":\"1554396625849704448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":519,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"}}}]},\"3502\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[152,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3503\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[76,83]},{\"text\":\"BBNajia\",\"indices\":[84,92]},{\"text\":\"Malaysia\",\"indices\":[93,102]},{\"text\":\"Trending\",\"indices\":[103,112]},{\"text\":\"TrendingNow\",\"indices\":[113,125]},{\"text\":\"viral\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554366488051580929,\"id_str\":\"1554366488051580929\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"url\":\"https:\\/\\/t.co\\/79PsEmTWxo\",\"display_url\":\"pic.twitter.com\\/79PsEmTWxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554366504594030592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":905,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":848,\"resize\":\"fit\"}}}]},\"3504\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"BBNajia\",\"indices\":[142,150]},{\"text\":\"helicopter\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3505\":{\"hashtags\":[{\"text\":\"MundaneAstrology\",\"indices\":[172,189]},{\"text\":\"pelositaiwan\",\"indices\":[190,203]},{\"text\":\"Pelosi\",\"indices\":[204,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554299705500307457,\"id_str\":\"1554299705500307457\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZH7WNzXEAEYPUL.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZH7WNzXEAEYPUL.png\",\"url\":\"https:\\/\\/t.co\\/E9hs285SVt\",\"display_url\":\"pic.twitter.com\\/E9hs285SVt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VictorZubarev\\/status\\/1554304430375313412\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":522,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":522,\"h\":348,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":522,\"h\":348,\"resize\":\"fit\"}}}]},\"3506\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[249,259]},{\"text\":\"BambamSorry\",\"indices\":[260,272]},{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3507\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[109,119]},{\"text\":\"BBNajia\",\"indices\":[120,128]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[129,144]},{\"text\":\"BBNaijaSeason7\",\"indices\":[145,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bodexng\",\"name\":\"Bodex Media Nigeria\",\"id\":2383332362,\"id_str\":\"2383332362\",\"indices\":[87,95]},{\"screen_name\":\"realbodex\",\"name\":\"Bodex F. Hungbo, SPMIIM\",\"id\":844494857032941568,\"id_str\":\"844494857032941568\",\"indices\":[96,106]}],\"urls\":[],\"media\":[{\"id\":1554253617921671169,\"id_str\":\"1554253617921671169\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"url\":\"https:\\/\\/t.co\\/2qnLi9wjTb\",\"display_url\":\"pic.twitter.com\\/2qnLi9wjTb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adamazi_mbonu\\/status\\/1554253705226162176\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3508\":{\"hashtags\":[{\"text\":\"BambamSorry\",\"indices\":[36,48]},{\"text\":\"TheFlash\",\"indices\":[49,58]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[59,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554249901529305088,\"id_str\":\"1554249901529305088\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"url\":\"https:\\/\\/t.co\\/KnUGijTCXF\",\"display_url\":\"pic.twitter.com\\/KnUGijTCXF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desportspastor\\/status\\/1554249904695959556\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"}}}]},\"3509\":{\"hashtags\":[{\"text\":\"GodAbeg\",\"indices\":[70,78]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"BambamSorry\",\"indices\":[90,102]},{\"text\":\"BLACKPINK\",\"indices\":[104,114]},{\"text\":\"twitterblades\",\"indices\":[116,130]},{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[141,159]},{\"text\":\"BamBamWeloveyou\",\"indices\":[161,177]},{\"text\":\"bbillkin\",\"indices\":[178,187]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554236780538380292,\"id_str\":\"1554236780538380292\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"url\":\"https:\\/\\/t.co\\/w6vBipGCtz\",\"display_url\":\"pic.twitter.com\\/w6vBipGCtz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatjaicaleb\\/status\\/1554236858175037440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3510\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[208,230]},{\"text\":\"afrogospel\",\"indices\":[231,242]},{\"text\":\"machala\",\"indices\":[243,251]},{\"text\":\"ASUUStrikeMustEnd\",\"indices\":[252,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FRANKRICHBOY\",\"name\":\"FRANK EDWARDS\",\"id\":183752203,\"id_str\":\"183752203\",\"indices\":[141,154]},{\"screen_name\":\"thisisprinx\",\"name\":\"Prinx Emmanuel !! Reverb!!\",\"id\":730354650239647744,\"id_str\":\"730354650239647744\",\"indices\":[155,167]},{\"screen_name\":\"Limoblaze\",\"name\":\"Limoblaze\",\"id\":739003249,\"id_str\":\"739003249\",\"indices\":[169,179]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[180,189]},{\"screen_name\":\"EeZeeConceptz18\",\"name\":\"EeZee Conceptz Global\",\"id\":848369989,\"id_str\":\"848369989\",\"indices\":[190,206]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Pxw3tlsJLO\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/omalexzy\\/not-me\",\"display_url\":\"distrokid.com\\/hyperfollow\\/om\\u2026\",\"indices\":[74,97]}],\"media\":[{\"id\":1554234790714511360,\"id_str\":\"1554234790714511360\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"url\":\"https:\\/\\/t.co\\/zQtHHQOWRz\",\"display_url\":\"pic.twitter.com\\/zQtHHQOWRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EphraimOmale\\/status\\/1554235561086525440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3511\":{\"hashtags\":[{\"text\":\"follo4folloback\",\"indices\":[43,59]},{\"text\":\"FolloMe\",\"indices\":[60,68]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[69,94]},{\"text\":\"BATSHET2023\",\"indices\":[95,107]},{\"text\":\"AtikuOkowa2023\",\"indices\":[108,123]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"HOBIPALOOZA\",\"indices\":[133,145]},{\"text\":\"BambamSorry\",\"indices\":[146,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3512\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"HOBIPALOOZA\",\"indices\":[55,67]},{\"text\":\"BambamSorry\",\"indices\":[68,80]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[81,99]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[100,120]},{\"text\":\"CartierThailand\",\"indices\":[121,137]},{\"text\":\"RapSht\",\"indices\":[138,145]},{\"text\":\"rapper\",\"indices\":[146,153]},{\"text\":\"BLACKPINK\",\"indices\":[154,164]},{\"text\":\"twitterblades\",\"indices\":[165,179]},{\"text\":\"Serbia\",\"indices\":[180,187]},{\"text\":\"Kosovo\",\"indices\":[188,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554232577854144513,\"id_str\":\"1554232577854144513\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"url\":\"https:\\/\\/t.co\\/DMKDoJ0LDv\",\"display_url\":\"pic.twitter.com\\/DMKDoJ0LDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DonaldTomax\\/status\\/1554232665645191170\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3513\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"sabinus\",\"indices\":[52,60]},{\"text\":\"Ethereum\",\"indices\":[61,70]},{\"text\":\"Bullish\",\"indices\":[71,79]}],\"symbols\":[{\"text\":\"Fury\",\"indices\":[8,13]}],\"user_mentions\":[],\"urls\":[]},\"3514\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[58,70]},{\"text\":\"breastfeeding\",\"indices\":[71,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"BambamSorry\",\"indices\":[94,106]},{\"text\":\"follobackforfolloback\",\"indices\":[107,129]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Itsdbabafatbili\",\"name\":\"Billiboy\",\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"indices\":[40,56]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[131,138]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[139,148]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[149,158]},{\"screen_name\":\"UMG\",\"name\":\"Universal Music Group\",\"id\":18033062,\"id_str\":\"18033062\",\"indices\":[159,163]},{\"screen_name\":\"BIGHIT_MUSIC\",\"name\":\"BIGHIT MUSIC\",\"id\":168683422,\"id_str\":\"168683422\",\"indices\":[164,177]},{\"screen_name\":\"TwitterMusic\",\"name\":\"Twitter Music is listening to Maggie Rogers\",\"id\":373471064,\"id_str\":\"373471064\",\"indices\":[178,191]}],\"urls\":[],\"media\":[{\"id\":1554216627239092228,\"id_str\":\"1554216627239092228\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"url\":\"https:\\/\\/t.co\\/6uJ0Iz5I5n\",\"display_url\":\"pic.twitter.com\\/6uJ0Iz5I5n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1554220296223211523\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3515\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"breastfeeding\",\"indices\":[113,127]},{\"text\":\"empowerment\",\"indices\":[128,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/993olzwzER\",\"expanded_url\":\"https:\\/\\/managarciya.com\\/empowerment-humanitarian-ministry-conduct-geep-20-training-for-south-east-zone\",\"display_url\":\"managarciya.com\\/empowerment-hu\\u2026\",\"indices\":[81,104]}]},\"3516\":{\"hashtags\":[{\"text\":\"TwitterDown\",\"indices\":[136,148]},{\"text\":\"WEURO2022\",\"indices\":[149,159]},{\"text\":\"Taiwan\",\"indices\":[160,167]},{\"text\":\"Lionesses\",\"indices\":[168,178]},{\"text\":\"ASUUStrike\",\"indices\":[179,190]},{\"text\":\"ASUUStrikeMustEnd\",\"indices\":[191,209]},{\"text\":\"dankmemes\",\"indices\":[210,220]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ASUUNGR\",\"name\":\"Official_ASUU\",\"id\":2389272580,\"id_str\":\"2389272580\",\"indices\":[50,58]},{\"screen_name\":\"Twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[59,67]},{\"screen_name\":\"memes\",\"name\":\"Memes.com\",\"id\":536582046,\"id_str\":\"536582046\",\"indices\":[68,74]},{\"screen_name\":\"Ironicooficial\",\"name\":\"Memes Twitter\",\"id\":1434743407,\"id_str\":\"1434743407\",\"indices\":[75,90]},{\"screen_name\":\"memesbychroath\",\"name\":\"CHRoaTh\",\"id\":1137801995195232258,\"id_str\":\"1137801995195232258\",\"indices\":[91,106]},{\"screen_name\":\"memetopiaz\",\"name\":\"memetopia\",\"id\":1547297863759273985,\"id_str\":\"1547297863759273985\",\"indices\":[107,118]},{\"screen_name\":\"memesbychroath\",\"name\":\"CHRoaTh\",\"id\":1137801995195232258,\"id_str\":\"1137801995195232258\",\"indices\":[120,135]}],\"urls\":[]},\"3517\":{\"hashtags\":[{\"text\":\"DoToEarn\",\"indices\":[132,141]},{\"text\":\"crypto\",\"indices\":[142,149]},{\"text\":\"NFTs\",\"indices\":[150,155]},{\"text\":\"metaverse\",\"indices\":[156,166]},{\"text\":\"DeFi\",\"indices\":[167,172]},{\"text\":\"web3\",\"indices\":[173,178]},{\"text\":\"sabinus\",\"indices\":[180,188]},{\"text\":\"taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554204452093140992,\"id_str\":\"1554204452093140992\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"url\":\"https:\\/\\/t.co\\/BNFbyWrV1Y\",\"display_url\":\"pic.twitter.com\\/BNFbyWrV1Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChainDustry\\/status\\/1554206276476870658\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3518\":{\"hashtags\":[{\"text\":\"reminder\",\"indices\":[0,9]},{\"text\":\"retweet\",\"indices\":[74,82]},{\"text\":\"nkemowoh\",\"indices\":[83,92]},{\"text\":\"channelstv\",\"indices\":[93,104]},{\"text\":\"femiadebayo\",\"indices\":[105,117]},{\"text\":\"osupa\",\"indices\":[118,124]},{\"text\":\"lizbenson\",\"indices\":[125,135]},{\"text\":\"zackorji\",\"indices\":[136,145]},{\"text\":\"davidhundeyin\",\"indices\":[146,160]},{\"text\":\"Anambrastate\",\"indices\":[161,174]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[175,200]},{\"text\":\"Asiwaju\",\"indices\":[201,209]},{\"text\":\"BBNaija\",\"indices\":[210,218]},{\"text\":\"Taiwan\",\"indices\":[219,226]},{\"text\":\"shortfilm\",\"indices\":[227,237]},{\"text\":\"Machala\",\"indices\":[252,260]},{\"text\":\"CartierThailand\",\"indices\":[261,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554198440766279680,\"id_str\":\"1554198440766279680\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"url\":\"https:\\/\\/t.co\\/cJYbjTHw10\",\"display_url\":\"pic.twitter.com\\/cJYbjTHw10\",\"expanded_url\":\"https:\\/\\/twitter.com\\/s_ifame\\/status\\/1554198465030258689\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"3519\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[83,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"CryptoNews\",\"indices\":[104,115]},{\"text\":\"cryptopunks\",\"indices\":[116,128]},{\"text\":\"NFT\",\"indices\":[129,133]},{\"text\":\"cryptocurrency\",\"indices\":[134,149]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N9HnMCskFX\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/cryptopunks-gains1847-after-tiffany-co-launches-exclusive-nft-collection\\/\",\"display_url\":\"iexclusivenews.com.ng\\/cryptopunks-ga\\u2026\",\"indices\":[150,173]}]},\"3520\":{\"hashtags\":[{\"text\":\"Kosovo\",\"indices\":[170,177]},{\"text\":\"WEURO2022\",\"indices\":[178,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"CommonwealthGames2022\",\"indices\":[197,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3521\":{\"hashtags\":[{\"text\":\"CUBEXTAKEOVER\",\"indices\":[93,107]},{\"text\":\"NFT\",\"indices\":[108,112]},{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"CubeXNft\",\"indices\":[121,130]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"cubexnft\",\"name\":\"CubeX\",\"id\":1497758039163691015,\"id_str\":\"1497758039163691015\",\"indices\":[82,91]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GUyAyfbPWh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UdodirimUche\\/status\\/1554189211737153537\",\"display_url\":\"twitter.com\\/UdodirimUche\\/s\\u2026\",\"indices\":[138,161]}]},\"3522\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[70,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"CartierThailand\",\"indices\":[91,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3523\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"julydump\",\"indices\":[158,167]},{\"text\":\"marriage\",\"indices\":[168,177]},{\"text\":\"BambamSorry\",\"indices\":[178,190]},{\"text\":\"CommonwealthGames2022\",\"indices\":[191,213]},{\"text\":\"WEURO2022\",\"indices\":[214,224]},{\"text\":\"sabinus\",\"indices\":[225,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GwilK70XZu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/riyike001\\/status\\/1553758109100871680\",\"display_url\":\"twitter.com\\/riyike001\\/stat\\u2026\",\"indices\":[234,257]}]},\"3524\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[7,19]},{\"text\":\"CommonwealthGames2022\",\"indices\":[20,42]},{\"text\":\"Taiwan\",\"indices\":[43,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554186450261909506,\"id_str\":\"1554186450261909506\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"url\":\"https:\\/\\/t.co\\/dW10Gpztl4\",\"display_url\":\"pic.twitter.com\\/dW10Gpztl4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/haleemamusah\\/status\\/1554186459778801664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1112,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":369,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":652,\"h\":1200,\"resize\":\"fit\"}}}]},\"3525\":{\"hashtags\":[{\"text\":\"brandstrategy\",\"indices\":[103,117]},{\"text\":\"businessgrowth\",\"indices\":[118,133]},{\"text\":\"adennn\",\"indices\":[134,141]},{\"text\":\"brandidentity\",\"indices\":[142,156]},{\"text\":\"BambamSorry\",\"indices\":[157,169]},{\"text\":\"WWIII\",\"indices\":[170,176]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554185276821569539,\"id_str\":\"1554185276821569539\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"url\":\"https:\\/\\/t.co\\/fCK2E788IZ\",\"display_url\":\"pic.twitter.com\\/fCK2E788IZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdennnConsult\\/status\\/1554185285428191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"3526\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"sabinus\",\"indices\":[123,131]},{\"text\":\"Wizkidfc\",\"indices\":[206,215]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[253,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554183410318561286,\"id_str\":\"1554183410318561286\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"url\":\"https:\\/\\/t.co\\/CUBz7ldRnk\",\"display_url\":\"pic.twitter.com\\/CUBz7ldRnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554183475233693697\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":656,\"resize\":\"fit\"}}}]},\"3527\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"sabinus\",\"indices\":[182,190]},{\"text\":\"Wizkidfc\",\"indices\":[264,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554181811319742465,\"id_str\":\"1554181811319742465\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"url\":\"https:\\/\\/t.co\\/ZyiQgn4CTX\",\"display_url\":\"pic.twitter.com\\/ZyiQgn4CTX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554181881100472323\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"3528\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[58,63]},{\"text\":\"WWIII\",\"indices\":[64,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554175656929497089,\"id_str\":\"1554175656929497089\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"url\":\"https:\\/\\/t.co\\/X7rfQ2rEPP\",\"display_url\":\"pic.twitter.com\\/X7rfQ2rEPP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554175663430684679\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":568,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":601,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":601,\"resize\":\"fit\"}}}]},\"3529\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"kellybhadie\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fqpeLXBMMy\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/watch-full-sex-tape-of-togolese-tiktoker-bhadie-kellys-lookalike\\/\",\"display_url\":\"iexclusivenews.com.ng\\/watch-full-sex\\u2026\",\"indices\":[88,111]}]},\"3530\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554169038787452931,\"id_str\":\"1554169038787452931\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGEgaXWIAMf2rX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGEgaXWIAMf2rX.jpg\",\"url\":\"https:\\/\\/t.co\\/FLyhBuaBM0\",\"display_url\":\"pic.twitter.com\\/FLyhBuaBM0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zoeys_Mom74\\/status\\/1554169045934538752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3531\":{\"hashtags\":[{\"text\":\"loml\",\"indices\":[34,39]},{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"breastfeeding\",\"indices\":[48,62]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[63,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"Serbia\",\"indices\":[92,99]},{\"text\":\"WEURO2022\",\"indices\":[100,110]},{\"text\":\"August1st\",\"indices\":[111,121]},{\"text\":\"Asiwaju\",\"indices\":[122,130]},{\"text\":\"GetWellSoonJaehyun\",\"indices\":[131,150]},{\"text\":\"MondayMotivation\",\"indices\":[151,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554168940330459137,\"id_str\":\"1554168940330459137\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"url\":\"https:\\/\\/t.co\\/PLF3UKH9sI\",\"display_url\":\"pic.twitter.com\\/PLF3UKH9sI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olaadura4christ\\/status\\/1554168957476773888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3532\":{\"hashtags\":[{\"text\":\"learnoflix\",\"indices\":[132,143]},{\"text\":\"breastfeeding\",\"indices\":[157,171]},{\"text\":\"Taiwan\",\"indices\":[173,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3533\":{\"hashtags\":[{\"text\":\"NFTs\",\"indices\":[59,64]},{\"text\":\"Metaverse\",\"indices\":[65,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Favvs_luv\",\"name\":\"Favour Ekpot\",\"id\":1456211469431934982,\"id_str\":\"1456211469431934982\",\"indices\":[22,32]},{\"screen_name\":\"gifttedone\",\"name\":\"Gifttedone\",\"id\":1551879259358208000,\"id_str\":\"1551879259358208000\",\"indices\":[33,44]},{\"screen_name\":\"VitalieNFT\",\"name\":\"Vitalie The Bull\",\"id\":1355094671404494848,\"id_str\":\"1355094671404494848\",\"indices\":[45,56]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/g0kPuR0w81\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gameta_official\\/status\\/1554074466124062720\",\"display_url\":\"twitter.com\\/gameta_officia\\u2026\",\"indices\":[84,107]}]},\"3534\":{\"hashtags\":[{\"text\":\"inmymind\",\"indices\":[127,136]},{\"text\":\"breastfeeding\",\"indices\":[137,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"tweetviral\",\"indices\":[160,171]},{\"text\":\"TWICE\",\"indices\":[172,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3535\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"breastfeeding\",\"indices\":[136,150]},{\"text\":\"WEURO2022\",\"indices\":[151,161]},{\"text\":\"BBNajia\",\"indices\":[162,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554161997469700097,\"id_str\":\"1554161997469700097\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"url\":\"https:\\/\\/t.co\\/0sHsnO4v1A\",\"display_url\":\"pic.twitter.com\\/0sHsnO4v1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wildwestshoppin\\/status\\/1554162076708372480\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3536\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[31,41]},{\"text\":\"binance\",\"indices\":[42,50]},{\"text\":\"BBNaija\",\"indices\":[51,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554159191950086144,\"id_str\":\"1554159191950086144\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"url\":\"https:\\/\\/t.co\\/aXpX9C8mNH\",\"display_url\":\"pic.twitter.com\\/aXpX9C8mNH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1554159199227101185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"3537\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[44,53]},{\"text\":\"majikhub\",\"indices\":[54,63]},{\"text\":\"bbnaija\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"WEURO2022\",\"indices\":[81,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554158609285644290,\"id_str\":\"1554158609285644290\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"url\":\"https:\\/\\/t.co\\/lrJoRAaQRz\",\"display_url\":\"pic.twitter.com\\/lrJoRAaQRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_majikhub\\/status\\/1554158622007037960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3538\":{\"hashtags\":[{\"text\":\"August2022\",\"indices\":[73,84]},{\"text\":\"gratefulheart\",\"indices\":[85,99]},{\"text\":\"Bmadonna\",\"indices\":[100,109]},{\"text\":\"NFTGiveaway\",\"indices\":[112,124]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"EuroWomen2022\",\"indices\":[161,175]},{\"text\":\"EURO2022\",\"indices\":[176,185]},{\"text\":\"nft\",\"indices\":[186,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MfV62ryHqb\",\"expanded_url\":\"https:\\/\\/discord.gg\\/mZbUx4ygRN\",\"display_url\":\"discord.gg\\/mZbUx4ygRN\",\"indices\":[127,150]}],\"media\":[{\"id\":1554147085133512704,\"id_str\":\"1554147085133512704\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"url\":\"https:\\/\\/t.co\\/6923p84X0g\",\"display_url\":\"pic.twitter.com\\/6923p84X0g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialbmadona\\/status\\/1554148011684630528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1600,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3539\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"Pelosi\",\"indices\":[46,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jCtrQ7eZrr\",\"expanded_url\":\"https:\\/\\/asia.nikkei.com\\/Politics\\/International-relations\\/Indo-Pacific\\/U.S.-deploys-ships-and-planes-near-Taiwan-as-Pelosi-eyes-visit\",\"display_url\":\"asia.nikkei.com\\/Politics\\/Inter\\u2026\",\"indices\":[66,89]}]},\"3540\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[112,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"USA\",\"indices\":[133,137]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O3iw8rNJiM\",\"expanded_url\":\"https:\\/\\/www.wsj.com\\/articles\\/nancy-pelosi-begins-asian-tour-in-singapore-as-china-again-warns-against-visiting-taiwan-11659358264\",\"display_url\":\"wsj.com\\/articles\\/nancy\\u2026\",\"indices\":[195,218]}]},\"3541\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[20,32]},{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"WEURO2022\",\"indices\":[41,51]},{\"text\":\"breastfeeding\",\"indices\":[52,66]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[67,87]},{\"text\":\"Serbia\",\"indices\":[88,95]},{\"text\":\"Kosovo\",\"indices\":[96,103]},{\"text\":\"JACKBAM_KPOPMASTERZBKK\",\"indices\":[104,127]},{\"text\":\"Machala\",\"indices\":[128,136]},{\"text\":\"BambamSorry\",\"indices\":[137,149]},{\"text\":\"ENGGER\",\"indices\":[150,157]},{\"text\":\"BLACKPINK\",\"indices\":[158,168]},{\"text\":\"qanda\",\"indices\":[169,175]},{\"text\":\"bachelorette\",\"indices\":[176,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554135843866087425,\"id_str\":\"1554135843866087425\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}}]},\"3542\":{\"hashtags\":[{\"text\":\"AgroMarketSquare\",\"indices\":[126,143]},{\"text\":\"newmonth\",\"indices\":[144,153]},{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"Agriculture\",\"indices\":[162,174]},{\"text\":\"AgroLife\",\"indices\":[175,184]},{\"text\":\"Agriculture\",\"indices\":[185,197]},{\"text\":\"foods\",\"indices\":[198,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554134920573902849,\"id_str\":\"1554134920573902849\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"url\":\"https:\\/\\/t.co\\/C4Lj4tJjjI\",\"display_url\":\"pic.twitter.com\\/C4Lj4tJjjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/agromarketsquar\\/status\\/1554134928413134848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3543\":{\"hashtags\":[{\"text\":\"NaijaBet\",\"indices\":[135,144]},{\"text\":\"WEURO2022\",\"indices\":[145,155]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Transfers\",\"indices\":[164,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Santi_J_FM\",\"name\":\"Santi Aouna\",\"id\":1199736038874324993,\"id_str\":\"1199736038874324993\",\"indices\":[120,131]}],\"urls\":[],\"media\":[{\"id\":1554127197891428352,\"id_str\":\"1554127197891428352\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"url\":\"https:\\/\\/t.co\\/brnptiS1U6\",\"display_url\":\"pic.twitter.com\\/brnptiS1U6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554127208016379906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":816,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1392,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":462,\"resize\":\"fit\"}}}]},\"3544\":{\"hashtags\":[{\"text\":\"PlayingWithFire\",\"indices\":[0,16]},{\"text\":\"US\",\"indices\":[18,21]},{\"text\":\"China\",\"indices\":[22,28]},{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dFSsCYKxhG\",\"expanded_url\":\"https:\\/\\/www.rt.com\\/news\\/560008-china-ready-to-fight\\/\",\"display_url\":\"rt.com\\/news\\/560008-ch\\u2026\",\"indices\":[80,103]}]},\"3545\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[59,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"BBNaija\",\"indices\":[80,88]},{\"text\":\"WEURO2022\",\"indices\":[89,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554124578724761603,\"id_str\":\"1554124578724761603\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"url\":\"https:\\/\\/t.co\\/HyV09hKL85\",\"display_url\":\"pic.twitter.com\\/HyV09hKL85\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554124771629174786\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3546\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[171,175]},{\"text\":\"artcollector\",\"indices\":[176,189]},{\"text\":\"artprint\",\"indices\":[190,199]},{\"text\":\"walldeco\",\"indices\":[200,209]},{\"text\":\"nft\",\"indices\":[210,214]},{\"text\":\"japancollector\",\"indices\":[215,230]},{\"text\":\"WEURO2022\",\"indices\":[231,241]},{\"text\":\"drawing\",\"indices\":[242,250]},{\"text\":\"design\",\"indices\":[251,258]},{\"text\":\"Taiwan\",\"indices\":[259,266]},{\"text\":\"HOBIPALOOZA\",\"indices\":[267,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vw3P0wsMj4\",\"expanded_url\":\"http:\\/\\/otobong-johnson.pixels.com\",\"display_url\":\"otobong-johnson.pixels.com\",\"indices\":[147,170]}],\"media\":[{\"id\":1554123346412961792,\"id_str\":\"1554123346412961792\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":456,\"resize\":\"fit\"}}}]},\"3547\":{\"hashtags\":[{\"text\":\"jhopeAtLollapalooza\",\"indices\":[132,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554122608614014978,\"id_str\":\"1554122608614014978\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"url\":\"https:\\/\\/t.co\\/LXSlna9e0M\",\"display_url\":\"pic.twitter.com\\/LXSlna9e0M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554122616927125504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"medium\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":443,\"resize\":\"fit\"}}}]},\"3548\":{\"hashtags\":[{\"text\":\"Modellabbn\",\"indices\":[15,26]},{\"text\":\"WEURO2022\",\"indices\":[46,56]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"Nigerian\",\"indices\":[66,75]},{\"text\":\"breastfeeding\",\"indices\":[76,90]},{\"text\":\"BBNaija\",\"indices\":[91,99]},{\"text\":\"BBNaija\",\"indices\":[101,109]},{\"text\":\"BBC\",\"indices\":[111,115]},{\"text\":\"BBNajiaS7\",\"indices\":[116,126]},{\"text\":\"BBNaija2022\",\"indices\":[127,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554119089995632640,\"id_str\":\"1554119089995632640\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"url\":\"https:\\/\\/t.co\\/alddff8jzd\",\"display_url\":\"pic.twitter.com\\/alddff8jzd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/modellabbn\\/status\\/1554119100007333888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":848,\"resize\":\"fit\"}}}]},\"3549\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"Sweden\",\"indices\":[208,215]},{\"text\":\"WEuro2022Final\",\"indices\":[216,231]},{\"text\":\"100DaysOfCode\",\"indices\":[232,246]},{\"text\":\"1000xgem\",\"indices\":[247,256]},{\"text\":\"100T\",\"indices\":[257,262]},{\"text\":\"WEURO2022\",\"indices\":[263,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3550\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[167,179]},{\"text\":\"WEURO2022\",\"indices\":[180,190]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"100DaysOfCode\",\"indices\":[199,213]},{\"text\":\"Taiwan\",\"indices\":[214,221]},{\"text\":\"breastfeeding\",\"indices\":[222,236]},{\"text\":\"Serbia\",\"indices\":[237,244]},{\"text\":\"1000xgem\",\"indices\":[245,254]},{\"text\":\"Bitcoin\",\"indices\":[255,263]},{\"text\":\"JHOPE\",\"indices\":[264,270]},{\"text\":\"Browns\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3551\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[187,212]},{\"text\":\"taiwan\",\"indices\":[213,220]},{\"text\":\"BBNaija\",\"indices\":[221,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3552\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"gistloverstory\",\"indices\":[172,187]},{\"text\":\"StopSellingPi\",\"indices\":[188,202]},{\"text\":\"lekki\",\"indices\":[210,216]},{\"text\":\"breastfeeding\",\"indices\":[260,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i1f6XamVxK\",\"expanded_url\":\"https:\\/\\/buff.ly\\/3oLBULg\",\"display_url\":\"buff.ly\\/3oLBULg\",\"indices\":[66,89]}]},\"3553\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mikepompeo\",\"name\":\"Mike Pompeo\",\"id\":1163992520252153857,\"id_str\":\"1163992520252153857\",\"indices\":[122,133]},{\"screen_name\":\"ScottPresler\",\"name\":\"#ThePersistence\",\"id\":931286316,\"id_str\":\"931286316\",\"indices\":[144,157]}],\"urls\":[]},\"3554\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[109,121]},{\"text\":\"ChinaTaiwan\",\"indices\":[122,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3555\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3556\":{\"hashtags\":[{\"text\":\"MEMECOIN\",\"indices\":[66,75]},{\"text\":\"MarvinInu\",\"indices\":[85,95]},{\"text\":\"1000Xgems\",\"indices\":[191,201]},{\"text\":\"Taiwan\",\"indices\":[202,209]},{\"text\":\"WEURO2022\",\"indices\":[210,220]},{\"text\":\"Kosovo\",\"indices\":[221,228]},{\"text\":\"BNB\",\"indices\":[229,233]},{\"text\":\"BBNaija\",\"indices\":[234,242]},{\"text\":\"btc\",\"indices\":[243,247]},{\"text\":\"MarvinInu\",\"indices\":[248,258]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[156,163]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[179,190]}],\"urls\":[],\"media\":[{\"id\":1554094295795351552,\"id_str\":\"1554094295795351552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"url\":\"https:\\/\\/t.co\\/xPmn2jesjy\",\"display_url\":\"pic.twitter.com\\/xPmn2jesjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554094314493468674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"3557\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[55,62]},{\"text\":\"JHOPE\",\"indices\":[63,69]},{\"text\":\"WEURO2022\",\"indices\":[70,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zholntUazT\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/artist\\/1nd0MuNcrmdHzdYgN9wGuR?si=GjEA5Jf0QpODzt1KZQMVVw\",\"display_url\":\"open.spotify.com\\/artist\\/1nd0MuN\\u2026\",\"indices\":[0,23]}]},\"3558\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"Asiwaju\",\"indices\":[148,156]},{\"text\":\"SolanaNFT\",\"indices\":[157,167]},{\"text\":\"breastfeeding\",\"indices\":[237,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qDHdUtiSc7\",\"expanded_url\":\"https:\\/\\/wa.me\\/+2348140491420\",\"display_url\":\"wa.me\\/+2348140491420\",\"indices\":[90,113]}]},\"3559\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[76,81]},{\"text\":\"BTC\",\"indices\":[214,218]},{\"text\":\"PiNetwork\",\"indices\":[219,229]},{\"text\":\"CORE\",\"indices\":[230,235]},{\"text\":\"HOBIPALOOZA\",\"indices\":[236,248]},{\"text\":\"JHOPE\",\"indices\":[250,256]},{\"text\":\"BBNaija7\",\"indices\":[257,266]},{\"text\":\"StopSellingPi\",\"indices\":[267,281]},{\"text\":\"Taiwan\",\"indices\":[282,289]},{\"text\":\"ASUU\",\"indices\":[290,295]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"pinetwork_world\",\"name\":\"Pi Network World \\u03c0\",\"id\":1491584644394799105,\"id_str\":\"1491584644394799105\",\"indices\":[0,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[190,213]}]},\"3560\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[71,76]},{\"text\":\"BTC\",\"indices\":[209,213]},{\"text\":\"PiNetwork\",\"indices\":[214,224]},{\"text\":\"CORE\",\"indices\":[225,230]},{\"text\":\"HOBIPALOOZA\",\"indices\":[231,243]},{\"text\":\"JHOPE\",\"indices\":[245,251]},{\"text\":\"BBNaija7\",\"indices\":[253,262]},{\"text\":\"BambamSorry\",\"indices\":[263,275]},{\"text\":\"Taiwan\",\"indices\":[276,283]},{\"text\":\"ASUU\",\"indices\":[284,289]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"khollyjhay\",\"name\":\"Jayeola Kolade Opeyemi {\\u03c0} \\ud83c\\udf0d\",\"id\":1394047838942744581,\"id_str\":\"1394047838942744581\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[185,208]}],\"media\":[{\"id\":1554085980403126273,\"id_str\":\"1554085980403126273\",\"indices\":[290,313],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"url\":\"https:\\/\\/t.co\\/d36ETfc2is\",\"display_url\":\"pic.twitter.com\\/d36ETfc2is\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085998321192961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3561\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[70,75]},{\"text\":\"BTC\",\"indices\":[208,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"CORE\",\"indices\":[224,229]},{\"text\":\"HOBIPALOOZA\",\"indices\":[230,242]},{\"text\":\"JHOPE\",\"indices\":[244,250]},{\"text\":\"BBNaija7\",\"indices\":[252,261]},{\"text\":\"BambamSorry\",\"indices\":[262,274]},{\"text\":\"Taiwan\",\"indices\":[275,282]},{\"text\":\"ASUU\",\"indices\":[283,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"99tension\",\"name\":\"tension \\u26a1\\ud83d\\udd25\",\"id\":1524698434200031232,\"id_str\":\"1524698434200031232\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[184,207]}],\"media\":[{\"id\":1554085798483578881,\"id_str\":\"1554085798483578881\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"url\":\"https:\\/\\/t.co\\/JON6RErm7P\",\"display_url\":\"pic.twitter.com\\/JON6RErm7P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085812974899202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3562\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[70,75]},{\"text\":\"BTC\",\"indices\":[208,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"CORE\",\"indices\":[224,229]},{\"text\":\"HOBIPALOOZA\",\"indices\":[230,242]},{\"text\":\"JHOPE\",\"indices\":[244,250]},{\"text\":\"BBNaija7\",\"indices\":[252,261]},{\"text\":\"BambamSorry\",\"indices\":[262,274]},{\"text\":\"Taiwan\",\"indices\":[275,282]},{\"text\":\"ASUU\",\"indices\":[283,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"___Chachi\",\"name\":\"Chachi\",\"id\":1177976672785764353,\"id_str\":\"1177976672785764353\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[184,207]}],\"media\":[{\"id\":1554085414822187009,\"id_str\":\"1554085414822187009\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"url\":\"https:\\/\\/t.co\\/edeuEUUKmE\",\"display_url\":\"pic.twitter.com\\/edeuEUUKmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085432538841090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3563\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[74,79]},{\"text\":\"BTC\",\"indices\":[212,216]},{\"text\":\"PiNetwork\",\"indices\":[217,227]},{\"text\":\"CORE\",\"indices\":[228,233]},{\"text\":\"HOBIPALOOZA\",\"indices\":[234,246]},{\"text\":\"JHOPE\",\"indices\":[248,254]},{\"text\":\"BBNaija7\",\"indices\":[256,265]},{\"text\":\"BambamSorry\",\"indices\":[266,278]},{\"text\":\"Taiwan\",\"indices\":[279,286]},{\"text\":\"ASUU\",\"indices\":[287,292]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"firstladyship\",\"name\":\"NEFERTITI\",\"id\":201237617,\"id_str\":\"201237617\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[188,211]}],\"media\":[{\"id\":1554085337202393093,\"id_str\":\"1554085337202393093\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"url\":\"https:\\/\\/t.co\\/0Wp9yQ0JHO\",\"display_url\":\"pic.twitter.com\\/0Wp9yQ0JHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085368139583489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3564\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[74,79]},{\"text\":\"BTC\",\"indices\":[212,216]},{\"text\":\"PiNetwork\",\"indices\":[217,227]},{\"text\":\"CORE\",\"indices\":[228,233]},{\"text\":\"HOBIPALOOZA\",\"indices\":[234,246]},{\"text\":\"JHOPE\",\"indices\":[248,254]},{\"text\":\"BBNaija7\",\"indices\":[256,265]},{\"text\":\"BambamSorry\",\"indices\":[266,278]},{\"text\":\"Taiwan\",\"indices\":[279,286]},{\"text\":\"ASUU\",\"indices\":[287,292]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VictorIsrael_\",\"name\":\"Chlorpheniramine #EndSARS \\ud83c\\uddf3\\ud83c\\uddec\",\"id\":989234511362879488,\"id_str\":\"989234511362879488\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[188,211]}],\"media\":[{\"id\":1554085254452871169,\"id_str\":\"1554085254452871169\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/yiAW9zI1nH\",\"display_url\":\"pic.twitter.com\\/yiAW9zI1nH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085268386447361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3565\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[72,77]},{\"text\":\"BTC\",\"indices\":[210,214]},{\"text\":\"PiNetwork\",\"indices\":[215,225]},{\"text\":\"CORE\",\"indices\":[226,231]},{\"text\":\"HOBIPALOOZA\",\"indices\":[232,244]},{\"text\":\"JHOPE\",\"indices\":[246,252]},{\"text\":\"BBNaija7\",\"indices\":[254,263]},{\"text\":\"BambamSorry\",\"indices\":[264,276]},{\"text\":\"Taiwan\",\"indices\":[277,284]},{\"text\":\"ASUU\",\"indices\":[285,290]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_Just_Malik\",\"name\":\"\\ud835\\udc0c\\ud835\\udc1a\\ud835\\udc25\\ud835\\udc22\\ud835\\udc24 \\u2728\",\"id\":1508516530589425669,\"id_str\":\"1508516530589425669\",\"indices\":[0,12]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[186,209]}],\"media\":[{\"id\":1554085161104449537,\"id_str\":\"1554085161104449537\",\"indices\":[291,314],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6maa8aNF7\",\"display_url\":\"pic.twitter.com\\/Y6maa8aNF7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085193945849858\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3566\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[70,75]},{\"text\":\"BTC\",\"indices\":[208,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"CORE\",\"indices\":[224,229]},{\"text\":\"HOBIPALOOZA\",\"indices\":[230,242]},{\"text\":\"JHOPE\",\"indices\":[244,250]},{\"text\":\"BBNaija7\",\"indices\":[252,261]},{\"text\":\"BambamSorry\",\"indices\":[262,274]},{\"text\":\"Taiwan\",\"indices\":[275,282]},{\"text\":\"ASUU\",\"indices\":[283,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"oou_prime\",\"name\":\"PRIME \\ud83d\\udca5\",\"id\":1053790262017904640,\"id_str\":\"1053790262017904640\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[184,207]}],\"media\":[{\"id\":1554085056712515585,\"id_str\":\"1554085056712515585\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"url\":\"https:\\/\\/t.co\\/Kelu2VUCKU\",\"display_url\":\"pic.twitter.com\\/Kelu2VUCKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085067063967744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3567\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[71,76]},{\"text\":\"BTC\",\"indices\":[209,213]},{\"text\":\"PiNetwork\",\"indices\":[214,224]},{\"text\":\"CORE\",\"indices\":[225,230]},{\"text\":\"HOBIPALOOZA\",\"indices\":[231,243]},{\"text\":\"JHOPE\",\"indices\":[245,251]},{\"text\":\"BBNaija7\",\"indices\":[253,262]},{\"text\":\"BambamSorry\",\"indices\":[263,275]},{\"text\":\"Taiwan\",\"indices\":[276,283]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FilmmeTalk\",\"name\":\"Filmme Talk\",\"id\":1493758776540684289,\"id_str\":\"1493758776540684289\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[185,208]}],\"media\":[{\"id\":1554084700276379651,\"id_str\":\"1554084700276379651\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"url\":\"https:\\/\\/t.co\\/k9Dya2b4UL\",\"display_url\":\"pic.twitter.com\\/k9Dya2b4UL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084711147995137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3568\":{\"hashtags\":[{\"text\":\"BTCs\",\"indices\":[76,81]},{\"text\":\"BTC\",\"indices\":[214,218]},{\"text\":\"PiNetwork\",\"indices\":[219,229]},{\"text\":\"CORE\",\"indices\":[230,235]},{\"text\":\"HOBIPALOOZA\",\"indices\":[236,248]},{\"text\":\"JHOPE\",\"indices\":[250,256]},{\"text\":\"BBNaija7\",\"indices\":[258,267]},{\"text\":\"BambamSorry\",\"indices\":[268,280]},{\"text\":\"Taiwan\",\"indices\":[281,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"danielaflorezz_\",\"name\":\"\\ud835\\udc6b.\",\"id\":1369459769535197188,\"id_str\":\"1369459769535197188\",\"indices\":[0,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DsbF5MWAc8\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/3q2v2\",\"display_url\":\"btcs.love\\/invite\\/3q2v2\",\"indices\":[190,213]}],\"media\":[{\"id\":1554084525629743111,\"id_str\":\"1554084525629743111\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"url\":\"https:\\/\\/t.co\\/O7sl5TBlhn\",\"display_url\":\"pic.twitter.com\\/O7sl5TBlhn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084536727863387\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3569\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[21,29]},{\"text\":\"breastfeeding\",\"indices\":[30,44]},{\"text\":\"TREASURE\",\"indices\":[45,54]},{\"text\":\"Ukraine\",\"indices\":[55,63]},{\"text\":\"JHOPE\",\"indices\":[64,70]},{\"text\":\"Khalid\",\"indices\":[71,78]},{\"text\":\"Modella\",\"indices\":[79,87]},{\"text\":\"BellaOkagbue\",\"indices\":[88,101]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[102,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"Kosovo\",\"indices\":[131,138]},{\"text\":\"Serbia\",\"indices\":[139,146]},{\"text\":\"LalSinghChaddha\",\"indices\":[147,163]},{\"text\":\"SuzukiPakistan\",\"indices\":[164,179]},{\"text\":\"TXTPALOOZA\",\"indices\":[180,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554078882810191879,\"id_str\":\"1554078882810191879\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"url\":\"https:\\/\\/t.co\\/b9gCgh80hJ\",\"display_url\":\"pic.twitter.com\\/b9gCgh80hJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ocheene\\/status\\/1554079628473602049\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"3570\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[17,23]},{\"text\":\"Taiwan\",\"indices\":[48,55]},{\"text\":\"US\",\"indices\":[91,94]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"anthony51483709\",\"name\":\"anthony\",\"id\":1292522229209726977,\"id_str\":\"1292522229209726977\",\"indices\":[0,16]}],\"urls\":[]},\"3571\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[163,173]},{\"text\":\"garner\",\"indices\":[175,182]},{\"text\":\"StopSellingPi\",\"indices\":[184,198]},{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"NYSC\",\"indices\":[209,214]},{\"text\":\"Fofana\",\"indices\":[215,222]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[224,249]},{\"text\":\"OBIDIENTS\",\"indices\":[251,261]},{\"text\":\"zulum\",\"indices\":[263,269]},{\"text\":\"Southeast\",\"indices\":[270,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554074786254430213,\"id_str\":\"1554074786254430213\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"url\":\"https:\\/\\/t.co\\/guCA89QtKv\",\"display_url\":\"pic.twitter.com\\/guCA89QtKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554074794538291201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3572\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[155,160]},{\"text\":\"Carterefe\",\"indices\":[162,172]},{\"text\":\"garner\",\"indices\":[174,181]},{\"text\":\"StopSellingPi\",\"indices\":[183,197]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"NYSC\",\"indices\":[208,213]},{\"text\":\"Fofana\",\"indices\":[214,221]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[223,248]},{\"text\":\"OBIDIENTS\",\"indices\":[250,260]},{\"text\":\"zulum\",\"indices\":[262,268]},{\"text\":\"Southeast\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554072685868728322,\"id_str\":\"1554072685868728322\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"url\":\"https:\\/\\/t.co\\/3IGUplY2N4\",\"display_url\":\"pic.twitter.com\\/3IGUplY2N4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554072695142338561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3573\":{\"hashtags\":[{\"text\":\"jhopeAtLollapalooza\",\"indices\":[82,102]},{\"text\":\"BBNaija\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"Kosovo\",\"indices\":[120,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"flyairpeace\",\"name\":\"Air Peace\",\"id\":2364221636,\"id_str\":\"2364221636\",\"indices\":[0,12]}],\"urls\":[]},\"3574\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[49,58]},{\"text\":\"breastfeeding\",\"indices\":[59,73]},{\"text\":\"BORNPINK\",\"indices\":[74,83]},{\"text\":\"HOBIPALOOZA\",\"indices\":[84,96]},{\"text\":\"StopRussiaNOW\",\"indices\":[97,111]},{\"text\":\"StopSellingPi\",\"indices\":[112,126]},{\"text\":\"Tembisashutdown\",\"indices\":[127,143]},{\"text\":\"Ilebaye\",\"indices\":[144,152]},{\"text\":\"wizkidfc\",\"indices\":[153,162]},{\"text\":\"Serbia\",\"indices\":[163,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"BeautyTukura\",\"indices\":[179,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554056415291080704,\"id_str\":\"1554056415291080704\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3575\":{\"hashtags\":[{\"text\":\"artcollector\",\"indices\":[70,83]},{\"text\":\"nft\",\"indices\":[84,88]},{\"text\":\"art\",\"indices\":[89,93]},{\"text\":\"Taiwan\",\"indices\":[103,110]},{\"text\":\"obo\",\"indices\":[111,115]},{\"text\":\"nfthub\",\"indices\":[116,123]},{\"text\":\"fineartamerica\",\"indices\":[124,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[94,102]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vw3P0wsMj4\",\"expanded_url\":\"http:\\/\\/otobong-johnson.pixels.com\",\"display_url\":\"otobong-johnson.pixels.com\",\"indices\":[142,165]}]},\"3576\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[20,29]},{\"text\":\"August2022\",\"indices\":[30,41]},{\"text\":\"Taiwan\",\"indices\":[42,49]},{\"text\":\"AugustWish\",\"indices\":[50,61]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554037122063126528,\"id_str\":\"1554037122063126528\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"url\":\"https:\\/\\/t.co\\/TP3THbcurf\",\"display_url\":\"pic.twitter.com\\/TP3THbcurf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HoftDevelopers\\/status\\/1554037139071025155\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3577\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"HOBIPALOOZA\",\"indices\":[32,44]},{\"text\":\"Trending\",\"indices\":[45,54]},{\"text\":\"WEURO2022\",\"indices\":[55,65]},{\"text\":\"TrendingNow\",\"indices\":[66,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554036339481497601,\"id_str\":\"1554036339481497601\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"url\":\"https:\\/\\/t.co\\/Qpkfw5I2oz\",\"display_url\":\"pic.twitter.com\\/Qpkfw5I2oz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Survival690\\/status\\/1554036352378888192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3578\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[155,164]},{\"text\":\"HOBIPALOOZA\",\"indices\":[165,177]},{\"text\":\"Serbia\",\"indices\":[178,185]},{\"text\":\"Taiwan\",\"indices\":[186,193]},{\"text\":\"BLACKPINK\",\"indices\":[194,204]},{\"text\":\"breastfeeding\",\"indices\":[205,219]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"youngbobby4real\",\"name\":\"Young Bobby\",\"id\":1138159680570740736,\"id_str\":\"1138159680570740736\",\"indices\":[56,72]}],\"urls\":[],\"media\":[{\"id\":1554030435428192258,\"id_str\":\"1554030435428192258\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"url\":\"https:\\/\\/t.co\\/U2kEVZJVPo\",\"display_url\":\"pic.twitter.com\\/U2kEVZJVPo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legitinfong\\/status\\/1554030867332431873\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3579\":{\"hashtags\":[{\"text\":\"newmonth\",\"indices\":[113,122]},{\"text\":\"New\",\"indices\":[123,127]},{\"text\":\"breastfeeding\",\"indices\":[128,142]},{\"text\":\"HOBIPALOOZA\",\"indices\":[143,155]},{\"text\":\"Serbia\",\"indices\":[156,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"BLACKPINK\",\"indices\":[172,182]},{\"text\":\"BBNaija7\",\"indices\":[183,192]},{\"text\":\"kpss2022\",\"indices\":[193,202]},{\"text\":\"Lollapalooza\",\"indices\":[203,216]},{\"text\":\"\\ub108\\ud76c\\uacc1\\uc5d0_STAY\\ud55c\\uc9c0_4\\ub144\",\"indices\":[217,232]},{\"text\":\"TaapseePannu\",\"indices\":[233,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554029463196811266,\"id_str\":\"1554029463196811266\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"url\":\"https:\\/\\/t.co\\/JscPy4y8kZ\",\"display_url\":\"pic.twitter.com\\/JscPy4y8kZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostolicGraceN\\/status\\/1554029474986991618\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3580\":{\"hashtags\":[{\"text\":\"HOBIPALOOZA\",\"indices\":[109,121]},{\"text\":\"Serbia\",\"indices\":[122,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"breastfeeding\",\"indices\":[138,152]},{\"text\":\"vawulence\",\"indices\":[153,163]},{\"text\":\"vawulenceTv\",\"indices\":[164,176]},{\"text\":\"vawulenceHQ\",\"indices\":[177,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554027337997602816,\"id_str\":\"1554027337997602816\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"url\":\"https:\\/\\/t.co\\/RhFri0ZtWW\",\"display_url\":\"pic.twitter.com\\/RhFri0ZtWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554027348588216324\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":269,\"resize\":\"fit\"}}}]},\"3581\":{\"hashtags\":[{\"text\":\"WEURO2022\",\"indices\":[47,57]},{\"text\":\"Kosovo\",\"indices\":[58,65]},{\"text\":\"Abuja\",\"indices\":[66,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BLACKPINK\",\"indices\":[81,91]},{\"text\":\"August\",\"indices\":[92,99]},{\"text\":\"breastfeeding\",\"indices\":[100,114]},{\"text\":\"Serbia\",\"indices\":[115,122]},{\"text\":\"JHOPE\",\"indices\":[123,129]},{\"text\":\"BamBam\",\"indices\":[130,137]},{\"text\":\"MissUniverseThailand2022\",\"indices\":[138,163]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[164,186]},{\"text\":\"BBNajia\",\"indices\":[187,195]},{\"text\":\"bbnaija\",\"indices\":[196,204]},{\"text\":\"Bbnaija\",\"indices\":[205,213]},{\"text\":\"newmonth\",\"indices\":[214,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554026497995788289,\"id_str\":\"1554026497995788289\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"url\":\"https:\\/\\/t.co\\/5sJUGqLYM3\",\"display_url\":\"pic.twitter.com\\/5sJUGqLYM3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BnBhairsalon\\/status\\/1554026517906083841\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":360,\"resize\":\"fit\"}}}]},\"3582\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[224,233]},{\"text\":\"Taiwan\",\"indices\":[234,241]},{\"text\":\"GistLoverStory\",\"indices\":[252,267]},{\"text\":\"Nigeria\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[242,251]}],\"urls\":[]},\"3583\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[55,63]},{\"text\":\"jhopeAtLollapalooza\",\"indices\":[65,85]},{\"text\":\"StopSellingPi\",\"indices\":[87,101]},{\"text\":\"Serbia\",\"indices\":[103,110]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553980665665814528,\"id_str\":\"1553980665665814528\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"url\":\"https:\\/\\/t.co\\/5ax4aWy7WO\",\"display_url\":\"pic.twitter.com\\/5ax4aWy7WO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1553980672951422976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"3584\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[0,12]},{\"text\":\"Taiwan\",\"indices\":[22,29]},{\"text\":\"PatrickLeahy\",\"indices\":[37,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553848333302501376,\"id_str\":\"1553848333302501376\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"url\":\"https:\\/\\/t.co\\/vsETtshyt3\",\"display_url\":\"pic.twitter.com\\/vsETtshyt3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553848334531457026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"3585\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[4,16]},{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"China\",\"indices\":[78,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553830980439326721,\"id_str\":\"1553830980439326721\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"url\":\"https:\\/\\/t.co\\/MS2xpI5o0k\",\"display_url\":\"pic.twitter.com\\/MS2xpI5o0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553830981844406273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"3586\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"China\",\"indices\":[84,90]},{\"text\":\"US\",\"indices\":[91,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3587\":{\"hashtags\":[{\"text\":\"beats\",\"indices\":[65,71]},{\"text\":\"beats4sale\",\"indices\":[72,83]},{\"text\":\"beatsbydre\",\"indices\":[84,95]},{\"text\":\"beatsforrappers\",\"indices\":[96,112]},{\"text\":\"beatsforsale\",\"indices\":[113,126]},{\"text\":\"beatsheadphones\",\"indices\":[127,143]},{\"text\":\"beatstars\",\"indices\":[144,154]},{\"text\":\"chelsea\",\"indices\":[155,163]},{\"text\":\"drdre\",\"indices\":[164,170]},{\"text\":\"fingerdrumming\",\"indices\":[171,186]},{\"text\":\"freebeats\",\"indices\":[187,197]},{\"text\":\"gym\",\"indices\":[198,202]},{\"text\":\"gymlife\",\"indices\":[203,211]},{\"text\":\"gymmotivation\",\"indices\":[212,226]},{\"text\":\"gymrat\",\"indices\":[227,234]},{\"text\":\"headphone\",\"indices\":[235,245]},{\"text\":\"headphones\",\"indices\":[246,257]},{\"text\":\"hiphopbeats\",\"indices\":[258,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MeZl1xCmvn\",\"expanded_url\":\"https:\\/\\/youtu.be\\/mcHHyPBNx-Y\",\"display_url\":\"youtu.be\\/mcHHyPBNx-Y\",\"indices\":[31,54]}],\"media\":[{\"id\":1553749726608216074,\"id_str\":\"1553749726608216074\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"url\":\"https:\\/\\/t.co\\/cS2Fw2TBPr\",\"display_url\":\"pic.twitter.com\\/cS2Fw2TBPr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k_endox\\/status\\/1553749966664916992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3588\":{\"hashtags\":[{\"text\":\"NFS\",\"indices\":[75,79]},{\"text\":\"SummerSlam\",\"indices\":[83,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[103,125]},{\"text\":\"FreakyGirl\",\"indices\":[126,137]},{\"text\":\"kpss2022\",\"indices\":[138,147]},{\"text\":\"binance\",\"indices\":[148,156]},{\"text\":\"2023Elections\",\"indices\":[157,171]},{\"text\":\"GetYourPVC\",\"indices\":[172,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553749043259604993,\"id_str\":\"1553749043259604993\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"url\":\"https:\\/\\/t.co\\/XVtQ6tcN06\",\"display_url\":\"pic.twitter.com\\/XVtQ6tcN06\",\"expanded_url\":\"https:\\/\\/twitter.com\\/11signofficial\\/status\\/1553749106207739904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":868,\"resize\":\"fit\"},\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":868,\"resize\":\"fit\"}}}]},\"3589\":{\"hashtags\":[{\"text\":\"earthquake\",\"indices\":[178,189]},{\"text\":\"SummerSlam\",\"indices\":[190,201]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[202,224]},{\"text\":\"binance\",\"indices\":[225,233]},{\"text\":\"sundayvibes\",\"indices\":[234,246]},{\"text\":\"Taiwan\",\"indices\":[247,254]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[255,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[166,175]}],\"urls\":[],\"media\":[{\"id\":1553747881600974848,\"id_str\":\"1553747881600974848\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"url\":\"https:\\/\\/t.co\\/7TGcKQpHd2\",\"display_url\":\"pic.twitter.com\\/7TGcKQpHd2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gava34\\/status\\/1553747889687609351\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"}}}]},\"3590\":{\"hashtags\":[{\"text\":\"VoicenoteByTClassic\",\"indices\":[0,20]},{\"text\":\"FanBantsOzoOut\",\"indices\":[21,36]},{\"text\":\"PastorKumuyiSaid\",\"indices\":[37,54]},{\"text\":\"wearethenew\",\"indices\":[112,124]},{\"text\":\"Solana\",\"indices\":[154,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"BBNaija7\",\"indices\":[170,179]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[180,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3591\":{\"hashtags\":[{\"text\":\"100DaysOfCode\",\"indices\":[122,136]},{\"text\":\"Lekki\",\"indices\":[137,143]},{\"text\":\"Tinubu\",\"indices\":[144,151]},{\"text\":\"Itachi\",\"indices\":[152,159]},{\"text\":\"NairaMarley\",\"indices\":[160,172]},{\"text\":\"Uber\",\"indices\":[173,178]},{\"text\":\"BBNaija\",\"indices\":[179,187]},{\"text\":\"ivanatrump\",\"indices\":[188,199]},{\"text\":\"Black\",\"indices\":[200,206]},{\"text\":\"Chelsea\",\"indices\":[207,215]},{\"text\":\"Yorubas\",\"indices\":[216,224]},{\"text\":\"Daniella\",\"indices\":[225,234]},{\"text\":\"PrinceCharles\",\"indices\":[235,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"Esther\",\"indices\":[258,265]},{\"text\":\"Vicepresident\",\"indices\":[266,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Emmanuelbest506\",\"name\":\"\\ud83d\\udcaf\\ud83d\\udcaf@BILLION_CODE_ODDS\\ud83d\\udcaf\",\"id\":1262742428508798977,\"id_str\":\"1262742428508798977\",\"indices\":[59,75]}],\"urls\":[],\"media\":[{\"id\":1553736211000446978,\"id_str\":\"1553736211000446978\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"url\":\"https:\\/\\/t.co\\/FXjOwhXEjI\",\"display_url\":\"pic.twitter.com\\/FXjOwhXEjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hagusokayson\\/status\\/1553736217761648640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":370,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":653,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":696,\"h\":1280,\"resize\":\"fit\"}}}]},\"3592\":{\"hashtags\":[{\"text\":\"letGodBetheJudge\",\"indices\":[86,103]},{\"text\":\"JudgementDay\",\"indices\":[105,118]},{\"text\":\"RENAISSANCE\",\"indices\":[120,132]},{\"text\":\"Four4HorseMen\",\"indices\":[134,148]},{\"text\":\"BBNaija7\",\"indices\":[150,159]},{\"text\":\"China\",\"indices\":[161,167]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"TheBustwizeConspiracy\",\"indices\":[180,202]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[204,226]},{\"text\":\"PastorKumuyiSaid\",\"indices\":[228,245]},{\"text\":\"SUNCOV\",\"indices\":[247,254]},{\"text\":\"CommonwealthGames2022\",\"indices\":[256,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3593\":{\"hashtags\":[{\"text\":\"DesireCapitalsLimited\",\"indices\":[135,157]},{\"text\":\"SummerSlam\",\"indices\":[159,170]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"BBNaija7\",\"indices\":[181,190]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[192,214]},{\"text\":\"TREASURE\",\"indices\":[216,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"desirecapitals\",\"name\":\"DESIRE CAPITALS LIMITED\",\"id\":1311664780160258048,\"id_str\":\"1311664780160258048\",\"indices\":[118,133]}],\"urls\":[],\"media\":[{\"id\":1553717857766236160,\"id_str\":\"1553717857766236160\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"url\":\"https:\\/\\/t.co\\/KDquXVYd5V\",\"display_url\":\"pic.twitter.com\\/KDquXVYd5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desirecapitals\\/status\\/1553717865894780935\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":413,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"},\"medium\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"}}}]},\"3594\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"SummerSlam\",\"indices\":[123,134]},{\"text\":\"forexscam\",\"indices\":[135,145]},{\"text\":\"forexbrokers\",\"indices\":[146,159]},{\"text\":\"crypto\",\"indices\":[160,167]},{\"text\":\"forextrading\",\"indices\":[168,181]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[182,204]},{\"text\":\"BBNaija7\",\"indices\":[205,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1s7KF561aa\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/newsdetail\\/202207299924230394.html\",\"display_url\":\"wikifx.com\\/en\\/newsdetail\\/\\u2026\",\"indices\":[91,114]}],\"media\":[{\"id\":1553717008348348418,\"id_str\":\"1553717008348348418\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"url\":\"https:\\/\\/t.co\\/tYUGEX9JF6\",\"display_url\":\"pic.twitter.com\\/tYUGEX9JF6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1553717013650063360\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":313,\"resize\":\"fit\"}}}]},\"3595\":{\"hashtags\":[{\"text\":\"womenempowerment\",\"indices\":[62,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"CommunityShield\",\"indices\":[88,104]},{\"text\":\"QueenLikeBella\",\"indices\":[105,120]},{\"text\":\"womenempowerment\",\"indices\":[121,138]},{\"text\":\"JHOPE\",\"indices\":[139,145]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UKMoments\",\"name\":\"Twitter Moments UK & Ireland\",\"id\":2296297326,\"id_str\":\"2296297326\",\"indices\":[146,156]}],\"urls\":[],\"media\":[{\"id\":1553711629023461376,\"id_str\":\"1553711629023461376\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"url\":\"https:\\/\\/t.co\\/IYWcic6UEo\",\"display_url\":\"pic.twitter.com\\/IYWcic6UEo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1553711639521812482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":734,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":390,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":688,\"resize\":\"fit\"}}}]},\"3596\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[32,43]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[44,66]},{\"text\":\"CommunityShield\",\"indices\":[67,83]},{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"sundayvibes\",\"indices\":[92,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553710383063605248,\"id_str\":\"1553710383063605248\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"url\":\"https:\\/\\/t.co\\/Vp6TR5AKx9\",\"display_url\":\"pic.twitter.com\\/Vp6TR5AKx9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1553710607052029953\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"3597\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[86,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"CommunityShield\",\"indices\":[117,133]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[134,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3598\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[69,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"China\",\"indices\":[89,95]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[96,118]},{\"text\":\"abujafinders\",\"indices\":[119,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553697731130032128,\"id_str\":\"1553697731130032128\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3599\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Ameengwaska\",\"name\":\"Ameen Adam\",\"id\":1475147076069691399,\"id_str\":\"1475147076069691399\",\"indices\":[32,44]},{\"screen_name\":\"_ameeserh\",\"name\":\"halimah\\ud83e\\udd40\",\"id\":1484311429746499585,\"id_str\":\"1484311429746499585\",\"indices\":[45,55]},{\"screen_name\":\"Abdoulmaleek001\",\"name\":\"Abdulmaleek\",\"id\":1392048183916875780,\"id_str\":\"1392048183916875780\",\"indices\":[56,72]},{\"screen_name\":\"___Bils\",\"name\":\"bils\",\"id\":719099843931729920,\"id_str\":\"719099843931729920\",\"indices\":[73,81]},{\"screen_name\":\"90sSophie\",\"name\":\"sophia\",\"id\":719570209393156097,\"id_str\":\"719570209393156097\",\"indices\":[82,92]}],\"urls\":[],\"media\":[{\"id\":1553691375979356166,\"id_str\":\"1553691375979356166\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"url\":\"https:\\/\\/t.co\\/8jXGvh6oGt\",\"display_url\":\"pic.twitter.com\\/8jXGvh6oGt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1553691378995142659\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":297,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1650,\"resize\":\"fit\"},\"medium\":{\"w\":524,\"h\":1200,\"resize\":\"fit\"}}}]},\"3600\":{\"hashtags\":[{\"text\":\"earthquake\",\"indices\":[44,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3601\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[158,167]},{\"text\":\"CommunityShield\",\"indices\":[168,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[193,215]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[216,242]},{\"text\":\"siKShoes\",\"indices\":[243,252]},{\"text\":\"nigeria\",\"indices\":[253,261]},{\"text\":\"mensshoes\",\"indices\":[262,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"sikshoes\",\"name\":\"SIKSHOES.NG\",\"id\":1283730913902370816,\"id_str\":\"1283730913902370816\",\"indices\":[147,156]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a6rzotkBdD\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/sikshoes.ng\",\"display_url\":\"instagram.com\\/sikshoes.ng\",\"indices\":[81,104]},{\"url\":\"https:\\/\\/t.co\\/Me02UNv5fb\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/sikshoes.ng\",\"display_url\":\"facebook.com\\/sikshoes.ng\",\"indices\":[115,138]}],\"media\":[{\"id\":1553683792442916864,\"id_str\":\"1553683792442916864\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3602\":{\"hashtags\":[{\"text\":\"QuantumComputing\",\"indices\":[41,58]},{\"text\":\"Taiwan\",\"indices\":[59,66]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553682571640332288,\"id_str\":\"1553682571640332288\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3603\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[28,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[46,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553682444745936897,\"id_str\":\"1553682444745936897\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"url\":\"https:\\/\\/t.co\\/sheCT5ZSVb\",\"display_url\":\"pic.twitter.com\\/sheCT5ZSVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Exclusive_Paull\\/status\\/1553682457970593792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":329,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":644,\"h\":1333,\"resize\":\"fit\"}}}]},\"3604\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"BBNaija7\",\"indices\":[100,109]},{\"text\":\"Asari\",\"indices\":[110,116]},{\"text\":\"Tinubu\",\"indices\":[117,124]},{\"text\":\"earthquake\",\"indices\":[125,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VjPHEpdOJv\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Q9M3ge\",\"display_url\":\"bit.ly\\/3Q9M3ge\",\"indices\":[147,170]}]},\"3605\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[53,62]},{\"text\":\"SummerSlam\",\"indices\":[63,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"CommunityShield\",\"indices\":[83,99]},{\"text\":\"NigeriaDecides2023\",\"indices\":[100,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[9,18]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[37,50]}],\"urls\":[],\"media\":[{\"id\":1553677467495317504,\"id_str\":\"1553677467495317504\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"url\":\"https:\\/\\/t.co\\/ZKzvW7tT69\",\"display_url\":\"pic.twitter.com\\/ZKzvW7tT69\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GovaRidechief\\/status\\/1553677470389469186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"3606\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[182,191]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[192,214]},{\"text\":\"Taiwan\",\"indices\":[215,222]},{\"text\":\"Tinubu\",\"indices\":[223,230]},{\"text\":\"TinubuandAtiku\",\"indices\":[231,246]},{\"text\":\"PoliticsLive\",\"indices\":[247,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3607\":{\"hashtags\":[{\"text\":\"AbnTv\",\"indices\":[98,104]},{\"text\":\"MukTv\",\"indices\":[105,111]},{\"text\":\"ViralVideo\",\"indices\":[112,123]},{\"text\":\"BBNaija7\",\"indices\":[124,133]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"CommunityShield\",\"indices\":[143,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553674475299905539,\"id_str\":\"1553674475299905539\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"url\":\"https:\\/\\/t.co\\/Zk5bwOgNlt\",\"display_url\":\"pic.twitter.com\\/Zk5bwOgNlt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abnonlinetv\\/status\\/1553674549207748609\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3608\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"BBNaija7\",\"indices\":[112,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3609\":{\"hashtags\":[{\"text\":\"fyp\",\"indices\":[132,136]},{\"text\":\"FYP\",\"indices\":[137,141]},{\"text\":\"SummerSlam\",\"indices\":[142,153]},{\"text\":\"BBNaija7\",\"indices\":[154,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[172,194]},{\"text\":\"CommunityShield\",\"indices\":[195,211]},{\"text\":\"QueenLikeBella\",\"indices\":[212,227]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[228,253]},{\"text\":\"viral\",\"indices\":[254,260]},{\"text\":\"ViralVideo\",\"indices\":[261,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J70Y1qsGKq\",\"expanded_url\":\"https:\\/\\/instagram.com\\/gainweightwith_sisi?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/gainweightwith\\u2026\",\"indices\":[80,103]}],\"media\":[{\"id\":1553671273158434816,\"id_str\":\"1553671273158434816\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"url\":\"https:\\/\\/t.co\\/rYS4rVM16a\",\"display_url\":\"pic.twitter.com\\/rYS4rVM16a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/weightgainfire\\/status\\/1553672054062342144\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"}}}]},\"3610\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"BBNaija7\",\"indices\":[34,43]},{\"text\":\"earthquake\",\"indices\":[44,55]},{\"text\":\"QueenLikeBella\",\"indices\":[56,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553671114462838784,\"id_str\":\"1553671114462838784\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"url\":\"https:\\/\\/t.co\\/p8sQJlBCFf\",\"display_url\":\"pic.twitter.com\\/p8sQJlBCFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553671116941672449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":326,\"h\":304,\"resize\":\"fit\"}}}]},\"3611\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[56,67]},{\"text\":\"BBNaija7\",\"indices\":[68,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"earthquake\",\"indices\":[86,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwtDjpS5sP\",\"expanded_url\":\"https:\\/\\/tekkxe.blogspot.com\\/2022\\/07\\/university-of-kansas-international-2022.html\",\"display_url\":\"tekkxe.blogspot.com\\/2022\\/07\\/univer\\u2026\",\"indices\":[99,122]}]},\"3612\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[75,83]},{\"text\":\"BBNaija7\",\"indices\":[85,94]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"SummerSlam\",\"indices\":[105,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553668295416586245,\"id_str\":\"1553668295416586245\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"url\":\"https:\\/\\/t.co\\/n4MFJpTmDu\",\"display_url\":\"pic.twitter.com\\/n4MFJpTmDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553668298004480000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":719,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":719,\"resize\":\"fit\"}}}]},\"3613\":{\"hashtags\":[{\"text\":\"JulyPhotoDump\",\"indices\":[13,27]},{\"text\":\"SummerSlam\",\"indices\":[29,40]},{\"text\":\"BBNaija7\",\"indices\":[42,51]},{\"text\":\"Taiwan\",\"indices\":[53,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553668179733450755,\"id_str\":\"1553668179733450755\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"url\":\"https:\\/\\/t.co\\/I010NXmDDu\",\"display_url\":\"pic.twitter.com\\/I010NXmDDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__amandoo\\/status\\/1553668196879814656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3614\":{\"hashtags\":[{\"text\":\"BigBrotherNaija\",\"indices\":[211,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"QueenLikeBella\",\"indices\":[236,251]},{\"text\":\"CommunityShield\",\"indices\":[252,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553664661354061825,\"id_str\":\"1553664661354061825\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"url\":\"https:\\/\\/t.co\\/qkJPQkTV7n\",\"display_url\":\"pic.twitter.com\\/qkJPQkTV7n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mr_Bayo_jnr\\/status\\/1553664668815835136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":562,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"}}}]},\"3615\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[45,67]},{\"text\":\"halland\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3616\":{\"hashtags\":[{\"text\":\"StopSellingPi\",\"indices\":[158,172]},{\"text\":\"Pipayments\",\"indices\":[173,184]},{\"text\":\"crytocurrency\",\"indices\":[186,200]},{\"text\":\"Taiwan\",\"indices\":[201,208]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WoodyLightyearx\",\"name\":\"Woody Lightyear \\u03c0\",\"id\":125613934,\"id_str\":\"125613934\",\"indices\":[209,225]},{\"screen_name\":\"vinfi\",\"name\":\"Riadi OT\",\"id\":732144823,\"id_str\":\"732144823\",\"indices\":[227,233]}],\"urls\":[],\"media\":[{\"id\":1553657261150674944,\"id_str\":\"1553657261150674944\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"url\":\"https:\\/\\/t.co\\/GM61YwTbdk\",\"display_url\":\"pic.twitter.com\\/GM61YwTbdk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1553657275822350338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1448,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"}}}]},\"3617\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[119,129]},{\"text\":\"Mappedout\",\"indices\":[130,140]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"SummerSlam\",\"indices\":[149,160]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[161,183]},{\"text\":\"CommunityShield\",\"indices\":[185,201]},{\"text\":\"BBNaija7\",\"indices\":[202,211]},{\"text\":\"HOBIPALOOZA\",\"indices\":[212,224]},{\"text\":\"GarciaBenavidez\",\"indices\":[226,242]},{\"text\":\"earthquake\",\"indices\":[243,254]},{\"text\":\"wizkid\",\"indices\":[255,262]},{\"text\":\"mastablade\",\"indices\":[263,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s8wdmDvsDE\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/mastablade\\/mapped-out\",\"display_url\":\"distrokid.com\\/hyperfollow\\/ma\\u2026\",\"indices\":[94,117]}],\"media\":[{\"id\":1553652101208850432,\"id_str\":\"1553652101208850432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"url\":\"https:\\/\\/t.co\\/PsjlGa6Orw\",\"display_url\":\"pic.twitter.com\\/PsjlGa6Orw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/farukcalypse2\\/status\\/1553652117272944640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3618\":{\"hashtags\":[{\"text\":\"SummerSlam\",\"indices\":[49,60]},{\"text\":\"BBNaija\",\"indices\":[62,70]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"CommunityShield\",\"indices\":[81,97]},{\"text\":\"BBNaija7\",\"indices\":[99,108]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[110,135]},{\"text\":\"GarciaBenavidez\",\"indices\":[137,153]},{\"text\":\"earthquake\",\"indices\":[155,166]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[168,194]},{\"text\":\"BoycottLaalSinghChaddha\",\"indices\":[196,220]},{\"text\":\"ZeeNuNew\",\"indices\":[222,231]},{\"text\":\"QueenLikeBella\",\"indices\":[233,248]},{\"text\":\"TREASURE\",\"indices\":[250,259]},{\"text\":\"SanjayRautExposed\",\"indices\":[261,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553641745237385216,\"id_str\":\"1553641745237385216\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"url\":\"https:\\/\\/t.co\\/HsB6cWtw26\",\"display_url\":\"pic.twitter.com\\/HsB6cWtw26\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1553641752690663424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":391,\"h\":680,\"resize\":\"fit\"}}}]},\"3619\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[103,110]},{\"text\":\"FreakyGirl\",\"indices\":[111,122]},{\"text\":\"gistloverblog\",\"indices\":[124,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553638321384996866,\"id_str\":\"1553638321384996866\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"url\":\"https:\\/\\/t.co\\/apDiNjnMd7\",\"display_url\":\"pic.twitter.com\\/apDiNjnMd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/citypeople01\\/status\\/1553638323977166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":394,\"resize\":\"fit\"},\"large\":{\"w\":920,\"h\":533,\"resize\":\"fit\"},\"medium\":{\"w\":920,\"h\":533,\"resize\":\"fit\"}}}]},\"3620\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[11,18]},{\"text\":\"BBNaija7\",\"indices\":[19,28]},{\"text\":\"Smilesandmelody\",\"indices\":[29,45]},{\"text\":\"CommunityShield\",\"indices\":[46,62]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[63,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553611894539390977,\"id_str\":\"1553611894539390977\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"url\":\"https:\\/\\/t.co\\/IGIlCZSH02\",\"display_url\":\"pic.twitter.com\\/IGIlCZSH02\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HollaBYoung\\/status\\/1553611898549161984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3621\":{\"hashtags\":[{\"text\":\"StopSellingPi\",\"indices\":[31,45]},{\"text\":\"O\",\"indices\":[47,49]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[56,78]},{\"text\":\"SummerSlam\",\"indices\":[79,90]},{\"text\":\"CommunityShield\",\"indices\":[91,107]},{\"text\":\"WelcomeTREASUREtoTHAILAND\",\"indices\":[108,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"HOBIPALOOZA\",\"indices\":[143,155]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[156,181]},{\"text\":\"Birmingham2022\",\"indices\":[182,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553564599433273344,\"id_str\":\"1553564599433273344\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"url\":\"https:\\/\\/t.co\\/mBrs0m6gxJ\",\"display_url\":\"pic.twitter.com\\/mBrs0m6gxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Abbanya1\\/status\\/1553564690663481344\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3622\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[64,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553516945605025796,\"id_str\":\"1553516945605025796\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":616,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1086,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1854,\"h\":2048,\"resize\":\"fit\"}}}]},\"3623\":{\"hashtags\":[{\"text\":\"SurvivorExtincion\",\"indices\":[56,74]},{\"text\":\"BLACKPINKxPUBGM\",\"indices\":[75,91]},{\"text\":\"mirror\\u6f14\\u5531\\u6703\",\"indices\":[92,102]},{\"text\":\"XiJinping\",\"indices\":[103,113]},{\"text\":\"MYSYNK_aespa\",\"indices\":[114,127]},{\"text\":\"FriendshipDay\",\"indices\":[128,142]},{\"text\":\"JackBam\",\"indices\":[143,151]},{\"text\":\"Neighbours\",\"indices\":[152,163]},{\"text\":\"aespa\",\"indices\":[164,170]},{\"text\":\"dreampremiere\",\"indices\":[171,185]},{\"text\":\"HOBIPALOOZA\",\"indices\":[186,198]},{\"text\":\"RIPLisa\",\"indices\":[199,207]},{\"text\":\"Arsenal\",\"indices\":[208,216]},{\"text\":\"Fiverr\",\"indices\":[217,224]},{\"text\":\"Store\",\"indices\":[225,231]},{\"text\":\"CustomizedShopify\",\"indices\":[232,250]},{\"text\":\"Customized\",\"indices\":[251,262]},{\"text\":\"RankingVale\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X9lkB1cLhr\",\"expanded_url\":\"https:\\/\\/soefashion.com\",\"display_url\":\"soefashion.com\",\"indices\":[32,55]}]},\"3624\":{\"hashtags\":[{\"text\":\"chinese\",\"indices\":[17,25]},{\"text\":\"Taiwan\",\"indices\":[32,39]},{\"text\":\"china\",\"indices\":[47,53]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"Ukraine\",\"indices\":[102,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Junegongyl\",\"name\":\"June gong\",\"id\":1449089087265247241,\"id_str\":\"1449089087265247241\",\"indices\":[0,11]}],\"urls\":[]},\"3625\":{\"hashtags\":[{\"text\":\"russian\",\"indices\":[42,50]},{\"text\":\"chinese\",\"indices\":[55,63]},{\"text\":\"putin\",\"indices\":[155,161]},{\"text\":\"Ukraie\",\"indices\":[170,177]},{\"text\":\"china\",\"indices\":[182,188]},{\"text\":\"Taiwan\",\"indices\":[208,215]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OccupySchagen\",\"name\":\"Occupy Schagen \\u262d\",\"id\":864610968,\"id_str\":\"864610968\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1553246157760909312,\"id_str\":\"1553246157760909312\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY49JqoUUAApAJd.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY49JqoUUAApAJd.png\",\"url\":\"https:\\/\\/t.co\\/df7lCjYPuP\",\"display_url\":\"pic.twitter.com\\/df7lCjYPuP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1553246181140008960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":868,\"h\":694,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":868,\"h\":694,\"resize\":\"fit\"}}}]},\"3626\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Taiwan\",\"indices\":[69,76]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553184237146124288,\"id_str\":\"1553184237146124288\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"url\":\"https:\\/\\/t.co\\/qqDRk2W4n0\",\"display_url\":\"pic.twitter.com\\/qqDRk2W4n0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553184238345736192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"3627\":{\"hashtags\":[{\"text\":\"Bandits\",\"indices\":[129,137]},{\"text\":\"DestinyEtiko\",\"indices\":[138,151]},{\"text\":\"Abuja\",\"indices\":[152,158]},{\"text\":\"2baba\",\"indices\":[159,165]},{\"text\":\"thomaspartey\",\"indices\":[166,179]},{\"text\":\"LaiMohammed\",\"indices\":[180,192]},{\"text\":\"Emefiele\",\"indices\":[193,202]},{\"text\":\"goodluckJonathan\",\"indices\":[203,220]},{\"text\":\"Brighton\",\"indices\":[221,230]},{\"text\":\"Gistlover\",\"indices\":[231,241]},{\"text\":\"Aisha\",\"indices\":[242,248]},{\"text\":\"Machala\",\"indices\":[249,257]},{\"text\":\"Taiwan\",\"indices\":[258,265]},{\"text\":\"Dollars\",\"indices\":[266,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1552978148416970753,\"id_str\":\"1552978148416970753\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"}}}]},\"3628\":{\"hashtags\":[{\"text\":\"TaiwanIsaCountry\",\"indices\":[75,92]},{\"text\":\"JoeBiden\",\"indices\":[93,102]},{\"text\":\"XiJinping\",\"indices\":[103,113]},{\"text\":\"China\",\"indices\":[114,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NF0hN85TjF\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\\/chinas-xi-jinping-warns-joe-biden-against-playing-with-fire-over-taiwan\\/\",\"display_url\":\"onlinepikin.com\\/chinas-xi-jinp\\u2026\",\"indices\":[122,145]}]},\"3629\":{\"hashtags\":[{\"text\":\"Obidatti2023\",\"indices\":[164,177]},{\"text\":\"TakeBackNaija\",\"indices\":[179,193]},{\"text\":\"Free\",\"indices\":[195,200]},{\"text\":\"Consumption2ProductionFormular\",\"indices\":[219,250]},{\"text\":\"UKNews\",\"indices\":[262,269]},{\"text\":\"Pelosi\",\"indices\":[282,289]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"renoomokri\",\"name\":\"Reno Omokri\",\"id\":264248576,\"id_str\":\"264248576\",\"indices\":[0,11]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[251,260]},{\"screen_name\":\"BBCWorld\",\"name\":\"BBC News (World)\",\"id\":742143,\"id_str\":\"742143\",\"indices\":[271,280]}],\"urls\":[]},\"3630\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[84,90]},{\"text\":\"ChinaTaiwan\",\"indices\":[91,103]},{\"text\":\"ManUnited\",\"indices\":[104,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E58nxeVz0j\",\"expanded_url\":\"https:\\/\\/wilsonchnns.blogspot.com\\/2022\\/08\\/nigerian-tribes-list-and-facts.html?spref=tw\",\"display_url\":\"wilsonchnns.blogspot.com\\/2022\\/08\\/nigeri\\u2026\",\"indices\":[58,81]}]},\"3631\":{\"hashtags\":[{\"text\":\"Jan6\",\"indices\":[39,44]},{\"text\":\"Taiwan\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]}],\"urls\":[]},\"3632\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[54,62]},{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[100,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556314135784472576,\"id_str\":\"1556314135784472576\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"url\":\"https:\\/\\/t.co\\/Fe9ayldxZS\",\"display_url\":\"pic.twitter.com\\/Fe9ayldxZS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556314427712061440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3633\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[19,26]},{\"text\":\"China\",\"indices\":[94,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[109,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556287723480436737,\"id_str\":\"1556287723480436737\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"url\":\"https:\\/\\/t.co\\/P5UbQYI0Yq\",\"display_url\":\"pic.twitter.com\\/P5UbQYI0Yq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556287756858540032\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}}}]},\"3634\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"NewsUpdate\",\"indices\":[62,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J23E2xwI7w\",\"expanded_url\":\"https:\\/\\/chiexclusive.com\\/chinas-largest-ever-taiwan-military-drills-draw-to-a-close\\/\",\"display_url\":\"chiexclusive.com\\/chinas-largest\\u2026\",\"indices\":[76,99]}]},\"3635\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[6,12]},{\"text\":\"solar\",\"indices\":[115,121]},{\"text\":\"wind\",\"indices\":[126,131]},{\"text\":\"Taiwan\",\"indices\":[240,247]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jeff_Ball\",\"name\":\"Jeffrey Ball\",\"id\":80076673,\"id_str\":\"80076673\",\"indices\":[21,31]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/55gQvkPQB8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/USAmbChina\\/status\\/1556061629099282432\",\"display_url\":\"twitter.com\\/USAmbChina\\/sta\\u2026\",\"indices\":[281,304]}]},\"3636\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[147,165]},{\"text\":\"China\",\"indices\":[166,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556240947281031170,\"id_str\":\"1556240947281031170\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"url\":\"https:\\/\\/t.co\\/IRw2ftT9nz\",\"display_url\":\"pic.twitter.com\\/IRw2ftT9nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556240994328510465\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3637\":{\"hashtags\":[{\"text\":\"News\",\"indices\":[83,88]},{\"text\":\"china\",\"indices\":[90,96]},{\"text\":\"NancyPelosi\",\"indices\":[97,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"US\",\"indices\":[118,121]},{\"text\":\"BBnaija\",\"indices\":[122,130]},{\"text\":\"Messi\",\"indices\":[131,137]},{\"text\":\"Wizkid\",\"indices\":[138,145]},{\"text\":\"Davido\",\"indices\":[146,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EXVN1DOIf0\",\"expanded_url\":\"https:\\/\\/www.notice.com.ng\\/america-won-8217-t-allow-china-threaten-taiwan-8211-nancy-pelosi\",\"display_url\":\"notice.com.ng\\/america-won-82\\u2026\",\"indices\":[59,82]}]},\"3638\":{\"hashtags\":[{\"text\":\"Lithuanian\",\"indices\":[16,27]},{\"text\":\"Taiwan\",\"indices\":[123,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556223737019908096,\"id_str\":\"1556223737019908096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"url\":\"https:\\/\\/t.co\\/r7FkYFYnCe\",\"display_url\":\"pic.twitter.com\\/r7FkYFYnCe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556223742959058945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":332,\"resize\":\"fit\"}}}]},\"3639\":{\"hashtags\":[{\"text\":\"Latest\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[254,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556221695006212102,\"id_str\":\"1556221695006212102\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"url\":\"https:\\/\\/t.co\\/w5wrwDt9cT\",\"display_url\":\"pic.twitter.com\\/w5wrwDt9cT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556221742439616514\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3640\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"CommonwealthGame\",\"indices\":[258,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Asabari_CC\",\"name\":\"AsabariConsultativeCouncil\",\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"indices\":[14,25]},{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[27,36]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[213,220]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[239,249]}],\"urls\":[]},\"3641\":{\"hashtags\":[{\"text\":\"remoteworking\",\"indices\":[225,239]},{\"text\":\"dev\",\"indices\":[240,244]},{\"text\":\"NFTs\",\"indices\":[245,250]},{\"text\":\"Taiwan\",\"indices\":[251,258]},{\"text\":\"China\",\"indices\":[259,265]},{\"text\":\"Solana\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"codemonk\",\"name\":\"Code Monk\",\"id\":2533751,\"id_str\":\"2533751\",\"indices\":[197,206]}],\"urls\":[]},\"3642\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[4,10]},{\"text\":\"ChinaTaiwan\",\"indices\":[65,77]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[78,98]},{\"text\":\"BidenRecession\",\"indices\":[99,114]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[115,135]},{\"text\":\"NancyPelosi\",\"indices\":[136,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3643\":{\"hashtags\":[{\"text\":\"xinping\",\"indices\":[23,31]},{\"text\":\"china\",\"indices\":[56,62]},{\"text\":\"china\",\"indices\":[80,86]},{\"text\":\"taiwan\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[12,18]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[121,127]},{\"screen_name\":\"POTUS\",\"name\":\"President Biden\",\"id\":1349149096909668363,\"id_str\":\"1349149096909668363\",\"indices\":[130,136]},{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[146,160]}],\"urls\":[]},\"3644\":{\"hashtags\":[{\"text\":\"Elections2022\",\"indices\":[95,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"PremierLeague\",\"indices\":[118,132]},{\"text\":\"doggy\",\"indices\":[133,139]},{\"text\":\"nyayostadium\",\"indices\":[140,153]},{\"text\":\"noelshouseparty\",\"indices\":[154,170]},{\"text\":\"ASUU\",\"indices\":[171,176]},{\"text\":\"ASUUstrike\",\"indices\":[177,188]},{\"text\":\"BuhariMustGo\",\"indices\":[189,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1556041994148929536,\"id_str\":\"1556041994148929536\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"url\":\"https:\\/\\/t.co\\/5e7StO4jfZ\",\"display_url\":\"pic.twitter.com\\/5e7StO4jfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femiafricaNG\\/status\\/1556042033915101184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"3645\":{\"hashtags\":[{\"text\":\"GazaUnderAttack\",\"indices\":[86,102]},{\"text\":\"PreyMovie\",\"indices\":[103,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"BBNajiaS7\",\"indices\":[122,132]},{\"text\":\"nsfwtwt\",\"indices\":[133,141]},{\"text\":\"Wars1stBDFanmeet\",\"indices\":[142,159]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[76,84]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6R4h5j9Gi7\",\"expanded_url\":\"https:\\/\\/youtu.be\\/qWBmRvLymSc\",\"display_url\":\"youtu.be\\/qWBmRvLymSc\",\"indices\":[48,71]}]},\"3646\":{\"hashtags\":[{\"text\":\"dictatorship\",\"indices\":[89,102]},{\"text\":\"China\",\"indices\":[106,112]},{\"text\":\"Taiwan\",\"indices\":[147,154]},{\"text\":\"Polosi\",\"indices\":[194,201]},{\"text\":\"country\",\"indices\":[213,221]},{\"text\":\"noises\",\"indices\":[245,252]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"XHNews\",\"name\":\"China Xinhua News\",\"id\":487118986,\"id_str\":\"487118986\",\"indices\":[0,7]},{\"screen_name\":\"PR_Paul_BIYA\",\"name\":\"President Paul BIYA\",\"id\":301026859,\"id_str\":\"301026859\",\"indices\":[51,64]}],\"urls\":[]},\"3647\":{\"hashtags\":[{\"text\":\"dictatorship\",\"indices\":[81,94]},{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Polosi\",\"indices\":[186,193]},{\"text\":\"country\",\"indices\":[205,213]},{\"text\":\"noises\",\"indices\":[237,244]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PR_Paul_BIYA\",\"name\":\"President Paul BIYA\",\"id\":301026859,\"id_str\":\"301026859\",\"indices\":[43,56]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cV2MAbz9si\",\"expanded_url\":\"https:\\/\\/twitter.com\\/XHNews\\/status\\/1555560738034688000\",\"display_url\":\"twitter.com\\/XHNews\\/status\\/\\u2026\",\"indices\":[257,280]}]},\"3648\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[193,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555992362622615553,\"id_str\":\"1555992362622615553\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"url\":\"https:\\/\\/t.co\\/DiKgxF4oTL\",\"display_url\":\"pic.twitter.com\\/DiKgxF4oTL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555992372194021376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":410,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":723,\"resize\":\"fit\"},\"large\":{\"w\":1279,\"h\":771,\"resize\":\"fit\"}}}]},\"3649\":{\"hashtags\":[{\"text\":\"Israel\",\"indices\":[85,92]},{\"text\":\"Kasarani\",\"indices\":[93,102]},{\"text\":\"nyayostadium\",\"indices\":[103,116]},{\"text\":\"Gaza\",\"indices\":[117,122]},{\"text\":\"BadDecisions\",\"indices\":[123,136]},{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"Ukraine\",\"indices\":[145,153]},{\"text\":\"TREASURE\",\"indices\":[154,163]},{\"text\":\"Trending\",\"indices\":[164,173]},{\"text\":\"trend\",\"indices\":[174,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555984739168927748,\"id_str\":\"1555984739168927748\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"url\":\"https:\\/\\/t.co\\/Fh3oav9sPe\",\"display_url\":\"pic.twitter.com\\/Fh3oav9sPe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555984785004281857\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":480,\"resize\":\"fit\"}}}]},\"3650\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[103,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C3z0q89HkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\",\"display_url\":\"twitter.com\\/ChaudharyParve\\u2026\",\"indices\":[178,201]}],\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0XdsYP\",\"display_url\":\"pic.twitter.com\\/fvGw0XdsYP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"source_status_id\":1555924699447582720,\"source_status_id_str\":\"1555924699447582720\",\"source_user_id\":746971014,\"source_user_id_str\":\"746971014\"}]},\"3651\":{\"hashtags\":[{\"text\":\"Indiana\",\"indices\":[150,158]},{\"text\":\"JUNGKOOK\",\"indices\":[159,168]},{\"text\":\"nyayostadium\",\"indices\":[169,182]},{\"text\":\"Nunez\",\"indices\":[183,189]},{\"text\":\"LFC\",\"indices\":[190,194]},{\"text\":\"andAUDITION\",\"indices\":[195,207]},{\"text\":\"SitaRamam\",\"indices\":[208,218]},{\"text\":\"FOREVER1\",\"indices\":[219,228]},{\"text\":\"WAFC\",\"indices\":[229,234]},{\"text\":\"RHOBH\",\"indices\":[235,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"GoFundMe\",\"indices\":[250,259]},{\"text\":\"help\",\"indices\":[260,265]},{\"text\":\"TREASURE\",\"indices\":[266,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[126,149]}],\"media\":[{\"id\":1555940231827832834,\"id_str\":\"1555940231827832834\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"url\":\"https:\\/\\/t.co\\/rPmfa5ojNK\",\"display_url\":\"pic.twitter.com\\/rPmfa5ojNK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555940250551259136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1067,\"resize\":\"fit\"}}}]},\"3652\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"China\",\"indices\":[158,164]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[230,248]},{\"text\":\"Pelosi\",\"indices\":[249,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}}}]},\"3653\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"Drone\",\"indices\":[141,147]},{\"text\":\"Foreign\",\"indices\":[148,156]},{\"text\":\"Gist\",\"indices\":[157,162]},{\"text\":\"news\",\"indices\":[163,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"US\",\"indices\":[177,180]},{\"text\":\"bobojay\",\"indices\":[181,189]},{\"text\":\"bobojaytv\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iFl0xbm0Ow\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/taiwan-chinese-planes-ships-carry-out-attack-simulation-exercise\\/\",\"display_url\":\"bobojaytv.com\\/taiwan-chinese\\u2026\",\"indices\":[78,101]}],\"media\":[{\"id\":1555921612242767873,\"id_str\":\"1555921612242767873\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"url\":\"https:\\/\\/t.co\\/Jt6aduFcg8\",\"display_url\":\"pic.twitter.com\\/Jt6aduFcg8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555921613857492993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":420,\"resize\":\"fit\"}}}]},\"3654\":{\"hashtags\":[{\"text\":\"Beijing\",\"indices\":[144,152]},{\"text\":\"China\",\"indices\":[153,159]},{\"text\":\"Foreign\",\"indices\":[160,168]},{\"text\":\"news\",\"indices\":[169,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"bobojay\",\"indices\":[183,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IortearyBW\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/taiwan-accuses-beijing-of-simulating-invasion-as-us-china-relations-nosedive\\/\",\"display_url\":\"bobojaytv.com\\/taiwan-accuses\\u2026\",\"indices\":[88,111]}],\"media\":[{\"id\":1555920653005402114,\"id_str\":\"1555920653005402114\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"url\":\"https:\\/\\/t.co\\/cpsTb251y5\",\"display_url\":\"pic.twitter.com\\/cpsTb251y5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555920654368575488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"3655\":{\"hashtags\":[{\"text\":\"AntonioGuterres\",\"indices\":[128,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"Foreign\",\"indices\":[152,160]},{\"text\":\"news\",\"indices\":[161,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"UN\",\"indices\":[175,178]},{\"text\":\"bobojay\",\"indices\":[179,187]},{\"text\":\"bobojaytv\",\"indices\":[188,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cSMbwgBTbO\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/un-chief-warns-nuclear-weapons-are-loaded-gun-for-humanity\\/\",\"display_url\":\"bobojaytv.com\\/un-chief-warns\\u2026\",\"indices\":[72,95]}]},\"3656\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"China\",\"indices\":[165,171]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[172,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555912584217235457,\"id_str\":\"1555912584217235457\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"url\":\"https:\\/\\/t.co\\/VDLfQwhCt5\",\"display_url\":\"pic.twitter.com\\/VDLfQwhCt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555912598461157377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"3657\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3658\":{\"hashtags\":[{\"text\":\"PreyMovie\",\"indices\":[105,115]},{\"text\":\"BBNaija7\",\"indices\":[126,135]},{\"text\":\"LALISA\",\"indices\":[136,143]},{\"text\":\"MUFC\",\"indices\":[144,149]},{\"text\":\"binance\",\"indices\":[150,158]},{\"text\":\"Ukraine\",\"indices\":[234,242]},{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"FOREVER1\",\"indices\":[251,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tyewoolove\",\"name\":\"B\\u1ecd\\u0301l\\u00e1\\u0144l\\u00e9 on\\u00ed story \\ud83d\\udd8b\\ufe0f\",\"id\":1143094620064235520,\"id_str\":\"1143094620064235520\",\"indices\":[159,170]},{\"screen_name\":\"KizzDaniel\",\"name\":\"VADO D\\u2018GREAT \\ud83c\\udf99\",\"id\":2159951120,\"id_str\":\"2159951120\",\"indices\":[171,182]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[183,192]},{\"screen_name\":\"olaoluwasanmi\",\"name\":\"Brand Engineer | k\\u00f3w\\u00f3 p\\u00e9\",\"id\":369557224,\"id_str\":\"369557224\",\"indices\":[193,207]},{\"screen_name\":\"BrymOlawale\",\"name\":\"\\u1eccl\\u00e1w\\u00e1l\\u00e9 \\u1eccl\\u1ecd\\u0301f\\u1ecd\\u1ecd\\u0300r\\u1ecd\\u0300\",\"id\":65514235,\"id_str\":\"65514235\",\"indices\":[208,220]},{\"screen_name\":\"HypeMan_Jay\",\"name\":\"#DaMusicConnoisseur\",\"id\":856565077,\"id_str\":\"856565077\",\"indices\":[221,233]}],\"urls\":[],\"media\":[{\"id\":1555901574240681986,\"id_str\":\"1555901574240681986\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"url\":\"https:\\/\\/t.co\\/GdXquO0e9H\",\"display_url\":\"pic.twitter.com\\/GdXquO0e9H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdajaMusic\\/status\\/1555901917523591168\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3659\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[36,49]},{\"text\":\"FULLIV\",\"indices\":[51,58]},{\"text\":\"UkrainianArmy\",\"indices\":[59,73]},{\"text\":\"Taiwan\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555886494941958146,\"id_str\":\"1555886494941958146\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"url\":\"https:\\/\\/t.co\\/7S8nXC3rt6\",\"display_url\":\"pic.twitter.com\\/7S8nXC3rt6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ClintonSnowbird\\/status\\/1555886548486443008\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"}}}]},\"3660\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[113,119]},{\"text\":\"USA\",\"indices\":[120,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"Pelosi\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SoAbONf1yX\",\"expanded_url\":\"https:\\/\\/investogist.com\\/calls-from-usa-defense-ministry-to-top-chinese-military-officials-being-ignored-report\\/\",\"display_url\":\"investogist.com\\/calls-from-usa\\u2026\",\"indices\":[89,112]}]},\"3661\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"Koreas\",\"indices\":[117,124]},{\"text\":\"Peace\",\"indices\":[190,196]},{\"text\":\"Stability\",\"indices\":[201,211]},{\"text\":\"NorthKorea\",\"indices\":[213,224]},{\"text\":\"KimJongUn\",\"indices\":[225,235]},{\"text\":\"Taiwan\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555881626227601410,\"id_str\":\"1555881626227601410\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"url\":\"https:\\/\\/t.co\\/icicexbejC\",\"display_url\":\"pic.twitter.com\\/icicexbejC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555881643566854144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":679,\"h\":408,\"resize\":\"fit\"}}}]},\"3662\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[4,12]},{\"text\":\"PLA\",\"indices\":[71,75]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"China\",\"indices\":[139,145]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[146,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555864705419603968,\"id_str\":\"1555864705419603968\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"url\":\"https:\\/\\/t.co\\/fv4KP5uO0f\",\"display_url\":\"pic.twitter.com\\/fv4KP5uO0f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555864776286556160\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":860,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":860,\"h\":480,\"resize\":\"fit\"}}}]},\"3663\":{\"hashtags\":[{\"text\":\"TOGFG\",\"indices\":[107,113]},{\"text\":\"agrolyfe\",\"indices\":[114,123]},{\"text\":\"agro\",\"indices\":[124,129]},{\"text\":\"realestate\",\"indices\":[130,141]},{\"text\":\"nigeria\",\"indices\":[142,150]},{\"text\":\"westafrica\",\"indices\":[152,163]},{\"text\":\"Niger\",\"indices\":[164,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"China\",\"indices\":[179,185]},{\"text\":\"BBNaija\",\"indices\":[186,194]},{\"text\":\"investment\",\"indices\":[195,206]},{\"text\":\"agriculture\",\"indices\":[207,219]},{\"text\":\"agribusiness\",\"indices\":[220,233]},{\"text\":\"africa\",\"indices\":[234,241]},{\"text\":\"investor\",\"indices\":[242,251]},{\"text\":\"farm\",\"indices\":[252,257]},{\"text\":\"Chelsea\",\"indices\":[258,266]},{\"text\":\"Fireboy\",\"indices\":[267,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yhBXWin2rz\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[82,105]}],\"media\":[{\"id\":1555859351558144000,\"id_str\":\"1555859351558144000\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"url\":\"https:\\/\\/t.co\\/M6OH6kpv3d\",\"display_url\":\"pic.twitter.com\\/M6OH6kpv3d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1555859377038524416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3664\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[255,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555856903145930753,\"id_str\":\"1555856903145930753\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"3665\":{\"hashtags\":[{\"text\":\"EnoughIsEnough\",\"indices\":[241,256]},{\"text\":\"PeterObi\",\"indices\":[257,266]},{\"text\":\"Cheating\",\"indices\":[267,276]},{\"text\":\"Taiwan\",\"indices\":[277,284]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SmallAlhaji_\",\"name\":\"Alh Tajudeen Adefisoye\",\"id\":54858891,\"id_str\":\"54858891\",\"indices\":[0,13]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[14,27]}],\"urls\":[]},\"3666\":{\"hashtags\":[{\"text\":\"VocalcarCoach\",\"indices\":[53,67]},{\"text\":\"TheChi\",\"indices\":[107,114]},{\"text\":\"BBNaijaJohnnieWalker\",\"indices\":[137,158]},{\"text\":\"BB24\",\"indices\":[159,164]},{\"text\":\"Cheating\",\"indices\":[165,174]},{\"text\":\"PremierLeague\",\"indices\":[175,189]},{\"text\":\"Taiwan\",\"indices\":[190,197]},{\"text\":\"BryannOnly\",\"indices\":[207,218]},{\"text\":\"PiConsensus\",\"indices\":[219,231]},{\"text\":\"binance\",\"indices\":[232,240]},{\"text\":\"Sandman\",\"indices\":[241,249]},{\"text\":\"weekendvibes\",\"indices\":[250,263]},{\"text\":\"USA\",\"indices\":[264,268]},{\"text\":\"Ukraine\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555828432784789509,\"id_str\":\"1555828432784789509\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"url\":\"https:\\/\\/t.co\\/RsGGLqKP4f\",\"display_url\":\"pic.twitter.com\\/RsGGLqKP4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555828561424121857\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3667\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[186,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3668\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"PLLOriginalSin\",\"indices\":[158,173]},{\"text\":\"helpinghand\",\"indices\":[174,186]},{\"text\":\"donate\",\"indices\":[187,194]},{\"text\":\"KarachiRains\",\"indices\":[195,208]},{\"text\":\"BB24\",\"indices\":[209,214]},{\"text\":\"RHOBH\",\"indices\":[215,221]},{\"text\":\"midjourney\",\"indices\":[222,233]},{\"text\":\"TREASUREinManila\",\"indices\":[234,251]},{\"text\":\"Trending\",\"indices\":[252,261]},{\"text\":\"trend\",\"indices\":[262,268]},{\"text\":\"Yankees\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[126,149]}],\"media\":[{\"id\":1555765671199473664,\"id_str\":\"1555765671199473664\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"url\":\"https:\\/\\/t.co\\/lpzUJdfPzo\",\"display_url\":\"pic.twitter.com\\/lpzUJdfPzo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555765691919261696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":479,\"h\":320,\"resize\":\"fit\"}}}]},\"3669\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"PremierLeague\",\"indices\":[45,59]},{\"text\":\"BBNaijaS7\",\"indices\":[60,70]},{\"text\":\"newsongalert\",\"indices\":[71,84]},{\"text\":\"Naijaleaks\",\"indices\":[85,96]},{\"text\":\"Afrobeats\",\"indices\":[97,107]},{\"text\":\"lovesongs\",\"indices\":[108,118]},{\"text\":\"worldmusic\",\"indices\":[119,130]},{\"text\":\"Trending\",\"indices\":[131,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"amuse_io\",\"name\":\"amuse\",\"id\":3817266689,\"id_str\":\"3817266689\",\"indices\":[170,179]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XujdyI76mw\",\"expanded_url\":\"https:\\/\\/share.amuse.io\\/0I5ZVI6Wk5yo\",\"display_url\":\"share.amuse.io\\/0I5ZVI6Wk5yo\",\"indices\":[142,165]}]},\"3670\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[164,171]},{\"text\":\"US\",\"indices\":[172,175]},{\"text\":\"lm\",\"indices\":[176,179]},{\"text\":\"lagosmetropolitan\",\"indices\":[180,198]},{\"text\":\"lagmetro\",\"indices\":[199,208]},{\"text\":\"metro\",\"indices\":[209,215]},{\"text\":\"lagos\",\"indices\":[216,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LagMetropolitan\",\"name\":\"Lagos Metropolitan\",\"id\":1250296116865724419,\"id_str\":\"1250296116865724419\",\"indices\":[139,155]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bWugJKdw4Z\",\"expanded_url\":\"https:\\/\\/lagosmetropolitan.com\\/blog\\/2022\\/08\\/06\\/after-ukraine-us-fishes-for-new-war-in-taiwanese-waters\\/\",\"display_url\":\"lagosmetropolitan.com\\/blog\\/2022\\/08\\/0\\u2026\",\"indices\":[223,246]}]},\"3671\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[0,3]},{\"text\":\"NATO\",\"indices\":[10,15]},{\"text\":\"Ukraine\",\"indices\":[162,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ysaisq3VjW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GalLuft\\/status\\/1555643813871423488\",\"display_url\":\"twitter.com\\/GalLuft\\/status\\u2026\",\"indices\":[192,215]}]},\"3672\":{\"hashtags\":[{\"text\":\"Zionists\",\"indices\":[4,13]},{\"text\":\"Palestinians\",\"indices\":[79,92]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[146,167]},{\"text\":\"ChinaTaiwan\",\"indices\":[168,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DasyV6eZOj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AJEnglish\\/status\\/1555552144186609664\",\"display_url\":\"twitter.com\\/AJEnglish\\/stat\\u2026\",\"indices\":[217,240]}]},\"3673\":{\"hashtags\":[{\"text\":\"Xiaomi\",\"indices\":[95,102]},{\"text\":\"tech\",\"indices\":[103,108]},{\"text\":\"TechNews\",\"indices\":[109,118]},{\"text\":\"Google\",\"indices\":[119,126]},{\"text\":\"UnitedKingdom\",\"indices\":[127,141]},{\"text\":\"ChinaTaiwan\",\"indices\":[142,154]},{\"text\":\"Russia\",\"indices\":[155,162]},{\"text\":\"trend\",\"indices\":[163,169]},{\"text\":\"Trending\",\"indices\":[170,179]},{\"text\":\"ASUUstrike\",\"indices\":[180,191]},{\"text\":\"viral\",\"indices\":[192,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aYrFdrVxNO\",\"expanded_url\":\"https:\\/\\/awixy.net\\/single.php?id=377\",\"display_url\":\"awixy.net\\/single.php?id=\\u2026\",\"indices\":[202,225]}],\"media\":[{\"id\":1555682381570383883,\"id_str\":\"1555682381570383883\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"url\":\"https:\\/\\/t.co\\/mHTArfiaQM\",\"display_url\":\"pic.twitter.com\\/mHTArfiaQM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1555682404433543188\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3674\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[48,52]},{\"text\":\"Taiwan\",\"indices\":[78,85]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AJEnglish\",\"name\":\"Al Jazeera English\",\"id\":4970411,\"id_str\":\"4970411\",\"indices\":[0,10]}],\"urls\":[]},\"3675\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[216,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555661528287830019,\"id_str\":\"1555661528287830019\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"3676\":{\"hashtags\":[{\"text\":\"Kuda\",\"indices\":[59,64]},{\"text\":\"Ashawo\",\"indices\":[65,72]},{\"text\":\"trenches\",\"indices\":[73,82]},{\"text\":\"BadDecisions\",\"indices\":[83,96]},{\"text\":\"TheSandman\",\"indices\":[97,108]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[109,129]},{\"text\":\"binance\",\"indices\":[130,138]},{\"text\":\"wrestling\",\"indices\":[139,149]},{\"text\":\"FOREVER1\",\"indices\":[150,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3677\":{\"hashtags\":[{\"text\":\"KenyaDecides2022\",\"indices\":[65,82]},{\"text\":\"\\u30dd\\u30b1\\u30e2\\u30f3\",\"indices\":[83,88]},{\"text\":\"LALISA\",\"indices\":[89,96]},{\"text\":\"FOREVER1_OUTNOW\",\"indices\":[97,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"BadDecisions\",\"indices\":[121,134]},{\"text\":\"TheSandman\",\"indices\":[135,146]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[147,167]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[168,188]},{\"text\":\"binance\",\"indices\":[189,197]},{\"text\":\"FOREVER1\",\"indices\":[198,207]},{\"text\":\"WeLoveYouBamBam\",\"indices\":[208,224]},{\"text\":\"BajrangPunia\",\"indices\":[225,238]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"morrishills_\",\"name\":\"Morris Hills\",\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"indices\":[18,31]},{\"screen_name\":\"kiaramoontv\",\"name\":\"Kiara Moon - 345k\",\"id\":700591332285263872,\"id_str\":\"700591332285263872\",\"indices\":[32,44]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[45,52]},{\"screen_name\":\"iamcardib\",\"name\":\"Cardi B\",\"id\":866953267,\"id_str\":\"866953267\",\"indices\":[53,63]}],\"urls\":[],\"media\":[{\"id\":1555645859471171584,\"id_str\":\"1555645859471171584\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"url\":\"https:\\/\\/t.co\\/G0zzCuKFup\",\"display_url\":\"pic.twitter.com\\/G0zzCuKFup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645910100631559\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3678\":{\"hashtags\":[{\"text\":\"MarvinInu\",\"indices\":[0,10]},{\"text\":\"1000x\",\"indices\":[143,149]},{\"text\":\"BNB\",\"indices\":[192,196]},{\"text\":\"BSC\",\"indices\":[198,202]},{\"text\":\"ETH\",\"indices\":[215,219]},{\"text\":\"BTC\",\"indices\":[220,224]},{\"text\":\"WeLoveYouBamBam\",\"indices\":[225,241]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[242,262]},{\"text\":\"BajrangPunia\",\"indices\":[263,276]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[75,82]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[203,214]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CrEIDE4VLU\",\"expanded_url\":\"http:\\/\\/Marvininueth.com\",\"display_url\":\"Marvininueth.com\",\"indices\":[168,191]}],\"media\":[{\"id\":1555645871194357764,\"id_str\":\"1555645871194357764\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"url\":\"https:\\/\\/t.co\\/RPgFeJQ0op\",\"display_url\":\"pic.twitter.com\\/RPgFeJQ0op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1555645888277762050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":641,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":581,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":641,\"resize\":\"fit\"}}}]},\"3679\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[21,34]},{\"text\":\"TheSandman\",\"indices\":[35,46]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[47,67]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[68,88]},{\"text\":\"binance\",\"indices\":[89,97]},{\"text\":\"FOREVER1\",\"indices\":[98,107]},{\"text\":\"KenyaDecides2022\",\"indices\":[108,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555645149941825537,\"id_str\":\"1555645149941825537\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"url\":\"https:\\/\\/t.co\\/Cp9nEotCf4\",\"display_url\":\"pic.twitter.com\\/Cp9nEotCf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645152223543297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":561,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":594,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":594,\"resize\":\"fit\"}}}]},\"3680\":{\"hashtags\":[{\"text\":\"designer\",\"indices\":[130,139]},{\"text\":\"uiuxdesign\",\"indices\":[140,151]},{\"text\":\"DigitalMarketing\",\"indices\":[152,169]},{\"text\":\"SEO\",\"indices\":[170,174]},{\"text\":\"BBNaijaS7\",\"indices\":[175,185]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[186,206]},{\"text\":\"binance\",\"indices\":[207,215]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"figma\",\"name\":\"Figma\",\"id\":3181020308,\"id_str\":\"3181020308\",\"indices\":[81,87]}],\"urls\":[],\"media\":[{\"id\":1555644418329305088,\"id_str\":\"1555644418329305088\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"url\":\"https:\\/\\/t.co\\/bu6Z3O81kg\",\"display_url\":\"pic.twitter.com\\/bu6Z3O81kg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555644670729920514\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3681\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[75,88]},{\"text\":\"TheSandman\",\"indices\":[89,100]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[101,121]},{\"text\":\"binance\",\"indices\":[122,130]},{\"text\":\"FOREVER1\",\"indices\":[131,140]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[141,161]},{\"text\":\"wrestling\",\"indices\":[167,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3682\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[249,269]},{\"text\":\"Children\",\"indices\":[270,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGOELITESTAR\",\"name\":\"Elite Star Foundation\",\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"indices\":[209,222]}],\"urls\":[],\"media\":[{\"id\":1555642257319018499,\"id_str\":\"1555642257319018499\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"url\":\"https:\\/\\/t.co\\/541B1PcgCb\",\"display_url\":\"pic.twitter.com\\/541B1PcgCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NGOELITESTAR\\/status\\/1555642259760205824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":985,\"h\":830,\"resize\":\"fit\"},\"medium\":{\"w\":985,\"h\":830,\"resize\":\"fit\"}}}]},\"3683\":{\"hashtags\":[{\"text\":\"Snickers\",\"indices\":[14,23]},{\"text\":\"China\",\"indices\":[58,64]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"BadDecisions\",\"indices\":[102,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555642069292838912,\"id_str\":\"1555642069292838912\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"url\":\"https:\\/\\/t.co\\/WAEr6vJVGb\",\"display_url\":\"pic.twitter.com\\/WAEr6vJVGb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555642082022522881\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"}}}]},\"3684\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[113,119]},{\"text\":\"OOMQUOTES\",\"indices\":[172,182]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oEx6eiMows\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oguntokunmichea\\/status\\/1549074567817297920\",\"display_url\":\"twitter.com\\/Oguntokunmiche\\u2026\",\"indices\":[183,206]}]},\"3685\":{\"hashtags\":[{\"text\":\"saynotopests\",\"indices\":[113,126]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[127,142]},{\"text\":\"PeterObi4President2023\",\"indices\":[143,166]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"pestcontrol\",\"indices\":[177,189]},{\"text\":\"BBNajiaS7\",\"indices\":[191,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555631270008426496,\"id_str\":\"1555631270008426496\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"url\":\"https:\\/\\/t.co\\/dPuTvMfq4q\",\"display_url\":\"pic.twitter.com\\/dPuTvMfq4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/terminatorsng\\/status\\/1555631282817798144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3686\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[166,175]},{\"text\":\"lagosstate\",\"indices\":[176,187]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[189,207]},{\"text\":\"BBNajiaS7\",\"indices\":[208,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555603828757725185,\"id_str\":\"1555603828757725185\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"url\":\"https:\\/\\/t.co\\/C2TDgF7Nrg\",\"display_url\":\"pic.twitter.com\\/C2TDgF7Nrg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555604087411974144\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3687\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[127,141]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LFgTD6WFrg\",\"expanded_url\":\"https:\\/\\/www.theguardian.com\\/world\\/2022\\/aug\\/05\\/china-halts-us-cooperation-nancy-pelosi-taiwan\",\"display_url\":\"theguardian.com\\/world\\/2022\\/aug\\u2026\",\"indices\":[257,280]}]},\"3688\":{\"hashtags\":[{\"text\":\"Python\",\"indices\":[40,47]},{\"text\":\"BigData\",\"indices\":[48,56]},{\"text\":\"Analytics\",\"indices\":[57,67]},{\"text\":\"AI\",\"indices\":[68,71]},{\"text\":\"DataScience\",\"indices\":[72,84]},{\"text\":\"IoT\",\"indices\":[85,89]},{\"text\":\"Azure\",\"indices\":[90,96]},{\"text\":\"RStats\",\"indices\":[97,104]},{\"text\":\"DotNet\",\"indices\":[105,112]},{\"text\":\"C\",\"indices\":[113,115]},{\"text\":\"CPP\",\"indices\":[116,120]},{\"text\":\"Java\",\"indices\":[121,126]},{\"text\":\"CSharp\",\"indices\":[127,134]},{\"text\":\"Flutter\",\"indices\":[135,143]},{\"text\":\"SQL\",\"indices\":[144,148]},{\"text\":\"PHP\",\"indices\":[149,153]},{\"text\":\"BBNaijaS7\",\"indices\":[154,164]},{\"text\":\"JavaScript\",\"indices\":[165,176]},{\"text\":\"ReactJS\",\"indices\":[177,185]},{\"text\":\"Pelosi\",\"indices\":[186,193]},{\"text\":\"MachineLearning\",\"indices\":[194,210]},{\"text\":\"Serverless\",\"indices\":[211,222]},{\"text\":\"DataScientist\",\"indices\":[223,237]},{\"text\":\"Linux\",\"indices\":[238,244]},{\"text\":\"Programming\",\"indices\":[245,257]},{\"text\":\"Coding\",\"indices\":[258,265]},{\"text\":\"100DaysofCode\",\"indices\":[266,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555599301182734336,\"id_str\":\"1555599301182734336\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"url\":\"https:\\/\\/t.co\\/PTk5Jmo7kY\",\"display_url\":\"pic.twitter.com\\/PTk5Jmo7kY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555599475577704449\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3689\":{\"hashtags\":[{\"text\":\"Python\",\"indices\":[46,53]},{\"text\":\"BigData\",\"indices\":[54,62]},{\"text\":\"Analytics\",\"indices\":[63,73]},{\"text\":\"AI\",\"indices\":[74,77]},{\"text\":\"DataScience\",\"indices\":[78,90]},{\"text\":\"IoT\",\"indices\":[91,95]},{\"text\":\"Azure\",\"indices\":[96,102]},{\"text\":\"RStats\",\"indices\":[103,110]},{\"text\":\"DotNet\",\"indices\":[111,118]},{\"text\":\"C\",\"indices\":[119,121]},{\"text\":\"CPP\",\"indices\":[122,126]},{\"text\":\"Java\",\"indices\":[127,132]},{\"text\":\"CSharp\",\"indices\":[133,140]},{\"text\":\"Flutter\",\"indices\":[141,149]},{\"text\":\"SQL\",\"indices\":[150,154]},{\"text\":\"PHP\",\"indices\":[155,159]},{\"text\":\"BBNaijaS7\",\"indices\":[160,170]},{\"text\":\"JavaScript\",\"indices\":[171,182]},{\"text\":\"ReactJS\",\"indices\":[183,191]},{\"text\":\"MachineLearning\",\"indices\":[192,208]},{\"text\":\"Serverless\",\"indices\":[209,220]},{\"text\":\"DataScientist\",\"indices\":[221,235]},{\"text\":\"Linux\",\"indices\":[236,242]},{\"text\":\"pelosi\",\"indices\":[243,250]},{\"text\":\"game\",\"indices\":[251,256]},{\"text\":\"Coding\",\"indices\":[257,264]},{\"text\":\"100DaysofCode\",\"indices\":[265,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555598991483699200,\"id_str\":\"1555598991483699200\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"url\":\"https:\\/\\/t.co\\/6PzTwoecxo\",\"display_url\":\"pic.twitter.com\\/6PzTwoecxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555598994277023744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"3690\":{\"hashtags\":[{\"text\":\"lagosstate\",\"indices\":[30,41]},{\"text\":\"BBNajiaS7\",\"indices\":[42,52]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[53,71]},{\"text\":\"Lexus\",\"indices\":[72,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555584673354584066,\"id_str\":\"1555584673354584066\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"url\":\"https:\\/\\/t.co\\/ohdatFGn7a\",\"display_url\":\"pic.twitter.com\\/ohdatFGn7a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555584754224873472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3691\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"NancyPelosi\",\"indices\":[6,18]},{\"text\":\"Taiwan\",\"indices\":[19,26]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/K5tn3bZYek\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SW6rjz\",\"display_url\":\"dlvr.it\\/SW6rjz\",\"indices\":[94,117]}]},\"3692\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[193,211]},{\"text\":\"\\uc18c\\ub140\\uc2dc\\ub300\",\"indices\":[212,217]},{\"text\":\"\\u8a2d\\u55b6\\u5b8c\\u4e86\",\"indices\":[218,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IIHcFl9pHm\",\"expanded_url\":\"http:\\/\\/www.internationalmun.org\",\"display_url\":\"internationalmun.org\",\"indices\":[12,35]}],\"media\":[{\"id\":1555578774695067649,\"id_str\":\"1555578774695067649\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"url\":\"https:\\/\\/t.co\\/49jpK5z2UX\",\"display_url\":\"pic.twitter.com\\/49jpK5z2UX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoyOlukorede\\/status\\/1555581535969050624\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"3693\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[222,240]},{\"text\":\"binance\",\"indices\":[241,249]},{\"text\":\"ChelseaFC\",\"indices\":[250,260]},{\"text\":\"cryptocurrencies\",\"indices\":[261,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555580717027016706,\"id_str\":\"1555580717027016706\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"url\":\"https:\\/\\/t.co\\/Okuj69KLRS\",\"display_url\":\"pic.twitter.com\\/Okuj69KLRS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555580719384215552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"3694\":{\"hashtags\":[{\"text\":\"davido\",\"indices\":[202,209]},{\"text\":\"Pelosi\",\"indices\":[210,217]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[218,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cWiARiZKhE\",\"expanded_url\":\"https:\\/\\/zeep.ly\\/Y5pgb\",\"display_url\":\"zeep.ly\\/Y5pgb\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/LrtIRHqFxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\",\"display_url\":\"twitter.com\\/Borrego_Energy\\u2026\",\"indices\":[244,267]}],\"media\":[{\"id\":1555568379901235201,\"id_str\":\"1555568379901235201\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"url\":\"https:\\/\\/t.co\\/ehsicFJyep\",\"display_url\":\"pic.twitter.com\\/ehsicFJyep\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555568544460439552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"3695\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[0,20]},{\"text\":\"BBNaija\",\"indices\":[42,50]},{\"text\":\"Ashawo\",\"indices\":[51,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555567677896364032,\"id_str\":\"1555567677896364032\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"url\":\"https:\\/\\/t.co\\/2TBY9tpG5s\",\"display_url\":\"pic.twitter.com\\/2TBY9tpG5s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stingray1o1\\/status\\/1555567685156708352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":424,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"}}}]},\"3696\":{\"hashtags\":[{\"text\":\"Davido\",\"indices\":[202,209]},{\"text\":\"Pelosi\",\"indices\":[210,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SjJ0J1Jrfr\",\"expanded_url\":\"https:\\/\\/zeep.ly\\/Y5pgb\",\"display_url\":\"zeep.ly\\/Y5pgb\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/LrtIRHqFxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\",\"display_url\":\"twitter.com\\/Borrego_Energy\\u2026\",\"indices\":[220,243]}],\"media\":[{\"id\":1555566226809753600,\"id_str\":\"1555566226809753600\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"url\":\"https:\\/\\/t.co\\/ODS0jH3UZK\",\"display_url\":\"pic.twitter.com\\/ODS0jH3UZK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555566301048889348\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"3697\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[36,49]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[50,70]},{\"text\":\"ChelseaFC\",\"indices\":[71,81]},{\"text\":\"BibleSumett\",\"indices\":[82,94]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[95,113]},{\"text\":\"Chinese\",\"indices\":[114,122]},{\"text\":\"PeterObi4President2023\",\"indices\":[123,146]},{\"text\":\"Obidiots\",\"indices\":[147,156]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[157,174]},{\"text\":\"OBIDIENTS\",\"indices\":[175,185]},{\"text\":\"obikin\",\"indices\":[186,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/89wMCfK63b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\",\"display_url\":\"twitter.com\\/Nkemchor_\\/stat\\u2026\",\"indices\":[194,217]}]},\"3698\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[126,130]},{\"text\":\"China\",\"indices\":[180,186]},{\"text\":\"Taiwan\",\"indices\":[187,194]},{\"text\":\"Pelosi\",\"indices\":[195,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555556322917363712,\"id_str\":\"1555556322917363712\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"url\":\"https:\\/\\/t.co\\/t3aiIMBGzU\",\"display_url\":\"pic.twitter.com\\/t3aiIMBGzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555556372212695040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3699\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[80,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3700\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[89,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[109,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[61,84]}]},\"3701\":{\"hashtags\":[{\"text\":\"exoneratepingexpress\",\"indices\":[5,26]},{\"text\":\"fireboydml\",\"indices\":[69,80]},{\"text\":\"Pelosi\",\"indices\":[81,88]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[89,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[41,64]}]},\"3702\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[111,122]},{\"text\":\"Pelosi\",\"indices\":[123,130]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[131,156]},{\"text\":\"OBIDIENTS\",\"indices\":[160,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[83,106]}]},\"3703\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[104,115]},{\"text\":\"Pelosi\",\"indices\":[116,123]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[124,149]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[76,99]}]},\"3704\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[101,112]},{\"text\":\"Pelosi\",\"indices\":[113,120]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[121,146]},{\"text\":\"Ashawo\",\"indices\":[150,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[73,96]}]},\"3705\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[95,106]},{\"text\":\"Pelosi\",\"indices\":[107,114]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[115,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfRxyu0LC1\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3S0Xym14u6Y\",\"display_url\":\"youtu.be\\/3S0Xym14u6Y\",\"indices\":[67,90]}]},\"3706\":{\"hashtags\":[{\"text\":\"goodmorning\",\"indices\":[88,100]},{\"text\":\"GoodFriday\",\"indices\":[101,112]},{\"text\":\"fridaymorning\",\"indices\":[113,127]},{\"text\":\"AskKTR\",\"indices\":[128,135]},{\"text\":\"TheGreatIndianrun\",\"indices\":[136,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3\",\"indices\":[200,208]},{\"text\":\"M\\u30b9\\u30c6\",\"indices\":[209,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555534023228903425,\"id_str\":\"1555534023228903425\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"url\":\"https:\\/\\/t.co\\/FcFymJMhdH\",\"display_url\":\"pic.twitter.com\\/FcFymJMhdH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534034532540417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}}}]},\"3707\":{\"hashtags\":[{\"text\":\"goodmorning\",\"indices\":[88,100]},{\"text\":\"GoodFriday\",\"indices\":[101,112]},{\"text\":\"fridaymorning\",\"indices\":[113,127]},{\"text\":\"AskKTR\",\"indices\":[128,135]},{\"text\":\"TheGreatIndianrun\",\"indices\":[136,154]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"\\u30c1\\u30a7\\u30f3\\u30bd\\u30fc\\u30de\\u30f3\",\"indices\":[200,208]},{\"text\":\"M\\u30b9\\u30c6\",\"indices\":[209,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555533804319694848,\"id_str\":\"1555533804319694848\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"url\":\"https:\\/\\/t.co\\/E6XPmZ4pnd\",\"display_url\":\"pic.twitter.com\\/E6XPmZ4pnd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534015318335489\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3708\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[34,54]},{\"text\":\"Obidiots\",\"indices\":[55,64]},{\"text\":\"Mandem\",\"indices\":[130,137]},{\"text\":\"Badness\",\"indices\":[138,146]},{\"text\":\"PoweredByData\",\"indices\":[152,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555533294829281282,\"id_str\":\"1555533294829281282\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"url\":\"https:\\/\\/t.co\\/SNcjXSw4pD\",\"display_url\":\"pic.twitter.com\\/SNcjXSw4pD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FunJumbo\\/status\\/1555533331395186690\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3709\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[22,29]},{\"text\":\"China\",\"indices\":[57,63]},{\"text\":\"Beijing\",\"indices\":[107,115]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[184,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555530474134839296,\"id_str\":\"1555530474134839296\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"url\":\"https:\\/\\/t.co\\/uqc3FNHJL9\",\"display_url\":\"pic.twitter.com\\/uqc3FNHJL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555530540459012096\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":289,\"resize\":\"fit\"}}}]},\"3710\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[43,49]},{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[85,103]},{\"text\":\"News\",\"indices\":[104,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555528620726427648,\"id_str\":\"1555528620726427648\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"url\":\"https:\\/\\/t.co\\/ZIj4k14Ftz\",\"display_url\":\"pic.twitter.com\\/ZIj4k14Ftz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555528686379859970\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3711\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"China\",\"indices\":[136,142]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[143,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555527526252183553,\"id_str\":\"1555527526252183553\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"url\":\"https:\\/\\/t.co\\/IIOx4MDAOm\",\"display_url\":\"pic.twitter.com\\/IIOx4MDAOm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555527538163605504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"3712\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[216,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3713\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3714\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[257,277]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Evaglobal01\",\"name\":\"Oluwatobiloba Amusan, OLY\",\"id\":4839182503,\"id_str\":\"4839182503\",\"indices\":[56,68]},{\"screen_name\":\"birminghamcg22\",\"name\":\"Birmingham 2022\",\"id\":855750715914031105,\"id_str\":\"855750715914031105\",\"indices\":[167,182]}],\"urls\":[],\"media\":[{\"id\":1555519327293657088,\"id_str\":\"1555519327293657088\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xqw6R7zay\",\"display_url\":\"pic.twitter.com\\/8Xqw6R7zay\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tomidearoso\\/status\\/1555519330288287746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"large\":{\"w\":594,\"h\":396,\"resize\":\"fit\"}}}]},\"3715\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[53,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mSmZKXqiuw\",\"expanded_url\":\"https:\\/\\/www.thecable.ng\\/china-imposes-sanctions-on-us-speaker-over-visit-to-taiwan\",\"display_url\":\"thecable.ng\\/china-imposes-\\u2026\",\"indices\":[72,95]}],\"media\":[{\"id\":1555507551046967296,\"id_str\":\"1555507551046967296\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"url\":\"https:\\/\\/t.co\\/k5tjgsoLCv\",\"display_url\":\"pic.twitter.com\\/k5tjgsoLCv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thecableng\\/status\\/1555507581048741889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"medium\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3716\":{\"hashtags\":[{\"text\":\"capitec\",\"indices\":[185,193]},{\"text\":\"Taiwan\",\"indices\":[194,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3717\":{\"hashtags\":[{\"text\":\"damola\",\"indices\":[38,45]},{\"text\":\"Taiwan\",\"indices\":[46,53]},{\"text\":\"Ashawo\",\"indices\":[54,61]},{\"text\":\"Prey\",\"indices\":[62,67]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[68,86]},{\"text\":\"Cucurella\",\"indices\":[87,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9fUMgjIO6g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\",\"display_url\":\"twitter.com\\/The_man_abiola\\u2026\",\"indices\":[98,121]}]},\"3718\":{\"hashtags\":[{\"text\":\"olamide\",\"indices\":[13,21]},{\"text\":\"Modella\",\"indices\":[22,30]},{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"ASUU\",\"indices\":[39,44]},{\"text\":\"BBNajiaS7\",\"indices\":[45,55]},{\"text\":\"BBNaijaS7\",\"indices\":[56,66]},{\"text\":\"BBNaija\",\"indices\":[67,75]},{\"text\":\"Diana\",\"indices\":[76,82]},{\"text\":\"ibadan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aM3C65Hhkl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1555484650553892864\",\"display_url\":\"twitter.com\\/uzorvick\\/statu\\u2026\",\"indices\":[91,114]}]},\"3719\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"Cryptocurency\",\"indices\":[68,82]},{\"text\":\"binance\",\"indices\":[84,92]},{\"text\":\"capitec\",\"indices\":[94,102]},{\"text\":\"bennyXBTSXSnoopDogg\",\"indices\":[104,124]},{\"text\":\"China\",\"indices\":[126,132]},{\"text\":\"BulletTrainMovie\",\"indices\":[134,151]},{\"text\":\"NFTGiveaway\",\"indices\":[153,165]},{\"text\":\"news\",\"indices\":[167,172]},{\"text\":\"Prey\",\"indices\":[174,179]},{\"text\":\"fwcarmy\",\"indices\":[181,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thuanphat1975\",\"name\":\"FWX\",\"id\":1432308884098596870,\"id_str\":\"1432308884098596870\",\"indices\":[0,14]},{\"screen_name\":\"FWCOMMUNITY_Q2T\",\"name\":\"FWCOMMUNITY Token\",\"id\":1515800749367869447,\"id_str\":\"1515800749367869447\",\"indices\":[15,31]},{\"screen_name\":\"bsc_daily\",\"name\":\"BSCDaily\",\"id\":1358688239037546500,\"id_str\":\"1358688239037546500\",\"indices\":[32,42]}],\"urls\":[]},\"3720\":{\"hashtags\":[{\"text\":\"EPL2022\",\"indices\":[175,183]},{\"text\":\"BulletTrainMovie\",\"indices\":[184,201]},{\"text\":\"China\",\"indices\":[202,208]},{\"text\":\"Cryptocurency\",\"indices\":[209,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"ARSCRY\",\"indices\":[258,265]},{\"text\":\"FridayVibe\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Anambra_girl\",\"name\":\"FANTA SIPPER \\ud83c\\udf79\\u26a1\\ufe0f\\ud83d\\udca5\\ud83c\\udf39\\u2728\",\"id\":1179681522,\"id_str\":\"1179681522\",\"indices\":[66,79]},{\"screen_name\":\"Obbyanuju\",\"name\":\"\\u00b0Obianuju\\u00b0\",\"id\":945756555089186816,\"id_str\":\"945756555089186816\",\"indices\":[80,90]},{\"screen_name\":\"EOkala\",\"name\":\"SiRmIxAlOt\\ud83d\\udc41Register2Vote2023\",\"id\":312233975,\"id_str\":\"312233975\",\"indices\":[91,98]},{\"screen_name\":\"oku_yungx\",\"name\":\"Oku\",\"id\":3257654416,\"id_str\":\"3257654416\",\"indices\":[99,109]},{\"screen_name\":\"mr_geff1\",\"name\":\"OWELLE\\ud83e\\udd85\",\"id\":1051440332154515456,\"id_str\":\"1051440332154515456\",\"indices\":[110,119]},{\"screen_name\":\"_debbii3e\",\"name\":\"- F.O\",\"id\":441245607,\"id_str\":\"441245607\",\"indices\":[120,130]},{\"screen_name\":\"ChefPreem\",\"name\":\"Chef Preem \\ud83c\\udf5d\\ud83c\\udf57\\ud83c\\udf56\\ud83c\\udf5b\",\"id\":160913911,\"id_str\":\"160913911\",\"indices\":[131,141]},{\"screen_name\":\"Abiike_Chopstix\",\"name\":\"Chef Abike\",\"id\":997736203423244288,\"id_str\":\"997736203423244288\",\"indices\":[142,158]},{\"screen_name\":\"chisomagbodike\",\"name\":\"chisom\\u2022\",\"id\":1137446704817614851,\"id_str\":\"1137446704817614851\",\"indices\":[159,174]},{\"screen_name\":\"geme_nonyalim\",\"name\":\"Terrible Dancer \\ud83e\\uddda\\u200d\\u2640\\ufe0f\",\"id\":1142137956016304128,\"id_str\":\"1142137956016304128\",\"indices\":[232,246]},{\"screen_name\":\"Wizarab10\",\"name\":\"Sir Dickson\",\"id\":710429203938856960,\"id_str\":\"710429203938856960\",\"indices\":[247,257]}],\"urls\":[],\"media\":[{\"id\":1555484864312393729,\"id_str\":\"1555484864312393729\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"3721\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3722\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"BulletTrainMovie\",\"indices\":[37,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3723\":{\"hashtags\":[{\"text\":\"IPOB\",\"indices\":[48,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"iphone14\",\"indices\":[62,71]},{\"text\":\"peterpurrey\",\"indices\":[72,84]},{\"text\":\"ondo\",\"indices\":[85,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555483886708293632,\"id_str\":\"1555483886708293632\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"url\":\"https:\\/\\/t.co\\/6enx4qzLKR\",\"display_url\":\"pic.twitter.com\\/6enx4qzLKR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555484137737306113\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3724\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[41,48]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3725\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[10,16]},{\"text\":\"NancyPelosi\",\"indices\":[58,70]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPJ7C81tQH\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/p\\/Cg3yJqNDSEH\\/?igshid=YTgzYjQ4ZTY=\",\"display_url\":\"instagram.com\\/p\\/Cg3yJqNDSEH\\/\\u2026\",\"indices\":[149,172]}]},\"3726\":{\"hashtags\":[{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[92,112]},{\"text\":\"TaiwanStrait\",\"indices\":[113,126]},{\"text\":\"TaiwanChinaCrisis\",\"indices\":[127,145]},{\"text\":\"TaiwanChinaWar\",\"indices\":[146,161]},{\"text\":\"Taiwan\",\"indices\":[162,169]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/m9JAcVU9w4\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/china-taiwan-tensions-rise-as-china-fires-missiles-into-taiwan-strait-after-pelosis-visit\\/\",\"display_url\":\"iexclusivenews.com.ng\\/china-taiwan-t\\u2026\",\"indices\":[170,193]}]},\"3727\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[137,141]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"China\",\"indices\":[205,211]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[212,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555166743181549575,\"id_str\":\"1555166743181549575\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"url\":\"https:\\/\\/t.co\\/0x9UZXqgs4\",\"display_url\":\"pic.twitter.com\\/0x9UZXqgs4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firamnews\\/status\\/1555166784336150528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"source_status_id\":1555166784336150528,\"source_status_id_str\":\"1555166784336150528\",\"source_user_id\":957288307179900930,\"source_user_id_str\":\"957288307179900930\"}]},\"3728\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[24,30]},{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555467858410459136,\"id_str\":\"1555467858410459136\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"url\":\"https:\\/\\/t.co\\/SMudtOtjrp\",\"display_url\":\"pic.twitter.com\\/SMudtOtjrp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SaveThePeoplle\\/status\\/1555467862516666371\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"3729\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[78,85]},{\"text\":\"bbnajia\",\"indices\":[86,94]},{\"text\":\"BBNaijaS7\",\"indices\":[95,105]},{\"text\":\"Obidatti023\",\"indices\":[158,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555452005220597760,\"id_str\":\"1555452005220597760\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"url\":\"https:\\/\\/t.co\\/ZLI73IE4TU\",\"display_url\":\"pic.twitter.com\\/ZLI73IE4TU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/safareerealty\\/status\\/1555453386195177473\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}}}]},\"3730\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"BBNaijaS7\",\"indices\":[170,180]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[181,201]},{\"text\":\"BulletTrainMovie\",\"indices\":[202,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qzcuSQPSrV\",\"expanded_url\":\"https:\\/\\/deel.grsm.io\\/d5hufq262eo1\",\"display_url\":\"deel.grsm.io\\/d5hufq262eo1\",\"indices\":[220,243]}]},\"3731\":{\"hashtags\":[{\"text\":\"PiNetwork\",\"indices\":[94,104]},{\"text\":\"StopSellingPi\",\"indices\":[198,212]},{\"text\":\"PiConsensus\",\"indices\":[213,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Blacckk_j\",\"name\":\"Osidele 'Demilade\",\"id\":1338036291875856385,\"id_str\":\"1338036291875856385\",\"indices\":[0,10]}],\"urls\":[]},\"3732\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"bbnajia\",\"indices\":[193,201]},{\"text\":\"BBNaijaS7\",\"indices\":[202,212]},{\"text\":\"Obidatti023\",\"indices\":[265,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555439841231478787,\"id_str\":\"1555439841231478787\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"url\":\"https:\\/\\/t.co\\/MaKgKNoo2B\",\"display_url\":\"pic.twitter.com\\/MaKgKNoo2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1555440103807504385\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3733\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[110,117]},{\"text\":\"bbnajia\",\"indices\":[118,126]},{\"text\":\"BBNaijaS7\",\"indices\":[127,137]},{\"text\":\"Obidatti023\",\"indices\":[190,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555432425475432449,\"id_str\":\"1555432425475432449\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"url\":\"https:\\/\\/t.co\\/MBGIPebu1u\",\"display_url\":\"pic.twitter.com\\/MBGIPebu1u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/muyiwaowen\\/status\\/1555432430298882049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3734\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"DLconversations\",\"indices\":[116,132]},{\"text\":\"GlobalCrusadewithKumuyi\",\"indices\":[134,158]},{\"text\":\"ImpactAcademywithKumuyi\",\"indices\":[160,184]},{\"text\":\"dlcfhq\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"GCK\",\"indices\":[203,207]},{\"text\":\"PastorKumuyiSaid\",\"indices\":[208,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555430868143034368,\"id_str\":\"1555430868143034368\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"url\":\"https:\\/\\/t.co\\/7aelyfUXh4\",\"display_url\":\"pic.twitter.com\\/7aelyfUXh4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SUPalivezobo\\/status\\/1555430906868994051\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3735\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"ElonMusk\",\"indices\":[255,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3736\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[219,226]},{\"text\":\"bbnajia\",\"indices\":[227,235]},{\"text\":\"BBNaijaS7\",\"indices\":[236,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555429781474254848,\"id_str\":\"1555429781474254848\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"url\":\"https:\\/\\/t.co\\/aEzpnS8MzB\",\"display_url\":\"pic.twitter.com\\/aEzpnS8MzB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phone_Stores\\/status\\/1555429855797428224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3737\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[32,49]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[50,70]},{\"text\":\"bennyXBTSXSnoopDogg\",\"indices\":[71,91]},{\"text\":\"capitec\",\"indices\":[92,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"BattleForNo10\",\"indices\":[109,123]},{\"text\":\"\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50\",\"indices\":[124,136]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[137,149]},{\"text\":\"ZamaZamas\",\"indices\":[150,160]},{\"text\":\"AONArsenal\",\"indices\":[161,172]},{\"text\":\"China\",\"indices\":[173,179]},{\"text\":\"Ask\\u0130cin\",\"indices\":[180,188]},{\"text\":\"Explosion\",\"indices\":[189,199]},{\"text\":\"LISA\",\"indices\":[200,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555428357860458499,\"id_str\":\"1555428357860458499\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"url\":\"https:\\/\\/t.co\\/daV6xVvXdF\",\"display_url\":\"pic.twitter.com\\/daV6xVvXdF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555428458246848513\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3738\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"IPPIS\",\"indices\":[36,42]},{\"text\":\"PiConsensus\",\"indices\":[43,55]},{\"text\":\"iphone14\",\"indices\":[56,65]},{\"text\":\"BBNaija\",\"indices\":[66,74]},{\"text\":\"Arewatwitter\",\"indices\":[75,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555427167911256067,\"id_str\":\"1555427167911256067\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"url\":\"https:\\/\\/t.co\\/YAElbkZ8X3\",\"display_url\":\"pic.twitter.com\\/YAElbkZ8X3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555427170872352768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":554,\"resize\":\"fit\"}}}]},\"3739\":{\"hashtags\":[{\"text\":\"OBIDIENT\",\"indices\":[17,26]},{\"text\":\"davidhundeyin\",\"indices\":[39,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Sabinus\",\"indices\":[62,70]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gBR7IocNaC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\",\"display_url\":\"twitter.com\\/maryam_shehu_\\/\\u2026\",\"indices\":[71,94]}]},\"3740\":{\"hashtags\":[{\"text\":\"IPPIS\",\"indices\":[41,47]},{\"text\":\"PiConsensus\",\"indices\":[48,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"iphone14\",\"indices\":[69,78]},{\"text\":\"BBNaija\",\"indices\":[79,87]},{\"text\":\"BadDecisions\",\"indices\":[88,101]},{\"text\":\"cryptocurrency\",\"indices\":[102,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555423884165382144,\"id_str\":\"1555423884165382144\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":960,\"resize\":\"fit\"}}}]},\"3741\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[138,155]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[156,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Ask\\u0130cin\",\"indices\":[185,193]},{\"text\":\"AONArsenal\",\"indices\":[194,205]},{\"text\":\"China\",\"indices\":[206,212]},{\"text\":\"BadDecisions\",\"indices\":[213,226]},{\"text\":\"\\u0e44\\u0e1f\\u0e44\\u0e2b\\u0e21\\u0e49\\u0e1c\\u0e31\\u0e1a\\u0e0a\\u0e25\\u0e1a\\u0e38\\u0e23\\u0e35\",\"indices\":[227,243]},{\"text\":\"\\u738b\\u4e00\\u535a0805\\u751f\\u65e5\\u5feb\\u4e50\",\"indices\":[244,256]},{\"text\":\"BattleForNo10\",\"indices\":[257,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555420334974697472,\"id_str\":\"1555420334974697472\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"url\":\"https:\\/\\/t.co\\/0AcEwTwWsz\",\"display_url\":\"pic.twitter.com\\/0AcEwTwWsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555423133896695808\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3742\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[217,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555420509881487360,\"id_str\":\"1555420509881487360\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"url\":\"https:\\/\\/t.co\\/rpnWM9UjaN\",\"display_url\":\"pic.twitter.com\\/rpnWM9UjaN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ffcproperties\\/status\\/1555420559139393537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"3743\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[13,30]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[31,43]},{\"text\":\"\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059\",\"indices\":[44,60]},{\"text\":\"brunardo\",\"indices\":[61,70]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[71,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"capitec\",\"indices\":[100,108]},{\"text\":\"TheGrandFallout\",\"indices\":[109,125]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[126,146]},{\"text\":\"BBNajia\",\"indices\":[147,155]},{\"text\":\"BBNaijaS7\",\"indices\":[156,166]},{\"text\":\"fireboydml\",\"indices\":[167,178]},{\"text\":\"boiflex\",\"indices\":[179,187]},{\"text\":\"BulletTrainMovie\",\"indices\":[188,205]},{\"text\":\"VMAs\",\"indices\":[206,211]},{\"text\":\"Ask\\u0130cin\",\"indices\":[212,220]},{\"text\":\"ASUUstrike\",\"indices\":[221,232]},{\"text\":\"AEWDynamite\",\"indices\":[233,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555414162645422080,\"id_str\":\"1555414162645422080\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"url\":\"https:\\/\\/t.co\\/gp0PMGENjL\",\"display_url\":\"pic.twitter.com\\/gp0PMGENjL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BoiFlex_\\/status\\/1555414450961879040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3744\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[204,212]},{\"text\":\"Online\",\"indices\":[213,220]},{\"text\":\"Vocalcarecoach\",\"indices\":[221,236]},{\"text\":\"ChoirCapacityCoach\",\"indices\":[237,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"China\",\"indices\":[265,271]},{\"text\":\"Birmingham2022\",\"indices\":[272,287]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555414321768943618,\"id_str\":\"1555414321768943618\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"url\":\"https:\\/\\/t.co\\/8APk6oYuGN\",\"display_url\":\"pic.twitter.com\\/8APk6oYuGN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555414324369391616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"}}}]},\"3745\":{\"hashtags\":[{\"text\":\"Asuu\",\"indices\":[107,112]},{\"text\":\"BulletTrainMovie\",\"indices\":[113,130]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3746\":{\"hashtags\":[{\"text\":\"BBNaija7\",\"indices\":[56,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"HBOMax\",\"indices\":[74,81]},{\"text\":\"capitec\",\"indices\":[82,90]},{\"text\":\"nig\",\"indices\":[91,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555407802868310016,\"id_str\":\"1555407802868310016\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"url\":\"https:\\/\\/t.co\\/kdtxBAi7ug\",\"display_url\":\"pic.twitter.com\\/kdtxBAi7ug\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opiyansky\\/status\\/1555407811441467393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":824,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":824,\"resize\":\"fit\"}}}]},\"3747\":{\"hashtags\":[{\"text\":\"CourierHub\",\"indices\":[45,56]},{\"text\":\"poweredbydata\",\"indices\":[84,98]},{\"text\":\"Fireboy\",\"indices\":[99,107]},{\"text\":\"BBNaijaS7\",\"indices\":[108,118]},{\"text\":\"JapaToPrimeVideo\",\"indices\":[119,136]},{\"text\":\"BulletTrainMovie\",\"indices\":[137,154]},{\"text\":\"BadDecisions\",\"indices\":[156,169]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[171,191]},{\"text\":\"BattleForNo10\",\"indices\":[192,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"BattleForNo10\",\"indices\":[215,229]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[230,250]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[251,271]},{\"text\":\"HBOMax\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CourierHub_\",\"name\":\"CourierHub NG\",\"id\":1385688062492086275,\"id_str\":\"1385688062492086275\",\"indices\":[70,82]}],\"urls\":[],\"media\":[{\"id\":1555407269889822720,\"id_str\":\"1555407269889822720\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"url\":\"https:\\/\\/t.co\\/hDA6NESMyP\",\"display_url\":\"pic.twitter.com\\/hDA6NESMyP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MasterMinderz\\/status\\/1555407272267976704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"small\":{\"w\":581,\"h\":680,\"resize\":\"fit\"}}}]},\"3748\":{\"hashtags\":[{\"text\":\"trenches\",\"indices\":[81,90]},{\"text\":\"EFCC\",\"indices\":[91,96]},{\"text\":\"Rema\",\"indices\":[97,102]},{\"text\":\"Taiwan\",\"indices\":[103,110]},{\"text\":\"Fireboy\",\"indices\":[111,119]},{\"text\":\"olamide\",\"indices\":[120,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3749\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555403686330994690,\"id_str\":\"1555403686330994690\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"url\":\"https:\\/\\/t.co\\/zltNrcYkjY\",\"display_url\":\"pic.twitter.com\\/zltNrcYkjY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yaaseir\\/status\\/1555403943349714944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"3750\":{\"hashtags\":[{\"text\":\"jobsearch\",\"indices\":[118,128]},{\"text\":\"JobVacancy\",\"indices\":[129,140]},{\"text\":\"jobvacancy_alert\",\"indices\":[141,158]},{\"text\":\"jobvacancies\",\"indices\":[159,172]},{\"text\":\"BulletTrainMovie\",\"indices\":[173,190]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[191,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"BadDecisions\",\"indices\":[220,233]},{\"text\":\"capitec\",\"indices\":[234,242]},{\"text\":\"BattleForNo10\",\"indices\":[243,257]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[258,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cJg7uISFsd\",\"expanded_url\":\"https:\\/\\/youtu.be\\/OTTVd2Fu9_k\",\"display_url\":\"youtu.be\\/OTTVd2Fu9_k\",\"indices\":[94,117]}]},\"3751\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[88,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"capitec\",\"indices\":[114,122]},{\"text\":\"BadDecisions\",\"indices\":[123,136]},{\"text\":\"BattleForNo10\",\"indices\":[137,151]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[152,172]},{\"text\":\"BadDecisionswithBTS\",\"indices\":[173,193]},{\"text\":\"ZamaZamas\",\"indices\":[194,204]},{\"text\":\"FireBoy\",\"indices\":[205,213]},{\"text\":\"Niger\",\"indices\":[214,220]},{\"text\":\"BBNajiaS7\",\"indices\":[221,231]},{\"text\":\"BBNaijaS7\",\"indices\":[232,242]},{\"text\":\"ChrisBrown\",\"indices\":[243,254]},{\"text\":\"Afrobeats\",\"indices\":[255,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kW36xQFx0g\",\"expanded_url\":\"https:\\/\\/fb.watch\\/eIjhp2PkBf\\/?mibextid=7htlnv\",\"display_url\":\"fb.watch\\/eIjhp2PkBf\\/?mi\\u2026\",\"indices\":[0,23]}]},\"3752\":{\"hashtags\":[{\"text\":\"Xi\",\"indices\":[118,121]},{\"text\":\"World\",\"indices\":[130,136]},{\"text\":\"WWIII\",\"indices\":[145,151]},{\"text\":\"UkraineWar\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555400976043220992,\"id_str\":\"1555400976043220992\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"url\":\"https:\\/\\/t.co\\/enFmEAy2gz\",\"display_url\":\"pic.twitter.com\\/enFmEAy2gz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Darling41595671\\/status\\/1555400982259179520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"3753\":{\"hashtags\":[{\"text\":\"Chelsea\",\"indices\":[238,246]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"Taiwan\",\"indices\":[254,261]},{\"text\":\"BattleForNo10\",\"indices\":[262,276]},{\"text\":\"Amnesty\",\"indices\":[277,285]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"estressecurado\",\"name\":\"esse perfil \\u00e9 a cura do estresse\",\"id\":1388960611997032462,\"id_str\":\"1388960611997032462\",\"indices\":[0,15]}],\"urls\":[]},\"3754\":{\"hashtags\":[{\"text\":\"unboundfinance\",\"indices\":[68,83]},{\"text\":\"UNB\",\"indices\":[84,88]},{\"text\":\"DeFi\",\"indices\":[89,94]},{\"text\":\"crypto\",\"indices\":[95,102]},{\"text\":\"machala\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"Web3\",\"indices\":[120,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"unboundfinance\",\"name\":\"Unbound\",\"id\":1309922296241336320,\"id_str\":\"1309922296241336320\",\"indices\":[50,65]}],\"urls\":[],\"media\":[{\"id\":1555393247870164992,\"id_str\":\"1555393247870164992\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"url\":\"https:\\/\\/t.co\\/IxSU6u1XwJ\",\"display_url\":\"pic.twitter.com\\/IxSU6u1XwJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timora_inyang\\/status\\/1555393250051194880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"large\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"}}}]},\"3755\":{\"hashtags\":[{\"text\":\"pitobi\",\"indices\":[119,126]},{\"text\":\"tinubu\",\"indices\":[127,134]},{\"text\":\"BAT2023\",\"indices\":[135,143]},{\"text\":\"reno\",\"indices\":[144,149]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[150,175]},{\"text\":\"bella\",\"indices\":[176,182]},{\"text\":\"arsenal\",\"indices\":[183,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"Fireboy\",\"indices\":[200,208]},{\"text\":\"PremierLeague\",\"indices\":[209,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555391098150948865,\"id_str\":\"1555391098150948865\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"url\":\"https:\\/\\/t.co\\/VQmy6B6d5G\",\"display_url\":\"pic.twitter.com\\/VQmy6B6d5G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lilymatyr\\/status\\/1555391148688084992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":425,\"h\":680,\"resize\":\"fit\"}}}]},\"3756\":{\"hashtags\":[{\"text\":\"Crypto\",\"indices\":[21,28]},{\"text\":\"BTC\",\"indices\":[72,76]},{\"text\":\"BBNaijaS7\",\"indices\":[77,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3757\":{\"hashtags\":[{\"text\":\"NigeriaDecides2023\",\"indices\":[47,66]},{\"text\":\"BATSHET2023\",\"indices\":[67,79]},{\"text\":\"PeterObi4President2023\",\"indices\":[80,103]},{\"text\":\"Obidatti2023\",\"indices\":[104,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"China\",\"indices\":[126,132]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TherealUGman\",\"name\":\"UG MAN \\u277c\",\"id\":1391005482396028928,\"id_str\":\"1391005482396028928\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1555375344168869892,\"id_str\":\"1555375344168869892\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"url\":\"https:\\/\\/t.co\\/NwtOsx7Z7p\",\"display_url\":\"pic.twitter.com\\/NwtOsx7Z7p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NFPJNig\\/status\\/1555375695559380994\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"3758\":{\"hashtags\":[{\"text\":\"PremierLeague\",\"indices\":[41,55]},{\"text\":\"NaijaBet\",\"indices\":[264,273]},{\"text\":\"Taiwan\",\"indices\":[274,281]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[239,262]}],\"media\":[{\"id\":1555370210193989632,\"id_str\":\"1555370210193989632\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"url\":\"https:\\/\\/t.co\\/SK3JMA9FMG\",\"display_url\":\"pic.twitter.com\\/SK3JMA9FMG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1555370218377166853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3759\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"BBNaijaS7\",\"indices\":[170,180]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[181,201]},{\"text\":\"BulletTrainMovie\",\"indices\":[202,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qzcuSR7tjt\",\"expanded_url\":\"https:\\/\\/deel.grsm.io\\/d5hufq262eo1\",\"display_url\":\"deel.grsm.io\\/d5hufq262eo1\",\"indices\":[220,243]}]},\"3760\":{\"hashtags\":[{\"text\":\"brandorx\",\"indices\":[70,79]},{\"text\":\"EverythingBranding\",\"indices\":[80,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"BBNaijaS7\",\"indices\":[116,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555363980968853504,\"id_str\":\"1555363980968853504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"url\":\"https:\\/\\/t.co\\/0NAHWhR8MZ\",\"display_url\":\"pic.twitter.com\\/0NAHWhR8MZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandorxinc\\/status\\/1555363998995988483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3761\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[74,84]},{\"text\":\"capitec\",\"indices\":[127,135]},{\"text\":\"BulletTrainMovie\",\"indices\":[136,153]},{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[162,182]},{\"text\":\"Ask\\u0130cin\",\"indices\":[183,191]},{\"text\":\"BBNaijaS7\",\"indices\":[192,202]},{\"text\":\"thursdayvibes\",\"indices\":[203,217]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[218,234]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[88,100]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[102,125]}]},\"3762\":{\"hashtags\":[{\"text\":\"Obalende\",\"indices\":[27,36]},{\"text\":\"BulletTrainMovie\",\"indices\":[39,56]},{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"capitec\",\"indices\":[65,73]},{\"text\":\"TheGrandFallout\",\"indices\":[74,90]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[92,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBk0P7D9BU\",\"expanded_url\":\"https:\\/\\/lnk.to\\/obalende\",\"display_url\":\"lnk.to\\/obalende\",\"indices\":[109,132]}]},\"3763\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"BulletTrainMovie\",\"indices\":[32,49]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[50,70]},{\"text\":\"BBNaijaS7\",\"indices\":[71,81]},{\"text\":\"Explosion\",\"indices\":[82,92]},{\"text\":\"PeterObi\",\"indices\":[93,102]},{\"text\":\"kagiso\",\"indices\":[103,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555351779956727809,\"id_str\":\"1555351779956727809\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"url\":\"https:\\/\\/t.co\\/j62UIGDzHd\",\"display_url\":\"pic.twitter.com\\/j62UIGDzHd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ochocheijeleche\\/status\\/1555351846230921216\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3764\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[0,10]},{\"text\":\"BulletTrainMovie\",\"indices\":[92,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[118,138]},{\"text\":\"JKLive\",\"indices\":[139,146]},{\"text\":\"PokemonScarletViolet\",\"indices\":[147,168]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[169,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[29,41]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[68,91]}]},\"3765\":{\"hashtags\":[{\"text\":\"tgif\",\"indices\":[27,32]},{\"text\":\"BulletTrainMovie\",\"indices\":[33,50]},{\"text\":\"BBNaijaS7\",\"indices\":[51,61]},{\"text\":\"BB24\",\"indices\":[63,68]},{\"text\":\"Explosion\",\"indices\":[69,79]},{\"text\":\"Trending\",\"indices\":[80,89]},{\"text\":\"twitter\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"BadDecisions\",\"indices\":[109,122]},{\"text\":\"AONArsenal\",\"indices\":[124,135]},{\"text\":\"EPL\",\"indices\":[137,141]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[143,168]},{\"text\":\"EPL2022\",\"indices\":[170,178]},{\"text\":\"BeautyTukura\",\"indices\":[180,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555351029113315331,\"id_str\":\"1555351029113315331\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"url\":\"https:\\/\\/t.co\\/R8GzyJsaar\",\"display_url\":\"pic.twitter.com\\/R8GzyJsaar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1555351032011571202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"small\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":424,\"h\":361,\"resize\":\"fit\"}}}]},\"3766\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[8,18]},{\"text\":\"BulletTrainMovie\",\"indices\":[44,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[70,90]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[91,103]},{\"text\":\"TheGrandFallout\",\"indices\":[104,120]},{\"text\":\"Ask\\u0130cin\",\"indices\":[121,129]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[131,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[19,42]}]},\"3767\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[149,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"skynews\",\"indices\":[177,185]},{\"text\":\"thursdayvibes\",\"indices\":[186,200]},{\"text\":\"BBNaijaS7\",\"indices\":[201,211]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[212,228]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[102,114]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[116,139]}]},\"3768\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[23,33]},{\"text\":\"BulletTrainMovie\",\"indices\":[73,90]},{\"text\":\"capitec\",\"indices\":[91,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[108,128]},{\"text\":\"TheGrandFallout\",\"indices\":[129,145]},{\"text\":\"thursdayvibes\",\"indices\":[146,160]},{\"text\":\"BBNaijaS7\",\"indices\":[161,171]},{\"text\":\"NINJAWARRIORSFC\",\"indices\":[172,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dunkishrock\",\"name\":\"Duncan Daniels US Afrobeats Artist\",\"id\":28846008,\"id_str\":\"28846008\",\"indices\":[59,71]}],\"urls\":[],\"media\":[{\"id\":1555346508429594626,\"id_str\":\"1555346508429594626\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"url\":\"https:\\/\\/t.co\\/Lwq6cEPuqR\",\"display_url\":\"pic.twitter.com\\/Lwq6cEPuqR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1555346514528051200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3769\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[103,125]},{\"text\":\"AbujaFinders\",\"indices\":[126,139]},{\"text\":\"RealEstate\",\"indices\":[140,151]},{\"text\":\"PeterObi\",\"indices\":[152,161]},{\"text\":\"EndSARS\",\"indices\":[162,170]},{\"text\":\"Barcelona\",\"indices\":[171,181]},{\"text\":\"Barca\",\"indices\":[182,188]},{\"text\":\"PeterObi4President2023\",\"indices\":[189,212]},{\"text\":\"BBNaija7\",\"indices\":[213,222]},{\"text\":\"INEC\",\"indices\":[223,228]},{\"text\":\"Arewa4PeterObi\",\"indices\":[229,244]},{\"text\":\"BBNaija\",\"indices\":[245,253]},{\"text\":\"China\",\"indices\":[254,260]},{\"text\":\"Chelsea\",\"indices\":[261,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555341930967572482,\"id_str\":\"1555341930967572482\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"url\":\"https:\\/\\/t.co\\/2ueIR9txeq\",\"display_url\":\"pic.twitter.com\\/2ueIR9txeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555341970872090626\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}}}]},\"3770\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555341318657802240,\"id_str\":\"1555341318657802240\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"url\":\"https:\\/\\/t.co\\/iAL0HSO7tQ\",\"display_url\":\"pic.twitter.com\\/iAL0HSO7tQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sobioemma\\/status\\/1555341323653242880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3771\":{\"hashtags\":[{\"text\":\"AllOrNothingArsenal\",\"indices\":[35,55]},{\"text\":\"China\",\"indices\":[56,62]},{\"text\":\"BBNaijaS7\",\"indices\":[63,73]},{\"text\":\"thursdayvibes\",\"indices\":[74,88]},{\"text\":\"thursdayvibes\",\"indices\":[89,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[112,132]},{\"text\":\"skynews\",\"indices\":[133,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555339718589546498,\"id_str\":\"1555339718589546498\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3772\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"China\",\"indices\":[167,173]},{\"text\":\"WorldWarIII\",\"indices\":[174,186]},{\"text\":\"war\",\"indices\":[187,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3773\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[261,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3774\":{\"hashtags\":[{\"text\":\"Apple\",\"indices\":[91,97]},{\"text\":\"Spotify\",\"indices\":[104,112]},{\"text\":\"iphone14\",\"indices\":[113,122]},{\"text\":\"thursdayvibes\",\"indices\":[123,137]},{\"text\":\"China\",\"indices\":[138,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rmRGxznAIg\",\"expanded_url\":\"https:\\/\\/youtu.be\\/QUUde9FircU\",\"display_url\":\"youtu.be\\/QUUde9FircU\",\"indices\":[66,89]}]},\"3775\":{\"hashtags\":[{\"text\":\"fireboydml\",\"indices\":[73,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"WarnerBrosDiscovery\",\"indices\":[93,113]},{\"text\":\"ASUU\",\"indices\":[114,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GmJsQslGLp\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Q39GYu\",\"display_url\":\"bit.ly\\/3Q39GYu\",\"indices\":[130,153]}]},\"3776\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7e9OC26Hdi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SilverSpookGuy\\/status\\/1554185261956730882\",\"display_url\":\"twitter.com\\/SilverSpookGuy\\u2026\",\"indices\":[57,80]}]},\"3777\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[224,231]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CatrionaLaing1\",\"name\":\"Catriona Laing\",\"id\":535088290,\"id_str\":\"535088290\",\"indices\":[112,127]}],\"urls\":[],\"media\":[{\"id\":1555330350544461824,\"id_str\":\"1555330350544461824\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"3778\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[105,122]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[132,152]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[153,171]},{\"text\":\"BBNaijaS7\",\"indices\":[172,182]},{\"text\":\"ModijiOpensSRH\",\"indices\":[183,198]},{\"text\":\"Machala\",\"indices\":[199,207]},{\"text\":\"newmonth\",\"indices\":[208,217]},{\"text\":\"timesupolivia\",\"indices\":[218,232]},{\"text\":\"capitec\",\"indices\":[233,241]},{\"text\":\"Explosion\",\"indices\":[242,252]},{\"text\":\"UkraineRussiaWar\",\"indices\":[253,270]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[271,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3779\":{\"hashtags\":[{\"text\":\"nosablog\",\"indices\":[111,120]},{\"text\":\"life\",\"indices\":[121,126]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[127,139]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[140,160]},{\"text\":\"OBIDIENTS\",\"indices\":[161,171]},{\"text\":\"bbnaija\",\"indices\":[172,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aFGYYLQf7u\",\"expanded_url\":\"https:\\/\\/www.nosablog.com\\/category\\/NEWS\\/China-allegedly-prepares-to-invade-Taiwan-barely-24-hour-after-America-s-Pelosi-visit?id=62ec4c887128610016666151\",\"display_url\":\"nosablog.com\\/category\\/NEWS\\/\\u2026\",\"indices\":[86,109]}]},\"3780\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[44,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"capitec\",\"indices\":[70,78]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[79,99]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[100,112]},{\"text\":\"ExtraordinaryAttorneyWooEp11\",\"indices\":[113,142]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[143,161]},{\"text\":\"BibleSumett\",\"indices\":[162,174]},{\"text\":\"PokemonPresents\",\"indices\":[175,191]},{\"text\":\"PokemonScarletViolet\",\"indices\":[192,213]},{\"text\":\"BBNaijaS7\",\"indices\":[214,224]},{\"text\":\"skynews\",\"indices\":[225,233]},{\"text\":\"Explosion\",\"indices\":[234,244]},{\"text\":\"onstorm\",\"indices\":[245,253]},{\"text\":\"foryou\",\"indices\":[254,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555322810226163713,\"id_str\":\"1555322810226163713\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"url\":\"https:\\/\\/t.co\\/cEGxjhHBpI\",\"display_url\":\"pic.twitter.com\\/cEGxjhHBpI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/exponentnwachae\\/status\\/1555322974445641741\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3781\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[37,54]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"BadDecisions\",\"indices\":[63,76]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3782\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[79,99]},{\"text\":\"capitec\",\"indices\":[100,108]},{\"text\":\"2023Elections\",\"indices\":[110,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3783\":{\"hashtags\":[{\"text\":\"Adekunle\",\"indices\":[0,9]},{\"text\":\"Wizkid\",\"indices\":[10,17]},{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"Whatsapp\",\"indices\":[84,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555318538319060994,\"id_str\":\"1555318538319060994\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"url\":\"https:\\/\\/t.co\\/G9GAtpSjXN\",\"display_url\":\"pic.twitter.com\\/G9GAtpSjXN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555318567473651713\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":352,\"h\":628,\"resize\":\"fit\"}}}]},\"3784\":{\"hashtags\":[{\"text\":\"ETH\",\"indices\":[70,74]},{\"text\":\"Ethereum\",\"indices\":[75,84]},{\"text\":\"CryptoNews\",\"indices\":[85,96]},{\"text\":\"DeFi\",\"indices\":[97,102]},{\"text\":\"Metaverse\",\"indices\":[103,113]},{\"text\":\"Poshmark\",\"indices\":[114,123]},{\"text\":\"BBNaija\",\"indices\":[124,132]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"nftart\",\"indices\":[141,148]},{\"text\":\"NFT\",\"indices\":[149,153]},{\"text\":\"BTC\",\"indices\":[154,158]},{\"text\":\"institutions\",\"indices\":[159,172]},{\"text\":\"AdoptATeacher\",\"indices\":[173,187]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555317034237526017,\"id_str\":\"1555317034237526017\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"url\":\"https:\\/\\/t.co\\/ud1UpF6RVS\",\"display_url\":\"pic.twitter.com\\/ud1UpF6RVS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SammyGr96158056\\/status\\/1555317037097951233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"3785\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[0,10]},{\"text\":\"Taiwan\",\"indices\":[11,18]},{\"text\":\"BigBrother\",\"indices\":[19,30]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[31,49]},{\"text\":\"BBNajia\",\"indices\":[50,58]},{\"text\":\"BBNaija\",\"indices\":[59,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555316793249599489,\"id_str\":\"1555316793249599489\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"url\":\"https:\\/\\/t.co\\/npACZaYBZJ\",\"display_url\":\"pic.twitter.com\\/npACZaYBZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndrewKunz7\\/status\\/1555316858437484544\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3786\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[55,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BadDecisions\",\"indices\":[81,94]},{\"text\":\"skynews\",\"indices\":[95,103]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[104,124]},{\"text\":\"ExtraordinaryAttorneyWooEp11\",\"indices\":[125,154]},{\"text\":\"ExtraordinaryAttorneyWooEp11\",\"indices\":[155,184]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555315028865212418,\"id_str\":\"1555315028865212418\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"url\":\"https:\\/\\/t.co\\/VHp1KIltN6\",\"display_url\":\"pic.twitter.com\\/VHp1KIltN6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kevinice0\\/status\\/1555315108515123205\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"3787\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555313890539573252,\"id_str\":\"1555313890539573252\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"url\":\"https:\\/\\/t.co\\/sGrgwMYnR0\",\"display_url\":\"pic.twitter.com\\/sGrgwMYnR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zeus_el_Savage\\/status\\/1555313928296665088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":202,\"h\":424,\"resize\":\"fit\"}}}]},\"3788\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[34,51]},{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[60,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3789\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"Bullish\",\"indices\":[45,53]},{\"text\":\"iphone14\",\"indices\":[54,63]},{\"text\":\"PiConsensus\",\"indices\":[64,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555313075116449793,\"id_str\":\"1555313075116449793\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"url\":\"https:\\/\\/t.co\\/J5gc59nY80\",\"display_url\":\"pic.twitter.com\\/J5gc59nY80\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555313085501652992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":866,\"h\":1298,\"resize\":\"fit\"}}}]},\"3790\":{\"hashtags\":[{\"text\":\"ThinkBIGSundayWithMarsha\",\"indices\":[34,59]},{\"text\":\"dailyinspiration\",\"indices\":[60,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"heralddigitals\",\"indices\":[86,101]},{\"text\":\"enterpreneur\",\"indices\":[102,115]},{\"text\":\"WebsiteDesign\",\"indices\":[116,130]},{\"text\":\"graphicdesign\",\"indices\":[131,145]},{\"text\":\"branding\",\"indices\":[146,155]},{\"text\":\"herald_digitals\",\"indices\":[156,172]},{\"text\":\"businessconsulting\",\"indices\":[173,192]},{\"text\":\"business\",\"indices\":[193,202]},{\"text\":\"wisdomtidbit\",\"indices\":[204,217]},{\"text\":\"PAG\",\"indices\":[218,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555310046082383875,\"id_str\":\"1555310046082383875\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"url\":\"https:\\/\\/t.co\\/yPQQwkGuw0\",\"display_url\":\"pic.twitter.com\\/yPQQwkGuw0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/herald_digitals\\/status\\/1555310059139354627\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3791\":{\"hashtags\":[{\"text\":\"cryptocurrencies\",\"indices\":[0,17]},{\"text\":\"PiConsensus\",\"indices\":[32,44]},{\"text\":\"PiNetwork\",\"indices\":[149,159]},{\"text\":\"Pioneers\",\"indices\":[164,173]},{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"China\",\"indices\":[255,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555309780943650819,\"id_str\":\"1555309780943650819\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"url\":\"https:\\/\\/t.co\\/gbEdagmUIq\",\"display_url\":\"pic.twitter.com\\/gbEdagmUIq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555309799948034048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"3792\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"BBNaijaS7\",\"indices\":[25,35]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[36,54]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[55,73]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555308891436621826,\"id_str\":\"1555308891436621826\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"url\":\"https:\\/\\/t.co\\/pHWTp7I5mJ\",\"display_url\":\"pic.twitter.com\\/pHWTp7I5mJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555309544292630528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3793\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[221,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555308819101663232,\"id_str\":\"1555308819101663232\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"url\":\"https:\\/\\/t.co\\/NuKqOdXZll\",\"display_url\":\"pic.twitter.com\\/NuKqOdXZll\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AlwaysWorried__\\/status\\/1555308825040879622\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":369,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":391,\"resize\":\"fit\"}}}]},\"3794\":{\"hashtags\":[{\"text\":\"SiBANP2PCONFERENCE\",\"indices\":[26,45]},{\"text\":\"Bitcoin\",\"indices\":[85,93]},{\"text\":\"Coinbase\",\"indices\":[94,103]},{\"text\":\"Binance\",\"indices\":[104,112]},{\"text\":\"Taiwan\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ARISEtv\",\"name\":\"ARISE NEWS\",\"id\":1087778780,\"id_str\":\"1087778780\",\"indices\":[113,121]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[122,133]}],\"urls\":[],\"media\":[{\"id\":1555307142520922112,\"id_str\":\"1555307142520922112\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"url\":\"https:\\/\\/t.co\\/2bK4aGnVAU\",\"display_url\":\"pic.twitter.com\\/2bK4aGnVAU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rumerule\\/status\\/1555307151958188036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3795\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[88,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[114,134]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[135,153]},{\"text\":\"BBNaijaS7\",\"indices\":[154,164]},{\"text\":\"ModijiOpensSRH\",\"indices\":[165,180]},{\"text\":\"Machala\",\"indices\":[181,189]},{\"text\":\"newmonth\",\"indices\":[190,199]},{\"text\":\"timesupolivia\",\"indices\":[200,214]},{\"text\":\"capitec\",\"indices\":[215,223]},{\"text\":\"Explosion\",\"indices\":[224,234]},{\"text\":\"UkraineRussiaWar\",\"indices\":[235,252]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[253,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3796\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[194,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555303203847249921,\"id_str\":\"1555303203847249921\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"url\":\"https:\\/\\/t.co\\/cbSE372zmL\",\"display_url\":\"pic.twitter.com\\/cbSE372zmL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Twenty_naira\\/status\\/1555303207236255744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":414,\"resize\":\"fit\"}}}]},\"3797\":{\"hashtags\":[{\"text\":\"model\",\"indices\":[65,71]},{\"text\":\"LeverageRedemption\",\"indices\":[72,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"BadDecisionsTODAY\",\"indices\":[102,120]},{\"text\":\"BBNaijaS7\",\"indices\":[121,131]},{\"text\":\"EPL2022\",\"indices\":[132,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"elonmusk\",\"name\":\"Elon Musk\",\"id\":44196397,\"id_str\":\"44196397\",\"indices\":[31,40]}],\"urls\":[]},\"3798\":{\"hashtags\":[{\"text\":\"Deborah\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"bigbrother24\",\"indices\":[124,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3799\":{\"hashtags\":[{\"text\":\"prank\",\"indices\":[40,46]},{\"text\":\"trender_sam\",\"indices\":[47,59]},{\"text\":\"explore\",\"indices\":[60,68]},{\"text\":\"ManUnited\",\"indices\":[69,79]},{\"text\":\"China\",\"indices\":[80,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"capitec\",\"indices\":[95,103]},{\"text\":\"Birmingham2022\",\"indices\":[104,119]},{\"text\":\"trendingvideos\",\"indices\":[120,135]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555299449458622465,\"id_str\":\"1555299449458622465\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"url\":\"https:\\/\\/t.co\\/XmsWKco1NS\",\"display_url\":\"pic.twitter.com\\/XmsWKco1NS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trender_sam\\/status\\/1555299516613627904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"}}}]},\"3800\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"capitec\",\"indices\":[246,254]},{\"text\":\"China\",\"indices\":[255,261]},{\"text\":\"onstorm\",\"indices\":[262,270]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[271,291]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555297038035714048,\"id_str\":\"1555297038035714048\",\"indices\":[292,315],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/Na4Yekzzmu\",\"display_url\":\"pic.twitter.com\\/Na4Yekzzmu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555298493316665346\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3801\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[5,20]}],\"urls\":[]},\"3802\":{\"hashtags\":[{\"text\":\"eajor\",\"indices\":[73,79]},{\"text\":\"BidenHasCancer\",\"indices\":[161,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"BB24\",\"indices\":[185,190]},{\"text\":\"BreakingNews\",\"indices\":[191,204]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"eajorng\",\"name\":\"eAjor\",\"id\":2674298212,\"id_str\":\"2674298212\",\"indices\":[0,8]}],\"urls\":[]},\"3803\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"capitec\",\"indices\":[61,69]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[70,90]},{\"text\":\"AtikuOkowa2023\",\"indices\":[91,106]},{\"text\":\"osun\",\"indices\":[107,112]},{\"text\":\"eoa\",\"indices\":[113,117]},{\"text\":\"NigeriaDecides2023\",\"indices\":[118,137]},{\"text\":\"KoffeeWithKaran\",\"indices\":[138,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555297198270816256,\"id_str\":\"1555297198270816256\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"url\":\"https:\\/\\/t.co\\/eUgJVcdOgP\",\"display_url\":\"pic.twitter.com\\/eUgJVcdOgP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EOAlakpodia\\/status\\/1555297218936115202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3804\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[161,167]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3805\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[25,45]},{\"text\":\"capitec\",\"indices\":[46,54]},{\"text\":\"KoffeeWithKaran\",\"indices\":[55,71]},{\"text\":\"onstorm\",\"indices\":[72,80]},{\"text\":\"PokemonPresents\",\"indices\":[81,97]},{\"text\":\"Birmingham2022\",\"indices\":[98,113]},{\"text\":\"\\u0e04\\u0e37\\u0e2d\\u0e40\\u0e18\\u0e2dEP6\",\"indices\":[114,124]},{\"text\":\"BBN\",\"indices\":[125,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555293433522159617,\"id_str\":\"1555293433522159617\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"url\":\"https:\\/\\/t.co\\/YPAKeLtsly\",\"display_url\":\"pic.twitter.com\\/YPAKeLtsly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/werey_mecho\\/status\\/1555293488253747200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"}}}]},\"3806\":{\"hashtags\":[{\"text\":\"TAIWAN\",\"indices\":[0,7]},{\"text\":\"CHINA\",\"indices\":[169,175]},{\"text\":\"TAIWAN\",\"indices\":[223,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"taiwanfoucs\",\"name\":\"\\u53f0\\u7063\\u4f5b\\u514b\\u65afTaiwanFocus\",\"id\":1029735476108783617,\"id_str\":\"1029735476108783617\",\"indices\":[8,20]}],\"urls\":[]},\"3807\":{\"hashtags\":[{\"text\":\"TAIWAN\",\"indices\":[0,7]},{\"text\":\"CHINA\",\"indices\":[169,175]},{\"text\":\"TAIWAN\",\"indices\":[223,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"taiwandefense\",\"name\":\"Taiwan Defense\",\"id\":609277533,\"id_str\":\"609277533\",\"indices\":[8,22]}],\"urls\":[]},\"3808\":{\"hashtags\":[{\"text\":\"crowdfundingcampaign\",\"indices\":[166,187]},{\"text\":\"Kickstarter\",\"indices\":[188,200]},{\"text\":\"GoFundMe\",\"indices\":[201,210]},{\"text\":\"support\",\"indices\":[211,219]},{\"text\":\"Taiwan\",\"indices\":[220,227]},{\"text\":\"TejRan\",\"indices\":[228,235]},{\"text\":\"TREASUREinManila\",\"indices\":[236,253]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[254,279]},{\"text\":\"YEONJUN\",\"indices\":[280,288]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"httpxellise\",\"name\":\"Ellise\",\"id\":1235930251844153344,\"id_str\":\"1235930251844153344\",\"indices\":[0,12]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[142,165]}],\"media\":[{\"id\":1555289978367889411,\"id_str\":\"1555289978367889411\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"url\":\"https:\\/\\/t.co\\/7rnj6pp7NE\",\"display_url\":\"pic.twitter.com\\/7rnj6pp7NE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555290140561625090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"3809\":{\"hashtags\":[{\"text\":\"Ankaradress\",\"indices\":[68,80]},{\"text\":\"Ankara\",\"indices\":[81,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"capitec\",\"indices\":[115,123]},{\"text\":\"recession\",\"indices\":[124,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555289948055560192,\"id_str\":\"1555289948055560192\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"url\":\"https:\\/\\/t.co\\/Ws8Ki9CFt1\",\"display_url\":\"pic.twitter.com\\/Ws8Ki9CFt1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GraceoxfordAgt\\/status\\/1555289958906200064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":702,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":900,\"resize\":\"fit\"}}}]},\"3810\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[143,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"capitec\",\"indices\":[169,177]},{\"text\":\"onstorm\",\"indices\":[178,186]},{\"text\":\"recession\",\"indices\":[187,197]},{\"text\":\"news\",\"indices\":[198,203]},{\"text\":\"PokemonPresents\",\"indices\":[204,220]},{\"text\":\"ChelseaFC\",\"indices\":[221,231]},{\"text\":\"Birmingham2022\",\"indices\":[232,247]},{\"text\":\"music\",\"indices\":[248,254]},{\"text\":\"Musica\",\"indices\":[255,262]},{\"text\":\"vocalcarecoach\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555288389473259522,\"id_str\":\"1555288389473259522\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"url\":\"https:\\/\\/t.co\\/48lu9wGaF4\",\"display_url\":\"pic.twitter.com\\/48lu9wGaF4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555289069831311363\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3811\":{\"hashtags\":[{\"text\":\"PiConsensus\",\"indices\":[8,20]},{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555288704796827653,\"id_str\":\"1555288704796827653\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"3812\":{\"hashtags\":[{\"text\":\"wizkid\",\"indices\":[130,137]},{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Alibaba\",\"indices\":[146,154]},{\"text\":\"Sabinus\",\"indices\":[155,163]},{\"text\":\"art\",\"indices\":[164,168]},{\"text\":\"smudgepainting\",\"indices\":[169,184]},{\"text\":\"Giveaway\",\"indices\":[185,194]},{\"text\":\"actress\",\"indices\":[195,203]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_kehindebankole\",\"name\":\"KEHINDE BANKOLE\",\"id\":715794097,\"id_str\":\"715794097\",\"indices\":[21,37]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M6oEDZjc76\",\"expanded_url\":\"http:\\/\\/Wa.me\\/2347011897322\",\"display_url\":\"Wa.me\\/2347011897322\",\"indices\":[105,128]}],\"media\":[{\"id\":1555288001953013766,\"id_str\":\"1555288001953013766\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"url\":\"https:\\/\\/t.co\\/XvDzDntGau\",\"display_url\":\"pic.twitter.com\\/XvDzDntGau\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RaywondersA\\/status\\/1555288045670354950\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"3813\":{\"hashtags\":[{\"text\":\"GlazersOut\",\"indices\":[12,23]},{\"text\":\"BulletTrainMovie\",\"indices\":[24,41]},{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"MUFC\",\"indices\":[51,56]},{\"text\":\"capitec\",\"indices\":[58,66]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555287078228955137,\"id_str\":\"1555287078228955137\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"url\":\"https:\\/\\/t.co\\/wq0Y1ftS4q\",\"display_url\":\"pic.twitter.com\\/wq0Y1ftS4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Deni_kuddz\\/status\\/1555287099267551234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":702,\"resize\":\"fit\"},\"small\":{\"w\":465,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":702,\"resize\":\"fit\"}}}]},\"3814\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Japan\",\"indices\":[44,50]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[110,128]},{\"text\":\"ChinaTaiwan\",\"indices\":[129,141]},{\"text\":\"Japanese\",\"indices\":[142,151]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555286306628210688,\"id_str\":\"1555286306628210688\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV8p9aakAAva4m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV8p9aakAAva4m.jpg\",\"url\":\"https:\\/\\/t.co\\/IDGmEP8m4s\",\"display_url\":\"pic.twitter.com\\/IDGmEP8m4s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ne__point\\/status\\/1555286309412909056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":199,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":199,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":199,\"resize\":\"fit\"}}}]},\"3815\":{\"hashtags\":[{\"text\":\"my5starstory\",\"indices\":[70,83]},{\"text\":\"capitec\",\"indices\":[183,191]},{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"BulletTrainMovie\",\"indices\":[200,217]},{\"text\":\"onstorm\",\"indices\":[218,226]},{\"text\":\"music\",\"indices\":[227,233]},{\"text\":\"BB24\",\"indices\":[234,239]},{\"text\":\"BBNaijaS7\",\"indices\":[240,250]},{\"text\":\"BulletTrain\",\"indices\":[251,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[145,158]}],\"urls\":[],\"media\":[{\"id\":1555286117347459072,\"id_str\":\"1555286117347459072\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"url\":\"https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"display_url\":\"pic.twitter.com\\/Ie9UaQ7YBU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kinqbrizy1\\/status\\/1555286290148589571\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"3816\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[140,157]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"capitec\",\"indices\":[166,174]},{\"text\":\"PokemonPresents\",\"indices\":[175,191]},{\"text\":\"PokemonScarletViolet\",\"indices\":[192,213]},{\"text\":\"Birmingham2022\",\"indices\":[214,229]},{\"text\":\"onstorm\",\"indices\":[230,238]},{\"text\":\"recession\",\"indices\":[239,249]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ConvergenceFin\",\"name\":\"Convergence Finance\",\"id\":1359091443537563651,\"id_str\":\"1359091443537563651\",\"indices\":[64,79]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5NHIvfXkRL\",\"expanded_url\":\"https:\\/\\/t.me\\/convergencefinanceofficial\",\"display_url\":\"t.me\\/convergencefin\\u2026\",\"indices\":[115,138]}],\"media\":[{\"id\":1555285317451644929,\"id_str\":\"1555285317451644929\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"url\":\"https:\\/\\/t.co\\/1M5P4K2WZ9\",\"display_url\":\"pic.twitter.com\\/1M5P4K2WZ9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1555285352222441474\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1121,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1884,\"h\":1760,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":635,\"resize\":\"fit\"}}}]},\"3817\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"nimc\",\"indices\":[208,213]},{\"text\":\"nin\",\"indices\":[214,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3818\":{\"hashtags\":[{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[103,115]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[116,139]},{\"text\":\"ichmachenichtmehrmit\",\"indices\":[140,161]},{\"text\":\"BulletTrainMovie\",\"indices\":[162,179]},{\"text\":\"\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059\",\"indices\":[180,196]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"capitec\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3819\":{\"hashtags\":[{\"text\":\"Birmingham2022\",\"indices\":[74,89]},{\"text\":\"BulletTrainMovie\",\"indices\":[90,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"BBNaija\",\"indices\":[124,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MlRna6pnb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnpaulez16\\/status\\/1555279861073453056\",\"display_url\":\"twitter.com\\/johnpaulez16\\/s\\u2026\",\"indices\":[141,164]}]},\"3820\":{\"hashtags\":[{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[42,50]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[51,65]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[66,78]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[79,102]},{\"text\":\"ichmachenichtmehrmit\",\"indices\":[103,124]},{\"text\":\"BulletTrainMovie\",\"indices\":[125,142]},{\"text\":\"\\u6b7b\\u3093\\u3067\\u6b32\\u3057\\u304f\\u306a\\u304b\\u3063\\u305f\\u30ad\\u30e3\\u30e9\\u6652\\u3059\",\"indices\":[143,159]},{\"text\":\"Taiwan\",\"indices\":[160,167]},{\"text\":\"capitec\",\"indices\":[168,176]},{\"text\":\"Sismo\",\"indices\":[177,183]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a78\",\"indices\":[184,192]},{\"text\":\"\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a\",\"indices\":[193,211]},{\"text\":\"\\u0627\\u0646\\u0641\\u062c\\u0627\\u0631_\\u0645\\u0631\\u0641\\u0623_\\u0628\\u064a\\u0631\\u0648\\u062a\",\"indices\":[212,230]},{\"text\":\"\\u0643\\u0644\\u0646\\u0627_\\u0627\\u0644\\u0634\\u064a\\u062e_\\u0628\\u0646_\\u062d\\u0645\\u064a\\u062f\",\"indices\":[231,250]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a77\",\"indices\":[251,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"morrishills_\",\"name\":\"Morris Hills\",\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"indices\":[26,39]}],\"urls\":[],\"media\":[{\"id\":1555279899912552448,\"id_str\":\"1555279899912552448\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/eggArJK1mA\",\"display_url\":\"pic.twitter.com\\/eggArJK1mA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555279982598946821\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3821\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[40,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"capitec\",\"indices\":[67,75]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[76,88]},{\"text\":\"trends\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8EIbvwItzv\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/LH7J57RB2GUON1\",\"display_url\":\"wa.me\\/message\\/LH7J57\\u2026\",\"indices\":[110,133]}],\"media\":[{\"id\":1555279715027587080,\"id_str\":\"1555279715027587080\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1355,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}}]},\"3822\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"capitec\",\"indices\":[123,131]},{\"text\":\"Birmingham2022\",\"indices\":[132,147]},{\"text\":\"BulletTrain\",\"indices\":[148,160]},{\"text\":\"Food\",\"indices\":[161,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Bvw6JKda5c\",\"expanded_url\":\"https:\\/\\/youtu.be\\/hfAzA6blRzI\",\"display_url\":\"youtu.be\\/hfAzA6blRzI\",\"indices\":[72,95]}],\"media\":[{\"id\":1555278481705078786,\"id_str\":\"1555278481705078786\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"url\":\"https:\\/\\/t.co\\/5XQk1GZOUr\",\"display_url\":\"pic.twitter.com\\/5XQk1GZOUr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theonlinecook\\/status\\/1555278483777114112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3823\":{\"hashtags\":[{\"text\":\"CommonwealthGames2022\",\"indices\":[206,228]},{\"text\":\"wizkid\",\"indices\":[229,236]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555277880342581253,\"id_str\":\"1555277880342581253\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"3824\":{\"hashtags\":[{\"text\":\"adeyyytweets\",\"indices\":[96,109]},{\"text\":\"capitec\",\"indices\":[110,118]},{\"text\":\"BulletTrainMovie\",\"indices\":[119,136]},{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"ASUUstrike\",\"indices\":[145,156]},{\"text\":\"uiuxdesign\",\"indices\":[157,168]},{\"text\":\"uiux\",\"indices\":[169,174]},{\"text\":\"uidesigner\",\"indices\":[175,186]},{\"text\":\"uxdesigner\",\"indices\":[187,198]},{\"text\":\"uxdesign\",\"indices\":[199,208]},{\"text\":\"thursdayvibes\",\"indices\":[209,223]},{\"text\":\"UI\",\"indices\":[224,227]},{\"text\":\"ux\",\"indices\":[228,231]},{\"text\":\"Designers\",\"indices\":[232,242]},{\"text\":\"GraphicDesign\",\"indices\":[243,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3825\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[133,155]},{\"text\":\"GogoSkhotheni\",\"indices\":[157,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"veryaffordable\",\"name\":\"SellingPremiumAccounts\",\"id\":1290173450900758528,\"id_str\":\"1290173450900758528\",\"indices\":[38,53]},{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[180,189]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[190,199]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[200,213]}],\"urls\":[],\"media\":[{\"id\":1555274994862755840,\"id_str\":\"1555274994862755840\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"url\":\"https:\\/\\/t.co\\/vDqCjp8ZKd\",\"display_url\":\"pic.twitter.com\\/vDqCjp8ZKd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555275017306472449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"3826\":{\"hashtags\":[{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[133,155]},{\"text\":\"GogoSkhotheni\",\"indices\":[157,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"veryaffordable\",\"name\":\"SellingPremiumAccounts\",\"id\":1290173450900758528,\"id_str\":\"1290173450900758528\",\"indices\":[38,53]},{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[180,189]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[190,199]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[200,213]}],\"urls\":[],\"media\":[{\"id\":1555274835256918017,\"id_str\":\"1555274835256918017\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"url\":\"https:\\/\\/t.co\\/mFSHpbLkRV\",\"display_url\":\"pic.twitter.com\\/mFSHpbLkRV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555274853632319489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"3827\":{\"hashtags\":[{\"text\":\"monsterwemade\",\"indices\":[45,59]},{\"text\":\"VIBRYANNTS\",\"indices\":[77,88]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"BBNaija\",\"indices\":[115,123]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BrymOlawale\",\"name\":\"\\u1eccl\\u00e1w\\u00e1l\\u00e9 \\u1eccl\\u1ecd\\u0301f\\u1ecd\\u1ecd\\u0300r\\u1ecd\\u0300\",\"id\":65514235,\"id_str\":\"65514235\",\"indices\":[125,137]},{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[139,153]}],\"urls\":[],\"media\":[{\"id\":1555273952955699201,\"id_str\":\"1555273952955699201\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"url\":\"https:\\/\\/t.co\\/YEWbHC5Yma\",\"display_url\":\"pic.twitter.com\\/YEWbHC5Yma\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sourced2018\\/status\\/1555274388391579649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"3828\":{\"hashtags\":[{\"text\":\"Lebanon\",\"indices\":[192,200]},{\"text\":\"Taiwan\",\"indices\":[201,208]},{\"text\":\"crime\",\"indices\":[209,215]},{\"text\":\"WHO\",\"indices\":[216,220]},{\"text\":\"recession\",\"indices\":[221,231]},{\"text\":\"BulletTrainMovie\",\"indices\":[232,249]},{\"text\":\"TrendingNow\",\"indices\":[250,262]},{\"text\":\"Trending\",\"indices\":[263,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555274103359168513,\"id_str\":\"1555274103359168513\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"url\":\"https:\\/\\/t.co\\/XLJzMjNhun\",\"display_url\":\"pic.twitter.com\\/XLJzMjNhun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555274246074548227\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3829\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"MohaleOTR\",\"indices\":[93,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Rvk8u5qP58\",\"expanded_url\":\"https:\\/\\/touchaheart.com.ng\\/2022\\/08\\/04\\/nigerian-doughnuts-filled-with-jam-recipe-method-history-types\\/\",\"display_url\":\"touchaheart.com.ng\\/2022\\/08\\/04\\/nig\\u2026\",\"indices\":[104,127]}]},\"3830\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[74,82]},{\"text\":\"BulletTrainMovie\",\"indices\":[83,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"Wizkid\",\"indices\":[109,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwBvCavfgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i\\/spaces\\/1MnGnkMXbjoJO\",\"display_url\":\"twitter.com\\/i\\/spaces\\/1MnGn\\u2026\",\"indices\":[50,73]}]},\"3831\":{\"hashtags\":[{\"text\":\"Azerbaijan\",\"indices\":[189,200]},{\"text\":\"london\",\"indices\":[201,208]},{\"text\":\"Diplomacy\",\"indices\":[209,219]},{\"text\":\"BulletTrainMovie\",\"indices\":[220,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"PokemonPresents\",\"indices\":[246,262]},{\"text\":\"Trending\",\"indices\":[263,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555272561373609984,\"id_str\":\"1555272561373609984\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"url\":\"https:\\/\\/t.co\\/A84bZqVB2K\",\"display_url\":\"pic.twitter.com\\/A84bZqVB2K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555272697474588673\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}}}]},\"3832\":{\"hashtags\":[{\"text\":\"thursdayvibes\",\"indices\":[112,126]},{\"text\":\"BulletTrainMovie\",\"indices\":[127,144]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"spiceradiong\",\"indices\":[153,166]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpiceRadioNg\",\"name\":\"Spice Radio\",\"id\":1030086296339996673,\"id_str\":\"1030086296339996673\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1555271584092504065,\"id_str\":\"1555271584092504065\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"url\":\"https:\\/\\/t.co\\/Zm4XzZzg1A\",\"display_url\":\"pic.twitter.com\\/Zm4XzZzg1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Ligera\\/status\\/1555271731555848193\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":304,\"resize\":\"fit\"}}}]},\"3833\":{\"hashtags\":[{\"text\":\"justsaleonline\",\"indices\":[101,116]},{\"text\":\"BBNaija\",\"indices\":[117,125]},{\"text\":\"BulletTrainMovie\",\"indices\":[126,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"thursdayvibes\",\"indices\":[152,166]},{\"text\":\"uiuxdesign\",\"indices\":[167,178]},{\"text\":\"design\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MMTYoLhpx6\",\"expanded_url\":\"http:\\/\\/justsaleonline.com\",\"display_url\":\"justsaleonline.com\",\"indices\":[77,100]}],\"media\":[{\"id\":1555270933937639426,\"id_str\":\"1555270933937639426\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"url\":\"https:\\/\\/t.co\\/p6XojkDsrJ\",\"display_url\":\"pic.twitter.com\\/p6XojkDsrJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555270969526308864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"3834\":{\"hashtags\":[{\"text\":\"Pantami\",\"indices\":[253,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]},{\"text\":\"NigerRepublic\",\"indices\":[270,284]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270714822983680,\"id_str\":\"1555270714822983680\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"3835\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"pere\",\"indices\":[141,146]},{\"text\":\"RahmanJago\",\"indices\":[147,158]},{\"text\":\"eico\",\"indices\":[159,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270415982936065,\"id_str\":\"1555270415982936065\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}}]},\"3836\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"pere\",\"indices\":[141,146]},{\"text\":\"RahmanJago\",\"indices\":[147,158]},{\"text\":\"eico\",\"indices\":[159,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555270114387410944,\"id_str\":\"1555270114387410944\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}}]},\"3837\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"WorldNews\",\"indices\":[121,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YZjghmRyBR\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/27kvb75d\",\"display_url\":\"tinyurl.com\\/27kvb75d\",\"indices\":[73,96]},{\"url\":\"https:\\/\\/t.co\\/YZjghmRyBR\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/27kvb75d\",\"display_url\":\"tinyurl.com\\/27kvb75d\",\"indices\":[132,155]}]},\"3838\":{\"hashtags\":[{\"text\":\"HappyEnding\",\"indices\":[68,80]},{\"text\":\"BulletTrainMovie\",\"indices\":[81,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]},{\"text\":\"MohaleOTR\",\"indices\":[107,117]},{\"text\":\"capitec\",\"indices\":[118,126]},{\"text\":\"PokemonScarletViolet\",\"indices\":[127,148]},{\"text\":\"PokemonPresents\",\"indices\":[149,165]},{\"text\":\"thursdayvibes\",\"indices\":[166,180]},{\"text\":\"MilePhakphum\",\"indices\":[181,194]},{\"text\":\"BibleBuild\",\"indices\":[195,206]},{\"text\":\"Sismo\",\"indices\":[207,213]},{\"text\":\"Explosion\",\"indices\":[214,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555264644540948482,\"id_str\":\"1555264644540948482\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"url\":\"https:\\/\\/t.co\\/Jathe02eyN\",\"display_url\":\"pic.twitter.com\\/Jathe02eyN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nisgembu\\/status\\/1555264649989324802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":562,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":531,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":562,\"resize\":\"fit\"}}}]},\"3839\":{\"hashtags\":[{\"text\":\"dice\",\"indices\":[112,117]},{\"text\":\"ladiesfirst\",\"indices\":[118,130]},{\"text\":\"Wizkid\",\"indices\":[132,139]},{\"text\":\"Taiwan\",\"indices\":[140,147]},{\"text\":\"sabinus\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jNc3fqiUtH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/musicwormcity\\/status\\/1555241065782943744\\/video\\/1\",\"display_url\":\"twitter.com\\/musicwormcity\\/\\u2026\",\"indices\":[157,180]}],\"media\":[{\"id\":1555257196476305411,\"id_str\":\"1555257196476305411\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"url\":\"https:\\/\\/t.co\\/5MALG8kSIN\",\"display_url\":\"pic.twitter.com\\/5MALG8kSIN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/musicwormcity\\/status\\/1555257331738353667\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}}}]},\"3840\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[43,51]},{\"text\":\"VIBRYANNTS\",\"indices\":[64,75]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/RMj7g6MMC1\",\"display_url\":\"pic.twitter.com\\/RMj7g6MMC1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}},\"source_status_id\":1555248905692086274,\"source_status_id_str\":\"1555248905692086274\",\"source_user_id\":1279448672183476224,\"source_user_id_str\":\"1279448672183476224\"}]},\"3841\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[52,59]},{\"text\":\"Deborah\",\"indices\":[60,68]},{\"text\":\"iphone14\",\"indices\":[69,78]},{\"text\":\"RahmanJago\",\"indices\":[79,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555253487654641667,\"id_str\":\"1555253487654641667\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"url\":\"https:\\/\\/t.co\\/vEn321p0T2\",\"display_url\":\"pic.twitter.com\\/vEn321p0T2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Am_Benco\\/status\\/1555253770518405123\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3842\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"BulletTrainMovie\",\"indices\":[127,144]},{\"text\":\"capitec\",\"indices\":[145,153]},{\"text\":\"sabinus\",\"indices\":[154,162]},{\"text\":\"thursdayvibes\",\"indices\":[163,177]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fineboytunde_\",\"name\":\"\\ud835\\ude75\\ud835\\ude92\\ud835\\ude97\\ud835\\ude8e\\ud835\\ude8b\\ud835\\ude98\\ud835\\udea2 \\u271e\\ud835\\ude9e\\ud835\\ude97\\ud835\\ude8d\\ud835\\ude8e \\ud83d\\udc51\\ud83c\\uddfa\\ud83c\\uddf8\",\"id\":1039151946723196929,\"id_str\":\"1039151946723196929\",\"indices\":[85,99]},{\"screen_name\":\"OtakhorEmmanuel\",\"name\":\"Emmanuel Otakhor\",\"id\":1533420684642328576,\"id_str\":\"1533420684642328576\",\"indices\":[100,116]}],\"urls\":[]},\"3843\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[196,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3844\":{\"hashtags\":[{\"text\":\"lifedrama\",\"indices\":[102,112]},{\"text\":\"BulletTrainMovie\",\"indices\":[113,130]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3845\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[0,8]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"VIBRYANNTS\",\"indices\":[126,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555250710274523136,\"id_str\":\"1555250710274523136\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"url\":\"https:\\/\\/t.co\\/EfUaut9kOK\",\"display_url\":\"pic.twitter.com\\/EfUaut9kOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555250716188581893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3846\":{\"hashtags\":[{\"text\":\"Repost\",\"indices\":[70,77]},{\"text\":\"BulletTrainMovie\",\"indices\":[78,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"capitec\",\"indices\":[104,112]},{\"text\":\"timesupolivia\",\"indices\":[113,127]},{\"text\":\"BibleSumett\",\"indices\":[128,140]},{\"text\":\"PokemonScarletViolet\",\"indices\":[141,162]},{\"text\":\"kagiso\",\"indices\":[163,170]},{\"text\":\"Billing\",\"indices\":[195,203]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[171,178]},{\"screen_name\":\"SpyroTheDragon\",\"name\":\"Spyro\",\"id\":964267437037305858,\"id_str\":\"964267437037305858\",\"indices\":[179,194]}],\"urls\":[],\"media\":[{\"id\":1555250004314431489,\"id_str\":\"1555250004314431489\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"url\":\"https:\\/\\/t.co\\/kzmzAnO5vv\",\"display_url\":\"pic.twitter.com\\/kzmzAnO5vv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Treasuregodwi7\\/status\\/1555250097927110658\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3847\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[43,51]},{\"text\":\"VIBRYANNTS\",\"indices\":[64,75]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/cmaB04hQQc\",\"display_url\":\"pic.twitter.com\\/cmaB04hQQc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}}}]},\"3848\":{\"hashtags\":[{\"text\":\"VIBRYANNTS\",\"indices\":[33,44]},{\"text\":\"BulletTrainMovie\",\"indices\":[54,71]},{\"text\":\"BBNaija\",\"indices\":[72,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555247726476115968,\"id_str\":\"1555247726476115968\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"url\":\"https:\\/\\/t.co\\/UPSQQiIjql\",\"display_url\":\"pic.twitter.com\\/UPSQQiIjql\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555247814728470528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"}}}]},\"3849\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[100,117]},{\"text\":\"Taiwan\",\"indices\":[119,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3850\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[157,164]},{\"text\":\"Marketing\",\"indices\":[165,175]},{\"text\":\"affiliateprogram\",\"indices\":[176,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3851\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[237,251]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"Cucurella\",\"indices\":[262,272]},{\"text\":\"Bants\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555247350880391169,\"id_str\":\"1555247350880391169\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"url\":\"https:\\/\\/t.co\\/F4ipVGpGv7\",\"display_url\":\"pic.twitter.com\\/F4ipVGpGv7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andredicksonn\\/status\\/1555247359264784394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}}]},\"3852\":{\"hashtags\":[{\"text\":\"forex\",\"indices\":[61,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"onstorm\",\"indices\":[76,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3853\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[20,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"capitec\",\"indices\":[46,54]},{\"text\":\"timesupolivia\",\"indices\":[55,69]},{\"text\":\"BibleSumett\",\"indices\":[70,82]},{\"text\":\"onstorm\",\"indices\":[83,91]},{\"text\":\"PokemonScarletViolet\",\"indices\":[92,113]},{\"text\":\"onstorm\",\"indices\":[114,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"kagiso\",\"indices\":[145,152]},{\"text\":\"sabinus\",\"indices\":[153,161]},{\"text\":\"BibleBuild\",\"indices\":[162,173]},{\"text\":\"MilePhakphum\",\"indices\":[174,187]},{\"text\":\"thursdayvibes\",\"indices\":[188,202]},{\"text\":\"recession\",\"indices\":[203,213]},{\"text\":\"Grunewald\",\"indices\":[214,224]},{\"text\":\"AditiShankar\",\"indices\":[225,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555245913861509120,\"id_str\":\"1555245913861509120\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"url\":\"https:\\/\\/t.co\\/HRaxg8lwmS\",\"display_url\":\"pic.twitter.com\\/HRaxg8lwmS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1555246099278995456\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3854\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[78,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"timesupolivia\",\"indices\":[95,109]},{\"text\":\"thursdayvibes\",\"indices\":[110,124]},{\"text\":\"mtvbase\",\"indices\":[125,133]},{\"text\":\"AfrobeatmeetsBerlin\",\"indices\":[134,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555245449409331201,\"id_str\":\"1555245449409331201\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"url\":\"https:\\/\\/t.co\\/fBWDJy3vow\",\"display_url\":\"pic.twitter.com\\/fBWDJy3vow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555245463124824069\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":1329,\"resize\":\"fit\"}}}]},\"3855\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"inflation\",\"indices\":[160,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555241323099312129,\"id_str\":\"1555241323099312129\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"url\":\"https:\\/\\/t.co\\/DGoLBK68RJ\",\"display_url\":\"pic.twitter.com\\/DGoLBK68RJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1555241326807060480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":348,\"resize\":\"fit\"}}}]},\"3856\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[25,42]},{\"text\":\"Taiwan\",\"indices\":[43,50]},{\"text\":\"capitec\",\"indices\":[51,59]},{\"text\":\"timesupolivia\",\"indices\":[60,74]},{\"text\":\"BibleSumett\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555240673586069506,\"id_str\":\"1555240673586069506\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"url\":\"https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"display_url\":\"pic.twitter.com\\/3Z0k3P5ZFq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555240679495929856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":351,\"h\":680,\"resize\":\"fit\"}}}]},\"3857\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[27,44]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"capitec\",\"indices\":[53,61]},{\"text\":\"timesupolivia\",\"indices\":[62,76]},{\"text\":\"BibleSumett\",\"indices\":[77,89]},{\"text\":\"onstorm\",\"indices\":[90,98]},{\"text\":\"PokemonScarletViolet\",\"indices\":[99,120]},{\"text\":\"BBNaija\",\"indices\":[121,129]},{\"text\":\"sabinus\",\"indices\":[130,138]},{\"text\":\"kagiso\",\"indices\":[139,146]},{\"text\":\"MilePhakphum\",\"indices\":[147,160]},{\"text\":\"thursdayvibes\",\"indices\":[161,175]},{\"text\":\"Grunewald\",\"indices\":[176,186]},{\"text\":\"fyp\",\"indices\":[187,191]},{\"text\":\"Trending\",\"indices\":[192,201]},{\"text\":\"sports\",\"indices\":[202,209]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555238932593377281,\"id_str\":\"1555238932593377281\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"url\":\"https:\\/\\/t.co\\/1UsANAgJJV\",\"display_url\":\"pic.twitter.com\\/1UsANAgJJV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brian_naija\\/status\\/1555239078848765957\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3858\":{\"hashtags\":[{\"text\":\"Awkgraphicdesigner\",\"indices\":[0,19]},{\"text\":\"iPhone\",\"indices\":[20,27]},{\"text\":\"Taiwan\",\"indices\":[31,38]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555238885218832385,\"id_str\":\"1555238885218832385\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"url\":\"https:\\/\\/t.co\\/TjKUhKr0q4\",\"display_url\":\"pic.twitter.com\\/TjKUhKr0q4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mazi127025\\/status\\/1555238918651629571\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1444,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":846,\"h\":1200,\"resize\":\"fit\"}}}]},\"3859\":{\"hashtags\":[{\"text\":\"realestate\",\"indices\":[0,11]},{\"text\":\"realestateagents\",\"indices\":[13,30]},{\"text\":\"realestatesales\",\"indices\":[32,48]},{\"text\":\"realestateagent\",\"indices\":[50,66]},{\"text\":\"realestateinvestor\",\"indices\":[67,86]},{\"text\":\"houseforsale\",\"indices\":[87,100]},{\"text\":\"houseforrent\",\"indices\":[101,114]},{\"text\":\"OfficeSpace\",\"indices\":[115,127]},{\"text\":\"office\",\"indices\":[128,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"thursdayvibes\",\"indices\":[144,158]},{\"text\":\"capitec\",\"indices\":[160,168]},{\"text\":\"Deborah\",\"indices\":[169,177]},{\"text\":\"Arise\",\"indices\":[178,184]},{\"text\":\"BibleBuild\",\"indices\":[198,209]},{\"text\":\"PokemonScarletViolet\",\"indices\":[210,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555237661354385408,\"id_str\":\"1555237661354385408\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"url\":\"https:\\/\\/t.co\\/QRvVsLNQfS\",\"display_url\":\"pic.twitter.com\\/QRvVsLNQfS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnyteInvestment\\/status\\/1555237679377399809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3860\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[227,234]},{\"text\":\"capitec\",\"indices\":[235,243]},{\"text\":\"NECL\",\"indices\":[244,249]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555237487114584064,\"id_str\":\"1555237487114584064\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"url\":\"https:\\/\\/t.co\\/ii0ZYtyYog\",\"display_url\":\"pic.twitter.com\\/ii0ZYtyYog\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555237490612731906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}}]},\"3861\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"capitec\",\"indices\":[63,71]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[72,95]},{\"text\":\"timesupolivia\",\"indices\":[96,110]},{\"text\":\"BibleSumett\",\"indices\":[111,123]},{\"text\":\"PokemonScarletViolet\",\"indices\":[124,145]},{\"text\":\"onstorm\",\"indices\":[146,154]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[155,169]},{\"text\":\"PokemonPresents\",\"indices\":[170,186]},{\"text\":\"kagiso\",\"indices\":[187,194]},{\"text\":\"MilePhakphum\",\"indices\":[195,208]},{\"text\":\"JKLive\",\"indices\":[209,216]},{\"text\":\"BibleBuild\",\"indices\":[217,228]},{\"text\":\"TASYAXTRAFARASYA\",\"indices\":[229,246]},{\"text\":\"thursdayvibes\",\"indices\":[247,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555236063790104577,\"id_str\":\"1555236063790104577\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"url\":\"https:\\/\\/t.co\\/q3EnTanOHT\",\"display_url\":\"pic.twitter.com\\/q3EnTanOHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555236168366686208\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3862\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"Cucurella\",\"indices\":[93,103]},{\"text\":\"bellashmurda\",\"indices\":[104,117]},{\"text\":\"GodAbeg\",\"indices\":[118,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3863\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"capitec\",\"indices\":[108,116]},{\"text\":\"thursdayvibes\",\"indices\":[117,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3864\":{\"hashtags\":[{\"text\":\"Elonmusk\",\"indices\":[176,185]},{\"text\":\"Davido\",\"indices\":[186,193]},{\"text\":\"PVC\",\"indices\":[204,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[222,247]},{\"text\":\"Cars\",\"indices\":[248,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_Tiga_b\",\"name\":\"ABIODUN THE CAR PLUG.\",\"id\":2222099067,\"id_str\":\"2222099067\",\"indices\":[0,8]},{\"screen_name\":\"opekingfrosh\",\"name\":\"\\ud83d\\udc51KingFrosh Autos and Interior\\/Exterior Upgrade\\ud83d\\ude98\",\"id\":1290271340818247680,\"id_str\":\"1290271340818247680\",\"indices\":[9,22]},{\"screen_name\":\"PELSAUTOS\",\"name\":\"PELS AUTO CARE\",\"id\":4508947042,\"id_str\":\"4508947042\",\"indices\":[23,33]},{\"screen_name\":\"oris616\",\"name\":\"Demmy Of Lagos.....Lhomi Autos\",\"id\":419081881,\"id_str\":\"419081881\",\"indices\":[34,42]},{\"screen_name\":\"isellnbuycars\",\"name\":\"FEMI(All about Cars)\\u00ae\\ud83d\\ude97\",\"id\":820197612162871296,\"id_str\":\"820197612162871296\",\"indices\":[43,57]},{\"screen_name\":\"Autorush2\",\"name\":\"Autorush\",\"id\":1194500250054119424,\"id_str\":\"1194500250054119424\",\"indices\":[58,68]},{\"screen_name\":\"Gidi_Traffic\",\"name\":\"GIDI\",\"id\":378809160,\"id_str\":\"378809160\",\"indices\":[69,82]},{\"screen_name\":\"AutosGidi\",\"name\":\"GidiAutos\",\"id\":1056664333764255744,\"id_str\":\"1056664333764255744\",\"indices\":[83,93]},{\"screen_name\":\"KingFadAutos\",\"name\":\"KingFad Autos\\ud83d\\ude98\",\"id\":993557732400779265,\"id_str\":\"993557732400779265\",\"indices\":[96,109]},{\"screen_name\":\"kazxyautos\",\"name\":\"Kazxyautos\",\"id\":1173498365860044800,\"id_str\":\"1173498365860044800\",\"indices\":[110,121]},{\"screen_name\":\"KingsmenAuto\",\"name\":\"Kingsmen Automobiles\\u00ae\",\"id\":1197041333292154888,\"id_str\":\"1197041333292154888\",\"indices\":[122,135]},{\"screen_name\":\"bims6_0\",\"name\":\"\\u2018\",\"id\":1275063132734423040,\"id_str\":\"1275063132734423040\",\"indices\":[136,144]},{\"screen_name\":\"Mr_uncle_jide\",\"name\":\"Lagos Mainland Car Plug \\ud83d\\ude01\\ud83d\\ude97\\ud83d\\ude99\",\"id\":355074977,\"id_str\":\"355074977\",\"indices\":[145,159]},{\"screen_name\":\"CarsConnectNG\",\"name\":\"CARS CONNECT NG \\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1262999274461310976,\"id_str\":\"1262999274461310976\",\"indices\":[160,174]}],\"urls\":[],\"media\":[{\"id\":1555234395933507588,\"id_str\":\"1555234395933507588\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"}}}]},\"3865\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"Cucurella\",\"indices\":[211,221]},{\"text\":\"azpilicueta\",\"indices\":[222,234]},{\"text\":\"chelaea\",\"indices\":[235,243]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[0,15]}],\"urls\":[]},\"3866\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231228764295169,\"id_str\":\"1555231228764295169\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"}}}]},\"3867\":{\"hashtags\":[{\"text\":\"omojesucfr\",\"indices\":[24,35]},{\"text\":\"followme\",\"indices\":[36,45]},{\"text\":\"Taiwan\",\"indices\":[46,53]},{\"text\":\"capitec\",\"indices\":[54,62]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[63,86]},{\"text\":\"timesupolivia\",\"indices\":[87,101]},{\"text\":\"BibleSumett\",\"indices\":[102,114]},{\"text\":\"PokemonScarletViolet\",\"indices\":[115,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"PokemonPresents\",\"indices\":[146,162]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[163,177]},{\"text\":\"kagiso\",\"indices\":[178,185]},{\"text\":\"MilePhakphum\",\"indices\":[186,199]},{\"text\":\"JKLive\",\"indices\":[200,207]},{\"text\":\"BibleBuild\",\"indices\":[208,219]},{\"text\":\"thursdayvibes\",\"indices\":[220,234]},{\"text\":\"TASYAXTRAFARASYA\",\"indices\":[235,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231241796042752,\"id_str\":\"1555231241796042752\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"url\":\"https:\\/\\/t.co\\/0VeX3MpLGa\",\"display_url\":\"pic.twitter.com\\/0VeX3MpLGa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OMOJESUCFR\\/status\\/1555231420993478661\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":870,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":563,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":720,\"resize\":\"fit\"}}}]},\"3868\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231185214885888,\"id_str\":\"1555231185214885888\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":643,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"}}}]},\"3869\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231069720481792,\"id_str\":\"1555231069720481792\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}}]},\"3870\":{\"hashtags\":[{\"text\":\"BurnaBoy\",\"indices\":[21,30]},{\"text\":\"burna\",\"indices\":[31,37]},{\"text\":\"Wizkid\",\"indices\":[38,45]},{\"text\":\"beautytukura\",\"indices\":[46,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"capitec\",\"indices\":[68,76]},{\"text\":\"BBNaija\",\"indices\":[77,85]},{\"text\":\"Doyin\",\"indices\":[86,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555230858944069632,\"id_str\":\"1555230858944069632\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"url\":\"https:\\/\\/t.co\\/zh5UqmwfBT\",\"display_url\":\"pic.twitter.com\\/zh5UqmwfBT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_tusure\\/status\\/1555231253607194624\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3871\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"tinubu\",\"indices\":[233,240]},{\"text\":\"Ronaldo\",\"indices\":[241,249]},{\"text\":\"rufai\",\"indices\":[250,256]},{\"text\":\"sabinus\",\"indices\":[257,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555231010064896000,\"id_str\":\"1555231010064896000\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}}]},\"3872\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3873\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"TableShaker\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[0,13]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[63,76]},{\"screen_name\":\"UchePOkoye\",\"name\":\"Anambra 1st son\\ud83d\\udcad\",\"id\":104841568,\"id_str\":\"104841568\",\"indices\":[241,252]}],\"urls\":[],\"media\":[{\"id\":1555229954048155649,\"id_str\":\"1555229954048155649\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"url\":\"https:\\/\\/t.co\\/HvUJEYPLT4\",\"display_url\":\"pic.twitter.com\\/HvUJEYPLT4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Degreat046\\/status\\/1555229961732194307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":496,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":987,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":987,\"resize\":\"fit\"}}}]},\"3874\":{\"hashtags\":[{\"text\":\"Memes\",\"indices\":[139,145]},{\"text\":\"memesdaily\",\"indices\":[146,157]},{\"text\":\"BUGA\",\"indices\":[158,163]},{\"text\":\"Twitter\",\"indices\":[164,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]},{\"text\":\"timesupolivia\",\"indices\":[181,195]},{\"text\":\"PokemonScarletViolet\",\"indices\":[196,217]},{\"text\":\"onstorm\",\"indices\":[218,226]},{\"text\":\"PokemonPresents\",\"indices\":[227,243]},{\"text\":\"memetopiaz\",\"indices\":[244,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"memetopiaz\",\"name\":\"memetopia\",\"id\":1547297863759273985,\"id_str\":\"1547297863759273985\",\"indices\":[72,83]},{\"screen_name\":\"iFunnymemeIG\",\"name\":\"iFunnymeme\",\"id\":116409573,\"id_str\":\"116409573\",\"indices\":[84,97]},{\"screen_name\":\"introvertsmemes\",\"name\":\"MEMES\",\"id\":312230865,\"id_str\":\"312230865\",\"indices\":[98,114]},{\"screen_name\":\"memes\",\"name\":\"Memes.com\",\"id\":536582046,\"id_str\":\"536582046\",\"indices\":[115,121]},{\"screen_name\":\"memesbychroath\",\"name\":\"CHRoaTh\",\"id\":1137801995195232258,\"id_str\":\"1137801995195232258\",\"indices\":[122,137]}],\"urls\":[]},\"3875\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3876\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[81,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"Wizkid\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555228297512058882,\"id_str\":\"1555228297512058882\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"url\":\"https:\\/\\/t.co\\/xTV2UtbAoO\",\"display_url\":\"pic.twitter.com\\/xTV2UtbAoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kings_xchange\\/status\\/1555228303707017217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":535,\"resize\":\"fit\"}}}]},\"3877\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"capitec\",\"indices\":[189,197]},{\"text\":\"thursdayvibes\",\"indices\":[198,212]},{\"text\":\"kagiso\",\"indices\":[213,220]},{\"text\":\"Zamfarabandits\",\"indices\":[221,236]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBCAfrica\",\"name\":\"BBC News Africa\",\"id\":36670025,\"id_str\":\"36670025\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SvB8yG3fRB\",\"expanded_url\":\"https:\\/\\/youtu.be\\/g-fPEHUqhyA\",\"display_url\":\"youtu.be\\/g-fPEHUqhyA\",\"indices\":[237,260]}]},\"3878\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[81,89]},{\"text\":\"Taiwan\",\"indices\":[137,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3879\":{\"hashtags\":[{\"text\":\"bat\",\"indices\":[91,95]},{\"text\":\"BB24\",\"indices\":[96,101]},{\"text\":\"APC\",\"indices\":[102,106]},{\"text\":\"chelsea\",\"indices\":[107,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Badboytimz\",\"name\":\"Bad Boy Timz \\u26a1\\ufe0f\",\"id\":186891326,\"id_str\":\"186891326\",\"indices\":[56,67]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[68,81]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[82,90]}],\"urls\":[],\"media\":[{\"id\":1555225367094362112,\"id_str\":\"1555225367094362112\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"url\":\"https:\\/\\/t.co\\/d7KWZW8o6P\",\"display_url\":\"pic.twitter.com\\/d7KWZW8o6P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555225412145405952\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"3880\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[67,85]},{\"text\":\"news\",\"indices\":[86,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2NvI1GWAPI\",\"expanded_url\":\"https:\\/\\/www.brief.ng\\/politics\\/update-on-the-taiwan-china-crisis\\/\",\"display_url\":\"brief.ng\\/politics\\/updat\\u2026\",\"indices\":[34,57]}],\"media\":[{\"id\":1555224387703513092,\"id_str\":\"1555224387703513092\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"url\":\"https:\\/\\/t.co\\/W1gUdkdJgc\",\"display_url\":\"pic.twitter.com\\/W1gUdkdJgc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BriefNig\\/status\\/1555224391016931329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"medium\":{\"w\":577,\"h\":428,\"resize\":\"fit\"}}}]},\"3881\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"capitec\",\"indices\":[46,54]},{\"text\":\"timesupolivia\",\"indices\":[55,69]},{\"text\":\"CommonwealthGames2022\",\"indices\":[70,92]},{\"text\":\"thursdayvibes\",\"indices\":[93,107]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[108,137]},{\"text\":\"onstorm\",\"indices\":[138,146]},{\"text\":\"BibleSumett\",\"indices\":[147,159]},{\"text\":\"PokemonScarletViolet\",\"indices\":[160,181]},{\"text\":\"winmetawin\",\"indices\":[182,193]},{\"text\":\"BBNaija\",\"indices\":[194,202]},{\"text\":\"sabinus\",\"indices\":[203,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5jZCnFs9l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ktboldy\\/status\\/1555104647567777794\",\"display_url\":\"twitter.com\\/ktboldy\\/status\\u2026\",\"indices\":[212,235]}]},\"3882\":{\"hashtags\":[{\"text\":\"PrimeVideoNaija\",\"indices\":[20,36]},{\"text\":\"BBNaija\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BbnaijaS7\",\"indices\":[81,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555220066597232641,\"id_str\":\"1555220066597232641\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"url\":\"https:\\/\\/t.co\\/jSCunSLu3Z\",\"display_url\":\"pic.twitter.com\\/jSCunSLu3Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220227746664448\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"},\"medium\":{\"w\":854,\"h\":474,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":474,\"resize\":\"fit\"}}}]},\"3883\":{\"hashtags\":[{\"text\":\"PrimeVideoNaija\",\"indices\":[73,89]},{\"text\":\"BBNaija\",\"indices\":[117,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"BbnaijaS7\",\"indices\":[134,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555219299949764610,\"id_str\":\"1555219299949764610\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"url\":\"https:\\/\\/t.co\\/lScNEVABlX\",\"display_url\":\"pic.twitter.com\\/lScNEVABlX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220046305181696\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3884\":{\"hashtags\":[{\"text\":\"thursdayvibes\",\"indices\":[63,77]},{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[88,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3885\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"BIGWIZ\",\"indices\":[197,204]},{\"text\":\"Don\",\"indices\":[205,209]},{\"text\":\"ASUU\",\"indices\":[220,225]},{\"text\":\"twins\",\"indices\":[226,232]},{\"text\":\"DoctorWho\",\"indices\":[233,243]},{\"text\":\"Burnaboy\",\"indices\":[245,254]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Remmzor__\",\"name\":\"TheRemmySaheed \\ud83d\\ude0f\",\"id\":1001152129153847296,\"id_str\":\"1001152129153847296\",\"indices\":[0,10]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[68,76]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[77,86]},{\"screen_name\":\"cruelsantino\",\"name\":\"Santi\",\"id\":152403832,\"id_str\":\"152403832\",\"indices\":[87,100]},{\"screen_name\":\"cuppymusic\",\"name\":\"Cuppy\",\"id\":226944459,\"id_str\":\"226944459\",\"indices\":[102,113]},{\"screen_name\":\"TemiOtedola\",\"name\":\"Temi Otedola\",\"id\":2829932277,\"id_str\":\"2829932277\",\"indices\":[114,126]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[127,134]},{\"screen_name\":\"iamtheOsagie\",\"name\":\"Osagie O.\",\"id\":19872233,\"id_str\":\"19872233\",\"indices\":[136,149]},{\"screen_name\":\"FrankHasAPlan\",\"name\":\"frankhasaplan.eth\",\"id\":216231636,\"id_str\":\"216231636\",\"indices\":[150,164]},{\"screen_name\":\"Badboytimz\",\"name\":\"Bad Boy Timz \\u26a1\\ufe0f\",\"id\":186891326,\"id_str\":\"186891326\",\"indices\":[165,176]},{\"screen_name\":\"fireboydml\",\"name\":\"Fireboy DML\",\"id\":4537552402,\"id_str\":\"4537552402\",\"indices\":[177,188]}],\"urls\":[],\"media\":[{\"id\":1555219685959933952,\"id_str\":\"1555219685959933952\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"url\":\"https:\\/\\/t.co\\/9IwrKho6D7\",\"display_url\":\"pic.twitter.com\\/9IwrKho6D7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Heisoovii\\/status\\/1555219782856851458\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3886\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[178,185]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[186,215]},{\"text\":\"capitec\",\"indices\":[216,224]},{\"text\":\"CommonwealthGames2022\",\"indices\":[225,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3887\":{\"hashtags\":[{\"text\":\"davido\",\"indices\":[116,123]},{\"text\":\"sabinus\",\"indices\":[124,132]},{\"text\":\"thursdayvibes\",\"indices\":[133,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[156,185]},{\"text\":\"BibleSumett\",\"indices\":[186,198]},{\"text\":\"BBNaija\",\"indices\":[199,207]},{\"text\":\"Trending\",\"indices\":[208,217]},{\"text\":\"TrendingTopics\",\"indices\":[218,233]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[0,7]},{\"screen_name\":\"primevideonaija\",\"name\":\"Prime Video Naija\",\"id\":1517588031724658691,\"id_str\":\"1517588031724658691\",\"indices\":[8,24]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[25,32]}],\"urls\":[],\"media\":[{\"id\":1555218459960680453,\"id_str\":\"1555218459960680453\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"url\":\"https:\\/\\/t.co\\/RVZHJv4Dq9\",\"display_url\":\"pic.twitter.com\\/RVZHJv4Dq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218967303753729\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3888\":{\"hashtags\":[{\"text\":\"IkeEkweremadu\",\"indices\":[203,217]},{\"text\":\"sabinus\",\"indices\":[218,226]},{\"text\":\"iphone14\",\"indices\":[227,236]},{\"text\":\"Dino\",\"indices\":[237,242]},{\"text\":\"Taiwan\",\"indices\":[243,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3889\":{\"hashtags\":[{\"text\":\"MUFC\",\"indices\":[122,127]},{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"thursdayvibes\",\"indices\":[136,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3890\":{\"hashtags\":[{\"text\":\"davido\",\"indices\":[116,123]},{\"text\":\"sabinus\",\"indices\":[124,132]},{\"text\":\"thursdayvibes\",\"indices\":[133,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[156,185]},{\"text\":\"BibleSumett\",\"indices\":[186,198]},{\"text\":\"BBNaija\",\"indices\":[199,207]},{\"text\":\"Trending\",\"indices\":[208,217]},{\"text\":\"TrendingTopics\",\"indices\":[218,233]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[0,7]},{\"screen_name\":\"primevideonaija\",\"name\":\"Prime Video Naija\",\"id\":1517588031724658691,\"id_str\":\"1517588031724658691\",\"indices\":[8,24]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[25,32]}],\"urls\":[],\"media\":[{\"id\":1555217157318971392,\"id_str\":\"1555217157318971392\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"url\":\"https:\\/\\/t.co\\/eP39dmYkk0\",\"display_url\":\"pic.twitter.com\\/eP39dmYkk0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218235380875266\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3891\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[37,66]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[67,90]},{\"text\":\"capitec\",\"indices\":[91,99]},{\"text\":\"timesupolivia\",\"indices\":[100,114]},{\"text\":\"timesupolivia\",\"indices\":[115,129]},{\"text\":\"onstorm\",\"indices\":[130,138]},{\"text\":\"BibleSumett\",\"indices\":[139,151]},{\"text\":\"PokemonScarletViolet\",\"indices\":[152,173]},{\"text\":\"winmetawin\",\"indices\":[174,185]},{\"text\":\"thursdayvibes\",\"indices\":[186,200]},{\"text\":\"sabinus\",\"indices\":[201,209]},{\"text\":\"kagiso\",\"indices\":[210,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ateaseauto\",\"name\":\"At Ease Auto & Energies\",\"id\":1538852053145030658,\"id_str\":\"1538852053145030658\",\"indices\":[15,26]}],\"urls\":[],\"media\":[{\"id\":1555215915213590528,\"id_str\":\"1555215915213590528\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"url\":\"https:\\/\\/t.co\\/IcB3qoU3yo\",\"display_url\":\"pic.twitter.com\\/IcB3qoU3yo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Realseunkazeem\\/status\\/1555215938898755585\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3892\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[10,17]},{\"text\":\"sabinus\",\"indices\":[18,26]},{\"text\":\"capitec\",\"indices\":[27,35]},{\"text\":\"BibleSumett\",\"indices\":[36,48]},{\"text\":\"bala\",\"indices\":[49,54]},{\"text\":\"lexsus\",\"indices\":[55,62]},{\"text\":\"automoblie\",\"indices\":[63,74]},{\"text\":\"blackownedbusiness\",\"indices\":[75,94]},{\"text\":\"black\",\"indices\":[95,101]},{\"text\":\"blackgirlmagic\",\"indices\":[102,117]},{\"text\":\"money\",\"indices\":[118,124]},{\"text\":\"newmonthnewgoals\",\"indices\":[125,142]},{\"text\":\"lagosbusiness\",\"indices\":[143,157]},{\"text\":\"ibadan\",\"indices\":[158,165]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555213939134369792,\"id_str\":\"1555213939134369792\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"url\":\"https:\\/\\/t.co\\/zeEkduujDv\",\"display_url\":\"pic.twitter.com\\/zeEkduujDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ateaseauto\\/status\\/1555214019400810498\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3893\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[234,241]},{\"text\":\"Sheggz\",\"indices\":[242,249]},{\"text\":\"ASUU\",\"indices\":[250,255]},{\"text\":\"arisetv\",\"indices\":[256,264]},{\"text\":\"buhari\",\"indices\":[265,272]},{\"text\":\"wizkid\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555212987299946497,\"id_str\":\"1555212987299946497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"url\":\"https:\\/\\/t.co\\/2T16mzm66j\",\"display_url\":\"pic.twitter.com\\/2T16mzm66j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/edublogsng\\/status\\/1555213282570514433\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3894\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[52,56]},{\"text\":\"oilpainting\",\"indices\":[57,69]},{\"text\":\"painting\",\"indices\":[70,79]},{\"text\":\"color\",\"indices\":[80,86]},{\"text\":\"oiloncanvas\",\"indices\":[87,99]},{\"text\":\"artwork\",\"indices\":[100,108]},{\"text\":\"exploremore\",\"indices\":[109,121]},{\"text\":\"explorepage\",\"indices\":[122,134]},{\"text\":\"fyp\",\"indices\":[135,139]},{\"text\":\"viral\",\"indices\":[140,146]},{\"text\":\"explore\",\"indices\":[147,155]},{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"explorer\",\"indices\":[164,173]},{\"text\":\"artist\",\"indices\":[174,181]},{\"text\":\"NFT\",\"indices\":[182,186]},{\"text\":\"buyart\",\"indices\":[187,194]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[195,224]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[225,248]},{\"text\":\"visualart\",\"indices\":[249,259]},{\"text\":\"fineart\",\"indices\":[260,268]},{\"text\":\"EndSARS\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555212991762669569,\"id_str\":\"1555212991762669569\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"url\":\"https:\\/\\/t.co\\/6jLeVt1HGi\",\"display_url\":\"pic.twitter.com\\/6jLeVt1HGi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1555213231454552069\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"3895\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[235,242]},{\"text\":\"BBNaija\",\"indices\":[243,251]},{\"text\":\"BBC\",\"indices\":[252,256]},{\"text\":\"AfrobeatsTheBackstory\",\"indices\":[257,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[64,73]},{\"screen_name\":\"ubifranklin1\",\"name\":\"ubi Franklin ofem\",\"id\":15223566,\"id_str\":\"15223566\",\"indices\":[74,87]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[88,95]},{\"screen_name\":\"NICKIMINAJ\",\"name\":\"Nicki Minaj\",\"id\":35787166,\"id_str\":\"35787166\",\"indices\":[96,107]},{\"screen_name\":\"patorankingfire\",\"name\":\"PATORANKING\",\"id\":66000793,\"id_str\":\"66000793\",\"indices\":[108,124]},{\"screen_name\":\"temsbaby\",\"name\":\"TEMS\",\"id\":1327148227,\"id_str\":\"1327148227\",\"indices\":[125,134]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[135,146]},{\"screen_name\":\"alhajitekno\",\"name\":\"Tekno\",\"id\":4375041622,\"id_str\":\"4375041622\",\"indices\":[147,159]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[160,170]},{\"screen_name\":\"patorankingfire\",\"name\":\"PATORANKING\",\"id\":66000793,\"id_str\":\"66000793\",\"indices\":[171,187]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[188,196]},{\"screen_name\":\"kanyewest\",\"name\":\"ye\",\"id\":169686021,\"id_str\":\"169686021\",\"indices\":[197,207]},{\"screen_name\":\"officialnairam1\",\"name\":\"nairamarley\",\"id\":1150409755342573569,\"id_str\":\"1150409755342573569\",\"indices\":[208,224]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[225,234]}],\"urls\":[],\"media\":[{\"id\":1555212143154298880,\"id_str\":\"1555212143154298880\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"url\":\"https:\\/\\/t.co\\/0jgRDDdSbU\",\"display_url\":\"pic.twitter.com\\/0jgRDDdSbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555212380228960256\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}}}]},\"3896\":{\"hashtags\":[{\"text\":\"NATO\",\"indices\":[37,42]},{\"text\":\"russia\",\"indices\":[84,91]},{\"text\":\"WWIII\",\"indices\":[92,98]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[99,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V3fftrZIm3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyPostNGR\\/status\\/1555211204636905474\",\"display_url\":\"twitter.com\\/DailyPostNGR\\/s\\u2026\",\"indices\":[121,144]}]},\"3897\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"PeterObi2023\",\"indices\":[242,255]},{\"text\":\"landbanking\",\"indices\":[257,269]},{\"text\":\"landscape\",\"indices\":[270,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7gLvZAzOZg\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/2s393ktt\",\"display_url\":\"tinyurl.com\\/2s393ktt\",\"indices\":[178,201]}],\"media\":[{\"id\":1555211349680087044,\"id_str\":\"1555211349680087044\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"url\":\"https:\\/\\/t.co\\/Yn4c3dWBGh\",\"display_url\":\"pic.twitter.com\\/Yn4c3dWBGh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnChudosky\\/status\\/1555211358597160961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3898\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"capitec\",\"indices\":[198,206]},{\"text\":\"CommonwealthGames2022\",\"indices\":[207,229]},{\"text\":\"iphone14\",\"indices\":[235,244]},{\"text\":\"Wizkid\",\"indices\":[245,252]},{\"text\":\"Cucurella\",\"indices\":[253,263]},{\"text\":\"BBNaija\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555210948415307777,\"id_str\":\"1555210948415307777\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"url\":\"https:\\/\\/t.co\\/ttOTCeFsTr\",\"display_url\":\"pic.twitter.com\\/ttOTCeFsTr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1555210958066294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"3899\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"PelosiVisit\",\"indices\":[142,154]},{\"text\":\"UkraineRussiaWar\",\"indices\":[156,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3900\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[183,190]},{\"text\":\"timesupolivia\",\"indices\":[191,205]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[206,226]},{\"text\":\"winmetawin\",\"indices\":[227,238]},{\"text\":\"PokemonScarletViolet\",\"indices\":[239,260]},{\"text\":\"SheggzOlu\",\"indices\":[261,271]},{\"text\":\"onstorm\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3901\":{\"hashtags\":[{\"text\":\"AllOrNothingArsenal\",\"indices\":[95,115]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[116,139]},{\"text\":\"BBCOurNextPM\",\"indices\":[140,153]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[154,169]},{\"text\":\"umuahia\",\"indices\":[170,178]},{\"text\":\"SheggzOlu\",\"indices\":[181,191]},{\"text\":\"MONEY\",\"indices\":[192,198]},{\"text\":\"phtwittercommunity\",\"indices\":[199,218]},{\"text\":\"sabinus\",\"indices\":[219,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"Simp\",\"indices\":[236,241]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555204698088554496,\"id_str\":\"1555204698088554496\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"url\":\"https:\\/\\/t.co\\/SI0FBo6nXP\",\"display_url\":\"pic.twitter.com\\/SI0FBo6nXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sunshinemporium\\/status\\/1555204755034722304\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"3902\":{\"hashtags\":[{\"text\":\"AllOrNothingArsenal\",\"indices\":[104,124]},{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[133,156]},{\"text\":\"PokemonScarletViolet\",\"indices\":[157,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"myaccessbank\",\"name\":\"Access Bank Plc\",\"id\":190615522,\"id_str\":\"190615522\",\"indices\":[62,75]}],\"urls\":[]},\"3903\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"ASUUstrike\",\"indices\":[73,84]},{\"text\":\"ASUU\",\"indices\":[85,90]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[92,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4dhL4QTvks\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3Src90b\",\"display_url\":\"bit.ly\\/3Src90b\",\"indices\":[126,149]}]},\"3904\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"timesupolivia\",\"indices\":[88,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsWwjgB9jA\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3zVk1jl\",\"display_url\":\"bit.ly\\/3zVk1jl\",\"indices\":[113,136]}]},\"3905\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[95,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"MONEY\",\"indices\":[114,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3906\":{\"hashtags\":[{\"text\":\"iphone11\",\"indices\":[125,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[144,164]},{\"text\":\"AamirKhan\",\"indices\":[166,176]},{\"text\":\"MONEY\",\"indices\":[178,184]},{\"text\":\"sabinus\",\"indices\":[186,194]},{\"text\":\"SheggzOlu\",\"indices\":[196,206]},{\"text\":\"onstorm\",\"indices\":[208,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GistHubNaija\",\"name\":\"GistHub\",\"id\":854041219156070400,\"id_str\":\"854041219156070400\",\"indices\":[110,123]}],\"urls\":[],\"media\":[{\"id\":1555203508659490816,\"id_str\":\"1555203508659490816\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjge4pwSaL\",\"display_url\":\"pic.twitter.com\\/Qjge4pwSaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GistHubNaija\\/status\\/1555203587046887425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3907\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Simp\",\"indices\":[74,79]},{\"text\":\"superettan\",\"indices\":[80,91]},{\"text\":\"SuperEagles\",\"indices\":[92,104]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[105,125]},{\"text\":\"CristianoRonaldo\",\"indices\":[126,143]},{\"text\":\"iPhone13\",\"indices\":[144,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P0plKFZF5o\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JupmBn\",\"display_url\":\"bit.ly\\/3JupmBn\",\"indices\":[164,187]}]},\"3908\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[26,33]},{\"text\":\"piconsensus2022\",\"indices\":[34,50]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555203034082414594,\"id_str\":\"1555203034082414594\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"url\":\"https:\\/\\/t.co\\/LcDAYcTaY0\",\"display_url\":\"pic.twitter.com\\/LcDAYcTaY0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1555203105435836416\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3909\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"LovelyINU\",\"indices\":[72,82]},{\"text\":\"iphone14\",\"indices\":[83,92]},{\"text\":\"iphone6\",\"indices\":[93,101]},{\"text\":\"piConsen\",\"indices\":[102,111]},{\"text\":\"Slimp\",\"indices\":[112,118]},{\"text\":\"Bone\",\"indices\":[119,124]},{\"text\":\"JustinBieber\",\"indices\":[125,138]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"MONEY\",\"indices\":[147,153]},{\"text\":\"Airtel\",\"indices\":[154,161]},{\"text\":\"London\",\"indices\":[162,169]},{\"text\":\"NeverAgain\",\"indices\":[170,181]},{\"text\":\"SquidGame\",\"indices\":[182,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3910\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[60,83]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[84,102]},{\"text\":\"ChinaTaiwan\",\"indices\":[103,115]},{\"text\":\"iPhone\",\"indices\":[116,123]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[124,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fwteHWjrmq\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JJw9rj\",\"display_url\":\"bit.ly\\/3JJw9rj\",\"indices\":[156,179]}]},\"3911\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[88,97]},{\"text\":\"BBNaija\",\"indices\":[98,106]},{\"text\":\"ChelseaFC\",\"indices\":[107,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555201877087772674,\"id_str\":\"1555201877087772674\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"url\":\"https:\\/\\/t.co\\/0X1IN17Ti6\",\"display_url\":\"pic.twitter.com\\/0X1IN17Ti6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555201883526107141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":923,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":923,\"resize\":\"fit\"}}}]},\"3912\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[86,109]},{\"text\":\"ASUUstrike\",\"indices\":[110,121]},{\"text\":\"Simp\",\"indices\":[122,127]},{\"text\":\"iPhone13\",\"indices\":[128,137]},{\"text\":\"IPPIS\",\"indices\":[138,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WGP9is3TsK\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3QojlZv\",\"display_url\":\"bit.ly\\/3QojlZv\",\"indices\":[155,178]}]},\"3913\":{\"hashtags\":[{\"text\":\"LebokuInternationalNewYamfestival\",\"indices\":[41,75]},{\"text\":\"Ugep\",\"indices\":[83,88]},{\"text\":\"boomplayptm\",\"indices\":[240,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"BBNaija\",\"indices\":[262,270]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555201370579427329,\"id_str\":\"1555201370579427329\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"url\":\"https:\\/\\/t.co\\/AGjMoC7ohM\",\"display_url\":\"pic.twitter.com\\/AGjMoC7ohM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djustman007\\/status\\/1555201393216131076\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"3914\":{\"hashtags\":[{\"text\":\"Construction\",\"indices\":[68,81]},{\"text\":\"design\",\"indices\":[82,89]},{\"text\":\"Taiwan\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555200965430722563,\"id_str\":\"1555200965430722563\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"url\":\"https:\\/\\/t.co\\/yAwMxajutT\",\"display_url\":\"pic.twitter.com\\/yAwMxajutT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tuplex50\\/status\\/1555200972980371458\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":960,\"h\":561,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":397,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":561,\"resize\":\"fit\"}}}]},\"3915\":{\"hashtags\":[{\"text\":\"fintech\",\"indices\":[0,8]},{\"text\":\"banking\",\"indices\":[9,17]},{\"text\":\"ai\",\"indices\":[137,140]},{\"text\":\"qonexiq\",\"indices\":[191,199]},{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"cameroon\",\"indices\":[208,217]},{\"text\":\"BBNaija\",\"indices\":[218,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3916\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[227,234]},{\"text\":\"timesupolivia\",\"indices\":[235,249]},{\"text\":\"TEAMWANGdesignTHAILAND\",\"indices\":[250,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3917\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"wizkid\",\"indices\":[127,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555197239550791680,\"id_str\":\"1555197239550791680\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"url\":\"https:\\/\\/t.co\\/GLfJo7ie3U\",\"display_url\":\"pic.twitter.com\\/GLfJo7ie3U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555197297847328768\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3918\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[104,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555196687752335361,\"id_str\":\"1555196687752335361\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"url\":\"https:\\/\\/t.co\\/LonB0rDlm4\",\"display_url\":\"pic.twitter.com\\/LonB0rDlm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olubabaoshole\\/status\\/1555196763736342531\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3919\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"tzuyuedit\",\"indices\":[171,181]},{\"text\":\"twice\",\"indices\":[182,188]},{\"text\":\"taipei\",\"indices\":[189,196]},{\"text\":\"thailand\",\"indices\":[197,206]},{\"text\":\"usa\",\"indices\":[207,211]},{\"text\":\"france\",\"indices\":[212,219]},{\"text\":\"nft\",\"indices\":[220,224]},{\"text\":\"Enjin\",\"indices\":[226,232]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PnV883N3cb\",\"expanded_url\":\"https:\\/\\/mara.xyz\\/me\\/2NVT30\",\"display_url\":\"mara.xyz\\/me\\/2NVT30\",\"indices\":[105,128]}]},\"3920\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[24,44]},{\"text\":\"PokemonScarletViolet\",\"indices\":[45,66]},{\"text\":\"AamirKhan\",\"indices\":[67,77]},{\"text\":\"onstorm\",\"indices\":[78,86]},{\"text\":\"SheggzOlu\",\"indices\":[87,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555194081873100800,\"id_str\":\"1555194081873100800\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"url\":\"https:\\/\\/t.co\\/ywYK05ZX3w\",\"display_url\":\"pic.twitter.com\\/ywYK05ZX3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1555194091448811520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3921\":{\"hashtags\":[{\"text\":\"DeFi\",\"indices\":[112,117]},{\"text\":\"MONEY\",\"indices\":[118,124]},{\"text\":\"NIO\",\"indices\":[125,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555193645665587200,\"id_str\":\"1555193645665587200\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"3922\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[60,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"timesupolivia\",\"indices\":[77,91]},{\"text\":\"SheggzOlu\",\"indices\":[92,102]},{\"text\":\"sabinus\",\"indices\":[103,111]},{\"text\":\"PokemonPresents\",\"indices\":[112,128]},{\"text\":\"CommonwealthGames2022\",\"indices\":[129,151]},{\"text\":\"B2022Netball\",\"indices\":[152,165]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tiktok_us\",\"name\":\"TikTok US\",\"id\":2401980110,\"id_str\":\"2401980110\",\"indices\":[47,57]}],\"urls\":[],\"media\":[{\"id\":1555192097443037187,\"id_str\":\"1555192097443037187\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"url\":\"https:\\/\\/t.co\\/qRPNMgIwn5\",\"display_url\":\"pic.twitter.com\\/qRPNMgIwn5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pemercltd\\/status\\/1555192171078340608\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3923\":{\"hashtags\":[{\"text\":\"NancyPelosiTaiwanVisit\",\"indices\":[72,95]},{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[104,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BQhNvR2qE4\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\\/breaking-china-fires-missiles-near-taiwan-in-drills-after-pelosi-visit\\/\",\"display_url\":\"onlinepikin.com\\/breaking-china\\u2026\",\"indices\":[124,147]}]},\"3924\":{\"hashtags\":[{\"text\":\"arisetv\",\"indices\":[238,246]},{\"text\":\"sabinus\",\"indices\":[247,255]},{\"text\":\"Taiwan\",\"indices\":[256,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3925\":{\"hashtags\":[{\"text\":\"Peace\",\"indices\":[145,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"China\",\"indices\":[160,166]},{\"text\":\"war\",\"indices\":[167,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555190711372365825,\"id_str\":\"1555190711372365825\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"url\":\"https:\\/\\/t.co\\/geJezowyMb\",\"display_url\":\"pic.twitter.com\\/geJezowyMb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmaijoseph\\/status\\/1555191096170479617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3926\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"PokemonScarletViolet\",\"indices\":[48,69]},{\"text\":\"BBNaija\",\"indices\":[70,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555189400874672130,\"id_str\":\"1555189400874672130\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"url\":\"https:\\/\\/t.co\\/Wj1lzHDUbI\",\"display_url\":\"pic.twitter.com\\/Wj1lzHDUbI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1202_Scents\\/status\\/1555189409909276680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"}}}]},\"3927\":{\"hashtags\":[{\"text\":\"BadDecisions\",\"indices\":[101,114]},{\"text\":\"MONEY\",\"indices\":[116,122]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[205,228]},{\"text\":\"Sheggz\",\"indices\":[230,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555189176026501120,\"id_str\":\"1555189176026501120\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"url\":\"https:\\/\\/t.co\\/X3b0pY8Jui\",\"display_url\":\"pic.twitter.com\\/X3b0pY8Jui\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayinmakarma\\/status\\/1555189182955503616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":487,\"resize\":\"fit\"},\"medium\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"}}}]},\"3928\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"BBNaija\",\"indices\":[126,134]},{\"text\":\"BBNajia\",\"indices\":[135,143]},{\"text\":\"BBNaijaS7\",\"indices\":[144,154]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[155,170]},{\"text\":\"BBNaijaQuidax\",\"indices\":[171,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3929\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[116,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"BigBrother\",\"indices\":[131,142]},{\"text\":\"SheggzOlu\",\"indices\":[143,153]},{\"text\":\"sabinus\",\"indices\":[154,162]},{\"text\":\"BadDecisions\",\"indices\":[163,176]},{\"text\":\"MONEY\",\"indices\":[177,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3930\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[52,61]},{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"timesupolivia\",\"indices\":[79,93]},{\"text\":\"sabinus\",\"indices\":[94,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555184643934134276,\"id_str\":\"1555184643934134276\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"url\":\"https:\\/\\/t.co\\/XWcnYOEdSF\",\"display_url\":\"pic.twitter.com\\/XWcnYOEdSF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/J4PMARKETERS\\/status\\/1555184653732028418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":412,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"}}}]},\"3931\":{\"hashtags\":[{\"text\":\"SheggzOlu\",\"indices\":[68,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555183806751055874,\"id_str\":\"1555183806751055874\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"url\":\"https:\\/\\/t.co\\/wyrlRD1y4C\",\"display_url\":\"pic.twitter.com\\/wyrlRD1y4C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dj_borsh\\/status\\/1555184514900582401\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3932\":{\"hashtags\":[{\"text\":\"PeacefulRebelGang\",\"indices\":[75,93]},{\"text\":\"Machala\",\"indices\":[95,103]},{\"text\":\"Wizkid\",\"indices\":[104,111]},{\"text\":\"Wizkidfc\",\"indices\":[112,121]},{\"text\":\"Afrofusion\",\"indices\":[122,133]},{\"text\":\"AFROBEAT\",\"indices\":[134,143]},{\"text\":\"sabinus\",\"indices\":[144,152]},{\"text\":\"2023election\",\"indices\":[153,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"BBNaija\",\"indices\":[175,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GQjxi8VaEt\",\"expanded_url\":\"https:\\/\\/indfy.me\\/drexx-confession\",\"display_url\":\"indfy.me\\/drexx-confessi\\u2026\",\"indices\":[184,207]}],\"media\":[{\"id\":1555182811249840132,\"id_str\":\"1555182811249840132\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"url\":\"https:\\/\\/t.co\\/EbvZMC6t5w\",\"display_url\":\"pic.twitter.com\\/EbvZMC6t5w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Drexxofficiall\\/status\\/1555182895467315200\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3933\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Pelosi\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555181498965295106,\"id_str\":\"1555181498965295106\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"url\":\"https:\\/\\/t.co\\/cXf8ss8bW0\",\"display_url\":\"pic.twitter.com\\/cXf8ss8bW0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1555181501632942083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"},\"medium\":{\"w\":700,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":400,\"resize\":\"fit\"}}}]},\"3934\":{\"hashtags\":[{\"text\":\"mobilevideography\",\"indices\":[62,80]},{\"text\":\"musicvideo\",\"indices\":[81,92]},{\"text\":\"music\",\"indices\":[93,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"LoveIslandUSA\",\"indices\":[108,122]},{\"text\":\"blackpanther\",\"indices\":[123,136]},{\"text\":\"zeeteroliver\",\"indices\":[137,150]},{\"text\":\"Amapiano\",\"indices\":[151,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555180460329897992,\"id_str\":\"1555180460329897992\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1933,\"resize\":\"fit\"}}}]},\"3935\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"HopeAgain2023\",\"indices\":[239,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555180451605659649,\"id_str\":\"1555180451605659649\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"url\":\"https:\\/\\/t.co\\/kBSGuw5lAF\",\"display_url\":\"pic.twitter.com\\/kBSGuw5lAF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1555180458555613184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3936\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[57,75]},{\"text\":\"Tiwan\",\"indices\":[76,82]},{\"text\":\"TejRan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555178664664662016,\"id_str\":\"1555178664664662016\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555178664664662016\\/pu\\/img\\/rK5DdVni0hmEYr1v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555178664664662016\\/pu\\/img\\/rK5DdVni0hmEYr1v.jpg\",\"url\":\"https:\\/\\/t.co\\/AZLeQ6K1Co\",\"display_url\":\"pic.twitter.com\\/AZLeQ6K1Co\",\"expanded_url\":\"https:\\/\\/twitter.com\\/northgateway2\\/status\\/1555178785083113473\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}}}]},\"3937\":{\"hashtags\":[{\"text\":\"Judge\",\"indices\":[0,6]},{\"text\":\"Lawyers\",\"indices\":[35,43]},{\"text\":\"BadDecisions\",\"indices\":[44,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3938\":{\"hashtags\":[{\"text\":\"Motivation\",\"indices\":[95,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3939\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[145,159]},{\"text\":\"Mompha\",\"indices\":[160,167]},{\"text\":\"Obidatti023\",\"indices\":[168,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Qdpaper2\",\"name\":\"Qudus Akanbi Eleyi.\",\"id\":1497996117153353737,\"id_str\":\"1497996117153353737\",\"indices\":[0,9]},{\"screen_name\":\"adams_oshiomole\",\"name\":\"Adams Oshiomole\",\"id\":2273438128,\"id_str\":\"2273438128\",\"indices\":[19,35]}],\"urls\":[]},\"3940\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"LoveIslandUSA\",\"indices\":[33,47]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[48,68]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[69,89]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[90,110]},{\"text\":\"timesupolivia\",\"indices\":[111,125]},{\"text\":\"PokemonPresents\",\"indices\":[126,142]},{\"text\":\"onstorm\",\"indices\":[143,151]},{\"text\":\"\\u0627\\u0644\\u0642\\u0628\\u0648\\u0644_\\u0627\\u0644\\u0645\\u0648\\u062d\\u062f_\\u0644\\u0644\\u0637\\u0627\\u0644\\u0628\\u0627\\u062a\",\"indices\":[152,175]},{\"text\":\"kagiso\",\"indices\":[176,183]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[184,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555174887903432704,\"id_str\":\"1555174887903432704\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"url\":\"https:\\/\\/t.co\\/OwCNmTJy2S\",\"display_url\":\"pic.twitter.com\\/OwCNmTJy2S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/K_h_a_l_i_f\\/status\\/1555174968110878720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"3941\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"PiConsensus\",\"indices\":[163,175]},{\"text\":\"PiNetworkUpdates\",\"indices\":[176,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8sgE1PQYKE\",\"expanded_url\":\"http:\\/\\/www.minealpha.net\",\"display_url\":\"minealpha.net\",\"indices\":[99,122]}]},\"3942\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[78,95]},{\"text\":\"JKLive\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3943\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"TaiwanIsaCountry\",\"indices\":[112,129]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[130,148]},{\"text\":\"LoveIslandUSA\",\"indices\":[149,163]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[164,184]},{\"text\":\"timesupolivia\",\"indices\":[185,199]},{\"text\":\"Trending\",\"indices\":[200,209]},{\"text\":\"trekkerterroristen\",\"indices\":[210,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555173183489277957,\"id_str\":\"1555173183489277957\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"url\":\"https:\\/\\/t.co\\/1k4n29zj8M\",\"display_url\":\"pic.twitter.com\\/1k4n29zj8M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555173247641161729\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"3944\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"LoveIslandUSA\",\"indices\":[26,40]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[42,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3945\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[15,19]},{\"text\":\"NFT\",\"indices\":[20,24]},{\"text\":\"NFTs\",\"indices\":[25,30]},{\"text\":\"scribbleart\",\"indices\":[31,43]},{\"text\":\"onlyfansgirl\",\"indices\":[44,57]},{\"text\":\"LoveIslandUSA\",\"indices\":[58,72]},{\"text\":\"PokemonPresents\",\"indices\":[73,89]},{\"text\":\"Trending\",\"indices\":[90,99]},{\"text\":\"USA\",\"indices\":[100,104]},{\"text\":\"portraits\",\"indices\":[105,115]},{\"text\":\"artwork\",\"indices\":[116,124]},{\"text\":\"viral\",\"indices\":[125,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555169769480982530,\"id_str\":\"1555169769480982530\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"url\":\"https:\\/\\/t.co\\/nqu1JUJBNW\",\"display_url\":\"pic.twitter.com\\/nqu1JUJBNW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/andre_design1\\/status\\/1555169785113182209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":547,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1646,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":965,\"h\":1200,\"resize\":\"fit\"}}}]},\"3946\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Gombe\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VSqloXTTN7\",\"expanded_url\":\"https:\\/\\/infactng.com\\/2022\\/08\\/04\\/shocker-after-failing-his-exams-goke-committed-suicide\\/\",\"display_url\":\"infactng.com\\/2022\\/08\\/04\\/sho\\u2026\",\"indices\":[70,93]}]},\"3947\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"iphone14\",\"indices\":[75,84]},{\"text\":\"sabinus\",\"indices\":[85,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555168270096941056,\"id_str\":\"1555168270096941056\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"url\":\"https:\\/\\/t.co\\/maVn9omPE3\",\"display_url\":\"pic.twitter.com\\/maVn9omPE3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1555168278548471814\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"3948\":{\"hashtags\":[{\"text\":\"Eloswag\",\"indices\":[98,106]},{\"text\":\"davidhundeyin\",\"indices\":[119,133]},{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"Obidatti023\",\"indices\":[144,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555167868895068165,\"id_str\":\"1555167868895068165\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"url\":\"https:\\/\\/t.co\\/U63Lw3koX1\",\"display_url\":\"pic.twitter.com\\/U63Lw3koX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nwakaibeya001\\/status\\/1555168058779525126\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"3949\":{\"hashtags\":[{\"text\":\"Bitcoin\",\"indices\":[140,148]},{\"text\":\"Taiwan\",\"indices\":[149,156]},{\"text\":\"BTC\",\"indices\":[157,161]},{\"text\":\"Crypto\",\"indices\":[162,169]},{\"text\":\"cryptocurrencies\",\"indices\":[170,187]},{\"text\":\"bulls\",\"indices\":[188,194]},{\"text\":\"Bears\",\"indices\":[195,201]},{\"text\":\"quote\",\"indices\":[202,208]},{\"text\":\"MotivationalQuotes\",\"indices\":[209,228]},{\"text\":\"tradingcrypto\",\"indices\":[229,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555167779841515523,\"id_str\":\"1555167779841515523\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"url\":\"https:\\/\\/t.co\\/JD9k0lRhKe\",\"display_url\":\"pic.twitter.com\\/JD9k0lRhKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EchezqueH\\/status\\/1555167787605233664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3950\":{\"hashtags\":[{\"text\":\"affordable\",\"indices\":[124,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"PiConsensus\",\"indices\":[207,219]},{\"text\":\"Wizkid\",\"indices\":[220,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RiL8U7EDdz\",\"expanded_url\":\"https:\\/\\/www.revenes.com\\/product\\/itel-p38\\/\",\"display_url\":\"revenes.com\\/product\\/itel-p\\u2026\",\"indices\":[99,122]}],\"media\":[{\"id\":1555165843989970944,\"id_str\":\"1555165843989970944\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"url\":\"https:\\/\\/t.co\\/fUqpTBJqZB\",\"display_url\":\"pic.twitter.com\\/fUqpTBJqZB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RevenesNigeria\\/status\\/1555165846510751746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3951\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"Niger\",\"indices\":[118,124]},{\"text\":\"davidhundeyin\",\"indices\":[125,139]},{\"text\":\"ENUGU\",\"indices\":[140,146]},{\"text\":\"southeast\",\"indices\":[147,157]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[65,74]},{\"screen_name\":\"Chude__\",\"name\":\"Columbus\",\"id\":910572372410949632,\"id_str\":\"910572372410949632\",\"indices\":[76,84]},{\"screen_name\":\"drpenking\",\"name\":\"DR.PENKING\\u2122 \\ud83c\\udde6\\ud83c\\uddfa\\ud83c\\uddf3\\ud83c\\uddec #PeterObi\",\"id\":1647305408,\"id_str\":\"1647305408\",\"indices\":[86,96]},{\"screen_name\":\"Jack_ng01\",\"name\":\"J a c k \\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1215978204734861312,\"id_str\":\"1215978204734861312\",\"indices\":[97,107]}],\"urls\":[],\"media\":[{\"id\":1555165240739905538,\"id_str\":\"1555165240739905538\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"url\":\"https:\\/\\/t.co\\/aJyefnJaPq\",\"display_url\":\"pic.twitter.com\\/aJyefnJaPq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CjKrisEze\\/status\\/1555165337112530944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"3952\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[259,266]},{\"text\":\"sabinus\",\"indices\":[267,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555165190198640640,\"id_str\":\"1555165190198640640\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"url\":\"https:\\/\\/t.co\\/Brr9ZnDADz\",\"display_url\":\"pic.twitter.com\\/Brr9ZnDADz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555165192924831744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":502,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":638,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":638,\"resize\":\"fit\"}}}]},\"3953\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[123,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"CommonwealthGames2022\",\"indices\":[153,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3954\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[16,22]},{\"text\":\"military\",\"indices\":[94,103]},{\"text\":\"exercises\",\"indices\":[104,114]},{\"text\":\"Taiwan\",\"indices\":[136,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555162706549800960,\"id_str\":\"1555162706549800960\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"url\":\"https:\\/\\/t.co\\/qazOjUwnZ7\",\"display_url\":\"pic.twitter.com\\/qazOjUwnZ7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunadePraise\\/status\\/1555162714733006849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555136742914531328,\"id_str\":\"1555136742914531328\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"url\":\"https:\\/\\/t.co\\/UhSpASo6FT\",\"display_url\":\"pic.twitter.com\\/UhSpASo6FT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Military_News4\\/status\\/1555137709621911552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1555137709621911552,\"source_status_id_str\":\"1555137709621911552\",\"source_user_id\":928852100619964417,\"source_user_id_str\":\"928852100619964417\"}]},\"3955\":{\"hashtags\":[{\"text\":\"gobarta\",\"indices\":[58,66]},{\"text\":\"barter\",\"indices\":[67,74]},{\"text\":\"trading\",\"indices\":[75,83]},{\"text\":\"tradebybarter\",\"indices\":[84,98]},{\"text\":\"BBNajiaS7\",\"indices\":[99,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gobarta_\",\"name\":\"gobarta_\",\"id\":1382325349107830792,\"id_str\":\"1382325349107830792\",\"indices\":[13,22]}],\"urls\":[],\"media\":[{\"id\":1555161212412989443,\"id_str\":\"1555161212412989443\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"url\":\"https:\\/\\/t.co\\/C2HwqBfqlE\",\"display_url\":\"pic.twitter.com\\/C2HwqBfqlE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gobarta_\\/status\\/1555161230607777793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3956\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[27,34]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChimarokeNamani\",\"name\":\"Chimaroke Nnamani MD, FACOG.\",\"id\":1138402595398201345,\"id_str\":\"1138402595398201345\",\"indices\":[0,16]}],\"urls\":[]},\"3957\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"Trending\",\"indices\":[36,45]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"shuga\",\"name\":\"shuga\",\"id\":13394162,\"id_str\":\"13394162\",\"indices\":[46,52]}],\"urls\":[],\"media\":[{\"id\":1555156322076827650,\"id_str\":\"1555156322076827650\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"url\":\"https:\\/\\/t.co\\/CN3kYOdU36\",\"display_url\":\"pic.twitter.com\\/CN3kYOdU36\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bhginfodesk\\/status\\/1555158033004724225\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":272,\"resize\":\"fit\"}}}]},\"3958\":{\"hashtags\":[{\"text\":\"abuja\",\"indices\":[80,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gx6T3vHHf5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\",\"display_url\":\"twitter.com\\/rubiestech\\/sta\\u2026\",\"indices\":[104,127]}]},\"3959\":{\"hashtags\":[{\"text\":\"abeggod\",\"indices\":[143,151]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[152,172]},{\"text\":\"Archie\",\"indices\":[173,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"PokemonPresents\",\"indices\":[189,205]},{\"text\":\"erica\",\"indices\":[206,212]},{\"text\":\"BBNaija7\",\"indices\":[213,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555156992766902274,\"id_str\":\"1555156992766902274\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"url\":\"https:\\/\\/t.co\\/gliY1QIjih\",\"display_url\":\"pic.twitter.com\\/gliY1QIjih\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555157065131298817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"}}}]},\"3960\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[241,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]},{\"text\":\"BadDecisions\",\"indices\":[258,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555156710142124035,\"id_str\":\"1555156710142124035\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"url\":\"https:\\/\\/t.co\\/yDtdwBf7Nr\",\"display_url\":\"pic.twitter.com\\/yDtdwBf7Nr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1555156719885492224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1147,\"resize\":\"fit\"}}}]},\"3961\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[93,99]},{\"text\":\"exercises\",\"indices\":[127,137]},{\"text\":\"Pelosi\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555155409132212224,\"id_str\":\"1555155409132212224\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"url\":\"https:\\/\\/t.co\\/0XVPeJqRkf\",\"display_url\":\"pic.twitter.com\\/0XVPeJqRkf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555155450995556352\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"3962\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[251,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Consigliere909\",\"name\":\"C\\u2b55nsigliere\\ud83d\\udcb0\",\"id\":1231855138949795840,\"id_str\":\"1231855138949795840\",\"indices\":[0,15]}],\"urls\":[]},\"3963\":{\"hashtags\":[{\"text\":\"Ethereum\",\"indices\":[56,65]},{\"text\":\"cryptocurrencies\",\"indices\":[76,93]},{\"text\":\"Piconsensus\",\"indices\":[244,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"Sol\",\"indices\":[265,269]},{\"text\":\"AVAX\",\"indices\":[270,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Xlq8xpezyU\",\"expanded_url\":\"http:\\/\\/minepi.com\\/formulacode\",\"display_url\":\"minepi.com\\/formulacode\",\"indices\":[156,179]},{\"url\":\"https:\\/\\/t.co\\/z9GfttvsFn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNewsMedia\\/status\\/1554783427471101956\",\"display_url\":\"twitter.com\\/PiNewsMedia\\/st\\u2026\",\"indices\":[276,299]}]},\"3964\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[191,198]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"minorta\",\"name\":\"Lin Ching-Yi\",\"id\":11616642,\"id_str\":\"11616642\",\"indices\":[0,8]}],\"urls\":[]},\"3965\":{\"hashtags\":[{\"text\":\"modella\",\"indices\":[146,154]},{\"text\":\"sabinus\",\"indices\":[155,163]},{\"text\":\"timesupolivia\",\"indices\":[164,178]},{\"text\":\"Wizkid\",\"indices\":[179,186]},{\"text\":\"teni\",\"indices\":[187,192]},{\"text\":\"ibadan\",\"indices\":[193,200]},{\"text\":\"BBNaija\",\"indices\":[201,209]},{\"text\":\"BBNajiaS7\",\"indices\":[210,220]},{\"text\":\"bellashmurda\",\"indices\":[221,234]},{\"text\":\"EFCC\",\"indices\":[235,240]},{\"text\":\"BigBrotherNaija\",\"indices\":[241,257]},{\"text\":\"SheggzOlu\",\"indices\":[258,268]},{\"text\":\"Taiwan\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555154158386397187,\"id_str\":\"1555154158386397187\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"url\":\"https:\\/\\/t.co\\/sdWjMuziSQ\",\"display_url\":\"pic.twitter.com\\/sdWjMuziSQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JHONEXEMPIRE\\/status\\/1555154282038657026\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3966\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[88,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[103,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555153103313604609,\"id_str\":\"1555153103313604609\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"url\":\"https:\\/\\/t.co\\/JMx7Icb0oM\",\"display_url\":\"pic.twitter.com\\/JMx7Icb0oM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555153135496478720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}}}]},\"3967\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[101,121]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[122,130]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k9d3nD6BGb\",\"expanded_url\":\"https:\\/\\/youtu.be\\/SRqithSf7ik\",\"display_url\":\"youtu.be\\/SRqithSf7ik\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/dDL1CbPJy1\",\"expanded_url\":\"http:\\/\\/page.Click\",\"display_url\":\"page.Click\",\"indices\":[59,82]}]},\"3968\":{\"hashtags\":[{\"text\":\"spacemallio\",\"indices\":[46,58]},{\"text\":\"spacemallshopping\",\"indices\":[59,77]},{\"text\":\"spacemallapp\",\"indices\":[78,91]},{\"text\":\"iphone11\",\"indices\":[92,101]},{\"text\":\"Iphone14ProMax\",\"indices\":[102,117]},{\"text\":\"BeautyTukura\",\"indices\":[118,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]},{\"text\":\"Entrepreneur\",\"indices\":[140,153]},{\"text\":\"BusinessOwners\",\"indices\":[154,169]},{\"text\":\"SMESupportHour\",\"indices\":[170,185]},{\"text\":\"SMEs\",\"indices\":[186,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555152665503563776,\"id_str\":\"1555152665503563776\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"url\":\"https:\\/\\/t.co\\/WOacyTORbz\",\"display_url\":\"pic.twitter.com\\/WOacyTORbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/spacemallio\\/status\\/1555152668116533248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3969\":{\"hashtags\":[{\"text\":\"SouthKorea\",\"indices\":[73,84]},{\"text\":\"Pelosi\",\"indices\":[86,93]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[120,140]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"China\",\"indices\":[151,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555152598109663232,\"id_str\":\"1555152598109663232\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"url\":\"https:\\/\\/t.co\\/kGhTbqimX7\",\"display_url\":\"pic.twitter.com\\/kGhTbqimX7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555152605470662656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"medium\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3970\":{\"hashtags\":[{\"text\":\"building\",\"indices\":[61,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"nigeria\",\"indices\":[79,87]},{\"text\":\"lekki\",\"indices\":[88,94]},{\"text\":\"construction\",\"indices\":[95,108]},{\"text\":\"projectmanagement\",\"indices\":[109,127]},{\"text\":\"Structures\",\"indices\":[128,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555152109657546755,\"id_str\":\"1555152109657546755\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"url\":\"https:\\/\\/t.co\\/gtYI0jeg8Q\",\"display_url\":\"pic.twitter.com\\/gtYI0jeg8Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1555152122827751425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"}}}]},\"3971\":{\"hashtags\":[{\"text\":\"JusticeForAlikaOgorchukwu\",\"indices\":[34,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Finmin\",\"indices\":[84,91]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UsgUnSpj84\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HumAngle_\\/status\\/1555132746267246592\",\"display_url\":\"twitter.com\\/HumAngle_\\/stat\\u2026\",\"indices\":[92,115]}]},\"3972\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"HealthCareCrisis\",\"indices\":[60,77]},{\"text\":\"healthylifestyle\",\"indices\":[78,95]},{\"text\":\"Motivation\",\"indices\":[96,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3973\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3974\":{\"hashtags\":[{\"text\":\"ThrowbackThursday\",\"indices\":[221,239]},{\"text\":\"tbt\",\"indices\":[240,244]},{\"text\":\"GodAbeg\",\"indices\":[245,253]},{\"text\":\"Datti\",\"indices\":[254,260]},{\"text\":\"Taiwan\",\"indices\":[261,268]},{\"text\":\"ASUU\",\"indices\":[269,274]},{\"text\":\"Finland\",\"indices\":[275,283]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555150975874252801,\"id_str\":\"1555150975874252801\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6MLUjktPI\",\"display_url\":\"pic.twitter.com\\/Y6MLUjktPI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Behold_Homes\\/status\\/1555150978747432963\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3975\":{\"hashtags\":[{\"text\":\"CommonwealthGames2022\",\"indices\":[56,78]},{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"Accra2023\",\"indices\":[87,97]},{\"text\":\"GTVSports\",\"indices\":[98,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555150593911656448,\"id_str\":\"1555150593911656448\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"url\":\"https:\\/\\/t.co\\/lHlF5DsSgw\",\"display_url\":\"pic.twitter.com\\/lHlF5DsSgw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ReginaldAnnobil\\/status\\/1555150597149433864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"large\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"small\":{\"w\":547,\"h\":434,\"resize\":\"fit\"}}}]},\"3976\":{\"hashtags\":[{\"text\":\"impact\",\"indices\":[194,201]},{\"text\":\"Depay\",\"indices\":[202,208]},{\"text\":\"mali\",\"indices\":[209,214]},{\"text\":\"art\",\"indices\":[215,219]},{\"text\":\"science\",\"indices\":[220,228]},{\"text\":\"commercial\",\"indices\":[229,240]},{\"text\":\"giveback\",\"indices\":[241,250]},{\"text\":\"throwback\",\"indices\":[251,261]},{\"text\":\"Taiwan\",\"indices\":[262,269]},{\"text\":\"Assu\",\"indices\":[270,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555150224192147458,\"id_str\":\"1555150224192147458\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3977\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"timesupolivia\",\"indices\":[141,155]},{\"text\":\"CommonwealthGames2022\",\"indices\":[156,178]},{\"text\":\"Nigeria\",\"indices\":[179,187]},{\"text\":\"shopping\",\"indices\":[188,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555149692396265473,\"id_str\":\"1555149692396265473\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"url\":\"https:\\/\\/t.co\\/k24n6sdcoO\",\"display_url\":\"pic.twitter.com\\/k24n6sdcoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BargainFortress\\/status\\/1555149702697476101\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":856,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"3978\":{\"hashtags\":[{\"text\":\"designers\",\"indices\":[94,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"CommonwealthGames2022\",\"indices\":[113,135]},{\"text\":\"timesupolivia\",\"indices\":[136,150]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Nabhel_\",\"name\":\"Nabhel\",\"id\":561937140,\"id_str\":\"561937140\",\"indices\":[63,71]},{\"screen_name\":\"pixelyut\",\"name\":\"Bright Mba\\ud83e\\udd85\\ud83e\\udd85\",\"id\":702750969440899072,\"id_str\":\"702750969440899072\",\"indices\":[72,81]},{\"screen_name\":\"Big_Heeazy\",\"name\":\"SonOfMan\",\"id\":794142226255376384,\"id_str\":\"794142226255376384\",\"indices\":[82,93]}],\"urls\":[],\"media\":[{\"id\":1555149362526830592,\"id_str\":\"1555149362526830592\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"url\":\"https:\\/\\/t.co\\/UWW30ahzr7\",\"display_url\":\"pic.twitter.com\\/UWW30ahzr7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rukegetrich09\\/status\\/1555149398035906561\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":224,\"resize\":\"fit\"}}}]},\"3979\":{\"hashtags\":[{\"text\":\"wizkid\",\"indices\":[142,149]},{\"text\":\"festac\",\"indices\":[150,157]},{\"text\":\"iPhone13\",\"indices\":[158,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"invest\",\"indices\":[176,183]},{\"text\":\"capitec\",\"indices\":[184,192]},{\"text\":\"teni\",\"indices\":[193,198]},{\"text\":\"explore\",\"indices\":[199,207]},{\"text\":\"BBNajiaS7\",\"indices\":[208,218]},{\"text\":\"BBNaija\",\"indices\":[219,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VJMnsXbNYd\",\"expanded_url\":\"http:\\/\\/myabove.ng\",\"display_url\":\"myabove.ng\",\"indices\":[82,105]}],\"media\":[{\"id\":1555148898599141376,\"id_str\":\"1555148898599141376\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"url\":\"https:\\/\\/t.co\\/vJ5ijjcRis\",\"display_url\":\"pic.twitter.com\\/vJ5ijjcRis\",\"expanded_url\":\"https:\\/\\/twitter.com\\/welcometoabove\\/status\\/1555148913782493185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"3980\":{\"hashtags\":[{\"text\":\"Happyweddinganniversary\",\"indices\":[123,147]},{\"text\":\"love\",\"indices\":[148,153]},{\"text\":\"moodidit\",\"indices\":[154,163]},{\"text\":\"couplegoals\",\"indices\":[164,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Uyajola99\",\"indices\":[185,195]},{\"text\":\"CommonwealthGames2022\",\"indices\":[196,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555147588466262016,\"id_str\":\"1555147588466262016\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":863,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":489,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1473,\"resize\":\"fit\"}}}]},\"3981\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"AppleMusic\",\"indices\":[91,102]},{\"text\":\"AppleEvent\",\"indices\":[103,114]},{\"text\":\"AppleMusicRT\",\"indices\":[115,128]},{\"text\":\"portapottydubai\",\"indices\":[129,145]},{\"text\":\"portharcourt\",\"indices\":[147,160]},{\"text\":\"lagos\",\"indices\":[161,167]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[168,190]},{\"text\":\"Kano\",\"indices\":[191,196]},{\"text\":\"timesupolivia\",\"indices\":[197,211]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[212,220]},{\"text\":\"CommonwealthGames2022\",\"indices\":[221,243]},{\"text\":\"AFROBEAT\",\"indices\":[244,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[47,57]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SEd4udv6bm\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/jaiye-single\\/1634846567?uo=4&app=apple+music\",\"display_url\":\"music.apple.com\\/us\\/album\\/jaiye\\u2026\",\"indices\":[255,278]}]},\"3982\":{\"hashtags\":[{\"text\":\"zigproperties\",\"indices\":[33,47]},{\"text\":\"sabinus\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"CommonwealthGames2022\",\"indices\":[132,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555144210206031873,\"id_str\":\"1555144210206031873\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"url\":\"https:\\/\\/t.co\\/ZFgC36Ucpe\",\"display_url\":\"pic.twitter.com\\/ZFgC36Ucpe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zigproperties\\/status\\/1555144224714231809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3983\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"30BG\",\"indices\":[66,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3984\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FreddyNtafumila\",\"name\":\"ServantOfGod\",\"id\":4125973102,\"id_str\":\"4125973102\",\"indices\":[0,16]}],\"urls\":[]},\"3985\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"AllOrNothingArsenal\",\"indices\":[130,150]},{\"text\":\"BB24\",\"indices\":[151,156]},{\"text\":\"timesupolivia\",\"indices\":[157,171]},{\"text\":\"onstorm\",\"indices\":[172,180]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Zlatan_Ibile\",\"name\":\"#WorldPresident \\ud83c\\udf0e\",\"id\":264316796,\"id_str\":\"264316796\",\"indices\":[71,84]},{\"screen_name\":\"gutier_navarro\",\"name\":\"ChrisBrownOfficial\",\"id\":3200172925,\"id_str\":\"3200172925\",\"indices\":[85,100]},{\"screen_name\":\"SnoopDogg\",\"name\":\"Snoop Dogg\",\"id\":3004231,\"id_str\":\"3004231\",\"indices\":[101,111]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[112,119]}],\"urls\":[],\"media\":[{\"id\":1555143217586241537,\"id_str\":\"1555143217586241537\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"url\":\"https:\\/\\/t.co\\/p3OU4EnjKl\",\"display_url\":\"pic.twitter.com\\/p3OU4EnjKl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/de_easygreen\\/status\\/1555143706495356930\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":681,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":726,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}}}]},\"3986\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3987\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3988\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555140005584142337,\"id_str\":\"1555140005584142337\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"url\":\"https:\\/\\/t.co\\/GeyHHH3sFh\",\"display_url\":\"pic.twitter.com\\/GeyHHH3sFh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555140625653186560\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}}}]},\"3989\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3990\":{\"hashtags\":[{\"text\":\"nectarbeauty\",\"indices\":[135,148]},{\"text\":\"naturalhair\",\"indices\":[149,161]},{\"text\":\"beauty\",\"indices\":[162,169]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"AsiaCup2022\",\"indices\":[178,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"simplyshumba\",\"name\":\"meeeeeeeegan \\u2728\",\"id\":1223605304367243264,\"id_str\":\"1223605304367243264\",\"indices\":[42,55]}],\"urls\":[],\"media\":[{\"id\":1555139551198314496,\"id_str\":\"1555139551198314496\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"url\":\"https:\\/\\/t.co\\/CNv51CwZVQ\",\"display_url\":\"pic.twitter.com\\/CNv51CwZVQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1555139554767769602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"}}}]},\"3991\":{\"hashtags\":[{\"text\":\"GraphicDesigner\",\"indices\":[73,89]},{\"text\":\"Graphicsdesign\",\"indices\":[91,106]},{\"text\":\"graphics\",\"indices\":[108,117]},{\"text\":\"sabinus\",\"indices\":[119,127]},{\"text\":\"Datti\",\"indices\":[128,134]},{\"text\":\"CynthiaOkereke\",\"indices\":[135,150]},{\"text\":\"davidhundeyin\",\"indices\":[151,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mira_wealth\",\"name\":\"MirabelWealth\\ud83d\\udcb2#MyPeterObi\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":723895993972957184,\"id_str\":\"723895993972957184\",\"indices\":[20,32]}],\"urls\":[],\"media\":[{\"id\":1555139411502931968,\"id_str\":\"1555139411502931968\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"url\":\"https:\\/\\/t.co\\/ixkeriaLRu\",\"display_url\":\"pic.twitter.com\\/ixkeriaLRu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinazaJessica4\\/status\\/1555139435934654464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3992\":{\"hashtags\":[{\"text\":\"SapeleRoadMatters\",\"indices\":[83,101]},{\"text\":\"FixSapeleRoad\",\"indices\":[103,117]},{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"PokemonPresents\",\"indices\":[207,223]},{\"text\":\"onstorm\",\"indices\":[224,232]},{\"text\":\"timesupolivia\",\"indices\":[233,247]},{\"text\":\"GizliSakli\",\"indices\":[248,259]},{\"text\":\"Niger\",\"indices\":[261,267]},{\"text\":\"PDP\",\"indices\":[268,272]},{\"text\":\"ASUU\",\"indices\":[273,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FMWHNIG\",\"name\":\"Federal Ministry of Works & Housing\",\"id\":720608960550715392,\"id_str\":\"720608960550715392\",\"indices\":[128,136]},{\"screen_name\":\"tundefashola\",\"name\":\"Babatunde Fashola\",\"id\":153209413,\"id_str\":\"153209413\",\"indices\":[137,150]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[151,159]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[160,171]},{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[172,184]},{\"screen_name\":\"thecableng\",\"name\":\"TheCable\",\"id\":1954402777,\"id_str\":\"1954402777\",\"indices\":[185,196]}],\"urls\":[],\"media\":[{\"id\":1555138634113753088,\"id_str\":\"1555138634113753088\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"url\":\"https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"display_url\":\"pic.twitter.com\\/ZdoPAt0eNQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bright_agbons\\/status\\/1555139152135561218\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"medium\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"large\":{\"w\":224,\"h\":416,\"resize\":\"fit\"}}}]},\"3993\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"PokemonPresents\",\"indices\":[131,147]},{\"text\":\"onstorm\",\"indices\":[148,156]},{\"text\":\"AsiaCup2022\",\"indices\":[157,169]},{\"text\":\"lagos\",\"indices\":[170,176]},{\"text\":\"Obidatti2023\",\"indices\":[177,190]},{\"text\":\"TinubuShettima2023\",\"indices\":[191,210]},{\"text\":\"AtikuOkowa2023\",\"indices\":[211,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555138821490089984,\"id_str\":\"1555138821490089984\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"url\":\"https:\\/\\/t.co\\/1hkrhZ6FGP\",\"display_url\":\"pic.twitter.com\\/1hkrhZ6FGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/denys_peter\\/status\\/1555138829111156736\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"3994\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[18,25]},{\"text\":\"PokemonPresents\",\"indices\":[26,42]},{\"text\":\"onstorm\",\"indices\":[43,51]},{\"text\":\"PokemonScarletViolet\",\"indices\":[52,73]},{\"text\":\"timesupolivia\",\"indices\":[74,88]},{\"text\":\"CommonwealthGames2022\",\"indices\":[89,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555138321642409985,\"id_str\":\"1555138321642409985\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"url\":\"https:\\/\\/t.co\\/FkCxF40SeP\",\"display_url\":\"pic.twitter.com\\/FkCxF40SeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1555138525649043457\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}}}]},\"3995\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Biden\",\"indices\":[119,125]},{\"text\":\"AsiaCup2022\",\"indices\":[134,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555137905655521282,\"id_str\":\"1555137905655521282\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"url\":\"https:\\/\\/t.co\\/qFRoP3l7x1\",\"display_url\":\"pic.twitter.com\\/qFRoP3l7x1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuvidecorolowu\\/status\\/1555138012203335680\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3996\":{\"hashtags\":[{\"text\":\"benincitymall\",\"indices\":[218,232]},{\"text\":\"iPhone14\",\"indices\":[234,243]},{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"Oshiomole\",\"indices\":[252,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555136504955125761,\"id_str\":\"1555136504955125761\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"url\":\"https:\\/\\/t.co\\/WeK9AczT9n\",\"display_url\":\"pic.twitter.com\\/WeK9AczT9n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555136512567697408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3997\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[98,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]},{\"text\":\"badagry\",\"indices\":[115,123]},{\"text\":\"socialmediamarketing\",\"indices\":[124,145]},{\"text\":\"socialmedia\",\"indices\":[146,158]},{\"text\":\"dabrandcity\",\"indices\":[159,171]},{\"text\":\"socialbrandcity\",\"indices\":[172,188]},{\"text\":\"ThrowbackThursday\",\"indices\":[189,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"3998\":{\"hashtags\":[{\"text\":\"CannabisCommunity\",\"indices\":[78,96]},{\"text\":\"party\",\"indices\":[97,103]},{\"text\":\"HypeBeast\",\"indices\":[104,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555135449693392896,\"id_str\":\"1555135449693392896\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"url\":\"https:\\/\\/t.co\\/E8Qdn5xljL\",\"display_url\":\"pic.twitter.com\\/E8Qdn5xljL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Christoph7Onoja\\/status\\/1555135839843352576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"3999\":{\"hashtags\":[{\"text\":\"HopeAgain2023\",\"indices\":[221,235]},{\"text\":\"Taiwan\",\"indices\":[236,243]},{\"text\":\"CommonwealthGames2022\",\"indices\":[244,266]},{\"text\":\"AsiaCup2022\",\"indices\":[267,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555135837016317956,\"id_str\":\"1555135837016317956\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"url\":\"https:\\/\\/t.co\\/30gXogxS1T\",\"display_url\":\"pic.twitter.com\\/30gXogxS1T\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1555135838857609217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":480,\"resize\":\"fit\"}}}]},\"4000\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[32,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BarackObama\",\"name\":\"Barack Obama\",\"id\":813286,\"id_str\":\"813286\",\"indices\":[14,26]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[49,64]},{\"screen_name\":\"legitngnews\",\"name\":\"Legit.ng | Leading the way\",\"id\":569053466,\"id_str\":\"569053466\",\"indices\":[65,77]},{\"screen_name\":\"BarackObama\",\"name\":\"Barack Obama\",\"id\":813286,\"id_str\":\"813286\",\"indices\":[108,120]},{\"screen_name\":\"BBCBreaking\",\"name\":\"BBC Breaking News\",\"id\":5402612,\"id_str\":\"5402612\",\"indices\":[121,133]},{\"screen_name\":\"channelstv\",\"name\":\"Channels Television\",\"id\":125346858,\"id_str\":\"125346858\",\"indices\":[134,145]}],\"urls\":[],\"media\":[{\"id\":1555134911127887872,\"id_str\":\"1555134911127887872\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"4001\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"CommonwealthGames2022\",\"indices\":[64,86]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4002\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"CommonwealthGames2022\",\"indices\":[231,253]},{\"text\":\"thursdayvibes\",\"indices\":[254,268]},{\"text\":\"GoldMedal\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[0,9]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[186,193]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[212,222]}],\"urls\":[]},\"4003\":{\"hashtags\":[{\"text\":\"nectar\",\"indices\":[108,115]},{\"text\":\"nectarbeauty\",\"indices\":[116,129]},{\"text\":\"beautiful\",\"indices\":[130,140]},{\"text\":\"PokemonPresents\",\"indices\":[141,157]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"onstorm\",\"indices\":[166,174]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4004\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"CommonwealthGames2022\",\"indices\":[83,105]},{\"text\":\"davidhundeyin\",\"indices\":[106,120]},{\"text\":\"iphone14\",\"indices\":[121,130]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vdjtflexx\",\"name\":\"VDJ Tflexx\",\"id\":230824232,\"id_str\":\"230824232\",\"indices\":[0,10]}],\"urls\":[]},\"4005\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[124,131]},{\"text\":\"sabinus\",\"indices\":[132,140]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"BeninCityMall\",\"indices\":[149,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qY8EJ70kOG\",\"expanded_url\":\"https:\\/\\/link.medium.com\\/TdSfdJspdsb\",\"display_url\":\"link.medium.com\\/TdSfdJspdsb\",\"indices\":[19,42]}],\"media\":[{\"id\":1555129459480600576,\"id_str\":\"1555129459480600576\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"url\":\"https:\\/\\/t.co\\/ZBTWkZT89P\",\"display_url\":\"pic.twitter.com\\/ZBTWkZT89P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Starry_Gold\\/status\\/1555131195222069249\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"large\":{\"w\":604,\"h\":413,\"resize\":\"fit\"}}}]},\"4006\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[173,179]},{\"text\":\"Finland\",\"indices\":[180,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"PokemonPresents\",\"indices\":[197,213]},{\"text\":\"onstorm\",\"indices\":[215,223]},{\"text\":\"Tinubu\",\"indices\":[224,231]},{\"text\":\"SDGs\",\"indices\":[233,238]},{\"text\":\"OBIDIENTS\",\"indices\":[239,249]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[250,262]},{\"text\":\"onstorm\",\"indices\":[263,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555130887028760576,\"id_str\":\"1555130887028760576\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"url\":\"https:\\/\\/t.co\\/I3KElydxVd\",\"display_url\":\"pic.twitter.com\\/I3KElydxVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1555130893794267138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}}]},\"4007\":{\"hashtags\":[{\"text\":\"bellashmurda\",\"indices\":[90,103]},{\"text\":\"Finance\",\"indices\":[104,112]},{\"text\":\"Wizkid\",\"indices\":[113,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"BBNaija\",\"indices\":[129,137]},{\"text\":\"davido\",\"indices\":[138,145]},{\"text\":\"iphone14\",\"indices\":[146,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555129115388350464,\"id_str\":\"1555129115388350464\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"4008\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4009\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[46,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4010\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[55,62]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"PokemonScarletViolet\",\"indices\":[76,97]},{\"text\":\"YEEZYDAY\",\"indices\":[98,107]},{\"text\":\"Nigeria\",\"indices\":[108,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555127653304238080,\"id_str\":\"1555127653304238080\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"url\":\"https:\\/\\/t.co\\/AzpwIvRGzg\",\"display_url\":\"pic.twitter.com\\/AzpwIvRGzg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BernardTwise\\/status\\/1555127655908970497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"},\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"}}}]},\"4011\":{\"hashtags\":[{\"text\":\"bbnaija\",\"indices\":[184,192]},{\"text\":\"Taiwan\",\"indices\":[193,200]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SupremeContine1\",\"name\":\"Supreme_Continental\",\"id\":1472152760397307906,\"id_str\":\"1472152760397307906\",\"indices\":[103,119]}],\"urls\":[],\"media\":[{\"id\":1555126804217843712,\"id_str\":\"1555126804217843712\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"url\":\"https:\\/\\/t.co\\/GkUDEs2ebr\",\"display_url\":\"pic.twitter.com\\/GkUDEs2ebr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SupremeContine1\\/status\\/1555126966491152384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":448,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":359,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":448,\"resize\":\"fit\"}}}]},\"4012\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[0,8]},{\"text\":\"Mp3\",\"indices\":[28,32]},{\"text\":\"trending\",\"indices\":[121,130]},{\"text\":\"pvcnigeria\",\"indices\":[131,142]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"Sheggsolu\",\"indices\":[151,161]},{\"text\":\"iPhone\",\"indices\":[162,169]},{\"text\":\"iphone14\",\"indices\":[170,179]},{\"text\":\"PeterObi\",\"indices\":[180,189]},{\"text\":\"BBNaijaS7\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Pa_J\",\"name\":\"PaJOfficial\\u2b50\\u2b50\",\"id\":48560890,\"id_str\":\"48560890\",\"indices\":[12,17]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0h70sKlwAD\",\"expanded_url\":\"http:\\/\\/koserenaija.com\\/2022\\/07\\/20\\/music-pa-j-pvc-mp3-koserenaija\\/\",\"display_url\":\"koserenaija.com\\/2022\\/07\\/20\\/mus\\u2026\",\"indices\":[97,120]}],\"media\":[{\"id\":1555124245038080003,\"id_str\":\"1555124245038080003\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"url\":\"https:\\/\\/t.co\\/sGvJ9HSAsQ\",\"display_url\":\"pic.twitter.com\\/sGvJ9HSAsQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555124249051992066\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":673,\"resize\":\"fit\"}},\"source_status_id\":1555124249051992066,\"source_status_id_str\":\"1555124249051992066\",\"source_user_id\":1017100479325720576,\"source_user_id_str\":\"1017100479325720576\"}]},\"4013\":{\"hashtags\":[{\"text\":\"iphone14\",\"indices\":[131,140]},{\"text\":\"SheggzOlu\",\"indices\":[141,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"CommonwealthGames2022\",\"indices\":[160,182]},{\"text\":\"DONBELLEmpire\",\"indices\":[183,197]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555126387060637696,\"id_str\":\"1555126387060637696\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4014\":{\"hashtags\":[{\"text\":\"efcc\",\"indices\":[83,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"Gistlover\",\"indices\":[97,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4015\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"SheggzFC\",\"indices\":[123,132]},{\"text\":\"bella\",\"indices\":[133,139]},{\"text\":\"BigBrother\",\"indices\":[140,151]},{\"text\":\"BBNaija\",\"indices\":[152,160]},{\"text\":\"onstorm\",\"indices\":[161,169]},{\"text\":\"crochet\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555126212351197184,\"id_str\":\"1555126212351197184\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4016\":{\"hashtags\":[{\"text\":\"SheggzOlu\",\"indices\":[107,117]},{\"text\":\"BBNaijaS7\",\"indices\":[188,198]},{\"text\":\"LagosSwindlers\",\"indices\":[218,233]},{\"text\":\"CommonwealthGames2022\",\"indices\":[247,269]},{\"text\":\"Taiwan\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4017\":{\"hashtags\":[{\"text\":\"Binance\",\"indices\":[108,116]},{\"text\":\"BNB\",\"indices\":[117,121]},{\"text\":\"onstorm\",\"indices\":[122,130]},{\"text\":\"CommonwealthGames2022\",\"indices\":[131,153]},{\"text\":\"Finance\",\"indices\":[154,162]},{\"text\":\"Coinbase\",\"indices\":[163,172]},{\"text\":\"CryptocurrencyNews\",\"indices\":[173,192]},{\"text\":\"Taiwan\",\"indices\":[193,200]},{\"text\":\"r4today\",\"indices\":[201,209]},{\"text\":\"YEEZYDAY\",\"indices\":[210,219]},{\"text\":\"blockchaintechnology\",\"indices\":[220,241]},{\"text\":\"BlockchainCentral\",\"indices\":[242,260]},{\"text\":\"BBNaija\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555123015662424065,\"id_str\":\"1555123015662424065\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"url\":\"https:\\/\\/t.co\\/VjXGAOwrhN\",\"display_url\":\"pic.twitter.com\\/VjXGAOwrhN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1555123024881500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4018\":{\"hashtags\":[{\"text\":\"sackbuhari\",\"indices\":[85,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"PokemonScarletViolet\",\"indices\":[106,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4019\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"CommonwealthGames2022\",\"indices\":[33,55]},{\"text\":\"ASUU\",\"indices\":[56,61]},{\"text\":\"BBNajia\",\"indices\":[62,70]},{\"text\":\"AsiaCup2022\",\"indices\":[71,83]},{\"text\":\"Ukraine\",\"indices\":[84,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555122389062750208,\"id_str\":\"1555122389062750208\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"url\":\"https:\\/\\/t.co\\/MICtAAyTx6\",\"display_url\":\"pic.twitter.com\\/MICtAAyTx6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555122411443478528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4020\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"Taipei\",\"indices\":[132,139]},{\"text\":\"Beijing\",\"indices\":[140,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CizsNSzYIK\",\"expanded_url\":\"https:\\/\\/investogist.com\\/china-begins-live-fire-military-drills-around-taiwan-taiwan-says-ballistic-missiles-fired\\/\",\"display_url\":\"investogist.com\\/china-begins-l\\u2026\",\"indices\":[93,116]}]},\"4021\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[162,167]},{\"text\":\"BBNajia\",\"indices\":[168,176]},{\"text\":\"AsiaCup2022\",\"indices\":[177,189]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[190,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"CommonwealthGames2022\",\"indices\":[217,239]},{\"text\":\"COVID19\",\"indices\":[240,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555114382283218950,\"id_str\":\"1555114382283218950\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"url\":\"https:\\/\\/t.co\\/6FJESNlTb5\",\"display_url\":\"pic.twitter.com\\/6FJESNlTb5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555114494996660224\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":426,\"resize\":\"fit\"}}}]},\"4022\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"PokemonPresents\",\"indices\":[24,40]},{\"text\":\"PokemonScarletViolet\",\"indices\":[41,62]},{\"text\":\"onstorm\",\"indices\":[63,71]},{\"text\":\"\\u0e01\\u0e23\\u0e32\\u0e14\\u0e22\\u0e34\\u0e07\\u0e2d\\u0e38\\u0e1a\\u0e25\",\"indices\":[72,84]},{\"text\":\"timesupolivia\",\"indices\":[85,99]},{\"text\":\"knust\",\"indices\":[100,106]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[107,128]},{\"text\":\"DonBelle\",\"indices\":[129,138]},{\"text\":\"FOREVER1\",\"indices\":[139,148]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[149,163]},{\"text\":\"DONBELLEmpire\",\"indices\":[164,178]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[179,202]},{\"text\":\"Pakistan\",\"indices\":[203,212]},{\"text\":\"AsiaCup2022\",\"indices\":[213,225]},{\"text\":\"SheggzOlu\",\"indices\":[226,236]},{\"text\":\"Wizkid\",\"indices\":[237,244]},{\"text\":\"Ethereum\",\"indices\":[245,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555108327671078912,\"id_str\":\"1555108327671078912\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"url\":\"https:\\/\\/t.co\\/o5Pmz3XLfc\",\"display_url\":\"pic.twitter.com\\/o5Pmz3XLfc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1555113873476313088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}}}]},\"4023\":{\"hashtags\":[{\"text\":\"Connecticut\",\"indices\":[73,85]},{\"text\":\"Nigerian\",\"indices\":[86,95]},{\"text\":\"Messi\",\"indices\":[96,102]},{\"text\":\"FIFA23\",\"indices\":[103,110]},{\"text\":\"BoycottAliaBhatt\",\"indices\":[111,128]},{\"text\":\"PokemonPresents\",\"indices\":[129,145]},{\"text\":\"comicbooks\",\"indices\":[146,157]},{\"text\":\"Comedyvideos\",\"indices\":[158,171]},{\"text\":\"ComeBackHome\",\"indices\":[172,185]},{\"text\":\"KenyaDecides2022\",\"indices\":[186,203]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[204,222]},{\"text\":\"Russia\",\"indices\":[223,230]},{\"text\":\"UkraineWar\",\"indices\":[231,242]},{\"text\":\"BBNajiaS7\",\"indices\":[243,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/woD6hSDUtq\",\"expanded_url\":\"https:\\/\\/youtu.be\\/3LW_9JaY8PY\",\"display_url\":\"youtu.be\\/3LW_9JaY8PY\",\"indices\":[254,277]}],\"media\":[{\"id\":1555113249980522496,\"id_str\":\"1555113249980522496\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"url\":\"https:\\/\\/t.co\\/9CAwdKId3g\",\"display_url\":\"pic.twitter.com\\/9CAwdKId3g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1555113286785531905\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":613,\"resize\":\"fit\"}}}]},\"4024\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[243,250]},{\"text\":\"Taiwan\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jxvlw23nix\",\"expanded_url\":\"https:\\/\\/ceoafrica.com\\/newsdetails.php?tabnews=88754\",\"display_url\":\"ceoafrica.com\\/newsdetails.ph\\u2026\",\"indices\":[136,159]}],\"media\":[{\"id\":1555112501892743169,\"id_str\":\"1555112501892743169\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"url\":\"https:\\/\\/t.co\\/P2QH6zdN0t\",\"display_url\":\"pic.twitter.com\\/P2QH6zdN0t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555112511707533313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":354,\"resize\":\"fit\"}}}]},\"4025\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[57,64]},{\"text\":\"FoundersDay\",\"indices\":[65,77]},{\"text\":\"TheBigBreakfast\",\"indices\":[78,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4026\":{\"hashtags\":[{\"text\":\"Batgirl\",\"indices\":[26,34]},{\"text\":\"Batgirl\",\"indices\":[187,195]},{\"text\":\"batgirlmovie\",\"indices\":[196,209]},{\"text\":\"BatgirlForever\",\"indices\":[210,225]},{\"text\":\"LeakBatgirl\",\"indices\":[226,238]},{\"text\":\"LeakBatgirlMovie\",\"indices\":[239,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"AsiaCup2022\",\"indices\":[266,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4027\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[171,178]},{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"jobsthathavethemostsex\",\"indices\":[237,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/W6IqLtac4r\",\"expanded_url\":\"https:\\/\\/ceoafrica.com\\/newsdetails.php?tabnews=88755\",\"display_url\":\"ceoafrica.com\\/newsdetails.ph\\u2026\",\"indices\":[63,86]}],\"media\":[{\"id\":1555110627357736960,\"id_str\":\"1555110627357736960\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/z7XRdlIub1\",\"display_url\":\"pic.twitter.com\\/z7XRdlIub1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555110646349430789\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"medium\":{\"w\":299,\"h\":169,\"resize\":\"fit\"}}}]},\"4028\":{\"hashtags\":[{\"text\":\"happybirthday\",\"indices\":[64,78]},{\"text\":\"happybirthdaybarackobama\",\"indices\":[79,104]},{\"text\":\"visa\",\"indices\":[105,110]},{\"text\":\"travel\",\"indices\":[111,118]},{\"text\":\"visaapplication\",\"indices\":[119,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"USA\",\"indices\":[144,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555109225285783552,\"id_str\":\"1555109225285783552\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"url\":\"https:\\/\\/t.co\\/OaqxnPnlHT\",\"display_url\":\"pic.twitter.com\\/OaqxnPnlHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/filiimagna\\/status\\/1555109230616649728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"large\":{\"w\":553,\"h\":505,\"resize\":\"fit\"}}}]},\"4029\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[100,107]},{\"text\":\"Zamazamas\",\"indices\":[108,118]},{\"text\":\"Afrobeats\",\"indices\":[119,129]},{\"text\":\"TheGuy\",\"indices\":[130,137]},{\"text\":\"onstorm\",\"indices\":[138,146]},{\"text\":\"Taiwan\",\"indices\":[147,154]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"choccitymusic\",\"name\":\"Chocolate City Music\",\"id\":84534309,\"id_str\":\"84534309\",\"indices\":[65,79]},{\"screen_name\":\"MI_Abaga\",\"name\":\"The Guy\",\"id\":50246444,\"id_str\":\"50246444\",\"indices\":[80,89]},{\"screen_name\":\"thisisAQ\",\"name\":\"Gilbert Bani\",\"id\":198274234,\"id_str\":\"198274234\",\"indices\":[90,99]}],\"urls\":[],\"media\":[{\"id\":1555109039897546755,\"id_str\":\"1555109039897546755\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"url\":\"https:\\/\\/t.co\\/njEI0I4SGm\",\"display_url\":\"pic.twitter.com\\/njEI0I4SGm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PeculiarHype\\/status\\/1555109135024328704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":374,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":704,\"resize\":\"fit\"}}}]},\"4030\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[211,219]},{\"text\":\"Taiwan\",\"indices\":[220,227]},{\"text\":\"FOREVER1\",\"indices\":[228,237]},{\"text\":\"GiveUsPeterObi2023\",\"indices\":[238,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4031\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"female\",\"indices\":[103,110]},{\"text\":\"president\",\"indices\":[111,121]},{\"text\":\"China\",\"indices\":[155,161]},{\"text\":\"USA\",\"indices\":[186,190]},{\"text\":\"China\",\"indices\":[230,236]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[45,59]},{\"screen_name\":\"NBCNews\",\"name\":\"NBC News\",\"id\":14173315,\"id_str\":\"14173315\",\"indices\":[166,174]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l2EOshHwDE\",\"expanded_url\":\"https:\\/\\/nbcnews.to\\/3bu9fr2\",\"display_url\":\"nbcnews.to\\/3bu9fr2\",\"indices\":[260,283]}]},\"4032\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[187,194]},{\"text\":\"Taiwan\",\"indices\":[224,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8tQA6sDt07\",\"expanded_url\":\"https:\\/\\/ceoafrica.com\\/newsdetails.php?tabnews=88756\",\"display_url\":\"ceoafrica.com\\/newsdetails.ph\\u2026\",\"indices\":[97,120]}],\"media\":[{\"id\":1555107510788521986,\"id_str\":\"1555107510788521986\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"url\":\"https:\\/\\/t.co\\/V3L2YpfZBh\",\"display_url\":\"pic.twitter.com\\/V3L2YpfZBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555107530749218816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"small\":{\"w\":300,\"h\":224,\"resize\":\"fit\"}}}]},\"4033\":{\"hashtags\":[{\"text\":\"FYP\",\"indices\":[57,61]},{\"text\":\"DonBelle\",\"indices\":[62,71]},{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"knust\",\"indices\":[80,86]},{\"text\":\"artistsontwitter\",\"indices\":[87,104]},{\"text\":\"AsiaCup2022\",\"indices\":[105,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555106120620036096,\"id_str\":\"1555106120620036096\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}}]},\"4034\":{\"hashtags\":[{\"text\":\"sia\",\"indices\":[238,242]},{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"onstorm\",\"indices\":[251,259]},{\"text\":\"AsiaCup2022\",\"indices\":[260,272]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sia\",\"name\":\"sia\",\"id\":23497233,\"id_str\":\"23497233\",\"indices\":[7,11]}],\"urls\":[],\"media\":[{\"id\":1555105899676590080,\"id_str\":\"1555105899676590080\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"url\":\"https:\\/\\/t.co\\/DwOAbXEW0R\",\"display_url\":\"pic.twitter.com\\/DwOAbXEW0R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PToplexnice\\/status\\/1555105959676100608\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4035\":{\"hashtags\":[{\"text\":\"AonArsenal\",\"indices\":[145,156]},{\"text\":\"AllOrNothing\",\"indices\":[157,170]},{\"text\":\"Taiwan\",\"indices\":[171,178]},{\"text\":\"PokemonPresents\",\"indices\":[179,195]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555105549313785856,\"id_str\":\"1555105549313785856\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"url\":\"https:\\/\\/t.co\\/S5AXrskrPQ\",\"display_url\":\"pic.twitter.com\\/S5AXrskrPQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/afcdaniels\\/status\\/1555105707715862528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"4036\":{\"hashtags\":[{\"text\":\"onstorm\",\"indices\":[69,77]},{\"text\":\"FOREVER1\",\"indices\":[78,87]},{\"text\":\"PokemonPresents\",\"indices\":[88,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555105418266943489,\"id_str\":\"1555105418266943489\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"url\":\"https:\\/\\/t.co\\/232AciVFo1\",\"display_url\":\"pic.twitter.com\\/232AciVFo1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lovelynchilaka\\/status\\/1555105421039484929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":714,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":404,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1079,\"h\":1814,\"resize\":\"fit\"}}}]},\"4037\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[122,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"PeterObi4President2023\",\"indices\":[139,162]},{\"text\":\"EndASUUStrike\",\"indices\":[163,177]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[179,204]},{\"text\":\"PeterObi2023\",\"indices\":[206,219]},{\"text\":\"EndSARS\",\"indices\":[220,228]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[230,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104570979893249,\"id_str\":\"1555104570979893249\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"url\":\"https:\\/\\/t.co\\/LFmXT3mSmp\",\"display_url\":\"pic.twitter.com\\/LFmXT3mSmp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104574884683777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"4038\":{\"hashtags\":[{\"text\":\"RYE\",\"indices\":[29,33]},{\"text\":\"ryeci\",\"indices\":[34,40]},{\"text\":\"Bitcoin\",\"indices\":[41,49]},{\"text\":\"cryptocurrencies\",\"indices\":[50,67]},{\"text\":\"Crypto\",\"indices\":[68,75]},{\"text\":\"analysis\",\"indices\":[76,85]},{\"text\":\"triclown\",\"indices\":[88,97]},{\"text\":\"PokemonPresents\",\"indices\":[98,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"knust\",\"indices\":[123,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104188203520001,\"id_str\":\"1555104188203520001\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"url\":\"https:\\/\\/t.co\\/adGWS5HU7U\",\"display_url\":\"pic.twitter.com\\/adGWS5HU7U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DDadalekan\\/status\\/1555104345552715776\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}}}]},\"4039\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[101,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"PeterObi4President2023\",\"indices\":[117,140]},{\"text\":\"EndASUUStrike\",\"indices\":[141,155]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[157,182]},{\"text\":\"PeterObi2023\",\"indices\":[184,197]},{\"text\":\"EndSARS\",\"indices\":[198,206]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[208,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555104124575916032,\"id_str\":\"1555104124575916032\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"url\":\"https:\\/\\/t.co\\/mWBy6AU7IA\",\"display_url\":\"pic.twitter.com\\/mWBy6AU7IA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104127406989312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"4040\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[54,61]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"PeterObi4President2023\",\"indices\":[70,93]},{\"text\":\"EndASUUStrike\",\"indices\":[94,108]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[110,135]},{\"text\":\"PeterObi2023\",\"indices\":[137,150]},{\"text\":\"EndSARS\",\"indices\":[151,159]},{\"text\":\"Daniboyfreshkid_music\",\"indices\":[161,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555103188058906624,\"id_str\":\"1555103188058906624\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"url\":\"https:\\/\\/t.co\\/SGhptaePzL\",\"display_url\":\"pic.twitter.com\\/SGhptaePzL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555103518092140545\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"4041\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[180,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]},{\"text\":\"Buhari\",\"indices\":[197,204]},{\"text\":\"sabinus\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555102066581946369,\"id_str\":\"1555102066581946369\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1243,\"h\":1155,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1115,\"resize\":\"fit\"}}}]},\"4042\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Taipei\",\"indices\":[98,105]},{\"text\":\"Beijing\",\"indices\":[106,114]},{\"text\":\"Pelosi\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p7udXGzOWk\",\"expanded_url\":\"https:\\/\\/investogist.com\\/china-hits-taiwan-with-penalties-in-wake-of-pelosis-visit\\/\",\"display_url\":\"investogist.com\\/china-hits-tai\\u2026\",\"indices\":[59,82]}]},\"4043\":{\"hashtags\":[{\"text\":\"UkraineRussiaWar\",\"indices\":[156,173]},{\"text\":\"Ukraine\",\"indices\":[174,182]},{\"text\":\"Russia\",\"indices\":[183,190]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"UkraineWillWin\",\"indices\":[199,214]},{\"text\":\"UkraineWar\",\"indices\":[215,226]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4044\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"NigerRepublic\",\"indices\":[177,191]},{\"text\":\"Nigeria\",\"indices\":[192,200]},{\"text\":\"Buhari\",\"indices\":[201,208]},{\"text\":\"SUV\",\"indices\":[209,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555100150342770688,\"id_str\":\"1555100150342770688\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"url\":\"https:\\/\\/t.co\\/gmCqDCXAtU\",\"display_url\":\"pic.twitter.com\\/gmCqDCXAtU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555100209516056576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4045\":{\"hashtags\":[{\"text\":\"personaldevelopment\",\"indices\":[89,109]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Beintentional\",\"indices\":[120,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4046\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[46,52]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[197,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555098067774636033,\"id_str\":\"1555098067774636033\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"url\":\"https:\\/\\/t.co\\/fq3guErmgy\",\"display_url\":\"pic.twitter.com\\/fq3guErmgy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555098095113089025\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"4047\":{\"hashtags\":[{\"text\":\"ASSU\",\"indices\":[22,27]},{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"AsiaCup2022\",\"indices\":[36,48]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555097733924618241,\"id_str\":\"1555097733924618241\",\"indices\":[49,72],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"url\":\"https:\\/\\/t.co\\/r19nkT6Hvz\",\"display_url\":\"pic.twitter.com\\/r19nkT6Hvz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xminister0\\/status\\/1555097790358904834\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4048\":{\"hashtags\":[{\"text\":\"timesupolivia\",\"indices\":[193,207]},{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"sexworkiswork\",\"indices\":[216,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HivosWiL\",\"name\":\"Hivos-SheLeads\",\"id\":882127791994662913,\"id_str\":\"882127791994662913\",\"indices\":[167,176]},{\"screen_name\":\"gwheri\",\"name\":\"Herianto\",\"id\":194414063,\"id_str\":\"194414063\",\"indices\":[177,184]},{\"screen_name\":\"VSI_ng\",\"name\":\"Vision Spring Initiatives\",\"id\":970949740786577409,\"id_str\":\"970949740786577409\",\"indices\":[185,192]}],\"urls\":[]},\"4049\":{\"hashtags\":[{\"text\":\"bikelife\",\"indices\":[65,74]},{\"text\":\"bike\",\"indices\":[75,80]},{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555096888986275841,\"id_str\":\"1555096888986275841\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"url\":\"https:\\/\\/t.co\\/mW0mCdPwZM\",\"display_url\":\"pic.twitter.com\\/mW0mCdPwZM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superridedude\\/status\\/1555096954962583552\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4050\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[136,150]},{\"text\":\"onstorm\",\"indices\":[151,159]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[160,167]},{\"text\":\"PokemonPresents\",\"indices\":[168,184]},{\"text\":\"OYE38\",\"indices\":[185,191]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[192,213]},{\"text\":\"massage\",\"indices\":[214,222]},{\"text\":\"HarGharTiranga\",\"indices\":[223,238]},{\"text\":\"boycottrakshabandhan\",\"indices\":[239,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4051\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[88,106]},{\"text\":\"Taiwan\",\"indices\":[107,114]},{\"text\":\"Pelosi\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555096059449311232,\"id_str\":\"1555096059449311232\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"url\":\"https:\\/\\/t.co\\/gYHpkxwPcE\",\"display_url\":\"pic.twitter.com\\/gYHpkxwPcE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555096065774436352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":683,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":683,\"resize\":\"fit\"}}}]},\"4052\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[152,166]},{\"text\":\"onstorm\",\"indices\":[167,175]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[176,183]},{\"text\":\"PokemonPresents\",\"indices\":[184,200]},{\"text\":\"OYE38\",\"indices\":[201,207]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[208,229]},{\"text\":\"massage\",\"indices\":[230,238]},{\"text\":\"HarGharTiranga\",\"indices\":[239,254]},{\"text\":\"boycottrakshabandhan\",\"indices\":[255,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nigeriandailies\",\"name\":\"Nigerian Dailies\",\"id\":1250914615,\"id_str\":\"1250914615\",\"indices\":[0,16]},{\"screen_name\":\"barratahmed\",\"name\":\"A.T Ahmed, Esq.\",\"id\":708090863,\"id_str\":\"708090863\",\"indices\":[17,29]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4053\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[134,148]},{\"text\":\"onstorm\",\"indices\":[149,157]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[158,165]},{\"text\":\"PokemonPresents\",\"indices\":[166,182]},{\"text\":\"OYE38\",\"indices\":[183,189]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[190,211]},{\"text\":\"massage\",\"indices\":[212,220]},{\"text\":\"HarGharTiranga\",\"indices\":[221,236]},{\"text\":\"boycottrakshabandhan\",\"indices\":[237,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"renoomokri\",\"name\":\"Reno Omokri\",\"id\":264248576,\"id_str\":\"264248576\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4054\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[132,146]},{\"text\":\"onstorm\",\"indices\":[147,155]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[156,163]},{\"text\":\"PokemonPresents\",\"indices\":[164,180]},{\"text\":\"OYE38\",\"indices\":[181,187]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[188,209]},{\"text\":\"massage\",\"indices\":[210,218]},{\"text\":\"HarGharTiranga\",\"indices\":[219,234]},{\"text\":\"boycottrakshabandhan\",\"indices\":[235,256]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"segalink\",\"name\":\"SEGA L'\\u00e9veilleur\\u00ae\",\"id\":14879097,\"id_str\":\"14879097\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4055\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[139,153]},{\"text\":\"onstorm\",\"indices\":[154,162]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[163,170]},{\"text\":\"PokemonPresents\",\"indices\":[171,187]},{\"text\":\"OYE38\",\"indices\":[188,194]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[195,216]},{\"text\":\"massage\",\"indices\":[217,225]},{\"text\":\"HarGharTiranga\",\"indices\":[226,241]},{\"text\":\"boycottrakshabandhan\",\"indices\":[242,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[0,6]},{\"screen_name\":\"BUAgroup\",\"name\":\"BUA Group\",\"id\":3353157838,\"id_str\":\"3353157838\",\"indices\":[7,16]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4056\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"AppleMusicRT\",\"indices\":[77,90]},{\"text\":\"applestoashesgame\",\"indices\":[91,109]},{\"text\":\"applemusic\\u0e23\\u0e32\\u0e04\\u0e32\\u0e16\\u0e39\\u0e01\",\"indices\":[110,128]},{\"text\":\"iTunes\",\"indices\":[129,136]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[137,149]},{\"text\":\"PokemonPresents\",\"indices\":[150,166]},{\"text\":\"appleiphones\",\"indices\":[167,180]},{\"text\":\"airpodsgen2\",\"indices\":[181,193]},{\"text\":\"applemusicnigeria\",\"indices\":[194,212]},{\"text\":\"applemusicaustralia\",\"indices\":[213,233]},{\"text\":\"applemusicUK\",\"indices\":[234,247]},{\"text\":\"iphone14pro\",\"indices\":[248,260]},{\"text\":\"iPhones\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4057\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[136,150]},{\"text\":\"onstorm\",\"indices\":[151,159]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[160,167]},{\"text\":\"PokemonPresents\",\"indices\":[168,184]},{\"text\":\"OYE38\",\"indices\":[185,191]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[192,213]},{\"text\":\"massage\",\"indices\":[214,222]},{\"text\":\"HarGharTiranga\",\"indices\":[223,238]},{\"text\":\"boycottrakshabandhan\",\"indices\":[239,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4058\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[133,147]},{\"text\":\"onstorm\",\"indices\":[148,156]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[157,164]},{\"text\":\"PokemonPresents\",\"indices\":[165,181]},{\"text\":\"OYE38\",\"indices\":[182,188]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[189,210]},{\"text\":\"massage\",\"indices\":[211,219]},{\"text\":\"HarGharTiranga\",\"indices\":[220,235]},{\"text\":\"boycottrakshabandhan\",\"indices\":[236,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"triclowns\",\"name\":\"Triclowns\",\"id\":1190483463297814528,\"id_str\":\"1190483463297814528\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4059\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[146,160]},{\"text\":\"onstorm\",\"indices\":[161,169]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[170,177]},{\"text\":\"PokemonPresents\",\"indices\":[178,194]},{\"text\":\"OYE38\",\"indices\":[195,201]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[202,223]},{\"text\":\"massage\",\"indices\":[224,232]},{\"text\":\"HarGharTiranga\",\"indices\":[233,248]},{\"text\":\"boycottrakshabandhan\",\"indices\":[249,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Chude__\",\"name\":\"Columbus\",\"id\":910572372410949632,\"id_str\":\"910572372410949632\",\"indices\":[0,8]},{\"screen_name\":\"WillieMObiano\",\"name\":\"Chief Willie Obiano\",\"id\":1729331947,\"id_str\":\"1729331947\",\"indices\":[9,23]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4060\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[139,153]},{\"text\":\"onstorm\",\"indices\":[154,162]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[163,170]},{\"text\":\"PokemonPresents\",\"indices\":[171,187]},{\"text\":\"OYE38\",\"indices\":[188,194]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[195,216]},{\"text\":\"massage\",\"indices\":[217,225]},{\"text\":\"HarGharTiranga\",\"indices\":[226,241]},{\"text\":\"boycottrakshabandhan\",\"indices\":[242,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"emersonpalmieri\",\"name\":\"Emerson Palmieri\",\"id\":162905859,\"id_str\":\"162905859\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4061\":{\"hashtags\":[{\"text\":\"kwintemper\",\"indices\":[149,160]},{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"PokemonPresents\",\"indices\":[169,185]},{\"text\":\"enugu\",\"indices\":[186,192]},{\"text\":\"anambra\",\"indices\":[193,201]},{\"text\":\"imostate\",\"indices\":[202,211]},{\"text\":\"abia\",\"indices\":[212,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"kwinmusic_\",\"name\":\"siren \\ud83e\\udddc\\ud83c\\udffb\\u200d\\u2640\\ufe0f\\ud83c\\udf0a\",\"id\":1136944832826548224,\"id_str\":\"1136944832826548224\",\"indices\":[22,33]}],\"urls\":[],\"media\":[{\"id\":1555094694941581317,\"id_str\":\"1555094694941581317\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"url\":\"https:\\/\\/t.co\\/GWdlCnhlVA\",\"display_url\":\"pic.twitter.com\\/GWdlCnhlVA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PRFirmNG\\/status\\/1555094753410170880\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4062\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[135,149]},{\"text\":\"onstorm\",\"indices\":[150,158]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"OYE38\",\"indices\":[184,190]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[191,212]},{\"text\":\"massage\",\"indices\":[213,221]},{\"text\":\"HarGharTiranga\",\"indices\":[222,237]},{\"text\":\"boycottrakshabandhan\",\"indices\":[238,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4063\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[138,152]},{\"text\":\"onstorm\",\"indices\":[153,161]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[162,169]},{\"text\":\"PokemonPresents\",\"indices\":[170,186]},{\"text\":\"OYE38\",\"indices\":[187,193]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[194,215]},{\"text\":\"massage\",\"indices\":[216,224]},{\"text\":\"HarGharTiranga\",\"indices\":[225,240]},{\"text\":\"boycottrakshabandhan\",\"indices\":[241,262]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGRLabourParty\",\"name\":\"Labour Party Support\",\"id\":1082877821515694080,\"id_str\":\"1082877821515694080\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4064\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[134,148]},{\"text\":\"onstorm\",\"indices\":[149,157]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[158,165]},{\"text\":\"PokemonPresents\",\"indices\":[166,182]},{\"text\":\"OYE38\",\"indices\":[183,189]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[190,211]},{\"text\":\"massage\",\"indices\":[212,220]},{\"text\":\"HarGharTiranga\",\"indices\":[221,236]},{\"text\":\"boycottrakshabandhan\",\"indices\":[237,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EfuaIsEnuf\",\"name\":\"olohita omueti\",\"id\":211173630,\"id_str\":\"211173630\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4065\":{\"hashtags\":[{\"text\":\"ImoState\",\"indices\":[76,85]},{\"text\":\"EbubeaguMustGo\",\"indices\":[86,101]},{\"text\":\"UN\",\"indices\":[103,106]},{\"text\":\"FreeNnamdiKanuNow\",\"indices\":[107,125]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[135,160]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[0,12]}],\"urls\":[]},\"4066\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[150,164]},{\"text\":\"onstorm\",\"indices\":[165,173]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[174,181]},{\"text\":\"PokemonPresents\",\"indices\":[182,198]},{\"text\":\"OYE38\",\"indices\":[199,205]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[206,227]},{\"text\":\"massage\",\"indices\":[228,236]},{\"text\":\"HarGharTiranga\",\"indices\":[237,252]},{\"text\":\"boycottrakshabandhan\",\"indices\":[253,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GovSamuelOrtom\",\"name\":\"Samuel Ortom\",\"id\":874177410148827136,\"id_str\":\"874177410148827136\",\"indices\":[0,15]},{\"screen_name\":\"Austinokai\",\"name\":\"Usman Okai A\",\"id\":1467466765,\"id_str\":\"1467466765\",\"indices\":[16,27]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4067\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[146,160]},{\"text\":\"onstorm\",\"indices\":[161,169]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[170,177]},{\"text\":\"PokemonPresents\",\"indices\":[178,194]},{\"text\":\"OYE38\",\"indices\":[195,201]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[202,223]},{\"text\":\"massage\",\"indices\":[224,232]},{\"text\":\"HarGharTiranga\",\"indices\":[233,248]},{\"text\":\"boycottrakshabandhan\",\"indices\":[249,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GazetteNGR\",\"name\":\"Peoples Gazette\",\"id\":1276790264158474242,\"id_str\":\"1276790264158474242\",\"indices\":[0,11]},{\"screen_name\":\"ifamobarin\",\"name\":\"Ifamobarin Lanre\",\"id\":1308328397559468033,\"id_str\":\"1308328397559468033\",\"indices\":[12,23]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4068\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[147,161]},{\"text\":\"onstorm\",\"indices\":[162,170]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[171,178]},{\"text\":\"PokemonPresents\",\"indices\":[179,195]},{\"text\":\"OYE38\",\"indices\":[196,202]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[203,224]},{\"text\":\"massage\",\"indices\":[225,233]},{\"text\":\"HarGharTiranga\",\"indices\":[234,249]},{\"text\":\"boycottrakshabandhan\",\"indices\":[250,271]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IAOkowa\",\"name\":\"Dr. Ifeanyi Arthur Okowa\",\"id\":1026733681912758273,\"id_str\":\"1026733681912758273\",\"indices\":[0,8]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[9,24]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4069\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[137,151]},{\"text\":\"onstorm\",\"indices\":[152,160]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[161,168]},{\"text\":\"PokemonPresents\",\"indices\":[169,185]},{\"text\":\"OYE38\",\"indices\":[186,192]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[193,214]},{\"text\":\"massage\",\"indices\":[215,223]},{\"text\":\"HarGharTiranga\",\"indices\":[224,239]},{\"text\":\"boycottrakshabandhan\",\"indices\":[240,261]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LeadershipNGA\",\"name\":\"LEADERSHIP NEWS\",\"id\":248929204,\"id_str\":\"248929204\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4070\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[149,163]},{\"text\":\"onstorm\",\"indices\":[164,172]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[173,180]},{\"text\":\"PokemonPresents\",\"indices\":[181,197]},{\"text\":\"OYE38\",\"indices\":[198,204]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[205,226]},{\"text\":\"massage\",\"indices\":[227,235]},{\"text\":\"HarGharTiranga\",\"indices\":[236,251]},{\"text\":\"boycottrakshabandhan\",\"indices\":[252,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Roland_speaks\",\"name\":\"Roland Numofagha\",\"id\":450241139,\"id_str\":\"450241139\",\"indices\":[0,14]},{\"screen_name\":\"emmaikumeh\",\"name\":\"Emma ik Umeh (Tcee )\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":755188056,\"id_str\":\"755188056\",\"indices\":[15,26]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4071\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"thursdayvibes\",\"indices\":[81,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4072\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[151,165]},{\"text\":\"onstorm\",\"indices\":[166,174]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[175,182]},{\"text\":\"PokemonPresents\",\"indices\":[183,199]},{\"text\":\"OYE38\",\"indices\":[200,206]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[207,228]},{\"text\":\"massage\",\"indices\":[229,237]},{\"text\":\"HarGharTiranga\",\"indices\":[238,253]},{\"text\":\"boycottrakshabandhan\",\"indices\":[254,275]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBNaija\",\"name\":\"Big Brother Naija\",\"id\":814094730631987200,\"id_str\":\"814094730631987200\",\"indices\":[0,8]},{\"screen_name\":\"EnochMonu2\",\"name\":\"Monu Enoch\",\"id\":1459526027231772679,\"id_str\":\"1459526027231772679\",\"indices\":[9,20]},{\"screen_name\":\"quidax\",\"name\":\"Quincy li\",\"id\":171897868,\"id_str\":\"171897868\",\"indices\":[21,28]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4073\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[128,135]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[136,150]},{\"text\":\"onstorm\",\"indices\":[151,159]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[160,167]},{\"text\":\"PokemonPresents\",\"indices\":[168,184]},{\"text\":\"OYE38\",\"indices\":[185,191]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[192,213]},{\"text\":\"massage\",\"indices\":[214,222]},{\"text\":\"HarGharTiranga\",\"indices\":[223,238]},{\"text\":\"boycottrakshabandhan\",\"indices\":[239,260]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4074\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[135,149]},{\"text\":\"onstorm\",\"indices\":[150,158]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"OYE38\",\"indices\":[184,190]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[191,212]},{\"text\":\"massage\",\"indices\":[213,221]},{\"text\":\"HarGharTiranga\",\"indices\":[222,237]},{\"text\":\"boycottrakshabandhan\",\"indices\":[238,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"daily_trust\",\"name\":\"Daily Trust\",\"id\":69271273,\"id_str\":\"69271273\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsSqtlV\",\"display_url\":\"pic.twitter.com\\/ivDJsSqtlV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4075\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[225,232]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[233,247]},{\"text\":\"onstorm\",\"indices\":[248,256]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[257,264]},{\"text\":\"PokemonPresents\",\"indices\":[265,281]},{\"text\":\"OYE38\",\"indices\":[282,288]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[289,310]},{\"text\":\"massage\",\"indices\":[311,319]},{\"text\":\"HarGharTiranga\",\"indices\":[320,335]},{\"text\":\"boycottrakshabandhan\",\"indices\":[336,357]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OBIMAKAMA2023\",\"name\":\"DANIEL ADAMU TANGALE\",\"id\":1546932580880207874,\"id_str\":\"1546932580880207874\",\"indices\":[0,14]},{\"screen_name\":\"firstladyship\",\"name\":\"NEFERTITI\",\"id\":201237617,\"id_str\":\"201237617\",\"indices\":[15,29]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[30,39]},{\"screen_name\":\"doyinokupe\",\"name\":\"Doyin\",\"id\":740148150,\"id_str\":\"740148150\",\"indices\":[40,51]},{\"screen_name\":\"Dawa419\",\"name\":\"Musa Dawa\",\"id\":263261952,\"id_str\":\"263261952\",\"indices\":[52,60]},{\"screen_name\":\"Coalitionforpo\",\"name\":\"Coalition For Peter Obi\",\"id\":1539410382321860610,\"id_str\":\"1539410382321860610\",\"indices\":[61,76]},{\"screen_name\":\"Amanafm98_1\",\"name\":\"Amana FM 98.1\",\"id\":948828232287125504,\"id_str\":\"948828232287125504\",\"indices\":[77,89]},{\"screen_name\":\"dudugombe\",\"name\":\"Dudu Manuga\",\"id\":2942459685,\"id_str\":\"2942459685\",\"indices\":[90,100]},{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[101,110]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[359,382],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4076\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[133,147]},{\"text\":\"onstorm\",\"indices\":[148,156]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[157,164]},{\"text\":\"PokemonPresents\",\"indices\":[165,181]},{\"text\":\"OYE38\",\"indices\":[182,188]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[189,210]},{\"text\":\"massage\",\"indices\":[211,219]},{\"text\":\"HarGharTiranga\",\"indices\":[220,235]},{\"text\":\"boycottrakshabandhan\",\"indices\":[236,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KAFTAN_TV\",\"name\":\"KAFTANTV\",\"id\":976283614269845504,\"id_str\":\"976283614269845504\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4077\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[134,148]},{\"text\":\"onstorm\",\"indices\":[149,157]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[158,165]},{\"text\":\"PokemonPresents\",\"indices\":[166,182]},{\"text\":\"OYE38\",\"indices\":[183,189]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[190,211]},{\"text\":\"massage\",\"indices\":[212,220]},{\"text\":\"HarGharTiranga\",\"indices\":[221,236]},{\"text\":\"boycottrakshabandhan\",\"indices\":[237,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GazetteNGR\",\"name\":\"Peoples Gazette\",\"id\":1276790264158474242,\"id_str\":\"1276790264158474242\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4078\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[135,149]},{\"text\":\"onstorm\",\"indices\":[150,158]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"OYE38\",\"indices\":[184,190]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[191,212]},{\"text\":\"massage\",\"indices\":[213,221]},{\"text\":\"HarGharTiranga\",\"indices\":[222,237]},{\"text\":\"boycottrakshabandhan\",\"indices\":[238,259]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4079\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[183,190]},{\"text\":\"Scholarship\",\"indices\":[191,203]},{\"text\":\"stipend\",\"indices\":[204,212]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555092895455125504,\"id_str\":\"1555092895455125504\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"url\":\"https:\\/\\/t.co\\/P4cWauuqsP\",\"display_url\":\"pic.twitter.com\\/P4cWauuqsP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kellysteveo\\/status\\/1555092899624325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"thumb\":{\"w\":122,\"h\":122,\"resize\":\"crop\"}}}]},\"4080\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/IaOMul24J1\",\"display_url\":\"pic.twitter.com\\/IaOMul24J1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4081\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/f16Z7WzVXa\",\"display_url\":\"pic.twitter.com\\/f16Z7WzVXa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4082\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"onstorm\",\"indices\":[80,88]},{\"text\":\"AsiaCup2022\",\"indices\":[90,102]},{\"text\":\"PiConsensus\",\"indices\":[103,115]},{\"text\":\"Ronaldo\",\"indices\":[192,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4083\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"peterobi\",\"indices\":[91,100]},{\"text\":\"WWIII\",\"indices\":[101,107]},{\"text\":\"Russia\",\"indices\":[108,115]},{\"text\":\"UkraineRussiaWar\",\"indices\":[116,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4084\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"PokemonPresents\",\"indices\":[167,183]},{\"text\":\"AONArsenal\",\"indices\":[184,195]},{\"text\":\"FOREVER1\",\"indices\":[196,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555084499490377728,\"id_str\":\"1555084499490377728\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4085\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"Japa\",\"indices\":[185,190]},{\"text\":\"globalnews\",\"indices\":[191,202]},{\"text\":\"Nigeria\",\"indices\":[203,211]},{\"text\":\"youths\",\"indices\":[212,219]},{\"text\":\"teens\",\"indices\":[220,226]},{\"text\":\"inflation\",\"indices\":[227,237]},{\"text\":\"AfCFTA\",\"indices\":[238,245]},{\"text\":\"exports\",\"indices\":[246,254]},{\"text\":\"youthevelopment\",\"indices\":[255,271]},{\"text\":\"mindset\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555089600837738497,\"id_str\":\"1555089600837738497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"url\":\"https:\\/\\/t.co\\/x7WL4aotsa\",\"display_url\":\"pic.twitter.com\\/x7WL4aotsa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tokiadewoyin\\/status\\/1555089627396149250\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"}}}]},\"4086\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/2nqfH7Fu77\",\"display_url\":\"pic.twitter.com\\/2nqfH7Fu77\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4087\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"Fabrizio\",\"indices\":[44,53]},{\"text\":\"Nike\",\"indices\":[54,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555089203746185216,\"id_str\":\"1555089203746185216\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"url\":\"https:\\/\\/t.co\\/xVic1GMEyb\",\"display_url\":\"pic.twitter.com\\/xVic1GMEyb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theFlareabove\\/status\\/1555089213820993540\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":706,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":706,\"resize\":\"fit\"}}}]},\"4088\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[68,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Pelosi\",\"indices\":[95,102]},{\"text\":\"USA\",\"indices\":[103,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555088295872405505,\"id_str\":\"1555088295872405505\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"url\":\"https:\\/\\/t.co\\/2nxIWDaKrM\",\"display_url\":\"pic.twitter.com\\/2nxIWDaKrM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555088313282957315\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"4089\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[41,49]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"PokemonPresents\",\"indices\":[58,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4090\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]},{\"text\":\"PokemonPresents\",\"indices\":[50,66]},{\"text\":\"onstorm\",\"indices\":[67,75]},{\"text\":\"songwriter\",\"indices\":[76,87]},{\"text\":\"artist\",\"indices\":[88,95]},{\"text\":\"ArtistOnTwitter\",\"indices\":[96,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555086679995736064,\"id_str\":\"1555086679995736064\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/hkLJd20xwd\",\"display_url\":\"pic.twitter.com\\/hkLJd20xwd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uno_fini\\/status\\/1555086880462577664\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4091\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[83,104]},{\"text\":\"AsiaCup2022\",\"indices\":[105,117]},{\"text\":\"motivate\",\"indices\":[118,127]},{\"text\":\"FOREVER1\",\"indices\":[128,137]},{\"text\":\"\\u30dd\\u30b1\\u30e2\\u30f3\",\"indices\":[138,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555086740574052352,\"id_str\":\"1555086740574052352\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"url\":\"https:\\/\\/t.co\\/J0Q2VTOlIU\",\"display_url\":\"pic.twitter.com\\/J0Q2VTOlIU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/advertidehawk01\\/status\\/1555086748367179778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":310,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":548,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":584,\"h\":1280,\"resize\":\"fit\"}}}]},\"4092\":{\"hashtags\":[{\"text\":\"DONBELLEmpire\",\"indices\":[245,259]},{\"text\":\"GoldMedal\",\"indices\":[260,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KXpOweXhPK\",\"expanded_url\":\"https:\\/\\/zeep.ly\\/OWSok\",\"display_url\":\"zeep.ly\\/OWSok\",\"indices\":[221,244]}]},\"4093\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"PokemonPresents\",\"indices\":[93,109]},{\"text\":\"FOREVER1\",\"indices\":[110,119]},{\"text\":\"obo\",\"indices\":[120,124]},{\"text\":\"AsiaCup2022\",\"indices\":[125,137]},{\"text\":\"mamadollar\",\"indices\":[138,149]},{\"text\":\"Asuu\",\"indices\":[150,155]},{\"text\":\"BigBella\",\"indices\":[156,165]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[9,16]}],\"urls\":[],\"media\":[{\"id\":1555085766207971328,\"id_str\":\"1555085766207971328\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"url\":\"https:\\/\\/t.co\\/LL5EZHwqwo\",\"display_url\":\"pic.twitter.com\\/LL5EZHwqwo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/godygold01\\/status\\/1555085774076477441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":712,\"h\":859,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":859,\"resize\":\"fit\"}}}]},\"4094\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"onstorm\",\"indices\":[76,84]},{\"text\":\"BBNaija\",\"indices\":[85,93]},{\"text\":\"BBNajiaS7\",\"indices\":[94,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UeSYtTkBBL\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/bbnaija-s7-khalid-grants-daniella-midnight-ecstasy-under-d-duvet\\/\",\"display_url\":\"iexclusivenews.com.ng\\/bbnaija-s7-kha\\u2026\",\"indices\":[106,129]}]},\"4095\":{\"hashtags\":[{\"text\":\"AllorNothing\",\"indices\":[30,43]},{\"text\":\"arisetv\",\"indices\":[44,52]},{\"text\":\"cynithaokereke\",\"indices\":[53,68]},{\"text\":\"Asuu\",\"indices\":[69,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"AsiaCup2022\",\"indices\":[83,95]},{\"text\":\"BBNaija\",\"indices\":[96,104]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[105,123]},{\"text\":\"DONBELLEmpire\",\"indices\":[124,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4096\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"BBNaija\",\"indices\":[76,84]},{\"text\":\"BBNajiaS7\",\"indices\":[85,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q5ihXkZI0y\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/bbnaija-s7-khalid-grants-daniella-midnight-ecstasy-under-d-duvet\\/\",\"display_url\":\"iexclusivenews.com.ng\\/bbnaija-s7-kha\\u2026\",\"indices\":[96,119]}]},\"4097\":{\"hashtags\":[{\"text\":\"thursdayvibes\",\"indices\":[257,271]},{\"text\":\"Taiwan\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"inecnigeria\",\"name\":\"INEC Nigeria\",\"id\":229860431,\"id_str\":\"229860431\",\"indices\":[79,91]}],\"urls\":[],\"media\":[{\"id\":1555084447371988992,\"id_str\":\"1555084447371988992\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"url\":\"https:\\/\\/t.co\\/8M1sLd7Yq1\",\"display_url\":\"pic.twitter.com\\/8M1sLd7Yq1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hardynwa\\/status\\/1555084450165407746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"small\":{\"w\":626,\"h\":417,\"resize\":\"fit\"}}}]},\"4098\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[122,136]},{\"text\":\"onstorm\",\"indices\":[137,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"OYE38\",\"indices\":[171,177]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[178,199]},{\"text\":\"massage\",\"indices\":[200,208]},{\"text\":\"HarGharTiranga\",\"indices\":[209,224]},{\"text\":\"boycottrakshabandhan\",\"indices\":[225,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\"}]},\"4099\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[9,16]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SkyNews\",\"name\":\"Sky News\",\"id\":7587032,\"id_str\":\"7587032\",\"indices\":[0,8]}],\"urls\":[]},\"4100\":{\"hashtags\":[{\"text\":\"ASUUstrike\",\"indices\":[103,114]},{\"text\":\"insecurity\",\"indices\":[119,130]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"thursdayvibes\",\"indices\":[186,200]},{\"text\":\"thursdaymorning\",\"indices\":[201,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4101\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"PokemonPresents\",\"indices\":[41,57]},{\"text\":\"onstorm\",\"indices\":[58,66]},{\"text\":\"timesupolivia\",\"indices\":[67,81]},{\"text\":\"HarGharTiranga\",\"indices\":[82,97]},{\"text\":\"boycottrakshabandhan\",\"indices\":[98,119]},{\"text\":\"AONArsenal\",\"indices\":[120,131]},{\"text\":\"Uyajola99\",\"indices\":[132,142]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[143,157]},{\"text\":\"\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631\\u1160\",\"indices\":[158,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1Ixb4QKQFK\",\"expanded_url\":\"https:\\/\\/www.friendlilycoach.com\\/\",\"display_url\":\"friendlilycoach.com\",\"indices\":[189,212]}]},\"4102\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"suede\",\"indices\":[156,162]},{\"text\":\"Bata\",\"indices\":[163,168]},{\"text\":\"FOREVER1\",\"indices\":[169,178]},{\"text\":\"timesupolivia\",\"indices\":[179,193]},{\"text\":\"CRAFTMASTER\",\"indices\":[194,206]},{\"text\":\"FolloMe\",\"indices\":[207,215]},{\"text\":\"follo4follo\",\"indices\":[216,228]},{\"text\":\"TheView\",\"indices\":[229,237]},{\"text\":\"snapwhore\",\"indices\":[238,248]},{\"text\":\"TheHundred\",\"indices\":[249,260]},{\"text\":\"SNEAKERS\",\"indices\":[261,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Abbeyolaa1\",\"name\":\"Abbey olaa\",\"id\":575347761,\"id_str\":\"575347761\",\"indices\":[131,142]}],\"urls\":[],\"media\":[{\"id\":1555081642665984000,\"id_str\":\"1555081642665984000\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":457,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":806,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1849,\"resize\":\"fit\"}}}]},\"4103\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"FOREVER1\",\"indices\":[162,171]},{\"text\":\"PokemonPresents\",\"indices\":[172,188]},{\"text\":\"onstorm\",\"indices\":[189,197]},{\"text\":\"timesupolivia\",\"indices\":[198,212]},{\"text\":\"AONArsenal\",\"indices\":[213,224]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[225,239]},{\"text\":\"\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"indices\":[240,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4104\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[97,119]},{\"text\":\"AbujaFinders\",\"indices\":[120,133]},{\"text\":\"RealEstate\",\"indices\":[134,145]},{\"text\":\"PeterObi\",\"indices\":[146,155]},{\"text\":\"EndSARS\",\"indices\":[156,164]},{\"text\":\"Barcelona\",\"indices\":[165,175]},{\"text\":\"Barca\",\"indices\":[176,182]},{\"text\":\"PeterObi4President2023\",\"indices\":[183,206]},{\"text\":\"BBNaija7\",\"indices\":[207,216]},{\"text\":\"INEC\",\"indices\":[217,222]},{\"text\":\"Arewa4PeterObi\",\"indices\":[223,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"Taiwan\",\"indices\":[255,262]},{\"text\":\"davidhundeyin\",\"indices\":[263,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555078073728598018,\"id_str\":\"1555078073728598018\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cs1HxMDA4O\",\"display_url\":\"pic.twitter.com\\/Cs1HxMDA4O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555078393535897600\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4105\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"_theladymo\",\"name\":\"\\u1eccM\\u1ecc\\u0301T\\u00c1R\\u00c1 \\u00c0K\\u00c0NN\\u00cd\",\"id\":1187135845444280320,\"id_str\":\"1187135845444280320\",\"indices\":[50,61]},{\"screen_name\":\"Abdulhermeed001\",\"name\":\"L\\u00ebgend \\u00e4bdul ch\\u00e4fe\",\"id\":1533827781800480770,\"id_str\":\"1533827781800480770\",\"indices\":[62,78]},{\"screen_name\":\"Ameengwaska\",\"name\":\"Ameen Adam\",\"id\":1475147076069691399,\"id_str\":\"1475147076069691399\",\"indices\":[79,91]},{\"screen_name\":\"cuppymusic\",\"name\":\"Cuppy\",\"id\":226944459,\"id_str\":\"226944459\",\"indices\":[92,103]},{\"screen_name\":\"Abdoulmaleek001\",\"name\":\"Abdulmaleek\",\"id\":1392048183916875780,\"id_str\":\"1392048183916875780\",\"indices\":[104,120]},{\"screen_name\":\"muftahu_E\",\"name\":\"Muftahu B Excellency\",\"id\":1539616595739279361,\"id_str\":\"1539616595739279361\",\"indices\":[121,131]},{\"screen_name\":\"AhmadCeleh\",\"name\":\"AHMAD CELEH\",\"id\":1503629007585173504,\"id_str\":\"1503629007585173504\",\"indices\":[132,143]}],\"urls\":[],\"media\":[{\"id\":1555078029604536320,\"id_str\":\"1555078029604536320\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"url\":\"https:\\/\\/t.co\\/ie1QIkk4Ul\",\"display_url\":\"pic.twitter.com\\/ie1QIkk4Ul\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1555078032158855169\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"}}}]},\"4106\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[177,184]},{\"text\":\"onstorm\",\"indices\":[185,193]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[194,208]},{\"text\":\"FOREVER1\",\"indices\":[209,218]},{\"text\":\"PokemonPresents\",\"indices\":[219,235]},{\"text\":\"timesupolivia\",\"indices\":[236,250]},{\"text\":\"\\u0635\\u0628\\u0627\\u062d_\\u0627\\u0644\\u062e\\u064a\\u0631\",\"indices\":[251,262]},{\"text\":\"\\u0628\\u064a\\u062a_\\u0634\\u0639\\u0631_\\u0645\\u0627\\u062a\\u0646\\u0633\\u0627\\u0647\",\"indices\":[263,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4107\":{\"hashtags\":[{\"text\":\"Khalid\",\"indices\":[44,51]},{\"text\":\"Deji\",\"indices\":[52,57]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"timesupolivia\",\"indices\":[88,102]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Videosnwhatever\",\"name\":\"VideosWhatever\",\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"indices\":[58,74]},{\"screen_name\":\"LFC\",\"name\":\"Liverpool FC\",\"id\":19583545,\"id_str\":\"19583545\",\"indices\":[75,79]}],\"urls\":[],\"media\":[{\"id\":1555076636365692934,\"id_str\":\"1555076636365692934\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"url\":\"https:\\/\\/t.co\\/A812edBOgl\",\"display_url\":\"pic.twitter.com\\/A812edBOgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1555076714312699904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4108\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"thursdayvibes\",\"indices\":[57,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555075829624967173,\"id_str\":\"1555075829624967173\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"url\":\"https:\\/\\/t.co\\/ymqkzeEgXl\",\"display_url\":\"pic.twitter.com\\/ymqkzeEgXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DjEko_1\\/status\\/1555075883454664704\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"4109\":{\"hashtags\":[{\"text\":\"BLACKPINK\",\"indices\":[137,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"PokemonPresents\",\"indices\":[156,172]},{\"text\":\"arisetv\",\"indices\":[173,181]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[182,211]},{\"text\":\"onstorm\",\"indices\":[212,220]},{\"text\":\"timesupolivia\",\"indices\":[221,235]},{\"text\":\"AONArsenal\",\"indices\":[236,247]},{\"text\":\"FOREVER1\",\"indices\":[248,257]},{\"text\":\"GoldMedal\",\"indices\":[258,268]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AkanScript\",\"name\":\"akan isong\",\"id\":2979322396,\"id_str\":\"2979322396\",\"indices\":[55,66]},{\"screen_name\":\"fiverr\",\"name\":\"Fiverr\",\"id\":150248263,\"id_str\":\"150248263\",\"indices\":[80,87]},{\"screen_name\":\"Upwork\",\"name\":\"Upwork\",\"id\":15225375,\"id_str\":\"15225375\",\"indices\":[88,95]},{\"screen_name\":\"anoncontent\",\"name\":\"Anonymous Content\",\"id\":95111684,\"id_str\":\"95111684\",\"indices\":[96,108]},{\"screen_name\":\"AdobeVideo\",\"name\":\"Adobe Video & Motion\",\"id\":115584650,\"id_str\":\"115584650\",\"indices\":[109,120]},{\"screen_name\":\"motionpictures\",\"name\":\"Motion Picture Association\",\"id\":289072583,\"id_str\":\"289072583\",\"indices\":[121,136]}],\"urls\":[],\"media\":[{\"id\":1555074608088367107,\"id_str\":\"1555074608088367107\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"url\":\"https:\\/\\/t.co\\/nPzDVBq45i\",\"display_url\":\"pic.twitter.com\\/nPzDVBq45i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akanscript_\\/status\\/1555074729022717955\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4110\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[139,147]},{\"text\":\"BBNaijaS7\",\"indices\":[148,158]},{\"text\":\"Trending\",\"indices\":[159,168]},{\"text\":\"FOREVER1\",\"indices\":[169,178]},{\"text\":\"gistloverblog\",\"indices\":[179,193]},{\"text\":\"Gistlover\",\"indices\":[194,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"Obidatti023\",\"indices\":[213,225]},{\"text\":\"Nigerian\",\"indices\":[226,235]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BBCWorld\",\"name\":\"BBC News (World)\",\"id\":742143,\"id_str\":\"742143\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1555073304528125957,\"id_str\":\"1555073304528125957\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"url\":\"https:\\/\\/t.co\\/8SUtRVlRBh\",\"display_url\":\"pic.twitter.com\\/8SUtRVlRBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bigdavidofficia\\/status\\/1555073319896076289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}}]},\"4111\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[143,151]},{\"text\":\"BBNaijaS7\",\"indices\":[152,162]},{\"text\":\"Trending\",\"indices\":[163,172]},{\"text\":\"FOREVER1\",\"indices\":[173,182]},{\"text\":\"gistloverblog\",\"indices\":[183,197]},{\"text\":\"Gistlover\",\"indices\":[198,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"Obidatti023\",\"indices\":[217,229]},{\"text\":\"Nigerian\",\"indices\":[230,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iyaboawokoya\",\"name\":\"Madam President: Arinola Ifeoma Nnagi Awokoya @ 61\",\"id\":177113737,\"id_str\":\"177113737\",\"indices\":[0,13]}],\"urls\":[]},\"4112\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[139,147]},{\"text\":\"BBNaijaS7\",\"indices\":[148,158]},{\"text\":\"Trending\",\"indices\":[159,168]},{\"text\":\"FOREVER1\",\"indices\":[169,178]},{\"text\":\"gistloverblog\",\"indices\":[179,193]},{\"text\":\"Gistlover\",\"indices\":[194,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"Obidatti023\",\"indices\":[213,225]},{\"text\":\"Nigerian\",\"indices\":[226,235]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"essteeem\",\"name\":\"\\ud835\\uddde!\\ud835\\udde1\\ud835\\uddda \\ud835\\uddde\\ud835\\uddd4\\ud835\\udddf\\ud835\\uddd4\\ud835\\udddf\\ud835\\uddd4\\u25e2\\u25e4\",\"id\":1472179071668957188,\"id_str\":\"1472179071668957188\",\"indices\":[0,9]}],\"urls\":[]},\"4113\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"PokemonPresents\",\"indices\":[42,58]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[59,73]},{\"text\":\"HarGharTiranga\",\"indices\":[74,89]},{\"text\":\"Pakistan\",\"indices\":[90,99]},{\"text\":\"Uyajola99\",\"indices\":[100,110]},{\"text\":\"boycottrakshabandhan\",\"indices\":[111,132]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[133,150]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[13,25]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[26,33]}],\"urls\":[],\"media\":[{\"id\":1555072895377965056,\"id_str\":\"1555072895377965056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"url\":\"https:\\/\\/t.co\\/0A2Y7575z3\",\"display_url\":\"pic.twitter.com\\/0A2Y7575z3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NetMakanaki\\/status\\/1555073073103118337\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4114\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[141,149]},{\"text\":\"BBNaijaS7\",\"indices\":[150,160]},{\"text\":\"Trending\",\"indices\":[161,170]},{\"text\":\"FOREVER1\",\"indices\":[171,180]},{\"text\":\"gistloverblog\",\"indices\":[181,195]},{\"text\":\"Gistlover\",\"indices\":[196,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Obidatti023\",\"indices\":[215,227]},{\"text\":\"Nigerian\",\"indices\":[228,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Darasimi__\",\"name\":\"Dee Obiagirlie\",\"id\":501291577,\"id_str\":\"501291577\",\"indices\":[0,11]}],\"urls\":[]},\"4115\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[143,151]},{\"text\":\"BBNaijaS7\",\"indices\":[152,162]},{\"text\":\"Trending\",\"indices\":[163,172]},{\"text\":\"FOREVER1\",\"indices\":[173,182]},{\"text\":\"gistloverblog\",\"indices\":[183,197]},{\"text\":\"Gistlover\",\"indices\":[198,208]},{\"text\":\"Taiwan\",\"indices\":[209,216]},{\"text\":\"Obidatti023\",\"indices\":[217,229]},{\"text\":\"Nigerian\",\"indices\":[230,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"chiiinnnyyy_\",\"name\":\"Tellytuby (sheisnotnormal)\",\"id\":1126471047862112256,\"id_str\":\"1126471047862112256\",\"indices\":[0,13]}],\"urls\":[]},\"4116\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[141,149]},{\"text\":\"BBNaijaS7\",\"indices\":[150,160]},{\"text\":\"Trending\",\"indices\":[161,170]},{\"text\":\"FOREVER1\",\"indices\":[171,180]},{\"text\":\"gistloverblog\",\"indices\":[181,195]},{\"text\":\"Gistlover\",\"indices\":[196,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Obidatti023\",\"indices\":[215,227]},{\"text\":\"Nigerian\",\"indices\":[228,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"symplyDAPO\",\"name\":\"Dapsy\\ud80c\\udcf5\",\"id\":27998788,\"id_str\":\"27998788\",\"indices\":[0,11]}],\"urls\":[]},\"4117\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[145,153]},{\"text\":\"BBNaijaS7\",\"indices\":[154,164]},{\"text\":\"Trending\",\"indices\":[165,174]},{\"text\":\"FOREVER1\",\"indices\":[175,184]},{\"text\":\"gistloverblog\",\"indices\":[185,199]},{\"text\":\"Gistlover\",\"indices\":[200,210]},{\"text\":\"Taiwan\",\"indices\":[211,218]},{\"text\":\"Obidatti023\",\"indices\":[219,231]},{\"text\":\"Nigerian\",\"indices\":[232,241]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Letter_to_Jack\",\"name\":\"Man of Letters.\",\"id\":1266608901346209793,\"id_str\":\"1266608901346209793\",\"indices\":[0,15]}],\"urls\":[]},\"4118\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"PokemonPresents\",\"indices\":[105,121]},{\"text\":\"AONArsenal\",\"indices\":[122,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4119\":{\"hashtags\":[{\"text\":\"AONArsenal\",\"indices\":[20,31]},{\"text\":\"FOREVER1\",\"indices\":[32,41]},{\"text\":\"mopar\",\"indices\":[42,48]},{\"text\":\"onstorm\",\"indices\":[49,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555071758092353537,\"id_str\":\"1555071758092353537\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"url\":\"https:\\/\\/t.co\\/sqJJe9gm0r\",\"display_url\":\"pic.twitter.com\\/sqJJe9gm0r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/m_zordAutorep\\/status\\/1555071764933361665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"4120\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[186,193]},{\"text\":\"Haaland\",\"indices\":[194,202]},{\"text\":\"PokemonPresents\",\"indices\":[203,219]},{\"text\":\"boycottrakshabandhan\",\"indices\":[220,241]},{\"text\":\"onstorm\",\"indices\":[242,250]},{\"text\":\"BBNaijaS7\",\"indices\":[251,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VZsxxT1HSB\",\"expanded_url\":\"http:\\/\\/bit.ly\\/imuncamp\",\"display_url\":\"bit.ly\\/imuncamp\",\"indices\":[129,152]},{\"url\":\"https:\\/\\/t.co\\/IIHcFl9pHm\",\"expanded_url\":\"http:\\/\\/www.internationalmun.org\",\"display_url\":\"internationalmun.org\",\"indices\":[159,182]}]},\"4121\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"BBNajiaS7\",\"indices\":[45,55]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[56,73]},{\"text\":\"Viral\",\"indices\":[74,80]},{\"text\":\"quote\",\"indices\":[81,87]},{\"text\":\"PokemonPresents\",\"indices\":[88,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555069423693832194,\"id_str\":\"1555069423693832194\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"url\":\"https:\\/\\/t.co\\/TbGoJWGBu3\",\"display_url\":\"pic.twitter.com\\/TbGoJWGBu3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_amwordsmith\\/status\\/1555069433441402883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"4122\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[20,27]},{\"text\":\"PLA\",\"indices\":[104,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gW1JTcjuze\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Reuters\\/status\\/1555056133601124352\",\"display_url\":\"twitter.com\\/Reuters\\/status\\u2026\",\"indices\":[115,138]}]},\"4123\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[4,10]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[153,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555061924630786048,\"id_str\":\"1555061924630786048\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"url\":\"https:\\/\\/t.co\\/pvMPXhug9C\",\"display_url\":\"pic.twitter.com\\/pvMPXhug9C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555061972483588096\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"4124\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[42,58]},{\"text\":\"timesupolivia\",\"indices\":[59,73]},{\"text\":\"AONArsenal\",\"indices\":[87,98]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[99,117]},{\"text\":\"FOREVER1\",\"indices\":[118,127]},{\"text\":\"HarGharTiranga\",\"indices\":[128,143]},{\"text\":\"\\u0645\\u0642\\u0627\\u0637\\u0639\\u0629_\\u0628\\u0648\\u0643\\u064a\\u0646\\u062c\",\"indices\":[144,158]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[159,180]},{\"text\":\"ExtraordinaryAttorneyWooEp12\",\"indices\":[181,210]},{\"text\":\"JKLive\",\"indices\":[223,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"evawater111\",\"name\":\"\\u062e\",\"id\":773680737933484034,\"id_str\":\"773680737933484034\",\"indices\":[74,86]},{\"screen_name\":\"EvaWatson_\",\"name\":\"Van \\ud83c\\udf80\\ud83c\\udf38\",\"id\":84779070,\"id_str\":\"84779070\",\"indices\":[211,222]},{\"screen_name\":\"ModenaFyne\",\"name\":\"Fyne Modena\",\"id\":1276315758146936833,\"id_str\":\"1276315758146936833\",\"indices\":[231,242]}],\"urls\":[],\"media\":[{\"id\":1555061315907080193,\"id_str\":\"1555061315907080193\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"}}}]},\"4125\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[13,19]},{\"text\":\"PLA\",\"indices\":[22,26]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"TaiwanStraitsCrisis\",\"indices\":[247,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555055980148572160,\"id_str\":\"1555055980148572160\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"url\":\"https:\\/\\/t.co\\/7BptZ4Zon2\",\"display_url\":\"pic.twitter.com\\/7BptZ4Zon2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555056027233824768\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"4126\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"China\",\"indices\":[160,166]},{\"text\":\"Tibet\",\"indices\":[215,221]},{\"text\":\"EastTurkestan\",\"indices\":[223,237]},{\"text\":\"HongKong\",\"indices\":[244,253]},{\"text\":\"\\u4e2d\\u56fd\",\"indices\":[258,261]},{\"text\":\"\\u53f0\\u6e7e\",\"indices\":[262,265]},{\"text\":\"\\u0627\\u0644\\u0635\\u064a\\u0646\",\"indices\":[266,272]},{\"text\":\"\\u062a\\u064a\\u0648\\u0627\\u0646\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[81,95]}],\"urls\":[],\"media\":[{\"id\":1554913411624042497,\"id_str\":\"1554913411624042497\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"url\":\"https:\\/\\/t.co\\/GlfdeTfWYC\",\"display_url\":\"pic.twitter.com\\/GlfdeTfWYC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andalusio\\/status\\/1555040833744691200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"4127\":{\"hashtags\":[{\"text\":\"Somaliland\",\"indices\":[82,93]},{\"text\":\"Taiwan\",\"indices\":[141,148]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Secominfo\",\"name\":\"Secretary Chris Anu\",\"id\":937298996783124480,\"id_str\":\"937298996783124480\",\"indices\":[0,10]},{\"screen_name\":\"BohHerbert\",\"name\":\"Herbert Boh\",\"id\":529047537,\"id_str\":\"529047537\",\"indices\":[245,256]},{\"screen_name\":\"MariantaNjomia\",\"name\":\"President Marianta Njomia\",\"id\":1507474476342067200,\"id_str\":\"1507474476342067200\",\"indices\":[257,272]}],\"urls\":[]},\"4128\":{\"hashtags\":[{\"text\":\"talkximg\",\"indices\":[175,184]},{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"Batgirl\",\"indices\":[193,201]},{\"text\":\"AlexJones\",\"indices\":[203,213]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[214,235]},{\"text\":\"PokemonScarletViolet\",\"indices\":[236,257]},{\"text\":\"LoveIslandUSA\",\"indices\":[258,272]},{\"text\":\"RHOBH\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[151,174]}],\"media\":[{\"id\":1555036286783832064,\"id_str\":\"1555036286783832064\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"url\":\"https:\\/\\/t.co\\/pgTYOBpEWl\",\"display_url\":\"pic.twitter.com\\/pgTYOBpEWl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555036308552253440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"}}}]},\"4129\":{\"hashtags\":[{\"text\":\"Intelfin\",\"indices\":[132,141]},{\"text\":\"Cosmos\",\"indices\":[142,149]},{\"text\":\"Giveaway\",\"indices\":[150,159]},{\"text\":\"web3\",\"indices\":[160,165]},{\"text\":\"NFTCommumity\",\"indices\":[166,179]},{\"text\":\"P2E\",\"indices\":[180,184]},{\"text\":\"Metaverse\",\"indices\":[185,195]},{\"text\":\"CryptocurrencyNews\",\"indices\":[196,215]},{\"text\":\"CryptoGems\",\"indices\":[216,227]},{\"text\":\"Crypto\",\"indices\":[228,235]},{\"text\":\"nftnews\",\"indices\":[236,244]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"BNB\",\"indices\":[265,269]},{\"text\":\"invest\",\"indices\":[270,277]}],\"symbols\":[{\"text\":\"JUNO\",\"indices\":[245,250]},{\"text\":\"ATOM\",\"indices\":[251,256]}],\"user_mentions\":[{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[7,23]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qYeuwDzdf0\",\"expanded_url\":\"http:\\/\\/intelfin.io\",\"display_url\":\"intelfin.io\",\"indices\":[108,131]}],\"media\":[{\"id\":1555031704716427266,\"id_str\":\"1555031704716427266\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"url\":\"https:\\/\\/t.co\\/jd5z1wrXPL\",\"display_url\":\"pic.twitter.com\\/jd5z1wrXPL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1555031716372381696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4130\":{\"hashtags\":[{\"text\":\"Obalende\",\"indices\":[7,16]},{\"text\":\"PokemonPresents\",\"indices\":[43,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"onstorm\",\"indices\":[68,76]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[77,102]},{\"text\":\"timesupolivia\",\"indices\":[103,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBk0P7D9BU\",\"expanded_url\":\"https:\\/\\/lnk.to\\/obalende\",\"display_url\":\"lnk.to\\/obalende\",\"indices\":[18,41]}]},\"4131\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"China\",\"indices\":[216,222]},{\"text\":\"InspirationalQuotes\",\"indices\":[223,243]},{\"text\":\"Motivation\",\"indices\":[244,255]},{\"text\":\"PokemonPresents\",\"indices\":[256,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555020298747092992,\"id_str\":\"1555020298747092992\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"url\":\"https:\\/\\/t.co\\/0farobJifY\",\"display_url\":\"pic.twitter.com\\/0farobJifY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RobertAshu_\\/status\\/1555020307894878208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"4132\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[164,187]},{\"text\":\"PeterObi\",\"indices\":[189,198]},{\"text\":\"peterobicampaignfund\",\"indices\":[200,221]},{\"text\":\"BBNaija\",\"indices\":[223,231]},{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"PeterObi4President\",\"indices\":[242,261]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[4,13]}],\"urls\":[]},\"4133\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[129,137]},{\"text\":\"BBNaijaS7\",\"indices\":[138,148]},{\"text\":\"Trending\",\"indices\":[149,158]},{\"text\":\"FOREVER1\",\"indices\":[159,168]},{\"text\":\"gistloverblog\",\"indices\":[169,183]},{\"text\":\"Gistlover\",\"indices\":[184,194]},{\"text\":\"Taiwan\",\"indices\":[195,202]},{\"text\":\"Obidatti023\",\"indices\":[203,215]},{\"text\":\"Nigerian\",\"indices\":[216,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4134\":{\"hashtags\":[{\"text\":\"facecare\",\"indices\":[35,44]},{\"text\":\"skinlove\",\"indices\":[45,54]},{\"text\":\"skintips\",\"indices\":[55,64]},{\"text\":\"skincareluxury\",\"indices\":[65,80]},{\"text\":\"skincaretips\",\"indices\":[81,94]},{\"text\":\"LoveIsland2022\",\"indices\":[95,110]},{\"text\":\"Hulk\",\"indices\":[111,116]},{\"text\":\"loveislandNL\",\"indices\":[117,130]},{\"text\":\"Taiwan\",\"indices\":[131,138]},{\"text\":\"HungarianGP\",\"indices\":[139,151]},{\"text\":\"EURO2022\",\"indices\":[152,161]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MaGeAuNaturel\",\"name\":\"MaG\\u00e9Au Naturel\",\"id\":1509931140827783168,\"id_str\":\"1509931140827783168\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554635543782244352,\"id_str\":\"1554635543782244352\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"url\":\"https:\\/\\/t.co\\/k424DZXWBz\",\"display_url\":\"pic.twitter.com\\/k424DZXWBz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdunolaOgundar1\\/status\\/1555010634030383108\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"4135\":{\"hashtags\":[{\"text\":\"Blender3d\",\"indices\":[59,69]},{\"text\":\"blender\",\"indices\":[70,78]},{\"text\":\"blendercommunity\",\"indices\":[79,96]},{\"text\":\"blendercycles\",\"indices\":[97,111]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"PokemonPresents\",\"indices\":[132,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555010029417385985,\"id_str\":\"1555010029417385985\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4136\":{\"hashtags\":[{\"text\":\"Mp3\",\"indices\":[57,61]},{\"text\":\"PokemonPresents\",\"indices\":[99,115]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[116,134]},{\"text\":\"GoldMedal\",\"indices\":[135,145]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[146,167]},{\"text\":\"music\",\"indices\":[168,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fineboybella\",\"name\":\"Yxng Alhaji \\ud83d\\udc90\",\"id\":1111537079811493888,\"id_str\":\"1111537079811493888\",\"indices\":[10,23]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7dlgJ31KEY\",\"expanded_url\":\"http:\\/\\/koserenaija.com\\/2022\\/08\\/04\\/music-bella-shmurda-new-born-fela-mp3-koserenaija\\/\",\"display_url\":\"koserenaija.com\\/2022\\/08\\/04\\/mus\\u2026\",\"indices\":[73,96]},{\"url\":\"https:\\/\\/t.co\\/qCDwWwJr79\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555002271108415492\\/photo\\/1\",\"display_url\":\"pic.twitter.com\\/qCDwWwJr79\",\"indices\":[175,198]}],\"media\":[{\"id\":1555003755673837573,\"id_str\":\"1555003755673837573\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"url\":\"https:\\/\\/t.co\\/niaDffdl4p\",\"display_url\":\"pic.twitter.com\\/niaDffdl4p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555003770404306945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"large\":{\"w\":300,\"h\":297,\"resize\":\"fit\"}}}]},\"4137\":{\"hashtags\":[{\"text\":\"twitch\",\"indices\":[151,158]},{\"text\":\"SidHearts\",\"indices\":[159,169]},{\"text\":\"whatwevalue\",\"indices\":[170,182]},{\"text\":\"Putin\",\"indices\":[183,189]},{\"text\":\"Taiwan\",\"indices\":[190,197]},{\"text\":\"clickbanklinkpromotion\",\"indices\":[198,221]},{\"text\":\"clickbankaffiliate\",\"indices\":[222,241]},{\"text\":\"amazonaffiliate\",\"indices\":[242,258]},{\"text\":\"websitetraffic\",\"indices\":[259,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4WdBuXkpqb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3OGAMmJ\",\"display_url\":\"bit.ly\\/3OGAMmJ\",\"indices\":[126,149]}],\"media\":[{\"id\":1554998383789621248,\"id_str\":\"1554998383789621248\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"url\":\"https:\\/\\/t.co\\/kTip6QKDfX\",\"display_url\":\"pic.twitter.com\\/kTip6QKDfX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/THexperrt\\/status\\/1554998401888141312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":712,\"h\":430,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":712,\"h\":430,\"resize\":\"fit\"}}}]},\"4138\":{\"hashtags\":[{\"text\":\"writerslift\",\"indices\":[34,46]},{\"text\":\"wips\",\"indices\":[64,69]},{\"text\":\"arts\",\"indices\":[70,75]},{\"text\":\"books\",\"indices\":[76,82]},{\"text\":\"blogs\",\"indices\":[83,89]},{\"text\":\"poetry\",\"indices\":[90,97]},{\"text\":\"WritingCommunity\",\"indices\":[141,158]},{\"text\":\"explore\",\"indices\":[159,167]},{\"text\":\"AuthorsOfTwitter\",\"indices\":[168,185]},{\"text\":\"bloggers\",\"indices\":[186,195]},{\"text\":\"PokemonScarletViolet\",\"indices\":[197,218]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[219,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4139\":{\"hashtags\":[{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[106,114]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[115,133]},{\"text\":\"YEEZYDAY\",\"indices\":[134,143]},{\"text\":\"BBNaijaS7\",\"indices\":[144,154]},{\"text\":\"YEEZYDAY\",\"indices\":[155,164]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[64,76]}],\"urls\":[],\"media\":[{\"id\":1554985164798918656,\"id_str\":\"1554985164798918656\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"url\":\"https:\\/\\/t.co\\/4HLIhejxeK\",\"display_url\":\"pic.twitter.com\\/4HLIhejxeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betubaba__\\/status\\/1554985257119760390\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4140\":{\"hashtags\":[{\"text\":\"UELQualifier\",\"indices\":[29,42]},{\"text\":\"NaijaBet\",\"indices\":[240,249]},{\"text\":\"BoostedOdds\",\"indices\":[250,262]},{\"text\":\"UEL\",\"indices\":[263,267]},{\"text\":\"Taiwan\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[215,238]}],\"media\":[{\"id\":1554984101656027136,\"id_str\":\"1554984101656027136\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"url\":\"https:\\/\\/t.co\\/j2WZpXricW\",\"display_url\":\"pic.twitter.com\\/j2WZpXricW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554984208589885441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4141\":{\"hashtags\":[{\"text\":\"WritingCommunity\",\"indices\":[4,21]},{\"text\":\"writerslift\",\"indices\":[56,68]},{\"text\":\"ShamelessSelfpromoThursday\",\"indices\":[80,107]},{\"text\":\"links\",\"indices\":[118,124]},{\"text\":\"books\",\"indices\":[125,131]},{\"text\":\"arts\",\"indices\":[132,137]},{\"text\":\"blogs\",\"indices\":[138,144]},{\"text\":\"articles\",\"indices\":[145,154]},{\"text\":\"fiction\",\"indices\":[155,163]},{\"text\":\"peoms\",\"indices\":[164,170]},{\"text\":\"poetry\",\"indices\":[171,178]},{\"text\":\"YouTube\",\"indices\":[179,187]},{\"text\":\"Drama\",\"indices\":[188,194]},{\"text\":\"podcasts\",\"indices\":[195,204]},{\"text\":\"Wips\",\"indices\":[205,210]},{\"text\":\"AuthorsOfTwitter\",\"indices\":[228,245]},{\"text\":\"bloggers\",\"indices\":[246,255]},{\"text\":\"Pelosi\",\"indices\":[256,263]},{\"text\":\"BBNaija\",\"indices\":[264,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554977848884183040,\"id_str\":\"1554977848884183040\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"url\":\"https:\\/\\/t.co\\/unVdsQqRLp\",\"display_url\":\"pic.twitter.com\\/unVdsQqRLp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Enyi_VictorBlog\\/status\\/1554977853988560896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"}}}]},\"4142\":{\"hashtags\":[{\"text\":\"BadDecisionsTrailer2\",\"indices\":[141,162]},{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"PeterObi4President2023\",\"indices\":[171,194]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[195,210]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4143\":{\"hashtags\":[{\"text\":\"NationalBoobDay\",\"indices\":[123,139]},{\"text\":\"APCPresidentialPrimaries\",\"indices\":[140,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]},{\"text\":\"ASUU\",\"indices\":[174,179]},{\"text\":\"Tinubu\",\"indices\":[180,187]},{\"text\":\"blackchully\",\"indices\":[188,200]},{\"text\":\"andasuu\",\"indices\":[201,209]},{\"text\":\"PokemonPresents\",\"indices\":[210,226]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KashimSM\",\"name\":\"Kashim Shettima\",\"id\":870565463549505536,\"id_str\":\"870565463549505536\",\"indices\":[55,64]},{\"screen_name\":\"AlikoDangote\",\"name\":\"Aliko Dangote\",\"id\":1900338114,\"id_str\":\"1900338114\",\"indices\":[65,78]},{\"screen_name\":\"DangoteGroup\",\"name\":\"Dangote Group\",\"id\":176396711,\"id_str\":\"176396711\",\"indices\":[79,92]},{\"screen_name\":\"DangoteCement\",\"name\":\"Dangote Cement\",\"id\":2257734363,\"id_str\":\"2257734363\",\"indices\":[93,107]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[108,114]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[115,122]}],\"urls\":[],\"media\":[{\"id\":1554968648737034240,\"id_str\":\"1554968648737034240\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1AfxgSgqgn\",\"display_url\":\"pic.twitter.com\\/1AfxgSgqgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/awana_a_gana\\/status\\/1554968669574283264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"}}}]},\"4144\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[148,155]},{\"text\":\"USChinaTaiwanTussle\",\"indices\":[156,176]},{\"text\":\"Internationaltrade\",\"indices\":[177,196]},{\"text\":\"EconomicDiplomacy\",\"indices\":[197,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4145\":{\"hashtags\":[{\"text\":\"NationalBoobDay\",\"indices\":[109,125]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[134,142]},{\"text\":\"PokemonPresents\",\"indices\":[143,159]},{\"text\":\"onstorm\",\"indices\":[160,168]},{\"text\":\"BoycottAliaBhatt\",\"indices\":[169,186]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[187,199]},{\"text\":\"boycottrakshabandhan\",\"indices\":[200,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4146\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[256,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"Beijing\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554964133153587200,\"id_str\":\"1554964133153587200\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"url\":\"https:\\/\\/t.co\\/Um1CyfI94W\",\"display_url\":\"pic.twitter.com\\/Um1CyfI94W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554964398757773312\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}}}]},\"4147\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[12,22]},{\"text\":\"LagosSwindlers\",\"indices\":[54,69]},{\"text\":\"NationalBoobDay\",\"indices\":[70,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"FOREVER1\",\"indices\":[95,104]},{\"text\":\"WritingCommunity\",\"indices\":[105,122]},{\"text\":\"fabrizioromano\",\"indices\":[123,138]},{\"text\":\"Ghostingstory\",\"indices\":[139,153]},{\"text\":\"LagosSwindlers\",\"indices\":[154,169]},{\"text\":\"poetrycommunity\",\"indices\":[170,186]},{\"text\":\"PekinExpress\",\"indices\":[187,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554963406406524929,\"id_str\":\"1554963406406524929\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"url\":\"https:\\/\\/t.co\\/6wVGkuCveM\",\"display_url\":\"pic.twitter.com\\/6wVGkuCveM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554963409325752321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":522,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"}}}]},\"4148\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"WWIII\",\"indices\":[47,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4149\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[56,62]},{\"text\":\"bubu\",\"indices\":[63,68]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"EndSARS\",\"indices\":[77,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4150\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[58,66]},{\"text\":\"timesupolivia\",\"indices\":[67,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4151\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"PokemonPresents\",\"indices\":[48,64]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[65,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"twitterclarets\",\"indices\":[95,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554954752739393538,\"id_str\":\"1554954752739393538\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"url\":\"https:\\/\\/t.co\\/9g4czDBj9I\",\"display_url\":\"pic.twitter.com\\/9g4czDBj9I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonemic\\/status\\/1554954769776656385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"small\":{\"w\":575,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4152\":{\"hashtags\":[{\"text\":\"SoloAlbum\",\"indices\":[0,10]},{\"text\":\"PokemonScarletViolet\",\"indices\":[116,137]},{\"text\":\"Pelosi\",\"indices\":[138,145]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[146,167]},{\"text\":\"GoldMedal\",\"indices\":[168,178]},{\"text\":\"DonBelle\",\"indices\":[179,188]},{\"text\":\"Ninjawarriorsfc\",\"indices\":[189,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[91,114]}]},\"4153\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[196,203]},{\"text\":\"timesupolivia\",\"indices\":[204,218]},{\"text\":\"AsiaCup2022\",\"indices\":[219,231]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[232,253]},{\"text\":\"PokemonPresents\",\"indices\":[254,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"the_big_4lf\",\"name\":\"playboi_menace\\ud83c\\udde6\\ud83c\\uddf6\",\"id\":1383569837901828101,\"id_str\":\"1383569837901828101\",\"indices\":[0,12]},{\"screen_name\":\"bod_republic\",\"name\":\"B.O.D\",\"id\":3138923027,\"id_str\":\"3138923027\",\"indices\":[13,26]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s4uVx9u2lp\",\"expanded_url\":\"https:\\/\\/wa.me\\/23409019060747?text=Hello+I'm+interested+in+Joining+*TWITAGRAM9JA+CHANNEL*%0AMy+Name+Is\",\"display_url\":\"wa.me\\/23409019060747\\u2026\",\"indices\":[171,194]}],\"media\":[{\"id\":1554953050497875968,\"id_str\":\"1554953050497875968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"url\":\"https:\\/\\/t.co\\/hL3D2W2oyh\",\"display_url\":\"pic.twitter.com\\/hL3D2W2oyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oceanfocuz\\/status\\/1554953058412527616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"}}}]},\"4154\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[192,199]},{\"text\":\"timesupolivia\",\"indices\":[200,214]},{\"text\":\"AsiaCup2022\",\"indices\":[215,227]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[228,249]},{\"text\":\"PokemonPresents\",\"indices\":[250,266]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[0,10]},{\"screen_name\":\"Gamers8GG_AR\",\"name\":\"\\u0645\\u0648\\u0633\\u0645 \\u0627\\u0644\\u062c\\u064a\\u0645\\u0631\\u0632 Esports\",\"id\":1532703799453810690,\"id_str\":\"1532703799453810690\",\"indices\":[11,24]},{\"screen_name\":\"Gamers8GG\",\"name\":\"Gamers8 Esports\",\"id\":1532693504413028354,\"id_str\":\"1532693504413028354\",\"indices\":[25,35]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s4uVx9u2lp\",\"expanded_url\":\"https:\\/\\/wa.me\\/23409019060747?text=Hello+I'm+interested+in+Joining+*TWITAGRAM9JA+CHANNEL*%0AMy+Name+Is\",\"display_url\":\"wa.me\\/23409019060747\\u2026\",\"indices\":[167,190]}]},\"4155\":{\"hashtags\":[{\"text\":\"Abuja\",\"indices\":[73,79]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Gistlover\",\"indices\":[88,98]},{\"text\":\"trenches\",\"indices\":[99,108]},{\"text\":\"Trending\",\"indices\":[110,119]},{\"text\":\"Viruman\",\"indices\":[120,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Py4MEBlgdJ\",\"expanded_url\":\"https:\\/\\/awixy.net\\/single.php?id=370\",\"display_url\":\"awixy.net\\/single.php?id=\\u2026\",\"indices\":[130,153]}],\"media\":[{\"id\":1554952343812202496,\"id_str\":\"1554952343812202496\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"url\":\"https:\\/\\/t.co\\/LRNy2gV78s\",\"display_url\":\"pic.twitter.com\\/LRNy2gV78s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1554952346110775301\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":187,\"resize\":\"fit\"}}}]},\"4156\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[83,97]},{\"text\":\"bolatinubu\",\"indices\":[98,109]},{\"text\":\"room1\",\"indices\":[110,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"BB24\",\"indices\":[125,130]},{\"text\":\"davidhundeyin\",\"indices\":[131,145]},{\"text\":\"stress\",\"indices\":[146,153]},{\"text\":\"remedy\",\"indices\":[154,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uoEikCochW\",\"expanded_url\":\"https:\\/\\/youtu.be\\/CyKqTJ6IBaY\",\"display_url\":\"youtu.be\\/CyKqTJ6IBaY\",\"indices\":[58,81]}],\"media\":[{\"id\":1554951610316607495,\"id_str\":\"1554951610316607495\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"url\":\"https:\\/\\/t.co\\/rGiGx9nfeD\",\"display_url\":\"pic.twitter.com\\/rGiGx9nfeD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JerryKatician01\\/status\\/1554951856362819584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4157\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[137,153]},{\"text\":\"PokemonScarletViolet\",\"indices\":[154,175]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[176,184]},{\"text\":\"timesupolivia\",\"indices\":[185,199]},{\"text\":\"Pelosi\",\"indices\":[200,207]},{\"text\":\"FOREVER1\",\"indices\":[208,217]},{\"text\":\"Ninjawarriorsfc\",\"indices\":[219,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUp1TahSAu\",\"expanded_url\":\"https:\\/\\/lnk.to\\/DuncanDaniels\",\"display_url\":\"lnk.to\\/DuncanDaniels\",\"indices\":[113,136]}]},\"4158\":{\"hashtags\":[{\"text\":\"chelsea\",\"indices\":[111,119]},{\"text\":\"niger\",\"indices\":[120,126]},{\"text\":\"Peterobi\",\"indices\":[127,136]},{\"text\":\"Brighton\",\"indices\":[137,146]},{\"text\":\"BBNaijaS7\",\"indices\":[162,172]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[173,188]},{\"text\":\"ASUU\",\"indices\":[200,205]},{\"text\":\"Taiwan\",\"indices\":[206,213]},{\"text\":\"Fabrizio\",\"indices\":[214,223]},{\"text\":\"Emily\",\"indices\":[224,230]},{\"text\":\"Obituary\",\"indices\":[238,247]},{\"text\":\"Biden\",\"indices\":[256,262]},{\"text\":\"Pelosi\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yhBXWin2rz\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[86,109]}],\"media\":[{\"id\":1554947160952766465,\"id_str\":\"1554947160952766465\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"url\":\"https:\\/\\/t.co\\/oULUzjYdc0\",\"display_url\":\"pic.twitter.com\\/oULUzjYdc0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947171329376257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"medium\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4159\":{\"hashtags\":[{\"text\":\"agrolyfe\",\"indices\":[234,243]},{\"text\":\"realestate\",\"indices\":[244,255]},{\"text\":\"Niger\",\"indices\":[256,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]},{\"text\":\"China\",\"indices\":[271,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yhBXWin2rz\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[209,232]}],\"media\":[{\"id\":1554947112533692416,\"id_str\":\"1554947112533692416\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"url\":\"https:\\/\\/t.co\\/biyg4c2idH\",\"display_url\":\"pic.twitter.com\\/biyg4c2idH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947130447495172\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":495,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1484,\"resize\":\"fit\"}}}]},\"4160\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"BBNajia\",\"indices\":[63,71]},{\"text\":\"BBNaijaS7\",\"indices\":[112,122]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[133,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554945877382397955,\"id_str\":\"1554945877382397955\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":451,\"resize\":\"fit\"}}}]},\"4161\":{\"hashtags\":[{\"text\":\"BolaTinubu\",\"indices\":[35,46]},{\"text\":\"davidhundeyin\",\"indices\":[47,61]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"AtikuOkowa2023\",\"indices\":[70,85]},{\"text\":\"PeterObi\",\"indices\":[86,95]},{\"text\":\"BBNaijaS7\",\"indices\":[96,106]},{\"text\":\"decor\",\"indices\":[107,113]},{\"text\":\"homedecor\",\"indices\":[114,124]},{\"text\":\"arisetv\",\"indices\":[125,133]},{\"text\":\"Buhari\",\"indices\":[134,141]},{\"text\":\"Niger\",\"indices\":[142,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554943954654830592,\"id_str\":\"1554943954654830592\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"url\":\"https:\\/\\/t.co\\/Tp3tQJz3KK\",\"display_url\":\"pic.twitter.com\\/Tp3tQJz3KK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bulky305\\/status\\/1554943957313912833\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4162\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[154,161]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4163\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[123,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]},{\"text\":\"timesupolivia\",\"indices\":[148,162]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[163,188]},{\"text\":\"KNUST\",\"indices\":[189,195]},{\"text\":\"boycottrakshabandhan\",\"indices\":[196,217]},{\"text\":\"BadDecisionsTrailer2\",\"indices\":[218,239]},{\"text\":\"Viruman\",\"indices\":[240,248]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ConvergenceFin\",\"name\":\"Convergence Finance\",\"id\":1359091443537563651,\"id_str\":\"1359091443537563651\",\"indices\":[47,62]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5NHIvfXkRL\",\"expanded_url\":\"https:\\/\\/t.me\\/convergencefinanceofficial\",\"display_url\":\"t.me\\/convergencefin\\u2026\",\"indices\":[98,121]}],\"media\":[{\"id\":1554935922902372353,\"id_str\":\"1554935922902372353\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"url\":\"https:\\/\\/t.co\\/yvGKPNEaxP\",\"display_url\":\"pic.twitter.com\\/yvGKPNEaxP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554935935300665344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1534,\"h\":1585,\"resize\":\"fit\"},\"medium\":{\"w\":1161,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"}}}]},\"4164\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[39,46]},{\"text\":\"BBNajia\",\"indices\":[47,55]},{\"text\":\"BBNaijaS7\",\"indices\":[56,66]},{\"text\":\"ASUU\",\"indices\":[67,72]},{\"text\":\"ObiDatti\",\"indices\":[73,82]},{\"text\":\"PeterObi\",\"indices\":[83,92]},{\"text\":\"Taiwanchina\",\"indices\":[93,105]},{\"text\":\"chaina\",\"indices\":[106,113]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[114,132]},{\"text\":\"CommonwealthGames2022\",\"indices\":[133,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554931987034537985,\"id_str\":\"1554931987034537985\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"url\":\"https:\\/\\/t.co\\/5hephg70Dx\",\"display_url\":\"pic.twitter.com\\/5hephg70Dx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1554932017342578692\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4165\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[202,209]},{\"text\":\"Birmingham2022\",\"indices\":[210,225]},{\"text\":\"Obidatti023\",\"indices\":[226,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"ExtraordinaryAttorneyWoo\",\"indices\":[248,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554930793935405056,\"id_str\":\"1554930793935405056\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"url\":\"https:\\/\\/t.co\\/MqQNE0DluW\",\"display_url\":\"pic.twitter.com\\/MqQNE0DluW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaRealityNe1\\/status\\/1554930832753807365\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}}}]},\"4166\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[87,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"WuQian\",\"indices\":[102,109]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Et8VA4DuOx\",\"expanded_url\":\"https:\\/\\/www.thekampalareport.com\\/latest\\/world\\/2022080317780\\/spokesperson-of-ministry-of-national-defense-makes-remarks-on-pelosis-visit-to-taiwan.html\",\"display_url\":\"thekampalareport.com\\/latest\\/world\\/2\\u2026\",\"indices\":[110,133]}]},\"4167\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"PokemonPresents\",\"indices\":[153,169]},{\"text\":\"AamirKhan\",\"indices\":[170,180]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[181,193]},{\"text\":\"boycottrakshabandhan\",\"indices\":[194,215]},{\"text\":\"davido\",\"indices\":[216,223]},{\"text\":\"Davido\",\"indices\":[224,231]},{\"text\":\"Bod\",\"indices\":[233,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4168\":{\"hashtags\":[{\"text\":\"NightCoppers\",\"indices\":[110,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"NigeriaDecides2023\",\"indices\":[132,151]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[57,65]},{\"screen_name\":\"NGRPresident\",\"name\":\"Presidency Nigeria\",\"id\":2964950313,\"id_str\":\"2964950313\",\"indices\":[66,79]},{\"screen_name\":\"BashirAhmaad\",\"name\":\"Bashir Ahmad\",\"id\":104296908,\"id_str\":\"104296908\",\"indices\":[80,93]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[94,107]}],\"urls\":[],\"media\":[{\"id\":1554925765602467842,\"id_str\":\"1554925765602467842\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"url\":\"https:\\/\\/t.co\\/1RGXU28Mr5\",\"display_url\":\"pic.twitter.com\\/1RGXU28Mr5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Cleeptvng\\/status\\/1554925804731207680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1200,\"resize\":\"fit\"}}}]},\"4169\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[85,89]},{\"text\":\"Crypto\",\"indices\":[98,105]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"Pelosi\",\"indices\":[123,130]},{\"text\":\"ETH\",\"indices\":[131,135]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rovercrc\",\"name\":\"Crypto Rover\",\"id\":1353384573435056128,\"id_str\":\"1353384573435056128\",\"indices\":[0,9]}],\"urls\":[]},\"4170\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[184,189]},{\"text\":\"China\",\"indices\":[190,196]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"BBNaija\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4171\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[28,37]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[38,63]},{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"PokemonScarletViolet\",\"indices\":[72,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"PokemonPresents\",\"indices\":[102,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554925006005698560,\"id_str\":\"1554925006005698560\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"url\":\"https:\\/\\/t.co\\/x8ToWVOlaG\",\"display_url\":\"pic.twitter.com\\/x8ToWVOlaG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kutithedirector\\/status\\/1554925033604128768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4172\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"PokemonScarletViolet\",\"indices\":[105,126]},{\"text\":\"PokemonPresents\",\"indices\":[127,143]},{\"text\":\"Pelosi\",\"indices\":[144,151]},{\"text\":\"boycottrakshabandhan\",\"indices\":[152,173]},{\"text\":\"AamirKhan\",\"indices\":[174,184]},{\"text\":\"MeghanMcCainMeltdown\",\"indices\":[185,206]},{\"text\":\"PrabhasForSitaRamam\",\"indices\":[207,227]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[0,15]},{\"screen_name\":\"FCBarcelona\",\"name\":\"FC Barcelona\",\"id\":96951800,\"id_str\":\"96951800\",\"indices\":[59,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iaDXI553hM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FabrizioRomano\\/status\\/1554894630889684999\",\"display_url\":\"twitter.com\\/FabrizioRomano\\u2026\",\"indices\":[228,251]}]},\"4173\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"lufc\",\"indices\":[69,74]},{\"text\":\"EPL\",\"indices\":[75,79]},{\"text\":\"PokemonScarletViolet\",\"indices\":[80,101]},{\"text\":\"tundeednut\",\"indices\":[102,113]},{\"text\":\"BBNaija\",\"indices\":[114,122]},{\"text\":\"trans\",\"indices\":[123,129]},{\"text\":\"trendingnow\",\"indices\":[130,142]},{\"text\":\"GoViral\",\"indices\":[143,151]},{\"text\":\"Twitter\",\"indices\":[152,160]},{\"text\":\"vawlencesspace\",\"indices\":[161,176]},{\"text\":\"SummerSlam\",\"indices\":[177,188]},{\"text\":\"Pelosi\",\"indices\":[189,196]},{\"text\":\"pepsi\",\"indices\":[197,203]},{\"text\":\"LateNightTwitter\",\"indices\":[204,221]},{\"text\":\"goodnight\",\"indices\":[222,232]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554922792512020480,\"id_str\":\"1554922792512020480\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"url\":\"https:\\/\\/t.co\\/Ny7cGtBNlr\",\"display_url\":\"pic.twitter.com\\/Ny7cGtBNlr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554922799667503106\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":439,\"resize\":\"fit\"},\"medium\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"}}}]},\"4174\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"MeghanMcCainMeltdown\",\"indices\":[24,45]},{\"text\":\"boycottrakshabandhan\",\"indices\":[46,67]},{\"text\":\"PokemonScarletViolet\",\"indices\":[68,89]},{\"text\":\"LagosSwindlers\",\"indices\":[90,105]},{\"text\":\"BBNaija\",\"indices\":[106,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pP196UHxJd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concept_nova\\/status\\/1554847243164860418\",\"display_url\":\"twitter.com\\/concept_nova\\/s\\u2026\",\"indices\":[115,138]}]},\"4175\":{\"hashtags\":[{\"text\":\"mumulity\",\"indices\":[194,203]},{\"text\":\"Obidatti023\",\"indices\":[217,229]},{\"text\":\"Taiwan\",\"indices\":[230,237]},{\"text\":\"BBNaija\",\"indices\":[238,246]},{\"text\":\"PokemonPresents\",\"indices\":[247,263]},{\"text\":\"2023Elections\",\"indices\":[264,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554921110038274048,\"id_str\":\"1554921110038274048\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"url\":\"https:\\/\\/t.co\\/UeFEo5kC0H\",\"display_url\":\"pic.twitter.com\\/UeFEo5kC0H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/montero4emirate\\/status\\/1554921120905760778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"small\":{\"w\":669,\"h\":680,\"resize\":\"fit\"}}}]},\"4176\":{\"hashtags\":[{\"text\":\"AlexJones\",\"indices\":[102,112]},{\"text\":\"SandyHook\",\"indices\":[113,123]},{\"text\":\"Pokemon\",\"indices\":[124,132]},{\"text\":\"PokemonPresents\",\"indices\":[133,149]},{\"text\":\"Kansas\",\"indices\":[150,157]},{\"text\":\"fidough\",\"indices\":[158,166]},{\"text\":\"Discord\",\"indices\":[167,175]},{\"text\":\"Discovery\",\"indices\":[176,186]},{\"text\":\"HBOMax\",\"indices\":[187,194]},{\"text\":\"colwill\",\"indices\":[195,203]},{\"text\":\"FreakyGirl\",\"indices\":[204,215]},{\"text\":\"Woody\",\"indices\":[216,222]},{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"timesupolivia\",\"indices\":[231,245]},{\"text\":\"talkximg\",\"indices\":[246,255]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"LoveIsland\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554920433736114176,\"id_str\":\"1554920433736114176\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"url\":\"https:\\/\\/t.co\\/a58nuGIcuj\",\"display_url\":\"pic.twitter.com\\/a58nuGIcuj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554920465453535234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"4177\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[58,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"AamirKhan\",\"indices\":[83,93]},{\"text\":\"PokemonPresents\",\"indices\":[94,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554920207226994694,\"id_str\":\"1554920207226994694\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4178\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[31,36]},{\"text\":\"MinisterofFinance\",\"indices\":[37,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Hu8zBwbNnw\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/03\\/mrs-harris-goes-to-paris-2022\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/03\\/mrs\\u2026\",\"indices\":[64,87]}]},\"4179\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"PokemonScarletViolet\",\"indices\":[25,46]},{\"text\":\"PokemonPresents\",\"indices\":[47,63]},{\"text\":\"boycottrakshabandhan\",\"indices\":[64,85]},{\"text\":\"bbnaija\",\"indices\":[86,94]},{\"text\":\"BigBrotherNaija\",\"indices\":[95,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554919511844945920,\"id_str\":\"1554919511844945920\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"url\":\"https:\\/\\/t.co\\/L5naFHzNv6\",\"display_url\":\"pic.twitter.com\\/L5naFHzNv6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1554919572913930240\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}}}]},\"4180\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[63,70]},{\"text\":\"massage\",\"indices\":[71,79]},{\"text\":\"Machala\",\"indices\":[80,88]},{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"Davido\",\"indices\":[98,105]},{\"text\":\"burnaboy\",\"indices\":[106,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4181\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"PokemonScarletViolet\",\"indices\":[66,87]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[88,96]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[97,115]},{\"text\":\"AamirKhan\",\"indices\":[116,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EKNbMVUSuP\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/taiwan-u-s-china-tensions-flare-as-pelosi-leaves-taiwan\\/\",\"display_url\":\"iexclusivenews.com.ng\\/taiwan-u-s-chi\\u2026\",\"indices\":[127,150]}]},\"4182\":{\"hashtags\":[{\"text\":\"music\",\"indices\":[69,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"PokemonScarletViolet\",\"indices\":[84,105]},{\"text\":\"Pelosi\",\"indices\":[106,113]},{\"text\":\"boycottrakshabandhan\",\"indices\":[114,135]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[136,159]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[160,181]},{\"text\":\"Trending\",\"indices\":[182,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554918084397469697,\"id_str\":\"1554918084397469697\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"url\":\"https:\\/\\/t.co\\/b0ZKsnRgJ6\",\"display_url\":\"pic.twitter.com\\/b0ZKsnRgJ6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AmDkenzie\\/status\\/1554918698191831044\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":640,\"resize\":\"fit\"}}}]},\"4183\":{\"hashtags\":[{\"text\":\"OUROPINION\",\"indices\":[0,11]},{\"text\":\"apc\",\"indices\":[12,16]},{\"text\":\"NigerRepublic\",\"indices\":[74,88]},{\"text\":\"Buhari\",\"indices\":[147,154]},{\"text\":\"endbuhari\",\"indices\":[175,185]},{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"USA\",\"indices\":[199,203]},{\"text\":\"zainab_fatemaa\",\"indices\":[204,219]},{\"text\":\"RenosNuggets\",\"indices\":[221,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4184\":{\"hashtags\":[{\"text\":\"JakePaul\",\"indices\":[20,29]},{\"text\":\"\\u0e42\\u0e0a\\u0e04\\u0e23\\u0e16\\u0e41\\u0e2b\\u0e48\",\"indices\":[30,39]},{\"text\":\"PokemonScarletViolet\",\"indices\":[40,61]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[62,74]},{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"boycottrakshabandhan\",\"indices\":[83,104]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[105,126]},{\"text\":\"grace\",\"indices\":[127,133]},{\"text\":\"Trending\",\"indices\":[134,143]},{\"text\":\"godblessings\",\"indices\":[144,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554917648793833475,\"id_str\":\"1554917648793833475\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"url\":\"https:\\/\\/t.co\\/2OrZy9A1BQ\",\"display_url\":\"pic.twitter.com\\/2OrZy9A1BQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZealDise\\/status\\/1554917658948255750\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"4185\":{\"hashtags\":[{\"text\":\"facts\",\"indices\":[128,134]},{\"text\":\"LoveIsland\",\"indices\":[135,146]},{\"text\":\"jesus\",\"indices\":[147,153]},{\"text\":\"Christianity\",\"indices\":[154,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"PokemonScarletViolet\",\"indices\":[176,197]},{\"text\":\"PokemonPresents\",\"indices\":[198,214]},{\"text\":\"Pelosi\",\"indices\":[215,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554917340168462337,\"id_str\":\"1554917340168462337\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"url\":\"https:\\/\\/t.co\\/XTI7MngazT\",\"display_url\":\"pic.twitter.com\\/XTI7MngazT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostleJoeUdoh\\/status\\/1554917350310395911\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"}}}]},\"4186\":{\"hashtags\":[{\"text\":\"forex\",\"indices\":[73,79]},{\"text\":\"wikifx\",\"indices\":[80,87]},{\"text\":\"trading\",\"indices\":[88,96]},{\"text\":\"MONEY\",\"indices\":[97,103]},{\"text\":\"Crypto\",\"indices\":[104,111]},{\"text\":\"news\",\"indices\":[112,117]},{\"text\":\"skills\",\"indices\":[118,125]},{\"text\":\"beginners\",\"indices\":[126,136]},{\"text\":\"PokemonScarletViolet\",\"indices\":[137,158]},{\"text\":\"PokemonPresents\",\"indices\":[159,175]},{\"text\":\"Pelosi\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OZRROchuBC\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/newsdetail\\/202208033874724444.html\",\"display_url\":\"wikifx.com\\/en\\/newsdetail\\/\\u2026\",\"indices\":[49,72]}],\"media\":[{\"id\":1554916928652730370,\"id_str\":\"1554916928652730370\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"url\":\"https:\\/\\/t.co\\/uNm3Dqi46R\",\"display_url\":\"pic.twitter.com\\/uNm3Dqi46R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1554916934776487936\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":336,\"resize\":\"fit\"}}}]},\"4187\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[63,86]},{\"text\":\"BBNaija\",\"indices\":[135,143]},{\"text\":\"nbcDSTV282\",\"indices\":[144,155]},{\"text\":\"BBC\",\"indices\":[156,160]},{\"text\":\"Terrorists\",\"indices\":[161,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554916828358610954,\"id_str\":\"1554916828358610954\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"url\":\"https:\\/\\/t.co\\/Ndvbo56Cix\",\"display_url\":\"pic.twitter.com\\/Ndvbo56Cix\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554916841855848448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}}}]},\"4188\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"PokemonScarletViolet\",\"indices\":[45,66]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[67,75]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[76,94]},{\"text\":\"olosho\",\"indices\":[95,102]},{\"text\":\"BBNaija\",\"indices\":[103,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l3lvWc50x6\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/watch-full-black-chully-5-new-videos\\/\",\"display_url\":\"iexclusivenews.com.ng\\/watch-full-bla\\u2026\",\"indices\":[112,135]}]},\"4189\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[67,81]},{\"text\":\"benincitymall\",\"indices\":[82,96]},{\"text\":\"BBNajiaS7\",\"indices\":[97,107]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[108,126]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554916078635171840,\"id_str\":\"1554916078635171840\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"}}}]},\"4190\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[194,201]},{\"text\":\"LabourParty\",\"indices\":[202,214]},{\"text\":\"Obidatti023\",\"indices\":[215,227]},{\"text\":\"BBNaija\",\"indices\":[228,236]},{\"text\":\"Pelosi\",\"indices\":[237,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554914917198733312,\"id_str\":\"1554914917198733312\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"url\":\"https:\\/\\/t.co\\/jCOYntTTXc\",\"display_url\":\"pic.twitter.com\\/jCOYntTTXc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554914919761453056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":775,\"resize\":\"fit\"},\"small\":{\"w\":632,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":775,\"resize\":\"fit\"}}}]},\"4191\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"PokemonPresents\",\"indices\":[145,161]},{\"text\":\"Bbnaija\",\"indices\":[162,170]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iam_timotee\",\"name\":\"Timotee\",\"id\":1282343050149232640,\"id_str\":\"1282343050149232640\",\"indices\":[0,12]},{\"screen_name\":\"rexxiepondabeat\",\"name\":\"Rexxie\",\"id\":209536731,\"id_str\":\"209536731\",\"indices\":[15,31]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[55,64]},{\"screen_name\":\"Alex_Houseof308\",\"name\":\"Four-eyed Edo Boy\\u2122\",\"id\":385986859,\"id_str\":\"385986859\",\"indices\":[65,81]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[82,93]},{\"screen_name\":\"MAVINRECORDS\",\"name\":\"MAVIN RECORDS\",\"id\":546237443,\"id_str\":\"546237443\",\"indices\":[94,107]},{\"screen_name\":\"Ebuka\",\"name\":\"Ebuka Obi-Uchendu\",\"id\":18378475,\"id_str\":\"18378475\",\"indices\":[108,114]},{\"screen_name\":\"DanielRegha\",\"name\":\"Daniel Regha\",\"id\":1213321063465025536,\"id_str\":\"1213321063465025536\",\"indices\":[171,183]}],\"urls\":[],\"media\":[{\"id\":1554914242037432320,\"id_str\":\"1554914242037432320\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"url\":\"https:\\/\\/t.co\\/60kyNTYdVC\",\"display_url\":\"pic.twitter.com\\/60kyNTYdVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_timotee\\/status\\/1554914363928100864\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4192\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"PokemonPresents\",\"indices\":[21,37]},{\"text\":\"twitter\",\"indices\":[38,46]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554914140996632577,\"id_str\":\"1554914140996632577\",\"indices\":[47,70],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"url\":\"https:\\/\\/t.co\\/yiNSoKgXQY\",\"display_url\":\"pic.twitter.com\\/yiNSoKgXQY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554914152052817920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"4193\":{\"hashtags\":[{\"text\":\"PokemonPresents\",\"indices\":[57,73]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[74,92]},{\"text\":\"boycottrakshabandhan\",\"indices\":[93,114]},{\"text\":\"AamirKhan\",\"indices\":[115,125]},{\"text\":\"timesupolivia\",\"indices\":[126,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4194\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554913397401128963,\"id_str\":\"1554913397401128963\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"url\":\"https:\\/\\/t.co\\/FVS92zEuL3\",\"display_url\":\"pic.twitter.com\\/FVS92zEuL3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pastppl\\/status\\/1554913407270354947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"4195\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[84,98]},{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GUeM5Ldh6Q\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/buhari-govt-confirms-purchase-of-n1-4-billion-worth-of-vehicles-for-niger-republic\\/\",\"display_url\":\"iexclusivenews.com.ng\\/buhari-govt-co\\u2026\",\"indices\":[130,153]}]},\"4196\":{\"hashtags\":[{\"text\":\"transfers\",\"indices\":[173,183]},{\"text\":\"EPL\",\"indices\":[184,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4197\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"PokemonScarletViolet\",\"indices\":[102,123]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[124,132]},{\"text\":\"PokemonPresents\",\"indices\":[133,149]},{\"text\":\"BBNaija7\",\"indices\":[150,159]},{\"text\":\"BBNajia\",\"indices\":[160,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554910690321858560,\"id_str\":\"1554910690321858560\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4198\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"aneketwins\",\"indices\":[250,261]},{\"text\":\"worldbesttwins\",\"indices\":[262,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554910195821723648,\"id_str\":\"1554910195821723648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"url\":\"https:\\/\\/t.co\\/t83z7KgCZE\",\"display_url\":\"pic.twitter.com\\/t83z7KgCZE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554910206764765184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"}}}]},\"4199\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"Niger\",\"indices\":[124,130]},{\"text\":\"BBNaija\",\"indices\":[131,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554909512221573121,\"id_str\":\"1554909512221573121\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"url\":\"https:\\/\\/t.co\\/7oFsDeYTsH\",\"display_url\":\"pic.twitter.com\\/7oFsDeYTsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554909529577512960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"medium\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4200\":{\"hashtags\":[{\"text\":\"bringbacknigeria\",\"indices\":[110,127]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[128,153]},{\"text\":\"channelstv\",\"indices\":[155,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[176,193]},{\"text\":\"BuhariMustGo\",\"indices\":[195,208]},{\"text\":\"BBNaija\",\"indices\":[210,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554909342398300164,\"id_str\":\"1554909342398300164\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"url\":\"https:\\/\\/t.co\\/httCZHSxTe\",\"display_url\":\"pic.twitter.com\\/httCZHSxTe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554909353592860674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":655,\"resize\":\"fit\"}}}]},\"4201\":{\"hashtags\":[{\"text\":\"SkeemSaam\",\"indices\":[138,148]},{\"text\":\"breastfeeding\",\"indices\":[214,228]},{\"text\":\"BBNaija\",\"indices\":[229,237]},{\"text\":\"EndSARS\",\"indices\":[238,246]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[247,254]},{\"text\":\"Taiwan\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4202\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"PokemonPresents\",\"indices\":[57,73]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[74,92]},{\"text\":\"boycottrakshabandhan\",\"indices\":[93,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4203\":{\"hashtags\":[{\"text\":\"SkeemSaam\",\"indices\":[137,147]},{\"text\":\"breastfeeding\",\"indices\":[213,227]},{\"text\":\"BambamSorry\",\"indices\":[228,240]},{\"text\":\"EndSARS\",\"indices\":[241,249]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[250,257]},{\"text\":\"Taiwan\",\"indices\":[266,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4204\":{\"hashtags\":[{\"text\":\"SkeemSaam\",\"indices\":[113,123]},{\"text\":\"breastfeeding\",\"indices\":[189,203]},{\"text\":\"BambamSorry\",\"indices\":[204,216]},{\"text\":\"EndSARS\",\"indices\":[217,225]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[226,233]},{\"text\":\"Taiwan\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4205\":{\"hashtags\":[{\"text\":\"yorubavibechurch\",\"indices\":[221,238]},{\"text\":\"Reno\",\"indices\":[239,244]},{\"text\":\"davidhundeyin\",\"indices\":[245,259]},{\"text\":\"WWIII\",\"indices\":[260,266]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4206\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"minister\",\"indices\":[135,144]},{\"text\":\"midemartins\",\"indices\":[145,157]},{\"text\":\"PokemonPresents\",\"indices\":[158,174]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[175,183]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[184,202]},{\"text\":\"Nigeria\",\"indices\":[203,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554907611685871616,\"id_str\":\"1554907611685871616\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":922,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":862,\"resize\":\"fit\"}}}]},\"4207\":{\"hashtags\":[{\"text\":\"lagosswindlers\",\"indices\":[85,100]},{\"text\":\"BBNaijaS7\",\"indices\":[101,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[120,133]},{\"screen_name\":\"GistReel\",\"name\":\"GistReel.Com\",\"id\":892153969,\"id_str\":\"892153969\",\"indices\":[134,143]},{\"screen_name\":\"MobilePunch\",\"name\":\"Punch Newspapers\",\"id\":24291371,\"id_str\":\"24291371\",\"indices\":[144,156]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I2g2AcUXoz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Meekzainny\\/status\\/1554880088109453314\",\"display_url\":\"twitter.com\\/Meekzainny\\/sta\\u2026\",\"indices\":[157,180]}]},\"4208\":{\"hashtags\":[{\"text\":\"thread\",\"indices\":[108,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"PokemonScarletViolet\",\"indices\":[124,145]},{\"text\":\"AamirKhan\",\"indices\":[146,156]},{\"text\":\"KNUST\",\"indices\":[157,163]},{\"text\":\"tiboinshape\",\"indices\":[164,176]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[177,198]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4209\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"PokemonPresents\",\"indices\":[37,53]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[54,72]},{\"text\":\"organics\",\"indices\":[73,82]},{\"text\":\"Nengi\",\"indices\":[84,90]},{\"text\":\"trending\",\"indices\":[91,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554905384854470660,\"id_str\":\"1554905384854470660\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"url\":\"https:\\/\\/t.co\\/jriEwqsvvJ\",\"display_url\":\"pic.twitter.com\\/jriEwqsvvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sharon_sleey\\/status\\/1554905444610703361\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4210\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[211,219]},{\"text\":\"\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a\",\"indices\":[220,229]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[230,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[66,75]},{\"screen_name\":\"crayonthis\",\"name\":\"CRAYWAY!\",\"id\":4364203575,\"id_str\":\"4364203575\",\"indices\":[101,112]},{\"screen_name\":\"heisrema\",\"name\":\"REMA\",\"id\":859280289654341636,\"id_str\":\"859280289654341636\",\"indices\":[113,122]},{\"screen_name\":\"rugerofficial\",\"name\":\"da Ruger gon screw u\\ud83d\\udd2b\\ud83c\\udff4\\u200d\\u2620\\ufe0f\\u264e\\ufe0f\",\"id\":1016573586474176512,\"id_str\":\"1016573586474176512\",\"indices\":[123,137]},{\"screen_name\":\"ayrastarr\",\"name\":\"Celestial being\",\"id\":1290633989208911873,\"id_str\":\"1290633989208911873\",\"indices\":[138,148]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[149,160]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[162,175]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mzzNbsFPxT\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazzy-by-dejavudmj\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[178,201]}],\"media\":[{\"id\":1554905006779793413,\"id_str\":\"1554905006779793413\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"url\":\"https:\\/\\/t.co\\/sLgaVkZN1d\",\"display_url\":\"pic.twitter.com\\/sLgaVkZN1d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554905114531577859\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4211\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[149,156]},{\"text\":\"PokemonPresents\",\"indices\":[157,173]},{\"text\":\"Obidatti023\",\"indices\":[174,186]},{\"text\":\"BBNaija\",\"indices\":[187,195]},{\"text\":\"LabourParty\",\"indices\":[196,208]},{\"text\":\"Auto\",\"indices\":[209,214]},{\"text\":\"CarDealership\",\"indices\":[215,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554904267558998017,\"id_str\":\"1554904267558998017\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"url\":\"https:\\/\\/t.co\\/c7Zb8bjK1h\",\"display_url\":\"pic.twitter.com\\/c7Zb8bjK1h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLAMIBODEREHAN\\/status\\/1554904346176929792\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4212\":{\"hashtags\":[{\"text\":\"crochet\",\"indices\":[82,90]},{\"text\":\"Crochet_Sweater\",\"indices\":[91,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"BBNaija\",\"indices\":[116,124]},{\"text\":\"ASUU\",\"indices\":[125,130]},{\"text\":\"KNUST\",\"indices\":[131,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554904263742160896,\"id_str\":\"1554904263742160896\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"4213\":{\"hashtags\":[{\"text\":\"BigBrother\",\"indices\":[84,95]},{\"text\":\"Hermes\",\"indices\":[96,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"AamirKhan\",\"indices\":[112,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4214\":{\"hashtags\":[{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[54,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChelseaFC\",\"name\":\"Chelsea FC\",\"id\":22910295,\"id_str\":\"22910295\",\"indices\":[81,91]}],\"urls\":[]},\"4215\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"PokemonScarletViolet\",\"indices\":[86,107]},{\"text\":\"PokemonPresents\",\"indices\":[109,125]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554903110451093506,\"id_str\":\"1554903110451093506\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"url\":\"https:\\/\\/t.co\\/JfkK4p5kHo\",\"display_url\":\"pic.twitter.com\\/JfkK4p5kHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BubesTreat_3\\/status\\/1554903129673666560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":421,\"resize\":\"fit\"}}}]},\"4216\":{\"hashtags\":[{\"text\":\"Buhari\",\"indices\":[51,58]},{\"text\":\"Taiwan\",\"indices\":[59,66]},{\"text\":\"MoneyHeist\",\"indices\":[67,78]},{\"text\":\"JARUMA\",\"indices\":[79,86]},{\"text\":\"China\",\"indices\":[87,93]},{\"text\":\"IPOB\",\"indices\":[94,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554901434646265856,\"id_str\":\"1554901434646265856\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"url\":\"https:\\/\\/t.co\\/VjiXPWbX4f\",\"display_url\":\"pic.twitter.com\\/VjiXPWbX4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1554901550665015298\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4217\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[252,259]},{\"text\":\"Pelosi\",\"indices\":[260,267]},{\"text\":\"Machala\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554899220372529153,\"id_str\":\"1554899220372529153\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"url\":\"https:\\/\\/t.co\\/W1zrNyyBd4\",\"display_url\":\"pic.twitter.com\\/W1zrNyyBd4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DL_first_son\\/status\\/1554899262617653248\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":365,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"}}}]},\"4218\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[97,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"PokemonScarletViolet\",\"indices\":[123,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"Chelsea\",\"indices\":[152,160]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[81,96]}],\"urls\":[]},\"4219\":{\"hashtags\":[{\"text\":\"Azerbaijan\",\"indices\":[230,241]},{\"text\":\"Armenia\",\"indices\":[242,250]},{\"text\":\"Taiwan\",\"indices\":[251,258]},{\"text\":\"Asia\",\"indices\":[259,264]},{\"text\":\"Pelosi\",\"indices\":[265,272]},{\"text\":\"viral\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554895396790476803,\"id_str\":\"1554895396790476803\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"url\":\"https:\\/\\/t.co\\/sSTeJQYgcQ\",\"display_url\":\"pic.twitter.com\\/sSTeJQYgcQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554895525392138241\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"4220\":{\"hashtags\":[{\"text\":\"BbnNaija\",\"indices\":[149,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4221\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[161,168]},{\"text\":\"BulletTrainMovie\",\"indices\":[169,186]},{\"text\":\"PokemonPresents\",\"indices\":[187,203]},{\"text\":\"BBNaija\",\"indices\":[204,212]},{\"text\":\"BBNajiaS7\",\"indices\":[213,223]},{\"text\":\"sabinus\",\"indices\":[224,232]},{\"text\":\"BB24\",\"indices\":[233,238]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[113,122]},{\"screen_name\":\"MAVINRECORDS\",\"name\":\"MAVIN RECORDS\",\"id\":546237443,\"id_str\":\"546237443\",\"indices\":[123,136]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[137,150]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[151,159]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a2WtXyLF9J\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dtg8\\/song\\/one-boy-zero-stess\",\"display_url\":\"audiomack.com\\/dtg8\\/song\\/one-\\u2026\",\"indices\":[89,112]}],\"media\":[{\"id\":1554893024903282689,\"id_str\":\"1554893024903282689\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"url\":\"https:\\/\\/t.co\\/tA7oQLvgD9\",\"display_url\":\"pic.twitter.com\\/tA7oQLvgD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danthegreyt\\/status\\/1554895023048630272\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":688,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":688,\"h\":640,\"resize\":\"fit\"}}}]},\"4222\":{\"hashtags\":[{\"text\":\"SpaceX\",\"indices\":[203,210]},{\"text\":\"Australia\",\"indices\":[211,221]},{\"text\":\"Space\",\"indices\":[222,228]},{\"text\":\"Taiwan\",\"indices\":[229,236]},{\"text\":\"Pelosi\",\"indices\":[237,244]},{\"text\":\"TrendingNow\",\"indices\":[245,257]},{\"text\":\"trending\",\"indices\":[258,267]},{\"text\":\"viral\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554894576321761280,\"id_str\":\"1554894576321761280\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4223\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[184,191]},{\"text\":\"BulletTrainMovie\",\"indices\":[192,209]},{\"text\":\"PokemonScarletViolet\",\"indices\":[210,231]},{\"text\":\"Pelosi\",\"indices\":[232,239]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[240,261]},{\"text\":\"Wizkid\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554894083633602561,\"id_str\":\"1554894083633602561\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"url\":\"https:\\/\\/t.co\\/4cLztckKId\",\"display_url\":\"pic.twitter.com\\/4cLztckKId\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nnachigraciouss\\/status\\/1554894090600325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"large\":{\"w\":450,\"h\":300,\"resize\":\"fit\"}}}]},\"4224\":{\"hashtags\":[{\"text\":\"PremierLeague\",\"indices\":[92,106]},{\"text\":\"FPL\",\"indices\":[107,111]},{\"text\":\"ManUtd\",\"indices\":[112,119]},{\"text\":\"ManUtdFreeCristianoRonaldo\",\"indices\":[120,147]},{\"text\":\"BulletTrainMovie\",\"indices\":[148,165]},{\"text\":\"Pelosi\",\"indices\":[166,173]},{\"text\":\"Taiwan\",\"indices\":[174,181]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554893825079926784,\"id_str\":\"1554893825079926784\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"url\":\"https:\\/\\/t.co\\/q13uXAXOhv\",\"display_url\":\"pic.twitter.com\\/q13uXAXOhv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/goziedbrightest\\/status\\/1554893836513599488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"4225\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[33,41]},{\"text\":\"BulletTrainMovie\",\"indices\":[43,60]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[62,87]},{\"text\":\"Taiwan\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554892500804030470,\"id_str\":\"1554892500804030470\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"url\":\"https:\\/\\/t.co\\/48uTAiwxOg\",\"display_url\":\"pic.twitter.com\\/48uTAiwxOg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abiye_daniel\\/status\\/1554892872708669440\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":575,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":612,\"h\":1278,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"}}}]},\"4226\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[75,92]},{\"text\":\"Taiwan\",\"indices\":[93,100]},{\"text\":\"PokemonScarletViolet\",\"indices\":[101,122]},{\"text\":\"PokemonPresents\",\"indices\":[123,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4227\":{\"hashtags\":[{\"text\":\"BadDecisionsTrailer1\",\"indices\":[84,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Pelosi\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J34HrbVp1r\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/reel\\/CgxJ7rCNYHX\\/?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/reel\\/CgxJ7rCNY\\u2026\",\"indices\":[41,64]}]},\"4228\":{\"hashtags\":[{\"text\":\"BulletTrainMovie\",\"indices\":[147,164]},{\"text\":\"Taiwan\",\"indices\":[165,172]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[173,194]},{\"text\":\"BAT2023\",\"indices\":[195,203]},{\"text\":\"Buhari\",\"indices\":[204,211]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[21,29]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4WJLqys2lZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/davidhundeyin\\/status\\/1554876749888069632\",\"display_url\":\"twitter.com\\/davidhundeyin\\/\\u2026\",\"indices\":[212,235]}]},\"4229\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[169,179]},{\"text\":\"PokemonPresents\",\"indices\":[180,196]},{\"text\":\"Taiwan\",\"indices\":[197,204]},{\"text\":\"massage\",\"indices\":[205,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wimkbaMp6p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\",\"display_url\":\"twitter.com\\/skrimgadgets\\/s\\u2026\",\"indices\":[214,237]}]},\"4230\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[0,6]},{\"text\":\"Taiwan\",\"indices\":[36,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4231\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[95,100]},{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"BBNaija\",\"indices\":[109,117]},{\"text\":\"BBNaija7\",\"indices\":[118,127]},{\"text\":\"Awful\",\"indices\":[128,134]},{\"text\":\"Asake\",\"indices\":[135,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554888205891141634,\"id_str\":\"1554888205891141634\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"url\":\"https:\\/\\/t.co\\/xC6K2kPOD5\",\"display_url\":\"pic.twitter.com\\/xC6K2kPOD5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamnancy_koko\\/status\\/1554888288187596801\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"4232\":{\"hashtags\":[{\"text\":\"UkraineRussiaWar\",\"indices\":[78,95]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[112,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4233\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554887413008404480,\"id_str\":\"1554887413008404480\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"url\":\"https:\\/\\/t.co\\/Etcy2TXr2z\",\"display_url\":\"pic.twitter.com\\/Etcy2TXr2z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/midnytupdates\\/status\\/1554887434168573952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"}}}]},\"4234\":{\"hashtags\":[{\"text\":\"NewMusic\",\"indices\":[48,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"NewMusicDaily\",\"indices\":[66,80]},{\"text\":\"newmusic2022\",\"indices\":[81,94]},{\"text\":\"appleiphones\",\"indices\":[95,108]},{\"text\":\"PokemonPresents\",\"indices\":[109,125]},{\"text\":\"applemusic\",\"indices\":[127,138]},{\"text\":\"Spotify\",\"indices\":[139,147]},{\"text\":\"boomplaymusic\",\"indices\":[148,162]},{\"text\":\"audiomack\",\"indices\":[163,173]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[174,197]},{\"text\":\"latestmusic\",\"indices\":[198,210]},{\"text\":\"applemusicnigeria\",\"indices\":[211,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[268,278]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8QlKDYh454\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/starpankeli\\/terminator\",\"display_url\":\"distrokid.com\\/hyperfollow\\/st\\u2026\",\"indices\":[232,255]}]},\"4235\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]},{\"text\":\"BBNaija\",\"indices\":[33,41]},{\"text\":\"BBNajiaS7\",\"indices\":[42,52]},{\"text\":\"Machala\",\"indices\":[53,61]},{\"text\":\"Phyna\",\"indices\":[62,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554883391333535744,\"id_str\":\"1554883391333535744\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"url\":\"https:\\/\\/t.co\\/hYyok6F3by\",\"display_url\":\"pic.twitter.com\\/hYyok6F3by\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nworie_david\\/status\\/1554883393925554177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"4236\":{\"hashtags\":[{\"text\":\"GBPUSD\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"CryptocurrencyNews\",\"indices\":[89,108]},{\"text\":\"NFTs\",\"indices\":[109,114]},{\"text\":\"trade\",\"indices\":[115,121]},{\"text\":\"StocksMarket\",\"indices\":[122,135]},{\"text\":\"wednesdaythought\",\"indices\":[136,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mux6JrXWZj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554765892931801088\",\"display_url\":\"twitter.com\\/drickempire\\/st\\u2026\",\"indices\":[154,177]}],\"media\":[{\"id\":1554883068745469959,\"id_str\":\"1554883068745469959\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"url\":\"https:\\/\\/t.co\\/tyAdCFsssb\",\"display_url\":\"pic.twitter.com\\/tyAdCFsssb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554883093852479491\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":552,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":1208,\"h\":556,\"resize\":\"fit\"}}}]},\"4237\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4238\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"koundeisblue\",\"indices\":[251,264]},{\"text\":\"Chelsea\",\"indices\":[265,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4239\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"China\",\"indices\":[55,61]},{\"text\":\"WorldWarIII\",\"indices\":[62,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554881398879789056,\"id_str\":\"1554881398879789056\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"url\":\"https:\\/\\/t.co\\/tspuOt2IEp\",\"display_url\":\"pic.twitter.com\\/tspuOt2IEp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554881430416723970\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"4240\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[96,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"PokemonPresents\",\"indices\":[112,128]},{\"text\":\"wednesdaythought\",\"indices\":[129,146]},{\"text\":\"Davido\",\"indices\":[147,154]},{\"text\":\"BBNaija\",\"indices\":[155,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554881027591520260,\"id_str\":\"1554881027591520260\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"url\":\"https:\\/\\/t.co\\/NZ3ygeIhwq\",\"display_url\":\"pic.twitter.com\\/NZ3ygeIhwq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hisvert\\/status\\/1554881056008187904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}}}]},\"4241\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[151,158]},{\"text\":\"BuhariMustGo\",\"indices\":[159,172]},{\"text\":\"EndSARS\",\"indices\":[173,181]},{\"text\":\"enassustrike\",\"indices\":[182,195]},{\"text\":\"BBNajiaS7\",\"indices\":[203,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SHfiNDUPTG\",\"expanded_url\":\"https:\\/\\/fantasy.premierleague.com\\/leagues\\/auto-join\\/1fjmg4\",\"display_url\":\"fantasy.premierleague.com\\/leagues\\/auto-j\\u2026\",\"indices\":[77,100]}]},\"4242\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"PokemonPresents\",\"indices\":[93,109]},{\"text\":\"midjourney\",\"indices\":[110,121]},{\"text\":\"adventure\",\"indices\":[122,132]},{\"text\":\"Growth\",\"indices\":[133,140]},{\"text\":\"learn\",\"indices\":[141,147]},{\"text\":\"learning\",\"indices\":[148,157]},{\"text\":\"selfcare\",\"indices\":[158,167]},{\"text\":\"Selfdevelopment\",\"indices\":[168,184]},{\"text\":\"LearnToEarn\",\"indices\":[185,197]},{\"text\":\"LearningAndDevelopment\",\"indices\":[198,221]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4243\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"davidhundeyin\",\"indices\":[257,271]},{\"text\":\"China\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vanguardngrnews\",\"name\":\"Vanguard Newspapers\",\"id\":39975533,\"id_str\":\"39975533\",\"indices\":[232,248]}],\"urls\":[]},\"4244\":{\"hashtags\":[{\"text\":\"OBIDIENTS\",\"indices\":[19,29]},{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"Wizkid\",\"indices\":[39,46]},{\"text\":\"EbubeaguMustGo\",\"indices\":[47,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554876192368607233,\"id_str\":\"1554876192368607233\",\"indices\":[63,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"url\":\"https:\\/\\/t.co\\/l9TrkZDPB3\",\"display_url\":\"pic.twitter.com\\/l9TrkZDPB3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jasper_nwankwo\\/status\\/1554876236282863616\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}}}]},\"4245\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"sabinus\",\"indices\":[83,91]},{\"text\":\"Buhari\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WvuevmThJO\",\"expanded_url\":\"https:\\/\\/youtu.be\\/jmCkA5CPzg0\",\"display_url\":\"youtu.be\\/jmCkA5CPzg0\",\"indices\":[50,73]}]},\"4246\":{\"hashtags\":[{\"text\":\"Terminator\",\"indices\":[48,59]},{\"text\":\"applemusic\",\"indices\":[60,71]},{\"text\":\"SpotifyPlaylist\",\"indices\":[72,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"audiomack\",\"indices\":[97,107]},{\"text\":\"iTunes\",\"indices\":[108,115]},{\"text\":\"applemusicnigeria\",\"indices\":[116,134]},{\"text\":\"AfrobeatRadio\",\"indices\":[135,149]},{\"text\":\"BulletTrainMovie\",\"indices\":[150,167]},{\"text\":\"Terminal21Korat\",\"indices\":[168,184]},{\"text\":\"lagos\",\"indices\":[185,191]},{\"text\":\"NewYorkCity\",\"indices\":[192,204]},{\"text\":\"CaliforniaAdventure\",\"indices\":[205,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[264,274]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8QlKDYh454\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/starpankeli\\/terminator\",\"display_url\":\"distrokid.com\\/hyperfollow\\/st\\u2026\",\"indices\":[228,251]}]},\"4247\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[142,149]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4248\":{\"hashtags\":[{\"text\":\"P2Egaming\",\"indices\":[13,23]},{\"text\":\"Whitelist\",\"indices\":[95,105]},{\"text\":\"NFTGiveaways\",\"indices\":[116,129]},{\"text\":\"CryptoNews\",\"indices\":[130,141]},{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"BulletTrainMovie\",\"indices\":[150,167]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WarpBond\",\"name\":\"Warp Game \\/\\/ \\ud835\\udddf\\ud835\\uddd4\\ud835\\udde8\\ud835\\udde1\\ud835\\uddd6\\ud835\\udddb\\ud835\\udddc\\ud835\\udde1\\ud835\\uddda \\ud835\\udde6\\ud835\\uddd8\\ud835\\uddd4\\ud835\\udde6\\ud835\\udde2\\ud835\\udde1 \\ud835\\udfee\",\"id\":1468745083629490188,\"id_str\":\"1468745083629490188\",\"indices\":[40,49]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TVq8PkZ7EX\",\"expanded_url\":\"https:\\/\\/warp.game\\/\",\"display_url\":\"warp.game\",\"indices\":[177,200]},{\"url\":\"https:\\/\\/t.co\\/oWoGOLR8El\",\"expanded_url\":\"https:\\/\\/demo.warp.game\\/\",\"display_url\":\"demo.warp.game\",\"indices\":[207,230]},{\"url\":\"https:\\/\\/t.co\\/3OQiWdyaN6\",\"expanded_url\":\"https:\\/\\/warpcountdown.com\\/\",\"display_url\":\"warpcountdown.com\",\"indices\":[240,263]}],\"media\":[{\"id\":1554875107327238146,\"id_str\":\"1554875107327238146\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"url\":\"https:\\/\\/t.co\\/0abiCiufk2\",\"display_url\":\"pic.twitter.com\\/0abiCiufk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnAshafa\\/status\\/1554875116768608256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"4249\":{\"hashtags\":[{\"text\":\"PeterDrury\",\"indices\":[19,30]},{\"text\":\"PeterObi\",\"indices\":[31,40]},{\"text\":\"PremierLeague\",\"indices\":[41,55]},{\"text\":\"BBNaija\",\"indices\":[56,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"China\",\"indices\":[73,79]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554875039073419270,\"id_str\":\"1554875039073419270\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"url\":\"https:\\/\\/t.co\\/Nz9c0LorqE\",\"display_url\":\"pic.twitter.com\\/Nz9c0LorqE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ay_adeyinka\\/status\\/1554875042147827712\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":586,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"}}}]},\"4250\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Taipei\",\"indices\":[167,174]},{\"text\":\"Boehly\",\"indices\":[175,182]},{\"text\":\"Mamadollarz\",\"indices\":[183,195]},{\"text\":\"ASUU\",\"indices\":[196,201]},{\"text\":\"PeterDrury\",\"indices\":[202,213]},{\"text\":\"Room1\",\"indices\":[214,220]},{\"text\":\"Osimhem\",\"indices\":[221,229]},{\"text\":\"Vitinha\",\"indices\":[230,238]},{\"text\":\"China\",\"indices\":[239,245]},{\"text\":\"Shower\",\"indices\":[246,253]},{\"text\":\"Isco\",\"indices\":[254,259]},{\"text\":\"kovacic\",\"indices\":[260,268]},{\"text\":\"Buhari\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"betsmasterspro\",\"name\":\"William Iwu\",\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"indices\":[142,157]}],\"urls\":[],\"media\":[{\"id\":1554873912382705664,\"id_str\":\"1554873912382705664\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"url\":\"https:\\/\\/t.co\\/2NDXPRWunF\",\"display_url\":\"pic.twitter.com\\/2NDXPRWunF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AkotuJosep\\/status\\/1554873915180302344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":570,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"}}}]},\"4251\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"NancyPelosi\",\"indices\":[6,18]},{\"text\":\"Taiwan\",\"indices\":[19,26]},{\"text\":\"USHouseSpeakerNancyPelosi\",\"indices\":[27,53]},{\"text\":\"Washington\",\"indices\":[54,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C2jJb4l4lU\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SW0Qn3\",\"display_url\":\"dlvr.it\\/SW0Qn3\",\"indices\":[130,153]}]},\"4252\":{\"hashtags\":[{\"text\":\"obidients\",\"indices\":[208,218]},{\"text\":\"Taiwan\",\"indices\":[219,226]},{\"text\":\"BBNaija\",\"indices\":[227,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554872529357078530,\"id_str\":\"1554872529357078530\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"url\":\"https:\\/\\/t.co\\/scYmhRCniz\",\"display_url\":\"pic.twitter.com\\/scYmhRCniz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872532582400001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":447,\"resize\":\"fit\"}}}]},\"4253\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"boycottrakshabandhan\",\"indices\":[86,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554872198287990785,\"id_str\":\"1554872198287990785\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"url\":\"https:\\/\\/t.co\\/ewQV3c6jLC\",\"display_url\":\"pic.twitter.com\\/ewQV3c6jLC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872252679815169\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4254\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"BBNaija\",\"indices\":[82,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4255\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"Godisworking\",\"indices\":[83,96]},{\"text\":\"thingsout\",\"indices\":[97,107]},{\"text\":\"VirumanAudioLaunch\",\"indices\":[108,127]},{\"text\":\"sermon\",\"indices\":[128,135]},{\"text\":\"audio\",\"indices\":[136,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554869821082423302,\"id_str\":\"1554869821082423302\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"url\":\"https:\\/\\/t.co\\/fuKr5l8Xzy\",\"display_url\":\"pic.twitter.com\\/fuKr5l8Xzy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/henry_saliu\\/status\\/1554869975638474752\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":856,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":803,\"resize\":\"fit\"}}}]},\"4256\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[134,152]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"accessbank_help\",\"name\":\"Access Bank Help\",\"id\":2164455380,\"id_str\":\"2164455380\",\"indices\":[0,16]}],\"urls\":[]},\"4257\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[243,250]},{\"text\":\"LoveIsland2022\",\"indices\":[251,266]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4258\":{\"hashtags\":[{\"text\":\"OBIdientlyYUSful\",\"indices\":[210,227]},{\"text\":\"PeterObi\",\"indices\":[228,237]},{\"text\":\"Taiwan\",\"indices\":[238,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sFqLr7SfdN\",\"expanded_url\":\"https:\\/\\/globalupfront.com\\/2022\\/08\\/02\\/on-omatseyes-obituary\\/\",\"display_url\":\"globalupfront.com\\/2022\\/08\\/02\\/on-\\u2026\",\"indices\":[256,279]}]},\"4259\":{\"hashtags\":[{\"text\":\"knust\",\"indices\":[118,124]},{\"text\":\"GHOneNews\",\"indices\":[125,135]},{\"text\":\"TV3GH\",\"indices\":[136,142]},{\"text\":\"BulletTrainMovie\",\"indices\":[143,160]},{\"text\":\"PokemonPresents\",\"indices\":[161,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]},{\"text\":\"sabinus\",\"indices\":[186,194]},{\"text\":\"massage\",\"indices\":[195,203]},{\"text\":\"burnaboy\",\"indices\":[204,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8qxrUmffmR\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCAv69et7iH43M97Lp6qgcoQ\",\"display_url\":\"youtube.com\\/channel\\/UCAv69\\u2026\",\"indices\":[93,116]}]},\"4260\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Wizkid\",\"indices\":[117,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554738998655983618,\"id_str\":\"1554738998655983618\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"url\":\"https:\\/\\/t.co\\/kuHBbuIPqq\",\"display_url\":\"pic.twitter.com\\/kuHBbuIPqq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DIRTY_TROLL_\\/status\\/1554739088699318274\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554739088699318274,\"source_status_id_str\":\"1554739088699318274\",\"source_user_id\":1383416665023516684,\"source_user_id_str\":\"1383416665023516684\"}]},\"4261\":{\"hashtags\":[{\"text\":\"Sportivation\",\"indices\":[0,13]},{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"BulletTrainMovie\",\"indices\":[135,152]},{\"text\":\"PokemonPresents\",\"indices\":[154,170]},{\"text\":\"sabinus\",\"indices\":[172,180]},{\"text\":\"massage\",\"indices\":[182,190]},{\"text\":\"PrabhasForSitaRamam\",\"indices\":[191,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/u9ttZck0yO\",\"expanded_url\":\"https:\\/\\/sportivation.com.ng\\/2022\\/08\\/03\\/marcellinus-anyanwu-joins-nff-presidential-race-reveals-plans-for-nigerian-football\\/\",\"display_url\":\"sportivation.com.ng\\/2022\\/08\\/03\\/mar\\u2026\",\"indices\":[101,124]}]},\"4262\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"Taipei\",\"indices\":[152,159]},{\"text\":\"China\",\"indices\":[160,166]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[167,185]},{\"text\":\"NancyPelosi\",\"indices\":[186,198]},{\"text\":\"asantekotoko\",\"indices\":[199,212]},{\"text\":\"GFA\",\"indices\":[213,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554863381533921284,\"id_str\":\"1554863381533921284\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"url\":\"https:\\/\\/t.co\\/IpIJS16Q0a\",\"display_url\":\"pic.twitter.com\\/IpIJS16Q0a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554863391801577475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4263\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"Pelosi\",\"indices\":[257,264]},{\"text\":\"davidhundeyin\",\"indices\":[265,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4264\":{\"hashtags\":[{\"text\":\"CAKEGOD\",\"indices\":[24,32]},{\"text\":\"BulletTrainMovie\",\"indices\":[33,50]},{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"BBNaijaGuinnessSmooth\",\"indices\":[59,81]},{\"text\":\"comedy\",\"indices\":[82,89]},{\"text\":\"NigerianIdol\",\"indices\":[90,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554863071339991040,\"id_str\":\"1554863071339991040\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"url\":\"https:\\/\\/t.co\\/X0g1q2rmkP\",\"display_url\":\"pic.twitter.com\\/X0g1q2rmkP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dazai_Mill\\/status\\/1554863081024589824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"}}}]},\"4265\":{\"hashtags\":[{\"text\":\"Bigivy\",\"indices\":[27,34]},{\"text\":\"trans\",\"indices\":[36,42]},{\"text\":\"Sarkodie\",\"indices\":[43,52]},{\"text\":\"shattawaleinnungua\",\"indices\":[53,72]},{\"text\":\"KwesiArthur\",\"indices\":[73,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"sabinus\",\"indices\":[94,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554862730775085060,\"id_str\":\"1554862730775085060\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"url\":\"https:\\/\\/t.co\\/kFuvOwtASi\",\"display_url\":\"pic.twitter.com\\/kFuvOwtASi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Xamhani5\\/status\\/1554862857627598849\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"4266\":{\"hashtags\":[{\"text\":\"16children\",\"indices\":[27,38]},{\"text\":\"PeterObi4President2023\",\"indices\":[39,62]},{\"text\":\"Pelosi\",\"indices\":[64,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554859071911727105,\"id_str\":\"1554859071911727105\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"url\":\"https:\\/\\/t.co\\/HdEwRH6iPT\",\"display_url\":\"pic.twitter.com\\/HdEwRH6iPT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLUWASHEYNOR\\/status\\/1554862669466853387\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"4267\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[174,188]},{\"text\":\"sabinus\",\"indices\":[189,197]},{\"text\":\"Taiwan\",\"indices\":[198,205]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[56,70]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XYMuG4d0yL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554854442897473539\",\"display_url\":\"twitter.com\\/channelstv\\/sta\\u2026\",\"indices\":[206,229]}]},\"4268\":{\"hashtags\":[{\"text\":\"mm2\",\"indices\":[61,65]},{\"text\":\"mm2trading\",\"indices\":[66,77]},{\"text\":\"AamirKhan\",\"indices\":[78,88]},{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"ROBLOX\",\"indices\":[97,104]},{\"text\":\"offer\",\"indices\":[105,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4269\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"PokemonScarletViolet\",\"indices\":[29,50]},{\"text\":\"AamirKhan\",\"indices\":[51,61]},{\"text\":\"\\u0e42\\u0e2b\\u0e19\\u0e01\\u0e23\\u0e30\\u0e41\\u0e2a\",\"indices\":[62,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4270\":{\"hashtags\":[{\"text\":\"Illorin\",\"indices\":[65,73]},{\"text\":\"EndPolio\",\"indices\":[77,86]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"orthosis\",\"indices\":[215,224]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lionheart1759\",\"name\":\"Kunle Adeyanju\",\"id\":1474005633699618823,\"id_str\":\"1474005633699618823\",\"indices\":[47,61]}],\"urls\":[],\"media\":[{\"id\":1554860741462745088,\"id_str\":\"1554860741462745088\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"url\":\"https:\\/\\/t.co\\/bVQg5LLuqJ\",\"display_url\":\"pic.twitter.com\\/bVQg5LLuqJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/taiwosharpakin\\/status\\/1554860847461179392\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4271\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[113,135]},{\"text\":\"AbujaFinders\",\"indices\":[136,149]},{\"text\":\"RealEstate\",\"indices\":[150,161]},{\"text\":\"PeterObi\",\"indices\":[162,171]},{\"text\":\"EndSARS\",\"indices\":[172,180]},{\"text\":\"Barcelona\",\"indices\":[181,191]},{\"text\":\"Barca\",\"indices\":[192,198]},{\"text\":\"PeterObi4President2023\",\"indices\":[199,222]},{\"text\":\"BBNaija7\",\"indices\":[223,232]},{\"text\":\"INEC\",\"indices\":[233,238]},{\"text\":\"Arewa4PeterObi\",\"indices\":[239,254]},{\"text\":\"BBNaija\",\"indices\":[255,263]},{\"text\":\"China\",\"indices\":[264,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554857936593338369,\"id_str\":\"1554857936593338369\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"url\":\"https:\\/\\/t.co\\/serqHvJW2C\",\"display_url\":\"pic.twitter.com\\/serqHvJW2C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554859470001475584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":1240,\"resize\":\"fit\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}}}]},\"4272\":{\"hashtags\":[{\"text\":\"Monalisa\",\"indices\":[98,107]},{\"text\":\"GoodmusicGoodTalk\",\"indices\":[183,201]},{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"BBNajia7\",\"indices\":[211,220]},{\"text\":\"Wizkid\",\"indices\":[221,228]},{\"text\":\"Pelosi\",\"indices\":[229,236]},{\"text\":\"China\",\"indices\":[237,243]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Lojaymusic\",\"name\":\"Lojay\",\"id\":216687915,\"id_str\":\"216687915\",\"indices\":[69,80]},{\"screen_name\":\"beatsbysarz\",\"name\":\"I am...\",\"id\":131481766,\"id_str\":\"131481766\",\"indices\":[85,97]},{\"screen_name\":\"Iam_Magixx\",\"name\":\"Magixx\",\"id\":885498311117074433,\"id_str\":\"885498311117074433\",\"indices\":[132,143]}],\"urls\":[],\"media\":[{\"id\":1554858363166593027,\"id_str\":\"1554858363166593027\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":452,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"}}}]},\"4273\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[20,27]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0kYIZoEshx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VaakaSegii\\/status\\/1554121845577752577\",\"display_url\":\"twitter.com\\/VaakaSegii\\/sta\\u2026\",\"indices\":[28,51]}],\"media\":[{\"id\":1554857654492741632,\"id_str\":\"1554857654492741632\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"url\":\"https:\\/\\/t.co\\/hXTkpuKOb9\",\"display_url\":\"pic.twitter.com\\/hXTkpuKOb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857741767802884\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4274\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lucqefmX72\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SunChelsea\\/status\\/1554704968506085377\",\"display_url\":\"twitter.com\\/SunChelsea\\/sta\\u2026\",\"indices\":[57,80]}],\"media\":[{\"id\":1554857307246415872,\"id_str\":\"1554857307246415872\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"url\":\"https:\\/\\/t.co\\/M0Ay75iMpk\",\"display_url\":\"pic.twitter.com\\/M0Ay75iMpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857391572795395\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4275\":{\"hashtags\":[{\"text\":\"ASUUStrikeUpdate\",\"indices\":[185,202]},{\"text\":\"Pelosi\",\"indices\":[203,210]},{\"text\":\"2023Elections\",\"indices\":[211,225]},{\"text\":\"ASUUstrike\",\"indices\":[226,237]},{\"text\":\"NaijaNews\",\"indices\":[238,248]},{\"text\":\"Obidatti2023\",\"indices\":[249,262]},{\"text\":\"BAT2023\",\"indices\":[263,271]},{\"text\":\"Atiku\",\"indices\":[272,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[34,42]}],\"urls\":[]},\"4276\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"Pelosi\",\"indices\":[24,31]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[32,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4277\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"PokemonScarletViolet\",\"indices\":[53,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4278\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"sabinus\",\"indices\":[54,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4279\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Pelosi\",\"indices\":[62,69]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4280\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"helicopter\",\"indices\":[118,129]},{\"text\":\"BBNajia\",\"indices\":[130,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554854169730842624,\"id_str\":\"1554854169730842624\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"url\":\"https:\\/\\/t.co\\/QXoeE58mqd\",\"display_url\":\"pic.twitter.com\\/QXoeE58mqd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ivyarcher75\\/status\\/1554854317353586690\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4281\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[220,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"businessowner\",\"indices\":[234,248]},{\"text\":\"businesstips\",\"indices\":[249,262]},{\"text\":\"businessgrowth\",\"indices\":[263,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554853575938940931,\"id_str\":\"1554853575938940931\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"url\":\"https:\\/\\/t.co\\/XaBB0uU303\",\"display_url\":\"pic.twitter.com\\/XaBB0uU303\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cyrillle_b\\/status\\/1554853584608673792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4282\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[39,47]},{\"text\":\"PokemonScarletViolet\",\"indices\":[48,69]},{\"text\":\"AamirKhan\",\"indices\":[70,80]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[81,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554851249660608512,\"id_str\":\"1554851249660608512\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"url\":\"https:\\/\\/t.co\\/SFtmooG4n4\",\"display_url\":\"pic.twitter.com\\/SFtmooG4n4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1554853500152336384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4283\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[84,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"helicopter\",\"indices\":[100,111]},{\"text\":\"BBNaija7\",\"indices\":[112,121]},{\"text\":\"Machala\",\"indices\":[122,130]},{\"text\":\"recession\",\"indices\":[131,141]},{\"text\":\"Pelosi\",\"indices\":[142,149]},{\"text\":\"Gistlover\",\"indices\":[150,160]},{\"text\":\"instagram\",\"indices\":[161,171]},{\"text\":\"sabinus\",\"indices\":[172,180]},{\"text\":\"PokemonScarletViolet\",\"indices\":[181,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4284\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"DonBelle\",\"indices\":[142,151]},{\"text\":\"Pelosi\",\"indices\":[152,159]},{\"text\":\"sabinus\",\"indices\":[160,168]},{\"text\":\"malariagenomics\",\"indices\":[169,185]},{\"text\":\"malaria\",\"indices\":[186,194]},{\"text\":\"Health\",\"indices\":[195,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZiEdkQUDPj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lynedgepharma\\/status\\/1554842317974310914?t=yn1ys5C7PGVWmAu5wzerxw&s=19\",\"display_url\":\"twitter.com\\/lynedgepharma\\/\\u2026\",\"indices\":[110,133]}]},\"4285\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[20,34]},{\"text\":\"Pelosi\",\"indices\":[35,42]},{\"text\":\"samomatseye\",\"indices\":[43,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554851448164335616,\"id_str\":\"1554851448164335616\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"url\":\"https:\\/\\/t.co\\/DREK7qMgFy\",\"display_url\":\"pic.twitter.com\\/DREK7qMgFy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamadeflow\\/status\\/1554851525855526912\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"4286\":{\"hashtags\":[{\"text\":\"AbujaTwitterCommunity\",\"indices\":[97,119]},{\"text\":\"AbujaFinders\",\"indices\":[120,133]},{\"text\":\"RealEstate\",\"indices\":[134,145]},{\"text\":\"PeterObi\",\"indices\":[146,155]},{\"text\":\"EndSARS\",\"indices\":[156,164]},{\"text\":\"Barcelona\",\"indices\":[165,175]},{\"text\":\"Barca\",\"indices\":[176,182]},{\"text\":\"PeterObi4President2023\",\"indices\":[183,206]},{\"text\":\"BBNaija7\",\"indices\":[207,216]},{\"text\":\"INEC\",\"indices\":[217,222]},{\"text\":\"Arewa4PeterObi\",\"indices\":[223,238]},{\"text\":\"BBNaija\",\"indices\":[239,247]},{\"text\":\"Chelsea\",\"indices\":[248,256]},{\"text\":\"Buhar\",\"indices\":[257,263]},{\"text\":\"China\",\"indices\":[264,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554850860961775625,\"id_str\":\"1554850860961775625\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"url\":\"https:\\/\\/t.co\\/cHw8nDiKoF\",\"display_url\":\"pic.twitter.com\\/cHw8nDiKoF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554850987222917128\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1232,\"resize\":\"fit\"}}}]},\"4287\":{\"hashtags\":[{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[68,75]},{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"kpss2022iptaledilsin\",\"indices\":[84,105]},{\"text\":\"BlueJays\",\"indices\":[106,115]},{\"text\":\"DonnyPangilinan\",\"indices\":[116,132]},{\"text\":\"Pelosi\",\"indices\":[133,140]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[141,162]},{\"text\":\"music\",\"indices\":[163,169]},{\"text\":\"musique\",\"indices\":[170,178]},{\"text\":\"Musica\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554849122989101058,\"id_str\":\"1554849122989101058\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"url\":\"https:\\/\\/t.co\\/z92cabRhki\",\"display_url\":\"pic.twitter.com\\/z92cabRhki\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magojazzy\\/status\\/1554849169902297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"4288\":{\"hashtags\":[{\"text\":\"Cubana\",\"indices\":[226,233]},{\"text\":\"Taiwan\",\"indices\":[249,256]},{\"text\":\"Pelosi\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Geogem_Contrs\",\"name\":\"Geo-Gem Contractors\",\"id\":1531719197729890304,\"id_str\":\"1531719197729890304\",\"indices\":[141,155]}],\"urls\":[],\"media\":[{\"id\":1554847712171917312,\"id_str\":\"1554847712171917312\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"url\":\"https:\\/\\/t.co\\/cpMeY6l4qn\",\"display_url\":\"pic.twitter.com\\/cpMeY6l4qn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/King_Edrah\\/status\\/1554847720237588483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":485,\"resize\":\"fit\"}}}]},\"4289\":{\"hashtags\":[{\"text\":\"drill\",\"indices\":[237,243]},{\"text\":\"Pelosi\",\"indices\":[244,251]},{\"text\":\"MUFC\",\"indices\":[252,257]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"my234Radio\",\"name\":\"234\\ud835\\udc11\\ud835\\udc1a\\ud835\\udc1d\\ud835\\udc22\\ud835\\udc28 \\ud83c\\udf0d\",\"id\":1601359999,\"id_str\":\"1601359999\",\"indices\":[59,70]},{\"screen_name\":\"Oba_peejay\",\"name\":\"Kheengn Peterson\",\"id\":1507703194671013889,\"id_str\":\"1507703194671013889\",\"indices\":[71,82]},{\"screen_name\":\"KeinzGrm_\",\"name\":\"KEINZ \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udde7\",\"id\":1121149434484678658,\"id_str\":\"1121149434484678658\",\"indices\":[83,93]},{\"screen_name\":\"Dareal_Pterslim\",\"name\":\"Future_God\",\"id\":3434035049,\"id_str\":\"3434035049\",\"indices\":[94,110]},{\"screen_name\":\"Big__Derah\",\"name\":\"Big Derah\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udf6f\\ud83e\\udd85\",\"id\":1463239851344642058,\"id_str\":\"1463239851344642058\",\"indices\":[111,122]},{\"screen_name\":\"roque55O\",\"name\":\"Unruly K!NG\",\"id\":223485283,\"id_str\":\"223485283\",\"indices\":[123,132]},{\"screen_name\":\"HipHopDX\",\"name\":\"HipHopDX\",\"id\":15319698,\"id_str\":\"15319698\",\"indices\":[133,142]},{\"screen_name\":\"mtmedia_uk\",\"name\":\"MTMEDIA.UK\",\"id\":1286657956470239233,\"id_str\":\"1286657956470239233\",\"indices\":[143,154]},{\"screen_name\":\"DailyMail\",\"name\":\"Daily Mail US\",\"id\":380285402,\"id_str\":\"380285402\",\"indices\":[155,165]},{\"screen_name\":\"MTVBaseAfrica\",\"name\":\"MTV Base Africa\",\"id\":25959730,\"id_str\":\"25959730\",\"indices\":[166,180]},{\"screen_name\":\"_EstherOnyinye\",\"name\":\"Hexstelle\\ud83c\\udf3c\\u2b50\",\"id\":1003435925546962944,\"id_str\":\"1003435925546962944\",\"indices\":[181,196]},{\"screen_name\":\"PsychoYP\",\"name\":\"bando baby\\u26a1\\ufe0f\",\"id\":490162127,\"id_str\":\"490162127\",\"indices\":[197,206]},{\"screen_name\":\"JAE5_\",\"name\":\"Jae5\",\"id\":303113270,\"id_str\":\"303113270\",\"indices\":[207,213]},{\"screen_name\":\"Santandave1\",\"name\":\"SANTAN\",\"id\":539506506,\"id_str\":\"539506506\",\"indices\":[214,226]},{\"screen_name\":\"YAWTOG_\",\"name\":\"YUNG BULL\\ud83d\\udc03\",\"id\":1180160657641136128,\"id_str\":\"1180160657641136128\",\"indices\":[227,235]}],\"urls\":[],\"media\":[{\"id\":1554845222231855104,\"id_str\":\"1554845222231855104\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"url\":\"https:\\/\\/t.co\\/Vhy6XUmv6N\",\"display_url\":\"pic.twitter.com\\/Vhy6XUmv6N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jay_Chopa\\/status\\/1554847318733688835\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4290\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LDDvWm5FAU\",\"expanded_url\":\"http:\\/\\/www.jobblasts.com\",\"display_url\":\"jobblasts.com\",\"indices\":[229,252]}],\"media\":[{\"id\":1554847143323750402,\"id_str\":\"1554847143323750402\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"url\":\"https:\\/\\/t.co\\/ERYYncJ91y\",\"display_url\":\"pic.twitter.com\\/ERYYncJ91y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobblasts_ng\\/status\\/1554847181386940416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"4291\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"AamirKhan\",\"indices\":[76,86]},{\"text\":\"PokemonScarletViolet\",\"indices\":[87,108]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[109,130]},{\"text\":\"BlueJays\",\"indices\":[131,140]},{\"text\":\"BBC\",\"indices\":[141,145]},{\"text\":\"BBNaijaSeason7\",\"indices\":[146,161]},{\"text\":\"music\",\"indices\":[162,168]},{\"text\":\"LoveIslandUSA\",\"indices\":[169,183]},{\"text\":\"Colorado\",\"indices\":[184,193]},{\"text\":\"PepsiBlue\",\"indices\":[194,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554845900652134403,\"id_str\":\"1554845900652134403\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"url\":\"https:\\/\\/t.co\\/8rhcyAquDi\",\"display_url\":\"pic.twitter.com\\/8rhcyAquDi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554845904175259648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4292\":{\"hashtags\":[{\"text\":\"EmpiresSMP\",\"indices\":[92,103]},{\"text\":\"EndSARS\",\"indices\":[104,112]},{\"text\":\"Taiwan\",\"indices\":[113,120]},{\"text\":\"AamirKhan\",\"indices\":[121,131]},{\"text\":\"PokemonScarletViolet\",\"indices\":[132,153]},{\"text\":\"Mnakwethu\",\"indices\":[154,164]},{\"text\":\"mavin\",\"indices\":[165,171]},{\"text\":\"30BG\",\"indices\":[172,177]},{\"text\":\"supportingartist\",\"indices\":[178,195]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fireboydml\",\"name\":\"Fireboy DML\",\"id\":4537552402,\"id_str\":\"4537552402\",\"indices\":[24,35]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[36,43]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[44,53]},{\"screen_name\":\"stefflondon\",\"name\":\"1DON\",\"id\":360486593,\"id_str\":\"360486593\",\"indices\":[54,66]},{\"screen_name\":\"EMPIRE\",\"name\":\"EMPIRE\",\"id\":172143832,\"id_str\":\"172143832\",\"indices\":[67,74]},{\"screen_name\":\"WiseKingoffici1\",\"name\":\"Official Wiseking\",\"id\":1342889742501896192,\"id_str\":\"1342889742501896192\",\"indices\":[75,91]}],\"urls\":[],\"media\":[{\"id\":1554845768808370183,\"id_str\":\"1554845768808370183\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"url\":\"https:\\/\\/t.co\\/lomyxzo19t\",\"display_url\":\"pic.twitter.com\\/lomyxzo19t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WiseKingoffici1\\/status\\/1554845844062470145\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"4293\":{\"hashtags\":[{\"text\":\"Batgirl\",\"indices\":[39,47]},{\"text\":\"Taiwan\",\"indices\":[48,55]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C9ax86h1qt\",\"expanded_url\":\"https:\\/\\/eptv.ng\\/2022\\/08\\/03\\/uti-nwachukwu-celebrates-40th-birthday\\/\",\"display_url\":\"eptv.ng\\/2022\\/08\\/03\\/uti\\u2026\",\"indices\":[58,81]}]},\"4294\":{\"hashtags\":[{\"text\":\"kano\",\"indices\":[23,28]},{\"text\":\"Oshiomole\",\"indices\":[29,39]},{\"text\":\"Room1\",\"indices\":[40,46]},{\"text\":\"Napoli\",\"indices\":[47,54]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"arisetv\",\"indices\":[64,72]},{\"text\":\"witcher\",\"indices\":[73,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554843949231120384,\"id_str\":\"1554843949231120384\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"url\":\"https:\\/\\/t.co\\/U490y2rN72\",\"display_url\":\"pic.twitter.com\\/U490y2rN72\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CaresValu\\/status\\/1554844905943564290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1717,\"h\":1016,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":710,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":402,\"resize\":\"fit\"}}}]},\"4295\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[11,21]},{\"text\":\"China\",\"indices\":[60,66]},{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"Pelosi\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554843903404154880,\"id_str\":\"1554843903404154880\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"url\":\"https:\\/\\/t.co\\/COouUZAqTK\",\"display_url\":\"pic.twitter.com\\/COouUZAqTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MixedPie\\/status\\/1554843910261932034\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":278,\"resize\":\"fit\"}}}]},\"4296\":{\"hashtags\":[{\"text\":\"obituary\",\"indices\":[19,28]},{\"text\":\"Room1\",\"indices\":[29,35]},{\"text\":\"Wizkid\",\"indices\":[36,43]},{\"text\":\"oshiomole\",\"indices\":[44,54]},{\"text\":\"witcher\",\"indices\":[55,63]},{\"text\":\"ASUU\",\"indices\":[64,69]},{\"text\":\"Taiwan\",\"indices\":[70,77]},{\"text\":\"ifb\",\"indices\":[78,82]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554843508820905984,\"id_str\":\"1554843508820905984\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"url\":\"https:\\/\\/t.co\\/xYqiMXKCQi\",\"display_url\":\"pic.twitter.com\\/xYqiMXKCQi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibbultalkative\\/status\\/1554843537736351744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1122,\"h\":1497,\"resize\":\"fit\"}}}]},\"4297\":{\"hashtags\":[{\"text\":\"Noise\",\"indices\":[129,135]},{\"text\":\"Wizkid\",\"indices\":[224,231]},{\"text\":\"helicopter\",\"indices\":[232,243]},{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"UkraineRussiaWar\",\"indices\":[252,269]},{\"text\":\"Russia\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4298\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"PokemonScarletViolet\",\"indices\":[106,127]},{\"text\":\"Viruman\",\"indices\":[128,136]},{\"text\":\"helicopter\",\"indices\":[137,148]},{\"text\":\"Machala\",\"indices\":[149,157]},{\"text\":\"Trending\",\"indices\":[158,167]},{\"text\":\"festac\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554840616395329538,\"id_str\":\"1554840616395329538\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"url\":\"https:\\/\\/t.co\\/HrGoPtUEdp\",\"display_url\":\"pic.twitter.com\\/HrGoPtUEdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialUgoo\\/status\\/1554840769541840897\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4299\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[36,42]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554840585546121216,\"id_str\":\"1554840585546121216\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"url\":\"https:\\/\\/t.co\\/M52dtXFSPt\",\"display_url\":\"pic.twitter.com\\/M52dtXFSPt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officiall_26\\/status\\/1554840595432177666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}}]},\"4300\":{\"hashtags\":[{\"text\":\"sapa\",\"indices\":[93,98]},{\"text\":\"MotivationalQuotes\",\"indices\":[99,118]},{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"music\",\"indices\":[127,133]},{\"text\":\"Birmingham2022\",\"indices\":[134,149]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"officialnairam1\",\"name\":\"nairamarley\",\"id\":1150409755342573569,\"id_str\":\"1150409755342573569\",\"indices\":[14,30]},{\"screen_name\":\"zinoleesky01\",\"name\":\"zinoleesky\",\"id\":1356975348559273984,\"id_str\":\"1356975348559273984\",\"indices\":[31,44]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[45,53]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[54,61]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[62,72]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[73,82]},{\"screen_name\":\"miabaga\",\"name\":\"M.I\",\"id\":41662487,\"id_str\":\"41662487\",\"indices\":[83,91]}],\"urls\":[],\"media\":[{\"id\":1554839954383052801,\"id_str\":\"1554839954383052801\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"url\":\"https:\\/\\/t.co\\/Ed0hyzm5a0\",\"display_url\":\"pic.twitter.com\\/Ed0hyzm5a0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magret_james2\\/status\\/1554840044241911810\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4301\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]},{\"text\":\"helicopter\",\"indices\":[69,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839842743279618,\"id_str\":\"1554839842743279618\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4302\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[44,51]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839385920749569,\"id_str\":\"1554839385920749569\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4303\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"professora\",\"indices\":[87,98]},{\"text\":\"Pelosi\",\"indices\":[99,106]},{\"text\":\"akanda\",\"indices\":[107,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554839111319506944,\"id_str\":\"1554839111319506944\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"url\":\"https:\\/\\/t.co\\/ziFs7wdpro\",\"display_url\":\"pic.twitter.com\\/ziFs7wdpro\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sir_werry\\/status\\/1554839139752652802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":805,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1235,\"resize\":\"fit\"},\"small\":{\"w\":456,\"h\":680,\"resize\":\"fit\"}}}]},\"4304\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[93,101]},{\"text\":\"Taiwan\",\"indices\":[102,109]},{\"text\":\"GGA\",\"indices\":[110,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4305\":{\"hashtags\":[{\"text\":\"Sabinus\",\"indices\":[245,253]},{\"text\":\"Taiwan\",\"indices\":[254,261]},{\"text\":\"China\",\"indices\":[262,268]},{\"text\":\"Russia\",\"indices\":[269,276]},{\"text\":\"Ukraine\",\"indices\":[277,285]},{\"text\":\"uk\",\"indices\":[286,289]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4306\":{\"hashtags\":[{\"text\":\"30BG\",\"indices\":[130,135]},{\"text\":\"davido\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"PokemonScarletViolet\",\"indices\":[152,173]},{\"text\":\"AamirKhan\",\"indices\":[174,184]},{\"text\":\"DonBelle\",\"indices\":[185,194]},{\"text\":\"sabinus\",\"indices\":[195,203]},{\"text\":\"helicopter\",\"indices\":[204,215]},{\"text\":\"DonnyPangilinan\",\"indices\":[216,232]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[0,7]},{\"screen_name\":\"Pheelz\",\"name\":\"Pheelz\\ud83d\\udc18\\ud83e\\udd1f\\ud83c\\udffe\",\"id\":202175978,\"id_str\":\"202175978\",\"indices\":[10,17]}],\"urls\":[],\"media\":[{\"id\":1554837753874944002,\"id_str\":\"1554837753874944002\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"url\":\"https:\\/\\/t.co\\/VPSRUhRh8v\",\"display_url\":\"pic.twitter.com\\/VPSRUhRh8v\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554838024537509889\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"4307\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554837535502716938,\"id_str\":\"1554837535502716938\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}}]},\"4308\":{\"hashtags\":[{\"text\":\"music\",\"indices\":[234,240]},{\"text\":\"Taiwan\",\"indices\":[241,248]},{\"text\":\"UK\",\"indices\":[249,252]},{\"text\":\"USA\",\"indices\":[253,257]},{\"text\":\"sabinus\",\"indices\":[258,266]},{\"text\":\"JackInTheBox\",\"indices\":[267,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4309\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[140,146]},{\"text\":\"Foreign\",\"indices\":[147,155]},{\"text\":\"NancyPelosi\",\"indices\":[156,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"US\",\"indices\":[177,180]},{\"text\":\"bobojay\",\"indices\":[181,189]},{\"text\":\"bobojaytv\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7TgVmLgnwK\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/china-starts-military-exercises-as-nancy-pelosi-meets-taiwans-president\\/\",\"display_url\":\"bobojaytv.com\\/china-starts-m\\u2026\",\"indices\":[84,107]}],\"media\":[{\"id\":1554836955468165121,\"id_str\":\"1554836955468165121\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"url\":\"https:\\/\\/t.co\\/X4VdFxKEE2\",\"display_url\":\"pic.twitter.com\\/X4VdFxKEE2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554836957687005186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":533,\"resize\":\"fit\"}}}]},\"4310\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"music\",\"indices\":[234,240]},{\"text\":\"AamirKhan\",\"indices\":[241,251]},{\"text\":\"nsfwtwt\",\"indices\":[264,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4311\":{\"hashtags\":[{\"text\":\"WesternPost\",\"indices\":[83,95]},{\"text\":\"NancyPelosi\",\"indices\":[97,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"USA\",\"indices\":[118,122]},{\"text\":\"China\",\"indices\":[123,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i8u27vB1bD\",\"expanded_url\":\"https:\\/\\/westernpost.ng\\/us-house-speaker-nancy-pelosi-lands-in-taiwan-amid-threats-of-chinese-retaliation\\/\",\"display_url\":\"westernpost.ng\\/us-house-speak\\u2026\",\"indices\":[131,154]}]},\"4312\":{\"hashtags\":[{\"text\":\"Russia\",\"indices\":[149,156]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[157,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"Pelosi\",\"indices\":[189,196]},{\"text\":\"Trending\",\"indices\":[197,206]},{\"text\":\"Viral\",\"indices\":[207,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554835170859003904,\"id_str\":\"1554835170859003904\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"url\":\"https:\\/\\/t.co\\/XPenvRyXEc\",\"display_url\":\"pic.twitter.com\\/XPenvRyXEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554835221819731969\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}}}]},\"4313\":{\"hashtags\":[{\"text\":\"Foreign\",\"indices\":[148,156]},{\"text\":\"Kremlin\",\"indices\":[157,165]},{\"text\":\"news\",\"indices\":[166,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"bobojay\",\"indices\":[180,188]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Cx1vEaqwqu\",\"expanded_url\":\"https:\\/\\/bobojaytv.com\\/kremlin-tension-over-nancy-pelosis-taiwan-visit-should-not-be-underestimated\\/\",\"display_url\":\"bobojaytv.com\\/kremlin-tensio\\u2026\",\"indices\":[92,115]}],\"media\":[{\"id\":1554835161350492164,\"id_str\":\"1554835161350492164\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"url\":\"https:\\/\\/t.co\\/lbgqYYK7r6\",\"display_url\":\"pic.twitter.com\\/lbgqYYK7r6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554835162839465992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"4314\":{\"hashtags\":[{\"text\":\"moneymadness\",\"indices\":[8,21]},{\"text\":\"africa\",\"indices\":[108,115]},{\"text\":\"Taiwan\",\"indices\":[116,123]},{\"text\":\"Pelosi\",\"indices\":[124,131]},{\"text\":\"news\",\"indices\":[132,137]},{\"text\":\"NEW\",\"indices\":[138,142]},{\"text\":\"music\",\"indices\":[143,149]},{\"text\":\"Demi\",\"indices\":[150,155]},{\"text\":\"MONEY\",\"indices\":[163,169]},{\"text\":\"moneymadness\",\"indices\":[170,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RKTnxgtKzB\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/sappzee-1\\/album\\/simple-lyrics-1\",\"display_url\":\"audiomack.com\\/sappzee-1\\/albu\\u2026\",\"indices\":[83,106]}],\"media\":[{\"id\":1554835050029387782,\"id_str\":\"1554835050029387782\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"url\":\"https:\\/\\/t.co\\/AVYQjSFrmC\",\"display_url\":\"pic.twitter.com\\/AVYQjSFrmC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sappzee\\/status\\/1554835145458212865\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}}}]},\"4315\":{\"hashtags\":[{\"text\":\"pi\",\"indices\":[107,110]},{\"text\":\"core\",\"indices\":[111,116]},{\"text\":\"SatoshiPlusConsensus\",\"indices\":[117,138]},{\"text\":\"btcs\",\"indices\":[139,144]},{\"text\":\"btc\",\"indices\":[145,149]},{\"text\":\"Bitcoin\",\"indices\":[150,158]},{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Solana\",\"indices\":[167,174]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[0,11]},{\"screen_name\":\"CoreMining_1\",\"name\":\"CORE Mining (Satoshi)\",\"id\":1553043982623596545,\"id_str\":\"1553043982623596545\",\"indices\":[92,105]}],\"urls\":[],\"media\":[{\"id\":1554835119990456320,\"id_str\":\"1554835119990456320\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"url\":\"https:\\/\\/t.co\\/MkpeC7yxpc\",\"display_url\":\"pic.twitter.com\\/MkpeC7yxpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KafeEazy\\/status\\/1554835123329064961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"},\"small\":{\"w\":449,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"}}}]},\"4316\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"Xi\",\"indices\":[71,74]},{\"text\":\"Kano\",\"indices\":[83,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554831314158727171,\"id_str\":\"1554831314158727171\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"url\":\"https:\\/\\/t.co\\/EL3gICOawv\",\"display_url\":\"pic.twitter.com\\/EL3gICOawv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ovie_matt\\/status\\/1554831323415490560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"}}}]},\"4317\":{\"hashtags\":[{\"text\":\"renticapartment\",\"indices\":[89,105]},{\"text\":\"lagosnigeria\",\"indices\":[106,119]},{\"text\":\"BBNaija\",\"indices\":[121,129]},{\"text\":\"BBNajia\",\"indices\":[135,143]},{\"text\":\"Pelosi\",\"indices\":[222,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554830855607951364,\"id_str\":\"1554830855607951364\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"url\":\"https:\\/\\/t.co\\/MWfCcGsFBl\",\"display_url\":\"pic.twitter.com\\/MWfCcGsFBl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554830864189575175\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4318\":{\"hashtags\":[{\"text\":\"Pinterest\",\"indices\":[104,114]},{\"text\":\"artists\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4319\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"China\",\"indices\":[71,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4320\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[107,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"bellathorne\",\"indices\":[123,135]},{\"text\":\"PeterObi\",\"indices\":[136,145]},{\"text\":\"abuja\",\"indices\":[146,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4321\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[129,136]},{\"text\":\"sabinus\",\"indices\":[137,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"internships\",\"indices\":[154,166]},{\"text\":\"designthinking\",\"indices\":[167,182]},{\"text\":\"designinspiration\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4322\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"RCCGConvention\",\"indices\":[66,81]},{\"text\":\"helicopter\",\"indices\":[84,95]},{\"text\":\"WWIII\",\"indices\":[98,104]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"Xi\",\"indices\":[113,116]},{\"text\":\"World\",\"indices\":[125,131]},{\"text\":\"Reno\",\"indices\":[140,145]},{\"text\":\"TinubuShettima2023\",\"indices\":[146,165]},{\"text\":\"Tinubu\",\"indices\":[166,173]},{\"text\":\"Atiku\",\"indices\":[174,180]},{\"text\":\"IPOB\",\"indices\":[181,186]},{\"text\":\"Hausas\",\"indices\":[189,196]},{\"text\":\"fulani\",\"indices\":[197,204]},{\"text\":\"Yorubas\",\"indices\":[207,215]},{\"text\":\"Igbos\",\"indices\":[216,222]},{\"text\":\"Nigerians\",\"indices\":[223,233]},{\"text\":\"BBNajia\",\"indices\":[234,242]},{\"text\":\"Buhari\",\"indices\":[243,250]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[251,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825216634675202,\"id_str\":\"1554825216634675202\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"url\":\"https:\\/\\/t.co\\/1GLM8ZiUMW\",\"display_url\":\"pic.twitter.com\\/1GLM8ZiUMW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abubillaal\\/status\\/1554825762682769413\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"}}}]},\"4323\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[76,99]},{\"text\":\"davidhundeyin\",\"indices\":[101,115]},{\"text\":\"congratulationsozo\",\"indices\":[117,136]},{\"text\":\"arisetv\",\"indices\":[137,145]},{\"text\":\"transhumancoin\",\"indices\":[147,162]},{\"text\":\"oshiomole\",\"indices\":[164,174]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"Ronaldo\",\"indices\":[185,193]},{\"text\":\"Messi\",\"indices\":[195,201]},{\"text\":\"TakeBackNaija\",\"indices\":[203,217]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ENIBOY\",\"name\":\"Eniola Akinkuotu\",\"id\":73236395,\"id_str\":\"73236395\",\"indices\":[12,19]}],\"urls\":[]},\"4324\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"appledaily\",\"indices\":[105,116]},{\"text\":\"sabinus\",\"indices\":[117,125]},{\"text\":\"applemusicrt\",\"indices\":[126,139]},{\"text\":\"ApplePay\",\"indices\":[140,149]},{\"text\":\"ApplePencil\",\"indices\":[150,162]},{\"text\":\"applemusic\",\"indices\":[163,174]},{\"text\":\"applemusicnigeria\",\"indices\":[175,193]},{\"text\":\"Pelosi\",\"indices\":[194,201]},{\"text\":\"BlueJays\",\"indices\":[202,211]},{\"text\":\"LagosSwindlers\",\"indices\":[212,227]},{\"text\":\"applemusicamerica\",\"indices\":[228,246]},{\"text\":\"Haiti\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[61,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SR7gmdCcUq\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/adulthood-anthem-ii-single\\/1631043083?uo=4&app=apple+music\",\"display_url\":\"music.apple.com\\/us\\/album\\/adult\\u2026\",\"indices\":[256,279]}]},\"4325\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825360847486980,\"id_str\":\"1554825360847486980\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4326\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825494058508289,\"id_str\":\"1554825494058508289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"}}}]},\"4327\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825262377811968,\"id_str\":\"1554825262377811968\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4328\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825186494427139,\"id_str\":\"1554825186494427139\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4329\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554825064314417152,\"id_str\":\"1554825064314417152\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}}]},\"4330\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824914997104643,\"id_str\":\"1554824914997104643\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":527,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"}}}]},\"4331\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824782532661254,\"id_str\":\"1554824782532661254\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"}}}]},\"4332\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824708050132994,\"id_str\":\"1554824708050132994\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}}]},\"4333\":{\"hashtags\":[{\"text\":\"peacefulTaiwan\",\"indices\":[59,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[83,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ukr\",\"name\":\"Ukraine\",\"id\":8043902,\"id_str\":\"8043902\",\"indices\":[10,14]},{\"screen_name\":\"Ukraine\",\"name\":\"Ukraine \\/ \\u0423\\u043a\\u0440\\u0430\\u0457\\u043d\\u0430\",\"id\":732521058507620356,\"id_str\":\"732521058507620356\",\"indices\":[15,23]},{\"screen_name\":\"china\",\"name\":\"CHINA\",\"id\":1196328007,\"id_str\":\"1196328007\",\"indices\":[24,30]},{\"screen_name\":\"PDChinaLife\",\"name\":\"Beautiful China\",\"id\":1164937093656862720,\"id_str\":\"1164937093656862720\",\"indices\":[31,43]},{\"screen_name\":\"Taiwan_Today\",\"name\":\"Taiwan Today\",\"id\":121371581,\"id_str\":\"121371581\",\"indices\":[44,57]}],\"urls\":[]},\"4334\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824580723724289,\"id_str\":\"1554824580723724289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}}]},\"4335\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824485064192000,\"id_str\":\"1554824485064192000\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":615,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"}}}]},\"4336\":{\"hashtags\":[{\"text\":\"osimhen\",\"indices\":[82,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"HelicopterCrash\",\"indices\":[99,115]},{\"text\":\"DonnyPangilinan\",\"indices\":[116,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2g4Wc7gzYP\",\"expanded_url\":\"http:\\/\\/owosports.com.ng\\/osimhen-napolis-future-in-doubt-after-comments-from-president-over-african-stars\\/\",\"display_url\":\"owosports.com.ng\\/osimhen-napoli\\u2026\",\"indices\":[133,156]}]},\"4337\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824406114832386,\"id_str\":\"1554824406114832386\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4338\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824310216265728,\"id_str\":\"1554824310216265728\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":667,\"resize\":\"fit\"}}}]},\"4339\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824210907684867,\"id_str\":\"1554824210907684867\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4340\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824123146125312,\"id_str\":\"1554824123146125312\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"4341\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"obituary\",\"indices\":[202,211]},{\"text\":\"samomatseys\",\"indices\":[212,224]},{\"text\":\"taiwan\",\"indices\":[225,232]},{\"text\":\"emily\",\"indices\":[233,239]},{\"text\":\"tinubu\",\"indices\":[240,247]},{\"text\":\"Ronaldo\",\"indices\":[248,256]},{\"text\":\"rufai\",\"indices\":[257,263]},{\"text\":\"sabinus\",\"indices\":[264,272]},{\"text\":\"bernd\",\"indices\":[273,279]},{\"text\":\"china\",\"indices\":[280,286]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554824058440626177,\"id_str\":\"1554824058440626177\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}}]},\"4342\":{\"hashtags\":[{\"text\":\"Cucurella\",\"indices\":[260,270]},{\"text\":\"Taiwan\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4343\":{\"hashtags\":[{\"text\":\"Gavi\",\"indices\":[30,35]},{\"text\":\"WorldwarIII\",\"indices\":[36,48]},{\"text\":\"sabinus\",\"indices\":[49,57]},{\"text\":\"movies\",\"indices\":[58,65]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"Ukraine\",\"indices\":[74,82]},{\"text\":\"brighton\",\"indices\":[83,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554823196238442499,\"id_str\":\"1554823196238442499\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"url\":\"https:\\/\\/t.co\\/GNZfMrWyoH\",\"display_url\":\"pic.twitter.com\\/GNZfMrWyoH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobinson10\\/status\\/1554823249082605570\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"4344\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[126,137]},{\"text\":\"PrivateJet\",\"indices\":[138,149]},{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"Pelosi\",\"indices\":[158,165]},{\"text\":\"travel\",\"indices\":[166,173]},{\"text\":\"Aviation\",\"indices\":[174,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554823128924073984,\"id_str\":\"1554823128924073984\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"url\":\"https:\\/\\/t.co\\/uN0H1vPHWE\",\"display_url\":\"pic.twitter.com\\/uN0H1vPHWE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flyhezix\\/status\\/1554823137191010304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4345\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"Trending\",\"indices\":[63,72]},{\"text\":\"Viral\",\"indices\":[73,79]},{\"text\":\"LoveIsland2022\",\"indices\":[80,95]},{\"text\":\"Pelosi\",\"indices\":[96,103]},{\"text\":\"sabinus\",\"indices\":[104,112]},{\"text\":\"DonBelle\",\"indices\":[113,122]},{\"text\":\"massage\",\"indices\":[123,131]},{\"text\":\"helicopter\",\"indices\":[132,143]},{\"text\":\"Birmingham2022\",\"indices\":[144,159]},{\"text\":\"BelleMariano\",\"indices\":[160,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554822967028109313,\"id_str\":\"1554822967028109313\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"url\":\"https:\\/\\/t.co\\/dYbMkB0eWO\",\"display_url\":\"pic.twitter.com\\/dYbMkB0eWO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pearlz_blaq\\/status\\/1554822970660360192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":438,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":625,\"h\":970,\"resize\":\"fit\"},\"large\":{\"w\":625,\"h\":970,\"resize\":\"fit\"}}}]},\"4346\":{\"hashtags\":[{\"text\":\"iTunes\",\"indices\":[92,99]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[100,112]},{\"text\":\"iTunes\\u30ab\\u30fc\\u30c9\\u914d\\u5e03\",\"indices\":[113,125]},{\"text\":\"itunes\\u914d\\u5e03\",\"indices\":[126,135]},{\"text\":\"itunesafrica\",\"indices\":[136,149]},{\"text\":\"iPadPro\",\"indices\":[150,158]},{\"text\":\"itunesghana\",\"indices\":[159,171]},{\"text\":\"Taiwan\",\"indices\":[172,179]},{\"text\":\"sabinus\",\"indices\":[180,188]},{\"text\":\"Solana\",\"indices\":[190,197]},{\"text\":\"UkraineRussiaWar\",\"indices\":[198,215]},{\"text\":\"PeterObi4President2023\",\"indices\":[216,239]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DistroKid\",\"name\":\"DistroKid\",\"id\":1466086093,\"id_str\":\"1466086093\",\"indices\":[61,71]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9BKh8azwH\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/adulthood-anthem-ii-single\\/1631043083?uo=4&app=itunes&at=1001lry3&ct=twitter\",\"display_url\":\"music.apple.com\\/us\\/album\\/adult\\u2026\",\"indices\":[242,265]}]},\"4347\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[113,124]},{\"text\":\"Japa\",\"indices\":[125,130]},{\"text\":\"XiJinping\",\"indices\":[131,141]},{\"text\":\"ChelseaFC\",\"indices\":[142,152]},{\"text\":\"BHAFC\",\"indices\":[153,159]},{\"text\":\"CFC\",\"indices\":[160,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eu6MfQUQWL\",\"expanded_url\":\"https:\\/\\/bittylink.com\\/bmv\",\"display_url\":\"bittylink.com\\/bmv\",\"indices\":[89,112]}],\"media\":[{\"id\":1554821460660629504,\"id_str\":\"1554821460660629504\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"url\":\"https:\\/\\/t.co\\/S9yDKiqfdh\",\"display_url\":\"pic.twitter.com\\/S9yDKiqfdh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoorTony\\/status\\/1554822673993068546\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4348\":{\"hashtags\":[{\"text\":\"ASUUStrikeUpdate\",\"indices\":[109,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[135,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4349\":{\"hashtags\":[{\"text\":\"wednesdaythought\",\"indices\":[189,206]},{\"text\":\"esreicht\",\"indices\":[207,216]},{\"text\":\"Taiwan\",\"indices\":[217,224]},{\"text\":\"YENA_SMARTPHONE\",\"indices\":[225,241]},{\"text\":\"BBNaija\",\"indices\":[242,250]},{\"text\":\"Pelosi\",\"indices\":[251,258]},{\"text\":\"sabinus\",\"indices\":[259,267]},{\"text\":\"DonBelle\",\"indices\":[268,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QQdshVYR8Y\",\"expanded_url\":\"https:\\/\\/youtu.be\\/GQg4dhE2d6o\",\"display_url\":\"youtu.be\\/GQg4dhE2d6o\",\"indices\":[121,144]},{\"url\":\"https:\\/\\/t.co\\/nY84jN4orE\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/hopvicproduction\\/\",\"display_url\":\"instagram.com\\/hopvicproducti\\u2026\",\"indices\":[165,188]}]},\"4350\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Solana\",\"indices\":[65,72]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[73,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[106,113]},{\"text\":\"Ukraine\",\"indices\":[114,122]},{\"text\":\"BibleBuild\",\"indices\":[123,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"BlueJays\",\"indices\":[154,163]},{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"UkraineRussiaWar\",\"indices\":[176,193]},{\"text\":\"DonnyPangilinan\",\"indices\":[194,210]},{\"text\":\"UkraineRussiaWar\",\"indices\":[211,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820649977143297,\"id_str\":\"1554820649977143297\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"url\":\"https:\\/\\/t.co\\/PLgY1dIXk6\",\"display_url\":\"pic.twitter.com\\/PLgY1dIXk6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820786933735425\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4351\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"Solana\",\"indices\":[65,72]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[73,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[106,113]},{\"text\":\"Ukraine\",\"indices\":[114,122]},{\"text\":\"BibleBuild\",\"indices\":[123,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"BlueJays\",\"indices\":[154,163]},{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"UkraineRussiaWar\",\"indices\":[176,193]},{\"text\":\"DonnyPangilinan\",\"indices\":[194,210]},{\"text\":\"UkraineRussiaWar\",\"indices\":[211,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820479541596162,\"id_str\":\"1554820479541596162\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"url\":\"https:\\/\\/t.co\\/TaQtXc29sS\",\"display_url\":\"pic.twitter.com\\/TaQtXc29sS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820709485928450\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4352\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[206,216]},{\"text\":\"Bbnaija\",\"indices\":[217,225]},{\"text\":\"sabinus\",\"indices\":[226,234]},{\"text\":\"SheggzFC\",\"indices\":[235,244]},{\"text\":\"Machala\",\"indices\":[245,253]},{\"text\":\"Bryann\",\"indices\":[254,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V95Z1YzYt7\",\"expanded_url\":\"https:\\/\\/bit.ly\\/38ZHaGG\",\"display_url\":\"bit.ly\\/38ZHaGG\",\"indices\":[156,179]},{\"url\":\"https:\\/\\/t.co\\/7RLDwaJ1Q9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[181,204]}],\"media\":[{\"id\":1554820524752179200,\"id_str\":\"1554820524752179200\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"url\":\"https:\\/\\/t.co\\/b6Klbwjbg0\",\"display_url\":\"pic.twitter.com\\/b6Klbwjbg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554820531186286592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":530,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":530,\"resize\":\"fit\"}}}]},\"4353\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[98,105]},{\"text\":\"LoveIsland2022\",\"indices\":[106,121]},{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[130,138]},{\"text\":\"LoveIsland2022\",\"indices\":[139,154]},{\"text\":\"sabinus\",\"indices\":[155,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820383890497540,\"id_str\":\"1554820383890497540\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"url\":\"https:\\/\\/t.co\\/YnkSN8AI7d\",\"display_url\":\"pic.twitter.com\\/YnkSN8AI7d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BelloIlias\\/status\\/1554820392237248512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4354\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[171,178]},{\"text\":\"PeterObi4President\",\"indices\":[179,198]},{\"text\":\"HapWhiskeyXOZO\",\"indices\":[240,255]},{\"text\":\"OzoemenaChukwuOZO\",\"indices\":[256,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554820340127338497,\"id_str\":\"1554820340127338497\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"url\":\"https:\\/\\/t.co\\/zKU1MjgFni\",\"display_url\":\"pic.twitter.com\\/zKU1MjgFni\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1554820342190948353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"large\":{\"w\":616,\"h\":498,\"resize\":\"fit\"}}}]},\"4355\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[245,252]},{\"text\":\"Machala\",\"indices\":[253,261]},{\"text\":\"WednesdayMotivation\",\"indices\":[262,282]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4356\":{\"hashtags\":[{\"text\":\"diabetes\",\"indices\":[83,92]},{\"text\":\"herbalife_nutrition\",\"indices\":[93,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554816408265039873,\"id_str\":\"1554816408265039873\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4357\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"sabinus\",\"indices\":[155,163]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[164,177]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[66,75]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mzzNbsFPxT\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazzy-by-dejavudmj\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[114,137]}],\"media\":[{\"id\":1554816265025462273,\"id_str\":\"1554816265025462273\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"url\":\"https:\\/\\/t.co\\/sYSZHcYIuU\",\"display_url\":\"pic.twitter.com\\/sYSZHcYIuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554816276471681024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4358\":{\"hashtags\":[{\"text\":\"citicbs\",\"indices\":[0,8]},{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[9,21]},{\"text\":\"tiboinshape\",\"indices\":[23,35]},{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"\\u0633\\u0643\\u0631\\u0628\\u062a76\",\"indices\":[46,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rCH5mVvNNM\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/playlist?list=PLxLXLeyyS_OIgYGX6oUYkK6jnYaQzx2A2\",\"display_url\":\"youtube.com\\/playlist?list=\\u2026\",\"indices\":[91,114]}]},\"4359\":{\"hashtags\":[{\"text\":\"Davido\",\"indices\":[127,134]},{\"text\":\"sabinus\",\"indices\":[135,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554815484083716096,\"id_str\":\"1554815484083716096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"url\":\"https:\\/\\/t.co\\/2hrwFNjoTy\",\"display_url\":\"pic.twitter.com\\/2hrwFNjoTy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554815491369324544\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"4360\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554814985557123072,\"id_str\":\"1554814985557123072\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"url\":\"https:\\/\\/t.co\\/gibonV5QKp\",\"display_url\":\"pic.twitter.com\\/gibonV5QKp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554815003668135939\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4361\":{\"hashtags\":[{\"text\":\"BeninCityMall\",\"indices\":[120,134]},{\"text\":\"Taiwan\",\"indices\":[137,144]},{\"text\":\"sabinus\",\"indices\":[147,155]},{\"text\":\"BibleBuild\",\"indices\":[158,169]},{\"text\":\"Pelosi\",\"indices\":[172,179]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554814611970560000,\"id_str\":\"1554814611970560000\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"url\":\"https:\\/\\/t.co\\/V1HrxtBzz9\",\"display_url\":\"pic.twitter.com\\/V1HrxtBzz9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Obi_ajulu\\/status\\/1554814620853993475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4362\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554814493322088450,\"id_str\":\"1554814493322088450\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"url\":\"https:\\/\\/t.co\\/hXgO9IeAYb\",\"display_url\":\"pic.twitter.com\\/hXgO9IeAYb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554814505036693506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}}}]},\"4363\":{\"hashtags\":[{\"text\":\"MyNewsNE\",\"indices\":[47,56]},{\"text\":\"USA\",\"indices\":[57,61]},{\"text\":\"Support\",\"indices\":[62,70]},{\"text\":\"China\",\"indices\":[71,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"Impasse\",\"indices\":[86,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aOLsaJQ8GU\",\"expanded_url\":\"https:\\/\\/en.mynewsne.com\\/us-show-of-support-amid-china-taiwan-impasse\\/\",\"display_url\":\"en.mynewsne.com\\/us-show-of-sup\\u2026\",\"indices\":[95,118]}]},\"4364\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[196,210]},{\"text\":\"ChinaTaiwan\",\"indices\":[211,223]},{\"text\":\"Nigeria\",\"indices\":[224,232]},{\"text\":\"level2\",\"indices\":[233,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813734006161408,\"id_str\":\"1554813734006161408\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"url\":\"https:\\/\\/t.co\\/JioBYqDFhh\",\"display_url\":\"pic.twitter.com\\/JioBYqDFhh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Naijamatterblog\\/status\\/1554813907788877827\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"4365\":{\"hashtags\":[{\"text\":\"\\u0e1a\\u0e2d\\u0e25\\u0e40\\u0e0a\\u0e34\\u0e0d\\u0e22\\u0e34\\u0e49\\u0e21\",\"indices\":[0,12]},{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"LoveDamini\",\"indices\":[21,32]},{\"text\":\"LoveIsland2022\",\"indices\":[33,48]},{\"text\":\"BurnaBoy\",\"indices\":[49,58]},{\"text\":\"music\",\"indices\":[59,65]},{\"text\":\"DONBELLEmpire\",\"indices\":[66,80]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[83,92]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[93,101]},{\"screen_name\":\"ubifranklin1\",\"name\":\"ubi Franklin ofem\",\"id\":15223566,\"id_str\":\"15223566\",\"indices\":[102,115]},{\"screen_name\":\"_AsiwajuLerry\",\"name\":\"LERRY \\ud83d\\udc51\",\"id\":1353862573016428544,\"id_str\":\"1353862573016428544\",\"indices\":[116,130]},{\"screen_name\":\"Iampelga_\",\"name\":\"BabyPel \\ud83e\\udd85\\ud83e\\udd84\\u2763\\ufe0f\",\"id\":1351249442779901961,\"id_str\":\"1351249442779901961\",\"indices\":[131,141]},{\"screen_name\":\"officialnairam1\",\"name\":\"nairamarley\",\"id\":1150409755342573569,\"id_str\":\"1150409755342573569\",\"indices\":[142,158]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[159,166]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[167,176]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[177,186]},{\"screen_name\":\"SOUNDCITYtv\",\"name\":\"SOUNDCITY AFRICA!\",\"id\":35279836,\"id_str\":\"35279836\",\"indices\":[187,199]},{\"screen_name\":\"AtlanticRecords\",\"name\":\"Atlantic Records\",\"id\":24429991,\"id_str\":\"24429991\",\"indices\":[200,216]},{\"screen_name\":\"MAVINRECORDS\",\"name\":\"MAVIN RECORDS\",\"id\":546237443,\"id_str\":\"546237443\",\"indices\":[217,230]},{\"screen_name\":\"AtlanticRcrdsUK\",\"name\":\"Atlantic Records UK\",\"id\":82408842,\"id_str\":\"82408842\",\"indices\":[231,247]}],\"urls\":[],\"media\":[{\"id\":1554813716616691714,\"id_str\":\"1554813716616691714\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"url\":\"https:\\/\\/t.co\\/2Shx63fCq9\",\"display_url\":\"pic.twitter.com\\/2Shx63fCq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554813806672596994\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}}}]},\"4366\":{\"hashtags\":[{\"text\":\"AS_I_dey\",\"indices\":[77,86]},{\"text\":\"Taiwan\",\"indices\":[246,253]},{\"text\":\"debhie\",\"indices\":[254,261]},{\"text\":\"AsIDey\",\"indices\":[262,269]},{\"text\":\"sabinus\",\"indices\":[270,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Debhieofficial\",\"name\":\"Debhie \\ud83e\\udd81 AS I DEY VIDEO PREMIERES 6PM TONIGHT\",\"id\":972111695211528192,\"id_str\":\"972111695211528192\",\"indices\":[0,15]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XjTVjKPsm0\",\"expanded_url\":\"https:\\/\\/youtu.be\\/LV32f80iO2I\",\"display_url\":\"youtu.be\\/LV32f80iO2I\",\"indices\":[221,244]}],\"media\":[{\"id\":1554813660085755907,\"id_str\":\"1554813660085755907\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"url\":\"https:\\/\\/t.co\\/estdPqJOQ4\",\"display_url\":\"pic.twitter.com\\/estdPqJOQ4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aprokorepublic\\/status\\/1554813725508571137\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":856,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"medium\":{\"w\":856,\"h\":480,\"resize\":\"fit\"}}}]},\"4367\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[87,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813486064189442,\"id_str\":\"1554813486064189442\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"url\":\"https:\\/\\/t.co\\/n0O3V41onu\",\"display_url\":\"pic.twitter.com\\/n0O3V41onu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554813586194792448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"4368\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[196,201]},{\"text\":\"MamaDollaz\",\"indices\":[203,214]},{\"text\":\"Racism\",\"indices\":[216,223]},{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"JackieChan\",\"indices\":[232,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813279620440064,\"id_str\":\"1554813279620440064\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"4369\":{\"hashtags\":[{\"text\":\"Osimhen\",\"indices\":[129,137]},{\"text\":\"Chukwuemeka\",\"indices\":[138,150]},{\"text\":\"JackieChan\",\"indices\":[151,162]},{\"text\":\"declan\",\"indices\":[163,170]},{\"text\":\"Obituary\",\"indices\":[171,180]},{\"text\":\"Kano\",\"indices\":[181,186]},{\"text\":\"Cubana\",\"indices\":[187,194]},{\"text\":\"Tinubu\",\"indices\":[195,202]},{\"text\":\"NnamdiKanu\",\"indices\":[203,214]},{\"text\":\"davidhundeyin\",\"indices\":[215,229]},{\"text\":\"airtel\",\"indices\":[230,237]},{\"text\":\"Mourinho\",\"indices\":[238,247]},{\"text\":\"Mount\",\"indices\":[248,254]},{\"text\":\"Taiwan\",\"indices\":[255,262]},{\"text\":\"arisetv\",\"indices\":[263,271]},{\"text\":\"ASUU\",\"indices\":[272,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554813156626677760,\"id_str\":\"1554813156626677760\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":514,\"h\":680,\"resize\":\"fit\"}}}]},\"4370\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812894998663169,\"id_str\":\"1554812894998663169\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"url\":\"https:\\/\\/t.co\\/8b4mXYiRXi\",\"display_url\":\"pic.twitter.com\\/8b4mXYiRXi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812936102838272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":473,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4371\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"Solana\",\"indices\":[77,84]},{\"text\":\"Ukraine\",\"indices\":[85,93]},{\"text\":\"Wizkid\",\"indices\":[94,101]},{\"text\":\"BibleBuild\",\"indices\":[102,113]},{\"text\":\"news\",\"indices\":[114,119]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[120,138]},{\"text\":\"BBNajiaS7\",\"indices\":[139,149]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[56,66]}],\"urls\":[],\"media\":[{\"id\":1554812860714418178,\"id_str\":\"1554812860714418178\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"url\":\"https:\\/\\/t.co\\/eImPrKR2Vs\",\"display_url\":\"pic.twitter.com\\/eImPrKR2Vs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequesttimes\\/status\\/1554812868356349954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4372\":{\"hashtags\":[{\"text\":\"Church\",\"indices\":[83,90]},{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"biblewonderland\",\"indices\":[99,115]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812796168294401,\"id_str\":\"1554812796168294401\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"url\":\"https:\\/\\/t.co\\/LfYSxPZruW\",\"display_url\":\"pic.twitter.com\\/LfYSxPZruW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BibleWonderLand\\/status\\/1554812801448902656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4373\":{\"hashtags\":[{\"text\":\"DonnyPangilinan\",\"indices\":[40,56]},{\"text\":\"sabinus\",\"indices\":[57,65]},{\"text\":\"helicopter\",\"indices\":[66,77]},{\"text\":\"Twitter\",\"indices\":[78,86]},{\"text\":\"TREASURE\",\"indices\":[87,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[113,120]},{\"text\":\"BlueJays\",\"indices\":[121,130]},{\"text\":\"BelleMariano\",\"indices\":[131,144]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[145,167]},{\"text\":\"massage\",\"indices\":[168,176]},{\"text\":\"LoveDamini\",\"indices\":[177,188]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812704623366144,\"id_str\":\"1554812704623366144\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"url\":\"https:\\/\\/t.co\\/BWJR5IVhyG\",\"display_url\":\"pic.twitter.com\\/BWJR5IVhyG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obi_Jules\\/status\\/1554812726647611393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4374\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812325546303490,\"id_str\":\"1554812325546303490\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"url\":\"https:\\/\\/t.co\\/8wVAc3JTrI\",\"display_url\":\"pic.twitter.com\\/8wVAc3JTrI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812455939092480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":399,\"resize\":\"fit\"}}}]},\"4375\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554812082058678272,\"id_str\":\"1554812082058678272\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"url\":\"https:\\/\\/t.co\\/aFCQiipXKe\",\"display_url\":\"pic.twitter.com\\/aFCQiipXKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812098168754176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"4376\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"sabinus\",\"indices\":[167,175]},{\"text\":\"asuu\",\"indices\":[176,181]},{\"text\":\"ASUU\",\"indices\":[182,187]},{\"text\":\"dejong\",\"indices\":[188,195]},{\"text\":\"machala\",\"indices\":[196,204]},{\"text\":\"Trending\",\"indices\":[205,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4377\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[210,221]},{\"text\":\"Taiwan\",\"indices\":[222,229]},{\"text\":\"sabinus\",\"indices\":[230,238]},{\"text\":\"Obidatti2023\",\"indices\":[239,252]},{\"text\":\"BBNajiaS7\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554811869684187136,\"id_str\":\"1554811869684187136\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"url\":\"https:\\/\\/t.co\\/5gYFCbiciT\",\"display_url\":\"pic.twitter.com\\/5gYFCbiciT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554811872351866882\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"}}}]},\"4378\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[187,194]},{\"text\":\"Pelosi\",\"indices\":[195,202]},{\"text\":\"Solana\",\"indices\":[203,210]},{\"text\":\"ASUUstrike\",\"indices\":[211,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4379\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[197,204]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[205,220]},{\"text\":\"BBNaijaS7\",\"indices\":[221,231]},{\"text\":\"BBNaija\",\"indices\":[232,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554810869346979841,\"id_str\":\"1554810869346979841\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"url\":\"https:\\/\\/t.co\\/MTTKUFXeL5\",\"display_url\":\"pic.twitter.com\\/MTTKUFXeL5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldmyneTV\\/status\\/1554810881116078080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":341,\"resize\":\"fit\"}}}]},\"4380\":{\"hashtags\":[{\"text\":\"Infertility\",\"indices\":[163,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"NigerRepublic\",\"indices\":[184,198]},{\"text\":\"BBNaijaS7\",\"indices\":[199,209]},{\"text\":\"Obituary\",\"indices\":[210,219]},{\"text\":\"Emily\",\"indices\":[220,226]},{\"text\":\"BeninCityMall\",\"indices\":[227,241]},{\"text\":\"Ronaldo\",\"indices\":[242,250]},{\"text\":\"SamOmatseye\",\"indices\":[251,263]},{\"text\":\"Leno\",\"indices\":[264,269]},{\"text\":\"PeterObi\",\"indices\":[270,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c5IRIQTAQ1\",\"expanded_url\":\"http:\\/\\/www.afrhnigeria.org\",\"display_url\":\"afrhnigeria.org\",\"indices\":[138,161]}],\"media\":[{\"id\":1554809250807005184,\"id_str\":\"1554809250807005184\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"url\":\"https:\\/\\/t.co\\/dSvzH9zKm6\",\"display_url\":\"pic.twitter.com\\/dSvzH9zKm6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AFRHNig\\/status\\/1554810633786466306\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"4381\":{\"hashtags\":[{\"text\":\"knust\",\"indices\":[222,228]},{\"text\":\"Taiwan\",\"indices\":[229,236]},{\"text\":\"UkraineRussiaWar\",\"indices\":[237,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4382\":{\"hashtags\":[{\"text\":\"ASUU\",\"indices\":[0,5]},{\"text\":\"Taiwan\",\"indices\":[6,13]},{\"text\":\"Oshimen\",\"indices\":[14,22]},{\"text\":\"Solana\",\"indices\":[23,30]},{\"text\":\"helicopter\",\"indices\":[31,42]},{\"text\":\"sabinus\",\"indices\":[43,51]},{\"text\":\"Lautech\",\"indices\":[55,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554807689947095040,\"id_str\":\"1554807689947095040\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"url\":\"https:\\/\\/t.co\\/c4YyJ55VCk\",\"display_url\":\"pic.twitter.com\\/c4YyJ55VCk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamdannylaurels\\/status\\/1554807692920766467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"4383\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"Solana\",\"indices\":[29,36]},{\"text\":\"ASUUstrike\",\"indices\":[37,48]},{\"text\":\"sabinus\",\"indices\":[49,57]},{\"text\":\"Wizkid\",\"indices\":[58,65]},{\"text\":\"Machala\",\"indices\":[66,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554807508396539907,\"id_str\":\"1554807508396539907\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"url\":\"https:\\/\\/t.co\\/ON0Rt9DZRR\",\"display_url\":\"pic.twitter.com\\/ON0Rt9DZRR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554807550247313408\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"4384\":{\"hashtags\":[{\"text\":\"rorajaye\",\"indices\":[100,109]},{\"text\":\"Taiwan\",\"indices\":[180,187]},{\"text\":\"Batgirl\",\"indices\":[188,196]},{\"text\":\"Wizkid\",\"indices\":[197,204]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[207,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/awDqNWkeWB\",\"expanded_url\":\"https:\\/\\/form.jotform.com\\/222114774018046\",\"display_url\":\"form.jotform.com\\/222114774018046\",\"indices\":[155,178]}],\"media\":[{\"id\":1554807453371580416,\"id_str\":\"1554807453371580416\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"url\":\"https:\\/\\/t.co\\/gEEUK9uuNT\",\"display_url\":\"pic.twitter.com\\/gEEUK9uuNT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oluwanonieefa\\/status\\/1554807534371966981\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4385\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[108,116]},{\"text\":\"Tinubu\",\"indices\":[117,124]},{\"text\":\"Hermes\",\"indices\":[125,132]},{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"Jaruma\",\"indices\":[141,148]},{\"text\":\"racism\",\"indices\":[149,156]},{\"text\":\"NnamdiKanu\",\"indices\":[157,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4386\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554806476836831233,\"id_str\":\"1554806476836831233\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"url\":\"https:\\/\\/t.co\\/VHF846Ucn9\",\"display_url\":\"pic.twitter.com\\/VHF846Ucn9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554806541835968512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4387\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[146,153]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[154,179]},{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"China\",\"indices\":[189,195]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[196,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554806422696873985,\"id_str\":\"1554806422696873985\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"url\":\"https:\\/\\/t.co\\/Rh4GEKiBzb\",\"display_url\":\"pic.twitter.com\\/Rh4GEKiBzb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_Gpphilipson\\/status\\/1554806450366681088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4388\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"Obidatti2023\",\"indices\":[102,115]},{\"text\":\"Ukraine\",\"indices\":[116,124]},{\"text\":\"sabinus\",\"indices\":[125,133]},{\"text\":\"Wizkid\",\"indices\":[134,141]},{\"text\":\"helicopter\",\"indices\":[142,153]},{\"text\":\"BBNajiaS7\",\"indices\":[154,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554806097223028736,\"id_str\":\"1554806097223028736\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"url\":\"https:\\/\\/t.co\\/zhcpeyoRtP\",\"display_url\":\"pic.twitter.com\\/zhcpeyoRtP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554806099894747138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4389\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"Solana\",\"indices\":[140,147]},{\"text\":\"BBNaijaS7\",\"indices\":[148,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0BiTIgaSYO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\",\"display_url\":\"twitter.com\\/YOUNGPGTECH\\/st\\u2026\",\"indices\":[159,182]}]},\"4390\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[257,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4391\":{\"hashtags\":[{\"text\":\"davidhundeyin\",\"indices\":[80,94]},{\"text\":\"Aristv\",\"indices\":[96,103]},{\"text\":\"Ronaldo\",\"indices\":[105,113]},{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554804189703847939,\"id_str\":\"1554804189703847939\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"url\":\"https:\\/\\/t.co\\/DbuVmtLuX0\",\"display_url\":\"pic.twitter.com\\/DbuVmtLuX0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1880Tgold\\/status\\/1554804475784740865\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4392\":{\"hashtags\":[{\"text\":\"Ukraine\",\"indices\":[74,82]},{\"text\":\"UkraineRussiaWar\",\"indices\":[83,100]},{\"text\":\"UkraineWillWin\",\"indices\":[101,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[125,133]},{\"text\":\"Solana\",\"indices\":[134,141]},{\"text\":\"CloserWithDonBelle\",\"indices\":[142,161]},{\"text\":\"russiaisaterrorisstate\",\"indices\":[162,185]},{\"text\":\"RussiaInvadedUkraine\",\"indices\":[186,207]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KyivIndependent\",\"name\":\"The Kyiv Independent\",\"id\":1462548977367359490,\"id_str\":\"1462548977367359490\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554804166379405312,\"id_str\":\"1554804166379405312\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"url\":\"https:\\/\\/t.co\\/DLkbtWYTnR\",\"display_url\":\"pic.twitter.com\\/DLkbtWYTnR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fagman01\\/status\\/1554804208410497028\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"4393\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[199,206]},{\"text\":\"Pelosi\",\"indices\":[207,214]},{\"text\":\"china\",\"indices\":[215,221]},{\"text\":\"WWIII\",\"indices\":[222,228]},{\"text\":\"Scholarships\",\"indices\":[229,242]},{\"text\":\"UK\",\"indices\":[243,246]},{\"text\":\"Cheveningscholarship\",\"indices\":[247,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TxY6NW7rGy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\",\"display_url\":\"twitter.com\\/CheveningFCDO\\/\\u2026\",\"indices\":[269,292]}]},\"4394\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Solana\",\"indices\":[95,102]},{\"text\":\"CloserWithDonBelle\",\"indices\":[103,122]},{\"text\":\"Wizkid\",\"indices\":[123,130]},{\"text\":\"Batgirl\",\"indices\":[131,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[34,44]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[45,54]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[55,70]},{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[71,84]}],\"urls\":[],\"media\":[{\"id\":1554801684659986434,\"id_str\":\"1554801684659986434\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"url\":\"https:\\/\\/t.co\\/9RTAmNicmh\",\"display_url\":\"pic.twitter.com\\/9RTAmNicmh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Slimtalker2\\/status\\/1554801857461207042\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4395\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[41,48]},{\"text\":\"CloserWithDonBelle\",\"indices\":[49,68]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[69,77]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[78,101]},{\"text\":\"Ukraine\",\"indices\":[102,110]},{\"text\":\"Batgirl\",\"indices\":[111,119]},{\"text\":\"Wizkid\",\"indices\":[120,127]},{\"text\":\"BibleBuild\",\"indices\":[128,139]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[140,158]},{\"text\":\"helicopter\",\"indices\":[159,170]},{\"text\":\"BlueJays\",\"indices\":[171,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]},{\"text\":\"sabinus\",\"indices\":[189,197]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[198,205]},{\"text\":\"Italy\",\"indices\":[206,212]},{\"text\":\"ChrisBrown\",\"indices\":[213,224]},{\"text\":\"Trending\",\"indices\":[225,234]},{\"text\":\"TREASUREinManila\",\"indices\":[235,252]},{\"text\":\"TREASURE\",\"indices\":[253,262]},{\"text\":\"CFC\",\"indices\":[263,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554801195738439681,\"id_str\":\"1554801195738439681\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"url\":\"https:\\/\\/t.co\\/o6BiiEBYiS\",\"display_url\":\"pic.twitter.com\\/o6BiiEBYiS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554801255620530179\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4396\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[37,45]},{\"text\":\"Solana\",\"indices\":[46,53]},{\"text\":\"CloserWithDonBelle\",\"indices\":[54,73]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[74,97]},{\"text\":\"sabinus\",\"indices\":[98,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554800794024697857,\"id_str\":\"1554800794024697857\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"url\":\"https:\\/\\/t.co\\/icrt1AKjYF\",\"display_url\":\"pic.twitter.com\\/icrt1AKjYF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vintagebraidwig\\/status\\/1554800801729724418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"}}}]},\"4397\":{\"hashtags\":[{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[30,53]},{\"text\":\"businessopportunityprevi\",\"indices\":[54,79]},{\"text\":\"bookaholics\",\"indices\":[80,92]},{\"text\":\"celebrityfitnessindonesia\",\"indices\":[93,119]},{\"text\":\"bookaddiction\",\"indices\":[120,134]},{\"text\":\"bookaccount\",\"indices\":[135,147]},{\"text\":\"photoofthedaygallery\",\"indices\":[148,169]},{\"text\":\"businesswomanlife\",\"indices\":[170,188]},{\"text\":\"bookaddicted\",\"indices\":[189,202]},{\"text\":\"celebrityfashion\",\"indices\":[203,220]},{\"text\":\"photooftheday\",\"indices\":[221,235]},{\"text\":\"bookalicious\",\"indices\":[238,251]},{\"text\":\"bookaesthetic\",\"indices\":[252,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554800216875966466,\"id_str\":\"1554800216875966466\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"url\":\"https:\\/\\/t.co\\/UZZgqgILDK\",\"display_url\":\"pic.twitter.com\\/UZZgqgILDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554800267329159170\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4398\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[22,29]},{\"text\":\"mummydollaz\",\"indices\":[31,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554799794090016770,\"id_str\":\"1554799794090016770\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"url\":\"https:\\/\\/t.co\\/EW1947qUVk\",\"display_url\":\"pic.twitter.com\\/EW1947qUVk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gerard33720673\\/status\\/1554799845730390018\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":324,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"}}}]},\"4399\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[208,215]},{\"text\":\"samomatseye\",\"indices\":[216,228]},{\"text\":\"Ronaldo\",\"indices\":[229,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554798709073911809,\"id_str\":\"1554798709073911809\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"url\":\"https:\\/\\/t.co\\/LkMKDvqJve\",\"display_url\":\"pic.twitter.com\\/LkMKDvqJve\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1554798804939206656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4400\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[250,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554797955626024960,\"id_str\":\"1554797955626024960\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cGChk2NcVy\",\"display_url\":\"pic.twitter.com\\/cGChk2NcVy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554798185935261696\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":429,\"resize\":\"fit\"},\"large\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"}}}]},\"4401\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[90,97]},{\"text\":\"sabinus\",\"indices\":[98,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4402\":{\"hashtags\":[{\"text\":\"glowhub\",\"indices\":[114,122]},{\"text\":\"gd\",\"indices\":[123,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"branding\",\"indices\":[135,144]},{\"text\":\"photographer\",\"indices\":[145,158]},{\"text\":\"CloserWithDonBelle\",\"indices\":[159,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554797618454302743,\"id_str\":\"1554797618454302743\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4403\":{\"hashtags\":[{\"text\":\"MarvinInu\",\"indices\":[26,36]},{\"text\":\"MarvinInu\",\"indices\":[91,101]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"helicopter\",\"indices\":[122,133]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[134,141]},{\"text\":\"tuesdayvibe\",\"indices\":[142,154]},{\"text\":\"Bitcoin\",\"indices\":[155,163]},{\"text\":\"altcoin\",\"indices\":[165,173]},{\"text\":\"CloserWithDonBelle\",\"indices\":[174,193]},{\"text\":\"BNB\",\"indices\":[194,198]},{\"text\":\"sabinus\",\"indices\":[199,207]},{\"text\":\"Batgirl\",\"indices\":[208,216]}],\"symbols\":[{\"text\":\"Marvin\",\"indices\":[50,57]}],\"user_mentions\":[{\"screen_name\":\"Marvin_Inu\",\"name\":\"Marvin Inu\",\"id\":1448003698689445896,\"id_str\":\"1448003698689445896\",\"indices\":[102,113]}],\"urls\":[],\"media\":[{\"id\":1554796946602299393,\"id_str\":\"1554796946602299393\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"url\":\"https:\\/\\/t.co\\/nSVh0YDIcv\",\"display_url\":\"pic.twitter.com\\/nSVh0YDIcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554796964734189569\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"4404\":{\"hashtags\":[{\"text\":\"OneChina\",\"indices\":[194,203]},{\"text\":\"OneChinaPolicy\",\"indices\":[205,220]},{\"text\":\"OneChinaPrinciple\",\"indices\":[222,240]},{\"text\":\"Taiwanchina\",\"indices\":[242,254]},{\"text\":\"ChinaTaiwan\",\"indices\":[256,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4405\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[142,156]},{\"text\":\"benincitymall\",\"indices\":[157,171]},{\"text\":\"BBNajiaS7\",\"indices\":[172,182]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554796541466009601,\"id_str\":\"1554796541466009601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"4406\":{\"hashtags\":[{\"text\":\"StarGirl\",\"indices\":[51,60]},{\"text\":\"starGirl\",\"indices\":[87,96]},{\"text\":\"wizkid\",\"indices\":[97,104]},{\"text\":\"Solana\",\"indices\":[105,112]},{\"text\":\"BBNaijaSeason7\",\"indices\":[113,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"BibleBuild\",\"indices\":[137,148]},{\"text\":\"helicopter\",\"indices\":[149,160]},{\"text\":\"BlueJays\",\"indices\":[161,170]},{\"text\":\"oesym\",\"indices\":[171,177]},{\"text\":\"wednesdaythought\",\"indices\":[178,195]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[196,218]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ugoccie\",\"name\":\"UGOCHI\",\"id\":1624713733,\"id_str\":\"1624713733\",\"indices\":[71,79]}],\"urls\":[],\"media\":[{\"id\":1554796177798975488,\"id_str\":\"1554796177798975488\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"url\":\"https:\\/\\/t.co\\/rfTY04O9Pw\",\"display_url\":\"pic.twitter.com\\/rfTY04O9Pw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554796314440916992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4407\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]},{\"text\":\"trending\",\"indices\":[23,32]},{\"text\":\"EndSARS\",\"indices\":[33,41]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554795574276378624,\"id_str\":\"1554795574276378624\",\"indices\":[42,65],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"url\":\"https:\\/\\/t.co\\/pQkRLWUnmy\",\"display_url\":\"pic.twitter.com\\/pQkRLWUnmy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lumy01609368\\/status\\/1554796164574285829\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4408\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"photooftheday\",\"indices\":[43,57]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"larrieoluks\",\"name\":\"LarrieOluksCreative\",\"id\":3639778217,\"id_str\":\"3639778217\",\"indices\":[20,32]}],\"urls\":[],\"media\":[{\"id\":1554795275495133184,\"id_str\":\"1554795275495133184\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"4409\":{\"hashtags\":[{\"text\":\"kante\",\"indices\":[99,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"Cucurella\",\"indices\":[114,124]},{\"text\":\"GodAbeg\",\"indices\":[125,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DeJongFrenkie21\",\"name\":\"Frenkie de Jong\",\"id\":1132994898511179776,\"id_str\":\"1132994898511179776\",\"indices\":[20,36]},{\"screen_name\":\"cucurella3\",\"name\":\"Marc Cucurella\",\"id\":820280083,\"id_str\":\"820280083\",\"indices\":[38,49]}],\"urls\":[],\"media\":[{\"id\":1554794709524090881,\"id_str\":\"1554794709524090881\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8La4uS2TFA\",\"display_url\":\"pic.twitter.com\\/8La4uS2TFA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanul_max\\/status\\/1554794720462766080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1031,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1445,\"resize\":\"fit\"},\"small\":{\"w\":584,\"h\":680,\"resize\":\"fit\"}}}]},\"4410\":{\"hashtags\":[{\"text\":\"ChelseaFC\",\"indices\":[20,30]},{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"ASUU\",\"indices\":[89,94]},{\"text\":\"NnamdiKanu\",\"indices\":[95,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4411\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[220,230]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MarsSolar__\",\"name\":\"Enoch Nwokike\",\"id\":2280011326,\"id_str\":\"2280011326\",\"indices\":[94,106]}],\"urls\":[],\"media\":[{\"id\":1554793885666344960,\"id_str\":\"1554793885666344960\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4412\":{\"hashtags\":[{\"text\":\"nicert\",\"indices\":[103,110]},{\"text\":\"nicertgroup\",\"indices\":[111,123]},{\"text\":\"wenainitiative\",\"indices\":[125,140]},{\"text\":\"fmard\",\"indices\":[141,147]},{\"text\":\"Agriculture\",\"indices\":[148,160]},{\"text\":\"Export\",\"indices\":[161,168]},{\"text\":\"womenbusinesses\",\"indices\":[169,185]},{\"text\":\"Taiwan\",\"indices\":[186,193]},{\"text\":\"davidhundeyin\",\"indices\":[194,208]},{\"text\":\"samomatseye\",\"indices\":[209,221]},{\"text\":\"Tinubu\",\"indices\":[222,229]},{\"text\":\"arisetv\",\"indices\":[230,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554793397369638913,\"id_str\":\"1554793397369638913\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"url\":\"https:\\/\\/t.co\\/S3lEOp6zY1\",\"display_url\":\"pic.twitter.com\\/S3lEOp6zY1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1554793400167272450\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"}}}]},\"4413\":{\"hashtags\":[{\"text\":\"NaijaBet\",\"indices\":[203,212]},{\"text\":\"Taiwan\",\"indices\":[213,220]},{\"text\":\"PremierLeague\",\"indices\":[221,235]},{\"text\":\"ChelseaFC\",\"indices\":[236,246]},{\"text\":\"ManCity\",\"indices\":[247,255]},{\"text\":\"Spurs\",\"indices\":[256,262]},{\"text\":\"ManUnited\",\"indices\":[263,273]},{\"text\":\"Arsenal\",\"indices\":[274,282]},{\"text\":\"Liverpool\",\"indices\":[283,293]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554792927439855616,\"id_str\":\"1554792927439855616\",\"indices\":[294,317],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"url\":\"https:\\/\\/t.co\\/Vz160FKf2U\",\"display_url\":\"pic.twitter.com\\/Vz160FKf2U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554792947694112770\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"}}}]},\"4414\":{\"hashtags\":[{\"text\":\"kwankwaso\",\"indices\":[119,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"davidhundeyin\",\"indices\":[138,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4415\":{\"hashtags\":[{\"text\":\"ChinaTaiwan\",\"indices\":[73,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4416\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"Phyna\",\"indices\":[132,138]},{\"text\":\"Mama\",\"indices\":[139,144]},{\"text\":\"Daniella\",\"indices\":[145,154]},{\"text\":\"BBNajiaS7\",\"indices\":[155,165]},{\"text\":\"SheggzFC\",\"indices\":[166,175]},{\"text\":\"JackieChan\",\"indices\":[176,187]},{\"text\":\"Jaruma\",\"indices\":[188,195]},{\"text\":\"Kalid\",\"indices\":[196,202]},{\"text\":\"RCCGConvention\",\"indices\":[203,218]},{\"text\":\"RCTID\",\"indices\":[219,225]},{\"text\":\"Solana\",\"indices\":[226,233]},{\"text\":\"helicopter\",\"indices\":[234,245]},{\"text\":\"PokemonScarletViolet\",\"indices\":[246,267]},{\"text\":\"BibleBuild\",\"indices\":[268,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790943148199937,\"id_str\":\"1554790943148199937\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4417\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Trending\",\"indices\":[69,78]},{\"text\":\"Trending\",\"indices\":[79,88]},{\"text\":\"explorepage\",\"indices\":[89,101]},{\"text\":\"TrendingNow\",\"indices\":[102,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790640617226240,\"id_str\":\"1554790640617226240\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"4418\":{\"hashtags\":[{\"text\":\"expression\",\"indices\":[62,73]},{\"text\":\"hifyqoutes\",\"indices\":[75,86]},{\"text\":\"lovequotes\",\"indices\":[87,98]},{\"text\":\"BeninCityMall\",\"indices\":[101,115]},{\"text\":\"BBNajiaS7\",\"indices\":[116,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"Solana\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554790528708902913,\"id_str\":\"1554790528708902913\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"url\":\"https:\\/\\/t.co\\/zsA7jZ4Y9U\",\"display_url\":\"pic.twitter.com\\/zsA7jZ4Y9U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hify_2\\/status\\/1554790540369174529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4419\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"helicopter\",\"indices\":[213,224]},{\"text\":\"BBNajiaS7\",\"indices\":[225,235]},{\"text\":\"BBN\",\"indices\":[236,240]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UKRinNGA\",\"name\":\"UKR Emb in Nigeria\",\"id\":3130729995,\"id_str\":\"3130729995\",\"indices\":[193,202]}],\"urls\":[]},\"4420\":{\"hashtags\":[{\"text\":\"BNB\",\"indices\":[113,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"BBNajiaS7\",\"indices\":[126,136]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[137,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4421\":{\"hashtags\":[{\"text\":\"Taipei\",\"indices\":[24,31]},{\"text\":\"PLA\",\"indices\":[52,56]},{\"text\":\"Taiwan\",\"indices\":[67,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4422\":{\"hashtags\":[{\"text\":\"Hotjist\",\"indices\":[69,77]},{\"text\":\"Hotjistnaija\",\"indices\":[78,91]},{\"text\":\"Kidnappers\",\"indices\":[92,103]},{\"text\":\"Protest\",\"indices\":[104,112]},{\"text\":\"Lautech\",\"indices\":[113,121]},{\"text\":\"Obituary\",\"indices\":[124,133]},{\"text\":\"Ronaldo\",\"indices\":[135,143]},{\"text\":\"Taiwan\",\"indices\":[145,152]},{\"text\":\"Emily\",\"indices\":[155,161]},{\"text\":\"BBNaijaS7\",\"indices\":[163,173]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jefhbd4wr1\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/protest-as-kidnappers-kill-lautech-student\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/pro\\u2026\",\"indices\":[44,67]}]},\"4423\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"PeterObi4President2023\",\"indices\":[53,76]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[78,103]},{\"text\":\"PeterObi\",\"indices\":[104,113]},{\"text\":\"PeterObi2023\",\"indices\":[114,127]},{\"text\":\"PETERMJ\",\"indices\":[128,136]},{\"text\":\"dril\",\"indices\":[137,142]},{\"text\":\"rap\",\"indices\":[143,147]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Apeteofafrika\",\"name\":\"BIG AP \\ud83e\\udd85\\ud83e\\udd85\",\"id\":1034341353403113472,\"id_str\":\"1034341353403113472\",\"indices\":[149,163]}],\"urls\":[],\"media\":[{\"id\":1554789348444356610,\"id_str\":\"1554789348444356610\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"url\":\"https:\\/\\/t.co\\/mYK0GhyoiC\",\"display_url\":\"pic.twitter.com\\/mYK0GhyoiC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/breeze_okoye\\/status\\/1554789438236069888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4424\":{\"hashtags\":[{\"text\":\"hotjist\",\"indices\":[99,107]},{\"text\":\"Nigeria\",\"indices\":[108,116]},{\"text\":\"IGP\",\"indices\":[117,121]},{\"text\":\"Insecurity\",\"indices\":[122,133]},{\"text\":\"BBNaijaS7\",\"indices\":[136,146]},{\"text\":\"Obituary\",\"indices\":[148,157]},{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"Ronldo\",\"indices\":[168,175]},{\"text\":\"Emily\",\"indices\":[177,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V4h2C5viZS\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/news-update-igp-meets-cps-others-over-rising-insecurity-in-the-country\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/new\\u2026\",\"indices\":[74,97]}]},\"4425\":{\"hashtags\":[{\"text\":\"gafexianart\",\"indices\":[94,106]},{\"text\":\"gafexianzone\",\"indices\":[107,120]},{\"text\":\"Taiwan\",\"indices\":[121,128]},{\"text\":\"Solana\",\"indices\":[129,136]},{\"text\":\"Chelsea\",\"indices\":[137,145]},{\"text\":\"ChelseaFC\",\"indices\":[146,156]},{\"text\":\"biro\",\"indices\":[202,207]},{\"text\":\"explorepage\",\"indices\":[208,220]},{\"text\":\"explore\",\"indices\":[221,229]},{\"text\":\"Explorer\",\"indices\":[230,239]},{\"text\":\"ExploreUganda\",\"indices\":[240,254]},{\"text\":\"artist\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"samkerr1\",\"name\":\"Sam Kerr\",\"id\":320739724,\"id_str\":\"320739724\",\"indices\":[35,44]},{\"screen_name\":\"ChelseaFCW\",\"name\":\"Chelsea FC Women\",\"id\":269713045,\"id_str\":\"269713045\",\"indices\":[157,168]},{\"screen_name\":\"AbsoluteChelsea\",\"name\":\"Absolute Chelsea\",\"id\":4504718963,\"id_str\":\"4504718963\",\"indices\":[169,185]},{\"screen_name\":\"ChelseaFCinUSA\",\"name\":\"Chelsea FC USA\",\"id\":996031284420935680,\"id_str\":\"996031284420935680\",\"indices\":[186,201]},{\"screen_name\":\"ChelseaWomenSG\",\"name\":\"Chelsea Women Supporters Group\",\"id\":3102692859,\"id_str\":\"3102692859\",\"indices\":[255,270]}],\"urls\":[],\"media\":[{\"id\":1554788871627587585,\"id_str\":\"1554788871627587585\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"url\":\"https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"display_url\":\"pic.twitter.com\\/ZRsEBIH9Rb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554788988187283456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1163,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":659,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1984,\"h\":2048,\"resize\":\"fit\"}}}]},\"4426\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[124,135]},{\"text\":\"Solana\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"China\",\"indices\":[152,158]},{\"text\":\"ASUUstrike\",\"indices\":[159,170]},{\"text\":\"samomatseye\",\"indices\":[171,183]},{\"text\":\"Finance\",\"indices\":[184,192]},{\"text\":\"Selfdevelopment\",\"indices\":[193,209]},{\"text\":\"cnc\",\"indices\":[210,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4427\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Solana\",\"indices\":[146,153]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[154,162]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[163,186]},{\"text\":\"PokemonScarletViolet\",\"indices\":[187,208]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[209,216]},{\"text\":\"BlueJays\",\"indices\":[217,226]},{\"text\":\"partytime\",\"indices\":[227,237]},{\"text\":\"jbankz\",\"indices\":[238,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554788201600016387,\"id_str\":\"1554788201600016387\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"url\":\"https:\\/\\/t.co\\/qyHhxvm1w1\",\"display_url\":\"pic.twitter.com\\/qyHhxvm1w1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554788274752847874\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4428\":{\"hashtags\":[{\"text\":\"Foodie\",\"indices\":[15,22]},{\"text\":\"FoodieBeauty\",\"indices\":[23,36]},{\"text\":\"Taiwan\",\"indices\":[37,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554788030208249862,\"id_str\":\"1554788030208249862\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"url\":\"https:\\/\\/t.co\\/6Sm8j0zWgv\",\"display_url\":\"pic.twitter.com\\/6Sm8j0zWgv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ugondabai\\/status\\/1554788088794292230\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4429\":{\"hashtags\":[{\"text\":\"Btc\",\"indices\":[0,4]},{\"text\":\"Crypto\",\"indices\":[101,108]},{\"text\":\"NFTCommunity\",\"indices\":[109,122]},{\"text\":\"Taiwan\",\"indices\":[123,130]},{\"text\":\"TradeDeadline\",\"indices\":[131,145]},{\"text\":\"trade\",\"indices\":[146,152]},{\"text\":\"stocks\",\"indices\":[153,160]},{\"text\":\"charts\",\"indices\":[161,168]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3TZ2RkalOS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553667488369500161\",\"display_url\":\"twitter.com\\/drickempire\\/st\\u2026\",\"indices\":[169,192]}],\"media\":[{\"id\":1554786277551226881,\"id_str\":\"1554786277551226881\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"url\":\"https:\\/\\/t.co\\/LEK6lTXB14\",\"display_url\":\"pic.twitter.com\\/LEK6lTXB14\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554787860460494848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"4430\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[91,98]},{\"text\":\"ASUU\",\"indices\":[99,104]},{\"text\":\"AriseTV\",\"indices\":[105,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4431\":{\"hashtags\":[{\"text\":\"ibedc\",\"indices\":[159,165]},{\"text\":\"DistributingDarkness\",\"indices\":[166,187]},{\"text\":\"wednesdaythought\",\"indices\":[231,248]},{\"text\":\"Solana\",\"indices\":[249,256]},{\"text\":\"Taiwan\",\"indices\":[257,264]},{\"text\":\"helicopter\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IBEDC_NG\",\"name\":\"IBEDC\",\"id\":2801652406,\"id_str\":\"2801652406\",\"indices\":[53,62]},{\"screen_name\":\"via_iure\",\"name\":\"Via iure\",\"id\":1352637558539354117,\"id_str\":\"1352637558539354117\",\"indices\":[188,197]},{\"screen_name\":\"PowerUpNG\",\"name\":\"PowerUp Nigeria ( + #SDG7)\",\"id\":2271078294,\"id_str\":\"2271078294\",\"indices\":[198,208]},{\"screen_name\":\"fccpcnigeria\",\"name\":\"FCCPC Nigeria\",\"id\":1229437064,\"id_str\":\"1229437064\",\"indices\":[209,222]},{\"screen_name\":\"NERCNG\",\"name\":\"NERC Nigeria\",\"id\":279448877,\"id_str\":\"279448877\",\"indices\":[223,230]}],\"urls\":[]},\"4432\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"Knust\",\"indices\":[96,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27lPlh1K4s\",\"expanded_url\":\"https:\\/\\/cityscoopgh.com\\/moses-desire-kouyo-writes-ponderings-of-a-king\\/\",\"display_url\":\"cityscoopgh.com\\/moses-desire-k\\u2026\",\"indices\":[50,73]}]},\"4433\":{\"hashtags\":[{\"text\":\"EmmanuelUmoh\",\"indices\":[44,57]},{\"text\":\"Pelosi\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VEa4WP9DO0\",\"expanded_url\":\"http:\\/\\/instagram.com\\/emmanuelumohjr\",\"display_url\":\"instagram.com\\/emmanuelumohjr\",\"indices\":[19,42]}],\"media\":[{\"id\":1554786935746560001,\"id_str\":\"1554786935746560001\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"url\":\"https:\\/\\/t.co\\/XnWs6XKBaB\",\"display_url\":\"pic.twitter.com\\/XnWs6XKBaB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gifshizzle\\/status\\/1554786948564353026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"small\":{\"w\":592,\"h\":680,\"resize\":\"fit\"}}}]},\"4434\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"bpa\",\"indices\":[64,68]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4435\":{\"hashtags\":[{\"text\":\"CommonwealthGames2022\",\"indices\":[140,162]},{\"text\":\"Taiwan\",\"indices\":[163,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554785710649090048,\"id_str\":\"1554785710649090048\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"url\":\"https:\\/\\/t.co\\/Rb6M4G9bfV\",\"display_url\":\"pic.twitter.com\\/Rb6M4G9bfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tinubufrontier\\/status\\/1554785715841646592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"4436\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[59,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"PokemonScarletViolet\",\"indices\":[75,96]},{\"text\":\"BibleBuild\",\"indices\":[97,108]},{\"text\":\"helicopter\",\"indices\":[109,120]},{\"text\":\"BlueJays\",\"indices\":[121,130]},{\"text\":\"oesym\",\"indices\":[131,137]},{\"text\":\"Bbnaija\",\"indices\":[138,146]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nnheadlines\",\"name\":\"#BBNAIJA #BreakingNews\",\"id\":939476737628524544,\"id_str\":\"939476737628524544\",\"indices\":[16,28]}],\"urls\":[]},\"4437\":{\"hashtags\":[{\"text\":\"Solana\",\"indices\":[180,187]},{\"text\":\"btc\",\"indices\":[188,192]},{\"text\":\"binance\",\"indices\":[193,201]},{\"text\":\"Taiwan\",\"indices\":[202,209]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rovercrc\",\"name\":\"Crypto Rover\",\"id\":1353384573435056128,\"id_str\":\"1353384573435056128\",\"indices\":[210,219]},{\"screen_name\":\"MMCrypto\",\"name\":\"MMCrypto\",\"id\":904700529988820992,\"id_str\":\"904700529988820992\",\"indices\":[220,229]},{\"screen_name\":\"CrypToomas\",\"name\":\"CrypTomas\",\"id\":1501264217239924750,\"id_str\":\"1501264217239924750\",\"indices\":[230,241]},{\"screen_name\":\"elonmusk\",\"name\":\"Elon Musk\",\"id\":44196397,\"id_str\":\"44196397\",\"indices\":[242,251]},{\"screen_name\":\"StonksReddit\",\"name\":\"Stonks Trading \\ud83d\\udd25\\ud83d\\udd25\\ud83d\\ude80\",\"id\":1354546688967454725,\"id_str\":\"1354546688967454725\",\"indices\":[252,265]}],\"urls\":[],\"media\":[{\"id\":1554785099077517314,\"id_str\":\"1554785099077517314\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"url\":\"https:\\/\\/t.co\\/2VAX1kKY7q\",\"display_url\":\"pic.twitter.com\\/2VAX1kKY7q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BlackdiamondBLD\\/status\\/1554785109202665476\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":433,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1241,\"h\":1949,\"resize\":\"fit\"}}}]},\"4438\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"gamingnationxznn\",\"indices\":[134,151]},{\"text\":\"August2022\",\"indices\":[152,163]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gamicguild\",\"name\":\"Gamic Guild\",\"id\":1376243370729816065,\"id_str\":\"1376243370729816065\",\"indices\":[76,87]}],\"urls\":[],\"media\":[{\"id\":1554784568976211977,\"id_str\":\"1554784568976211977\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"url\":\"https:\\/\\/t.co\\/uMhwIVcM6q\",\"display_url\":\"pic.twitter.com\\/uMhwIVcM6q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lastborn_jess\\/status\\/1554784847402598401\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":400,\"resize\":\"fit\"}}}]},\"4439\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"Pionners\",\"indices\":[177,186]},{\"text\":\"Pinetwork\",\"indices\":[187,197]},{\"text\":\"sabinus\",\"indices\":[198,206]},{\"text\":\"cryptocurrency\",\"indices\":[207,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[16,27]},{\"screen_name\":\"nkokkalis\",\"name\":\"Nicolas Kokkalis\",\"id\":16536129,\"id_str\":\"16536129\",\"indices\":[136,146]}],\"urls\":[],\"media\":[{\"id\":1554784146966421507,\"id_str\":\"1554784146966421507\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"url\":\"https:\\/\\/t.co\\/E9xunsffM1\",\"display_url\":\"pic.twitter.com\\/E9xunsffM1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1554784157557051392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"4440\":{\"hashtags\":[{\"text\":\"NigerRepublic\",\"indices\":[142,156]},{\"text\":\"benincitymall\",\"indices\":[157,171]},{\"text\":\"BBNajiaS7\",\"indices\":[172,182]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[183,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554782414433558529,\"id_str\":\"1554782414433558529\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4441\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554783590306701312,\"id_str\":\"1554783590306701312\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"url\":\"https:\\/\\/t.co\\/ncKzoU40Ie\",\"display_url\":\"pic.twitter.com\\/ncKzoU40Ie\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Uma_zum\\/status\\/1554783617787875334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":703,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1001,\"h\":1709,\"resize\":\"fit\"},\"small\":{\"w\":398,\"h\":680,\"resize\":\"fit\"}}}]},\"4442\":{\"hashtags\":[{\"text\":\"NEWS\",\"indices\":[0,5]},{\"text\":\"China\",\"indices\":[6,12]},{\"text\":\"NancyPelosi\",\"indices\":[13,25]},{\"text\":\"Taiwan\",\"indices\":[26,33]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7zorY8BGJn\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/SVzM6n\",\"display_url\":\"dlvr.it\\/SVzM6n\",\"indices\":[101,124]}]},\"4443\":{\"hashtags\":[{\"text\":\"GodAbeg\",\"indices\":[31,39]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"China\",\"indices\":[49,55]},{\"text\":\"Pelosi\",\"indices\":[56,63]},{\"text\":\"Solana\",\"indices\":[64,71]},{\"text\":\"sabinus\",\"indices\":[72,80]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[81,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554783301650587649,\"id_str\":\"1554783301650587649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"url\":\"https:\\/\\/t.co\\/Flwl4VS17Y\",\"display_url\":\"pic.twitter.com\\/Flwl4VS17Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Priceless002\\/status\\/1554783305131753472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":622,\"resize\":\"fit\"}}}]},\"4444\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[60,64]},{\"text\":\"artistontwittter\",\"indices\":[65,82]},{\"text\":\"Taiwan\",\"indices\":[83,90]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554782545367240707,\"id_str\":\"1554782545367240707\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"url\":\"https:\\/\\/t.co\\/5H5czNmAdA\",\"display_url\":\"pic.twitter.com\\/5H5czNmAdA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StEvIe_Alo\\/status\\/1554782552447139840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"4445\":{\"hashtags\":[{\"text\":\"Wizkidfc\",\"indices\":[15,24]},{\"text\":\"davido\",\"indices\":[88,95]},{\"text\":\"spyro\",\"indices\":[107,113]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[144,152]},{\"text\":\"Wizkid\",\"indices\":[153,160]},{\"text\":\"BBNaija\",\"indices\":[161,169]},{\"text\":\"BBNajiaS7\",\"indices\":[170,180]},{\"text\":\"Cubana\",\"indices\":[181,188]},{\"text\":\"JARUMA\",\"indices\":[189,196]},{\"text\":\"Deji\",\"indices\":[197,202]},{\"text\":\"bread\",\"indices\":[203,209]},{\"text\":\"CardiB\",\"indices\":[210,217]},{\"text\":\"Tinubu\",\"indices\":[218,225]},{\"text\":\"Dubai\",\"indices\":[226,232]},{\"text\":\"Daniella\",\"indices\":[233,242]},{\"text\":\"NnamdiKanu\",\"indices\":[243,254]},{\"text\":\"ASUU\",\"indices\":[255,260]},{\"text\":\"Taiwan\",\"indices\":[261,268]},{\"text\":\"TAG\",\"indices\":[269,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554782302357667842,\"id_str\":\"1554782302357667842\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"url\":\"https:\\/\\/t.co\\/OBs0ZqYaLT\",\"display_url\":\"pic.twitter.com\\/OBs0ZqYaLT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554782489037742083\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"4446\":{\"hashtags\":[{\"text\":\"ronaldo\",\"indices\":[40,48]},{\"text\":\"Europa\",\"indices\":[49,56]},{\"text\":\"PremierLeague\",\"indices\":[58,72]},{\"text\":\"Taiwan\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EuropaLeague\",\"name\":\"UEFA Europa League\",\"id\":789605024,\"id_str\":\"789605024\",\"indices\":[0,13]},{\"screen_name\":\"Cristiano\",\"name\":\"Cristiano Ronaldo\",\"id\":155659213,\"id_str\":\"155659213\",\"indices\":[23,33]}],\"urls\":[],\"media\":[{\"id\":1554782092583641088,\"id_str\":\"1554782092583641088\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"url\":\"https:\\/\\/t.co\\/UMTv580EMA\",\"display_url\":\"pic.twitter.com\\/UMTv580EMA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554782100057899013\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":514,\"resize\":\"fit\"}}}]},\"4447\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[86,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"China\",\"indices\":[102,108]},{\"text\":\"Solana\",\"indices\":[109,116]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[117,140]},{\"text\":\"sabinus\",\"indices\":[141,149]},{\"text\":\"helicopter\",\"indices\":[150,161]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[162,169]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[170,188]},{\"text\":\"LoveIsland2022\",\"indices\":[189,204]},{\"text\":\"oesym\",\"indices\":[205,211]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[212,234]},{\"text\":\"UkraineRussiaWar\",\"indices\":[235,252]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cOFgBjIkqz\",\"expanded_url\":\"https:\\/\\/join.ueni.com\\/camp\\/refer-a-friend-us\\/?via=99r03\",\"display_url\":\"join.ueni.com\\/camp\\/refer-a-f\\u2026\",\"indices\":[53,76]}]},\"4448\":{\"hashtags\":[{\"text\":\"grateful\",\"indices\":[94,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"sabinus\",\"indices\":[119,127]},{\"text\":\"Nowaydown\",\"indices\":[128,138]},{\"text\":\"BBNaija\",\"indices\":[139,147]},{\"text\":\"Machala\",\"indices\":[149,157]},{\"text\":\"Retweet\",\"indices\":[159,167]},{\"text\":\"rt\",\"indices\":[168,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554781809900195840,\"id_str\":\"1554781809900195840\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"url\":\"https:\\/\\/t.co\\/VgI8iwpoFf\",\"display_url\":\"pic.twitter.com\\/VgI8iwpoFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1554782000061583360\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4449\":{\"hashtags\":[{\"text\":\"SoundCloud\",\"indices\":[81,92]},{\"text\":\"NewMusic\",\"indices\":[153,162]},{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"sabinus\",\"indices\":[178,186]},{\"text\":\"LoveIsland2022\",\"indices\":[187,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/24snMEgLsL\",\"expanded_url\":\"https:\\/\\/soundcloud.app.goo.gl\\/nyE2E\",\"display_url\":\"soundcloud.app.goo.gl\\/nyE2E\",\"indices\":[93,116]}],\"media\":[{\"id\":1554780632630403075,\"id_str\":\"1554780632630403075\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"url\":\"https:\\/\\/t.co\\/MrqMUbG8P6\",\"display_url\":\"pic.twitter.com\\/MrqMUbG8P6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tipcy_Jaej\\/status\\/1554781577946742785\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":333,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":626,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":587,\"h\":1200,\"resize\":\"fit\"}}}]},\"4450\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[14,21]},{\"text\":\"Pelosi\",\"indices\":[22,29]},{\"text\":\"China\",\"indices\":[30,36]},{\"text\":\"BigBrother\",\"indices\":[37,48]},{\"text\":\"bigbrother24\",\"indices\":[49,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/owN4hSgzG2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\",\"display_url\":\"twitter.com\\/loyins_onibag\\/\\u2026\",\"indices\":[63,86]}]},\"4451\":{\"hashtags\":[{\"text\":\"20k\",\"indices\":[29,33]},{\"text\":\"benincitymall\",\"indices\":[143,157]},{\"text\":\"Pelosi\",\"indices\":[159,166]},{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[175,197]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DayoAmusa\",\"name\":\"DAYO AMUSA\",\"id\":148323720,\"id_str\":\"148323720\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554780148741939201,\"id_str\":\"1554780148741939201\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"url\":\"https:\\/\\/t.co\\/f2CdRuT9tm\",\"display_url\":\"pic.twitter.com\\/f2CdRuT9tm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Richmanonuche1\\/status\\/1554780161714917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":2048,\"resize\":\"fit\"}}}]},\"4452\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[11,18]},{\"text\":\"helicopter\",\"indices\":[19,30]},{\"text\":\"Ukraine\",\"indices\":[31,39]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554779811347939329,\"id_str\":\"1554779811347939329\",\"indices\":[40,63],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"url\":\"https:\\/\\/t.co\\/EhISr3PULD\",\"display_url\":\"pic.twitter.com\\/EhISr3PULD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1554779819296137217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1494,\"resize\":\"fit\"},\"medium\":{\"w\":904,\"h\":1200,\"resize\":\"fit\"}}}]},\"4453\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[99,107]},{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"sabinus\",\"indices\":[116,124]},{\"text\":\"LoveIsland2022\",\"indices\":[125,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4454\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[28,34]},{\"text\":\"Obituary\",\"indices\":[35,44]},{\"text\":\"BeninCityMall\",\"indices\":[45,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"samomatseye\",\"indices\":[68,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777905548378112,\"id_str\":\"1554777905548378112\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"url\":\"https:\\/\\/t.co\\/P62lLRP3fo\",\"display_url\":\"pic.twitter.com\\/P62lLRP3fo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itnewsnigeria1\\/status\\/1554778707788795906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"large\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":514,\"resize\":\"fit\"}}}]},\"4455\":{\"hashtags\":[{\"text\":\"renticapartment\",\"indices\":[122,138]},{\"text\":\"lagosbusiness\",\"indices\":[139,153]},{\"text\":\"BBNaija\",\"indices\":[156,164]},{\"text\":\"BBNajia\",\"indices\":[169,177]},{\"text\":\"Pelosi\",\"indices\":[221,228]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554778637186072577,\"id_str\":\"1554778637186072577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"url\":\"https:\\/\\/t.co\\/HMeHrLovHg\",\"display_url\":\"pic.twitter.com\\/HMeHrLovHg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554778649164976129\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4456\":{\"hashtags\":[{\"text\":\"Enugu2023\",\"indices\":[156,166]},{\"text\":\"PeterObi\",\"indices\":[167,176]},{\"text\":\"wike\",\"indices\":[177,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IamAwesomeJosh\",\"name\":\"Agusiobo Joshua \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde6\\ud83c\\uddfa |The Brand Engineer\",\"id\":1042203823,\"id_str\":\"1042203823\",\"indices\":[193,208]},{\"screen_name\":\"ejykmykel1\",\"name\":\"Ejikeme\\ud83c\\udf0d\",\"id\":191928490,\"id_str\":\"191928490\",\"indices\":[209,220]},{\"screen_name\":\"julietkego\",\"name\":\"Juliet 'Kego | #FLOW #FinancialLiteracy4Women\",\"id\":382413245,\"id_str\":\"382413245\",\"indices\":[221,232]},{\"screen_name\":\"Chude__\",\"name\":\"Columbus\",\"id\":910572372410949632,\"id_str\":\"910572372410949632\",\"indices\":[233,241]},{\"screen_name\":\"flexzyltd\",\"name\":\"Alex Mbelu\",\"id\":444893959,\"id_str\":\"444893959\",\"indices\":[242,252]}],\"urls\":[]},\"4457\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[84,92]},{\"text\":\"sabinus\",\"indices\":[93,101]},{\"text\":\"Pelosi\",\"indices\":[102,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554778202651910145,\"id_str\":\"1554778202651910145\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"url\":\"https:\\/\\/t.co\\/EiH8c1kCf0\",\"display_url\":\"pic.twitter.com\\/EiH8c1kCf0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778267999240193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4458\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"sabinus\",\"indices\":[78,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777988721410050,\"id_str\":\"1554777988721410050\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"url\":\"https:\\/\\/t.co\\/xCMNWCnUTt\",\"display_url\":\"pic.twitter.com\\/xCMNWCnUTt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778141675196417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4459\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"sabinus\",\"indices\":[78,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777735389761541,\"id_str\":\"1554777735389761541\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"url\":\"https:\\/\\/t.co\\/g2fU0tPcr9\",\"display_url\":\"pic.twitter.com\\/g2fU0tPcr9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778138995040256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4460\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[69,77]},{\"text\":\"sabinus\",\"indices\":[78,86]},{\"text\":\"Pelosi\",\"indices\":[87,94]},{\"text\":\"Taiwan\",\"indices\":[95,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777988033613824,\"id_str\":\"1554777988033613824\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"url\":\"https:\\/\\/t.co\\/aBCGFemwUN\",\"display_url\":\"pic.twitter.com\\/aBCGFemwUN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778135379562496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4461\":{\"hashtags\":[{\"text\":\"wizkid\",\"indices\":[179,186]},{\"text\":\"OBIDIENTS\",\"indices\":[227,237]},{\"text\":\"helicopter\",\"indices\":[258,269]},{\"text\":\"Pelosi\",\"indices\":[270,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554778096087310337,\"id_str\":\"1554778096087310337\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"url\":\"https:\\/\\/t.co\\/7Bz4WI63Tr\",\"display_url\":\"pic.twitter.com\\/7Bz4WI63Tr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TAG_authorised\\/status\\/1554778101862879242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":963,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":903,\"h\":1200,\"resize\":\"fit\"}}}]},\"4462\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[67,75]},{\"text\":\"sabinus\",\"indices\":[76,84]},{\"text\":\"Pelosi\",\"indices\":[85,92]},{\"text\":\"Taiwan\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777583732105217,\"id_str\":\"1554777583732105217\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"url\":\"https:\\/\\/t.co\\/BH4bmjuQyh\",\"display_url\":\"pic.twitter.com\\/BH4bmjuQyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778051082436608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4463\":{\"hashtags\":[{\"text\":\"Carterefe\",\"indices\":[129,139]},{\"text\":\"Machala\",\"indices\":[140,148]},{\"text\":\"Wizkidfc\",\"indices\":[149,158]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[159,167]},{\"text\":\"funnyvideos\",\"indices\":[168,180]},{\"text\":\"lucasdusky\",\"indices\":[181,192]},{\"text\":\"trendingvideos\",\"indices\":[193,208]},{\"text\":\"sabinus\",\"indices\":[209,217]},{\"text\":\"Taiwan\",\"indices\":[218,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]},{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[13,25]}],\"urls\":[],\"media\":[{\"id\":1554777430971351040,\"id_str\":\"1554777430971351040\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"url\":\"https:\\/\\/t.co\\/a4BmMkUray\",\"display_url\":\"pic.twitter.com\\/a4BmMkUray\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LukeKyauta\\/status\\/1554777567802040321\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}}}]},\"4464\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[27,36]},{\"text\":\"Pelosi\",\"indices\":[46,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554776088911437824,\"id_str\":\"1554776088911437824\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"url\":\"https:\\/\\/t.co\\/p3ARF0hJXT\",\"display_url\":\"pic.twitter.com\\/p3ARF0hJXT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/12_beatz\\/status\\/1554777432208588801\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4465\":{\"hashtags\":[{\"text\":\"racism\",\"indices\":[138,145]},{\"text\":\"realhousewivesofabuja\",\"indices\":[146,168]},{\"text\":\"ASUU\",\"indices\":[169,174]},{\"text\":\"Governor\",\"indices\":[175,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"RCCGConvention\",\"indices\":[193,208]},{\"text\":\"Ronaldo\",\"indices\":[209,217]},{\"text\":\"witcher\",\"indices\":[218,226]},{\"text\":\"JARUMA\",\"indices\":[227,234]},{\"text\":\"geralt\",\"indices\":[235,242]},{\"text\":\"Affiliates\",\"indices\":[243,254]},{\"text\":\"Pelo\",\"indices\":[255,260]},{\"text\":\"BeautyWithBrains\",\"indices\":[261,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554777348091908096,\"id_str\":\"1554777348091908096\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"url\":\"https:\\/\\/t.co\\/oihYETkxg9\",\"display_url\":\"pic.twitter.com\\/oihYETkxg9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/daniel_orakwue\\/status\\/1554777354395951105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":575,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":609,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":609,\"resize\":\"fit\"}}}]},\"4466\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uagVKfdbEO\",\"expanded_url\":\"https:\\/\\/investogist.com\\/breaking-u-s-speaker-pelosi-departs-taiwan-amid-chinese-threats-military-drills\\/\",\"display_url\":\"investogist.com\\/breaking-u-s-s\\u2026\",\"indices\":[82,105]}]},\"4467\":{\"hashtags\":[{\"text\":\"Big_Ivy\",\"indices\":[123,131]},{\"text\":\"ASUU\",\"indices\":[132,137]},{\"text\":\"Phyna_and_Amaka\",\"indices\":[138,154]},{\"text\":\"Big_Bella\",\"indices\":[155,165]},{\"text\":\"Taiwan\",\"indices\":[166,173]},{\"text\":\"Daniella\",\"indices\":[174,183]},{\"text\":\"God_Abeg\",\"indices\":[184,193]},{\"text\":\"Osimhen\",\"indices\":[194,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LE8VV0jLMS\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3JNA0lj\",\"display_url\":\"bit.ly\\/3JNA0lj\",\"indices\":[96,119]}],\"media\":[{\"id\":1554776151024877573,\"id_str\":\"1554776151024877573\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"url\":\"https:\\/\\/t.co\\/9wplK02TX4\",\"display_url\":\"pic.twitter.com\\/9wplK02TX4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amanda_malls\\/status\\/1554776611374989313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4468\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"Pelosi\",\"indices\":[178,185]},{\"text\":\"WebsiteDesign\",\"indices\":[187,201]},{\"text\":\"WebsiteBuilder\",\"indices\":[203,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554776490138550272,\"id_str\":\"1554776490138550272\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"url\":\"https:\\/\\/t.co\\/GoCuemQe8s\",\"display_url\":\"pic.twitter.com\\/GoCuemQe8s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sucdri\\/status\\/1554776497801629696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4469\":{\"hashtags\":[{\"text\":\"amazon\",\"indices\":[33,40]},{\"text\":\"Taiwan\",\"indices\":[41,48]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"China\",\"indices\":[57,63]},{\"text\":\"Solana\",\"indices\":[64,71]},{\"text\":\"Amazon\",\"indices\":[72,79]},{\"text\":\"amazonsales\",\"indices\":[80,92]},{\"text\":\"shopifymarketing\",\"indices\":[93,110]},{\"text\":\"wears\",\"indices\":[111,117]},{\"text\":\"Ukraine\",\"indices\":[118,126]},{\"text\":\"shopifytips\",\"indices\":[127,139]},{\"text\":\"Shopify\",\"indices\":[140,148]},{\"text\":\"AmazonAffiliate\",\"indices\":[149,165]},{\"text\":\"affiliateprogram\",\"indices\":[166,183]},{\"text\":\"Affiliates\",\"indices\":[184,195]},{\"text\":\"affiliatemarketing\",\"indices\":[196,215]},{\"text\":\"shopifywebsite\",\"indices\":[216,231]},{\"text\":\"shopifydesign\",\"indices\":[232,246]},{\"text\":\"shopifyexpert\",\"indices\":[247,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fQRKX5Dt5Q\",\"expanded_url\":\"http:\\/\\/www.fiverr.com\\/memphis_deepay\",\"display_url\":\"fiverr.com\\/memphis_deepay\",\"indices\":[9,32]}]},\"4470\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"SpeedDatingWithSelema\",\"indices\":[165,187]},{\"text\":\"LoveIsland2022\",\"indices\":[189,204]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[206,221]},{\"text\":\"BBNaija\",\"indices\":[223,231]},{\"text\":\"Slaytheprincess\",\"indices\":[233,249]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MonalisNg\",\"name\":\"Monalis-ng\",\"id\":1553476310311247875,\"id_str\":\"1553476310311247875\",\"indices\":[117,127]}],\"urls\":[],\"media\":[{\"id\":1554775383412703232,\"id_str\":\"1554775383412703232\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"url\":\"https:\\/\\/t.co\\/eIFdhakjaV\",\"display_url\":\"pic.twitter.com\\/eIFdhakjaV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MonalisNg\\/status\\/1554775783595544576\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"4471\":{\"hashtags\":[{\"text\":\"RCCGConvention\",\"indices\":[197,212]},{\"text\":\"Pelosi\",\"indices\":[213,220]},{\"text\":\"BBNaija\",\"indices\":[221,229]},{\"text\":\"Taiwan\",\"indices\":[230,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554775721872089088,\"id_str\":\"1554775721872089088\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"url\":\"https:\\/\\/t.co\\/RNIQwboUkK\",\"display_url\":\"pic.twitter.com\\/RNIQwboUkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554775733179916290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"small\":{\"w\":609,\"h\":680,\"resize\":\"fit\"}}}]},\"4472\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[79,87]},{\"text\":\"helicopter\",\"indices\":[88,99]},{\"text\":\"Ukraine\",\"indices\":[100,108]},{\"text\":\"Wizkid\",\"indices\":[109,116]},{\"text\":\"TrendingTopics\",\"indices\":[117,132]},{\"text\":\"Trending\",\"indices\":[133,142]},{\"text\":\"micheal_jackson\",\"indices\":[143,159]},{\"text\":\"Racism\",\"indices\":[160,167]},{\"text\":\"Burna\",\"indices\":[168,174]},{\"text\":\"Taiwan\",\"indices\":[175,182]},{\"text\":\"BBNaija\",\"indices\":[183,191]},{\"text\":\"BBNajiaS7\",\"indices\":[192,202]},{\"text\":\"Twitter\",\"indices\":[203,211]},{\"text\":\"matic\",\"indices\":[212,218]},{\"text\":\"matiasdelrio\",\"indices\":[219,232]},{\"text\":\"fashion\",\"indices\":[233,241]},{\"text\":\"LoveIsland2022\",\"indices\":[242,257]},{\"text\":\"music\",\"indices\":[258,264]},{\"text\":\"trendingmusic\",\"indices\":[265,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Skiibii\",\"name\":\"skiibii mayana\",\"id\":4472970994,\"id_str\":\"4472970994\",\"indices\":[35,43]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[52,59]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[60,68]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[69,78]}],\"urls\":[],\"media\":[{\"id\":1554775508704976896,\"id_str\":\"1554775508704976896\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"url\":\"https:\\/\\/t.co\\/64cx3wVqvf\",\"display_url\":\"pic.twitter.com\\/64cx3wVqvf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554775658554920960\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4473\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[173,180]},{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[9,15]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[29,38]},{\"screen_name\":\"officialABAT\",\"name\":\"Bola Ahmed Tinubu\",\"id\":493365529,\"id_str\":\"493365529\",\"indices\":[53,66]}],\"urls\":[],\"media\":[{\"id\":1554775060853956611,\"id_str\":\"1554775060853956611\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"url\":\"https:\\/\\/t.co\\/v3DBR8PCOb\",\"display_url\":\"pic.twitter.com\\/v3DBR8PCOb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Princeaso_\\/status\\/1554775131767046144\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4474\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[11,15]},{\"text\":\"exercises\",\"indices\":[70,80]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[105,111]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[112,130]},{\"text\":\"Pelosi\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554774884340797440,\"id_str\":\"1554774884340797440\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"url\":\"https:\\/\\/t.co\\/gY9D4euHGU\",\"display_url\":\"pic.twitter.com\\/gY9D4euHGU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554775098518712320\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4475\":{\"hashtags\":[{\"text\":\"Minions2\",\"indices\":[48,57]},{\"text\":\"Taiwan\",\"indices\":[58,65]},{\"text\":\"China\",\"indices\":[66,72]},{\"text\":\"knust\",\"indices\":[73,79]},{\"text\":\"CitiCBS\",\"indices\":[105,113]},{\"text\":\"Sunkwa22\",\"indices\":[155,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554774691910504450,\"id_str\":\"1554774691910504450\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"url\":\"https:\\/\\/t.co\\/vNymkx9byA\",\"display_url\":\"pic.twitter.com\\/vNymkx9byA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Movie__Hack\\/status\\/1554774694976536576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":430,\"h\":680,\"resize\":\"fit\"}}}]},\"4476\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"China\",\"indices\":[164,170]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[171,178]},{\"text\":\"RwandaBirds\",\"indices\":[179,191]},{\"text\":\"helicopter\",\"indices\":[193,204]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[205,230]},{\"text\":\"Buhari\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773993567166465,\"id_str\":\"1554773993567166465\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"url\":\"https:\\/\\/t.co\\/o97l2VTsqf\",\"display_url\":\"pic.twitter.com\\/o97l2VTsqf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chidi_Africa\\/status\\/1554773996087943168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":452,\"resize\":\"fit\"}}}]},\"4477\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[0,8]},{\"text\":\"helicopter\",\"indices\":[9,20]},{\"text\":\"Pelosi\",\"indices\":[21,28]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Montefiore\",\"name\":\"me\",\"id\":19416168,\"id_str\":\"19416168\",\"indices\":[30,41]},{\"screen_name\":\"MontefioreNYC\",\"name\":\"Montefiore Health System\",\"id\":340356226,\"id_str\":\"340356226\",\"indices\":[42,56]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4zqEsOVY8V\",\"expanded_url\":\"https:\\/\\/csrreporters.com\\/dr-philip-o-ozuah-donates-1m-to-university-of-ibadan-medical-school\\/\",\"display_url\":\"csrreporters.com\\/dr-philip-o-oz\\u2026\",\"indices\":[129,152]}]},\"4478\":{\"hashtags\":[{\"text\":\"Hotjist\",\"indices\":[91,99]},{\"text\":\"Hotjistnaija\",\"indices\":[100,113]},{\"text\":\"Insecurity\",\"indices\":[114,125]},{\"text\":\"FederalGovernment\",\"indices\":[126,144]},{\"text\":\"Obituary\",\"indices\":[147,156]},{\"text\":\"Taiwan\",\"indices\":[158,165]},{\"text\":\"DeJong\",\"indices\":[167,174]},{\"text\":\"NigerRepublic\",\"indices\":[176,190]},{\"text\":\"BBNaijaS7\",\"indices\":[192,202]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OiH6YOif4U\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/federal-government-seeks-collective-efforts-to-fight-insecurity\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/fed\\u2026\",\"indices\":[66,89]}]},\"4479\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[13,20]},{\"text\":\"sabinus\",\"indices\":[21,29]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[30,37]},{\"text\":\"Ukraine\",\"indices\":[38,46]},{\"text\":\"corset\",\"indices\":[47,54]},{\"text\":\"fashion\",\"indices\":[55,63]},{\"text\":\"fashionblogger\",\"indices\":[64,79]},{\"text\":\"tops\",\"indices\":[80,85]},{\"text\":\"Trending\",\"indices\":[86,95]},{\"text\":\"bbn\",\"indices\":[96,100]},{\"text\":\"fashionstyle\",\"indices\":[101,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773317906796545,\"id_str\":\"1554773317906796545\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"url\":\"https:\\/\\/t.co\\/5uMO3VBzLw\",\"display_url\":\"pic.twitter.com\\/5uMO3VBzLw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequeenhelen1\\/status\\/1554773340077817857\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}}]},\"4480\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[112,123]},{\"text\":\"Wizkid\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"Taiwan\",\"indices\":[173,180]},{\"text\":\"BBNaija\",\"indices\":[181,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554773004470652929,\"id_str\":\"1554773004470652929\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}}]},\"4481\":{\"hashtags\":[{\"text\":\"Taip\\u00e9i\",\"indices\":[43,50]},{\"text\":\"USA\",\"indices\":[105,109]},{\"text\":\"China\",\"indices\":[110,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"America\",\"indices\":[125,133]},{\"text\":\"Pelosi\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554772590178160640,\"id_str\":\"1554772590178160640\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"url\":\"https:\\/\\/t.co\\/N7nn8Fz6vq\",\"display_url\":\"pic.twitter.com\\/N7nn8Fz6vq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554772663498711040\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"medium\":{\"w\":828,\"h\":440,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":440,\"resize\":\"fit\"}}}]},\"4482\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"VinScully\",\"indices\":[71,81]},{\"text\":\"Batgirl\",\"indices\":[82,90]},{\"text\":\"Pelosi\",\"indices\":[91,98]},{\"text\":\"Merrifield\",\"indices\":[99,110]},{\"text\":\"padres\",\"indices\":[111,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bOmdvPOT5P\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/services\\/product\\/professional-brochure-design-for-your-business-1517461647331160064?ref=project_share\",\"display_url\":\"upwork.com\\/services\\/produ\\u2026\",\"indices\":[120,143]}],\"media\":[{\"id\":1554772621677498368,\"id_str\":\"1554772621677498368\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"url\":\"https:\\/\\/t.co\\/X86S5nOBSN\",\"display_url\":\"pic.twitter.com\\/X86S5nOBSN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Evereztt\\/status\\/1554772632880521218\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1449,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"}}}]},\"4483\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[215,225]},{\"text\":\"Pelosi\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4484\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"WorldWarIII\",\"indices\":[52,64]},{\"text\":\"WorldWar3\",\"indices\":[65,75]},{\"text\":\"Obituary\",\"indices\":[76,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554772016070361088,\"id_str\":\"1554772016070361088\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"url\":\"https:\\/\\/t.co\\/IYplsoT20R\",\"display_url\":\"pic.twitter.com\\/IYplsoT20R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChuksCopn\\/status\\/1554772019346022407\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":573,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":849,\"resize\":\"fit\"}}}]},\"4485\":{\"hashtags\":[{\"text\":\"Umbrella\",\"indices\":[232,241]},{\"text\":\"Taiwan\",\"indices\":[261,268]},{\"text\":\"Cucurella\",\"indices\":[269,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OnorSandy\",\"name\":\"Sen. Prof. Sandy Ojang Onor\",\"id\":1136922427353681920,\"id_str\":\"1136922427353681920\",\"indices\":[4,14]},{\"screen_name\":\"JJarigbe\",\"name\":\"Senator Jarigbe Agom Jarigbe\",\"id\":1251858396376072192,\"id_str\":\"1251858396376072192\",\"indices\":[57,66]},{\"screen_name\":\"HouseNGR\",\"name\":\"House of Reps NGR\",\"id\":727803307880796160,\"id_str\":\"727803307880796160\",\"indices\":[139,148]}],\"urls\":[],\"media\":[{\"id\":1554771128069005315,\"id_str\":\"1554771128069005315\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"4486\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[38,53]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[114,128]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[133,141]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[222,228]}],\"urls\":[],\"media\":[{\"id\":1554771075552231427,\"id_str\":\"1554771075552231427\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"4487\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"Phyna\",\"indices\":[112,118]},{\"text\":\"BBNaija\",\"indices\":[119,127]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554770968610017281,\"id_str\":\"1554770968610017281\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":800,\"resize\":\"fit\"}}}]},\"4488\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554770257641779200,\"id_str\":\"1554770257641779200\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"url\":\"https:\\/\\/t.co\\/rZNuI5h5Ot\",\"display_url\":\"pic.twitter.com\\/rZNuI5h5Ot\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554770731585589248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"medium\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":496,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4489\":{\"hashtags\":[{\"text\":\"BBNaijaS7\",\"indices\":[215,225]},{\"text\":\"Pelosi\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4490\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[156,163]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"Solana\",\"indices\":[174,181]},{\"text\":\"China\",\"indices\":[183,189]},{\"text\":\"sabinus\",\"indices\":[191,199]},{\"text\":\"helicopter\",\"indices\":[201,212]},{\"text\":\"BlueJays\",\"indices\":[214,223]},{\"text\":\"Ukraine\",\"indices\":[225,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554768625726328832,\"id_str\":\"1554768625726328832\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"url\":\"https:\\/\\/t.co\\/WrVic4OPRi\",\"display_url\":\"pic.twitter.com\\/WrVic4OPRi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554768633062215691\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"small\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"large\":{\"w\":648,\"h\":648,\"resize\":\"fit\"}}}]},\"4491\":{\"hashtags\":[{\"text\":\"SuccesQuotes\",\"indices\":[9,22]},{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"sabinus\",\"indices\":[31,39]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[40,47]},{\"text\":\"BibleBuild\",\"indices\":[48,59]},{\"text\":\"NFTCommunity\",\"indices\":[60,73]},{\"text\":\"NFTGiveaways\",\"indices\":[74,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"BlueJays\",\"indices\":[103,112]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[113,131]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[132,155]},{\"text\":\"LoveIsland2022\",\"indices\":[156,171]},{\"text\":\"USA\",\"indices\":[172,176]},{\"text\":\"Ukraine\",\"indices\":[177,185]},{\"text\":\"UkraineRussiaWar\",\"indices\":[186,203]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554768309056331776,\"id_str\":\"1554768309056331776\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"url\":\"https:\\/\\/t.co\\/opacZr7G7c\",\"display_url\":\"pic.twitter.com\\/opacZr7G7c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StephenQuartzz\\/status\\/1554768321983422464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"4492\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"USA\",\"indices\":[109,113]},{\"text\":\"China\",\"indices\":[114,120]},{\"text\":\"Pelosi\",\"indices\":[121,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554767751876468737,\"id_str\":\"1554767751876468737\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"url\":\"https:\\/\\/t.co\\/1c7AflzQAb\",\"display_url\":\"pic.twitter.com\\/1c7AflzQAb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554767858600513536\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":630,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":357,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":672,\"resize\":\"fit\"}}}]},\"4493\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[133,140]},{\"text\":\"China\",\"indices\":[141,147]},{\"text\":\"Wizkid\",\"indices\":[148,155]},{\"text\":\"nerves\",\"indices\":[156,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554767399236341760,\"id_str\":\"1554767399236341760\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"large\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}}]},\"4494\":{\"hashtags\":[{\"text\":\"August2022\",\"indices\":[57,68]},{\"text\":\"HappyNewMonth\",\"indices\":[69,83]},{\"text\":\"Davido\",\"indices\":[84,91]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[92,117]},{\"text\":\"China\",\"indices\":[118,124]},{\"text\":\"sabinus\",\"indices\":[125,133]},{\"text\":\"Taiwan\",\"indices\":[134,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554766290543427584,\"id_str\":\"1554766290543427584\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"4495\":{\"hashtags\":[{\"text\":\"war\",\"indices\":[61,65]},{\"text\":\"Pelosi\",\"indices\":[66,73]},{\"text\":\"Pelosi\",\"indices\":[74,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554766146477461509,\"id_str\":\"1554766146477461509\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":405,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":405,\"resize\":\"fit\"}}}]},\"4496\":{\"hashtags\":[{\"text\":\"china\",\"indices\":[58,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"Pelosi\",\"indices\":[73,80]},{\"text\":\"Solana\",\"indices\":[81,88]},{\"text\":\"sabinus\",\"indices\":[89,97]},{\"text\":\"asuu\",\"indices\":[98,103]},{\"text\":\"BBNaija\",\"indices\":[104,112]},{\"text\":\"TheCough\",\"indices\":[113,122]},{\"text\":\"Newmusic\",\"indices\":[123,132]},{\"text\":\"wizkid\",\"indices\":[133,140]},{\"text\":\"davido\",\"indices\":[141,148]},{\"text\":\"billboard\",\"indices\":[149,159]},{\"text\":\"applemusic\",\"indices\":[160,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554765834270248962,\"id_str\":\"1554765834270248962\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"url\":\"https:\\/\\/t.co\\/tVKiTCZMPw\",\"display_url\":\"pic.twitter.com\\/tVKiTCZMPw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koliwill1\\/status\\/1554765853220036608\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":576,\"resize\":\"fit\"}}}]},\"4497\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"China\",\"indices\":[109,115]},{\"text\":\"sabinus\",\"indices\":[116,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4498\":{\"hashtags\":[{\"text\":\"WWENXT\",\"indices\":[215,222]},{\"text\":\"sabinus\",\"indices\":[223,231]},{\"text\":\"Ukraine\",\"indices\":[232,240]},{\"text\":\"Taiwan\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554765283188940800,\"id_str\":\"1554765283188940800\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"url\":\"https:\\/\\/t.co\\/6kGd3EkX1b\",\"display_url\":\"pic.twitter.com\\/6kGd3EkX1b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1554765285294542850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"large\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"medium\":{\"w\":346,\"h\":457,\"resize\":\"fit\"}}}]},\"4499\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[136,142]},{\"text\":\"Taiwan\",\"indices\":[143,150]},{\"text\":\"Solana\",\"indices\":[151,158]},{\"text\":\"sabinus\",\"indices\":[159,167]},{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"BibleBuild\",\"indices\":[180,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764964535177216,\"id_str\":\"1554764964535177216\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"url\":\"https:\\/\\/t.co\\/UWvwP9LxNe\",\"display_url\":\"pic.twitter.com\\/UWvwP9LxNe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CmskEmmanuel\\/status\\/1554765082739056641\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4500\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"NancyPelosi\",\"indices\":[80,92]},{\"text\":\"Taipei\",\"indices\":[93,100]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[101,119]},{\"text\":\"China\",\"indices\":[120,126]},{\"text\":\"pelositaiwan\",\"indices\":[127,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764935460073473,\"id_str\":\"1554764935460073473\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"url\":\"https:\\/\\/t.co\\/CR7C9DFv93\",\"display_url\":\"pic.twitter.com\\/CR7C9DFv93\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764958662942720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":346,\"resize\":\"fit\"}}}]},\"4501\":{\"hashtags\":[{\"text\":\"SouthKorea\",\"indices\":[38,49]},{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"China\",\"indices\":[60,66]},{\"text\":\"Pelosi\",\"indices\":[67,74]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554764251381657600,\"id_str\":\"1554764251381657600\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"url\":\"https:\\/\\/t.co\\/xCNhf8f5EP\",\"display_url\":\"pic.twitter.com\\/xCNhf8f5EP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764294016737280\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":334,\"resize\":\"fit\"}}}]},\"4502\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[63,86]},{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"China\",\"indices\":[155,161]},{\"text\":\"Solana\",\"indices\":[162,169]},{\"text\":\"sabinus\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JeffreyGuterman\",\"name\":\"Dr. Jeffrey Guterman\",\"id\":246103,\"id_str\":\"246103\",\"indices\":[0,16]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[17,26]},{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[53,62]}],\"urls\":[],\"media\":[{\"id\":1554763832123326464,\"id_str\":\"1554763832123326464\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4503\":{\"hashtags\":[{\"text\":\"PeterObi4President2023\",\"indices\":[102,125]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[126,151]},{\"text\":\"peterobi\",\"indices\":[152,161]},{\"text\":\"LabourParty\",\"indices\":[162,174]},{\"text\":\"davidhundeyin\",\"indices\":[175,189]},{\"text\":\"plateau\",\"indices\":[190,198]},{\"text\":\"helicopter\",\"indices\":[199,210]},{\"text\":\"Osimhen\",\"indices\":[211,219]},{\"text\":\"Tuchel\",\"indices\":[220,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"Pelosi\",\"indices\":[236,243]},{\"text\":\"Solana\",\"indices\":[244,251]},{\"text\":\"sabinus\",\"indices\":[252,260]},{\"text\":\"BlueJays\",\"indices\":[261,270]},{\"text\":\"GodAbeg\",\"indices\":[271,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[13,22]}],\"urls\":[],\"media\":[{\"id\":1554763035843108864,\"id_str\":\"1554763035843108864\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"url\":\"https:\\/\\/t.co\\/1PxDqmYaXY\",\"display_url\":\"pic.twitter.com\\/1PxDqmYaXY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/benita_ani\\/status\\/1554763044194058240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":969,\"h\":1200,\"resize\":\"fit\"}}}]},\"4504\":{\"hashtags\":[{\"text\":\"art\",\"indices\":[175,179]},{\"text\":\"color\",\"indices\":[180,186]},{\"text\":\"artwork\",\"indices\":[187,195]},{\"text\":\"watercolorart\",\"indices\":[196,210]},{\"text\":\"painting\",\"indices\":[211,220]},{\"text\":\"VisualArt\",\"indices\":[221,231]},{\"text\":\"NFTCommunity\",\"indices\":[232,245]},{\"text\":\"Taiwan\",\"indices\":[246,253]},{\"text\":\"Pelosi\",\"indices\":[254,261]},{\"text\":\"China\",\"indices\":[262,268]},{\"text\":\"Solana\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554762200086200321,\"id_str\":\"1554762200086200321\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"4505\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[45,57]},{\"text\":\"Taiwan\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"pelositaiwan\",\"indices\":[106,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554762267853352961,\"id_str\":\"1554762267853352961\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"url\":\"https:\\/\\/t.co\\/dg9cm1VN2l\",\"display_url\":\"pic.twitter.com\\/dg9cm1VN2l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554762305824378881\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":432,\"h\":256,\"resize\":\"fit\"}}}]},\"4506\":{\"hashtags\":[{\"text\":\"ministerforsoupaffairs\",\"indices\":[12,35]},{\"text\":\"ministerforsoupaffairs\",\"indices\":[168,191]},{\"text\":\"Pelosi\",\"indices\":[192,199]},{\"text\":\"Stew\",\"indices\":[200,205]},{\"text\":\"eathealthy\",\"indices\":[206,217]},{\"text\":\"HealthyFood\",\"indices\":[218,230]},{\"text\":\"Health\",\"indices\":[231,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554761742458277888,\"id_str\":\"1554761742458277888\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZzXoicSwjA\",\"display_url\":\"pic.twitter.com\\/ZzXoicSwjA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akande_susan_b\\/status\\/1554761745159409664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"4507\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"sabinus\",\"indices\":[24,32]},{\"text\":\"MentalHealthMatters\",\"indices\":[33,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554761507367518211,\"id_str\":\"1554761507367518211\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"url\":\"https:\\/\\/t.co\\/awt1ppOpID\",\"display_url\":\"pic.twitter.com\\/awt1ppOpID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554761554939322368\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4508\":{\"hashtags\":[{\"text\":\"LoveIsland2022\",\"indices\":[48,63]},{\"text\":\"China\",\"indices\":[64,70]},{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"Trending\",\"indices\":[79,88]},{\"text\":\"trendingreels\",\"indices\":[89,103]},{\"text\":\"Essence\",\"indices\":[104,112]},{\"text\":\"sabinus\",\"indices\":[113,121]},{\"text\":\"wizkid\",\"indices\":[122,129]},{\"text\":\"helicopter\",\"indices\":[130,141]},{\"text\":\"AllorNothing\",\"indices\":[142,155]},{\"text\":\"GodAbeg\",\"indices\":[156,164]},{\"text\":\"MONEY\",\"indices\":[166,172]},{\"text\":\"BBNaija\",\"indices\":[173,181]},{\"text\":\"Influencer\",\"indices\":[182,193]},{\"text\":\"MondayMotivation\",\"indices\":[194,211]},{\"text\":\"fashion\",\"indices\":[212,220]},{\"text\":\"naijamusic\",\"indices\":[221,232]},{\"text\":\"luxury\",\"indices\":[233,240]},{\"text\":\"explorepage\",\"indices\":[241,253]},{\"text\":\"NowPlaying\",\"indices\":[254,265]},{\"text\":\"ChrisBrown\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554760500709396480,\"id_str\":\"1554760500709396480\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"url\":\"https:\\/\\/t.co\\/NEgkLhxrKk\",\"display_url\":\"pic.twitter.com\\/NEgkLhxrKk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554760645769306112\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4509\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"Pelosi\",\"indices\":[146,153]},{\"text\":\"China\",\"indices\":[154,160]},{\"text\":\"sabinus\",\"indices\":[161,169]},{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Ukraine\",\"indices\":[182,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SLBHGR3jvE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GuardpostNg\\/status\\/1554741440797884416\",\"display_url\":\"twitter.com\\/GuardpostNg\\/st\\u2026\",\"indices\":[193,216]}]},\"4510\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"NancyPelosi\",\"indices\":[64,76]},{\"text\":\"Taipei\",\"indices\":[77,84]},{\"text\":\"Pelosi\",\"indices\":[85,92]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[93,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"pelositaiwan\",\"indices\":[119,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554760071694864385,\"id_str\":\"1554760071694864385\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"url\":\"https:\\/\\/t.co\\/5UnH7vNTLv\",\"display_url\":\"pic.twitter.com\\/5UnH7vNTLv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554760106612367360\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1270,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":386,\"resize\":\"fit\"}}}]},\"4511\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[160,167]},{\"text\":\"sabinus\",\"indices\":[168,176]},{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"China\",\"indices\":[189,195]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[196,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pXP9ujMIMP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GuardpostNg\\/status\\/1554549189392027648\",\"display_url\":\"twitter.com\\/GuardpostNg\\/st\\u2026\",\"indices\":[214,237]}]},\"4512\":{\"hashtags\":[{\"text\":\"school\",\"indices\":[35,42]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lPNFb4LFii\",\"expanded_url\":\"https:\\/\\/agbakablog.com\\/2022\\/08\\/03\\/3-killed-in-china-kindergarten-stabbing-afp\\/\",\"display_url\":\"agbakablog.com\\/2022\\/08\\/03\\/3-k\\u2026\",\"indices\":[68,91]}]},\"4513\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"dejong\",\"indices\":[109,116]},{\"text\":\"nigerrepublic\",\"indices\":[117,131]},{\"text\":\"Obituary\",\"indices\":[132,141]},{\"text\":\"Emily\",\"indices\":[142,148]},{\"text\":\"Rufai\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UnB0AzoKHG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3BxyUKa\",\"display_url\":\"bit.ly\\/3BxyUKa\",\"indices\":[76,99]}],\"media\":[{\"id\":1554758920064958466,\"id_str\":\"1554758920064958466\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"url\":\"https:\\/\\/t.co\\/2ZhUtWf8xb\",\"display_url\":\"pic.twitter.com\\/2ZhUtWf8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/opuwari66\\/status\\/1554758927639781377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"4514\":{\"hashtags\":[{\"text\":\"MUFC\",\"indices\":[70,75]},{\"text\":\"Taiwan\",\"indices\":[80,87]},{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"sabinus\",\"indices\":[96,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AT13Oficial\",\"name\":\"Alex Telles\",\"id\":1331704359596527621,\"id_str\":\"1331704359596527621\",\"indices\":[0,12]},{\"screen_name\":\"SevillaFC_ENG\",\"name\":\"Sevilla FC\",\"id\":2941994339,\"id_str\":\"2941994339\",\"indices\":[53,67]}],\"urls\":[],\"media\":[{\"id\":1554758636550983680,\"id_str\":\"1554758636550983680\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":961,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1405,\"resize\":\"fit\"}}}]},\"4515\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[223,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"Pelosi\",\"indices\":[236,243]},{\"text\":\"Solana\",\"indices\":[244,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4516\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554758166637936640,\"id_str\":\"1554758166637936640\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"url\":\"https:\\/\\/t.co\\/jNjKO4A0JW\",\"display_url\":\"pic.twitter.com\\/jNjKO4A0JW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrwopaa\\/status\\/1554758300004237313\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4517\":{\"hashtags\":[{\"text\":\"Rufai\",\"indices\":[97,103]},{\"text\":\"Taiwan\",\"indices\":[104,111]},{\"text\":\"GodAbeg\",\"indices\":[112,120]},{\"text\":\"arisetv\",\"indices\":[121,129]},{\"text\":\"nigerrepublic\",\"indices\":[130,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hQIkNcxJDz\",\"expanded_url\":\"https:\\/\\/nigeriannewssphere.com\\/arisetv-journalist-rufai-apologies-for-brt-traffic-infractions-in-lagos\\/\",\"display_url\":\"nigeriannewssphere.com\\/arisetv-journa\\u2026\",\"indices\":[146,169]}],\"media\":[{\"id\":1554757310014263296,\"id_str\":\"1554757310014263296\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"url\":\"https:\\/\\/t.co\\/s8oGfNaHs6\",\"display_url\":\"pic.twitter.com\\/s8oGfNaHs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ariemu_ogaga\\/status\\/1554757312325246977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"medium\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"large\":{\"w\":225,\"h\":225,\"resize\":\"fit\"}}}]},\"4518\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[91,99]},{\"text\":\"BBNajiaS7\",\"indices\":[100,110]},{\"text\":\"Chelsea\",\"indices\":[111,119]},{\"text\":\"Khalid\",\"indices\":[120,127]},{\"text\":\"dejong\",\"indices\":[128,135]},{\"text\":\"Deji\",\"indices\":[136,141]},{\"text\":\"Taiwan\",\"indices\":[142,149]},{\"text\":\"Nigeria\",\"indices\":[150,158]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4519\":{\"hashtags\":[{\"text\":\"Ambazonia\",\"indices\":[0,10]},{\"text\":\"Somaliland\",\"indices\":[72,83]},{\"text\":\"Taiwan\",\"indices\":[131,138]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AbdulKarimaliSC\",\"name\":\"Abdul Karim Ali\",\"id\":1229318321671151616,\"id_str\":\"1229318321671151616\",\"indices\":[235,251]},{\"screen_name\":\"BohHerbert\",\"name\":\"Herbert Boh\",\"id\":529047537,\"id_str\":\"529047537\",\"indices\":[252,263]},{\"screen_name\":\"MariantaNjomia\",\"name\":\"President Marianta Njomia\",\"id\":1507474476342067200,\"id_str\":\"1507474476342067200\",\"indices\":[264,279]}],\"urls\":[]},\"4520\":{\"hashtags\":[{\"text\":\"Sweetgirl\",\"indices\":[7,17]},{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"Solana\",\"indices\":[26,33]},{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"DonBelle\",\"indices\":[42,51]},{\"text\":\"DOB\",\"indices\":[52,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554755190439428096,\"id_str\":\"1554755190439428096\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"url\":\"https:\\/\\/t.co\\/okJ4mPo0Zj\",\"display_url\":\"pic.twitter.com\\/okJ4mPo0Zj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djackyz\\/status\\/1554755756930568193\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4521\":{\"hashtags\":[{\"text\":\"EpitomeStores\",\"indices\":[21,35]},{\"text\":\"Pelosi\",\"indices\":[51,58]},{\"text\":\"helicopter\",\"indices\":[59,70]},{\"text\":\"BlueJays\",\"indices\":[71,80]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[81,99]},{\"text\":\"LoveIsland2022\",\"indices\":[100,115]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[116,134]},{\"text\":\"Ukraine\",\"indices\":[135,143]},{\"text\":\"UkraineRussiaWar\",\"indices\":[144,161]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[162,187]},{\"text\":\"oesym\",\"indices\":[188,194]},{\"text\":\"Guerrilla1stWin\",\"indices\":[195,211]},{\"text\":\"wednesdaythought\",\"indices\":[212,229]},{\"text\":\"fashionstyle\",\"indices\":[230,243]},{\"text\":\"Viruman\",\"indices\":[244,252]},{\"text\":\"Piastri\",\"indices\":[253,261]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4522\":{\"hashtags\":[{\"text\":\"Hotjist\",\"indices\":[101,109]},{\"text\":\"Hotjistnaija\",\"indices\":[110,123]},{\"text\":\"UniversityOfIbadan\",\"indices\":[124,143]},{\"text\":\"Admission\",\"indices\":[144,154]},{\"text\":\"Obituary\",\"indices\":[157,166]},{\"text\":\"SamOmatseye\",\"indices\":[168,180]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"BBNaijaS7\",\"indices\":[191,201]},{\"text\":\"Leno\",\"indices\":[203,208]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bOA5eXnBbt\",\"expanded_url\":\"https:\\/\\/hotjist.com\\/2022\\/08\\/03\\/university-of-ibadan-ui-promises-students-with-marks-below-200-admission\\/\",\"display_url\":\"hotjist.com\\/2022\\/08\\/03\\/uni\\u2026\",\"indices\":[76,99]}]},\"4523\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[35,45]},{\"text\":\"Rufai\",\"indices\":[46,52]},{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"MichaelJackson\",\"indices\":[61,76]},{\"text\":\"davidhundeyin\",\"indices\":[77,91]},{\"text\":\"Khalid\",\"indices\":[101,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554753224216920068,\"id_str\":\"1554753224216920068\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"url\":\"https:\\/\\/t.co\\/PyNUmil5YE\",\"display_url\":\"pic.twitter.com\\/PyNUmil5YE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerryOladapo\\/status\\/1554754395887247361\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":464,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":704,\"resize\":\"fit\"}}}]},\"4524\":{\"hashtags\":[{\"text\":\"lifequotes\",\"indices\":[42,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"OBIdient2023\",\"indices\":[62,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554193160506580992,\"id_str\":\"1554193160506580992\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cync8O1w12\",\"display_url\":\"pic.twitter.com\\/Cync8O1w12\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jara_Connect\\/status\\/1554753949986525184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4525\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[21,28]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554753120709877770,\"id_str\":\"1554753120709877770\",\"indices\":[29,52],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"url\":\"https:\\/\\/t.co\\/Q5tlxYu3Bj\",\"display_url\":\"pic.twitter.com\\/Q5tlxYu3Bj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bereal_akpan\\/status\\/1554753222811721728\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"4526\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[119,126]},{\"text\":\"Davido\",\"indices\":[127,134]},{\"text\":\"WednesdayMotivation\",\"indices\":[135,155]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Dremodrizzy\",\"name\":\"DREMO\\ud83d\\udd25\\ud83d\\udc09\",\"id\":203399526,\"id_str\":\"203399526\",\"indices\":[96,108]}],\"urls\":[],\"media\":[{\"id\":1554752373578399745,\"id_str\":\"1554752373578399745\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"url\":\"https:\\/\\/t.co\\/DyHldauMMV\",\"display_url\":\"pic.twitter.com\\/DyHldauMMV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554752436572667904\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":398,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":398,\"resize\":\"fit\"}}}]},\"4527\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[51,59]},{\"text\":\"Pelosi\",\"indices\":[81,88]},{\"text\":\"helicopter\",\"indices\":[101,112]},{\"text\":\"wonderqoute\",\"indices\":[130,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554752227050491904,\"id_str\":\"1554752227050491904\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"url\":\"https:\\/\\/t.co\\/ovHXa0hzlB\",\"display_url\":\"pic.twitter.com\\/ovHXa0hzlB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wonderqoute\\/status\\/1554752228992368641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"4528\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[68,76]},{\"text\":\"Taiwan\",\"indices\":[77,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4529\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[96,103]},{\"text\":\"China\",\"indices\":[104,110]},{\"text\":\"pelositaiwan\",\"indices\":[111,124]},{\"text\":\"Pelosi\",\"indices\":[125,132]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[133,151]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554750326871302144,\"id_str\":\"1554750326871302144\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"url\":\"https:\\/\\/t.co\\/FoQKyOEd9r\",\"display_url\":\"pic.twitter.com\\/FoQKyOEd9r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750398535110657\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"4530\":{\"hashtags\":[{\"text\":\"Obidatti2023\",\"indices\":[231,244]},{\"text\":\"Taiwan\",\"indices\":[245,252]},{\"text\":\"NigeriaDecides2023\",\"indices\":[259,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WOaKtGkKsD\",\"expanded_url\":\"https:\\/\\/youtu.be\\/VW4wAoj6_m4\",\"display_url\":\"youtu.be\\/VW4wAoj6_m4\",\"indices\":[115,138]}],\"media\":[{\"id\":1554749405697277953,\"id_str\":\"1554749405697277953\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"url\":\"https:\\/\\/t.co\\/L1J8YWRhY5\",\"display_url\":\"pic.twitter.com\\/L1J8YWRhY5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/izzitalk\\/status\\/1554750357292650496\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4531\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"BBNaijaS7\",\"indices\":[225,235]},{\"text\":\"Sabinus\",\"indices\":[238,246]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4532\":{\"hashtags\":[{\"text\":\"drilling\",\"indices\":[32,41]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"China\",\"indices\":[73,79]},{\"text\":\"Pelosi\",\"indices\":[80,87]},{\"text\":\"pelositaiwan\",\"indices\":[88,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554749832274796545,\"id_str\":\"1554749832274796545\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/xABIkq4zud\",\"display_url\":\"pic.twitter.com\\/xABIkq4zud\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750035895545858\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"4533\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"Khalid\",\"indices\":[45,52]},{\"text\":\"audacity\",\"indices\":[54,63]},{\"text\":\"wednesday\",\"indices\":[64,74]},{\"text\":\"memes\",\"indices\":[75,81]},{\"text\":\"bananaisland\",\"indices\":[82,95]},{\"text\":\"realestate\",\"indices\":[96,107]},{\"text\":\"property\",\"indices\":[108,117]},{\"text\":\"landsinlagos\",\"indices\":[118,131]},{\"text\":\"landsinibadan\",\"indices\":[132,146]},{\"text\":\"lekki\",\"indices\":[147,153]},{\"text\":\"epe\",\"indices\":[154,158]},{\"text\":\"audaciaprimerealty\",\"indices\":[159,178]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4534\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"BibleBuild\",\"indices\":[109,120]},{\"text\":\"sabinus\",\"indices\":[121,129]},{\"text\":\"Wizkid\",\"indices\":[130,137]},{\"text\":\"Obidatti2023\",\"indices\":[138,151]},{\"text\":\"naughy\",\"indices\":[152,159]},{\"text\":\"Essence\",\"indices\":[160,168]},{\"text\":\"omatseye\",\"indices\":[169,178]},{\"text\":\"Tinubu\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554749811965960192,\"id_str\":\"1554749811965960192\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"url\":\"https:\\/\\/t.co\\/1jI8BGtAOK\",\"display_url\":\"pic.twitter.com\\/1jI8BGtAOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfeJerry1\\/status\\/1554749956875067392\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":456,\"h\":450,\"resize\":\"fit\"}}}]},\"4535\":{\"hashtags\":[{\"text\":\"OneChina\",\"indices\":[194,203]},{\"text\":\"OneChinaPolicy\",\"indices\":[205,220]},{\"text\":\"OneChinaPrinciple\",\"indices\":[222,240]},{\"text\":\"Taiwan\",\"indices\":[242,249]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4536\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"Taiwan\",\"indices\":[147,154]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554749286390308864,\"id_str\":\"1554749286390308864\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"url\":\"https:\\/\\/t.co\\/uWbWNr9sVl\",\"display_url\":\"pic.twitter.com\\/uWbWNr9sVl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554749294770413568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"}}}]},\"4537\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Ukraine\",\"indices\":[117,125]},{\"text\":\"bread\",\"indices\":[126,132]},{\"text\":\"Jungkook\",\"indices\":[133,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554748770927222785,\"id_str\":\"1554748770927222785\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"url\":\"https:\\/\\/t.co\\/5FPEyppr3w\",\"display_url\":\"pic.twitter.com\\/5FPEyppr3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SweetMusicMan27\\/status\\/1554748781551288321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"4538\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GBrgjulvEy\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/breaking-terrorists-release-5-more-abuja-kaduna-train-hostages-including-one-shot-during-captivity\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/bre\\u2026\",\"indices\":[199,222]}]},\"4539\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D2mWMiFPdB\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/russia-ukraine-latest-updates-first-grain-ship-arrives-in-turkey\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/rus\\u2026\",\"indices\":[199,222]}]},\"4540\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pDyetVMxPe\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/ukraine-war-russia-accuses-us-of-direct-role-in-ukraine-war\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/ukr\\u2026\",\"indices\":[199,222]}]},\"4541\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Db8KAoBCa0\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/blueface-addresses-viral-footage-of-physical-altercation-with-chrisean-rock\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/blu\\u2026\",\"indices\":[199,222]}]},\"4542\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cJKMI6dV2E\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/my-body-feels-so-much-lighter-nancy-isime-reacts-to-call-out-by-blessing-ceo-that-she-did-body-surgery\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/my-\\u2026\",\"indices\":[199,222]}]},\"4543\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nELAMJq4aT\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/im-not-sure-of-getting-married-again-korra-obidi\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/im-\\u2026\",\"indices\":[199,222]}]},\"4544\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7spSTcsOvF\",\"expanded_url\":\"https:\\/\\/echonewsng.com\\/2022\\/08\\/03\\/youths-protest-against-ebubeagu-in-abia\\/\",\"display_url\":\"echonewsng.com\\/2022\\/08\\/03\\/you\\u2026\",\"indices\":[199,222]}]},\"4545\":{\"hashtags\":[{\"text\":\"bread\",\"indices\":[0,6]},{\"text\":\"BBNajiaS7\",\"indices\":[39,49]},{\"text\":\"sabinus\",\"indices\":[80,88]},{\"text\":\"Pelosi\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1Wd4CxaVCP\",\"expanded_url\":\"https:\\/\\/www.247globalupdates.com\\/10-min-full-video-bbnaija-khalid-make-love-to-daniella-passionately-as-amaka-watch-live\\/\",\"display_url\":\"247globalupdates.com\\/10-min-full-vi\\u2026\",\"indices\":[199,222]}]},\"4546\":{\"hashtags\":[{\"text\":\"nectarbeauty\",\"indices\":[168,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"Pelosi\",\"indices\":[190,197]},{\"text\":\"Solana\",\"indices\":[198,205]},{\"text\":\"Jungkook\",\"indices\":[206,215]},{\"text\":\"BlueJays\",\"indices\":[216,225]},{\"text\":\"BibleBuild\",\"indices\":[226,237]},{\"text\":\"LoveIsland2022\",\"indices\":[238,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4547\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"BBNaija7\",\"indices\":[41,50]},{\"text\":\"LoveIsland2022\",\"indices\":[51,66]},{\"text\":\"Beyonce\",\"indices\":[67,75]},{\"text\":\"julydump\",\"indices\":[76,85]},{\"text\":\"BBNaija\",\"indices\":[86,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554747204505636864,\"id_str\":\"1554747204505636864\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"url\":\"https:\\/\\/t.co\\/MElRLNOy44\",\"display_url\":\"pic.twitter.com\\/MElRLNOy44\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FredTizzle\\/status\\/1554747247434366977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":633,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1117,\"h\":1200,\"resize\":\"fit\"}}}]},\"4548\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[204,211]},{\"text\":\"BBNaijaS7\",\"indices\":[213,223]},{\"text\":\"BBNaija\",\"indices\":[225,233]},{\"text\":\"Chelsea\",\"indices\":[235,243]},{\"text\":\"AtikuOkowa2023\",\"indices\":[245,260]},{\"text\":\"Tinubu\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[33,39]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[163,178]},{\"screen_name\":\"IAOkowa\",\"name\":\"Dr. Ifeanyi Arthur Okowa\",\"id\":1026733681912758273,\"id_str\":\"1026733681912758273\",\"indices\":[179,187]},{\"screen_name\":\"Ecowas4atiku23\",\"name\":\"Ecowas4atiku\",\"id\":1098177146386829313,\"id_str\":\"1098177146386829313\",\"indices\":[188,203]}],\"urls\":[],\"media\":[{\"id\":1554745603615252480,\"id_str\":\"1554745603615252480\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"url\":\"https:\\/\\/t.co\\/tj6Iz3obts\",\"display_url\":\"pic.twitter.com\\/tj6Iz3obts\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuel_atser\\/status\\/1554745680635338754\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"4549\":{\"hashtags\":[{\"text\":\"ToxicByOjaDaddy\",\"indices\":[170,186]},{\"text\":\"Pelosi\",\"indices\":[187,194]},{\"text\":\"helicopter\",\"indices\":[195,206]},{\"text\":\"LoveIsland2022\",\"indices\":[207,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OjaDaddy7\",\"name\":\"Ojadaddi\",\"id\":1246161298292977665,\"id_str\":\"1246161298292977665\",\"indices\":[0,10]},{\"screen_name\":\"Se_unofficial\",\"name\":\"Se\\u2019un\",\"id\":926552993658372096,\"id_str\":\"926552993658372096\",\"indices\":[14,28]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S7kMwohQM4\",\"expanded_url\":\"https:\\/\\/youtu.be\\/BYl6AgDuUJM\",\"display_url\":\"youtu.be\\/BYl6AgDuUJM\",\"indices\":[145,168]}],\"media\":[{\"id\":1554745383775096833,\"id_str\":\"1554745383775096833\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"url\":\"https:\\/\\/t.co\\/7y4Kb7qmrv\",\"display_url\":\"pic.twitter.com\\/7y4Kb7qmrv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobzyeasy\\/status\\/1554745475730968580\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4550\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"UkraineRussiaWar\",\"indices\":[157,174]},{\"text\":\"ChinaTaiwan\",\"indices\":[175,187]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[188,210]},{\"text\":\"abujaRTBOT\",\"indices\":[211,222]},{\"text\":\"Chelsea\",\"indices\":[223,231]},{\"text\":\"ASUU\",\"indices\":[232,237]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MineralSorcerer\",\"name\":\"Solid Mineral Sorcerer\",\"id\":1545418862845476864,\"id_str\":\"1545418862845476864\",\"indices\":[36,52]}],\"urls\":[],\"media\":[{\"id\":1554745248693338112,\"id_str\":\"1554745248693338112\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"url\":\"https:\\/\\/t.co\\/tP7gEqnV9g\",\"display_url\":\"pic.twitter.com\\/tP7gEqnV9g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MineralSorcerer\\/status\\/1554745332243767296\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":640,\"resize\":\"fit\"}}}]},\"4551\":{\"hashtags\":[{\"text\":\"writerscommunity\",\"indices\":[32,49]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"helicopter\",\"indices\":[58,69]},{\"text\":\"iamwriting\",\"indices\":[70,81]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4552\":{\"hashtags\":[{\"text\":\"Niger\",\"indices\":[72,78]},{\"text\":\"oesym\",\"indices\":[79,85]},{\"text\":\"famemma15\",\"indices\":[86,96]},{\"text\":\"Pelosi\",\"indices\":[97,104]},{\"text\":\"relationships\",\"indices\":[105,119]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4553\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[145,152]},{\"text\":\"PeterObi2023\",\"indices\":[154,167]},{\"text\":\"wcw\",\"indices\":[169,173]},{\"text\":\"asuu\",\"indices\":[174,179]},{\"text\":\"Ukraine\",\"indices\":[181,189]},{\"text\":\"chiomaonyekwere\",\"indices\":[191,207]},{\"text\":\"GoldMedal\",\"indices\":[209,219]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554743513115500544,\"id_str\":\"1554743513115500544\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"url\":\"https:\\/\\/t.co\\/PWYGApAmQx\",\"display_url\":\"pic.twitter.com\\/PWYGApAmQx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Victorbajju_30\\/status\\/1554743515757903873\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":660,\"resize\":\"fit\"}}}]},\"4554\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"wike\",\"indices\":[116,121]},{\"text\":\"MONEY\",\"indices\":[122,128]},{\"text\":\"Ukraine\",\"indices\":[129,137]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554743252850556929,\"id_str\":\"1554743252850556929\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"4555\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[138,146]},{\"text\":\"BBNajia\",\"indices\":[151,159]},{\"text\":\"Pelosi\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OTHPfDhA0A\",\"expanded_url\":\"http:\\/\\/www.rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[113,136]}],\"media\":[{\"id\":1554741626064539649,\"id_str\":\"1554741626064539649\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"url\":\"https:\\/\\/t.co\\/2zQh46RCfU\",\"display_url\":\"pic.twitter.com\\/2zQh46RCfU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554741633626816513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"4556\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[28,36]},{\"text\":\"Pelosi\",\"indices\":[37,44]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554739948124880896,\"id_str\":\"1554739948124880896\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"url\":\"https:\\/\\/t.co\\/A5RIiMeVU0\",\"display_url\":\"pic.twitter.com\\/A5RIiMeVU0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mclioon\\/status\\/1554740126550560773\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4557\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[86,97]},{\"text\":\"WWIII\",\"indices\":[98,104]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[105,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554739912653643776,\"id_str\":\"1554739912653643776\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"url\":\"https:\\/\\/t.co\\/gWlbMkTYBc\",\"display_url\":\"pic.twitter.com\\/gWlbMkTYBc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trouve_ng\\/status\\/1554739926125760512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4558\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"China\",\"indices\":[133,139]},{\"text\":\"Pelosi\",\"indices\":[140,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J8wIhsxckV\",\"expanded_url\":\"https:\\/\\/investogist.com\\/chinas-drills-violates-our-sovereignty-amounts-to-air-and-sea-blockade-taiwans-defence-ministry\\/\",\"display_url\":\"investogist.com\\/chinas-drills-\\u2026\",\"indices\":[101,124]}]},\"4559\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[111,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4560\":{\"hashtags\":[{\"text\":\"EndSarsNow\",\"indices\":[130,141]},{\"text\":\"surprise\",\"indices\":[143,152]},{\"text\":\"cakes\",\"indices\":[154,160]},{\"text\":\"RedVelvet\",\"indices\":[162,172]},{\"text\":\"Pelosi\",\"indices\":[174,181]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[183,208]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yFlgAbP7Ot\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348101598722\",\"display_url\":\"wa.me\\/c\\/2348101598722\",\"indices\":[105,128]}],\"media\":[{\"id\":1554738864350167041,\"id_str\":\"1554738864350167041\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"4561\":{\"hashtags\":[{\"text\":\"2023Elections\",\"indices\":[168,182]},{\"text\":\"NigeriaDecides2023\",\"indices\":[184,203]},{\"text\":\"Pelosi\",\"indices\":[204,211]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554737719577821184,\"id_str\":\"1554737719577821184\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"url\":\"https:\\/\\/t.co\\/2cCusH98nf\",\"display_url\":\"pic.twitter.com\\/2cCusH98nf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__osinachi__\\/status\\/1554737862293209089\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"4562\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[57,64]},{\"text\":\"helicopter\",\"indices\":[65,76]},{\"text\":\"BlueJays\",\"indices\":[77,86]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[87,105]},{\"text\":\"LoveIsland2022\",\"indices\":[106,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[122,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4563\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[191,199]},{\"text\":\"Bread\",\"indices\":[200,206]},{\"text\":\"Hermes\",\"indices\":[207,214]},{\"text\":\"obituaries\",\"indices\":[215,226]},{\"text\":\"Ramsdale\",\"indices\":[227,236]},{\"text\":\"China\",\"indices\":[237,243]},{\"text\":\"Pelosi\",\"indices\":[244,251]},{\"text\":\"helicopter\",\"indices\":[252,263]},{\"text\":\"Messi\\ud80c\\udcf5\",\"indices\":[264,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735959383674882,\"id_str\":\"1554735959383674882\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"4564\":{\"hashtags\":[{\"text\":\"Datti\",\"indices\":[168,174]},{\"text\":\"saraki\",\"indices\":[175,182]},{\"text\":\"sabinus\",\"indices\":[212,220]},{\"text\":\"BBNaija\",\"indices\":[221,229]},{\"text\":\"Pelosi\",\"indices\":[230,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735874017054722,\"id_str\":\"1554735874017054722\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"url\":\"https:\\/\\/t.co\\/05qgfyGbKI\",\"display_url\":\"pic.twitter.com\\/05qgfyGbKI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stancity3\\/status\\/1554735948960784384\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}}}]},\"4565\":{\"hashtags\":[{\"text\":\"Khalid\",\"indices\":[56,63]},{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"Nigerrepublic\",\"indices\":[72,86]},{\"text\":\"Ebubeagu\",\"indices\":[87,96]},{\"text\":\"sabinus\",\"indices\":[97,105]},{\"text\":\"NNPC\",\"indices\":[106,111]},{\"text\":\"Jubril\",\"indices\":[112,119]},{\"text\":\"welcometochelsea\",\"indices\":[120,137]},{\"text\":\"shes40\",\"indices\":[138,145]},{\"text\":\"Jaruma\",\"indices\":[146,153]},{\"text\":\"Daniella\",\"indices\":[154,163]},{\"text\":\"obituaries\",\"indices\":[164,175]},{\"text\":\"2Naira\",\"indices\":[176,183]},{\"text\":\"EmmanuelUmoh\",\"indices\":[184,197]},{\"text\":\"BeautyWithBrains\",\"indices\":[198,215]},{\"text\":\"Asaba\",\"indices\":[216,222]},{\"text\":\"Shameless\",\"indices\":[223,233]},{\"text\":\"Wizkid\",\"indices\":[234,241]},{\"text\":\"caterefe\",\"indices\":[242,251]},{\"text\":\"Machala\",\"indices\":[252,260]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735937007112194,\"id_str\":\"1554735937007112194\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"url\":\"https:\\/\\/t.co\\/kwr5SYLOaz\",\"display_url\":\"pic.twitter.com\\/kwr5SYLOaz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554735947413176320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4566\":{\"hashtags\":[{\"text\":\"2Naira\",\"indices\":[129,136]},{\"text\":\"Buhari\",\"indices\":[137,144]},{\"text\":\"Racism\",\"indices\":[145,152]},{\"text\":\"Nigerrepublic\",\"indices\":[153,167]},{\"text\":\"Jaruma\",\"indices\":[168,175]},{\"text\":\"datti\",\"indices\":[176,182]},{\"text\":\"sabinus\",\"indices\":[183,191]},{\"text\":\"ChinaTaiwan\",\"indices\":[193,205]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735749492260865,\"id_str\":\"1554735749492260865\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"url\":\"https:\\/\\/t.co\\/B1ILEk1MbJ\",\"display_url\":\"pic.twitter.com\\/B1ILEk1MbJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554735759818620928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":971,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":971,\"resize\":\"fit\"}}}]},\"4567\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[72,79]},{\"text\":\"BlueJays\",\"indices\":[80,89]},{\"text\":\"LoveIsland2022\",\"indices\":[90,105]},{\"text\":\"oesym\",\"indices\":[106,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Yhudiee8\",\"name\":\"Yhudiee\",\"id\":1444149360347033601,\"id_str\":\"1444149360347033601\",\"indices\":[34,43]}],\"urls\":[],\"media\":[{\"id\":1554735436928630784,\"id_str\":\"1554735436928630784\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"url\":\"https:\\/\\/t.co\\/cnV6ldQ2ua\",\"display_url\":\"pic.twitter.com\\/cnV6ldQ2ua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nsikanekanemm\\/status\\/1554735453118529537\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4568\":{\"hashtags\":[{\"text\":\"classsuites\",\"indices\":[153,165]},{\"text\":\"hotelsandapartmentsinlagos\",\"indices\":[166,193]},{\"text\":\"apartmentsinlagos\",\"indices\":[194,212]},{\"text\":\"LoveIsland2022\",\"indices\":[213,228]},{\"text\":\"hotelsinnigeria\",\"indices\":[229,245]},{\"text\":\"accomodationinlagos\",\"indices\":[246,266]},{\"text\":\"Pelosi\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554735431408914432,\"id_str\":\"1554735431408914432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"url\":\"https:\\/\\/t.co\\/pOOwEAlBEc\",\"display_url\":\"pic.twitter.com\\/pOOwEAlBEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/classsuitehotel\\/status\\/1554735443136192512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"}}}]},\"4569\":{\"hashtags\":[{\"text\":\"Flashback\",\"indices\":[0,10]},{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"BBNaija\",\"indices\":[216,224]},{\"text\":\"BBNajiaS7\",\"indices\":[225,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554734807376076801,\"id_str\":\"1554734807376076801\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"url\":\"https:\\/\\/t.co\\/EUng3m4l60\",\"display_url\":\"pic.twitter.com\\/EUng3m4l60\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554734810131734530\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":551,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":553,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":553,\"resize\":\"fit\"}}}]},\"4570\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[68,76]},{\"text\":\"Badminton\",\"indices\":[78,88]},{\"text\":\"Pelosi\",\"indices\":[90,97]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554734369297891328,\"id_str\":\"1554734369297891328\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"url\":\"https:\\/\\/t.co\\/pCuQbu6Ysx\",\"display_url\":\"pic.twitter.com\\/pCuQbu6Ysx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingrickky23\\/status\\/1554734371969662976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"small\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"large\":{\"w\":607,\"h\":595,\"resize\":\"fit\"}}}]},\"4571\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"helicopter\",\"indices\":[144,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554734270551400448,\"id_str\":\"1554734270551400448\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"url\":\"https:\\/\\/t.co\\/R1s7OnW7dm\",\"display_url\":\"pic.twitter.com\\/R1s7OnW7dm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JobayeResources\\/status\\/1554734274032590850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1636,\"h\":2046,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4572\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[93,103]},{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"China\",\"indices\":[112,118]},{\"text\":\"Tielemans\",\"indices\":[119,129]},{\"text\":\"Fulani\",\"indices\":[130,137]},{\"text\":\"ASUU\",\"indices\":[138,143]},{\"text\":\"Roma\",\"indices\":[144,149]},{\"text\":\"shes40\",\"indices\":[150,157]},{\"text\":\"wordwarIII\",\"indices\":[158,169]},{\"text\":\"Naughty\",\"indices\":[170,178]},{\"text\":\"Cubana\",\"indices\":[179,186]},{\"text\":\"racism\",\"indices\":[187,194]},{\"text\":\"OKOWA\",\"indices\":[195,201]},{\"text\":\"welcometochelsea\",\"indices\":[202,219]},{\"text\":\"Emerson\",\"indices\":[220,228]},{\"text\":\"Bokoharam\",\"indices\":[229,239]},{\"text\":\"Taiwanchina\",\"indices\":[240,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"BBNajia\",\"indices\":[261,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Limosiris1\",\"name\":\"Limosiris\",\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"indices\":[20,31]}],\"urls\":[],\"media\":[{\"id\":1554733300681478144,\"id_str\":\"1554733300681478144\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"url\":\"https:\\/\\/t.co\\/svknsySMh6\",\"display_url\":\"pic.twitter.com\\/svknsySMh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554733314564554752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4573\":{\"hashtags\":[{\"text\":\"Amapiano\",\"indices\":[30,39]},{\"text\":\"Pelosi\",\"indices\":[40,47]},{\"text\":\"WonderWoman\",\"indices\":[48,60]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554732684127117312,\"id_str\":\"1554732684127117312\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"url\":\"https:\\/\\/t.co\\/xRALFAqC3I\",\"display_url\":\"pic.twitter.com\\/xRALFAqC3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1554733053494403074\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4574\":{\"hashtags\":[{\"text\":\"shortfilm\",\"indices\":[69,79]},{\"text\":\"found\",\"indices\":[80,86]},{\"text\":\"festivals\",\"indices\":[87,97]},{\"text\":\"award\",\"indices\":[98,104]},{\"text\":\"taiwan\",\"indices\":[105,112]},{\"text\":\"portable\",\"indices\":[113,122]},{\"text\":\"china\",\"indices\":[123,129]},{\"text\":\"khalid\",\"indices\":[130,137]},{\"text\":\"asuu\",\"indices\":[138,143]},{\"text\":\"WorldWarIII\",\"indices\":[144,156]},{\"text\":\"shes40\",\"indices\":[157,164]},{\"text\":\"sudan\",\"indices\":[166,172]},{\"text\":\"brighton\",\"indices\":[173,182]},{\"text\":\"sabinus\",\"indices\":[183,191]},{\"text\":\"wizkid\",\"indices\":[192,199]},{\"text\":\"machala\",\"indices\":[200,208]},{\"text\":\"carterefe\",\"indices\":[209,219]},{\"text\":\"davido\",\"indices\":[220,227]},{\"text\":\"tinubu\",\"indices\":[228,235]},{\"text\":\"obituary\",\"indices\":[236,245]},{\"text\":\"datti\",\"indices\":[246,252]},{\"text\":\"BurnaBoy\",\"indices\":[253,262]},{\"text\":\"Modella\",\"indices\":[263,271]},{\"text\":\"BBNaija\",\"indices\":[272,280]},{\"text\":\"Amaka\",\"indices\":[281,287]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554731615561162752,\"id_str\":\"1554731615561162752\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"url\":\"https:\\/\\/t.co\\/DWwoN9Sc4V\",\"display_url\":\"pic.twitter.com\\/DWwoN9Sc4V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/6fiveEmpire\\/status\\/1554732574689443840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"4575\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[206,212]},{\"text\":\"Pelosi\",\"indices\":[213,220]},{\"text\":\"Reparations\",\"indices\":[221,233]},{\"text\":\"Taiwan\",\"indices\":[234,241]},{\"text\":\"Heartsofoak\",\"indices\":[242,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554732320195809282,\"id_str\":\"1554732320195809282\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"url\":\"https:\\/\\/t.co\\/dzITwqWjp7\",\"display_url\":\"pic.twitter.com\\/dzITwqWjp7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554732329196740609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4576\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[241,248]},{\"text\":\"voiceactor\",\"indices\":[249,260]},{\"text\":\"voiceover\",\"indices\":[261,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554731444085444610,\"id_str\":\"1554731444085444610\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"url\":\"https:\\/\\/t.co\\/bN4xCQw4No\",\"display_url\":\"pic.twitter.com\\/bN4xCQw4No\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialOSYB\\/status\\/1554731771115225088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}}}]},\"4577\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[233,241]},{\"text\":\"Pelosi\",\"indices\":[247,254]},{\"text\":\"thiefnubu\",\"indices\":[255,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554730166420733952,\"id_str\":\"1554730166420733952\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"url\":\"https:\\/\\/t.co\\/7FooxwIVkO\",\"display_url\":\"pic.twitter.com\\/7FooxwIVkO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554730661495410688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"4578\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[106,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554730198003843074,\"id_str\":\"1554730198003843074\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"url\":\"https:\\/\\/t.co\\/1VYFNTg3hP\",\"display_url\":\"pic.twitter.com\\/1VYFNTg3hP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jugo_kc\\/status\\/1554730211597586433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4579\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[77,84]},{\"text\":\"China\",\"indices\":[85,91]},{\"text\":\"Pelosi\",\"indices\":[92,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D5JkwYXMuh\",\"expanded_url\":\"https:\\/\\/investogist.com\\/is-taiwan-a-part-of-china-a-short-history-of-taiwan\\/\",\"display_url\":\"investogist.com\\/is-taiwan-a-pa\\u2026\",\"indices\":[53,76]}]},\"4580\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"Pelosi\",\"indices\":[24,31]},{\"text\":\"China\",\"indices\":[32,38]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[39,47]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[48,71]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[72,93]},{\"text\":\"BlueJays\",\"indices\":[94,103]},{\"text\":\"helicopter\",\"indices\":[104,115]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[116,134]},{\"text\":\"BadmintonMalaysia\",\"indices\":[135,153]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[154,161]},{\"text\":\"MONEY\",\"indices\":[162,168]},{\"text\":\"UkraineRussiaWar\",\"indices\":[169,186]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[187,212]},{\"text\":\"Wizkid\",\"indices\":[213,220]},{\"text\":\"SABCNews\",\"indices\":[221,230]},{\"text\":\"sabinus\",\"indices\":[231,239]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554728882691051521,\"id_str\":\"1554728882691051521\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"url\":\"https:\\/\\/t.co\\/bINlXjK7kw\",\"display_url\":\"pic.twitter.com\\/bINlXjK7kw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1554729093857435649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}}}]},\"4581\":{\"hashtags\":[{\"text\":\"Yorubas\",\"indices\":[43,51]},{\"text\":\"samomatseye\",\"indices\":[52,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"sabinus\",\"indices\":[73,81]},{\"text\":\"Datti\",\"indices\":[82,88]},{\"text\":\"Obidatti2023\",\"indices\":[89,102]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554728955416088577,\"id_str\":\"1554728955416088577\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"url\":\"https:\\/\\/t.co\\/dPgOSI5xlD\",\"display_url\":\"pic.twitter.com\\/dPgOSI5xlD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IgweRichard8\\/status\\/1554728958880612353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":693,\"resize\":\"fit\"}}}]},\"4582\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[210,217]},{\"text\":\"Taiwan\",\"indices\":[218,225]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[11,19]}],\"urls\":[]},\"4583\":{\"hashtags\":[{\"text\":\"BlueJays\",\"indices\":[55,64]},{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"goodmorning\",\"indices\":[73,85]},{\"text\":\"wednesdaythought\",\"indices\":[86,103]},{\"text\":\"MONEY\",\"indices\":[104,110]},{\"text\":\"UkraineRussiaWar\",\"indices\":[111,128]},{\"text\":\"BadmintonMalaysia\",\"indices\":[129,147]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554726832318054400,\"id_str\":\"1554726832318054400\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"url\":\"https:\\/\\/t.co\\/00jFWrl2SL\",\"display_url\":\"pic.twitter.com\\/00jFWrl2SL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554726841772023808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4584\":{\"hashtags\":[{\"text\":\"wednesdaythought\",\"indices\":[115,132]},{\"text\":\"WednesdayMotivation\",\"indices\":[133,153]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[155,176]},{\"text\":\"China\",\"indices\":[177,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]},{\"text\":\"NewMusic\",\"indices\":[192,201]},{\"text\":\"MONEY\",\"indices\":[202,208]},{\"text\":\"BlueJays\",\"indices\":[209,218]},{\"text\":\"Ukraine\",\"indices\":[219,227]},{\"text\":\"Pelosi\",\"indices\":[228,235]},{\"text\":\"hiphopculture\",\"indices\":[236,250]},{\"text\":\"Nigerianmusic\",\"indices\":[251,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XxPcFL25r1\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/kyng-izy\\/song\\/hitting-different-freestyle\",\"display_url\":\"audiomack.com\\/kyng-izy\\/song\\/\\u2026\",\"indices\":[90,113]}],\"media\":[{\"id\":1554726372932833280,\"id_str\":\"1554726372932833280\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"url\":\"https:\\/\\/t.co\\/GCVr1rxFO5\",\"display_url\":\"pic.twitter.com\\/GCVr1rxFO5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iamkyngizy\\/status\\/1554726590654959616\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":979,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1044,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":555,\"resize\":\"fit\"}}}]},\"4585\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[138,145]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[146,153]},{\"text\":\"CORxFLA\",\"indices\":[154,162]},{\"text\":\"Pelosi\",\"indices\":[163,170]},{\"text\":\"China\",\"indices\":[171,177]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[178,203]},{\"text\":\"\\u062d\\u0645\\u062f\\u0627\\u0644\\u0644\\u0647\",\"indices\":[204,212]},{\"text\":\"MAIDinMALACANANG\",\"indices\":[213,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725930014236674,\"id_str\":\"1554725930014236674\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"url\":\"https:\\/\\/t.co\\/QYu1R1lLjy\",\"display_url\":\"pic.twitter.com\\/QYu1R1lLjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554726355853627394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4586\":{\"hashtags\":[{\"text\":\"architecture\",\"indices\":[136,149]},{\"text\":\"construction\",\"indices\":[150,163]},{\"text\":\"Taiwan\",\"indices\":[164,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725413808742400,\"id_str\":\"1554725413808742400\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"url\":\"https:\\/\\/t.co\\/iBJGDUp0bv\",\"display_url\":\"pic.twitter.com\\/iBJGDUp0bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GbengaAdene\\/status\\/1554725439599435777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":805,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1374,\"resize\":\"fit\"}}}]},\"4587\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"China\",\"indices\":[211,217]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[218,239]},{\"text\":\"helicopter\",\"indices\":[240,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554725356984303618,\"id_str\":\"1554725356984303618\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4588\":{\"hashtags\":[{\"text\":\"BigThingsComingThrough\",\"indices\":[99,122]},{\"text\":\"Pelosi\",\"indices\":[123,130]},{\"text\":\"august\",\"indices\":[131,138]},{\"text\":\"AugustWish\",\"indices\":[139,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4589\":{\"hashtags\":[{\"text\":\"UECLQualification\",\"indices\":[33,51]},{\"text\":\"NaijaBet\",\"indices\":[231,240]},{\"text\":\"BoostedOdds\",\"indices\":[241,253]},{\"text\":\"HighestOdds\",\"indices\":[254,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[206,229]}],\"media\":[{\"id\":1554723961283411970,\"id_str\":\"1554723961283411970\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"url\":\"https:\\/\\/t.co\\/te9gZGngXO\",\"display_url\":\"pic.twitter.com\\/te9gZGngXO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554723970548699137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4590\":{\"hashtags\":[{\"text\":\"BlueJays\",\"indices\":[91,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"MONEY\",\"indices\":[132,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5xpaEHg8ce\",\"expanded_url\":\"https:\\/\\/youtu.be\\/E9vSwah0g6M\",\"display_url\":\"youtu.be\\/E9vSwah0g6M\",\"indices\":[140,163]}]},\"4591\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[125,132]},{\"text\":\"Niger\",\"indices\":[133,139]},{\"text\":\"Emily\",\"indices\":[149,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4592\":{\"hashtags\":[{\"text\":\"structures\",\"indices\":[48,59]},{\"text\":\"build\",\"indices\":[60,66]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"lagos\",\"indices\":[75,81]},{\"text\":\"nigeria\",\"indices\":[82,90]},{\"text\":\"lekki\",\"indices\":[91,97]},{\"text\":\"construction\",\"indices\":[98,111]},{\"text\":\"build\",\"indices\":[112,118]},{\"text\":\"projects\",\"indices\":[119,128]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554721485113147392,\"id_str\":\"1554721485113147392\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"url\":\"https:\\/\\/t.co\\/pCr4hW9X7X\",\"display_url\":\"pic.twitter.com\\/pCr4hW9X7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1554721500996984836\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"}}}]},\"4593\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[76,101]},{\"text\":\"BBNajia\",\"indices\":[102,110]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554720324557701121,\"id_str\":\"1554720324557701121\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"url\":\"https:\\/\\/t.co\\/EK0Gc5UCOx\",\"display_url\":\"pic.twitter.com\\/EK0Gc5UCOx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1554720326709288960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":467,\"resize\":\"fit\"}}}]},\"4594\":{\"hashtags\":[{\"text\":\"government\",\"indices\":[98,109]},{\"text\":\"Taiwan\",\"indices\":[110,117]},{\"text\":\"BadDecisionsTrailer1\",\"indices\":[118,139]},{\"text\":\"EndSARS\",\"indices\":[140,148]},{\"text\":\"NigeriaDecides2023\",\"indices\":[149,168]},{\"text\":\"vote\",\"indices\":[169,174]},{\"text\":\"BBNaija\",\"indices\":[175,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4595\":{\"hashtags\":[{\"text\":\"UCLQualifiers\",\"indices\":[37,51]},{\"text\":\"NaijaBet\",\"indices\":[236,245]},{\"text\":\"MONEY\",\"indices\":[246,252]},{\"text\":\"Taiwan\",\"indices\":[253,260]},{\"text\":\"HighestOdds\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z95eP0I0hw\",\"expanded_url\":\"http:\\/\\/www.NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[211,234]}],\"media\":[{\"id\":1554718930496897026,\"id_str\":\"1554718930496897026\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"url\":\"https:\\/\\/t.co\\/026mVX7MRE\",\"display_url\":\"pic.twitter.com\\/026mVX7MRE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554718940496105473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"4596\":{\"hashtags\":[{\"text\":\"2naira\",\"indices\":[75,82]},{\"text\":\"shes40\",\"indices\":[83,90]},{\"text\":\"sabinus\",\"indices\":[91,99]},{\"text\":\"Osuofia\",\"indices\":[115,123]},{\"text\":\"Pelosi\",\"indices\":[124,131]},{\"text\":\"CloserWithDonBelle\",\"indices\":[132,151]},{\"text\":\"ASUU\",\"indices\":[152,157]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BEEJAYSPECIAL_C\",\"name\":\"Beejayspecial_comedy\",\"id\":1060922787425120256,\"id_str\":\"1060922787425120256\",\"indices\":[18,34]},{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[35,45]},{\"screen_name\":\"mrmacaronii\",\"name\":\"MrMacaroni\",\"id\":302413828,\"id_str\":\"302413828\",\"indices\":[46,58]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[59,74]}],\"urls\":[],\"media\":[{\"id\":1554716543963041794,\"id_str\":\"1554716543963041794\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"url\":\"https:\\/\\/t.co\\/PtDVpyIb3c\",\"display_url\":\"pic.twitter.com\\/PtDVpyIb3c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BEEJAYSPECIAL_C\\/status\\/1554717766523015169\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4597\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[38,41]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"China\",\"indices\":[86,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4598\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"China\",\"indices\":[70,76]},{\"text\":\"MONEY\",\"indices\":[77,83]},{\"text\":\"NancyPelosi\",\"indices\":[84,96]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[97,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554717357368643585,\"id_str\":\"1554717357368643585\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"url\":\"https:\\/\\/t.co\\/ApThT4W86Q\",\"display_url\":\"pic.twitter.com\\/ApThT4W86Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1554717574407020547\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":352,\"resize\":\"fit\"}}}]},\"4599\":{\"hashtags\":[{\"text\":\"Live\",\"indices\":[80,85]},{\"text\":\"Taiwan\",\"indices\":[86,93]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4600\":{\"hashtags\":[{\"text\":\"NFT\",\"indices\":[70,74]},{\"text\":\"Pelosi\",\"indices\":[145,152]},{\"text\":\"NFTcollections\",\"indices\":[153,168]},{\"text\":\"NFTCommmunity\",\"indices\":[169,183]},{\"text\":\"nftcollector\",\"indices\":[184,197]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[226,234]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0L9xVWRVfW\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/ethereum\\/0x495f947276749ce646f68ac8c248420045cb7b5e\\/20408177402283559812004637536922274245294874380593302696799546581725512466433\\/\",\"display_url\":\"opensea.io\\/assets\\/ethereu\\u2026\",\"indices\":[198,221]}],\"media\":[{\"id\":1554716346495148033,\"id_str\":\"1554716346495148033\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"url\":\"https:\\/\\/t.co\\/uFYpJZTqZn\",\"display_url\":\"pic.twitter.com\\/uFYpJZTqZn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Nation22\\/status\\/1554716381962293253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"4601\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"Pelosi\",\"indices\":[61,68]},{\"text\":\"China\",\"indices\":[69,75]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[76,84]},{\"text\":\"MONEY\",\"indices\":[85,91]},{\"text\":\"BBNaija\",\"indices\":[92,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554715093241397248,\"id_str\":\"1554715093241397248\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"url\":\"https:\\/\\/t.co\\/p19mVRa2AF\",\"display_url\":\"pic.twitter.com\\/p19mVRa2AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554715101596467202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":600,\"resize\":\"fit\"}}}]},\"4602\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[256,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"BBNajia\",\"indices\":[272,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554714723341504512,\"id_str\":\"1554714723341504512\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"url\":\"https:\\/\\/t.co\\/3NV2jjlWqk\",\"display_url\":\"pic.twitter.com\\/3NV2jjlWqk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714732828950531\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"4603\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[113,120]},{\"text\":\"China\",\"indices\":[121,127]},{\"text\":\"CloserWithDonBelle\",\"indices\":[128,147]},{\"text\":\"BBNaija\",\"indices\":[148,156]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"isrealdmw\",\"name\":\"@ISREALDMW\",\"id\":989702068821782528,\"id_str\":\"989702068821782528\",\"indices\":[93,103]}],\"urls\":[],\"media\":[{\"id\":1554714291810484224,\"id_str\":\"1554714291810484224\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"url\":\"https:\\/\\/t.co\\/HcavykGv4z\",\"display_url\":\"pic.twitter.com\\/HcavykGv4z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714297980395521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"4604\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[135,142]},{\"text\":\"Pelosi\",\"indices\":[143,150]},{\"text\":\"China\",\"indices\":[151,157]},{\"text\":\"helicopter\",\"indices\":[158,169]},{\"text\":\"BBNaija\",\"indices\":[170,178]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"timayatimaya\",\"name\":\"Timaya\",\"id\":148937517,\"id_str\":\"148937517\",\"indices\":[120,133]}],\"urls\":[],\"media\":[{\"id\":1554714055516033024,\"id_str\":\"1554714055516033024\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"url\":\"https:\\/\\/t.co\\/nIr7rFMsXP\",\"display_url\":\"pic.twitter.com\\/nIr7rFMsXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714059471200258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"4605\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[224,231]},{\"text\":\"Pelosi\",\"indices\":[232,239]},{\"text\":\"China\",\"indices\":[240,246]},{\"text\":\"MONEY\",\"indices\":[247,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554713627369816064,\"id_str\":\"1554713627369816064\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"url\":\"https:\\/\\/t.co\\/BtUY195DPp\",\"display_url\":\"pic.twitter.com\\/BtUY195DPp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554713631694233600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"4606\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[101,108]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"China\",\"indices\":[117,123]},{\"text\":\"helicopter\",\"indices\":[124,135]},{\"text\":\"HelicopterCrash\",\"indices\":[136,152]},{\"text\":\"BBNaija\",\"indices\":[153,161]},{\"text\":\"BBNaija7\",\"indices\":[162,171]},{\"text\":\"LALISA\",\"indices\":[172,179]},{\"text\":\"adventure\",\"indices\":[180,190]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Mc7MtdXw7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\",\"display_url\":\"twitter.com\\/Houseofmolecul\\u2026\",\"indices\":[191,214]}]},\"4607\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"China\",\"indices\":[48,54]},{\"text\":\"EndAsuuStrikeNow\",\"indices\":[55,72]},{\"text\":\"Buhari\",\"indices\":[73,80]},{\"text\":\"GoodGovernance\",\"indices\":[81,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0TNrKS9IkU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Preciou38243071\\/status\\/1554488804538519555\",\"display_url\":\"twitter.com\\/Preciou3824307\\u2026\",\"indices\":[97,120]}]},\"4608\":{\"hashtags\":[{\"text\":\"FalzKneeDown\",\"indices\":[78,91]},{\"text\":\"Taiwan\",\"indices\":[92,99]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[108,114]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[115,123]},{\"text\":\"LALISA\",\"indices\":[124,131]},{\"text\":\"CloserWithDonBelle\",\"indices\":[132,151]},{\"text\":\"MONEY\",\"indices\":[152,158]},{\"text\":\"Ukraine\",\"indices\":[159,167]},{\"text\":\"sabinus\",\"indices\":[168,176]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4609\":{\"hashtags\":[{\"text\":\"OBIDIENT\",\"indices\":[38,47]},{\"text\":\"Taiwan\",\"indices\":[48,55]},{\"text\":\"CloserWithDonBelle\",\"indices\":[56,75]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[76,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554711438538711040,\"id_str\":\"1554711438538711040\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"url\":\"https:\\/\\/t.co\\/XpJ4IMt8Ke\",\"display_url\":\"pic.twitter.com\\/XpJ4IMt8Ke\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krazy_bankr\\/status\\/1554711445836816384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":363,\"resize\":\"fit\"}}}]},\"4610\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]},{\"text\":\"China\",\"indices\":[39,45]},{\"text\":\"anime\",\"indices\":[46,52]},{\"text\":\"animation\",\"indices\":[53,63]},{\"text\":\"lookdev\",\"indices\":[64,72]},{\"text\":\"3d\",\"indices\":[73,76]},{\"text\":\"3Danimation\",\"indices\":[77,89]},{\"text\":\"autodesk\",\"indices\":[90,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554710889399459841,\"id_str\":\"1554710889399459841\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"url\":\"https:\\/\\/t.co\\/w9hnwCxg17\",\"display_url\":\"pic.twitter.com\\/w9hnwCxg17\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Onos_bee\\/status\\/1554710920110252032\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4611\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"NancyPelosi\",\"indices\":[117,129]},{\"text\":\"JusticeForAlikaOgorchukwu\",\"indices\":[130,156]},{\"text\":\"ChelseaFC\",\"indices\":[157,167]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[168,193]},{\"text\":\"Obidatti2023\",\"indices\":[194,207]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a0j6A1nMAQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\",\"display_url\":\"twitter.com\\/DavidHundeyin\\/\\u2026\",\"indices\":[208,231]}]},\"4612\":{\"hashtags\":[{\"text\":\"GODDID\",\"indices\":[70,77]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"China\",\"indices\":[86,92]},{\"text\":\"EndSARS\",\"indices\":[123,131]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"djkhaled\",\"name\":\"DJ KHALED\",\"id\":27673684,\"id_str\":\"27673684\",\"indices\":[60,69]},{\"screen_name\":\"PastorEAAdeboye\",\"name\":\"Pastor Adeboye\",\"id\":235582329,\"id_str\":\"235582329\",\"indices\":[93,109]},{\"screen_name\":\"endsarsbot_\",\"name\":\"Official #EndSARS Bot\",\"id\":1154794876510396419,\"id_str\":\"1154794876510396419\",\"indices\":[110,122]}],\"urls\":[]},\"4613\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[37,44]},{\"text\":\"BBNaija\",\"indices\":[46,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554708357851774976,\"id_str\":\"1554708357851774976\",\"indices\":[55,78],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"url\":\"https:\\/\\/t.co\\/yPLk1iZ8xb\",\"display_url\":\"pic.twitter.com\\/yPLk1iZ8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Highkay_Store\\/status\\/1554708959176675329\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4614\":{\"hashtags\":[{\"text\":\"Popular\",\"indices\":[47,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"China\",\"indices\":[72,78]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[79,87]},{\"text\":\"LALISA\",\"indices\":[88,95]},{\"text\":\"CloserWithDonBelle\",\"indices\":[96,115]},{\"text\":\"helicopter\",\"indices\":[116,127]},{\"text\":\"MONEY\",\"indices\":[128,134]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[135,153]},{\"text\":\"Ukraine\",\"indices\":[154,162]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[163,188]},{\"text\":\"NancyPelosi\",\"indices\":[189,201]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[202,220]},{\"text\":\"mbstorm\",\"indices\":[221,229]},{\"text\":\"sabinus\",\"indices\":[230,238]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554708457663627265,\"id_str\":\"1554708457663627265\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"url\":\"https:\\/\\/t.co\\/PX6DaVUJWp\",\"display_url\":\"pic.twitter.com\\/PX6DaVUJWp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brownsonmfon5\\/status\\/1554708618041298944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"}}}]},\"4615\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"China\",\"indices\":[117,123]},{\"text\":\"Pelosi\",\"indices\":[124,131]},{\"text\":\"pelositaiwan\",\"indices\":[132,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554707911347437568,\"id_str\":\"1554707911347437568\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"url\":\"https:\\/\\/t.co\\/wVaAVdwSYq\",\"display_url\":\"pic.twitter.com\\/wVaAVdwSYq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554707960097828864\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":818,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":872,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":463,\"h\":680,\"resize\":\"fit\"}}}]},\"4616\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[88,96]},{\"text\":\"Jaruma\",\"indices\":[97,104]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[113,121]},{\"text\":\"Pelosi\",\"indices\":[122,129]},{\"text\":\"LALISA\",\"indices\":[130,137]},{\"text\":\"CloserWithDonBelle\",\"indices\":[138,157]},{\"text\":\"helicopter\",\"indices\":[158,169]},{\"text\":\"MONEY\",\"indices\":[170,176]},{\"text\":\"Ukraine\",\"indices\":[177,185]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[186,204]},{\"text\":\"mbstorm\",\"indices\":[205,213]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[214,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4617\":{\"hashtags\":[{\"text\":\"NEAT\",\"indices\":[103,108]},{\"text\":\"cryptocurrency\",\"indices\":[109,124]},{\"text\":\"Pelosi\",\"indices\":[125,132]}],\"symbols\":[{\"text\":\"neat\",\"indices\":[44,49]}],\"user_mentions\":[{\"screen_name\":\"Neatioking\",\"name\":\"Neatioking\\ud83d\\udc51\\u2728\",\"id\":1431759575523397632,\"id_str\":\"1431759575523397632\",\"indices\":[0,11]},{\"screen_name\":\"neat_io\",\"name\":\"Neatio\",\"id\":1355253149897007110,\"id_str\":\"1355253149897007110\",\"indices\":[12,20]}],\"urls\":[]},\"4618\":{\"hashtags\":[{\"text\":\"MONEY\",\"indices\":[161,167]},{\"text\":\"parttimejob\",\"indices\":[168,180]},{\"text\":\"womenempowerment\",\"indices\":[181,198]},{\"text\":\"Pelosi\",\"indices\":[199,206]},{\"text\":\"LALISA\",\"indices\":[207,214]},{\"text\":\"CloserWithDonBelle\",\"indices\":[215,234]},{\"text\":\"Ukraine\",\"indices\":[235,243]},{\"text\":\"mbstorm\",\"indices\":[244,252]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TECNOMobileNG\",\"name\":\"TECNO Mobile Nigeria\",\"id\":989869530,\"id_str\":\"989869530\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TZulVTSfrW\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\\/help-us-fundraise\",\"display_url\":\"humanaid.org.ng\\/help-us-fundra\\u2026\",\"indices\":[136,159]}],\"media\":[{\"id\":1554706425024241672,\"id_str\":\"1554706425024241672\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"url\":\"https:\\/\\/t.co\\/qIoG1x8dre\",\"display_url\":\"pic.twitter.com\\/qIoG1x8dre\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1554706442460037120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"}}}]},\"4619\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[167,174]},{\"text\":\"Obituary\",\"indices\":[175,184]},{\"text\":\"samomatseye\",\"indices\":[185,197]},{\"text\":\"China\",\"indices\":[198,204]},{\"text\":\"speedDatingwithSelema\",\"indices\":[215,237]},{\"text\":\"Pelosi\",\"indices\":[238,245]},{\"text\":\"Education\",\"indices\":[246,256]},{\"text\":\"UNICE\",\"indices\":[257,263]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OfficialGYBKogi\",\"name\":\"Alhaji Yahaya Bello\",\"id\":1339947103511064576,\"id_str\":\"1339947103511064576\",\"indices\":[150,166]},{\"screen_name\":\"OvieNews\",\"name\":\"\\uf8ff\\u1d0fnowvo_\\u1d0f\\u1d0d\\u1d00s\\u1d0f\\u0280\\u1d0f \\u1d00\\u029f\\u026a \\u1d0f\\u1d20\\u026a\\u1d07 \\u2122\\u2624\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1355004134274031618,\"id_str\":\"1355004134274031618\",\"indices\":[205,214]}],\"urls\":[],\"media\":[{\"id\":1554706289195978754,\"id_str\":\"1554706289195978754\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}}]},\"4620\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[29,36]},{\"text\":\"PLA\",\"indices\":[75,79]},{\"text\":\"drills\",\"indices\":[92,99]},{\"text\":\"Taiwan\",\"indices\":[120,127]},{\"text\":\"China\",\"indices\":[129,135]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"pelositaiwan\",\"indices\":[144,157]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554705959184134144,\"id_str\":\"1554705959184134144\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"url\":\"https:\\/\\/t.co\\/Qb10wIRB3M\",\"display_url\":\"pic.twitter.com\\/Qb10wIRB3M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554706027442241537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4621\":{\"hashtags\":[{\"text\":\"gospel\",\"indices\":[55,62]},{\"text\":\"WordPress\",\"indices\":[63,73]},{\"text\":\"stevey\",\"indices\":[74,81]},{\"text\":\"asia\",\"indices\":[82,87]},{\"text\":\"Taiwan\",\"indices\":[88,95]},{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"Ukraine\",\"indices\":[103,111]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nathanielblow\",\"name\":\"Nathaniel Bassey\",\"id\":210958383,\"id_str\":\"210958383\",\"indices\":[112,126]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/idG7fjpya1\",\"expanded_url\":\"https:\\/\\/pay.squadco.com\\/Y6QMUZ\",\"display_url\":\"pay.squadco.com\\/Y6QMUZ\",\"indices\":[128,151]}],\"media\":[{\"id\":1554704234200932352,\"id_str\":\"1554704234200932352\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"url\":\"https:\\/\\/t.co\\/Hu0fPeWVzN\",\"display_url\":\"pic.twitter.com\\/Hu0fPeWVzN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Llyodben56\\/status\\/1554704243826823170\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"small\":{\"w\":203,\"h\":248,\"resize\":\"fit\"}}}]},\"4622\":{\"hashtags\":[{\"text\":\"Coinbase\",\"indices\":[71,80]},{\"text\":\"trustwalletpizza\",\"indices\":[81,98]},{\"text\":\"nsfwtwt\",\"indices\":[99,107]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"China\",\"indices\":[125,131]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[132,140]},{\"text\":\"LALISA\",\"indices\":[141,148]},{\"text\":\"BadmintonMalaysia\",\"indices\":[149,167]},{\"text\":\"JacksonWang\",\"indices\":[168,180]},{\"text\":\"NancyPelosi\",\"indices\":[181,193]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[194,212]},{\"text\":\"cryptomarket\",\"indices\":[213,226]},{\"text\":\"NFTs\",\"indices\":[227,232]},{\"text\":\"blockchain\",\"indices\":[233,244]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4623\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[115,121]},{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"pelositaiwan\",\"indices\":[130,143]},{\"text\":\"Pelosi\",\"indices\":[144,151]},{\"text\":\"ChinaTaiwanConflict\",\"indices\":[152,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554702844980510720,\"id_str\":\"1554702844980510720\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"url\":\"https:\\/\\/t.co\\/mUSyx7YyU8\",\"display_url\":\"pic.twitter.com\\/mUSyx7YyU8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554703008604102656\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4624\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[18,24]},{\"text\":\"Pelosi\",\"indices\":[25,32]},{\"text\":\"Asake\",\"indices\":[33,39]},{\"text\":\"goodmorning\",\"indices\":[40,52]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554701933344178179,\"id_str\":\"1554701933344178179\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"url\":\"https:\\/\\/t.co\\/uCudsKYuHQ\",\"display_url\":\"pic.twitter.com\\/uCudsKYuHQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gabriel1tv\\/status\\/1554702333577150466\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4625\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"Pelosi\",\"indices\":[239,246]},{\"text\":\"China\",\"indices\":[247,253]},{\"text\":\"MONEY\",\"indices\":[254,260]},{\"text\":\"Ukraine\",\"indices\":[261,269]},{\"text\":\"wednesdaythought\",\"indices\":[270,287]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554701102259527680,\"id_str\":\"1554701102259527680\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4626\":{\"hashtags\":[{\"text\":\"WednesdayMotivation\",\"indices\":[73,93]},{\"text\":\"China\",\"indices\":[94,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"snackstime\",\"indices\":[117,128]},{\"text\":\"peanutburger\",\"indices\":[129,142]},{\"text\":\"greatpeanuts\",\"indices\":[143,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h8OpDyPKzx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\",\"display_url\":\"twitter.com\\/Greatfoodsng\\/s\\u2026\",\"indices\":[157,180]}]},\"4627\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[191,198]},{\"text\":\"taiwanwars\",\"indices\":[214,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4628\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[273,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4629\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"Pelosi\",\"indices\":[32,39]},{\"text\":\"China\",\"indices\":[40,46]},{\"text\":\"welcometochelsea\",\"indices\":[47,64]},{\"text\":\"jaruma\",\"indices\":[65,72]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554697439583551488,\"id_str\":\"1554697439583551488\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"url\":\"https:\\/\\/t.co\\/EDUnzkz6ar\",\"display_url\":\"pic.twitter.com\\/EDUnzkz6ar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OyeseekerSamuel\\/status\\/1554697466905350146\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"4630\":{\"hashtags\":[{\"text\":\"XiJingping\",\"indices\":[21,32]},{\"text\":\"NancyPelosi\",\"indices\":[151,163]},{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"China\",\"indices\":[215,221]},{\"text\":\"WWIII\",\"indices\":[223,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4631\":{\"hashtags\":[{\"text\":\"PeterObiForPresident2023\",\"indices\":[151,176]},{\"text\":\"BBNaija\",\"indices\":[177,185]},{\"text\":\"Rufai\",\"indices\":[186,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"Taiwan\",\"indices\":[200,207]},{\"text\":\"Nigeria\",\"indices\":[208,216]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554696305351483392,\"id_str\":\"1554696305351483392\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"url\":\"https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"display_url\":\"pic.twitter.com\\/Q1TM4ZvoeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1554696312964218880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4632\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"Taiwan\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DJ_TUNEZ\",\"name\":\"DJ TUNEZ\",\"id\":132759561,\"id_str\":\"132759561\",\"indices\":[0,9]},{\"screen_name\":\"wandecoal\",\"name\":\"Wande Coal\",\"id\":36617822,\"id_str\":\"36617822\",\"indices\":[10,20]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4633\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Badboytimz\",\"name\":\"Bad Boy Timz \\u26a1\\ufe0f\",\"id\":186891326,\"id_str\":\"186891326\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4634\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Halcy1023\",\"name\":\"Halcy Wizkid Bestie.eth \\ud83c\\udd7f\\ufe0f\",\"id\":1445811190622404619,\"id_str\":\"1445811190622404619\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4635\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dennisblessed42\",\"name\":\"DENNIS BLESSED\",\"id\":715675218388381696,\"id_str\":\"715675218388381696\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4636\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[171,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"zeenatmikail2\",\"name\":\"Zeenat S Mikail \\ud83c\\udf39\\ud83c\\udf39\",\"id\":1238205589123141633,\"id_str\":\"1238205589123141633\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4637\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[13,20]},{\"text\":\"Taipei\",\"indices\":[23,30]},{\"text\":\"Pelosi\",\"indices\":[31,38]},{\"text\":\"China\",\"indices\":[39,45]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554694558076010496,\"id_str\":\"1554694558076010496\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"url\":\"https:\\/\\/t.co\\/qKQVzBdYm4\",\"display_url\":\"pic.twitter.com\\/qKQVzBdYm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554694569500897282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"},\"medium\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"}}}]},\"4638\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KAFTAN_TV\",\"name\":\"KAFTANTV\",\"id\":976283614269845504,\"id_str\":\"976283614269845504\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4639\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ShehuSani\",\"name\":\"Senator Shehu Sani\",\"id\":117042662,\"id_str\":\"117042662\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4640\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[172,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RealMrumaDrive\",\"name\":\"Rumani\\u00ae\",\"id\":979437771608805376,\"id_str\":\"979437771608805376\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4641\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HenshawKate\",\"name\":\"Kate Henshaw\",\"id\":135295059,\"id_str\":\"135295059\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4642\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sabinus1_\",\"name\":\"Sabinus\",\"id\":1482169993047515140,\"id_str\":\"1482169993047515140\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4643\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[164,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ManUtd\",\"name\":\"Manchester United\",\"id\":558797310,\"id_str\":\"558797310\",\"indices\":[0,7]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4644\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"bbchausa\",\"name\":\"BBC News Hausa\",\"id\":18168536,\"id_str\":\"18168536\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4645\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[51,54]},{\"text\":\"Pelosi\",\"indices\":[55,62]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DerekJGrossman\",\"name\":\"Derek J. Grossman\",\"id\":758701597107032065,\"id_str\":\"758701597107032065\",\"indices\":[0,15]}],\"urls\":[]},\"4646\":{\"hashtags\":[{\"text\":\"HelicopterCrash\",\"indices\":[223,239]},{\"text\":\"Taiwan\",\"indices\":[240,247]},{\"text\":\"Pelosi\",\"indices\":[248,255]},{\"text\":\"BadmintonMalaysia\",\"indices\":[256,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4647\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[165,176]},{\"text\":\"Taiwan\",\"indices\":[177,184]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Arsenal\",\"name\":\"Arsenal\",\"id\":34613288,\"id_str\":\"34613288\",\"indices\":[0,8]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4648\":{\"hashtags\":[{\"text\":\"TrendingNow\",\"indices\":[7,19]},{\"text\":\"model\",\"indices\":[20,26]},{\"text\":\"Taiwan\",\"indices\":[27,34]},{\"text\":\"viral\",\"indices\":[35,41]},{\"text\":\"fyp\",\"indices\":[42,46]},{\"text\":\"grateful\",\"indices\":[47,56]},{\"text\":\"extraordinary\",\"indices\":[57,71]},{\"text\":\"agency\",\"indices\":[72,79]},{\"text\":\"modelingagency\",\"indices\":[81,96]},{\"text\":\"amirate\",\"indices\":[97,105]},{\"text\":\"arabemirate\",\"indices\":[106,118]},{\"text\":\"airhostess\",\"indices\":[119,130]},{\"text\":\"airlines\",\"indices\":[131,140]},{\"text\":\"obident\",\"indices\":[141,149]},{\"text\":\"love\",\"indices\":[150,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554690663807127557,\"id_str\":\"1554690663807127557\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4649\":{\"hashtags\":[{\"text\":\"OndoEkitiboy\",\"indices\":[54,67]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"Nigeria\",\"indices\":[82,90]},{\"text\":\"Wizkidfc\",\"indices\":[91,100]},{\"text\":\"African\",\"indices\":[101,109]},{\"text\":\"ibile\",\"indices\":[110,116]},{\"text\":\"Depay\",\"indices\":[117,123]},{\"text\":\"DJKhaled\",\"indices\":[124,133]},{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"China\",\"indices\":[142,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"LALISA\",\"indices\":[157,164]},{\"text\":\"WWERaw\",\"indices\":[165,172]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554690266120044545,\"id_str\":\"1554690266120044545\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"url\":\"https:\\/\\/t.co\\/gb3t8xLJMa\",\"display_url\":\"pic.twitter.com\\/gb3t8xLJMa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DOluwarado\\/status\\/1554690307333160963\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"4650\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"dawisu\",\"name\":\"Peacock\",\"id\":266930441,\"id_str\":\"266930441\",\"indices\":[0,7]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[8,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4651\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DrOlusesan\",\"name\":\"Son of David\",\"id\":3042607684,\"id_str\":\"3042607684\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4652\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IAmENISA\",\"name\":\"ENISA\",\"id\":2355632540,\"id_str\":\"2355632540\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4653\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[171,182]},{\"text\":\"Taiwan\",\"indices\":[183,190]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UmmyAbdullahi\",\"name\":\"ummie_nah\",\"id\":1226473614821789696,\"id_str\":\"1226473614821789696\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4654\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[196,207]},{\"text\":\"Taiwan\",\"indices\":[208,215]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[0,14]},{\"screen_name\":\"WestAfricaWeek\",\"name\":\"West Africa Weekly\",\"id\":1364956849804611584,\"id_str\":\"1364956849804611584\",\"indices\":[15,30]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[31,39]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4655\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"Pelosi\",\"indices\":[50,57]},{\"text\":\"WWERaw\",\"indices\":[59,66]},{\"text\":\"BurnaBoy\",\"indices\":[68,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4656\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"capitalcom\",\"name\":\"Capital.com Worldwide\",\"id\":800629853099696128,\"id_str\":\"800629853099696128\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4657\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vanguardngrnews\",\"name\":\"Vanguard Newspapers\",\"id\":39975533,\"id_str\":\"39975533\",\"indices\":[0,16]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZEd7\",\"display_url\":\"pic.twitter.com\\/y5GWRqZEd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4658\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[166,177]},{\"text\":\"Taiwan\",\"indices\":[178,185]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UBAGroup\",\"name\":\"UBA Group\",\"id\":29944465,\"id_str\":\"29944465\",\"indices\":[0,9]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4659\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[82,89]},{\"text\":\"Pelosi\",\"indices\":[90,97]},{\"text\":\"China\",\"indices\":[98,104]},{\"text\":\"LALISA\",\"indices\":[105,112]},{\"text\":\"WWERaw\",\"indices\":[113,120]},{\"text\":\"NancyPelosi\",\"indices\":[121,133]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3ZqX1zkCc4\",\"expanded_url\":\"https:\\/\\/www.ghnewslive.com\\/2022\\/01\\/18\\/lady-gets-the-attention-of-netizens-which-kind-of-exercise-is-this\\/\",\"display_url\":\"ghnewslive.com\\/2022\\/01\\/18\\/lad\\u2026\",\"indices\":[135,158]}]},\"4660\":{\"hashtags\":[{\"text\":\"taiwan\",\"indices\":[241,248]},{\"text\":\"AffiliateMarketing\",\"indices\":[249,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554684899164045312,\"id_str\":\"1554684899164045312\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"url\":\"https:\\/\\/t.co\\/K71xuM0B4K\",\"display_url\":\"pic.twitter.com\\/K71xuM0B4K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olojo_michael\\/status\\/1554684901747818497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"4661\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[6,13]},{\"text\":\"Taiwan\",\"indices\":[55,62]},{\"text\":\"NancyPelosi\",\"indices\":[65,77]},{\"text\":\"Taipei\",\"indices\":[78,85]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[86,104]},{\"text\":\"China\",\"indices\":[105,111]},{\"text\":\"pelositaiwan\",\"indices\":[112,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554684441557372928,\"id_str\":\"1554684441557372928\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"url\":\"https:\\/\\/t.co\\/bbtfnREtHs\",\"display_url\":\"pic.twitter.com\\/bbtfnREtHs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554684467146792962\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"large\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":375,\"resize\":\"fit\"}}}]},\"4662\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"Pelosi\",\"indices\":[178,185]},{\"text\":\"China\",\"indices\":[186,192]},{\"text\":\"helicopter\",\"indices\":[193,204]},{\"text\":\"HelicopterCrash\",\"indices\":[205,221]},{\"text\":\"BBNaija\",\"indices\":[222,230]},{\"text\":\"BBNaija7\",\"indices\":[231,240]},{\"text\":\"LALISA\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"4663\":{\"hashtags\":[{\"text\":\"ochicanadocares\",\"indices\":[73,89]},{\"text\":\"HelicopterCrash\",\"indices\":[132,148]},{\"text\":\"Pelosi\",\"indices\":[149,156]},{\"text\":\"Taiwan\",\"indices\":[157,164]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"caleb_nwanneka\",\"name\":\"Nwanneka Caleb\",\"id\":1205082200158457856,\"id_str\":\"1205082200158457856\",\"indices\":[51,66]},{\"screen_name\":\"Birthdaysng\",\"name\":\"Birthdays.ng\",\"id\":991425506842238976,\"id_str\":\"991425506842238976\",\"indices\":[101,113]},{\"screen_name\":\"TwitterSupport\",\"name\":\"Twitter Support\",\"id\":17874544,\"id_str\":\"17874544\",\"indices\":[114,129]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YkNNVYgUND\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\",\"display_url\":\"twitter.com\\/caleb_nwanneka\\u2026\",\"indices\":[165,188]}]},\"4664\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[147,153]},{\"text\":\"Pelosi\",\"indices\":[235,242]},{\"text\":\"Taipei\",\"indices\":[256,263]},{\"text\":\"Taiwan\",\"indices\":[265,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554683538263650304,\"id_str\":\"1554683538263650304\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"url\":\"https:\\/\\/t.co\\/t4WEyvpAVd\",\"display_url\":\"pic.twitter.com\\/t4WEyvpAVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554683551077273600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"}}}]},\"4665\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[34,41]},{\"text\":\"Pelosi\",\"indices\":[42,49]},{\"text\":\"China\",\"indices\":[50,56]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[57,65]},{\"text\":\"LALISA\",\"indices\":[66,73]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[74,97]},{\"text\":\"helicopter\",\"indices\":[98,109]},{\"text\":\"TUINUANE\",\"indices\":[110,119]},{\"text\":\"BadmintonMalaysia\",\"indices\":[120,138]},{\"text\":\"WWERaw\",\"indices\":[139,146]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[147,154]},{\"text\":\"NancyPelosi\",\"indices\":[155,167]},{\"text\":\"HelicopterCrash\",\"indices\":[168,184]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[185,210]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[211,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554682413741232129,\"id_str\":\"1554682413741232129\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"url\":\"https:\\/\\/t.co\\/nKjT1dfk9O\",\"display_url\":\"pic.twitter.com\\/nKjT1dfk9O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554682464236437505\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4666\":{\"hashtags\":[{\"text\":\"SpeedDatingWithSelema\",\"indices\":[91,113]},{\"text\":\"Obituary\",\"indices\":[114,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"SamOmatseye\",\"indices\":[132,144]},{\"text\":\"BBNajia\",\"indices\":[145,153]},{\"text\":\"BBNaija\",\"indices\":[154,162]},{\"text\":\"BBNajiaS7\",\"indices\":[163,173]},{\"text\":\"Pelosi\",\"indices\":[174,181]},{\"text\":\"Bernd\",\"indices\":[182,188]},{\"text\":\"Rufai\",\"indices\":[189,195]},{\"text\":\"HappyNewMonth\",\"indices\":[196,210]},{\"text\":\"Cucurella\",\"indices\":[211,221]},{\"text\":\"SaheedBalogun\",\"indices\":[222,236]},{\"text\":\"helicopter\",\"indices\":[237,248]},{\"text\":\"Tinubu\",\"indices\":[249,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zpHYmKO1iM\",\"expanded_url\":\"https:\\/\\/fb.watch\\/eFGHrV-GI4\\/\",\"display_url\":\"fb.watch\\/eFGHrV-GI4\\/\",\"indices\":[0,23]}]},\"4667\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VAPowqw2M6\",\"expanded_url\":\"https:\\/\\/vendasta.grsm.io\\/dw3x0pndw329\",\"display_url\":\"vendasta.grsm.io\\/dw3x0pndw329\",\"indices\":[251,274]}]},\"4668\":{\"hashtags\":[{\"text\":\"Russia\",\"indices\":[25,32]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"pelositaiwan\",\"indices\":[116,129]},{\"text\":\"Taiwan\",\"indices\":[130,137]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[138,156]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554678135123488769,\"id_str\":\"1554678135123488769\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"url\":\"https:\\/\\/t.co\\/3ZlCFgyKk7\",\"display_url\":\"pic.twitter.com\\/3ZlCFgyKk7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554678221798400000\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":804,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":754,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":427,\"resize\":\"fit\"}}}]},\"4669\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[23,30]},{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"PelosiinTaiwan\",\"indices\":[79,94]},{\"text\":\"China\",\"indices\":[95,101]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[102,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554676010331049984,\"id_str\":\"1554676010331049984\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"url\":\"https:\\/\\/t.co\\/oddZSMJqci\",\"display_url\":\"pic.twitter.com\\/oddZSMJqci\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554676028567863297\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"medium\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"small\":{\"w\":520,\"h\":292,\"resize\":\"fit\"}}}]},\"4670\":{\"hashtags\":[{\"text\":\"Fujian\",\"indices\":[157,164]},{\"text\":\"China\",\"indices\":[179,185]},{\"text\":\"NancyPelosi\",\"indices\":[188,200]},{\"text\":\"Taipei\",\"indices\":[201,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[217,235]},{\"text\":\"pelositaiwan\",\"indices\":[236,249]},{\"text\":\"Taiwan\",\"indices\":[250,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554675711688196096,\"id_str\":\"1554675711688196096\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"url\":\"https:\\/\\/t.co\\/lFax7HJS5c\",\"display_url\":\"pic.twitter.com\\/lFax7HJS5c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675750741356544\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}}}]},\"4671\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[179,186]},{\"text\":\"Pelosi\",\"indices\":[187,194]},{\"text\":\"China\",\"indices\":[195,201]},{\"text\":\"NancyPelosi\",\"indices\":[202,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554675343805804544,\"id_str\":\"1554675343805804544\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"url\":\"https:\\/\\/t.co\\/yh8YBUNbtJ\",\"display_url\":\"pic.twitter.com\\/yh8YBUNbtJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675349258371072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":418,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"}}}]},\"4672\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[89,96]},{\"text\":\"China\",\"indices\":[97,103]},{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"pelositaiwan\",\"indices\":[112,125]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[126,144]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554674770662531072,\"id_str\":\"1554674770662531072\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"url\":\"https:\\/\\/t.co\\/P3V7zJX26c\",\"display_url\":\"pic.twitter.com\\/P3V7zJX26c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554674844339675136\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4673\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[81,88]},{\"text\":\"Pelosi\",\"indices\":[89,96]},{\"text\":\"China\",\"indices\":[97,103]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[104,112]},{\"text\":\"helicopter\",\"indices\":[113,124]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[125,148]},{\"text\":\"LALISA\",\"indices\":[149,156]},{\"text\":\"NancyPelosi\",\"indices\":[157,169]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[170,196]},{\"text\":\"BibleBuild\",\"indices\":[197,208]},{\"text\":\"mbstorm\",\"indices\":[209,217]},{\"text\":\"mbstorm\",\"indices\":[218,226]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[227,245]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[246,272]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9NItNsYwPM\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/morrishills\\/song\\/young-john-dada-cover\",\"display_url\":\"audiomack.com\\/morrishills\\/so\\u2026\",\"indices\":[48,71]}],\"media\":[{\"id\":1554672480987627523,\"id_str\":\"1554672480987627523\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"url\":\"https:\\/\\/t.co\\/PPFuzmH34P\",\"display_url\":\"pic.twitter.com\\/PPFuzmH34P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554672615503060992\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4674\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[20,27]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4675\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taipei\",\"indices\":[17,24]},{\"text\":\"Taiwan\",\"indices\":[50,57]},{\"text\":\"China\",\"indices\":[59,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TVZdxlyg5T\",\"expanded_url\":\"http:\\/\\/newz.ug\\/pelosi-visit-to-taipei-us-warships-cruise-near-taiwan-china-to-hold-live-fire-exercises-off-taiwan-coast\\/\",\"display_url\":\"newz.ug\\/pelosi-visit-t\\u2026\",\"indices\":[259,282]}],\"media\":[{\"id\":1554663811361243137,\"id_str\":\"1554663811361243137\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"url\":\"https:\\/\\/t.co\\/WOAC3Y4qkx\",\"display_url\":\"pic.twitter.com\\/WOAC3Y4qkx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mkaketo\\/status\\/1554663850615742467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"},\"large\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"}}}]},\"4676\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[13,19]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[51,65]}],\"urls\":[]},\"4677\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"helicopter\",\"indices\":[86,97]},{\"text\":\"NancyPelosi\",\"indices\":[98,110]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[111,119]},{\"text\":\"BadmintonMalaysia\",\"indices\":[120,138]},{\"text\":\"JacksonWang\",\"indices\":[139,151]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[152,178]},{\"text\":\"BoycottBollywood\",\"indices\":[179,196]},{\"text\":\"Badminton\",\"indices\":[197,207]},{\"text\":\"pains\",\"indices\":[208,214]},{\"text\":\"toxic\",\"indices\":[215,221]},{\"text\":\"life\",\"indices\":[222,227]},{\"text\":\"harsh\",\"indices\":[228,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554654391281618947,\"id_str\":\"1554654391281618947\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"url\":\"https:\\/\\/t.co\\/h4c38mQP8m\",\"display_url\":\"pic.twitter.com\\/h4c38mQP8m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554654394930577419\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"}}}]},\"4678\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[88,95]},{\"text\":\"Tuinuane\",\"indices\":[96,105]},{\"text\":\"Mnakwethu\",\"indices\":[106,116]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[117,131]},{\"text\":\"BlueJays\",\"indices\":[132,141]},{\"text\":\"JacksonWang\",\"indices\":[142,154]},{\"text\":\"MorningLive\",\"indices\":[155,167]},{\"text\":\"goodmorning\",\"indices\":[168,180]},{\"text\":\"sweet\",\"indices\":[181,187]},{\"text\":\"beautiful\",\"indices\":[188,198]},{\"text\":\"beautifulgirls\",\"indices\":[199,214]},{\"text\":\"sweetlove\",\"indices\":[215,225]},{\"text\":\"love\",\"indices\":[226,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554652697005023232,\"id_str\":\"1554652697005023232\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"url\":\"https:\\/\\/t.co\\/AFriQxiHsH\",\"display_url\":\"pic.twitter.com\\/AFriQxiHsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554652780295495681\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":304,\"h\":640,\"resize\":\"fit\"}}}]},\"4679\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[37,45]},{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"pharmsavi\",\"indices\":[54,64]},{\"text\":\"christyo\",\"indices\":[65,74]},{\"text\":\"beauty\",\"indices\":[75,82]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554648606262665216,\"id_str\":\"1554648606262665216\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"url\":\"https:\\/\\/t.co\\/TwxxzFGRHo\",\"display_url\":\"pic.twitter.com\\/TwxxzFGRHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eugene_iwunze\\/status\\/1554648838211833856\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"4680\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"Machala\",\"indices\":[26,34]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554642733482082313,\"id_str\":\"1554642733482082313\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"url\":\"https:\\/\\/t.co\\/OBdiJp9HTM\",\"display_url\":\"pic.twitter.com\\/OBdiJp9HTM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lit_spych0\\/status\\/1554642745213558785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":630,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"}}}]},\"4681\":{\"hashtags\":[{\"text\":\"she\",\"indices\":[69,73]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"Davido\",\"indices\":[86,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]},{\"text\":\"ikorodu\",\"indices\":[102,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BlueNunWines\",\"name\":\"BlueNunWines\",\"id\":97172624,\"id_str\":\"97172624\",\"indices\":[55,68]}],\"urls\":[],\"media\":[{\"id\":1554637450563276803,\"id_str\":\"1554637450563276803\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"url\":\"https:\\/\\/t.co\\/ajYFtXFLD2\",\"display_url\":\"pic.twitter.com\\/ajYFtXFLD2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9yperri\\/status\\/1554638440527962112\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":680,\"resize\":\"fit\"}}}]},\"4682\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4683\":{\"hashtags\":[{\"text\":\"PelosiVisit\",\"indices\":[154,166]},{\"text\":\"BoycottIsrael\",\"indices\":[167,181]},{\"text\":\"Taiwanchina\",\"indices\":[182,194]},{\"text\":\"ApartheidIsrael\",\"indices\":[195,211]},{\"text\":\"Taiwan\",\"indices\":[212,219]},{\"text\":\"provacateurs\",\"indices\":[220,233]},{\"text\":\"doublestandards\",\"indices\":[234,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rqaX0Oh1Et\",\"expanded_url\":\"https:\\/\\/www.theguardian.com\\/us-news\\/2022\\/aug\\/02\\/pelosi-oped-defends-taiwan-visit?CMP=share_btn_tw\",\"display_url\":\"theguardian.com\\/us-news\\/2022\\/a\\u2026\",\"indices\":[130,153]}]},\"4684\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[132,138]},{\"text\":\"BBNaija\",\"indices\":[153,161]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EmemEdema1\",\"name\":\"Emem Edem\",\"id\":1539828930730917888,\"id_str\":\"1539828930730917888\",\"indices\":[97,108]}],\"urls\":[],\"media\":[{\"id\":1554637063869300736,\"id_str\":\"1554637063869300736\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"url\":\"https:\\/\\/t.co\\/PKifp64k9P\",\"display_url\":\"pic.twitter.com\\/PKifp64k9P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/seemeon79\\/status\\/1554637068256559105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4685\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[23,30]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[31,39]},{\"text\":\"giddyfia\",\"indices\":[40,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554635275258691584,\"id_str\":\"1554635275258691584\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"url\":\"https:\\/\\/t.co\\/xbluBJ1Bzl\",\"display_url\":\"pic.twitter.com\\/xbluBJ1Bzl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zubyblaq4\\/status\\/1554635445933334530\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}}}]},\"4686\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[52,59]},{\"text\":\"tuesdayvibe\",\"indices\":[60,72]},{\"text\":\"Mnakwethu\",\"indices\":[73,83]},{\"text\":\"BBNaija\",\"indices\":[84,92]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554630376060076032,\"id_str\":\"1554630376060076032\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"url\":\"https:\\/\\/t.co\\/YVk6rRhGYx\",\"display_url\":\"pic.twitter.com\\/YVk6rRhGYx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ychizway\\/status\\/1554630465654505472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4687\":{\"hashtags\":[{\"text\":\"FIVESTAR\",\"indices\":[55,64]},{\"text\":\"Trending\",\"indices\":[127,136]},{\"text\":\"bernd\",\"indices\":[137,143]},{\"text\":\"taiwan\",\"indices\":[144,151]},{\"text\":\"BBNajia\",\"indices\":[152,160]},{\"text\":\"NigeriaDecides2023\",\"indices\":[161,180]},{\"text\":\"SheggzFC\",\"indices\":[181,190]},{\"text\":\"BBNajiaS7\",\"indices\":[191,201]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[202,227]},{\"text\":\"ASUU\",\"indices\":[267,272]},{\"text\":\"bbillkin\",\"indices\":[273,282]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[41,54]},{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[93,106]},{\"screen_name\":\"SympLySimi\",\"name\":\"Simi\",\"id\":26216972,\"id_str\":\"26216972\",\"indices\":[228,239]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[240,249]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[250,257]},{\"screen_name\":\"Olamide\",\"name\":\"Olamid\\u00e9\",\"id\":190481460,\"id_str\":\"190481460\",\"indices\":[258,266]}],\"urls\":[],\"media\":[{\"id\":1554619598124859392,\"id_str\":\"1554619598124859392\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"url\":\"https:\\/\\/t.co\\/Iv9ZvgYBiO\",\"display_url\":\"pic.twitter.com\\/Iv9ZvgYBiO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sheffy_b\\/status\\/1554619892044861441\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4688\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[26,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554618059440246784,\"id_str\":\"1554618059440246784\",\"indices\":[33,56],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"url\":\"https:\\/\\/t.co\\/AV7wAnvbfr\",\"display_url\":\"pic.twitter.com\\/AV7wAnvbfr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/israelpaulonyah\\/status\\/1554618074481016832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":360,\"resize\":\"fit\"}}}]},\"4689\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[87,99]},{\"text\":\"China\",\"indices\":[227,233]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[235,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4690\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[199,207]},{\"text\":\"Lekki\",\"indices\":[246,252]},{\"text\":\"Taiwan\",\"indices\":[255,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554614868568948736,\"id_str\":\"1554614868568948736\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"large\":{\"w\":403,\"h\":269,\"resize\":\"fit\"}}}]},\"4691\":{\"hashtags\":[{\"text\":\"Obituary\",\"indices\":[98,107]},{\"text\":\"samomatseye\",\"indices\":[108,120]},{\"text\":\"Bernd\",\"indices\":[121,127]},{\"text\":\"Pelosi\",\"indices\":[128,135]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[49,58]},{\"screen_name\":\"OfficialAPCNg\",\"name\":\"APC Nigeria\",\"id\":981286914811682817,\"id_str\":\"981286914811682817\",\"indices\":[63,77]},{\"screen_name\":\"OfficialPDPNig\",\"name\":\"Official PDP Nigeria\",\"id\":747064131166044160,\"id_str\":\"747064131166044160\",\"indices\":[82,97]}],\"urls\":[]},\"4692\":{\"hashtags\":[{\"text\":\"groovefreedomday\",\"indices\":[131,148]},{\"text\":\"freedomdayevent\",\"indices\":[149,165]},{\"text\":\"freedomday\",\"indices\":[166,177]},{\"text\":\"WWIII\",\"indices\":[179,185]},{\"text\":\"WorldWar3\",\"indices\":[186,196]},{\"text\":\"WWIILIVE\",\"indices\":[197,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"Pelosi\",\"indices\":[215,222]},{\"text\":\"China\",\"indices\":[223,229]},{\"text\":\"WWIII\",\"indices\":[230,236]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k6pXz4KtCA\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/W0yZrE\",\"display_url\":\"fiverr.com\\/share\\/W0yZrE\",\"indices\":[107,130]}]},\"4693\":{\"hashtags\":[{\"text\":\"gafexianzone\",\"indices\":[93,106]},{\"text\":\"gafexianart\",\"indices\":[107,119]},{\"text\":\"Rihanna\",\"indices\":[120,128]},{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"helicopter\",\"indices\":[152,163]},{\"text\":\"tuesdayvibe\",\"indices\":[164,176]},{\"text\":\"explorepage\",\"indices\":[177,189]},{\"text\":\"explore\",\"indices\":[190,198]},{\"text\":\"ExploreUganda\",\"indices\":[199,213]},{\"text\":\"NationalGirlfriendDay\",\"indices\":[214,236]},{\"text\":\"artists\",\"indices\":[237,245]},{\"text\":\"ArtOfTheDay\",\"indices\":[246,258]},{\"text\":\"ArtistOnTwitter\",\"indices\":[259,275]},{\"text\":\"art\",\"indices\":[276,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rihanna\",\"name\":\"Rihanna\",\"id\":79293791,\"id_str\":\"79293791\",\"indices\":[32,40]}],\"urls\":[],\"media\":[{\"id\":1554610553548689410,\"id_str\":\"1554610553548689410\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"url\":\"https:\\/\\/t.co\\/mI2CAEvgD3\",\"display_url\":\"pic.twitter.com\\/mI2CAEvgD3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554610609047670785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1625,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":952,\"h\":1200,\"resize\":\"fit\"}}}]},\"4694\":{\"hashtags\":[{\"text\":\"loveright\",\"indices\":[111,121]},{\"text\":\"loveyourhusband\",\"indices\":[122,138]},{\"text\":\"love\",\"indices\":[139,144]},{\"text\":\"China\",\"indices\":[145,151]},{\"text\":\"helicopter\",\"indices\":[152,163]},{\"text\":\"tuesdayvibe\",\"indices\":[164,176]},{\"text\":\"BoycottBollywood\",\"indices\":[177,194]},{\"text\":\"BORNPINK\",\"indices\":[195,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"Pelosi\",\"indices\":[213,220]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[221,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4695\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"Pelosi\",\"indices\":[206,213]},{\"text\":\"BBNaija\",\"indices\":[214,222]},{\"text\":\"BambamSorry\",\"indices\":[238,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554608983436136448,\"id_str\":\"1554608983436136448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"url\":\"https:\\/\\/t.co\\/k8OQNbybAR\",\"display_url\":\"pic.twitter.com\\/k8OQNbybAR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554609029619523584\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4696\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"BBNajiaS7\",\"indices\":[82,92]},{\"text\":\"BBNaija7\",\"indices\":[93,102]},{\"text\":\"BBNaijaSeason7\",\"indices\":[103,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554607722762584064,\"id_str\":\"1554607722762584064\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"url\":\"https:\\/\\/t.co\\/4xz5V4RVAT\",\"display_url\":\"pic.twitter.com\\/4xz5V4RVAT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Urbandistrictng\\/status\\/1554607749148905474\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4697\":{\"hashtags\":[{\"text\":\"AbiaState\",\"indices\":[71,81]},{\"text\":\"Nigeria\",\"indices\":[83,91]},{\"text\":\"AlexOtti\",\"indices\":[92,101]},{\"text\":\"DrAlexOtti\",\"indices\":[102,113]},{\"text\":\"LabourParty\",\"indices\":[114,126]},{\"text\":\"ObiNgwa\",\"indices\":[127,135]},{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"PeterObi\",\"indices\":[145,154]},{\"text\":\"PeterObi4President2023\",\"indices\":[155,178]},{\"text\":\"PeterObi2023\",\"indices\":[180,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554606533408858113,\"id_str\":\"1554606533408858113\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"url\":\"https:\\/\\/t.co\\/ZkJhDKtoXy\",\"display_url\":\"pic.twitter.com\\/ZkJhDKtoXy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lawehilegbu\\/status\\/1554606539872288769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4698\":{\"hashtags\":[{\"text\":\"Web3\",\"indices\":[45,50]},{\"text\":\"BBNajiaS7\",\"indices\":[51,61]},{\"text\":\"sabinus\",\"indices\":[62,70]},{\"text\":\"Wednesday\",\"indices\":[71,81]},{\"text\":\"MidweekMadness\",\"indices\":[82,97]},{\"text\":\"MONEY\",\"indices\":[98,104]},{\"text\":\"Twitter\",\"indices\":[105,113]},{\"text\":\"ElonMusk\",\"indices\":[114,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"China\",\"indices\":[132,138]},{\"text\":\"BoycottBollywood\",\"indices\":[139,156]},{\"text\":\"Trending\",\"indices\":[157,166]},{\"text\":\"NEW\",\"indices\":[167,171]},{\"text\":\"NewJeans\",\"indices\":[172,181]},{\"text\":\"Dollar\",\"indices\":[182,189]},{\"text\":\"BibleBuild\",\"indices\":[190,201]},{\"text\":\"bitcoins\",\"indices\":[202,211]},{\"text\":\"ElectionTwitter\",\"indices\":[212,228]},{\"text\":\"Tinubu\",\"indices\":[229,236]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554606337211908097,\"id_str\":\"1554606337211908097\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"url\":\"https:\\/\\/t.co\\/c4hYMDSAaq\",\"display_url\":\"pic.twitter.com\\/c4hYMDSAaq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554606340001173504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"small\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"large\":{\"w\":548,\"h\":548,\"resize\":\"fit\"}}}]},\"4699\":{\"hashtags\":[{\"text\":\"morrishills\",\"indices\":[15,27]},{\"text\":\"morrishillsentertainment\",\"indices\":[28,53]},{\"text\":\"Pelosi\",\"indices\":[55,62]},{\"text\":\"China\",\"indices\":[63,69]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[70,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"chatsekscerita\",\"indices\":[91,106]},{\"text\":\"IStandWithSithelo\",\"indices\":[107,125]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[126,149]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[150,176]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[177,190]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[191,198]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[199,213]},{\"text\":\"tuesdayvibe\",\"indices\":[214,226]},{\"text\":\"BORNPINK\",\"indices\":[227,236]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[237,255]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\",\"indices\":[256,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554603542266216453,\"id_str\":\"1554603542266216453\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"url\":\"https:\\/\\/t.co\\/G5tXbMi8JI\",\"display_url\":\"pic.twitter.com\\/G5tXbMi8JI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554603566140198912\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":355,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":704,\"resize\":\"fit\"}}}]},\"4700\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[18,25]},{\"text\":\"China\",\"indices\":[26,32]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[33,41]},{\"text\":\"helicopter\",\"indices\":[42,53]},{\"text\":\"chatsekscerita\",\"indices\":[54,69]},{\"text\":\"IStandWithSithelo\",\"indices\":[70,88]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[89,112]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[113,139]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[140,153]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[154,161]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[162,176]},{\"text\":\"tuesdayvibe\",\"indices\":[177,189]},{\"text\":\"BORNPINK\",\"indices\":[190,199]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[200,218]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[219,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554602770505809920,\"id_str\":\"1554602770505809920\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"url\":\"https:\\/\\/t.co\\/e54sgy8pxo\",\"display_url\":\"pic.twitter.com\\/e54sgy8pxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602830664802305\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4701\":{\"hashtags\":[{\"text\":\"BORNPINK\",\"indices\":[24,33]},{\"text\":\"drugabuse\",\"indices\":[34,44]},{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"Pelosi\",\"indices\":[52,59]},{\"text\":\"helicopter\",\"indices\":[60,71]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[72,80]},{\"text\":\"chatsekscerita\",\"indices\":[81,96]},{\"text\":\"IStandWithSithelo\",\"indices\":[97,115]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[116,139]},{\"text\":\"IndiaWithLaalSinghChaddha\",\"indices\":[140,166]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[167,180]},{\"text\":\"tuesdayvibe\",\"indices\":[181,193]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554601929199714304,\"id_str\":\"1554601929199714304\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"url\":\"https:\\/\\/t.co\\/qtcJ27cTDc\",\"display_url\":\"pic.twitter.com\\/qtcJ27cTDc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602151254556680\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4702\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[7,13]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4703\":{\"hashtags\":[{\"text\":\"PLA\",\"indices\":[31,35]},{\"text\":\"China\",\"indices\":[126,132]},{\"text\":\"Taiwan\",\"indices\":[213,220]},{\"text\":\"ChinaTaiwan\",\"indices\":[222,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554601188276195329,\"id_str\":\"1554601188276195329\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"url\":\"https:\\/\\/t.co\\/evluzp5XOj\",\"display_url\":\"pic.twitter.com\\/evluzp5XOj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554601323043377152\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":671,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":716,\"resize\":\"fit\"}}}]},\"4704\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"China\",\"indices\":[76,82]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[83,91]},{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"chatsekscerita\",\"indices\":[104,119]},{\"text\":\"IStandWithSithelo\",\"indices\":[120,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554600621277331456,\"id_str\":\"1554600621277331456\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"url\":\"https:\\/\\/t.co\\/2QbWRdDCYQ\",\"display_url\":\"pic.twitter.com\\/2QbWRdDCYQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554600627451449345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1412,\"resize\":\"fit\"}}}]},\"4705\":{\"hashtags\":[{\"text\":\"Warner\",\"indices\":[102,109]},{\"text\":\"Piastri\",\"indices\":[110,118]},{\"text\":\"Corbyn\",\"indices\":[119,126]},{\"text\":\"Monaco\",\"indices\":[127,134]},{\"text\":\"TheBachelorette\",\"indices\":[135,151]},{\"text\":\"Taiwan\",\"indices\":[152,159]},{\"text\":\"support\",\"indices\":[160,168]},{\"text\":\"Webradio\",\"indices\":[169,178]},{\"text\":\"Cannes\",\"indices\":[179,186]},{\"text\":\"France\",\"indices\":[187,194]},{\"text\":\"Listen\",\"indices\":[195,202]},{\"text\":\"Listennow\",\"indices\":[203,213]},{\"text\":\"Followus\",\"indices\":[214,223]},{\"text\":\"Donate\",\"indices\":[224,231]},{\"text\":\"TrumpTreason\",\"indices\":[232,245]},{\"text\":\"\\u0130stanbul\",\"indices\":[246,255]},{\"text\":\"fanart\",\"indices\":[256,263]},{\"text\":\"Biden\",\"indices\":[264,270]},{\"text\":\"west\",\"indices\":[271,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554599720932327425,\"id_str\":\"1554599720932327425\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"url\":\"https:\\/\\/t.co\\/cz3d3iBHCW\",\"display_url\":\"pic.twitter.com\\/cz3d3iBHCW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554599767337992197\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"}}}]},\"4706\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"Pelosi\",\"indices\":[211,218]},{\"text\":\"BBNaija\",\"indices\":[219,227]},{\"text\":\"BambamSorry\",\"indices\":[243,255]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554599422385864704,\"id_str\":\"1554599422385864704\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6uBqjHALV\",\"display_url\":\"pic.twitter.com\\/Y6uBqjHALV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554599480476975104\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4707\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[78,85]},{\"text\":\"China\",\"indices\":[86,92]},{\"text\":\"Pelosi\",\"indices\":[93,100]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[101,109]},{\"text\":\"Wizkid\",\"indices\":[110,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0nAHvzGYAu\",\"expanded_url\":\"https:\\/\\/youtu.be\\/B4fN6As5I74\",\"display_url\":\"youtu.be\\/B4fN6As5I74\",\"indices\":[53,76]}]},\"4708\":{\"hashtags\":[{\"text\":\"Alpine\",\"indices\":[102,109]},{\"text\":\"Donation\",\"indices\":[110,119]},{\"text\":\"helicopter\",\"indices\":[120,131]},{\"text\":\"helpinghand\",\"indices\":[132,144]},{\"text\":\"Help\",\"indices\":[145,150]},{\"text\":\"TailorMade\",\"indices\":[151,162]},{\"text\":\"Tommy\",\"indices\":[163,169]},{\"text\":\"Cina\",\"indices\":[170,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"Pelosi\",\"indices\":[184,191]},{\"text\":\"boss\",\"indices\":[192,197]},{\"text\":\"McLaren\",\"indices\":[198,206]},{\"text\":\"Alonso\",\"indices\":[207,214]},{\"text\":\"Verdi\",\"indices\":[215,221]},{\"text\":\"ayr\\u0131lmazikili\",\"indices\":[222,236]},{\"text\":\"BetterCallSaul\",\"indices\":[237,252]},{\"text\":\"China\",\"indices\":[253,259]},{\"text\":\"crowdfunding\",\"indices\":[260,273]},{\"text\":\"OOTT\",\"indices\":[274,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ojVDaqT6Ck\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3yPIsx3\",\"display_url\":\"bit.ly\\/3yPIsx3\",\"indices\":[78,101]}],\"media\":[{\"id\":1554597524304023552,\"id_str\":\"1554597524304023552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"url\":\"https:\\/\\/t.co\\/FhfDGunyTi\",\"display_url\":\"pic.twitter.com\\/FhfDGunyTi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554597548131745793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"4709\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"Pelosi\",\"indices\":[206,213]},{\"text\":\"BBNaija\",\"indices\":[214,222]},{\"text\":\"BambamSorry\",\"indices\":[238,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554597007825698816,\"id_str\":\"1554597007825698816\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"url\":\"https:\\/\\/t.co\\/uDd8WrJ4ea\",\"display_url\":\"pic.twitter.com\\/uDd8WrJ4ea\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554597054571225088\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4710\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[220,227]},{\"text\":\"Taiwan\",\"indices\":[228,235]},{\"text\":\"China\",\"indices\":[236,242]},{\"text\":\"BBNajiaS7\",\"indices\":[252,262]},{\"text\":\"Obidatti023\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554596190947246080,\"id_str\":\"1554596190947246080\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"url\":\"https:\\/\\/t.co\\/RtVmnAvt1C\",\"display_url\":\"pic.twitter.com\\/RtVmnAvt1C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kapital929\\/status\\/1554597018705747968\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}}}]},\"4711\":{\"hashtags\":[{\"text\":\"Cubana\",\"indices\":[230,237]},{\"text\":\"Beijing\",\"indices\":[240,248]},{\"text\":\"WWIII\",\"indices\":[251,257]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554594537326125056,\"id_str\":\"1554594537326125056\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"url\":\"https:\\/\\/t.co\\/PBdTHFPCJc\",\"display_url\":\"pic.twitter.com\\/PBdTHFPCJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/teacherchike1\\/status\\/1554594793111654402\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4712\":{\"hashtags\":[{\"text\":\"PapaBenji\",\"indices\":[78,88]},{\"text\":\"PapaBenji\",\"indices\":[192,202]},{\"text\":\"WWIII\",\"indices\":[204,210]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"basket_mouth\",\"name\":\"Basket Mouth\",\"id\":101825544,\"id_str\":\"101825544\",\"indices\":[64,77]}],\"urls\":[]},\"4713\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[28,35]},{\"text\":\"Taiwan\",\"indices\":[36,43]},{\"text\":\"Xi\",\"indices\":[44,47]},{\"text\":\"WWIII\",\"indices\":[56,62]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554591155941253121,\"id_str\":\"1554591155941253121\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"url\":\"https:\\/\\/t.co\\/ShfbN1sSL9\",\"display_url\":\"pic.twitter.com\\/ShfbN1sSL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/louis_prinzy\\/status\\/1554591385281593347\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}}}]},\"4714\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[40,47]},{\"text\":\"China\",\"indices\":[48,54]},{\"text\":\"helicopter\",\"indices\":[55,66]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[67,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DjXznjVYU3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Babyboyav__\\/status\\/1554440191741411328\",\"display_url\":\"twitter.com\\/Babyboyav__\\/st\\u2026\",\"indices\":[76,99]}]},\"4715\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[59,66]},{\"text\":\"China\",\"indices\":[67,73]},{\"text\":\"JacksonWang\",\"indices\":[74,86]},{\"text\":\"WorldWarIII\",\"indices\":[87,99]},{\"text\":\"WorldWar3\",\"indices\":[100,110]},{\"text\":\"Carterefe\",\"indices\":[111,121]},{\"text\":\"Wizkid\",\"indices\":[122,129]},{\"text\":\"AtikuOkowa2023\",\"indices\":[130,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554590630231277572,\"id_str\":\"1554590630231277572\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"url\":\"https:\\/\\/t.co\\/lJPjiWEKfZ\",\"display_url\":\"pic.twitter.com\\/lJPjiWEKfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sirvee101\\/status\\/1554590639408484353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"}}}]},\"4716\":{\"hashtags\":[{\"text\":\"WorldWarIII\",\"indices\":[247,259]},{\"text\":\"ChinaTaiwan\",\"indices\":[260,272]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[273,291]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4717\":{\"hashtags\":[{\"text\":\"sheggzandbella\",\"indices\":[0,15]},{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"saheedbalogun\",\"indices\":[26,40]},{\"text\":\"phyna\",\"indices\":[41,47]},{\"text\":\"doyin\",\"indices\":[48,54]},{\"text\":\"BB24\",\"indices\":[55,60]},{\"text\":\"BBNajia\",\"indices\":[62,70]},{\"text\":\"BBN\",\"indices\":[72,76]},{\"text\":\"BBNaijaSeason7\",\"indices\":[78,93]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[95,110]},{\"text\":\"modella\",\"indices\":[112,120]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VtjshNhCgN\",\"expanded_url\":\"https:\\/\\/www.lifestylegist.com\\/2022\\/08\\/bbnajia-s7-trouble-looms-for-love.html?m=1\",\"display_url\":\"lifestylegist.com\\/2022\\/08\\/bbnaji\\u2026\",\"indices\":[198,221]}],\"media\":[{\"id\":1554589156348674055,\"id_str\":\"1554589156348674055\",\"indices\":[222,245],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"url\":\"https:\\/\\/t.co\\/4qOh0Bcriz\",\"display_url\":\"pic.twitter.com\\/4qOh0Bcriz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifestylegist1\\/status\\/1554589166352187393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":831,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":831,\"resize\":\"fit\"}}}]},\"4718\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"Pelosi\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Quicktake\",\"name\":\"Bloomberg Quicktake\",\"id\":252751061,\"id_str\":\"252751061\",\"indices\":[0,10]}],\"urls\":[]},\"4719\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]},{\"text\":\"Pelosi\",\"indices\":[8,15]},{\"text\":\"Xi\",\"indices\":[16,19]},{\"text\":\"BBNaija\",\"indices\":[28,36]},{\"text\":\"World\",\"indices\":[37,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554588441756704768,\"id_str\":\"1554588441756704768\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"url\":\"https:\\/\\/t.co\\/Y0fdqSTitx\",\"display_url\":\"pic.twitter.com\\/Y0fdqSTitx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZOrogho\\/status\\/1554588484404449289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":446,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":787,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1284,\"h\":1957,\"resize\":\"fit\"}}}]},\"4720\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[61,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554587975564103680,\"id_str\":\"1554587975564103680\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"url\":\"https:\\/\\/t.co\\/4o2OIyw7oL\",\"display_url\":\"pic.twitter.com\\/4o2OIyw7oL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aboki_30BG\\/status\\/1554587978223288320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":582,\"h\":500,\"resize\":\"fit\"}}}]},\"4721\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[215,222]},{\"text\":\"bangalorerains\",\"indices\":[223,238]},{\"text\":\"China\",\"indices\":[239,245]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EkeneUzochukwu1\",\"name\":\"EkeneKennel\",\"id\":1388393546399592449,\"id_str\":\"1388393546399592449\",\"indices\":[137,153]},{\"screen_name\":\"AkunneChinyere4\",\"name\":\"UGOEZE\\ud83d\\udc51\\ud83c\\udde7\\ud83c\\uddeb\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1360296697952428036,\"id_str\":\"1360296697952428036\",\"indices\":[154,170]},{\"screen_name\":\"AmakaVirginia1\",\"name\":\"Amaka Virginia\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\\u2b50\",\"id\":1261588481920446464,\"id_str\":\"1261588481920446464\",\"indices\":[171,186]},{\"screen_name\":\"PalmykennelJos\",\"name\":\"Palmy Kennel Jos\",\"id\":1516740406968528900,\"id_str\":\"1516740406968528900\",\"indices\":[187,202]},{\"screen_name\":\"richmoh600\",\"name\":\"MOMOH RICHARD RICHYKENNEL JOS ,DOG lOVER\",\"id\":3126174473,\"id_str\":\"3126174473\",\"indices\":[203,214]}],\"urls\":[],\"media\":[{\"id\":1554586208952532994,\"id_str\":\"1554586208952532994\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"url\":\"https:\\/\\/t.co\\/d3aa5a3f0V\",\"display_url\":\"pic.twitter.com\\/d3aa5a3f0V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/alabedejoseph1\\/status\\/1554586355518300166\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4722\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[40,47]},{\"text\":\"BBNaijaS7\",\"indices\":[48,58]},{\"text\":\"BBNajia\",\"indices\":[59,67]},{\"text\":\"World\",\"indices\":[68,74]},{\"text\":\"doggy\",\"indices\":[83,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4723\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[77,83]},{\"text\":\"Pelosi\",\"indices\":[84,91]},{\"text\":\"ASUUstrike\",\"indices\":[92,103]},{\"text\":\"USA\",\"indices\":[104,108]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PtryLuVyTO\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3zkumUs\",\"display_url\":\"bit.ly\\/3zkumUs\",\"indices\":[120,143]}]},\"4724\":{\"hashtags\":[{\"text\":\"Modella\",\"indices\":[48,56]},{\"text\":\"Taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554583971324887040,\"id_str\":\"1554583971324887040\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/bmG4W5Hwwy\",\"display_url\":\"pic.twitter.com\\/bmG4W5Hwwy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thisisalagbaa\\/status\\/1554584412356050948\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4725\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[154,161]},{\"text\":\"Lekki\",\"indices\":[163,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"Obidatti023\",\"indices\":[177,189]},{\"text\":\"PeterObi4President2023\",\"indices\":[190,213]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554583816798355461,\"id_str\":\"1554583816798355461\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"url\":\"https:\\/\\/t.co\\/zaYOx6IOCb\",\"display_url\":\"pic.twitter.com\\/zaYOx6IOCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554583820158001152\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4726\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[37,43]},{\"text\":\"PLA\",\"indices\":[46,50]},{\"text\":\"Xiamen\",\"indices\":[78,85]},{\"text\":\"PelosiinTaiwan\",\"indices\":[108,123]},{\"text\":\"China\",\"indices\":[124,130]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[131,149]},{\"text\":\"ChinaTaiwan\",\"indices\":[150,162]},{\"text\":\"USA\",\"indices\":[163,167]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554582993804873728,\"id_str\":\"1554582993804873728\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"url\":\"https:\\/\\/t.co\\/F075q1h4GA\",\"display_url\":\"pic.twitter.com\\/F075q1h4GA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554583020010901504\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}}}]},\"4727\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]},{\"text\":\"Pelosi\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4728\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[19,25]},{\"text\":\"Pelossi\",\"indices\":[34,42]},{\"text\":\"Taiwan\",\"indices\":[51,58]},{\"text\":\"USA\",\"indices\":[59,63]},{\"text\":\"Aliexpress\",\"indices\":[72,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CNN\",\"name\":\"CNN\",\"id\":759251,\"id_str\":\"759251\",\"indices\":[0,4]},{\"screen_name\":\"selinawangtv\",\"name\":\"Selina Wang\",\"id\":853669477,\"id_str\":\"853669477\",\"indices\":[5,18]}],\"urls\":[]},\"4729\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Pelossi\",\"indices\":[15,23]},{\"text\":\"Taiwan\",\"indices\":[32,39]},{\"text\":\"USA\",\"indices\":[40,44]},{\"text\":\"Aliexpress\",\"indices\":[53,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4730\":{\"hashtags\":[{\"text\":\"pelosi\",\"indices\":[99,106]},{\"text\":\"china\",\"indices\":[107,113]},{\"text\":\"biden\",\"indices\":[114,120]},{\"text\":\"usa\",\"indices\":[121,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4731\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[4,12]},{\"text\":\"Taiwan\",\"indices\":[88,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554581897132789760,\"id_str\":\"1554581897132789760\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"url\":\"https:\\/\\/t.co\\/UT5Uy5HRvJ\",\"display_url\":\"pic.twitter.com\\/UT5Uy5HRvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554581905239969792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":912,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":912,\"resize\":\"fit\"}}}]},\"4732\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[78,84]},{\"text\":\"Taiwan\",\"indices\":[85,92]},{\"text\":\"HappyNewMonth\",\"indices\":[93,107]},{\"text\":\"ASSU\",\"indices\":[108,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4733\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[126,133]},{\"text\":\"China\",\"indices\":[134,140]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"OBIDIENTS\",\"indices\":[149,159]},{\"text\":\"helicopter\",\"indices\":[160,171]},{\"text\":\"HelicopterCrash\",\"indices\":[172,188]},{\"text\":\"JacksonWang\",\"indices\":[189,201]},{\"text\":\"Obidatti023\",\"indices\":[202,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554581234235412481,\"id_str\":\"1554581234235412481\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"url\":\"https:\\/\\/t.co\\/NFhyoMAUlk\",\"display_url\":\"pic.twitter.com\\/NFhyoMAUlk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jos1Saint\\/status\\/1554581240686297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"}}}]},\"4734\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[225,232]},{\"text\":\"AtikuOkowa2023\",\"indices\":[233,248]},{\"text\":\"Lekki\",\"indices\":[249,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"QUEENOFDBLUES1\",\"name\":\"GBEMISOLA CFC\\ud83d\\udc99\",\"id\":1475721397544501248,\"id_str\":\"1475721397544501248\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554581005146652674,\"id_str\":\"1554581005146652674\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"url\":\"https:\\/\\/t.co\\/4VG90Qm9JZ\",\"display_url\":\"pic.twitter.com\\/4VG90Qm9JZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oladeji_ogunsh\\/status\\/1554581013409546248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1792,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"4735\":{\"hashtags\":[{\"text\":\"brend\",\"indices\":[104,110]},{\"text\":\"Taiwan\",\"indices\":[111,118]},{\"text\":\"Pelosi\",\"indices\":[119,126]},{\"text\":\"helicopter\",\"indices\":[127,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554579304125763584,\"id_str\":\"1554579304125763584\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"url\":\"https:\\/\\/t.co\\/YMztRiBL5u\",\"display_url\":\"pic.twitter.com\\/YMztRiBL5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamogswagg\\/status\\/1554579339567661056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4736\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[37,43]},{\"text\":\"China\",\"indices\":[44,50]},{\"text\":\"Pelosi\",\"indices\":[52,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554579114564239360,\"id_str\":\"1554579114564239360\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}}]},\"4737\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"KNUST\",\"indices\":[267,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uwy7TfitIh\",\"expanded_url\":\"https:\\/\\/www.ghnewsbanq.com\\/jobs\\/job-vacancy-for-lab-scientists-midwives-registered-nurses\\/\",\"display_url\":\"ghnewsbanq.com\\/jobs\\/job-vacan\\u2026\",\"indices\":[184,207]}]},\"4738\":{\"hashtags\":[{\"text\":\"AudacyAOTS\",\"indices\":[14,25]},{\"text\":\"SalarioRosaVePorMas\",\"indices\":[26,46]},{\"text\":\"CommonwealthGames2022\",\"indices\":[47,69]},{\"text\":\"taiwan\",\"indices\":[70,77]},{\"text\":\"worldwar\",\"indices\":[78,87]},{\"text\":\"GuinnessAugustMeeting\",\"indices\":[88,110]},{\"text\":\"ifb\",\"indices\":[111,115]},{\"text\":\"WritingCommunity\",\"indices\":[116,133]},{\"text\":\"sad\",\"indices\":[134,138]},{\"text\":\"ToyinAbrahamkiddies\",\"indices\":[139,159]},{\"text\":\"BBNajiaS7\",\"indices\":[160,170]},{\"text\":\"BeautyWithBrains\",\"indices\":[171,188]},{\"text\":\"tuesdayvibe\",\"indices\":[189,201]},{\"text\":\"twitterpoet\",\"indices\":[202,214]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554578031435517954,\"id_str\":\"1554578031435517954\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"url\":\"https:\\/\\/t.co\\/acD1l2dqBM\",\"display_url\":\"pic.twitter.com\\/acD1l2dqBM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554578605518249987\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4739\":{\"hashtags\":[{\"text\":\"WorldAthleticsChamps\",\"indices\":[66,87]},{\"text\":\"WorldWarIII\",\"indices\":[88,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"PeterObi\",\"indices\":[108,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Cristiano\",\"name\":\"Cristiano Ronaldo\",\"id\":155659213,\"id_str\":\"155659213\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554577725578428416,\"id_str\":\"1554577725578428416\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"url\":\"https:\\/\\/t.co\\/WKf1KfCP3I\",\"display_url\":\"pic.twitter.com\\/WKf1KfCP3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danley_codes\\/status\\/1554577906474655744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4740\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[31,38]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/z6pouwofQl\",\"expanded_url\":\"https:\\/\\/sportsleagueudpate.blogspot.com\\/2022\\/08\\/two-wonderkids-signed-for-chelsea-in.html\",\"display_url\":\"sportsleagueudpate.blogspot.com\\/2022\\/08\\/two-wo\\u2026\",\"indices\":[41,64]}]},\"4741\":{\"hashtags\":[{\"text\":\"sheggzandbella\",\"indices\":[29,44]},{\"text\":\"China\",\"indices\":[45,51]},{\"text\":\"WWIII\",\"indices\":[52,58]},{\"text\":\"Wizkid\",\"indices\":[59,66]},{\"text\":\"shes40\",\"indices\":[67,74]},{\"text\":\"Machala\",\"indices\":[75,83]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554576149258321921,\"id_str\":\"1554576149258321921\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"url\":\"https:\\/\\/t.co\\/g8U8HCWEfs\",\"display_url\":\"pic.twitter.com\\/g8U8HCWEfs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sub_sidy1\\/status\\/1554577036416618496\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4742\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"helicopter\",\"indices\":[46,57]},{\"text\":\"Lekki\",\"indices\":[58,64]},{\"text\":\"over1\",\"indices\":[65,71]},{\"text\":\"asuu\",\"indices\":[74,79]},{\"text\":\"abujakaduna\",\"indices\":[80,92]},{\"text\":\"ibadan\",\"indices\":[93,100]},{\"text\":\"ibadanphotographer\",\"indices\":[101,120]},{\"text\":\"arikeimagery\",\"indices\":[121,134]},{\"text\":\"arikephotography\",\"indices\":[135,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554576110595313664,\"id_str\":\"1554576110595313664\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"4743\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[0,8]},{\"text\":\"Taiwan\",\"indices\":[9,16]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4744\":{\"hashtags\":[{\"text\":\"ikorodu\",\"indices\":[0,8]},{\"text\":\"StopSellingPi\",\"indices\":[9,23]},{\"text\":\"AkwaIbomTwitter\",\"indices\":[24,40]},{\"text\":\"BORNPINK\",\"indices\":[41,50]},{\"text\":\"China\",\"indices\":[51,57]},{\"text\":\"Pelosi\",\"indices\":[58,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554575508972736514,\"id_str\":\"1554575508972736514\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"url\":\"https:\\/\\/t.co\\/tXMNBZl0y9\",\"display_url\":\"pic.twitter.com\\/tXMNBZl0y9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/captain_edet\\/status\\/1554575519135440899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"}}}]},\"4745\":{\"hashtags\":[{\"text\":\"MEMES\",\"indices\":[43,49]},{\"text\":\"code\",\"indices\":[50,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"joblife\",\"indices\":[64,72]},{\"text\":\"technology\",\"indices\":[73,84]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554575505319464961,\"id_str\":\"1554575505319464961\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"url\":\"https:\\/\\/t.co\\/sto3iBuaWX\",\"display_url\":\"pic.twitter.com\\/sto3iBuaWX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbUtEcH_bRo\\/status\\/1554575508922400768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":872,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":463,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":818,\"resize\":\"fit\"}}}]},\"4746\":{\"hashtags\":[{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[109,134]},{\"text\":\"fcklive\",\"indices\":[135,143]},{\"text\":\"Taiwan\",\"indices\":[144,151]},{\"text\":\"China\",\"indices\":[152,158]},{\"text\":\"chatsekscerita\",\"indices\":[159,174]},{\"text\":\"helicopter\",\"indices\":[175,186]},{\"text\":\"Pelosi\",\"indices\":[187,194]},{\"text\":\"ShowtimeAugust2Natin\",\"indices\":[195,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ConvergenceFin\",\"name\":\"Convergence Finance\",\"id\":1359091443537563651,\"id_str\":\"1359091443537563651\",\"indices\":[32,47]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5NHIvfXkRL\",\"expanded_url\":\"https:\\/\\/t.me\\/convergencefinanceofficial\",\"display_url\":\"t.me\\/convergencefin\\u2026\",\"indices\":[84,107]}],\"media\":[{\"id\":1554575368509702145,\"id_str\":\"1554575368509702145\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"url\":\"https:\\/\\/t.co\\/2z0WSFjajx\",\"display_url\":\"pic.twitter.com\\/2z0WSFjajx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554575385966297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1146,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1755,\"h\":1838,\"resize\":\"fit\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"}}}]},\"4747\":{\"hashtags\":[{\"text\":\"BAT\",\"indices\":[46,50]},{\"text\":\"BAT2023\",\"indices\":[84,92]},{\"text\":\"Worldwar\",\"indices\":[118,127]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[128,153]},{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"Pelosi\",\"indices\":[164,171]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iamhmmad1\",\"name\":\"h-a-m-m-a-d\",\"id\":1377550428880187392,\"id_str\":\"1377550428880187392\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554575316382875651,\"id_str\":\"1554575316382875651\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"url\":\"https:\\/\\/t.co\\/XYDehFbf1r\",\"display_url\":\"pic.twitter.com\\/XYDehFbf1r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554575319453032448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"small\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":554,\"resize\":\"fit\"}}}]},\"4748\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[79,86]},{\"text\":\"Taiwan\",\"indices\":[87,94]},{\"text\":\"Obituary\",\"indices\":[95,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iamhmmad1\",\"name\":\"h-a-m-m-a-d\",\"id\":1377550428880187392,\"id_str\":\"1377550428880187392\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554574473826893825,\"id_str\":\"1554574473826893825\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"url\":\"https:\\/\\/t.co\\/WaXLSMGJWu\",\"display_url\":\"pic.twitter.com\\/WaXLSMGJWu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554574477953990657\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"small\":{\"w\":259,\"h\":194,\"resize\":\"fit\"}}}]},\"4749\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thecableng\",\"name\":\"TheCable\",\"id\":1954402777,\"id_str\":\"1954402777\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4750\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[31,37]},{\"text\":\"Taiwan\",\"indices\":[38,45]},{\"text\":\"MUFC\",\"indices\":[46,51]},{\"text\":\"Lagos\",\"indices\":[52,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554573919142772740,\"id_str\":\"1554573919142772740\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"url\":\"https:\\/\\/t.co\\/sivn4BF0Lt\",\"display_url\":\"pic.twitter.com\\/sivn4BF0Lt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayode_tevi\\/status\\/1554573928336691206\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":946,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"4751\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AishaYesufu\",\"name\":\"Aisha Yesufu\",\"id\":2531005222,\"id_str\":\"2531005222\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4752\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[150,157]},{\"text\":\"China\",\"indices\":[158,164]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[185,200]},{\"text\":\"BBNaijaSeason7\",\"indices\":[201,216]},{\"text\":\"BORNPINK\",\"indices\":[217,226]},{\"text\":\"Dollar\",\"indices\":[227,234]},{\"text\":\"SheggzFC\",\"indices\":[235,244]},{\"text\":\"abeokuta\",\"indices\":[245,254]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FN0kSz1WoA\",\"expanded_url\":\"https:\\/\\/wa.link\\/9o149q\",\"display_url\":\"wa.link\\/9o149q\",\"indices\":[126,149]}],\"media\":[{\"id\":1554573613482872845,\"id_str\":\"1554573613482872845\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"url\":\"https:\\/\\/t.co\\/b3nGbPJ6WI\",\"display_url\":\"pic.twitter.com\\/b3nGbPJ6WI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Topmostnigga\\/status\\/1554573719493910528\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"4753\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[78,87]},{\"text\":\"PeterObi2023\",\"indices\":[88,101]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[102,127]},{\"text\":\"Reno\",\"indices\":[129,134]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"Tinubu2023\",\"indices\":[144,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554573601575165952,\"id_str\":\"1554573601575165952\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"url\":\"https:\\/\\/t.co\\/mcz8JzpAuh\",\"display_url\":\"pic.twitter.com\\/mcz8JzpAuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PBplusOilAndGas\\/status\\/1554573632428449801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4754\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KamalaHarris\",\"name\":\"Kamala Harris\",\"id\":30354991,\"id_str\":\"30354991\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4755\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[208,215]},{\"text\":\"WATCHTOEARN\",\"indices\":[216,228]},{\"text\":\"WWERaw\",\"indices\":[229,236]},{\"text\":\"Web3\",\"indices\":[237,242]},{\"text\":\"reMARKable24years\",\"indices\":[243,261]},{\"text\":\"ElonMusk\",\"indices\":[262,271]},{\"text\":\"helicopter\",\"indices\":[272,283]},{\"text\":\"China\",\"indices\":[284,290]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4756\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[168,179]},{\"text\":\"Taiwan\",\"indices\":[180,187]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"thecableng\",\"name\":\"TheCable\",\"id\":1954402777,\"id_str\":\"1954402777\",\"indices\":[0,11]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4757\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[28,35]},{\"text\":\"China\",\"indices\":[36,42]},{\"text\":\"AVFC\",\"indices\":[43,48]},{\"text\":\"trending\",\"indices\":[49,58]},{\"text\":\"helicopter\",\"indices\":[59,70]},{\"text\":\"FolloMe\",\"indices\":[71,79]},{\"text\":\"hongbesh\",\"indices\":[80,89]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554572788920369152,\"id_str\":\"1554572788920369152\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"url\":\"https:\\/\\/t.co\\/HQwbISDLcM\",\"display_url\":\"pic.twitter.com\\/HQwbISDLcM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HGbesh\\/status\\/1554572799079071747\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":378,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":666,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1137,\"h\":2048,\"resize\":\"fit\"}}}]},\"4758\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[24,31]},{\"text\":\"Machala\",\"indices\":[32,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554572134692839424,\"id_str\":\"1554572134692839424\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"url\":\"https:\\/\\/t.co\\/tcuRoXXAF3\",\"display_url\":\"pic.twitter.com\\/tcuRoXXAF3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CamillusChinon1\\/status\\/1554572159581814787\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4759\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4760\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[172,183]},{\"text\":\"Taiwan\",\"indices\":[184,191]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"lawrencekitema\",\"name\":\"Lawrence Kitema\",\"id\":584004949,\"id_str\":\"584004949\",\"indices\":[0,15]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4761\":{\"hashtags\":[{\"text\":\"tuesdayvibe\",\"indices\":[40,52]},{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"Taiwan\",\"indices\":[68,75]},{\"text\":\"Obidatti023\",\"indices\":[76,88]},{\"text\":\"TakeBackNaija\",\"indices\":[89,103]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554571677832560649,\"id_str\":\"1554571677832560649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4762\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[251,262]},{\"text\":\"Taiwan\",\"indices\":[263,270]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"delick_manzi\",\"name\":\"KINGSMAN \\u2122\",\"id\":1470452794066972674,\"id_str\":\"1470452794066972674\",\"indices\":[0,13]},{\"screen_name\":\"sammiemanini1\",\"name\":\"Sammie Manini\",\"id\":1477239688389926912,\"id_str\":\"1477239688389926912\",\"indices\":[14,28]},{\"screen_name\":\"bamwinejnr\",\"name\":\"Phil.\\ud83d\\udc51\\ud83e\\udd85\\ud83d\\udc10\",\"id\":1291370812302413825,\"id_str\":\"1291370812302413825\",\"indices\":[29,40]},{\"screen_name\":\"MrrChapter\",\"name\":\"Mr_Chapter\\ud83d\\udc51\\u26f9\\ufe0f\\u200d\\u2642\\ufe0f\\ud83d\\ude09\",\"id\":1359381835806048257,\"id_str\":\"1359381835806048257\",\"indices\":[41,52]},{\"screen_name\":\"LilyNampa\",\"name\":\"Lily Love\\ud83d\\udc96\\ud83e\\udd8b\",\"id\":1164792252339642375,\"id_str\":\"1164792252339642375\",\"indices\":[53,63]},{\"screen_name\":\"CanaanArinda\",\"name\":\"Noise Maker\\u2122\\ud83d\\udc68\\ud83c\\udffe\\u200d\\ud83e\\uddaf\",\"id\":1102240397491912710,\"id_str\":\"1102240397491912710\",\"indices\":[64,77]},{\"screen_name\":\"ArthurMuhwezi12\",\"name\":\"Arthur \\u2660\",\"id\":1260532390088376322,\"id_str\":\"1260532390088376322\",\"indices\":[78,94]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4763\":{\"hashtags\":[{\"text\":\"thenextfour\",\"indices\":[18,30]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"NancyPelosi\",\"indices\":[76,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554571484919652353,\"id_str\":\"1554571484919652353\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"url\":\"https:\\/\\/t.co\\/3fvdTVhxz3\",\"display_url\":\"pic.twitter.com\\/3fvdTVhxz3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/erioluu\\/status\\/1554571502409981952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"4764\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"instablog9ja\",\"name\":\"Instablog9ja\",\"id\":754393222563102720,\"id_str\":\"754393222563102720\",\"indices\":[0,13]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4765\":{\"hashtags\":[{\"text\":\"Davido\",\"indices\":[204,211]},{\"text\":\"EndSARS\",\"indices\":[213,221]},{\"text\":\"StopSellingPi\",\"indices\":[223,237]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"Pelosi\",\"indices\":[248,255]},{\"text\":\"China\",\"indices\":[257,263]},{\"text\":\"helicopter\",\"indices\":[265,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554571272939503617,\"id_str\":\"1554571272939503617\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"url\":\"https:\\/\\/t.co\\/StLsLPAdY2\",\"display_url\":\"pic.twitter.com\\/StLsLPAdY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554571349196242944\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":528,\"h\":480,\"resize\":\"fit\"}}}]},\"4766\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[148,155]},{\"text\":\"Obidiots\",\"indices\":[156,165]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"oyostategovt\",\"name\":\"Oyo State Government\",\"id\":586572792,\"id_str\":\"586572792\",\"indices\":[166,179]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RjAIU2Hqlb\",\"expanded_url\":\"https:\\/\\/truetellsnigeria.com\\/2022\\/08\\/02\\/blueface-physically-fights-girlfriend-chrisean-rock-in-public-video\\/\",\"display_url\":\"truetellsnigeria.com\\/2022\\/08\\/02\\/blu\\u2026\",\"indices\":[100,123]}]},\"4767\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[169,180]},{\"text\":\"Taiwan\",\"indices\":[181,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gyaigyyimii\",\"name\":\"KALYJAY \\uea00\",\"id\":1382488424,\"id_str\":\"1382488424\",\"indices\":[0,12]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4768\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[35,42]},{\"text\":\"NorthKorea\",\"indices\":[90,101]},{\"text\":\"NuclearWar\",\"indices\":[102,113]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"realDonaldTrump\",\"name\":\"Donald J. Trump\",\"id\":25073877,\"id_str\":\"25073877\",\"indices\":[65,81]}],\"urls\":[]},\"4769\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"BBNaija\",\"indices\":[108,116]},{\"text\":\"Cubana\",\"indices\":[117,124]},{\"text\":\"helicopter\",\"indices\":[125,136]},{\"text\":\"BellaOkagbue\",\"indices\":[137,150]},{\"text\":\"Trending\",\"indices\":[151,160]},{\"text\":\"Tinubu\",\"indices\":[161,168]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[169,194]},{\"text\":\"fun\",\"indices\":[195,199]},{\"text\":\"bread\",\"indices\":[200,206]},{\"text\":\"Ilebaye\",\"indices\":[207,215]},{\"text\":\"China\",\"indices\":[216,222]},{\"text\":\"Taiwan\",\"indices\":[223,230]},{\"text\":\"ASUU\",\"indices\":[231,236]},{\"text\":\"cruise\",\"indices\":[237,244]},{\"text\":\"Wizkidfc\",\"indices\":[245,254]},{\"text\":\"Wizkid\",\"indices\":[255,262]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554569453408485381,\"id_str\":\"1554569453408485381\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"url\":\"https:\\/\\/t.co\\/g210vExw4h\",\"display_url\":\"pic.twitter.com\\/g210vExw4h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554570096919646214\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":508,\"h\":360,\"resize\":\"fit\"}}}]},\"4770\":{\"hashtags\":[{\"text\":\"Naira\",\"indices\":[60,66]},{\"text\":\"Pelosi\",\"indices\":[67,74]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[83,91]},{\"text\":\"China\",\"indices\":[92,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O6bpvTJjJ6\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/breaking-naira-appreciate-n665-to-a-dollar-at-black-market\\/\",\"display_url\":\"iexclusivenews.com.ng\\/breaking-naira\\u2026\",\"indices\":[99,122]}]},\"4771\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[167,178]},{\"text\":\"Taiwan\",\"indices\":[179,186]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ShehuSani\",\"name\":\"Senator Shehu Sani\",\"id\":117042662,\"id_str\":\"117042662\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4772\":{\"hashtags\":[{\"text\":\"Machala\",\"indices\":[55,63]},{\"text\":\"Taiwan\",\"indices\":[64,71]},{\"text\":\"Obidatti2023\",\"indices\":[72,85]},{\"text\":\"Wizkidfc\",\"indices\":[86,95]},{\"text\":\"30BG\",\"indices\":[96,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554567277638553600,\"id_str\":\"1554567277638553600\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"url\":\"https:\\/\\/t.co\\/5QOb1BIQY2\",\"display_url\":\"pic.twitter.com\\/5QOb1BIQY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pluse_official\\/status\\/1554567302422609920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4773\":{\"hashtags\":[{\"text\":\"XiaomiImagery\",\"indices\":[120,134]},{\"text\":\"macdavisken\",\"indices\":[135,147]},{\"text\":\"China\",\"indices\":[149,155]},{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Pelosi\",\"indices\":[168,175]},{\"text\":\"JacksonWang\",\"indices\":[176,188]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Xiaomi\",\"name\":\"Xiaomi\",\"id\":377228272,\"id_str\":\"377228272\",\"indices\":[47,54]},{\"screen_name\":\"XiaomiNigeria\",\"name\":\"Xiaomi Nigeria\",\"id\":1113053142545924097,\"id_str\":\"1113053142545924097\",\"indices\":[55,69]}],\"urls\":[],\"media\":[{\"id\":1554567165231112192,\"id_str\":\"1554567165231112192\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"url\":\"https:\\/\\/t.co\\/sfUGAQ8nua\",\"display_url\":\"pic.twitter.com\\/sfUGAQ8nua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Macdavvis1\\/status\\/1554567192582258688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"4774\":{\"hashtags\":[{\"text\":\"SouthAfrica\",\"indices\":[226,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"Pelosi\",\"indices\":[247,254]},{\"text\":\"China\",\"indices\":[255,261]},{\"text\":\"GistLoverStory\",\"indices\":[262,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554567052840603650,\"id_str\":\"1554567052840603650\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"url\":\"https:\\/\\/t.co\\/LG5PfsgYol\",\"display_url\":\"pic.twitter.com\\/LG5PfsgYol\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554567123468443649\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":480,\"resize\":\"fit\"}}}]},\"4775\":{\"hashtags\":[{\"text\":\"3km\",\"indices\":[147,151]},{\"text\":\"PlayToEarn\",\"indices\":[152,163]},{\"text\":\"NFTGiveaway\",\"indices\":[164,176]},{\"text\":\"blockchain\",\"indices\":[177,188]},{\"text\":\"cryptocurrency\",\"indices\":[189,204]},{\"text\":\"Taiwan\",\"indices\":[205,212]},{\"text\":\"helicopter\",\"indices\":[213,224]},{\"text\":\"WIN\",\"indices\":[225,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"3KMOfficial\",\"name\":\"3KM_Official\",\"id\":1528957203905798144,\"id_str\":\"1528957203905798144\",\"indices\":[19,31]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wNxSYmMpWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/3KMOfficial\\/status\\/1554557140702044161\",\"display_url\":\"twitter.com\\/3KMOfficial\\/st\\u2026\",\"indices\":[230,253]}]},\"4776\":{\"hashtags\":[{\"text\":\"obituary\",\"indices\":[106,115]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[116,141]},{\"text\":\"OBIdient2023\",\"indices\":[142,155]},{\"text\":\"Pelosi\",\"indices\":[157,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554566342237364224,\"id_str\":\"1554566342237364224\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"url\":\"https:\\/\\/t.co\\/G4k25DjFCh\",\"display_url\":\"pic.twitter.com\\/G4k25DjFCh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/enginecarboncl3\\/status\\/1554566359635435522\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"small\":{\"w\":621,\"h\":680,\"resize\":\"fit\"}}}]},\"4777\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[181,188]},{\"text\":\"NancyPelosi\",\"indices\":[189,201]},{\"text\":\"China\",\"indices\":[202,208]},{\"text\":\"helicopter\",\"indices\":[209,220]},{\"text\":\"taiwanischina\",\"indices\":[221,235]},{\"text\":\"Taipei\",\"indices\":[236,243]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554566176721850370,\"id_str\":\"1554566176721850370\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4778\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[135,142]},{\"text\":\"China\",\"indices\":[144,150]},{\"text\":\"Worldwar111\",\"indices\":[152,164]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565836060368900,\"id_str\":\"1554565836060368900\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"url\":\"https:\\/\\/t.co\\/OCxbv6UNJE\",\"display_url\":\"pic.twitter.com\\/OCxbv6UNJE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1554565885150609412\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"}}}]},\"4779\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[190,196]},{\"text\":\"Pelosi\",\"indices\":[197,204]},{\"text\":\"WorldWarIII\",\"indices\":[205,217]},{\"text\":\"NancyPelosi\",\"indices\":[227,239]},{\"text\":\"MrPeterObi\",\"indices\":[240,251]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4780\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"Pelosi\",\"indices\":[38,45]},{\"text\":\"Freestyle\",\"indices\":[46,56]},{\"text\":\"RAP\",\"indices\":[57,61]},{\"text\":\"newtrend\",\"indices\":[62,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565458031960065,\"id_str\":\"1554565458031960065\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"url\":\"https:\\/\\/t.co\\/I0oRy79J6S\",\"display_url\":\"pic.twitter.com\\/I0oRy79J6S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554565609727397888\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4781\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[233,240]},{\"text\":\"China\",\"indices\":[241,247]},{\"text\":\"taiwanischina\",\"indices\":[248,262]},{\"text\":\"NancyPelosi\",\"indices\":[263,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565442655686662,\"id_str\":\"1554565442655686662\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"url\":\"https:\\/\\/t.co\\/DMOVY73bxJ\",\"display_url\":\"pic.twitter.com\\/DMOVY73bxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565491808784386\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"4782\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"NancyPelosi\",\"indices\":[99,111]},{\"text\":\"China\",\"indices\":[179,185]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[186,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554565367259090944,\"id_str\":\"1554565367259090944\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"url\":\"https:\\/\\/t.co\\/LK9Tgqbfpo\",\"display_url\":\"pic.twitter.com\\/LK9Tgqbfpo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554565373692747777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"4783\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[96,102]},{\"text\":\"taiwanischina\",\"indices\":[103,117]},{\"text\":\"TaiwanIsaCountry\",\"indices\":[118,135]},{\"text\":\"Pelosi\",\"indices\":[136,143]},{\"text\":\"NancyPelosi\",\"indices\":[144,156]},{\"text\":\"helicopter\",\"indices\":[157,168]},{\"text\":\"Trending\",\"indices\":[169,178]},{\"text\":\"TrendingNow\",\"indices\":[179,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554564980330094592,\"id_str\":\"1554564980330094592\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"url\":\"https:\\/\\/t.co\\/3keenBlNEu\",\"display_url\":\"pic.twitter.com\\/3keenBlNEu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565016489279498\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"4784\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"China\",\"indices\":[29,35]},{\"text\":\"NancyPelosi\",\"indices\":[36,48]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[49,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554564792278450177,\"id_str\":\"1554564792278450177\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"url\":\"https:\\/\\/t.co\\/09SipiAiwx\",\"display_url\":\"pic.twitter.com\\/09SipiAiwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554564794887421954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":492,\"h\":973,\"resize\":\"fit\"},\"small\":{\"w\":344,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":492,\"h\":973,\"resize\":\"fit\"}}}]},\"4785\":{\"hashtags\":[{\"text\":\"OBIdient2023\",\"indices\":[128,141]},{\"text\":\"wizkid\",\"indices\":[158,165]},{\"text\":\"OBIDIENTS\",\"indices\":[226,236]},{\"text\":\"helicopter\",\"indices\":[257,268]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[28,37]}],\"urls\":[],\"media\":[{\"id\":1554564294246899713,\"id_str\":\"1554564294246899713\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4786\":{\"hashtags\":[{\"text\":\"Iran\",\"indices\":[159,164]},{\"text\":\"Baghdad\",\"indices\":[165,173]},{\"text\":\"Gistlover\",\"indices\":[174,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"NancyPelosi\",\"indices\":[200,212]},{\"text\":\"Trending\",\"indices\":[213,222]},{\"text\":\"TrendingNow\",\"indices\":[223,235]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563909604065282,\"id_str\":\"1554563909604065282\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"url\":\"https:\\/\\/t.co\\/4GXSetMpTG\",\"display_url\":\"pic.twitter.com\\/4GXSetMpTG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554564046287953921\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4787\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[98,106]},{\"text\":\"helicopter\",\"indices\":[107,118]},{\"text\":\"NancyPelosi\",\"indices\":[119,131]},{\"text\":\"Taiwan\",\"indices\":[132,139]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563716204601344,\"id_str\":\"1554563716204601344\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"url\":\"https:\\/\\/t.co\\/tESlr2Og8O\",\"display_url\":\"pic.twitter.com\\/tESlr2Og8O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FadoroTobi\\/status\\/1554563834324652032\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}}}]},\"4788\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"BBNajiaS7\",\"indices\":[92,102]},{\"text\":\"BBNaijaSeason7\",\"indices\":[103,118]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554563339052892162,\"id_str\":\"1554563339052892162\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"url\":\"https:\\/\\/t.co\\/JY1Tr0L5rC\",\"display_url\":\"pic.twitter.com\\/JY1Tr0L5rC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ade_omo_Giwa\\/status\\/1554563551221760001\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}}}]},\"4789\":{\"hashtags\":[{\"text\":\"airdropalert\",\"indices\":[119,132]},{\"text\":\"BSCGems\",\"indices\":[133,141]},{\"text\":\"Crypto\",\"indices\":[142,149]},{\"text\":\"Giveaway\",\"indices\":[150,159]},{\"text\":\"NFTGiveaway\",\"indices\":[160,172]},{\"text\":\"NFTAirdrop\",\"indices\":[173,184]},{\"text\":\"NFTCommumity\",\"indices\":[185,198]},{\"text\":\"NFTfamily\",\"indices\":[199,209]},{\"text\":\"NFTProject\",\"indices\":[210,221]},{\"text\":\"Metaverse\",\"indices\":[223,233]},{\"text\":\"GameFi\",\"indices\":[234,241]},{\"text\":\"P2E\",\"indices\":[242,246]},{\"text\":\"BSC\",\"indices\":[248,252]},{\"text\":\"Pelosi\",\"indices\":[253,260]},{\"text\":\"Web3\",\"indices\":[261,266]},{\"text\":\"Crypto\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[0,16]},{\"screen_name\":\"intelfin_global\",\"name\":\"Intelfin Global\",\"id\":1317821956452978690,\"id_str\":\"1317821956452978690\",\"indices\":[102,118]}],\"urls\":[],\"media\":[{\"id\":1554563235650707460,\"id_str\":\"1554563235650707460\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"url\":\"https:\\/\\/t.co\\/9viU1HDss1\",\"display_url\":\"pic.twitter.com\\/9viU1HDss1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1554563249894555648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4790\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4791\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[76,83]},{\"text\":\"China\",\"indices\":[84,90]},{\"text\":\"BBNaija\",\"indices\":[91,99]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[100,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554560263009042439,\"id_str\":\"1554560263009042439\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"url\":\"https:\\/\\/t.co\\/j6e1GbRdG3\",\"display_url\":\"pic.twitter.com\\/j6e1GbRdG3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gbachis\\/status\\/1554560269271048199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":736,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":736,\"resize\":\"fit\"}}}]},\"4792\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"NancyPelosi\",\"indices\":[61,73]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nentawe1\",\"name\":\"Nentawe G. Yilwatda\",\"id\":825488924,\"id_str\":\"825488924\",\"indices\":[75,84]}],\"urls\":[],\"media\":[{\"id\":1554560154431111170,\"id_str\":\"1554560154431111170\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"url\":\"https:\\/\\/t.co\\/szWcNq2iac\",\"display_url\":\"pic.twitter.com\\/szWcNq2iac\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Longdenjr1\\/status\\/1554560172017811465\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"4793\":{\"hashtags\":[{\"text\":\"BeautyWithBrains\",\"indices\":[42,59]},{\"text\":\"Bbnaija\",\"indices\":[60,68]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[77,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554560136332681217,\"id_str\":\"1554560136332681217\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"url\":\"https:\\/\\/t.co\\/Sjbw8y0IwH\",\"display_url\":\"pic.twitter.com\\/Sjbw8y0IwH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DicksonFunkeye\\/status\\/1554560151427993602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1088,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":361,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":638,\"h\":1200,\"resize\":\"fit\"}}}]},\"4794\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4795\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[100,111]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[112,127]},{\"text\":\"SuperTuna_Jin\",\"indices\":[128,142]},{\"text\":\"Pelosi\",\"indices\":[143,150]},{\"text\":\"NancyPelosi\",\"indices\":[151,163]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4796\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[18,24]},{\"text\":\"Pelosi\",\"indices\":[25,32]},{\"text\":\"helicopter\",\"indices\":[33,44]},{\"text\":\"BBNaija\",\"indices\":[45,53]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554558659690102785,\"id_str\":\"1554558659690102785\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"url\":\"https:\\/\\/t.co\\/vrjqi5d14o\",\"display_url\":\"pic.twitter.com\\/vrjqi5d14o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554559036997226499\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"4797\":{\"hashtags\":[{\"text\":\"anime\",\"indices\":[35,41]},{\"text\":\"Nigeria\",\"indices\":[42,50]},{\"text\":\"manga\",\"indices\":[51,57]},{\"text\":\"new\",\"indices\":[58,62]},{\"text\":\"Pelosi\",\"indices\":[63,70]},{\"text\":\"naija\",\"indices\":[71,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554558875575238656,\"id_str\":\"1554558875575238656\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"url\":\"https:\\/\\/t.co\\/FEUIKswiB5\",\"display_url\":\"pic.twitter.com\\/FEUIKswiB5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Otaku_konnect\\/status\\/1554559032274345993\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"4798\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[103,110]},{\"text\":\"NancyPelosi\",\"indices\":[112,124]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[126,151]},{\"text\":\"Obidatti023\",\"indices\":[153,165]},{\"text\":\"Obidatti2023\",\"indices\":[167,180]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[182,199]},{\"text\":\"BBNaija\",\"indices\":[201,209]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[211,220]}],\"urls\":[],\"media\":[{\"id\":1554557954673807372,\"id_str\":\"1554557954673807372\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"url\":\"https:\\/\\/t.co\\/dR7enXaCX9\",\"display_url\":\"pic.twitter.com\\/dR7enXaCX9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thebenfeyijimi\\/status\\/1554557971069374464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"}}}]},\"4799\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[155,162]},{\"text\":\"China\",\"indices\":[163,169]},{\"text\":\"BBNaija\",\"indices\":[170,178]},{\"text\":\"Obidatti023\",\"indices\":[179,191]},{\"text\":\"PeterObi4President2023\",\"indices\":[192,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554556553323233282,\"id_str\":\"1554556553323233282\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"url\":\"https:\\/\\/t.co\\/aEHGtnzasE\",\"display_url\":\"pic.twitter.com\\/aEHGtnzasE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554556555688910849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4800\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[21,28]},{\"text\":\"China\",\"indices\":[29,35]},{\"text\":\"AbujaTwitterCommunity\",\"indices\":[36,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4801\":{\"hashtags\":[{\"text\":\"Hepatitis\",\"indices\":[103,113]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[114,131]},{\"text\":\"China\",\"indices\":[239,245]},{\"text\":\"Pelosi\",\"indices\":[246,253]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/saVxYVwPVi\",\"expanded_url\":\"https:\\/\\/myhealthmatterstoday.wordpress.com\\/2022\\/08\\/02\\/myth-and-facts-about-hepatitis\",\"display_url\":\"myhealthmatterstoday.wordpress.com\\/2022\\/08\\/02\\/myt\\u2026\",\"indices\":[254,277]}]},\"4802\":{\"hashtags\":[{\"text\":\"Summer\",\"indices\":[14,21]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[23,30]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[32,57]},{\"text\":\"CharlotteXRica\",\"indices\":[58,73]},{\"text\":\"\\u0e1e\\u0e34\\u0e28\\u0e27\\u0e32\\u0e2a\\u0e06\\u0e32\\u0e15\\u0e40\\u0e01\\u0e21\\u0e2a\\u0e4cep10\",\"indices\":[74,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"\\u0627\\u0644\\u062d\\u0631\\u0628_\\u0627\\u0644\\u0639\\u0627\\u0644\\u0645\\u064a\\u0629_\\u0627\\u0644\\u062b\\u0627\\u0644\\u062b\\u0629\",\"indices\":[102,125]},{\"text\":\"Pelosi\",\"indices\":[126,133]},{\"text\":\"\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08\",\"indices\":[135,150]},{\"text\":\"\\u0e1a\\u0e1b\\u0e41\\u0e25\\u0e01\\u0e41\\u0e2b\\u0e27\\u0e19\\u0e41\\u0e17\\u0e19\\u0e43\\u0e08\",\"indices\":[151,166]},{\"text\":\"oesym\",\"indices\":[167,173]},{\"text\":\"China\",\"indices\":[174,180]},{\"text\":\"JacksonWang\",\"indices\":[181,193]},{\"text\":\"explorepage\",\"indices\":[194,206]},{\"text\":\"explore\",\"indices\":[207,215]},{\"text\":\"indiemusic\",\"indices\":[216,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554555511479144457,\"id_str\":\"1554555511479144457\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"url\":\"https:\\/\\/t.co\\/2liLRM6tlC\",\"display_url\":\"pic.twitter.com\\/2liLRM6tlC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554555643092140034\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"4803\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[78,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554555488305614848,\"id_str\":\"1554555488305614848\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"url\":\"https:\\/\\/t.co\\/AhTJ0ySCrx\",\"display_url\":\"pic.twitter.com\\/AhTJ0ySCrx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChoWurld\\/status\\/1554555495012343808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":628,\"resize\":\"fit\"}}}]},\"4804\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"psychologyfact\",\"indices\":[110,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554554894576754691,\"id_str\":\"1554554894576754691\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"url\":\"https:\\/\\/t.co\\/Raxmh0ZXgW\",\"display_url\":\"pic.twitter.com\\/Raxmh0ZXgW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nobleman_0\\/status\\/1554554904034811906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"medium\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"small\":{\"w\":200,\"h\":176,\"resize\":\"fit\"}}}]},\"4805\":{\"hashtags\":[{\"text\":\"heartbreakonaweekend\",\"indices\":[47,68]},{\"text\":\"yungskizzy\",\"indices\":[77,88]},{\"text\":\"promphizy\",\"indices\":[89,99]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"China\",\"indices\":[108,114]},{\"text\":\"YEEZYDAY\",\"indices\":[115,124]},{\"text\":\"helicopter\",\"indices\":[125,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554554838129721344,\"id_str\":\"1554554838129721344\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4806\":{\"hashtags\":[{\"text\":\"Soto\",\"indices\":[114,119]},{\"text\":\"Gallo\",\"indices\":[120,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]},{\"text\":\"Happy\",\"indices\":[135,141]},{\"text\":\"Dolphins\",\"indices\":[157,166]},{\"text\":\"China\",\"indices\":[167,173]},{\"text\":\"thatsmoney\",\"indices\":[174,185]},{\"text\":\"Dane\",\"indices\":[186,191]},{\"text\":\"Alpine\",\"indices\":[197,204]},{\"text\":\"McLaren\",\"indices\":[205,213]},{\"text\":\"NO\",\"indices\":[214,217]},{\"text\":\"Yeezy\",\"indices\":[234,240]},{\"text\":\"MLBTradeDeadline\",\"indices\":[241,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w9fxUoTjHc\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/jgzB3o\",\"display_url\":\"fiverr.com\\/share\\/jgzB3o\",\"indices\":[90,113]}]},\"4807\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[146,153]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4808\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"China\",\"indices\":[137,143]},{\"text\":\"Obidatti023\",\"indices\":[144,156]},{\"text\":\"PeterObi4President2023\",\"indices\":[157,180]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[119,128]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5wQdeTGtV\",\"expanded_url\":\"https:\\/\\/labourparty.com.ng\\/insecurity-my-solution-will-be-decisive-and-immediate-says-peter-obi\\/\",\"display_url\":\"labourparty.com.ng\\/insecurity-my-\\u2026\",\"indices\":[71,94]}],\"media\":[{\"id\":1554553574088130562,\"id_str\":\"1554553574088130562\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"url\":\"https:\\/\\/t.co\\/alCbOqU2TQ\",\"display_url\":\"pic.twitter.com\\/alCbOqU2TQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554553577816920067\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"large\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1551897942151380996,\"id_str\":\"1551897942151380996\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"url\":\"https:\\/\\/t.co\\/ZkxAtQ2d0G\",\"display_url\":\"pic.twitter.com\\/ZkxAtQ2d0G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1551897982672535552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"medium\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":1551897982672535552,\"source_status_id_str\":\"1551897982672535552\",\"source_user_id\":1529562333751689217,\"source_user_id_str\":\"1529562333751689217\"}]},\"4809\":{\"hashtags\":[{\"text\":\"sabinus\",\"indices\":[96,104]},{\"text\":\"Machala\",\"indices\":[105,113]},{\"text\":\"Taiwan\",\"indices\":[114,121]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[122,147]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[148,163]},{\"text\":\"BBNaija7\",\"indices\":[164,173]},{\"text\":\"BAT2023\",\"indices\":[174,182]},{\"text\":\"China\",\"indices\":[183,189]},{\"text\":\"helicopter\",\"indices\":[190,201]},{\"text\":\"PremierLeague\",\"indices\":[202,216]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"fb\",\"name\":\"FB\",\"id\":1144267346913005568,\"id_str\":\"1144267346913005568\",\"indices\":[59,62]},{\"screen_name\":\"iG\",\"name\":\"Portal iG\",\"id\":14311308,\"id_str\":\"14311308\",\"indices\":[77,80]}],\"urls\":[],\"media\":[{\"id\":1554553387211001857,\"id_str\":\"1554553387211001857\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"url\":\"https:\\/\\/t.co\\/NhsBTtDwFP\",\"display_url\":\"pic.twitter.com\\/NhsBTtDwFP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OtakhorEmmanuel\\/status\\/1554553518006075392\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"4810\":{\"hashtags\":[{\"text\":\"Hermes\",\"indices\":[166,173]},{\"text\":\"Taiwan\",\"indices\":[174,181]},{\"text\":\"YEEZYDAY\",\"indices\":[182,191]},{\"text\":\"BBNajiaS7\",\"indices\":[192,202]},{\"text\":\"BBNaijaLevelUp\",\"indices\":[203,218]},{\"text\":\"bbrightvc\",\"indices\":[219,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[59,66]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[67,76]},{\"screen_name\":\"patorankingfire\",\"name\":\"PATORANKING\",\"id\":66000793,\"id_str\":\"66000793\",\"indices\":[77,93]},{\"screen_name\":\"yemialadee\",\"name\":\"\\u270a\\ud83c\\udffe yemialade\",\"id\":166070714,\"id_str\":\"166070714\",\"indices\":[94,105]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[106,119]},{\"screen_name\":\"rudeboypsquare\",\"name\":\"Rudeboy\",\"id\":320327987,\"id_str\":\"320327987\",\"indices\":[120,135]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[136,145]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[146,153]}],\"urls\":[],\"media\":[{\"id\":1554550701040275459,\"id_str\":\"1554550701040275459\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"url\":\"https:\\/\\/t.co\\/Ze5IxvlGee\",\"display_url\":\"pic.twitter.com\\/Ze5IxvlGee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/me_azal\\/status\\/1554553249323253761\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4811\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[50,56]},{\"text\":\"helicopter\",\"indices\":[57,68]},{\"text\":\"ASUU\",\"indices\":[69,74]},{\"text\":\"bbnajia\",\"indices\":[75,83]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4812\":{\"hashtags\":[{\"text\":\"Igbo\",\"indices\":[248,253]},{\"text\":\"lekki\",\"indices\":[254,260]},{\"text\":\"Lagos\",\"indices\":[261,267]},{\"text\":\"Pelosi\",\"indices\":[268,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552848704323585,\"id_str\":\"1554552848704323585\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"url\":\"https:\\/\\/t.co\\/V2ui30jamm\",\"display_url\":\"pic.twitter.com\\/V2ui30jamm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/overhplus\\/status\\/1554553045366853634\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4813\":{\"hashtags\":[{\"text\":\"ObiDatti2023\",\"indices\":[100,113]},{\"text\":\"Taiwan\",\"indices\":[134,141]},{\"text\":\"China\",\"indices\":[142,148]},{\"text\":\"BBNajiaS7\",\"indices\":[149,159]},{\"text\":\"Obidatti023\",\"indices\":[160,172]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[114,123]},{\"screen_name\":\"NgLabour\",\"name\":\"LabourPartyNG\",\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"indices\":[124,133]}],\"urls\":[],\"media\":[{\"id\":1554552988705890308,\"id_str\":\"1554552988705890308\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"url\":\"https:\\/\\/t.co\\/Kovj709BMT\",\"display_url\":\"pic.twitter.com\\/Kovj709BMT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554552991683936257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4814\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"helicopter\",\"indices\":[41,52]},{\"text\":\"JacksonWang\",\"indices\":[53,65]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554552357991731201,\"id_str\":\"1554552357991731201\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"url\":\"https:\\/\\/t.co\\/aQw7WbalFJ\",\"display_url\":\"pic.twitter.com\\/aQw7WbalFJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554552365029724160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4815\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/LCSaSYlEaZ\",\"display_url\":\"pic.twitter.com\\/LCSaSYlEaZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4816\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"Pelosi\",\"indices\":[234,241]},{\"text\":\"China\",\"indices\":[242,248]},{\"text\":\"WorldWar3\",\"indices\":[249,259]},{\"text\":\"Africa\",\"indices\":[260,267]},{\"text\":\"Italy\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NGOELITESTAR\",\"name\":\"Elite Star Foundation\",\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"indices\":[187,200]}],\"urls\":[]},\"4817\":{\"hashtags\":[{\"text\":\"Bbnaija\",\"indices\":[103,111]},{\"text\":\"Taiwan\",\"indices\":[112,119]},{\"text\":\"Hermes\",\"indices\":[120,127]},{\"text\":\"PeterObi2023\",\"indices\":[128,141]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4818\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554551317397442565,\"id_str\":\"1554551317397442565\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"url\":\"https:\\/\\/t.co\\/lp2xxqa7u3\",\"display_url\":\"pic.twitter.com\\/lp2xxqa7u3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554551325458849794\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4819\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[247,254]},{\"text\":\"bbnaija\",\"indices\":[255,263]},{\"text\":\"ASUU\",\"indices\":[264,269]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pHFT0TbZNT\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/Ecgprh2KECg2TiA19S7D0d\",\"display_url\":\"chat.whatsapp.com\\/Ecgprh2KECg2Ti\\u2026\",\"indices\":[222,245]}]},\"4820\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[3,10]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554550693905764353,\"id_str\":\"1554550693905764353\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"url\":\"https:\\/\\/t.co\\/dkwjpnxd1V\",\"display_url\":\"pic.twitter.com\\/dkwjpnxd1V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/keep_itreal81\\/status\\/1554550700868247553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":349,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"}}}]},\"4821\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[249,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4822\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[86,93]},{\"text\":\"Taiwan\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[102,125]}]},\"4823\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4824\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[71,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"Lekki\",\"indices\":[91,97]},{\"text\":\"Pelosi\",\"indices\":[98,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4825\":{\"hashtags\":[{\"text\":\"obedient\",\"indices\":[16,25]},{\"text\":\"WWIII\",\"indices\":[205,211]},{\"text\":\"obituary\",\"indices\":[213,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4826\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4827\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[215,222]},{\"text\":\"Biden\",\"indices\":[223,229]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KarenBassLA\",\"name\":\"Karen Bass\",\"id\":113494390,\"id_str\":\"113494390\",\"indices\":[0,12]},{\"screen_name\":\"KamalaHarris\",\"name\":\"Kamala Harris\",\"id\":30354991,\"id_str\":\"30354991\",\"indices\":[13,26]}],\"urls\":[]},\"4828\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[156,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\"}]},\"4829\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p1QUU5yEVY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olulion\\/status\\/1554546109523050498\",\"display_url\":\"twitter.com\\/olulion\\/status\\u2026\",\"indices\":[46,69]}],\"media\":[{\"id\":1554546949315067909,\"id_str\":\"1554546949315067909\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"url\":\"https:\\/\\/t.co\\/SQ7SoQkXfY\",\"display_url\":\"pic.twitter.com\\/SQ7SoQkXfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akomscopy\\/status\\/1554546962938171393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"large\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"}}}]},\"4830\":{\"hashtags\":[{\"text\":\"Ninjawarriorsfc\",\"indices\":[59,75]},{\"text\":\"Taiwan\",\"indices\":[78,85]},{\"text\":\"Pelosi\",\"indices\":[86,93]},{\"text\":\"China\",\"indices\":[94,100]},{\"text\":\"YEEZYDAY\",\"indices\":[101,110]},{\"text\":\"LowerPassingRate\",\"indices\":[111,128]},{\"text\":\"Kep1er\",\"indices\":[129,136]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554546273600131079,\"id_str\":\"1554546273600131079\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"url\":\"https:\\/\\/t.co\\/VOuUsPJWID\",\"display_url\":\"pic.twitter.com\\/VOuUsPJWID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554546282605207553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}}}]},\"4831\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[46,53]},{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"PelosiinTaiwan\",\"indices\":[83,98]},{\"text\":\"China\",\"indices\":[99,105]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[106,124]},{\"text\":\"ChinaTaiwan\",\"indices\":[125,137]},{\"text\":\"USA\",\"indices\":[138,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554545717922131968,\"id_str\":\"1554545717922131968\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"url\":\"https:\\/\\/t.co\\/LM6VSMyzjG\",\"display_url\":\"pic.twitter.com\\/LM6VSMyzjG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554545745671647232\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"4832\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[9,15]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4833\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[72,79]},{\"text\":\"Pelosi\",\"indices\":[80,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/900QcCpy8i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\",\"display_url\":\"twitter.com\\/NgLabour\\/statu\\u2026\",\"indices\":[88,111]}]},\"4834\":{\"hashtags\":[{\"text\":\"BBNajiaS7\",\"indices\":[165,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554544531168788492,\"id_str\":\"1554544531168788492\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}}]},\"4835\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"Pelosi\",\"indices\":[92,99]},{\"text\":\"China\",\"indices\":[100,106]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554544457730629632,\"id_str\":\"1554544457730629632\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"url\":\"https:\\/\\/t.co\\/nSesxfnDTK\",\"display_url\":\"pic.twitter.com\\/nSesxfnDTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itycletylove\\/status\\/1554544471437606920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":956,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":896,\"resize\":\"fit\"}}}]},\"4836\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"China\",\"indices\":[69,75]},{\"text\":\"JacksonWang\",\"indices\":[76,88]},{\"text\":\"helicopter\",\"indices\":[89,100]},{\"text\":\"YEEZYDAY\",\"indices\":[101,110]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[111,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[130,153]}]},\"4837\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[244,251]},{\"text\":\"Peace\",\"indices\":[252,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"UN\",\"name\":\"United Nations\",\"id\":14159148,\"id_str\":\"14159148\",\"indices\":[259,262]},{\"screen_name\":\"ghanamissionun\",\"name\":\"GhanaUN\",\"id\":1039904243916918784,\"id_str\":\"1039904243916918784\",\"indices\":[263,278]}],\"urls\":[]},\"4838\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[35,42]},{\"text\":\"China\",\"indices\":[43,49]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[50,72]},{\"text\":\"YEEZYDAY\",\"indices\":[73,82]},{\"text\":\"tuesdayvibe\",\"indices\":[83,95]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[96,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Obaji_007\",\"name\":\"\\ud83d\\udc51Mazi 1 Of Twiita ESQ\",\"id\":1317475561,\"id_str\":\"1317475561\",\"indices\":[22,32]}],\"urls\":[],\"media\":[{\"id\":1554543071760613376,\"id_str\":\"1554543071760613376\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"url\":\"https:\\/\\/t.co\\/1alsIAGmpL\",\"display_url\":\"pic.twitter.com\\/1alsIAGmpL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mentie_pride\\/status\\/1554543236122804227\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"4839\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[162,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"Rascism\",\"indices\":[209,217]},{\"text\":\"WWIII\",\"indices\":[219,225]},{\"text\":\"Lekki\",\"indices\":[241,247]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ManUtd\",\"name\":\"Manchester United\",\"id\":558797310,\"id_str\":\"558797310\",\"indices\":[13,20]}],\"urls\":[],\"media\":[{\"id\":1554542946720038915,\"id_str\":\"1554542946720038915\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"url\":\"https:\\/\\/t.co\\/aLAPq2Ps0u\",\"display_url\":\"pic.twitter.com\\/aLAPq2Ps0u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554542950096543744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"4840\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[135,141]},{\"text\":\"WorldWar3\",\"indices\":[142,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"Pelosi\",\"indices\":[161,168]},{\"text\":\"China\",\"indices\":[169,175]},{\"text\":\"WW3\",\"indices\":[176,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554542635007836165,\"id_str\":\"1554542635007836165\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"url\":\"https:\\/\\/t.co\\/crUGc0k2UF\",\"display_url\":\"pic.twitter.com\\/crUGc0k2UF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibrahim_IbbJnr8\\/status\\/1554542637566332931\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":563,\"resize\":\"fit\"}}}]},\"4841\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[57,63]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6DEiwtv3NU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\",\"display_url\":\"twitter.com\\/OdNa_TaKa9l\\/st\\u2026\",\"indices\":[64,87]}]},\"4842\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[15,22]},{\"text\":\"Pelosi\",\"indices\":[23,30]},{\"text\":\"helicopter\",\"indices\":[31,42]},{\"text\":\"chatsekscerita\",\"indices\":[43,58]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[59,81]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[82,100]},{\"text\":\"YEEZYDAY\",\"indices\":[101,110]},{\"text\":\"tuesdayvibe\",\"indices\":[111,123]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[124,138]},{\"text\":\"NCT127\",\"indices\":[139,146]},{\"text\":\"SuperTuna_Jin\",\"indices\":[148,162]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[163,171]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[172,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540335862353920,\"id_str\":\"1554540335862353920\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"url\":\"https:\\/\\/t.co\\/r7UJdM5Vc3\",\"display_url\":\"pic.twitter.com\\/r7UJdM5Vc3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1554541886446178305\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}}}]},\"4843\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[192,199]},{\"text\":\"helicopter\",\"indices\":[200,211]},{\"text\":\"Datti\",\"indices\":[224,230]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/y1caKEYuCw\",\"expanded_url\":\"https:\\/\\/ginnyent.org\\/others\\/trending-video-of-police-officer-beating-man-with-a-machete-in-cross-river\\/\",\"display_url\":\"ginnyent.org\\/others\\/trendin\\u2026\",\"indices\":[162,185]}]},\"4844\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[198,205]},{\"text\":\"helicopter\",\"indices\":[206,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NcqTO5kOSy\",\"expanded_url\":\"https:\\/\\/ginnyent.org\\/news\\/youths-in-aba-stage-protests-demanding-an-end-to-ebubeagu-militia-in-igboland-photos-video\\/\",\"display_url\":\"ginnyent.org\\/news\\/youths-in\\u2026\",\"indices\":[168,191]}]},\"4845\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"helicopter\",\"indices\":[69,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540500048384008,\"id_str\":\"1554540500048384008\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"url\":\"https:\\/\\/t.co\\/bdasAJa1dE\",\"display_url\":\"pic.twitter.com\\/bdasAJa1dE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/faithluseno\\/status\\/1554540517962178561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1262,\"resize\":\"fit\"}}}]},\"4846\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[28,35]},{\"text\":\"helicopter\",\"indices\":[36,47]},{\"text\":\"chatsekscerita\",\"indices\":[48,63]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[64,86]},{\"text\":\"tuesdayvibe\",\"indices\":[87,99]},{\"text\":\"YEEZYDAY\",\"indices\":[100,109]},{\"text\":\"NCT127\",\"indices\":[110,117]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[118,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540278492663810,\"id_str\":\"1554540278492663810\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"url\":\"https:\\/\\/t.co\\/CIOjlFCbwK\",\"display_url\":\"pic.twitter.com\\/CIOjlFCbwK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554540287493562369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4847\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[29,36]},{\"text\":\"OmoAgege\",\"indices\":[37,46]},{\"text\":\"Abuja\",\"indices\":[47,53]},{\"text\":\"helicopter\",\"indices\":[61,72]},{\"text\":\"Grammy\",\"indices\":[73,80]},{\"text\":\"machala\",\"indices\":[81,89]},{\"text\":\"Racism\",\"indices\":[90,97]},{\"text\":\"foden\",\"indices\":[98,104]},{\"text\":\"StartMount\",\"indices\":[105,116]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554540156438384640,\"id_str\":\"1554540156438384640\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"4848\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Ukraine\\ufe0f\",\"indices\":[96,105]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IWCxu2HLYp\",\"expanded_url\":\"https:\\/\\/www.washingtonpost.com\\/opinions\\/2022\\/08\\/02\\/nancy-pelosi-taiwan-visit-op-ed\\/\",\"display_url\":\"washingtonpost.com\\/opinions\\/2022\\/\\u2026\",\"indices\":[106,129]}]},\"4849\":{\"hashtags\":[{\"text\":\"chatsekscerita\",\"indices\":[64,79]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[80,105]},{\"text\":\"helicopter\",\"indices\":[141,152]},{\"text\":\"Taiwan\",\"indices\":[153,160]},{\"text\":\"Pelosi\",\"indices\":[161,168]},{\"text\":\"oesym\",\"indices\":[169,175]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[176,183]},{\"text\":\"\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\"indices\":[184,192]},{\"text\":\"\\u0646\\u0627\\u0646\\u0633\\u064a_\\u0628\\u064a\\u0644\\u0648\\u0633\\u064a\",\"indices\":[193,206]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Pres_Adebayo\",\"name\":\"Adewole Adebayo ESQ\",\"id\":1042535723071676416,\"id_str\":\"1042535723071676416\",\"indices\":[207,220]},{\"screen_name\":\"atiku\",\"name\":\"Atiku Abubakar\",\"id\":177583133,\"id_str\":\"177583133\",\"indices\":[221,227]},{\"screen_name\":\"edwinbushJnr\",\"name\":\"LEADERSHiP\\ud83d\\udcbf\",\"id\":2619515667,\"id_str\":\"2619515667\",\"indices\":[228,241]}],\"urls\":[],\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}}}]},\"4850\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[37,44]},{\"text\":\"Pelosi\",\"indices\":[45,52]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[53,75]},{\"text\":\"chatsekscerita\",\"indices\":[76,91]},{\"text\":\"tuesdayvibe\",\"indices\":[92,104]},{\"text\":\"BBNaija7\",\"indices\":[105,114]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554539305804120065,\"id_str\":\"1554539305804120065\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"url\":\"https:\\/\\/t.co\\/7XISsANW5B\",\"display_url\":\"pic.twitter.com\\/7XISsANW5B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/official_pizz\\/status\\/1554539314142388225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"}}}]},\"4851\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[63,70]},{\"text\":\"Trending\",\"indices\":[71,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4852\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539199705096193,\"id_str\":\"1554539199705096193\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"url\":\"https:\\/\\/t.co\\/3sZQZxnKak\",\"display_url\":\"pic.twitter.com\\/3sZQZxnKak\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539206222946305\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"4853\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539155560058882,\"id_str\":\"1554539155560058882\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"url\":\"https:\\/\\/t.co\\/JoInBfSZQN\",\"display_url\":\"pic.twitter.com\\/JoInBfSZQN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539165949349888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"4854\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539104871874560,\"id_str\":\"1554539104871874560\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"url\":\"https:\\/\\/t.co\\/zNr4ata000\",\"display_url\":\"pic.twitter.com\\/zNr4ata000\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539112664817665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"4855\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539053537808385,\"id_str\":\"1554539053537808385\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"url\":\"https:\\/\\/t.co\\/rYMBkaPkQH\",\"display_url\":\"pic.twitter.com\\/rYMBkaPkQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539059573293061\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"4856\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554539013234692099,\"id_str\":\"1554539013234692099\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"url\":\"https:\\/\\/t.co\\/Y3LUJdpeAc\",\"display_url\":\"pic.twitter.com\\/Y3LUJdpeAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539019513495552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"4857\":{\"hashtags\":[{\"text\":\"aneketwins\",\"indices\":[223,234]},{\"text\":\"tuesdayvibe\",\"indices\":[235,247]},{\"text\":\"atwinsdesign\",\"indices\":[248,261]},{\"text\":\"Pelosi\",\"indices\":[262,269]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"atwinsdesigns\",\"name\":\"Atwinsdesigns\",\"id\":1147118077391360000,\"id_str\":\"1147118077391360000\",\"indices\":[208,222]}],\"urls\":[],\"media\":[{\"id\":1554538999016050692,\"id_str\":\"1554538999016050692\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"url\":\"https:\\/\\/t.co\\/ehyeapFYxO\",\"display_url\":\"pic.twitter.com\\/ehyeapFYxO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554539007748579328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":525,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":926,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":988,\"h\":1280,\"resize\":\"fit\"}}}]},\"4858\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538887204294658,\"id_str\":\"1554538887204294658\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"url\":\"https:\\/\\/t.co\\/LLtQNjQfnc\",\"display_url\":\"pic.twitter.com\\/LLtQNjQfnc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538894305234946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"4859\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[84,91]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[92,117]},{\"text\":\"BBNaija7\",\"indices\":[118,127]},{\"text\":\"YEEZYDAY\",\"indices\":[128,137]},{\"text\":\"ambode\",\"indices\":[138,145]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mickkycutz\",\"name\":\"adebanjo micheal\",\"id\":817531158,\"id_str\":\"817531158\",\"indices\":[18,29]}],\"urls\":[],\"media\":[{\"id\":1554538865230336001,\"id_str\":\"1554538865230336001\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"4860\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538793205743617,\"id_str\":\"1554538793205743617\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"url\":\"https:\\/\\/t.co\\/InPATnRTxc\",\"display_url\":\"pic.twitter.com\\/InPATnRTxc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538800491233280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4861\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"helicopter\",\"indices\":[112,123]},{\"text\":\"OBIdientlyYUSful\",\"indices\":[180,197]},{\"text\":\"Obidatti2023\",\"indices\":[199,212]},{\"text\":\"chatsekscerita\",\"indices\":[214,229]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4862\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[79,86]},{\"text\":\"China\",\"indices\":[258,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554538742010023937,\"id_str\":\"1554538742010023937\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"url\":\"https:\\/\\/t.co\\/vQBBaRizSE\",\"display_url\":\"pic.twitter.com\\/vQBBaRizSE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwazibruce\\/status\\/1554538774037667843\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1160,\"resize\":\"fit\"}}}]},\"4863\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538750205743104,\"id_str\":\"1554538750205743104\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"url\":\"https:\\/\\/t.co\\/8WGIbboap0\",\"display_url\":\"pic.twitter.com\\/8WGIbboap0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538758644580352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"4864\":{\"hashtags\":[{\"text\":\"shellanayourmate\",\"indices\":[126,143]},{\"text\":\"organicchemistry\",\"indices\":[144,161]},{\"text\":\"bbnaija\",\"indices\":[163,171]},{\"text\":\"Pelosi\",\"indices\":[172,179]},{\"text\":\"ASUU\",\"indices\":[180,185]},{\"text\":\"Omoagege\",\"indices\":[186,195]},{\"text\":\"WorldWarlll\",\"indices\":[196,208]},{\"text\":\"fabrizio\",\"indices\":[209,218]},{\"text\":\"machala\",\"indices\":[219,227]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ProfZulum\",\"name\":\"Prof. Babagana Umara Zulum\",\"id\":1046746450917543936,\"id_str\":\"1046746450917543936\",\"indices\":[27,37]}],\"urls\":[],\"media\":[{\"id\":1554538720321323008,\"id_str\":\"1554538720321323008\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"url\":\"https:\\/\\/t.co\\/IIJkhdS1Dw\",\"display_url\":\"pic.twitter.com\\/IIJkhdS1Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554538727535435776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"4865\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[126,133]},{\"text\":\"akure\",\"indices\":[134,140]},{\"text\":\"futa\",\"indices\":[186,191]},{\"text\":\"ondo\",\"indices\":[192,197]},{\"text\":\"tuesdayvibe\",\"indices\":[198,210]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"adeleye_temmie\",\"name\":\"IYALODE OF AKURE\",\"id\":814140653072420865,\"id_str\":\"814140653072420865\",\"indices\":[141,156]},{\"screen_name\":\"Akureevents\",\"name\":\"Akure Events \\ud83d\\udccd\",\"id\":1105981500875509760,\"id_str\":\"1105981500875509760\",\"indices\":[157,169]},{\"screen_name\":\"YemieFashMedia\",\"name\":\"YemieFash Media\",\"id\":199507109,\"id_str\":\"199507109\",\"indices\":[170,185]}],\"urls\":[],\"media\":[{\"id\":1554538627375550466,\"id_str\":\"1554538627375550466\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"url\":\"https:\\/\\/t.co\\/UYxgp6ZvVo\",\"display_url\":\"pic.twitter.com\\/UYxgp6ZvVo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bolireloaded\\/status\\/1554538715862765568\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":366,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":645,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":688,\"h\":1280,\"resize\":\"fit\"}}}]},\"4866\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[233,240]},{\"text\":\"YEEZYDAY\",\"indices\":[241,250]},{\"text\":\"tuesdayvibe\",\"indices\":[251,263]},{\"text\":\"helicopter\",\"indices\":[264,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zhrsZhD5PZ\",\"expanded_url\":\"https:\\/\\/flutterwave.com\\/store\\/bestxenonstores\",\"display_url\":\"flutterwave.com\\/store\\/bestxeno\\u2026\",\"indices\":[93,116]}],\"media\":[{\"id\":1554538686951395329,\"id_str\":\"1554538686951395329\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"url\":\"https:\\/\\/t.co\\/bVtPU0oPmE\",\"display_url\":\"pic.twitter.com\\/bVtPU0oPmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538696090714112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"4867\":{\"hashtags\":[{\"text\":\"lovedaminialbum\",\"indices\":[46,62]},{\"text\":\"sabinus\",\"indices\":[167,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[36,45]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[132,141]},{\"screen_name\":\"MI_Abaga\",\"name\":\"The Guy\",\"id\":50246444,\"id_str\":\"50246444\",\"indices\":[184,193]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[194,204]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[205,214]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[215,228]}],\"urls\":[],\"media\":[{\"id\":1554537760454737922,\"id_str\":\"1554537760454737922\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"url\":\"https:\\/\\/t.co\\/lYDHjtOK2B\",\"display_url\":\"pic.twitter.com\\/lYDHjtOK2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidmmhdMomoh\\/status\\/1554538271279128581\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4868\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[77,83]},{\"text\":\"SaheedBalogun\",\"indices\":[84,98]},{\"text\":\"Taiwan\",\"indices\":[99,106]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MTNNG\",\"name\":\"MTN Nigeria\",\"id\":69266428,\"id_str\":\"69266428\",\"indices\":[0,6]}],\"urls\":[],\"media\":[{\"id\":1554537620385972224,\"id_str\":\"1554537620385972224\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"url\":\"https:\\/\\/t.co\\/gmg5Y1glGZ\",\"display_url\":\"pic.twitter.com\\/gmg5Y1glGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Anya_Nyako2505\\/status\\/1554537633778483209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":532,\"resize\":\"fit\"}}}]},\"4869\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[33,40]},{\"text\":\"GreatReset\",\"indices\":[41,52]},{\"text\":\"greatestshowman\",\"indices\":[53,69]},{\"text\":\"greatcampbell\",\"indices\":[70,84]},{\"text\":\"champagnebaby\",\"indices\":[85,99]},{\"text\":\"drake\",\"indices\":[100,106]},{\"text\":\"30bg\",\"indices\":[107,112]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4870\":{\"hashtags\":[{\"text\":\"Hosmer\",\"indices\":[93,100]},{\"text\":\"Padres\",\"indices\":[101,108]},{\"text\":\"Nats\",\"indices\":[109,114]},{\"text\":\"Taiwan\",\"indices\":[115,122]},{\"text\":\"Dolphins\",\"indices\":[123,132]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6fBkKNGnJu\",\"expanded_url\":\"https:\\/\\/jokoshq.com\\/how-to-invest-in-a-food-truck-tips-for-getting-started\\/\",\"display_url\":\"jokoshq.com\\/how-to-invest-\\u2026\",\"indices\":[69,92]}],\"media\":[{\"id\":1554536731394785280,\"id_str\":\"1554536731394785280\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"url\":\"https:\\/\\/t.co\\/9lwlUKtDZw\",\"display_url\":\"pic.twitter.com\\/9lwlUKtDZw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnfromjokoshq\\/status\\/1554536733772984325\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":854,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":801,\"resize\":\"fit\"}}}]},\"4871\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[116,123]},{\"text\":\"Lekki\",\"indices\":[124,130]},{\"text\":\"helicopter\",\"indices\":[145,156]},{\"text\":\"Taiwan\",\"indices\":[157,164]},{\"text\":\"Pelosi\",\"indices\":[172,179]},{\"text\":\"China\",\"indices\":[180,186]},{\"text\":\"Obidatti023\",\"indices\":[236,248]},{\"text\":\"XiJinping\",\"indices\":[263,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4872\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[28,40]},{\"text\":\"Taipei\",\"indices\":[41,48]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[57,75]},{\"text\":\"China\",\"indices\":[76,82]},{\"text\":\"pelositaiwan\",\"indices\":[83,96]},{\"text\":\"Taiwan\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554533563248558080,\"id_str\":\"1554533563248558080\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"url\":\"https:\\/\\/t.co\\/s8EVHXHeQu\",\"display_url\":\"pic.twitter.com\\/s8EVHXHeQu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554535866445402112\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":560,\"resize\":\"fit\"}}}]},\"4873\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[60,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"tuesdayvibe\",\"indices\":[75,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554534881459306496,\"id_str\":\"1554534881459306496\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"url\":\"https:\\/\\/t.co\\/xwkwF6pzK4\",\"display_url\":\"pic.twitter.com\\/xwkwF6pzK4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/malltallerny\\/status\\/1554535404321251331\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}}}]},\"4874\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[278,285]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4875\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[35,41]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4876\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[98,105]},{\"text\":\"Taiwan\",\"indices\":[106,113]},{\"text\":\"chatsekscerita\",\"indices\":[114,129]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wtpnigeria\",\"name\":\"We The People\",\"id\":910507806175956992,\"id_str\":\"910507806175956992\",\"indices\":[85,96]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Rzn4pbYszl\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3PD2jXj\",\"display_url\":\"bit.ly\\/3PD2jXj\",\"indices\":[48,71]}],\"media\":[{\"id\":1554534144243388417,\"id_str\":\"1554534144243388417\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"url\":\"https:\\/\\/t.co\\/XLK8mXSAGJ\",\"display_url\":\"pic.twitter.com\\/XLK8mXSAGJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PHChurchgirl\\/status\\/1554534153915359234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"}}}]},\"4877\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[65,72]},{\"text\":\"chatsekscerita\",\"indices\":[73,88]},{\"text\":\"helicopter\",\"indices\":[89,100]},{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"JACKSONWANGxCartierTH\",\"indices\":[109,131]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[132,150]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554533707033214976,\"id_str\":\"1554533707033214976\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"url\":\"https:\\/\\/t.co\\/m71TwAoEWS\",\"display_url\":\"pic.twitter.com\\/m71TwAoEWS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kosisochukw_\\/status\\/1554533761794072582\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"},\"medium\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"}}}]},\"4878\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[128,139]},{\"text\":\"Taiwan\",\"indices\":[141,148]},{\"text\":\"Pelosi\",\"indices\":[150,157]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[159,177]},{\"text\":\"Tinubu\",\"indices\":[226,233]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532757677776898,\"id_str\":\"1554532757677776898\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"url\":\"https:\\/\\/t.co\\/hR4kZxxeQH\",\"display_url\":\"pic.twitter.com\\/hR4kZxxeQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532762673111045\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":610,\"h\":480,\"resize\":\"fit\"}}}]},\"4879\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[123,141]},{\"text\":\"Tinubu\",\"indices\":[190,197]},{\"text\":\"Lekki\",\"indices\":[230,236]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[238,246]},{\"text\":\"chatsekscerita\",\"indices\":[248,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532260363247616,\"id_str\":\"1554532260363247616\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"url\":\"https:\\/\\/t.co\\/rOWH1F4sUj\",\"display_url\":\"pic.twitter.com\\/rOWH1F4sUj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532268265377798\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":718,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":678,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":718,\"resize\":\"fit\"}}}]},\"4880\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[92,103]},{\"text\":\"Taiwan\",\"indices\":[105,112]},{\"text\":\"Pelosi\",\"indices\":[114,121]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[123,141]},{\"text\":\"Tinubu\",\"indices\":[190,197]},{\"text\":\"Lekki\",\"indices\":[230,236]},{\"text\":\"WizKid\\ud80c\\udcf5\",\"indices\":[238,246]},{\"text\":\"chatsekscerita\",\"indices\":[248,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554532215308140545,\"id_str\":\"1554532215308140545\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"url\":\"https:\\/\\/t.co\\/4gnSBIXGVm\",\"display_url\":\"pic.twitter.com\\/4gnSBIXGVm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532226620178433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":719,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":719,\"resize\":\"fit\"}}}]},\"4881\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[129,137]},{\"text\":\"Wizkid\",\"indices\":[138,145]},{\"text\":\"Taiwan\",\"indices\":[146,153]},{\"text\":\"samkwe\",\"indices\":[154,161]},{\"text\":\"ToyinAbrahamkiddies\",\"indices\":[260,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554530182576455680,\"id_str\":\"1554530182576455680\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}}]},\"4882\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]},{\"text\":\"Pelosi\",\"indices\":[68,75]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[76,83]},{\"text\":\"BBNajiaS7\",\"indices\":[84,94]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/85u9VNvn5s\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[95,118]}]},\"4883\":{\"hashtags\":[{\"text\":\"Lekki\",\"indices\":[5,11]},{\"text\":\"Yorubas\",\"indices\":[88,96]},{\"text\":\"yoruba\",\"indices\":[99,106]},{\"text\":\"igbos\",\"indices\":[120,126]},{\"text\":\"North\",\"indices\":[140,146]},{\"text\":\"OBIDIENTS\",\"indices\":[239,249]},{\"text\":\"IPOB\",\"indices\":[252,257]},{\"text\":\"Reno\",\"indices\":[260,265]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554528751584681985,\"id_str\":\"1554528751584681985\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"url\":\"https:\\/\\/t.co\\/psWDUaimY4\",\"display_url\":\"pic.twitter.com\\/psWDUaimY4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PreciousP001\\/status\\/1554528762456379392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":625,\"resize\":\"fit\"}}}]},\"4884\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[98,105]},{\"text\":\"WorldWarIII\",\"indices\":[106,118]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SavvyRinu\",\"name\":\"Rinu Oduala \\ud83d\\udd25\\ud83d\\udd2b\",\"id\":991043283534139392,\"id_str\":\"991043283534139392\",\"indices\":[73,83]},{\"screen_name\":\"PeterPsquare\",\"name\":\"Peter Okoye MrP\",\"id\":47033057,\"id_str\":\"47033057\",\"indices\":[84,97]}],\"urls\":[],\"media\":[{\"id\":1554528584324288513,\"id_str\":\"1554528584324288513\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"url\":\"https:\\/\\/t.co\\/8bsqiolcDu\",\"display_url\":\"pic.twitter.com\\/8bsqiolcDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kenneth51428693\\/status\\/1554528652737536000\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":426,\"resize\":\"fit\"}}}]},\"4885\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[53,60]},{\"text\":\"Taiwan\",\"indices\":[61,68]},{\"text\":\"Pelosi\",\"indices\":[69,76]},{\"text\":\"China\",\"indices\":[77,83]},{\"text\":\"USA\",\"indices\":[84,88]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tqxgegF4it\",\"expanded_url\":\"https:\\/\\/iexclusivenews.com.ng\\/nancy-pelosi-lands-in-taiwan-amid-u-s-china-tension\\/\",\"display_url\":\"iexclusivenews.com.ng\\/nancy-pelosi-l\\u2026\",\"indices\":[89,112]}]},\"4886\":{\"hashtags\":[{\"text\":\"WW3\",\"indices\":[174,178]},{\"text\":\"WWIII\",\"indices\":[179,185]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4887\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"Pelosi\",\"indices\":[64,71]},{\"text\":\"China\",\"indices\":[72,78]},{\"text\":\"helicopter\",\"indices\":[79,90]},{\"text\":\"tuesdayvibe\",\"indices\":[91,103]},{\"text\":\"tuesdayvibe\",\"indices\":[104,116]},{\"text\":\"chatsekscerita\",\"indices\":[117,132]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[133,140]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[141,166]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[167,185]},{\"text\":\"GoldMedal\",\"indices\":[186,196]},{\"text\":\"\\u062d\\u0645\\u064a\\u062f\\u0627\\u0646_\\u0627\\u0644\\u062a\\u0631\\u0643\\u064a\",\"indices\":[197,211]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[212,237]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[238,256]},{\"text\":\"GoldMedal\",\"indices\":[257,267]},{\"text\":\"Prabhas\",\"indices\":[268,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554527735808139264,\"id_str\":\"1554527735808139264\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"url\":\"https:\\/\\/t.co\\/bcawOh7ghe\",\"display_url\":\"pic.twitter.com\\/bcawOh7ghe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Young_X391\\/status\\/1554527789856051200\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4888\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[101,108]},{\"text\":\"BigBrotherNaijaS7\",\"indices\":[109,127]},{\"text\":\"ASUU\",\"indices\":[128,133]},{\"text\":\"BigBrotherNaija\",\"indices\":[134,150]},{\"text\":\"Rufai\",\"indices\":[151,157]},{\"text\":\"Ilebaye\",\"indices\":[158,166]},{\"text\":\"tuesdayvibe\",\"indices\":[167,179]},{\"text\":\"saheedbalogun\",\"indices\":[180,194]},{\"text\":\"PeterObi4President\",\"indices\":[195,214]},{\"text\":\"tinubu\",\"indices\":[215,222]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Omah_Lay\",\"name\":\"Omah Lay\",\"id\":1114311810,\"id_str\":\"1114311810\",\"indices\":[26,35]}],\"urls\":[],\"media\":[{\"id\":1554526808661524481,\"id_str\":\"1554526808661524481\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"url\":\"https:\\/\\/t.co\\/1XSoCGB8rM\",\"display_url\":\"pic.twitter.com\\/1XSoCGB8rM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bettyshairven\\/status\\/1554527634888982532\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4889\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554526455593312259,\"id_str\":\"1554526455593312259\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"url\":\"https:\\/\\/t.co\\/b6J542Frck\",\"display_url\":\"pic.twitter.com\\/b6J542Frck\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554526464267227136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"4890\":{\"hashtags\":[{\"text\":\"Crypto\",\"indices\":[0,7]},{\"text\":\"Bitcoin\",\"indices\":[64,72]},{\"text\":\"Taiwan\",\"indices\":[73,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4891\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[17,28]},{\"text\":\"Taiwan\",\"indices\":[29,36]},{\"text\":\"WWIII\",\"indices\":[37,43]},{\"text\":\"tuesdayvibe\",\"indices\":[44,56]},{\"text\":\"BBNajiaS7\",\"indices\":[57,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554524957996187648,\"id_str\":\"1554524957996187648\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"4892\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[238,245]},{\"text\":\"ASUUstrike\",\"indices\":[246,257]},{\"text\":\"ASUU\",\"indices\":[258,263]},{\"text\":\"WWIII\",\"indices\":[264,270]},{\"text\":\"Pelosi\",\"indices\":[271,278]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4893\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[108,115]},{\"text\":\"helicopter\",\"indices\":[116,127]},{\"text\":\"tuesdayvibe\",\"indices\":[128,140]},{\"text\":\"GoldMedal\",\"indices\":[141,151]},{\"text\":\"ISAC2022\",\"indices\":[152,161]},{\"text\":\"Pelosi\",\"indices\":[162,169]},{\"text\":\"Trending\",\"indices\":[170,179]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Naija_PR\",\"name\":\"Naija\",\"id\":1901298962,\"id_str\":\"1901298962\",\"indices\":[71,80]},{\"screen_name\":\"KraksTV\",\"name\":\"www.KRAKS.co\",\"id\":3457791256,\"id_str\":\"3457791256\",\"indices\":[81,89]},{\"screen_name\":\"yabaleftonline\",\"name\":\"YabaLeftOnline\",\"id\":769214965,\"id_str\":\"769214965\",\"indices\":[90,105]}],\"urls\":[],\"media\":[{\"id\":1554524327487438849,\"id_str\":\"1554524327487438849\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"url\":\"https:\\/\\/t.co\\/PKOrCb2wOK\",\"display_url\":\"pic.twitter.com\\/PKOrCb2wOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trylips\\/status\\/1554524433955569664\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}}}]},\"4894\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[140,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4895\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[77,84]},{\"text\":\"helicopter\",\"indices\":[85,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4896\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]},{\"text\":\"China\",\"indices\":[74,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4897\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[243,250]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GfSa10O7eC\",\"expanded_url\":\"http:\\/\\/Sproutaits.com\",\"display_url\":\"Sproutaits.com\",\"indices\":[179,202]}],\"media\":[{\"id\":1554523021251158016,\"id_str\":\"1554523021251158016\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4898\":{\"hashtags\":[{\"text\":\"PiNetworkUpdates\",\"indices\":[177,194]},{\"text\":\"Pinetwork\",\"indices\":[196,206]},{\"text\":\"Pionners\",\"indices\":[207,216]},{\"text\":\"Taiwan\",\"indices\":[217,224]},{\"text\":\"Stopsellingpi\",\"indices\":[226,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4899\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[211,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521789283311616,\"id_str\":\"1554521789283311616\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"url\":\"https:\\/\\/t.co\\/1CoGL7BvNu\",\"display_url\":\"pic.twitter.com\\/1CoGL7BvNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521869461618688\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4900\":{\"hashtags\":[{\"text\":\"Lekki\",\"indices\":[67,73]},{\"text\":\"helicopter\",\"indices\":[80,91]},{\"text\":\"Taiwan\",\"indices\":[100,107]},{\"text\":\"Pelosi\",\"indices\":[108,115]},{\"text\":\"China\",\"indices\":[116,122]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521594877419520,\"id_str\":\"1554521594877419520\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"url\":\"https:\\/\\/t.co\\/ciSc0yx3ED\",\"display_url\":\"pic.twitter.com\\/ciSc0yx3ED\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danielgbenda\\/status\\/1554521604608196614\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":867,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":867,\"resize\":\"fit\"}}}]},\"4901\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[186,193]},{\"text\":\"Taiwan\",\"indices\":[196,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"\\u062a\\u0627\\u064a\\u0648\\u0627\\u0646\",\"indices\":[211,218]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554521082723553280,\"id_str\":\"1554521082723553280\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"url\":\"https:\\/\\/t.co\\/DCUApG0DFj\",\"display_url\":\"pic.twitter.com\\/DCUApG0DFj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521163749023744\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4902\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[39,46]},{\"text\":\"China\",\"indices\":[47,53]},{\"text\":\"tuesdayvibe\",\"indices\":[54,66]},{\"text\":\"art\",\"indices\":[67,71]},{\"text\":\"artists\",\"indices\":[72,80]},{\"text\":\"Pencildrawing\",\"indices\":[81,95]},{\"text\":\"pencilsketch\",\"indices\":[96,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"m_ekeonuoha\",\"name\":\"SonnetArts\",\"id\":818212912389124096,\"id_str\":\"818212912389124096\",\"indices\":[110,122]},{\"screen_name\":\"abramopex1\",\"name\":\"NFT Collector and Artist \\ud83c\\udfa8\\ud83c\\udde8\\ud83c\\udde6\\ud83c\\uddf3\\ud83c\\uddec\",\"id\":1379216766,\"id_str\":\"1379216766\",\"indices\":[123,134]},{\"screen_name\":\"DrawsLa\",\"name\":\"LA Draws\",\"id\":1064423207829155840,\"id_str\":\"1064423207829155840\",\"indices\":[135,143]},{\"screen_name\":\"penpencildraw\",\"name\":\"PenPencilDraw\",\"id\":1243121140542791680,\"id_str\":\"1243121140542791680\",\"indices\":[144,158]}],\"urls\":[],\"media\":[{\"id\":1554520486616436736,\"id_str\":\"1554520486616436736\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"url\":\"https:\\/\\/t.co\\/aihFMPNCZb\",\"display_url\":\"pic.twitter.com\\/aihFMPNCZb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/okeey_m\\/status\\/1554520500147200000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4903\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[89,96]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554520292889968641,\"id_str\":\"1554520292889968641\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"url\":\"https:\\/\\/t.co\\/7jOk7acoqF\",\"display_url\":\"pic.twitter.com\\/7jOk7acoqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uglyyorubadboy\\/status\\/1554520489074327552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"4904\":{\"hashtags\":[{\"text\":\"CFC\",\"indices\":[112,116]},{\"text\":\"football\",\"indices\":[133,142]},{\"text\":\"CharlotteXRica\",\"indices\":[143,158]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[159,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]},{\"text\":\"GoldMedal\",\"indices\":[193,203]},{\"text\":\"China\",\"indices\":[204,210]},{\"text\":\"Taiwan\",\"indices\":[211,218]},{\"text\":\"tuesdayvibe\",\"indices\":[219,231]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FabrizioRomano\",\"name\":\"Fabrizio Romano\",\"id\":330262748,\"id_str\":\"330262748\",\"indices\":[117,132]}],\"urls\":[],\"media\":[{\"id\":1554520323831259136,\"id_str\":\"1554520323831259136\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoTNCbIJln\",\"display_url\":\"pic.twitter.com\\/ZoTNCbIJln\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AnthonySneh\\/status\\/1554520326926655490\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":495,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4905\":{\"hashtags\":[{\"text\":\"GoldMedal\",\"indices\":[83,93]},{\"text\":\"Pelosi\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4906\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"helicopter\",\"indices\":[177,188]},{\"text\":\"tuesdayvibe\",\"indices\":[189,201]},{\"text\":\"China\",\"indices\":[202,208]},{\"text\":\"Pelosi\",\"indices\":[209,216]},{\"text\":\"ISAC2022\",\"indices\":[217,226]},{\"text\":\"GoldMedal\",\"indices\":[227,237]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554519402061742081,\"id_str\":\"1554519402061742081\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4907\":{\"hashtags\":[{\"text\":\"Chinese\",\"indices\":[13,21]},{\"text\":\"NancyPelosi\",\"indices\":[94,106]},{\"text\":\"Taipei\",\"indices\":[107,114]},{\"text\":\"Pelosi\",\"indices\":[115,122]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[123,141]},{\"text\":\"China\",\"indices\":[142,148]},{\"text\":\"pelositaiwan\",\"indices\":[149,162]},{\"text\":\"Taiwan\",\"indices\":[163,170]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4908\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[110,117]},{\"text\":\"Taiwan\",\"indices\":[118,125]},{\"text\":\"China\",\"indices\":[126,132]},{\"text\":\"Liveupdates\",\"indices\":[133,145]},{\"text\":\"USA\",\"indices\":[146,150]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[151,169]},{\"text\":\"NancyPelosi\",\"indices\":[170,182]},{\"text\":\"Biden\",\"indices\":[183,189]},{\"text\":\"XiJinping\",\"indices\":[190,200]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554519161811996674,\"id_str\":\"1554519161811996674\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"url\":\"https:\\/\\/t.co\\/4ywqop01W7\",\"display_url\":\"pic.twitter.com\\/4ywqop01W7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554519169512660994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"4909\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[139,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"helicopter\",\"indices\":[155,166]},{\"text\":\"China\",\"indices\":[167,173]},{\"text\":\"tuesdayvibe\",\"indices\":[174,186]},{\"text\":\"chatsekscerita\",\"indices\":[187,202]},{\"text\":\"ISAC2022\",\"indices\":[203,212]},{\"text\":\"GoldMedal\",\"indices\":[213,223]},{\"text\":\"Prabhas\",\"indices\":[224,232]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[233,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4910\":{\"hashtags\":[{\"text\":\"phynaamaka\",\"indices\":[16,27]},{\"text\":\"phyna\",\"indices\":[28,34]},{\"text\":\"amaka\",\"indices\":[35,41]},{\"text\":\"BigBrother\",\"indices\":[42,53]},{\"text\":\"bigbrother24\",\"indices\":[54,67]},{\"text\":\"BB24\",\"indices\":[68,73]},{\"text\":\"Trending\",\"indices\":[74,83]},{\"text\":\"Pelosi\",\"indices\":[84,91]},{\"text\":\"China\",\"indices\":[92,98]},{\"text\":\"\\u0e21\\u0e32\\u0e01\\u0e2d\\u0e14\\u0e01\\u0e31\\u0e19\\u0e19\\u0e30\\u0e0b\\u0e35\\u0e1e\\u0e24\\u0e01\\u0e29\\u0e4c\",\"indices\":[99,117]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554518257213837313,\"id_str\":\"1554518257213837313\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"url\":\"https:\\/\\/t.co\\/bGUuuACmdc\",\"display_url\":\"pic.twitter.com\\/bGUuuACmdc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Creativeprimez\\/status\\/1554518265938026503\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4911\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[17,24]},{\"text\":\"tuesdayvibe\",\"indices\":[25,37]},{\"text\":\"GoldMedal\",\"indices\":[38,48]},{\"text\":\"industrialdesign\",\"indices\":[49,66]},{\"text\":\"Internshipopportunity\",\"indices\":[67,89]},{\"text\":\"conceptart\",\"indices\":[90,101]},{\"text\":\"productdesign\",\"indices\":[102,116]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[117,135]},{\"text\":\"designer\",\"indices\":[136,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554517448593997825,\"id_str\":\"1554517448593997825\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4912\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[159,166]},{\"text\":\"BBNaija\",\"indices\":[167,175]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CCSoludo\",\"name\":\"Chukwuma Charles SOLUDO\",\"id\":1038847045249978368,\"id_str\":\"1038847045249978368\",\"indices\":[149,158]}],\"urls\":[],\"media\":[{\"id\":1554516435765977092,\"id_str\":\"1554516435765977092\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"url\":\"https:\\/\\/t.co\\/tiD2f47UBX\",\"display_url\":\"pic.twitter.com\\/tiD2f47UBX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amSirkings\\/status\\/1554517312392368131\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":412,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":412,\"resize\":\"fit\"}}}]},\"4913\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[129,136]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"Tinubu\",\"indices\":[145,152]},{\"text\":\"China\",\"indices\":[153,159]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554516469114982401,\"id_str\":\"1554516469114982401\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"url\":\"https:\\/\\/t.co\\/lcVoMynzKS\",\"display_url\":\"pic.twitter.com\\/lcVoMynzKS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dadadavidob\\/status\\/1554516660421365762\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4914\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[173,184]},{\"text\":\"taiwan\",\"indices\":[185,192]},{\"text\":\"WorldWar3\",\"indices\":[193,203]},{\"text\":\"PeterObi4President2023\",\"indices\":[204,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4915\":{\"hashtags\":[{\"text\":\"hausas\",\"indices\":[74,81]},{\"text\":\"SamOmatseye\",\"indices\":[82,94]},{\"text\":\"worldwarlll\",\"indices\":[95,107]},{\"text\":\"XiJinping\",\"indices\":[108,118]},{\"text\":\"CaridadCharityFoundation\",\"indices\":[119,144]},{\"text\":\"Tinubu\",\"indices\":[145,152]},{\"text\":\"Russia\",\"indices\":[153,160]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554516297483960320,\"id_str\":\"1554516297483960320\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4916\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[122,129]},{\"text\":\"Pelosi\",\"indices\":[130,137]},{\"text\":\"China\",\"indices\":[138,144]},{\"text\":\"dontpayuk\",\"indices\":[145,155]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[156,174]},{\"text\":\"BORNPINK\",\"indices\":[175,184]},{\"text\":\"helicopter\",\"indices\":[185,196]},{\"text\":\"tuesdayvibe\",\"indices\":[197,209]},{\"text\":\"bachelorette\",\"indices\":[210,223]},{\"text\":\"GoldMedal\",\"indices\":[224,234]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wrBwXCBU1g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Eminitybaba_\\/status\\/1554011432055865344\",\"display_url\":\"twitter.com\\/Eminitybaba_\\/s\\u2026\",\"indices\":[235,258]}]},\"4917\":{\"hashtags\":[{\"text\":\"Deborah\",\"indices\":[0,8]},{\"text\":\"helicopter\",\"indices\":[130,141]},{\"text\":\"WorldWarIII\",\"indices\":[151,163]},{\"text\":\"Tinubu\",\"indices\":[177,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]},{\"text\":\"China\",\"indices\":[193,199]},{\"text\":\"Terrorists\",\"indices\":[200,211]},{\"text\":\"Rufai\",\"indices\":[212,218]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[219,236]},{\"text\":\"BBNaija\",\"indices\":[237,245]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Qxsyz1y71O\",\"expanded_url\":\"https:\\/\\/lagoseyemedia.wordpress.com\\/2022\\/08\\/02\\/deborah-gov-tambuwal-receives-unrest-investigation-report-considers-reopening-college-lagos-eye-news\\/\",\"display_url\":\"lagoseyemedia.wordpress.com\\/2022\\/08\\/02\\/deb\\u2026\",\"indices\":[105,128]}]},\"4918\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[75,82]},{\"text\":\"China\",\"indices\":[117,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4919\":{\"hashtags\":[{\"text\":\"GraphicDesigner\",\"indices\":[235,251]},{\"text\":\"graphicdesign\",\"indices\":[252,266]},{\"text\":\"Taiwan\",\"indices\":[267,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554515405439369216,\"id_str\":\"1554515405439369216\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"url\":\"https:\\/\\/t.co\\/zn57X39Cdp\",\"display_url\":\"pic.twitter.com\\/zn57X39Cdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554515408891305984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4920\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[97,104]},{\"text\":\"Pelosi\",\"indices\":[105,112]},{\"text\":\"China\",\"indices\":[113,119]},{\"text\":\"dontpayuk\",\"indices\":[120,130]},{\"text\":\"tuesdayvibe\",\"indices\":[131,143]},{\"text\":\"assu\",\"indices\":[144,149]},{\"text\":\"GoldMedal\",\"indices\":[150,160]},{\"text\":\"Nigeria\",\"indices\":[161,169]},{\"text\":\"helicopter\",\"indices\":[170,181]},{\"text\":\"BORNPINK\",\"indices\":[182,191]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZVrecl12Br\",\"expanded_url\":\"https:\\/\\/hit-game.com?referrerid=9RR2F67U1AF\",\"display_url\":\"hit-game.com\\/?referrerid=9R\\u2026\",\"indices\":[72,95]}]},\"4921\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[81,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554514934259646465,\"id_str\":\"1554514934259646465\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"url\":\"https:\\/\\/t.co\\/IGfPS2hgII\",\"display_url\":\"pic.twitter.com\\/IGfPS2hgII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/posh_emperor\\/status\\/1554514940857401344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"},\"medium\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"}}}]},\"4922\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[211,218]},{\"text\":\"NancyPelosi\",\"indices\":[219,231]},{\"text\":\"China\",\"indices\":[232,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]},{\"text\":\"USTaiwan\",\"indices\":[247,256]},{\"text\":\"WorldWar3\",\"indices\":[257,267]},{\"text\":\"ChinaTaiwan\",\"indices\":[268,280]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554514575684411394,\"id_str\":\"1554514575684411394\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"url\":\"https:\\/\\/t.co\\/ez1KF3TssA\",\"display_url\":\"pic.twitter.com\\/ez1KF3TssA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554514586954596353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"4923\":{\"hashtags\":[{\"text\":\"LevelUp\",\"indices\":[48,56]},{\"text\":\"Giveaway\",\"indices\":[57,66]},{\"text\":\"Taiwan\",\"indices\":[67,74]},{\"text\":\"China\",\"indices\":[75,81]},{\"text\":\"Pelosi\",\"indices\":[82,89]},{\"text\":\"food\",\"indices\":[90,95]},{\"text\":\"dontpayuk\",\"indices\":[96,106]},{\"text\":\"lagos\",\"indices\":[107,113]},{\"text\":\"August2022\",\"indices\":[114,125]},{\"text\":\"helicopter\",\"indices\":[126,137]},{\"text\":\"tuesdayvibe\",\"indices\":[138,150]},{\"text\":\"GoldMedal\",\"indices\":[151,161]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\\ud574\",\"indices\":[162,180]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554514242648346626,\"id_str\":\"1554514242648346626\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"url\":\"https:\\/\\/t.co\\/yY9KxsoIA6\",\"display_url\":\"pic.twitter.com\\/yY9KxsoIA6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WumiAnu\\/status\\/1554514249975828480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4924\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[49,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SkyNews\",\"name\":\"Sky News\",\"id\":7587032,\"id_str\":\"7587032\",\"indices\":[0,8]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[25,48]}]},\"4925\":{\"hashtags\":[{\"text\":\"Obidatti023\",\"indices\":[122,134]},{\"text\":\"Taiwan\",\"indices\":[135,142]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4926\":{\"hashtags\":[{\"text\":\"adobeillustrator\",\"indices\":[85,102]},{\"text\":\"Adobe\",\"indices\":[103,109]},{\"text\":\"wallpaperdesign\",\"indices\":[110,126]},{\"text\":\"Taiwan\",\"indices\":[127,134]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ApxYMDpYbH\",\"expanded_url\":\"https:\\/\\/cutt.ly\\/KZRiKdH\",\"display_url\":\"cutt.ly\\/KZRiKdH\",\"indices\":[60,83]}],\"media\":[{\"id\":1554512105172246534,\"id_str\":\"1554512105172246534\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"url\":\"https:\\/\\/t.co\\/GT2cRzGWjm\",\"display_url\":\"pic.twitter.com\\/GT2cRzGWjm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554512107630116864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4927\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[74,81]},{\"text\":\"China\",\"indices\":[94,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511966923784192,\"id_str\":\"1554511966923784192\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":772,\"h\":679,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":772,\"h\":679,\"resize\":\"fit\"}}}]},\"4928\":{\"hashtags\":[{\"text\":\"helicopter\",\"indices\":[113,124]},{\"text\":\"WorldWarIII\",\"indices\":[134,146]},{\"text\":\"Tinubu\",\"indices\":[160,167]},{\"text\":\"Taiwan\",\"indices\":[168,175]},{\"text\":\"China\",\"indices\":[176,182]},{\"text\":\"Terrorists\",\"indices\":[183,194]},{\"text\":\"Rufai\",\"indices\":[195,201]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511934954905601,\"id_str\":\"1554511934954905601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"url\":\"https:\\/\\/t.co\\/UORpoe3ZY2\",\"display_url\":\"pic.twitter.com\\/UORpoe3ZY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554511937723146242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4929\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[32,42]},{\"text\":\"Taipei\",\"indices\":[43,50]},{\"text\":\"WWIII\",\"indices\":[51,57]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554511236750274560,\"id_str\":\"1554511236750274560\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"url\":\"https:\\/\\/t.co\\/GJ1GzU7jGV\",\"display_url\":\"pic.twitter.com\\/GJ1GzU7jGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554511554326179840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":908,\"h\":443,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":908,\"h\":443,\"resize\":\"fit\"}}}]},\"4930\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[102,108]},{\"text\":\"Pelosi\",\"indices\":[109,116]},{\"text\":\"Taiwan\",\"indices\":[117,124]},{\"text\":\"\\uc601\\uc6d0\\ud55c\\ucc28\\uc77c\\ub4dc_\\uc6b0\\ub9ac\\ub9c8\\ud06c_\\uc0dd\\uc77c\\ucd95\\ud558\",\"indices\":[125,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[0,12]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[14,24]},{\"screen_name\":\"wizkidfc_\",\"name\":\"Wizkid FC\",\"id\":781048616064585728,\"id_str\":\"781048616064585728\",\"indices\":[25,35]},{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[78,90]}],\"urls\":[],\"media\":[{\"id\":1554510572514844673,\"id_str\":\"1554510572514844673\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"url\":\"https:\\/\\/t.co\\/QV20BAgK9G\",\"display_url\":\"pic.twitter.com\\/QV20BAgK9G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RankingSmoothy\\/status\\/1554510730334011399\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":656,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":700,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"}}}]},\"4931\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[79,91]},{\"text\":\"Taipei\",\"indices\":[92,99]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[108,126]},{\"text\":\"China\",\"indices\":[127,133]},{\"text\":\"pelositaiwan\",\"indices\":[134,147]},{\"text\":\"Taiwan\",\"indices\":[148,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554509791514738688,\"id_str\":\"1554509791514738688\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"url\":\"https:\\/\\/t.co\\/P2uLzsGYPc\",\"display_url\":\"pic.twitter.com\\/P2uLzsGYPc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554509836968427521\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":336,\"resize\":\"fit\"}}}]},\"4932\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[104,111]},{\"text\":\"PeterObi4President2023\",\"indices\":[112,135]},{\"text\":\"Obidatti023\",\"indices\":[136,148]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4933\":{\"hashtags\":[{\"text\":\"tuesdaymotivations\",\"indices\":[127,146]},{\"text\":\"tuesdayvibe\",\"indices\":[147,159]},{\"text\":\"LOONAinLA\",\"indices\":[160,170]},{\"text\":\"ProvamedxGulf\",\"indices\":[171,185]},{\"text\":\"Guerrilla1stWin\",\"indices\":[186,202]},{\"text\":\"ENGGER\",\"indices\":[203,210]},{\"text\":\"AlQaeda\",\"indices\":[211,219]},{\"text\":\"abstorm\",\"indices\":[220,228]},{\"text\":\"ISAC2022\",\"indices\":[229,238]},{\"text\":\"Taiwan\",\"indices\":[239,246]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"sure_odds11\",\"name\":\"\\ud83d\\udd1eSURE WINNING \\u26bd FIXED MATCH PLATFORM \\ud83d\\udcb0\",\"id\":1522975092359184385,\"id_str\":\"1522975092359184385\",\"indices\":[87,99]}],\"urls\":[],\"media\":[{\"id\":1554509721264160769,\"id_str\":\"1554509721264160769\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"4934\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[36,43]},{\"text\":\"China\",\"indices\":[44,50]},{\"text\":\"NewProfilePic\",\"indices\":[51,65]},{\"text\":\"massageinRiyadh\",\"indices\":[66,82]},{\"text\":\"massage_vip_riyadh\",\"indices\":[83,102]},{\"text\":\"realestate\",\"indices\":[103,114]},{\"text\":\"TikTok\",\"indices\":[115,122]},{\"text\":\"Hi\",\"indices\":[123,126]},{\"text\":\"Padres\",\"indices\":[127,134]},{\"text\":\"thatsmoney\",\"indices\":[135,146]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554509469513650181,\"id_str\":\"1554509469513650181\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"url\":\"https:\\/\\/t.co\\/MoJu2j7Qas\",\"display_url\":\"pic.twitter.com\\/MoJu2j7Qas\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ryder07575428\\/status\\/1554509479911346176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"medium\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4935\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[228,234]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ILRUSSO1\",\"name\":\"\\ud83c\\uddf7\\ud83c\\uddfaThe man who saved the world\\ud83c\\uddf7\\ud83c\\uddfa\",\"id\":1508382160494944259,\"id_str\":\"1508382160494944259\",\"indices\":[0,9]}],\"urls\":[]},\"4936\":{\"hashtags\":[{\"text\":\"BeautyWithBrains\",\"indices\":[63,80]},{\"text\":\"cubana\",\"indices\":[82,89]},{\"text\":\"Tinubu\",\"indices\":[91,98]},{\"text\":\"Pelosi\",\"indices\":[100,107]},{\"text\":\"Taiwan\",\"indices\":[109,116]},{\"text\":\"China\",\"indices\":[118,124]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554508205828489216,\"id_str\":\"1554508205828489216\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"url\":\"https:\\/\\/t.co\\/7RaExlFZdy\",\"display_url\":\"pic.twitter.com\\/7RaExlFZdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554508215945142273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4937\":{\"hashtags\":[{\"text\":\"NewNFTProfilePic\",\"indices\":[0,17]},{\"text\":\"NFTCommmunity\",\"indices\":[97,111]},{\"text\":\"NFTMintAlert\",\"indices\":[112,125]},{\"text\":\"Pelosi\",\"indices\":[126,133]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AsyncArt\",\"name\":\"Async Art\",\"id\":1197673655473324033,\"id_str\":\"1197673655473324033\",\"indices\":[29,38]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPai9pIu8o\",\"expanded_url\":\"https:\\/\\/async.art\\/blueprints\\/627a896ef5760657969a28d7\\/spicyshrimptaco-buffalo-book-club\",\"display_url\":\"async.art\\/blueprints\\/627\\u2026\",\"indices\":[73,96]}],\"media\":[{\"id\":1554507682463334402,\"id_str\":\"1554507682463334402\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"url\":\"https:\\/\\/t.co\\/X7gsur3N0k\",\"display_url\":\"pic.twitter.com\\/X7gsur3N0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hodlzilla\\/status\\/1554507686431150081\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}}]},\"4938\":{\"hashtags\":[{\"text\":\"FYP\",\"indices\":[127,131]},{\"text\":\"tiktok\",\"indices\":[132,139]},{\"text\":\"Taiwan\",\"indices\":[140,147]},{\"text\":\"China\",\"indices\":[148,154]},{\"text\":\"dontpayuk\",\"indices\":[155,165]},{\"text\":\"tuesdayvibe\",\"indices\":[166,178]},{\"text\":\"helicopter\",\"indices\":[179,190]},{\"text\":\"RealEstate\",\"indices\":[191,202]},{\"text\":\"realestateinvestor\",\"indices\":[203,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554507154136207371,\"id_str\":\"1554507154136207371\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"url\":\"https:\\/\\/t.co\\/zQAIZsAEgs\",\"display_url\":\"pic.twitter.com\\/zQAIZsAEgs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/boprinhomes\\/status\\/1554507669574131715\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4939\":{\"hashtags\":[{\"text\":\"Ghana\",\"indices\":[38,44]},{\"text\":\"Ukraine\",\"indices\":[45,53]},{\"text\":\"Taiwan\",\"indices\":[54,61]},{\"text\":\"Pelosi\",\"indices\":[62,69]},{\"text\":\"BambamSorry\",\"indices\":[70,82]},{\"text\":\"abstorm\",\"indices\":[83,91]},{\"text\":\"chatsekscerita\",\"indices\":[92,107]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Imkwesi_\",\"name\":\"I'm Kwesi\",\"id\":1490616678253801475,\"id_str\":\"1490616678253801475\",\"indices\":[27,36]}],\"urls\":[],\"media\":[{\"id\":1554507371887689731,\"id_str\":\"1554507371887689731\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"url\":\"https:\\/\\/t.co\\/nkgeEcubJC\",\"display_url\":\"pic.twitter.com\\/nkgeEcubJC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Imkwesi_\\/status\\/1554507374265786369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":715,\"h\":725,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":725,\"resize\":\"fit\"}}}]},\"4940\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[115,122]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"washingtonpost\",\"name\":\"The Washington Post\",\"id\":2467791,\"id_str\":\"2467791\",\"indices\":[15,30]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[91,114]}]},\"4941\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[73,80]},{\"text\":\"Taipei\",\"indices\":[82,89]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"washingtonpost\",\"name\":\"The Washington Post\",\"id\":2467791,\"id_str\":\"2467791\",\"indices\":[15,30]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[49,72]}]},\"4942\":{\"hashtags\":[{\"text\":\"Wizkid\",\"indices\":[168,175]},{\"text\":\"Taiwan\",\"indices\":[176,183]},{\"text\":\"China\",\"indices\":[184,190]},{\"text\":\"helicopter\",\"indices\":[191,202]},{\"text\":\"tuesdayvibe\",\"indices\":[203,215]},{\"text\":\"Whatsapp\",\"indices\":[216,225]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554505347448152064,\"id_str\":\"1554505347448152064\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"url\":\"https:\\/\\/t.co\\/YMk2Mn69cr\",\"display_url\":\"pic.twitter.com\\/YMk2Mn69cr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554505425168568320\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4943\":{\"hashtags\":[{\"text\":\"NaijaBet\",\"indices\":[189,198]},{\"text\":\"Pelosi\",\"indices\":[199,206]},{\"text\":\"Taiwan\",\"indices\":[207,214]},{\"text\":\"BambamSorry\",\"indices\":[215,227]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C1Qdss0pAK\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3vjznus\",\"display_url\":\"bit.ly\\/3vjznus\",\"indices\":[164,187]}],\"media\":[{\"id\":1554505094112198659,\"id_str\":\"1554505094112198659\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"url\":\"https:\\/\\/t.co\\/csNNINnmIS\",\"display_url\":\"pic.twitter.com\\/csNNINnmIS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1554505114249052162\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":675,\"h\":680,\"resize\":\"fit\"}}}]},\"4944\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"Pelosi\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554503007227756544,\"id_str\":\"1554503007227756544\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"url\":\"https:\\/\\/t.co\\/HhiXO7ZmPy\",\"display_url\":\"pic.twitter.com\\/HhiXO7ZmPy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554503024973938690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"small\":{\"w\":569,\"h\":375,\"resize\":\"fit\"}}}]},\"4945\":{\"hashtags\":[{\"text\":\"WorldWarIII\",\"indices\":[212,224]},{\"text\":\"zackorji\",\"indices\":[225,234]},{\"text\":\"China\",\"indices\":[235,241]},{\"text\":\"Taiwan\",\"indices\":[242,249]},{\"text\":\"PeterObiForPresident\",\"indices\":[250,271]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554502771952553986,\"id_str\":\"1554502771952553986\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"url\":\"https:\\/\\/t.co\\/TdmyUy3XBp\",\"display_url\":\"pic.twitter.com\\/TdmyUy3XBp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chukzmiki\\/status\\/1554502879318315018\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"4946\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[44,51]},{\"text\":\"China\",\"indices\":[52,58]},{\"text\":\"BBNaija\",\"indices\":[59,67]},{\"text\":\"BBNaija7\",\"indices\":[68,77]},{\"text\":\"BBNaija7\",\"indices\":[78,87]},{\"text\":\"BBNaija2022\",\"indices\":[88,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"firstladyship\",\"name\":\"NEFERTITI\",\"id\":201237617,\"id_str\":\"201237617\",\"indices\":[0,14]}],\"urls\":[],\"media\":[{\"id\":1554502394603601920,\"id_str\":\"1554502394603601920\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"url\":\"https:\\/\\/t.co\\/zkX2Sbg0bN\",\"display_url\":\"pic.twitter.com\\/zkX2Sbg0bN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ObidientYoutube\\/status\\/1554502403889807362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1242,\"h\":698,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"4947\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[23,29]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554501901521403904,\"id_str\":\"1554501901521403904\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"url\":\"https:\\/\\/t.co\\/6pzyCrCJWe\",\"display_url\":\"pic.twitter.com\\/6pzyCrCJWe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554502371946172416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"}}}]},\"4948\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[280,287]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"SpeakerPelosi\",\"name\":\"Nancy Pelosi\",\"id\":15764644,\"id_str\":\"15764644\",\"indices\":[0,14]},{\"screen_name\":\"aaakhigbe\",\"name\":\"Andy Akhigbe\",\"id\":1970724968,\"id_str\":\"1970724968\",\"indices\":[15,25]}],\"urls\":[]},\"4949\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[58,67]},{\"text\":\"fightschool\",\"indices\":[68,80]},{\"text\":\"FightClub\",\"indices\":[81,91]},{\"text\":\"fightingvideo\",\"indices\":[92,106]},{\"text\":\"FightBack\",\"indices\":[107,117]},{\"text\":\"fightnight\",\"indices\":[118,129]},{\"text\":\"fighter\",\"indices\":[130,138]},{\"text\":\"ViralVideo\",\"indices\":[139,150]},{\"text\":\"viral\",\"indices\":[151,157]},{\"text\":\"fighthub\",\"indices\":[158,167]},{\"text\":\"Sheggz\",\"indices\":[168,175]},{\"text\":\"BBNajia\",\"indices\":[176,184]},{\"text\":\"BBNaijaS7\",\"indices\":[185,195]},{\"text\":\"PiNetwork\",\"indices\":[196,206]},{\"text\":\"China\",\"indices\":[207,213]},{\"text\":\"Taiwan\",\"indices\":[214,221]},{\"text\":\"dontpayuk\",\"indices\":[222,232]},{\"text\":\"HuntedAU\",\"indices\":[233,242]},{\"text\":\"bachelorette\",\"indices\":[243,256]},{\"text\":\"Tembisa\",\"indices\":[257,265]},{\"text\":\"helicopter\",\"indices\":[266,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554501297348513793,\"id_str\":\"1554501297348513793\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"url\":\"https:\\/\\/t.co\\/ibD6jbcgbc\",\"display_url\":\"pic.twitter.com\\/ibD6jbcgbc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554501332723179524\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"4950\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[66,73]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"business\",\"name\":\"Bloomberg\",\"id\":34713362,\"id_str\":\"34713362\",\"indices\":[0,9]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6p4y5Dkfqh\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[42,65]}]},\"4951\":{\"hashtags\":[{\"text\":\"Tinubu\",\"indices\":[100,107]},{\"text\":\"BBNajiaS7\",\"indices\":[205,215]},{\"text\":\"Taiwan\",\"indices\":[235,242]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eIYo6IOEWV\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2349018681172\",\"display_url\":\"wa.me\\/+2349018681172\",\"indices\":[61,84]}],\"media\":[{\"id\":1554500996553998337,\"id_str\":\"1554500996553998337\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"url\":\"https:\\/\\/t.co\\/1X3rwlfzDm\",\"display_url\":\"pic.twitter.com\\/1X3rwlfzDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaunceySean1\\/status\\/1554501006838431744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1241,\"h\":1562,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":953,\"h\":1200,\"resize\":\"fit\"}}}]},\"4952\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4953\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[26,35]},{\"text\":\"fightschool\",\"indices\":[36,48]},{\"text\":\"FightClub\",\"indices\":[49,59]},{\"text\":\"fightingvideo\",\"indices\":[60,74]},{\"text\":\"FightBack\",\"indices\":[75,85]},{\"text\":\"fightnight\",\"indices\":[86,97]},{\"text\":\"fighter\",\"indices\":[98,106]},{\"text\":\"ViralVideo\",\"indices\":[107,118]},{\"text\":\"viral\",\"indices\":[119,125]},{\"text\":\"fighthub\",\"indices\":[126,135]},{\"text\":\"Sheggz\",\"indices\":[136,143]},{\"text\":\"BBNajia\",\"indices\":[144,152]},{\"text\":\"BBNaijaS7\",\"indices\":[153,163]},{\"text\":\"PiNetwork\",\"indices\":[164,174]},{\"text\":\"China\",\"indices\":[175,181]},{\"text\":\"Taiwan\",\"indices\":[182,189]},{\"text\":\"dontpayuk\",\"indices\":[190,200]},{\"text\":\"HuntedAU\",\"indices\":[201,210]},{\"text\":\"bachelorette\",\"indices\":[211,224]},{\"text\":\"Tembisa\",\"indices\":[225,233]},{\"text\":\"helicopter\",\"indices\":[234,245]},{\"text\":\"SuperTuna_Jin\",\"indices\":[246,260]},{\"text\":\"tuesdayvibe\",\"indices\":[261,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500816718938114,\"id_str\":\"1554500816718938114\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/XigzZJDjZT\",\"display_url\":\"pic.twitter.com\\/XigzZJDjZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500874185089025\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":520,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":942,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":942,\"resize\":\"fit\"}}}]},\"4954\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[240,247]},{\"text\":\"China\",\"indices\":[248,254]},{\"text\":\"Obidatti023\",\"indices\":[256,268]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500275339239430,\"id_str\":\"1554500275339239430\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"url\":\"https:\\/\\/t.co\\/ROTOrsvY71\",\"display_url\":\"pic.twitter.com\\/ROTOrsvY71\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rinxe_\\/status\\/1554500278094905347\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":583,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":840,\"resize\":\"fit\"}}}]},\"4955\":{\"hashtags\":[{\"text\":\"EndSARS\",\"indices\":[53,61]},{\"text\":\"helicopter\",\"indices\":[62,73]},{\"text\":\"Taiwan\",\"indices\":[94,101]},{\"text\":\"Tinubu\",\"indices\":[102,109]},{\"text\":\"wike\",\"indices\":[110,115]},{\"text\":\"peterObiForPresident\",\"indices\":[116,137]},{\"text\":\"pelosi\",\"indices\":[138,145]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500195148341249,\"id_str\":\"1554500195148341249\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"url\":\"https:\\/\\/t.co\\/2KNksCfwdg\",\"display_url\":\"pic.twitter.com\\/2KNksCfwdg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Atomic379\\/status\\/1554500207177596928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"}}}]},\"4956\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[70,79]},{\"text\":\"fightschool\",\"indices\":[80,92]},{\"text\":\"FightClub\",\"indices\":[93,103]},{\"text\":\"fightingvideo\",\"indices\":[104,118]},{\"text\":\"FightBack\",\"indices\":[119,129]},{\"text\":\"fightnight\",\"indices\":[130,141]},{\"text\":\"fighter\",\"indices\":[142,150]},{\"text\":\"ViralVideo\",\"indices\":[151,162]},{\"text\":\"viral\",\"indices\":[163,169]},{\"text\":\"fighthub\",\"indices\":[170,179]},{\"text\":\"Sheggz\",\"indices\":[180,187]},{\"text\":\"BBNajia\",\"indices\":[188,196]},{\"text\":\"BBNaijaS7\",\"indices\":[197,207]},{\"text\":\"PiNetwork\",\"indices\":[208,218]},{\"text\":\"China\",\"indices\":[219,225]},{\"text\":\"Taiwan\",\"indices\":[226,233]},{\"text\":\"dontpayuk\",\"indices\":[234,244]},{\"text\":\"HuntedAU\",\"indices\":[245,254]},{\"text\":\"bachelorette\",\"indices\":[255,268]},{\"text\":\"Tembisa\",\"indices\":[269,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554500123123765248,\"id_str\":\"1554500123123765248\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"url\":\"https:\\/\\/t.co\\/65H2indrwE\",\"display_url\":\"pic.twitter.com\\/65H2indrwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500163846262789\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"4957\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[252,259]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554499817635778562,\"id_str\":\"1554499817635778562\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"url\":\"https:\\/\\/t.co\\/T7kgQYTzJ8\",\"display_url\":\"pic.twitter.com\\/T7kgQYTzJ8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezekingwealth\\/status\\/1554499852234637313\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}}}]},\"4958\":{\"hashtags\":[{\"text\":\"fighting\",\"indices\":[75,84]},{\"text\":\"fightschool\",\"indices\":[85,97]},{\"text\":\"FightClub\",\"indices\":[98,108]},{\"text\":\"fightingvideo\",\"indices\":[109,123]},{\"text\":\"FightBack\",\"indices\":[124,134]},{\"text\":\"fightnight\",\"indices\":[135,146]},{\"text\":\"fighter\",\"indices\":[147,155]},{\"text\":\"ViralVideo\",\"indices\":[156,167]},{\"text\":\"viral\",\"indices\":[168,174]},{\"text\":\"fighthub\",\"indices\":[175,184]},{\"text\":\"Sheggz\",\"indices\":[185,192]},{\"text\":\"BBNajia\",\"indices\":[193,201]},{\"text\":\"BBNaijaS7\",\"indices\":[202,212]},{\"text\":\"PiNetwork\",\"indices\":[213,223]},{\"text\":\"China\",\"indices\":[224,230]},{\"text\":\"Taiwan\",\"indices\":[231,238]},{\"text\":\"dontpayuk\",\"indices\":[239,249]},{\"text\":\"HuntedAU\",\"indices\":[250,259]},{\"text\":\"bachelorette\",\"indices\":[260,273]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554498460908486657,\"id_str\":\"1554498460908486657\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"url\":\"https:\\/\\/t.co\\/wGq0ra4JHP\",\"display_url\":\"pic.twitter.com\\/wGq0ra4JHP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554498498958987264\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"4959\":{\"hashtags\":[{\"text\":\"badmanstoney\",\"indices\":[155,168]},{\"text\":\"Taiwan\",\"indices\":[169,176]},{\"text\":\"dontpayuk\",\"indices\":[177,187]},{\"text\":\"asuu\",\"indices\":[188,193]},{\"text\":\"EndSARS\",\"indices\":[194,202]},{\"text\":\"helicopter\",\"indices\":[203,214]},{\"text\":\"China\",\"indices\":[215,221]},{\"text\":\"HuntedAU\",\"indices\":[222,231]},{\"text\":\"tuesdayvibe\",\"indices\":[232,244]},{\"text\":\"bachelorette\",\"indices\":[245,258]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"carterefe__\",\"name\":\"carterefe\\ud83d\\udda4\\ud83e\\udd85\",\"id\":1380188109569196033,\"id_str\":\"1380188109569196033\",\"indices\":[8,20]},{\"screen_name\":\"wandecoal\",\"name\":\"Wande Coal\",\"id\":36617822,\"id_str\":\"36617822\",\"indices\":[21,31]},{\"screen_name\":\"davido\",\"name\":\"Davido\",\"id\":192947735,\"id_str\":\"192947735\",\"indices\":[32,39]},{\"screen_name\":\"wizkidayo\",\"name\":\"Wizkid\",\"id\":32660559,\"id_str\":\"32660559\",\"indices\":[40,50]},{\"screen_name\":\"burnaboy\",\"name\":\"Burna Boy\",\"id\":215052012,\"id_str\":\"215052012\",\"indices\":[51,60]},{\"screen_name\":\"DPRINCEMAVIN\",\"name\":\"O M O B A\",\"id\":52420430,\"id_str\":\"52420430\",\"indices\":[61,74]},{\"screen_name\":\"Omah_Lay\",\"name\":\"Omah Lay\",\"id\":1114311810,\"id_str\":\"1114311810\",\"indices\":[75,84]},{\"screen_name\":\"DONJAZZY\",\"name\":\"ITS DON JAZZY AGAIN. \\ud83d\\udc18\",\"id\":53817066,\"id_str\":\"53817066\",\"indices\":[85,94]},{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[95,102]},{\"screen_name\":\"Mayorkun\",\"name\":\"MAYORKUN\",\"id\":251838519,\"id_str\":\"251838519\",\"indices\":[103,112]},{\"screen_name\":\"sydney_talker\",\"name\":\"SYDNEY \\ud83d\\udd4a\",\"id\":391983313,\"id_str\":\"391983313\",\"indices\":[113,127]},{\"screen_name\":\"SympLySimi\",\"name\":\"Simi\",\"id\":26216972,\"id_str\":\"26216972\",\"indices\":[128,139]},{\"screen_name\":\"adekunleGOLD\",\"name\":\"Tio Tequila\",\"id\":88212427,\"id_str\":\"88212427\",\"indices\":[140,153]}],\"urls\":[],\"media\":[{\"id\":1554497715492503552,\"id_str\":\"1554497715492503552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"url\":\"https:\\/\\/t.co\\/JoHhIzFS0J\",\"display_url\":\"pic.twitter.com\\/JoHhIzFS0J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Badman__Stoney\\/status\\/1554498360329003010\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4960\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[162,169]},{\"text\":\"China\",\"indices\":[170,176]},{\"text\":\"tuesdayvibe\",\"indices\":[177,189]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554497177329848321,\"id_str\":\"1554497177329848321\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"url\":\"https:\\/\\/t.co\\/24V0Z563Hz\",\"display_url\":\"pic.twitter.com\\/24V0Z563Hz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554497190243864577\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4961\":{\"hashtags\":[{\"text\":\"NewProfilePic\",\"indices\":[17,31]},{\"text\":\"Taiwan\",\"indices\":[32,39]},{\"text\":\"China\",\"indices\":[40,46]},{\"text\":\"dontpayuk\",\"indices\":[47,57]},{\"text\":\"worldwide\",\"indices\":[58,68]},{\"text\":\"Tembisa\",\"indices\":[69,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554495900172550147,\"id_str\":\"1554495900172550147\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"url\":\"https:\\/\\/t.co\\/mC1IGTqxZN\",\"display_url\":\"pic.twitter.com\\/mC1IGTqxZN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nonstopdancer55\\/status\\/1554495902836031493\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"large\":{\"w\":508,\"h\":508,\"resize\":\"fit\"}}}]},\"4962\":{\"hashtags\":[{\"text\":\"personalbaby\",\"indices\":[21,34]},{\"text\":\"ASUUstrike\",\"indices\":[44,55]},{\"text\":\"ASUUStrikeUpdate\",\"indices\":[56,73]},{\"text\":\"Taiwan\",\"indices\":[75,82]},{\"text\":\"Pelosi\",\"indices\":[83,90]},{\"text\":\"China\",\"indices\":[91,97]},{\"text\":\"Wizkidfc\",\"indices\":[98,107]},{\"text\":\"Machala\",\"indices\":[108,116]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mreazi\",\"name\":\"Genius\",\"id\":257941359,\"id_str\":\"257941359\",\"indices\":[4,11]}],\"urls\":[]},\"4963\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[47,54]},{\"text\":\"ASUU\",\"indices\":[55,60]},{\"text\":\"China\",\"indices\":[61,67]},{\"text\":\"BambamSorry\",\"indices\":[68,80]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554494932181721088,\"id_str\":\"1554494932181721088\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"url\":\"https:\\/\\/t.co\\/ut4fE6Z6FA\",\"display_url\":\"pic.twitter.com\\/ut4fE6Z6FA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realproscrow\\/status\\/1554495310986203141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"4964\":{\"hashtags\":[{\"text\":\"Nigeria\",\"indices\":[115,123]},{\"text\":\"Taiwan\",\"indices\":[124,131]},{\"text\":\"China\",\"indices\":[132,138]},{\"text\":\"kpssdeikincifetoskandali\",\"indices\":[139,164]},{\"text\":\"OBIDIENT\",\"indices\":[165,174]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554494836379713538,\"id_str\":\"1554494836379713538\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"url\":\"https:\\/\\/t.co\\/YHkClDAdeG\",\"display_url\":\"pic.twitter.com\\/YHkClDAdeG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CucumberTV1\\/status\\/1554494846739615744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":726,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":1481,\"resize\":\"fit\"},\"small\":{\"w\":411,\"h\":680,\"resize\":\"fit\"}}}]},\"4965\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[26,32]},{\"text\":\"pelositaiwan\",\"indices\":[33,46]},{\"text\":\"Taiwan\",\"indices\":[47,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4966\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4967\":{\"hashtags\":[{\"text\":\"Educational_Post\",\"indices\":[0,17]},{\"text\":\"Btc\",\"indices\":[115,119]},{\"text\":\"Crypto\",\"indices\":[120,127]},{\"text\":\"helicopter\",\"indices\":[128,139]},{\"text\":\"Taiwan\",\"indices\":[203,210]},{\"text\":\"China\",\"indices\":[211,217]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554492935130972168,\"id_str\":\"1554492935130972168\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"url\":\"https:\\/\\/t.co\\/Dp6PmdnfRH\",\"display_url\":\"pic.twitter.com\\/Dp6PmdnfRH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dan_nyeche\\/status\\/1554492944031399938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"4968\":{\"hashtags\":[{\"text\":\"nigerianbusiness\",\"indices\":[126,143]},{\"text\":\"fintech\",\"indices\":[144,152]},{\"text\":\"startup\",\"indices\":[153,161]},{\"text\":\"lagosnigeria\",\"indices\":[162,175]},{\"text\":\"nigerian\",\"indices\":[176,185]},{\"text\":\"smallbusiness\",\"indices\":[186,200]},{\"text\":\"Pelosi\",\"indices\":[201,208]},{\"text\":\"lagos\",\"indices\":[209,215]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554492448331780105,\"id_str\":\"1554492448331780105\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"url\":\"https:\\/\\/t.co\\/IrHVBZAtGj\",\"display_url\":\"pic.twitter.com\\/IrHVBZAtGj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_usejuju\\/status\\/1554492463200571395\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"4969\":{\"hashtags\":[{\"text\":\"NancyPelosi\",\"indices\":[53,65]},{\"text\":\"Taipei\",\"indices\":[66,73]},{\"text\":\"Pelosi\",\"indices\":[74,81]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[82,100]},{\"text\":\"China\",\"indices\":[101,107]},{\"text\":\"pelositaiwan\",\"indices\":[108,121]},{\"text\":\"Taiwan\",\"indices\":[122,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554492065962401792,\"id_str\":\"1554492065962401792\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"url\":\"https:\\/\\/t.co\\/SuqnCpdGVH\",\"display_url\":\"pic.twitter.com\\/SuqnCpdGVH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554492105506304000\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"4970\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[53,59]},{\"text\":\"Taiwan\",\"indices\":[60,67]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JohnRoss43\",\"name\":\"John Ross\",\"id\":15286685,\"id_str\":\"15286685\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[29,52]}]},\"4971\":{\"hashtags\":[{\"text\":\"GetIntoAsoRock\",\"indices\":[210,225]},{\"text\":\"Akure\",\"indices\":[227,233]},{\"text\":\"Pelosi\",\"indices\":[234,241]},{\"text\":\"China\",\"indices\":[242,248]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[107,116]}],\"urls\":[],\"media\":[{\"id\":1554491570216472577,\"id_str\":\"1554491570216472577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"url\":\"https:\\/\\/t.co\\/1omjHcInPM\",\"display_url\":\"pic.twitter.com\\/1omjHcInPM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunladeAbiola1\\/status\\/1554491572502372353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4972\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[33,40]},{\"text\":\"Taiwan\",\"indices\":[56,63]},{\"text\":\"China\",\"indices\":[106,112]},{\"text\":\"NancyPelosi\",\"indices\":[251,263]},{\"text\":\"pelositaiwan\",\"indices\":[264,277]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554491505427247104,\"id_str\":\"1554491505427247104\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"url\":\"https:\\/\\/t.co\\/u3VHsLGAP0\",\"display_url\":\"pic.twitter.com\\/u3VHsLGAP0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554491545810014208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"4973\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[42,48]},{\"text\":\"ChristJesus\",\"indices\":[192,204]},{\"text\":\"WWIII\",\"indices\":[228,234]},{\"text\":\"Nostrademe\",\"indices\":[236,247]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4974\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[54,61]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RonnyJacksonTX\",\"name\":\"Ronny Jackson\",\"id\":1201953403099893760,\"id_str\":\"1201953403099893760\",\"indices\":[0,15]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[30,53]}]},\"4975\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[163,170]},{\"text\":\"China\",\"indices\":[279,285]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490875413434368,\"id_str\":\"1554490875413434368\",\"indices\":[286,309],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"url\":\"https:\\/\\/t.co\\/BVOXlr4uF0\",\"display_url\":\"pic.twitter.com\\/BVOXlr4uF0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490944380354560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"4976\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[178,184]},{\"text\":\"Pelosi\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490735684206593,\"id_str\":\"1554490735684206593\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"url\":\"https:\\/\\/t.co\\/mo8Q7t3wg2\",\"display_url\":\"pic.twitter.com\\/mo8Q7t3wg2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554490738594938883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"medium\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":345,\"resize\":\"fit\"}}}]},\"4977\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[49,55]},{\"text\":\"Taiwan\",\"indices\":[56,63]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Reuters\",\"name\":\"Reuters\",\"id\":1652541,\"id_str\":\"1652541\",\"indices\":[0,8]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[25,48]}]},\"4978\":{\"hashtags\":[{\"text\":\"US\",\"indices\":[26,29]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"China\",\"indices\":[92,98]},{\"text\":\"NancyPelosi\",\"indices\":[116,128]},{\"text\":\"Taipei\",\"indices\":[129,136]},{\"text\":\"Pelosi\",\"indices\":[137,144]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[145,163]},{\"text\":\"China\",\"indices\":[164,170]},{\"text\":\"pelositaiwan\",\"indices\":[171,184]},{\"text\":\"Taiwan\",\"indices\":[185,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490669972230146,\"id_str\":\"1554490669972230146\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"url\":\"https:\\/\\/t.co\\/KPehr8eDvd\",\"display_url\":\"pic.twitter.com\\/KPehr8eDvd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490676796354561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":504,\"resize\":\"fit\"}}}]},\"4979\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[217,224]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4980\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[69,76]},{\"text\":\"China\",\"indices\":[77,83]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nexta_tv\",\"name\":\"NEXTA\",\"id\":1891490382,\"id_str\":\"1891490382\",\"indices\":[0,9]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[45,68]}]},\"4981\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[231,238]},{\"text\":\"China\",\"indices\":[239,245]},{\"text\":\"dontpayuk\",\"indices\":[246,256]},{\"text\":\"Guerrilla1stWin\",\"indices\":[257,273]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"accessbank_help\",\"name\":\"Access Bank Help\",\"id\":2164455380,\"id_str\":\"2164455380\",\"indices\":[0,16]}],\"urls\":[]},\"4982\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[17,24]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Stargazer_28671\",\"name\":\"Stargazer\",\"id\":1507947119654563842,\"id_str\":\"1507947119654563842\",\"indices\":[0,16]}],\"urls\":[]},\"4983\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[45,52]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554490352496680960,\"id_str\":\"1554490352496680960\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"url\":\"https:\\/\\/t.co\\/OhafhnOHNP\",\"display_url\":\"pic.twitter.com\\/OhafhnOHNP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1554490355508191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"4984\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[158,164]},{\"text\":\"Pelosi\",\"indices\":[165,172]},{\"text\":\"China\",\"indices\":[173,179]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4985\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[50,56]},{\"text\":\"taiwan\",\"indices\":[57,64]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"disclosetv\",\"name\":\"Disclose.tv\",\"id\":15392486,\"id_str\":\"15392486\",\"indices\":[0,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pJlGwWfryx\",\"expanded_url\":\"https:\\/\\/news247gh.com\\/china-says-military-action-will-take-place-if-us-speaker-nancy-pelosi-visits-taiwan\\/\",\"display_url\":\"news247gh.com\\/china-says-mil\\u2026\",\"indices\":[26,49]}]},\"4986\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[0,6]},{\"text\":\"Pelosi\",\"indices\":[34,41]},{\"text\":\"China\",\"indices\":[42,48]},{\"text\":\"taiwanwar\",\"indices\":[49,59]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4987\":{\"hashtags\":[{\"text\":\"phcity\",\"indices\":[154,161]},{\"text\":\"portharcourt\",\"indices\":[162,175]},{\"text\":\"Machala\",\"indices\":[176,184]},{\"text\":\"Wizkidfc\",\"indices\":[185,194]},{\"text\":\"Davido\",\"indices\":[195,202]},{\"text\":\"Pelosi\",\"indices\":[204,211]},{\"text\":\"OBIDIENTS\",\"indices\":[212,222]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554489126585614336,\"id_str\":\"1554489126585614336\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"url\":\"https:\\/\\/t.co\\/o5IYOG2cGu\",\"display_url\":\"pic.twitter.com\\/o5IYOG2cGu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/freeworldmaster\\/status\\/1554489145971572737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4988\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[106,113]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4989\":{\"hashtags\":[{\"text\":\"superfmph\",\"indices\":[86,96]},{\"text\":\"soup\",\"indices\":[97,102]},{\"text\":\"foodie\",\"indices\":[103,110]},{\"text\":\"mrbayo\",\"indices\":[111,118]},{\"text\":\"China\",\"indices\":[119,125]},{\"text\":\"ASUU\",\"indices\":[126,131]},{\"text\":\"lekki\",\"indices\":[132,138]},{\"text\":\"Pelosi\",\"indices\":[139,146]},{\"text\":\"stoplying\",\"indices\":[147,157]},{\"text\":\"BBNaija\",\"indices\":[158,166]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554488879247495171,\"id_str\":\"1554488879247495171\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"url\":\"https:\\/\\/t.co\\/zOwwS1AqzK\",\"display_url\":\"pic.twitter.com\\/zOwwS1AqzK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superfm933\\/status\\/1554488888789536768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":839,\"resize\":\"fit\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":839,\"resize\":\"fit\"}}}]},\"4990\":{\"hashtags\":[{\"text\":\"BREAKING\",\"indices\":[0,9]},{\"text\":\"China\",\"indices\":[10,16]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554488556680355841,\"id_str\":\"1554488556680355841\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"url\":\"https:\\/\\/t.co\\/QmblcXb8XR\",\"display_url\":\"pic.twitter.com\\/QmblcXb8XR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554488563089162242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":900,\"resize\":\"fit\"}}}]},\"4991\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[258,265]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4992\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MrGenius_Tips\",\"name\":\"Mr Genius\",\"id\":1042520177039077377,\"id_str\":\"1042520177039077377\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UhahxGgEdG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3KReBIp\",\"display_url\":\"bit.ly\\/3KReBIp\",\"indices\":[65,88]}],\"media\":[{\"id\":1554487793941979141,\"id_str\":\"1554487793941979141\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"url\":\"https:\\/\\/t.co\\/lde207mcTI\",\"display_url\":\"pic.twitter.com\\/lde207mcTI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487803244847104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"4993\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MrGenius_Tips\",\"name\":\"Mr Genius\",\"id\":1042520177039077377,\"id_str\":\"1042520177039077377\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UhahxGgEdG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3KReBIp\",\"display_url\":\"bit.ly\\/3KReBIp\",\"indices\":[65,88]}],\"media\":[{\"id\":1554487700522156038,\"id_str\":\"1554487700522156038\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"url\":\"https:\\/\\/t.co\\/x6FJ08mKpH\",\"display_url\":\"pic.twitter.com\\/x6FJ08mKpH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487719132282880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"4994\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[105,112]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MrGenius_Tips\",\"name\":\"Mr Genius\",\"id\":1042520177039077377,\"id_str\":\"1042520177039077377\",\"indices\":[0,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UhahxGgEdG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3KReBIp\",\"display_url\":\"bit.ly\\/3KReBIp\",\"indices\":[65,88]}]},\"4995\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[140,146]},{\"text\":\"Pelosi\",\"indices\":[147,154]},{\"text\":\"BoycottRakshaBandhanMovie\",\"indices\":[155,181]},{\"text\":\"dontpayuk\",\"indices\":[182,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wimkbaMp6p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\",\"display_url\":\"twitter.com\\/skrimgadgets\\/s\\u2026\",\"indices\":[193,216]}]},\"4996\":{\"hashtags\":[{\"text\":\"NFT\",\"indices\":[228,232]},{\"text\":\"Pelosi\",\"indices\":[233,240]},{\"text\":\"NFTCommunity\",\"indices\":[241,254]},{\"text\":\"100Devs\",\"indices\":[255,263]},{\"text\":\"drawing\",\"indices\":[264,272]},{\"text\":\"nftart\",\"indices\":[273,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"opensea\",\"name\":\"OpenSea\",\"id\":946213559213555712,\"id_str\":\"946213559213555712\",\"indices\":[127,135]},{\"screen_name\":\"Attractbysight\",\"name\":\"Attraction By Sight LLC\",\"id\":1501572186838081538,\"id_str\":\"1501572186838081538\",\"indices\":[212,227]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ccGYRz7I1S\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/matic\\/0x2953399124f0cbb46d2cbacd8a89cf0599974963\\/40386918039180471665116977127635031425041571541600337167240519540714244145153\\/\",\"display_url\":\"opensea.io\\/assets\\/matic\\/0\\u2026\",\"indices\":[188,211]}]},\"4997\":{\"hashtags\":[{\"text\":\"AmberHeardIsAMonster\",\"indices\":[27,48]},{\"text\":\"Pelosi\",\"indices\":[49,56]},{\"text\":\"AmberHeardIsFinished\",\"indices\":[57,78]},{\"text\":\"JohnnyDeppIsALegend\",\"indices\":[79,99]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554486449805877248,\"id_str\":\"1554486449805877248\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"url\":\"https:\\/\\/t.co\\/I695L4ShPk\",\"display_url\":\"pic.twitter.com\\/I695L4ShPk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554486456894242817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"},\"small\":{\"w\":476,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"}}}]},\"4998\":{\"hashtags\":[{\"text\":\"Governor\",\"indices\":[189,198]},{\"text\":\"Rufai\",\"indices\":[199,205]},{\"text\":\"arisetv\",\"indices\":[206,214]},{\"text\":\"SportyBet\",\"indices\":[215,225]},{\"text\":\"BigBella\",\"indices\":[226,235]},{\"text\":\"OKOWA\",\"indices\":[236,242]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[243,268]},{\"text\":\"Pelosi\",\"indices\":[269,276]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"4999\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[29,36]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ChineseEmbinUS\",\"name\":\"Chinese Embassy in US\",\"id\":1136383051917910017,\"id_str\":\"1136383051917910017\",\"indices\":[37,52]}],\"urls\":[]}},\"metadata\":{\"0\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"5\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"6\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"7\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"8\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"9\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"10\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"11\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"12\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"13\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"14\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"15\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"16\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"17\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"18\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"19\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"20\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"21\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"22\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"23\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"24\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"25\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"26\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"27\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"28\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"29\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"30\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"31\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"32\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"33\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"34\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"35\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"36\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"37\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"38\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"39\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"40\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"41\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"42\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"43\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"44\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"45\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"46\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"47\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"48\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"49\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"50\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"51\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"52\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"53\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"54\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"55\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"56\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"57\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"58\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"59\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"60\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"61\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"62\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"63\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"64\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"65\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"66\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"67\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"68\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"69\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"70\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"71\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"72\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"73\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"74\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"75\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"76\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"77\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"78\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"79\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"80\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"81\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"82\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"83\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"84\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"85\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"86\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"87\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"88\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"89\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"90\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"91\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"92\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"93\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"94\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"95\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"96\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"97\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"98\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"99\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"100\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"101\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"102\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"103\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"104\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"105\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"106\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"107\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"108\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"109\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"110\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"111\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"112\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"113\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"114\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"115\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"116\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"117\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"118\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"119\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"120\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"121\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"122\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"123\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"124\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"125\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"126\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"127\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"128\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"129\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"130\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"131\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"132\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"133\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"134\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"135\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"136\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"137\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"138\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"139\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"140\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"141\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"142\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"143\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"144\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"145\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"146\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"147\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"148\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"149\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"150\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"151\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"152\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"153\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"154\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"155\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"156\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"157\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"158\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"159\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"160\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"161\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"162\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"163\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"164\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"165\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"166\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"167\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"168\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"169\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"170\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"171\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"172\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"173\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"174\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"175\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"176\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"177\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"178\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"179\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"180\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"181\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"182\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"183\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"184\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"185\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"186\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"187\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"188\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"189\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"190\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"191\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"192\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"193\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"194\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"195\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"196\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"197\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"198\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"199\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"200\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"201\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"202\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"203\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"204\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"205\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"206\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"207\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"208\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"209\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"210\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"211\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"212\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"213\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"214\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"215\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"216\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"217\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"218\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"219\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"220\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"221\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"222\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"223\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"224\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"225\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"226\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"227\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"228\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"229\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"230\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"231\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"232\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"233\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"234\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"235\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"236\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"237\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"238\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"239\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"240\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"241\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"242\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"243\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"244\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"245\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"246\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"247\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"248\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"249\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"250\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"251\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"252\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"253\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"254\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"255\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"256\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"257\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"258\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"259\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"260\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"261\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"262\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"263\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"264\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"265\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"266\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"267\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"268\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"269\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"270\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"271\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"272\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"273\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"274\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"275\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"276\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"277\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"278\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"279\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"280\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"281\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"282\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"283\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"284\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"285\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"286\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"287\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"288\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"289\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"290\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"291\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"292\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"293\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"294\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"295\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"296\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"297\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"298\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"299\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"300\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"301\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"302\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"303\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"304\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"305\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"306\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"307\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"308\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"309\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"310\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"311\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"312\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"313\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"314\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"315\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"316\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"317\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"318\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"319\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"320\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"321\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"322\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"323\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"324\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"325\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"326\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"327\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"328\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"329\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"330\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"331\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"332\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"333\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"334\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"335\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"336\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"337\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"338\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"339\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"340\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"341\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"342\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"343\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"344\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"345\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"346\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"347\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"348\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"349\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"350\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"351\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"352\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"353\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"354\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"355\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"356\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"357\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"358\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"359\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"360\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"361\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"362\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"363\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"364\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"365\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"366\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"367\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"368\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"369\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"370\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"371\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"372\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"373\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"374\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"375\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"376\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"377\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"378\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"379\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"380\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"381\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"382\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"383\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"384\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"385\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"386\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"387\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"388\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"389\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"390\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"391\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"392\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"393\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"394\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"395\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"396\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"397\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"398\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"399\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"400\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"401\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"402\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"403\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"404\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"405\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"406\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"407\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"408\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"409\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"410\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"411\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"412\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"413\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"414\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"415\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"416\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"417\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"418\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"419\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"420\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"421\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"422\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"423\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"424\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"425\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"426\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"427\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"428\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"429\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"430\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"431\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"432\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"433\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"434\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"435\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"436\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"437\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"438\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"439\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"440\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"441\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"442\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"443\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"444\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"445\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"446\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"447\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"448\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"449\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"450\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"451\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"452\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"453\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"454\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"455\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"456\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"457\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"458\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"459\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"460\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"461\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"462\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"463\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"464\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"465\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"466\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"467\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"468\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"469\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"470\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"471\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"472\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"473\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"474\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"475\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"476\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"477\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"478\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"479\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"480\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"481\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"482\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"483\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"484\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"485\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"486\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"487\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"488\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"489\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"490\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"491\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"492\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"493\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"494\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"495\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"496\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"497\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"498\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"499\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"500\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"501\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"502\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"503\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"504\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"505\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"506\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"507\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"508\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"509\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"510\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"511\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"512\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"513\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"514\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"515\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"516\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"517\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"518\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"519\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"520\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"521\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"522\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"523\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"524\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"525\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"526\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"527\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"528\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"529\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"530\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"531\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"532\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"533\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"534\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"535\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"536\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"537\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"538\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"539\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"540\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"541\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"542\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"543\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"544\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"545\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"546\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"547\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"548\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"549\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"550\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"551\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"552\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"553\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"554\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"555\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"556\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"557\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"558\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"559\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"560\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"561\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"562\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"563\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"564\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"565\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"566\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"567\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"568\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"569\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"570\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"571\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"572\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"573\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"574\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"575\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"576\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"577\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"578\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"579\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"580\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"581\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"582\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"583\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"584\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"585\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"586\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"587\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"588\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"589\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"590\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"591\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"592\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"593\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"594\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"595\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"596\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"597\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"598\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"599\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"600\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"601\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"602\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"603\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"604\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"605\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"606\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"607\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"608\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"609\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"610\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"611\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"612\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"613\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"614\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"615\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"616\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"617\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"618\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"619\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"620\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"621\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"622\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"623\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"624\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"625\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"626\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"627\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"628\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"629\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"630\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"631\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"632\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"633\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"634\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"635\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"636\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"637\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"638\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"639\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"640\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"641\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"642\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"643\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"644\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"645\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"646\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"647\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"648\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"649\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"650\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"651\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"652\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"653\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"654\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"655\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"656\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"657\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"658\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"659\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"660\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"661\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"662\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"663\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"664\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"665\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"666\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"667\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"668\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"669\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"670\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"671\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"672\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"673\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"674\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"675\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"676\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"677\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"678\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"679\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"680\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"681\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"682\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"683\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"684\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"685\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"686\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"687\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"688\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"689\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"690\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"691\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"692\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"693\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"694\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"695\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"696\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"697\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"698\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"699\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"700\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"701\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"702\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"703\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"704\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"705\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"706\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"707\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"708\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"709\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"710\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"711\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"712\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"713\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"714\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"715\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"716\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"717\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"718\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"719\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"720\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"721\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"722\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"723\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"724\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"725\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"726\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"727\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"728\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"729\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"730\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"731\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"732\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"733\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"734\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"735\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"736\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"737\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"738\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"739\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"740\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"741\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"742\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"743\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"744\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"745\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"746\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"747\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"748\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"749\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"750\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"751\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"752\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"753\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"754\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"755\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"756\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"757\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"758\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"759\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"760\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"761\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"762\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"763\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"764\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"765\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"766\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"767\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"768\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"769\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"770\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"771\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"772\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"773\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"774\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"775\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"776\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"777\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"778\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"779\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"780\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"781\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"782\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"783\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"784\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"785\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"786\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"787\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"788\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"789\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"790\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"791\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"792\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"793\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"794\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"795\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"796\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"797\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"798\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"799\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"800\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"801\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"802\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"803\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"804\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"805\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"806\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"807\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"808\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"809\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"810\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"811\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"812\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"813\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"814\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"815\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"816\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"817\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"818\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"819\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"820\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"821\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"822\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"823\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"824\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"825\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"826\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"827\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"828\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"829\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"830\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"831\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"832\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"833\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"834\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"835\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"836\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"837\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"838\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"839\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"840\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"841\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"842\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"843\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"844\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"845\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"846\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"847\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"848\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"849\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"850\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"851\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"852\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"853\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"854\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"855\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"856\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"857\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"858\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"859\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"860\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"861\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"862\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"863\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"864\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"865\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"866\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"867\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"868\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"869\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"870\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"871\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"872\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"873\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"874\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"875\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"876\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"877\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"878\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"879\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"880\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"881\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"882\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"883\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"884\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"885\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"886\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"887\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"888\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"889\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"890\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"891\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"892\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"893\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"894\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"895\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"896\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"897\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"898\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"899\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"900\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"901\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"902\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"903\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"904\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"905\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"906\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"907\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"908\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"909\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"910\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"911\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"912\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"913\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"914\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"915\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"916\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"917\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"918\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"919\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"920\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"921\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"922\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"923\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"924\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"925\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"926\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"927\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"928\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"929\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"930\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"931\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"932\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"933\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"934\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"935\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"936\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"937\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"938\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"939\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"940\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"941\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"942\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"943\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"944\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"945\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"946\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"947\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"948\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"949\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"950\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"951\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"952\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"953\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"954\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"955\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"956\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"957\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"958\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"959\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"960\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"961\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"962\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"963\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"964\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"965\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"966\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"967\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"968\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"969\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"970\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"971\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"972\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"973\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"974\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"975\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"976\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"977\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"978\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"979\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"980\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"981\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"982\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"983\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"984\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"985\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"986\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"987\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"988\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"989\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"990\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"991\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"992\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"993\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"994\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"995\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"996\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"997\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"998\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"999\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1000\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1001\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1002\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1003\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1004\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1005\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1006\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1007\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1008\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1009\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1010\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1011\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1012\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1013\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1014\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1015\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1016\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1017\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1018\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1019\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1020\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1021\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1022\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1023\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1024\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1025\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1026\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1027\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1028\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1029\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1030\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1031\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1032\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1033\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1034\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1035\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1036\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1037\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1038\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1039\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1040\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1041\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1042\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1043\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1044\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1045\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1046\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1047\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1048\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1049\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1050\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1051\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1052\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1053\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1054\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1055\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1056\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1057\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1058\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1059\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1060\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1061\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1062\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1063\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1064\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1065\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1066\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1067\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1068\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1069\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1070\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1071\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1072\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1073\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1074\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1075\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1076\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1077\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1078\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1079\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1080\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1081\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1082\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1083\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1084\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1085\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1086\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1087\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1088\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1089\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1090\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1091\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1092\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1093\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1094\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1095\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1096\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1097\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1098\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1099\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1100\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1101\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1102\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1103\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1104\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1105\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1106\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1107\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1108\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1109\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1110\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1111\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1112\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1113\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1114\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1115\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1116\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1117\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1118\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1119\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1120\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1121\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1122\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1123\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1124\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1125\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1126\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1127\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1128\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1129\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1130\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1131\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1132\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1133\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1134\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1135\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1136\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1137\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1138\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1139\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1140\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1141\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1142\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1143\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1144\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1145\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1146\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1147\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1148\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1149\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1150\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1151\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1152\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1153\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1154\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1155\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1156\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1157\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1158\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1159\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1160\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1161\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1162\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1163\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1164\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1165\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1166\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1167\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1168\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1169\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1170\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1171\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1172\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1173\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1174\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1175\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1176\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1177\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1178\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1179\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1180\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1181\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1182\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1183\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1184\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1185\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1186\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1187\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1188\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1189\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1190\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1191\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1192\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1193\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1194\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1195\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1196\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1197\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1198\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1199\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1200\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1201\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1202\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1203\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1204\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1205\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1206\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1207\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1208\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1209\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1210\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1211\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1212\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1213\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1214\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1215\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1216\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1217\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1218\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1219\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1220\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1221\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1222\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1223\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1224\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1225\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1226\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1227\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1228\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1229\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1230\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1231\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1232\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1233\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1234\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1235\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1236\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1237\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1238\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1239\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1240\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1241\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1242\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1243\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1244\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1245\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1246\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1247\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1248\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1249\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1250\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1251\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1252\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1253\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1254\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1255\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1256\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1257\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1258\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1259\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1260\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1261\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1262\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1263\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1264\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1265\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1266\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1267\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1268\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1269\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1270\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1271\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1272\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1273\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1274\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1275\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1276\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1277\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1278\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1279\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1280\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1281\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1282\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1283\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1284\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1285\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1286\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1287\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1288\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1289\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1290\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1291\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1292\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1293\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1294\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1295\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1296\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1297\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1298\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1299\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1300\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1301\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1302\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1303\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1304\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1305\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1306\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1307\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1308\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1309\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1310\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1311\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1312\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1313\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1314\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1315\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1316\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1317\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1318\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1319\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1320\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1321\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1322\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1323\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1324\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1325\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1326\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1327\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1328\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1329\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1330\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1331\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1332\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1333\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1334\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1335\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1336\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1337\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1338\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1339\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1340\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1341\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1342\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1343\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1344\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1345\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1346\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1347\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1348\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1349\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1350\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1351\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1352\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1353\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1354\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1355\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1356\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1357\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1358\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1359\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1360\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1361\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1362\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1363\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1364\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1365\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1366\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1367\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1368\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1369\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1370\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1371\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1372\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1373\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1374\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1375\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1376\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1377\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1378\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1379\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1380\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1381\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1382\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1383\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1384\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1385\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1386\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1387\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1388\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1389\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1390\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1391\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1392\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1393\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1394\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1395\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1396\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1397\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1398\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1399\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1400\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1401\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1402\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1403\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1404\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1405\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1406\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1407\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1408\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1409\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1410\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1411\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1412\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1413\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1414\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1415\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1416\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1417\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1418\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1419\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1420\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1421\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1422\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1423\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1424\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1425\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1426\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1427\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1428\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1429\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1430\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1431\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1432\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1433\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1434\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1435\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1436\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1437\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1438\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1439\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1440\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1441\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1442\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1443\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1444\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1445\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1446\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1447\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1448\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1449\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1450\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1451\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1452\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1453\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1454\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1455\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1456\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1457\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1458\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1459\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1460\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1461\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1462\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1463\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1464\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1465\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1466\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1467\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1468\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1469\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1470\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1471\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1472\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1473\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1474\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1475\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1476\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1477\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1478\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1479\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1480\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1481\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1482\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1483\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1484\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1485\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1486\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1487\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1488\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1489\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1490\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1491\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1492\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1493\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1494\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1495\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1496\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1497\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1498\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1499\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1500\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1501\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1502\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1503\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1504\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1505\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1506\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1507\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1508\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1509\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1510\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1511\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1512\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1513\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1514\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1515\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1516\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1517\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1518\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1519\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1520\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1521\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1522\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1523\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1524\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1525\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1526\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1527\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1528\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1529\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1530\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1531\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1532\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1533\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1534\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1535\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1536\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1537\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1538\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1539\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1540\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1541\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1542\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1543\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1544\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1545\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1546\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1547\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1548\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1549\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1550\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1551\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1552\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1553\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1554\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1555\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1556\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1557\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1558\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1559\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1560\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1561\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1562\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1563\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1564\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1565\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1566\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1567\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1568\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1569\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1570\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1571\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1572\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1573\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1574\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1575\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1576\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1577\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1578\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1579\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1580\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1581\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1582\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1583\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1584\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1585\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1586\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1587\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1588\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1589\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1590\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1591\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1592\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1593\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1594\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1595\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1596\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1597\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1598\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1599\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1600\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1601\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1602\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1603\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1604\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1605\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1606\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1607\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1608\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1609\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1610\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1611\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1612\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1613\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1614\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1615\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1616\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1617\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1618\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1619\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1620\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1621\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1622\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1623\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1624\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1625\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1626\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1627\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1628\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1629\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1630\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1631\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1632\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1633\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1634\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1635\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1636\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1637\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1638\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1639\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1640\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1641\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1642\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1643\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1644\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1645\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1646\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1647\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1648\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1649\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1650\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1651\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1652\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1653\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1654\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1655\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1656\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1657\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1658\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1659\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1660\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1661\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1662\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1663\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1664\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1665\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1666\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1667\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1668\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1669\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1670\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1671\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1672\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1673\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1674\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1675\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1676\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1677\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1678\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1679\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1680\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1681\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1682\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1683\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1684\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1685\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1686\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1687\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1688\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1689\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1690\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1691\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1692\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1693\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1694\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1695\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1696\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1697\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1698\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1699\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1700\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1701\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1702\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1703\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1704\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1705\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1706\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1707\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1708\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1709\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1710\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1711\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1712\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1713\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1714\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1715\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1716\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1717\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1718\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1719\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1720\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1721\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1722\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1723\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1724\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1725\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1726\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1727\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1728\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1729\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1730\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1731\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1732\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1733\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1734\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1735\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1736\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1737\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1738\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1739\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1740\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1741\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1742\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1743\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1744\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1745\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1746\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1747\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1748\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1749\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1750\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1751\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1752\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1753\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1754\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1755\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1756\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1757\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1758\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1759\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1760\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1761\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1762\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1763\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1764\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1765\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1766\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1767\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1768\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1769\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1770\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1771\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1772\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1773\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1774\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1775\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1776\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1777\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1778\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1779\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1780\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1781\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1782\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1783\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1784\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1785\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1786\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1787\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1788\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1789\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1790\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1791\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1792\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1793\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1794\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1795\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1796\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1797\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1798\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1799\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1800\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1801\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1802\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1803\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1804\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1805\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1806\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1807\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1808\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1809\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1810\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1811\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1812\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1813\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1814\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1815\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1816\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1817\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1818\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1819\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1820\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1821\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1822\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1823\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1824\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1825\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1826\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1827\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1828\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1829\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1830\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1831\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1832\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1833\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1834\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1835\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1836\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1837\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1838\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1839\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1840\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1841\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1842\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1843\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1844\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1845\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1846\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1847\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1848\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1849\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1850\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1851\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1852\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1853\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1854\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1855\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1856\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1857\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1858\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1859\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1860\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1861\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1862\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1863\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1864\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1865\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1866\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1867\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1868\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1869\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1870\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1871\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1872\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1873\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1874\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1875\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1876\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1877\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1878\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1879\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1880\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1881\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1882\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1883\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1884\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1885\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1886\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1887\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1888\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1889\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1890\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1891\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1892\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1893\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1894\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1895\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1896\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1897\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1898\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1899\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1900\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1901\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1902\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1903\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1904\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1905\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1906\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1907\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1908\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1909\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1910\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1911\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1912\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1913\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1914\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1915\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1916\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1917\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1918\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1919\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1920\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1921\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1922\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1923\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1924\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1925\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1926\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1927\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1928\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1929\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1930\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1931\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1932\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1933\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1934\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1935\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1936\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1937\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1938\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1939\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1940\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1941\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1942\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1943\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1944\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1945\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1946\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1947\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1948\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1949\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1950\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1951\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1952\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1953\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1954\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1955\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1956\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1957\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1958\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1959\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1960\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1961\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1962\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1963\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1964\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1965\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1966\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1967\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1968\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1969\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1970\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1971\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1972\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1973\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1974\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1975\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1976\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1977\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1978\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1979\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1980\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1981\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1982\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1983\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1984\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1985\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1986\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1987\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1988\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1989\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1990\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1991\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1992\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1993\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1994\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1995\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1996\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1997\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1998\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"1999\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2000\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2001\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2002\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2003\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2004\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2005\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2006\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2007\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2008\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2009\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2010\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2011\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2012\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2013\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2014\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2015\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2016\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2017\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2018\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2019\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2020\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2021\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2022\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2023\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2024\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2025\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2026\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2027\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2028\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2029\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2030\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2031\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2032\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2033\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2034\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2035\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2036\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2037\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2038\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2039\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2040\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2041\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2042\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2043\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2044\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2045\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2046\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2047\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2048\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2049\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2050\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2051\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2052\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2053\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2054\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2055\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2056\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2057\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2058\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2059\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2060\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2061\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2062\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2063\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2064\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2065\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2066\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2067\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2068\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2069\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2070\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2071\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2072\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2073\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2074\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2075\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2076\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2077\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2078\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2079\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2080\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2081\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2082\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2083\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2084\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2085\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2086\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2087\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2088\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2089\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2090\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2091\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2092\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2093\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2094\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2095\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2096\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2097\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2098\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2099\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2100\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2101\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2102\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2103\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2104\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2105\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2106\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2107\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2108\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2109\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2110\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2111\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2112\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2113\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2114\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2115\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2116\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2117\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2118\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2119\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2120\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2121\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2122\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2123\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2124\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2125\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2126\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2127\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2128\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2129\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2130\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2131\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2132\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2133\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2134\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2135\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2136\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2137\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2138\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2139\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2140\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2141\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2142\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2143\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2144\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2145\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2146\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2147\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2148\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2149\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2150\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2151\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2152\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2153\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2154\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2155\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2156\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2157\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2158\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2159\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2160\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2161\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2162\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2163\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2164\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2165\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2166\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2167\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2168\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2169\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2170\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2171\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2172\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2173\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2174\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2175\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2176\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2177\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2178\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2179\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2180\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2181\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2182\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2183\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2184\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2185\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2186\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2187\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2188\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2189\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2190\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2191\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2192\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2193\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2194\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2195\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2196\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2197\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2198\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2199\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2200\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2201\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2202\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2203\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2204\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2205\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2206\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2207\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2208\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2209\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2210\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2211\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2212\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2213\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2214\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2215\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2216\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2217\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2218\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2219\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2220\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2221\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2222\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2223\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2224\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2225\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2226\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2227\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2228\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2229\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2230\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2231\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2232\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2233\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2234\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2235\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2236\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2237\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2238\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2239\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2240\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2241\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2242\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2243\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2244\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2245\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2246\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2247\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2248\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2249\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2250\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2251\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2252\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2253\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2254\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2255\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2256\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2257\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2258\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2259\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2260\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2261\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2262\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2263\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2264\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2265\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2266\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2267\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2268\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2269\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2270\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2271\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2272\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2273\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2274\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2275\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2276\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2277\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2278\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2279\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2280\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2281\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2282\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2283\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2284\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2285\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2286\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2287\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2288\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2289\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2290\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2291\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2292\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2293\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2294\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2295\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2296\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2297\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2298\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2299\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2300\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2301\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2302\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2303\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2304\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2305\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2306\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2307\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2308\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2309\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2310\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2311\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2312\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2313\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2314\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2315\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2316\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2317\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2318\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2319\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2320\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2321\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2322\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2323\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2324\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2325\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2326\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2327\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2328\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2329\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2330\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2331\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2332\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2333\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2334\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2335\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2336\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2337\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2338\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2339\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2340\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2341\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2342\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2343\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2344\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2345\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2346\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2347\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2348\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2349\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2350\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2351\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2352\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2353\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2354\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2355\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2356\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2357\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2358\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2359\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2360\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2361\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2362\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2363\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2364\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2365\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2366\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2367\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2368\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2369\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2370\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2371\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2372\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2373\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2374\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2375\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2376\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2377\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2378\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2379\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2380\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2381\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2382\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2383\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2384\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2385\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2386\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2387\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2388\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2389\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2390\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2391\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2392\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2393\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2394\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2395\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2396\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2397\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2398\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2399\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2400\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2401\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2402\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2403\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2404\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2405\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2406\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2407\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2408\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2409\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2410\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2411\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2412\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2413\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2414\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2415\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2416\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2417\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2418\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2419\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2420\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2421\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2422\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2423\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2424\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2425\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2426\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2427\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2428\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2429\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2430\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2431\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2432\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2433\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2434\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2435\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2436\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2437\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2438\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2439\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2440\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2441\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2442\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2443\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2444\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2445\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2446\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2447\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2448\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2449\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2450\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2451\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2452\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2453\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2454\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2455\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2456\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2457\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2458\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2459\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2460\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2461\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2462\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2463\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2464\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2465\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2466\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2467\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2468\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2469\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2470\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2471\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2472\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2473\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2474\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2475\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2476\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2477\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2478\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2479\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2480\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2481\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2482\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2483\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2484\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2485\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2486\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2487\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2488\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2489\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2490\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2491\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2492\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2493\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2494\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2495\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2496\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2497\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2498\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2499\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2500\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2501\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2502\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2503\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2504\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2505\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2506\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2507\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2508\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2509\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2510\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2511\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2512\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2513\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2514\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2515\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2516\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2517\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2518\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2519\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2520\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2521\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2522\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2523\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2524\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2525\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2526\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2527\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2528\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2529\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2530\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2531\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2532\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2533\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2534\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2535\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2536\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2537\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2538\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2539\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2540\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2541\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2542\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2543\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2544\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2545\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2546\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2547\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2548\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2549\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2550\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2551\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2552\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2553\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2554\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2555\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2556\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2557\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2558\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2559\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2560\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2561\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2562\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2563\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2564\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2565\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2566\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2567\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2568\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2569\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2570\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2571\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2572\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2573\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2574\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2575\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2576\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2577\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2578\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2579\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2580\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2581\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2582\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2583\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2584\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2585\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2586\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2587\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2588\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2589\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2590\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2591\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2592\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2593\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2594\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2595\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2596\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2597\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2598\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2599\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2600\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2601\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2602\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2603\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2604\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2605\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2606\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2607\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2608\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2609\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2610\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2611\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2612\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2613\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2614\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2615\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2616\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2617\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2618\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2619\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2620\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2621\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2622\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2623\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2624\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2625\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2626\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2627\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2628\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2629\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2630\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2631\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2632\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2633\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2634\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2635\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2636\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2637\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2638\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2639\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2640\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2641\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2642\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2643\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2644\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2645\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2646\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2647\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2648\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2649\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2650\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2651\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2652\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2653\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2654\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2655\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2656\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2657\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2658\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2659\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2660\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2661\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2662\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2663\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2664\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2665\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2666\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2667\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2668\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2669\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2670\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2671\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2672\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2673\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2674\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2675\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2676\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2677\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2678\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2679\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2680\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2681\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2682\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2683\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2684\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2685\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2686\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2687\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2688\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2689\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2690\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2691\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2692\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2693\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2694\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2695\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2696\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2697\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2698\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2699\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2700\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2701\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2702\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2703\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2704\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2705\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2706\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2707\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2708\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2709\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2710\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2711\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2712\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2713\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2714\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2715\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2716\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2717\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2718\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2719\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2720\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2721\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2722\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2723\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2724\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2725\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2726\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2727\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2728\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2729\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2730\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2731\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2732\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2733\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2734\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2735\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2736\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2737\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2738\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2739\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2740\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2741\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2742\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2743\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2744\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2745\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2746\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2747\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2748\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2749\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2750\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2751\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2752\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2753\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2754\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2755\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2756\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2757\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2758\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2759\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2760\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2761\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2762\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2763\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2764\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2765\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2766\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2767\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2768\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2769\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2770\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2771\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2772\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2773\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2774\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2775\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2776\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2777\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2778\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2779\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2780\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2781\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2782\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2783\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2784\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2785\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2786\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2787\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2788\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2789\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2790\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2791\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2792\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2793\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2794\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2795\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2796\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2797\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2798\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2799\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2800\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2801\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2802\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2803\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2804\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2805\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2806\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2807\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2808\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2809\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2810\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2811\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2812\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2813\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2814\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2815\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2816\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2817\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2818\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2819\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2820\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2821\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2822\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2823\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2824\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2825\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2826\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2827\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2828\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2829\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2830\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2831\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2832\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2833\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2834\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2835\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2836\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2837\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2838\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2839\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2840\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2841\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2842\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2843\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2844\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2845\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2846\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2847\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2848\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2849\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2850\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2851\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2852\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2853\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2854\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2855\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2856\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2857\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2858\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2859\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2860\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2861\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2862\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2863\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2864\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2865\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2866\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2867\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2868\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2869\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2870\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2871\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2872\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2873\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2874\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2875\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2876\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2877\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2878\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2879\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2880\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2881\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2882\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2883\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2884\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2885\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2886\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2887\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2888\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2889\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2890\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2891\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2892\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2893\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2894\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2895\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2896\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2897\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2898\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2899\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2900\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2901\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2902\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2903\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2904\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2905\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2906\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2907\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2908\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2909\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2910\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2911\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2912\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2913\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2914\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2915\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2916\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2917\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2918\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2919\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2920\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2921\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2922\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2923\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2924\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2925\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2926\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2927\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2928\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2929\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2930\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2931\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2932\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2933\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2934\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2935\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2936\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2937\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2938\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2939\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2940\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2941\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2942\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2943\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2944\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2945\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2946\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2947\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2948\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2949\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2950\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2951\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2952\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2953\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2954\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2955\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2956\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2957\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2958\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2959\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2960\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2961\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2962\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2963\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2964\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2965\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2966\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2967\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2968\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2969\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2970\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2971\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2972\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2973\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2974\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2975\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2976\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2977\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2978\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2979\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2980\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2981\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2982\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2983\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2984\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2985\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2986\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2987\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2988\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2989\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2990\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2991\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2992\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2993\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2994\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2995\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2996\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2997\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2998\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"2999\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3000\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3001\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3002\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3003\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3004\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3005\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3006\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3007\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3008\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3009\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3010\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3011\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3012\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3013\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3014\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3015\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3016\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3017\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3018\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3019\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3020\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3021\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3022\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3023\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3024\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3025\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3026\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3027\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3028\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3029\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3030\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3031\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3032\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3033\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3034\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3035\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3036\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3037\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3038\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3039\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3040\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3041\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3042\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3043\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3044\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3045\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3046\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3047\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3048\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3049\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3050\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3051\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3052\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3053\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3054\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3055\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3056\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3057\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3058\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3059\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3060\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3061\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3062\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3063\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3064\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3065\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3066\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3067\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3068\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3069\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3070\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3071\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3072\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3073\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3074\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3075\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3076\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3077\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3078\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3079\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3080\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3081\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3082\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3083\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3084\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3085\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3086\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3087\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3088\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3089\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3090\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3091\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3092\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3093\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3094\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3095\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3096\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3097\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3098\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3099\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3100\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3101\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3102\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3103\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3104\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3105\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3106\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3107\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3108\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3109\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3110\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3111\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3112\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3113\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3114\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3115\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3116\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3117\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3118\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3119\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3120\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3121\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3122\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3123\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3124\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3125\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3126\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3127\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3128\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3129\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3130\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3131\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3132\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3133\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3134\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3135\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3136\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3137\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3138\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3139\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3140\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3141\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3142\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3143\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3144\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3145\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3146\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3147\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3148\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3149\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3150\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3151\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3152\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3153\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3154\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3155\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3156\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3157\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3158\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3159\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3160\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3161\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3162\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3163\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3164\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3165\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3166\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3167\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3168\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3169\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3170\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3171\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3172\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3173\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3174\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3175\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3176\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3177\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3178\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3179\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3180\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3181\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3182\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3183\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3184\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3185\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3186\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3187\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3188\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3189\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3190\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3191\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3192\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3193\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3194\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3195\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3196\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3197\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3198\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3199\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3200\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3201\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3202\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3203\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3204\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3205\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3206\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3207\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3208\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3209\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3210\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3211\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3212\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3213\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3214\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3215\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3216\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3217\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3218\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3219\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3220\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3221\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3222\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3223\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3224\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3225\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3226\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3227\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3228\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3229\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3230\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3231\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3232\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3233\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3234\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3235\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3236\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3237\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3238\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3239\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3240\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3241\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3242\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3243\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3244\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3245\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3246\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3247\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3248\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3249\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3250\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3251\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3252\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3253\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3254\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3255\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3256\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3257\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3258\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3259\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3260\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3261\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3262\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3263\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3264\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3265\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3266\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3267\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3268\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3269\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3270\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3271\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3272\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3273\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3274\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3275\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3276\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3277\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3278\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3279\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3280\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3281\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3282\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3283\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3284\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3285\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3286\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3287\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3288\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3289\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3290\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3291\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3292\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3293\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3294\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3295\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3296\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3297\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3298\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3299\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3300\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3301\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3302\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3303\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3304\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3305\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3306\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3307\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3308\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3309\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3310\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3311\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3312\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3313\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3314\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3315\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3316\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3317\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3318\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3319\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3320\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3321\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3322\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3323\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3324\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3325\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3326\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3327\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3328\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3329\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3330\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3331\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3332\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3333\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3334\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3335\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3336\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3337\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3338\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3339\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3340\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3341\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3342\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3343\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3344\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3345\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3346\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3347\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3348\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3349\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3350\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3351\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3352\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3353\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3354\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3355\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3356\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3357\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3358\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3359\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3360\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3361\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3362\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3363\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3364\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3365\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3366\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3367\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3368\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3369\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3370\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3371\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3372\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3373\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3374\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3375\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3376\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3377\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3378\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3379\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3380\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3381\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3382\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3383\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3384\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3385\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3386\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3387\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3388\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3389\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3390\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3391\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3392\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3393\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3394\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3395\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3396\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3397\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3398\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3399\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3400\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3401\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3402\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3403\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3404\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3405\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3406\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3407\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3408\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3409\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3410\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3411\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3412\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3413\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3414\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3415\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3416\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3417\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3418\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3419\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3420\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3421\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3422\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3423\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3424\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3425\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3426\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3427\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3428\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3429\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3430\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3431\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3432\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3433\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3434\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3435\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3436\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3437\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3438\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3439\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3440\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3441\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3442\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3443\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3444\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3445\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3446\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3447\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3448\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3449\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3450\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3451\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3452\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3453\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3454\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3455\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3456\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3457\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3458\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3459\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3460\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3461\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3462\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3463\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3464\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3465\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3466\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3467\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3468\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3469\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3470\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3471\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3472\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3473\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3474\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3475\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3476\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3477\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3478\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3479\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3480\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3481\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3482\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3483\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3484\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3485\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3486\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3487\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3488\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3489\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3490\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3491\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3492\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3493\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3494\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3495\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3496\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3497\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3498\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3499\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3500\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3501\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3502\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3503\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3504\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3505\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3506\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3507\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3508\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3509\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3510\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3511\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3512\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3513\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3514\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3515\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3516\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3517\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3518\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3519\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3520\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3521\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3522\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3523\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3524\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3525\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3526\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3527\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3528\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3529\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3530\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3531\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3532\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3533\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3534\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3535\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3536\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3537\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3538\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3539\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3540\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3541\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3542\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3543\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3544\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3545\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3546\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3547\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3548\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3549\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3550\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3551\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3552\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3553\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3554\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3555\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3556\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3557\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3558\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3559\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3560\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3561\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3562\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3563\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3564\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3565\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3566\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3567\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3568\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3569\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3570\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3571\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3572\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3573\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3574\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3575\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3576\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3577\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3578\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3579\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3580\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3581\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3582\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3583\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3584\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3585\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3586\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3587\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3588\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3589\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3590\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3591\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3592\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3593\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3594\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3595\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3596\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3597\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3598\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3599\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3600\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3601\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3602\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3603\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3604\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3605\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3606\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3607\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3608\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3609\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3610\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3611\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3612\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3613\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3614\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3615\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3616\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3617\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3618\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3619\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3620\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3621\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3622\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3623\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3624\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3625\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3626\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3627\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3628\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3629\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3630\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3631\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3632\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3633\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3634\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3635\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3636\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3637\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3638\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3639\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3640\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3641\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3642\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3643\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3644\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3645\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3646\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3647\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3648\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3649\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3650\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3651\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3652\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3653\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3654\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3655\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3656\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3657\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3658\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3659\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3660\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3661\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3662\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3663\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3664\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3665\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3666\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3667\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3668\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3669\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3670\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3671\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3672\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3673\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3674\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3675\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3676\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3677\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3678\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3679\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3680\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3681\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3682\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3683\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3684\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3685\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3686\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3687\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3688\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3689\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3690\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3691\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3692\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3693\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3694\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3695\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3696\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3697\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3698\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3699\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3700\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3701\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3702\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3703\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3704\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3705\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3706\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3707\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3708\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3709\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3710\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3711\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3712\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3713\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3714\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3715\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3716\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3717\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3718\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3719\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3720\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3721\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3722\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3723\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3724\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3725\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3726\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3727\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3728\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3729\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3730\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3731\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3732\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3733\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3734\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3735\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3736\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3737\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3738\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3739\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3740\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3741\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3742\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3743\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3744\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3745\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3746\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3747\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3748\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3749\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3750\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3751\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3752\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3753\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3754\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3755\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3756\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3757\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3758\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3759\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3760\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3761\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3762\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3763\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3764\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3765\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3766\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3767\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3768\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3769\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3770\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3771\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3772\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3773\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3774\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3775\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3776\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3777\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3778\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3779\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3780\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3781\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3782\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3783\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3784\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3785\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3786\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3787\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3788\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3789\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3790\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3791\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3792\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3793\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3794\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3795\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3796\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3797\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3798\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3799\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3800\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3801\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3802\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3803\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3804\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3805\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3806\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3807\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3808\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3809\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3810\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3811\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3812\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3813\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3814\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3815\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3816\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3817\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3818\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3819\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3820\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3821\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3822\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3823\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3824\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3825\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3826\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3827\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3828\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3829\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3830\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3831\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3832\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3833\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3834\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3835\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3836\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3837\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3838\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3839\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3840\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3841\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3842\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3843\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3844\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3845\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3846\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3847\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3848\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3849\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3850\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3851\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3852\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3853\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3854\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3855\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3856\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3857\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3858\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3859\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3860\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3861\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3862\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3863\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3864\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3865\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3866\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3867\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3868\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3869\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3870\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3871\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3872\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3873\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3874\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3875\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3876\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3877\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3878\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3879\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3880\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3881\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3882\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3883\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3884\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3885\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3886\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3887\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3888\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3889\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3890\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3891\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3892\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3893\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3894\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3895\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3896\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3897\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3898\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3899\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3900\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3901\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3902\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3903\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3904\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3905\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3906\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3907\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3908\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3909\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3910\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3911\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3912\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3913\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3914\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3915\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3916\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3917\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3918\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3919\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3920\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3921\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3922\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3923\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3924\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3925\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3926\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3927\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3928\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3929\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3930\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3931\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3932\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3933\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3934\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3935\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3936\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3937\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3938\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3939\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3940\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3941\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3942\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3943\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3944\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3945\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3946\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3947\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3948\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3949\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3950\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3951\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3952\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3953\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3954\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3955\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3956\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3957\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3958\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3959\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3960\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3961\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3962\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3963\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3964\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3965\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3966\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3967\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3968\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3969\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3970\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3971\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3972\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3973\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3974\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3975\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3976\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3977\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3978\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3979\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3980\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3981\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3982\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3983\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3984\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3985\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3986\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3987\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3988\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3989\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3990\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3991\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3992\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3993\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3994\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3995\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3996\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3997\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3998\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"3999\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4000\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4001\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4002\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4003\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4004\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4005\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4006\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4007\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4008\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4009\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4010\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4011\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4012\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4013\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4014\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4015\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4016\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4017\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4018\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4019\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4020\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4021\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4022\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4023\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4024\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4025\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4026\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4027\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4028\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4029\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4030\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4031\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4032\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4033\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4034\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4035\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4036\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4037\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4038\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4039\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4040\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4041\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4042\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4043\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4044\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4045\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4046\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4047\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4048\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4049\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4050\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4051\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4052\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4053\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4054\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4055\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4056\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4057\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4058\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4059\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4060\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4061\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4062\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4063\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4064\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4065\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4066\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4067\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4068\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4069\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4070\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4071\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4072\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4073\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4074\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4075\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4076\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4077\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4078\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4079\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4080\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4081\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4082\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4083\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4084\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4085\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4086\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4087\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4088\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4089\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4090\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4091\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4092\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4093\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4094\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4095\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4096\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4097\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4098\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4099\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4100\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4101\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4102\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4103\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4104\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4105\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4106\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4107\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4108\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4109\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4110\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4111\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4112\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4113\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4114\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4115\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4116\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4117\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4118\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4119\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4120\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4121\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4122\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4123\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4124\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4125\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4126\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4127\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4128\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4129\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4130\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4131\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4132\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4133\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4134\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4135\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4136\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4137\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4138\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4139\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4140\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4141\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4142\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4143\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4144\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4145\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4146\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4147\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4148\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4149\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4150\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4151\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4152\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4153\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4154\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4155\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4156\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4157\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4158\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4159\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4160\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4161\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4162\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4163\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4164\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4165\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4166\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4167\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4168\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4169\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4170\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4171\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4172\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4173\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4174\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4175\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4176\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4177\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4178\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4179\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4180\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4181\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4182\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4183\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4184\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4185\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4186\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4187\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4188\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4189\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4190\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4191\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4192\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4193\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4194\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4195\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4196\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4197\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4198\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4199\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4200\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4201\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4202\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4203\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4204\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4205\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4206\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4207\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4208\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4209\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4210\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4211\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4212\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4213\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4214\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4215\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4216\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4217\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4218\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4219\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4220\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4221\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4222\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4223\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4224\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4225\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4226\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4227\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4228\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4229\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4230\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4231\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4232\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4233\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4234\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4235\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4236\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4237\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4238\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4239\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4240\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4241\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4242\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4243\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4244\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4245\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4246\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4247\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4248\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4249\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4250\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4251\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4252\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4253\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4254\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4255\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4256\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4257\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4258\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4259\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4260\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4261\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4262\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4263\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4264\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4265\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4266\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4267\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4268\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4269\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4270\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4271\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4272\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4273\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4274\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4275\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4276\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4277\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4278\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4279\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4280\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4281\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4282\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4283\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4284\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4285\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4286\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4287\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4288\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4289\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4290\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4291\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4292\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4293\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4294\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4295\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4296\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4297\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4298\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4299\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4300\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4301\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4302\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4303\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4304\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4305\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4306\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4307\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4308\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4309\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4310\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4311\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4312\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4313\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4314\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4315\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4316\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4317\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4318\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4319\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4320\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4321\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4322\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4323\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4324\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4325\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4326\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4327\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4328\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4329\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4330\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4331\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4332\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4333\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4334\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4335\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4336\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4337\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4338\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4339\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4340\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4341\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4342\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4343\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4344\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4345\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4346\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4347\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4348\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4349\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4350\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4351\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4352\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4353\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4354\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4355\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4356\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4357\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4358\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4359\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4360\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4361\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4362\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4363\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4364\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4365\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4366\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4367\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4368\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4369\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4370\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4371\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4372\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4373\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4374\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4375\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4376\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4377\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4378\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4379\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4380\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4381\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4382\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4383\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4384\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4385\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4386\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4387\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4388\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4389\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4390\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4391\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4392\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4393\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4394\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4395\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4396\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4397\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4398\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4399\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4400\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4401\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4402\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4403\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4404\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4405\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4406\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4407\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4408\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4409\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4410\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4411\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4412\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4413\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4414\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4415\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4416\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4417\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4418\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4419\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4420\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4421\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4422\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4423\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4424\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4425\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4426\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4427\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4428\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4429\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4430\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4431\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4432\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4433\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4434\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4435\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4436\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4437\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4438\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4439\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4440\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4441\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4442\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4443\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4444\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4445\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4446\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4447\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4448\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4449\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4450\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4451\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4452\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4453\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4454\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4455\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4456\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4457\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4458\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4459\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4460\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4461\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4462\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4463\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4464\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4465\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4466\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4467\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4468\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4469\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4470\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4471\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4472\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4473\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4474\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4475\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4476\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4477\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4478\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4479\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4480\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4481\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4482\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4483\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4484\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4485\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4486\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4487\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4488\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4489\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4490\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4491\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4492\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4493\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4494\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4495\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4496\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4497\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4498\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4499\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4500\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4501\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4502\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4503\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4504\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4505\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4506\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4507\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4508\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4509\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4510\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4511\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4512\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4513\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4514\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4515\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4516\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4517\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4518\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4519\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4520\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4521\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4522\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4523\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4524\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4525\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4526\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4527\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4528\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4529\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4530\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4531\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4532\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4533\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4534\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4535\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4536\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4537\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4538\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4539\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4540\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4541\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4542\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4543\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4544\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4545\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4546\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4547\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4548\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4549\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4550\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4551\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4552\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4553\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4554\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4555\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4556\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4557\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4558\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4559\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4560\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4561\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4562\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4563\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4564\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4565\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4566\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4567\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4568\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4569\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4570\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4571\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4572\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4573\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4574\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4575\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4576\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4577\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4578\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4579\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4580\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4581\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4582\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4583\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4584\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4585\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4586\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4587\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4588\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4589\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4590\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4591\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4592\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4593\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4594\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4595\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4596\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4597\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4598\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4599\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4600\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4601\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4602\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4603\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4604\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4605\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4606\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4607\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4608\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4609\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4610\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4611\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4612\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4613\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4614\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4615\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4616\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4617\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4618\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4619\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4620\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4621\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4622\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4623\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4624\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4625\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4626\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4627\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4628\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4629\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4630\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4631\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4632\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4633\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4634\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4635\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4636\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4637\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4638\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4639\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4640\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4641\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4642\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4643\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4644\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4645\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4646\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4647\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4648\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4649\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4650\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4651\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4652\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4653\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4654\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4655\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4656\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4657\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4658\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4659\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4660\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4661\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4662\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4663\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4664\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4665\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4666\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4667\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4668\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4669\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4670\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4671\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4672\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4673\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4674\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4675\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4676\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4677\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4678\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4679\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4680\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4681\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4682\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4683\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4684\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4685\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4686\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4687\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4688\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4689\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4690\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4691\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4692\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4693\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4694\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4695\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4696\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4697\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4698\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4699\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4700\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4701\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4702\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4703\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4704\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4705\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4706\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4707\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4708\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4709\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4710\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4711\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4712\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4713\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4714\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4715\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4716\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4717\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4718\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4719\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4720\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4721\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4722\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4723\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4724\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4725\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4726\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4727\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4728\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4729\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4730\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4731\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4732\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4733\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4734\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4735\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4736\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4737\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4738\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4739\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4740\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4741\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4742\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4743\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4744\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4745\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4746\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4747\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4748\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4749\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4750\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4751\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4752\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4753\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4754\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4755\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4756\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4757\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4758\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4759\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4760\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4761\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4762\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4763\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4764\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4765\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4766\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4767\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4768\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4769\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4770\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4771\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4772\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4773\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4774\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4775\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4776\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4777\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4778\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4779\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4780\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4781\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4782\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4783\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4784\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4785\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4786\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4787\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4788\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4789\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4790\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4791\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4792\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4793\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4794\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4795\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4796\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4797\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4798\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4799\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4800\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4801\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4802\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4803\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4804\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4805\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4806\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4807\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4808\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4809\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4810\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4811\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4812\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4813\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4814\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4815\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4816\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4817\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4818\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4819\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4820\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4821\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4822\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4823\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4824\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4825\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4826\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4827\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4828\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4829\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4830\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4831\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4832\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4833\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4834\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4835\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4836\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4837\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4838\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4839\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4840\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4841\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4842\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4843\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4844\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4845\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4846\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4847\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4848\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4849\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4850\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4851\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4852\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4853\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4854\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4855\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4856\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4857\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4858\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4859\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4860\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4861\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4862\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4863\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4864\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4865\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4866\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4867\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4868\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4869\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4870\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4871\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4872\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4873\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4874\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4875\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4876\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4877\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4878\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4879\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4880\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4881\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4882\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4883\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4884\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4885\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4886\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4887\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4888\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4889\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4890\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4891\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4892\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4893\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4894\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4895\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4896\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4897\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4898\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4899\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4900\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4901\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4902\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4903\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4904\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4905\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4906\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4907\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4908\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4909\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4910\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4911\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4912\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4913\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4914\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4915\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4916\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4917\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4918\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4919\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4920\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4921\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4922\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4923\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4924\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4925\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4926\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4927\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4928\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4929\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4930\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4931\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4932\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4933\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4934\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4935\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4936\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4937\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4938\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4939\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4940\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4941\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4942\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4943\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4944\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4945\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4946\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4947\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4948\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4949\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4950\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4951\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4952\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4953\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4954\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4955\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4956\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4957\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4958\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4959\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4960\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4961\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4962\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4963\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4964\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4965\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4966\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4967\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4968\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4969\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4970\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4971\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4972\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4973\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4974\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4975\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4976\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4977\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4978\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4979\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4980\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4981\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4982\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4983\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4984\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4985\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4986\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4987\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4988\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4989\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4990\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4991\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4992\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4993\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4994\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4995\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4996\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4997\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4998\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"4999\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"}},\"source\":{\"0\":\"
Twitter for Android<\\/a>\",\"1\":\"Twitter Web App<\\/a>\",\"2\":\"Twitter for Android<\\/a>\",\"3\":\"Twitter for Android<\\/a>\",\"4\":\"Twitter for Android<\\/a>\",\"5\":\"Twitter for Android<\\/a>\",\"6\":\"Twitter for Android<\\/a>\",\"7\":\"Twitter for Android<\\/a>\",\"8\":\"Twitter Web App<\\/a>\",\"9\":\"Twitter Web App<\\/a>\",\"10\":\"Twitter Web App<\\/a>\",\"11\":\"Twitter Web App<\\/a>\",\"12\":\"Twitter Web App<\\/a>\",\"13\":\"Twitter Web App<\\/a>\",\"14\":\"Twitter for Android<\\/a>\",\"15\":\"Twitter Web App<\\/a>\",\"16\":\"Twitter Web App<\\/a>\",\"17\":\"Twitter for iPhone<\\/a>\",\"18\":\"Twitter Web App<\\/a>\",\"19\":\"Twitter Web App<\\/a>\",\"20\":\"Twitter for iPhone<\\/a>\",\"21\":\"Twitter Web App<\\/a>\",\"22\":\"notice.com.ng<\\/a>\",\"23\":\"Twitter Web App<\\/a>\",\"24\":\"Twitter Web App<\\/a>\",\"25\":\"IFTTT<\\/a>\",\"26\":\"Twitter for iPhone<\\/a>\",\"27\":\"Twitter Web App<\\/a>\",\"28\":\"Twitter for Android<\\/a>\",\"29\":\"Twitter for Android<\\/a>\",\"30\":\"Twitter for iPhone<\\/a>\",\"31\":\"Twitter Web App<\\/a>\",\"32\":\"Twitter for Android<\\/a>\",\"33\":\"Twitter for Android<\\/a>\",\"34\":\"Twitter for Android<\\/a>\",\"35\":\"Twitter for Android<\\/a>\",\"36\":\"Twitter Web App<\\/a>\",\"37\":\"Twitter Web App<\\/a>\",\"38\":\"Twitter Web App<\\/a>\",\"39\":\"BobojayTV News<\\/a>\",\"40\":\"BobojayTV News<\\/a>\",\"41\":\"BobojayTV News<\\/a>\",\"42\":\"Twitter Web App<\\/a>\",\"43\":\"Twitter for Android<\\/a>\",\"44\":\"Twitter for iPhone<\\/a>\",\"45\":\"Twitter for iPhone<\\/a>\",\"46\":\"Twitter for Android<\\/a>\",\"47\":\"Twitter Web App<\\/a>\",\"48\":\"Twitter Web App<\\/a>\",\"49\":\"Twitter for Android<\\/a>\",\"50\":\"Twitter Web App<\\/a>\",\"51\":\"Twitter for iPad<\\/a>\",\"52\":\"Twitter for Android<\\/a>\",\"53\":\"Twitter for Android<\\/a>\",\"54\":\"Twitter for iPhone<\\/a>\",\"55\":\"Twitter for Android<\\/a>\",\"56\":\"Twitter for Android<\\/a>\",\"57\":\"Twitter Web App<\\/a>\",\"58\":\"Twitter for Android<\\/a>\",\"59\":\"WordPress.com<\\/a>\",\"60\":\"Twitter for iPhone<\\/a>\",\"61\":\"Twitter for iPhone<\\/a>\",\"62\":\"Twitter Web App<\\/a>\",\"63\":\"Twitter for Android<\\/a>\",\"64\":\"Twitter for Android<\\/a>\",\"65\":\"Twitter for iPhone<\\/a>\",\"66\":\"Twitter for Android<\\/a>\",\"67\":\"Twitter for Android<\\/a>\",\"68\":\"Twitter for iPhone<\\/a>\",\"69\":\"Twitter for Android<\\/a>\",\"70\":\"Twitter for iPhone<\\/a>\",\"71\":\"Twitter for Android<\\/a>\",\"72\":\"Twitter for iPhone<\\/a>\",\"73\":\"Twitter for Android<\\/a>\",\"74\":\"Twitter for iPhone<\\/a>\",\"75\":\"Twitter for Android<\\/a>\",\"76\":\"Twitter for Android<\\/a>\",\"77\":\"Twitter for iPhone<\\/a>\",\"78\":\"Twitter for iPhone<\\/a>\",\"79\":\"Twitter for Android<\\/a>\",\"80\":\"Twitter for Android<\\/a>\",\"81\":\"Twitter for iPhone<\\/a>\",\"82\":\"Twitter for iPhone<\\/a>\",\"83\":\"dlvr.it<\\/a>\",\"84\":\"Twitter for Android<\\/a>\",\"85\":\"Twitter for Android<\\/a>\",\"86\":\"Twitter Web App<\\/a>\",\"87\":\"Twitter Web App<\\/a>\",\"88\":\"Twitter for Android<\\/a>\",\"89\":\"Twitter Web App<\\/a>\",\"90\":\"Twitter for Android<\\/a>\",\"91\":\"Twitter for iPhone<\\/a>\",\"92\":\"Twitter for Android<\\/a>\",\"93\":\"Twitter for Android<\\/a>\",\"94\":\"Twitter for iPhone<\\/a>\",\"95\":\"Twitter for iPhone<\\/a>\",\"96\":\"Twitter for iPhone<\\/a>\",\"97\":\"Twitter for iPhone<\\/a>\",\"98\":\"Twitter for iPhone<\\/a>\",\"99\":\"Twitter for iPhone<\\/a>\",\"100\":\"Twitter for iPhone<\\/a>\",\"101\":\"Twitter for iPhone<\\/a>\",\"102\":\"Twitter for iPhone<\\/a>\",\"103\":\"Twitter for iPhone<\\/a>\",\"104\":\"Twitter for iPhone<\\/a>\",\"105\":\"Twitter for iPhone<\\/a>\",\"106\":\"Twitter for iPhone<\\/a>\",\"107\":\"Twitter for Android<\\/a>\",\"108\":\"Twitter for Android<\\/a>\",\"109\":\"Twitter for Android<\\/a>\",\"110\":\"Twitter Web App<\\/a>\",\"111\":\"Twitter for Android<\\/a>\",\"112\":\"Twitter for iPhone<\\/a>\",\"113\":\"Twitter for Android<\\/a>\",\"114\":\"Twitter for Android<\\/a>\",\"115\":\"Twitter for iPhone<\\/a>\",\"116\":\"Twitter for Android<\\/a>\",\"117\":\"Twitter for iPhone<\\/a>\",\"118\":\"Twitter for Android<\\/a>\",\"119\":\"Twitter for Android<\\/a>\",\"120\":\"Twitter for Android<\\/a>\",\"121\":\"Instagram<\\/a>\",\"122\":\"Twitter for Android<\\/a>\",\"123\":\"Twitter for Android<\\/a>\",\"124\":\"Twitter for Android<\\/a>\",\"125\":\"Twitter Web App<\\/a>\",\"126\":\"Twitter Web App<\\/a>\",\"127\":\"Twitter for iPhone<\\/a>\",\"128\":\"Twitter for Android<\\/a>\",\"129\":\"Twitter for Android<\\/a>\",\"130\":\"Twitter for Android<\\/a>\",\"131\":\"Twitter for Android<\\/a>\",\"132\":\"Twitter for Android<\\/a>\",\"133\":\"Twitter for Android<\\/a>\",\"134\":\"Twitter for Android<\\/a>\",\"135\":\"Twitter for iPhone<\\/a>\",\"136\":\"Twitter for Android<\\/a>\",\"137\":\"Twitter for Android<\\/a>\",\"138\":\"Twitter Web App<\\/a>\",\"139\":\"Twitter for Android<\\/a>\",\"140\":\"Twitter for Android<\\/a>\",\"141\":\"Twitter for Android<\\/a>\",\"142\":\"Twitter for Android<\\/a>\",\"143\":\"Twitter for Android<\\/a>\",\"144\":\"Twitter for Android<\\/a>\",\"145\":\"Twitter for Android<\\/a>\",\"146\":\"Twitter for Android<\\/a>\",\"147\":\"Twitter for Android<\\/a>\",\"148\":\"Twitter for Android<\\/a>\",\"149\":\"Twitter for Android<\\/a>\",\"150\":\"Twitter for Android<\\/a>\",\"151\":\"Twitter for iPhone<\\/a>\",\"152\":\"Twitter Web App<\\/a>\",\"153\":\"Twitter for Android<\\/a>\",\"154\":\"Twitter for iPhone<\\/a>\",\"155\":\"Twitter for iPhone<\\/a>\",\"156\":\"Twitter for iPhone<\\/a>\",\"157\":\"Twitter for Android<\\/a>\",\"158\":\"Twitter for Android<\\/a>\",\"159\":\"Twitter for Android<\\/a>\",\"160\":\"Twitter for Android<\\/a>\",\"161\":\"Twitter for Android<\\/a>\",\"162\":\"Twitter for Android<\\/a>\",\"163\":\"Twitter for Android<\\/a>\",\"164\":\"Twitter for Android<\\/a>\",\"165\":\"Twitter for Android<\\/a>\",\"166\":\"Twitter for Android<\\/a>\",\"167\":\"Twitter for Android<\\/a>\",\"168\":\"Twitter for iPhone<\\/a>\",\"169\":\"Twitter for Android<\\/a>\",\"170\":\"Twitter for iPhone<\\/a>\",\"171\":\"Twitter for Android<\\/a>\",\"172\":\"Twitter for iPhone<\\/a>\",\"173\":\"Twitter for Android<\\/a>\",\"174\":\"Twitter for Android<\\/a>\",\"175\":\"Twitter for Android<\\/a>\",\"176\":\"Twitter Web App<\\/a>\",\"177\":\"Twitter for iPhone<\\/a>\",\"178\":\"Twitter for iPhone<\\/a>\",\"179\":\"Twitter for Android<\\/a>\",\"180\":\"Twitter for iPhone<\\/a>\",\"181\":\"Twitter for iPhone<\\/a>\",\"182\":\"Twitter for Android<\\/a>\",\"183\":\"Twitter for Android<\\/a>\",\"184\":\"Twitter for iPhone<\\/a>\",\"185\":\"Twitter for Android<\\/a>\",\"186\":\"Twitter for Android<\\/a>\",\"187\":\"Twitter for Android<\\/a>\",\"188\":\"Twitter for iPhone<\\/a>\",\"189\":\"Twitter for Android<\\/a>\",\"190\":\"Twitter for Android<\\/a>\",\"191\":\"Twitter for Android<\\/a>\",\"192\":\"Twitter for Android<\\/a>\",\"193\":\"Twitter for Android<\\/a>\",\"194\":\"Twitter for iPhone<\\/a>\",\"195\":\"Twitter for Android<\\/a>\",\"196\":\"Twitter for iPhone<\\/a>\",\"197\":\"Twitter for Android<\\/a>\",\"198\":\"Twitter for Android<\\/a>\",\"199\":\"Twitter for Android<\\/a>\",\"200\":\"Twitter for Android<\\/a>\",\"201\":\"Twitter for Android<\\/a>\",\"202\":\"Twitter for Android<\\/a>\",\"203\":\"Twitter for iPhone<\\/a>\",\"204\":\"Twitter for iPhone<\\/a>\",\"205\":\"Twitter for Android<\\/a>\",\"206\":\"Twitter for Android<\\/a>\",\"207\":\"Twitter for iPhone<\\/a>\",\"208\":\"Twitter Web App<\\/a>\",\"209\":\"Twitter Web App<\\/a>\",\"210\":\"Twitter for Android<\\/a>\",\"211\":\"Twitter Web App<\\/a>\",\"212\":\"Twitter for Android<\\/a>\",\"213\":\"Twitter for Android<\\/a>\",\"214\":\"Twitter for Android<\\/a>\",\"215\":\"Twitter for Android<\\/a>\",\"216\":\"Twitter for Android<\\/a>\",\"217\":\"Twitter for iPhone<\\/a>\",\"218\":\"Twitter for Android<\\/a>\",\"219\":\"Twitter for Android<\\/a>\",\"220\":\"Twitter for Android<\\/a>\",\"221\":\"Twitter for Android<\\/a>\",\"222\":\"Twitter for Android<\\/a>\",\"223\":\"Twitter for Android<\\/a>\",\"224\":\"Twitter for Android<\\/a>\",\"225\":\"Twitter for Android<\\/a>\",\"226\":\"Twitter for Android<\\/a>\",\"227\":\"Twitter for Android<\\/a>\",\"228\":\"Twitter for Android<\\/a>\",\"229\":\"Twitter Web App<\\/a>\",\"230\":\"Twitter for Android<\\/a>\",\"231\":\"Twitter for Android<\\/a>\",\"232\":\"Twitter for Android<\\/a>\",\"233\":\"Twitter for Android<\\/a>\",\"234\":\"Twitter for Android<\\/a>\",\"235\":\"Twitter for Android<\\/a>\",\"236\":\"Twitter for Android<\\/a>\",\"237\":\"Twitter for Android<\\/a>\",\"238\":\"Twitter for Android<\\/a>\",\"239\":\"Twitter for iPhone<\\/a>\",\"240\":\"Twitter Web App<\\/a>\",\"241\":\"Twitter for Android<\\/a>\",\"242\":\"Twitter for Android<\\/a>\",\"243\":\"dlvr.it<\\/a>\",\"244\":\"Twitter for Android<\\/a>\",\"245\":\"Twitter for Android<\\/a>\",\"246\":\"Twitter for Android<\\/a>\",\"247\":\"Twitter for iPhone<\\/a>\",\"248\":\"Twitter for iPhone<\\/a>\",\"249\":\"Twitter for iPhone<\\/a>\",\"250\":\"Twitter for iPhone<\\/a>\",\"251\":\"Twitter for iPhone<\\/a>\",\"252\":\"Twitter for iPhone<\\/a>\",\"253\":\"Twitter for iPhone<\\/a>\",\"254\":\"Twitter for Android<\\/a>\",\"255\":\"Twitter for iPhone<\\/a>\",\"256\":\"Twitter for Android<\\/a>\",\"257\":\"Twitter for Android<\\/a>\",\"258\":\"Twitter for Android<\\/a>\",\"259\":\"Twitter for Android<\\/a>\",\"260\":\"Twitter for Android<\\/a>\",\"261\":\"Twitter for Android<\\/a>\",\"262\":\"Twitter for iPhone<\\/a>\",\"263\":\"Twitter for Android<\\/a>\",\"264\":\"Twitter for Android<\\/a>\",\"265\":\"Twitter for Android<\\/a>\",\"266\":\"Twitter for Android<\\/a>\",\"267\":\"Twitter for Android<\\/a>\",\"268\":\"Twitter for Android<\\/a>\",\"269\":\"Twitter for iPhone<\\/a>\",\"270\":\"Twitter for Android<\\/a>\",\"271\":\"Twitter for iPhone<\\/a>\",\"272\":\"Twitter for Android<\\/a>\",\"273\":\"Twitter for Android<\\/a>\",\"274\":\"Twitter for Android<\\/a>\",\"275\":\"Twitter for Android<\\/a>\",\"276\":\"Twitter for iPhone<\\/a>\",\"277\":\"Twitter for Android<\\/a>\",\"278\":\"Twitter for iPhone<\\/a>\",\"279\":\"Twitter for Android<\\/a>\",\"280\":\"Twitter for iPhone<\\/a>\",\"281\":\"Twitter for iPhone<\\/a>\",\"282\":\"Twitter for iPhone<\\/a>\",\"283\":\"Twitter for Android<\\/a>\",\"284\":\"Twitter for Android<\\/a>\",\"285\":\"Twitter for Android<\\/a>\",\"286\":\"Twitter for Android<\\/a>\",\"287\":\"Twitter for iPhone<\\/a>\",\"288\":\"Twitter for iPhone<\\/a>\",\"289\":\"Twitter for iPhone<\\/a>\",\"290\":\"Twitter for Android<\\/a>\",\"291\":\"Twitter for Android<\\/a>\",\"292\":\"Twitter for Android<\\/a>\",\"293\":\"Twitter for iPhone<\\/a>\",\"294\":\"Twitter for iPhone<\\/a>\",\"295\":\"Twitter for Android<\\/a>\",\"296\":\"Twitter for Android<\\/a>\",\"297\":\"Twitter for Android<\\/a>\",\"298\":\"Twitter for Android<\\/a>\",\"299\":\"Twitter for iPhone<\\/a>\",\"300\":\"Twitter for Android<\\/a>\",\"301\":\"Twitter for Android<\\/a>\",\"302\":\"Twitter for Android<\\/a>\",\"303\":\"Twitter for Android<\\/a>\",\"304\":\"Twitter for Android<\\/a>\",\"305\":\"Twitter for Android<\\/a>\",\"306\":\"Twitter for Android<\\/a>\",\"307\":\"Twitter for Android<\\/a>\",\"308\":\"Twitter for Android<\\/a>\",\"309\":\"Twitter for Android<\\/a>\",\"310\":\"Twitter for iPhone<\\/a>\",\"311\":\"Twitter for Android<\\/a>\",\"312\":\"Twitter for iPhone<\\/a>\",\"313\":\"Twitter for Android<\\/a>\",\"314\":\"Twitter for Android<\\/a>\",\"315\":\"Twitter for Android<\\/a>\",\"316\":\"Twitter for Android<\\/a>\",\"317\":\"Twitter for Android<\\/a>\",\"318\":\"Twitter for Android<\\/a>\",\"319\":\"Twitter for iPhone<\\/a>\",\"320\":\"Twitter for Android<\\/a>\",\"321\":\"Twitter for Android<\\/a>\",\"322\":\"Twitter for Android<\\/a>\",\"323\":\"Twitter for Android<\\/a>\",\"324\":\"Twitter for iPhone<\\/a>\",\"325\":\"Twitter for Android<\\/a>\",\"326\":\"Twitter for iPhone<\\/a>\",\"327\":\"Twitter for Android<\\/a>\",\"328\":\"Twitter Web App<\\/a>\",\"329\":\"Twitter for iPhone<\\/a>\",\"330\":\"Twitter for Android<\\/a>\",\"331\":\"Twitter for Android<\\/a>\",\"332\":\"Twitter for iPhone<\\/a>\",\"333\":\"Twitter for iPhone<\\/a>\",\"334\":\"Twitter for Android<\\/a>\",\"335\":\"Twitter Web App<\\/a>\",\"336\":\"Twitter for iPhone<\\/a>\",\"337\":\"Twitter for Android<\\/a>\",\"338\":\"Twitter Web App<\\/a>\",\"339\":\"Twitter for iPhone<\\/a>\",\"340\":\"Twitter for iPhone<\\/a>\",\"341\":\"Twitter for iPhone<\\/a>\",\"342\":\"Twitter for iPhone<\\/a>\",\"343\":\"Twitter for iPhone<\\/a>\",\"344\":\"Twitter for Android<\\/a>\",\"345\":\"Twitter for Android<\\/a>\",\"346\":\"Twitter for iPhone<\\/a>\",\"347\":\"Twitter for iPhone<\\/a>\",\"348\":\"Twitter for Android<\\/a>\",\"349\":\"Twitter for Android<\\/a>\",\"350\":\"Twitter for Android<\\/a>\",\"351\":\"Twitter for Android<\\/a>\",\"352\":\"Twitter for iPhone<\\/a>\",\"353\":\"Twitter for iPhone<\\/a>\",\"354\":\"Twitter for Android<\\/a>\",\"355\":\"Twitter for Android<\\/a>\",\"356\":\"Twitter for Android<\\/a>\",\"357\":\"Twitter for Android<\\/a>\",\"358\":\"Twitter for iPhone<\\/a>\",\"359\":\"Twitter for Android<\\/a>\",\"360\":\"Twitter for Android<\\/a>\",\"361\":\"Twitter for Android<\\/a>\",\"362\":\"Twitter for Android<\\/a>\",\"363\":\"Twitter for Android<\\/a>\",\"364\":\"Twitter for iPhone<\\/a>\",\"365\":\"Twitter for Android<\\/a>\",\"366\":\"Twitter for Android<\\/a>\",\"367\":\"Twitter for Android<\\/a>\",\"368\":\"Twitter for Android<\\/a>\",\"369\":\"Twitter for Android<\\/a>\",\"370\":\"Twitter for Android<\\/a>\",\"371\":\"Twitter for iPhone<\\/a>\",\"372\":\"Twitter for iPhone<\\/a>\",\"373\":\"Twitter for iPhone<\\/a>\",\"374\":\"Twitter for Android<\\/a>\",\"375\":\"Twitter for Android<\\/a>\",\"376\":\"Twitter for Android<\\/a>\",\"377\":\"Twitter for Android<\\/a>\",\"378\":\"Twitter for iPhone<\\/a>\",\"379\":\"Twitter for iPhone<\\/a>\",\"380\":\"Twitter for Android<\\/a>\",\"381\":\"Twitter for iPhone<\\/a>\",\"382\":\"Twitter for iPhone<\\/a>\",\"383\":\"Twitter for Android<\\/a>\",\"384\":\"Twitter for iPhone<\\/a>\",\"385\":\"Twitter for iPhone<\\/a>\",\"386\":\"Twitter for Android<\\/a>\",\"387\":\"Twitter for iPhone<\\/a>\",\"388\":\"Twitter for Android<\\/a>\",\"389\":\"Twitter for Android<\\/a>\",\"390\":\"Twitter for iPhone<\\/a>\",\"391\":\"Twitter for Android<\\/a>\",\"392\":\"Twitter for Android<\\/a>\",\"393\":\"Twitter for Android<\\/a>\",\"394\":\"Twitter for iPhone<\\/a>\",\"395\":\"Twitter for Android<\\/a>\",\"396\":\"Twitter for Android<\\/a>\",\"397\":\"Twitter for iPhone<\\/a>\",\"398\":\"Twitter for Android<\\/a>\",\"399\":\"Twitter Web App<\\/a>\",\"400\":\"Twitter for iPhone<\\/a>\",\"401\":\"Twitter for Android<\\/a>\",\"402\":\"Twitter for Android<\\/a>\",\"403\":\"Twitter for iPhone<\\/a>\",\"404\":\"Twitter for iPhone<\\/a>\",\"405\":\"Twitter for Android<\\/a>\",\"406\":\"Twitter for Android<\\/a>\",\"407\":\"Twitter for Android<\\/a>\",\"408\":\"Twitter for Android<\\/a>\",\"409\":\"Twitter for Android<\\/a>\",\"410\":\"Twitter for Android<\\/a>\",\"411\":\"Twitter for iPhone<\\/a>\",\"412\":\"Twitter for Android<\\/a>\",\"413\":\"Twitter for Android<\\/a>\",\"414\":\"Twitter for Android<\\/a>\",\"415\":\"Twitter for iPhone<\\/a>\",\"416\":\"Twitter for Android<\\/a>\",\"417\":\"Twitter for Android<\\/a>\",\"418\":\"Twitter for iPhone<\\/a>\",\"419\":\"Twitter for Android<\\/a>\",\"420\":\"Twitter for Android<\\/a>\",\"421\":\"Twitter for Android<\\/a>\",\"422\":\"Twitter for Android<\\/a>\",\"423\":\"Twitter for Android<\\/a>\",\"424\":\"Twitter Web App<\\/a>\",\"425\":\"Twitter for Android<\\/a>\",\"426\":\"Twitter Web App<\\/a>\",\"427\":\"Twitter for Android<\\/a>\",\"428\":\"Twitter for Android<\\/a>\",\"429\":\"Twitter for Android<\\/a>\",\"430\":\"Twitter for Android<\\/a>\",\"431\":\"Twitter for Android<\\/a>\",\"432\":\"Twitter for Android<\\/a>\",\"433\":\"Twitter for Android<\\/a>\",\"434\":\"Twitter for iPhone<\\/a>\",\"435\":\"Twitter for iPhone<\\/a>\",\"436\":\"Twitter for iPhone<\\/a>\",\"437\":\"Twitter for Android<\\/a>\",\"438\":\"Twitter for Android<\\/a>\",\"439\":\"Twitter for Android<\\/a>\",\"440\":\"Twitter for Android<\\/a>\",\"441\":\"Twitter for Android<\\/a>\",\"442\":\"Twitter for Android<\\/a>\",\"443\":\"Twitter for Android<\\/a>\",\"444\":\"Twitter for Android<\\/a>\",\"445\":\"Twitter for Android<\\/a>\",\"446\":\"Twitter Web App<\\/a>\",\"447\":\"Twitter for Android<\\/a>\",\"448\":\"Twitter for Android<\\/a>\",\"449\":\"Twitter Web App<\\/a>\",\"450\":\"Twitter for iPhone<\\/a>\",\"451\":\"Twitter for Android<\\/a>\",\"452\":\"Twitter for iPhone<\\/a>\",\"453\":\"Twitter for Android<\\/a>\",\"454\":\"Twitter Web App<\\/a>\",\"455\":\"Twitter for iPhone<\\/a>\",\"456\":\"Twitter for Android<\\/a>\",\"457\":\"Twitter for Android<\\/a>\",\"458\":\"Twitter for Android<\\/a>\",\"459\":\"Twitter for Android<\\/a>\",\"460\":\"Twitter for iPhone<\\/a>\",\"461\":\"Twitter for Android<\\/a>\",\"462\":\"Twitter for Android<\\/a>\",\"463\":\"Twitter for iPhone<\\/a>\",\"464\":\"Twitter for iPhone<\\/a>\",\"465\":\"Twitter for Android<\\/a>\",\"466\":\"Twitter for iPhone<\\/a>\",\"467\":\"Twitter for Android<\\/a>\",\"468\":\"Twitter for Android<\\/a>\",\"469\":\"Twitter for iPhone<\\/a>\",\"470\":\"Twitter for Android<\\/a>\",\"471\":\"Twitter Web App<\\/a>\",\"472\":\"Twitter for Android<\\/a>\",\"473\":\"Twitter for Android<\\/a>\",\"474\":\"Twitter for Android<\\/a>\",\"475\":\"Twitter for Android<\\/a>\",\"476\":\"Twitter for Android<\\/a>\",\"477\":\"Twitter for Android<\\/a>\",\"478\":\"Twitter for Android<\\/a>\",\"479\":\"Twitter for Android<\\/a>\",\"480\":\"Twitter for Android<\\/a>\",\"481\":\"Twitter for Android<\\/a>\",\"482\":\"Twitter for Android<\\/a>\",\"483\":\"Twitter for Android<\\/a>\",\"484\":\"Twitter for Android<\\/a>\",\"485\":\"Twitter for iPhone<\\/a>\",\"486\":\"Twitter for Android<\\/a>\",\"487\":\"Twitter for Android<\\/a>\",\"488\":\"Twitter for Android<\\/a>\",\"489\":\"Twitter for Android<\\/a>\",\"490\":\"Twitter for Android<\\/a>\",\"491\":\"Twitter for Android<\\/a>\",\"492\":\"Twitter for Android<\\/a>\",\"493\":\"Twitter for Android<\\/a>\",\"494\":\"Twitter for Android<\\/a>\",\"495\":\"Twitter for Android<\\/a>\",\"496\":\"Twitter for Android<\\/a>\",\"497\":\"Twitter for Android<\\/a>\",\"498\":\"Twitter for Android<\\/a>\",\"499\":\"Twitter for Android<\\/a>\",\"500\":\"Twitter for Android<\\/a>\",\"501\":\"Twitter for Android<\\/a>\",\"502\":\"Twitter for Android<\\/a>\",\"503\":\"Twitter for Android<\\/a>\",\"504\":\"Twitter for Android<\\/a>\",\"505\":\"Twitter for Android<\\/a>\",\"506\":\"Twitter for Android<\\/a>\",\"507\":\"Twitter for Android<\\/a>\",\"508\":\"Twitter for Android<\\/a>\",\"509\":\"Twitter for Android<\\/a>\",\"510\":\"Twitter for Android<\\/a>\",\"511\":\"Twitter for Android<\\/a>\",\"512\":\"Twitter for Android<\\/a>\",\"513\":\"Twitter for Android<\\/a>\",\"514\":\"Twitter for Android<\\/a>\",\"515\":\"Twitter for Android<\\/a>\",\"516\":\"Twitter Web App<\\/a>\",\"517\":\"Twitter for Android<\\/a>\",\"518\":\"Twitter for Android<\\/a>\",\"519\":\"Twitter for Android<\\/a>\",\"520\":\"Twitter for Android<\\/a>\",\"521\":\"Twitter for Android<\\/a>\",\"522\":\"Twitter for Android<\\/a>\",\"523\":\"Twitter for Android<\\/a>\",\"524\":\"Twitter for Android<\\/a>\",\"525\":\"Twitter for Android<\\/a>\",\"526\":\"Twitter for iPhone<\\/a>\",\"527\":\"Twitter for Android<\\/a>\",\"528\":\"Twitter for iPhone<\\/a>\",\"529\":\"Twitter for Android<\\/a>\",\"530\":\"Twitter for Android<\\/a>\",\"531\":\"Twitter for Android<\\/a>\",\"532\":\"Twitter for iPhone<\\/a>\",\"533\":\"Twitter for iPhone<\\/a>\",\"534\":\"Twitter for Android<\\/a>\",\"535\":\"Twitter for Android<\\/a>\",\"536\":\"Twitter for Android<\\/a>\",\"537\":\"Twitter for iPhone<\\/a>\",\"538\":\"Twitter for Android<\\/a>\",\"539\":\"Twitter for Android<\\/a>\",\"540\":\"Twitter for Android<\\/a>\",\"541\":\"Twitter for Android<\\/a>\",\"542\":\"Twitter for Android<\\/a>\",\"543\":\"Twitter for Android<\\/a>\",\"544\":\"Twitter for Android<\\/a>\",\"545\":\"Twitter for Android<\\/a>\",\"546\":\"Twitter for iPhone<\\/a>\",\"547\":\"Twitter for iPhone<\\/a>\",\"548\":\"Twitter for iPhone<\\/a>\",\"549\":\"Twitter for iPhone<\\/a>\",\"550\":\"Twitter Web App<\\/a>\",\"551\":\"Twitter for Android<\\/a>\",\"552\":\"Twitter Web App<\\/a>\",\"553\":\"Twitter for Android<\\/a>\",\"554\":\"Twitter for Android<\\/a>\",\"555\":\"Twitter for iPhone<\\/a>\",\"556\":\"Twitter for Android<\\/a>\",\"557\":\"Twitter for Android<\\/a>\",\"558\":\"TweetDeck<\\/a>\",\"559\":\"Twitter for Android<\\/a>\",\"560\":\"Twitter for Android<\\/a>\",\"561\":\"Twitter Web App<\\/a>\",\"562\":\"Twitter for iPhone<\\/a>\",\"563\":\"Twitter for Android<\\/a>\",\"564\":\"Twitter for iPhone<\\/a>\",\"565\":\"Twitter for Android<\\/a>\",\"566\":\"Twitter for Android<\\/a>\",\"567\":\"Twitter for Android<\\/a>\",\"568\":\"Twitter for iPhone<\\/a>\",\"569\":\"Twitter for iPhone<\\/a>\",\"570\":\"Twitter for Android<\\/a>\",\"571\":\"Twitter for Android<\\/a>\",\"572\":\"Twitter for iPhone<\\/a>\",\"573\":\"Twitter for Android<\\/a>\",\"574\":\"Twitter for Android<\\/a>\",\"575\":\"Twitter for Android<\\/a>\",\"576\":\"Twitter for Android<\\/a>\",\"577\":\"Twitter for iPhone<\\/a>\",\"578\":\"Twitter for Android<\\/a>\",\"579\":\"Twitter for Android<\\/a>\",\"580\":\"Twitter for Android<\\/a>\",\"581\":\"Twitter for Android<\\/a>\",\"582\":\"Twitter for Android<\\/a>\",\"583\":\"Twitter for iPhone<\\/a>\",\"584\":\"Twitter for Android<\\/a>\",\"585\":\"Twitter for Android<\\/a>\",\"586\":\"Twitter for Android<\\/a>\",\"587\":\"Twitter for iPhone<\\/a>\",\"588\":\"Twitter for Android<\\/a>\",\"589\":\"Twitter for Android<\\/a>\",\"590\":\"Twitter for Android<\\/a>\",\"591\":\"Twitter for Android<\\/a>\",\"592\":\"Twitter for Android<\\/a>\",\"593\":\"Twitter for Android<\\/a>\",\"594\":\"WordPress.com<\\/a>\",\"595\":\"Twitter for iPhone<\\/a>\",\"596\":\"Twitter for Android<\\/a>\",\"597\":\"Twitter for Android<\\/a>\",\"598\":\"Twitter for iPhone<\\/a>\",\"599\":\"Twitter for iPhone<\\/a>\",\"600\":\"Twitter for Android<\\/a>\",\"601\":\"Twitter for Android<\\/a>\",\"602\":\"Twitter for Android<\\/a>\",\"603\":\"Twitter for Android<\\/a>\",\"604\":\"Twitter Web App<\\/a>\",\"605\":\"Twitter for Android<\\/a>\",\"606\":\"Twitter for Android<\\/a>\",\"607\":\"Twitter for Android<\\/a>\",\"608\":\"Twitter for Android<\\/a>\",\"609\":\"Twitter for Android<\\/a>\",\"610\":\"Twitter for iPhone<\\/a>\",\"611\":\"Twitter for Android<\\/a>\",\"612\":\"Twitter for Android<\\/a>\",\"613\":\"Twitter for Android<\\/a>\",\"614\":\"Twitter for iPhone<\\/a>\",\"615\":\"Twitter for Android<\\/a>\",\"616\":\"Twitter for Android<\\/a>\",\"617\":\"Twitter for iPhone<\\/a>\",\"618\":\"Twitter for Android<\\/a>\",\"619\":\"Twitter for iPhone<\\/a>\",\"620\":\"Twitter for Android<\\/a>\",\"621\":\"Twitter for iPhone<\\/a>\",\"622\":\"Twitter for iPhone<\\/a>\",\"623\":\"Twitter for Android<\\/a>\",\"624\":\"Twitter for Android<\\/a>\",\"625\":\"Twitter for iPhone<\\/a>\",\"626\":\"Twitter for Android<\\/a>\",\"627\":\"Twitter for Android<\\/a>\",\"628\":\"Twitter for Android<\\/a>\",\"629\":\"Twitter for Android<\\/a>\",\"630\":\"Twitter for Android<\\/a>\",\"631\":\"Twitter for Android<\\/a>\",\"632\":\"Twitter for Android<\\/a>\",\"633\":\"Twitter Web App<\\/a>\",\"634\":\"Twitter for iPhone<\\/a>\",\"635\":\"Twitter for iPhone<\\/a>\",\"636\":\"Twitter for Android<\\/a>\",\"637\":\"Twitter for iPhone<\\/a>\",\"638\":\"Twitter for Android<\\/a>\",\"639\":\"Twitter for iPhone<\\/a>\",\"640\":\"Twitter for Android<\\/a>\",\"641\":\"Twitter for Android<\\/a>\",\"642\":\"Twitter for Android<\\/a>\",\"643\":\"Twitter for Android<\\/a>\",\"644\":\"Twitter for Android<\\/a>\",\"645\":\"Twitter for Android<\\/a>\",\"646\":\"Twitter for Android<\\/a>\",\"647\":\"Twitter for Android<\\/a>\",\"648\":\"Twitter for Android<\\/a>\",\"649\":\"Twitter for Android<\\/a>\",\"650\":\"Twitter for Android<\\/a>\",\"651\":\"Twitter for Android<\\/a>\",\"652\":\"Twitter for Android<\\/a>\",\"653\":\"Twitter for Android<\\/a>\",\"654\":\"Twitter for Android<\\/a>\",\"655\":\"Twitter for Android<\\/a>\",\"656\":\"Twitter for iPhone<\\/a>\",\"657\":\"Twitter for Android<\\/a>\",\"658\":\"Twitter for iPhone<\\/a>\",\"659\":\"Twitter for iPhone<\\/a>\",\"660\":\"Twitter for Android<\\/a>\",\"661\":\"Twitter for iPhone<\\/a>\",\"662\":\"Twitter for Android<\\/a>\",\"663\":\"Twitter for iPhone<\\/a>\",\"664\":\"Twitter for Android<\\/a>\",\"665\":\"Twitter for Android<\\/a>\",\"666\":\"Twitter for Android<\\/a>\",\"667\":\"Twitter for iPhone<\\/a>\",\"668\":\"Twitter for Android<\\/a>\",\"669\":\"Twitter Web App<\\/a>\",\"670\":\"Twitter for iPhone<\\/a>\",\"671\":\"Twitter for iPhone<\\/a>\",\"672\":\"Twitter for Android<\\/a>\",\"673\":\"Twitter for iPhone<\\/a>\",\"674\":\"Twitter for iPhone<\\/a>\",\"675\":\"Twitter for iPhone<\\/a>\",\"676\":\"Twitter Web App<\\/a>\",\"677\":\"Twitter for Android<\\/a>\",\"678\":\"Twitter for Android<\\/a>\",\"679\":\"Twitter for Android<\\/a>\",\"680\":\"Twitter for Android<\\/a>\",\"681\":\"Twitter for iPhone<\\/a>\",\"682\":\"Twitter for Android<\\/a>\",\"683\":\"Twitter for Android<\\/a>\",\"684\":\"Twitter for Android<\\/a>\",\"685\":\"dlvr.it<\\/a>\",\"686\":\"Twitter for Android<\\/a>\",\"687\":\"Twitter for Android<\\/a>\",\"688\":\"Twitter for Android<\\/a>\",\"689\":\"Twitter for iPhone<\\/a>\",\"690\":\"Twitter for iPhone<\\/a>\",\"691\":\"Twitter for iPhone<\\/a>\",\"692\":\"Twitter for Android<\\/a>\",\"693\":\"Twitter for iPhone<\\/a>\",\"694\":\"Twitter for Android<\\/a>\",\"695\":\"Twitter for iPhone<\\/a>\",\"696\":\"Twitter for Android<\\/a>\",\"697\":\"Twitter for iPhone<\\/a>\",\"698\":\"Twitter for Android<\\/a>\",\"699\":\"Twitter for Android<\\/a>\",\"700\":\"Twitter for Android<\\/a>\",\"701\":\"Twitter for iPhone<\\/a>\",\"702\":\"Twitter for Android<\\/a>\",\"703\":\"Twitter for Android<\\/a>\",\"704\":\"Twitter for Android<\\/a>\",\"705\":\"Twitter for iPhone<\\/a>\",\"706\":\"Twitter for Android<\\/a>\",\"707\":\"Twitter for iPhone<\\/a>\",\"708\":\"Twitter for iPhone<\\/a>\",\"709\":\"Twitter for iPhone<\\/a>\",\"710\":\"Twitter for Android<\\/a>\",\"711\":\"Twitter for Android<\\/a>\",\"712\":\"Twitter for Android<\\/a>\",\"713\":\"Twitter for Android<\\/a>\",\"714\":\"Twitter for Android<\\/a>\",\"715\":\"Twitter for Android<\\/a>\",\"716\":\"Twitter for Android<\\/a>\",\"717\":\"Twitter for Android<\\/a>\",\"718\":\"Twitter for Android<\\/a>\",\"719\":\"Twitter for Android<\\/a>\",\"720\":\"Twitter for iPhone<\\/a>\",\"721\":\"Twitter for Android<\\/a>\",\"722\":\"Twitter for Android<\\/a>\",\"723\":\"Twitter for iPhone<\\/a>\",\"724\":\"Twitter for Android<\\/a>\",\"725\":\"Twitter for iPhone<\\/a>\",\"726\":\"Twitter for iPhone<\\/a>\",\"727\":\"Twitter for Android<\\/a>\",\"728\":\"Twitter for iPhone<\\/a>\",\"729\":\"Twitter for Android<\\/a>\",\"730\":\"Twitter for Android<\\/a>\",\"731\":\"Twitter for iPhone<\\/a>\",\"732\":\"Twitter Web App<\\/a>\",\"733\":\"Twitter Web App<\\/a>\",\"734\":\"Twitter for iPhone<\\/a>\",\"735\":\"Twitter for iPhone<\\/a>\",\"736\":\"Twitter for Android<\\/a>\",\"737\":\"Twitter for Android<\\/a>\",\"738\":\"Twitter for Android<\\/a>\",\"739\":\"Twitter for Android<\\/a>\",\"740\":\"Twitter for Android<\\/a>\",\"741\":\"Twitter for Android<\\/a>\",\"742\":\"Twitter for iPhone<\\/a>\",\"743\":\"Twitter for iPhone<\\/a>\",\"744\":\"Twitter for Android<\\/a>\",\"745\":\"Twitter for Android<\\/a>\",\"746\":\"Twitter for Android<\\/a>\",\"747\":\"Twitter for Android<\\/a>\",\"748\":\"Twitter for Android<\\/a>\",\"749\":\"BobojayTV News<\\/a>\",\"750\":\"Twitter for Android<\\/a>\",\"751\":\"Twitter for iPhone<\\/a>\",\"752\":\"Twitter for Android<\\/a>\",\"753\":\"BobojayTV News<\\/a>\",\"754\":\"Twitter for iPhone<\\/a>\",\"755\":\"Twitter for Android<\\/a>\",\"756\":\"Twitter Web App<\\/a>\",\"757\":\"Twitter for Android<\\/a>\",\"758\":\"Twitter for Android<\\/a>\",\"759\":\"Twitter for iPhone<\\/a>\",\"760\":\"Twitter for iPhone<\\/a>\",\"761\":\"Twitter for Android<\\/a>\",\"762\":\"Twitter Web App<\\/a>\",\"763\":\"Twitter for Android<\\/a>\",\"764\":\"Twitter for Android<\\/a>\",\"765\":\"Twitter for iPhone<\\/a>\",\"766\":\"Twitter for Android<\\/a>\",\"767\":\"Twitter for Android<\\/a>\",\"768\":\"Twitter for Android<\\/a>\",\"769\":\"Twitter for Android<\\/a>\",\"770\":\"Twitter for Android<\\/a>\",\"771\":\"Twitter for Android<\\/a>\",\"772\":\"Twitter for Android<\\/a>\",\"773\":\"Twitter for iPhone<\\/a>\",\"774\":\"Twitter for Android<\\/a>\",\"775\":\"Twitter for Android<\\/a>\",\"776\":\"Twitter for Android<\\/a>\",\"777\":\"Twitter for Android<\\/a>\",\"778\":\"Twitter for Android<\\/a>\",\"779\":\"Twitter for Android<\\/a>\",\"780\":\"Twitter for Android<\\/a>\",\"781\":\"Twitter for Android<\\/a>\",\"782\":\"Twitter for Android<\\/a>\",\"783\":\"Twitter for Android<\\/a>\",\"784\":\"Twitter for Android<\\/a>\",\"785\":\"Twitter for Android<\\/a>\",\"786\":\"Twitter for Android<\\/a>\",\"787\":\"Twitter for Android<\\/a>\",\"788\":\"Twitter for iPhone<\\/a>\",\"789\":\"Twitter for Android<\\/a>\",\"790\":\"Twitter for Android<\\/a>\",\"791\":\"Twitter Web App<\\/a>\",\"792\":\"Twitter for Android<\\/a>\",\"793\":\"Twitter for iPhone<\\/a>\",\"794\":\"Twitter for Android<\\/a>\",\"795\":\"Twitter for iPhone<\\/a>\",\"796\":\"Twitter for Android<\\/a>\",\"797\":\"Twitter for iPhone<\\/a>\",\"798\":\"Twitter for Android<\\/a>\",\"799\":\"Twitter for Android<\\/a>\",\"800\":\"Twitter for Android<\\/a>\",\"801\":\"Twitter for Android<\\/a>\",\"802\":\"Twitter for Android<\\/a>\",\"803\":\"Twitter for Android<\\/a>\",\"804\":\"Twitter for Android<\\/a>\",\"805\":\"Twitter for Android<\\/a>\",\"806\":\"Twitter Web App<\\/a>\",\"807\":\"Twitter for Android<\\/a>\",\"808\":\"Twitter Web App<\\/a>\",\"809\":\"Twitter for Android<\\/a>\",\"810\":\"Twitter for Android<\\/a>\",\"811\":\"Twitter for Android<\\/a>\",\"812\":\"Twitter Web App<\\/a>\",\"813\":\"Twitter for Android<\\/a>\",\"814\":\"Twitter for Android<\\/a>\",\"815\":\"Twitter Web App<\\/a>\",\"816\":\"Twitter for Android<\\/a>\",\"817\":\"Twitter for iPhone<\\/a>\",\"818\":\"Twitter for iPhone<\\/a>\",\"819\":\"Twitter Web App<\\/a>\",\"820\":\"Twitter Web App<\\/a>\",\"821\":\"Twitter for iPhone<\\/a>\",\"822\":\"Twitter for Android<\\/a>\",\"823\":\"Twitter for Android<\\/a>\",\"824\":\"Twitter for iPhone<\\/a>\",\"825\":\"Twitter Web App<\\/a>\",\"826\":\"Twitter for iPhone<\\/a>\",\"827\":\"Twitter for iPhone<\\/a>\",\"828\":\"Twitter for Android<\\/a>\",\"829\":\"Twitter for Android<\\/a>\",\"830\":\"Twitter for Android<\\/a>\",\"831\":\"Twitter for Android<\\/a>\",\"832\":\"Twitter Web App<\\/a>\",\"833\":\"Twitter for Android<\\/a>\",\"834\":\"Twitter for Android<\\/a>\",\"835\":\"Twitter for iPhone<\\/a>\",\"836\":\"Twitter for Android<\\/a>\",\"837\":\"Twitter for Android<\\/a>\",\"838\":\"Twitter for Android<\\/a>\",\"839\":\"Twitter for iPhone<\\/a>\",\"840\":\"Twitter for iPhone<\\/a>\",\"841\":\"Twitter for Android<\\/a>\",\"842\":\"Twitter for iPhone<\\/a>\",\"843\":\"Twitter for Android<\\/a>\",\"844\":\"Twitter for Android<\\/a>\",\"845\":\"Twitter Web App<\\/a>\",\"846\":\"Twitter for Android<\\/a>\",\"847\":\"Twitter for Android<\\/a>\",\"848\":\"Twitter for Android<\\/a>\",\"849\":\"Twitter for iPhone<\\/a>\",\"850\":\"Twitter for Android<\\/a>\",\"851\":\"Twitter for iPhone<\\/a>\",\"852\":\"Twitter for Android<\\/a>\",\"853\":\"Twitter for Android<\\/a>\",\"854\":\"Twitter for Android<\\/a>\",\"855\":\"Twitter for Android<\\/a>\",\"856\":\"Twitter for Android<\\/a>\",\"857\":\"Twitter for Android<\\/a>\",\"858\":\"Twitter for Android<\\/a>\",\"859\":\"Twitter for Android<\\/a>\",\"860\":\"Twitter for Android<\\/a>\",\"861\":\"Twitter for Android<\\/a>\",\"862\":\"Twitter for iPhone<\\/a>\",\"863\":\"Twitter for Android<\\/a>\",\"864\":\"Twitter for iPhone<\\/a>\",\"865\":\"Twitter for iPhone<\\/a>\",\"866\":\"Twitter for iPhone<\\/a>\",\"867\":\"Twitter for Android<\\/a>\",\"868\":\"Twitter for iPhone<\\/a>\",\"869\":\"Twitter Web App<\\/a>\",\"870\":\"Twitter for iPhone<\\/a>\",\"871\":\"Twitter Web App<\\/a>\",\"872\":\"Twitter for Android<\\/a>\",\"873\":\"Twitter for Android<\\/a>\",\"874\":\"Twitter for Android<\\/a>\",\"875\":\"Twitter for iPhone<\\/a>\",\"876\":\"Twitter Web App<\\/a>\",\"877\":\"Twitter for Android<\\/a>\",\"878\":\"Twitter for Android<\\/a>\",\"879\":\"Twitter for iPhone<\\/a>\",\"880\":\"Twitter Web App<\\/a>\",\"881\":\"Twitter for iPhone<\\/a>\",\"882\":\"Twitter for iPhone<\\/a>\",\"883\":\"Twitter for iPhone<\\/a>\",\"884\":\"Twitter for iPhone<\\/a>\",\"885\":\"Twitter for Android<\\/a>\",\"886\":\"Twitter for Android<\\/a>\",\"887\":\"Twitter for iPhone<\\/a>\",\"888\":\"Twitter for iPhone<\\/a>\",\"889\":\"dlvr.it<\\/a>\",\"890\":\"Twitter for Android<\\/a>\",\"891\":\"Twitter for Android<\\/a>\",\"892\":\"Twitter for Android<\\/a>\",\"893\":\"Twitter for Android<\\/a>\",\"894\":\"Twitter for Android<\\/a>\",\"895\":\"Twitter for iPhone<\\/a>\",\"896\":\"Twitter Web App<\\/a>\",\"897\":\"Twitter for Android<\\/a>\",\"898\":\"Twitter for Android<\\/a>\",\"899\":\"Twitter Web App<\\/a>\",\"900\":\"Twitter for Android<\\/a>\",\"901\":\"Twitter for iPhone<\\/a>\",\"902\":\"Twitter for Android<\\/a>\",\"903\":\"Twitter Web App<\\/a>\",\"904\":\"Twitter for iPhone<\\/a>\",\"905\":\"Twitter for iPhone<\\/a>\",\"906\":\"Twitter for Android<\\/a>\",\"907\":\"Twitter for Android<\\/a>\",\"908\":\"Twitter for Android<\\/a>\",\"909\":\"Twitter for Android<\\/a>\",\"910\":\"Twitter for iPhone<\\/a>\",\"911\":\"Twitter for Android<\\/a>\",\"912\":\"Twitter for Android<\\/a>\",\"913\":\"Twitter Web App<\\/a>\",\"914\":\"Twitter for iPhone<\\/a>\",\"915\":\"Twitter for Android<\\/a>\",\"916\":\"Twitter for Android<\\/a>\",\"917\":\"Twitter for Android<\\/a>\",\"918\":\"Twitter Web App<\\/a>\",\"919\":\"Twitter for Android<\\/a>\",\"920\":\"Twitter for Android<\\/a>\",\"921\":\"Twitter for Android<\\/a>\",\"922\":\"Twitter for Android<\\/a>\",\"923\":\"Twitter for Android<\\/a>\",\"924\":\"Twitter for Android<\\/a>\",\"925\":\"Twitter for Android<\\/a>\",\"926\":\"Twitter Web App<\\/a>\",\"927\":\"Twitter for Android<\\/a>\",\"928\":\"Twitter for Android<\\/a>\",\"929\":\"Twitter for Android<\\/a>\",\"930\":\"Twitter Web App<\\/a>\",\"931\":\"Twitter for iPhone<\\/a>\",\"932\":\"Twitter for Android<\\/a>\",\"933\":\"Twitter Web App<\\/a>\",\"934\":\"Twitter for Android<\\/a>\",\"935\":\"Twitter for Android<\\/a>\",\"936\":\"Twitter for Android<\\/a>\",\"937\":\"Twitter for Android<\\/a>\",\"938\":\"Twitter for Android<\\/a>\",\"939\":\"Twitter for Android<\\/a>\",\"940\":\"Twitter Web App<\\/a>\",\"941\":\"Twitter for Android<\\/a>\",\"942\":\"Twitter for Android<\\/a>\",\"943\":\"Twitter Web App<\\/a>\",\"944\":\"Twitter for Android<\\/a>\",\"945\":\"Twitter for iPhone<\\/a>\",\"946\":\"Twitter Web App<\\/a>\",\"947\":\"Twitter for Android<\\/a>\",\"948\":\"Twitter for Android<\\/a>\",\"949\":\"Twitter for Android<\\/a>\",\"950\":\"Twitter for Android<\\/a>\",\"951\":\"Twitter for Android<\\/a>\",\"952\":\"Twitter for Android<\\/a>\",\"953\":\"Twitter for iPhone<\\/a>\",\"954\":\"Twitter Web App<\\/a>\",\"955\":\"Twitter Web App<\\/a>\",\"956\":\"Twitter for Android<\\/a>\",\"957\":\"Twitter for iPhone<\\/a>\",\"958\":\"Twitter for Android<\\/a>\",\"959\":\"Twitter Web App<\\/a>\",\"960\":\"Twitter for Android<\\/a>\",\"961\":\"Twitter for Android<\\/a>\",\"962\":\"Twitter for Android<\\/a>\",\"963\":\"Twitter for iPhone<\\/a>\",\"964\":\"Twitter for Android<\\/a>\",\"965\":\"Twitter for Android<\\/a>\",\"966\":\"Twitter Web App<\\/a>\",\"967\":\"Twitter for Android<\\/a>\",\"968\":\"Twitter for Android<\\/a>\",\"969\":\"Twitter for Android<\\/a>\",\"970\":\"Twitter for Android<\\/a>\",\"971\":\"Twitter for Android<\\/a>\",\"972\":\"Twitter for iPhone<\\/a>\",\"973\":\"Twitter for Android<\\/a>\",\"974\":\"Twitter for iPhone<\\/a>\",\"975\":\"Twitter for Android<\\/a>\",\"976\":\"Twitter for Android<\\/a>\",\"977\":\"Twitter for iPhone<\\/a>\",\"978\":\"Twitter for Android<\\/a>\",\"979\":\"Twitter Web App<\\/a>\",\"980\":\"Twitter for iPhone<\\/a>\",\"981\":\"Twitter Web App<\\/a>\",\"982\":\"Twitter for Android<\\/a>\",\"983\":\"Twitter for iPhone<\\/a>\",\"984\":\"Twitter for iPhone<\\/a>\",\"985\":\"Twitter for Android<\\/a>\",\"986\":\"Twitter for Android<\\/a>\",\"987\":\"Twitter for iPhone<\\/a>\",\"988\":\"Twitter Web App<\\/a>\",\"989\":\"Twitter for iPhone<\\/a>\",\"990\":\"Twitter for Android<\\/a>\",\"991\":\"Twitter for Android<\\/a>\",\"992\":\"Twitter for iPhone<\\/a>\",\"993\":\"Twitter for iPhone<\\/a>\",\"994\":\"Twitter for Android<\\/a>\",\"995\":\"Twitter for Android<\\/a>\",\"996\":\"Twitter for iPhone<\\/a>\",\"997\":\"Twitter for Android<\\/a>\",\"998\":\"Twitter Web App<\\/a>\",\"999\":\"Twitter Web App<\\/a>\",\"1000\":\"Twitter Web App<\\/a>\",\"1001\":\"Twitter Web App<\\/a>\",\"1002\":\"Twitter Web App<\\/a>\",\"1003\":\"Twitter Web App<\\/a>\",\"1004\":\"Twitter Web App<\\/a>\",\"1005\":\"Twitter Web App<\\/a>\",\"1006\":\"Twitter Web App<\\/a>\",\"1007\":\"Twitter for Android<\\/a>\",\"1008\":\"Twitter for iPhone<\\/a>\",\"1009\":\"Twitter Web App<\\/a>\",\"1010\":\"Twitter for Android<\\/a>\",\"1011\":\"Twitter for iPhone<\\/a>\",\"1012\":\"Twitter for Android<\\/a>\",\"1013\":\"Twitter for iPhone<\\/a>\",\"1014\":\"Twitter Web App<\\/a>\",\"1015\":\"Twitter for Android<\\/a>\",\"1016\":\"Twitter for Android<\\/a>\",\"1017\":\"Twitter for Android<\\/a>\",\"1018\":\"Twitter for iPhone<\\/a>\",\"1019\":\"Twitter for iPhone<\\/a>\",\"1020\":\"Twitter for Android<\\/a>\",\"1021\":\"Twitter for Android<\\/a>\",\"1022\":\"Twitter for Android<\\/a>\",\"1023\":\"Twitter Web App<\\/a>\",\"1024\":\"Twitter for iPhone<\\/a>\",\"1025\":\"Twitter for Android<\\/a>\",\"1026\":\"Twitter for Android<\\/a>\",\"1027\":\"Twitter for iPhone<\\/a>\",\"1028\":\"Twitter for Android<\\/a>\",\"1029\":\"Twitter for iPhone<\\/a>\",\"1030\":\"Twitter for Android<\\/a>\",\"1031\":\"Twitter for iPhone<\\/a>\",\"1032\":\"Twitter for iPhone<\\/a>\",\"1033\":\"Twitter for Android<\\/a>\",\"1034\":\"Twitter for Android<\\/a>\",\"1035\":\"Twitter for Android<\\/a>\",\"1036\":\"Twitter for iPhone<\\/a>\",\"1037\":\"Twitter for Android<\\/a>\",\"1038\":\"Twitter Web App<\\/a>\",\"1039\":\"Twitter for Android<\\/a>\",\"1040\":\"Twitter for iPhone<\\/a>\",\"1041\":\"Twitter for Android<\\/a>\",\"1042\":\"Twitter for Android<\\/a>\",\"1043\":\"Twitter for Android<\\/a>\",\"1044\":\"Twitter for iPhone<\\/a>\",\"1045\":\"Twitter for Android<\\/a>\",\"1046\":\"Twitter for Android<\\/a>\",\"1047\":\"Twitter for Android<\\/a>\",\"1048\":\"Twitter for iPhone<\\/a>\",\"1049\":\"Twitter for iPhone<\\/a>\",\"1050\":\"Twitter for Android<\\/a>\",\"1051\":\"Twitter for iPhone<\\/a>\",\"1052\":\"Twitter for iPhone<\\/a>\",\"1053\":\"Twitter for iPhone<\\/a>\",\"1054\":\"Twitter for Android<\\/a>\",\"1055\":\"Twitter for Android<\\/a>\",\"1056\":\"Twitter for iPhone<\\/a>\",\"1057\":\"Twitter for Android<\\/a>\",\"1058\":\"Twitter for Android<\\/a>\",\"1059\":\"Twitter for Android<\\/a>\",\"1060\":\"Twitter for Android<\\/a>\",\"1061\":\"Twitter for iPhone<\\/a>\",\"1062\":\"Twitter for iPhone<\\/a>\",\"1063\":\"Twitter for iPhone<\\/a>\",\"1064\":\"Twitter for Android<\\/a>\",\"1065\":\"Twitter for Android<\\/a>\",\"1066\":\"Twitter for Android<\\/a>\",\"1067\":\"Twitter for Android<\\/a>\",\"1068\":\"Twitter for Android<\\/a>\",\"1069\":\"Twitter for Android<\\/a>\",\"1070\":\"Twitter for Android<\\/a>\",\"1071\":\"Twitter for Android<\\/a>\",\"1072\":\"Twitter for Android<\\/a>\",\"1073\":\"Twitter for Android<\\/a>\",\"1074\":\"Twitter for iPhone<\\/a>\",\"1075\":\"Twitter for iPhone<\\/a>\",\"1076\":\"Twitter for Android<\\/a>\",\"1077\":\"Twitter Web App<\\/a>\",\"1078\":\"Twitter for Android<\\/a>\",\"1079\":\"Twitter for Android<\\/a>\",\"1080\":\"Twitter for Android<\\/a>\",\"1081\":\"Twitter for iPhone<\\/a>\",\"1082\":\"Twitter for Android<\\/a>\",\"1083\":\"Twitter for iPhone<\\/a>\",\"1084\":\"Twitter for Android<\\/a>\",\"1085\":\"Twitter for iPhone<\\/a>\",\"1086\":\"Twitter for iPhone<\\/a>\",\"1087\":\"Twitter for Android<\\/a>\",\"1088\":\"Twitter for Android<\\/a>\",\"1089\":\"Twitter for iPhone<\\/a>\",\"1090\":\"Twitter for Android<\\/a>\",\"1091\":\"Twitter for Android<\\/a>\",\"1092\":\"Twitter for Android<\\/a>\",\"1093\":\"Twitter for Android<\\/a>\",\"1094\":\"Twitter for Android<\\/a>\",\"1095\":\"Twitter for Android<\\/a>\",\"1096\":\"Twitter for Android<\\/a>\",\"1097\":\"Twitter for Android<\\/a>\",\"1098\":\"Twitter for Android<\\/a>\",\"1099\":\"Twitter for Android<\\/a>\",\"1100\":\"Twitter for Android<\\/a>\",\"1101\":\"Twitter for Android<\\/a>\",\"1102\":\"Twitter for iPhone<\\/a>\",\"1103\":\"Twitter for Android<\\/a>\",\"1104\":\"Twitter for Android<\\/a>\",\"1105\":\"Twitter for Android<\\/a>\",\"1106\":\"Twitter for Android<\\/a>\",\"1107\":\"Twitter for Android<\\/a>\",\"1108\":\"Twitter for Android<\\/a>\",\"1109\":\"Twitter for Android<\\/a>\",\"1110\":\"Twitter for Android<\\/a>\",\"1111\":\"Twitter for Android<\\/a>\",\"1112\":\"Twitter for Android<\\/a>\",\"1113\":\"Twitter for iPhone<\\/a>\",\"1114\":\"Twitter for Android<\\/a>\",\"1115\":\"Twitter for Android<\\/a>\",\"1116\":\"Twitter for Android<\\/a>\",\"1117\":\"Twitter for Android<\\/a>\",\"1118\":\"Twitter for Android<\\/a>\",\"1119\":\"Twitter for Android<\\/a>\",\"1120\":\"Twitter for Android<\\/a>\",\"1121\":\"Twitter for Android<\\/a>\",\"1122\":\"Twitter for Android<\\/a>\",\"1123\":\"Twitter for Android<\\/a>\",\"1124\":\"Twitter for Android<\\/a>\",\"1125\":\"Twitter for Android<\\/a>\",\"1126\":\"Twitter Web App<\\/a>\",\"1127\":\"Twitter for Android<\\/a>\",\"1128\":\"Twitter for iPhone<\\/a>\",\"1129\":\"Twitter for iPhone<\\/a>\",\"1130\":\"Twitter for Android<\\/a>\",\"1131\":\"Twitter for iPhone<\\/a>\",\"1132\":\"Twitter for Android<\\/a>\",\"1133\":\"Twitter for Android<\\/a>\",\"1134\":\"Twitter for Android<\\/a>\",\"1135\":\"Twitter for Android<\\/a>\",\"1136\":\"Twitter Web App<\\/a>\",\"1137\":\"Twitter for iPhone<\\/a>\",\"1138\":\"Twitter for iPhone<\\/a>\",\"1139\":\"Twitter for iPhone<\\/a>\",\"1140\":\"Twitter for iPhone<\\/a>\",\"1141\":\"Twitter for iPhone<\\/a>\",\"1142\":\"Twitter for Android<\\/a>\",\"1143\":\"Twitter for Android<\\/a>\",\"1144\":\"Twitter Web App<\\/a>\",\"1145\":\"Twitter for Android<\\/a>\",\"1146\":\"Twitter for iPhone<\\/a>\",\"1147\":\"Twitter for iPhone<\\/a>\",\"1148\":\"Twitter for Android<\\/a>\",\"1149\":\"Twitter for Android<\\/a>\",\"1150\":\"Twitter for Android<\\/a>\",\"1151\":\"Twitter for iPhone<\\/a>\",\"1152\":\"Twitter for iPhone<\\/a>\",\"1153\":\"Twitter for iPhone<\\/a>\",\"1154\":\"Twitter Web App<\\/a>\",\"1155\":\"Twitter Web App<\\/a>\",\"1156\":\"Twitter for Android<\\/a>\",\"1157\":\"Twitter for iPhone<\\/a>\",\"1158\":\"Twitter for iPhone<\\/a>\",\"1159\":\"Twitter for Android<\\/a>\",\"1160\":\"Twitter for iPhone<\\/a>\",\"1161\":\"Twitter for iPhone<\\/a>\",\"1162\":\"Twitter for iPhone<\\/a>\",\"1163\":\"Twitter for Android<\\/a>\",\"1164\":\"Twitter for Android<\\/a>\",\"1165\":\"Twitter for iPhone<\\/a>\",\"1166\":\"Twitter Web App<\\/a>\",\"1167\":\"Twitter Web App<\\/a>\",\"1168\":\"Twitter for Android<\\/a>\",\"1169\":\"Twitter for Android<\\/a>\",\"1170\":\"Twitter for iPhone<\\/a>\",\"1171\":\"Twitter for iPhone<\\/a>\",\"1172\":\"Twitter for Android<\\/a>\",\"1173\":\"Twitter for Android<\\/a>\",\"1174\":\"Twitter for Android<\\/a>\",\"1175\":\"Twitter for Android<\\/a>\",\"1176\":\"Twitter for Android<\\/a>\",\"1177\":\"Twitter for Android<\\/a>\",\"1178\":\"Twitter for iPhone<\\/a>\",\"1179\":\"Twitter for iPhone<\\/a>\",\"1180\":\"Twitter for Android<\\/a>\",\"1181\":\"Twitter Web App<\\/a>\",\"1182\":\"Twitter for iPhone<\\/a>\",\"1183\":\"Twitter for Android<\\/a>\",\"1184\":\"Twitter Web App<\\/a>\",\"1185\":\"Twitter for iPhone<\\/a>\",\"1186\":\"Twitter for Android<\\/a>\",\"1187\":\"Twitter for iPhone<\\/a>\",\"1188\":\"Twitter for Android<\\/a>\",\"1189\":\"Twitter for iPhone<\\/a>\",\"1190\":\"Twitter for Android<\\/a>\",\"1191\":\"Twitter for Android<\\/a>\",\"1192\":\"Twitter for Android<\\/a>\",\"1193\":\"Twitter for Android<\\/a>\",\"1194\":\"Twitter for iPhone<\\/a>\",\"1195\":\"Twitter for iPhone<\\/a>\",\"1196\":\"Twitter for Android<\\/a>\",\"1197\":\"Twitter for Android<\\/a>\",\"1198\":\"Twitter for Android<\\/a>\",\"1199\":\"Twitter for iPhone<\\/a>\",\"1200\":\"Twitter for Android<\\/a>\",\"1201\":\"Twitter for Android<\\/a>\",\"1202\":\"Twitter for Android<\\/a>\",\"1203\":\"Twitter for iPhone<\\/a>\",\"1204\":\"Twitter for iPhone<\\/a>\",\"1205\":\"Twitter Web App<\\/a>\",\"1206\":\"Twitter for Android<\\/a>\",\"1207\":\"Twitter for Android<\\/a>\",\"1208\":\"Twitter for iPhone<\\/a>\",\"1209\":\"Twitter for iPhone<\\/a>\",\"1210\":\"Twitter for Android<\\/a>\",\"1211\":\"Twitter for iPhone<\\/a>\",\"1212\":\"Twitter for iPhone<\\/a>\",\"1213\":\"Twitter for iPhone<\\/a>\",\"1214\":\"Twitter for Android<\\/a>\",\"1215\":\"Twitter for Android<\\/a>\",\"1216\":\"Twitter for Android<\\/a>\",\"1217\":\"Twitter for iPhone<\\/a>\",\"1218\":\"Twitter for Android<\\/a>\",\"1219\":\"Twitter for Android<\\/a>\",\"1220\":\"Twitter for Android<\\/a>\",\"1221\":\"Twitter for Android<\\/a>\",\"1222\":\"Twitter for iPhone<\\/a>\",\"1223\":\"Twitter for iPhone<\\/a>\",\"1224\":\"Twitter for iPhone<\\/a>\",\"1225\":\"Twitter for Android<\\/a>\",\"1226\":\"Twitter for iPhone<\\/a>\",\"1227\":\"Twitter for iPhone<\\/a>\",\"1228\":\"Twitter for Android<\\/a>\",\"1229\":\"Twitter for Android<\\/a>\",\"1230\":\"Twitter for iPhone<\\/a>\",\"1231\":\"Twitter for Android<\\/a>\",\"1232\":\"Twitter for iPhone<\\/a>\",\"1233\":\"Twitter for iPhone<\\/a>\",\"1234\":\"Twitter for iPhone<\\/a>\",\"1235\":\"Twitter for iPhone<\\/a>\",\"1236\":\"Twitter for iPhone<\\/a>\",\"1237\":\"Twitter for iPhone<\\/a>\",\"1238\":\"Twitter for Android<\\/a>\",\"1239\":\"Twitter for Android<\\/a>\",\"1240\":\"Twitter for iPhone<\\/a>\",\"1241\":\"Twitter for iPhone<\\/a>\",\"1242\":\"Twitter for iPhone<\\/a>\",\"1243\":\"Twitter for iPhone<\\/a>\",\"1244\":\"Twitter for iPhone<\\/a>\",\"1245\":\"Twitter for Android<\\/a>\",\"1246\":\"Twitter for iPhone<\\/a>\",\"1247\":\"Twitter for Android<\\/a>\",\"1248\":\"Twitter for Android<\\/a>\",\"1249\":\"Twitter for iPhone<\\/a>\",\"1250\":\"Twitter for Android<\\/a>\",\"1251\":\"Twitter for iPhone<\\/a>\",\"1252\":\"Twitter for Android<\\/a>\",\"1253\":\"Twitter for iPhone<\\/a>\",\"1254\":\"Twitter for iPhone<\\/a>\",\"1255\":\"Twitter for iPhone<\\/a>\",\"1256\":\"Twitter for Android<\\/a>\",\"1257\":\"Twitter for Android<\\/a>\",\"1258\":\"Twitter for Android<\\/a>\",\"1259\":\"Twitter for Android<\\/a>\",\"1260\":\"Twitter for Android<\\/a>\",\"1261\":\"Twitter for Android<\\/a>\",\"1262\":\"Twitter for Android<\\/a>\",\"1263\":\"Twitter for Android<\\/a>\",\"1264\":\"Twitter for Android<\\/a>\",\"1265\":\"Twitter for Android<\\/a>\",\"1266\":\"Twitter for Android<\\/a>\",\"1267\":\"Twitter for Android<\\/a>\",\"1268\":\"Twitter for Android<\\/a>\",\"1269\":\"Twitter for Android<\\/a>\",\"1270\":\"Twitter for iPhone<\\/a>\",\"1271\":\"Twitter for Android<\\/a>\",\"1272\":\"Twitter for Android<\\/a>\",\"1273\":\"Twitter for Android<\\/a>\",\"1274\":\"Twitter for Android<\\/a>\",\"1275\":\"Twitter for Android<\\/a>\",\"1276\":\"Twitter for Android<\\/a>\",\"1277\":\"Twitter for iPhone<\\/a>\",\"1278\":\"Twitter for Android<\\/a>\",\"1279\":\"Twitter for Android<\\/a>\",\"1280\":\"Twitter for iPhone<\\/a>\",\"1281\":\"Twitter for Android<\\/a>\",\"1282\":\"Twitter for Android<\\/a>\",\"1283\":\"Twitter for Android<\\/a>\",\"1284\":\"Twitter for Android<\\/a>\",\"1285\":\"Twitter for Android<\\/a>\",\"1286\":\"Twitter for Android<\\/a>\",\"1287\":\"Twitter for Android<\\/a>\",\"1288\":\"Twitter for Android<\\/a>\",\"1289\":\"Twitter for Android<\\/a>\",\"1290\":\"Twitter for Android<\\/a>\",\"1291\":\"Twitter for Android<\\/a>\",\"1292\":\"Twitter for iPhone<\\/a>\",\"1293\":\"Twitter for Android<\\/a>\",\"1294\":\"Twitter for Android<\\/a>\",\"1295\":\"Twitter for Android<\\/a>\",\"1296\":\"Twitter for iPhone<\\/a>\",\"1297\":\"Twitter for Android<\\/a>\",\"1298\":\"Twitter for Android<\\/a>\",\"1299\":\"Twitter for iPhone<\\/a>\",\"1300\":\"Twitter for Android<\\/a>\",\"1301\":\"Twitter for iPhone<\\/a>\",\"1302\":\"Twitter for Android<\\/a>\",\"1303\":\"Twitter for Android<\\/a>\",\"1304\":\"Twitter for Android<\\/a>\",\"1305\":\"Twitter for iPhone<\\/a>\",\"1306\":\"Twitter for Android<\\/a>\",\"1307\":\"Twitter for iPhone<\\/a>\",\"1308\":\"Twitter for iPhone<\\/a>\",\"1309\":\"Twitter Web App<\\/a>\",\"1310\":\"Twitter for iPhone<\\/a>\",\"1311\":\"Twitter for Android<\\/a>\",\"1312\":\"Twitter for Android<\\/a>\",\"1313\":\"Twitter for Android<\\/a>\",\"1314\":\"Twitter for Android<\\/a>\",\"1315\":\"Twitter for iPhone<\\/a>\",\"1316\":\"Twitter for Android<\\/a>\",\"1317\":\"Twitter for Android<\\/a>\",\"1318\":\"Twitter for Android<\\/a>\",\"1319\":\"Twitter for Android<\\/a>\",\"1320\":\"Twitter for iPhone<\\/a>\",\"1321\":\"Twitter for Android<\\/a>\",\"1322\":\"Twitter for Android<\\/a>\",\"1323\":\"Twitter for iPhone<\\/a>\",\"1324\":\"Twitter for iPhone<\\/a>\",\"1325\":\"Twitter for Android<\\/a>\",\"1326\":\"Twitter for Android<\\/a>\",\"1327\":\"Twitter for Android<\\/a>\",\"1328\":\"Twitter for Android<\\/a>\",\"1329\":\"Twitter for Android<\\/a>\",\"1330\":\"Twitter for Android<\\/a>\",\"1331\":\"Twitter for Android<\\/a>\",\"1332\":\"Twitter for Android<\\/a>\",\"1333\":\"Twitter for Android<\\/a>\",\"1334\":\"Twitter for Android<\\/a>\",\"1335\":\"Twitter for Android<\\/a>\",\"1336\":\"Twitter for Android<\\/a>\",\"1337\":\"Twitter for Android<\\/a>\",\"1338\":\"Twitter for iPhone<\\/a>\",\"1339\":\"Twitter for iPhone<\\/a>\",\"1340\":\"Twitter for iPhone<\\/a>\",\"1341\":\"Twitter for Android<\\/a>\",\"1342\":\"Twitter for Android<\\/a>\",\"1343\":\"Twitter for iPhone<\\/a>\",\"1344\":\"Twitter for iPhone<\\/a>\",\"1345\":\"Twitter for Android<\\/a>\",\"1346\":\"Twitter for Android<\\/a>\",\"1347\":\"Twitter for iPhone<\\/a>\",\"1348\":\"Twitter for Android<\\/a>\",\"1349\":\"Twitter Web App<\\/a>\",\"1350\":\"Twitter for iPhone<\\/a>\",\"1351\":\"Twitter for Android<\\/a>\",\"1352\":\"Twitter for Android<\\/a>\",\"1353\":\"Twitter for Android<\\/a>\",\"1354\":\"Twitter for Android<\\/a>\",\"1355\":\"Twitter for Android<\\/a>\",\"1356\":\"Twitter for Android<\\/a>\",\"1357\":\"Twitter for Android<\\/a>\",\"1358\":\"Twitter for Android<\\/a>\",\"1359\":\"Twitter for Android<\\/a>\",\"1360\":\"Twitter for iPhone<\\/a>\",\"1361\":\"Twitter for Android<\\/a>\",\"1362\":\"Twitter for Android<\\/a>\",\"1363\":\"Twitter for Android<\\/a>\",\"1364\":\"Twitter for iPhone<\\/a>\",\"1365\":\"Twitter for iPhone<\\/a>\",\"1366\":\"Twitter for iPhone<\\/a>\",\"1367\":\"Twitter for iPhone<\\/a>\",\"1368\":\"Twitter for iPhone<\\/a>\",\"1369\":\"Twitter for iPhone<\\/a>\",\"1370\":\"Twitter for iPhone<\\/a>\",\"1371\":\"Twitter for Android<\\/a>\",\"1372\":\"Twitter for iPhone<\\/a>\",\"1373\":\"Twitter for iPhone<\\/a>\",\"1374\":\"Twitter for iPhone<\\/a>\",\"1375\":\"Twitter for iPhone<\\/a>\",\"1376\":\"Twitter for Android<\\/a>\",\"1377\":\"Twitter for iPhone<\\/a>\",\"1378\":\"Twitter for Android<\\/a>\",\"1379\":\"Twitter for iPhone<\\/a>\",\"1380\":\"Twitter for iPhone<\\/a>\",\"1381\":\"Twitter for Android<\\/a>\",\"1382\":\"Twitter for Android<\\/a>\",\"1383\":\"Twitter for Android<\\/a>\",\"1384\":\"Jokoshq<\\/a>\",\"1385\":\"Twitter for Android<\\/a>\",\"1386\":\"Twitter for Android<\\/a>\",\"1387\":\"Twitter for iPhone<\\/a>\",\"1388\":\"Twitter for iPhone<\\/a>\",\"1389\":\"Twitter for iPhone<\\/a>\",\"1390\":\"Twitter for Android<\\/a>\",\"1391\":\"Twitter Web App<\\/a>\",\"1392\":\"Twitter for Android<\\/a>\",\"1393\":\"Twitter for iPhone<\\/a>\",\"1394\":\"Twitter for iPhone<\\/a>\",\"1395\":\"Twitter for iPhone<\\/a>\",\"1396\":\"Twitter for Android<\\/a>\",\"1397\":\"Twitter for Android<\\/a>\",\"1398\":\"Twitter for Android<\\/a>\",\"1399\":\"Twitter for Android<\\/a>\",\"1400\":\"Twitter for Android<\\/a>\",\"1401\":\"Twitter for Android<\\/a>\",\"1402\":\"Twitter for iPhone<\\/a>\",\"1403\":\"Twitter for iPhone<\\/a>\",\"1404\":\"Twitter for Android<\\/a>\",\"1405\":\"Twitter Web App<\\/a>\",\"1406\":\"Twitter for Android<\\/a>\",\"1407\":\"Twitter for iPhone<\\/a>\",\"1408\":\"Twitter for iPhone<\\/a>\",\"1409\":\"Twitter for Android<\\/a>\",\"1410\":\"Twitter for iPhone<\\/a>\",\"1411\":\"Twitter for iPhone<\\/a>\",\"1412\":\"Twitter for iPhone<\\/a>\",\"1413\":\"Twitter for Android<\\/a>\",\"1414\":\"Twitter for iPhone<\\/a>\",\"1415\":\"Twitter for iPhone<\\/a>\",\"1416\":\"Twitter for Android<\\/a>\",\"1417\":\"Twitter for Android<\\/a>\",\"1418\":\"Twitter for iPhone<\\/a>\",\"1419\":\"Twitter for Android<\\/a>\",\"1420\":\"Twitter for iPhone<\\/a>\",\"1421\":\"Twitter for iPhone<\\/a>\",\"1422\":\"Twitter for iPhone<\\/a>\",\"1423\":\"Twitter for Android<\\/a>\",\"1424\":\"Twitter for Android<\\/a>\",\"1425\":\"Twitter for Android<\\/a>\",\"1426\":\"Twitter for iPhone<\\/a>\",\"1427\":\"Twitter Web App<\\/a>\",\"1428\":\"Twitter for iPhone<\\/a>\",\"1429\":\"Twitter for Android<\\/a>\",\"1430\":\"Twitter for iPhone<\\/a>\",\"1431\":\"Twitter for iPhone<\\/a>\",\"1432\":\"Twitter for Android<\\/a>\",\"1433\":\"Twitter Web App<\\/a>\",\"1434\":\"Twitter Web App<\\/a>\",\"1435\":\"Twitter for Android<\\/a>\",\"1436\":\"Twitter for Android<\\/a>\",\"1437\":\"Twitter for Android<\\/a>\",\"1438\":\"Twitter for Android<\\/a>\",\"1439\":\"Twitter for Android<\\/a>\",\"1440\":\"Twitter for Android<\\/a>\",\"1441\":\"Twitter for Android<\\/a>\",\"1442\":\"Twitter for Android<\\/a>\",\"1443\":\"Twitter for iPhone<\\/a>\",\"1444\":\"Twitter for iPhone<\\/a>\",\"1445\":\"Twitter for iPhone<\\/a>\",\"1446\":\"Twitter for Android<\\/a>\",\"1447\":\"Twitter for iPhone<\\/a>\",\"1448\":\"Twitter for iPhone<\\/a>\",\"1449\":\"Twitter for Android<\\/a>\",\"1450\":\"Twitter for Android<\\/a>\",\"1451\":\"Twitter for Android<\\/a>\",\"1452\":\"Twitter Web App<\\/a>\",\"1453\":\"Twitter for iPhone<\\/a>\",\"1454\":\"Twitter Web App<\\/a>\",\"1455\":\"Twitter for iPhone<\\/a>\",\"1456\":\"Twitter for Android<\\/a>\",\"1457\":\"Twitter for Android<\\/a>\",\"1458\":\"Twitter Web App<\\/a>\",\"1459\":\"Twitter for Android<\\/a>\",\"1460\":\"Twitter for iPhone<\\/a>\",\"1461\":\"Twitter for Android<\\/a>\",\"1462\":\"Twitter for Android<\\/a>\",\"1463\":\"Twitter for iPhone<\\/a>\",\"1464\":\"Twitter for iPhone<\\/a>\",\"1465\":\"Twitter for iPhone<\\/a>\",\"1466\":\"Twitter for iPhone<\\/a>\",\"1467\":\"Twitter for Android<\\/a>\",\"1468\":\"Twitter for Android<\\/a>\",\"1469\":\"Twitter for Android<\\/a>\",\"1470\":\"Twitter Web App<\\/a>\",\"1471\":\"Twitter for Android<\\/a>\",\"1472\":\"Twitter for Android<\\/a>\",\"1473\":\"Twitter Web App<\\/a>\",\"1474\":\"Twitter for iPhone<\\/a>\",\"1475\":\"Twitter Web App<\\/a>\",\"1476\":\"Twitter for Android<\\/a>\",\"1477\":\"Twitter for Android<\\/a>\",\"1478\":\"Twitter for iPhone<\\/a>\",\"1479\":\"Twitter for iPhone<\\/a>\",\"1480\":\"Twitter Web App<\\/a>\",\"1481\":\"Twitter for Android<\\/a>\",\"1482\":\"Twitter for Android<\\/a>\",\"1483\":\"Twitter for Android<\\/a>\",\"1484\":\"Twitter for Android<\\/a>\",\"1485\":\"Twitter for Android<\\/a>\",\"1486\":\"Twitter for Android<\\/a>\",\"1487\":\"Twitter for iPhone<\\/a>\",\"1488\":\"Twitter for Android<\\/a>\",\"1489\":\"Twitter for Android<\\/a>\",\"1490\":\"Twitter Web App<\\/a>\",\"1491\":\"Twitter for Android<\\/a>\",\"1492\":\"Twitter for Android<\\/a>\",\"1493\":\"Twitter for Android<\\/a>\",\"1494\":\"Twitter Web App<\\/a>\",\"1495\":\"Twitter for Android<\\/a>\",\"1496\":\"Twitter for Android<\\/a>\",\"1497\":\"Twitter for Android<\\/a>\",\"1498\":\"Twitter for Android<\\/a>\",\"1499\":\"Twitter for Android<\\/a>\",\"1500\":\"Twitter for Android<\\/a>\",\"1501\":\"Twitter for iPhone<\\/a>\",\"1502\":\"Twitter Web App<\\/a>\",\"1503\":\"Twitter for iPhone<\\/a>\",\"1504\":\"Twitter for Android<\\/a>\",\"1505\":\"Twitter Web App<\\/a>\",\"1506\":\"Twitter for Android<\\/a>\",\"1507\":\"Twitter for iPhone<\\/a>\",\"1508\":\"Twitter Web App<\\/a>\",\"1509\":\"Twitter for Android<\\/a>\",\"1510\":\"Twitter for iPhone<\\/a>\",\"1511\":\"Twitter Web App<\\/a>\",\"1512\":\"Twitter Web App<\\/a>\",\"1513\":\"Twitter for iPhone<\\/a>\",\"1514\":\"Twitter for iPhone<\\/a>\",\"1515\":\"Twitter for Android<\\/a>\",\"1516\":\"Twitter for Android<\\/a>\",\"1517\":\"Twitter for Android<\\/a>\",\"1518\":\"Twitter for iPhone<\\/a>\",\"1519\":\"Twitter for Android<\\/a>\",\"1520\":\"Twitter for Android<\\/a>\",\"1521\":\"Twitter for iPhone<\\/a>\",\"1522\":\"Twitter for iPhone<\\/a>\",\"1523\":\"Twitter for Android<\\/a>\",\"1524\":\"Twitter for Android<\\/a>\",\"1525\":\"Twitter for Android<\\/a>\",\"1526\":\"Twitter for Android<\\/a>\",\"1527\":\"Twitter for Android<\\/a>\",\"1528\":\"Twitter for iPhone<\\/a>\",\"1529\":\"Twitter for iPhone<\\/a>\",\"1530\":\"Twitter for Android<\\/a>\",\"1531\":\"Twitter for iPhone<\\/a>\",\"1532\":\"Twitter for iPhone<\\/a>\",\"1533\":\"Twitter for Android<\\/a>\",\"1534\":\"Twitter Web App<\\/a>\",\"1535\":\"Twitter for iPhone<\\/a>\",\"1536\":\"Twitter for Android<\\/a>\",\"1537\":\"Twitter Web App<\\/a>\",\"1538\":\"Twitter for Android<\\/a>\",\"1539\":\"Twitter Web App<\\/a>\",\"1540\":\"Twitter for Android<\\/a>\",\"1541\":\"Twitter Web App<\\/a>\",\"1542\":\"Twitter for iPhone<\\/a>\",\"1543\":\"Twitter for Android<\\/a>\",\"1544\":\"Twitter Web App<\\/a>\",\"1545\":\"Twitter Web App<\\/a>\",\"1546\":\"Twitter for Android<\\/a>\",\"1547\":\"Twitter for iPhone<\\/a>\",\"1548\":\"Twitter for iPhone<\\/a>\",\"1549\":\"Twitter for Android<\\/a>\",\"1550\":\"Twitter Web App<\\/a>\",\"1551\":\"Twitter for Android<\\/a>\",\"1552\":\"Twitter Web App<\\/a>\",\"1553\":\"Twitter for Android<\\/a>\",\"1554\":\"Twitter for Android<\\/a>\",\"1555\":\"Twitter for iPhone<\\/a>\",\"1556\":\"Twitter for iPhone<\\/a>\",\"1557\":\"Twitter for Android<\\/a>\",\"1558\":\"Twitter Web App<\\/a>\",\"1559\":\"Twitter for iPhone<\\/a>\",\"1560\":\"Twitter for iPhone<\\/a>\",\"1561\":\"Twitter for iPhone<\\/a>\",\"1562\":\"Twitter Web App<\\/a>\",\"1563\":\"Twitter for iPhone<\\/a>\",\"1564\":\"Twitter Web App<\\/a>\",\"1565\":\"Twitter Web App<\\/a>\",\"1566\":\"Twitter for Android<\\/a>\",\"1567\":\"Twitter for Android<\\/a>\",\"1568\":\"Twitter for Android<\\/a>\",\"1569\":\"Twitter for Android<\\/a>\",\"1570\":\"Twitter for iPhone<\\/a>\",\"1571\":\"Twitter for Android<\\/a>\",\"1572\":\"Twitter Web App<\\/a>\",\"1573\":\"Twitter Web App<\\/a>\",\"1574\":\"Twitter for Android<\\/a>\",\"1575\":\"Twitter for iPhone<\\/a>\",\"1576\":\"Twitter for Android<\\/a>\",\"1577\":\"Twitter Web App<\\/a>\",\"1578\":\"Twitter for iPhone<\\/a>\",\"1579\":\"Twitter Web App<\\/a>\",\"1580\":\"Twitter Web App<\\/a>\",\"1581\":\"Twitter for iPhone<\\/a>\",\"1582\":\"Twitter Web App<\\/a>\",\"1583\":\"Twitter for Android<\\/a>\",\"1584\":\"Twitter for Android<\\/a>\",\"1585\":\"Twitter for Android<\\/a>\",\"1586\":\"Twitter for Android<\\/a>\",\"1587\":\"Twitter Web App<\\/a>\",\"1588\":\"Twitter for Android<\\/a>\",\"1589\":\"Twitter for iPhone<\\/a>\",\"1590\":\"Twitter Web App<\\/a>\",\"1591\":\"Twitter for Android<\\/a>\",\"1592\":\"Twitter for Android<\\/a>\",\"1593\":\"Twitter for iPhone<\\/a>\",\"1594\":\"Twitter for Android<\\/a>\",\"1595\":\"Twitter Web App<\\/a>\",\"1596\":\"Twitter for Android<\\/a>\",\"1597\":\"Twitter for Android<\\/a>\",\"1598\":\"Twitter Web App<\\/a>\",\"1599\":\"Twitter Web App<\\/a>\",\"1600\":\"Twitter Web App<\\/a>\",\"1601\":\"Twitter for Android<\\/a>\",\"1602\":\"Twitter for Android<\\/a>\",\"1603\":\"Twitter for Android<\\/a>\",\"1604\":\"Twitter Web App<\\/a>\",\"1605\":\"Twitter for Android<\\/a>\",\"1606\":\"Twitter for Android<\\/a>\",\"1607\":\"Twitter Web App<\\/a>\",\"1608\":\"Twitter for Android<\\/a>\",\"1609\":\"Twitter for Android<\\/a>\",\"1610\":\"Twitter for Android<\\/a>\",\"1611\":\"Twitter for Android<\\/a>\",\"1612\":\"Twitter for Android<\\/a>\",\"1613\":\"Twitter Web App<\\/a>\",\"1614\":\"Twitter Web App<\\/a>\",\"1615\":\"Twitter for Android<\\/a>\",\"1616\":\"Twitter Web App<\\/a>\",\"1617\":\"Twitter for Android<\\/a>\",\"1618\":\"Twitter for iPhone<\\/a>\",\"1619\":\"Twitter for Android<\\/a>\",\"1620\":\"Twitter for iPhone<\\/a>\",\"1621\":\"Twitter for Android<\\/a>\",\"1622\":\"Twitter for Android<\\/a>\",\"1623\":\"Twitter for Android<\\/a>\",\"1624\":\"Twitter for Android<\\/a>\",\"1625\":\"Twitter for iPhone<\\/a>\",\"1626\":\"Twitter for Android<\\/a>\",\"1627\":\"Twitter Web App<\\/a>\",\"1628\":\"Twitter Web App<\\/a>\",\"1629\":\"Twitter for Android<\\/a>\",\"1630\":\"Twitter Web App<\\/a>\",\"1631\":\"Twitter for Android<\\/a>\",\"1632\":\"Twitter for Android<\\/a>\",\"1633\":\"Twitter Web App<\\/a>\",\"1634\":\"Twitter for Android<\\/a>\",\"1635\":\"Twitter for Android<\\/a>\",\"1636\":\"Twitter Web App<\\/a>\",\"1637\":\"Twitter for Android<\\/a>\",\"1638\":\"Twitter for Android<\\/a>\",\"1639\":\"Twitter for iPhone<\\/a>\",\"1640\":\"Twitter for iPhone<\\/a>\",\"1641\":\"Twitter Web App<\\/a>\",\"1642\":\"Twitter for Android<\\/a>\",\"1643\":\"Twitter for iPhone<\\/a>\",\"1644\":\"Twitter for Android<\\/a>\",\"1645\":\"Twitter Web App<\\/a>\",\"1646\":\"Twitter Web App<\\/a>\",\"1647\":\"Twitter for iPhone<\\/a>\",\"1648\":\"Twitter for Android<\\/a>\",\"1649\":\"Twitter Web App<\\/a>\",\"1650\":\"Twitter for iPad<\\/a>\",\"1651\":\"Twitter for Android<\\/a>\",\"1652\":\"Twitter for iPhone<\\/a>\",\"1653\":\"Twitter for Android<\\/a>\",\"1654\":\"Twitter for Android<\\/a>\",\"1655\":\"Twitter for Android<\\/a>\",\"1656\":\"Twitter for Android<\\/a>\",\"1657\":\"Twitter for Android<\\/a>\",\"1658\":\"Twitter for Android<\\/a>\",\"1659\":\"Twitter for Android<\\/a>\",\"1660\":\"Twitter for iPhone<\\/a>\",\"1661\":\"Twitter for Android<\\/a>\",\"1662\":\"Twitter Web App<\\/a>\",\"1663\":\"Twitter for Android<\\/a>\",\"1664\":\"Twitter for Android<\\/a>\",\"1665\":\"Twitter Web App<\\/a>\",\"1666\":\"Twitter for Android<\\/a>\",\"1667\":\"Twitter for iPhone<\\/a>\",\"1668\":\"Twitter for Android<\\/a>\",\"1669\":\"Twitter Web App<\\/a>\",\"1670\":\"Twitter for Android<\\/a>\",\"1671\":\"Twitter for Android<\\/a>\",\"1672\":\"Twitter for iPhone<\\/a>\",\"1673\":\"Twitter for Android<\\/a>\",\"1674\":\"Twitter for Android<\\/a>\",\"1675\":\"Twitter for iPhone<\\/a>\",\"1676\":\"Twitter for Android<\\/a>\",\"1677\":\"Twitter for iPhone<\\/a>\",\"1678\":\"Twitter for Android<\\/a>\",\"1679\":\"Twitter for iPhone<\\/a>\",\"1680\":\"Twitter for Android<\\/a>\",\"1681\":\"Twitter Web App<\\/a>\",\"1682\":\"Twitter for Android<\\/a>\",\"1683\":\"Twitter for Android<\\/a>\",\"1684\":\"Twitter Web App<\\/a>\",\"1685\":\"Twitter for Android<\\/a>\",\"1686\":\"Twitter for Android<\\/a>\",\"1687\":\"Twitter for iPhone<\\/a>\",\"1688\":\"Twitter Web App<\\/a>\",\"1689\":\"Twitter for iPhone<\\/a>\",\"1690\":\"Twitter for Android<\\/a>\",\"1691\":\"Twitter for Android<\\/a>\",\"1692\":\"Twitter for iPhone<\\/a>\",\"1693\":\"Twitter for Android<\\/a>\",\"1694\":\"Twitter for iPhone<\\/a>\",\"1695\":\"Twitter Web App<\\/a>\",\"1696\":\"Twitter for iPhone<\\/a>\",\"1697\":\"Twitter for Android<\\/a>\",\"1698\":\"Twitter for iPhone<\\/a>\",\"1699\":\"Twitter for Android<\\/a>\",\"1700\":\"Twitter for Android<\\/a>\",\"1701\":\"Twitter for Android<\\/a>\",\"1702\":\"Twitter Web App<\\/a>\",\"1703\":\"Twitter Web App<\\/a>\",\"1704\":\"Twitter Web App<\\/a>\",\"1705\":\"Twitter for iPhone<\\/a>\",\"1706\":\"Twitter for iPhone<\\/a>\",\"1707\":\"Twitter for Android<\\/a>\",\"1708\":\"Twitter Web App<\\/a>\",\"1709\":\"Twitter Web App<\\/a>\",\"1710\":\"Twitter for Android<\\/a>\",\"1711\":\"Twitter for Android<\\/a>\",\"1712\":\"Twitter Web App<\\/a>\",\"1713\":\"Twitter for iPhone<\\/a>\",\"1714\":\"Twitter for iPhone<\\/a>\",\"1715\":\"Twitter for Android<\\/a>\",\"1716\":\"Twitter for Android<\\/a>\",\"1717\":\"Twitter Web App<\\/a>\",\"1718\":\"Twitter Web App<\\/a>\",\"1719\":\"Twitter for iPhone<\\/a>\",\"1720\":\"Twitter for Android<\\/a>\",\"1721\":\"Twitter for Android<\\/a>\",\"1722\":\"Twitter Web App<\\/a>\",\"1723\":\"Twitter for Android<\\/a>\",\"1724\":\"Twitter Web App<\\/a>\",\"1725\":\"Twitter Web App<\\/a>\",\"1726\":\"Twitter for iPhone<\\/a>\",\"1727\":\"Twitter Web App<\\/a>\",\"1728\":\"Twitter for Android<\\/a>\",\"1729\":\"Twitter Web App<\\/a>\",\"1730\":\"Twitter Web App<\\/a>\",\"1731\":\"Twitter Web App<\\/a>\",\"1732\":\"Twitter Web App<\\/a>\",\"1733\":\"Twitter for Android<\\/a>\",\"1734\":\"Twitter Web App<\\/a>\",\"1735\":\"Twitter for Android<\\/a>\",\"1736\":\"Twitter for iPhone<\\/a>\",\"1737\":\"Twitter Web App<\\/a>\",\"1738\":\"Twitter Web App<\\/a>\",\"1739\":\"Twitter for iPhone<\\/a>\",\"1740\":\"Twitter for Android<\\/a>\",\"1741\":\"Twitter for iPhone<\\/a>\",\"1742\":\"Twitter Web App<\\/a>\",\"1743\":\"Twitter Web App<\\/a>\",\"1744\":\"Twitter for iPhone<\\/a>\",\"1745\":\"Twitter for Android<\\/a>\",\"1746\":\"Twitter Web App<\\/a>\",\"1747\":\"Twitter for Android<\\/a>\",\"1748\":\"Twitter Web App<\\/a>\",\"1749\":\"Twitter Web App<\\/a>\",\"1750\":\"Twitter for iPhone<\\/a>\",\"1751\":\"Twitter for iPhone<\\/a>\",\"1752\":\"Twitter for iPhone<\\/a>\",\"1753\":\"Twitter for Android<\\/a>\",\"1754\":\"Twitter for Android<\\/a>\",\"1755\":\"Twitter Web App<\\/a>\",\"1756\":\"Twitter for Android<\\/a>\",\"1757\":\"Twitter for Android<\\/a>\",\"1758\":\"Twitter Web App<\\/a>\",\"1759\":\"Twitter Web App<\\/a>\",\"1760\":\"Twitter Web App<\\/a>\",\"1761\":\"Twitter for Android<\\/a>\",\"1762\":\"Twitter Web App<\\/a>\",\"1763\":\"Twitter Web App<\\/a>\",\"1764\":\"Twitter Web App<\\/a>\",\"1765\":\"Twitter Web App<\\/a>\",\"1766\":\"Twitter for Android<\\/a>\",\"1767\":\"Twitter for Android<\\/a>\",\"1768\":\"Twitter Web App<\\/a>\",\"1769\":\"Twitter for iPhone<\\/a>\",\"1770\":\"Twitter for Android<\\/a>\",\"1771\":\"Twitter Web App<\\/a>\",\"1772\":\"Twitter for iPhone<\\/a>\",\"1773\":\"Twitter for Android<\\/a>\",\"1774\":\"Twitter Web App<\\/a>\",\"1775\":\"Twitter for Android<\\/a>\",\"1776\":\"Twitter Web App<\\/a>\",\"1777\":\"Twitter for Android<\\/a>\",\"1778\":\"Twitter Web App<\\/a>\",\"1779\":\"Twitter for Android<\\/a>\",\"1780\":\"Twitter for Android<\\/a>\",\"1781\":\"Twitter Web App<\\/a>\",\"1782\":\"Twitter for Android<\\/a>\",\"1783\":\"Twitter Web App<\\/a>\",\"1784\":\"Twitter for Android<\\/a>\",\"1785\":\"Twitter for Android<\\/a>\",\"1786\":\"Twitter for Android<\\/a>\",\"1787\":\"Twitter for Android<\\/a>\",\"1788\":\"Twitter for Android<\\/a>\",\"1789\":\"Twitter for iPhone<\\/a>\",\"1790\":\"Twitter for iPhone<\\/a>\",\"1791\":\"Twitter for iPhone<\\/a>\",\"1792\":\"Twitter Web App<\\/a>\",\"1793\":\"Twitter for Android<\\/a>\",\"1794\":\"Twitter for iPhone<\\/a>\",\"1795\":\"Twitter for iPhone<\\/a>\",\"1796\":\"Twitter for iPhone<\\/a>\",\"1797\":\"Twitter for Android<\\/a>\",\"1798\":\"Twitter Web App<\\/a>\",\"1799\":\"Twitter for Android<\\/a>\",\"1800\":\"Twitter for Android<\\/a>\",\"1801\":\"Twitter for Android<\\/a>\",\"1802\":\"Twitter Web App<\\/a>\",\"1803\":\"Twitter for iPhone<\\/a>\",\"1804\":\"Twitter Web App<\\/a>\",\"1805\":\"Twitter for iPhone<\\/a>\",\"1806\":\"Twitter for iPhone<\\/a>\",\"1807\":\"Twitter for Android<\\/a>\",\"1808\":\"Twitter for iPhone<\\/a>\",\"1809\":\"Twitter for Android<\\/a>\",\"1810\":\"Twitter for Android<\\/a>\",\"1811\":\"Twitter for iPhone<\\/a>\",\"1812\":\"Twitter for iPhone<\\/a>\",\"1813\":\"Twitter for Android<\\/a>\",\"1814\":\"Twitter for Android<\\/a>\",\"1815\":\"Twitter for Android<\\/a>\",\"1816\":\"Twitter for Android<\\/a>\",\"1817\":\"Twitter for Android<\\/a>\",\"1818\":\"Twitter for Android<\\/a>\",\"1819\":\"Twitter for iPhone<\\/a>\",\"1820\":\"Twitter for iPhone<\\/a>\",\"1821\":\"Twitter for Android<\\/a>\",\"1822\":\"Twitter for Android<\\/a>\",\"1823\":\"Twitter for iPhone<\\/a>\",\"1824\":\"Twitter for Android<\\/a>\",\"1825\":\"Twitter for Android<\\/a>\",\"1826\":\"Twitter for Android<\\/a>\",\"1827\":\"Twitter for Android<\\/a>\",\"1828\":\"Twitter for Android<\\/a>\",\"1829\":\"Twitter for Android<\\/a>\",\"1830\":\"Twitter for Android<\\/a>\",\"1831\":\"Twitter for Android<\\/a>\",\"1832\":\"Twitter for iPhone<\\/a>\",\"1833\":\"Twitter for Android<\\/a>\",\"1834\":\"Twitter for Android<\\/a>\",\"1835\":\"Twitter for Android<\\/a>\",\"1836\":\"Twitter for Android<\\/a>\",\"1837\":\"Twitter for Android<\\/a>\",\"1838\":\"Twitter for Android<\\/a>\",\"1839\":\"Twitter for Android<\\/a>\",\"1840\":\"Twitter for iPhone<\\/a>\",\"1841\":\"Twitter for Android<\\/a>\",\"1842\":\"Twitter for Android<\\/a>\",\"1843\":\"Twitter for Android<\\/a>\",\"1844\":\"Twitter for Android<\\/a>\",\"1845\":\"Twitter for Android<\\/a>\",\"1846\":\"Twitter for Android<\\/a>\",\"1847\":\"Twitter for iPhone<\\/a>\",\"1848\":\"Twitter for iPhone<\\/a>\",\"1849\":\"Twitter for Android<\\/a>\",\"1850\":\"Twitter for Android<\\/a>\",\"1851\":\"Twitter for Android<\\/a>\",\"1852\":\"Twitter for iPhone<\\/a>\",\"1853\":\"Twitter for Android<\\/a>\",\"1854\":\"Twitter for Android<\\/a>\",\"1855\":\"Twitter for Android<\\/a>\",\"1856\":\"Twitter for Android<\\/a>\",\"1857\":\"Twitter for iPhone<\\/a>\",\"1858\":\"Twitter for Android<\\/a>\",\"1859\":\"Twitter for iPhone<\\/a>\",\"1860\":\"Twitter for iPhone<\\/a>\",\"1861\":\"Twitter for Android<\\/a>\",\"1862\":\"Twitter for Android<\\/a>\",\"1863\":\"Twitter for Android<\\/a>\",\"1864\":\"Twitter for Android<\\/a>\",\"1865\":\"Twitter for Android<\\/a>\",\"1866\":\"Twitter for iPhone<\\/a>\",\"1867\":\"Twitter for iPhone<\\/a>\",\"1868\":\"Twitter for iPhone<\\/a>\",\"1869\":\"Twitter for Android<\\/a>\",\"1870\":\"Twitter for Android<\\/a>\",\"1871\":\"Twitter for Android<\\/a>\",\"1872\":\"Twitter for Android<\\/a>\",\"1873\":\"Twitter for Android<\\/a>\",\"1874\":\"Twitter for Android<\\/a>\",\"1875\":\"Twitter for iPhone<\\/a>\",\"1876\":\"Twitter for Android<\\/a>\",\"1877\":\"Twitter for Android<\\/a>\",\"1878\":\"Twitter for Android<\\/a>\",\"1879\":\"Twitter for Android<\\/a>\",\"1880\":\"Twitter Web App<\\/a>\",\"1881\":\"Twitter for Android<\\/a>\",\"1882\":\"Twitter for Android<\\/a>\",\"1883\":\"Twitter Web App<\\/a>\",\"1884\":\"Twitter for Android<\\/a>\",\"1885\":\"Twitter for Android<\\/a>\",\"1886\":\"Twitter for iPhone<\\/a>\",\"1887\":\"Twitter for Android<\\/a>\",\"1888\":\"Twitter for Android<\\/a>\",\"1889\":\"Twitter for Android<\\/a>\",\"1890\":\"Twitter for Android<\\/a>\",\"1891\":\"Twitter for Android<\\/a>\",\"1892\":\"Twitter for Android<\\/a>\",\"1893\":\"Twitter for Android<\\/a>\",\"1894\":\"Twitter for iPhone<\\/a>\",\"1895\":\"Twitter for Android<\\/a>\",\"1896\":\"Twitter for Android<\\/a>\",\"1897\":\"Twitter for Android<\\/a>\",\"1898\":\"Twitter for iPhone<\\/a>\",\"1899\":\"Twitter for Android<\\/a>\",\"1900\":\"Twitter for iPhone<\\/a>\",\"1901\":\"Twitter for Android<\\/a>\",\"1902\":\"Twitter for Android<\\/a>\",\"1903\":\"Twitter for Android<\\/a>\",\"1904\":\"Twitter for Android<\\/a>\",\"1905\":\"Twitter for Android<\\/a>\",\"1906\":\"Twitter for Android<\\/a>\",\"1907\":\"Twitter for Android<\\/a>\",\"1908\":\"Twitter for iPhone<\\/a>\",\"1909\":\"Twitter for Android<\\/a>\",\"1910\":\"Twitter for Android<\\/a>\",\"1911\":\"Twitter for iPhone<\\/a>\",\"1912\":\"Twitter for Android<\\/a>\",\"1913\":\"Twitter for Android<\\/a>\",\"1914\":\"Twitter for iPhone<\\/a>\",\"1915\":\"Twitter for iPhone<\\/a>\",\"1916\":\"Twitter for Android<\\/a>\",\"1917\":\"Twitter for iPhone<\\/a>\",\"1918\":\"Twitter for Android<\\/a>\",\"1919\":\"Twitter for Android<\\/a>\",\"1920\":\"Twitter for Android<\\/a>\",\"1921\":\"Twitter for Android<\\/a>\",\"1922\":\"Twitter for Android<\\/a>\",\"1923\":\"Twitter for Android<\\/a>\",\"1924\":\"Twitter for Android<\\/a>\",\"1925\":\"Twitter for iPhone<\\/a>\",\"1926\":\"Twitter for iPhone<\\/a>\",\"1927\":\"Twitter for Android<\\/a>\",\"1928\":\"Twitter for Android<\\/a>\",\"1929\":\"Twitter for iPhone<\\/a>\",\"1930\":\"Twitter for Android<\\/a>\",\"1931\":\"Twitter for Android<\\/a>\",\"1932\":\"Twitter for Android<\\/a>\",\"1933\":\"Twitter for Android<\\/a>\",\"1934\":\"Twitter for Android<\\/a>\",\"1935\":\"Twitter for Android<\\/a>\",\"1936\":\"Twitter for Android<\\/a>\",\"1937\":\"Twitter for Android<\\/a>\",\"1938\":\"Twitter for Android<\\/a>\",\"1939\":\"Twitter for iPhone<\\/a>\",\"1940\":\"Twitter for iPhone<\\/a>\",\"1941\":\"Twitter for iPhone<\\/a>\",\"1942\":\"Twitter for Android<\\/a>\",\"1943\":\"Twitter for iPhone<\\/a>\",\"1944\":\"Twitter for Android<\\/a>\",\"1945\":\"Twitter for Android<\\/a>\",\"1946\":\"Twitter for Android<\\/a>\",\"1947\":\"Twitter for Android<\\/a>\",\"1948\":\"Twitter for Android<\\/a>\",\"1949\":\"Twitter for Android<\\/a>\",\"1950\":\"Twitter for Android<\\/a>\",\"1951\":\"Twitter for Android<\\/a>\",\"1952\":\"Twitter for Android<\\/a>\",\"1953\":\"Twitter for Android<\\/a>\",\"1954\":\"Twitter for iPhone<\\/a>\",\"1955\":\"Twitter for iPhone<\\/a>\",\"1956\":\"Twitter for Android<\\/a>\",\"1957\":\"Twitter for Android<\\/a>\",\"1958\":\"Twitter for Android<\\/a>\",\"1959\":\"Twitter for Android<\\/a>\",\"1960\":\"Twitter for Android<\\/a>\",\"1961\":\"Twitter for iPhone<\\/a>\",\"1962\":\"Twitter for Android<\\/a>\",\"1963\":\"Twitter for Android<\\/a>\",\"1964\":\"Twitter for Android<\\/a>\",\"1965\":\"Twitter for Android<\\/a>\",\"1966\":\"Twitter for Android<\\/a>\",\"1967\":\"Twitter for Android<\\/a>\",\"1968\":\"Twitter for Android<\\/a>\",\"1969\":\"Twitter for Android<\\/a>\",\"1970\":\"Twitter for iPhone<\\/a>\",\"1971\":\"Twitter for Android<\\/a>\",\"1972\":\"Twitter for Android<\\/a>\",\"1973\":\"Twitter for Android<\\/a>\",\"1974\":\"Twitter for Android<\\/a>\",\"1975\":\"Twitter for Android<\\/a>\",\"1976\":\"Twitter for Android<\\/a>\",\"1977\":\"Twitter for Android<\\/a>\",\"1978\":\"Twitter for Android<\\/a>\",\"1979\":\"Twitter for Android<\\/a>\",\"1980\":\"Twitter for Android<\\/a>\",\"1981\":\"Twitter for Android<\\/a>\",\"1982\":\"Twitter for Android<\\/a>\",\"1983\":\"Twitter for Android<\\/a>\",\"1984\":\"Twitter for Android<\\/a>\",\"1985\":\"Twitter for Android<\\/a>\",\"1986\":\"Twitter for Android<\\/a>\",\"1987\":\"Twitter for Android<\\/a>\",\"1988\":\"Twitter for Android<\\/a>\",\"1989\":\"Twitter for Android<\\/a>\",\"1990\":\"Twitter for Android<\\/a>\",\"1991\":\"Twitter for Android<\\/a>\",\"1992\":\"Twitter for Android<\\/a>\",\"1993\":\"Twitter for Android<\\/a>\",\"1994\":\"Twitter for Android<\\/a>\",\"1995\":\"Twitter for Android<\\/a>\",\"1996\":\"Twitter for Android<\\/a>\",\"1997\":\"Twitter for Android<\\/a>\",\"1998\":\"Twitter for Android<\\/a>\",\"1999\":\"Twitter for Android<\\/a>\",\"2000\":\"Twitter for Android<\\/a>\",\"2001\":\"Twitter for Android<\\/a>\",\"2002\":\"Twitter for Android<\\/a>\",\"2003\":\"Twitter for Android<\\/a>\",\"2004\":\"Twitter for Android<\\/a>\",\"2005\":\"Twitter for Android<\\/a>\",\"2006\":\"Twitter for Android<\\/a>\",\"2007\":\"Twitter for Android<\\/a>\",\"2008\":\"Twitter for Android<\\/a>\",\"2009\":\"Twitter for Android<\\/a>\",\"2010\":\"Twitter for Android<\\/a>\",\"2011\":\"Twitter for Android<\\/a>\",\"2012\":\"Twitter for Android<\\/a>\",\"2013\":\"Twitter for Android<\\/a>\",\"2014\":\"Twitter for Android<\\/a>\",\"2015\":\"Twitter for Android<\\/a>\",\"2016\":\"Twitter for Android<\\/a>\",\"2017\":\"Twitter Web App<\\/a>\",\"2018\":\"Twitter for Android<\\/a>\",\"2019\":\"Twitter for Android<\\/a>\",\"2020\":\"Twitter for Android<\\/a>\",\"2021\":\"Twitter for Android<\\/a>\",\"2022\":\"Twitter Web App<\\/a>\",\"2023\":\"Twitter for Android<\\/a>\",\"2024\":\"Twitter for Android<\\/a>\",\"2025\":\"Twitter for Android<\\/a>\",\"2026\":\"Twitter for Android<\\/a>\",\"2027\":\"Twitter for Android<\\/a>\",\"2028\":\"Twitter for Android<\\/a>\",\"2029\":\"Twitter for Android<\\/a>\",\"2030\":\"Twitter for Android<\\/a>\",\"2031\":\"Twitter for Android<\\/a>\",\"2032\":\"Twitter for Android<\\/a>\",\"2033\":\"Twitter for Android<\\/a>\",\"2034\":\"Twitter for Android<\\/a>\",\"2035\":\"Twitter for Android<\\/a>\",\"2036\":\"Twitter for Android<\\/a>\",\"2037\":\"Twitter for Android<\\/a>\",\"2038\":\"Twitter for Android<\\/a>\",\"2039\":\"Twitter for Android<\\/a>\",\"2040\":\"Twitter for Android<\\/a>\",\"2041\":\"Twitter for Android<\\/a>\",\"2042\":\"Twitter for Android<\\/a>\",\"2043\":\"Twitter for Android<\\/a>\",\"2044\":\"Twitter for Android<\\/a>\",\"2045\":\"Twitter for Android<\\/a>\",\"2046\":\"Twitter for iPhone<\\/a>\",\"2047\":\"Twitter for Android<\\/a>\",\"2048\":\"Twitter for Android<\\/a>\",\"2049\":\"Twitter for Android<\\/a>\",\"2050\":\"Twitter for Android<\\/a>\",\"2051\":\"Twitter for iPhone<\\/a>\",\"2052\":\"Twitter for Android<\\/a>\",\"2053\":\"Twitter for iPhone<\\/a>\",\"2054\":\"Twitter for Android<\\/a>\",\"2055\":\"Twitter for iPhone<\\/a>\",\"2056\":\"Twitter for Android<\\/a>\",\"2057\":\"Twitter for Android<\\/a>\",\"2058\":\"Twitter for iPhone<\\/a>\",\"2059\":\"Twitter for Android<\\/a>\",\"2060\":\"Twitter for Android<\\/a>\",\"2061\":\"Twitter for Android<\\/a>\",\"2062\":\"Twitter for Android<\\/a>\",\"2063\":\"Twitter for Android<\\/a>\",\"2064\":\"Twitter for Android<\\/a>\",\"2065\":\"Twitter for Android<\\/a>\",\"2066\":\"Twitter for Android<\\/a>\",\"2067\":\"Twitter for Android<\\/a>\",\"2068\":\"Twitter for Android<\\/a>\",\"2069\":\"Twitter for Android<\\/a>\",\"2070\":\"Twitter for Android<\\/a>\",\"2071\":\"Twitter for iPhone<\\/a>\",\"2072\":\"Twitter for Android<\\/a>\",\"2073\":\"Twitter for Android<\\/a>\",\"2074\":\"Twitter for Android<\\/a>\",\"2075\":\"Twitter for Android<\\/a>\",\"2076\":\"Twitter for iPhone<\\/a>\",\"2077\":\"Twitter for Android<\\/a>\",\"2078\":\"Twitter Web App<\\/a>\",\"2079\":\"Buffer<\\/a>\",\"2080\":\"Twitter for Android<\\/a>\",\"2081\":\"Twitter for Android<\\/a>\",\"2082\":\"Twitter for Android<\\/a>\",\"2083\":\"Twitter for iPhone<\\/a>\",\"2084\":\"Twitter for Android<\\/a>\",\"2085\":\"Twitter for Android<\\/a>\",\"2086\":\"Twitter for Android<\\/a>\",\"2087\":\"Twitter for iPhone<\\/a>\",\"2088\":\"Twitter Web App<\\/a>\",\"2089\":\"Twitter for iPhone<\\/a>\",\"2090\":\"Twitter for Android<\\/a>\",\"2091\":\"Twitter for Android<\\/a>\",\"2092\":\"Twitter for Android<\\/a>\",\"2093\":\"Twitter for iPhone<\\/a>\",\"2094\":\"Twitter for Android<\\/a>\",\"2095\":\"Twitter for Android<\\/a>\",\"2096\":\"Twitter for Android<\\/a>\",\"2097\":\"Twitter for Android<\\/a>\",\"2098\":\"Twitter for Android<\\/a>\",\"2099\":\"Twitter for Android<\\/a>\",\"2100\":\"Twitter for Android<\\/a>\",\"2101\":\"Twitter for iPhone<\\/a>\",\"2102\":\"Twitter for iPhone<\\/a>\",\"2103\":\"Twitter for Android<\\/a>\",\"2104\":\"Twitter for iPhone<\\/a>\",\"2105\":\"Twitter for Android<\\/a>\",\"2106\":\"Twitter for iPhone<\\/a>\",\"2107\":\"Twitter for Android<\\/a>\",\"2108\":\"Twitter for Android<\\/a>\",\"2109\":\"Twitter for Android<\\/a>\",\"2110\":\"Twitter for iPhone<\\/a>\",\"2111\":\"Twitter for Android<\\/a>\",\"2112\":\"Twitter for Android<\\/a>\",\"2113\":\"Twitter for Android<\\/a>\",\"2114\":\"Twitter for Android<\\/a>\",\"2115\":\"Twitter for Android<\\/a>\",\"2116\":\"Twitter for Android<\\/a>\",\"2117\":\"Twitter for iPhone<\\/a>\",\"2118\":\"Twitter for iPhone<\\/a>\",\"2119\":\"Twitter for iPhone<\\/a>\",\"2120\":\"Twitter for Android<\\/a>\",\"2121\":\"Twitter for iPhone<\\/a>\",\"2122\":\"Twitter for Android<\\/a>\",\"2123\":\"Twitter for Android<\\/a>\",\"2124\":\"Twitter for Android<\\/a>\",\"2125\":\"Twitter for Android<\\/a>\",\"2126\":\"Twitter for Android<\\/a>\",\"2127\":\"Twitter for Android<\\/a>\",\"2128\":\"Twitter for Android<\\/a>\",\"2129\":\"Twitter for Android<\\/a>\",\"2130\":\"Twitter for iPhone<\\/a>\",\"2131\":\"Twitter for Android<\\/a>\",\"2132\":\"Twitter for Android<\\/a>\",\"2133\":\"Twitter for iPhone<\\/a>\",\"2134\":\"Twitter for Android<\\/a>\",\"2135\":\"Twitter for iPhone<\\/a>\",\"2136\":\"Twitter for Android<\\/a>\",\"2137\":\"Twitter for Android<\\/a>\",\"2138\":\"Twitter for Android<\\/a>\",\"2139\":\"Twitter for Android<\\/a>\",\"2140\":\"Twitter for Android<\\/a>\",\"2141\":\"Twitter for Android<\\/a>\",\"2142\":\"Twitter for Android<\\/a>\",\"2143\":\"Twitter for Android<\\/a>\",\"2144\":\"Twitter for Android<\\/a>\",\"2145\":\"Twitter for Android<\\/a>\",\"2146\":\"Twitter for Android<\\/a>\",\"2147\":\"Twitter for Android<\\/a>\",\"2148\":\"Twitter for Android<\\/a>\",\"2149\":\"Twitter for Android<\\/a>\",\"2150\":\"Twitter for iPhone<\\/a>\",\"2151\":\"Twitter for Android<\\/a>\",\"2152\":\"Twitter for Android<\\/a>\",\"2153\":\"Twitter for Android<\\/a>\",\"2154\":\"Twitter for Android<\\/a>\",\"2155\":\"Twitter for Android<\\/a>\",\"2156\":\"Twitter for Android<\\/a>\",\"2157\":\"Twitter for Android<\\/a>\",\"2158\":\"Twitter for Android<\\/a>\",\"2159\":\"Twitter for Android<\\/a>\",\"2160\":\"Twitter for Android<\\/a>\",\"2161\":\"Twitter for Android<\\/a>\",\"2162\":\"Twitter for Android<\\/a>\",\"2163\":\"Twitter for Android<\\/a>\",\"2164\":\"Twitter for iPhone<\\/a>\",\"2165\":\"Twitter for Android<\\/a>\",\"2166\":\"Twitter for Android<\\/a>\",\"2167\":\"Twitter for Android<\\/a>\",\"2168\":\"Twitter for Android<\\/a>\",\"2169\":\"Twitter for Android<\\/a>\",\"2170\":\"Twitter for Android<\\/a>\",\"2171\":\"Twitter for Android<\\/a>\",\"2172\":\"Twitter for Android<\\/a>\",\"2173\":\"Twitter for Android<\\/a>\",\"2174\":\"Twitter for Android<\\/a>\",\"2175\":\"Twitter for Android<\\/a>\",\"2176\":\"Twitter for Android<\\/a>\",\"2177\":\"Twitter for Android<\\/a>\",\"2178\":\"Twitter for Android<\\/a>\",\"2179\":\"Twitter for Android<\\/a>\",\"2180\":\"Twitter for Android<\\/a>\",\"2181\":\"Twitter for Android<\\/a>\",\"2182\":\"Twitter for Android<\\/a>\",\"2183\":\"Twitter for Android<\\/a>\",\"2184\":\"Twitter for Android<\\/a>\",\"2185\":\"Twitter for Android<\\/a>\",\"2186\":\"Twitter for Android<\\/a>\",\"2187\":\"Twitter for Android<\\/a>\",\"2188\":\"Twitter for Android<\\/a>\",\"2189\":\"Twitter for Android<\\/a>\",\"2190\":\"Twitter for Android<\\/a>\",\"2191\":\"Twitter for Android<\\/a>\",\"2192\":\"Twitter for Android<\\/a>\",\"2193\":\"Twitter for Android<\\/a>\",\"2194\":\"Hootsuite Inc.<\\/a>\",\"2195\":\"Twitter for Android<\\/a>\",\"2196\":\"Twitter for Android<\\/a>\",\"2197\":\"Twitter for Android<\\/a>\",\"2198\":\"Twitter for Android<\\/a>\",\"2199\":\"Twitter for Android<\\/a>\",\"2200\":\"Twitter for Android<\\/a>\",\"2201\":\"Twitter for Android<\\/a>\",\"2202\":\"Twitter for Android<\\/a>\",\"2203\":\"Twitter for iPhone<\\/a>\",\"2204\":\"Twitter for Android<\\/a>\",\"2205\":\"Twitter for Android<\\/a>\",\"2206\":\"Twitter for Android<\\/a>\",\"2207\":\"Twitter for Android<\\/a>\",\"2208\":\"Twitter for Android<\\/a>\",\"2209\":\"Twitter for Android<\\/a>\",\"2210\":\"Twitter for Android<\\/a>\",\"2211\":\"Twitter for Android<\\/a>\",\"2212\":\"Twitter for Android<\\/a>\",\"2213\":\"Twitter for Android<\\/a>\",\"2214\":\"Twitter for Android<\\/a>\",\"2215\":\"Twitter for Android<\\/a>\",\"2216\":\"Twitter for Android<\\/a>\",\"2217\":\"Twitter Web App<\\/a>\",\"2218\":\"Twitter for Android<\\/a>\",\"2219\":\"Twitter Web App<\\/a>\",\"2220\":\"Twitter Web App<\\/a>\",\"2221\":\"Twitter for Android<\\/a>\",\"2222\":\"Twitter for Android<\\/a>\",\"2223\":\"Twitter for Android<\\/a>\",\"2224\":\"Twitter for Android<\\/a>\",\"2225\":\"Twitter for Android<\\/a>\",\"2226\":\"Twitter for Android<\\/a>\",\"2227\":\"Twitter for iPhone<\\/a>\",\"2228\":\"Twitter for iPhone<\\/a>\",\"2229\":\"Twitter for iPhone<\\/a>\",\"2230\":\"Twitter for Android<\\/a>\",\"2231\":\"Twitter for Android<\\/a>\",\"2232\":\"Twitter for Android<\\/a>\",\"2233\":\"Twitter for Android<\\/a>\",\"2234\":\"Twitter for iPhone<\\/a>\",\"2235\":\"Twitter for Android<\\/a>\",\"2236\":\"Twitter for iPhone<\\/a>\",\"2237\":\"Twitter for iPhone<\\/a>\",\"2238\":\"Twitter for Android<\\/a>\",\"2239\":\"Twitter for Android<\\/a>\",\"2240\":\"Twitter for Android<\\/a>\",\"2241\":\"Twitter for Android<\\/a>\",\"2242\":\"Twitter for Android<\\/a>\",\"2243\":\"Twitter for Android<\\/a>\",\"2244\":\"Twitter for Android<\\/a>\",\"2245\":\"Twitter for Android<\\/a>\",\"2246\":\"Twitter for Android<\\/a>\",\"2247\":\"Twitter for Android<\\/a>\",\"2248\":\"Twitter for Android<\\/a>\",\"2249\":\"Twitter for Android<\\/a>\",\"2250\":\"Twitter for Android<\\/a>\",\"2251\":\"Twitter for Android<\\/a>\",\"2252\":\"Twitter for Android<\\/a>\",\"2253\":\"Twitter for Android<\\/a>\",\"2254\":\"Twitter for Android<\\/a>\",\"2255\":\"Twitter for Android<\\/a>\",\"2256\":\"Twitter for Android<\\/a>\",\"2257\":\"Twitter for Android<\\/a>\",\"2258\":\"Twitter for iPhone<\\/a>\",\"2259\":\"Twitter for Android<\\/a>\",\"2260\":\"Twitter for Android<\\/a>\",\"2261\":\"Twitter for iPhone<\\/a>\",\"2262\":\"Twitter for Android<\\/a>\",\"2263\":\"Twitter for Android<\\/a>\",\"2264\":\"Twitter for Android<\\/a>\",\"2265\":\"Twitter for Android<\\/a>\",\"2266\":\"Twitter for Android<\\/a>\",\"2267\":\"Twitter for Android<\\/a>\",\"2268\":\"Twitter for Android<\\/a>\",\"2269\":\"Twitter for Android<\\/a>\",\"2270\":\"Twitter for Android<\\/a>\",\"2271\":\"Twitter for Android<\\/a>\",\"2272\":\"Twitter for Android<\\/a>\",\"2273\":\"Twitter for Android<\\/a>\",\"2274\":\"Twitter for Android<\\/a>\",\"2275\":\"Twitter for Android<\\/a>\",\"2276\":\"Twitter for Android<\\/a>\",\"2277\":\"Twitter for Android<\\/a>\",\"2278\":\"Twitter for Android<\\/a>\",\"2279\":\"Twitter for Android<\\/a>\",\"2280\":\"Twitter for Android<\\/a>\",\"2281\":\"Twitter for Android<\\/a>\",\"2282\":\"Twitter for Android<\\/a>\",\"2283\":\"Twitter for Android<\\/a>\",\"2284\":\"Twitter for Android<\\/a>\",\"2285\":\"Twitter for Android<\\/a>\",\"2286\":\"Twitter for Android<\\/a>\",\"2287\":\"Twitter for Android<\\/a>\",\"2288\":\"Twitter for Android<\\/a>\",\"2289\":\"Twitter for Android<\\/a>\",\"2290\":\"Twitter for Android<\\/a>\",\"2291\":\"Twitter for Android<\\/a>\",\"2292\":\"Twitter for Android<\\/a>\",\"2293\":\"Twitter Web App<\\/a>\",\"2294\":\"Twitter for Android<\\/a>\",\"2295\":\"Twitter Web App<\\/a>\",\"2296\":\"Twitter Web App<\\/a>\",\"2297\":\"Twitter for Android<\\/a>\",\"2298\":\"Twitter for iPhone<\\/a>\",\"2299\":\"Twitter for iPhone<\\/a>\",\"2300\":\"Twitter for Android<\\/a>\",\"2301\":\"Twitter for Android<\\/a>\",\"2302\":\"Twitter for iPhone<\\/a>\",\"2303\":\"Twitter for Android<\\/a>\",\"2304\":\"Twitter for Android<\\/a>\",\"2305\":\"Twitter for Android<\\/a>\",\"2306\":\"Twitter for Android<\\/a>\",\"2307\":\"Twitter for iPhone<\\/a>\",\"2308\":\"Twitter for Android<\\/a>\",\"2309\":\"Twitter for Android<\\/a>\",\"2310\":\"Twitter for Android<\\/a>\",\"2311\":\"Twitter for iPhone<\\/a>\",\"2312\":\"Twitter for Android<\\/a>\",\"2313\":\"Twitter for iPhone<\\/a>\",\"2314\":\"Twitter for Android<\\/a>\",\"2315\":\"Twitter for iPhone<\\/a>\",\"2316\":\"Twitter for Android<\\/a>\",\"2317\":\"Twitter for Android<\\/a>\",\"2318\":\"Twitter for iPhone<\\/a>\",\"2319\":\"Twitter for Android<\\/a>\",\"2320\":\"Twitter for iPhone<\\/a>\",\"2321\":\"Twitter for iPhone<\\/a>\",\"2322\":\"Twitter for Android<\\/a>\",\"2323\":\"Twitter for iPhone<\\/a>\",\"2324\":\"Twitter for Android<\\/a>\",\"2325\":\"Twitter for Android<\\/a>\",\"2326\":\"Twitter for iPhone<\\/a>\",\"2327\":\"Twitter for Android<\\/a>\",\"2328\":\"Twitter for iPhone<\\/a>\",\"2329\":\"Twitter for iPhone<\\/a>\",\"2330\":\"Twitter for iPhone<\\/a>\",\"2331\":\"Twitter for iPhone<\\/a>\",\"2332\":\"Twitter for Android<\\/a>\",\"2333\":\"Twitter for Android<\\/a>\",\"2334\":\"Twitter for iPhone<\\/a>\",\"2335\":\"Twitter for Android<\\/a>\",\"2336\":\"Twitter for Android<\\/a>\",\"2337\":\"Twitter for Android<\\/a>\",\"2338\":\"Twitter for Android<\\/a>\",\"2339\":\"Twitter for Android<\\/a>\",\"2340\":\"Twitter for Android<\\/a>\",\"2341\":\"Twitter for Android<\\/a>\",\"2342\":\"Twitter for Android<\\/a>\",\"2343\":\"Twitter for Android<\\/a>\",\"2344\":\"Twitter for Android<\\/a>\",\"2345\":\"Twitter for Android<\\/a>\",\"2346\":\"Twitter for Android<\\/a>\",\"2347\":\"Twitter for Android<\\/a>\",\"2348\":\"Twitter for Android<\\/a>\",\"2349\":\"Twitter for Android<\\/a>\",\"2350\":\"Twitter Web App<\\/a>\",\"2351\":\"Twitter for Android<\\/a>\",\"2352\":\"Twitter for Android<\\/a>\",\"2353\":\"Twitter for iPhone<\\/a>\",\"2354\":\"Twitter for Android<\\/a>\",\"2355\":\"Twitter for Android<\\/a>\",\"2356\":\"Twitter for Android<\\/a>\",\"2357\":\"Twitter for Android<\\/a>\",\"2358\":\"Twitter for Android<\\/a>\",\"2359\":\"Twitter for Android<\\/a>\",\"2360\":\"Twitter for Android<\\/a>\",\"2361\":\"Twitter for Android<\\/a>\",\"2362\":\"Twitter for iPhone<\\/a>\",\"2363\":\"Twitter for Android<\\/a>\",\"2364\":\"Twitter for Android<\\/a>\",\"2365\":\"Twitter for Android<\\/a>\",\"2366\":\"Twitter for Android<\\/a>\",\"2367\":\"Twitter for Android<\\/a>\",\"2368\":\"Twitter for Android<\\/a>\",\"2369\":\"Twitter for Android<\\/a>\",\"2370\":\"Twitter for Android<\\/a>\",\"2371\":\"Twitter for Android<\\/a>\",\"2372\":\"Twitter for iPhone<\\/a>\",\"2373\":\"Twitter for Android<\\/a>\",\"2374\":\"Twitter for Android<\\/a>\",\"2375\":\"Twitter for Android<\\/a>\",\"2376\":\"Twitter for iPhone<\\/a>\",\"2377\":\"Twitter for iPhone<\\/a>\",\"2378\":\"Twitter for iPhone<\\/a>\",\"2379\":\"Twitter for iPhone<\\/a>\",\"2380\":\"Twitter Web App<\\/a>\",\"2381\":\"Twitter for Android<\\/a>\",\"2382\":\"Twitter for iPhone<\\/a>\",\"2383\":\"Twitter for Android<\\/a>\",\"2384\":\"Twitter for Android<\\/a>\",\"2385\":\"Twitter for Android<\\/a>\",\"2386\":\"Twitter for iPhone<\\/a>\",\"2387\":\"Twitter for Android<\\/a>\",\"2388\":\"Twitter for Android<\\/a>\",\"2389\":\"Twitter for iPhone<\\/a>\",\"2390\":\"Twitter for Android<\\/a>\",\"2391\":\"Twitter for Android<\\/a>\",\"2392\":\"Twitter for iPhone<\\/a>\",\"2393\":\"Twitter for iPhone<\\/a>\",\"2394\":\"Twitter for Android<\\/a>\",\"2395\":\"Twitter for Android<\\/a>\",\"2396\":\"Twitter for Android<\\/a>\",\"2397\":\"Twitter for Android<\\/a>\",\"2398\":\"Twitter for iPhone<\\/a>\",\"2399\":\"Twitter for Android<\\/a>\",\"2400\":\"Twitter for Android<\\/a>\",\"2401\":\"Twitter for iPhone<\\/a>\",\"2402\":\"Twitter for Android<\\/a>\",\"2403\":\"Twitter for Android<\\/a>\",\"2404\":\"Twitter for Android<\\/a>\",\"2405\":\"Twitter for Android<\\/a>\",\"2406\":\"Twitter for Android<\\/a>\",\"2407\":\"Twitter for iPhone<\\/a>\",\"2408\":\"Twitter for iPhone<\\/a>\",\"2409\":\"Twitter for Android<\\/a>\",\"2410\":\"Twitter for Android<\\/a>\",\"2411\":\"Twitter for Android<\\/a>\",\"2412\":\"Twitter for Android<\\/a>\",\"2413\":\"Twitter for Android<\\/a>\",\"2414\":\"Twitter for Android<\\/a>\",\"2415\":\"Twitter for Android<\\/a>\",\"2416\":\"Twitter for Android<\\/a>\",\"2417\":\"Twitter for Android<\\/a>\",\"2418\":\"Twitter for Android<\\/a>\",\"2419\":\"Twitter for Android<\\/a>\",\"2420\":\"Twitter for Android<\\/a>\",\"2421\":\"Twitter for Android<\\/a>\",\"2422\":\"Twitter for Android<\\/a>\",\"2423\":\"Twitter for Android<\\/a>\",\"2424\":\"Twitter for Android<\\/a>\",\"2425\":\"Twitter for Android<\\/a>\",\"2426\":\"Twitter for Android<\\/a>\",\"2427\":\"Twitter for Android<\\/a>\",\"2428\":\"Twitter for Android<\\/a>\",\"2429\":\"Twitter for Android<\\/a>\",\"2430\":\"Twitter for Android<\\/a>\",\"2431\":\"Twitter for Android<\\/a>\",\"2432\":\"Twitter for Android<\\/a>\",\"2433\":\"Twitter for Android<\\/a>\",\"2434\":\"Twitter for Android<\\/a>\",\"2435\":\"Twitter for Android<\\/a>\",\"2436\":\"Twitter for Android<\\/a>\",\"2437\":\"Twitter for Android<\\/a>\",\"2438\":\"Twitter for Android<\\/a>\",\"2439\":\"Twitter for Android<\\/a>\",\"2440\":\"Twitter for iPhone<\\/a>\",\"2441\":\"Twitter for Android<\\/a>\",\"2442\":\"Twitter for Android<\\/a>\",\"2443\":\"Twitter for Android<\\/a>\",\"2444\":\"Twitter for Android<\\/a>\",\"2445\":\"Twitter for Android<\\/a>\",\"2446\":\"Twitter for Android<\\/a>\",\"2447\":\"Twitter for Android<\\/a>\",\"2448\":\"Twitter for Android<\\/a>\",\"2449\":\"Twitter for Android<\\/a>\",\"2450\":\"Twitter for Android<\\/a>\",\"2451\":\"Twitter for iPhone<\\/a>\",\"2452\":\"Twitter for iPhone<\\/a>\",\"2453\":\"Twitter for iPhone<\\/a>\",\"2454\":\"Twitter for Android<\\/a>\",\"2455\":\"Twitter for Android<\\/a>\",\"2456\":\"Twitter for Android<\\/a>\",\"2457\":\"Twitter for Android<\\/a>\",\"2458\":\"Twitter for Android<\\/a>\",\"2459\":\"Twitter for iPhone<\\/a>\",\"2460\":\"Twitter for iPhone<\\/a>\",\"2461\":\"Twitter for iPhone<\\/a>\",\"2462\":\"Twitter for Android<\\/a>\",\"2463\":\"Twitter for Android<\\/a>\",\"2464\":\"Twitter for Android<\\/a>\",\"2465\":\"Twitter for Android<\\/a>\",\"2466\":\"Twitter for Android<\\/a>\",\"2467\":\"Twitter for Android<\\/a>\",\"2468\":\"Twitter for Android<\\/a>\",\"2469\":\"Twitter for Android<\\/a>\",\"2470\":\"Twitter for Android<\\/a>\",\"2471\":\"Twitter for Android<\\/a>\",\"2472\":\"Twitter for Android<\\/a>\",\"2473\":\"Twitter for Android<\\/a>\",\"2474\":\"Twitter for Android<\\/a>\",\"2475\":\"Twitter for Android<\\/a>\",\"2476\":\"Twitter for Android<\\/a>\",\"2477\":\"Twitter for Android<\\/a>\",\"2478\":\"Twitter for Android<\\/a>\",\"2479\":\"Twitter for Android<\\/a>\",\"2480\":\"Twitter for Android<\\/a>\",\"2481\":\"Twitter for Android<\\/a>\",\"2482\":\"Twitter for Android<\\/a>\",\"2483\":\"Twitter for Android<\\/a>\",\"2484\":\"Twitter for Android<\\/a>\",\"2485\":\"Twitter for Android<\\/a>\",\"2486\":\"Twitter for Android<\\/a>\",\"2487\":\"Twitter for Android<\\/a>\",\"2488\":\"Twitter for Android<\\/a>\",\"2489\":\"Twitter for Android<\\/a>\",\"2490\":\"Twitter for Android<\\/a>\",\"2491\":\"Twitter for Android<\\/a>\",\"2492\":\"Twitter for Android<\\/a>\",\"2493\":\"Twitter for Android<\\/a>\",\"2494\":\"Twitter for Android<\\/a>\",\"2495\":\"Twitter for Android<\\/a>\",\"2496\":\"Twitter for Android<\\/a>\",\"2497\":\"Twitter for Android<\\/a>\",\"2498\":\"Twitter for Android<\\/a>\",\"2499\":\"Twitter for Android<\\/a>\",\"2500\":\"Twitter for Android<\\/a>\",\"2501\":\"Twitter for Android<\\/a>\",\"2502\":\"Twitter for Android<\\/a>\",\"2503\":\"Twitter for Android<\\/a>\",\"2504\":\"Twitter for Android<\\/a>\",\"2505\":\"Twitter for Android<\\/a>\",\"2506\":\"Twitter for Android<\\/a>\",\"2507\":\"Twitter for Android<\\/a>\",\"2508\":\"Twitter for Android<\\/a>\",\"2509\":\"Twitter for Android<\\/a>\",\"2510\":\"Twitter for Android<\\/a>\",\"2511\":\"Twitter for Android<\\/a>\",\"2512\":\"Twitter for Android<\\/a>\",\"2513\":\"Twitter for Android<\\/a>\",\"2514\":\"Twitter for Android<\\/a>\",\"2515\":\"Twitter for Android<\\/a>\",\"2516\":\"Twitter for Android<\\/a>\",\"2517\":\"Twitter for Android<\\/a>\",\"2518\":\"Twitter for Android<\\/a>\",\"2519\":\"Twitter for Android<\\/a>\",\"2520\":\"Twitter for Android<\\/a>\",\"2521\":\"Twitter for Android<\\/a>\",\"2522\":\"Twitter for Android<\\/a>\",\"2523\":\"Twitter for Android<\\/a>\",\"2524\":\"Twitter for Android<\\/a>\",\"2525\":\"Twitter for Android<\\/a>\",\"2526\":\"Twitter for Android<\\/a>\",\"2527\":\"Twitter for Android<\\/a>\",\"2528\":\"Twitter for Android<\\/a>\",\"2529\":\"Twitter for Android<\\/a>\",\"2530\":\"Twitter for Android<\\/a>\",\"2531\":\"Twitter for Android<\\/a>\",\"2532\":\"Twitter for Android<\\/a>\",\"2533\":\"Twitter for Android<\\/a>\",\"2534\":\"Twitter for Android<\\/a>\",\"2535\":\"Twitter Web App<\\/a>\",\"2536\":\"Twitter for Android<\\/a>\",\"2537\":\"Twitter for Android<\\/a>\",\"2538\":\"Twitter for Android<\\/a>\",\"2539\":\"Twitter for Android<\\/a>\",\"2540\":\"Twitter for Android<\\/a>\",\"2541\":\"Twitter for Android<\\/a>\",\"2542\":\"Twitter for Android<\\/a>\",\"2543\":\"Twitter for Android<\\/a>\",\"2544\":\"Twitter for Android<\\/a>\",\"2545\":\"Twitter for Android<\\/a>\",\"2546\":\"Twitter for Android<\\/a>\",\"2547\":\"Twitter for Android<\\/a>\",\"2548\":\"Twitter Web App<\\/a>\",\"2549\":\"Twitter Web App<\\/a>\",\"2550\":\"Twitter for Android<\\/a>\",\"2551\":\"Twitter for iPhone<\\/a>\",\"2552\":\"Twitter for Android<\\/a>\",\"2553\":\"Twitter for Android<\\/a>\",\"2554\":\"Twitter for Android<\\/a>\",\"2555\":\"Twitter for Android<\\/a>\",\"2556\":\"Twitter Web App<\\/a>\",\"2557\":\"Twitter Web App<\\/a>\",\"2558\":\"Twitter for Android<\\/a>\",\"2559\":\"Twitter for Android<\\/a>\",\"2560\":\"Twitter for Android<\\/a>\",\"2561\":\"Twitter for Android<\\/a>\",\"2562\":\"Twitter Web App<\\/a>\",\"2563\":\"Twitter for iPhone<\\/a>\",\"2564\":\"Twitter Web App<\\/a>\",\"2565\":\"Twitter for Android<\\/a>\",\"2566\":\"Twitter for Android<\\/a>\",\"2567\":\"Twitter for Android<\\/a>\",\"2568\":\"Twitter for Android<\\/a>\",\"2569\":\"Twitter for Android<\\/a>\",\"2570\":\"Twitter for Android<\\/a>\",\"2571\":\"Twitter for Android<\\/a>\",\"2572\":\"Twitter for Android<\\/a>\",\"2573\":\"Twitter for Android<\\/a>\",\"2574\":\"Twitter for Android<\\/a>\",\"2575\":\"Twitter for Android<\\/a>\",\"2576\":\"Twitter for Android<\\/a>\",\"2577\":\"Twitter Web App<\\/a>\",\"2578\":\"Twitter Web App<\\/a>\",\"2579\":\"Twitter Web App<\\/a>\",\"2580\":\"Twitter Web App<\\/a>\",\"2581\":\"Twitter Web App<\\/a>\",\"2582\":\"Twitter Web App<\\/a>\",\"2583\":\"Twitter Web App<\\/a>\",\"2584\":\"Twitter Web App<\\/a>\",\"2585\":\"Twitter Web App<\\/a>\",\"2586\":\"Twitter Web App<\\/a>\",\"2587\":\"Twitter Web App<\\/a>\",\"2588\":\"Twitter Web App<\\/a>\",\"2589\":\"Twitter Web App<\\/a>\",\"2590\":\"Twitter Web App<\\/a>\",\"2591\":\"Twitter Web App<\\/a>\",\"2592\":\"Twitter Web App<\\/a>\",\"2593\":\"Twitter Web App<\\/a>\",\"2594\":\"Twitter Web App<\\/a>\",\"2595\":\"Twitter Web App<\\/a>\",\"2596\":\"Twitter Web App<\\/a>\",\"2597\":\"Twitter Web App<\\/a>\",\"2598\":\"Twitter for iPhone<\\/a>\",\"2599\":\"Twitter Web App<\\/a>\",\"2600\":\"Twitter Web App<\\/a>\",\"2601\":\"Twitter Web App<\\/a>\",\"2602\":\"Twitter Web App<\\/a>\",\"2603\":\"Twitter Web App<\\/a>\",\"2604\":\"Twitter for Android<\\/a>\",\"2605\":\"Twitter Web App<\\/a>\",\"2606\":\"Twitter Web App<\\/a>\",\"2607\":\"Twitter Web App<\\/a>\",\"2608\":\"Twitter Web App<\\/a>\",\"2609\":\"Twitter for Android<\\/a>\",\"2610\":\"Twitter for iPhone<\\/a>\",\"2611\":\"Twitter Web App<\\/a>\",\"2612\":\"Twitter Web App<\\/a>\",\"2613\":\"Twitter Web App<\\/a>\",\"2614\":\"Twitter Web App<\\/a>\",\"2615\":\"Twitter Web App<\\/a>\",\"2616\":\"Twitter Web App<\\/a>\",\"2617\":\"Twitter Web App<\\/a>\",\"2618\":\"Twitter for iPhone<\\/a>\",\"2619\":\"Twitter for Android<\\/a>\",\"2620\":\"Twitter for Android<\\/a>\",\"2621\":\"Twitter for Android<\\/a>\",\"2622\":\"Twitter for Android<\\/a>\",\"2623\":\"Twitter for Android<\\/a>\",\"2624\":\"Twitter for iPhone<\\/a>\",\"2625\":\"Twitter for Android<\\/a>\",\"2626\":\"Twitter for Android<\\/a>\",\"2627\":\"Twitter for iPhone<\\/a>\",\"2628\":\"Twitter for Android<\\/a>\",\"2629\":\"Twitter for Android<\\/a>\",\"2630\":\"Twitter for Android<\\/a>\",\"2631\":\"Twitter for Android<\\/a>\",\"2632\":\"Twitter for Android<\\/a>\",\"2633\":\"Twitter for Android<\\/a>\",\"2634\":\"Twitter for iPhone<\\/a>\",\"2635\":\"Twitter for Android<\\/a>\",\"2636\":\"Twitter for Android<\\/a>\",\"2637\":\"Twitter Web App<\\/a>\",\"2638\":\"Twitter for Android<\\/a>\",\"2639\":\"Twitter for Android<\\/a>\",\"2640\":\"Twitter for Android<\\/a>\",\"2641\":\"Twitter for Android<\\/a>\",\"2642\":\"Twitter for iPhone<\\/a>\",\"2643\":\"Twitter Web App<\\/a>\",\"2644\":\"Twitter Web App<\\/a>\",\"2645\":\"Twitter for Android<\\/a>\",\"2646\":\"Twitter for iPhone<\\/a>\",\"2647\":\"Twitter for Android<\\/a>\",\"2648\":\"Twitter for Android<\\/a>\",\"2649\":\"Twitter for Android<\\/a>\",\"2650\":\"Twitter for Android<\\/a>\",\"2651\":\"Twitter for Android<\\/a>\",\"2652\":\"Twitter for Android<\\/a>\",\"2653\":\"Twitter for Android<\\/a>\",\"2654\":\"Twitter for iPhone<\\/a>\",\"2655\":\"Twitter for Android<\\/a>\",\"2656\":\"Twitter for Android<\\/a>\",\"2657\":\"Twitter for Android<\\/a>\",\"2658\":\"Twitter for iPhone<\\/a>\",\"2659\":\"Twitter for Android<\\/a>\",\"2660\":\"Twitter for iPhone<\\/a>\",\"2661\":\"Twitter for Android<\\/a>\",\"2662\":\"Twitter for Android<\\/a>\",\"2663\":\"Twitter for Android<\\/a>\",\"2664\":\"Twitter for iPhone<\\/a>\",\"2665\":\"Twitter for Android<\\/a>\",\"2666\":\"Twitter for iPhone<\\/a>\",\"2667\":\"Twitter for iPhone<\\/a>\",\"2668\":\"Twitter for iPhone<\\/a>\",\"2669\":\"Twitter for Android<\\/a>\",\"2670\":\"Twitter for Android<\\/a>\",\"2671\":\"Twitter Web App<\\/a>\",\"2672\":\"Twitter Web App<\\/a>\",\"2673\":\"Twitter Web App<\\/a>\",\"2674\":\"Twitter for Android<\\/a>\",\"2675\":\"Twitter for Android<\\/a>\",\"2676\":\"Twitter for Android<\\/a>\",\"2677\":\"Twitter Web App<\\/a>\",\"2678\":\"Twitter for Android<\\/a>\",\"2679\":\"Twitter for Android<\\/a>\",\"2680\":\"Twitter for iPhone<\\/a>\",\"2681\":\"Twitter for Android<\\/a>\",\"2682\":\"Twitter for iPhone<\\/a>\",\"2683\":\"Twitter for iPhone<\\/a>\",\"2684\":\"Twitter for Android<\\/a>\",\"2685\":\"Twitter for Android<\\/a>\",\"2686\":\"Twitter for Android<\\/a>\",\"2687\":\"Twitter for Android<\\/a>\",\"2688\":\"Twitter for Android<\\/a>\",\"2689\":\"Twitter for Android<\\/a>\",\"2690\":\"Twitter for Android<\\/a>\",\"2691\":\"Twitter for iPhone<\\/a>\",\"2692\":\"Twitter for Android<\\/a>\",\"2693\":\"Twitter for Android<\\/a>\",\"2694\":\"Twitter for Android<\\/a>\",\"2695\":\"Twitter for iPhone<\\/a>\",\"2696\":\"Twitter for Android<\\/a>\",\"2697\":\"Twitter for Android<\\/a>\",\"2698\":\"Twitter Web App<\\/a>\",\"2699\":\"Twitter for Android<\\/a>\",\"2700\":\"Periscope<\\/a>\",\"2701\":\"Twitter for Android<\\/a>\",\"2702\":\"Twitter for Android<\\/a>\",\"2703\":\"Twitter for Android<\\/a>\",\"2704\":\"Twitter for Android<\\/a>\",\"2705\":\"Twitter for Android<\\/a>\",\"2706\":\"Twitter for Android<\\/a>\",\"2707\":\"Twitter for Android<\\/a>\",\"2708\":\"Twitter for iPhone<\\/a>\",\"2709\":\"Twitter for iPhone<\\/a>\",\"2710\":\"Twitter for iPhone<\\/a>\",\"2711\":\"Periscope<\\/a>\",\"2712\":\"Twitter for Android<\\/a>\",\"2713\":\"Twitter for iPhone<\\/a>\",\"2714\":\"Twitter for Android<\\/a>\",\"2715\":\"Twitter for Android<\\/a>\",\"2716\":\"Twitter for iPhone<\\/a>\",\"2717\":\"Twitter for iPhone<\\/a>\",\"2718\":\"Twitter for iPhone<\\/a>\",\"2719\":\"Twitter for Android<\\/a>\",\"2720\":\"Twitter for Android<\\/a>\",\"2721\":\"Twitter for iPhone<\\/a>\",\"2722\":\"Twitter for iPhone<\\/a>\",\"2723\":\"Twitter for iPhone<\\/a>\",\"2724\":\"Twitter for Android<\\/a>\",\"2725\":\"Twitter for iPhone<\\/a>\",\"2726\":\"Twitter Web App<\\/a>\",\"2727\":\"Twitter for Android<\\/a>\",\"2728\":\"Albatross for Twitter<\\/a>\",\"2729\":\"Twitter for iPhone<\\/a>\",\"2730\":\"Twitter for Android<\\/a>\",\"2731\":\"Twitter for Android<\\/a>\",\"2732\":\"Twitter for Android<\\/a>\",\"2733\":\"Twitter Web App<\\/a>\",\"2734\":\"Twitter for Android<\\/a>\",\"2735\":\"Twitter for iPhone<\\/a>\",\"2736\":\"Twitter for Android<\\/a>\",\"2737\":\"Twitter for Android<\\/a>\",\"2738\":\"Twitter Web App<\\/a>\",\"2739\":\"Twitter for iPhone<\\/a>\",\"2740\":\"Twitter for Android<\\/a>\",\"2741\":\"Twitter for Android<\\/a>\",\"2742\":\"Twitter for iPhone<\\/a>\",\"2743\":\"Twitter for Android<\\/a>\",\"2744\":\"Twitter for Android<\\/a>\",\"2745\":\"Twitter for iPhone<\\/a>\",\"2746\":\"Twitter for Android<\\/a>\",\"2747\":\"Twitter for Android<\\/a>\",\"2748\":\"Twitter for Android<\\/a>\",\"2749\":\"Twitter for Android<\\/a>\",\"2750\":\"Twitter for Android<\\/a>\",\"2751\":\"Twitter for Android<\\/a>\",\"2752\":\"Twitter for iPhone<\\/a>\",\"2753\":\"Twitter for Android<\\/a>\",\"2754\":\"Twitter for iPhone<\\/a>\",\"2755\":\"Twitter for Android<\\/a>\",\"2756\":\"Twitter for iPhone<\\/a>\",\"2757\":\"Twitter for Android<\\/a>\",\"2758\":\"Twitter for Android<\\/a>\",\"2759\":\"Twitter for iPhone<\\/a>\",\"2760\":\"Twitter for Android<\\/a>\",\"2761\":\"Twitter for Android<\\/a>\",\"2762\":\"Twitter for iPhone<\\/a>\",\"2763\":\"Twitter for Android<\\/a>\",\"2764\":\"Twitter for Android<\\/a>\",\"2765\":\"Twitter for Android<\\/a>\",\"2766\":\"Twitter for Android<\\/a>\",\"2767\":\"Twitter for Android<\\/a>\",\"2768\":\"Twitter for Android<\\/a>\",\"2769\":\"Twitter for Android<\\/a>\",\"2770\":\"Twitter for Android<\\/a>\",\"2771\":\"Twitter for Android<\\/a>\",\"2772\":\"Twitter for iPhone<\\/a>\",\"2773\":\"Twitter for Android<\\/a>\",\"2774\":\"Twitter for Android<\\/a>\",\"2775\":\"Twitter for iPhone<\\/a>\",\"2776\":\"Twitter for iPhone<\\/a>\",\"2777\":\"Twitter for Android<\\/a>\",\"2778\":\"Twitter for Android<\\/a>\",\"2779\":\"Twitter for Android<\\/a>\",\"2780\":\"Twitter for Android<\\/a>\",\"2781\":\"Twitter Web App<\\/a>\",\"2782\":\"Twitter for Android<\\/a>\",\"2783\":\"Twitter for Android<\\/a>\",\"2784\":\"Twitter for Android<\\/a>\",\"2785\":\"Twitter for Android<\\/a>\",\"2786\":\"Twitter for Android<\\/a>\",\"2787\":\"Twitter for Android<\\/a>\",\"2788\":\"Twitter for iPhone<\\/a>\",\"2789\":\"Twitter for Android<\\/a>\",\"2790\":\"Twitter for Android<\\/a>\",\"2791\":\"Twitter for Android<\\/a>\",\"2792\":\"Twitter Web App<\\/a>\",\"2793\":\"Twitter for Android<\\/a>\",\"2794\":\"Twitter for Android<\\/a>\",\"2795\":\"Twitter Web App<\\/a>\",\"2796\":\"Twitter for Android<\\/a>\",\"2797\":\"Twitter for Android<\\/a>\",\"2798\":\"Twitter Web App<\\/a>\",\"2799\":\"Twitter for iPhone<\\/a>\",\"2800\":\"Twitter for Android<\\/a>\",\"2801\":\"Twitter for Android<\\/a>\",\"2802\":\"Twitter for Android<\\/a>\",\"2803\":\"Twitter for iPhone<\\/a>\",\"2804\":\"Twitter Web App<\\/a>\",\"2805\":\"Twitter Web App<\\/a>\",\"2806\":\"Twitter for Android<\\/a>\",\"2807\":\"Twitter for Android<\\/a>\",\"2808\":\"Twitter for Android<\\/a>\",\"2809\":\"Twitter for Android<\\/a>\",\"2810\":\"Twitter for Android<\\/a>\",\"2811\":\"Twitter for iPhone<\\/a>\",\"2812\":\"Twitter for iPhone<\\/a>\",\"2813\":\"Twitter for iPhone<\\/a>\",\"2814\":\"Twitter Web App<\\/a>\",\"2815\":\"Twitter Web App<\\/a>\",\"2816\":\"Twitter for Android<\\/a>\",\"2817\":\"Twitter for Android<\\/a>\",\"2818\":\"Twitter for iPhone<\\/a>\",\"2819\":\"Twitter for Android<\\/a>\",\"2820\":\"Twitter Web App<\\/a>\",\"2821\":\"Twitter for iPhone<\\/a>\",\"2822\":\"Twitter for iPhone<\\/a>\",\"2823\":\"Twitter for Android<\\/a>\",\"2824\":\"Twitter for Android<\\/a>\",\"2825\":\"Twitter for iPhone<\\/a>\",\"2826\":\"Twitter for Android<\\/a>\",\"2827\":\"Twitter for iPhone<\\/a>\",\"2828\":\"Twitter for Android<\\/a>\",\"2829\":\"Twitter for Android<\\/a>\",\"2830\":\"Twitter for iPhone<\\/a>\",\"2831\":\"Twitter for Android<\\/a>\",\"2832\":\"Twitter for Android<\\/a>\",\"2833\":\"Twitter for Android<\\/a>\",\"2834\":\"Twitter for Android<\\/a>\",\"2835\":\"Twitter for Android<\\/a>\",\"2836\":\"Twitter for Android<\\/a>\",\"2837\":\"Twitter for iPhone<\\/a>\",\"2838\":\"Twitter for iPhone<\\/a>\",\"2839\":\"Twitter for Android<\\/a>\",\"2840\":\"Twitter for Android<\\/a>\",\"2841\":\"Twitter Web App<\\/a>\",\"2842\":\"Twitter for Android<\\/a>\",\"2843\":\"Twitter for Android<\\/a>\",\"2844\":\"Twitter Web App<\\/a>\",\"2845\":\"Twitter for iPhone<\\/a>\",\"2846\":\"Twitter for Android<\\/a>\",\"2847\":\"Twitter for Android<\\/a>\",\"2848\":\"Twitter for iPhone<\\/a>\",\"2849\":\"IFTTT<\\/a>\",\"2850\":\"Twitter for iPhone<\\/a>\",\"2851\":\"Twitter for Android<\\/a>\",\"2852\":\"Twitter for Android<\\/a>\",\"2853\":\"Twitter Web App<\\/a>\",\"2854\":\"Twitter for Android<\\/a>\",\"2855\":\"Twitter for Android<\\/a>\",\"2856\":\"Twitter Web App<\\/a>\",\"2857\":\"Twitter Web App<\\/a>\",\"2858\":\"BobojayTV News<\\/a>\",\"2859\":\"BobojayTV News<\\/a>\",\"2860\":\"BobojayTV News<\\/a>\",\"2861\":\"Twitter for Android<\\/a>\",\"2862\":\"Twitter for iPhone<\\/a>\",\"2863\":\"Twitter for Android<\\/a>\",\"2864\":\"Twitter for Android<\\/a>\",\"2865\":\"Twitter for Android<\\/a>\",\"2866\":\"Twitter Web App<\\/a>\",\"2867\":\"Twitter for Android<\\/a>\",\"2868\":\"Twitter for Android<\\/a>\",\"2869\":\"Twitter for Android<\\/a>\",\"2870\":\"Twitter for iPhone<\\/a>\",\"2871\":\"Twitter for Android<\\/a>\",\"2872\":\"Twitter for iPhone<\\/a>\",\"2873\":\"Twitter for Android<\\/a>\",\"2874\":\"Twitter for iPhone<\\/a>\",\"2875\":\"Twitter for Android<\\/a>\",\"2876\":\"Twitter for Android<\\/a>\",\"2877\":\"dlvr.it<\\/a>\",\"2878\":\"Twitter Web App<\\/a>\",\"2879\":\"Twitter for Android<\\/a>\",\"2880\":\"Twitter for Android<\\/a>\",\"2881\":\"Twitter for Android<\\/a>\",\"2882\":\"Twitter for Android<\\/a>\",\"2883\":\"Twitter Web App<\\/a>\",\"2884\":\"Twitter for Android<\\/a>\",\"2885\":\"Instagram<\\/a>\",\"2886\":\"Twitter for Android<\\/a>\",\"2887\":\"Twitter for Android<\\/a>\",\"2888\":\"Twitter Web App<\\/a>\",\"2889\":\"Twitter Web App<\\/a>\",\"2890\":\"Twitter for Android<\\/a>\",\"2891\":\"Twitter for Android<\\/a>\",\"2892\":\"Twitter for iPhone<\\/a>\",\"2893\":\"Twitter for Android<\\/a>\",\"2894\":\"Twitter for Android<\\/a>\",\"2895\":\"Twitter Web App<\\/a>\",\"2896\":\"Twitter for Android<\\/a>\",\"2897\":\"Twitter for Android<\\/a>\",\"2898\":\"Twitter for Android<\\/a>\",\"2899\":\"Twitter for Android<\\/a>\",\"2900\":\"Twitter for Android<\\/a>\",\"2901\":\"Twitter for Android<\\/a>\",\"2902\":\"Twitter for Android<\\/a>\",\"2903\":\"Twitter for Android<\\/a>\",\"2904\":\"Twitter for iPhone<\\/a>\",\"2905\":\"Twitter Web App<\\/a>\",\"2906\":\"Twitter for iPhone<\\/a>\",\"2907\":\"Twitter for Android<\\/a>\",\"2908\":\"Twitter for Android<\\/a>\",\"2909\":\"Twitter for iPhone<\\/a>\",\"2910\":\"Twitter for Android<\\/a>\",\"2911\":\"Twitter for Android<\\/a>\",\"2912\":\"Twitter Web App<\\/a>\",\"2913\":\"Twitter for Android<\\/a>\",\"2914\":\"Twitter for iPhone<\\/a>\",\"2915\":\"Twitter for Android<\\/a>\",\"2916\":\"Twitter for iPhone<\\/a>\",\"2917\":\"Twitter for Android<\\/a>\",\"2918\":\"Twitter for Android<\\/a>\",\"2919\":\"Twitter for Android<\\/a>\",\"2920\":\"Twitter for Android<\\/a>\",\"2921\":\"Twitter for Android<\\/a>\",\"2922\":\"Twitter for Android<\\/a>\",\"2923\":\"Twitter for Android<\\/a>\",\"2924\":\"Twitter Web App<\\/a>\",\"2925\":\"Twitter for Android<\\/a>\",\"2926\":\"Twitter for iPhone<\\/a>\",\"2927\":\"Twitter for Android<\\/a>\",\"2928\":\"Twitter for Android<\\/a>\",\"2929\":\"Twitter for Android<\\/a>\",\"2930\":\"Twitter for Android<\\/a>\",\"2931\":\"Twitter for Android<\\/a>\",\"2932\":\"Twitter for Android<\\/a>\",\"2933\":\"Twitter for Android<\\/a>\",\"2934\":\"Twitter for Android<\\/a>\",\"2935\":\"Twitter for Android<\\/a>\",\"2936\":\"Twitter for Android<\\/a>\",\"2937\":\"Twitter for iPhone<\\/a>\",\"2938\":\"Twitter for iPhone<\\/a>\",\"2939\":\"Twitter for iPhone<\\/a>\",\"2940\":\"Twitter for iPhone<\\/a>\",\"2941\":\"Twitter for Android<\\/a>\",\"2942\":\"Twitter for Android<\\/a>\",\"2943\":\"Twitter for Android<\\/a>\",\"2944\":\"Twitter for Android<\\/a>\",\"2945\":\"Twitter for iPhone<\\/a>\",\"2946\":\"Twitter for Android<\\/a>\",\"2947\":\"Twitter for Android<\\/a>\",\"2948\":\"Twitter for iPhone<\\/a>\",\"2949\":\"Twitter for Android<\\/a>\",\"2950\":\"Twitter for Android<\\/a>\",\"2951\":\"Twitter for Android<\\/a>\",\"2952\":\"Twitter for Android<\\/a>\",\"2953\":\"Twitter for Android<\\/a>\",\"2954\":\"Twitter for Android<\\/a>\",\"2955\":\"Twitter for Android<\\/a>\",\"2956\":\"Twitter for Android<\\/a>\",\"2957\":\"Twitter for Android<\\/a>\",\"2958\":\"Twitter for Android<\\/a>\",\"2959\":\"Twitter for Android<\\/a>\",\"2960\":\"Twitter for Android<\\/a>\",\"2961\":\"Twitter for iPhone<\\/a>\",\"2962\":\"Twitter for Android<\\/a>\",\"2963\":\"Twitter for Android<\\/a>\",\"2964\":\"Twitter for iPhone<\\/a>\",\"2965\":\"Twitter Web App<\\/a>\",\"2966\":\"Twitter for iPhone<\\/a>\",\"2967\":\"Twitter Web App<\\/a>\",\"2968\":\"Twitter Web App<\\/a>\",\"2969\":\"Twitter for iPhone<\\/a>\",\"2970\":\"Twitter for iPhone<\\/a>\",\"2971\":\"Twitter for Android<\\/a>\",\"2972\":\"Twitter for iPhone<\\/a>\",\"2973\":\"Twitter for iPhone<\\/a>\",\"2974\":\"Twitter for Android<\\/a>\",\"2975\":\"Twitter for Android<\\/a>\",\"2976\":\"Twitter for Android<\\/a>\",\"2977\":\"Twitter for Android<\\/a>\",\"2978\":\"Twitter for Android<\\/a>\",\"2979\":\"Twitter for Android<\\/a>\",\"2980\":\"Twitter for iPhone<\\/a>\",\"2981\":\"Twitter for Android<\\/a>\",\"2982\":\"Twitter for iPhone<\\/a>\",\"2983\":\"Twitter for Android<\\/a>\",\"2984\":\"Twitter for Android<\\/a>\",\"2985\":\"Twitter for Android<\\/a>\",\"2986\":\"Twitter for iPhone<\\/a>\",\"2987\":\"Twitter for Android<\\/a>\",\"2988\":\"Twitter for Android<\\/a>\",\"2989\":\"Twitter for Android<\\/a>\",\"2990\":\"Twitter for Android<\\/a>\",\"2991\":\"Twitter for Android<\\/a>\",\"2992\":\"Twitter for Android<\\/a>\",\"2993\":\"Twitter for Android<\\/a>\",\"2994\":\"Twitter for Android<\\/a>\",\"2995\":\"Twitter for Android<\\/a>\",\"2996\":\"Twitter for Android<\\/a>\",\"2997\":\"Twitter for iPhone<\\/a>\",\"2998\":\"Twitter for Android<\\/a>\",\"2999\":\"Twitter for Android<\\/a>\",\"3000\":\"Twitter Web App<\\/a>\",\"3001\":\"Twitter for Android<\\/a>\",\"3002\":\"Twitter for Android<\\/a>\",\"3003\":\"Twitter for Android<\\/a>\",\"3004\":\"Twitter for Android<\\/a>\",\"3005\":\"Twitter for Android<\\/a>\",\"3006\":\"Twitter for Android<\\/a>\",\"3007\":\"Twitter for Android<\\/a>\",\"3008\":\"Twitter for Android<\\/a>\",\"3009\":\"Twitter for Android<\\/a>\",\"3010\":\"Twitter for Android<\\/a>\",\"3011\":\"Twitter for Android<\\/a>\",\"3012\":\"Twitter for Android<\\/a>\",\"3013\":\"Twitter for Android<\\/a>\",\"3014\":\"Twitter for iPhone<\\/a>\",\"3015\":\"Twitter for Android<\\/a>\",\"3016\":\"Twitter for iPhone<\\/a>\",\"3017\":\"Twitter for Android<\\/a>\",\"3018\":\"Twitter for Android<\\/a>\",\"3019\":\"Twitter for iPhone<\\/a>\",\"3020\":\"Twitter for Android<\\/a>\",\"3021\":\"Twitter for iPhone<\\/a>\",\"3022\":\"Twitter for Android<\\/a>\",\"3023\":\"Twitter for Android<\\/a>\",\"3024\":\"Twitter for Android<\\/a>\",\"3025\":\"Twitter Web App<\\/a>\",\"3026\":\"Twitter for Android<\\/a>\",\"3027\":\"Twitter for iPhone<\\/a>\",\"3028\":\"Twitter for Android<\\/a>\",\"3029\":\"Twitter for Android<\\/a>\",\"3030\":\"Twitter for Android<\\/a>\",\"3031\":\"Twitter for Android<\\/a>\",\"3032\":\"Twitter for Android<\\/a>\",\"3033\":\"Twitter for Android<\\/a>\",\"3034\":\"Twitter for Android<\\/a>\",\"3035\":\"Twitter for Android<\\/a>\",\"3036\":\"Twitter for iPhone<\\/a>\",\"3037\":\"Twitter for Android<\\/a>\",\"3038\":\"Twitter for Android<\\/a>\",\"3039\":\"Twitter for iPhone<\\/a>\",\"3040\":\"Twitter for iPhone<\\/a>\",\"3041\":\"Twitter for Android<\\/a>\",\"3042\":\"Twitter Web App<\\/a>\",\"3043\":\"Twitter for Android<\\/a>\",\"3044\":\"Twitter for iPhone<\\/a>\",\"3045\":\"Twitter for Android<\\/a>\",\"3046\":\"Twitter Web App<\\/a>\",\"3047\":\"Twitter Web App<\\/a>\",\"3048\":\"Twitter for iPhone<\\/a>\",\"3049\":\"Twitter for Android<\\/a>\",\"3050\":\"Twitter for Android<\\/a>\",\"3051\":\"Twitter for Android<\\/a>\",\"3052\":\"Twitter for iPhone<\\/a>\",\"3053\":\"Twitter for iPhone<\\/a>\",\"3054\":\"Twitter for Android<\\/a>\",\"3055\":\"Twitter for Android<\\/a>\",\"3056\":\"Twitter for Android<\\/a>\",\"3057\":\"Twitter for iPhone<\\/a>\",\"3058\":\"Twitter for Android<\\/a>\",\"3059\":\"Twitter for Android<\\/a>\",\"3060\":\"Twitter for Android<\\/a>\",\"3061\":\"Twitter for iPhone<\\/a>\",\"3062\":\"Twitter for iPhone<\\/a>\",\"3063\":\"Twitter for Android<\\/a>\",\"3064\":\"Twitter for Android<\\/a>\",\"3065\":\"WordPress.com<\\/a>\",\"3066\":\"Twitter for Android<\\/a>\",\"3067\":\"Twitter Web App<\\/a>\",\"3068\":\"Twitter for Android<\\/a>\",\"3069\":\"Twitter for Android<\\/a>\",\"3070\":\"Twitter for iPhone<\\/a>\",\"3071\":\"Twitter for iPhone<\\/a>\",\"3072\":\"Twitter for iPhone<\\/a>\",\"3073\":\"Twitter for Android<\\/a>\",\"3074\":\"Twitter for Android<\\/a>\",\"3075\":\"Twitter for iPhone<\\/a>\",\"3076\":\"Twitter for iPhone<\\/a>\",\"3077\":\"Twitter for iPhone<\\/a>\",\"3078\":\"Twitter for Android<\\/a>\",\"3079\":\"Twitter for Android<\\/a>\",\"3080\":\"Twitter for Android<\\/a>\",\"3081\":\"Twitter for Android<\\/a>\",\"3082\":\"Twitter for iPhone<\\/a>\",\"3083\":\"Twitter for Android<\\/a>\",\"3084\":\"Twitter for Android<\\/a>\",\"3085\":\"Twitter for Android<\\/a>\",\"3086\":\"Twitter for Android<\\/a>\",\"3087\":\"Twitter for iPhone<\\/a>\",\"3088\":\"Twitter Web App<\\/a>\",\"3089\":\"Twitter for iPhone<\\/a>\",\"3090\":\"Twitter for Android<\\/a>\",\"3091\":\"Twitter for iPhone<\\/a>\",\"3092\":\"Twitter for iPhone<\\/a>\",\"3093\":\"Twitter for iPhone<\\/a>\",\"3094\":\"Twitter for Android<\\/a>\",\"3095\":\"Twitter for Android<\\/a>\",\"3096\":\"Twitter for Android<\\/a>\",\"3097\":\"Twitter for Android<\\/a>\",\"3098\":\"dlvr.it<\\/a>\",\"3099\":\"Twitter for iPhone<\\/a>\",\"3100\":\"Twitter for iPhone<\\/a>\",\"3101\":\"Twitter for iPhone<\\/a>\",\"3102\":\"Twitter for iPhone<\\/a>\",\"3103\":\"Twitter for iPhone<\\/a>\",\"3104\":\"Twitter for iPhone<\\/a>\",\"3105\":\"Twitter for Android<\\/a>\",\"3106\":\"Twitter for Android<\\/a>\",\"3107\":\"Twitter for Android<\\/a>\",\"3108\":\"Twitter for Android<\\/a>\",\"3109\":\"Twitter for Android<\\/a>\",\"3110\":\"Twitter for Android<\\/a>\",\"3111\":\"Twitter for iPhone<\\/a>\",\"3112\":\"Twitter for Android<\\/a>\",\"3113\":\"Twitter for iPhone<\\/a>\",\"3114\":\"Twitter for iPhone<\\/a>\",\"3115\":\"Twitter for Android<\\/a>\",\"3116\":\"Twitter for Android<\\/a>\",\"3117\":\"Twitter for Android<\\/a>\",\"3118\":\"Twitter for Android<\\/a>\",\"3119\":\"Twitter for Android<\\/a>\",\"3120\":\"Twitter for Android<\\/a>\",\"3121\":\"BobojayTV News<\\/a>\",\"3122\":\"Twitter for Android<\\/a>\",\"3123\":\"Twitter for iPhone<\\/a>\",\"3124\":\"Twitter for Android<\\/a>\",\"3125\":\"BobojayTV News<\\/a>\",\"3126\":\"Twitter for iPhone<\\/a>\",\"3127\":\"Twitter for Android<\\/a>\",\"3128\":\"Twitter for Android<\\/a>\",\"3129\":\"Twitter for iPhone<\\/a>\",\"3130\":\"Twitter for Android<\\/a>\",\"3131\":\"Twitter for Android<\\/a>\",\"3132\":\"Twitter for Android<\\/a>\",\"3133\":\"Twitter for Android<\\/a>\",\"3134\":\"Twitter for iPhone<\\/a>\",\"3135\":\"Twitter for Android<\\/a>\",\"3136\":\"Twitter for Android<\\/a>\",\"3137\":\"Twitter for Android<\\/a>\",\"3138\":\"Twitter for iPhone<\\/a>\",\"3139\":\"Twitter for Android<\\/a>\",\"3140\":\"Twitter for Android<\\/a>\",\"3141\":\"Twitter for Android<\\/a>\",\"3142\":\"Twitter for iPhone<\\/a>\",\"3143\":\"Twitter for Android<\\/a>\",\"3144\":\"Twitter for Android<\\/a>\",\"3145\":\"Twitter for iPhone<\\/a>\",\"3146\":\"Twitter for iPhone<\\/a>\",\"3147\":\"Twitter for Android<\\/a>\",\"3148\":\"Twitter for iPhone<\\/a>\",\"3149\":\"Twitter for Android<\\/a>\",\"3150\":\"Twitter Web App<\\/a>\",\"3151\":\"Twitter for Android<\\/a>\",\"3152\":\"Twitter for Android<\\/a>\",\"3153\":\"Twitter for Android<\\/a>\",\"3154\":\"Twitter for iPhone<\\/a>\",\"3155\":\"Twitter for Android<\\/a>\",\"3156\":\"Twitter for Android<\\/a>\",\"3157\":\"Twitter for Android<\\/a>\",\"3158\":\"Twitter for Android<\\/a>\",\"3159\":\"Twitter for Android<\\/a>\",\"3160\":\"Twitter for Android<\\/a>\",\"3161\":\"Twitter for Android<\\/a>\",\"3162\":\"Twitter for iPhone<\\/a>\",\"3163\":\"Twitter for iPhone<\\/a>\",\"3164\":\"Twitter for Android<\\/a>\",\"3165\":\"Twitter for Android<\\/a>\",\"3166\":\"Twitter for Android<\\/a>\",\"3167\":\"Twitter Web App<\\/a>\",\"3168\":\"Twitter for iPhone<\\/a>\",\"3169\":\"Twitter for iPhone<\\/a>\",\"3170\":\"Twitter for Android<\\/a>\",\"3171\":\"dlvr.it<\\/a>\",\"3172\":\"Twitter for Android<\\/a>\",\"3173\":\"Twitter for Android<\\/a>\",\"3174\":\"Twitter for Android<\\/a>\",\"3175\":\"Twitter for iPhone<\\/a>\",\"3176\":\"Twitter for Android<\\/a>\",\"3177\":\"Twitter for Android<\\/a>\",\"3178\":\"Twitter for Android<\\/a>\",\"3179\":\"Twitter for Android<\\/a>\",\"3180\":\"Twitter for Android<\\/a>\",\"3181\":\"Twitter for Android<\\/a>\",\"3182\":\"Twitter for Android<\\/a>\",\"3183\":\"Twitter for Android<\\/a>\",\"3184\":\"Twitter for Android<\\/a>\",\"3185\":\"Twitter for Android<\\/a>\",\"3186\":\"Twitter for iPhone<\\/a>\",\"3187\":\"Twitter for Android<\\/a>\",\"3188\":\"Twitter for Android<\\/a>\",\"3189\":\"Twitter for iPhone<\\/a>\",\"3190\":\"Twitter for Android<\\/a>\",\"3191\":\"Twitter for iPhone<\\/a>\",\"3192\":\"Twitter for Android<\\/a>\",\"3193\":\"Twitter for Android<\\/a>\",\"3194\":\"Twitter for Android<\\/a>\",\"3195\":\"Twitter for Android<\\/a>\",\"3196\":\"Twitter for Android<\\/a>\",\"3197\":\"Twitter for Android<\\/a>\",\"3198\":\"Twitter for Android<\\/a>\",\"3199\":\"Twitter for iPhone<\\/a>\",\"3200\":\"Twitter for Android<\\/a>\",\"3201\":\"Twitter Web App<\\/a>\",\"3202\":\"Twitter Web App<\\/a>\",\"3203\":\"Twitter for Android<\\/a>\",\"3204\":\"Twitter for Android<\\/a>\",\"3205\":\"Twitter Web App<\\/a>\",\"3206\":\"Twitter Web App<\\/a>\",\"3207\":\"Twitter for Android<\\/a>\",\"3208\":\"Twitter for iPhone<\\/a>\",\"3209\":\"Twitter for Android<\\/a>\",\"3210\":\"Twitter for Android<\\/a>\",\"3211\":\"Twitter for Android<\\/a>\",\"3212\":\"Twitter for Android<\\/a>\",\"3213\":\"Twitter for Android<\\/a>\",\"3214\":\"Twitter for Android<\\/a>\",\"3215\":\"Twitter for Android<\\/a>\",\"3216\":\"Twitter for Android<\\/a>\",\"3217\":\"Twitter for iPhone<\\/a>\",\"3218\":\"Twitter for Android<\\/a>\",\"3219\":\"Twitter for iPhone<\\/a>\",\"3220\":\"Twitter for iPhone<\\/a>\",\"3221\":\"Twitter for Android<\\/a>\",\"3222\":\"Twitter for iPhone<\\/a>\",\"3223\":\"Twitter for Android<\\/a>\",\"3224\":\"Twitter for Android<\\/a>\",\"3225\":\"Twitter for Android<\\/a>\",\"3226\":\"Twitter for iPhone<\\/a>\",\"3227\":\"Twitter for iPhone<\\/a>\",\"3228\":\"Twitter for iPhone<\\/a>\",\"3229\":\"Twitter for Android<\\/a>\",\"3230\":\"Twitter for Android<\\/a>\",\"3231\":\"Twitter for iPhone<\\/a>\",\"3232\":\"Twitter Web App<\\/a>\",\"3233\":\"Twitter for Android<\\/a>\",\"3234\":\"Twitter for Android<\\/a>\",\"3235\":\"Twitter for iPhone<\\/a>\",\"3236\":\"Twitter for Android<\\/a>\",\"3237\":\"Twitter for Android<\\/a>\",\"3238\":\"Twitter for Android<\\/a>\",\"3239\":\"Twitter for Android<\\/a>\",\"3240\":\"Twitter for Android<\\/a>\",\"3241\":\"Twitter for Android<\\/a>\",\"3242\":\"Twitter for Android<\\/a>\",\"3243\":\"Twitter for Android<\\/a>\",\"3244\":\"Twitter Web App<\\/a>\",\"3245\":\"Twitter for Android<\\/a>\",\"3246\":\"Twitter for Android<\\/a>\",\"3247\":\"Twitter for iPhone<\\/a>\",\"3248\":\"Twitter for Android<\\/a>\",\"3249\":\"Twitter for iPhone<\\/a>\",\"3250\":\"Twitter for Android<\\/a>\",\"3251\":\"Twitter Web App<\\/a>\",\"3252\":\"Twitter for Android<\\/a>\",\"3253\":\"Twitter for Android<\\/a>\",\"3254\":\"Twitter for Android<\\/a>\",\"3255\":\"Twitter for Android<\\/a>\",\"3256\":\"Twitter for Android<\\/a>\",\"3257\":\"Twitter for Android<\\/a>\",\"3258\":\"Twitter for Android<\\/a>\",\"3259\":\"Twitter for Android<\\/a>\",\"3260\":\"Twitter for Android<\\/a>\",\"3261\":\"Twitter for Android<\\/a>\",\"3262\":\"Twitter for Android<\\/a>\",\"3263\":\"Twitter Web App<\\/a>\",\"3264\":\"Twitter for Android<\\/a>\",\"3265\":\"Twitter for Android<\\/a>\",\"3266\":\"Twitter for Android<\\/a>\",\"3267\":\"Twitter for Android<\\/a>\",\"3268\":\"Twitter for Android<\\/a>\",\"3269\":\"Twitter for Android<\\/a>\",\"3270\":\"Twitter for Android<\\/a>\",\"3271\":\"Twitter for Android<\\/a>\",\"3272\":\"Twitter for iPhone<\\/a>\",\"3273\":\"Twitter for Android<\\/a>\",\"3274\":\"Twitter for Android<\\/a>\",\"3275\":\"Twitter for Android<\\/a>\",\"3276\":\"Twitter for Android<\\/a>\",\"3277\":\"Twitter for Android<\\/a>\",\"3278\":\"Twitter for Android<\\/a>\",\"3279\":\"Twitter for Android<\\/a>\",\"3280\":\"Twitter for Android<\\/a>\",\"3281\":\"Twitter for Android<\\/a>\",\"3282\":\"Twitter Web App<\\/a>\",\"3283\":\"Twitter for Android<\\/a>\",\"3284\":\"Twitter for Android<\\/a>\",\"3285\":\"Twitter for iPhone<\\/a>\",\"3286\":\"Twitter for Android<\\/a>\",\"3287\":\"Twitter Web App<\\/a>\",\"3288\":\"Twitter Web App<\\/a>\",\"3289\":\"Twitter for Android<\\/a>\",\"3290\":\"Twitter for iPhone<\\/a>\",\"3291\":\"Twitter for Android<\\/a>\",\"3292\":\"Twitter for iPhone<\\/a>\",\"3293\":\"Twitter Web App<\\/a>\",\"3294\":\"Twitter for Android<\\/a>\",\"3295\":\"Twitter for iPhone<\\/a>\",\"3296\":\"Twitter for Android<\\/a>\",\"3297\":\"Twitter for Android<\\/a>\",\"3298\":\"Twitter for Android<\\/a>\",\"3299\":\"Twitter for Android<\\/a>\",\"3300\":\"Twitter Web App<\\/a>\",\"3301\":\"Twitter for iPhone<\\/a>\",\"3302\":\"Twitter for Android<\\/a>\",\"3303\":\"Twitter Web App<\\/a>\",\"3304\":\"Twitter for iPhone<\\/a>\",\"3305\":\"Twitter for Android<\\/a>\",\"3306\":\"Twitter for iPhone<\\/a>\",\"3307\":\"Twitter for Android<\\/a>\",\"3308\":\"Twitter for Android<\\/a>\",\"3309\":\"Twitter for Android<\\/a>\",\"3310\":\"Twitter for iPhone<\\/a>\",\"3311\":\"Twitter for Android<\\/a>\",\"3312\":\"Twitter for Android<\\/a>\",\"3313\":\"Twitter for Android<\\/a>\",\"3314\":\"Twitter for iPhone<\\/a>\",\"3315\":\"Twitter for Android<\\/a>\",\"3316\":\"Twitter for iPhone<\\/a>\",\"3317\":\"Twitter for Android<\\/a>\",\"3318\":\"Twitter for iPhone<\\/a>\",\"3319\":\"Twitter for Android<\\/a>\",\"3320\":\"Twitter for Android<\\/a>\",\"3321\":\"Twitter for Android<\\/a>\",\"3322\":\"Twitter for Android<\\/a>\",\"3323\":\"Twitter for Android<\\/a>\",\"3324\":\"Twitter for Android<\\/a>\",\"3325\":\"Twitter for Android<\\/a>\",\"3326\":\"Twitter for Android<\\/a>\",\"3327\":\"Twitter for Android<\\/a>\",\"3328\":\"Twitter for Android<\\/a>\",\"3329\":\"Twitter for Android<\\/a>\",\"3330\":\"Twitter for Android<\\/a>\",\"3331\":\"Twitter for Android<\\/a>\",\"3332\":\"Twitter for Android<\\/a>\",\"3333\":\"Twitter for Android<\\/a>\",\"3334\":\"Twitter for Android<\\/a>\",\"3335\":\"Twitter for Android<\\/a>\",\"3336\":\"Twitter for Android<\\/a>\",\"3337\":\"Twitter for Android<\\/a>\",\"3338\":\"Twitter for Android<\\/a>\",\"3339\":\"Twitter for Android<\\/a>\",\"3340\":\"Twitter for Android<\\/a>\",\"3341\":\"Twitter for Android<\\/a>\",\"3342\":\"Twitter for Android<\\/a>\",\"3343\":\"Twitter for Android<\\/a>\",\"3344\":\"Twitter for Android<\\/a>\",\"3345\":\"Twitter for Android<\\/a>\",\"3346\":\"Twitter for Android<\\/a>\",\"3347\":\"Twitter for iPhone<\\/a>\",\"3348\":\"Twitter for Android<\\/a>\",\"3349\":\"Twitter for Android<\\/a>\",\"3350\":\"Twitter for iPhone<\\/a>\",\"3351\":\"Twitter for Android<\\/a>\",\"3352\":\"Twitter for iPhone<\\/a>\",\"3353\":\"Twitter for Android<\\/a>\",\"3354\":\"Twitter for iPhone<\\/a>\",\"3355\":\"Twitter for Android<\\/a>\",\"3356\":\"Twitter for Android<\\/a>\",\"3357\":\"Twitter for iPhone<\\/a>\",\"3358\":\"Twitter for Android<\\/a>\",\"3359\":\"Twitter for Android<\\/a>\",\"3360\":\"Twitter for Android<\\/a>\",\"3361\":\"Twitter for Android<\\/a>\",\"3362\":\"Twitter for Android<\\/a>\",\"3363\":\"Twitter for Android<\\/a>\",\"3364\":\"Twitter for iPhone<\\/a>\",\"3365\":\"Twitter for Android<\\/a>\",\"3366\":\"Twitter for Android<\\/a>\",\"3367\":\"Twitter for Android<\\/a>\",\"3368\":\"Twitter for Android<\\/a>\",\"3369\":\"Twitter for Android<\\/a>\",\"3370\":\"Twitter for Android<\\/a>\",\"3371\":\"Twitter for iPhone<\\/a>\",\"3372\":\"Twitter for Android<\\/a>\",\"3373\":\"Twitter for Android<\\/a>\",\"3374\":\"Twitter for iPhone<\\/a>\",\"3375\":\"Twitter for Android<\\/a>\",\"3376\":\"Twitter for Android<\\/a>\",\"3377\":\"Twitter for iPhone<\\/a>\",\"3378\":\"Twitter for iPhone<\\/a>\",\"3379\":\"Twitter for Android<\\/a>\",\"3380\":\"Twitter Web App<\\/a>\",\"3381\":\"Twitter for iPhone<\\/a>\",\"3382\":\"Twitter for Android<\\/a>\",\"3383\":\"Twitter for Android<\\/a>\",\"3384\":\"Twitter for Android<\\/a>\",\"3385\":\"Twitter for Android<\\/a>\",\"3386\":\"Twitter for iPhone<\\/a>\",\"3387\":\"Twitter for iPhone<\\/a>\",\"3388\":\"Twitter for Android<\\/a>\",\"3389\":\"Twitter for Android<\\/a>\",\"3390\":\"Twitter for iPhone<\\/a>\",\"3391\":\"Twitter for iPhone<\\/a>\",\"3392\":\"Twitter for iPhone<\\/a>\",\"3393\":\"Twitter for Android<\\/a>\",\"3394\":\"Twitter Web App<\\/a>\",\"3395\":\"Twitter for Android<\\/a>\",\"3396\":\"Twitter for Android<\\/a>\",\"3397\":\"Twitter for iPhone<\\/a>\",\"3398\":\"Twitter for Android<\\/a>\",\"3399\":\"Twitter Web App<\\/a>\",\"3400\":\"Twitter Web App<\\/a>\",\"3401\":\"Twitter for Android<\\/a>\",\"3402\":\"Twitter for Android<\\/a>\",\"3403\":\"Twitter Web App<\\/a>\",\"3404\":\"Twitter Web App<\\/a>\",\"3405\":\"Twitter for iPhone<\\/a>\",\"3406\":\"Twitter Web App<\\/a>\",\"3407\":\"Twitter for Android<\\/a>\",\"3408\":\"Twitter for Android<\\/a>\",\"3409\":\"Twitter for Android<\\/a>\",\"3410\":\"Twitter for Android<\\/a>\",\"3411\":\"Twitter for Android<\\/a>\",\"3412\":\"Twitter for Android<\\/a>\",\"3413\":\"Twitter for Android<\\/a>\",\"3414\":\"Twitter Web App<\\/a>\",\"3415\":\"Twitter for Android<\\/a>\",\"3416\":\"Twitter for Android<\\/a>\",\"3417\":\"Twitter for Android<\\/a>\",\"3418\":\"Twitter for Android<\\/a>\",\"3419\":\"Twitter for Android<\\/a>\",\"3420\":\"Twitter for iPhone<\\/a>\",\"3421\":\"Twitter for Android<\\/a>\",\"3422\":\"Twitter for Android<\\/a>\",\"3423\":\"Twitter for Android<\\/a>\",\"3424\":\"Twitter for iPhone<\\/a>\",\"3425\":\"Twitter Web App<\\/a>\",\"3426\":\"Twitter for Android<\\/a>\",\"3427\":\"Twitter Web App<\\/a>\",\"3428\":\"Twitter Web App<\\/a>\",\"3429\":\"Twitter for Android<\\/a>\",\"3430\":\"Twitter for Android<\\/a>\",\"3431\":\"Twitter for Android<\\/a>\",\"3432\":\"Twitter Web App<\\/a>\",\"3433\":\"Twitter for iPhone<\\/a>\",\"3434\":\"Twitter for iPhone<\\/a>\",\"3435\":\"Twitter for iPhone<\\/a>\",\"3436\":\"Twitter for Android<\\/a>\",\"3437\":\"Twitter for Android<\\/a>\",\"3438\":\"Twitter for Android<\\/a>\",\"3439\":\"Twitter for iPhone<\\/a>\",\"3440\":\"Twitter Web App<\\/a>\",\"3441\":\"Twitter for Android<\\/a>\",\"3442\":\"Twitter for iPhone<\\/a>\",\"3443\":\"Twitter for Android<\\/a>\",\"3444\":\"Twitter for iPhone<\\/a>\",\"3445\":\"Twitter for Android<\\/a>\",\"3446\":\"Twitter Web App<\\/a>\",\"3447\":\"Twitter for Android<\\/a>\",\"3448\":\"Twitter Web App<\\/a>\",\"3449\":\"Twitter for Android<\\/a>\",\"3450\":\"Twitter for Android<\\/a>\",\"3451\":\"Twitter for Android<\\/a>\",\"3452\":\"Twitter for Android<\\/a>\",\"3453\":\"Twitter for iPhone<\\/a>\",\"3454\":\"Twitter for iPhone<\\/a>\",\"3455\":\"Twitter for Android<\\/a>\",\"3456\":\"Twitter for iPhone<\\/a>\",\"3457\":\"Twitter for Android<\\/a>\",\"3458\":\"Twitter for Android<\\/a>\",\"3459\":\"Twitter for iPhone<\\/a>\",\"3460\":\"Twitter for iPad<\\/a>\",\"3461\":\"Twitter for iPhone<\\/a>\",\"3462\":\"Twitter for Android<\\/a>\",\"3463\":\"Twitter for Android<\\/a>\",\"3464\":\"Twitter for iPhone<\\/a>\",\"3465\":\"Twitter for Android<\\/a>\",\"3466\":\"Twitter for Android<\\/a>\",\"3467\":\"Twitter for iPhone<\\/a>\",\"3468\":\"Twitter for iPhone<\\/a>\",\"3469\":\"Twitter for Android<\\/a>\",\"3470\":\"Twitter for Android<\\/a>\",\"3471\":\"Twitter for iPhone<\\/a>\",\"3472\":\"Twitter for Android<\\/a>\",\"3473\":\"Twitter for iPhone<\\/a>\",\"3474\":\"Twitter for iPhone<\\/a>\",\"3475\":\"Twitter Web App<\\/a>\",\"3476\":\"Twitter for iPhone<\\/a>\",\"3477\":\"Twitter for iPhone<\\/a>\",\"3478\":\"Twitter for iPhone<\\/a>\",\"3479\":\"Twitter for Android<\\/a>\",\"3480\":\"Twitter for Android<\\/a>\",\"3481\":\"Twitter for Android<\\/a>\",\"3482\":\"Twitter for Android<\\/a>\",\"3483\":\"Twitter for iPhone<\\/a>\",\"3484\":\"Twitter for Android<\\/a>\",\"3485\":\"Twitter Web App<\\/a>\",\"3486\":\"Twitter for Android<\\/a>\",\"3487\":\"Twitter for Android<\\/a>\",\"3488\":\"Twitter for Android<\\/a>\",\"3489\":\"Twitter for Android<\\/a>\",\"3490\":\"Twitter for iPhone<\\/a>\",\"3491\":\"Twitter Web App<\\/a>\",\"3492\":\"Twitter for Android<\\/a>\",\"3493\":\"Twitter for iPhone<\\/a>\",\"3494\":\"Twitter for iPhone<\\/a>\",\"3495\":\"Twitter for iPhone<\\/a>\",\"3496\":\"Twitter for Android<\\/a>\",\"3497\":\"Twitter for iPhone<\\/a>\",\"3498\":\"Twitter for Android<\\/a>\",\"3499\":\"Twitter for Android<\\/a>\",\"3500\":\"Twitter for Android<\\/a>\",\"3501\":\"Twitter for Android<\\/a>\",\"3502\":\"Twitter for Android<\\/a>\",\"3503\":\"Twitter for Android<\\/a>\",\"3504\":\"Twitter for Android<\\/a>\",\"3505\":\"Twitter Web App<\\/a>\",\"3506\":\"Twitter for Android<\\/a>\",\"3507\":\"Twitter for Android<\\/a>\",\"3508\":\"Twitter for Android<\\/a>\",\"3509\":\"Twitter for Android<\\/a>\",\"3510\":\"Twitter for iPhone<\\/a>\",\"3511\":\"Twitter for Android<\\/a>\",\"3512\":\"Twitter for Android<\\/a>\",\"3513\":\"Twitter for Android<\\/a>\",\"3514\":\"Twitter for Android<\\/a>\",\"3515\":\"Twitter for Android<\\/a>\",\"3516\":\"Twitter for Android<\\/a>\",\"3517\":\"Twitter Web App<\\/a>\",\"3518\":\"Twitter Web App<\\/a>\",\"3519\":\"Twitter for Android<\\/a>\",\"3520\":\"Twitter for Android<\\/a>\",\"3521\":\"Twitter for Android<\\/a>\",\"3522\":\"Twitter for Android<\\/a>\",\"3523\":\"Twitter for Android<\\/a>\",\"3524\":\"Twitter for iPhone<\\/a>\",\"3525\":\"Twitter for Android<\\/a>\",\"3526\":\"Twitter for Android<\\/a>\",\"3527\":\"Twitter for Android<\\/a>\",\"3528\":\"Twitter for Android<\\/a>\",\"3529\":\"Twitter for Android<\\/a>\",\"3530\":\"Twitter for iPhone<\\/a>\",\"3531\":\"Twitter for Android<\\/a>\",\"3532\":\"Twitter for Android<\\/a>\",\"3533\":\"Twitter for iPhone<\\/a>\",\"3534\":\"Twitter for Android<\\/a>\",\"3535\":\"Twitter for iPhone<\\/a>\",\"3536\":\"Twitter for Android<\\/a>\",\"3537\":\"Twitter for Android<\\/a>\",\"3538\":\"Twitter Web App<\\/a>\",\"3539\":\"Twitter Web App<\\/a>\",\"3540\":\"Twitter for Android<\\/a>\",\"3541\":\"Twitter for iPhone<\\/a>\",\"3542\":\"Twitter for Android<\\/a>\",\"3543\":\"Twitter for Android<\\/a>\",\"3544\":\"Twitter for Android<\\/a>\",\"3545\":\"Twitter for Android<\\/a>\",\"3546\":\"Twitter for Android<\\/a>\",\"3547\":\"Twitter for Android<\\/a>\",\"3548\":\"Twitter for iPhone<\\/a>\",\"3549\":\"Twitter for Android<\\/a>\",\"3550\":\"Twitter for Android<\\/a>\",\"3551\":\"Twitter Web App<\\/a>\",\"3552\":\"Buffer<\\/a>\",\"3553\":\"Twitter for Android<\\/a>\",\"3554\":\"Twitter Web App<\\/a>\",\"3555\":\"Twitter for Android<\\/a>\",\"3556\":\"Twitter for iPhone<\\/a>\",\"3557\":\"Twitter for Android<\\/a>\",\"3558\":\"Twitter for iPhone<\\/a>\",\"3559\":\"Twitter for Android<\\/a>\",\"3560\":\"Twitter for Android<\\/a>\",\"3561\":\"Twitter for Android<\\/a>\",\"3562\":\"Twitter for Android<\\/a>\",\"3563\":\"Twitter for Android<\\/a>\",\"3564\":\"Twitter for Android<\\/a>\",\"3565\":\"Twitter for Android<\\/a>\",\"3566\":\"Twitter for Android<\\/a>\",\"3567\":\"Twitter for Android<\\/a>\",\"3568\":\"Twitter for Android<\\/a>\",\"3569\":\"Twitter for Android<\\/a>\",\"3570\":\"Twitter Web App<\\/a>\",\"3571\":\"Twitter for iPhone<\\/a>\",\"3572\":\"Twitter for iPhone<\\/a>\",\"3573\":\"Twitter for iPhone<\\/a>\",\"3574\":\"Twitter for Android<\\/a>\",\"3575\":\"Twitter for Android<\\/a>\",\"3576\":\"Twitter for iPhone<\\/a>\",\"3577\":\"Twitter for iPhone<\\/a>\",\"3578\":\"Twitter for Android<\\/a>\",\"3579\":\"Twitter for Android<\\/a>\",\"3580\":\"Twitter for Android<\\/a>\",\"3581\":\"Twitter for iPhone<\\/a>\",\"3582\":\"Twitter for Android<\\/a>\",\"3583\":\"Twitter for Android<\\/a>\",\"3584\":\"Twitter for Android<\\/a>\",\"3585\":\"Twitter for Android<\\/a>\",\"3586\":\"Twitter Web App<\\/a>\",\"3587\":\"Twitter for iPhone<\\/a>\",\"3588\":\"Twitter for iPhone<\\/a>\",\"3589\":\"Twitter for Android<\\/a>\",\"3590\":\"Twitter for Android<\\/a>\",\"3591\":\"Twitter for Android<\\/a>\",\"3592\":\"Twitter for Android<\\/a>\",\"3593\":\"Twitter for Android<\\/a>\",\"3594\":\"Twitter for iPhone<\\/a>\",\"3595\":\"Twitter for Android<\\/a>\",\"3596\":\"Twitter for iPhone<\\/a>\",\"3597\":\"Twitter for iPhone<\\/a>\",\"3598\":\"Twitter for iPhone<\\/a>\",\"3599\":\"Twitter for Android<\\/a>\",\"3600\":\"Twitter for iPhone<\\/a>\",\"3601\":\"Twitter for Android<\\/a>\",\"3602\":\"Twitter for Android<\\/a>\",\"3603\":\"Twitter for Android<\\/a>\",\"3604\":\"Twitter for Android<\\/a>\",\"3605\":\"Twitter for Android<\\/a>\",\"3606\":\"Twitter for Android<\\/a>\",\"3607\":\"Twitter for Android<\\/a>\",\"3608\":\"Twitter for Android<\\/a>\",\"3609\":\"Twitter for iPhone<\\/a>\",\"3610\":\"Twitter for Android<\\/a>\",\"3611\":\"Twitter for Android<\\/a>\",\"3612\":\"Twitter for Android<\\/a>\",\"3613\":\"Twitter for iPhone<\\/a>\",\"3614\":\"Twitter for iPhone<\\/a>\",\"3615\":\"Twitter for Android<\\/a>\",\"3616\":\"Twitter for Android<\\/a>\",\"3617\":\"Twitter for iPhone<\\/a>\",\"3618\":\"Twitter for Android<\\/a>\",\"3619\":\"Twitter for Android<\\/a>\",\"3620\":\"Twitter for Android<\\/a>\",\"3621\":\"Twitter for iPhone<\\/a>\",\"3622\":\"Twitter for iPhone<\\/a>\",\"3623\":\"Twitter Web App<\\/a>\",\"3624\":\"Twitter Web App<\\/a>\",\"3625\":\"Twitter Web App<\\/a>\",\"3626\":\"Twitter for Android<\\/a>\",\"3627\":\"Twitter for Android<\\/a>\",\"3628\":\"Twitter Web App<\\/a>\",\"3629\":\"Twitter Web App<\\/a>\",\"3630\":\"Twitter Web App<\\/a>\",\"3631\":\"Twitter for iPhone<\\/a>\",\"3632\":\"Twitter Web App<\\/a>\",\"3633\":\"Twitter Web App<\\/a>\",\"3634\":\"Twitter for iPhone<\\/a>\",\"3635\":\"Twitter Web App<\\/a>\",\"3636\":\"Twitter Web App<\\/a>\",\"3637\":\"notice.com.ng<\\/a>\",\"3638\":\"Twitter Web App<\\/a>\",\"3639\":\"Twitter Web App<\\/a>\",\"3640\":\"IFTTT<\\/a>\",\"3641\":\"Twitter for iPhone<\\/a>\",\"3642\":\"Twitter for Android<\\/a>\",\"3643\":\"Twitter for Android<\\/a>\",\"3644\":\"Twitter for iPhone<\\/a>\",\"3645\":\"Twitter Web App<\\/a>\",\"3646\":\"Twitter for Android<\\/a>\",\"3647\":\"Twitter for Android<\\/a>\",\"3648\":\"Twitter for Android<\\/a>\",\"3649\":\"Twitter for Android<\\/a>\",\"3650\":\"Twitter Web App<\\/a>\",\"3651\":\"Twitter Web App<\\/a>\",\"3652\":\"Twitter Web App<\\/a>\",\"3653\":\"BobojayTV News<\\/a>\",\"3654\":\"BobojayTV News<\\/a>\",\"3655\":\"BobojayTV News<\\/a>\",\"3656\":\"Twitter Web App<\\/a>\",\"3657\":\"Twitter for Android<\\/a>\",\"3658\":\"Twitter for iPhone<\\/a>\",\"3659\":\"Twitter for iPhone<\\/a>\",\"3660\":\"Twitter for Android<\\/a>\",\"3661\":\"Twitter Web App<\\/a>\",\"3662\":\"Twitter Web App<\\/a>\",\"3663\":\"Twitter for Android<\\/a>\",\"3664\":\"Twitter Web App<\\/a>\",\"3665\":\"Twitter for Android<\\/a>\",\"3666\":\"Twitter for Android<\\/a>\",\"3667\":\"Twitter for Android<\\/a>\",\"3668\":\"Twitter Web App<\\/a>\",\"3669\":\"Twitter for Android<\\/a>\",\"3670\":\"WordPress.com<\\/a>\",\"3671\":\"Twitter for iPhone<\\/a>\",\"3672\":\"Twitter for iPhone<\\/a>\",\"3673\":\"Twitter Web App<\\/a>\",\"3674\":\"Twitter for Android<\\/a>\",\"3675\":\"Twitter for Android<\\/a>\",\"3676\":\"Twitter for Android<\\/a>\",\"3677\":\"Twitter for Android<\\/a>\",\"3678\":\"Twitter for iPhone<\\/a>\",\"3679\":\"Twitter for Android<\\/a>\",\"3680\":\"Twitter for Android<\\/a>\",\"3681\":\"Twitter for iPhone<\\/a>\",\"3682\":\"Twitter for Android<\\/a>\",\"3683\":\"Twitter for iPhone<\\/a>\",\"3684\":\"Twitter for Android<\\/a>\",\"3685\":\"Twitter for Android<\\/a>\",\"3686\":\"Twitter for iPhone<\\/a>\",\"3687\":\"Twitter for iPhone<\\/a>\",\"3688\":\"Twitter for Android<\\/a>\",\"3689\":\"Twitter for Android<\\/a>\",\"3690\":\"Twitter for iPhone<\\/a>\",\"3691\":\"dlvr.it<\\/a>\",\"3692\":\"Twitter for Android<\\/a>\",\"3693\":\"Twitter for Android<\\/a>\",\"3694\":\"Twitter Web App<\\/a>\",\"3695\":\"Twitter for Android<\\/a>\",\"3696\":\"Twitter Web App<\\/a>\",\"3697\":\"Twitter for Android<\\/a>\",\"3698\":\"Twitter for iPhone<\\/a>\",\"3699\":\"Twitter for Android<\\/a>\",\"3700\":\"Twitter for iPhone<\\/a>\",\"3701\":\"Twitter for iPhone<\\/a>\",\"3702\":\"Twitter for iPhone<\\/a>\",\"3703\":\"Twitter for iPhone<\\/a>\",\"3704\":\"Twitter for iPhone<\\/a>\",\"3705\":\"Twitter for iPhone<\\/a>\",\"3706\":\"Twitter for iPhone<\\/a>\",\"3707\":\"Twitter for iPhone<\\/a>\",\"3708\":\"Twitter for iPhone<\\/a>\",\"3709\":\"Twitter for iPhone<\\/a>\",\"3710\":\"Twitter for iPhone<\\/a>\",\"3711\":\"Twitter for iPhone<\\/a>\",\"3712\":\"Twitter for Android<\\/a>\",\"3713\":\"Twitter for Android<\\/a>\",\"3714\":\"Twitter for Android<\\/a>\",\"3715\":\"Twitter Web App<\\/a>\",\"3716\":\"Twitter for Android<\\/a>\",\"3717\":\"Twitter for iPhone<\\/a>\",\"3718\":\"Twitter for Android<\\/a>\",\"3719\":\"Twitter for Android<\\/a>\",\"3720\":\"Twitter for iPhone<\\/a>\",\"3721\":\"Twitter for Android<\\/a>\",\"3722\":\"Twitter for iPhone<\\/a>\",\"3723\":\"Twitter for Android<\\/a>\",\"3724\":\"Twitter for Android<\\/a>\",\"3725\":\"Instagram<\\/a>\",\"3726\":\"Twitter for Android<\\/a>\",\"3727\":\"Twitter for Android<\\/a>\",\"3728\":\"Twitter for Android<\\/a>\",\"3729\":\"Twitter for iPhone<\\/a>\",\"3730\":\"Twitter for Android<\\/a>\",\"3731\":\"Twitter for Android<\\/a>\",\"3732\":\"Twitter for Android<\\/a>\",\"3733\":\"Twitter for Android<\\/a>\",\"3734\":\"Twitter for Android<\\/a>\",\"3735\":\"Twitter for Android<\\/a>\",\"3736\":\"Twitter for iPhone<\\/a>\",\"3737\":\"Twitter for Android<\\/a>\",\"3738\":\"Twitter for Android<\\/a>\",\"3739\":\"Twitter Web App<\\/a>\",\"3740\":\"Twitter for Android<\\/a>\",\"3741\":\"Twitter for Android<\\/a>\",\"3742\":\"Twitter for Android<\\/a>\",\"3743\":\"Twitter for Android<\\/a>\",\"3744\":\"Twitter for Android<\\/a>\",\"3745\":\"Twitter for Android<\\/a>\",\"3746\":\"Twitter for Android<\\/a>\",\"3747\":\"Twitter for Android<\\/a>\",\"3748\":\"Twitter for Android<\\/a>\",\"3749\":\"Twitter for Android<\\/a>\",\"3750\":\"Twitter for Android<\\/a>\",\"3751\":\"Twitter for Android<\\/a>\",\"3752\":\"Twitter for iPhone<\\/a>\",\"3753\":\"Twitter Web App<\\/a>\",\"3754\":\"Twitter for Android<\\/a>\",\"3755\":\"Twitter for iPhone<\\/a>\",\"3756\":\"Twitter for iPhone<\\/a>\",\"3757\":\"Twitter for iPhone<\\/a>\",\"3758\":\"Twitter for Android<\\/a>\",\"3759\":\"Twitter for Android<\\/a>\",\"3760\":\"Twitter for Android<\\/a>\",\"3761\":\"Twitter for Android<\\/a>\",\"3762\":\"Twitter for Android<\\/a>\",\"3763\":\"Twitter for Android<\\/a>\",\"3764\":\"Twitter for Android<\\/a>\",\"3765\":\"Twitter for Android<\\/a>\",\"3766\":\"Twitter for Android<\\/a>\",\"3767\":\"Twitter for Android<\\/a>\",\"3768\":\"Twitter for Android<\\/a>\",\"3769\":\"Twitter for iPhone<\\/a>\",\"3770\":\"Twitter for Android<\\/a>\",\"3771\":\"Twitter for iPhone<\\/a>\",\"3772\":\"Twitter for Android<\\/a>\",\"3773\":\"Twitter for iPhone<\\/a>\",\"3774\":\"Twitter for Android<\\/a>\",\"3775\":\"Twitter for Android<\\/a>\",\"3776\":\"Twitter for Android<\\/a>\",\"3777\":\"Twitter Web App<\\/a>\",\"3778\":\"Twitter for iPhone<\\/a>\",\"3779\":\"Twitter for iPhone<\\/a>\",\"3780\":\"Twitter for Android<\\/a>\",\"3781\":\"Twitter for iPhone<\\/a>\",\"3782\":\"Twitter for iPhone<\\/a>\",\"3783\":\"Twitter for Android<\\/a>\",\"3784\":\"Twitter for Android<\\/a>\",\"3785\":\"Twitter for iPhone<\\/a>\",\"3786\":\"Twitter for Android<\\/a>\",\"3787\":\"Twitter for Android<\\/a>\",\"3788\":\"Twitter for iPhone<\\/a>\",\"3789\":\"Twitter for Android<\\/a>\",\"3790\":\"Twitter for Android<\\/a>\",\"3791\":\"Twitter for Android<\\/a>\",\"3792\":\"Twitter for Android<\\/a>\",\"3793\":\"Twitter for iPhone<\\/a>\",\"3794\":\"Twitter for Android<\\/a>\",\"3795\":\"Twitter for iPhone<\\/a>\",\"3796\":\"Twitter for Android<\\/a>\",\"3797\":\"Twitter for Android<\\/a>\",\"3798\":\"Twitter for Android<\\/a>\",\"3799\":\"Twitter for Android<\\/a>\",\"3800\":\"Twitter for Android<\\/a>\",\"3801\":\"Twitter for Android<\\/a>\",\"3802\":\"Twitter for iPhone<\\/a>\",\"3803\":\"Twitter for iPhone<\\/a>\",\"3804\":\"Twitter for Android<\\/a>\",\"3805\":\"Twitter for iPhone<\\/a>\",\"3806\":\"Twitter Web App<\\/a>\",\"3807\":\"Twitter Web App<\\/a>\",\"3808\":\"Twitter Web App<\\/a>\",\"3809\":\"Twitter for Android<\\/a>\",\"3810\":\"Twitter for Android<\\/a>\",\"3811\":\"Twitter for Android<\\/a>\",\"3812\":\"Twitter for Android<\\/a>\",\"3813\":\"Twitter for Android<\\/a>\",\"3814\":\"Twitter for Android<\\/a>\",\"3815\":\"Twitter for iPhone<\\/a>\",\"3816\":\"Twitter for Android<\\/a>\",\"3817\":\"Twitter for Android<\\/a>\",\"3818\":\"Twitter for Android<\\/a>\",\"3819\":\"Twitter for Android<\\/a>\",\"3820\":\"Twitter for Android<\\/a>\",\"3821\":\"Twitter for Android<\\/a>\",\"3822\":\"Twitter for Android<\\/a>\",\"3823\":\"Twitter for Android<\\/a>\",\"3824\":\"Twitter for Android<\\/a>\",\"3825\":\"Twitter for Android<\\/a>\",\"3826\":\"Twitter for Android<\\/a>\",\"3827\":\"Twitter Web App<\\/a>\",\"3828\":\"Twitter for Android<\\/a>\",\"3829\":\"Twitter for Android<\\/a>\",\"3830\":\"Twitter for Android<\\/a>\",\"3831\":\"Twitter for Android<\\/a>\",\"3832\":\"Twitter for Android<\\/a>\",\"3833\":\"Twitter for Android<\\/a>\",\"3834\":\"Twitter for Android<\\/a>\",\"3835\":\"Twitter for Android<\\/a>\",\"3836\":\"Twitter for Android<\\/a>\",\"3837\":\"Twitter Web App<\\/a>\",\"3838\":\"Twitter for Android<\\/a>\",\"3839\":\"Twitter for Android<\\/a>\",\"3840\":\"Twitter for Android<\\/a>\",\"3841\":\"Twitter for Android<\\/a>\",\"3842\":\"Twitter for Android<\\/a>\",\"3843\":\"Twitter for iPhone<\\/a>\",\"3844\":\"Twitter for iPhone<\\/a>\",\"3845\":\"Twitter for iPhone<\\/a>\",\"3846\":\"Twitter for iPhone<\\/a>\",\"3847\":\"Twitter for iPhone<\\/a>\",\"3848\":\"Twitter for iPhone<\\/a>\",\"3849\":\"Twitter for Android<\\/a>\",\"3850\":\"Twitter for Android<\\/a>\",\"3851\":\"Twitter for iPhone<\\/a>\",\"3852\":\"Twitter for Android<\\/a>\",\"3853\":\"Twitter for Android<\\/a>\",\"3854\":\"Twitter for Android<\\/a>\",\"3855\":\"Twitter for Android<\\/a>\",\"3856\":\"Twitter for Android<\\/a>\",\"3857\":\"Twitter for iPhone<\\/a>\",\"3858\":\"Twitter for Android<\\/a>\",\"3859\":\"Twitter for Android<\\/a>\",\"3860\":\"Twitter for Android<\\/a>\",\"3861\":\"Twitter for Android<\\/a>\",\"3862\":\"Twitter for Android<\\/a>\",\"3863\":\"Twitter for iPhone<\\/a>\",\"3864\":\"Twitter for Android<\\/a>\",\"3865\":\"Twitter for iPhone<\\/a>\",\"3866\":\"Twitter for Android<\\/a>\",\"3867\":\"Twitter for Android<\\/a>\",\"3868\":\"Twitter for Android<\\/a>\",\"3869\":\"Twitter for Android<\\/a>\",\"3870\":\"Twitter for iPhone<\\/a>\",\"3871\":\"Twitter for Android<\\/a>\",\"3872\":\"Twitter for Android<\\/a>\",\"3873\":\"Twitter for iPhone<\\/a>\",\"3874\":\"Twitter for Android<\\/a>\",\"3875\":\"Twitter for iPhone<\\/a>\",\"3876\":\"Twitter for iPhone<\\/a>\",\"3877\":\"Twitter for Android<\\/a>\",\"3878\":\"Twitter for Android<\\/a>\",\"3879\":\"Twitter for Android<\\/a>\",\"3880\":\"Twitter for Android<\\/a>\",\"3881\":\"Twitter for Android<\\/a>\",\"3882\":\"Twitter for Android<\\/a>\",\"3883\":\"Twitter for Android<\\/a>\",\"3884\":\"Twitter for iPhone<\\/a>\",\"3885\":\"Twitter for iPhone<\\/a>\",\"3886\":\"Twitter for Android<\\/a>\",\"3887\":\"Twitter for Android<\\/a>\",\"3888\":\"Twitter for Android<\\/a>\",\"3889\":\"Twitter for iPhone<\\/a>\",\"3890\":\"Twitter for Android<\\/a>\",\"3891\":\"Twitter for Android<\\/a>\",\"3892\":\"Twitter for Android<\\/a>\",\"3893\":\"Twitter for Android<\\/a>\",\"3894\":\"Twitter for Android<\\/a>\",\"3895\":\"Twitter for Android<\\/a>\",\"3896\":\"Twitter for Android<\\/a>\",\"3897\":\"Twitter for Android<\\/a>\",\"3898\":\"Twitter for Android<\\/a>\",\"3899\":\"Twitter for Android<\\/a>\",\"3900\":\"Twitter for iPhone<\\/a>\",\"3901\":\"Twitter for Android<\\/a>\",\"3902\":\"Twitter for iPhone<\\/a>\",\"3903\":\"Twitter for Android<\\/a>\",\"3904\":\"Twitter for Android<\\/a>\",\"3905\":\"Twitter for Android<\\/a>\",\"3906\":\"Twitter for Android<\\/a>\",\"3907\":\"Twitter for Android<\\/a>\",\"3908\":\"Twitter for Android<\\/a>\",\"3909\":\"Twitter for iPhone<\\/a>\",\"3910\":\"Twitter for Android<\\/a>\",\"3911\":\"Twitter for Android<\\/a>\",\"3912\":\"Twitter for Android<\\/a>\",\"3913\":\"Twitter for Android<\\/a>\",\"3914\":\"Twitter for iPhone<\\/a>\",\"3915\":\"Twitter for Android<\\/a>\",\"3916\":\"Twitter for iPhone<\\/a>\",\"3917\":\"Twitter for Android<\\/a>\",\"3918\":\"Twitter for iPhone<\\/a>\",\"3919\":\"Twitter for Android<\\/a>\",\"3920\":\"Twitter for iPhone<\\/a>\",\"3921\":\"Twitter for iPhone<\\/a>\",\"3922\":\"Twitter for Android<\\/a>\",\"3923\":\"Twitter Web App<\\/a>\",\"3924\":\"Twitter for Android<\\/a>\",\"3925\":\"Twitter Web App<\\/a>\",\"3926\":\"Twitter for iPhone<\\/a>\",\"3927\":\"Twitter for iPhone<\\/a>\",\"3928\":\"Twitter for iPhone<\\/a>\",\"3929\":\"Twitter for Android<\\/a>\",\"3930\":\"Twitter for Android<\\/a>\",\"3931\":\"Twitter for iPhone<\\/a>\",\"3932\":\"Twitter for iPhone<\\/a>\",\"3933\":\"Twitter for Android<\\/a>\",\"3934\":\"Twitter for Android<\\/a>\",\"3935\":\"Twitter for Android<\\/a>\",\"3936\":\"Twitter Web App<\\/a>\",\"3937\":\"Twitter for Android<\\/a>\",\"3938\":\"Twitter for iPhone<\\/a>\",\"3939\":\"Twitter for iPhone<\\/a>\",\"3940\":\"Twitter for Android<\\/a>\",\"3941\":\"Twitter for Android<\\/a>\",\"3942\":\"Twitter for Android<\\/a>\",\"3943\":\"Twitter for Android<\\/a>\",\"3944\":\"Twitter for iPhone<\\/a>\",\"3945\":\"Twitter for Android<\\/a>\",\"3946\":\"Twitter for Android<\\/a>\",\"3947\":\"Twitter for Android<\\/a>\",\"3948\":\"Twitter for Android<\\/a>\",\"3949\":\"Twitter for iPhone<\\/a>\",\"3950\":\"Twitter for Android<\\/a>\",\"3951\":\"Twitter for Android<\\/a>\",\"3952\":\"Twitter for Android<\\/a>\",\"3953\":\"Twitter for Android<\\/a>\",\"3954\":\"Twitter for Android<\\/a>\",\"3955\":\"Twitter for iPhone<\\/a>\",\"3956\":\"Twitter for iPhone<\\/a>\",\"3957\":\"Twitter for Android<\\/a>\",\"3958\":\"Twitter for Android<\\/a>\",\"3959\":\"Twitter for Android<\\/a>\",\"3960\":\"Twitter for Android<\\/a>\",\"3961\":\"Twitter for iPhone<\\/a>\",\"3962\":\"Twitter for iPhone<\\/a>\",\"3963\":\"Twitter for Android<\\/a>\",\"3964\":\"Twitter for iPhone<\\/a>\",\"3965\":\"Twitter for iPhone<\\/a>\",\"3966\":\"Twitter for iPhone<\\/a>\",\"3967\":\"Twitter for iPhone<\\/a>\",\"3968\":\"Twitter for Android<\\/a>\",\"3969\":\"Twitter for iPhone<\\/a>\",\"3970\":\"Twitter for Android<\\/a>\",\"3971\":\"Twitter for Android<\\/a>\",\"3972\":\"Twitter for iPhone<\\/a>\",\"3973\":\"Twitter for Android<\\/a>\",\"3974\":\"Twitter for Android<\\/a>\",\"3975\":\"Twitter for Android<\\/a>\",\"3976\":\"Twitter for iPhone<\\/a>\",\"3977\":\"Twitter for Android<\\/a>\",\"3978\":\"Twitter for Android<\\/a>\",\"3979\":\"Twitter for iPhone<\\/a>\",\"3980\":\"Twitter for Android<\\/a>\",\"3981\":\"Twitter for Android<\\/a>\",\"3982\":\"Twitter for Android<\\/a>\",\"3983\":\"Twitter for iPhone<\\/a>\",\"3984\":\"Twitter for iPhone<\\/a>\",\"3985\":\"Twitter for Android<\\/a>\",\"3986\":\"Twitter for Android<\\/a>\",\"3987\":\"Twitter for Android<\\/a>\",\"3988\":\"Twitter for Android<\\/a>\",\"3989\":\"Twitter for Android<\\/a>\",\"3990\":\"Twitter for Android<\\/a>\",\"3991\":\"Twitter for iPhone<\\/a>\",\"3992\":\"Twitter for Android<\\/a>\",\"3993\":\"Twitter for Android<\\/a>\",\"3994\":\"Twitter for Android<\\/a>\",\"3995\":\"Twitter for iPhone<\\/a>\",\"3996\":\"Twitter for Android<\\/a>\",\"3997\":\"Twitter for Android<\\/a>\",\"3998\":\"Twitter for iPhone<\\/a>\",\"3999\":\"Twitter for Android<\\/a>\",\"4000\":\"Twitter for Android<\\/a>\",\"4001\":\"Twitter for Android<\\/a>\",\"4002\":\"Twitter for Android<\\/a>\",\"4003\":\"Twitter for Android<\\/a>\",\"4004\":\"Twitter for Android<\\/a>\",\"4005\":\"Twitter Web App<\\/a>\",\"4006\":\"Twitter for Android<\\/a>\",\"4007\":\"Twitter for Android<\\/a>\",\"4008\":\"Twitter for Android<\\/a>\",\"4009\":\"Twitter for Android<\\/a>\",\"4010\":\"Twitter for Android<\\/a>\",\"4011\":\"Twitter for Android<\\/a>\",\"4012\":\"Twitter for Android<\\/a>\",\"4013\":\"Twitter for iPhone<\\/a>\",\"4014\":\"Twitter for iPhone<\\/a>\",\"4015\":\"Twitter for iPhone<\\/a>\",\"4016\":\"Twitter for Android<\\/a>\",\"4017\":\"Twitter for Android<\\/a>\",\"4018\":\"Twitter for Android<\\/a>\",\"4019\":\"Twitter for Android<\\/a>\",\"4020\":\"Twitter for Android<\\/a>\",\"4021\":\"Twitter for Android<\\/a>\",\"4022\":\"Twitter for Android<\\/a>\",\"4023\":\"Twitter for Android<\\/a>\",\"4024\":\"Twitter Web App<\\/a>\",\"4025\":\"Twitter for Android<\\/a>\",\"4026\":\"Twitter for Android<\\/a>\",\"4027\":\"Twitter Web App<\\/a>\",\"4028\":\"Twitter for iPhone<\\/a>\",\"4029\":\"Twitter for Android<\\/a>\",\"4030\":\"Twitter for iPhone<\\/a>\",\"4031\":\"Twitter for Android<\\/a>\",\"4032\":\"Twitter Web App<\\/a>\",\"4033\":\"Twitter for iPhone<\\/a>\",\"4034\":\"Twitter for Android<\\/a>\",\"4035\":\"Twitter for Android<\\/a>\",\"4036\":\"Twitter for Android<\\/a>\",\"4037\":\"Twitter for Android<\\/a>\",\"4038\":\"Twitter for iPhone<\\/a>\",\"4039\":\"Twitter for Android<\\/a>\",\"4040\":\"Twitter for Android<\\/a>\",\"4041\":\"Twitter for iPhone<\\/a>\",\"4042\":\"Twitter for Android<\\/a>\",\"4043\":\"Twitter for iPhone<\\/a>\",\"4044\":\"Twitter for Android<\\/a>\",\"4045\":\"Twitter for Android<\\/a>\",\"4046\":\"Twitter for iPhone<\\/a>\",\"4047\":\"Twitter for Android<\\/a>\",\"4048\":\"Twitter Web App<\\/a>\",\"4049\":\"Twitter for Android<\\/a>\",\"4050\":\"Twitter for Android<\\/a>\",\"4051\":\"Twitter for Android<\\/a>\",\"4052\":\"Twitter for Android<\\/a>\",\"4053\":\"Twitter for Android<\\/a>\",\"4054\":\"Twitter for Android<\\/a>\",\"4055\":\"Twitter for Android<\\/a>\",\"4056\":\"Twitter for Android<\\/a>\",\"4057\":\"Twitter for Android<\\/a>\",\"4058\":\"Twitter for Android<\\/a>\",\"4059\":\"Twitter for Android<\\/a>\",\"4060\":\"Twitter for Android<\\/a>\",\"4061\":\"Twitter for iPhone<\\/a>\",\"4062\":\"Twitter for Android<\\/a>\",\"4063\":\"Twitter for Android<\\/a>\",\"4064\":\"Twitter for Android<\\/a>\",\"4065\":\"Twitter for Android<\\/a>\",\"4066\":\"Twitter for Android<\\/a>\",\"4067\":\"Twitter for Android<\\/a>\",\"4068\":\"Twitter for Android<\\/a>\",\"4069\":\"Twitter for Android<\\/a>\",\"4070\":\"Twitter for Android<\\/a>\",\"4071\":\"Twitter for Android<\\/a>\",\"4072\":\"Twitter for Android<\\/a>\",\"4073\":\"Twitter for Android<\\/a>\",\"4074\":\"Twitter for Android<\\/a>\",\"4075\":\"Twitter for Android<\\/a>\",\"4076\":\"Twitter for Android<\\/a>\",\"4077\":\"Twitter for Android<\\/a>\",\"4078\":\"Twitter for Android<\\/a>\",\"4079\":\"Twitter for Android<\\/a>\",\"4080\":\"Twitter for Android<\\/a>\",\"4081\":\"Twitter for Android<\\/a>\",\"4082\":\"Twitter for Android<\\/a>\",\"4083\":\"Twitter for Android<\\/a>\",\"4084\":\"Twitter for Android<\\/a>\",\"4085\":\"Twitter for Android<\\/a>\",\"4086\":\"Twitter for Android<\\/a>\",\"4087\":\"Twitter for Android<\\/a>\",\"4088\":\"Twitter for Android<\\/a>\",\"4089\":\"Twitter for Android<\\/a>\",\"4090\":\"Twitter for Android<\\/a>\",\"4091\":\"Twitter for Android<\\/a>\",\"4092\":\"Twitter Web App<\\/a>\",\"4093\":\"Twitter for Android<\\/a>\",\"4094\":\"Twitter for Android<\\/a>\",\"4095\":\"Twitter for Android<\\/a>\",\"4096\":\"Twitter for Android<\\/a>\",\"4097\":\"Twitter for Android<\\/a>\",\"4098\":\"Twitter for Android<\\/a>\",\"4099\":\"Twitter for Android<\\/a>\",\"4100\":\"Twitter for Android<\\/a>\",\"4101\":\"Twitter for Android<\\/a>\",\"4102\":\"Twitter for iPhone<\\/a>\",\"4103\":\"Twitter for Android<\\/a>\",\"4104\":\"Twitter for iPhone<\\/a>\",\"4105\":\"Twitter for Android<\\/a>\",\"4106\":\"Twitter for Android<\\/a>\",\"4107\":\"Twitter for Android<\\/a>\",\"4108\":\"Twitter for iPhone<\\/a>\",\"4109\":\"Twitter for iPhone<\\/a>\",\"4110\":\"Twitter for Android<\\/a>\",\"4111\":\"Twitter for Android<\\/a>\",\"4112\":\"Twitter for Android<\\/a>\",\"4113\":\"Twitter for iPhone<\\/a>\",\"4114\":\"Twitter for Android<\\/a>\",\"4115\":\"Twitter for Android<\\/a>\",\"4116\":\"Twitter for Android<\\/a>\",\"4117\":\"Twitter for Android<\\/a>\",\"4118\":\"Twitter for Android<\\/a>\",\"4119\":\"Twitter for Android<\\/a>\",\"4120\":\"Twitter for Android<\\/a>\",\"4121\":\"Twitter for Android<\\/a>\",\"4122\":\"Twitter for iPhone<\\/a>\",\"4123\":\"Twitter for iPhone<\\/a>\",\"4124\":\"Twitter for iPhone<\\/a>\",\"4125\":\"Twitter for iPhone<\\/a>\",\"4126\":\"Twitter Web App<\\/a>\",\"4127\":\"Twitter for Android<\\/a>\",\"4128\":\"Twitter Web App<\\/a>\",\"4129\":\"Twitter for Android<\\/a>\",\"4130\":\"Twitter for Android<\\/a>\",\"4131\":\"Twitter for iPhone<\\/a>\",\"4132\":\"Twitter for Android<\\/a>\",\"4133\":\"Twitter for Android<\\/a>\",\"4134\":\"TweetDeck<\\/a>\",\"4135\":\"Twitter for Android<\\/a>\",\"4136\":\"Twitter for Android<\\/a>\",\"4137\":\"Twitter Web App<\\/a>\",\"4138\":\"Twitter for Android<\\/a>\",\"4139\":\"Twitter for iPhone<\\/a>\",\"4140\":\"Twitter for Android<\\/a>\",\"4141\":\"Twitter for Android<\\/a>\",\"4142\":\"Twitter for Android<\\/a>\",\"4143\":\"Twitter for iPhone<\\/a>\",\"4144\":\"Twitter for iPhone<\\/a>\",\"4145\":\"Twitter for Android<\\/a>\",\"4146\":\"Twitter for Android<\\/a>\",\"4147\":\"Twitter for Android<\\/a>\",\"4148\":\"Twitter for Android<\\/a>\",\"4149\":\"Twitter for Android<\\/a>\",\"4150\":\"Twitter for iPhone<\\/a>\",\"4151\":\"Twitter for Android<\\/a>\",\"4152\":\"Twitter for Android<\\/a>\",\"4153\":\"Twitter for Android<\\/a>\",\"4154\":\"Twitter for Android<\\/a>\",\"4155\":\"Twitter for Android<\\/a>\",\"4156\":\"Twitter for iPhone<\\/a>\",\"4157\":\"Twitter for Android<\\/a>\",\"4158\":\"Twitter for Android<\\/a>\",\"4159\":\"Twitter for Android<\\/a>\",\"4160\":\"Twitter for iPhone<\\/a>\",\"4161\":\"Twitter for Android<\\/a>\",\"4162\":\"Twitter for Android<\\/a>\",\"4163\":\"Twitter for Android<\\/a>\",\"4164\":\"Twitter for Android<\\/a>\",\"4165\":\"Twitter for Android<\\/a>\",\"4166\":\"WordPress.com<\\/a>\",\"4167\":\"Twitter for iPhone<\\/a>\",\"4168\":\"Twitter for Android<\\/a>\",\"4169\":\"Twitter for Android<\\/a>\",\"4170\":\"Twitter for iPhone<\\/a>\",\"4171\":\"Twitter for iPhone<\\/a>\",\"4172\":\"Twitter for Android<\\/a>\",\"4173\":\"Twitter for Android<\\/a>\",\"4174\":\"Twitter for Android<\\/a>\",\"4175\":\"Twitter for Android<\\/a>\",\"4176\":\"Twitter Web App<\\/a>\",\"4177\":\"Twitter for Android<\\/a>\",\"4178\":\"Twitter for Android<\\/a>\",\"4179\":\"Twitter for Android<\\/a>\",\"4180\":\"Twitter for Android<\\/a>\",\"4181\":\"Twitter for Android<\\/a>\",\"4182\":\"Twitter for iPhone<\\/a>\",\"4183\":\"Twitter for Android<\\/a>\",\"4184\":\"Twitter for Android<\\/a>\",\"4185\":\"Twitter for Android<\\/a>\",\"4186\":\"Twitter for iPhone<\\/a>\",\"4187\":\"Twitter for Android<\\/a>\",\"4188\":\"Twitter for Android<\\/a>\",\"4189\":\"Twitter for iPhone<\\/a>\",\"4190\":\"Twitter for Android<\\/a>\",\"4191\":\"Twitter for iPhone<\\/a>\",\"4192\":\"Twitter for Android<\\/a>\",\"4193\":\"Twitter for iPhone<\\/a>\",\"4194\":\"Twitter for iPhone<\\/a>\",\"4195\":\"Twitter for Android<\\/a>\",\"4196\":\"Twitter for Android<\\/a>\",\"4197\":\"Twitter for iPhone<\\/a>\",\"4198\":\"Twitter for Android<\\/a>\",\"4199\":\"Twitter for Android<\\/a>\",\"4200\":\"Twitter for Android<\\/a>\",\"4201\":\"Twitter for Android<\\/a>\",\"4202\":\"Twitter for Android<\\/a>\",\"4203\":\"Twitter for Android<\\/a>\",\"4204\":\"Twitter for Android<\\/a>\",\"4205\":\"Twitter Web App<\\/a>\",\"4206\":\"Twitter for iPhone<\\/a>\",\"4207\":\"Twitter for iPhone<\\/a>\",\"4208\":\"Twitter for Android<\\/a>\",\"4209\":\"Twitter for iPhone<\\/a>\",\"4210\":\"Twitter for Android<\\/a>\",\"4211\":\"Twitter for iPhone<\\/a>\",\"4212\":\"Twitter for Android<\\/a>\",\"4213\":\"Twitter for Android<\\/a>\",\"4214\":\"Twitter for Android<\\/a>\",\"4215\":\"Twitter for Android<\\/a>\",\"4216\":\"Twitter for Android<\\/a>\",\"4217\":\"Twitter for Android<\\/a>\",\"4218\":\"Twitter for Android<\\/a>\",\"4219\":\"Twitter for Android<\\/a>\",\"4220\":\"Twitter for Android<\\/a>\",\"4221\":\"Twitter for Android<\\/a>\",\"4222\":\"Twitter for Android<\\/a>\",\"4223\":\"Twitter for Android<\\/a>\",\"4224\":\"Twitter for Android<\\/a>\",\"4225\":\"Twitter for Android<\\/a>\",\"4226\":\"Twitter for Android<\\/a>\",\"4227\":\"Twitter for Android<\\/a>\",\"4228\":\"Twitter for iPhone<\\/a>\",\"4229\":\"Twitter for iPhone<\\/a>\",\"4230\":\"Twitter for Android<\\/a>\",\"4231\":\"Twitter for iPhone<\\/a>\",\"4232\":\"Twitter for Android<\\/a>\",\"4233\":\"Twitter for iPhone<\\/a>\",\"4234\":\"Twitter for Android<\\/a>\",\"4235\":\"Twitter for Android<\\/a>\",\"4236\":\"Twitter for Android<\\/a>\",\"4237\":\"Twitter Web App<\\/a>\",\"4238\":\"Twitter for iPhone<\\/a>\",\"4239\":\"Twitter for iPhone<\\/a>\",\"4240\":\"Twitter for Android<\\/a>\",\"4241\":\"Twitter for iPhone<\\/a>\",\"4242\":\"Twitter for iPhone<\\/a>\",\"4243\":\"Twitter for Android<\\/a>\",\"4244\":\"Twitter for Android<\\/a>\",\"4245\":\"Twitter for Android<\\/a>\",\"4246\":\"Twitter for Android<\\/a>\",\"4247\":\"Twitter for iPhone<\\/a>\",\"4248\":\"Twitter for Android<\\/a>\",\"4249\":\"Twitter for Android<\\/a>\",\"4250\":\"Twitter for Android<\\/a>\",\"4251\":\"dlvr.it<\\/a>\",\"4252\":\"Twitter for Android<\\/a>\",\"4253\":\"Twitter for Android<\\/a>\",\"4254\":\"Twitter for iPhone<\\/a>\",\"4255\":\"Twitter for iPhone<\\/a>\",\"4256\":\"Twitter for iPhone<\\/a>\",\"4257\":\"Twitter for Android<\\/a>\",\"4258\":\"Twitter for iPhone<\\/a>\",\"4259\":\"Twitter for Android<\\/a>\",\"4260\":\"Twitter for iPhone<\\/a>\",\"4261\":\"Twitter for Android<\\/a>\",\"4262\":\"Twitter for Android<\\/a>\",\"4263\":\"Twitter for Android<\\/a>\",\"4264\":\"Twitter for iPhone<\\/a>\",\"4265\":\"Twitter for Android<\\/a>\",\"4266\":\"Twitter for Android<\\/a>\",\"4267\":\"Twitter for Android<\\/a>\",\"4268\":\"Twitter for iPhone<\\/a>\",\"4269\":\"Twitter for Android<\\/a>\",\"4270\":\"Twitter for iPhone<\\/a>\",\"4271\":\"Twitter for iPhone<\\/a>\",\"4272\":\"Twitter for iPhone<\\/a>\",\"4273\":\"Twitter for Android<\\/a>\",\"4274\":\"Twitter for Android<\\/a>\",\"4275\":\"Twitter for Android<\\/a>\",\"4276\":\"Twitter for Android<\\/a>\",\"4277\":\"Twitter for Android<\\/a>\",\"4278\":\"Twitter for Android<\\/a>\",\"4279\":\"Twitter for Android<\\/a>\",\"4280\":\"Twitter for Android<\\/a>\",\"4281\":\"Twitter for Android<\\/a>\",\"4282\":\"Twitter for Android<\\/a>\",\"4283\":\"Twitter for iPhone<\\/a>\",\"4284\":\"Twitter for Android<\\/a>\",\"4285\":\"Twitter for Android<\\/a>\",\"4286\":\"Twitter for iPhone<\\/a>\",\"4287\":\"Twitter for Android<\\/a>\",\"4288\":\"Twitter for iPhone<\\/a>\",\"4289\":\"Twitter for Android<\\/a>\",\"4290\":\"Twitter for iPhone<\\/a>\",\"4291\":\"Twitter for Android<\\/a>\",\"4292\":\"Twitter for Android<\\/a>\",\"4293\":\"Twitter Web App<\\/a>\",\"4294\":\"Twitter Web App<\\/a>\",\"4295\":\"Twitter for iPhone<\\/a>\",\"4296\":\"Twitter for iPhone<\\/a>\",\"4297\":\"Twitter for Android<\\/a>\",\"4298\":\"Twitter for Android<\\/a>\",\"4299\":\"Twitter for Android<\\/a>\",\"4300\":\"Twitter for Android<\\/a>\",\"4301\":\"Twitter for Android<\\/a>\",\"4302\":\"Twitter for Android<\\/a>\",\"4303\":\"Twitter for iPhone<\\/a>\",\"4304\":\"Twitter for iPhone<\\/a>\",\"4305\":\"Twitter for Android<\\/a>\",\"4306\":\"Twitter for Android<\\/a>\",\"4307\":\"Twitter for Android<\\/a>\",\"4308\":\"Twitter for Android<\\/a>\",\"4309\":\"BobojayTV News<\\/a>\",\"4310\":\"Twitter for Android<\\/a>\",\"4311\":\"Twitter for iPhone<\\/a>\",\"4312\":\"Twitter for Android<\\/a>\",\"4313\":\"BobojayTV News<\\/a>\",\"4314\":\"Twitter for iPhone<\\/a>\",\"4315\":\"Twitter for Android<\\/a>\",\"4316\":\"Twitter for iPhone<\\/a>\",\"4317\":\"Twitter for iPhone<\\/a>\",\"4318\":\"Twitter for Android<\\/a>\",\"4319\":\"Twitter Web App<\\/a>\",\"4320\":\"Twitter for Android<\\/a>\",\"4321\":\"Twitter for Android<\\/a>\",\"4322\":\"Twitter for iPhone<\\/a>\",\"4323\":\"Twitter for Android<\\/a>\",\"4324\":\"Twitter for Android<\\/a>\",\"4325\":\"Twitter for Android<\\/a>\",\"4326\":\"Twitter for Android<\\/a>\",\"4327\":\"Twitter for Android<\\/a>\",\"4328\":\"Twitter for Android<\\/a>\",\"4329\":\"Twitter for Android<\\/a>\",\"4330\":\"Twitter for Android<\\/a>\",\"4331\":\"Twitter for Android<\\/a>\",\"4332\":\"Twitter for Android<\\/a>\",\"4333\":\"Twitter for Android<\\/a>\",\"4334\":\"Twitter for Android<\\/a>\",\"4335\":\"Twitter for Android<\\/a>\",\"4336\":\"Twitter for Android<\\/a>\",\"4337\":\"Twitter for Android<\\/a>\",\"4338\":\"Twitter for Android<\\/a>\",\"4339\":\"Twitter for Android<\\/a>\",\"4340\":\"Twitter for Android<\\/a>\",\"4341\":\"Twitter for Android<\\/a>\",\"4342\":\"Twitter for Android<\\/a>\",\"4343\":\"Twitter for Android<\\/a>\",\"4344\":\"Twitter for iPhone<\\/a>\",\"4345\":\"Twitter for Android<\\/a>\",\"4346\":\"Twitter for Android<\\/a>\",\"4347\":\"Twitter Web App<\\/a>\",\"4348\":\"Twitter for Android<\\/a>\",\"4349\":\"Twitter for iPhone<\\/a>\",\"4350\":\"Twitter for Android<\\/a>\",\"4351\":\"Twitter for Android<\\/a>\",\"4352\":\"Twitter for iPhone<\\/a>\",\"4353\":\"Twitter for Android<\\/a>\",\"4354\":\"Twitter for Android<\\/a>\",\"4355\":\"Twitter for Android<\\/a>\",\"4356\":\"Twitter for Android<\\/a>\",\"4357\":\"Twitter for Android<\\/a>\",\"4358\":\"Twitter for Android<\\/a>\",\"4359\":\"Twitter for Android<\\/a>\",\"4360\":\"Twitter Web App<\\/a>\",\"4361\":\"Twitter for Android<\\/a>\",\"4362\":\"Twitter Web App<\\/a>\",\"4363\":\"Twitter Web App<\\/a>\",\"4364\":\"Twitter for Android<\\/a>\",\"4365\":\"Twitter for Android<\\/a>\",\"4366\":\"Twitter for Android<\\/a>\",\"4367\":\"Twitter Web App<\\/a>\",\"4368\":\"Twitter for Android<\\/a>\",\"4369\":\"Twitter for Android<\\/a>\",\"4370\":\"Twitter Web App<\\/a>\",\"4371\":\"Twitter for Android<\\/a>\",\"4372\":\"Twitter for iPhone<\\/a>\",\"4373\":\"Twitter for iPhone<\\/a>\",\"4374\":\"Twitter Web App<\\/a>\",\"4375\":\"Twitter Web App<\\/a>\",\"4376\":\"Twitter for iPhone<\\/a>\",\"4377\":\"Twitter for Android<\\/a>\",\"4378\":\"Twitter for Android<\\/a>\",\"4379\":\"Twitter for iPhone<\\/a>\",\"4380\":\"Twitter Web App<\\/a>\",\"4381\":\"Twitter for iPhone<\\/a>\",\"4382\":\"Twitter for Android<\\/a>\",\"4383\":\"Twitter for Android<\\/a>\",\"4384\":\"Twitter for Android<\\/a>\",\"4385\":\"Twitter for Android<\\/a>\",\"4386\":\"Twitter Web App<\\/a>\",\"4387\":\"Twitter for Android<\\/a>\",\"4388\":\"Twitter for Android<\\/a>\",\"4389\":\"Twitter for iPhone<\\/a>\",\"4390\":\"Twitter for Android<\\/a>\",\"4391\":\"Twitter for Android<\\/a>\",\"4392\":\"Twitter for Android<\\/a>\",\"4393\":\"Twitter for iPhone<\\/a>\",\"4394\":\"Twitter for iPhone<\\/a>\",\"4395\":\"Twitter for Android<\\/a>\",\"4396\":\"Twitter for iPhone<\\/a>\",\"4397\":\"Twitter for Android<\\/a>\",\"4398\":\"Twitter for Android<\\/a>\",\"4399\":\"Twitter Web App<\\/a>\",\"4400\":\"Twitter for Android<\\/a>\",\"4401\":\"Twitter for Android<\\/a>\",\"4402\":\"Twitter for Android<\\/a>\",\"4403\":\"Twitter for iPhone<\\/a>\",\"4404\":\"Twitter for Android<\\/a>\",\"4405\":\"Twitter for iPhone<\\/a>\",\"4406\":\"Twitter for Android<\\/a>\",\"4407\":\"Twitter for Android<\\/a>\",\"4408\":\"Twitter for Android<\\/a>\",\"4409\":\"Twitter for Android<\\/a>\",\"4410\":\"Twitter for Android<\\/a>\",\"4411\":\"Twitter for Android<\\/a>\",\"4412\":\"Twitter for Android<\\/a>\",\"4413\":\"Twitter for Android<\\/a>\",\"4414\":\"Twitter for Android<\\/a>\",\"4415\":\"Twitter for iPhone<\\/a>\",\"4416\":\"Twitter for Android<\\/a>\",\"4417\":\"Twitter for iPhone<\\/a>\",\"4418\":\"Twitter for iPhone<\\/a>\",\"4419\":\"Twitter for iPhone<\\/a>\",\"4420\":\"Twitter for Android<\\/a>\",\"4421\":\"Twitter for iPhone<\\/a>\",\"4422\":\"Twitter Web App<\\/a>\",\"4423\":\"Twitter for iPhone<\\/a>\",\"4424\":\"Twitter Web App<\\/a>\",\"4425\":\"Twitter for Android<\\/a>\",\"4426\":\"Twitter for Android<\\/a>\",\"4427\":\"Twitter for Android<\\/a>\",\"4428\":\"Twitter for iPhone<\\/a>\",\"4429\":\"Twitter Web App<\\/a>\",\"4430\":\"Twitter for Android<\\/a>\",\"4431\":\"Twitter for Android<\\/a>\",\"4432\":\"Twitter for iPhone<\\/a>\",\"4433\":\"Twitter Web App<\\/a>\",\"4434\":\"Twitter for iPhone<\\/a>\",\"4435\":\"Twitter for iPhone<\\/a>\",\"4436\":\"Twitter for iPhone<\\/a>\",\"4437\":\"Twitter for iPhone<\\/a>\",\"4438\":\"Twitter for Android<\\/a>\",\"4439\":\"Twitter for Android<\\/a>\",\"4440\":\"Twitter for iPhone<\\/a>\",\"4441\":\"Twitter for iPhone<\\/a>\",\"4442\":\"dlvr.it<\\/a>\",\"4443\":\"Twitter for Android<\\/a>\",\"4444\":\"Twitter for Android<\\/a>\",\"4445\":\"Twitter for Android<\\/a>\",\"4446\":\"Twitter for Android<\\/a>\",\"4447\":\"Twitter for Android<\\/a>\",\"4448\":\"Twitter for iPhone<\\/a>\",\"4449\":\"Twitter for Android<\\/a>\",\"4450\":\"Twitter for Android<\\/a>\",\"4451\":\"Twitter for Android<\\/a>\",\"4452\":\"Twitter for iPhone<\\/a>\",\"4453\":\"Twitter for Android<\\/a>\",\"4454\":\"Twitter Web App<\\/a>\",\"4455\":\"Twitter for iPhone<\\/a>\",\"4456\":\"Twitter for iPhone<\\/a>\",\"4457\":\"Twitter for Android<\\/a>\",\"4458\":\"Twitter for Android<\\/a>\",\"4459\":\"Twitter for Android<\\/a>\",\"4460\":\"Twitter for Android<\\/a>\",\"4461\":\"Twitter for iPhone<\\/a>\",\"4462\":\"Twitter for Android<\\/a>\",\"4463\":\"Twitter for Android<\\/a>\",\"4464\":\"Twitter for iPhone<\\/a>\",\"4465\":\"Twitter for Android<\\/a>\",\"4466\":\"Twitter for Android<\\/a>\",\"4467\":\"Twitter Web App<\\/a>\",\"4468\":\"Twitter for Android<\\/a>\",\"4469\":\"Twitter for Android<\\/a>\",\"4470\":\"Twitter for Android<\\/a>\",\"4471\":\"Twitter for Android<\\/a>\",\"4472\":\"Twitter for Android<\\/a>\",\"4473\":\"Twitter for Android<\\/a>\",\"4474\":\"Twitter Web App<\\/a>\",\"4475\":\"Twitter for Android<\\/a>\",\"4476\":\"Twitter for Android<\\/a>\",\"4477\":\"Twitter for Android<\\/a>\",\"4478\":\"Twitter Web App<\\/a>\",\"4479\":\"Twitter for iPhone<\\/a>\",\"4480\":\"Twitter for Android<\\/a>\",\"4481\":\"Twitter Web App<\\/a>\",\"4482\":\"Twitter for Android<\\/a>\",\"4483\":\"Twitter for Android<\\/a>\",\"4484\":\"Twitter for Android<\\/a>\",\"4485\":\"Twitter for Android<\\/a>\",\"4486\":\"Twitter for Android<\\/a>\",\"4487\":\"Twitter for Android<\\/a>\",\"4488\":\"Twitter Web App<\\/a>\",\"4489\":\"Twitter for Android<\\/a>\",\"4490\":\"Twitter for Android<\\/a>\",\"4491\":\"Twitter for iPhone<\\/a>\",\"4492\":\"Twitter Web App<\\/a>\",\"4493\":\"Twitter for Android<\\/a>\",\"4494\":\"Twitter for Android<\\/a>\",\"4495\":\"Twitter for Android<\\/a>\",\"4496\":\"Twitter for Android<\\/a>\",\"4497\":\"Twitter for Android<\\/a>\",\"4498\":\"Twitter for Android<\\/a>\",\"4499\":\"Twitter for iPhone<\\/a>\",\"4500\":\"Twitter Web App<\\/a>\",\"4501\":\"Twitter Web App<\\/a>\",\"4502\":\"Twitter for Android<\\/a>\",\"4503\":\"Twitter for iPhone<\\/a>\",\"4504\":\"Twitter for Android<\\/a>\",\"4505\":\"Twitter Web App<\\/a>\",\"4506\":\"Twitter for Android<\\/a>\",\"4507\":\"Twitter for Android<\\/a>\",\"4508\":\"Twitter for Android<\\/a>\",\"4509\":\"Twitter for Android<\\/a>\",\"4510\":\"Twitter Web App<\\/a>\",\"4511\":\"Twitter for Android<\\/a>\",\"4512\":\"Twitter for Android<\\/a>\",\"4513\":\"Twitter for Android<\\/a>\",\"4514\":\"Twitter for Android<\\/a>\",\"4515\":\"Twitter for Android<\\/a>\",\"4516\":\"Twitter for iPhone<\\/a>\",\"4517\":\"Twitter for Android<\\/a>\",\"4518\":\"Twitter for iPhone<\\/a>\",\"4519\":\"Twitter for Android<\\/a>\",\"4520\":\"Twitter for iPhone<\\/a>\",\"4521\":\"Twitter for Android<\\/a>\",\"4522\":\"Twitter Web App<\\/a>\",\"4523\":\"Twitter for iPhone<\\/a>\",\"4524\":\"Twitter Web App<\\/a>\",\"4525\":\"Twitter for iPhone<\\/a>\",\"4526\":\"Twitter for iPhone<\\/a>\",\"4527\":\"Twitter for Android<\\/a>\",\"4528\":\"Twitter for iPhone<\\/a>\",\"4529\":\"Twitter for iPhone<\\/a>\",\"4530\":\"Twitter for Android<\\/a>\",\"4531\":\"Twitter for Android<\\/a>\",\"4532\":\"Twitter for iPhone<\\/a>\",\"4533\":\"Twitter for iPhone<\\/a>\",\"4534\":\"Twitter for Android<\\/a>\",\"4535\":\"Twitter for Android<\\/a>\",\"4536\":\"Twitter for iPhone<\\/a>\",\"4537\":\"Twitter for Android<\\/a>\",\"4538\":\"Twitter Web App<\\/a>\",\"4539\":\"Twitter Web App<\\/a>\",\"4540\":\"Twitter Web App<\\/a>\",\"4541\":\"Twitter Web App<\\/a>\",\"4542\":\"Twitter Web App<\\/a>\",\"4543\":\"Twitter Web App<\\/a>\",\"4544\":\"Twitter Web App<\\/a>\",\"4545\":\"Twitter Web App<\\/a>\",\"4546\":\"Twitter for Android<\\/a>\",\"4547\":\"Twitter for iPhone<\\/a>\",\"4548\":\"Twitter for Android<\\/a>\",\"4549\":\"Twitter for iPhone<\\/a>\",\"4550\":\"Twitter for Android<\\/a>\",\"4551\":\"Twitter for iPhone<\\/a>\",\"4552\":\"Twitter for Android<\\/a>\",\"4553\":\"Twitter for Android<\\/a>\",\"4554\":\"Twitter for Android<\\/a>\",\"4555\":\"Twitter for iPhone<\\/a>\",\"4556\":\"Twitter for iPhone<\\/a>\",\"4557\":\"Twitter for Android<\\/a>\",\"4558\":\"Twitter for Android<\\/a>\",\"4559\":\"Twitter for Android<\\/a>\",\"4560\":\"Twitter Web App<\\/a>\",\"4561\":\"Twitter for Android<\\/a>\",\"4562\":\"Twitter for Android<\\/a>\",\"4563\":\"Twitter for iPhone<\\/a>\",\"4564\":\"Twitter for Android<\\/a>\",\"4565\":\"Twitter for iPhone<\\/a>\",\"4566\":\"Twitter for Android<\\/a>\",\"4567\":\"Twitter for iPhone<\\/a>\",\"4568\":\"Twitter for iPhone<\\/a>\",\"4569\":\"Twitter for Android<\\/a>\",\"4570\":\"Twitter for Android<\\/a>\",\"4571\":\"Twitter for Android<\\/a>\",\"4572\":\"Twitter for iPhone<\\/a>\",\"4573\":\"Twitter for Android<\\/a>\",\"4574\":\"Twitter Web App<\\/a>\",\"4575\":\"Twitter for Android<\\/a>\",\"4576\":\"Twitter for iPhone<\\/a>\",\"4577\":\"Twitter for Android<\\/a>\",\"4578\":\"Twitter for Android<\\/a>\",\"4579\":\"Twitter for Android<\\/a>\",\"4580\":\"Twitter for Android<\\/a>\",\"4581\":\"Twitter for Android<\\/a>\",\"4582\":\"Twitter for Android<\\/a>\",\"4583\":\"Twitter for iPhone<\\/a>\",\"4584\":\"Twitter for iPhone<\\/a>\",\"4585\":\"Twitter for Android<\\/a>\",\"4586\":\"Twitter for iPhone<\\/a>\",\"4587\":\"Twitter for iPhone<\\/a>\",\"4588\":\"Twitter for iPhone<\\/a>\",\"4589\":\"Twitter for Android<\\/a>\",\"4590\":\"Twitter for Android<\\/a>\",\"4591\":\"Twitter for iPhone<\\/a>\",\"4592\":\"Twitter for Android<\\/a>\",\"4593\":\"Twitter for Android<\\/a>\",\"4594\":\"Twitter for Android<\\/a>\",\"4595\":\"Twitter for Android<\\/a>\",\"4596\":\"Twitter for iPhone<\\/a>\",\"4597\":\"Twitter for iPhone<\\/a>\",\"4598\":\"Twitter for iPhone<\\/a>\",\"4599\":\"Twitter for Android<\\/a>\",\"4600\":\"Twitter for Android<\\/a>\",\"4601\":\"Twitter for Android<\\/a>\",\"4602\":\"Twitter for Android<\\/a>\",\"4603\":\"Twitter for Android<\\/a>\",\"4604\":\"Twitter for Android<\\/a>\",\"4605\":\"Twitter for Android<\\/a>\",\"4606\":\"Twitter for Android<\\/a>\",\"4607\":\"Twitter for Android<\\/a>\",\"4608\":\"Twitter for Android<\\/a>\",\"4609\":\"Twitter for iPhone<\\/a>\",\"4610\":\"Twitter for iPhone<\\/a>\",\"4611\":\"Twitter for Android<\\/a>\",\"4612\":\"Twitter for Android<\\/a>\",\"4613\":\"Twitter for Android<\\/a>\",\"4614\":\"Twitter for Android<\\/a>\",\"4615\":\"Twitter for iPhone<\\/a>\",\"4616\":\"Twitter for Android<\\/a>\",\"4617\":\"Twitter for iPhone<\\/a>\",\"4618\":\"Twitter for Android<\\/a>\",\"4619\":\"Twitter for iPhone<\\/a>\",\"4620\":\"Twitter for iPhone<\\/a>\",\"4621\":\"Twitter for Android<\\/a>\",\"4622\":\"Twitter for Android<\\/a>\",\"4623\":\"Twitter for iPhone<\\/a>\",\"4624\":\"Twitter for Android<\\/a>\",\"4625\":\"Twitter for Android<\\/a>\",\"4626\":\"Twitter for Android<\\/a>\",\"4627\":\"Twitter for Android<\\/a>\",\"4628\":\"Twitter for Android<\\/a>\",\"4629\":\"Twitter for Android<\\/a>\",\"4630\":\"Twitter for Android<\\/a>\",\"4631\":\"Twitter for Android<\\/a>\",\"4632\":\"Twitter for Android<\\/a>\",\"4633\":\"Twitter for Android<\\/a>\",\"4634\":\"Twitter for Android<\\/a>\",\"4635\":\"Twitter for Android<\\/a>\",\"4636\":\"Twitter for Android<\\/a>\",\"4637\":\"Twitter for iPhone<\\/a>\",\"4638\":\"Twitter for Android<\\/a>\",\"4639\":\"Twitter for Android<\\/a>\",\"4640\":\"Twitter for Android<\\/a>\",\"4641\":\"Twitter for Android<\\/a>\",\"4642\":\"Twitter for Android<\\/a>\",\"4643\":\"Twitter for Android<\\/a>\",\"4644\":\"Twitter for Android<\\/a>\",\"4645\":\"Twitter for Android<\\/a>\",\"4646\":\"Twitter for Android<\\/a>\",\"4647\":\"Twitter for Android<\\/a>\",\"4648\":\"Twitter for iPhone<\\/a>\",\"4649\":\"Twitter for Android<\\/a>\",\"4650\":\"Twitter for Android<\\/a>\",\"4651\":\"Twitter for Android<\\/a>\",\"4652\":\"Twitter for Android<\\/a>\",\"4653\":\"Twitter for Android<\\/a>\",\"4654\":\"Twitter for Android<\\/a>\",\"4655\":\"Twitter for Android<\\/a>\",\"4656\":\"Twitter for Android<\\/a>\",\"4657\":\"Twitter for Android<\\/a>\",\"4658\":\"Twitter for Android<\\/a>\",\"4659\":\"Twitter for Android<\\/a>\",\"4660\":\"Twitter for Android<\\/a>\",\"4661\":\"Twitter for iPhone<\\/a>\",\"4662\":\"Twitter for iPhone<\\/a>\",\"4663\":\"Twitter for Android<\\/a>\",\"4664\":\"Twitter for iPhone<\\/a>\",\"4665\":\"Twitter for Android<\\/a>\",\"4666\":\"Twitter for Android<\\/a>\",\"4667\":\"Twitter Web App<\\/a>\",\"4668\":\"Twitter for iPhone<\\/a>\",\"4669\":\"Twitter for iPhone<\\/a>\",\"4670\":\"Twitter for iPhone<\\/a>\",\"4671\":\"Twitter for iPhone<\\/a>\",\"4672\":\"Twitter for iPhone<\\/a>\",\"4673\":\"Twitter for Android<\\/a>\",\"4674\":\"Twitter for Android<\\/a>\",\"4675\":\"Twitter Web App<\\/a>\",\"4676\":\"Twitter for Android<\\/a>\",\"4677\":\"Twitter for Android<\\/a>\",\"4678\":\"Twitter for Android<\\/a>\",\"4679\":\"Twitter for Android<\\/a>\",\"4680\":\"Twitter for iPhone<\\/a>\",\"4681\":\"Twitter for iPhone<\\/a>\",\"4682\":\"Twitter Web App<\\/a>\",\"4683\":\"Twitter Web App<\\/a>\",\"4684\":\"Twitter for Android<\\/a>\",\"4685\":\"Twitter for iPhone<\\/a>\",\"4686\":\"Twitter for iPhone<\\/a>\",\"4687\":\"Twitter for iPhone<\\/a>\",\"4688\":\"Twitter for iPhone<\\/a>\",\"4689\":\"Twitter for Android<\\/a>\",\"4690\":\"Twitter for Android<\\/a>\",\"4691\":\"Twitter Web App<\\/a>\",\"4692\":\"Twitter Web App<\\/a>\",\"4693\":\"Twitter for Android<\\/a>\",\"4694\":\"Twitter for iPhone<\\/a>\",\"4695\":\"Twitter for iPhone<\\/a>\",\"4696\":\"Twitter for Android<\\/a>\",\"4697\":\"Twitter for Android<\\/a>\",\"4698\":\"Twitter for Android<\\/a>\",\"4699\":\"Twitter for Android<\\/a>\",\"4700\":\"Twitter for Android<\\/a>\",\"4701\":\"Twitter for Android<\\/a>\",\"4702\":\"Twitter for iPhone<\\/a>\",\"4703\":\"Twitter for iPhone<\\/a>\",\"4704\":\"Twitter for Android<\\/a>\",\"4705\":\"Twitter Web App<\\/a>\",\"4706\":\"Twitter for iPhone<\\/a>\",\"4707\":\"Twitter for Android<\\/a>\",\"4708\":\"Twitter Web App<\\/a>\",\"4709\":\"Twitter for iPhone<\\/a>\",\"4710\":\"Twitter for Android<\\/a>\",\"4711\":\"Twitter for iPhone<\\/a>\",\"4712\":\"Twitter for Android<\\/a>\",\"4713\":\"Twitter for iPhone<\\/a>\",\"4714\":\"Twitter for Android<\\/a>\",\"4715\":\"Twitter for Android<\\/a>\",\"4716\":\"Twitter for Android<\\/a>\",\"4717\":\"Twitter for Android<\\/a>\",\"4718\":\"Twitter for iPhone<\\/a>\",\"4719\":\"Twitter for iPhone<\\/a>\",\"4720\":\"Twitter for Android<\\/a>\",\"4721\":\"Twitter for Android<\\/a>\",\"4722\":\"Twitter for iPhone<\\/a>\",\"4723\":\"Twitter for Android<\\/a>\",\"4724\":\"Twitter for Android<\\/a>\",\"4725\":\"Twitter for Android<\\/a>\",\"4726\":\"Twitter for iPhone<\\/a>\",\"4727\":\"Twitter for iPhone<\\/a>\",\"4728\":\"Twitter for Android<\\/a>\",\"4729\":\"Twitter for Android<\\/a>\",\"4730\":\"Twitter for iPhone<\\/a>\",\"4731\":\"Twitter for iPhone<\\/a>\",\"4732\":\"Twitter for iPhone<\\/a>\",\"4733\":\"Twitter for iPhone<\\/a>\",\"4734\":\"Twitter for iPhone<\\/a>\",\"4735\":\"Twitter for Android<\\/a>\",\"4736\":\"Twitter for Android<\\/a>\",\"4737\":\"Twitter for iPhone<\\/a>\",\"4738\":\"Twitter for Android<\\/a>\",\"4739\":\"Twitter for Android<\\/a>\",\"4740\":\"Twitter for Android<\\/a>\",\"4741\":\"Twitter for Android<\\/a>\",\"4742\":\"Twitter for iPhone<\\/a>\",\"4743\":\"Twitter for Android<\\/a>\",\"4744\":\"Twitter for iPhone<\\/a>\",\"4745\":\"Twitter for Android<\\/a>\",\"4746\":\"Twitter for Android<\\/a>\",\"4747\":\"Twitter for Android<\\/a>\",\"4748\":\"Twitter for Android<\\/a>\",\"4749\":\"Twitter for Android<\\/a>\",\"4750\":\"Twitter for iPhone<\\/a>\",\"4751\":\"Twitter for Android<\\/a>\",\"4752\":\"Twitter for iPhone<\\/a>\",\"4753\":\"Twitter for Android<\\/a>\",\"4754\":\"Twitter for Android<\\/a>\",\"4755\":\"Twitter for iPhone<\\/a>\",\"4756\":\"Twitter for Android<\\/a>\",\"4757\":\"Twitter for Android<\\/a>\",\"4758\":\"Twitter for Android<\\/a>\",\"4759\":\"Twitter for Android<\\/a>\",\"4760\":\"Twitter for Android<\\/a>\",\"4761\":\"Twitter for Android<\\/a>\",\"4762\":\"Twitter for Android<\\/a>\",\"4763\":\"Twitter for Android<\\/a>\",\"4764\":\"Twitter for Android<\\/a>\",\"4765\":\"Twitter for Android<\\/a>\",\"4766\":\"Twitter for Android<\\/a>\",\"4767\":\"Twitter for Android<\\/a>\",\"4768\":\"Twitter for Android<\\/a>\",\"4769\":\"Twitter for Android<\\/a>\",\"4770\":\"Twitter for Android<\\/a>\",\"4771\":\"Twitter for Android<\\/a>\",\"4772\":\"Twitter for iPhone<\\/a>\",\"4773\":\"Twitter for Android<\\/a>\",\"4774\":\"Twitter for Android<\\/a>\",\"4775\":\"Twitter for Android<\\/a>\",\"4776\":\"Twitter for Android<\\/a>\",\"4777\":\"Twitter for Android<\\/a>\",\"4778\":\"Twitter for Android<\\/a>\",\"4779\":\"Twitter for iPhone<\\/a>\",\"4780\":\"Twitter for Android<\\/a>\",\"4781\":\"Twitter for Android<\\/a>\",\"4782\":\"Twitter for iPhone<\\/a>\",\"4783\":\"Twitter for Android<\\/a>\",\"4784\":\"Twitter for Android<\\/a>\",\"4785\":\"Twitter for Android<\\/a>\",\"4786\":\"Twitter for Android<\\/a>\",\"4787\":\"Twitter for Android<\\/a>\",\"4788\":\"Twitter for Android<\\/a>\",\"4789\":\"Twitter for Android<\\/a>\",\"4790\":\"Twitter for Android<\\/a>\",\"4791\":\"Twitter for Android<\\/a>\",\"4792\":\"Twitter for Android<\\/a>\",\"4793\":\"Twitter for iPhone<\\/a>\",\"4794\":\"Twitter for Android<\\/a>\",\"4795\":\"Twitter for Android<\\/a>\",\"4796\":\"Twitter for Android<\\/a>\",\"4797\":\"Twitter for iPhone<\\/a>\",\"4798\":\"Twitter for Android<\\/a>\",\"4799\":\"Twitter for Android<\\/a>\",\"4800\":\"Twitter for iPhone<\\/a>\",\"4801\":\"Twitter for Android<\\/a>\",\"4802\":\"Twitter for Android<\\/a>\",\"4803\":\"Twitter for iPhone<\\/a>\",\"4804\":\"Twitter for Android<\\/a>\",\"4805\":\"Twitter for iPhone<\\/a>\",\"4806\":\"Twitter Web App<\\/a>\",\"4807\":\"Twitter for iPhone<\\/a>\",\"4808\":\"Twitter for Android<\\/a>\",\"4809\":\"Twitter for Android<\\/a>\",\"4810\":\"Twitter for Android<\\/a>\",\"4811\":\"Twitter for iPhone<\\/a>\",\"4812\":\"Twitter for Android<\\/a>\",\"4813\":\"Twitter for Android<\\/a>\",\"4814\":\"Twitter for iPhone<\\/a>\",\"4815\":\"Twitter for Android<\\/a>\",\"4816\":\"Twitter for Android<\\/a>\",\"4817\":\"Twitter for iPhone<\\/a>\",\"4818\":\"Twitter for iPhone<\\/a>\",\"4819\":\"Twitter for Android<\\/a>\",\"4820\":\"Twitter for Android<\\/a>\",\"4821\":\"Twitter for Android<\\/a>\",\"4822\":\"Twitter for Android<\\/a>\",\"4823\":\"Twitter for Android<\\/a>\",\"4824\":\"Twitter for Android<\\/a>\",\"4825\":\"Twitter for Android<\\/a>\",\"4826\":\"Twitter for Android<\\/a>\",\"4827\":\"Twitter for Android<\\/a>\",\"4828\":\"Twitter for Android<\\/a>\",\"4829\":\"Twitter for Android<\\/a>\",\"4830\":\"Twitter for Android<\\/a>\",\"4831\":\"Twitter for iPhone<\\/a>\",\"4832\":\"Twitter for iPhone<\\/a>\",\"4833\":\"Twitter for Android<\\/a>\",\"4834\":\"Twitter for iPhone<\\/a>\",\"4835\":\"Twitter for Android<\\/a>\",\"4836\":\"Twitter for Android<\\/a>\",\"4837\":\"Twitter Web App<\\/a>\",\"4838\":\"Twitter for iPhone<\\/a>\",\"4839\":\"Twitter for Android<\\/a>\",\"4840\":\"Twitter for Android<\\/a>\",\"4841\":\"Twitter for Android<\\/a>\",\"4842\":\"Twitter for Android<\\/a>\",\"4843\":\"Twitter for Android<\\/a>\",\"4844\":\"Twitter for Android<\\/a>\",\"4845\":\"Twitter for Android<\\/a>\",\"4846\":\"Twitter for iPhone<\\/a>\",\"4847\":\"Twitter for Android<\\/a>\",\"4848\":\"Twitter for Android<\\/a>\",\"4849\":\"Twitter for Android<\\/a>\",\"4850\":\"Twitter for iPhone<\\/a>\",\"4851\":\"Twitter for iPhone<\\/a>\",\"4852\":\"Twitter for iPhone<\\/a>\",\"4853\":\"Twitter for iPhone<\\/a>\",\"4854\":\"Twitter for iPhone<\\/a>\",\"4855\":\"Twitter for iPhone<\\/a>\",\"4856\":\"Twitter for iPhone<\\/a>\",\"4857\":\"Twitter for Android<\\/a>\",\"4858\":\"Twitter for iPhone<\\/a>\",\"4859\":\"Twitter for iPhone<\\/a>\",\"4860\":\"Twitter for iPhone<\\/a>\",\"4861\":\"Twitter for iPhone<\\/a>\",\"4862\":\"Twitter for Android<\\/a>\",\"4863\":\"Twitter for iPhone<\\/a>\",\"4864\":\"Twitter for Android<\\/a>\",\"4865\":\"Twitter for iPhone<\\/a>\",\"4866\":\"Twitter for iPhone<\\/a>\",\"4867\":\"Twitter for Android<\\/a>\",\"4868\":\"Twitter for Android<\\/a>\",\"4869\":\"Twitter for Android<\\/a>\",\"4870\":\"Jokoshq<\\/a>\",\"4871\":\"Twitter for Android<\\/a>\",\"4872\":\"Twitter for iPhone<\\/a>\",\"4873\":\"Twitter for iPhone<\\/a>\",\"4874\":\"Twitter for iPhone<\\/a>\",\"4875\":\"Twitter for Android<\\/a>\",\"4876\":\"Twitter for Android<\\/a>\",\"4877\":\"Twitter for iPhone<\\/a>\",\"4878\":\"Twitter for Android<\\/a>\",\"4879\":\"Twitter for Android<\\/a>\",\"4880\":\"Twitter for Android<\\/a>\",\"4881\":\"Twitter for Android<\\/a>\",\"4882\":\"Twitter for Android<\\/a>\",\"4883\":\"Twitter for Android<\\/a>\",\"4884\":\"Twitter for iPhone<\\/a>\",\"4885\":\"Twitter for Android<\\/a>\",\"4886\":\"Twitter Web App<\\/a>\",\"4887\":\"Twitter for Android<\\/a>\",\"4888\":\"Twitter for iPhone<\\/a>\",\"4889\":\"Twitter for iPhone<\\/a>\",\"4890\":\"Twitter for Android<\\/a>\",\"4891\":\"Twitter for iPhone<\\/a>\",\"4892\":\"Twitter for iPhone<\\/a>\",\"4893\":\"Twitter for iPhone<\\/a>\",\"4894\":\"Twitter for Android<\\/a>\",\"4895\":\"Twitter for iPhone<\\/a>\",\"4896\":\"Twitter for iPhone<\\/a>\",\"4897\":\"Twitter for Android<\\/a>\",\"4898\":\"Twitter for Android<\\/a>\",\"4899\":\"Twitter for iPhone<\\/a>\",\"4900\":\"Twitter for Android<\\/a>\",\"4901\":\"Twitter for iPhone<\\/a>\",\"4902\":\"Twitter for iPhone<\\/a>\",\"4903\":\"Twitter for iPhone<\\/a>\",\"4904\":\"Twitter for Android<\\/a>\",\"4905\":\"Twitter for Android<\\/a>\",\"4906\":\"Twitter for iPhone<\\/a>\",\"4907\":\"Twitter Web App<\\/a>\",\"4908\":\"Twitter for iPhone<\\/a>\",\"4909\":\"Twitter for Android<\\/a>\",\"4910\":\"Twitter for iPhone<\\/a>\",\"4911\":\"Twitter for Android<\\/a>\",\"4912\":\"Twitter Web App<\\/a>\",\"4913\":\"Twitter for Android<\\/a>\",\"4914\":\"Twitter for Android<\\/a>\",\"4915\":\"Twitter for Android<\\/a>\",\"4916\":\"Twitter for Android<\\/a>\",\"4917\":\"Twitter for Android<\\/a>\",\"4918\":\"Twitter for Android<\\/a>\",\"4919\":\"Twitter for Android<\\/a>\",\"4920\":\"Twitter for Android<\\/a>\",\"4921\":\"Twitter for iPhone<\\/a>\",\"4922\":\"Twitter for iPhone<\\/a>\",\"4923\":\"Twitter for iPhone<\\/a>\",\"4924\":\"Twitter for iPhone<\\/a>\",\"4925\":\"Twitter for iPhone<\\/a>\",\"4926\":\"Twitter for Android<\\/a>\",\"4927\":\"Twitter for Android<\\/a>\",\"4928\":\"Twitter for Android<\\/a>\",\"4929\":\"Twitter Web App<\\/a>\",\"4930\":\"Twitter for iPhone<\\/a>\",\"4931\":\"Twitter Web App<\\/a>\",\"4932\":\"Twitter for iPhone<\\/a>\",\"4933\":\"Twitter for Android<\\/a>\",\"4934\":\"Twitter for Android<\\/a>\",\"4935\":\"Twitter Web App<\\/a>\",\"4936\":\"Twitter for Android<\\/a>\",\"4937\":\"Twitter for iPhone<\\/a>\",\"4938\":\"Twitter for Android<\\/a>\",\"4939\":\"Twitter for Android<\\/a>\",\"4940\":\"Twitter for iPhone<\\/a>\",\"4941\":\"Twitter for iPhone<\\/a>\",\"4942\":\"Twitter for Android<\\/a>\",\"4943\":\"Twitter for Android<\\/a>\",\"4944\":\"Twitter for Android<\\/a>\",\"4945\":\"Twitter for Android<\\/a>\",\"4946\":\"Twitter for iPhone<\\/a>\",\"4947\":\"Twitter Web App<\\/a>\",\"4948\":\"Twitter for Android<\\/a>\",\"4949\":\"Twitter for Android<\\/a>\",\"4950\":\"Twitter for iPhone<\\/a>\",\"4951\":\"Twitter for iPhone<\\/a>\",\"4952\":\"Twitter Web App<\\/a>\",\"4953\":\"Twitter for Android<\\/a>\",\"4954\":\"Twitter for Android<\\/a>\",\"4955\":\"Twitter for Android<\\/a>\",\"4956\":\"Twitter for Android<\\/a>\",\"4957\":\"Twitter for Android<\\/a>\",\"4958\":\"Twitter for Android<\\/a>\",\"4959\":\"Twitter for iPhone<\\/a>\",\"4960\":\"Twitter for Android<\\/a>\",\"4961\":\"Twitter for Android<\\/a>\",\"4962\":\"Twitter for Android<\\/a>\",\"4963\":\"Twitter Web App<\\/a>\",\"4964\":\"Twitter for Android<\\/a>\",\"4965\":\"Twitter for Android<\\/a>\",\"4966\":\"Twitter for Android<\\/a>\",\"4967\":\"Twitter for Android<\\/a>\",\"4968\":\"Twitter for iPhone<\\/a>\",\"4969\":\"Twitter Web App<\\/a>\",\"4970\":\"Twitter for iPhone<\\/a>\",\"4971\":\"Twitter for Android<\\/a>\",\"4972\":\"Twitter Web App<\\/a>\",\"4973\":\"Twitter for Android<\\/a>\",\"4974\":\"Twitter for iPhone<\\/a>\",\"4975\":\"Twitter Web App<\\/a>\",\"4976\":\"Twitter for Android<\\/a>\",\"4977\":\"Twitter for iPhone<\\/a>\",\"4978\":\"Twitter Web App<\\/a>\",\"4979\":\"Twitter Web App<\\/a>\",\"4980\":\"Twitter for iPhone<\\/a>\",\"4981\":\"Twitter for iPhone<\\/a>\",\"4982\":\"Twitter for Android<\\/a>\",\"4983\":\"Twitter for Android<\\/a>\",\"4984\":\"Twitter for Android<\\/a>\",\"4985\":\"Twitter for iPhone<\\/a>\",\"4986\":\"Twitter for Android<\\/a>\",\"4987\":\"Twitter for Android<\\/a>\",\"4988\":\"Twitter for iPhone<\\/a>\",\"4989\":\"Twitter for iPhone<\\/a>\",\"4990\":\"Twitter for Android<\\/a>\",\"4991\":\"Twitter for Android<\\/a>\",\"4992\":\"Twitter for Android<\\/a>\",\"4993\":\"Twitter for Android<\\/a>\",\"4994\":\"Twitter for Android<\\/a>\",\"4995\":\"Twitter for iPhone<\\/a>\",\"4996\":\"Twitter for iPhone<\\/a>\",\"4997\":\"Twitter for Android<\\/a>\",\"4998\":\"Twitter for iPhone<\\/a>\",\"4999\":\"Twitter for iPhone<\\/a>\"},\"in_reply_to_status_id\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":1.554387539e+18,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":1.556218783e+18,\"16\":null,\"17\":1.554482274e+18,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":1.556128657e+18,\"29\":null,\"30\":null,\"31\":null,\"32\":1.555560738e+18,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":1.555531862e+18,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":1.555607066e+18,\"64\":null,\"65\":1.555652412e+18,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":1.555589907e+18,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":1.555464609e+18,\"93\":null,\"94\":1.555500991e+18,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":1.555516335e+18,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":1.555489459e+18,\"112\":null,\"113\":null,\"114\":1.555461672e+18,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":1.555255703e+18,\"127\":1.555450119e+18,\"128\":null,\"129\":null,\"130\":1.555446118e+18,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":1.554879313e+18,\"153\":null,\"154\":null,\"155\":null,\"156\":1.555291002e+18,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":1.555351833e+18,\"164\":null,\"165\":1.555350068e+18,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":1.555293107e+18,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":1.554985804e+18,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":1.555234391e+18,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":1.538587135e+18,\"295\":null,\"296\":null,\"297\":1.555214433e+18,\"298\":null,\"299\":null,\"300\":1.555214433e+18,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":1.555197744e+18,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":1.554890712e+18,\"354\":null,\"355\":null,\"356\":1.555173588e+18,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":1.555141812e+18,\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":1.555153574e+18,\"380\":null,\"381\":1.555137841e+18,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":1.555143601e+18,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":1.555133401e+18,\"424\":null,\"425\":1.554470186e+18,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":1.555108766e+18,\"453\":1.51560224e+18,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":1.555084265e+18,\"475\":null,\"476\":1.555084651e+18,\"477\":1.555091237e+18,\"478\":1.555091443e+18,\"479\":1.555092329e+18,\"480\":null,\"481\":1.555082396e+18,\"482\":1.554874986e+18,\"483\":1.554832562e+18,\"484\":1.554580887e+18,\"485\":null,\"486\":1.55506358e+18,\"487\":1.555073546e+18,\"488\":1.554547445e+18,\"489\":1.554937823e+18,\"490\":1.554887903e+18,\"491\":1.554879942e+18,\"492\":1.555082194e+18,\"493\":1.555050053e+18,\"494\":1.555079065e+18,\"495\":null,\"496\":1.555079405e+18,\"497\":1.55508535e+18,\"498\":1.555081468e+18,\"499\":1.554795382e+18,\"500\":1.555083611e+18,\"501\":1.555075936e+18,\"502\":1.555074855e+18,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":1.55508449e+18,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":1.55504973e+18,\"524\":null,\"525\":1.555080316e+18,\"526\":null,\"527\":1.555078578e+18,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":1.555072878e+18,\"535\":1.555062274e+18,\"536\":1.555072854e+18,\"537\":null,\"538\":1.555072874e+18,\"539\":1.55490427e+18,\"540\":1.555072779e+18,\"541\":1.555072781e+18,\"542\":null,\"543\":null,\"544\":1.555071389e+18,\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":1.555024173e+18,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":1.552785365e+18,\"581\":1.554920338e+18,\"582\":null,\"583\":null,\"584\":null,\"585\":1.554947155e+18,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":1.5549145e+18,\"598\":null,\"599\":null,\"600\":null,\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":1.554204666e+18,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":1.554881617e+18,\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":null,\"669\":1.554880833e+18,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":1.554876882e+18,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":1.554781665e+18,\"692\":null,\"693\":null,\"694\":null,\"695\":1.554866392e+18,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":1.554838833e+18,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":1.554575731e+18,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":1.554615095e+18,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":1.554827383e+18,\"765\":null,\"766\":1.554824378e+18,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":1.554798809e+18,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":1.554798798e+18,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":1.554793115e+18,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":1.554787203e+18,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":1.554787544e+18,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":1.554780532e+18,\"900\":1.554772032e+18,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":1.554494139e+18,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":1.554771124e+18,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":1.554154952e+18,\"957\":null,\"958\":null,\"959\":null,\"960\":1.554599682e+18,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":1.55474997e+18,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":1.554747348e+18,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":1.554738855e+18,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":1.554722825e+18,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":1.554710618e+18,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":1.554691798e+18,\"1084\":1.552331924e+18,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":1.554704107e+18,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":1.554572521e+18,\"1097\":1.554468435e+18,\"1098\":1.554366254e+18,\"1099\":1.554496426e+18,\"1100\":1.554416822e+18,\"1101\":null,\"1102\":null,\"1103\":1.554470138e+18,\"1104\":1.554556444e+18,\"1105\":1.55455948e+18,\"1106\":1.554446479e+18,\"1107\":1.554430836e+18,\"1108\":1.55442207e+18,\"1109\":1.554681937e+18,\"1110\":1.554627562e+18,\"1111\":null,\"1112\":1.554468666e+18,\"1113\":null,\"1114\":null,\"1115\":1.55457216e+18,\"1116\":1.554425235e+18,\"1117\":1.554533332e+18,\"1118\":1.554108418e+18,\"1119\":1.554575731e+18,\"1120\":null,\"1121\":1.511441794e+18,\"1122\":1.554688244e+18,\"1123\":1.542846887e+18,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":1.554605971e+18,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":1.554584595e+18,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":1.554580415e+18,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":1.554578626e+18,\"1211\":null,\"1212\":null,\"1213\":1.554495852e+18,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":1.554497553e+18,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":1.554496273e+18,\"1239\":1.554569682e+18,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":1.554505862e+18,\"1246\":null,\"1247\":null,\"1248\":1.554566709e+18,\"1249\":1.554573378e+18,\"1250\":1.554433817e+18,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":1.554273558e+18,\"1258\":1.554542552e+18,\"1259\":null,\"1260\":1.554404759e+18,\"1261\":null,\"1262\":1.554567009e+18,\"1263\":null,\"1264\":null,\"1265\":1.55453389e+18,\"1266\":1.554482274e+18,\"1267\":null,\"1268\":null,\"1269\":1.554554749e+18,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":1.554547819e+18,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":1.554526837e+18,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":1.554546749e+18,\"1334\":1.554515258e+18,\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":1.554516656e+18,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":1.554512859e+18,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":1.554454484e+18,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":1.554486954e+18,\"1464\":null,\"1465\":1.554486954e+18,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":1.554496903e+18,\"1477\":null,\"1478\":1.554498678e+18,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":null,\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":1.554488043e+18,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":1.554489348e+18,\"1508\":null,\"1509\":null,\"1510\":1.554486748e+18,\"1511\":null,\"1512\":null,\"1513\":1.554487789e+18,\"1514\":null,\"1515\":1.5544769e+18,\"1516\":null,\"1517\":null,\"1518\":1.55448749e+18,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":1.554468447e+18,\"1526\":1.554487525e+18,\"1527\":1.554468447e+18,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":1.554483943e+18,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":1.554482288e+18,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":1.554479983e+18,\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":1.554107449e+18,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":1.554471293e+18,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":1.554445882e+18,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":1.554312904e+18,\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":1.554423719e+18,\"1751\":null,\"1752\":1.554426448e+18,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":1.55441449e+18,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":1.55438485e+18,\"1785\":null,\"1786\":null,\"1787\":1.553443781e+18,\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":1.554407987e+18,\"1795\":1.554407941e+18,\"1796\":1.554385858e+18,\"1797\":null,\"1798\":null,\"1799\":1.55440473e+18,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":1.554405549e+18,\"1805\":1.554257955e+18,\"1806\":1.554310117e+18,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":1.554146338e+18,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":1.554219427e+18,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":1.553828381e+18,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":1.554166224e+18,\"1917\":null,\"1918\":1.554165472e+18,\"1919\":null,\"1920\":1.554165257e+18,\"1921\":1.554164871e+18,\"1922\":1.55415407e+18,\"1923\":null,\"1924\":1.554163702e+18,\"1925\":null,\"1926\":null,\"1927\":1.554162711e+18,\"1928\":1.5541471e+18,\"1929\":null,\"1930\":1.554149968e+18,\"1931\":1.554149998e+18,\"1932\":1.554151559e+18,\"1933\":null,\"1934\":1.554153404e+18,\"1935\":1.554154305e+18,\"1936\":1.554154366e+18,\"1937\":1.55415897e+18,\"1938\":1.554162106e+18,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":1.554159396e+18,\"1945\":1.554158939e+18,\"1946\":1.554158149e+18,\"1947\":null,\"1948\":1.554159322e+18,\"1949\":1.554158682e+18,\"1950\":1.554157801e+18,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":1.554157642e+18,\"1957\":1.55415762e+18,\"1958\":1.554157467e+18,\"1959\":1.554157418e+18,\"1960\":1.554156565e+18,\"1961\":null,\"1962\":1.554156345e+18,\"1963\":1.554155856e+18,\"1964\":1.554155981e+18,\"1965\":1.554155705e+18,\"1966\":1.554155704e+18,\"1967\":1.554155703e+18,\"1968\":1.554155494e+18,\"1969\":1.554153407e+18,\"1970\":null,\"1971\":1.554155381e+18,\"1972\":1.554154995e+18,\"1973\":1.554154984e+18,\"1974\":1.554154858e+18,\"1975\":1.554154827e+18,\"1976\":1.554154569e+18,\"1977\":null,\"1978\":1.554154477e+18,\"1979\":1.55414835e+18,\"1980\":1.554153888e+18,\"1981\":1.55415401e+18,\"1982\":1.554153764e+18,\"1983\":1.554153755e+18,\"1984\":1.554153675e+18,\"1985\":1.554153482e+18,\"1986\":1.554152844e+18,\"1987\":1.554152868e+18,\"1988\":1.554152877e+18,\"1989\":1.554153134e+18,\"1990\":null,\"1991\":1.554152468e+18,\"1992\":1.55415225e+18,\"1993\":1.554152478e+18,\"1994\":1.554152262e+18,\"1995\":1.554152719e+18,\"1996\":1.554151989e+18,\"1997\":1.554151816e+18,\"1998\":1.554151745e+18,\"1999\":1.554151497e+18,\"2000\":1.554151434e+18,\"2001\":1.554151286e+18,\"2002\":1.554151036e+18,\"2003\":1.554151235e+18,\"2004\":1.554150953e+18,\"2005\":1.554150619e+18,\"2006\":1.554150578e+18,\"2007\":1.55415052e+18,\"2008\":1.55415053e+18,\"2009\":null,\"2010\":1.554150434e+18,\"2011\":1.554150282e+18,\"2012\":1.554150173e+18,\"2013\":1.554149877e+18,\"2014\":1.554148808e+18,\"2015\":1.554148248e+18,\"2016\":null,\"2017\":null,\"2018\":1.554146939e+18,\"2019\":1.5541462e+18,\"2020\":1.554131962e+18,\"2021\":1.554143991e+18,\"2022\":null,\"2023\":1.554145249e+18,\"2024\":1.554145252e+18,\"2025\":1.554142354e+18,\"2026\":1.55414334e+18,\"2027\":1.554143624e+18,\"2028\":1.554018285e+18,\"2029\":1.554066802e+18,\"2030\":1.554131e+18,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":1.554003032e+18,\"2035\":1.554143572e+18,\"2036\":1.55414371e+18,\"2037\":1.554143835e+18,\"2038\":1.554140636e+18,\"2039\":1.554140935e+18,\"2040\":1.554133755e+18,\"2041\":1.554138509e+18,\"2042\":1.554135607e+18,\"2043\":1.554134565e+18,\"2044\":1.554142321e+18,\"2045\":1.554141679e+18,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":1.554142677e+18,\"2050\":null,\"2051\":null,\"2052\":1.554093082e+18,\"2053\":1.554141188e+18,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":1.554126791e+18,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":1.554120684e+18,\"2068\":1.55412065e+18,\"2069\":1.554120646e+18,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":1.552680254e+18,\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":1.554090655e+18,\"2097\":1.554090776e+18,\"2098\":1.554090784e+18,\"2099\":1.554090792e+18,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":1.553746176e+18,\"2106\":null,\"2107\":1.553790267e+18,\"2108\":1.552738115e+18,\"2109\":1.554007126e+18,\"2110\":null,\"2111\":1.553727854e+18,\"2112\":1.55399549e+18,\"2113\":1.554026834e+18,\"2114\":1.554013812e+18,\"2115\":1.553798511e+18,\"2116\":1.553935065e+18,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":1.554075996e+18,\"2123\":1.554075958e+18,\"2124\":1.554075635e+18,\"2125\":1.55407561e+18,\"2126\":1.554075296e+18,\"2127\":1.554075204e+18,\"2128\":1.554075173e+18,\"2129\":1.554074744e+18,\"2130\":null,\"2131\":1.55407455e+18,\"2132\":1.55407434e+18,\"2133\":null,\"2134\":1.554074028e+18,\"2135\":null,\"2136\":1.55407358e+18,\"2137\":1.554073367e+18,\"2138\":1.554072725e+18,\"2139\":1.554072715e+18,\"2140\":1.554072778e+18,\"2141\":1.554072835e+18,\"2142\":1.554072949e+18,\"2143\":1.554073004e+18,\"2144\":1.554073011e+18,\"2145\":null,\"2146\":1.554072715e+18,\"2147\":1.554072652e+18,\"2148\":1.554072647e+18,\"2149\":1.55407256e+18,\"2150\":null,\"2151\":1.554071612e+18,\"2152\":1.554065908e+18,\"2153\":1.55407146e+18,\"2154\":1.554070707e+18,\"2155\":1.554070712e+18,\"2156\":1.554070849e+18,\"2157\":1.554069485e+18,\"2158\":1.554069486e+18,\"2159\":1.554069489e+18,\"2160\":1.554069505e+18,\"2161\":1.554069527e+18,\"2162\":1.55406957e+18,\"2163\":1.554069193e+18,\"2164\":1.554068978e+18,\"2165\":1.554069203e+18,\"2166\":1.554069236e+18,\"2167\":1.554069242e+18,\"2168\":1.554069302e+18,\"2169\":1.554067251e+18,\"2170\":1.554068086e+18,\"2171\":1.554068559e+18,\"2172\":1.554068548e+18,\"2173\":1.554068525e+18,\"2174\":1.55406842e+18,\"2175\":1.55406841e+18,\"2176\":1.554068403e+18,\"2177\":1.554068388e+18,\"2178\":null,\"2179\":1.5540666e+18,\"2180\":1.554066547e+18,\"2181\":1.554066528e+18,\"2182\":1.554066193e+18,\"2183\":1.554066122e+18,\"2184\":1.554065957e+18,\"2185\":1.554066017e+18,\"2186\":1.554061145e+18,\"2187\":1.554065501e+18,\"2188\":1.554065282e+18,\"2189\":1.554064893e+18,\"2190\":1.554064661e+18,\"2191\":1.554064114e+18,\"2192\":null,\"2193\":1.554059901e+18,\"2194\":null,\"2195\":1.554060923e+18,\"2196\":1.554060984e+18,\"2197\":1.554060989e+18,\"2198\":1.554060997e+18,\"2199\":1.554056358e+18,\"2200\":1.55405561e+18,\"2201\":1.554047077e+18,\"2202\":1.554055603e+18,\"2203\":null,\"2204\":1.553755567e+18,\"2205\":1.55403819e+18,\"2206\":1.554026435e+18,\"2207\":1.55405937e+18,\"2208\":1.554052991e+18,\"2209\":1.554059113e+18,\"2210\":1.554022951e+18,\"2211\":1.554022892e+18,\"2212\":1.554055603e+18,\"2213\":1.554055609e+18,\"2214\":1.554035528e+18,\"2215\":1.554059377e+18,\"2216\":null,\"2217\":1.554050981e+18,\"2218\":1.554049025e+18,\"2219\":null,\"2220\":null,\"2221\":1.553855033e+18,\"2222\":null,\"2223\":1.554043577e+18,\"2224\":1.554031375e+18,\"2225\":1.554043078e+18,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":1.554030667e+18,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":1.554010577e+18,\"2239\":1.554007278e+18,\"2240\":1.554007315e+18,\"2241\":1.554007327e+18,\"2242\":1.553968768e+18,\"2243\":1.554006519e+18,\"2244\":1.554001726e+18,\"2245\":1.553999547e+18,\"2246\":1.553998994e+18,\"2247\":1.553999002e+18,\"2248\":1.55399902e+18,\"2249\":1.553999021e+18,\"2250\":1.553999033e+18,\"2251\":1.553998697e+18,\"2252\":1.553997768e+18,\"2253\":1.553997768e+18,\"2254\":1.553997792e+18,\"2255\":1.553997802e+18,\"2256\":1.553995742e+18,\"2257\":1.553995986e+18,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":1.553985389e+18,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":1.553952409e+18,\"2269\":1.553952481e+18,\"2270\":1.553917353e+18,\"2271\":1.553947277e+18,\"2272\":1.553947401e+18,\"2273\":1.553948353e+18,\"2274\":1.553951107e+18,\"2275\":1.553949379e+18,\"2276\":1.553943697e+18,\"2277\":1.553940673e+18,\"2278\":1.553932105e+18,\"2279\":1.553932229e+18,\"2280\":1.553932362e+18,\"2281\":1.553932735e+18,\"2282\":1.553934541e+18,\"2283\":1.553935958e+18,\"2284\":1.553935865e+18,\"2285\":1.553908375e+18,\"2286\":1.553902801e+18,\"2287\":1.553803918e+18,\"2288\":1.55390996e+18,\"2289\":1.553908637e+18,\"2290\":1.553908373e+18,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":1.55376858e+18,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":1.55373869e+18,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":1.55372482e+18,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":1.553716348e+18,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":1.553712233e+18,\"2323\":null,\"2324\":1.553704592e+18,\"2325\":1.553712474e+18,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":1.553694476e+18,\"2337\":1.553693703e+18,\"2338\":1.553684394e+18,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":1.553688686e+18,\"2343\":null,\"2344\":null,\"2345\":1.553620792e+18,\"2346\":null,\"2347\":1.553687417e+18,\"2348\":1.553687653e+18,\"2349\":1.553687331e+18,\"2350\":null,\"2351\":null,\"2352\":1.553687069e+18,\"2353\":null,\"2354\":1.553685703e+18,\"2355\":1.553685694e+18,\"2356\":1.553684615e+18,\"2357\":1.553685e+18,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":1.553404298e+18,\"2398\":null,\"2399\":1.553620792e+18,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":1.553624781e+18,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":1.553609708e+18,\"2411\":1.553609432e+18,\"2412\":1.553609414e+18,\"2413\":1.553608897e+18,\"2414\":1.553608896e+18,\"2415\":1.553608897e+18,\"2416\":1.55360749e+18,\"2417\":1.553606386e+18,\"2418\":1.553605468e+18,\"2419\":1.553605396e+18,\"2420\":1.553605265e+18,\"2421\":1.553603887e+18,\"2422\":1.553599713e+18,\"2423\":1.553597283e+18,\"2424\":1.553603469e+18,\"2425\":1.553587056e+18,\"2426\":1.553599942e+18,\"2427\":1.553593085e+18,\"2428\":1.553593089e+18,\"2429\":1.55359309e+18,\"2430\":1.553593093e+18,\"2431\":1.553593095e+18,\"2432\":1.553593081e+18,\"2433\":1.553599868e+18,\"2434\":1.553599691e+18,\"2435\":1.553599693e+18,\"2436\":1.553599689e+18,\"2437\":1.553599407e+18,\"2438\":1.553597774e+18,\"2439\":1.553597742e+18,\"2440\":null,\"2441\":1.553597608e+18,\"2442\":1.553596959e+18,\"2443\":1.553596314e+18,\"2444\":1.553595211e+18,\"2445\":1.553595486e+18,\"2446\":1.553592218e+18,\"2447\":1.55333414e+18,\"2448\":1.553540419e+18,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":1.553559012e+18,\"2455\":1.553545921e+18,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":1.553470461e+18,\"2464\":1.55347048e+18,\"2465\":1.553470485e+18,\"2466\":1.553470485e+18,\"2467\":1.553470486e+18,\"2468\":1.553470487e+18,\"2469\":1.55347049e+18,\"2470\":1.553470497e+18,\"2471\":1.553470511e+18,\"2472\":1.553406464e+18,\"2473\":1.55347052e+18,\"2474\":1.553470526e+18,\"2475\":1.553470546e+18,\"2476\":1.553470372e+18,\"2477\":1.553470278e+18,\"2478\":1.553468026e+18,\"2479\":1.553469249e+18,\"2480\":1.553469245e+18,\"2481\":1.553469253e+18,\"2482\":1.553469296e+18,\"2483\":1.553469368e+18,\"2484\":1.5534694e+18,\"2485\":1.553469464e+18,\"2486\":1.553469428e+18,\"2487\":1.553440288e+18,\"2488\":1.553467991e+18,\"2489\":1.553468628e+18,\"2490\":1.553468137e+18,\"2491\":1.553467413e+18,\"2492\":1.553467404e+18,\"2493\":1.553466961e+18,\"2494\":1.553466978e+18,\"2495\":1.553466847e+18,\"2496\":1.553466809e+18,\"2497\":1.553466458e+18,\"2498\":1.553466479e+18,\"2499\":1.553466085e+18,\"2500\":1.553466057e+18,\"2501\":1.553466052e+18,\"2502\":1.553465914e+18,\"2503\":1.553465909e+18,\"2504\":1.553465896e+18,\"2505\":1.553465892e+18,\"2506\":1.553462989e+18,\"2507\":1.553465805e+18,\"2508\":1.553465434e+18,\"2509\":1.553465451e+18,\"2510\":1.553442422e+18,\"2511\":1.553465478e+18,\"2512\":1.553465487e+18,\"2513\":1.553465487e+18,\"2514\":1.553392185e+18,\"2515\":1.553465182e+18,\"2516\":1.553465209e+18,\"2517\":1.553464881e+18,\"2518\":1.553464572e+18,\"2519\":1.553464903e+18,\"2520\":1.55346492e+18,\"2521\":1.553464924e+18,\"2522\":1.553464661e+18,\"2523\":1.553464686e+18,\"2524\":1.553464549e+18,\"2525\":1.553464548e+18,\"2526\":1.55346425e+18,\"2527\":1.553464295e+18,\"2528\":1.553463894e+18,\"2529\":1.55346369e+18,\"2530\":1.553463207e+18,\"2531\":1.553463212e+18,\"2532\":1.553040195e+18,\"2533\":1.55344406e+18,\"2534\":1.553462686e+18,\"2535\":null,\"2536\":1.553462404e+18,\"2537\":1.553435269e+18,\"2538\":1.55345993e+18,\"2539\":1.553461514e+18,\"2540\":1.553461486e+18,\"2541\":1.553460922e+18,\"2542\":1.553459455e+18,\"2543\":1.553328141e+18,\"2544\":1.552647797e+18,\"2545\":1.553423355e+18,\"2546\":null,\"2547\":1.553459455e+18,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":1.55338209e+18,\"2553\":1.55338125e+18,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":1.553087381e+18,\"2559\":1.553190979e+18,\"2560\":1.553190979e+18,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":1.553108679e+18,\"2566\":1.55310828e+18,\"2567\":1.553106832e+18,\"2568\":1.553106197e+18,\"2569\":1.553107663e+18,\"2570\":1.553105529e+18,\"2571\":1.55310498e+18,\"2572\":1.553104359e+18,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":null,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":null,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":1.554940867e+18,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":1.55486923e+18,\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":1.554496903e+18,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":1.554543201e+18,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":1.554727592e+18,\"2702\":1.554694314e+18,\"2703\":1.554721833e+18,\"2704\":1.55472183e+18,\"2705\":1.554721826e+18,\"2706\":1.554721823e+18,\"2707\":null,\"2708\":1.55454672e+18,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":1.554691553e+18,\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":1.554485633e+18,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":1.554523489e+18,\"2749\":null,\"2750\":1.554496903e+18,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":1.554482274e+18,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":1.554435493e+18,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":null,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":1.554076384e+18,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":1.553445869e+18,\"2838\":null,\"2839\":1.553620792e+18,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":1.556128657e+18,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":1.555607066e+18,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":1.555255703e+18,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":1.554879313e+18,\"2906\":1.555291002e+18,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":1.554985804e+18,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":1.555197744e+18,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":1.554890712e+18,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":1.555137841e+18,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":1.55508449e+18,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":1.555000818e+18,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":1.552785365e+18,\"3060\":1.554920338e+18,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":1.5549145e+18,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":1.554618396e+18,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":1.554880833e+18,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":1.554876882e+18,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":1.55480529e+18,\"3100\":null,\"3101\":1.554781665e+18,\"3102\":1.554806412e+18,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":1.554575731e+18,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":1.554615095e+18,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":1.554798809e+18,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":1.554798798e+18,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":1.554793115e+18,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":1.554772032e+18,\"3175\":null,\"3176\":1.554494139e+18,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":1.554771124e+18,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":1.554154952e+18,\"3191\":null,\"3192\":1.554599682e+18,\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":1.55471023e+18,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":1.554710618e+18,\"3245\":null,\"3246\":null,\"3247\":1.554691798e+18,\"3248\":1.552331924e+18,\"3249\":null,\"3250\":1.554704107e+18,\"3251\":1.55470249e+18,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":1.554572521e+18,\"3259\":1.554468435e+18,\"3260\":1.554366254e+18,\"3261\":1.554496426e+18,\"3262\":1.554416822e+18,\"3263\":1.554693593e+18,\"3264\":1.554470138e+18,\"3265\":1.554556444e+18,\"3266\":1.55455948e+18,\"3267\":1.554446479e+18,\"3268\":1.554430836e+18,\"3269\":1.55442207e+18,\"3270\":1.554681937e+18,\"3271\":1.554468666e+18,\"3272\":null,\"3273\":null,\"3274\":1.55457216e+18,\"3275\":1.554425235e+18,\"3276\":1.554533332e+18,\"3277\":1.554108418e+18,\"3278\":1.554575731e+18,\"3279\":1.511441794e+18,\"3280\":1.554688244e+18,\"3281\":1.542846887e+18,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":1.554663687e+18,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":1.554584595e+18,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":1.554578626e+18,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":1.554273558e+18,\"3326\":1.554542552e+18,\"3327\":1.554404759e+18,\"3328\":1.554567009e+18,\"3329\":null,\"3330\":null,\"3331\":1.55453389e+18,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":1.554547819e+18,\"3347\":null,\"3348\":1.554526837e+18,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":1.554515258e+18,\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":1.554454484e+18,\"3401\":null,\"3402\":null,\"3403\":1.554323875e+18,\"3404\":1.554501685e+18,\"3405\":null,\"3406\":null,\"3407\":1.554496903e+18,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":1.554479983e+18,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":1.554471293e+18,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":1.554445882e+18,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":1.554312904e+18,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":1.554257955e+18,\"3495\":1.554310117e+18,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":1.553746176e+18,\"3560\":1.553790267e+18,\"3561\":1.552738115e+18,\"3562\":1.554007126e+18,\"3563\":1.553727854e+18,\"3564\":1.55399549e+18,\"3565\":1.554026834e+18,\"3566\":1.554013812e+18,\"3567\":1.553798511e+18,\"3568\":1.553935065e+18,\"3569\":null,\"3570\":1.55407147e+18,\"3571\":null,\"3572\":null,\"3573\":1.554068978e+18,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":1.553985389e+18,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":1.55373869e+18,\"3591\":null,\"3592\":1.55372482e+18,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":1.553238051e+18,\"3625\":1.553241644e+18,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":1.556218783e+18,\"3630\":null,\"3631\":1.554482274e+18,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":1.556128657e+18,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":1.555560738e+18,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":1.555531862e+18,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":1.555607066e+18,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":1.555516335e+18,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":1.555489459e+18,\"3717\":null,\"3718\":null,\"3719\":1.555461672e+18,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":1.555450119e+18,\"3730\":null,\"3731\":1.555446118e+18,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":1.554879313e+18,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":1.555291002e+18,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":1.555351833e+18,\"3765\":null,\"3766\":1.555350068e+18,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":1.555293107e+18,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":1.554985804e+18,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":1.555234391e+18,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":1.538587135e+18,\"3886\":null,\"3887\":1.555214433e+18,\"3888\":null,\"3889\":null,\"3890\":1.555214433e+18,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":1.555197744e+18,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":1.554890712e+18,\"3940\":null,\"3941\":null,\"3942\":1.555173588e+18,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":1.555141812e+18,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":1.555153574e+18,\"3963\":null,\"3964\":1.555137841e+18,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":1.555143601e+18,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":1.555133401e+18,\"4004\":1.554470186e+18,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":1.555108766e+18,\"4031\":1.51560224e+18,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":1.555084265e+18,\"4051\":null,\"4052\":1.555084651e+18,\"4053\":1.555091237e+18,\"4054\":1.555091443e+18,\"4055\":1.555092329e+18,\"4056\":null,\"4057\":1.555082396e+18,\"4058\":1.554874986e+18,\"4059\":1.554832562e+18,\"4060\":1.554580887e+18,\"4061\":null,\"4062\":1.55506358e+18,\"4063\":1.555073546e+18,\"4064\":1.554547445e+18,\"4065\":1.554937823e+18,\"4066\":1.554887903e+18,\"4067\":1.554879942e+18,\"4068\":1.555082194e+18,\"4069\":1.555050053e+18,\"4070\":1.555079065e+18,\"4071\":null,\"4072\":1.555079405e+18,\"4073\":1.55508535e+18,\"4074\":1.555081468e+18,\"4075\":1.554795382e+18,\"4076\":1.555083611e+18,\"4077\":1.555075936e+18,\"4078\":1.555074855e+18,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":1.55508449e+18,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":1.55504973e+18,\"4100\":null,\"4101\":1.555080316e+18,\"4102\":null,\"4103\":1.555078578e+18,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":1.555072878e+18,\"4111\":1.555062274e+18,\"4112\":1.555072854e+18,\"4113\":null,\"4114\":1.555072874e+18,\"4115\":1.55490427e+18,\"4116\":1.555072779e+18,\"4117\":1.555072781e+18,\"4118\":null,\"4119\":null,\"4120\":1.555071389e+18,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":1.555024173e+18,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":1.552785365e+18,\"4154\":1.554920338e+18,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":1.554947155e+18,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":1.5549145e+18,\"4170\":null,\"4171\":null,\"4172\":null,\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":1.554204666e+18,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":1.554881617e+18,\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":1.554880833e+18,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":1.554876882e+18,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":1.554781665e+18,\"4257\":null,\"4258\":1.554866392e+18,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":1.554838833e+18,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":1.554615095e+18,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":1.554827383e+18,\"4322\":null,\"4323\":1.554824378e+18,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":1.554798809e+18,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":1.554798798e+18,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":1.554793115e+18,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":1.554787203e+18,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":1.554787544e+18,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":1.554772032e+18,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":1.554494139e+18,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":1.554771124e+18,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":1.554154952e+18,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":1.55474997e+18,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":1.554747348e+18,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":1.554738855e+18,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":1.554722825e+18,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":1.554691798e+18,\"4618\":1.552331924e+18,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":1.554704107e+18,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":1.554572521e+18,\"4633\":1.554468435e+18,\"4634\":1.554366254e+18,\"4635\":1.554496426e+18,\"4636\":1.554416822e+18,\"4637\":null,\"4638\":1.554470138e+18,\"4639\":1.554556444e+18,\"4640\":1.55455948e+18,\"4641\":1.554446479e+18,\"4642\":1.554430836e+18,\"4643\":1.55442207e+18,\"4644\":1.554681937e+18,\"4645\":1.554627562e+18,\"4646\":null,\"4647\":1.554468666e+18,\"4648\":null,\"4649\":null,\"4650\":1.55457216e+18,\"4651\":1.554425235e+18,\"4652\":1.554533332e+18,\"4653\":1.554108418e+18,\"4654\":1.554575731e+18,\"4655\":null,\"4656\":1.511441794e+18,\"4657\":1.554688244e+18,\"4658\":1.542846887e+18,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":1.554605971e+18,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":1.554584595e+18,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":1.554580415e+18,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":1.554495852e+18,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":1.554497553e+18,\"4748\":1.554496273e+18,\"4749\":1.554569682e+18,\"4750\":null,\"4751\":1.554505862e+18,\"4752\":null,\"4753\":null,\"4754\":1.554566709e+18,\"4755\":1.554573378e+18,\"4756\":1.554433817e+18,\"4757\":null,\"4758\":null,\"4759\":1.554273558e+18,\"4760\":1.554542552e+18,\"4761\":null,\"4762\":1.554404759e+18,\"4763\":null,\"4764\":1.554567009e+18,\"4765\":null,\"4766\":null,\"4767\":1.55453389e+18,\"4768\":1.554482274e+18,\"4769\":null,\"4770\":null,\"4771\":1.554554749e+18,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":1.554546749e+18,\"4827\":1.554515258e+18,\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":1.554516656e+18,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":1.554512859e+18,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":1.554454484e+18,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":1.554486954e+18,\"4941\":1.554486954e+18,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":1.554496903e+18,\"4949\":null,\"4950\":1.554498678e+18,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":1.554488043e+18,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":1.554489348e+18,\"4975\":null,\"4976\":null,\"4977\":1.554486748e+18,\"4978\":null,\"4979\":null,\"4980\":1.554487789e+18,\"4981\":null,\"4982\":1.5544769e+18,\"4983\":null,\"4984\":null,\"4985\":1.55448749e+18,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":1.554468447e+18,\"4993\":1.554487525e+18,\"4994\":1.554468447e+18,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"in_reply_to_status_id_str\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":1.554387539e+18,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":1.556218783e+18,\"16\":null,\"17\":1.554482274e+18,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":1.556128657e+18,\"29\":null,\"30\":null,\"31\":null,\"32\":1.555560738e+18,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":1.555531862e+18,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":1.555607066e+18,\"64\":null,\"65\":1.555652412e+18,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":1.555589907e+18,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":1.555464609e+18,\"93\":null,\"94\":1.555500991e+18,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":1.555516335e+18,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":1.555489459e+18,\"112\":null,\"113\":null,\"114\":1.555461672e+18,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":1.555255703e+18,\"127\":1.555450119e+18,\"128\":null,\"129\":null,\"130\":1.555446118e+18,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":1.554879313e+18,\"153\":null,\"154\":null,\"155\":null,\"156\":1.555291002e+18,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":1.555351833e+18,\"164\":null,\"165\":1.555350068e+18,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":1.555293107e+18,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":1.554985804e+18,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":1.555234391e+18,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":1.538587135e+18,\"295\":null,\"296\":null,\"297\":1.555214433e+18,\"298\":null,\"299\":null,\"300\":1.555214433e+18,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":1.555197744e+18,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":1.554890712e+18,\"354\":null,\"355\":null,\"356\":1.555173588e+18,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":1.555141812e+18,\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":1.555153574e+18,\"380\":null,\"381\":1.555137841e+18,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":1.555143601e+18,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":1.555133401e+18,\"424\":null,\"425\":1.554470186e+18,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":1.555108766e+18,\"453\":1.51560224e+18,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":1.555084265e+18,\"475\":null,\"476\":1.555084651e+18,\"477\":1.555091237e+18,\"478\":1.555091443e+18,\"479\":1.555092329e+18,\"480\":null,\"481\":1.555082396e+18,\"482\":1.554874986e+18,\"483\":1.554832562e+18,\"484\":1.554580887e+18,\"485\":null,\"486\":1.55506358e+18,\"487\":1.555073546e+18,\"488\":1.554547445e+18,\"489\":1.554937823e+18,\"490\":1.554887903e+18,\"491\":1.554879942e+18,\"492\":1.555082194e+18,\"493\":1.555050053e+18,\"494\":1.555079065e+18,\"495\":null,\"496\":1.555079405e+18,\"497\":1.55508535e+18,\"498\":1.555081468e+18,\"499\":1.554795382e+18,\"500\":1.555083611e+18,\"501\":1.555075936e+18,\"502\":1.555074855e+18,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":1.55508449e+18,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":1.55504973e+18,\"524\":null,\"525\":1.555080316e+18,\"526\":null,\"527\":1.555078578e+18,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":1.555072878e+18,\"535\":1.555062274e+18,\"536\":1.555072854e+18,\"537\":null,\"538\":1.555072874e+18,\"539\":1.55490427e+18,\"540\":1.555072779e+18,\"541\":1.555072781e+18,\"542\":null,\"543\":null,\"544\":1.555071389e+18,\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":1.555024173e+18,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":1.552785365e+18,\"581\":1.554920338e+18,\"582\":null,\"583\":null,\"584\":null,\"585\":1.554947155e+18,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":1.5549145e+18,\"598\":null,\"599\":null,\"600\":null,\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":1.554204666e+18,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":1.554881617e+18,\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":null,\"669\":1.554880833e+18,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":1.554876882e+18,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":1.554781665e+18,\"692\":null,\"693\":null,\"694\":null,\"695\":1.554866392e+18,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":1.554838833e+18,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":1.554575731e+18,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":1.554615095e+18,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":1.554827383e+18,\"765\":null,\"766\":1.554824378e+18,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":1.554798809e+18,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":1.554798798e+18,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":1.554793115e+18,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":1.554787203e+18,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":1.554787544e+18,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":1.554780532e+18,\"900\":1.554772032e+18,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":1.554494139e+18,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":1.554771124e+18,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":1.554154952e+18,\"957\":null,\"958\":null,\"959\":null,\"960\":1.554599682e+18,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":1.55474997e+18,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":1.554747348e+18,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":1.554738855e+18,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":1.554722825e+18,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":1.554710618e+18,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":1.554691798e+18,\"1084\":1.552331924e+18,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":1.554704107e+18,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":1.554572521e+18,\"1097\":1.554468435e+18,\"1098\":1.554366254e+18,\"1099\":1.554496426e+18,\"1100\":1.554416822e+18,\"1101\":null,\"1102\":null,\"1103\":1.554470138e+18,\"1104\":1.554556444e+18,\"1105\":1.55455948e+18,\"1106\":1.554446479e+18,\"1107\":1.554430836e+18,\"1108\":1.55442207e+18,\"1109\":1.554681937e+18,\"1110\":1.554627562e+18,\"1111\":null,\"1112\":1.554468666e+18,\"1113\":null,\"1114\":null,\"1115\":1.55457216e+18,\"1116\":1.554425235e+18,\"1117\":1.554533332e+18,\"1118\":1.554108418e+18,\"1119\":1.554575731e+18,\"1120\":null,\"1121\":1.511441794e+18,\"1122\":1.554688244e+18,\"1123\":1.542846887e+18,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":1.554605971e+18,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":1.554584595e+18,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":1.554580415e+18,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":1.554578626e+18,\"1211\":null,\"1212\":null,\"1213\":1.554495852e+18,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":1.554497553e+18,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":1.554496273e+18,\"1239\":1.554569682e+18,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":1.554505862e+18,\"1246\":null,\"1247\":null,\"1248\":1.554566709e+18,\"1249\":1.554573378e+18,\"1250\":1.554433817e+18,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":1.554273558e+18,\"1258\":1.554542552e+18,\"1259\":null,\"1260\":1.554404759e+18,\"1261\":null,\"1262\":1.554567009e+18,\"1263\":null,\"1264\":null,\"1265\":1.55453389e+18,\"1266\":1.554482274e+18,\"1267\":null,\"1268\":null,\"1269\":1.554554749e+18,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":1.554547819e+18,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":1.554526837e+18,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":1.554546749e+18,\"1334\":1.554515258e+18,\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":1.554516656e+18,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":1.554512859e+18,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":1.554454484e+18,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":1.554486954e+18,\"1464\":null,\"1465\":1.554486954e+18,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":1.554496903e+18,\"1477\":null,\"1478\":1.554498678e+18,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":null,\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":1.554488043e+18,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":1.554489348e+18,\"1508\":null,\"1509\":null,\"1510\":1.554486748e+18,\"1511\":null,\"1512\":null,\"1513\":1.554487789e+18,\"1514\":null,\"1515\":1.5544769e+18,\"1516\":null,\"1517\":null,\"1518\":1.55448749e+18,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":1.554468447e+18,\"1526\":1.554487525e+18,\"1527\":1.554468447e+18,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":1.554483943e+18,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":1.554482288e+18,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":1.554479983e+18,\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":1.554107449e+18,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":1.554471293e+18,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":1.554445882e+18,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":1.554312904e+18,\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":1.554423719e+18,\"1751\":null,\"1752\":1.554426448e+18,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":1.55441449e+18,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":1.55438485e+18,\"1785\":null,\"1786\":null,\"1787\":1.553443781e+18,\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":1.554407987e+18,\"1795\":1.554407941e+18,\"1796\":1.554385858e+18,\"1797\":null,\"1798\":null,\"1799\":1.55440473e+18,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":1.554405549e+18,\"1805\":1.554257955e+18,\"1806\":1.554310117e+18,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":1.554146338e+18,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":1.554219427e+18,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":1.553828381e+18,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":1.554166224e+18,\"1917\":null,\"1918\":1.554165472e+18,\"1919\":null,\"1920\":1.554165257e+18,\"1921\":1.554164871e+18,\"1922\":1.55415407e+18,\"1923\":null,\"1924\":1.554163702e+18,\"1925\":null,\"1926\":null,\"1927\":1.554162711e+18,\"1928\":1.5541471e+18,\"1929\":null,\"1930\":1.554149968e+18,\"1931\":1.554149998e+18,\"1932\":1.554151559e+18,\"1933\":null,\"1934\":1.554153404e+18,\"1935\":1.554154305e+18,\"1936\":1.554154366e+18,\"1937\":1.55415897e+18,\"1938\":1.554162106e+18,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":1.554159396e+18,\"1945\":1.554158939e+18,\"1946\":1.554158149e+18,\"1947\":null,\"1948\":1.554159322e+18,\"1949\":1.554158682e+18,\"1950\":1.554157801e+18,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":1.554157642e+18,\"1957\":1.55415762e+18,\"1958\":1.554157467e+18,\"1959\":1.554157418e+18,\"1960\":1.554156565e+18,\"1961\":null,\"1962\":1.554156345e+18,\"1963\":1.554155856e+18,\"1964\":1.554155981e+18,\"1965\":1.554155705e+18,\"1966\":1.554155704e+18,\"1967\":1.554155703e+18,\"1968\":1.554155494e+18,\"1969\":1.554153407e+18,\"1970\":null,\"1971\":1.554155381e+18,\"1972\":1.554154995e+18,\"1973\":1.554154984e+18,\"1974\":1.554154858e+18,\"1975\":1.554154827e+18,\"1976\":1.554154569e+18,\"1977\":null,\"1978\":1.554154477e+18,\"1979\":1.55414835e+18,\"1980\":1.554153888e+18,\"1981\":1.55415401e+18,\"1982\":1.554153764e+18,\"1983\":1.554153755e+18,\"1984\":1.554153675e+18,\"1985\":1.554153482e+18,\"1986\":1.554152844e+18,\"1987\":1.554152868e+18,\"1988\":1.554152877e+18,\"1989\":1.554153134e+18,\"1990\":null,\"1991\":1.554152468e+18,\"1992\":1.55415225e+18,\"1993\":1.554152478e+18,\"1994\":1.554152262e+18,\"1995\":1.554152719e+18,\"1996\":1.554151989e+18,\"1997\":1.554151816e+18,\"1998\":1.554151745e+18,\"1999\":1.554151497e+18,\"2000\":1.554151434e+18,\"2001\":1.554151286e+18,\"2002\":1.554151036e+18,\"2003\":1.554151235e+18,\"2004\":1.554150953e+18,\"2005\":1.554150619e+18,\"2006\":1.554150578e+18,\"2007\":1.55415052e+18,\"2008\":1.55415053e+18,\"2009\":null,\"2010\":1.554150434e+18,\"2011\":1.554150282e+18,\"2012\":1.554150173e+18,\"2013\":1.554149877e+18,\"2014\":1.554148808e+18,\"2015\":1.554148248e+18,\"2016\":null,\"2017\":null,\"2018\":1.554146939e+18,\"2019\":1.5541462e+18,\"2020\":1.554131962e+18,\"2021\":1.554143991e+18,\"2022\":null,\"2023\":1.554145249e+18,\"2024\":1.554145252e+18,\"2025\":1.554142354e+18,\"2026\":1.55414334e+18,\"2027\":1.554143624e+18,\"2028\":1.554018285e+18,\"2029\":1.554066802e+18,\"2030\":1.554131e+18,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":1.554003032e+18,\"2035\":1.554143572e+18,\"2036\":1.55414371e+18,\"2037\":1.554143835e+18,\"2038\":1.554140636e+18,\"2039\":1.554140935e+18,\"2040\":1.554133755e+18,\"2041\":1.554138509e+18,\"2042\":1.554135607e+18,\"2043\":1.554134565e+18,\"2044\":1.554142321e+18,\"2045\":1.554141679e+18,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":1.554142677e+18,\"2050\":null,\"2051\":null,\"2052\":1.554093082e+18,\"2053\":1.554141188e+18,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":1.554126791e+18,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":1.554120684e+18,\"2068\":1.55412065e+18,\"2069\":1.554120646e+18,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":1.552680254e+18,\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":1.554090655e+18,\"2097\":1.554090776e+18,\"2098\":1.554090784e+18,\"2099\":1.554090792e+18,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":1.553746176e+18,\"2106\":null,\"2107\":1.553790267e+18,\"2108\":1.552738115e+18,\"2109\":1.554007126e+18,\"2110\":null,\"2111\":1.553727854e+18,\"2112\":1.55399549e+18,\"2113\":1.554026834e+18,\"2114\":1.554013812e+18,\"2115\":1.553798511e+18,\"2116\":1.553935065e+18,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":1.554075996e+18,\"2123\":1.554075958e+18,\"2124\":1.554075635e+18,\"2125\":1.55407561e+18,\"2126\":1.554075296e+18,\"2127\":1.554075204e+18,\"2128\":1.554075173e+18,\"2129\":1.554074744e+18,\"2130\":null,\"2131\":1.55407455e+18,\"2132\":1.55407434e+18,\"2133\":null,\"2134\":1.554074028e+18,\"2135\":null,\"2136\":1.55407358e+18,\"2137\":1.554073367e+18,\"2138\":1.554072725e+18,\"2139\":1.554072715e+18,\"2140\":1.554072778e+18,\"2141\":1.554072835e+18,\"2142\":1.554072949e+18,\"2143\":1.554073004e+18,\"2144\":1.554073011e+18,\"2145\":null,\"2146\":1.554072715e+18,\"2147\":1.554072652e+18,\"2148\":1.554072647e+18,\"2149\":1.55407256e+18,\"2150\":null,\"2151\":1.554071612e+18,\"2152\":1.554065908e+18,\"2153\":1.55407146e+18,\"2154\":1.554070707e+18,\"2155\":1.554070712e+18,\"2156\":1.554070849e+18,\"2157\":1.554069485e+18,\"2158\":1.554069486e+18,\"2159\":1.554069489e+18,\"2160\":1.554069505e+18,\"2161\":1.554069527e+18,\"2162\":1.55406957e+18,\"2163\":1.554069193e+18,\"2164\":1.554068978e+18,\"2165\":1.554069203e+18,\"2166\":1.554069236e+18,\"2167\":1.554069242e+18,\"2168\":1.554069302e+18,\"2169\":1.554067251e+18,\"2170\":1.554068086e+18,\"2171\":1.554068559e+18,\"2172\":1.554068548e+18,\"2173\":1.554068525e+18,\"2174\":1.55406842e+18,\"2175\":1.55406841e+18,\"2176\":1.554068403e+18,\"2177\":1.554068388e+18,\"2178\":null,\"2179\":1.5540666e+18,\"2180\":1.554066547e+18,\"2181\":1.554066528e+18,\"2182\":1.554066193e+18,\"2183\":1.554066122e+18,\"2184\":1.554065957e+18,\"2185\":1.554066017e+18,\"2186\":1.554061145e+18,\"2187\":1.554065501e+18,\"2188\":1.554065282e+18,\"2189\":1.554064893e+18,\"2190\":1.554064661e+18,\"2191\":1.554064114e+18,\"2192\":null,\"2193\":1.554059901e+18,\"2194\":null,\"2195\":1.554060923e+18,\"2196\":1.554060984e+18,\"2197\":1.554060989e+18,\"2198\":1.554060997e+18,\"2199\":1.554056358e+18,\"2200\":1.55405561e+18,\"2201\":1.554047077e+18,\"2202\":1.554055603e+18,\"2203\":null,\"2204\":1.553755567e+18,\"2205\":1.55403819e+18,\"2206\":1.554026435e+18,\"2207\":1.55405937e+18,\"2208\":1.554052991e+18,\"2209\":1.554059113e+18,\"2210\":1.554022951e+18,\"2211\":1.554022892e+18,\"2212\":1.554055603e+18,\"2213\":1.554055609e+18,\"2214\":1.554035528e+18,\"2215\":1.554059377e+18,\"2216\":null,\"2217\":1.554050981e+18,\"2218\":1.554049025e+18,\"2219\":null,\"2220\":null,\"2221\":1.553855033e+18,\"2222\":null,\"2223\":1.554043577e+18,\"2224\":1.554031375e+18,\"2225\":1.554043078e+18,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":1.554030667e+18,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":1.554010577e+18,\"2239\":1.554007278e+18,\"2240\":1.554007315e+18,\"2241\":1.554007327e+18,\"2242\":1.553968768e+18,\"2243\":1.554006519e+18,\"2244\":1.554001726e+18,\"2245\":1.553999547e+18,\"2246\":1.553998994e+18,\"2247\":1.553999002e+18,\"2248\":1.55399902e+18,\"2249\":1.553999021e+18,\"2250\":1.553999033e+18,\"2251\":1.553998697e+18,\"2252\":1.553997768e+18,\"2253\":1.553997768e+18,\"2254\":1.553997792e+18,\"2255\":1.553997802e+18,\"2256\":1.553995742e+18,\"2257\":1.553995986e+18,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":1.553985389e+18,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":1.553952409e+18,\"2269\":1.553952481e+18,\"2270\":1.553917353e+18,\"2271\":1.553947277e+18,\"2272\":1.553947401e+18,\"2273\":1.553948353e+18,\"2274\":1.553951107e+18,\"2275\":1.553949379e+18,\"2276\":1.553943697e+18,\"2277\":1.553940673e+18,\"2278\":1.553932105e+18,\"2279\":1.553932229e+18,\"2280\":1.553932362e+18,\"2281\":1.553932735e+18,\"2282\":1.553934541e+18,\"2283\":1.553935958e+18,\"2284\":1.553935865e+18,\"2285\":1.553908375e+18,\"2286\":1.553902801e+18,\"2287\":1.553803918e+18,\"2288\":1.55390996e+18,\"2289\":1.553908637e+18,\"2290\":1.553908373e+18,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":1.55376858e+18,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":1.55373869e+18,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":1.55372482e+18,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":1.553716348e+18,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":1.553712233e+18,\"2323\":null,\"2324\":1.553704592e+18,\"2325\":1.553712474e+18,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":1.553694476e+18,\"2337\":1.553693703e+18,\"2338\":1.553684394e+18,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":1.553688686e+18,\"2343\":null,\"2344\":null,\"2345\":1.553620792e+18,\"2346\":null,\"2347\":1.553687417e+18,\"2348\":1.553687653e+18,\"2349\":1.553687331e+18,\"2350\":null,\"2351\":null,\"2352\":1.553687069e+18,\"2353\":null,\"2354\":1.553685703e+18,\"2355\":1.553685694e+18,\"2356\":1.553684615e+18,\"2357\":1.553685e+18,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":1.553404298e+18,\"2398\":null,\"2399\":1.553620792e+18,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":1.553624781e+18,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":1.553609708e+18,\"2411\":1.553609432e+18,\"2412\":1.553609414e+18,\"2413\":1.553608897e+18,\"2414\":1.553608896e+18,\"2415\":1.553608897e+18,\"2416\":1.55360749e+18,\"2417\":1.553606386e+18,\"2418\":1.553605468e+18,\"2419\":1.553605396e+18,\"2420\":1.553605265e+18,\"2421\":1.553603887e+18,\"2422\":1.553599713e+18,\"2423\":1.553597283e+18,\"2424\":1.553603469e+18,\"2425\":1.553587056e+18,\"2426\":1.553599942e+18,\"2427\":1.553593085e+18,\"2428\":1.553593089e+18,\"2429\":1.55359309e+18,\"2430\":1.553593093e+18,\"2431\":1.553593095e+18,\"2432\":1.553593081e+18,\"2433\":1.553599868e+18,\"2434\":1.553599691e+18,\"2435\":1.553599693e+18,\"2436\":1.553599689e+18,\"2437\":1.553599407e+18,\"2438\":1.553597774e+18,\"2439\":1.553597742e+18,\"2440\":null,\"2441\":1.553597608e+18,\"2442\":1.553596959e+18,\"2443\":1.553596314e+18,\"2444\":1.553595211e+18,\"2445\":1.553595486e+18,\"2446\":1.553592218e+18,\"2447\":1.55333414e+18,\"2448\":1.553540419e+18,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":1.553559012e+18,\"2455\":1.553545921e+18,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":1.553470461e+18,\"2464\":1.55347048e+18,\"2465\":1.553470485e+18,\"2466\":1.553470485e+18,\"2467\":1.553470486e+18,\"2468\":1.553470487e+18,\"2469\":1.55347049e+18,\"2470\":1.553470497e+18,\"2471\":1.553470511e+18,\"2472\":1.553406464e+18,\"2473\":1.55347052e+18,\"2474\":1.553470526e+18,\"2475\":1.553470546e+18,\"2476\":1.553470372e+18,\"2477\":1.553470278e+18,\"2478\":1.553468026e+18,\"2479\":1.553469249e+18,\"2480\":1.553469245e+18,\"2481\":1.553469253e+18,\"2482\":1.553469296e+18,\"2483\":1.553469368e+18,\"2484\":1.5534694e+18,\"2485\":1.553469464e+18,\"2486\":1.553469428e+18,\"2487\":1.553440288e+18,\"2488\":1.553467991e+18,\"2489\":1.553468628e+18,\"2490\":1.553468137e+18,\"2491\":1.553467413e+18,\"2492\":1.553467404e+18,\"2493\":1.553466961e+18,\"2494\":1.553466978e+18,\"2495\":1.553466847e+18,\"2496\":1.553466809e+18,\"2497\":1.553466458e+18,\"2498\":1.553466479e+18,\"2499\":1.553466085e+18,\"2500\":1.553466057e+18,\"2501\":1.553466052e+18,\"2502\":1.553465914e+18,\"2503\":1.553465909e+18,\"2504\":1.553465896e+18,\"2505\":1.553465892e+18,\"2506\":1.553462989e+18,\"2507\":1.553465805e+18,\"2508\":1.553465434e+18,\"2509\":1.553465451e+18,\"2510\":1.553442422e+18,\"2511\":1.553465478e+18,\"2512\":1.553465487e+18,\"2513\":1.553465487e+18,\"2514\":1.553392185e+18,\"2515\":1.553465182e+18,\"2516\":1.553465209e+18,\"2517\":1.553464881e+18,\"2518\":1.553464572e+18,\"2519\":1.553464903e+18,\"2520\":1.55346492e+18,\"2521\":1.553464924e+18,\"2522\":1.553464661e+18,\"2523\":1.553464686e+18,\"2524\":1.553464549e+18,\"2525\":1.553464548e+18,\"2526\":1.55346425e+18,\"2527\":1.553464295e+18,\"2528\":1.553463894e+18,\"2529\":1.55346369e+18,\"2530\":1.553463207e+18,\"2531\":1.553463212e+18,\"2532\":1.553040195e+18,\"2533\":1.55344406e+18,\"2534\":1.553462686e+18,\"2535\":null,\"2536\":1.553462404e+18,\"2537\":1.553435269e+18,\"2538\":1.55345993e+18,\"2539\":1.553461514e+18,\"2540\":1.553461486e+18,\"2541\":1.553460922e+18,\"2542\":1.553459455e+18,\"2543\":1.553328141e+18,\"2544\":1.552647797e+18,\"2545\":1.553423355e+18,\"2546\":null,\"2547\":1.553459455e+18,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":1.55338209e+18,\"2553\":1.55338125e+18,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":1.553087381e+18,\"2559\":1.553190979e+18,\"2560\":1.553190979e+18,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":1.553108679e+18,\"2566\":1.55310828e+18,\"2567\":1.553106832e+18,\"2568\":1.553106197e+18,\"2569\":1.553107663e+18,\"2570\":1.553105529e+18,\"2571\":1.55310498e+18,\"2572\":1.553104359e+18,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":null,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":null,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":1.554940867e+18,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":1.55486923e+18,\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":1.554496903e+18,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":1.554543201e+18,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":1.554727592e+18,\"2702\":1.554694314e+18,\"2703\":1.554721833e+18,\"2704\":1.55472183e+18,\"2705\":1.554721826e+18,\"2706\":1.554721823e+18,\"2707\":null,\"2708\":1.55454672e+18,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":1.554691553e+18,\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":1.554485633e+18,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":1.554523489e+18,\"2749\":null,\"2750\":1.554496903e+18,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":1.554482274e+18,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":1.554435493e+18,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":null,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":1.554076384e+18,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":1.553445869e+18,\"2838\":null,\"2839\":1.553620792e+18,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":1.556128657e+18,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":1.555607066e+18,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":1.555255703e+18,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":1.554879313e+18,\"2906\":1.555291002e+18,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":1.554985804e+18,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":1.555197744e+18,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":1.554890712e+18,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":1.555137841e+18,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":1.55508449e+18,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":1.555000818e+18,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":1.552785365e+18,\"3060\":1.554920338e+18,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":1.5549145e+18,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":1.554618396e+18,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":1.554880833e+18,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":1.554876882e+18,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":1.55480529e+18,\"3100\":null,\"3101\":1.554781665e+18,\"3102\":1.554806412e+18,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":1.554575731e+18,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":1.554615095e+18,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":1.554798809e+18,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":1.554798798e+18,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":1.554793115e+18,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":1.554772032e+18,\"3175\":null,\"3176\":1.554494139e+18,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":1.554771124e+18,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":1.554154952e+18,\"3191\":null,\"3192\":1.554599682e+18,\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":1.55471023e+18,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":1.554710618e+18,\"3245\":null,\"3246\":null,\"3247\":1.554691798e+18,\"3248\":1.552331924e+18,\"3249\":null,\"3250\":1.554704107e+18,\"3251\":1.55470249e+18,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":1.554572521e+18,\"3259\":1.554468435e+18,\"3260\":1.554366254e+18,\"3261\":1.554496426e+18,\"3262\":1.554416822e+18,\"3263\":1.554693593e+18,\"3264\":1.554470138e+18,\"3265\":1.554556444e+18,\"3266\":1.55455948e+18,\"3267\":1.554446479e+18,\"3268\":1.554430836e+18,\"3269\":1.55442207e+18,\"3270\":1.554681937e+18,\"3271\":1.554468666e+18,\"3272\":null,\"3273\":null,\"3274\":1.55457216e+18,\"3275\":1.554425235e+18,\"3276\":1.554533332e+18,\"3277\":1.554108418e+18,\"3278\":1.554575731e+18,\"3279\":1.511441794e+18,\"3280\":1.554688244e+18,\"3281\":1.542846887e+18,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":1.554663687e+18,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":1.554584595e+18,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":1.554578626e+18,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":1.554273558e+18,\"3326\":1.554542552e+18,\"3327\":1.554404759e+18,\"3328\":1.554567009e+18,\"3329\":null,\"3330\":null,\"3331\":1.55453389e+18,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":1.554547819e+18,\"3347\":null,\"3348\":1.554526837e+18,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":1.554515258e+18,\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":1.554454484e+18,\"3401\":null,\"3402\":null,\"3403\":1.554323875e+18,\"3404\":1.554501685e+18,\"3405\":null,\"3406\":null,\"3407\":1.554496903e+18,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":1.554479983e+18,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":1.554471293e+18,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":1.554445882e+18,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":1.554312904e+18,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":1.554257955e+18,\"3495\":1.554310117e+18,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":1.553746176e+18,\"3560\":1.553790267e+18,\"3561\":1.552738115e+18,\"3562\":1.554007126e+18,\"3563\":1.553727854e+18,\"3564\":1.55399549e+18,\"3565\":1.554026834e+18,\"3566\":1.554013812e+18,\"3567\":1.553798511e+18,\"3568\":1.553935065e+18,\"3569\":null,\"3570\":1.55407147e+18,\"3571\":null,\"3572\":null,\"3573\":1.554068978e+18,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":1.553985389e+18,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":1.55373869e+18,\"3591\":null,\"3592\":1.55372482e+18,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":1.553238051e+18,\"3625\":1.553241644e+18,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":1.556218783e+18,\"3630\":null,\"3631\":1.554482274e+18,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":1.556128657e+18,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":1.555560738e+18,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":1.555531862e+18,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":1.555607066e+18,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":1.555516335e+18,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":1.555489459e+18,\"3717\":null,\"3718\":null,\"3719\":1.555461672e+18,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":1.555450119e+18,\"3730\":null,\"3731\":1.555446118e+18,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":1.554879313e+18,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":1.555291002e+18,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":1.555351833e+18,\"3765\":null,\"3766\":1.555350068e+18,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":1.555293107e+18,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":1.554985804e+18,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":1.555234391e+18,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":1.538587135e+18,\"3886\":null,\"3887\":1.555214433e+18,\"3888\":null,\"3889\":null,\"3890\":1.555214433e+18,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":1.555197744e+18,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":1.554890712e+18,\"3940\":null,\"3941\":null,\"3942\":1.555173588e+18,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":1.555141812e+18,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":1.555153574e+18,\"3963\":null,\"3964\":1.555137841e+18,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":1.555143601e+18,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":1.555133401e+18,\"4004\":1.554470186e+18,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":1.555108766e+18,\"4031\":1.51560224e+18,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":1.555084265e+18,\"4051\":null,\"4052\":1.555084651e+18,\"4053\":1.555091237e+18,\"4054\":1.555091443e+18,\"4055\":1.555092329e+18,\"4056\":null,\"4057\":1.555082396e+18,\"4058\":1.554874986e+18,\"4059\":1.554832562e+18,\"4060\":1.554580887e+18,\"4061\":null,\"4062\":1.55506358e+18,\"4063\":1.555073546e+18,\"4064\":1.554547445e+18,\"4065\":1.554937823e+18,\"4066\":1.554887903e+18,\"4067\":1.554879942e+18,\"4068\":1.555082194e+18,\"4069\":1.555050053e+18,\"4070\":1.555079065e+18,\"4071\":null,\"4072\":1.555079405e+18,\"4073\":1.55508535e+18,\"4074\":1.555081468e+18,\"4075\":1.554795382e+18,\"4076\":1.555083611e+18,\"4077\":1.555075936e+18,\"4078\":1.555074855e+18,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":1.55508449e+18,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":1.55504973e+18,\"4100\":null,\"4101\":1.555080316e+18,\"4102\":null,\"4103\":1.555078578e+18,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":1.555072878e+18,\"4111\":1.555062274e+18,\"4112\":1.555072854e+18,\"4113\":null,\"4114\":1.555072874e+18,\"4115\":1.55490427e+18,\"4116\":1.555072779e+18,\"4117\":1.555072781e+18,\"4118\":null,\"4119\":null,\"4120\":1.555071389e+18,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":1.555024173e+18,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":1.552785365e+18,\"4154\":1.554920338e+18,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":1.554947155e+18,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":1.5549145e+18,\"4170\":null,\"4171\":null,\"4172\":null,\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":1.554204666e+18,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":1.554881617e+18,\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":1.554880833e+18,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":1.554876882e+18,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":1.554781665e+18,\"4257\":null,\"4258\":1.554866392e+18,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":1.554838833e+18,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":1.554615095e+18,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":1.554827383e+18,\"4322\":null,\"4323\":1.554824378e+18,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":1.554798809e+18,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":1.554798798e+18,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":1.554793115e+18,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":1.554787203e+18,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":1.554787544e+18,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":1.554772032e+18,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":1.554494139e+18,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":1.554771124e+18,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":1.554154952e+18,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":1.55474997e+18,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":1.554747348e+18,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":1.554738855e+18,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":1.554722825e+18,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":1.554691798e+18,\"4618\":1.552331924e+18,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":1.554704107e+18,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":1.554572521e+18,\"4633\":1.554468435e+18,\"4634\":1.554366254e+18,\"4635\":1.554496426e+18,\"4636\":1.554416822e+18,\"4637\":null,\"4638\":1.554470138e+18,\"4639\":1.554556444e+18,\"4640\":1.55455948e+18,\"4641\":1.554446479e+18,\"4642\":1.554430836e+18,\"4643\":1.55442207e+18,\"4644\":1.554681937e+18,\"4645\":1.554627562e+18,\"4646\":null,\"4647\":1.554468666e+18,\"4648\":null,\"4649\":null,\"4650\":1.55457216e+18,\"4651\":1.554425235e+18,\"4652\":1.554533332e+18,\"4653\":1.554108418e+18,\"4654\":1.554575731e+18,\"4655\":null,\"4656\":1.511441794e+18,\"4657\":1.554688244e+18,\"4658\":1.542846887e+18,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":1.554605971e+18,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":1.554584595e+18,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":1.554580415e+18,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":1.554495852e+18,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":1.554497553e+18,\"4748\":1.554496273e+18,\"4749\":1.554569682e+18,\"4750\":null,\"4751\":1.554505862e+18,\"4752\":null,\"4753\":null,\"4754\":1.554566709e+18,\"4755\":1.554573378e+18,\"4756\":1.554433817e+18,\"4757\":null,\"4758\":null,\"4759\":1.554273558e+18,\"4760\":1.554542552e+18,\"4761\":null,\"4762\":1.554404759e+18,\"4763\":null,\"4764\":1.554567009e+18,\"4765\":null,\"4766\":null,\"4767\":1.55453389e+18,\"4768\":1.554482274e+18,\"4769\":null,\"4770\":null,\"4771\":1.554554749e+18,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":1.554546749e+18,\"4827\":1.554515258e+18,\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":1.554516656e+18,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":1.554512859e+18,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":1.554454484e+18,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":1.554486954e+18,\"4941\":1.554486954e+18,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":1.554496903e+18,\"4949\":null,\"4950\":1.554498678e+18,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":1.554488043e+18,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":1.554489348e+18,\"4975\":null,\"4976\":null,\"4977\":1.554486748e+18,\"4978\":null,\"4979\":null,\"4980\":1.554487789e+18,\"4981\":null,\"4982\":1.5544769e+18,\"4983\":null,\"4984\":null,\"4985\":1.55448749e+18,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":1.554468447e+18,\"4993\":1.554487525e+18,\"4994\":1.554468447e+18,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"in_reply_to_user_id\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":134196350.0,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":264248576.0,\"16\":null,\"17\":15764644.0,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":430723686.0,\"29\":null,\"30\":null,\"31\":null,\"32\":487118986.0,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":54858891.0,\"53\":null,\"54\":1.050464186e+18,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":4970411.0,\"64\":null,\"65\":1367531.0,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":87818409.0,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":26809005.0,\"93\":null,\"94\":268636316.0,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":1363859738.0,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":3999803356.0,\"112\":null,\"113\":null,\"114\":1.432308884e+18,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":249677516.0,\"127\":1.150749854e+18,\"128\":null,\"129\":null,\"130\":1.338036292e+18,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":1.388960612e+18,\"153\":null,\"154\":null,\"155\":null,\"156\":1.391005482e+18,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":8.506317952e+17,\"164\":null,\"165\":8.506317952e+17,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":2674298212.0,\"204\":null,\"205\":null,\"206\":9.899351477e+17,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":1.235930252e+18,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":1.030086296e+18,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":4703680090.0,\"271\":7.470641312e+17,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":493365529.0,\"281\":null,\"282\":null,\"283\":36670025.0,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":1.001152129e+18,\"295\":null,\"296\":null,\"297\":192947735.0,\"298\":null,\"299\":null,\"300\":192947735.0,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":1.249672283e+18,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":1.497996117e+18,\"354\":null,\"355\":null,\"356\":1.326176068e+18,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":1.138402595e+18,\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":1.231855139e+18,\"380\":null,\"381\":11616642.0,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":4125973102.0,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":2801652406.0,\"423\":3999803356.0,\"424\":null,\"425\":230824232.0,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":9.815247925e+17,\"453\":35684345.0,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":7.543932226e+17,\"475\":null,\"476\":1250914615.0,\"477\":264248576.0,\"478\":14879097.0,\"479\":177583133.0,\"480\":null,\"481\":7.543932226e+17,\"482\":1.190483463e+18,\"483\":9.105723724e+17,\"484\":162905859.0,\"485\":null,\"486\":24291371.0,\"487\":1.082877822e+18,\"488\":211173630.0,\"489\":24291371.0,\"490\":8.741774101e+17,\"491\":1.276790264e+18,\"492\":1.026733682e+18,\"493\":248929204.0,\"494\":450241139.0,\"495\":null,\"496\":8.140947306e+17,\"497\":7.543932226e+17,\"498\":69271273.0,\"499\":1.546932581e+18,\"500\":9.762836143e+17,\"501\":1.276790264e+18,\"502\":24291371.0,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":1.395444138e+18,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":7587032.0,\"524\":null,\"525\":1.384148846e+18,\"526\":null,\"527\":1.384148846e+18,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":742143.0,\"535\":177113737.0,\"536\":1.472179072e+18,\"537\":null,\"538\":501291577.0,\"539\":1.126471048e+18,\"540\":27998788.0,\"541\":1.266608901e+18,\"542\":null,\"543\":null,\"544\":1.510942253e+18,\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":9.372989968e+17,\"552\":null,\"553\":null,\"554\":8.506317952e+17,\"555\":null,\"556\":null,\"557\":null,\"558\":1.509931141e+18,\"559\":null,\"560\":null,\"561\":null,\"562\":15764644.0,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":1.383569838e+18,\"581\":32660559.0,\"582\":null,\"583\":null,\"584\":null,\"585\":8.335444526e+17,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":1.353384573e+18,\"598\":null,\"599\":null,\"600\":330262748.0,\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":1.28234305e+18,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":224317583.0,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":1.050779472e+18,\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":1.349170293e+18,\"668\":null,\"669\":1.119170468e+18,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":1.372108356e+18,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":2164455380.0,\"692\":null,\"693\":null,\"694\":null,\"695\":8.574943739e+17,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":1901298962.0,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":3315017925.0,\"745\":null,\"746\":192947735.0,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":1.126232134e+18,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":1.277803354e+18,\"765\":null,\"766\":925179498.0,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":9.721116952e+17,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":1.462548977e+18,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":1550922414.0,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":1.372108356e+18,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":9.323984378e+17,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":1.193618823e+18,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":789605024.0,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":2726051293.0,\"900\":148323720.0,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":1.38018811e+18,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":1428008881.0,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":246103.0,\"957\":null,\"958\":null,\"959\":null,\"960\":9.138961189e+17,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":1.33170436e+18,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":1.509148638e+18,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":3999803356.0,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":1.246161298e+18,\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":2540367001.0,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":215052012.0,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":859248504.0,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":1.431759576e+18,\"1084\":989869530.0,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":1.531909792e+18,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":132759561.0,\"1097\":186891326.0,\"1098\":1.445811191e+18,\"1099\":7.156752184e+17,\"1100\":1.238205589e+18,\"1101\":null,\"1102\":null,\"1103\":9.762836143e+17,\"1104\":117042662.0,\"1105\":9.794377716e+17,\"1106\":135295059.0,\"1107\":1.482169993e+18,\"1108\":558797310.0,\"1109\":18168536.0,\"1110\":7.587015971e+17,\"1111\":null,\"1112\":34613288.0,\"1113\":null,\"1114\":null,\"1115\":266930441.0,\"1116\":3042607684.0,\"1117\":2355632540.0,\"1118\":1.226473615e+18,\"1119\":3315017925.0,\"1120\":null,\"1121\":8.006298531e+17,\"1122\":39975533.0,\"1123\":29944465.0,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":307931586.0,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":252751061.0,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":759251.0,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":1.222894323e+18,\"1211\":null,\"1212\":null,\"1213\":1.475721398e+18,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":155659213.0,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":1.377550429e+18,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":1.377550429e+18,\"1239\":1954402777.0,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":2531005222.0,\"1246\":null,\"1247\":null,\"1248\":30354991.0,\"1249\":207920369.0,\"1250\":1954402777.0,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":1.38018811e+18,\"1258\":584004949.0,\"1259\":null,\"1260\":1.470452794e+18,\"1261\":null,\"1262\":7.543932226e+17,\"1263\":null,\"1264\":null,\"1265\":1382488424.0,\"1266\":15764644.0,\"1267\":null,\"1268\":null,\"1269\":117042662.0,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":1.317821956e+18,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":1.222894323e+18,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":64643056.0,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":1.523062194e+18,\"1334\":113494390.0,\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":69266428.0,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":1.23631119e+18,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":7587032.0,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":1.38018811e+18,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":1.50838216e+18,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":15764644.0,\"1464\":null,\"1465\":15764644.0,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":15764644.0,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":201237617.0,\"1475\":null,\"1476\":15764644.0,\"1477\":null,\"1478\":34713362.0,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":742143.0,\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":15286685.0,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":1.201953403e+18,\"1508\":null,\"1509\":null,\"1510\":1652541.0,\"1511\":null,\"1512\":null,\"1513\":1891490382.0,\"1514\":2164455380.0,\"1515\":1.50794712e+18,\"1516\":null,\"1517\":null,\"1518\":15392486.0,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":1.042520177e+18,\"1526\":259914358.0,\"1527\":1.042520177e+18,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":28785486.0,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":15764644.0,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":9.653690323e+17,\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":1.387101621e+18,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":1.312896963e+18,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":1.507611508e+18,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":1.503920545e+18,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":1.187372312e+18,\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":1.247223375e+18,\"1751\":null,\"1752\":1.247223375e+18,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":1.550547454e+18,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":7517222.0,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":1.334479213e+18,\"1785\":null,\"1786\":null,\"1787\":1.387101621e+18,\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":252751061.0,\"1795\":1367531.0,\"1796\":1.247223375e+18,\"1797\":null,\"1798\":null,\"1799\":9.834362829e+17,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":2726051293.0,\"1805\":1.181936906e+18,\"1806\":23499976.0,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":499545927.0,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":2628758169.0,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":224317583.0,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":1.532754174e+18,\"1917\":null,\"1918\":80483638.0,\"1919\":null,\"1920\":1.455294902e+18,\"1921\":381696140.0,\"1922\":214708464.0,\"1923\":null,\"1924\":2097571.0,\"1925\":null,\"1926\":null,\"1927\":7.867393279e+17,\"1928\":1.350150751e+18,\"1929\":null,\"1930\":15764644.0,\"1931\":1.219232378e+18,\"1932\":18005085.0,\"1933\":null,\"1934\":18005085.0,\"1935\":33537967.0,\"1936\":1.219232378e+18,\"1937\":8.18893115e+17,\"1938\":454099919.0,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":20759034.0,\"1945\":2030711.0,\"1946\":2030711.0,\"1947\":null,\"1948\":19358947.0,\"1949\":385397551.0,\"1950\":7998482.0,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":28614262.0,\"1957\":335455570.0,\"1958\":7.203732698e+17,\"1959\":77528520.0,\"1960\":1.498973279e+18,\"1961\":null,\"1962\":1066202484.0,\"1963\":640893.0,\"1964\":8.619396453e+17,\"1965\":15152752.0,\"1966\":15152752.0,\"1967\":15152752.0,\"1968\":460246990.0,\"1969\":767.0,\"1970\":null,\"1971\":767.0,\"1972\":42958829.0,\"1973\":19631069.0,\"1974\":24443284.0,\"1975\":635608354.0,\"1976\":2884771.0,\"1977\":null,\"1978\":18267548.0,\"1979\":523248016.0,\"1980\":523248016.0,\"1981\":7998482.0,\"1982\":9229672.0,\"1983\":2572956582.0,\"1984\":14562685.0,\"1985\":759251.0,\"1986\":20776147.0,\"1987\":4456498874.0,\"1988\":564111558.0,\"1989\":18267548.0,\"1990\":null,\"1991\":767.0,\"1992\":131546062.0,\"1993\":9130702.0,\"1994\":153503737.0,\"1995\":1722806024.0,\"1996\":539010491.0,\"1997\":1568858138.0,\"1998\":1.377280394e+18,\"1999\":1.451919101e+18,\"2000\":263826460.0,\"2001\":127503320.0,\"2002\":7.117604674e+17,\"2003\":15438913.0,\"2004\":1.250830692e+18,\"2005\":36921996.0,\"2006\":153503737.0,\"2007\":2884771.0,\"2008\":20402945.0,\"2009\":177583133.0,\"2010\":635608354.0,\"2011\":19897138.0,\"2012\":635608354.0,\"2013\":32836225.0,\"2014\":744601892.0,\"2015\":312677640.0,\"2016\":null,\"2017\":null,\"2018\":41591898.0,\"2019\":1367531.0,\"2020\":43061739.0,\"2021\":1.436914143e+18,\"2022\":null,\"2023\":87818409.0,\"2024\":43061739.0,\"2025\":116363549.0,\"2026\":9300262.0,\"2027\":564111558.0,\"2028\":3104228294.0,\"2029\":3104228294.0,\"2030\":7.36279751e+17,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":89761235.0,\"2035\":15766082.0,\"2036\":15179672.0,\"2037\":17871088.0,\"2038\":131880063.0,\"2039\":43061739.0,\"2040\":1424639970.0,\"2041\":539010491.0,\"2042\":640893.0,\"2043\":1.080477289e+18,\"2044\":427630477.0,\"2045\":427630477.0,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":8.506317952e+17,\"2050\":null,\"2051\":null,\"2052\":42589787.0,\"2053\":403033229.0,\"2054\":null,\"2055\":null,\"2056\":15764644.0,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":7.474207515e+17,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":1.524508089e+18,\"2068\":1.524508089e+18,\"2069\":1.524508089e+18,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":414962189.0,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":1.387101621e+18,\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":599065130.0,\"2097\":57268394.0,\"2098\":2475407894.0,\"2099\":599065130.0,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":1.491584644e+18,\"2106\":null,\"2107\":1.394047839e+18,\"2108\":1.524698434e+18,\"2109\":1.177976673e+18,\"2110\":null,\"2111\":201237617.0,\"2112\":9.892345114e+17,\"2113\":1.508516531e+18,\"2114\":1.053790262e+18,\"2115\":1.493758777e+18,\"2116\":1.36945977e+18,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":17839398.0,\"2123\":2800581040.0,\"2124\":254117355.0,\"2125\":21764428.0,\"2126\":21408400.0,\"2127\":2451476942.0,\"2128\":1.253485143e+18,\"2129\":612473.0,\"2130\":null,\"2131\":17469289.0,\"2132\":998380790.0,\"2133\":null,\"2134\":90880428.0,\"2135\":null,\"2136\":1.222773302e+18,\"2137\":133016978.0,\"2138\":1.111662652e+18,\"2139\":3150940290.0,\"2140\":155942845.0,\"2141\":20368663.0,\"2142\":612473.0,\"2143\":19706851.0,\"2144\":23485648.0,\"2145\":null,\"2146\":28785486.0,\"2147\":27284203.0,\"2148\":177564016.0,\"2149\":42407972.0,\"2150\":null,\"2151\":15464697.0,\"2152\":2353605901.0,\"2153\":42407972.0,\"2154\":1367531.0,\"2155\":3108351.0,\"2156\":28785486.0,\"2157\":15012486.0,\"2158\":87818409.0,\"2159\":8350912.0,\"2160\":1652541.0,\"2161\":133663801.0,\"2162\":177564016.0,\"2163\":2467791.0,\"2164\":4135390517.0,\"2165\":20094409.0,\"2166\":70778344.0,\"2167\":15464697.0,\"2168\":288755234.0,\"2169\":18643437.0,\"2170\":18643437.0,\"2171\":18643437.0,\"2172\":123327472.0,\"2173\":950531.0,\"2174\":38271276.0,\"2175\":14808226.0,\"2176\":1957610664.0,\"2177\":123276343.0,\"2178\":null,\"2179\":36990709.0,\"2180\":380285402.0,\"2181\":1316331686.0,\"2182\":47035436.0,\"2183\":203822998.0,\"2184\":7.65599357e+17,\"2185\":1.066972568e+18,\"2186\":22138134.0,\"2187\":27284203.0,\"2188\":25250613.0,\"2189\":2800581040.0,\"2190\":96900937.0,\"2191\":1626294277.0,\"2192\":null,\"2193\":1009546724.0,\"2194\":null,\"2195\":7587032.0,\"2196\":3029501171.0,\"2197\":1652541.0,\"2198\":7587032.0,\"2199\":1.425471173e+18,\"2200\":2097571.0,\"2201\":23922797.0,\"2202\":2097571.0,\"2203\":null,\"2204\":3106815751.0,\"2205\":1.339765548e+18,\"2206\":7.358111585e+17,\"2207\":1.339765548e+18,\"2208\":39155029.0,\"2209\":1.219176309e+18,\"2210\":121371581.0,\"2211\":1652541.0,\"2212\":759251.0,\"2213\":759251.0,\"2214\":1652541.0,\"2215\":2097571.0,\"2216\":null,\"2217\":2726051293.0,\"2218\":2956250285.0,\"2219\":null,\"2220\":null,\"2221\":350987335.0,\"2222\":null,\"2223\":42589787.0,\"2224\":9.769950992e+17,\"2225\":1652541.0,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":1.534426499e+18,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":203822998.0,\"2239\":60514666.0,\"2240\":27443744.0,\"2241\":1042307696.0,\"2242\":620632841.0,\"2243\":15012486.0,\"2244\":2279301618.0,\"2245\":23922797.0,\"2246\":3108351.0,\"2247\":471163803.0,\"2248\":2836421.0,\"2249\":1652541.0,\"2250\":2097571.0,\"2251\":720139699.0,\"2252\":30011100.0,\"2253\":126240387.0,\"2254\":1.315053256e+18,\"2255\":1652541.0,\"2256\":143810986.0,\"2257\":7587032.0,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":1.541830905e+18,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":6.950544841e+17,\"2269\":8.763210041e+17,\"2270\":143810986.0,\"2271\":592730371.0,\"2272\":18005085.0,\"2273\":592730371.0,\"2274\":592730371.0,\"2275\":270132611.0,\"2276\":8.573743722e+17,\"2277\":1.280346745e+18,\"2278\":18839785.0,\"2279\":18005085.0,\"2280\":18839785.0,\"2281\":8.18893115e+17,\"2282\":8.18893115e+17,\"2283\":592730371.0,\"2284\":2312904278.0,\"2285\":1100927498.0,\"2286\":121371581.0,\"2287\":49035671.0,\"2288\":3135241.0,\"2289\":14173315.0,\"2290\":1652541.0,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":1.4271348e+18,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":1.535915503e+18,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":1179156710.0,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":312670274.0,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":287453721.0,\"2323\":null,\"2324\":1.482169993e+18,\"2325\":8.190826867e+17,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":1367531.0,\"2337\":22926365.0,\"2338\":224430095.0,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":406842374.0,\"2343\":null,\"2344\":null,\"2345\":15764644.0,\"2346\":null,\"2347\":18304860.0,\"2348\":372142346.0,\"2349\":16973333.0,\"2350\":null,\"2351\":null,\"2352\":184136149.0,\"2353\":null,\"2354\":1652541.0,\"2355\":51241574.0,\"2356\":19489239.0,\"2357\":9.769950992e+17,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":8.435113665e+17,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":6134882.0,\"2398\":null,\"2399\":15764644.0,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":226944459.0,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":2467791.0,\"2411\":17469289.0,\"2412\":779799806.0,\"2413\":1652541.0,\"2414\":1.457869861e+18,\"2415\":56572394.0,\"2416\":69172612.0,\"2417\":18510860.0,\"2418\":19489239.0,\"2419\":136550204.0,\"2420\":1.337112477e+18,\"2421\":376326941.0,\"2422\":376326941.0,\"2423\":376326941.0,\"2424\":14465607.0,\"2425\":1.335493193e+18,\"2426\":1.224702899e+18,\"2427\":551232817.0,\"2428\":551232817.0,\"2429\":551232817.0,\"2430\":551232817.0,\"2431\":551232817.0,\"2432\":551232817.0,\"2433\":14770715.0,\"2434\":27284203.0,\"2435\":27284203.0,\"2436\":27284203.0,\"2437\":2842936406.0,\"2438\":2565360157.0,\"2439\":1.242122661e+18,\"2440\":null,\"2441\":380285402.0,\"2442\":1.185604784e+18,\"2443\":85601740.0,\"2444\":2267964218.0,\"2445\":335673568.0,\"2446\":18956073.0,\"2447\":155814794.0,\"2448\":9.769950992e+17,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":7.547187872e+17,\"2455\":7.547187872e+17,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":19568591.0,\"2464\":34367582.0,\"2465\":321954654.0,\"2466\":1652541.0,\"2467\":88315048.0,\"2468\":8.414892492e+17,\"2469\":20747881.0,\"2470\":2565360157.0,\"2471\":1009546724.0,\"2472\":4765364386.0,\"2473\":1917731.0,\"2474\":7744592.0,\"2475\":1367531.0,\"2476\":2800581040.0,\"2477\":592730371.0,\"2478\":1634248890.0,\"2479\":1917731.0,\"2480\":807095.0,\"2481\":1652541.0,\"2482\":237845487.0,\"2483\":70174349.0,\"2484\":3103505578.0,\"2485\":7627832.0,\"2486\":1.302455126e+18,\"2487\":2461810448.0,\"2488\":1.298372735e+18,\"2489\":592730371.0,\"2490\":592730371.0,\"2491\":1074480192.0,\"2492\":592730371.0,\"2493\":1652541.0,\"2494\":21001599.0,\"2495\":4787411118.0,\"2496\":40709264.0,\"2497\":8.573743722e+17,\"2498\":1877831.0,\"2499\":38142665.0,\"2500\":38021361.0,\"2501\":3065301110.0,\"2502\":87818409.0,\"2503\":1.441111022e+18,\"2504\":7.845754155e+17,\"2505\":1.148299267e+18,\"2506\":3108351.0,\"2507\":41591898.0,\"2508\":41591898.0,\"2509\":1652541.0,\"2510\":8.573743722e+17,\"2511\":1652541.0,\"2512\":7.845754155e+17,\"2513\":1367531.0,\"2514\":17469289.0,\"2515\":3293406121.0,\"2516\":8.573743722e+17,\"2517\":1488026569.0,\"2518\":721451365.0,\"2519\":36139166.0,\"2520\":203226736.0,\"2521\":3135241.0,\"2522\":1.241739791e+18,\"2523\":380648579.0,\"2524\":14994676.0,\"2525\":22869693.0,\"2526\":17525171.0,\"2527\":19706851.0,\"2528\":1.298372735e+18,\"2529\":14293310.0,\"2530\":14173315.0,\"2531\":2097571.0,\"2532\":16133530.0,\"2533\":1.349149097e+18,\"2534\":15115280.0,\"2535\":null,\"2536\":1009546724.0,\"2537\":1652541.0,\"2538\":34367582.0,\"2539\":198573171.0,\"2540\":1.428403959e+18,\"2541\":7.544309657e+17,\"2542\":8.036486957e+17,\"2543\":1.247017297e+18,\"2544\":9.769950992e+17,\"2545\":2775998016.0,\"2546\":null,\"2547\":8.036486957e+17,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":16187637.0,\"2553\":16187637.0,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":8.185689207e+17,\"2559\":9.769950992e+17,\"2560\":9.769950992e+17,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":414962189.0,\"2566\":1652541.0,\"2567\":1009546724.0,\"2568\":268636316.0,\"2569\":603344194.0,\"2570\":24744541.0,\"2571\":3224540611.0,\"2572\":3108351.0,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":44196397.0,\"2603\":1.120633726e+18,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":1.120633726e+18,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":4624133423.0,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":190260428.0,\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":7.173507405e+17,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":320644276.0,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":15764644.0,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":68889214.0,\"2681\":null,\"2682\":null,\"2683\":1.552506168e+18,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":26516576.0,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":1.551171425e+18,\"2702\":71594919.0,\"2703\":712927525.0,\"2704\":712927525.0,\"2705\":712927525.0,\"2706\":712927525.0,\"2707\":null,\"2708\":1.446961e+18,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":160548495.0,\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":1.199068814e+18,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":40548465.0,\"2749\":null,\"2750\":15764644.0,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":15764644.0,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":1.379763568e+18,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":2461810448.0,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":712927525.0,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":14697575.0,\"2838\":null,\"2839\":15764644.0,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":430723686.0,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":4970411.0,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":249677516.0,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":1.388960612e+18,\"2906\":1.391005482e+18,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":1.235930252e+18,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":1.249672283e+18,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":1.497996117e+18,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":11616642.0,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":2801652406.0,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":1.395444138e+18,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":1.525108521e+18,\"3047\":null,\"3048\":15764644.0,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":1.383569838e+18,\"3060\":32660559.0,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":1.353384573e+18,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":1.28234305e+18,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":48264413.0,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":1.349170293e+18,\"3088\":1.119170468e+18,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":1.372108356e+18,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":1.274637255e+18,\"3100\":null,\"3101\":2164455380.0,\"3102\":68334156.0,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":3315017925.0,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":1.126232134e+18,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":1.462548977e+18,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":1550922414.0,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":1.372108356e+18,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":148323720.0,\"3175\":null,\"3176\":1.38018811e+18,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":1428008881.0,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":246103.0,\"3191\":null,\"3192\":9.138961189e+17,\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":1.33170436e+18,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":1.246161298e+18,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":49616273.0,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":859248504.0,\"3245\":null,\"3246\":null,\"3247\":1.431759576e+18,\"3248\":989869530.0,\"3249\":null,\"3250\":1.531909792e+18,\"3251\":1.185352124e+18,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":132759561.0,\"3259\":186891326.0,\"3260\":1.445811191e+18,\"3261\":7.156752184e+17,\"3262\":1.238205589e+18,\"3263\":1.197017532e+18,\"3264\":9.762836143e+17,\"3265\":117042662.0,\"3266\":9.794377716e+17,\"3267\":135295059.0,\"3268\":1.482169993e+18,\"3269\":558797310.0,\"3270\":18168536.0,\"3271\":34613288.0,\"3272\":null,\"3273\":null,\"3274\":266930441.0,\"3275\":3042607684.0,\"3276\":2355632540.0,\"3277\":1.226473615e+18,\"3278\":3315017925.0,\"3279\":8.006298531e+17,\"3280\":39975533.0,\"3281\":29944465.0,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":9.132598763e+17,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":252751061.0,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":1.222894323e+18,\"3318\":null,\"3319\":null,\"3320\":155659213.0,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":1.38018811e+18,\"3326\":584004949.0,\"3327\":1.470452794e+18,\"3328\":7.543932226e+17,\"3329\":null,\"3330\":null,\"3331\":1382488424.0,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":1.317821956e+18,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":1.222894323e+18,\"3347\":null,\"3348\":64643056.0,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":113494390.0,\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":69266428.0,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":1.50838216e+18,\"3401\":null,\"3402\":15764644.0,\"3403\":117810351.0,\"3404\":1.538564519e+18,\"3405\":201237617.0,\"3406\":null,\"3407\":15764644.0,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":2164455380.0,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":9.653690323e+17,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":1.312896963e+18,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":1.507611508e+18,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":1.503920545e+18,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":1.187372312e+18,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":1.181936906e+18,\"3495\":23499976.0,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":15764644.0,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":1.491584644e+18,\"3560\":1.394047839e+18,\"3561\":1.524698434e+18,\"3562\":1.177976673e+18,\"3563\":201237617.0,\"3564\":9.892345114e+17,\"3565\":1.508516531e+18,\"3566\":1.053790262e+18,\"3567\":1.493758777e+18,\"3568\":1.36945977e+18,\"3569\":null,\"3570\":1.292522229e+18,\"3571\":null,\"3572\":null,\"3573\":4135390517.0,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":1.541830905e+18,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":1.535915503e+18,\"3591\":null,\"3592\":1179156710.0,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":1.449089087e+18,\"3625\":864610968.0,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":264248576.0,\"3630\":null,\"3631\":15764644.0,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":430723686.0,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":487118986.0,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":54858891.0,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":4970411.0,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":1363859738.0,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":3999803356.0,\"3717\":null,\"3718\":null,\"3719\":1.432308884e+18,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":1.150749854e+18,\"3730\":null,\"3731\":1.338036292e+18,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":1.388960612e+18,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":1.391005482e+18,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":8.506317952e+17,\"3765\":null,\"3766\":8.506317952e+17,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":2674298212.0,\"3803\":null,\"3804\":9.899351477e+17,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":1.235930252e+18,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":1.030086296e+18,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":4703680090.0,\"3865\":7.470641312e+17,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":493365529.0,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":36670025.0,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":1.001152129e+18,\"3886\":null,\"3887\":192947735.0,\"3888\":null,\"3889\":null,\"3890\":192947735.0,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":1.249672283e+18,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":1.497996117e+18,\"3940\":null,\"3941\":null,\"3942\":1.326176068e+18,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":1.138402595e+18,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":1.231855139e+18,\"3963\":null,\"3964\":11616642.0,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":4125973102.0,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":2801652406.0,\"4003\":3999803356.0,\"4004\":230824232.0,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":9.815247925e+17,\"4031\":35684345.0,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":7.543932226e+17,\"4051\":null,\"4052\":1250914615.0,\"4053\":264248576.0,\"4054\":14879097.0,\"4055\":177583133.0,\"4056\":null,\"4057\":7.543932226e+17,\"4058\":1.190483463e+18,\"4059\":9.105723724e+17,\"4060\":162905859.0,\"4061\":null,\"4062\":24291371.0,\"4063\":1.082877822e+18,\"4064\":211173630.0,\"4065\":24291371.0,\"4066\":8.741774101e+17,\"4067\":1.276790264e+18,\"4068\":1.026733682e+18,\"4069\":248929204.0,\"4070\":450241139.0,\"4071\":null,\"4072\":8.140947306e+17,\"4073\":7.543932226e+17,\"4074\":69271273.0,\"4075\":1.546932581e+18,\"4076\":9.762836143e+17,\"4077\":1.276790264e+18,\"4078\":24291371.0,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":1.395444138e+18,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":7587032.0,\"4100\":null,\"4101\":1.384148846e+18,\"4102\":null,\"4103\":1.384148846e+18,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":742143.0,\"4111\":177113737.0,\"4112\":1.472179072e+18,\"4113\":null,\"4114\":501291577.0,\"4115\":1.126471048e+18,\"4116\":27998788.0,\"4117\":1.266608901e+18,\"4118\":null,\"4119\":null,\"4120\":1.510942253e+18,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":9.372989968e+17,\"4128\":null,\"4129\":null,\"4130\":8.506317952e+17,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":1.509931141e+18,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":1.383569838e+18,\"4154\":32660559.0,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":8.335444526e+17,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":1.353384573e+18,\"4170\":null,\"4171\":null,\"4172\":330262748.0,\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":1.28234305e+18,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":224317583.0,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":1.050779472e+18,\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":1.119170468e+18,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":1.372108356e+18,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":2164455380.0,\"4257\":null,\"4258\":8.574943739e+17,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":1901298962.0,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":192947735.0,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":1.126232134e+18,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":1.277803354e+18,\"4322\":null,\"4323\":925179498.0,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":9.721116952e+17,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":1.462548977e+18,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":1550922414.0,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":1.372108356e+18,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":9.323984378e+17,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":1.193618823e+18,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":789605024.0,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":148323720.0,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":1.38018811e+18,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":1428008881.0,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":246103.0,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":1.33170436e+18,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":1.509148638e+18,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":3999803356.0,\"4547\":null,\"4548\":null,\"4549\":1.246161298e+18,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":2540367001.0,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":215052012.0,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":1.431759576e+18,\"4618\":989869530.0,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":1.531909792e+18,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":132759561.0,\"4633\":186891326.0,\"4634\":1.445811191e+18,\"4635\":7.156752184e+17,\"4636\":1.238205589e+18,\"4637\":null,\"4638\":9.762836143e+17,\"4639\":117042662.0,\"4640\":9.794377716e+17,\"4641\":135295059.0,\"4642\":1.482169993e+18,\"4643\":558797310.0,\"4644\":18168536.0,\"4645\":7.587015971e+17,\"4646\":null,\"4647\":34613288.0,\"4648\":null,\"4649\":null,\"4650\":266930441.0,\"4651\":3042607684.0,\"4652\":2355632540.0,\"4653\":1.226473615e+18,\"4654\":3315017925.0,\"4655\":null,\"4656\":8.006298531e+17,\"4657\":39975533.0,\"4658\":29944465.0,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":307931586.0,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":252751061.0,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":759251.0,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":1.475721398e+18,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":155659213.0,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":1.377550429e+18,\"4748\":1.377550429e+18,\"4749\":1954402777.0,\"4750\":null,\"4751\":2531005222.0,\"4752\":null,\"4753\":null,\"4754\":30354991.0,\"4755\":207920369.0,\"4756\":1954402777.0,\"4757\":null,\"4758\":null,\"4759\":1.38018811e+18,\"4760\":584004949.0,\"4761\":null,\"4762\":1.470452794e+18,\"4763\":null,\"4764\":7.543932226e+17,\"4765\":null,\"4766\":null,\"4767\":1382488424.0,\"4768\":15764644.0,\"4769\":null,\"4770\":null,\"4771\":117042662.0,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":1.317821956e+18,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":1.523062194e+18,\"4827\":113494390.0,\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":69266428.0,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":1.23631119e+18,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":7587032.0,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":1.38018811e+18,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":1.50838216e+18,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":15764644.0,\"4941\":15764644.0,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":201237617.0,\"4947\":null,\"4948\":15764644.0,\"4949\":null,\"4950\":34713362.0,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":15286685.0,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":1.201953403e+18,\"4975\":null,\"4976\":null,\"4977\":1652541.0,\"4978\":null,\"4979\":null,\"4980\":1891490382.0,\"4981\":2164455380.0,\"4982\":1.50794712e+18,\"4983\":null,\"4984\":null,\"4985\":15392486.0,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":1.042520177e+18,\"4993\":259914358.0,\"4994\":1.042520177e+18,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"in_reply_to_user_id_str\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":134196350.0,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":264248576.0,\"16\":null,\"17\":15764644.0,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":430723686.0,\"29\":null,\"30\":null,\"31\":null,\"32\":487118986.0,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":54858891.0,\"53\":null,\"54\":1.050464186e+18,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":4970411.0,\"64\":null,\"65\":1367531.0,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":87818409.0,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":26809005.0,\"93\":null,\"94\":268636316.0,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":1363859738.0,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":3999803356.0,\"112\":null,\"113\":null,\"114\":1.432308884e+18,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":249677516.0,\"127\":1.150749854e+18,\"128\":null,\"129\":null,\"130\":1.338036292e+18,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":1.388960612e+18,\"153\":null,\"154\":null,\"155\":null,\"156\":1.391005482e+18,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":8.506317952e+17,\"164\":null,\"165\":8.506317952e+17,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":2674298212.0,\"204\":null,\"205\":null,\"206\":9.899351477e+17,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":1.235930252e+18,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":1.030086296e+18,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":4703680090.0,\"271\":7.470641312e+17,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":493365529.0,\"281\":null,\"282\":null,\"283\":36670025.0,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":1.001152129e+18,\"295\":null,\"296\":null,\"297\":192947735.0,\"298\":null,\"299\":null,\"300\":192947735.0,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":1.249672283e+18,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":1.497996117e+18,\"354\":null,\"355\":null,\"356\":1.326176068e+18,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":1.138402595e+18,\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":1.231855139e+18,\"380\":null,\"381\":11616642.0,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":4125973102.0,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":2801652406.0,\"423\":3999803356.0,\"424\":null,\"425\":230824232.0,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":9.815247925e+17,\"453\":35684345.0,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":7.543932226e+17,\"475\":null,\"476\":1250914615.0,\"477\":264248576.0,\"478\":14879097.0,\"479\":177583133.0,\"480\":null,\"481\":7.543932226e+17,\"482\":1.190483463e+18,\"483\":9.105723724e+17,\"484\":162905859.0,\"485\":null,\"486\":24291371.0,\"487\":1.082877822e+18,\"488\":211173630.0,\"489\":24291371.0,\"490\":8.741774101e+17,\"491\":1.276790264e+18,\"492\":1.026733682e+18,\"493\":248929204.0,\"494\":450241139.0,\"495\":null,\"496\":8.140947306e+17,\"497\":7.543932226e+17,\"498\":69271273.0,\"499\":1.546932581e+18,\"500\":9.762836143e+17,\"501\":1.276790264e+18,\"502\":24291371.0,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":1.395444138e+18,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":7587032.0,\"524\":null,\"525\":1.384148846e+18,\"526\":null,\"527\":1.384148846e+18,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":742143.0,\"535\":177113737.0,\"536\":1.472179072e+18,\"537\":null,\"538\":501291577.0,\"539\":1.126471048e+18,\"540\":27998788.0,\"541\":1.266608901e+18,\"542\":null,\"543\":null,\"544\":1.510942253e+18,\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":9.372989968e+17,\"552\":null,\"553\":null,\"554\":8.506317952e+17,\"555\":null,\"556\":null,\"557\":null,\"558\":1.509931141e+18,\"559\":null,\"560\":null,\"561\":null,\"562\":15764644.0,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":1.383569838e+18,\"581\":32660559.0,\"582\":null,\"583\":null,\"584\":null,\"585\":8.335444526e+17,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":1.353384573e+18,\"598\":null,\"599\":null,\"600\":330262748.0,\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":1.28234305e+18,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":224317583.0,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":1.050779472e+18,\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":1.349170293e+18,\"668\":null,\"669\":1.119170468e+18,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":1.372108356e+18,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":2164455380.0,\"692\":null,\"693\":null,\"694\":null,\"695\":8.574943739e+17,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":1901298962.0,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":3315017925.0,\"745\":null,\"746\":192947735.0,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":1.126232134e+18,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":1.277803354e+18,\"765\":null,\"766\":925179498.0,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":9.721116952e+17,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":1.462548977e+18,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":1550922414.0,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":1.372108356e+18,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":9.323984378e+17,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":1.193618823e+18,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":789605024.0,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":2726051293.0,\"900\":148323720.0,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":1.38018811e+18,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":1428008881.0,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":246103.0,\"957\":null,\"958\":null,\"959\":null,\"960\":9.138961189e+17,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":1.33170436e+18,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":1.509148638e+18,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":3999803356.0,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":1.246161298e+18,\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":2540367001.0,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":215052012.0,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":859248504.0,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":1.431759576e+18,\"1084\":989869530.0,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":1.531909792e+18,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":132759561.0,\"1097\":186891326.0,\"1098\":1.445811191e+18,\"1099\":7.156752184e+17,\"1100\":1.238205589e+18,\"1101\":null,\"1102\":null,\"1103\":9.762836143e+17,\"1104\":117042662.0,\"1105\":9.794377716e+17,\"1106\":135295059.0,\"1107\":1.482169993e+18,\"1108\":558797310.0,\"1109\":18168536.0,\"1110\":7.587015971e+17,\"1111\":null,\"1112\":34613288.0,\"1113\":null,\"1114\":null,\"1115\":266930441.0,\"1116\":3042607684.0,\"1117\":2355632540.0,\"1118\":1.226473615e+18,\"1119\":3315017925.0,\"1120\":null,\"1121\":8.006298531e+17,\"1122\":39975533.0,\"1123\":29944465.0,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":307931586.0,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":252751061.0,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":759251.0,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":1.222894323e+18,\"1211\":null,\"1212\":null,\"1213\":1.475721398e+18,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":155659213.0,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":1.377550429e+18,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":1.377550429e+18,\"1239\":1954402777.0,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":2531005222.0,\"1246\":null,\"1247\":null,\"1248\":30354991.0,\"1249\":207920369.0,\"1250\":1954402777.0,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":1.38018811e+18,\"1258\":584004949.0,\"1259\":null,\"1260\":1.470452794e+18,\"1261\":null,\"1262\":7.543932226e+17,\"1263\":null,\"1264\":null,\"1265\":1382488424.0,\"1266\":15764644.0,\"1267\":null,\"1268\":null,\"1269\":117042662.0,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":1.317821956e+18,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":1.222894323e+18,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":64643056.0,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":1.523062194e+18,\"1334\":113494390.0,\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":69266428.0,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":1.23631119e+18,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":7587032.0,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":1.38018811e+18,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":1.50838216e+18,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":15764644.0,\"1464\":null,\"1465\":15764644.0,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":15764644.0,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":201237617.0,\"1475\":null,\"1476\":15764644.0,\"1477\":null,\"1478\":34713362.0,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":742143.0,\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":15286685.0,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":1.201953403e+18,\"1508\":null,\"1509\":null,\"1510\":1652541.0,\"1511\":null,\"1512\":null,\"1513\":1891490382.0,\"1514\":2164455380.0,\"1515\":1.50794712e+18,\"1516\":null,\"1517\":null,\"1518\":15392486.0,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":1.042520177e+18,\"1526\":259914358.0,\"1527\":1.042520177e+18,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":28785486.0,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":15764644.0,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":9.653690323e+17,\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":1.387101621e+18,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":1.312896963e+18,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":1.507611508e+18,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":1.503920545e+18,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":1.187372312e+18,\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":1.247223375e+18,\"1751\":null,\"1752\":1.247223375e+18,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":1.550547454e+18,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":7517222.0,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":1.334479213e+18,\"1785\":null,\"1786\":null,\"1787\":1.387101621e+18,\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":252751061.0,\"1795\":1367531.0,\"1796\":1.247223375e+18,\"1797\":null,\"1798\":null,\"1799\":9.834362829e+17,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":2726051293.0,\"1805\":1.181936906e+18,\"1806\":23499976.0,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":499545927.0,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":2628758169.0,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":224317583.0,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":1.532754174e+18,\"1917\":null,\"1918\":80483638.0,\"1919\":null,\"1920\":1.455294902e+18,\"1921\":381696140.0,\"1922\":214708464.0,\"1923\":null,\"1924\":2097571.0,\"1925\":null,\"1926\":null,\"1927\":7.867393279e+17,\"1928\":1.350150751e+18,\"1929\":null,\"1930\":15764644.0,\"1931\":1.219232378e+18,\"1932\":18005085.0,\"1933\":null,\"1934\":18005085.0,\"1935\":33537967.0,\"1936\":1.219232378e+18,\"1937\":8.18893115e+17,\"1938\":454099919.0,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":20759034.0,\"1945\":2030711.0,\"1946\":2030711.0,\"1947\":null,\"1948\":19358947.0,\"1949\":385397551.0,\"1950\":7998482.0,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":28614262.0,\"1957\":335455570.0,\"1958\":7.203732698e+17,\"1959\":77528520.0,\"1960\":1.498973279e+18,\"1961\":null,\"1962\":1066202484.0,\"1963\":640893.0,\"1964\":8.619396453e+17,\"1965\":15152752.0,\"1966\":15152752.0,\"1967\":15152752.0,\"1968\":460246990.0,\"1969\":767.0,\"1970\":null,\"1971\":767.0,\"1972\":42958829.0,\"1973\":19631069.0,\"1974\":24443284.0,\"1975\":635608354.0,\"1976\":2884771.0,\"1977\":null,\"1978\":18267548.0,\"1979\":523248016.0,\"1980\":523248016.0,\"1981\":7998482.0,\"1982\":9229672.0,\"1983\":2572956582.0,\"1984\":14562685.0,\"1985\":759251.0,\"1986\":20776147.0,\"1987\":4456498874.0,\"1988\":564111558.0,\"1989\":18267548.0,\"1990\":null,\"1991\":767.0,\"1992\":131546062.0,\"1993\":9130702.0,\"1994\":153503737.0,\"1995\":1722806024.0,\"1996\":539010491.0,\"1997\":1568858138.0,\"1998\":1.377280394e+18,\"1999\":1.451919101e+18,\"2000\":263826460.0,\"2001\":127503320.0,\"2002\":7.117604674e+17,\"2003\":15438913.0,\"2004\":1.250830692e+18,\"2005\":36921996.0,\"2006\":153503737.0,\"2007\":2884771.0,\"2008\":20402945.0,\"2009\":177583133.0,\"2010\":635608354.0,\"2011\":19897138.0,\"2012\":635608354.0,\"2013\":32836225.0,\"2014\":744601892.0,\"2015\":312677640.0,\"2016\":null,\"2017\":null,\"2018\":41591898.0,\"2019\":1367531.0,\"2020\":43061739.0,\"2021\":1.436914143e+18,\"2022\":null,\"2023\":87818409.0,\"2024\":43061739.0,\"2025\":116363549.0,\"2026\":9300262.0,\"2027\":564111558.0,\"2028\":3104228294.0,\"2029\":3104228294.0,\"2030\":7.36279751e+17,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":89761235.0,\"2035\":15766082.0,\"2036\":15179672.0,\"2037\":17871088.0,\"2038\":131880063.0,\"2039\":43061739.0,\"2040\":1424639970.0,\"2041\":539010491.0,\"2042\":640893.0,\"2043\":1.080477289e+18,\"2044\":427630477.0,\"2045\":427630477.0,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":8.506317952e+17,\"2050\":null,\"2051\":null,\"2052\":42589787.0,\"2053\":403033229.0,\"2054\":null,\"2055\":null,\"2056\":15764644.0,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":7.474207515e+17,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":1.524508089e+18,\"2068\":1.524508089e+18,\"2069\":1.524508089e+18,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":414962189.0,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":1.387101621e+18,\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":599065130.0,\"2097\":57268394.0,\"2098\":2475407894.0,\"2099\":599065130.0,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":1.491584644e+18,\"2106\":null,\"2107\":1.394047839e+18,\"2108\":1.524698434e+18,\"2109\":1.177976673e+18,\"2110\":null,\"2111\":201237617.0,\"2112\":9.892345114e+17,\"2113\":1.508516531e+18,\"2114\":1.053790262e+18,\"2115\":1.493758777e+18,\"2116\":1.36945977e+18,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":17839398.0,\"2123\":2800581040.0,\"2124\":254117355.0,\"2125\":21764428.0,\"2126\":21408400.0,\"2127\":2451476942.0,\"2128\":1.253485143e+18,\"2129\":612473.0,\"2130\":null,\"2131\":17469289.0,\"2132\":998380790.0,\"2133\":null,\"2134\":90880428.0,\"2135\":null,\"2136\":1.222773302e+18,\"2137\":133016978.0,\"2138\":1.111662652e+18,\"2139\":3150940290.0,\"2140\":155942845.0,\"2141\":20368663.0,\"2142\":612473.0,\"2143\":19706851.0,\"2144\":23485648.0,\"2145\":null,\"2146\":28785486.0,\"2147\":27284203.0,\"2148\":177564016.0,\"2149\":42407972.0,\"2150\":null,\"2151\":15464697.0,\"2152\":2353605901.0,\"2153\":42407972.0,\"2154\":1367531.0,\"2155\":3108351.0,\"2156\":28785486.0,\"2157\":15012486.0,\"2158\":87818409.0,\"2159\":8350912.0,\"2160\":1652541.0,\"2161\":133663801.0,\"2162\":177564016.0,\"2163\":2467791.0,\"2164\":4135390517.0,\"2165\":20094409.0,\"2166\":70778344.0,\"2167\":15464697.0,\"2168\":288755234.0,\"2169\":18643437.0,\"2170\":18643437.0,\"2171\":18643437.0,\"2172\":123327472.0,\"2173\":950531.0,\"2174\":38271276.0,\"2175\":14808226.0,\"2176\":1957610664.0,\"2177\":123276343.0,\"2178\":null,\"2179\":36990709.0,\"2180\":380285402.0,\"2181\":1316331686.0,\"2182\":47035436.0,\"2183\":203822998.0,\"2184\":7.65599357e+17,\"2185\":1.066972568e+18,\"2186\":22138134.0,\"2187\":27284203.0,\"2188\":25250613.0,\"2189\":2800581040.0,\"2190\":96900937.0,\"2191\":1626294277.0,\"2192\":null,\"2193\":1009546724.0,\"2194\":null,\"2195\":7587032.0,\"2196\":3029501171.0,\"2197\":1652541.0,\"2198\":7587032.0,\"2199\":1.425471173e+18,\"2200\":2097571.0,\"2201\":23922797.0,\"2202\":2097571.0,\"2203\":null,\"2204\":3106815751.0,\"2205\":1.339765548e+18,\"2206\":7.358111585e+17,\"2207\":1.339765548e+18,\"2208\":39155029.0,\"2209\":1.219176309e+18,\"2210\":121371581.0,\"2211\":1652541.0,\"2212\":759251.0,\"2213\":759251.0,\"2214\":1652541.0,\"2215\":2097571.0,\"2216\":null,\"2217\":2726051293.0,\"2218\":2956250285.0,\"2219\":null,\"2220\":null,\"2221\":350987335.0,\"2222\":null,\"2223\":42589787.0,\"2224\":9.769950992e+17,\"2225\":1652541.0,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":1.534426499e+18,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":203822998.0,\"2239\":60514666.0,\"2240\":27443744.0,\"2241\":1042307696.0,\"2242\":620632841.0,\"2243\":15012486.0,\"2244\":2279301618.0,\"2245\":23922797.0,\"2246\":3108351.0,\"2247\":471163803.0,\"2248\":2836421.0,\"2249\":1652541.0,\"2250\":2097571.0,\"2251\":720139699.0,\"2252\":30011100.0,\"2253\":126240387.0,\"2254\":1.315053256e+18,\"2255\":1652541.0,\"2256\":143810986.0,\"2257\":7587032.0,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":1.541830905e+18,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":6.950544841e+17,\"2269\":8.763210041e+17,\"2270\":143810986.0,\"2271\":592730371.0,\"2272\":18005085.0,\"2273\":592730371.0,\"2274\":592730371.0,\"2275\":270132611.0,\"2276\":8.573743722e+17,\"2277\":1.280346745e+18,\"2278\":18839785.0,\"2279\":18005085.0,\"2280\":18839785.0,\"2281\":8.18893115e+17,\"2282\":8.18893115e+17,\"2283\":592730371.0,\"2284\":2312904278.0,\"2285\":1100927498.0,\"2286\":121371581.0,\"2287\":49035671.0,\"2288\":3135241.0,\"2289\":14173315.0,\"2290\":1652541.0,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":1.4271348e+18,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":1.535915503e+18,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":1179156710.0,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":312670274.0,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":287453721.0,\"2323\":null,\"2324\":1.482169993e+18,\"2325\":8.190826867e+17,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":1367531.0,\"2337\":22926365.0,\"2338\":224430095.0,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":406842374.0,\"2343\":null,\"2344\":null,\"2345\":15764644.0,\"2346\":null,\"2347\":18304860.0,\"2348\":372142346.0,\"2349\":16973333.0,\"2350\":null,\"2351\":null,\"2352\":184136149.0,\"2353\":null,\"2354\":1652541.0,\"2355\":51241574.0,\"2356\":19489239.0,\"2357\":9.769950992e+17,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":8.435113665e+17,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":6134882.0,\"2398\":null,\"2399\":15764644.0,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":226944459.0,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":2467791.0,\"2411\":17469289.0,\"2412\":779799806.0,\"2413\":1652541.0,\"2414\":1.457869861e+18,\"2415\":56572394.0,\"2416\":69172612.0,\"2417\":18510860.0,\"2418\":19489239.0,\"2419\":136550204.0,\"2420\":1.337112477e+18,\"2421\":376326941.0,\"2422\":376326941.0,\"2423\":376326941.0,\"2424\":14465607.0,\"2425\":1.335493193e+18,\"2426\":1.224702899e+18,\"2427\":551232817.0,\"2428\":551232817.0,\"2429\":551232817.0,\"2430\":551232817.0,\"2431\":551232817.0,\"2432\":551232817.0,\"2433\":14770715.0,\"2434\":27284203.0,\"2435\":27284203.0,\"2436\":27284203.0,\"2437\":2842936406.0,\"2438\":2565360157.0,\"2439\":1.242122661e+18,\"2440\":null,\"2441\":380285402.0,\"2442\":1.185604784e+18,\"2443\":85601740.0,\"2444\":2267964218.0,\"2445\":335673568.0,\"2446\":18956073.0,\"2447\":155814794.0,\"2448\":9.769950992e+17,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":7.547187872e+17,\"2455\":7.547187872e+17,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":19568591.0,\"2464\":34367582.0,\"2465\":321954654.0,\"2466\":1652541.0,\"2467\":88315048.0,\"2468\":8.414892492e+17,\"2469\":20747881.0,\"2470\":2565360157.0,\"2471\":1009546724.0,\"2472\":4765364386.0,\"2473\":1917731.0,\"2474\":7744592.0,\"2475\":1367531.0,\"2476\":2800581040.0,\"2477\":592730371.0,\"2478\":1634248890.0,\"2479\":1917731.0,\"2480\":807095.0,\"2481\":1652541.0,\"2482\":237845487.0,\"2483\":70174349.0,\"2484\":3103505578.0,\"2485\":7627832.0,\"2486\":1.302455126e+18,\"2487\":2461810448.0,\"2488\":1.298372735e+18,\"2489\":592730371.0,\"2490\":592730371.0,\"2491\":1074480192.0,\"2492\":592730371.0,\"2493\":1652541.0,\"2494\":21001599.0,\"2495\":4787411118.0,\"2496\":40709264.0,\"2497\":8.573743722e+17,\"2498\":1877831.0,\"2499\":38142665.0,\"2500\":38021361.0,\"2501\":3065301110.0,\"2502\":87818409.0,\"2503\":1.441111022e+18,\"2504\":7.845754155e+17,\"2505\":1.148299267e+18,\"2506\":3108351.0,\"2507\":41591898.0,\"2508\":41591898.0,\"2509\":1652541.0,\"2510\":8.573743722e+17,\"2511\":1652541.0,\"2512\":7.845754155e+17,\"2513\":1367531.0,\"2514\":17469289.0,\"2515\":3293406121.0,\"2516\":8.573743722e+17,\"2517\":1488026569.0,\"2518\":721451365.0,\"2519\":36139166.0,\"2520\":203226736.0,\"2521\":3135241.0,\"2522\":1.241739791e+18,\"2523\":380648579.0,\"2524\":14994676.0,\"2525\":22869693.0,\"2526\":17525171.0,\"2527\":19706851.0,\"2528\":1.298372735e+18,\"2529\":14293310.0,\"2530\":14173315.0,\"2531\":2097571.0,\"2532\":16133530.0,\"2533\":1.349149097e+18,\"2534\":15115280.0,\"2535\":null,\"2536\":1009546724.0,\"2537\":1652541.0,\"2538\":34367582.0,\"2539\":198573171.0,\"2540\":1.428403959e+18,\"2541\":7.544309657e+17,\"2542\":8.036486957e+17,\"2543\":1.247017297e+18,\"2544\":9.769950992e+17,\"2545\":2775998016.0,\"2546\":null,\"2547\":8.036486957e+17,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":16187637.0,\"2553\":16187637.0,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":8.185689207e+17,\"2559\":9.769950992e+17,\"2560\":9.769950992e+17,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":414962189.0,\"2566\":1652541.0,\"2567\":1009546724.0,\"2568\":268636316.0,\"2569\":603344194.0,\"2570\":24744541.0,\"2571\":3224540611.0,\"2572\":3108351.0,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":44196397.0,\"2603\":1.120633726e+18,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":1.120633726e+18,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":4624133423.0,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":190260428.0,\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":7.173507405e+17,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":320644276.0,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":15764644.0,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":68889214.0,\"2681\":null,\"2682\":null,\"2683\":1.552506168e+18,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":26516576.0,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":1.551171425e+18,\"2702\":71594919.0,\"2703\":712927525.0,\"2704\":712927525.0,\"2705\":712927525.0,\"2706\":712927525.0,\"2707\":null,\"2708\":1.446961e+18,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":160548495.0,\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":1.199068814e+18,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":40548465.0,\"2749\":null,\"2750\":15764644.0,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":15764644.0,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":1.379763568e+18,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":2461810448.0,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":712927525.0,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":14697575.0,\"2838\":null,\"2839\":15764644.0,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":430723686.0,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":4970411.0,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":249677516.0,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":1.388960612e+18,\"2906\":1.391005482e+18,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":1.235930252e+18,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":1.249672283e+18,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":1.497996117e+18,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":11616642.0,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":2801652406.0,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":1.395444138e+18,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":1.525108521e+18,\"3047\":null,\"3048\":15764644.0,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":1.383569838e+18,\"3060\":32660559.0,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":1.353384573e+18,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":1.28234305e+18,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":48264413.0,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":1.349170293e+18,\"3088\":1.119170468e+18,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":1.372108356e+18,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":1.274637255e+18,\"3100\":null,\"3101\":2164455380.0,\"3102\":68334156.0,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":3315017925.0,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":1.126232134e+18,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":1.462548977e+18,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":1550922414.0,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":1.372108356e+18,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":148323720.0,\"3175\":null,\"3176\":1.38018811e+18,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":1428008881.0,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":246103.0,\"3191\":null,\"3192\":9.138961189e+17,\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":1.33170436e+18,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":1.246161298e+18,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":49616273.0,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":859248504.0,\"3245\":null,\"3246\":null,\"3247\":1.431759576e+18,\"3248\":989869530.0,\"3249\":null,\"3250\":1.531909792e+18,\"3251\":1.185352124e+18,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":132759561.0,\"3259\":186891326.0,\"3260\":1.445811191e+18,\"3261\":7.156752184e+17,\"3262\":1.238205589e+18,\"3263\":1.197017532e+18,\"3264\":9.762836143e+17,\"3265\":117042662.0,\"3266\":9.794377716e+17,\"3267\":135295059.0,\"3268\":1.482169993e+18,\"3269\":558797310.0,\"3270\":18168536.0,\"3271\":34613288.0,\"3272\":null,\"3273\":null,\"3274\":266930441.0,\"3275\":3042607684.0,\"3276\":2355632540.0,\"3277\":1.226473615e+18,\"3278\":3315017925.0,\"3279\":8.006298531e+17,\"3280\":39975533.0,\"3281\":29944465.0,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":9.132598763e+17,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":252751061.0,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":1.222894323e+18,\"3318\":null,\"3319\":null,\"3320\":155659213.0,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":1.38018811e+18,\"3326\":584004949.0,\"3327\":1.470452794e+18,\"3328\":7.543932226e+17,\"3329\":null,\"3330\":null,\"3331\":1382488424.0,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":1.317821956e+18,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":1.222894323e+18,\"3347\":null,\"3348\":64643056.0,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":113494390.0,\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":69266428.0,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":1.50838216e+18,\"3401\":null,\"3402\":15764644.0,\"3403\":117810351.0,\"3404\":1.538564519e+18,\"3405\":201237617.0,\"3406\":null,\"3407\":15764644.0,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":2164455380.0,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":9.653690323e+17,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":1.312896963e+18,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":1.507611508e+18,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":1.503920545e+18,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":1.187372312e+18,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":1.181936906e+18,\"3495\":23499976.0,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":15764644.0,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":1.491584644e+18,\"3560\":1.394047839e+18,\"3561\":1.524698434e+18,\"3562\":1.177976673e+18,\"3563\":201237617.0,\"3564\":9.892345114e+17,\"3565\":1.508516531e+18,\"3566\":1.053790262e+18,\"3567\":1.493758777e+18,\"3568\":1.36945977e+18,\"3569\":null,\"3570\":1.292522229e+18,\"3571\":null,\"3572\":null,\"3573\":4135390517.0,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":1.541830905e+18,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":1.535915503e+18,\"3591\":null,\"3592\":1179156710.0,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":1.449089087e+18,\"3625\":864610968.0,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":264248576.0,\"3630\":null,\"3631\":15764644.0,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":430723686.0,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":487118986.0,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":54858891.0,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":4970411.0,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":1363859738.0,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":3999803356.0,\"3717\":null,\"3718\":null,\"3719\":1.432308884e+18,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":1.150749854e+18,\"3730\":null,\"3731\":1.338036292e+18,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":1.388960612e+18,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":1.391005482e+18,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":8.506317952e+17,\"3765\":null,\"3766\":8.506317952e+17,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":2674298212.0,\"3803\":null,\"3804\":9.899351477e+17,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":1.235930252e+18,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":1.030086296e+18,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":4703680090.0,\"3865\":7.470641312e+17,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":493365529.0,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":36670025.0,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":1.001152129e+18,\"3886\":null,\"3887\":192947735.0,\"3888\":null,\"3889\":null,\"3890\":192947735.0,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":1.249672283e+18,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":1.497996117e+18,\"3940\":null,\"3941\":null,\"3942\":1.326176068e+18,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":1.138402595e+18,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":1.231855139e+18,\"3963\":null,\"3964\":11616642.0,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":4125973102.0,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":2801652406.0,\"4003\":3999803356.0,\"4004\":230824232.0,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":9.815247925e+17,\"4031\":35684345.0,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":7.543932226e+17,\"4051\":null,\"4052\":1250914615.0,\"4053\":264248576.0,\"4054\":14879097.0,\"4055\":177583133.0,\"4056\":null,\"4057\":7.543932226e+17,\"4058\":1.190483463e+18,\"4059\":9.105723724e+17,\"4060\":162905859.0,\"4061\":null,\"4062\":24291371.0,\"4063\":1.082877822e+18,\"4064\":211173630.0,\"4065\":24291371.0,\"4066\":8.741774101e+17,\"4067\":1.276790264e+18,\"4068\":1.026733682e+18,\"4069\":248929204.0,\"4070\":450241139.0,\"4071\":null,\"4072\":8.140947306e+17,\"4073\":7.543932226e+17,\"4074\":69271273.0,\"4075\":1.546932581e+18,\"4076\":9.762836143e+17,\"4077\":1.276790264e+18,\"4078\":24291371.0,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":1.395444138e+18,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":7587032.0,\"4100\":null,\"4101\":1.384148846e+18,\"4102\":null,\"4103\":1.384148846e+18,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":742143.0,\"4111\":177113737.0,\"4112\":1.472179072e+18,\"4113\":null,\"4114\":501291577.0,\"4115\":1.126471048e+18,\"4116\":27998788.0,\"4117\":1.266608901e+18,\"4118\":null,\"4119\":null,\"4120\":1.510942253e+18,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":9.372989968e+17,\"4128\":null,\"4129\":null,\"4130\":8.506317952e+17,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":1.509931141e+18,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":1.383569838e+18,\"4154\":32660559.0,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":8.335444526e+17,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":1.353384573e+18,\"4170\":null,\"4171\":null,\"4172\":330262748.0,\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":1.28234305e+18,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":224317583.0,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":1.050779472e+18,\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":1.119170468e+18,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":1.372108356e+18,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":2164455380.0,\"4257\":null,\"4258\":8.574943739e+17,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":1901298962.0,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":192947735.0,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":1.126232134e+18,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":1.277803354e+18,\"4322\":null,\"4323\":925179498.0,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":9.721116952e+17,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":1.462548977e+18,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":1550922414.0,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":1.372108356e+18,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":9.323984378e+17,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":1.193618823e+18,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":789605024.0,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":148323720.0,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":1.38018811e+18,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":1428008881.0,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":246103.0,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":1.33170436e+18,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":1.509148638e+18,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":3999803356.0,\"4547\":null,\"4548\":null,\"4549\":1.246161298e+18,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":2540367001.0,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":215052012.0,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":1.431759576e+18,\"4618\":989869530.0,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":1.531909792e+18,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":132759561.0,\"4633\":186891326.0,\"4634\":1.445811191e+18,\"4635\":7.156752184e+17,\"4636\":1.238205589e+18,\"4637\":null,\"4638\":9.762836143e+17,\"4639\":117042662.0,\"4640\":9.794377716e+17,\"4641\":135295059.0,\"4642\":1.482169993e+18,\"4643\":558797310.0,\"4644\":18168536.0,\"4645\":7.587015971e+17,\"4646\":null,\"4647\":34613288.0,\"4648\":null,\"4649\":null,\"4650\":266930441.0,\"4651\":3042607684.0,\"4652\":2355632540.0,\"4653\":1.226473615e+18,\"4654\":3315017925.0,\"4655\":null,\"4656\":8.006298531e+17,\"4657\":39975533.0,\"4658\":29944465.0,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":307931586.0,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":252751061.0,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":759251.0,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":1.475721398e+18,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":155659213.0,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":1.377550429e+18,\"4748\":1.377550429e+18,\"4749\":1954402777.0,\"4750\":null,\"4751\":2531005222.0,\"4752\":null,\"4753\":null,\"4754\":30354991.0,\"4755\":207920369.0,\"4756\":1954402777.0,\"4757\":null,\"4758\":null,\"4759\":1.38018811e+18,\"4760\":584004949.0,\"4761\":null,\"4762\":1.470452794e+18,\"4763\":null,\"4764\":7.543932226e+17,\"4765\":null,\"4766\":null,\"4767\":1382488424.0,\"4768\":15764644.0,\"4769\":null,\"4770\":null,\"4771\":117042662.0,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":1.317821956e+18,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":1.523062194e+18,\"4827\":113494390.0,\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":69266428.0,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":1.23631119e+18,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":7587032.0,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":1.38018811e+18,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":1.50838216e+18,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":15764644.0,\"4941\":15764644.0,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":201237617.0,\"4947\":null,\"4948\":15764644.0,\"4949\":null,\"4950\":34713362.0,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":15286685.0,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":1.201953403e+18,\"4975\":null,\"4976\":null,\"4977\":1652541.0,\"4978\":null,\"4979\":null,\"4980\":1891490382.0,\"4981\":2164455380.0,\"4982\":1.50794712e+18,\"4983\":null,\"4984\":null,\"4985\":15392486.0,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":1.042520177e+18,\"4993\":259914358.0,\"4994\":1.042520177e+18,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"in_reply_to_screen_name\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":\"flightradar24\",\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":\"renoomokri\",\"16\":null,\"17\":\"SpeakerPelosi\",\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":\"Greenhive5\",\"29\":null,\"30\":null,\"31\":null,\"32\":\"XHNews\",\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":\"SmallAlhaji_\",\"53\":null,\"54\":\"CaksusDas\",\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":\"AJEnglish\",\"64\":null,\"65\":\"FoxNews\",\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":\"guardian\",\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":\"goal\",\"93\":null,\"94\":\"idreesali114\",\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":\"FunJumbo\",\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":\"NectarBeautyHub\",\"112\":null,\"113\":null,\"114\":\"thuanphat1975\",\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":\"USUN\",\"127\":\"safareerealty\",\"128\":null,\"129\":null,\"130\":\"Blacckk_j\",\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":\"estressecurado\",\"153\":null,\"154\":null,\"155\":null,\"156\":\"TherealUGman\",\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":\"Hope_wisdom2\",\"164\":null,\"165\":\"Hope_wisdom2\",\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":\"eajorng\",\"204\":null,\"205\":null,\"206\":\"Oguntokunmichea\",\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":\"httpxellise\",\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":\"SpiceRadioNg\",\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":\"petrouz2\",\"271\":\"OfficialPDPNig\",\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":\"officialABAT\",\"281\":null,\"282\":null,\"283\":\"BBCAfrica\",\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":\"Remmzor__\",\"295\":null,\"296\":null,\"297\":\"davido\",\"298\":null,\"299\":null,\"300\":\"davido\",\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":\"AmbassadorDKing\",\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":\"Qdpaper2\",\"354\":null,\"355\":null,\"356\":\"OpeyemiArinola5\",\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":\"ChimarokeNamani\",\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":\"Consigliere909\",\"380\":null,\"381\":\"minorta\",\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":\"FreddyNtafumila\",\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":\"IBEDC_NG\",\"423\":\"NectarBeautyHub\",\"424\":null,\"425\":\"vdjtflexx\",\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":\"kendaroza2\",\"453\":\"detoff\",\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":\"instablog9ja\",\"475\":null,\"476\":\"nigeriandailies\",\"477\":\"renoomokri\",\"478\":\"segalink\",\"479\":\"atiku\",\"480\":null,\"481\":\"instablog9ja\",\"482\":\"triclowns\",\"483\":\"Chude__\",\"484\":\"emersonpalmieri\",\"485\":null,\"486\":\"MobilePunch\",\"487\":\"NGRLabourParty\",\"488\":\"EfuaIsEnuf\",\"489\":\"MobilePunch\",\"490\":\"GovSamuelOrtom\",\"491\":\"GazetteNGR\",\"492\":\"IAOkowa\",\"493\":\"LeadershipNGA\",\"494\":\"Roland_speaks\",\"495\":null,\"496\":\"BBNaija\",\"497\":\"instablog9ja\",\"498\":\"daily_trust\",\"499\":\"OBIMAKAMA2023\",\"500\":\"KAFTAN_TV\",\"501\":\"GazetteNGR\",\"502\":\"MobilePunch\",\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":\"DemetersF\",\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":\"SkyNews\",\"524\":null,\"525\":\"friendlilycoach\",\"526\":null,\"527\":\"friendlilycoach\",\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":\"BBCWorld\",\"535\":\"iyaboawokoya\",\"536\":\"essteeem\",\"537\":null,\"538\":\"Darasimi__\",\"539\":\"chiiinnnyyy_\",\"540\":\"symplyDAPO\",\"541\":\"Letter_to_Jack\",\"542\":null,\"543\":null,\"544\":\"JoyOlukorede\",\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":\"Secominfo\",\"552\":null,\"553\":null,\"554\":\"Hope_wisdom2\",\"555\":null,\"556\":null,\"557\":null,\"558\":\"MaGeAuNaturel\",\"559\":null,\"560\":null,\"561\":null,\"562\":\"SpeakerPelosi\",\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":\"the_big_4lf\",\"581\":\"wizkidayo\",\"582\":null,\"583\":null,\"584\":null,\"585\":\"Jude_anarmz\",\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":\"rovercrc\",\"598\":null,\"599\":null,\"600\":\"FabrizioRomano\",\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":\"iam_timotee\",\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":\"adebayotosin80\",\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":\"PeterObi\",\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":\"PressSec\",\"668\":null,\"669\":\"2dotsmarket\",\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":\"NicertGroup\",\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":\"accessbank_help\",\"692\":null,\"693\":null,\"694\":null,\"695\":\"el_incredibilis\",\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":\"Naija_PR\",\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":\"DavidHundeyin\",\"745\":null,\"746\":\"davido\",\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":\"PiCoreTeam\",\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":\"anderson_alozie\",\"765\":null,\"766\":\"fashemmy2010\",\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":\"Debhieofficial\",\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":\"KyivIndependent\",\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":\"UnityRadioFMTV\",\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":\"NicertGroup\",\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":\"uncle3olafood\",\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":\"Queen_Chamila\",\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":\"EuropaLeague\",\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":\"Firmus_Advisory\",\"900\":\"DayoAmusa\",\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":\"carterefe__\",\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":\"AdogaMikeOyi\",\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":\"JeffreyGuterman\",\"957\":null,\"958\":null,\"959\":null,\"960\":\"dixon_davie\",\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":\"AT13Oficial\",\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":\"audacia_prime_\",\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":\"NectarBeautyHub\",\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":\"OjaDaddy7\",\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":\"Makiri_manuel\",\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":\"burnaboy\",\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":\"MangasJavier\",\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":\"Neatioking\",\"1084\":\"TECNOMobileNG\",\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":\"Voiceof_Fleming\",\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":\"DJ_TUNEZ\",\"1097\":\"Badboytimz\",\"1098\":\"Halcy1023\",\"1099\":\"dennisblessed42\",\"1100\":\"zeenatmikail2\",\"1101\":null,\"1102\":null,\"1103\":\"KAFTAN_TV\",\"1104\":\"ShehuSani\",\"1105\":\"RealMrumaDrive\",\"1106\":\"HenshawKate\",\"1107\":\"Sabinus1_\",\"1108\":\"ManUtd\",\"1109\":\"bbchausa\",\"1110\":\"DerekJGrossman\",\"1111\":null,\"1112\":\"Arsenal\",\"1113\":null,\"1114\":null,\"1115\":\"dawisu\",\"1116\":\"DrOlusesan\",\"1117\":\"IAmENISA\",\"1118\":\"UmmyAbdullahi\",\"1119\":\"DavidHundeyin\",\"1120\":null,\"1121\":\"capitalcom\",\"1122\":\"vanguardngrnews\",\"1123\":\"UBAGroup\",\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":\"lawehilegbu\",\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":\"Quicktake\",\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":\"CNN\",\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":\"CGMeifangZhang\",\"1211\":null,\"1212\":null,\"1213\":\"QUEENOFDBLUES1\",\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":\"Cristiano\",\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":\"iamhmmad1\",\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":\"iamhmmad1\",\"1239\":\"thecableng\",\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":\"AishaYesufu\",\"1246\":null,\"1247\":null,\"1248\":\"KamalaHarris\",\"1249\":\"Oghalegreatness\",\"1250\":\"thecableng\",\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":\"carterefe__\",\"1258\":\"lawrencekitema\",\"1259\":null,\"1260\":\"delick_manzi\",\"1261\":null,\"1262\":\"instablog9ja\",\"1263\":null,\"1264\":null,\"1265\":\"gyaigyyimii\",\"1266\":\"SpeakerPelosi\",\"1267\":null,\"1268\":null,\"1269\":\"ShehuSani\",\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":\"intelfin_global\",\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":\"CGMeifangZhang\",\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":\"RT_com\",\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":\"shinax_drolls\",\"1334\":\"KarenBassLA\",\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":\"MTNNG\",\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":\"_I_K_E_H_\",\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":\"SkyNews\",\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":\"carterefe__\",\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":\"ILRUSSO1\",\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":\"SpeakerPelosi\",\"1464\":null,\"1465\":\"SpeakerPelosi\",\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":\"SpeakerPelosi\",\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":\"firstladyship\",\"1475\":null,\"1476\":\"SpeakerPelosi\",\"1477\":null,\"1478\":\"business\",\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":\"BBCWorld\",\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":\"JohnRoss43\",\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":\"RonnyJacksonTX\",\"1508\":null,\"1509\":null,\"1510\":\"Reuters\",\"1511\":null,\"1512\":null,\"1513\":\"nexta_tv\",\"1514\":\"accessbank_help\",\"1515\":\"Stargazer_28671\",\"1516\":null,\"1517\":null,\"1518\":\"disclosetv\",\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":\"MrGenius_Tips\",\"1526\":\"kudylata\",\"1527\":\"MrGenius_Tips\",\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":\"ABC\",\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":\"SpeakerPelosi\",\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":\"FrancisOnyishi\",\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":\"dan_nyeche\",\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":\"Funny_African01\",\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":\"Themastercutz\",\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":\"Erc1974C\",\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":\"MahuiChina\",\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":\"TheInsiderPaper\",\"1751\":null,\"1752\":\"TheInsiderPaper\",\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":\"GermanChino7\",\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":\"WWE\",\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":\"Dragondescendan\",\"1785\":null,\"1786\":null,\"1787\":\"dan_nyeche\",\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":\"Quicktake\",\"1795\":\"FoxNews\",\"1796\":\"TheInsiderPaper\",\"1797\":null,\"1798\":null,\"1799\":\"hypealert_gh\",\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":\"Firmus_Advisory\",\"1805\":\"AmbLiuXiaoMing\",\"1806\":\"AndyBxxx\",\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":\"CryptoRusputin\",\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":\"oyewo_yunus\",\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":\"adebayotosin80\",\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":\"kalibaro\",\"1917\":null,\"1918\":\"DevonHeinen\",\"1919\":null,\"1920\":\"faststocknewss\",\"1921\":\"financialjuice\",\"1922\":\"dimitrilascaris\",\"1923\":null,\"1924\":\"cnni\",\"1925\":null,\"1926\":null,\"1927\":\"tenzin_tsenpey\",\"1928\":\"SecBlinken\",\"1929\":null,\"1930\":\"SpeakerPelosi\",\"1931\":\"lesiavasylenko\",\"1932\":\"MZHemingway\",\"1933\":null,\"1934\":\"MZHemingway\",\"1935\":\"amyklobuchar\",\"1936\":\"lesiavasylenko\",\"1937\":\"JoJoFromJerz\",\"1938\":\"McFaul\",\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":\"markmackinnon\",\"1945\":\"matthewstoller\",\"1946\":\"matthewstoller\",\"1947\":null,\"1948\":\"JamesTHarris\",\"1949\":\"ryankakiuchan\",\"1950\":\"usatodayDC\",\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":\"townhallcom\",\"1957\":\"ReutersWorld\",\"1958\":\"LennyDykstra\",\"1959\":\"YanniKouts\",\"1960\":\"WarMonitor3\",\"1961\":null,\"1962\":\"Ehsan_Butt\",\"1963\":\"EWErickson\",\"1964\":\"Faytuks\",\"1965\":\"ZackCooper\",\"1966\":\"ZackCooper\",\"1967\":\"ZackCooper\",\"1968\":\"AnthonyAdragna\",\"1969\":\"xeni\",\"1970\":null,\"1971\":\"xeni\",\"1972\":\"CBSEveningNews\",\"1973\":\"iainmarlow\",\"1974\":\"SullyCNBC\",\"1975\":\"20committee\",\"1976\":\"Newsweek\",\"1977\":null,\"1978\":\"AtlanticCouncil\",\"1979\":\"jsolomonReports\",\"1980\":\"jsolomonReports\",\"1981\":\"usatodayDC\",\"1982\":\"fox5ny\",\"1983\":\"StephenGlahn\",\"1984\":\"rwang0\",\"1985\":\"CNN\",\"1986\":\"seanspicer\",\"1987\":\"jankibaat1\",\"1988\":\"bpolitics\",\"1989\":\"AtlanticCouncil\",\"1990\":null,\"1991\":\"xeni\",\"1992\":\"SenRickScott\",\"1993\":\"starsandstripes\",\"1994\":\"nktpnd\",\"1995\":\"wartranslated\",\"1996\":\"_JakubJanda\",\"1997\":\"MonaSalama_\",\"1998\":\"yeongno3\",\"1999\":\"en_haili\",\"2000\":\"anniefreyshow\",\"2001\":\"SpecCoffeeHouse\",\"2002\":\"WIONews\",\"2003\":\"MailOnline\",\"2004\":\"StockMKTNewz\",\"2005\":\"wildeyeq\",\"2006\":\"nktpnd\",\"2007\":\"Newsweek\",\"2008\":\"CNBC\",\"2009\":\"atiku\",\"2010\":\"20committee\",\"2011\":\"IndiaToday\",\"2012\":\"20committee\",\"2013\":\"bmusonza\",\"2014\":\"AmichaiStein1\",\"2015\":\"ftworldnews\",\"2016\":null,\"2017\":null,\"2018\":\"Joelsherman1\",\"2019\":\"FoxNews\",\"2020\":\"RnaudBertrand\",\"2021\":\"GarlandSculptor\",\"2022\":null,\"2023\":\"guardian\",\"2024\":\"RnaudBertrand\",\"2025\":\"SameeraKhan\",\"2026\":\"politico\",\"2027\":\"bpolitics\",\"2028\":\"OliviaSiongCNA\",\"2029\":\"OliviaSiongCNA\",\"2030\":\"PaulHuangReport\",\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":\"tingtingliuTVBS\",\"2035\":\"joshrogin\",\"2036\":\"WalesOnline\",\"2037\":\"NavalInstitute\",\"2038\":\"G_CURLEY\",\"2039\":\"RnaudBertrand\",\"2040\":\"IuliiaMendel\",\"2041\":\"_JakubJanda\",\"2042\":\"EWErickson\",\"2043\":\"RepMarkGreen\",\"2044\":\"AndrewDesiderio\",\"2045\":\"AndrewDesiderio\",\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":\"Hope_wisdom2\",\"2050\":null,\"2051\":null,\"2052\":\"Newsquawk\",\"2053\":\"Adedayomichaels\",\"2054\":null,\"2055\":null,\"2056\":\"SpeakerPelosi\",\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":\"serial_ranter\",\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":\"charles_etoh\",\"2068\":\"charles_etoh\",\"2069\":\"charles_etoh\",\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":\"MintPressNews\",\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":\"dan_nyeche\",\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":\"ReutersChina\",\"2097\":\"katie_martin_fx\",\"2098\":\"hugolowell\",\"2099\":\"ReutersChina\",\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":\"pinetwork_world\",\"2106\":null,\"2107\":\"khollyjhay\",\"2108\":\"99tension\",\"2109\":\"___Chachi\",\"2110\":null,\"2111\":\"firstladyship\",\"2112\":\"VictorIsrael_\",\"2113\":\"_Just_Malik\",\"2114\":\"oou_prime\",\"2115\":\"FilmmeTalk\",\"2116\":\"danielaflorezz_\",\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":\"KenRoth\",\"2123\":\"BillKristol\",\"2124\":\"Morning_Joe\",\"2125\":\"The_RockTrading\",\"2126\":\"destandaard\",\"2127\":\"SwarajyaMag\",\"2128\":\"monitoreamos\",\"2129\":\"BBCNews\",\"2130\":null,\"2131\":\"nypost\",\"2132\":\"SimonLevyMx\",\"2133\":null,\"2134\":\"Jeltjeb\",\"2135\":null,\"2136\":\"visegrad24\",\"2137\":\"ustaiwan\",\"2138\":\"QuincyInst\",\"2139\":\"thewire_in\",\"2140\":\"James_E_White\",\"2141\":\"rommari\",\"2142\":\"BBCNews\",\"2143\":\"TelegraphWorld\",\"2144\":\"jeffreyatucker\",\"2145\":null,\"2146\":\"ABC\",\"2147\":\"JeromeTaylor\",\"2148\":\"SteveDeaceShow\",\"2149\":\"Joyce_Karam\",\"2150\":null,\"2151\":\"JuddLegum\",\"2152\":\"GOPChairwoman\",\"2153\":\"Joyce_Karam\",\"2154\":\"FoxNews\",\"2155\":\"WSJ\",\"2156\":\"ABC\",\"2157\":\"CBSNews\",\"2158\":\"guardian\",\"2159\":\"Le_Figaro\",\"2160\":\"Reuters\",\"2161\":\"BFMTV\",\"2162\":\"SteveDeaceShow\",\"2163\":\"washingtonpost\",\"2164\":\"wokeyimm\",\"2165\":\"BarbMcQuade\",\"2166\":\"conorsen\",\"2167\":\"JuddLegum\",\"2168\":\"EliotHiggins\",\"2169\":\"PrisonPlanet\",\"2170\":\"PrisonPlanet\",\"2171\":\"PrisonPlanet\",\"2172\":\"peterbakernyt\",\"2173\":\"pbump\",\"2174\":\"mtaibbi\",\"2175\":\"EURACTIV\",\"2176\":\"SamRamani2\",\"2177\":\"BarstoolBigCat\",\"2178\":null,\"2179\":\"RULiquid\",\"2180\":\"DailyMail\",\"2181\":\"alessionaval\",\"2182\":\"jeff_kaye\",\"2183\":\"brianhioe\",\"2184\":\"ivan_8848\",\"2185\":\"HindustanTimes\",\"2186\":\"willripleyCNN\",\"2187\":\"JeromeTaylor\",\"2188\":\"andreasharsono\",\"2189\":\"BillKristol\",\"2190\":\"ndtvfeed\",\"2191\":\"spectatorindex\",\"2192\":null,\"2193\":\"AnonOpsSE\",\"2194\":null,\"2195\":\"SkyNews\",\"2196\":\"ltntw\",\"2197\":\"Reuters\",\"2198\":\"SkyNews\",\"2199\":\"AsiaFreePress\",\"2200\":\"cnni\",\"2201\":\"SCMPNews\",\"2202\":\"cnni\",\"2203\":null,\"2204\":\"MirMAKOfficial\",\"2205\":\"taiwanplusnews\",\"2206\":\"nathanlawkc\",\"2207\":\"taiwanplusnews\",\"2208\":\"mkraju\",\"2209\":\"dw_hotspotasia\",\"2210\":\"Taiwan_Today\",\"2211\":\"Reuters\",\"2212\":\"CNN\",\"2213\":\"CNN\",\"2214\":\"Reuters\",\"2215\":\"cnni\",\"2216\":null,\"2217\":\"Firmus_Advisory\",\"2218\":\"rozemareey\",\"2219\":null,\"2220\":null,\"2221\":\"KeithJKrach\",\"2222\":null,\"2223\":\"Newsquawk\",\"2224\":\"MOFA_Taiwan\",\"2225\":\"Reuters\",\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":\"iamalivingchild\",\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":\"brianhioe\",\"2239\":\"Focus_Taiwan\",\"2240\":\"rosemaryCNN\",\"2241\":\"LinkeviciusL\",\"2242\":\"nytchinese\",\"2243\":\"CBSNews\",\"2244\":\"lukedepulford\",\"2245\":\"SCMPNews\",\"2246\":\"WSJ\",\"2247\":\"GilbertCollard\",\"2248\":\"MSNBC\",\"2249\":\"Reuters\",\"2250\":\"cnni\",\"2251\":\"HannaLiubakova\",\"2252\":\"yarotrof\",\"2253\":\"RediTlhabi\",\"2254\":\"JujuliaGrace\",\"2255\":\"Reuters\",\"2256\":\"dw_chinese\",\"2257\":\"SkyNews\",\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":\"HighlifeeNg\",\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":\"politicalelle\",\"2269\":\"cskun1989\",\"2270\":\"dw_chinese\",\"2271\":\"JackPosobiec\",\"2272\":\"MZHemingway\",\"2273\":\"JackPosobiec\",\"2274\":\"JackPosobiec\",\"2275\":\"lindyli\",\"2276\":\"S7i5FV0JOz6sV3A\",\"2277\":\"meimei1935\",\"2278\":\"narendramodi\",\"2279\":\"MZHemingway\",\"2280\":\"narendramodi\",\"2281\":\"JoJoFromJerz\",\"2282\":\"JoJoFromJerz\",\"2283\":\"JackPosobiec\",\"2284\":\"Realrclark25\",\"2285\":\"DDNewslive\",\"2286\":\"Taiwan_Today\",\"2287\":\"benedictrogers\",\"2288\":\"RedState\",\"2289\":\"NBCNews\",\"2290\":\"Reuters\",\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":\"Corndog98368908\",\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":\"OZONNAX\",\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":\"IM_CITIZENX\",\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":\"LadiPoe\",\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":\"garyhgoodridge\",\"2323\":null,\"2324\":\"Sabinus1_\",\"2325\":\"OfficialSaskay\",\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":\"FoxNews\",\"2337\":\"Tagesspiegel\",\"2338\":\"aawsat_eng\",\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":\"JolyonMaugham\",\"2343\":null,\"2344\":null,\"2345\":\"SpeakerPelosi\",\"2346\":null,\"2347\":\"Sootradhar\",\"2348\":\"svtnyheter\",\"2349\":\"Independent\",\"2350\":null,\"2351\":null,\"2352\":\"MarkHalperin\",\"2353\":null,\"2354\":\"Reuters\",\"2355\":\"AP\",\"2356\":\"Jerusalem_Post\",\"2357\":\"MOFA_Taiwan\",\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":\"Vindicatedchidi\",\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":\"dwnews\",\"2398\":null,\"2399\":\"SpeakerPelosi\",\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":\"cuppymusic\",\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":\"washingtonpost\",\"2411\":\"nypost\",\"2412\":\"catmamgo\",\"2413\":\"Reuters\",\"2414\":\"BeijingEvening\",\"2415\":\"dajiyuan\",\"2416\":\"arabnews\",\"2417\":\"MotherJones\",\"2418\":\"Jerusalem_Post\",\"2419\":\"scottwongDC\",\"2420\":\"BrianKoontz59\",\"2421\":\"StephanieAYang\",\"2422\":\"StephanieAYang\",\"2423\":\"StephanieAYang\",\"2424\":\"AHMalcolm\",\"2425\":\"TimednewsC\",\"2426\":\"SoyDonCruz\",\"2427\":\"B_Estefan\",\"2428\":\"B_Estefan\",\"2429\":\"B_Estefan\",\"2430\":\"B_Estefan\",\"2431\":\"B_Estefan\",\"2432\":\"B_Estefan\",\"2433\":\"swissbusiness\",\"2434\":\"JeromeTaylor\",\"2435\":\"JeromeTaylor\",\"2436\":\"JeromeTaylor\",\"2437\":\"AusOfficeTPE\",\"2438\":\"HansMahncke\",\"2439\":\"SpecialSitsNews\",\"2440\":null,\"2441\":\"DailyMail\",\"2442\":\"TonyMoonbeam\",\"2443\":\"Prison_Health\",\"2444\":\"CurtisSChin\",\"2445\":\"henry_chuangVB\",\"2446\":\"dcexaminer\",\"2447\":\"iingwen\",\"2448\":\"MOFA_Taiwan\",\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":\"terror_alarm\",\"2455\":\"terror_alarm\",\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":\"ananavarro\",\"2464\":\"TimRunsHisMouth\",\"2465\":\"kylenabecker\",\"2466\":\"Reuters\",\"2467\":\"coldxman\",\"2468\":\"DemocracyDocket\",\"2469\":\"kyrstensinema\",\"2470\":\"HansMahncke\",\"2471\":\"AnonOpsSE\",\"2472\":\"ChuckCallesto\",\"2473\":\"thehill\",\"2474\":\"TODAYshow\",\"2475\":\"FoxNews\",\"2476\":\"BillKristol\",\"2477\":\"JackPosobiec\",\"2478\":\"kenklippenstein\",\"2479\":\"thehill\",\"2480\":\"nytimes\",\"2481\":\"Reuters\",\"2482\":\"GeorgeTakei\",\"2483\":\"JeremyDBoreing\",\"2484\":\"AaronParnas\",\"2485\":\"Alkanz\",\"2486\":\"Leftylockdowns1\",\"2487\":\"TeamPelosi\",\"2488\":\"RonFilipkowski\",\"2489\":\"JackPosobiec\",\"2490\":\"JackPosobiec\",\"2491\":\"SenTedCruz\",\"2492\":\"JackPosobiec\",\"2493\":\"Reuters\",\"2494\":\"BrianKarem\",\"2495\":\"BryanDeanWright\",\"2496\":\"Feinsand\",\"2497\":\"S7i5FV0JOz6sV3A\",\"2498\":\"nytimesworld\",\"2499\":\"le_Parisien\",\"2500\":\"baseballcrank\",\"2501\":\"NBSaphierMD\",\"2502\":\"guardian\",\"2503\":\"LukeMixonLA\",\"2504\":\"TheRealHoarse\",\"2505\":\"MaxMillerOH\",\"2506\":\"WSJ\",\"2507\":\"Joelsherman1\",\"2508\":\"Joelsherman1\",\"2509\":\"Reuters\",\"2510\":\"S7i5FV0JOz6sV3A\",\"2511\":\"Reuters\",\"2512\":\"TheRealHoarse\",\"2513\":\"FoxNews\",\"2514\":\"nypost\",\"2515\":\"sahouraxo\",\"2516\":\"S7i5FV0JOz6sV3A\",\"2517\":\"ZaleskiLuke\",\"2518\":\"ByRobertMurray\",\"2519\":\"JonHeyman\",\"2520\":\"SharylAttkisson\",\"2521\":\"RedState\",\"2522\":\"mavivatannet\",\"2523\":\"AFP\",\"2524\":\"kittypurrzog\",\"2525\":\"SchmittNYC\",\"2526\":\"Variety\",\"2527\":\"TelegraphWorld\",\"2528\":\"RonFilipkowski\",\"2529\":\"TIME\",\"2530\":\"NBCNews\",\"2531\":\"cnni\",\"2532\":\"DefenceHQ\",\"2533\":\"POTUS\",\"2534\":\"PalmerReport\",\"2535\":null,\"2536\":\"AnonOpsSE\",\"2537\":\"Reuters\",\"2538\":\"TimRunsHisMouth\",\"2539\":\"GrecianFormula\",\"2540\":\"OsintTv\",\"2541\":\"PM_Thornton\",\"2542\":\"eha_news\",\"2543\":\"MoNDefense\",\"2544\":\"MOFA_Taiwan\",\"2545\":\"HuXijin_GT\",\"2546\":null,\"2547\":\"eha_news\",\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":\"ChadPergram\",\"2553\":\"ChadPergram\",\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":\"thejcoop\",\"2559\":\"MOFA_Taiwan\",\"2560\":\"MOFA_Taiwan\",\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":\"MintPressNews\",\"2566\":\"Reuters\",\"2567\":\"AnonOpsSE\",\"2568\":\"idreesali114\",\"2569\":\"BaldingsWorld\",\"2570\":\"lemondefr\",\"2571\":\"mrbcyber\",\"2572\":\"WSJ\",\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":\"elonmusk\",\"2603\":\"ZelenskyyUa\",\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":\"ZelenskyyUa\",\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":\"salaamedia\",\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":\"AsaSitole\",\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":\"PhophiRamathuba\",\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":\"SAPoliceService\",\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":\"SpeakerPelosi\",\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":\"Naked_Dj\",\"2681\":null,\"2682\":null,\"2683\":\"esonasekeleni\",\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":\"bookingcom\",\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":\"crescent_forex\",\"2702\":\"dailymaverick\",\"2703\":\"russobaross\",\"2704\":\"russobaross\",\"2705\":\"russobaross\",\"2706\":\"russobaross\",\"2707\":null,\"2708\":\"Buhlenomuhle\",\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":\"palabra_hombre\",\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":\"PetersWonderboy\",\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":\"Sentletse\",\"2749\":null,\"2750\":\"SpeakerPelosi\",\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":\"SpeakerPelosi\",\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":\"DrMikey13\",\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":\"TeamPelosi\",\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":\"russobaross\",\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":\"News24\",\"2838\":null,\"2839\":\"SpeakerPelosi\",\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":\"Greenhive5\",\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":\"AJEnglish\",\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":\"USUN\",\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":\"estressecurado\",\"2906\":\"TherealUGman\",\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":\"httpxellise\",\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":\"AmbassadorDKing\",\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":\"Qdpaper2\",\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":\"minorta\",\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":\"IBEDC_NG\",\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":\"DemetersF\",\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":\"NonFungDark\",\"3047\":null,\"3048\":\"SpeakerPelosi\",\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":\"the_big_4lf\",\"3060\":\"wizkidayo\",\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":\"rovercrc\",\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":\"iam_timotee\",\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":\"padaignault\",\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":\"PressSec\",\"3088\":\"2dotsmarket\",\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":\"NicertGroup\",\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":\"IndiaFi47688004\",\"3100\":null,\"3101\":\"accessbank_help\",\"3102\":\"lz8964\",\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":\"DavidHundeyin\",\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":\"PiCoreTeam\",\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":\"KyivIndependent\",\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":\"UnityRadioFMTV\",\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":\"NicertGroup\",\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":\"DayoAmusa\",\"3175\":null,\"3176\":\"carterefe__\",\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":\"AdogaMikeOyi\",\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":\"JeffreyGuterman\",\"3191\":null,\"3192\":\"dixon_davie\",\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":\"AT13Oficial\",\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":\"OjaDaddy7\",\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":\"globaltimesnews\",\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":\"MangasJavier\",\"3245\":null,\"3246\":null,\"3247\":\"Neatioking\",\"3248\":\"TECNOMobileNG\",\"3249\":null,\"3250\":\"Voiceof_Fleming\",\"3251\":\"DeanForTruth\",\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":\"DJ_TUNEZ\",\"3259\":\"Badboytimz\",\"3260\":\"Halcy1023\",\"3261\":\"dennisblessed42\",\"3262\":\"zeenatmikail2\",\"3263\":\"Frontlinestory\",\"3264\":\"KAFTAN_TV\",\"3265\":\"ShehuSani\",\"3266\":\"RealMrumaDrive\",\"3267\":\"HenshawKate\",\"3268\":\"Sabinus1_\",\"3269\":\"ManUtd\",\"3270\":\"bbchausa\",\"3271\":\"Arsenal\",\"3272\":null,\"3273\":null,\"3274\":\"dawisu\",\"3275\":\"DrOlusesan\",\"3276\":\"IAmENISA\",\"3277\":\"UmmyAbdullahi\",\"3278\":\"DavidHundeyin\",\"3279\":\"capitalcom\",\"3280\":\"vanguardngrnews\",\"3281\":\"UBAGroup\",\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":\"SurinMahan\",\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":\"Quicktake\",\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":\"CGMeifangZhang\",\"3318\":null,\"3319\":null,\"3320\":\"Cristiano\",\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":\"carterefe__\",\"3326\":\"lawrencekitema\",\"3327\":\"delick_manzi\",\"3328\":\"instablog9ja\",\"3329\":null,\"3330\":null,\"3331\":\"gyaigyyimii\",\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":\"intelfin_global\",\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":\"CGMeifangZhang\",\"3347\":null,\"3348\":\"RT_com\",\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":\"KarenBassLA\",\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":\"MTNNG\",\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":\"ILRUSSO1\",\"3401\":null,\"3402\":\"SpeakerPelosi\",\"3403\":\"WSWS_Updates\",\"3404\":\"RegimeChangeUS\",\"3405\":\"firstladyship\",\"3406\":null,\"3407\":\"SpeakerPelosi\",\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":\"accessbank_help\",\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":\"FrancisOnyishi\",\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":\"Funny_African01\",\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":\"Themastercutz\",\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":\"Erc1974C\",\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":\"MahuiChina\",\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":\"AmbLiuXiaoMing\",\"3495\":\"AndyBxxx\",\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":\"SpeakerPelosi\",\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":\"pinetwork_world\",\"3560\":\"khollyjhay\",\"3561\":\"99tension\",\"3562\":\"___Chachi\",\"3563\":\"firstladyship\",\"3564\":\"VictorIsrael_\",\"3565\":\"_Just_Malik\",\"3566\":\"oou_prime\",\"3567\":\"FilmmeTalk\",\"3568\":\"danielaflorezz_\",\"3569\":null,\"3570\":\"anthony51483709\",\"3571\":null,\"3572\":null,\"3573\":\"wokeyimm\",\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":\"HighlifeeNg\",\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":\"OZONNAX\",\"3591\":null,\"3592\":\"IM_CITIZENX\",\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":\"Junegongyl\",\"3625\":\"OccupySchagen\",\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":\"renoomokri\",\"3630\":null,\"3631\":\"SpeakerPelosi\",\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":\"Greenhive5\",\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":\"XHNews\",\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":\"SmallAlhaji_\",\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":\"AJEnglish\",\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":\"FunJumbo\",\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":\"NectarBeautyHub\",\"3717\":null,\"3718\":null,\"3719\":\"thuanphat1975\",\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":\"safareerealty\",\"3730\":null,\"3731\":\"Blacckk_j\",\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":\"estressecurado\",\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":\"TherealUGman\",\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":\"Hope_wisdom2\",\"3765\":null,\"3766\":\"Hope_wisdom2\",\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":\"eajorng\",\"3803\":null,\"3804\":\"Oguntokunmichea\",\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":\"httpxellise\",\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":\"SpiceRadioNg\",\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":\"petrouz2\",\"3865\":\"OfficialPDPNig\",\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":\"officialABAT\",\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":\"BBCAfrica\",\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":\"Remmzor__\",\"3886\":null,\"3887\":\"davido\",\"3888\":null,\"3889\":null,\"3890\":\"davido\",\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":\"AmbassadorDKing\",\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":\"Qdpaper2\",\"3940\":null,\"3941\":null,\"3942\":\"OpeyemiArinola5\",\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":\"ChimarokeNamani\",\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":\"Consigliere909\",\"3963\":null,\"3964\":\"minorta\",\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":\"FreddyNtafumila\",\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":\"IBEDC_NG\",\"4003\":\"NectarBeautyHub\",\"4004\":\"vdjtflexx\",\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":\"kendaroza2\",\"4031\":\"detoff\",\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":\"instablog9ja\",\"4051\":null,\"4052\":\"nigeriandailies\",\"4053\":\"renoomokri\",\"4054\":\"segalink\",\"4055\":\"atiku\",\"4056\":null,\"4057\":\"instablog9ja\",\"4058\":\"triclowns\",\"4059\":\"Chude__\",\"4060\":\"emersonpalmieri\",\"4061\":null,\"4062\":\"MobilePunch\",\"4063\":\"NGRLabourParty\",\"4064\":\"EfuaIsEnuf\",\"4065\":\"MobilePunch\",\"4066\":\"GovSamuelOrtom\",\"4067\":\"GazetteNGR\",\"4068\":\"IAOkowa\",\"4069\":\"LeadershipNGA\",\"4070\":\"Roland_speaks\",\"4071\":null,\"4072\":\"BBNaija\",\"4073\":\"instablog9ja\",\"4074\":\"daily_trust\",\"4075\":\"OBIMAKAMA2023\",\"4076\":\"KAFTAN_TV\",\"4077\":\"GazetteNGR\",\"4078\":\"MobilePunch\",\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":\"DemetersF\",\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":\"SkyNews\",\"4100\":null,\"4101\":\"friendlilycoach\",\"4102\":null,\"4103\":\"friendlilycoach\",\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":\"BBCWorld\",\"4111\":\"iyaboawokoya\",\"4112\":\"essteeem\",\"4113\":null,\"4114\":\"Darasimi__\",\"4115\":\"chiiinnnyyy_\",\"4116\":\"symplyDAPO\",\"4117\":\"Letter_to_Jack\",\"4118\":null,\"4119\":null,\"4120\":\"JoyOlukorede\",\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":\"Secominfo\",\"4128\":null,\"4129\":null,\"4130\":\"Hope_wisdom2\",\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":\"MaGeAuNaturel\",\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":\"the_big_4lf\",\"4154\":\"wizkidayo\",\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":\"Jude_anarmz\",\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":\"rovercrc\",\"4170\":null,\"4171\":null,\"4172\":\"FabrizioRomano\",\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":\"iam_timotee\",\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":\"adebayotosin80\",\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":\"PeterObi\",\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":\"2dotsmarket\",\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":\"NicertGroup\",\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":\"accessbank_help\",\"4257\":null,\"4258\":\"el_incredibilis\",\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":\"Naija_PR\",\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":\"davido\",\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":\"PiCoreTeam\",\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":\"anderson_alozie\",\"4322\":null,\"4323\":\"fashemmy2010\",\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":\"Debhieofficial\",\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":\"KyivIndependent\",\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":\"UnityRadioFMTV\",\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":\"NicertGroup\",\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":\"uncle3olafood\",\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":\"Queen_Chamila\",\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":\"EuropaLeague\",\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":\"DayoAmusa\",\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":\"carterefe__\",\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":\"AdogaMikeOyi\",\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":\"JeffreyGuterman\",\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":\"AT13Oficial\",\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":\"audacia_prime_\",\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":\"NectarBeautyHub\",\"4547\":null,\"4548\":null,\"4549\":\"OjaDaddy7\",\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":\"Makiri_manuel\",\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":\"burnaboy\",\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":\"Neatioking\",\"4618\":\"TECNOMobileNG\",\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":\"Voiceof_Fleming\",\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":\"DJ_TUNEZ\",\"4633\":\"Badboytimz\",\"4634\":\"Halcy1023\",\"4635\":\"dennisblessed42\",\"4636\":\"zeenatmikail2\",\"4637\":null,\"4638\":\"KAFTAN_TV\",\"4639\":\"ShehuSani\",\"4640\":\"RealMrumaDrive\",\"4641\":\"HenshawKate\",\"4642\":\"Sabinus1_\",\"4643\":\"ManUtd\",\"4644\":\"bbchausa\",\"4645\":\"DerekJGrossman\",\"4646\":null,\"4647\":\"Arsenal\",\"4648\":null,\"4649\":null,\"4650\":\"dawisu\",\"4651\":\"DrOlusesan\",\"4652\":\"IAmENISA\",\"4653\":\"UmmyAbdullahi\",\"4654\":\"DavidHundeyin\",\"4655\":null,\"4656\":\"capitalcom\",\"4657\":\"vanguardngrnews\",\"4658\":\"UBAGroup\",\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":\"lawehilegbu\",\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":\"Quicktake\",\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":\"CNN\",\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":\"QUEENOFDBLUES1\",\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":\"Cristiano\",\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":\"iamhmmad1\",\"4748\":\"iamhmmad1\",\"4749\":\"thecableng\",\"4750\":null,\"4751\":\"AishaYesufu\",\"4752\":null,\"4753\":null,\"4754\":\"KamalaHarris\",\"4755\":\"Oghalegreatness\",\"4756\":\"thecableng\",\"4757\":null,\"4758\":null,\"4759\":\"carterefe__\",\"4760\":\"lawrencekitema\",\"4761\":null,\"4762\":\"delick_manzi\",\"4763\":null,\"4764\":\"instablog9ja\",\"4765\":null,\"4766\":null,\"4767\":\"gyaigyyimii\",\"4768\":\"SpeakerPelosi\",\"4769\":null,\"4770\":null,\"4771\":\"ShehuSani\",\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":\"intelfin_global\",\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":\"shinax_drolls\",\"4827\":\"KarenBassLA\",\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":\"MTNNG\",\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":\"_I_K_E_H_\",\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":\"SkyNews\",\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":\"carterefe__\",\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":\"ILRUSSO1\",\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":\"SpeakerPelosi\",\"4941\":\"SpeakerPelosi\",\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":\"firstladyship\",\"4947\":null,\"4948\":\"SpeakerPelosi\",\"4949\":null,\"4950\":\"business\",\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":\"JohnRoss43\",\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":\"RonnyJacksonTX\",\"4975\":null,\"4976\":null,\"4977\":\"Reuters\",\"4978\":null,\"4979\":null,\"4980\":\"nexta_tv\",\"4981\":\"accessbank_help\",\"4982\":\"Stargazer_28671\",\"4983\":null,\"4984\":null,\"4985\":\"disclosetv\",\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":\"MrGenius_Tips\",\"4993\":\"kudylata\",\"4994\":\"MrGenius_Tips\",\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"user\":{\"0\":{\"id\":1183669359396511744,\"id_str\":\"1183669359396511744\",\"name\":\"Critical Thinking DZ \\u0627\\u0644\\u062a\\u0641\\u0643\\u064a\\u0631 \\u0627\\u0644\\u0646\\u0642\\u062f\\u064a\",\"screen_name\":\"DzCritical\",\"location\":\"Alg\\u00e9rie\",\"description\":\"Science, histoire, philosophie, derni\\u00e8res nouvelles, M\\u00e9dias et des id\\u00e9es saines.\\n\\u0639\\u0644\\u0648\\u0645, \\u062a\\u0627\\u0631\\u064a\\u062e, \\u0641\\u0644\\u0633\\u0641\\u0629\\u060c \\u0627\\u062e\\u0628\\u0627\\u0631 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629 \\u0648 \\u0623\\u0641\\u0643\\u0627\\u0631.\",\"url\":\"https:\\/\\/t.co\\/bKmczKcTmV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bKmczKcTmV\",\"expanded_url\":\"http:\\/\\/criticalthinkingdz.gmail.com\",\"display_url\":\"criticalthinkingdz.gmail.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":318,\"friends_count\":373,\"listed_count\":0,\"created_at\":\"Mon Oct 14 09:03:30 +0000 2019\",\"favourites_count\":697,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":888,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1398612172155113475\\/dpkDyz0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1398612172155113475\\/dpkDyz0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183669359396511744\\/1571061987\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1\":{\"id\":746340422994235392,\"id_str\":\"746340422994235392\",\"name\":\"News 24\\/24\",\"screen_name\":\"toopsat\",\"location\":\"\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/uMXkNVgcUG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uMXkNVgcUG\",\"expanded_url\":\"https:\\/\\/www.toopsat.com\",\"display_url\":\"toopsat.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":764,\"friends_count\":144,\"listed_count\":3,\"created_at\":\"Fri Jun 24 13:53:18 +0000 2016\",\"favourites_count\":2160,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1597,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554489386590420993\\/agIHpKWv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554489386590420993\\/agIHpKWv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746340422994235392\\/1607679719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2\":{\"id\":1138076883399188480,\"id_str\":\"1138076883399188480\",\"name\":\"\\u2665\\ufe0fNassou \\ud83c\\udde9\\ud83c\\uddffSupernova Emy\\ud83c\\uddf5\\ud83c\\uddf8\",\"screen_name\":\"NassimaLilEmy\",\"location\":\"Alg\\u00e9rie\",\"description\":\"When you pray for the rain , you got to deal with the mud .\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Mon Jun 10 13:34:08 +0000 2019\",\"favourites_count\":10841,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2293,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1497104969513811974\\/5flRl-uL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1497104969513811974\\/5flRl-uL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1138076883399188480\\/1620838930\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3\":{\"id\":1446461696357371906,\"id_str\":\"1446461696357371906\",\"name\":\"DHAYAE BELBOULA\",\"screen_name\":\"d_dhayae\",\"location\":\"Chlef \",\"description\":\"DhaYae\",\"url\":\"https:\\/\\/t.co\\/KhVsHCLjI7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KhVsHCLjI7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCIPzSxvRJQjS_oBJsl8PduQ\",\"display_url\":\"youtube.com\\/channel\\/UCIPzS\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":463,\"listed_count\":0,\"created_at\":\"Fri Oct 08 13:05:34 +0000 2021\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554095189547012098\\/wQ_w6itf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554095189547012098\\/wQ_w6itf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1446461696357371906\\/1659364996\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4\":{\"id\":1435461161076596736,\"id_str\":\"1435461161076596736\",\"name\":\"\\u0645\\u062d\\u0645\\u062f \\u0627\\u0645\\u064a\\u0646\",\"screen_name\":\"Mohamme65404115\",\"location\":\"Alg\\u00e9rie\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":206,\"listed_count\":0,\"created_at\":\"Wed Sep 08 04:33:24 +0000 2021\",\"favourites_count\":5947,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1313,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1507265573276860422\\/t7KWakFV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1507265573276860422\\/t7KWakFV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1435461161076596736\\/1631449025\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"5\":{\"id\":1333429196039852032,\"id_str\":\"1333429196039852032\",\"name\":\"YK\",\"screen_name\":\"Yacine_Kelala8\",\"location\":\"\\u00c9tats-Unis\",\"description\":\"Welcome !\\nI'm a professional video animator and a Experienced Graphic Designer specialize in branding. \\n#YK\\n\\ud83d\\udce7 | yacinekelala@gmail.com\",\"url\":\"https:\\/\\/t.co\\/e54GXwdEwm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/e54GXwdEwm\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/share\\/k8YzLb\",\"display_url\":\"fiverr.com\\/share\\/k8YzLb\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":350,\"friends_count\":1,\"listed_count\":2,\"created_at\":\"Mon Nov 30 15:15:04 +0000 2020\",\"favourites_count\":703,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1344403476009332739\\/1Qf8jYKR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1344403476009332739\\/1Qf8jYKR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1333429196039852032\\/1609365673\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"6\":{\"id\":980917213849968640,\"id_str\":\"980917213849968640\",\"name\":\"Drax Africa\",\"screen_name\":\"drax_africa\",\"location\":\"Zambia\",\"description\":\"Afro\\/EDM\\/Reggae\\/Indie twin brothers\\u2b50 Djooky Music Awards winners\\ud83c\\udfc6 and 2 times Artist Republik song of the Summer winners\\ud83c\\udfc6\\ud83c\\udf0d\\nFor Bookings: draxafrica@gmail.com\",\"url\":\"https:\\/\\/t.co\\/I9yrueMhd3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I9yrueMhd3\",\"expanded_url\":\"https:\\/\\/ffm.bio\\/vb4qnax\",\"display_url\":\"ffm.bio\\/vb4qnax\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":559,\"friends_count\":1280,\"listed_count\":0,\"created_at\":\"Mon Apr 02 21:17:43 +0000 2018\",\"favourites_count\":4499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":969,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555112695359209474\\/XSFHpXg0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555112695359209474\\/XSFHpXg0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/980917213849968640\\/1659607363\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"7\":{\"id\":1403736727194411009,\"id_str\":\"1403736727194411009\",\"name\":\"Mukuka mulenga\",\"screen_name\":\"MukukaReal\",\"location\":\"Ndola\",\"description\":\"Geomatic Engineer \\ud83d\\udc9a\\ud83d\\udc9a\\ud83c\\udf0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":179,\"listed_count\":0,\"created_at\":\"Sat Jun 12 15:32:12 +0000 2021\",\"favourites_count\":852,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":336,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526208229939851265\\/x_R9qMZF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526208229939851265\\/x_R9qMZF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1403736727194411009\\/1627055680\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"8\":{\"id\":22480368,\"id_str\":\"22480368\",\"name\":\"Petrik\\ud83c\\uddea\\ud83c\\uddfa\",\"screen_name\":\"derPaddy\",\"location\":\":D\",\"description\":\"INTJ | Vergeben ! | Sozial-Technokrat | weltoffen | kritisch |schlicht lebend |Humanistisch-agnostische Ethik |Datenschutz |Digitalisierung |Robotik |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":678,\"friends_count\":183,\"listed_count\":337,\"created_at\":\"Mon Mar 02 12:45:10 +0000 2009\",\"favourites_count\":58287,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":164549,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1E2446\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512159987988058113\\/Zsx7oGZ-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512159987988058113\\/Zsx7oGZ-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22480368\\/1553149118\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D4E1A0\",\"profile_text_color\":\"6AD09F\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"9\":{\"id\":1117345699,\"id_str\":\"1117345699\",\"name\":\"\\u0282\\u0173\\u0196\\u026c\\u0105\\u014b \\u026c\\u0267\\u025b\\u014b\\u0260\\u01a1\",\"screen_name\":\"deusthengo\",\"location\":\"Lilongwe\",\"description\":\"\\u2118\\u0f5e\\u01a1\\u0284\\u025b\\u0282\\u0282\\u0131\\u01a1\\u014b\\u0105\\u0196 \\u10e7\\u01a1\\u0173\\u026c\\u0267 \\u1ff3\\u01a1\\u0f5e\\u0199\\u025b\\u0f5e \\u0105\\u014b\\u0256 \\u2118\\u0f5e\\u01a1\\u029d\\u025b\\u0188\\u026c \\u0271\\u0105\\u014b\\u0105\\u0260\\u025b\\u0271\\u025b\\u014b\\u026c \\u0282\\u2118\\u025b\\u0188\\u0131\\u0105\\u0196\\u0131\\u0282\\u026c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6413,\"friends_count\":6769,\"listed_count\":10,\"created_at\":\"Thu Jan 24 17:41:32 +0000 2013\",\"favourites_count\":30964,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":30510,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1440371485307142155\\/LPd4W2Io_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1440371485307142155\\/LPd4W2Io_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1117345699\\/1604484746\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"10\":{\"id\":190312354,\"id_str\":\"190312354\",\"name\":\".\",\"screen_name\":\"bIackdot\",\"location\":\"Zambia\",\"description\":\"Defend the right to disagree. \\n Pronouns: my\\/us. nothing here goodbye \\n#IStandWithMyDick\",\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"expanded_url\":\"http:\\/\\/insectrights.org\\/howtohelp.html\",\"display_url\":\"insectrights.org\\/howtohelp.html\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":13,\"listed_count\":5,\"created_at\":\"Mon Sep 13 16:48:07 +0000 2010\",\"favourites_count\":7112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/190312354\\/1608748705\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"11\":{\"id\":190312354,\"id_str\":\"190312354\",\"name\":\".\",\"screen_name\":\"bIackdot\",\"location\":\"Zambia\",\"description\":\"Defend the right to disagree. \\n Pronouns: my\\/us. nothing here goodbye \\n#IStandWithMyDick\",\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"expanded_url\":\"http:\\/\\/insectrights.org\\/howtohelp.html\",\"display_url\":\"insectrights.org\\/howtohelp.html\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":13,\"listed_count\":5,\"created_at\":\"Mon Sep 13 16:48:07 +0000 2010\",\"favourites_count\":7112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/190312354\\/1608748705\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"12\":{\"id\":190312354,\"id_str\":\"190312354\",\"name\":\".\",\"screen_name\":\"bIackdot\",\"location\":\"Zambia\",\"description\":\"Defend the right to disagree. \\n Pronouns: my\\/us. nothing here goodbye \\n#IStandWithMyDick\",\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"expanded_url\":\"http:\\/\\/insectrights.org\\/howtohelp.html\",\"display_url\":\"insectrights.org\\/howtohelp.html\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":13,\"listed_count\":5,\"created_at\":\"Mon Sep 13 16:48:07 +0000 2010\",\"favourites_count\":7112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/190312354\\/1608748705\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"13\":{\"id\":190312354,\"id_str\":\"190312354\",\"name\":\".\",\"screen_name\":\"bIackdot\",\"location\":\"Zambia\",\"description\":\"Defend the right to disagree. \\n Pronouns: my\\/us. nothing here goodbye \\n#IStandWithMyDick\",\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLVj9FQKIw\",\"expanded_url\":\"http:\\/\\/insectrights.org\\/howtohelp.html\",\"display_url\":\"insectrights.org\\/howtohelp.html\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":13,\"listed_count\":5,\"created_at\":\"Mon Sep 13 16:48:07 +0000 2010\",\"favourites_count\":7112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517658014001639427\\/lGGZZWNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/190312354\\/1608748705\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"14\":{\"id\":1166659555578826756,\"id_str\":\"1166659555578826756\",\"name\":\"KING MANSOUR \\ud83d\\udc3e\",\"screen_name\":\"Hopemalopa\",\"location\":\"Malawi\",\"description\":\"Entrepreneur, self taught cook\\ud83c\\udf72\\ud83c\\udf2e @Chelsea @scuderiaferrari political activist, London is Blue , Property developer, Aries\\u2648\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9112,\"friends_count\":4183,\"listed_count\":5,\"created_at\":\"Wed Aug 28 10:31:43 +0000 2019\",\"favourites_count\":47029,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18360,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532968056896593921\\/senl3Ai4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532968056896593921\\/senl3Ai4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1166659555578826756\\/1650470181\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"15\":{\"id\":2172675353,\"id_str\":\"2172675353\",\"name\":\"Peter Obi PHC Office\",\"screen_name\":\"emekaohiagu\",\"location\":\"Rivers State \",\"description\":\"Movement For A Better Nigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":162,\"friends_count\":281,\"listed_count\":1,\"created_at\":\"Thu Nov 07 22:05:37 +0000 2013\",\"favourites_count\":367,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553514312215547905\\/ZNn38ajo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553514312215547905\\/ZNn38ajo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2172675353\\/1659221653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"16\":{\"id\":3058698981,\"id_str\":\"3058698981\",\"name\":\"wilsonchinonso\",\"screen_name\":\"wilson_chnns\",\"location\":\"Imo State Nigeria\",\"description\":\"Black and Spanish\",\"url\":\"https:\\/\\/t.co\\/9MvZ4d9cz2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9MvZ4d9cz2\",\"expanded_url\":\"http:\\/\\/wilsonchnns.com\",\"display_url\":\"wilsonchnns.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":28,\"friends_count\":265,\"listed_count\":0,\"created_at\":\"Tue Feb 24 11:53:43 +0000 2015\",\"favourites_count\":134,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":365,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1098262718551855104\\/W3j9s9PH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1098262718551855104\\/W3j9s9PH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"17\":{\"id\":1479853537454694400,\"id_str\":\"1479853537454694400\",\"name\":\"Jennifer T\",\"screen_name\":\"JeniT71\",\"location\":\"Deep South\",\"description\":\"Alabama girl, weather nerd, coffee junkie& aspiring writer! RTR! AMERICA \\ud83c\\uddfa\\ud83c\\uddf8!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":105,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Sat Jan 08 16:33:01 +0000 2022\",\"favourites_count\":675,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":349,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542193001040171013\\/OoezUbz6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542193001040171013\\/OoezUbz6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1479853537454694400\\/1656522744\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"18\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"19\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"20\":{\"id\":272100746,\"id_str\":\"272100746\",\"name\":\"CHI-Exclusive\",\"screen_name\":\"chiexclusivehub\",\"location\":\"Nigeria\",\"description\":\"Website Designer \\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83d\\udcbb | Realtor| Blogger| eShop Manager (@ExclusiveShops) \\ud83d\\udecd|For Web Designs whatsapp me through d-web or mail matthias@chiexclusive.com\",\"url\":\"https:\\/\\/t.co\\/BRmxlKRSam\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BRmxlKRSam\",\"expanded_url\":\"https:\\/\\/chiexclusive.com\",\"display_url\":\"chiexclusive.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11461,\"friends_count\":8242,\"listed_count\":2,\"created_at\":\"Fri Mar 25 20:52:02 +0000 2011\",\"favourites_count\":2012,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7628,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351483555562532866\\/ikCmeYTq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351483555562532866\\/ikCmeYTq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/272100746\\/1620384027\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"21\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"22\":{\"id\":1099915012037099521,\"id_str\":\"1099915012037099521\",\"name\":\"Nigeria Infohub & News PR\",\"screen_name\":\"notice_com_ng\",\"location\":\"Lagos, Nigeria\",\"description\":\"we will bring you sparkling latest news, latest information,update,music download,video download https:\\/\\/t.co\\/aIHLCI5dXA\\nNigeria's Prosperity, peace and unity a\",\"url\":\"https:\\/\\/t.co\\/jm0uqsKVUH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jm0uqsKVUH\",\"expanded_url\":\"https:\\/\\/www.notice.com.ng\",\"display_url\":\"notice.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aIHLCI5dXA\",\"expanded_url\":\"http:\\/\\/notice.com.ng\",\"display_url\":\"notice.com.ng\",\"indices\":[97,120]}]}},\"protected\":false,\"followers_count\":4023,\"friends_count\":4708,\"listed_count\":3,\"created_at\":\"Mon Feb 25 06:12:29 +0000 2019\",\"favourites_count\":16849,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":143367,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490031576037703684\\/D3FHmGEg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490031576037703684\\/D3FHmGEg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1099915012037099521\\/1616245718\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"23\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"24\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"25\":{\"id\":3352737683,\"id_str\":\"3352737683\",\"name\":\"All Round News\",\"screen_name\":\"AllRoundNewsNG\",\"location\":\"Nigeria\",\"description\":\"All About News\",\"url\":\"http:\\/\\/t.co\\/MyAMvf3YcQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MyAMvf3YcQ\",\"expanded_url\":\"http:\\/\\/AllRoundNews.NG\",\"display_url\":\"AllRoundNews.NG\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":430,\"friends_count\":1,\"listed_count\":4,\"created_at\":\"Wed Jul 01 02:44:19 +0000 2015\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77875,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/617559745583382528\\/bmUnciYA_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/617559745583382528\\/bmUnciYA_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3352737683\\/1436084513\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"26\":{\"id\":1491175165551591425,\"id_str\":\"1491175165551591425\",\"name\":\"Tessy Patrick\",\"screen_name\":\"Patricktessy_\",\"location\":\"Edo, Nigeria\",\"description\":\"Scorpius lady\\/fashion designer | Fantastic singer|7D Affiliate marketer\\/ I will show you how to make 7digits in affiliate marketing\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":127,\"friends_count\":273,\"listed_count\":0,\"created_at\":\"Tue Feb 08 22:21:57 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1494884557505585152\\/M85w5AtO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1494884557505585152\\/M85w5AtO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"27\":{\"id\":623233938,\"id_str\":\"623233938\",\"name\":\"Kwaku Antwi-Boasiako\",\"screen_name\":\"ABKwaku\",\"location\":\"Accra, Ghana\",\"description\":\"Ghanaian\\ud83c\\uddec\\ud83c\\udded | What is written, is written | Man Utd & Kotoko | Love F1, Tennis, Boxing & Other Sport | Retweet not endorsement\",\"url\":\"https:\\/\\/t.co\\/3wCtzDPnUe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3wCtzDPnUe\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/kwaku.antwiboasiako.3\",\"display_url\":\"facebook.com\\/kwaku.antwiboa\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":107587,\"friends_count\":103722,\"listed_count\":43,\"created_at\":\"Sat Jun 30 21:26:16 +0000 2012\",\"favourites_count\":431,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9618,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556193573581852673\\/XGvBMDUY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556193573581852673\\/XGvBMDUY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/623233938\\/1541841185\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"28\":{\"id\":430723686,\"id_str\":\"430723686\",\"name\":\"Green Hive\",\"screen_name\":\"Greenhive5\",\"location\":\"uganda\",\"description\":\"HOTELIER\",\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/bukirwaeducationfund\",\"display_url\":\"facebook.com\\/bukirwaeducati\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":108,\"friends_count\":474,\"listed_count\":0,\"created_at\":\"Wed Dec 07 14:05:20 +0000 2011\",\"favourites_count\":783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/430723686\\/1618904971\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"29\":{\"id\":430723686,\"id_str\":\"430723686\",\"name\":\"Green Hive\",\"screen_name\":\"Greenhive5\",\"location\":\"uganda\",\"description\":\"HOTELIER\",\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/bukirwaeducationfund\",\"display_url\":\"facebook.com\\/bukirwaeducati\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":108,\"friends_count\":474,\"listed_count\":0,\"created_at\":\"Wed Dec 07 14:05:20 +0000 2011\",\"favourites_count\":783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/430723686\\/1618904971\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"30\":{\"id\":1258092074622160897,\"id_str\":\"1258092074622160897\",\"name\":\"FEMI AFRICA SP\",\"screen_name\":\"femiafricaNG\",\"location\":\"lagos \",\"description\":\"Herbalist son\\ud83d\\udc80\\u2620\\ufe0f | comedian\",\"url\":\"https:\\/\\/t.co\\/r6WJvutq7p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/r6WJvutq7p\",\"expanded_url\":\"http:\\/\\/www.femiafrica.com\",\"display_url\":\"femiafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2723,\"friends_count\":141,\"listed_count\":1,\"created_at\":\"Wed May 06 17:52:01 +0000 2020\",\"favourites_count\":192,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":347,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556041057929920512\\/CkHVVEJ1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556041057929920512\\/CkHVVEJ1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1258092074622160897\\/1657584205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"31\":{\"id\":162934876,\"id_str\":\"162934876\",\"name\":\"Silvado \\u2b07\\ufe0f\",\"screen_name\":\"countrybouy1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Filmmaker \\ud83c\\udfac\\ud83d\\udcfd\\nCypto maniac\\nNFT Creator\\n\\nFilm And TV:\\nAssistant Director \\nScript Supervisor\\nScript Editor\",\"url\":\"https:\\/\\/t.co\\/9Q8Ax6JsYm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Q8Ax6JsYm\",\"expanded_url\":\"https:\\/\\/rarible.com\\/token\\/0xc9154424B823b10579895cCBE442d41b9Abd96Ed:8228893423091918802435039797288\",\"display_url\":\"rarible.com\\/token\\/0xc91544\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":269,\"friends_count\":502,\"listed_count\":2,\"created_at\":\"Mon Jul 05 03:12:41 +0000 2010\",\"favourites_count\":189,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2416,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544262424836116481\\/VQWWa6XE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544262424836116481\\/VQWWa6XE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/162934876\\/1649688232\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"32\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"33\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"34\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"35\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"36\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"37\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"38\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"39\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"40\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"41\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"42\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"43\":{\"id\":892298735115522048,\"id_str\":\"892298735115522048\",\"name\":\"Timi Isaac\",\"screen_name\":\"Gracious_Song\",\"location\":\"Nigeria\",\"description\":\"I provide some of the best solutions to issues, even if they seem entertaining.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":91,\"listed_count\":0,\"created_at\":\"Tue Aug 01 08:19:31 +0000 2017\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":89,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1355045868118962176\\/3kGGoqNi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1355045868118962176\\/3kGGoqNi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/892298735115522048\\/1601540172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"44\":{\"id\":960542806933729281,\"id_str\":\"960542806933729281\",\"name\":\"Ad\\u00e1j\\u00e0\\ud83e\\udd77\",\"screen_name\":\"AdajaMusic\",\"location\":\"Lagos, Nigeria\",\"description\":\"Welcome to the world of wonders \\ud83d\\udda4. Singer Songwriter Winner #Bigdreamsnigeriatvshow\",\"url\":\"https:\\/\\/t.co\\/TPHdKsCrGr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TPHdKsCrGr\",\"expanded_url\":\"https:\\/\\/spinnup.link\\/504529-adaja-sounds-of\",\"display_url\":\"spinnup.link\\/504529-adaja-s\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":395,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Mon Feb 05 15:57:05 +0000 2018\",\"favourites_count\":17558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":739,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1448404628161409029\\/sVE-Lslh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1448404628161409029\\/sVE-Lslh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/960542806933729281\\/1658484917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"45\":{\"id\":1223212461010096129,\"id_str\":\"1223212461010096129\",\"name\":\"Clinton_Snowbird\",\"screen_name\":\"ClintonSnowbird\",\"location\":\"Abuja, Nigeria\",\"description\":\"#footballinmyDNA \\ud83e\\uddec || Africa & Black history \\ud83d\\udccc Red Devil \\ud83d\\udd34. Vibes || cruise\\ud83d\\ude0e I had fun once\\u2014it was horrible. 6\\u20193ft strong \\ud83d\\ude0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3134,\"friends_count\":3033,\"listed_count\":0,\"created_at\":\"Fri Jan 31 11:52:46 +0000 2020\",\"favourites_count\":8773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546438057183907840\\/KREogTZI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546438057183907840\\/KREogTZI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1223212461010096129\\/1654726474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"46\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"47\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"48\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"49\":{\"id\":833544452614533124,\"id_str\":\"833544452614533124\",\"name\":\"Judeanarmz\",\"screen_name\":\"Jude_anarmz\",\"location\":\"Lagos, Nigeria\",\"description\":\"OXFORDPROPS MULTISERVICES ELITES LTD.\\nSubsidary Managing Director \\n\\nInvestment Manager | Smart Entrepreneur || The Oxford Green Farms Group\\u25aaTOGFG\\u25aaAgrolyfe \\ud83c\\udf31\",\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":781,\"listed_count\":1,\"created_at\":\"Mon Feb 20 05:10:58 +0000 2017\",\"favourites_count\":887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2919,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833544452614533124\\/1659562338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"50\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"51\":{\"id\":1550209968736960514,\"id_str\":\"1550209968736960514\",\"name\":\"ARTS_&_BASKETS\",\"screen_name\":\"ArtsBaskets\",\"location\":\"Greater Accra, Ghana\",\"description\":\"We are a team of talented artists that use natural straws to weave baskets, bags and more. We are ready to meet your desire and customize demands\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":149,\"friends_count\":474,\"listed_count\":0,\"created_at\":\"Thu Jul 21 20:04:16 +0000 2022\",\"favourites_count\":448,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":59,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550404209874550784\\/QgKtFl-e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550404209874550784\\/QgKtFl-e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550209968736960514\\/1658480158\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"52\":{\"id\":135947998,\"id_str\":\"135947998\",\"name\":\"Obruchev\",\"screen_name\":\"phlanky\",\"location\":\"Lagos, Nigeria\",\"description\":\"Marine Engineer || Activist For The Both Genders || Against Any Form Of Abuse ||Love Over Religion.\\nfollow @africanuniformsingles on IG for military dating\",\"url\":\"https:\\/\\/t.co\\/hBg50I3Hx9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hBg50I3Hx9\",\"expanded_url\":\"http:\\/\\/www.africanunformsingles.com\",\"display_url\":\"africanunformsingles.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":692,\"friends_count\":3386,\"listed_count\":0,\"created_at\":\"Thu Apr 22 16:27:30 +0000 2010\",\"favourites_count\":2797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3930,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531951941227581440\\/BD09CRjY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531951941227581440\\/BD09CRjY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/135947998\\/1653246377\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"53\":{\"id\":1284840591101251584,\"id_str\":\"1284840591101251584\",\"name\":\"Dj Galaxy GDD\",\"screen_name\":\"DjGalaxyGDD\",\"location\":\"Greater Accra, Ghana\",\"description\":\"DJ & Artist\",\"url\":\"https:\\/\\/t.co\\/D9d7kZn3AC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9d7kZn3AC\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/artist\\/05P5LY69eFt0mV7IuEARVP?si=KUS4puGNTn6163z-C5qMFw&utm_source=copy-lin\",\"display_url\":\"open.spotify.com\\/artist\\/05P5LY6\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":82,\"listed_count\":0,\"created_at\":\"Sun Jul 19 13:21:10 +0000 2020\",\"favourites_count\":1759,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":937,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532308157485264896\\/qQDWac24_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532308157485264896\\/qQDWac24_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284840591101251584\\/1645102012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"54\":{\"id\":1049344932819943425,\"id_str\":\"1049344932819943425\",\"name\":\"Transformations 108 Foundation\",\"screen_name\":\"Transfor108\",\"location\":\"Accra, Ghana\",\"description\":\"Getting knowledge of thyself is so crucial if you so desire success in every endeavour. TRANSFORMATIONS is here to help those who are ready for knowledge\",\"url\":\"https:\\/\\/t.co\\/uIUL2O6U58\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uIUL2O6U58\",\"expanded_url\":\"https:\\/\\/m.facebook.com\\/transformationoffice\\/\",\"display_url\":\"m.facebook.com\\/transformation\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":655,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Mon Oct 08 17:05:02 +0000 2018\",\"favourites_count\":1590,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2678,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1364849930431520770\\/EF0Blwj8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1364849930431520770\\/EF0Blwj8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1049344932819943425\\/1655878583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"55\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"56\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"57\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"58\":{\"id\":318945033,\"id_str\":\"318945033\",\"name\":\"JAYDO KINHO\",\"screen_name\":\"Jaydokinhotweet\",\"location\":\"Nigeria\",\"description\":\"Singer | Songwriter | Model | Actor \\n Email:jaydokinho@gmail.com | +2348060400535\",\"url\":\"https:\\/\\/t.co\\/oMJSSlncTW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oMJSSlncTW\",\"expanded_url\":\"https:\\/\\/music.youtube.com\\/watch?v=Z6V3Ecq3qz4&feature=share\",\"display_url\":\"music.youtube.com\\/watch?v=Z6V3Ec\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":761,\"friends_count\":1262,\"listed_count\":1,\"created_at\":\"Fri Jun 17 09:30:36 +0000 2011\",\"favourites_count\":853,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2683,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521272159540289536\\/Ef7rH9e8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521272159540289536\\/Ef7rH9e8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/318945033\\/1656898974\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"59\":{\"id\":1250296116865724419,\"id_str\":\"1250296116865724419\",\"name\":\"Lagos Metropolitan\",\"screen_name\":\"LagMetropolitan\",\"location\":\"Lagos, Nigeria\",\"description\":\"We aim to be the most authoritative newspaper reporting the Lagos Metropolis. We just want to report everyday people doing extraordinary things.\",\"url\":\"https:\\/\\/t.co\\/m0xrEqsUIg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/m0xrEqsUIg\",\"expanded_url\":\"https:\\/\\/www.lagosmetropolitan.com\",\"display_url\":\"lagosmetropolitan.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":160,\"friends_count\":258,\"listed_count\":0,\"created_at\":\"Wed Apr 15 05:33:43 +0000 2020\",\"favourites_count\":152,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2753,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1284937686562865152\\/FgPIa_Wc_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1284937686562865152\\/FgPIa_Wc_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1250296116865724419\\/1595187990\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"60\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"61\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"62\":{\"id\":1319373245053886464,\"id_str\":\"1319373245053886464\",\"name\":\"Alexwills consolidated\",\"screen_name\":\"AAlexan63671061\",\"location\":\"Benin-City, Nigeria\",\"description\":\"am good at what i do no matter how hard\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":272,\"listed_count\":0,\"created_at\":\"Thu Oct 22 20:21:33 +0000 2020\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319373245053886464\\/1654848237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"63\":{\"id\":725816690542518273,\"id_str\":\"725816690542518273\",\"name\":\"Urwah Adam Suleiman\",\"screen_name\":\"adam_urwah\",\"location\":\"Kaduna, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":289,\"listed_count\":0,\"created_at\":\"Thu Apr 28 22:39:18 +0000 2016\",\"favourites_count\":9895,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":584,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/998358582193078274\\/FQMWLfeJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/998358582193078274\\/FQMWLfeJ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"64\":{\"id\":1395760548915068933,\"id_str\":\"1395760548915068933\",\"name\":\"APOSTLE GODWIN OCHIJE MICHAEL\",\"screen_name\":\"GodwinOchije\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"An Apostle of Christ to the nation's of the earth..\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":37,\"listed_count\":0,\"created_at\":\"Fri May 21 15:17:50 +0000 2021\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"65\":{\"id\":900012558815559680,\"id_str\":\"900012558815559680\",\"name\":\"Jape Puntila \\ud83d\\udc20\\ud83c\\uddfa\\ud83c\\udde6\",\"screen_name\":\"JapePuntila\",\"location\":\"why ask?\",\"description\":\"Politiikan seuraaja, yleisten asioiden p\\u00e4ivittelij\\u00e4, vaativa asiakas, veronmaksaja. Blocked by @HelsinkiPoliisi. Crazy ain\\u2019t original no more\\ud83d\\ude44\",\"url\":\"https:\\/\\/t.co\\/JeVY2L1T7h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JeVY2L1T7h\",\"expanded_url\":\"http:\\/\\/www.puntilaenterprise.tw\",\"display_url\":\"puntilaenterprise.tw\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":351,\"friends_count\":586,\"listed_count\":2,\"created_at\":\"Tue Aug 22 15:11:30 +0000 2017\",\"favourites_count\":42657,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17976,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/979101617738911746\\/H9FEmILV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/979101617738911746\\/H9FEmILV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/900012558815559680\\/1656444002\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"66\":{\"id\":1517815043844358145,\"id_str\":\"1517815043844358145\",\"name\":\"DY WORDS\",\"screen_name\":\"Adedayo_AJ\",\"location\":\"Lagos, Nigeria\",\"description\":\"Focusing on:\\n\\u2022HUMAN DEVELOPMENT\\u2022BUSINESS OPPORTUNITIES\\u2022RELATIONSHIP SELF-DISCOVERY\\u2022REAL-LIFE EXPERIENCES\\nGROWTH\\u2022FINDING PURPOSE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":240,\"listed_count\":0,\"created_at\":\"Sat Apr 23 10:38:54 +0000 2022\",\"favourites_count\":1445,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":379,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517815043844358145\\/1650711890\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"67\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"68\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"69\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"70\":{\"id\":1144927690417463296,\"id_str\":\"1144927690417463296\",\"name\":\"efya seedorfina\\ud83c\\udf7a\\ud83e\\udd70\\ud83c\\udf89\",\"screen_name\":\"EfyaSeedorfina\",\"location\":\"Winneba, Ghana\",\"description\":\"\\u2764\\ufe0finfluencer \\u2764\\ufe0fActress \\u2764\\ufe0fmotivator \\u2764\\ufe0fhappy child \\ud83e\\uddd2\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":745,\"friends_count\":724,\"listed_count\":0,\"created_at\":\"Sat Jun 29 11:16:47 +0000 2019\",\"favourites_count\":1669,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1564,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1427895945145077763\\/OxG6L7yQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1427895945145077763\\/OxG6L7yQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1144927690417463296\\/1650649695\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"71\":{\"id\":1375008658246008833,\"id_str\":\"1375008658246008833\",\"name\":\"Ability\",\"screen_name\":\"ability_etuk\",\"location\":\"lekki\",\"description\":\"Digital marketer|SEO Specialist|Graphic designer| music lover\\ud83c\\udfb8\\ud83c\\udfb8\\ud83c\\udfb6\\n\\ud83d\\ude0bno mind the bio\\ud83e\\udd2aI like enjoyment too\",\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"expanded_url\":\"http:\\/\\/www.rapigrowth.com.ng\",\"display_url\":\"rapigrowth.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Thu Mar 25 08:56:39 +0000 2021\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375008658246008833\\/1659134272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"72\":{\"id\":1481668045881982990,\"id_str\":\"1481668045881982990\",\"name\":\"Nigeria voice\",\"screen_name\":\"9jariavoice\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Thu Jan 13 16:42:53 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"73\":{\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"name\":\"Elite Star Foundation\",\"screen_name\":\"NGOELITESTAR\",\"location\":\"Nigeria\",\"description\":\"Ensuring lifelong learning opportunities for all and reducing all forms of inequalities and violence against children.\",\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"expanded_url\":\"https:\\/\\/www.elitestarfoundation.org\",\"display_url\":\"elitestarfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":492,\"listed_count\":0,\"created_at\":\"Sat Nov 20 04:48:29 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461919316400648194\\/1637384456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"74\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"75\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"76\":{\"id\":902666778618331136,\"id_str\":\"902666778618331136\",\"name\":\"Pest Terminators\",\"screen_name\":\"terminatorsng\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigeria\\u2019s 1st choice licensed Pest Control Service Company in Lagos with many years of operational experience in integrated pest management and control.\",\"url\":\"https:\\/\\/t.co\\/zosJJLBj7m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zosJJLBj7m\",\"expanded_url\":\"https:\\/\\/pest-terminators.com\\/\",\"display_url\":\"pest-terminators.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":50,\"friends_count\":173,\"listed_count\":3,\"created_at\":\"Tue Aug 29 22:58:25 +0000 2017\",\"favourites_count\":354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/902671752563707907\\/m_FGjELU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/902671752563707907\\/m_FGjELU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/902666778618331136\\/1622454207\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"77\":{\"id\":1010923185804541953,\"id_str\":\"1010923185804541953\",\"name\":\"Odenigbo1 ndi anambra\",\"screen_name\":\"feranmicubano\",\"location\":\"Lagos\",\"description\":\"auto spare-part dealer\\/marriage counsellor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":448,\"friends_count\":1176,\"listed_count\":0,\"created_at\":\"Sun Jun 24 16:30:44 +0000 2018\",\"favourites_count\":1602,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010923185804541953\\/1656847465\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"78\":{\"id\":311120818,\"id_str\":\"311120818\",\"name\":\"Left Coast Librarian \\ud83c\\udf32\",\"screen_name\":\"LeftCoastMLIS\",\"location\":\"Pacific Northwest\",\"description\":\"MLIS, @SJSU \\ud83d\\udcda MA, Int\\u2019l Human Rights, @josefkorbel \\ud83c\\uddfa\\ud83c\\uddf3 True crime obsessive \\ud83d\\udd0e Space & aviation geek \\u2708\\ufe0f Tabletop gamer \\ud83c\\udfb2 Ally \\ud83c\\udff3\\ufe0f\\u200d\\ud83c\\udf08\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":3127,\"listed_count\":9,\"created_at\":\"Sat Jun 04 22:54:20 +0000 2011\",\"favourites_count\":11341,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1369,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1497166624960376833\\/opldLcf5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1497166624960376833\\/opldLcf5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/311120818\\/1656784566\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"79\":{\"id\":2841969340,\"id_str\":\"2841969340\",\"name\":\"Charleson Otubu\",\"screen_name\":\"IAMCharleson\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Enterpreneur, SlayChat Founder, Content Creator, imarketer, Web Develper, FullStack Developer, JavaScript, HTML, CSS, JAVA, C++, PHP, PYTHON,\",\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/hellocharleson\",\"display_url\":\"linkedin.com\\/in\\/hellocharle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8750,\"friends_count\":870,\"listed_count\":24,\"created_at\":\"Thu Oct 23 14:33:23 +0000 2014\",\"favourites_count\":190,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":250,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2841969340\\/1595895798\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"80\":{\"id\":2841969340,\"id_str\":\"2841969340\",\"name\":\"Charleson Otubu\",\"screen_name\":\"IAMCharleson\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Enterpreneur, SlayChat Founder, Content Creator, imarketer, Web Develper, FullStack Developer, JavaScript, HTML, CSS, JAVA, C++, PHP, PYTHON,\",\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/hellocharleson\",\"display_url\":\"linkedin.com\\/in\\/hellocharle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8750,\"friends_count\":870,\"listed_count\":24,\"created_at\":\"Thu Oct 23 14:33:23 +0000 2014\",\"favourites_count\":190,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":250,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2841969340\\/1595895798\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"81\":{\"id\":900012558815559680,\"id_str\":\"900012558815559680\",\"name\":\"Jape Puntila \\ud83d\\udc20\\ud83c\\uddfa\\ud83c\\udde6\",\"screen_name\":\"JapePuntila\",\"location\":\"why ask?\",\"description\":\"Politiikan seuraaja, yleisten asioiden p\\u00e4ivittelij\\u00e4, vaativa asiakas, veronmaksaja. Blocked by @HelsinkiPoliisi. Crazy ain\\u2019t original no more\\ud83d\\ude44\",\"url\":\"https:\\/\\/t.co\\/JeVY2L1T7h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JeVY2L1T7h\",\"expanded_url\":\"http:\\/\\/www.puntilaenterprise.tw\",\"display_url\":\"puntilaenterprise.tw\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":351,\"friends_count\":586,\"listed_count\":2,\"created_at\":\"Tue Aug 22 15:11:30 +0000 2017\",\"favourites_count\":42657,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17976,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/979101617738911746\\/H9FEmILV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/979101617738911746\\/H9FEmILV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/900012558815559680\\/1656444002\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"82\":{\"id\":1010923185804541953,\"id_str\":\"1010923185804541953\",\"name\":\"Odenigbo1 ndi anambra\",\"screen_name\":\"feranmicubano\",\"location\":\"Lagos\",\"description\":\"auto spare-part dealer\\/marriage counsellor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":448,\"friends_count\":1176,\"listed_count\":0,\"created_at\":\"Sun Jun 24 16:30:44 +0000 2018\",\"favourites_count\":1602,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010923185804541953\\/1656847465\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"83\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"84\":{\"id\":1510942253191249925,\"id_str\":\"1510942253191249925\",\"name\":\"Olukorede Joy\",\"screen_name\":\"JoyOlukorede\",\"location\":\"Akure, Ondo State\",\"description\":\"Official Campus Ambassador at International MUN\\u00b6Industrial Chemist (in View)\\u00b6Data Analytics enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":213,\"listed_count\":0,\"created_at\":\"Mon Apr 04 11:28:29 +0000 2022\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510942253191249925\\/1658619740\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"85\":{\"id\":1338167900490838018,\"id_str\":\"1338167900490838018\",\"name\":\"pioneer \\u03c0\\u03c0\\ud83d\\udc93\",\"screen_name\":\"gamar_imam\",\"location\":\"Lagos, Nigeria\",\"description\":\"web developer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":384,\"listed_count\":1,\"created_at\":\"Sun Dec 13 17:04:35 +0000 2020\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1338167900490838018\\/1659712689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"86\":{\"id\":1271350597732782080,\"id_str\":\"1271350597732782080\",\"name\":\"Mahmud Tim Kargbo\",\"screen_name\":\"MahmudTim\",\"location\":\"Sierra Leone\",\"description\":\"Journalist, Researcher and Social Commentator\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5721,\"friends_count\":4042,\"listed_count\":9,\"created_at\":\"Fri Jun 12 07:57:06 +0000 2020\",\"favourites_count\":30,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1269,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477093009061732352\\/hEwGz557_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477093009061732352\\/hEwGz557_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"87\":{\"id\":510963054,\"id_str\":\"510963054\",\"name\":\"Johnny Ojobasi\",\"screen_name\":\"JohnnyOjobasi\",\"location\":\"Lagos, Nigeria\",\"description\":\"Life makes no sense without the creator\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Thu Mar 01 22:33:44 +0000 2012\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/510963054\\/1435077945\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"88\":{\"id\":1500134877089435648,\"id_str\":\"1500134877089435648\",\"name\":\"PETER OBI'S BABY\",\"screen_name\":\"Stingray1o1\",\"location\":\"Lekki, Nigeria\",\"description\":\"send a dm strictly for business \\npromotions only...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1562,\"friends_count\":321,\"listed_count\":0,\"created_at\":\"Sat Mar 05 15:43:31 +0000 2022\",\"favourites_count\":32297,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12622,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543256509408313344\\/k08jjuKG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543256509408313344\\/k08jjuKG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1500134877089435648\\/1646983324\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"89\":{\"id\":510963054,\"id_str\":\"510963054\",\"name\":\"Johnny Ojobasi\",\"screen_name\":\"JohnnyOjobasi\",\"location\":\"Lagos, Nigeria\",\"description\":\"Life makes no sense without the creator\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Thu Mar 01 22:33:44 +0000 2012\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/510963054\\/1435077945\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"90\":{\"id\":978009861324763136,\"id_str\":\"978009861324763136\",\"name\":\"Affectionate_Beau\",\"screen_name\":\"Aff_Beau\",\"location\":\"Nigeria\",\"description\":\"NO!!! I don't mind being special, isn't that what we all want?\\ud83e\\udd14\",\"url\":\"https:\\/\\/t.co\\/109TTtKJJu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/109TTtKJJu\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/affectionate__beau\",\"display_url\":\"instagram.com\\/affectionate__\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 25 20:44:56 +0000 2018\",\"favourites_count\":600,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":540,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528743185345916928\\/Zu0mDdW4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528743185345916928\\/Zu0mDdW4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/978009861324763136\\/1642884083\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"91\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"92\":{\"id\":1017067639036891136,\"id_str\":\"1017067639036891136\",\"name\":\"#CFC Jay Tallie\\ud83d\\udc99\\ud83d\\udc99\\u2b50\\u2b50\",\"screen_name\":\"2jtFoster\",\"location\":\"Accra, Ghana\",\"description\":\"Loves Football #Chelsea #TheBlues\\n#FREEPALESTINE #BDS #AntiZionist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":154,\"friends_count\":384,\"listed_count\":0,\"created_at\":\"Wed Jul 11 15:26:36 +0000 2018\",\"favourites_count\":23613,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2412,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535551380974354432\\/a8aSuajF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535551380974354432\\/a8aSuajF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1017067639036891136\\/1616357341\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"93\":{\"id\":22252383,\"id_str\":\"22252383\",\"name\":\"#Judy Votes Blue \\ud83c\\uddfa\\ud83c\\uddf8\",\"screen_name\":\"gsojudy\",\"location\":\"VA\",\"description\":\"Horse crazy. USAF retiree\\/27 years. Foreign Service 14yrs. TNBC & HER2+ BC #FuckBreastCancer. #Resister Everyone counts or nobody counts!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4395,\"friends_count\":4958,\"listed_count\":3,\"created_at\":\"Sat Feb 28 12:56:35 +0000 2009\",\"favourites_count\":80508,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42661,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542793737469927425\\/1xBzkJuu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542793737469927425\\/1xBzkJuu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22252383\\/1636062317\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"94\":{\"id\":900012558815559680,\"id_str\":\"900012558815559680\",\"name\":\"Jape Puntila \\ud83d\\udc20\\ud83c\\uddfa\\ud83c\\udde6\",\"screen_name\":\"JapePuntila\",\"location\":\"why ask?\",\"description\":\"Politiikan seuraaja, yleisten asioiden p\\u00e4ivittelij\\u00e4, vaativa asiakas, veronmaksaja. Blocked by @HelsinkiPoliisi. Crazy ain\\u2019t original no more\\ud83d\\ude44\",\"url\":\"https:\\/\\/t.co\\/JeVY2L1T7h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JeVY2L1T7h\",\"expanded_url\":\"http:\\/\\/www.puntilaenterprise.tw\",\"display_url\":\"puntilaenterprise.tw\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":351,\"friends_count\":586,\"listed_count\":2,\"created_at\":\"Tue Aug 22 15:11:30 +0000 2017\",\"favourites_count\":42657,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17976,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/979101617738911746\\/H9FEmILV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/979101617738911746\\/H9FEmILV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/900012558815559680\\/1656444002\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"95\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"96\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"97\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"98\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"99\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"100\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"101\":{\"id\":1342358888331567105,\"id_str\":\"1342358888331567105\",\"name\":\"\\ud83c\\udde8 \\ud83c\\uddf7 \\ud83c\\udde6 \\ud83c\\udde8 \\ud83c\\uddf0 \\ud83c\\uddf1 \\ud83c\\uddf4 \\ud83c\\udde6 \\ud83c\\udde9 \\ud83c\\uddea \\ud83c\\udde9 \\ud83c\\uddf9 \\ud83c\\uddfb\",\"screen_name\":\"shollykhay\",\"location\":\"Lagos, Nigeria\",\"description\":\"posting fun contents from TikTok Instagram @crackloaded_tv please engage my tweets that\\u2019s all I have please Sportybet zone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1010,\"friends_count\":3316,\"listed_count\":0,\"created_at\":\"Fri Dec 25 06:38:40 +0000 2020\",\"favourites_count\":4096,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":891,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342358888331567105\\/1611173243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"102\":{\"id\":1342358888331567105,\"id_str\":\"1342358888331567105\",\"name\":\"\\ud83c\\udde8 \\ud83c\\uddf7 \\ud83c\\udde6 \\ud83c\\udde8 \\ud83c\\uddf0 \\ud83c\\uddf1 \\ud83c\\uddf4 \\ud83c\\udde6 \\ud83c\\udde9 \\ud83c\\uddea \\ud83c\\udde9 \\ud83c\\uddf9 \\ud83c\\uddfb\",\"screen_name\":\"shollykhay\",\"location\":\"Lagos, Nigeria\",\"description\":\"posting fun contents from TikTok Instagram @crackloaded_tv please engage my tweets that\\u2019s all I have please Sportybet zone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1010,\"friends_count\":3316,\"listed_count\":0,\"created_at\":\"Fri Dec 25 06:38:40 +0000 2020\",\"favourites_count\":4096,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":891,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342358888331567105\\/1611173243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"103\":{\"id\":1363859738,\"id_str\":\"1363859738\",\"name\":\"Ethereal BADNE$$\",\"screen_name\":\"FunJumbo\",\"location\":\"lagos\",\"description\":\"P R O P H E T A \\ud80c\\udef9 \\ud80c\\udc80 \\ud80c\\udd43\",\"url\":\"https:\\/\\/t.co\\/vVec4wzqlt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vVec4wzqlt\",\"expanded_url\":\"https:\\/\\/badnedollardollar.trac.co\\/badnedollardollarmandem\",\"display_url\":\"badnedollardollar.trac.co\\/badnedollardol\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2320,\"friends_count\":2248,\"listed_count\":1,\"created_at\":\"Fri Apr 19 07:56:58 +0000 2013\",\"favourites_count\":2635,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19785,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435138998767398913\\/l7kmURqT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435138998767398913\\/l7kmURqT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363859738\\/1604479340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"104\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"105\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"106\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"107\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"108\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"109\":{\"id\":900647718590320640,\"id_str\":\"900647718590320640\",\"name\":\"Adedamola\",\"screen_name\":\"tomidearoso\",\"location\":\"Abuja\",\"description\":\"Zaphnathpaaneah| Writer| Geologist| \\u05d9\\u05b0\\u05d4\\u05d5\\u05bc\\u05d3\\u05b8\\u05d4|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6980,\"friends_count\":6543,\"listed_count\":2,\"created_at\":\"Thu Aug 24 09:15:24 +0000 2017\",\"favourites_count\":69571,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542178723977482241\\/CFH8yuqN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542178723977482241\\/CFH8yuqN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/900647718590320640\\/1646359596\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"110\":{\"id\":1954402777,\"id_str\":\"1954402777\",\"name\":\"TheCable\",\"screen_name\":\"thecableng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's independent online newspaper\",\"url\":\"https:\\/\\/t.co\\/8BVA5oEStE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BVA5oEStE\",\"expanded_url\":\"http:\\/\\/www.thecable.ng\",\"display_url\":\"thecable.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":977705,\"friends_count\":4374,\"listed_count\":846,\"created_at\":\"Fri Oct 11 15:01:36 +0000 2013\",\"favourites_count\":3093,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":217605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485955811918684163\\/Zd2E7nxF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485955811918684163\\/Zd2E7nxF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1954402777\\/1655235212\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"111\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"112\":{\"id\":2482037701,\"id_str\":\"2482037701\",\"name\":\"Abiola Akodu\",\"screen_name\":\"The_man_abiola\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your step-daddy| ARCHITECT | Creative designer \\ud83d\\udc69\\u200d\\ud83c\\udfa8 | NOTION DESIGNS | CONTACT ME\\u260e\\ufe0f: +2347019503019 | E-mail \\ud83d\\udcec: akoduabiola2@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":132,\"friends_count\":226,\"listed_count\":0,\"created_at\":\"Wed May 07 12:34:29 +0000 2014\",\"favourites_count\":2591,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2482037701\\/1655583774\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"113\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2657,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2054,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"114\":{\"id\":1214830119484833792,\"id_str\":\"1214830119484833792\",\"name\":\"Fwc Token\",\"screen_name\":\"Innersecret3\",\"location\":\"Lagos, Nigeria\",\"description\":\"Am very focus & I stand by what I believe in, I set my goals and work hard towards it, I depend on myself and my only obligation is to my family & close friends\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":368,\"friends_count\":1014,\"listed_count\":3,\"created_at\":\"Wed Jan 08 08:44:38 +0000 2020\",\"favourites_count\":4217,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512021573997318147\\/nNkWsfzP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512021573997318147\\/nNkWsfzP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1214830119484833792\\/1649329063\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"115\":{\"id\":971333517778014208,\"id_str\":\"971333517778014208\",\"name\":\"CUPID AUTOS NG\",\"screen_name\":\"CupidAutosNG\",\"location\":\"LAGOS,NIGERIA\",\"description\":\"WELCOME TO CUPID AUTOS NG\\ud83e\\udd1dAUTOMOBILE DEALER\\u2728 INSTAGRAM:Cupid_AUTOS.NG\\/MANCHESTER UNITED FC. \\/RELIABLE BENZ PLUG\\ud83d\\udd0c WE SELL\\/WE BUY\\/WE PRE-ORDER \\ud83d\\udcf207085957744\",\"url\":\"https:\\/\\/t.co\\/egecHBjqtk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/egecHBjqtk\",\"expanded_url\":\"http:\\/\\/Wa.me\\/+2347085957744\",\"display_url\":\"Wa.me\\/+2347085957744\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3763,\"friends_count\":3244,\"listed_count\":3,\"created_at\":\"Wed Mar 07 10:35:31 +0000 2018\",\"favourites_count\":26997,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":37081,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482398059522842634\\/cqzLIy_Y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482398059522842634\\/cqzLIy_Y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/971333517778014208\\/1642266214\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"116\":{\"id\":958489440560779265,\"id_str\":\"958489440560779265\",\"name\":\"AdewaleMubarack\",\"screen_name\":\"AdewaleMubarack\",\"location\":\"Abuja, Nigeria\",\"description\":\"Hi, remember it is possible if you try. I am Adewale and with love to you, always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":238,\"friends_count\":1502,\"listed_count\":0,\"created_at\":\"Tue Jan 30 23:57:45 +0000 2018\",\"favourites_count\":4186,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549849761305530370\\/SdA_N87W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549849761305530370\\/SdA_N87W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/958489440560779265\\/1658353112\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"117\":{\"id\":1534518690527461379,\"id_str\":\"1534518690527461379\",\"name\":\"Viviannwodo_\",\"screen_name\":\"Viviannwodo_\",\"location\":\"Enugu, Nigeria\",\"description\":\"\\ud83d\\udc9e Pro Hairstylist\\/ B.ED in French\\n\\ud83d\\udc9eRealist \\n\\ud83d\\udc9eBi - lingual \\ud83c\\udde8\\ud83c\\uddf5\\ud83c\\uddf3\\ud83c\\uddec\\n\\ud83d\\udc9eGod first \\ud83e\\udd70\\n\\ud83d\\udea9 Stay away from me if you're not intentional\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Wed Jun 08 12:53:43 +0000 2022\",\"favourites_count\":377,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552249947923382273\\/qO4DXPV7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552249947923382273\\/qO4DXPV7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534518690527461379\\/1654757514\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"118\":{\"id\":1338167900490838018,\"id_str\":\"1338167900490838018\",\"name\":\"pioneer \\u03c0\\u03c0\\ud83d\\udc93\",\"screen_name\":\"gamar_imam\",\"location\":\"Lagos, Nigeria\",\"description\":\"web developer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":384,\"listed_count\":1,\"created_at\":\"Sun Dec 13 17:04:35 +0000 2020\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1338167900490838018\\/1659712689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"119\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"120\":{\"id\":1507797681938341892,\"id_str\":\"1507797681938341892\",\"name\":\"Simeon Ayendi\",\"screen_name\":\"ayendi_simeon\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Blogger and Financial Analyst\",\"url\":\"https:\\/\\/t.co\\/GbP3uRQl5f\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GbP3uRQl5f\",\"expanded_url\":\"http:\\/\\/www.konsize.xyz\",\"display_url\":\"konsize.xyz\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":158,\"listed_count\":0,\"created_at\":\"Sat Mar 26 19:13:07 +0000 2022\",\"favourites_count\":465,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":96,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545707891755286529\\/G04ZX8TB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545707891755286529\\/G04ZX8TB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507797681938341892\\/1659198031\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"121\":{\"id\":25868966,\"id_str\":\"25868966\",\"name\":\"Chakams\",\"screen_name\":\"chakams\",\"location\":\"nigeria\",\"description\":\"https:\\/\\/t.co\\/nJkBKmGLYa. Fatherhood...& Beyonce\",\"url\":\"https:\\/\\/t.co\\/02whuwMHPN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/02whuwMHPN\",\"expanded_url\":\"http:\\/\\/newsancenow.wordpress.com\",\"display_url\":\"newsancenow.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJkBKmGLYa\",\"expanded_url\":\"http:\\/\\/News.Music.Sport.Tech\",\"display_url\":\"News.Music.Sport.Tech\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":1015,\"friends_count\":960,\"listed_count\":54,\"created_at\":\"Sun Mar 22 19:56:46 +0000 2009\",\"favourites_count\":915,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117112,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1288863437360160771\\/F2yHcPgK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1288863437360160771\\/F2yHcPgK_normal.jpg\",\"profile_link_color\":\"9D582E\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"122\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"123\":{\"id\":1512828788,\"id_str\":\"1512828788\",\"name\":\"\\ud83c\\udf1fFaith\",\"screen_name\":\"faithluseno\",\"location\":\"Ke\",\"description\":\"LIVE TRUTH \\/ LIVE RIGHT \\/ LIVE GODLY\\/GOODLY\",\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/mishiefinthetemple\",\"display_url\":\"youtube.com\\/user\\/mishiefin\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5212,\"friends_count\":5543,\"listed_count\":9,\"created_at\":\"Thu Jun 13 08:58:42 +0000 2013\",\"favourites_count\":9146,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1512828788\\/1657043375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"124\":{\"id\":835211810,\"id_str\":\"835211810\",\"name\":\"StopBadLeadership\\u2712\\ud83d\\udce7\",\"screen_name\":\"SaveThePeoplle\",\"location\":\"Abuja, Nigeria\",\"description\":\"Injustice is a threat to peace, coexistence and development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":464,\"listed_count\":2,\"created_at\":\"Thu Sep 20 09:52:19 +0000 2012\",\"favourites_count\":3499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/835211810\\/1632594200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"125\":{\"id\":1137100939511377920,\"id_str\":\"1137100939511377920\",\"name\":\"Conzummate\",\"screen_name\":\"conzummate\",\"location\":\"UAE\",\"description\":\"A result-oriented Digital Marketing agency. Serving in Social Media Management, Digital Marketing, Web Development, Lead generation, and SEO.\",\"url\":\"https:\\/\\/t.co\\/SpEy0gixTj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SpEy0gixTj\",\"expanded_url\":\"http:\\/\\/conzummate.com\",\"display_url\":\"conzummate.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":701,\"listed_count\":0,\"created_at\":\"Fri Jun 07 20:56:05 +0000 2019\",\"favourites_count\":300,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":321,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543165334852616194\\/1wE8ZdSi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543165334852616194\\/1wE8ZdSi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1137100939511377920\\/1613926995\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"126\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"127\":{\"id\":1150749854144110592,\"id_str\":\"1150749854144110592\",\"name\":\"Anna Chizoba\",\"screen_name\":\"safareerealty\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"Real Estate Consultant\\/investment advisor. Dm for rentals, lease, buying, selling. Lover of beautiful structures, Turn on your notification.\",\"url\":\"https:\\/\\/t.co\\/2s0hA75jAY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2s0hA75jAY\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/safareerealty\",\"display_url\":\"instagram.com\\/safareerealty\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":176,\"friends_count\":184,\"listed_count\":0,\"created_at\":\"Mon Jul 15 12:51:59 +0000 2019\",\"favourites_count\":1856,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":620,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551650895921831936\\/3YFO-YuE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551650895921831936\\/3YFO-YuE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1150749854144110592\\/1657588783\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"128\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"129\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"130\":{\"id\":1468528632301817861,\"id_str\":\"1468528632301817861\",\"name\":\"Son of the Soil\",\"screen_name\":\"Ennys_Abbey\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am a Digital marketer & Graphic designer, a social commentator, an agent of change. #Branding #Politics #Leadership #Crypto #PiNetwork\",\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348140434651?text=i+want+more+information\",\"display_url\":\"wa.me\\/2348140434651?\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":399,\"listed_count\":8,\"created_at\":\"Wed Dec 08 10:31:39 +0000 2021\",\"favourites_count\":398,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468528632301817861\\/1658149317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"131\":{\"id\":1482356556813545473,\"id_str\":\"1482356556813545473\",\"name\":\"Nigeria youths for Peter Obi\",\"screen_name\":\"peterobimandate\",\"location\":\"Abuja, Nigeria\",\"description\":\"Everything Peter Obi\\/\\/Update Peter Obi...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237,\"friends_count\":225,\"listed_count\":3,\"created_at\":\"Sat Jan 15 14:18:54 +0000 2022\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482356556813545473\\/1659438195\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"132\":{\"id\":1491725022964105217,\"id_str\":\"1491725022964105217\",\"name\":\"Muyiwa Owen\",\"screen_name\":\"muyiwaowen\",\"location\":\"Nigeria\",\"description\":\"Wordpress website designer\\nPHP and Front-end developer\",\"url\":\"https:\\/\\/t.co\\/ByabPtyakR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ByabPtyakR\",\"expanded_url\":\"http:\\/\\/webpadi.com\",\"display_url\":\"webpadi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3521,\"friends_count\":13,\"listed_count\":2,\"created_at\":\"Thu Feb 10 10:45:47 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":731,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540947105698693122\\/G-0lhGk3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540947105698693122\\/G-0lhGk3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491725022964105217\\/1659410719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"133\":{\"id\":1481480998252646402,\"id_str\":\"1481480998252646402\",\"name\":\"Sunmola Abigail Oluwaferanmi\",\"screen_name\":\"SUPalivezobo\",\"location\":\"Lagos, Nigeria\",\"description\":\"physiotherapy student, University of Lagos\\/\\/Violinist\\/\\/A fashion designer\\/\\/Ardent lover of God\\/\\/social media volunteer @updgroup\\/\\/No 1 Zobo vendor @SUPaliveZobo\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Thu Jan 13 04:20:03 +0000 2022\",\"favourites_count\":40,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549644043499479042\\/dd4YcxHv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549644043499479042\\/dd4YcxHv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481480998252646402\\/1658298947\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"134\":{\"id\":1449752541378629634,\"id_str\":\"1449752541378629634\",\"name\":\"Crypto empire\",\"screen_name\":\"Cryptoempire19\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your number 1 Crypto information Plug.\\n\\nDisclaimer: My tweet is not an investment advice. DYOR, Start ur Crypto journey here\\nhttps:\\/\\/t.co\\/tp4vM3kIUL\",\"url\":\"https:\\/\\/t.co\\/B6dwb3jEPv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B6dwb3jEPv\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/aemilabravo\",\"display_url\":\"linktr.ee\\/aemilabravo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tp4vM3kIUL\",\"expanded_url\":\"https:\\/\\/amzn.to\\/3yGY2wg\",\"display_url\":\"amzn.to\\/3yGY2wg\",\"indices\":[126,149]}]}},\"protected\":false,\"followers_count\":47,\"friends_count\":160,\"listed_count\":11,\"created_at\":\"Sun Oct 17 15:02:14 +0000 2021\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":746,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475753622193512451\\/98L1hUYR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475753622193512451\\/98L1hUYR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"135\":{\"id\":1109235758701924354,\"id_str\":\"1109235758701924354\",\"name\":\"Kaduna Phones & Cars PLUG.\",\"screen_name\":\"Phone_Stores\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Phones and cars Dealer , \\u260e\\ufe0f Or WhatsApp 07032655719\\/ 08033110080\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8365,\"friends_count\":8359,\"listed_count\":6,\"created_at\":\"Fri Mar 22 23:29:48 +0000 2019\",\"favourites_count\":158375,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33371,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481505324624400386\\/byywnq6J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481505324624400386\\/byywnq6J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1109235758701924354\\/1618277573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"136\":{\"id\":1507072848157974530,\"id_str\":\"1507072848157974530\",\"name\":\"CityHunter Majestys\",\"screen_name\":\"CityHunterMaje1\",\"location\":\"Nigeria\",\"description\":\"COMEDIAN\",\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/majestysComedy\",\"display_url\":\"youtube.com\\/c\\/majestysCome\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 24 19:12:57 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507072848157974530\\/1649238032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"137\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"138\":{\"id\":943112178,\"id_str\":\"943112178\",\"name\":\"Nditah Sam \\ud83e\\udd80 #OBIdient\",\"screen_name\":\"nditah_sammy\",\"location\":\"Nigeria\",\"description\":\"CTO @ PMT | #AWSCommunityBuilder #PrismaAmbassad\\nSeek Truth, Be Kind! Tweets are mine.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":2249,\"listed_count\":4,\"created_at\":\"Mon Nov 12 09:03:53 +0000 2012\",\"favourites_count\":4708,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2234,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428023396244262912\\/T69NAMml_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428023396244262912\\/T69NAMml_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/943112178\\/1623483322\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"139\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"140\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"141\":{\"id\":433620593,\"id_str\":\"433620593\",\"name\":\"F.Fayankinnu&Co\",\"screen_name\":\"ffcproperties\",\"location\":\"Abuja\",\"description\":\"Estate Surveyors and Valuers, Property Consultants, Property Managers.\\nWe do:Valuation, Agency,(sales & lease), property management & more\",\"url\":\"https:\\/\\/t.co\\/XGOCfY9yO5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XGOCfY9yO5\",\"expanded_url\":\"https:\\/\\/ffayankinnu-co-estate-surveyors.business.site\",\"display_url\":\"\\u2026nnu-co-estate-surveyors.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":408,\"listed_count\":0,\"created_at\":\"Sat Dec 10 20:05:02 +0000 2011\",\"favourites_count\":122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554226105703403520\\/lSJFQnuK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554226105703403520\\/lSJFQnuK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/433620593\\/1601753715\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"142\":{\"id\":1347582459790192640,\"id_str\":\"1347582459790192640\",\"name\":\"Bo\\u00ef Flex\\ud83c\\udf1e\",\"screen_name\":\"BoiFlex_\",\"location\":\"Lagos\",\"description\":\"Bo\\u00ef Flexing to d\\u00e2h \\ud83c\\udf0d\\nlyrically xycho \\ud83e\\udd76\\ud83c\\udfb6 ll strongly believe I'm gonna take over \\ud83d\\udcaa\",\"url\":\"https:\\/\\/t.co\\/VoReNIeC4V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VoReNIeC4V\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/invites\\/contact\\/?i=15a6b79wvvpv7&utm_content=me8vbyz\",\"display_url\":\"instagram.com\\/invites\\/contac\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":438,\"friends_count\":182,\"listed_count\":0,\"created_at\":\"Fri Jan 08 16:36:20 +0000 2021\",\"favourites_count\":2865,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":264,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524351934039273473\\/DfwjltVK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524351934039273473\\/DfwjltVK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1347582459790192640\\/1652268894\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"143\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"144\":{\"id\":994199758406287361,\"id_str\":\"994199758406287361\",\"name\":\"DEXIT ARMY\\ud83d\\udcb9(MR DEXIT)\",\"screen_name\":\"Bigwig430\",\"location\":\"Nigeria\",\"description\":\"A Crypto trader and Investor, BLOCKCHAIN enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":609,\"friends_count\":831,\"listed_count\":6,\"created_at\":\"Wed May 09 12:57:48 +0000 2018\",\"favourites_count\":16010,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461387979017048072\\/HjkCAWBb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461387979017048072\\/HjkCAWBb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/994199758406287361\\/1649685977\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"145\":{\"id\":931326091,\"id_str\":\"931326091\",\"name\":\"Dr Opiyansky\",\"screen_name\":\"Opiyansky\",\"location\":\"Abuja\",\"description\":\"A Nigerian Patriot who loves to make friends and help people.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":247,\"listed_count\":0,\"created_at\":\"Wed Nov 07 05:38:10 +0000 2012\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487311163780218884\\/EP6lJaRR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487311163780218884\\/EP6lJaRR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/931326091\\/1643436539\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"146\":{\"id\":140880504,\"id_str\":\"140880504\",\"name\":\"IG:Real_McWIN\\u2122\\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\udde7\\ud83c\\uddef\",\"screen_name\":\"MasterMinderz\",\"location\":\"Lagos To Cape Town \",\"description\":\"Born Without Silver Spoon Working Hard To Get Golden Spoon.\\u2663La Madrid \\u2663Sales Specialist \\ud83d\\udc5c \\u2663 WizkidFC\\u2663 Hodophile\\u2708 \\u2663Brand Influencer\\u2663 #Obidient \\u2663Tech Geek \\ud83e\\udd13\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1996,\"friends_count\":703,\"listed_count\":11,\"created_at\":\"Thu May 06 16:07:59 +0000 2010\",\"favourites_count\":617,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551036400245637122\\/4_jjnJFu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551036400245637122\\/4_jjnJFu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/140880504\\/1508057803\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"147\":{\"id\":1549747236451631105,\"id_str\":\"1549747236451631105\",\"name\":\"Opta Punter\",\"screen_name\":\"OptaPunter\",\"location\":\"Somewhere in Nigeria\",\"description\":\"Opta Punter | football lover \\u26bd| \\u2022 #CR7 \\ud83d\\udc10| Arsenal\\ud83c\\udf88| Sport business \\ud83e\\ude99| sporty bet \\ud83d\\udd34 bet9ja \\ud83d\\udcb5 | adventure \\ud83d\\udeeb\\ud83c\\udfd6\\ufe0f\\ud83c\\udfdd\\ufe0f\\ud83c\\udf10\",\"url\":\"https:\\/\\/t.co\\/zbHTHXtlL4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zbHTHXtlL4\",\"expanded_url\":\"https:\\/\\/t.me\\/+LlS_o_0JOUxkYTlk\",\"display_url\":\"t.me\\/+LlS_o_0JOUxkY\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":57,\"listed_count\":0,\"created_at\":\"Wed Jul 20 13:25:26 +0000 2022\",\"favourites_count\":250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":64,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549832668329771010\\/kASyuuMe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549832668329771010\\/kASyuuMe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549747236451631105\\/1658343876\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"148\":{\"id\":1332786054546513922,\"id_str\":\"1332786054546513922\",\"name\":\"Yaasir\\u00a9\",\"screen_name\":\"Yaaseir\",\"location\":\"Nigeria\",\"description\":\"Follower Of Sheikh Ibrahim Zakzaky (H). I share news about Islamic movement & Sheikh Zakzaky (H) as well as sharing the victim's account of #ZariaMassacre. \\ud83d\\udcf7\\ud83d\\udcdd\",\"url\":\"https:\\/\\/t.co\\/PNDm7fujjg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PNDm7fujjg\",\"expanded_url\":\"http:\\/\\/www.imnig.org\",\"display_url\":\"imnig.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1538,\"friends_count\":1425,\"listed_count\":3,\"created_at\":\"Sat Nov 28 20:39:45 +0000 2020\",\"favourites_count\":2621,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4681,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530563089225207808\\/sHM4s_Gr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530563089225207808\\/sHM4s_Gr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1332786054546513922\\/1655234868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"149\":{\"id\":2965962406,\"id_str\":\"2965962406\",\"name\":\"kinny Rhymez RGM\",\"screen_name\":\"kinny_kinnygh\",\"location\":\"Ghana\",\"description\":\"Am kinny Rhymez a music producer, Beat maker and a musician. \\nCall or chat this number when you need beat or to book me +233240324720\\/brcityganster@gmail.com\",\"url\":\"https:\\/\\/t.co\\/UXhzNoGWyH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UXhzNoGWyH\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCd31tQcoXP2w4J833wxLABQ\",\"display_url\":\"youtube.com\\/channel\\/UCd31t\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":627,\"friends_count\":1572,\"listed_count\":1,\"created_at\":\"Wed Jan 07 12:40:38 +0000 2015\",\"favourites_count\":306,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":499,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400512323840847874\\/7jyIYQCY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400512323840847874\\/7jyIYQCY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2965962406\\/1622743135\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"150\":{\"id\":356370832,\"id_str\":\"356370832\",\"name\":\"PASTOR ELVIS O. ASORO\",\"screen_name\":\"elvisasoro\",\"location\":\"LAGOS , NIGERIA \",\"description\":\"MINISTER OF THE GOSPEL OF JESUS CHRIST AND WRITER. LEAD PASTOR, RESTORATION POWER OF GOD MINISTRY INTERNATIONAL, TRIUMPHANT. LAG. NIGERIA. I AM A WORLD CHANGER!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":178,\"listed_count\":4,\"created_at\":\"Tue Aug 16 19:09:18 +0000 2011\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/356370832\\/1450964262\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"151\":{\"id\":1491728260002156546,\"id_str\":\"1491728260002156546\",\"name\":\"Darlington\",\"screen_name\":\"Darling41595671\",\"location\":\"Abuja, Nigeria\",\"description\":\"Enjoy every day like is your last day , travel to new places\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Thu Feb 10 10:58:45 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491728785561071617\\/S_JjQB2P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491728785561071617\\/S_JjQB2P_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"152\":{\"id\":1553132452750802944,\"id_str\":\"1553132452750802944\",\"name\":\"Sammy Crowd\",\"screen_name\":\"CrowdSammy\",\"location\":\"nigeria\",\"description\":\"Hello, Samuel is my name, Am from West Africa. If you need to raise a serious fund because you have a serious business or problem? Kindly contact me!!\",\"url\":\"https:\\/\\/t.co\\/OKqWfBRHJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OKqWfBRHJX\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/sammy_crowd\",\"display_url\":\"fiverr.com\\/sammy_crowd\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":132,\"listed_count\":0,\"created_at\":\"Fri Jul 29 21:37:04 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553133079715274759\\/adPuD39Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553133079715274759\\/adPuD39Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553132452750802944\\/1659130860\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"153\":{\"id\":737928274203004928,\"id_str\":\"737928274203004928\",\"name\":\"Timora Inyang\",\"screen_name\":\"timora_inyang\",\"location\":\"Uyo, Akwa Ibom State, Nigeria\",\"description\":\"Crypto Enthusiast\\/Influencer \\nContent Creator | Community & Social Media Manager | @unboundfinance\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1643,\"friends_count\":2119,\"listed_count\":8,\"created_at\":\"Wed Jun 01 08:46:25 +0000 2016\",\"favourites_count\":8703,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2591,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488733296620183560\\/ClEsytGm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488733296620183560\\/ClEsytGm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/737928274203004928\\/1568934371\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"154\":{\"id\":3084028211,\"id_str\":\"3084028211\",\"name\":\"Lilian anazodo\",\"screen_name\":\"lilymatyr\",\"location\":\"Benin-City, Nigeria\",\"description\":\"\\ud83c\\udf39last born\\ud83c\\udf39| aquarius\\u2652\\ufe0f |digital enterprenuer| Goal getter\\ud83d\\udcb0\\ud83d\\udcb0\",\"url\":\"https:\\/\\/t.co\\/ufTf8unVQU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ufTf8unVQU\",\"expanded_url\":\"http:\\/\\/www.businesstelegraph.co.uk\",\"display_url\":\"businesstelegraph.co.uk\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":421,\"friends_count\":358,\"listed_count\":0,\"created_at\":\"Tue Mar 10 13:40:15 +0000 2015\",\"favourites_count\":772,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":431,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538458797139800064\\/G3YqfbuT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538458797139800064\\/G3YqfbuT_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"155\":{\"id\":1485540922666500097,\"id_str\":\"1485540922666500097\",\"name\":\"Tripplepanda_\",\"screen_name\":\"tripplepanda\",\"location\":\"\",\"description\":\"Follow on Instagram @tripplepanda_ Subscribe to my YouTube @Tripplepanda_comedy \\ud83d\\udccaCrypto trader \\ud83e\\ude7aMedical Student \\ud83d\\ude0e6\\u20194ft\",\"url\":\"https:\\/\\/t.co\\/tSBHFnASf9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tSBHFnASf9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCO3iBRei3GEwlJFy4KIP-dg\",\"display_url\":\"youtube.com\\/channel\\/UCO3iB\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":605,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Mon Jan 24 09:12:40 +0000 2022\",\"favourites_count\":369,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1507457627667763252\\/heLNIWns_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1507457627667763252\\/heLNIWns_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485540922666500097\\/1643020353\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"156\":{\"id\":1399943458920402949,\"id_str\":\"1399943458920402949\",\"name\":\"Nigerians for peace and justice\",\"screen_name\":\"NFPJNig\",\"location\":\"Nigeria \",\"description\":\"Mobilising Civic Action to Counter Hate Speech and Violent Extremism both Online and Offline. Unity and Security? Vote Peter Obi for 9ja President #PeterObi2023\",\"url\":\"https:\\/\\/t.co\\/PsTqTr9Q2M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PsTqTr9Q2M\",\"expanded_url\":\"https:\\/\\/www.end-violence.org\\/members\\/african-cultural-awareness-norway\",\"display_url\":\"end-violence.org\\/members\\/africa\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1715,\"friends_count\":3039,\"listed_count\":1,\"created_at\":\"Wed Jun 02 04:19:06 +0000 2021\",\"favourites_count\":1871,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4963,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536555310600822784\\/9KoxG7-7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536555310600822784\\/9KoxG7-7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399943458920402949\\/1659890608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"157\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"158\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"159\":{\"id\":908861707363209216,\"id_str\":\"908861707363209216\",\"name\":\"Brandor X Inc.\",\"screen_name\":\"brandorxinc\",\"location\":\"Nigeria\",\"description\":\"Full Service Brand Consulting Agency \\ud83c\\udfaf Strategy | Visual Design | Brand Development\\/Management | Marketing & Promotions | Content | Brand Audit\\/Optimisation\",\"url\":\"https:\\/\\/t.co\\/Xpd0oCJ5vK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Xpd0oCJ5vK\",\"expanded_url\":\"http:\\/\\/www.brandorxinc.com\",\"display_url\":\"brandorxinc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":92,\"friends_count\":12,\"listed_count\":3,\"created_at\":\"Sat Sep 16 01:14:51 +0000 2017\",\"favourites_count\":409,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554986321931902978\\/E5G0dMLO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554986321931902978\\/E5G0dMLO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/908861707363209216\\/1659573693\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"160\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"161\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"162\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"163\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"164\":{\"id\":1126018021288480768,\"id_str\":\"1126018021288480768\",\"name\":\"Skillerdo superstar\",\"screen_name\":\"skillerdo\",\"location\":\"Lekki\",\"description\":\"I'm de man skillerdo Bae\\ud83c\\udf7e\\\" romantical i sing for yo..\\\"pose for de picture\\\"\\ud83d\\udcf8....@ https:\\/\\/t.co\\/N8Kq1ZLCJp\\nWhatsapp\\/Call me on ma +2348164705278\",\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed May 08 06:56:31 +0000 2019\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"165\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"166\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"167\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"168\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"169\":{\"id\":756445926735114240,\"id_str\":\"756445926735114240\",\"name\":\"Emmanuel SObio\\ud83c\\uddf7\\ud83c\\uddfa\",\"screen_name\":\"sobioemma\",\"location\":\"Nigeria\",\"description\":\"NFTs, Crypto, Digital Books.\",\"url\":\"https:\\/\\/t.co\\/FYYEoTIQ0V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FYYEoTIQ0V\",\"expanded_url\":\"http:\\/\\/bobbysobio.gumroad.com\",\"display_url\":\"bobbysobio.gumroad.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":488,\"listed_count\":6,\"created_at\":\"Fri Jul 22 11:08:57 +0000 2016\",\"favourites_count\":19156,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7869,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1446683983929085956\\/q1f_2e4w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1446683983929085956\\/q1f_2e4w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/756445926735114240\\/1633793106\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"170\":{\"id\":1489258822484914178,\"id_str\":\"1489258822484914178\",\"name\":\"Ayomide Gold\",\"screen_name\":\"Ayomidegolds15\",\"location\":\"Lagos, Nigeria\",\"description\":\"Public Figure\",\"url\":\"https:\\/\\/t.co\\/kJ1hn7Trs5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kJ1hn7Trs5\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC19-ZT4h3aJYKy1k4ZHU6fw\",\"display_url\":\"youtube.com\\/channel\\/UC19-Z\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25,\"friends_count\":241,\"listed_count\":0,\"created_at\":\"Thu Feb 03 15:26:01 +0000 2022\",\"favourites_count\":119,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489259007227273219\\/ysIZNH7F_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489259007227273219\\/ysIZNH7F_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489258822484914178\\/1643902114\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"171\":{\"id\":1483159936012062723,\"id_str\":\"1483159936012062723\",\"name\":\"Bright Obodoma\",\"screen_name\":\"BObodoma\",\"location\":\"university of Nigeria nsukka\",\"description\":\"enjoy solving problems\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Mon Jan 17 19:31:23 +0000 2022\",\"favourites_count\":131,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":108,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492280874641068036\\/rH_BxV9G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492280874641068036\\/rH_BxV9G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483159936012062723\\/1644617665\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"172\":{\"id\":1487352150,\"id_str\":\"1487352150\",\"name\":\"Ether\\u26a1\\ufe0f\",\"screen_name\":\"EtherKavalle\",\"location\":\"Calabar, Nigeria\",\"description\":\"Conscious||Aware ||Entrepreneur ||Writer ||FreeThinker ||Empathic || #NFT #Crypto #Metaverse Nerd #Bnb #Bitcoin #BTC #Cryptocurrency\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":411,\"friends_count\":1581,\"listed_count\":4,\"created_at\":\"Thu Jun 06 09:59:11 +0000 2013\",\"favourites_count\":1595,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8480,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551388483855564800\\/nVKLDHqR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551388483855564800\\/nVKLDHqR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487352150\\/1656604068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"173\":{\"id\":70808549,\"id_str\":\"70808549\",\"name\":\"Phillip Ikuvbogie\",\"screen_name\":\"truliewezt\",\"location\":\"Lagos, Nigeria\",\"description\":\"Writer | Developer\",\"url\":\"https:\\/\\/t.co\\/LwUSHRb1x7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LwUSHRb1x7\",\"expanded_url\":\"http:\\/\\/growthblueprint.org\",\"display_url\":\"growthblueprint.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":545,\"listed_count\":0,\"created_at\":\"Tue Sep 01 22:41:29 +0000 2009\",\"favourites_count\":2474,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":245,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/892740138773688320\\/vpHEdrtT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/892740138773688320\\/vpHEdrtT_normal.jpg\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"174\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"175\":{\"id\":987433921292926976,\"id_str\":\"987433921292926976\",\"name\":\"esKaper_kek\\ud83d\\udca6\",\"screen_name\":\"KofiEkyirKwakoh\",\"location\":\"Ghana\",\"description\":\"fairness & justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":306,\"listed_count\":1,\"created_at\":\"Fri Apr 20 20:52:47 +0000 2018\",\"favourites_count\":1975,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1406659108242067459\\/9vRa_zcP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1406659108242067459\\/9vRa_zcP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/987433921292926976\\/1646643379\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"176\":{\"id\":1541712126166941696,\"id_str\":\"1541712126166941696\",\"name\":\"Concerned Nigerians 4 Peter Obi\",\"screen_name\":\"CN4PO\",\"location\":\"Abuja\",\"description\":\"Official Page of Concerned Nigerians for Peter Obi support (CNPO)\",\"url\":\"https:\\/\\/t.co\\/bttwwxHdjL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bttwwxHdjL\",\"expanded_url\":\"https:\\/\\/concernednigeria4obi.com\",\"display_url\":\"concernednigeria4obi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Tue Jun 28 09:18:04 +0000 2022\",\"favourites_count\":19,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545428832592748544\\/vbi5AmHb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545428832592748544\\/vbi5AmHb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541712126166941696\\/1656408321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"177\":{\"id\":1357229682882707457,\"id_str\":\"1357229682882707457\",\"name\":\"Invincible \\u2764\\ufe0f\\ud83d\\udd4a\",\"screen_name\":\"InvincibleHighD\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udca6 investigative journalist\\u2022 Nigerian activist \\u2022Entrepreneur\\ud83d\\udcb0 \\u2022IML Student\\ud83d\\udc68\\u200d\\ud83d\\udcbb \\u2022\\ud83d\\udc68\\u200d\\ud83c\\udf93\\ud83d\\udc68\\u200d\\ud83c\\udf93 #God make me to be special \\u270c\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":685,\"listed_count\":0,\"created_at\":\"Thu Feb 04 07:29:22 +0000 2021\",\"favourites_count\":1099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":229,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1357229682882707457\\/1629735616\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"178\":{\"id\":390649656,\"id_str\":\"390649656\",\"name\":\"Nosa Blog\",\"screen_name\":\"nosablog\",\"location\":\"Lagos, Nigeria\",\"description\":\"24\\/7News\\ud83d\\udc25 celebrity gossip\\ud83d\\udc12 stories\\ud83d\\udc27 brand influencer \\ud83e\\udd85 Content writer\",\"url\":\"https:\\/\\/t.co\\/Q88cLi34r7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Q88cLi34r7\",\"expanded_url\":\"http:\\/\\/www.nosablog.com\",\"display_url\":\"nosablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2182,\"friends_count\":2494,\"listed_count\":4,\"created_at\":\"Fri Oct 14 09:35:21 +0000 2011\",\"favourites_count\":2583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":86256,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488539583684005899\\/vP3jNjVV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488539583684005899\\/vP3jNjVV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/390649656\\/1643730468\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"179\":{\"id\":1446142602026258436,\"id_str\":\"1446142602026258436\",\"name\":\"Nwachukwu David Chukwudumebi\",\"screen_name\":\"exponentnwachae\",\"location\":\"Lagos, Nigeria\",\"description\":\"50BG\\ud83c\\udf1f777K followers\\ud83d\\udc65, 7 figurer \\ud83d\\udc49https:\\/\\/t.co\\/JKPfVBX418 || Crypto King \\ud83d\\udc51https:\\/\\/t.co\\/urzBowm423 || Social Media booster https:\\/\\/t.co\\/vWnarDKS0K web 1 https\",\"url\":\"https:\\/\\/t.co\\/bFytXB5Cbj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bFytXB5Cbj\",\"expanded_url\":\"https:\\/\\/cb.run\\/qQG4\",\"display_url\":\"cb.run\\/qQG4\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JKPfVBX418\",\"expanded_url\":\"http:\\/\\/cb.run\\/6HND\",\"display_url\":\"cb.run\\/6HND\",\"indices\":[33,56]},{\"url\":\"https:\\/\\/t.co\\/urzBowm423\",\"expanded_url\":\"http:\\/\\/cb.run\\/nX4v\",\"display_url\":\"cb.run\\/nX4v\",\"indices\":[73,96]},{\"url\":\"https:\\/\\/t.co\\/vWnarDKS0K\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3zGBKrO\",\"display_url\":\"bit.ly\\/3zGBKrO\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":1722,\"friends_count\":4981,\"listed_count\":3,\"created_at\":\"Thu Oct 07 15:58:35 +0000 2021\",\"favourites_count\":8053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546015570268766209\\/qciS8Nyr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546015570268766209\\/qciS8Nyr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1446142602026258436\\/1650826483\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"180\":{\"id\":1162770983884918786,\"id_str\":\"1162770983884918786\",\"name\":\"Favour-laugh\",\"screen_name\":\"FavourLaugh\",\"location\":\"Benin-City, Nigeria\",\"description\":\"God first ,never look down on any man \\ud83e\\udd85\\ud83e\\udd85\\ud83e\\udd85\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":82,\"listed_count\":0,\"created_at\":\"Sat Aug 17 17:00:00 +0000 2019\",\"favourites_count\":486,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":313,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517614857704677377\\/JZTLtYzH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517614857704677377\\/JZTLtYzH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"181\":{\"id\":1105648627,\"id_str\":\"1105648627\",\"name\":\"CHIDEX OBANI \\ud83d\\udca5\\ud83d\\udca5\\ud83d\\udca5\",\"screen_name\":\"chidexobani\",\"location\":\"Lagos, Nigeria\",\"description\":\"UngunKnownMen, Music Artiste,\\nComedian, Dancer, \\n @manutd fan\\nI AM SWAG\",\"url\":\"https:\\/\\/t.co\\/9whjCNy6pd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9whjCNy6pd\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/ng\\/album\\/blood-of-jesus-single\\/1528790745\",\"display_url\":\"music.apple.com\\/ng\\/album\\/blood\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":535,\"friends_count\":803,\"listed_count\":2,\"created_at\":\"Sun Jan 20 07:38:51 +0000 2013\",\"favourites_count\":3616,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4247,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501155029641838596\\/_jPYbW2B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501155029641838596\\/_jPYbW2B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1105648627\\/1616417938\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"182\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2909,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"183\":{\"id\":1380609695602376704,\"id_str\":\"1380609695602376704\",\"name\":\"SammyGray\",\"screen_name\":\"SammyGrayE3\",\"location\":\"Nigeria\",\"description\":\"influencer, Crypto enthusiast, Graphic designer, Community manager.\\nlet's talk about crypto\\ud83d\\ude0a\\n\\n#DeFi #Metaverse, #NFT\\n$paw #Paw\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":96,\"friends_count\":651,\"listed_count\":2,\"created_at\":\"Fri Apr 09 19:53:19 +0000 2021\",\"favourites_count\":1042,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1638,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514641160261845000\\/nBOn5Yne_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514641160261845000\\/nBOn5Yne_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1380609695602376704\\/1649953568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"184\":{\"id\":1519705607472881666,\"id_str\":\"1519705607472881666\",\"name\":\"Andrew Kunz\",\"screen_name\":\"AndrewKunz7\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Thu Apr 28 15:50:43 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519706516122742785\\/-Fo-mEbQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519706516122742785\\/-Fo-mEbQ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"185\":{\"id\":1140740046485635073,\"id_str\":\"1140740046485635073\",\"name\":\"Maufemor\",\"screen_name\":\"maufemor7\",\"location\":\"Accra Ghana\",\"description\":\"I am Here for fan and Business.\\n#Follow4Following Back ASAP\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2932,\"friends_count\":3516,\"listed_count\":2,\"created_at\":\"Mon Jun 17 21:56:35 +0000 2019\",\"favourites_count\":2255,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554500782883487745\\/uDOiDozp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554500782883487745\\/uDOiDozp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1140740046485635073\\/1659456842\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"186\":{\"id\":1517222071415279616,\"id_str\":\"1517222071415279616\",\"name\":\"Kevinice\",\"screen_name\":\"Kevinice0\",\"location\":\"\",\"description\":\"Kevin Ezekiel is a Nigerian based rapper and singer popularly known as KEVINICE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Thu Apr 21 19:21:57 +0000 2022\",\"favourites_count\":72,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":23,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524829371596427264\\/sqbMOxkz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524829371596427264\\/sqbMOxkz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"187\":{\"id\":4403164115,\"id_str\":\"4403164115\",\"name\":\"\\ud835\\udd6e\\ud835\\udd8d\\ud835\\udd9a\\ud835\\udd90\\ud835\\udd9c\\ud835\\udd9a\\ud835\\udd8a\\ud835\\udd87\\ud835\\udd9a\\ud835\\udd90\\ud835\\udd86\\ud83d\\udc05\\ud83d\\udd57\",\"screen_name\":\"Zeus_el_Savage\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":153,\"friends_count\":438,\"listed_count\":0,\"created_at\":\"Mon Dec 07 08:59:57 +0000 2015\",\"favourites_count\":5141,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536411238984556548\\/3Wluw_jX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536411238984556548\\/3Wluw_jX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4403164115\\/1655293431\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"188\":{\"id\":829298967456407553,\"id_str\":\"829298967456407553\",\"name\":\"OmoHalleluyah\",\"screen_name\":\"oye_goke\",\"location\":\"Oyo, Nigeria\",\"description\":\"Leo \\u264c\\ufe0f Unpredictable \\ud83d\\ude43 On a Different diet \\ud83d\\ude0e Manchester United... I FoLLow BaCk ASAP\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":209,\"friends_count\":343,\"listed_count\":0,\"created_at\":\"Wed Feb 08 12:00:56 +0000 2017\",\"favourites_count\":1800,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1270990407426551810\\/3g-0VkP9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1270990407426551810\\/3g-0VkP9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829298967456407553\\/1659650719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"189\":{\"id\":1380253676850188289,\"id_str\":\"1380253676850188289\",\"name\":\"Fast-Paced_Sloth\",\"screen_name\":\"FastPacedSloth\",\"location\":\"CO\",\"description\":\"PS4 Streamer\\n@twitch #affiliate\\nProfessional Sloth |\\nSpread Love, Not Hate |\\nSmile, it's contagious!\\nTIK TOK: @FastPacedSloth\",\"url\":\"https:\\/\\/t.co\\/ewlxI2TIKL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ewlxI2TIKL\",\"expanded_url\":\"https:\\/\\/www.twitch.tv\\/fast_paced_sloth\",\"display_url\":\"twitch.tv\\/fast_paced_slo\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":24,\"listed_count\":0,\"created_at\":\"Thu Apr 08 20:18:25 +0000 2021\",\"favourites_count\":492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":473,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1380255376994541571\\/Twzlq66y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1380255376994541571\\/Twzlq66y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1380253676850188289\\/1617914946\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"190\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"191\":{\"id\":880726510734389248,\"id_str\":\"880726510734389248\",\"name\":\"Herald_digital\",\"screen_name\":\"herald_digitals\",\"location\":\"Lagos, Nigeria\",\"description\":\"A creative &design company that transforms individual & organization for the digital economy.\\n#branding|#logodesign|#webdesign|#animation etc etc\\n+2348067658996\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":704,\"listed_count\":2,\"created_at\":\"Fri Jun 30 09:55:38 +0000 2017\",\"favourites_count\":501,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011427953573890\\/NllQyvRr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011427953573890\\/NllQyvRr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880726510734389248\\/1656166269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"192\":{\"id\":1468528632301817861,\"id_str\":\"1468528632301817861\",\"name\":\"Son of the Soil\",\"screen_name\":\"Ennys_Abbey\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am a Digital marketer & Graphic designer, a social commentator, an agent of change. #Branding #Politics #Leadership #Crypto #PiNetwork\",\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348140434651?text=i+want+more+information\",\"display_url\":\"wa.me\\/2348140434651?\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":399,\"listed_count\":8,\"created_at\":\"Wed Dec 08 10:31:39 +0000 2021\",\"favourites_count\":398,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468528632301817861\\/1658149317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"193\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"194\":{\"id\":1315945693861875712,\"id_str\":\"1315945693861875712\",\"name\":\"iNeed2pee\",\"screen_name\":\"AlwaysWorried__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Obidient Youth ||\\ud83c\\uddf3\\ud83c\\uddec Bayern FC- MGM, Mane, Gnabry,Muller #MiaSanMia || Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":898,\"friends_count\":1512,\"listed_count\":3,\"created_at\":\"Tue Oct 13 09:21:30 +0000 2020\",\"favourites_count\":236,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":800,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554097629205827584\\/5SdR_KO6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554097629205827584\\/5SdR_KO6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1315945693861875712\\/1658939547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"195\":{\"id\":2731185005,\"id_str\":\"2731185005\",\"name\":\"Cyptopreacher\",\"screen_name\":\"Rumerule\",\"location\":\"Lagos, Nigeria\",\"description\":\"Blockchain& Fintech Writer|| #Bitcoin lover||Founder CPBA\\/\\/ Co-Founder ThinkCrypto\\/\\/Digital-Market analyst @Channelstv\\/\\/ https:\\/\\/t.co\\/ClkOl0jpum\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ClkOl0jpum\",\"expanded_url\":\"http:\\/\\/t.me\\/thecryptopreac\",\"display_url\":\"t.me\\/thecryptopreac\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":1550,\"friends_count\":1239,\"listed_count\":15,\"created_at\":\"Fri Aug 01 23:16:19 +0000 2014\",\"favourites_count\":6569,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4653,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2731185005\\/1642407607\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"196\":{\"id\":1357229682882707457,\"id_str\":\"1357229682882707457\",\"name\":\"Invincible \\u2764\\ufe0f\\ud83d\\udd4a\",\"screen_name\":\"InvincibleHighD\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udca6 investigative journalist\\u2022 Nigerian activist \\u2022Entrepreneur\\ud83d\\udcb0 \\u2022IML Student\\ud83d\\udc68\\u200d\\ud83d\\udcbb \\u2022\\ud83d\\udc68\\u200d\\ud83c\\udf93\\ud83d\\udc68\\u200d\\ud83c\\udf93 #God make me to be special \\u270c\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":685,\"listed_count\":0,\"created_at\":\"Thu Feb 04 07:29:22 +0000 2021\",\"favourites_count\":1099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":229,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1357229682882707457\\/1629735616\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"197\":{\"id\":1112132117876670464,\"id_str\":\"1112132117876670464\",\"name\":\"Dimples\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Twenty_naira\",\"location\":\"Nigeria\",\"description\":\"I'm an administrator with managerial techniques.\\nI'm proud to be an African.\\nHausa empire\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":310,\"listed_count\":0,\"created_at\":\"Sat Mar 30 23:18:54 +0000 2019\",\"favourites_count\":10379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484127262610006018\\/4_VgaYRF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484127262610006018\\/4_VgaYRF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1112132117876670464\\/1650041610\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"198\":{\"id\":1261537373915090944,\"id_str\":\"1261537373915090944\",\"name\":\"\\ud83c\\udfa1\\u2620Ogboju Ode ninu igbo Irumole \\ud83d\\udca5\\u2693\",\"screen_name\":\"ElderMakana\",\"location\":\"Lagos, Nigeria\",\"description\":\"#likeMind \\n#FootballLover\\n#Blackpool fan \\u26bd\\ufe0f {The Seasiders}\\n#Business analyst\\n#Sales and Marketing Specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":688,\"friends_count\":775,\"listed_count\":0,\"created_at\":\"Sat May 16 06:02:28 +0000 2020\",\"favourites_count\":1206,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515795825535995918\\/15_yRNDE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515795825535995918\\/15_yRNDE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261537373915090944\\/1650229034\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"199\":{\"id\":1517815043844358145,\"id_str\":\"1517815043844358145\",\"name\":\"DY WORDS\",\"screen_name\":\"Adedayo_AJ\",\"location\":\"Lagos, Nigeria\",\"description\":\"Focusing on:\\n\\u2022HUMAN DEVELOPMENT\\u2022BUSINESS OPPORTUNITIES\\u2022RELATIONSHIP SELF-DISCOVERY\\u2022REAL-LIFE EXPERIENCES\\nGROWTH\\u2022FINDING PURPOSE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":240,\"listed_count\":0,\"created_at\":\"Sat Apr 23 10:38:54 +0000 2022\",\"favourites_count\":1445,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":379,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517815043844358145\\/1650711890\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"200\":{\"id\":1301589823338278912,\"id_str\":\"1301589823338278912\",\"name\":\"trender_sam\",\"screen_name\":\"trender_sam\",\"location\":\"Nigeria\",\"description\":\"omo, sha I just dey!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Thu Sep 03 18:36:31 +0000 2020\",\"favourites_count\":436,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1308750802316656641\\/UQfXieMV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1308750802316656641\\/UQfXieMV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301589823338278912\\/1620834167\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"201\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"202\":{\"id\":1252284507270643713,\"id_str\":\"1252284507270643713\",\"name\":\"Ordinary Alhaji\",\"screen_name\":\"Humanity_First5\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Humanitarian\\ud83d\\ude4c Alutarian\\u270a\\ud83c\\udffdResearcher\\u270d\\ufe0f Thinker\\ud83d\\ude47\\ud83c\\udffd\\u200d\\u2642\\ufe0fPolitical Scientist\\ud83d\\udcdaConscienstist\\ud83e\\udd26Motivator\\ud83d\\udcaa Volunteer \\ud83d\\udc6b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":552,\"friends_count\":411,\"listed_count\":0,\"created_at\":\"Mon Apr 20 17:14:51 +0000 2020\",\"favourites_count\":402,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":137,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505131996321927170\\/ON9ZzcvU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505131996321927170\\/ON9ZzcvU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1252284507270643713\\/1647686406\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"203\":{\"id\":1077638887,\"id_str\":\"1077638887\",\"name\":\"ArizonaLFC\",\"screen_name\":\"ayodejiarizona\",\"location\":\"Lagos Nigeria \",\"description\":\"I'm not a perfect gentleman proudly #Humanitarian #LFCFamily #YNWA #Sagittarius #TeamChange #GoodLife #EndBadgoveranceinNigeria Follow me and I will follow back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1648,\"friends_count\":2709,\"listed_count\":5,\"created_at\":\"Thu Jan 10 20:37:45 +0000 2013\",\"favourites_count\":9972,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6978,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503119739442417666\\/tl-e9hvO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503119739442417666\\/tl-e9hvO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1077638887\\/1593708882\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"204\":{\"id\":837919024600199168,\"id_str\":\"837919024600199168\",\"name\":\"Amb E.O.A\",\"screen_name\":\"EOAlakpodia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Crypto Investor, Real Estate Developer, Information scientist, Politics and involve actively in changing life\\u2019s through Giving\",\"url\":\"https:\\/\\/t.co\\/JMlsDtuxLc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JMlsDtuxLc\",\"expanded_url\":\"http:\\/\\/oaf.com.ng\",\"display_url\":\"oaf.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":41,\"friends_count\":248,\"listed_count\":9,\"created_at\":\"Sat Mar 04 06:53:58 +0000 2017\",\"favourites_count\":466,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":304,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1494256359063306242\\/WxqH0UZo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1494256359063306242\\/WxqH0UZo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/837919024600199168\\/1659891183\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"205\":{\"id\":1268155371589439488,\"id_str\":\"1268155371589439488\",\"name\":\"Job Vacancies Ghana\",\"screen_name\":\"jobvacanciesgh_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana's Trusted Career Consult\\n\\u2022 Career Tips \\u2022 Interview Tips \\u2022 Career Advice\\n\\ud83d\\udd14Turn on your post notification for updates\",\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ywJi2F\",\"display_url\":\"bit.ly\\/3ywJi2F\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26129,\"friends_count\":1449,\"listed_count\":9,\"created_at\":\"Wed Jun 03 12:23:37 +0000 2020\",\"favourites_count\":17329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268155371589439488\\/1659366481\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"206\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"207\":{\"id\":1484552005519646724,\"id_str\":\"1484552005519646724\",\"name\":\"LEADER OF TOMORROW\",\"screen_name\":\"werey_mecho\",\"location\":\"Lagos, Nigeria\",\"description\":\"SKILLED ENOUGH \\ud83e\\ude9b TO TAKE IT APART \\ud83d\\udd29 ENOUGH TO PUT IT BACK IN PLACE \\ud83d\\udcaf SMART ENOUGH TO HIDE THE EXTRA PARTS \\ud83e\\uddf0 WHEN I\\u2019M DONE \\ud83c\\udd97\\ud83d\\udee0 #mechanicalengineering\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":339,\"friends_count\":351,\"listed_count\":0,\"created_at\":\"Fri Jan 21 15:42:44 +0000 2022\",\"favourites_count\":648,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498893064550637572\\/ZWayNme3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498893064550637572\\/ZWayNme3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484552005519646724\\/1646198940\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"208\":{\"id\":28535468,\"id_str\":\"28535468\",\"name\":\"#Biafra is our homeland\",\"screen_name\":\"Children_light1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am an avid supporter of Biafra freedom struggle led by our reverend leader Onyendu Mazi Nnamdi Kanu, the only man who defeated Nige(ria) cabals and caliphate.\",\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"expanded_url\":\"http:\\/\\/www.ipobusa.org\",\"display_url\":\"ipobusa.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":580,\"friends_count\":2136,\"listed_count\":0,\"created_at\":\"Fri Apr 03 10:03:40 +0000 2009\",\"favourites_count\":66761,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51681,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/28535468\\/1647688738\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"209\":{\"id\":28535468,\"id_str\":\"28535468\",\"name\":\"#Biafra is our homeland\",\"screen_name\":\"Children_light1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am an avid supporter of Biafra freedom struggle led by our reverend leader Onyendu Mazi Nnamdi Kanu, the only man who defeated Nige(ria) cabals and caliphate.\",\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"expanded_url\":\"http:\\/\\/www.ipobusa.org\",\"display_url\":\"ipobusa.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":580,\"friends_count\":2136,\"listed_count\":0,\"created_at\":\"Fri Apr 03 10:03:40 +0000 2009\",\"favourites_count\":66761,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51681,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/28535468\\/1647688738\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"210\":{\"id\":1268155371589439488,\"id_str\":\"1268155371589439488\",\"name\":\"Job Vacancies Ghana\",\"screen_name\":\"jobvacanciesgh_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana's Trusted Career Consult\\n\\u2022 Career Tips \\u2022 Interview Tips \\u2022 Career Advice\\n\\ud83d\\udd14Turn on your post notification for updates\",\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ywJi2F\",\"display_url\":\"bit.ly\\/3ywJi2F\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26129,\"friends_count\":1449,\"listed_count\":9,\"created_at\":\"Wed Jun 03 12:23:37 +0000 2020\",\"favourites_count\":17329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268155371589439488\\/1659366481\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"211\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"212\":{\"id\":852806747160956929,\"id_str\":\"852806747160956929\",\"name\":\"Thomas Grace\",\"screen_name\":\"GraceoxfordAgt\",\"location\":\"Egbeda, Nigeria\",\"description\":\"I'm a Realtor, A Real Estate Consultant and above all Chartered accountant. @oxfordgroupng\\nemail:grace.thomas@oxfordintgroup.com \\nWhatsApp: +2348134008387\",\"url\":\"https:\\/\\/t.co\\/M4HtqUojHt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M4HtqUojHt\",\"expanded_url\":\"http:\\/\\/www.oxfordgroupafrica.com\",\"display_url\":\"oxfordgroupafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":91,\"listed_count\":0,\"created_at\":\"Fri Apr 14 08:52:27 +0000 2017\",\"favourites_count\":1618,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493695783803232259\\/TjAHz0OV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493695783803232259\\/TjAHz0OV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/852806747160956929\\/1657150703\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"213\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"214\":{\"id\":1468528632301817861,\"id_str\":\"1468528632301817861\",\"name\":\"Son of the Soil\",\"screen_name\":\"Ennys_Abbey\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am a Digital marketer & Graphic designer, a social commentator, an agent of change. #Branding #Politics #Leadership #Crypto #PiNetwork\",\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348140434651?text=i+want+more+information\",\"display_url\":\"wa.me\\/2348140434651?\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":399,\"listed_count\":8,\"created_at\":\"Wed Dec 08 10:31:39 +0000 2021\",\"favourites_count\":398,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468528632301817861\\/1658149317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"215\":{\"id\":1227037499765202947,\"id_str\":\"1227037499765202947\",\"name\":\"Raywonders Art\",\"screen_name\":\"RaywondersA\",\"location\":\"Edo, Nigeria\",\"description\":\"Hi, am Raymond, a Medical student and also a Digital Painter. I love reading, Painting and making new friends\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":566,\"friends_count\":574,\"listed_count\":0,\"created_at\":\"Tue Feb 11 01:12:07 +0000 2020\",\"favourites_count\":2464,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":981,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1306299941829120000\\/xSTQDWV1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1306299941829120000\\/xSTQDWV1_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"216\":{\"id\":1356313741684518912,\"id_str\":\"1356313741684518912\",\"name\":\"Dennis Micah\",\"screen_name\":\"Deni_kuddz\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"NIGERIAN \\ud83c\\uddf3\\ud83c\\uddec\\n ||Geologist \\ud83d\\udee0\\ud83d\\udd28\\n||Manchester united \\u26bd\\ud83d\\udd34\\ud83d\\udd34\\n || LEO \\u264c\\n||Web developer\\n||ASTROW\\ud83c\\udf0dRLD\\ud83d\\ude80\\ud83d\\ude80\\n|| Lab scientist\\n||Virtual Assistant\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1320,\"friends_count\":1733,\"listed_count\":2,\"created_at\":\"Mon Feb 01 18:49:58 +0000 2021\",\"favourites_count\":5776,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1381,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536030228455227393\\/dKqrGgcZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536030228455227393\\/dKqrGgcZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356313741684518912\\/1638756142\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"217\":{\"id\":1302372543307882499,\"id_str\":\"1302372543307882499\",\"name\":\"kinqbrizy\",\"screen_name\":\"kinqbrizy1\",\"location\":\"Nigeria\",\"description\":\"I AM A DEMIGOD \\ud83d\\udc7d Bookings: \\ud83d\\udce7 Okoliep909@gmail.com \\u260e\\ufe0f 09035229540 WANT YOU OUT NOW!! \\ud83d\\udc47\",\"url\":\"https:\\/\\/t.co\\/WXl5yr37si\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WXl5yr37si\",\"expanded_url\":\"https:\\/\\/streamlink.to\\/iykeman-Kinqbrizy-want-you\",\"display_url\":\"streamlink.to\\/iykeman-Kinqbr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1063,\"friends_count\":936,\"listed_count\":0,\"created_at\":\"Sat Sep 05 22:26:43 +0000 2020\",\"favourites_count\":11210,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1986,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491761085728403458\\/td8JFaHc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491761085728403458\\/td8JFaHc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302372543307882499\\/1599345448\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"218\":{\"id\":1368603054342299652,\"id_str\":\"1368603054342299652\",\"name\":\"Chuks\",\"screen_name\":\"Chuks238_\",\"location\":\"\",\"description\":\"I am the most friendly being that ever lives\\ud83d\\ude0d\\ud83e\\udd38\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1248,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 07 16:43:20 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1368603054342299652\\/1652602455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"219\":{\"id\":1273527985681969153,\"id_str\":\"1273527985681969153\",\"name\":\"kingkizito7\",\"screen_name\":\"OruOnyedikachi\",\"location\":\"Abakaliki\",\"description\":\"crypto is the future\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":758,\"listed_count\":8,\"created_at\":\"Thu Jun 18 08:08:40 +0000 2020\",\"favourites_count\":7412,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520003293472337920\\/tcqgwTAk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520003293472337920\\/tcqgwTAk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1273527985681969153\\/1656361234\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"220\":{\"id\":1247316623985344512,\"id_str\":\"1247316623985344512\",\"name\":\"wapcodehubsite\\u26a1 \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\\u2694\\ufe0f\",\"screen_name\":\"wapcodehubsite\",\"location\":\"Owerri, Nigeria\",\"description\":\"blogger\\ud83c\\udf10 Promotion\\nCall or Whatsapp \\ud83d\\udc49 0903 905 8619,\\nIG @wapcodeonline_com\\nPromotion marketing advertising business selling products audios videos\",\"url\":\"https:\\/\\/t.co\\/5a49cTD95C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5a49cTD95C\",\"expanded_url\":\"http:\\/\\/naijawapcode.wordpress.com\",\"display_url\":\"naijawapcode.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1111,\"friends_count\":3710,\"listed_count\":0,\"created_at\":\"Tue Apr 07 00:14:17 +0000 2020\",\"favourites_count\":8730,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6542,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553654643733012481\\/AHvlqSjQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553654643733012481\\/AHvlqSjQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1247316623985344512\\/1613480079\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"221\":{\"id\":3332599954,\"id_str\":\"3332599954\",\"name\":\"Johnpaul Chukwuemeri\",\"screen_name\":\"johnpaulez16\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Dealer on all kinds of food condiments and general goods.\\n\\nHoly Spirit is my great provider\\n#We are @messi #NFT || #BTC || #ETH || #CRYPTO || #TRADER #COLLECTOR\",\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"expanded_url\":\"https:\\/\\/www.binance.me\\/en\\/activity\\/referral\\/offers\\/claim?ref=CPA_00EP5D3DYW\",\"display_url\":\"binance.me\\/en\\/activity\\/re\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":246,\"friends_count\":1306,\"listed_count\":15,\"created_at\":\"Thu Jun 18 12:33:33 +0000 2015\",\"favourites_count\":5527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1518,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3332599954\\/1455231986\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"222\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"223\":{\"id\":1220433994866663426,\"id_str\":\"1220433994866663426\",\"name\":\"correct shoes plug.\",\"screen_name\":\"krafti101\",\"location\":\"\",\"description\":\"i dey sell better shoes, slides, snickers,boots, crocs and lots more even hand made...just keeping checking my tweets.\\u270c\\u270c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":395,\"friends_count\":896,\"listed_count\":0,\"created_at\":\"Thu Jan 23 19:52:04 +0000 2020\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511939031688519684\\/GQTdnwK6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511939031688519684\\/GQTdnwK6_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"224\":{\"id\":2397267640,\"id_str\":\"2397267640\",\"name\":\"FOOD IS MY HOBBY\",\"screen_name\":\"theonlinecook\",\"location\":\"Lagos, Nigeria\",\"description\":\"My Recipes = Happy thoughts \\ud83d\\udcad\\nRead more here \\nhttps:\\/\\/t.co\\/h21a3jOGRc (Omoge Jumie Olounje Herself)\",\"url\":\"https:\\/\\/t.co\\/actzKJbnXw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/actzKJbnXw\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCIKTcWDngWURSNMxG3xFF4A\",\"display_url\":\"youtube.com\\/channel\\/UCIKTc\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h21a3jOGRc\",\"expanded_url\":\"https:\\/\\/www.theonlinecook.com\",\"display_url\":\"theonlinecook.com\",\"indices\":[46,69]}]}},\"protected\":false,\"followers_count\":502,\"friends_count\":360,\"listed_count\":3,\"created_at\":\"Sun Mar 09 17:11:22 +0000 2014\",\"favourites_count\":843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2759,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525054758498729984\\/HafA3XDx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525054758498729984\\/HafA3XDx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2397267640\\/1642775375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"225\":{\"id\":1260199733571858433,\"id_str\":\"1260199733571858433\",\"name\":\"JTK\",\"screen_name\":\"iam_Jokerthekid\",\"location\":\"Lagos, Nigeria\",\"description\":\"Comedian ||\\nContent creator || Memer \\ud83e\\udd23\\n#WizkidFc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":882,\"friends_count\":2549,\"listed_count\":0,\"created_at\":\"Tue May 12 13:27:52 +0000 2020\",\"favourites_count\":9665,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":977,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503406463854723073\\/yfMRqmPH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503406463854723073\\/yfMRqmPH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1260199733571858433\\/1647275178\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"226\":{\"id\":1464965613261053955,\"id_str\":\"1464965613261053955\",\"name\":\"Adeyyy\",\"screen_name\":\"247_adeyyy\",\"location\":\"Ibadan, Nigeria\",\"description\":\"\\u2022\\ud83c\\uddf3\\ud83c\\uddec\\u2022\\nFreelancer || High on Self Development & Productivity || Picasso Art Lover \\ud83c\\udfa8 || Music Lover || UiTE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":375,\"listed_count\":0,\"created_at\":\"Sun Nov 28 14:33:34 +0000 2021\",\"favourites_count\":235,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549307512431820801\\/EqV7lREQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549307512431820801\\/EqV7lREQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1464965613261053955\\/1658235497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"227\":{\"id\":1492802410850435072,\"id_str\":\"1492802410850435072\",\"name\":\"Samuel Emmanuel\",\"screen_name\":\"SamuelE65506504\",\"location\":\"\",\"description\":\"Emmaco metal work\\ndeals on all kinds of designers Gate, Hand Rails, tank stand & other house hold martials\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":353,\"listed_count\":0,\"created_at\":\"Sun Feb 13 10:07:15 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1029,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492802410850435072\\/1659466990\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"228\":{\"id\":1492802410850435072,\"id_str\":\"1492802410850435072\",\"name\":\"Samuel Emmanuel\",\"screen_name\":\"SamuelE65506504\",\"location\":\"\",\"description\":\"Emmaco metal work\\ndeals on all kinds of designers Gate, Hand Rails, tank stand & other house hold martials\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":353,\"listed_count\":0,\"created_at\":\"Sun Feb 13 10:07:15 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1029,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492802410850435072\\/1659466990\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"229\":{\"id\":3346705613,\"id_str\":\"3346705613\",\"name\":\"Source D\",\"screen_name\":\"Sourced2018\",\"location\":\"Lagos, Nigeria\",\"description\":\"Exploring opportunities.\\nActing and script writing.\\nPlaying chess.\\nOpen minded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Fri Jun 26 17:01:37 +0000 2015\",\"favourites_count\":492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1236,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1371209991831625733\\/B5P24jYZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1371209991831625733\\/B5P24jYZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3346705613\\/1655656915\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"230\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"231\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"232\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"233\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"234\":{\"id\":1519297062021566466,\"id_str\":\"1519297062021566466\",\"name\":\"Mimi_Ligera\",\"screen_name\":\"Mimi_Ligera\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Actress\\ud83d\\udc97\\ud83d\\udc97\\nOAP @spiceradioNg\\n\\ud83c\\udfb6 lover\\n\\u264d baby\\nNo 1, Ibadan Shortlet Plug( ShortletsByMisi)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":51,\"friends_count\":125,\"listed_count\":0,\"created_at\":\"Wed Apr 27 12:47:28 +0000 2022\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519305585405091841\\/ttHkkQYj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519305585405091841\\/ttHkkQYj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519297062021566466\\/1651065653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"235\":{\"id\":1375008658246008833,\"id_str\":\"1375008658246008833\",\"name\":\"Ability\",\"screen_name\":\"ability_etuk\",\"location\":\"lekki\",\"description\":\"Digital marketer|SEO Specialist|Graphic designer| music lover\\ud83c\\udfb8\\ud83c\\udfb8\\ud83c\\udfb6\\n\\ud83d\\ude0bno mind the bio\\ud83e\\udd2aI like enjoyment too\",\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"expanded_url\":\"http:\\/\\/www.rapigrowth.com.ng\",\"display_url\":\"rapigrowth.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Thu Mar 25 08:56:39 +0000 2021\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375008658246008833\\/1659134272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"236\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"237\":{\"id\":271349890,\"id_str\":\"271349890\",\"name\":\"Omuwa Godswill\\ud83c\\uddf3\\ud83c\\uddec[A.V.A.T.A.R]\",\"screen_name\":\"Intel_Avatar\",\"location\":\"Nigeria\",\"description\":\"A Lover Of Jesus Christ, Scientist, Social Media Manager and Influencer. Special Assistant to Edo State Governor (MEDIA)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":579,\"friends_count\":1010,\"listed_count\":3,\"created_at\":\"Thu Mar 24 09:59:48 +0000 2011\",\"favourites_count\":1733,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/271349890\\/1650137083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"238\":{\"id\":1518523561929023489,\"id_str\":\"1518523561929023489\",\"name\":\"Edo Independent Commission Organization\",\"screen_name\":\"eicoofficial1\",\"location\":\"Edo, Nigeria\",\"description\":\"Bring the government and the people one step closer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":28,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Mon Apr 25 09:33:43 +0000 2022\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":62,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518620899141984256\\/0G0HoY3w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518620899141984256\\/0G0HoY3w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1518523561929023489\\/1650902449\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"239\":{\"id\":1143054376719781888,\"id_str\":\"1143054376719781888\",\"name\":\"Where the Money they ? \\ud83e\\udd32\\ud83c\\udffe\\ud83d\\udcb0\",\"screen_name\":\"mensgang\",\"location\":\"Kumasi, Ghana\",\"description\":\"African versatile Duo Artist from Ghana \\ud83c\\uddec\\ud83c\\udded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":150,\"friends_count\":332,\"listed_count\":0,\"created_at\":\"Mon Jun 24 07:12:55 +0000 2019\",\"favourites_count\":396,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":233,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525221997554417665\\/rhD0lYm2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525221997554417665\\/rhD0lYm2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1143054376719781888\\/1656969678\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"240\":{\"id\":37175025,\"id_str\":\"37175025\",\"name\":\"InfoStride News\",\"screen_name\":\"TheInfoStride\",\"location\":\"Lagos, Nigeria\",\"description\":\"The latest breaking news, Nigerian news, world news and top stories on business, celebrity, entertainment, politics, sports, technology, and more.\",\"url\":\"https:\\/\\/t.co\\/JeHHLetgVh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JeHHLetgVh\",\"expanded_url\":\"https:\\/\\/www.theinfostride.com\",\"display_url\":\"theinfostride.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6495,\"friends_count\":482,\"listed_count\":0,\"created_at\":\"Sat May 02 10:15:58 +0000 2009\",\"favourites_count\":1970,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":229577,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1399097946155765762\\/AKWm-Cly_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1399097946155765762\\/AKWm-Cly_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/37175025\\/1622405920\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"241\":{\"id\":1552607096679682048,\"id_str\":\"1552607096679682048\",\"name\":\"NELSON ICT SERVICES GEMBU\",\"screen_name\":\"nisgembu\",\"location\":\"Gembu\",\"description\":\"Working to Achieve the Global SDG in Tech, Agriculture and Charity\",\"url\":\"https:\\/\\/t.co\\/1vNJPkBzKn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vNJPkBzKn\",\"expanded_url\":\"https:\\/\\/nelsonict.org.ng\",\"display_url\":\"nelsonict.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4129,\"friends_count\":160,\"listed_count\":1,\"created_at\":\"Thu Jul 28 10:49:35 +0000 2022\",\"favourites_count\":462,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552607194876624896\\/TJL_pRpT_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552607194876624896\\/TJL_pRpT_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552607096679682048\\/1659183969\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"242\":{\"id\":1316749139787550721,\"id_str\":\"1316749139787550721\",\"name\":\"MusicWormCity\",\"screen_name\":\"musicwormcity\",\"location\":\"Lagos\",\"description\":\"Music Lives Here.\\n\\nhttps:\\/\\/t.co\\/APQJBZrZh9\",\"url\":\"https:\\/\\/t.co\\/APQJBZrZh9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/APQJBZrZh9\",\"expanded_url\":\"http:\\/\\/Musicwormcity.com\",\"display_url\":\"Musicwormcity.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/APQJBZrZh9\",\"expanded_url\":\"http:\\/\\/Musicwormcity.com\",\"display_url\":\"Musicwormcity.com\",\"indices\":[19,42]}]}},\"protected\":false,\"followers_count\":371,\"friends_count\":319,\"listed_count\":0,\"created_at\":\"Thu Oct 15 14:34:50 +0000 2020\",\"favourites_count\":726,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316749522199027712\\/m0DSynwz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316749522199027712\\/m0DSynwz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316749139787550721\\/1603714062\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"243\":{\"id\":310483039,\"id_str\":\"310483039\",\"name\":\"News Ghana\",\"screen_name\":\"news_ghana\",\"location\":\"Accra, Ghana\",\"description\":\"Ghana\\u2019s leading online news publication for business executives in West Africa and around the continent. email: newsghana101@gmail.com Tel: +233 244 244807\",\"url\":\"https:\\/\\/t.co\\/buh77woh1U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/buh77woh1U\",\"expanded_url\":\"https:\\/\\/www.newsghana.com.gh\",\"display_url\":\"newsghana.com.gh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39503,\"friends_count\":4000,\"listed_count\":0,\"created_at\":\"Fri Jun 03 20:41:44 +0000 2011\",\"favourites_count\":3639,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":288390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/717426829037015046\\/YU3M1IDx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/717426829037015046\\/YU3M1IDx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/310483039\\/1582668814\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"244\":{\"id\":1322083981890904065,\"id_str\":\"1322083981890904065\",\"name\":\"Fatima\",\"screen_name\":\"Ftm_Zahra10\",\"location\":\"Nigeria\",\"description\":\"You don\\u2019t know your future.\\nBut you know Allah, so Trust Allah, because Allah has control over your future.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4871,\"friends_count\":4952,\"listed_count\":1,\"created_at\":\"Fri Oct 30 07:52:49 +0000 2020\",\"favourites_count\":6908,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16263,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499101703232229381\\/4rq2tvFq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499101703232229381\\/4rq2tvFq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1322083981890904065\\/1634976383\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"245\":{\"id\":1000797269757759488,\"id_str\":\"1000797269757759488\",\"name\":\"Benco\",\"screen_name\":\"Am_Benco\",\"location\":\"Nigeria\",\"description\":\"Comedian\\/MC\\/Actor\\nThe toothbrush guy \\ud83c\\uddf3\\ud83c\\uddec\\n\\n\\ud83d\\udce9 uzochukwubernard@gmail.com\",\"url\":\"https:\\/\\/t.co\\/oFy4RXQBTw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oFy4RXQBTw\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCBUjeIAtu9OrCMXszhLg8ew\",\"display_url\":\"youtube.com\\/channel\\/UCBUje\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Sun May 27 17:53:57 +0000 2018\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548976040084738048\\/Brc3mKC4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548976040084738048\\/Brc3mKC4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1000797269757759488\\/1658139791\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"246\":{\"id\":1533420684642328576,\"id_str\":\"1533420684642328576\",\"name\":\"Emmanuel Otakhor\",\"screen_name\":\"OtakhorEmmanuel\",\"location\":\"Lagos\",\"description\":\"Cool dude\\/Photographer\\/Actor\\/Artist manager\\/Good vibe\\/Banker\\/Arsenal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":139,\"listed_count\":0,\"created_at\":\"Sun Jun 05 12:09:29 +0000 2022\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1533420684642328576\\/1659525553\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"247\":{\"id\":1048668469099732992,\"id_str\":\"1048668469099732992\",\"name\":\"Abija Wara Bi Ekun\",\"screen_name\":\"merceylordrahl\",\"location\":\"\",\"description\":\"Lyf is too Short, Smile wen U still hav Teeth \\ud83d\\ude01\\ud83d\\ude01 A Chess Lover and Player. BTW, i Sell Poison. U can taste for its Potency.. \\ud83d\\ude1a\\ud83d\\ude1a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":499,\"friends_count\":334,\"listed_count\":0,\"created_at\":\"Sat Oct 06 20:17:01 +0000 2018\",\"favourites_count\":8244,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"248\":{\"id\":1290191301791617024,\"id_str\":\"1290191301791617024\",\"name\":\"KOFI AWORTWE \\ud83c\\uddec\\ud83c\\udded\",\"screen_name\":\"KofiAwortwe11\",\"location\":\"Komenda, Ghana\",\"description\":\"Financial Accounting Educator ||Educated Fisherman || Fanti || Ewe|| Pentecost || Chelsea \\ud83d\\udc99 Patriot || Phobia \\ud83c\\udf08 Kofi Kinata\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4455,\"friends_count\":4203,\"listed_count\":4,\"created_at\":\"Mon Aug 03 07:43:03 +0000 2020\",\"favourites_count\":48712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":45560,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552016145640820738\\/8QDk7wCm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552016145640820738\\/8QDk7wCm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1290191301791617024\\/1658469965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"249\":{\"id\":1048668469099732992,\"id_str\":\"1048668469099732992\",\"name\":\"Abija Wara Bi Ekun\",\"screen_name\":\"merceylordrahl\",\"location\":\"\",\"description\":\"Lyf is too Short, Smile wen U still hav Teeth \\ud83d\\ude01\\ud83d\\ude01 A Chess Lover and Player. BTW, i Sell Poison. U can taste for its Potency.. \\ud83d\\ude1a\\ud83d\\ude1a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":499,\"friends_count\":334,\"listed_count\":0,\"created_at\":\"Sat Oct 06 20:17:01 +0000 2018\",\"favourites_count\":8244,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"250\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"251\":{\"id\":1547267093736919040,\"id_str\":\"1547267093736919040\",\"name\":\"Treasuregodwin7\",\"screen_name\":\"Treasuregodwi7\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m here to make you laugh. follow me on instagram, YouTube and tiktok @Treasuregodwin7\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":319,\"listed_count\":0,\"created_at\":\"Wed Jul 13 17:10:16 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547268125783203841\\/fQw-ZgbJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547268125783203841\\/fQw-ZgbJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547267093736919040\\/1657751470\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"252\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"253\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"254\":{\"id\":1316756810603417600,\"id_str\":\"1316756810603417600\",\"name\":\"Abdulbasit Onaade\",\"screen_name\":\"AbdulbasitOnaa2\",\"location\":\"Delta, Nigeria\",\"description\":\"Marketer | with a passion for exploration | and a commitment to personal and professional growth. Click the link below to connect.\",\"url\":\"https:\\/\\/t.co\\/3gvgtoJeIb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3gvgtoJeIb\",\"expanded_url\":\"http:\\/\\/dhamyaffiliate.blogspot.com\",\"display_url\":\"dhamyaffiliate.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118,\"friends_count\":750,\"listed_count\":0,\"created_at\":\"Thu Oct 15 15:04:56 +0000 2020\",\"favourites_count\":1259,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":773,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504840632971444256\\/axMDgYPR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504840632971444256\\/axMDgYPR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316756810603417600\\/1648848422\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"255\":{\"id\":1514625073105285128,\"id_str\":\"1514625073105285128\",\"name\":\"\\ud83d\\udc51 Duke of Imo \\ud83d\\udc51 \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Andredicksonn\",\"location\":\"Ogun, Nigeria\",\"description\":\"Advocate: Good Governance \\u2696\\ufe0f | G-Equality | Malnutrition | SCD | \\ud83d\\udcad provoker | Author \\u270d\\ufe0f Political Animal Nigeria \\ud83c\\uddf3\\ud83c\\uddec | Agropreneur | Chronically Humanitarian\",\"url\":\"https:\\/\\/t.co\\/29mE6jXsrG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/29mE6jXsrG\",\"expanded_url\":\"http:\\/\\/www.andredicksonn.com\",\"display_url\":\"andredicksonn.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":399,\"friends_count\":413,\"listed_count\":0,\"created_at\":\"Thu Apr 14 15:22:33 +0000 2022\",\"favourites_count\":648,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555234037983223817\\/awqZUfPV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555234037983223817\\/awqZUfPV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514625073105285128\\/1659641856\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"256\":{\"id\":2881941982,\"id_str\":\"2881941982\",\"name\":\"The Rockdweller \\ud83d\\udc51\\ud83d\\udd25\\ud83d\\udc51\\ud83d\\udcc8\\ud83d\\udcc8\\ud83d\\udcc8\",\"screen_name\":\"The_Rockdweller\",\"location\":\"New Nigeria \",\"description\":\"I am the only Rockdweller you will ever meet in your life. I quit writing for Forex. By 2031 I would have raised 40 millionaires($) through Fx trading .\",\"url\":\"https:\\/\\/t.co\\/uZz7WrSFO5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uZz7WrSFO5\",\"expanded_url\":\"http:\\/\\/therockdweller.com\",\"display_url\":\"therockdweller.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":434,\"friends_count\":1037,\"listed_count\":13,\"created_at\":\"Mon Nov 17 23:47:20 +0000 2014\",\"favourites_count\":809,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1347796283143155714\\/JmUvGpYW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1347796283143155714\\/JmUvGpYW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2881941982\\/1642051992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"257\":{\"id\":896196087748407297,\"id_str\":\"896196087748407297\",\"name\":\"Officialdjspace\",\"screen_name\":\"officialdjspace\",\"location\":\"Lagos Nigeria \",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Sat Aug 12 02:26:12 +0000 2017\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":56,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/896196087748407297\\/1609241573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"258\":{\"id\":1302402292323414016,\"id_str\":\"1302402292323414016\",\"name\":\"Everyone's_Favorite\\ud83d\\udc7c\\ud83d\\ude15\",\"screen_name\":\"SiR__DONY\",\"location\":\"Kano, Nigeria\",\"description\":\"If u unfollow me ,broo u know za Drill \\nit will backfire\\n__\\u270a\\ud83d\\udeb6\",\"url\":\"https:\\/\\/t.co\\/7mti9QrPPy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7mti9QrPPy\",\"expanded_url\":\"http:\\/\\/amsisawa.co.ng\",\"display_url\":\"amsisawa.co.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":963,\"friends_count\":1084,\"listed_count\":0,\"created_at\":\"Sun Sep 06 00:24:57 +0000 2020\",\"favourites_count\":1481,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1771,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555232631050178560\\/VmVA3pG2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555232631050178560\\/VmVA3pG2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302402292323414016\\/1642113867\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"259\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"260\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"261\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"262\":{\"id\":829042549708951552,\"id_str\":\"829042549708951552\",\"name\":\"Brian Podcast\",\"screen_name\":\"brian_naija\",\"location\":\"Nigeria\",\"description\":\"latest news and updates, and podcast shows on NA WE OWN podcast...\",\"url\":\"https:\\/\\/t.co\\/WZQo7N6y89\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WZQo7N6y89\",\"expanded_url\":\"https:\\/\\/anchor.fm\\/benson-christian\\/episodes\\/Say-no-to-depression-e9vhvr\",\"display_url\":\"anchor.fm\\/benson-christi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89,\"friends_count\":85,\"listed_count\":0,\"created_at\":\"Tue Feb 07 19:02:01 +0000 2017\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":241,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1047449493438976000\\/W-uftmFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1047449493438976000\\/W-uftmFA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829042549708951552\\/1578441219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"263\":{\"id\":1554909435281170434,\"id_str\":\"1554909435281170434\",\"name\":\"Mazi Of Igbo Land\",\"screen_name\":\"Mazi127025\",\"location\":\"Awka, Anambra, Nigeria\",\"description\":\"I'm Music\\ud83c\\udfba\\ud83c\\udfb6 | I'm Art |l A graphic designer |l A trumpeter | a Website Designer...\",\"url\":\"https:\\/\\/t.co\\/SYnV5dLodS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SYnV5dLodS\",\"expanded_url\":\"https:\\/\\/t.me\\/MaziGrafix\",\"display_url\":\"t.me\\/MaziGrafix\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":194,\"listed_count\":0,\"created_at\":\"Wed Aug 03 19:18:23 +0000 2022\",\"favourites_count\":123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":49,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554909937809203200\\/VLFOG_KZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554909937809203200\\/VLFOG_KZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554909435281170434\\/1659680492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"264\":{\"id\":1548764256845369349,\"id_str\":\"1548764256845369349\",\"name\":\"Enyte Investment Limited\",\"screen_name\":\"EnyteInvestment\",\"location\":\"Lagos \",\"description\":\"Enyte Investment\\nRealEstate\\nRealEstate Consultant. \\nEperienced management team.\\n Exceptional services. \\n08137441449\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":90,\"friends_count\":146,\"listed_count\":0,\"created_at\":\"Sun Jul 17 20:20:40 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548765197137068032\\/Q0P_Lvf4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548765197137068032\\/Q0P_Lvf4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1548764256845369349\\/1659718573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"265\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"266\":{\"id\":1540771616379940864,\"id_str\":\"1540771616379940864\",\"name\":\"Oboy cLiCkS\\ud83c\\uddec\\ud83c\\udded\\ud83d\\udcaf\",\"screen_name\":\"KwesiTimmy1\",\"location\":\"Western region, Ghana \",\"description\":\"I'm a cinematographer & a Graphic designer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":112,\"listed_count\":0,\"created_at\":\"Sat Jun 25 19:01:01 +0000 2022\",\"favourites_count\":495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555235705680429057\\/8_NwOHVl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555235705680429057\\/8_NwOHVl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1540771616379940864\\/1658808382\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"267\":{\"id\":1507072848157974530,\"id_str\":\"1507072848157974530\",\"name\":\"CityHunter Majestys\",\"screen_name\":\"CityHunterMaje1\",\"location\":\"Nigeria\",\"description\":\"COMEDIAN\",\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/majestysComedy\",\"display_url\":\"youtube.com\\/c\\/majestysCome\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 24 19:12:57 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507072848157974530\\/1649238032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"268\":{\"id\":1233118105158766592,\"id_str\":\"1233118105158766592\",\"name\":\"Akanbi Elijah\",\"screen_name\":\"OgundipeElijah2\",\"location\":\"Lagos, Nigeria\",\"description\":\"@ Ej Concepts\\nDm for your,Corporate Branding, gift items and prints, authentic jerseys with customization (Manchester United \\ud83d\\udc9e\\ud83d\\udcaa)... your needs our want\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":320,\"friends_count\":1841,\"listed_count\":0,\"created_at\":\"Thu Feb 27 19:54:26 +0000 2020\",\"favourites_count\":1323,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":593,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1358080347242713088\\/viz8WAVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1358080347242713088\\/viz8WAVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1233118105158766592\\/1591829244\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"269\":{\"id\":537681495,\"id_str\":\"537681495\",\"name\":\"Samuel Adebayo Abodunrin\",\"screen_name\":\"wf_impact\",\"location\":\"Nigeria\",\"description\":\"Content Creator| Writer| Presenter|Producer| Social Analyst| Volunteer|Public Speaker| Compere| Sports Analyst| Scriptwriter\",\"url\":\"https:\\/\\/t.co\\/70py7GpFu2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/70py7GpFu2\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/abodunrin3\",\"display_url\":\"facebook.com\\/abodunrin3\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1029,\"friends_count\":949,\"listed_count\":1,\"created_at\":\"Mon Mar 26 21:57:49 +0000 2012\",\"favourites_count\":2807,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1307398558845415424\\/Jx_iE9p__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1307398558845415424\\/Jx_iE9p__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/537681495\\/1600693965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"270\":{\"id\":4703680090,\"id_str\":\"4703680090\",\"name\":\"Ade Autos\\ud83d\\udd29\\ud83d\\udd27\\ud83e\\uddf0\\ud83d\\udd28\\u2699\\ufe0f\\ud83e\\ude9b\",\"screen_name\":\"petrouz2\",\"location\":\"Lagos, Nigeria\",\"description\":\"Want to Buy or Sell Car\\ud83d\\ude97? \\nWant to Repair or Buy Diesel Generator ( 15kva to 1000kva).? I remain your Humble Plug \\ud83d\\udd0c 08164718666 For quick Response\",\"url\":\"https:\\/\\/t.co\\/xv5Ql7RU1b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xv5Ql7RU1b\",\"expanded_url\":\"https:\\/\\/opensea.io\\/accounts\\/0xfd37c46c62c2c4899691cd048b190e62b6ac51d2\",\"display_url\":\"opensea.io\\/accounts\\/0xfd3\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":610,\"friends_count\":1876,\"listed_count\":3,\"created_at\":\"Mon Jan 04 09:43:02 +0000 2016\",\"favourites_count\":15138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1459888831365271561\\/trVeuRgV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1459888831365271561\\/trVeuRgV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4703680090\\/1644476201\",\"profile_link_color\":\"FAB81E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"271\":{\"id\":4089368481,\"id_str\":\"4089368481\",\"name\":\"abayomi gbeleyi\",\"screen_name\":\"GbeleyiAbayomi\",\"location\":\"ajah lagos\",\"description\":\"stunch Chelsea supporter die hard blue, media man and a believer of the one Nigeria project. Chelsea are champions of Europe again\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":505,\"friends_count\":2309,\"listed_count\":3,\"created_at\":\"Sun Nov 01 11:10:09 +0000 2015\",\"favourites_count\":28638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46879,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1398942886457131011\\/A_Vi6LAO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1398942886457131011\\/A_Vi6LAO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4089368481\\/1599260583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"272\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"273\":{\"id\":285106640,\"id_str\":\"285106640\",\"name\":\"Tayo Moses Omojesu It'sWl\",\"screen_name\":\"OMOJESUCFR\",\"location\":\"Abuja\",\"description\":\"\\ud83d\\udd31ACTOR\\n\\ud83d\\udd31COMEDIAN \\n\\ud83d\\udd31CONTENT CREATOR\\n\\ud83d\\udd31ENTERTAINER\\n\\ud83d\\udd31ROMANS 9:15-16\\ud83d\\ude4f\\n\\ud83d\\ude49Follow FB,IG@OMOJESUCFR For HILARIOUS COMEDY SKITS\\ud83d\\udc4dPLS SUBSCRIBE TO MY YOUTUBE\",\"url\":\"https:\\/\\/t.co\\/FqkIFn75OR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FqkIFn75OR\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCgiklYEkNn5DTSIY921GGOA\\/videos\",\"display_url\":\"m.youtube.com\\/channel\\/UCgikl\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":178,\"friends_count\":216,\"listed_count\":2,\"created_at\":\"Wed Apr 20 14:55:43 +0000 2011\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481650953111494664\\/XNEpjc-g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481650953111494664\\/XNEpjc-g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/285106640\\/1584709317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"274\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"275\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"276\":{\"id\":743793578447634432,\"id_str\":\"743793578447634432\",\"name\":\"@iam_tusure\",\"screen_name\":\"Iam_tusure\",\"location\":\"Lagos\",\"description\":\"Singer, Songwriter, Producer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Fri Jun 17 13:13:02 +0000 2016\",\"favourites_count\":324,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533865294749368321\\/TC53A_vq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533865294749368321\\/TC53A_vq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743793578447634432\\/1654536964\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"277\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"278\":{\"id\":991594973635194880,\"id_str\":\"991594973635194880\",\"name\":\"The PKOG \\ud83c\\udf0e\",\"screen_name\":\"PastorKelvin6\",\"location\":\"Accra, Ghana\",\"description\":\"The Apostle Of The Most High with The Message Of The Unity Of The Faith . The President Of The Gospel Appraisal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":71,\"listed_count\":0,\"created_at\":\"Wed May 02 08:27:19 +0000 2018\",\"favourites_count\":19,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1469571162573262851\\/XqJ_xz3O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1469571162573262851\\/XqJ_xz3O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/991594973635194880\\/1641406176\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"279\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"280\":{\"id\":1318566938667372544,\"id_str\":\"1318566938667372544\",\"name\":\"whatsapp Celebrity \\ud83d\\ude0a\",\"screen_name\":\"Degreat046\",\"location\":\"Asaba\",\"description\":\"A Biochemist trying to make a living. A programmer trying to coexist.A tech lover trying to survive. Egg seller. MD @degreat_soft_cut IG me. I\\u2019m Mr Degreat.\",\"url\":\"https:\\/\\/t.co\\/7mWIwdWdbm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7mWIwdWdbm\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/6OLZB2JWXV4GA1\",\"display_url\":\"wa.me\\/message\\/6OLZB2\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":182,\"friends_count\":344,\"listed_count\":4,\"created_at\":\"Tue Oct 20 14:57:41 +0000 2020\",\"favourites_count\":3633,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1160,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1388585846585057284\\/xfyKq0Iw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1388585846585057284\\/xfyKq0Iw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1318566938667372544\\/1607207388\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"281\":{\"id\":1320735272,\"id_str\":\"1320735272\",\"name\":\"I_am_ODINAKA \\ud83e\\udd42\",\"screen_name\":\"I_am_odinaka\",\"location\":\"Anambra, Nigeria\",\"description\":\"Believe in Yourself & Just do it.\\u270a I'm a Lover of TENNIS\\ud83c\\udfd3. B.eng-Petroleum Engineer\\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83c\\udf93 Aquarius- February 18 \\ud83d\\udc86\\ud83c\\udffb\\u200d\\u2642\\ufe0f.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":267,\"friends_count\":380,\"listed_count\":0,\"created_at\":\"Mon Apr 01 16:56:24 +0000 2013\",\"favourites_count\":7679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1855,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451242521863106570\\/KN3GMwsA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451242521863106570\\/KN3GMwsA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320735272\\/1589894863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"282\":{\"id\":1532162283262050304,\"id_str\":\"1532162283262050304\",\"name\":\"kingsxchange\",\"screen_name\":\"kings_xchange\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified vendor for cryptocurrencies and e-funds \\ud83c\\uddf3\\ud83c\\uddec #crypto lover follow up for crypto updates DM if you got questions on crypto and blockchain\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":119,\"listed_count\":2,\"created_at\":\"Thu Jun 02 00:49:16 +0000 2022\",\"favourites_count\":4630,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":302,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553867510021341186\\/E3eK-SYo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553867510021341186\\/E3eK-SYo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1532162283262050304\\/1655970221\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"283\":{\"id\":1312812289603637248,\"id_str\":\"1312812289603637248\",\"name\":\"Noel Emmanuel\",\"screen_name\":\"UcheJS\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udc64 UI\\/UX Designer\\/Frontend web developer. Tweets about tech, startups and innovation\",\"url\":\"https:\\/\\/t.co\\/8GQVYbNFtq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8GQVYbNFtq\",\"expanded_url\":\"https:\\/\\/www.figma.com\\/@UcheJs\",\"display_url\":\"figma.com\\/@UcheJs\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":227,\"friends_count\":216,\"listed_count\":2,\"created_at\":\"Sun Oct 04 17:50:35 +0000 2020\",\"favourites_count\":7027,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2852,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554577708889300995\\/oktKWO19_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554577708889300995\\/oktKWO19_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312812289603637248\\/1659133419\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"284\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"285\":{\"id\":1043977338940256257,\"id_str\":\"1043977338940256257\",\"name\":\"LiteTv media\",\"screen_name\":\"LiteTvmedia\",\"location\":\"Ogun, Nigeria\",\"description\":\"Get the latest news , around the world, entertainment, sport,memes etc... all social media @ https:\\/\\/t.co\\/qBdaX6UgWj\",\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[94,117]}]}},\"protected\":false,\"followers_count\":158,\"friends_count\":481,\"listed_count\":0,\"created_at\":\"Sun Sep 23 21:36:08 +0000 2018\",\"favourites_count\":507,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":370,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1043977338940256257\\/1653595312\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"286\":{\"id\":955505347724267520,\"id_str\":\"955505347724267520\",\"name\":\"Brief\",\"screen_name\":\"BriefNig\",\"location\":\"Nigeria\",\"description\":\"Facts first. \\nNews|Business|Politics|Technology\",\"url\":\"https:\\/\\/t.co\\/tPEAfFCNPi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tPEAfFCNPi\",\"expanded_url\":\"Http:\\/\\/Brief.ng\",\"display_url\":\"Brief.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":520,\"friends_count\":840,\"listed_count\":1,\"created_at\":\"Mon Jan 22 18:20:02 +0000 2018\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538961548672221184\\/98NTaMXm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538961548672221184\\/98NTaMXm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/955505347724267520\\/1655370944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"287\":{\"id\":963038595568361472,\"id_str\":\"963038595568361472\",\"name\":\"Edwin Dela\",\"screen_name\":\"EdwinDelasi\",\"location\":\"Accra, Ghana\",\"description\":\"Global Brand Strategist || Creative Director | Speaker | Swimmer | Developer || CEO | Growth Mindset Advocate\\u25cf @brandnerdsltd @ghanaskillshub \\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\n#edwindela\",\"url\":\"https:\\/\\/t.co\\/NAVbUX0uvh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NAVbUX0uvh\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/c\\/EdwinDela\",\"display_url\":\"youtube.com\\/c\\/EdwinDela\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":655,\"friends_count\":1479,\"listed_count\":3,\"created_at\":\"Mon Feb 12 13:14:28 +0000 2018\",\"favourites_count\":946,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477117592255008768\\/ya73arIv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477117592255008768\\/ya73arIv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/963038595568361472\\/1641007556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"288\":{\"id\":963038595568361472,\"id_str\":\"963038595568361472\",\"name\":\"Edwin Dela\",\"screen_name\":\"EdwinDelasi\",\"location\":\"Accra, Ghana\",\"description\":\"Global Brand Strategist || Creative Director | Speaker | Swimmer | Developer || CEO | Growth Mindset Advocate\\u25cf @brandnerdsltd @ghanaskillshub \\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\n#edwindela\",\"url\":\"https:\\/\\/t.co\\/NAVbUX0uvh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NAVbUX0uvh\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/c\\/EdwinDela\",\"display_url\":\"youtube.com\\/c\\/EdwinDela\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":655,\"friends_count\":1479,\"listed_count\":3,\"created_at\":\"Mon Feb 12 13:14:28 +0000 2018\",\"favourites_count\":946,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477117592255008768\\/ya73arIv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477117592255008768\\/ya73arIv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/963038595568361472\\/1641007556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"289\":{\"id\":963038595568361472,\"id_str\":\"963038595568361472\",\"name\":\"Edwin Dela\",\"screen_name\":\"EdwinDelasi\",\"location\":\"Accra, Ghana\",\"description\":\"Global Brand Strategist || Creative Director | Speaker | Swimmer | Developer || CEO | Growth Mindset Advocate\\u25cf @brandnerdsltd @ghanaskillshub \\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\n#edwindela\",\"url\":\"https:\\/\\/t.co\\/NAVbUX0uvh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NAVbUX0uvh\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/c\\/EdwinDela\",\"display_url\":\"youtube.com\\/c\\/EdwinDela\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":655,\"friends_count\":1479,\"listed_count\":3,\"created_at\":\"Mon Feb 12 13:14:28 +0000 2018\",\"favourites_count\":946,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477117592255008768\\/ya73arIv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477117592255008768\\/ya73arIv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/963038595568361472\\/1641007556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"290\":{\"id\":701628614,\"id_str\":\"701628614\",\"name\":\"KING SOLOMON (SOJGraphX)\",\"screen_name\":\"sojisanni\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a Freelance Graphic Designer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":235,\"friends_count\":753,\"listed_count\":0,\"created_at\":\"Tue Jul 17 19:28:03 +0000 2012\",\"favourites_count\":671,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555003463184048134\\/NXJYRbsS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555003463184048134\\/NXJYRbsS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/701628614\\/1557644720\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"291\":{\"id\":1531241418102038528,\"id_str\":\"1531241418102038528\",\"name\":\"G4naijaTV\",\"screen_name\":\"G4naijaTV\",\"location\":\"Lagos, Nigeria\",\"description\":\"FOLLOW for updates\",\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"expanded_url\":\"http:\\/\\/www.g4naija.com\",\"display_url\":\"g4naija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":125,\"friends_count\":94,\"listed_count\":0,\"created_at\":\"Mon May 30 11:49:52 +0000 2022\",\"favourites_count\":162,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":423,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531241418102038528\\/1656355346\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"292\":{\"id\":1531241418102038528,\"id_str\":\"1531241418102038528\",\"name\":\"G4naijaTV\",\"screen_name\":\"G4naijaTV\",\"location\":\"Lagos, Nigeria\",\"description\":\"FOLLOW for updates\",\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"expanded_url\":\"http:\\/\\/www.g4naija.com\",\"display_url\":\"g4naija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":125,\"friends_count\":94,\"listed_count\":0,\"created_at\":\"Mon May 30 11:49:52 +0000 2022\",\"favourites_count\":162,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":423,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531241418102038528\\/1656355346\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"293\":{\"id\":1357350970326417412,\"id_str\":\"1357350970326417412\",\"name\":\"modest \\ud83e\\uddd5\\ud83c\\udffbrocker\\ud83d\\udc5f\",\"screen_name\":\"QueenExclusive2\",\"location\":\"Ibadan\",\"description\":\"Am a fashionista \\ud83d\\ude18A modest rocker\\ud83d\\ude0d\\ud83d\\udc95A food scientist \\u2764\\ufe0fpeople call me Queen \\ud83d\\udc78 QEf\\ud83d\\udcaa\\ud83c\\udffbyour modest is our priority\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":50,\"listed_count\":0,\"created_at\":\"Thu Feb 04 15:31:22 +0000 2021\",\"favourites_count\":228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":91,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1387897728865275910\\/xGuzEDxD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1387897728865275910\\/xGuzEDxD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1357350970326417412\\/1619735580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"294\":{\"id\":1292980797616672773,\"id_str\":\"1292980797616672773\",\"name\":\"OOVII\",\"screen_name\":\"Heisoovii\",\"location\":\"Lagos Nigeria\",\"description\":\"\\u201cICON\\u201d\\ud83c\\udf1fNot glued to a Genre I rap and I sing! \\ud83c\\uddf3\\ud83c\\uddec \\u2653\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/obGzWNTHOF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/obGzWNTHOF\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Oovii\",\"display_url\":\"linktr.ee\\/Oovii\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":153,\"friends_count\":416,\"listed_count\":0,\"created_at\":\"Tue Aug 11 00:27:22 +0000 2020\",\"favourites_count\":2461,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":671,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522947702522191872\\/BXj9Fsp2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522947702522191872\\/BXj9Fsp2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1292980797616672773\\/1638567839\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"295\":{\"id\":2521008697,\"id_str\":\"2521008697\",\"name\":\"Fatima Sana Shaikh\",\"screen_name\":\"fatima_shaaikh\",\"location\":\"UAE\",\"description\":\"Actress\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":280,\"friends_count\":2206,\"listed_count\":1,\"created_at\":\"Sat May 24 17:48:43 +0000 2014\",\"favourites_count\":1195,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1893,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ABB8C2\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549048819131760640\\/T95y3_5W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549048819131760640\\/T95y3_5W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2521008697\\/1659701883\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"296\":{\"id\":1551528148944265217,\"id_str\":\"1551528148944265217\",\"name\":\"Nana_kwaaku_Bonsam\",\"screen_name\":\"NanakwaakuBonsa\",\"location\":\"Ghana\",\"description\":\"Instagram @nana_kwaaku_bonsam.\\nFacebook \\n@Bonsam Nana\\nWhatsApp : +233275158571. \\nhttps:\\/\\/t.co\\/GgJynOEOQX \\nNana kwaku Bonsam official.\",\"url\":\"https:\\/\\/t.co\\/AaKZcc0UQ4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AaKZcc0UQ4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCLCXG1QtYGsF6sHhWkn6grQ\",\"display_url\":\"youtube.com\\/channel\\/UCLCXG\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GgJynOEOQX\",\"expanded_url\":\"http:\\/\\/Youtube.com\",\"display_url\":\"Youtube.com\",\"indices\":[81,104]}]}},\"protected\":false,\"followers_count\":14,\"friends_count\":126,\"listed_count\":0,\"created_at\":\"Mon Jul 25 11:22:22 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551528515228651521\\/tWQQJqS1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551528515228651521\\/tWQQJqS1_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"297\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"298\":{\"id\":1505807068950900737,\"id_str\":\"1505807068950900737\",\"name\":\"\\u23f2\\ufe0fMaazi.Ogbu Okwuson\\ud83c\\udf08\",\"screen_name\":\"OOkwuson\",\"location\":\"Biafra\",\"description\":\"E-commerce specialist\\nThe present and future is written in the past\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":303,\"friends_count\":319,\"listed_count\":0,\"created_at\":\"Mon Mar 21 07:22:49 +0000 2022\",\"favourites_count\":2637,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2699,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516715025846710274\\/hOYlMYIU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516715025846710274\\/hOYlMYIU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1505807068950900737\\/1655046600\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"299\":{\"id\":1250469929473708033,\"id_str\":\"1250469929473708033\",\"name\":\"Maryamoqueen\",\"screen_name\":\"maryamoqueenie\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Muslimah \\ud83e\\uddd5\\ud83c\\udffb|Queen||Food Scientist \\ud83d\\udc69\\u200d\\ud83d\\udd2c |Food journalist |Fashion designer \\u2702\\ufe0f|CEO: QEF|madii student |OgunKopa| introvert|Foodie| pray for me when am gone \\ud83e\\udd7a\",\"url\":\"https:\\/\\/t.co\\/eHMnAYDiqY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eHMnAYDiqY\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/maryam.yusuf.16503\",\"display_url\":\"facebook.com\\/maryam.yusuf.1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":737,\"friends_count\":883,\"listed_count\":0,\"created_at\":\"Wed Apr 15 17:04:13 +0000 2020\",\"favourites_count\":10410,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3398,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1387898563422826496\\/4G2JBOag_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1387898563422826496\\/4G2JBOag_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1250469929473708033\\/1596829125\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"300\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"301\":{\"id\":860058080117223424,\"id_str\":\"860058080117223424\",\"name\":\"Seun kazeem\",\"screen_name\":\"Realseunkazeem\",\"location\":\"Ibadan, Nigeria\",\"description\":\"An Entrepreneur\\ud83e\\udd11\\ud83e\\udd11\\ud83e\\udd11 Director @ateaseauto, CEO of @Puremindgraphix, lead volunteer in #helpforcitizeninitiave and #feedthepoorinitiative. Business always!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Thu May 04 09:06:40 +0000 2017\",\"favourites_count\":514,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":295,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540334470758268929\\/mjmQ7Z8t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540334470758268929\\/mjmQ7Z8t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/860058080117223424\\/1656079626\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"302\":{\"id\":1538852053145030658,\"id_str\":\"1538852053145030658\",\"name\":\"At Ease Auto & Energies\",\"screen_name\":\"ateaseauto\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Your No.1 Oil & Gas with Auto Dealer Company\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Mon Jun 20 11:51:56 +0000 2022\",\"favourites_count\":198,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543182137326714885\\/y7CjyUdc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543182137326714885\\/y7CjyUdc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538852053145030658\\/1655902319\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"303\":{\"id\":1355475092063531014,\"id_str\":\"1355475092063531014\",\"name\":\"edublogs.ng\",\"screen_name\":\"edublogsng\",\"location\":\"Nigeria\",\"description\":\"This is the Official Twitter handle of https:\\/\\/t.co\\/hD3cUZnzvM\\nWhatsApp - https:\\/\\/t.co\\/nfi1H2ukLP\",\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"expanded_url\":\"https:\\/\\/edublogs.com.ng\\/\",\"display_url\":\"edublogs.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"expanded_url\":\"https:\\/\\/edublogs.com.ng\\/\",\"display_url\":\"edublogs.com.ng\",\"indices\":[39,62]},{\"url\":\"https:\\/\\/t.co\\/nfi1H2ukLP\",\"expanded_url\":\"https:\\/\\/wa.me\\/2349092463561\",\"display_url\":\"wa.me\\/2349092463561\",\"indices\":[74,97]}]}},\"protected\":false,\"followers_count\":192,\"friends_count\":158,\"listed_count\":2,\"created_at\":\"Sat Jan 30 11:17:17 +0000 2021\",\"favourites_count\":265,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523563936817328128\\/RPAA9Zrm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523563936817328128\\/RPAA9Zrm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355475092063531014\\/1652080964\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"304\":{\"id\":2969294343,\"id_str\":\"2969294343\",\"name\":\"Disturbing_Art_Official\",\"screen_name\":\"egodfred31\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Graphics_Designer#Expert_In_Desktop_Publishing#Artist#Musician(GetAffordableCartoon Animation@09093869126)followme on instagram @ElijahGodfred.Fb@ElijahGodfred\",\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"expanded_url\":\"http:\\/\\/t.me\\/DisturbingArt\",\"display_url\":\"t.me\\/DisturbingArt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":340,\"friends_count\":94,\"listed_count\":2,\"created_at\":\"Fri Jan 09 07:20:21 +0000 2015\",\"favourites_count\":371,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1295,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2969294343\\/1656591540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"305\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"306\":{\"id\":1349809076809715712,\"id_str\":\"1349809076809715712\",\"name\":\"Oboh Francis Nkemakolam\",\"screen_name\":\"ObohNkemakolam\",\"location\":\"Rivers, Nigeria\",\"description\":\"A social scientist.\\nWhat God cannot do does not exist #NSPPD. #Tonyecole2023 #endasuustrikeforever #BAT2023 #APC #endsars #Nigeria #OneNigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":138,\"friends_count\":339,\"listed_count\":0,\"created_at\":\"Thu Jan 14 20:04:34 +0000 2021\",\"favourites_count\":17194,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556068256888360960\\/wDlORP52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556068256888360960\\/wDlORP52_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1349809076809715712\\/1658929213\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"307\":{\"id\":306263453,\"id_str\":\"306263453\",\"name\":\"John Onyemechi\",\"screen_name\":\"JohnChudosky\",\"location\":\"Ikeja Lagos\",\"description\":\"Digital Marketing and Digital Real Estate Marketing Consultant. Call\\/Whatsapp 07033522246 for enquiries.\",\"url\":\"https:\\/\\/t.co\\/7J0ZChsJh3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7J0ZChsJh3\",\"expanded_url\":\"http:\\/\\/www.digibyteservices.com\",\"display_url\":\"digibyteservices.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":870,\"listed_count\":14,\"created_at\":\"Fri May 27 15:35:19 +0000 2011\",\"favourites_count\":156,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1858,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/652559106033717249\\/jx7tr225_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/652559106033717249\\/jx7tr225_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"308\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"309\":{\"id\":1396874924,\"id_str\":\"1396874924\",\"name\":\"Timanam\",\"screen_name\":\"EmmaAlfredDGC\",\"location\":\"cross river state\",\"description\":\"Teacher, Sports producer, Social Media Manager, Voiceover artist, writer, commentator, MC and Audio editor, Reporter for Newsdotafrica\",\"url\":\"https:\\/\\/t.co\\/UaVRzJtB14\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UaVRzJtB14\",\"expanded_url\":\"http:\\/\\/infonaija.com.ng\",\"display_url\":\"infonaija.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1235,\"friends_count\":1287,\"listed_count\":0,\"created_at\":\"Thu May 02 10:44:36 +0000 2013\",\"favourites_count\":15683,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515949342254788612\\/1ZS6AOzg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515949342254788612\\/1ZS6AOzg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396874924\\/1602676892\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"310\":{\"id\":1401458033704669186,\"id_str\":\"1401458033704669186\",\"name\":\"Dofaham\",\"screen_name\":\"mahafoD_7\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\udf41 A Chelsea Stan and Fan. IFB ASAP!\",\"url\":\"https:\\/\\/t.co\\/zzKdn387BB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zzKdn387BB\",\"expanded_url\":\"http:\\/\\/www.gmail.com\\/dofaham@gmail.com\",\"display_url\":\"gmail.com\\/dofaham@gmail.\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":41,\"friends_count\":80,\"listed_count\":6,\"created_at\":\"Sun Jun 06 08:37:10 +0000 2021\",\"favourites_count\":4213,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2593,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545953062572933122\\/k2HHqz4U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545953062572933122\\/k2HHqz4U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1401458033704669186\\/1655134954\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"311\":{\"id\":1542086957227974657,\"id_str\":\"1542086957227974657\",\"name\":\"Sunshinemporium\",\"screen_name\":\"sunshinemporium\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Home of all your luxury jewelleries and accessories\\/ wristwatches\\/necklace\\/ belts\\/cufflinks\\/jewellery set for him &her .etc \\/ best quality and affordable\\ud83d\\ude9b\\ud83d\\ude9a\",\"url\":\"https:\\/\\/t.co\\/v4fFEUIqrZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/v4fFEUIqrZ\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348079860544\\/\",\"display_url\":\"wa.me\\/2348079860544\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":195,\"listed_count\":0,\"created_at\":\"Wed Jun 29 10:06:08 +0000 2022\",\"favourites_count\":3805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":686,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542090971487371267\\/WASA6qh__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542090971487371267\\/WASA6qh__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1542086957227974657\\/1656498148\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"312\":{\"id\":861929040130830336,\"id_str\":\"861929040130830336\",\"name\":\"SmartMix \\ud83c\\udfb9\\ud83d\\udcb0\",\"screen_name\":\"Smartmix02\",\"location\":\"Lagos, Nigeria\",\"description\":\"Record producer \\ud83c\\udfb6, Audio engineer \\ud83d\\udd0a professional guitarist \\ud83c\\udfb8\\ud83c\\udfbc , sound design engineer\\ud83c\\udfb9.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":706,\"listed_count\":2,\"created_at\":\"Tue May 09 13:01:11 +0000 2017\",\"favourites_count\":371,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":273,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1431940072274898949\\/yFDczUAb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1431940072274898949\\/yFDczUAb_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"313\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"314\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"315\":{\"id\":1254094696265252865,\"id_str\":\"1254094696265252865\",\"name\":\"badmossamuel\",\"screen_name\":\"BadmosSamuel\",\"location\":\"Lagos, Nigeria\",\"description\":\"Father& Poppy\\n\\/\\/ Founder & President \\n@shalompraiseteam\\n \\/\\/ Preacher of the Gospel \\/\\/ God lover\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":133,\"listed_count\":0,\"created_at\":\"Sat Apr 25 17:08:43 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":292,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1393916838292115460\\/YsTtZoXr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1393916838292115460\\/YsTtZoXr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"316\":{\"id\":854041219156070400,\"id_str\":\"854041219156070400\",\"name\":\"GistHub\",\"screen_name\":\"GistHubNaija\",\"location\":\"Nigeria\",\"description\":\"JUICY GIST\\/EXCLUSIVE CONTENT\\/ NEWS ON THE GO!\\nlet's feed your eyes with today's happenings, follow us for instant follow back.\\nRight here we just love gist!\",\"url\":\"https:\\/\\/t.co\\/MQ9XkH2fx9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MQ9XkH2fx9\",\"expanded_url\":\"http:\\/\\/gisthubnaija.com\",\"display_url\":\"gisthubnaija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Mon Apr 17 18:37:48 +0000 2017\",\"favourites_count\":647,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12618,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/854054720004124672\\/s0QnMIHp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/854054720004124672\\/s0QnMIHp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"317\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"318\":{\"id\":965369032277884928,\"id_str\":\"965369032277884928\",\"name\":\"Onyishi Francis\",\"screen_name\":\"FrancisOnyishi\",\"location\":\"Abuja\",\"description\":\"Enthusiastic\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":91,\"listed_count\":1,\"created_at\":\"Sun Feb 18 23:34:47 +0000 2018\",\"favourites_count\":1551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965369032277884928\\/1650277677\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"319\":{\"id\":1152619362978816000,\"id_str\":\"1152619362978816000\",\"name\":\"99 _qudus\",\"screen_name\":\"99_qudus\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcb2crypto currency \\ud83d\\udcb2 Never expect to get help from others. learn to get through life alone. Get up and fight !!\",\"url\":\"https:\\/\\/t.co\\/3hcpVbSVPS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3hcpVbSVPS\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/99qudus\\/\",\"display_url\":\"instagram.com\\/99qudus\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3081,\"friends_count\":3046,\"listed_count\":8,\"created_at\":\"Sat Jul 20 16:40:45 +0000 2019\",\"favourites_count\":3665,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":719,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549702841710907399\\/m32KJKrY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549702841710907399\\/m32KJKrY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1152619362978816000\\/1658312936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"320\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"321\":{\"id\":1043977338940256257,\"id_str\":\"1043977338940256257\",\"name\":\"LiteTv media\",\"screen_name\":\"LiteTvmedia\",\"location\":\"Ogun, Nigeria\",\"description\":\"Get the latest news , around the world, entertainment, sport,memes etc... all social media @ https:\\/\\/t.co\\/qBdaX6UgWj\",\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[94,117]}]}},\"protected\":false,\"followers_count\":158,\"friends_count\":481,\"listed_count\":0,\"created_at\":\"Sun Sep 23 21:36:08 +0000 2018\",\"favourites_count\":507,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":370,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1043977338940256257\\/1653595312\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"322\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"323\":{\"id\":2780170263,\"id_str\":\"2780170263\",\"name\":\"Abandajakobjustman\",\"screen_name\":\"Djustman007\",\"location\":\"Calabar, Nigeria\",\"description\":\"A 1st Order Philosopher, Researcher, Life Coach and Counselor. Neo Humanist and Neo\\/Derepresentationist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11835,\"friends_count\":13063,\"listed_count\":11,\"created_at\":\"Mon Sep 22 11:41:11 +0000 2014\",\"favourites_count\":166818,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12249,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1161481634157383681\\/zm6vFgBU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1161481634157383681\\/zm6vFgBU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2780170263\\/1565754018\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"324\":{\"id\":1406164685116805120,\"id_str\":\"1406164685116805120\",\"name\":\"Tuplex\",\"screen_name\":\"Tuplex50\",\"location\":\"Wuse zone 1, Abuja \",\"description\":\"I am a civil engineer with alot of experience in designs #CONSTRUCTION #DESIGN #Architecture #Civilengineering #Lagos #Abuja #Calabar #Structuralengineering\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":306,\"friends_count\":343,\"listed_count\":2,\"created_at\":\"Sat Jun 19 08:19:41 +0000 2021\",\"favourites_count\":2587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1700,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544402085835415553\\/0bSrItgr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544402085835415553\\/0bSrItgr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1406164685116805120\\/1624229544\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"325\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"326\":{\"id\":1249672282764697602,\"id_str\":\"1249672282764697602\",\"name\":\"\\ud83d\\udd31\\u269c\\ufe0f\\u2728Abdullateef Mikail\\u2728\\ud83d\\udd31\\u269c\\ufe0f\",\"screen_name\":\"AmbassadorDKing\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Agriculturalists| Business Entrepreneur |Ready For Business|Self Confident|Policaly Oriented|Laycon\\u2019s Fanatics|Entertaining|Sports Lover|Human Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":305,\"listed_count\":0,\"created_at\":\"Mon Apr 13 12:14:43 +0000 2020\",\"favourites_count\":204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2886,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1249672282764697602\\/1601240623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"327\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2909,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"328\":{\"id\":749993188690128897,\"id_str\":\"749993188690128897\",\"name\":\"Ismail Mahamadou\",\"screen_name\":\"jamanisti\",\"location\":\"Niamey\",\"description\":\"\\u00c9tudiants, consultant en informatique\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Mon Jul 04 15:48:05 +0000 2016\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/749997524514201600\\/Wzq7PrO0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/749997524514201600\\/Wzq7PrO0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/749993188690128897\\/1659622714\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"329\":{\"id\":1519261928404787200,\"id_str\":\"1519261928404787200\",\"name\":\"Olu baba\",\"screen_name\":\"Olubabaoshole\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m the water that has no enemy, for all your challenges and spiritual problems call me for solutions +2348067718912.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed Apr 27 10:27:49 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519262187554058241\\/xhID2Ob__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519262187554058241\\/xhID2Ob__normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"330\":{\"id\":1227326200428797955,\"id_str\":\"1227326200428797955\",\"name\":\"Don current\",\"screen_name\":\"Doncurrent1\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Do not for once give up on happiness \\u263a\\u2728\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":799,\"listed_count\":3,\"created_at\":\"Tue Feb 11 20:19:21 +0000 2020\",\"favourites_count\":2040,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2087,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539526667336658944\\/BNyKP1Vp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539526667336658944\\/BNyKP1Vp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1227326200428797955\\/1655987898\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"331\":{\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"screen_name\":\"Swanskid_\",\"location\":\"Kumasi, Ghana\",\"description\":\"Blessings from the most high.....Instagram @swanskid_\",\"url\":\"https:\\/\\/t.co\\/rixGnPP7BV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rixGnPP7BV\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/swanskid\\/attention\",\"display_url\":\"distrokid.com\\/hyperfollow\\/sw\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":737,\"friends_count\":80,\"listed_count\":0,\"created_at\":\"Mon Sep 05 13:13:29 +0000 2016\",\"favourites_count\":1590,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":229,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520233021118558209\\/KZOn8jK3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520233021118558209\\/KZOn8jK3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/772784719507382272\\/1651286785\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"332\":{\"id\":1157629744827043841,\"id_str\":\"1157629744827043841\",\"name\":\"Ay\\u1ecd\\u0300b\\u00e1mi\",\"screen_name\":\"theayobami_\",\"location\":\"Lagos\",\"description\":\"No Way Down\",\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/theayobami_\",\"display_url\":\"linktr.ee\\/theayobami_\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":492,\"friends_count\":198,\"listed_count\":0,\"created_at\":\"Sat Aug 03 12:30:13 +0000 2019\",\"favourites_count\":1074,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":913,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1157629744827043841\\/1658829676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"333\":{\"id\":1313468269198807040,\"id_str\":\"1313468269198807040\",\"name\":\"CryptoHub\",\"screen_name\":\"DeCryptoHub\",\"location\":\"Blockchain\",\"description\":\"Your true guide to better trading! #Bitcoin \\n\\nOfficial crypto trade signals channel for https:\\/\\/t.co\\/9JuLbJFEX4 @daba_school\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9JuLbJFEX4\",\"expanded_url\":\"http:\\/\\/daba.school\",\"display_url\":\"daba.school\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":18237,\"friends_count\":16,\"listed_count\":89,\"created_at\":\"Tue Oct 06 13:17:19 +0000 2020\",\"favourites_count\":563,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":859,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1313469107933769728\\/8J4xYfTu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1313469107933769728\\/8J4xYfTu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1313468269198807040\\/1601991364\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"334\":{\"id\":1312313816462524416,\"id_str\":\"1312313816462524416\",\"name\":\"PeMerc Limited\",\"screen_name\":\"pemercltd\",\"location\":\"Lagos, Nigeria\",\"description\":\"PeMerc is a Household name for affordable and durable Laptops, Phones and\\u00a0 Accessories for all Levels and Classes of People.\",\"url\":\"https:\\/\\/t.co\\/NZlGXA234K\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NZlGXA234K\",\"expanded_url\":\"http:\\/\\/www.pemerc.com\",\"display_url\":\"pemerc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3775,\"friends_count\":3631,\"listed_count\":3,\"created_at\":\"Sat Oct 03 08:50:00 +0000 2020\",\"favourites_count\":1893,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1312314076521992192\\/FeFssxnb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1312314076521992192\\/FeFssxnb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312313816462524416\\/1601715287\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"335\":{\"id\":1282590760718733312,\"id_str\":\"1282590760718733312\",\"name\":\"OnlinePikin\",\"screen_name\":\"Online_Pikin\",\"location\":\"Nigeria\",\"description\":\"A niche blog telling stories on brands, causes, people & events from around the globe.\",\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\",\"display_url\":\"onlinepikin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Mon Jul 13 08:20:59 +0000 2020\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282590760718733312\\/1659910806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"336\":{\"id\":847101339868041216,\"id_str\":\"847101339868041216\",\"name\":\"Molders Group\",\"screen_name\":\"moldersgroup\",\"location\":\"Accra, Ghana\",\"description\":\"Molders Group Limited consists of Molders Developers, Molders Design & Build, Molders Products and Molders Logistics.\",\"url\":\"https:\\/\\/t.co\\/bWM3GsasaR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bWM3GsasaR\",\"expanded_url\":\"http:\\/\\/www.moldersdb.com\",\"display_url\":\"moldersdb.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":275,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Wed Mar 29 15:01:12 +0000 2017\",\"favourites_count\":3783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/935822835674767360\\/-xXrDcpi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/935822835674767360\\/-xXrDcpi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/847101339868041216\\/1507202283\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"337\":{\"id\":2789415037,\"id_str\":\"2789415037\",\"name\":\"Abubakar Kabir Enitan\",\"screen_name\":\"Kbtopmost1808\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"\\ud83d\\udcd2Objective Minded\\ud83d\\udd8b\\ufe0f\\n \\ud83c\\udf93Accountant \\ud83d\\udc54\\n \\ud83c\\uddf3\\ud83c\\uddec A believer in Nigeria Dream.\\ud83c\\uddf3\\ud83c\\uddec\\n \\ud83d\\ude4fProudly Ogun State Indigene\\ud83d\\ude4f\\n #ABUSITE | \\u2665\\ufe0fOko Rofiah\\u2665\\ufe0f|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":282,\"friends_count\":917,\"listed_count\":0,\"created_at\":\"Thu Sep 04 08:12:25 +0000 2014\",\"favourites_count\":11636,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4571,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533405995682172928\\/Zb4i4-ry_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533405995682172928\\/Zb4i4-ry_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2789415037\\/1545041150\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"338\":{\"id\":3053955908,\"id_str\":\"3053955908\",\"name\":\"Emmanuel Ifeanyichukwu Joseph\",\"screen_name\":\"emmaijoseph\",\"location\":\"Nigeria\",\"description\":\"A website Developer, Graphic Designer, Video Editor with @ozoneicttech \\nContent Creator & author with @olearnzone\\n#emmaijoseph\\n#programmer\\n#business\\n#developer\",\"url\":\"https:\\/\\/t.co\\/2JqzhdtDE5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2JqzhdtDE5\",\"expanded_url\":\"http:\\/\\/olearnzone.com.ng\\/author\\/ije\",\"display_url\":\"olearnzone.com.ng\\/author\\/ije\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":287,\"friends_count\":2671,\"listed_count\":0,\"created_at\":\"Sun Mar 01 23:01:08 +0000 2015\",\"favourites_count\":208,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484790360228384770\\/Ef9yr1hW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484790360228384770\\/Ef9yr1hW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3053955908\\/1650222889\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"339\":{\"id\":1553726345041137666,\"id_str\":\"1553726345041137666\",\"name\":\"1202_Scents\",\"screen_name\":\"1202_Scents\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Online perfume store Everything fragrance \\ud83c\\udf38 Authentic perfumes,designer oil,body mists,scented candles and diffusers.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":148,\"listed_count\":0,\"created_at\":\"Sun Jul 31 12:57:00 +0000 2022\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":110,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554405684422344705\\/FfVIvadH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554405684422344705\\/FfVIvadH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553726345041137666\\/1659434210\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"340\":{\"id\":1565364198,\"id_str\":\"1565364198\",\"name\":\"princesskayinma1\",\"screen_name\":\"kayinmakarma\",\"location\":\"Lagos, Nigeria\",\"description\":\"miss simplicity\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Wed Jul 03 10:06:42 +0000 2013\",\"favourites_count\":565,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553000589210034182\\/M4chBwoz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553000589210034182\\/M4chBwoz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"341\":{\"id\":1249672282764697602,\"id_str\":\"1249672282764697602\",\"name\":\"\\ud83d\\udd31\\u269c\\ufe0f\\u2728Abdullateef Mikail\\u2728\\ud83d\\udd31\\u269c\\ufe0f\",\"screen_name\":\"AmbassadorDKing\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Agriculturalists| Business Entrepreneur |Ready For Business|Self Confident|Policaly Oriented|Laycon\\u2019s Fanatics|Entertaining|Sports Lover|Human Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":305,\"listed_count\":0,\"created_at\":\"Mon Apr 13 12:14:43 +0000 2020\",\"favourites_count\":204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2886,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1249672282764697602\\/1601240623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"342\":{\"id\":1045414076040597504,\"id_str\":\"1045414076040597504\",\"name\":\"matinodon (mtpmusik california lifestyle)\",\"screen_name\":\"matinodon1\",\"location\":\"Accra, Ghana\",\"description\":\"https:\\/\\/t.co\\/6AmWMTu3xi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6AmWMTu3xi\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/matinodon\\/song\\/saa-saa\",\"display_url\":\"audiomack.com\\/matinodon\\/song\\u2026\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":280,\"friends_count\":127,\"listed_count\":0,\"created_at\":\"Thu Sep 27 20:45:13 +0000 2018\",\"favourites_count\":7097,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546287546065379328\\/66FFWne6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546287546065379328\\/66FFWne6_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"343\":{\"id\":1477274847780773894,\"id_str\":\"1477274847780773894\",\"name\":\"PREACH\\u2763\\ufe0f\\ud83c\\udf99\",\"screen_name\":\"KofiDave77\",\"location\":\"Mars\",\"description\":\"Must be your fav #MC\\ud83c\\udfa4\\/\\/ ,#ScriptWriter\\/\\/ #ContentCreator\\/\\/ #Freelancer\\/\\/. @ManCity \\ud83c\\udfd9\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/BccLoEe0R8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BccLoEe0R8\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/ab\\/messages\\/rooms\",\"display_url\":\"upwork.com\\/ab\\/messages\\/ro\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":609,\"friends_count\":240,\"listed_count\":0,\"created_at\":\"Sat Jan 01 13:46:05 +0000 2022\",\"favourites_count\":5452,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5617,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554949978665140226\\/2130G4Yv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554949978665140226\\/2130G4Yv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1477274847780773894\\/1658657581\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"344\":{\"id\":383958667,\"id_str\":\"383958667\",\"name\":\"\\ud835\\udc4e\\ud835\\udc5f\\ud835\\udc4e\\ud835\\udc58\\ud835\\udc62\\ud835\\udc5b\\ud835\\udc5f\\ud835\\udc56\\ud835\\udc5b_\\ud835\\udc60\\ud835\\udc61\\ud835\\udc52\\ud835\\udc5d\\u210e\\ud835\\udc56\\ud835\\udc52\\ud83d\\ude43de.OBIdient\",\"screen_name\":\"gasberryparie\",\"location\":\"Ibadan, Nigeria\",\"description\":\"imperfect creature God's lover caring son aspiring father incoming billionaire\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":148,\"friends_count\":579,\"listed_count\":0,\"created_at\":\"Sun Oct 02 20:25:44 +0000 2011\",\"favourites_count\":2728,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5347,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535905950581809152\\/_Un8Lb9N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535905950581809152\\/_Un8Lb9N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/383958667\\/1606301251\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"345\":{\"id\":1043423721338413057,\"id_str\":\"1043423721338413057\",\"name\":\"LAGOS HALAL DIGITAL MARKETING AGENCY\",\"screen_name\":\"J4PMARKETERS\",\"location\":\"Lagos, Nigeria\",\"description\":\"Lagos Number 1 Halal Digital Marketing Agency.\\nDM to get quote and know more.\\nWhatsApp: https:\\/\\/t.co\\/KmncOn88w0\",\"url\":\"https:\\/\\/t.co\\/0bCb6gbpID\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0bCb6gbpID\",\"expanded_url\":\"https:\\/\\/j4pmarketers.com\",\"display_url\":\"j4pmarketers.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KmncOn88w0\",\"expanded_url\":\"https:\\/\\/wa.me\\/2347038631350\",\"display_url\":\"wa.me\\/2347038631350\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":153,\"friends_count\":379,\"listed_count\":2,\"created_at\":\"Sat Sep 22 08:56:15 +0000 2018\",\"favourites_count\":262,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545350174977007618\\/iIr97o7E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545350174977007618\\/iIr97o7E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1043423721338413057\\/1657275167\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"346\":{\"id\":366542977,\"id_str\":\"366542977\",\"name\":\"DJ BORSH OF THE BUJ\",\"screen_name\":\"Dj_borsh\",\"location\":\"Abuja, Nigeria\",\"description\":\"PRO DJ Official DJ @coolfmabuja || Bookings -@gmail.com || Events || Music promotions (Radio) 08037511961 (apple,spotify,audiomack ) || DM open for business\",\"url\":\"https:\\/\\/t.co\\/bvPu25Jo3z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bvPu25Jo3z\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/dj_borsh\",\"display_url\":\"linktr.ee\\/dj_borsh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6874,\"friends_count\":6660,\"listed_count\":6,\"created_at\":\"Fri Sep 02 11:06:10 +0000 2011\",\"favourites_count\":40363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":45920,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1444696333965742091\\/XjEod9-l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1444696333965742091\\/XjEod9-l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/366542977\\/1550914762\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"347\":{\"id\":2583496138,\"id_str\":\"2583496138\",\"name\":\"ProtonOracle\\u269b\\ufe0f\\u269b\\ufe0f\",\"screen_name\":\"Drexxofficiall\",\"location\":\"Lagos Nigeria\",\"description\":\"Artist .for booking call +https:\\/\\/t.co\\/0OE3wLqHWP @drexxofficial@gmail.com.protonarmy,Proton self claimed African \\u269b\\ufe0f Ambassador \\u269b\\ufe0f$XPR $Loan NFT expert\",\"url\":\"https:\\/\\/t.co\\/rcSwOOaM1g\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rcSwOOaM1g\",\"expanded_url\":\"https:\\/\\/indfy.me\\/drexx-confession\",\"display_url\":\"indfy.me\\/drexx-confessi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0OE3wLqHWP\",\"expanded_url\":\"http:\\/\\/2348067639766.email\",\"display_url\":\"2348067639766.email\",\"indices\":[26,49]}]}},\"protected\":false,\"followers_count\":1249,\"friends_count\":4985,\"listed_count\":5,\"created_at\":\"Thu Jun 05 03:43:40 +0000 2014\",\"favourites_count\":15575,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7874,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546226710701654016\\/JOcaOux0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546226710701654016\\/JOcaOux0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2583496138\\/1571177300\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"348\":{\"id\":1396142465900367874,\"id_str\":\"1396142465900367874\",\"name\":\"Angel Network News\",\"screen_name\":\"angelnetnews\",\"location\":\"Awka, Nigeria\",\"description\":\"Journalism is the Freedom of the People |\\nDownload ANN App today\\ud83d\\udcf1 https:\\/\\/t.co\\/h4aVNCCbFk\",\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"expanded_url\":\"http:\\/\\/www.angelnetworknews.com\",\"display_url\":\"angelnetworknews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h4aVNCCbFk\",\"expanded_url\":\"https:\\/\\/angelnetworknews.com\\/mobile-apps\\/\",\"display_url\":\"angelnetworknews.com\\/mobile-apps\\/\",\"indices\":[66,89]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":83,\"listed_count\":0,\"created_at\":\"Sat May 22 16:34:50 +0000 2021\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396142465900367874\\/1657392226\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"349\":{\"id\":880015105135607808,\"id_str\":\"880015105135607808\",\"name\":\"Zeeter Oliver\",\"screen_name\":\"OliverZeeter\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec Afrofusion Songstress of Abuja \\n. \\n\\nInstagram\\n\\n- @zeeteroliver \\n\\nMy Music \\n- \\n\\nhttps:\\/\\/t.co\\/nccSFc5qkp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nccSFc5qkp\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Zeeteroliver\",\"display_url\":\"linktr.ee\\/Zeeteroliver\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":326,\"friends_count\":1050,\"listed_count\":1,\"created_at\":\"Wed Jun 28 10:48:45 +0000 2017\",\"favourites_count\":904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":784,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880015105135607808\\/1659766982\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"350\":{\"id\":1502314843625435138,\"id_str\":\"1502314843625435138\",\"name\":\"Milliator \\ud83d\\udc69\\u200d\\ud83c\\udf73\\ud83e\\udd5e\\u26bd\\ufe0f\\ud83c\\udfad\",\"screen_name\":\"Milli_ator\",\"location\":\"Lagos, Nigeria\",\"description\":\"EVERYWHERE YOU GO\\ud83d\\udd04\\n~THESPIAN \\ud83c\\udfad\\n~CHEF\\ud83d\\udc69\\u200d\\ud83c\\udf73\\n~KITCHEN EXPERT\\ud83e\\udd5e\\n~FOOTBALL LOVER\\u26bd\\ufe0f\\n~MONEY LOVER\\ud83d\\udcb5\\n\\u2935\\ufe0f\\nDM open for reasonable conversations only \\ud83d\\ude11\",\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"expanded_url\":\"http:\\/\\/www.naijabet.com\\/reg\\/af\\/301064\",\"display_url\":\"naijabet.com\\/reg\\/af\\/301064\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":480,\"friends_count\":654,\"listed_count\":0,\"created_at\":\"Fri Mar 11 16:06:03 +0000 2022\",\"favourites_count\":12000,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7868,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502314843625435138\\/1659354254\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"351\":{\"id\":1208046199409979392,\"id_str\":\"1208046199409979392\",\"name\":\"Osehobo\",\"screen_name\":\"DonOsehobo\",\"location\":\"Benin-City, Nigeria\",\"description\":\"#Publicist\\n#Blogger\\n#Contentdeveloper \\n#JournalismResearcher\",\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"expanded_url\":\"http:\\/\\/www.agbakablog.com\",\"display_url\":\"agbakablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":931,\"friends_count\":2787,\"listed_count\":0,\"created_at\":\"Fri Dec 20 15:27:29 +0000 2019\",\"favourites_count\":2412,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5754,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1208046199409979392\\/1656251324\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"352\":{\"id\":1452049831195815941,\"id_str\":\"1452049831195815941\",\"name\":\"Oscar Azolibe\",\"screen_name\":\"OAzolibe\",\"location\":\"Nigeria\",\"description\":\"Digital Creator (Going Viral Tonight)\",\"url\":\"https:\\/\\/t.co\\/kljsePsTsX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kljsePsTsX\",\"expanded_url\":\"http:\\/\\/www.oscarblog.online\",\"display_url\":\"oscarblog.online\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":23,\"listed_count\":0,\"created_at\":\"Sat Oct 23 23:10:56 +0000 2021\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522124094409486336\\/PWFgkJvS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522124094409486336\\/PWFgkJvS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"353\":{\"id\":103711724,\"id_str\":\"103711724\",\"name\":\"Sewen Lad \\ud83c\\udf10\",\"screen_name\":\"LadSewen\",\"location\":\"Nigeria\",\"description\":\"Photographer, Psych expert, Strategic Thinker, Actor & VoiceOver artist, NFT enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":317,\"friends_count\":582,\"listed_count\":3,\"created_at\":\"Mon Jan 11 00:52:39 +0000 2010\",\"favourites_count\":1293,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1449,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508912847329411083\\/v-hBEJxi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508912847329411083\\/v-hBEJxi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/103711724\\/1657750350\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"354\":{\"id\":1502296508561076228,\"id_str\":\"1502296508561076228\",\"name\":\"Ghost\",\"screen_name\":\"K_h_a_l_i_f\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf39\\ud83d\\ude4f\\ud83c\\udf39\\ud83e\\udd0c\\ud83c\\udf39\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\nfor more good content \\n\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/Fxod4Kti8y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fxod4Kti8y\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCE_EzAq_s-1-8RkoIsvVGjQ\",\"display_url\":\"youtube.com\\/channel\\/UCE_Ez\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1060,\"friends_count\":2803,\"listed_count\":1,\"created_at\":\"Fri Mar 11 14:53:23 +0000 2022\",\"favourites_count\":411,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":98,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554892941331660801\\/W2BP-YbL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554892941331660801\\/W2BP-YbL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502296508561076228\\/1648993901\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"355\":{\"id\":999243488,\"id_str\":\"999243488\",\"name\":\"YINQAH_GE\\ud83d\\udc8e\",\"screen_name\":\"olayinkaige\",\"location\":\"abuja\",\"description\":\"When the street are jungle there can only be one king\",\"url\":\"https:\\/\\/t.co\\/apqEWyTEq9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/apqEWyTEq9\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/olayinka-ige-107a9b83\",\"display_url\":\"linkedin.com\\/in\\/olayinka-ig\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":462,\"listed_count\":0,\"created_at\":\"Sun Dec 09 13:02:30 +0000 2012\",\"favourites_count\":268,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":983,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458170461827129344\\/G0RbTMIf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458170461827129344\\/G0RbTMIf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/999243488\\/1424367031\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"356\":{\"id\":1326176068164870144,\"id_str\":\"1326176068164870144\",\"name\":\"opeyemi afolabi\",\"screen_name\":\"OpeyemiArinola5\",\"location\":\"Lagos, Nigeria\",\"description\":\"a health advocate\\/educator\\/student\\nfounder of my health matters\",\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"expanded_url\":\"http:\\/\\/myhealthmatterstoday.wordpress.com\",\"display_url\":\"myhealthmatterstoday.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Tue Nov 10 14:53:36 +0000 2020\",\"favourites_count\":558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1326176068164870144\\/1659470260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"357\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"358\":{\"id\":780335830317600768,\"id_str\":\"780335830317600768\",\"name\":\"Tega Billi\",\"screen_name\":\"tegabilli\",\"location\":\"Warri, Nigeria\",\"description\":\"We cannot change the world until we change ourselves\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Mon Sep 26 09:18:54 +0000 2016\",\"favourites_count\":8674,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1381338586579079169\\/ldhdmNqd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1381338586579079169\\/ldhdmNqd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/780335830317600768\\/1604677754\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"359\":{\"id\":1488448259022635014,\"id_str\":\"1488448259022635014\",\"name\":\"Andre\",\"screen_name\":\"andre_design1\",\"location\":\"Lagos, Nigeria\",\"description\":\"In a world of endless possibilities we help you create an eye grabbing designs that helps you get to your ideal client, for booking:andrechristianofficial@gmail\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":369,\"listed_count\":0,\"created_at\":\"Tue Feb 01 09:45:17 +0000 2022\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":62,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529212159728697344\\/duDxePed_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529212159728697344\\/duDxePed_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1488448259022635014\\/1658340159\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"360\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"361\":{\"id\":1245884934889377792,\"id_str\":\"1245884934889377792\",\"name\":\"Infactng\",\"screen_name\":\"infactng\",\"location\":\"Abuja, Nigeria\",\"description\":\"Investigations, Long Form Narrative Journalism.\",\"url\":\"https:\\/\\/t.co\\/EJP8BVaMUr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EJP8BVaMUr\",\"expanded_url\":\"http:\\/\\/www.infactng.com\",\"display_url\":\"infactng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":28,\"friends_count\":54,\"listed_count\":0,\"created_at\":\"Fri Apr 03 01:25:22 +0000 2020\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":629,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1352945880622657536\\/7RlzRQ8a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1352945880622657536\\/7RlzRQ8a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1245884934889377792\\/1611402382\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"362\":{\"id\":1101456316130828288,\"id_str\":\"1101456316130828288\",\"name\":\"AbikeOnibata\",\"screen_name\":\"mydeviria\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your Stock Shoes Plug\\ud83d\\udd0c\\n\\nMules|Heels|Sneakers&Sandals\\n\\ud83d\\udc61\\ud83d\\udc60\\ud83e\\udd7e\\ud83d\\udc5f\\ud83d\\udc5e\\n\\nMrs O\\ud83d\\udc8d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":578,\"friends_count\":947,\"listed_count\":1,\"created_at\":\"Fri Mar 01 12:17:04 +0000 2019\",\"favourites_count\":2214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1101456316130828288\\/1659471517\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"363\":{\"id\":1526991568749617159,\"id_str\":\"1526991568749617159\",\"name\":\"Peter Obi's errand boy\\u26aa\",\"screen_name\":\"Nwakaibeya001\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":80,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed May 18 18:22:37 +0000 2022\",\"favourites_count\":1316,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":491,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535874958332682240\\/s-zYdYwZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535874958332682240\\/s-zYdYwZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526991568749617159\\/1652898824\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"364\":{\"id\":1312739299750744070,\"id_str\":\"1312739299750744070\",\"name\":\"Echezque Hub\",\"screen_name\":\"EchezqueH\",\"location\":\"Enugu, Nigeria\",\"description\":\"Business\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":64,\"listed_count\":2,\"created_at\":\"Sun Oct 04 13:00:54 +0000 2020\",\"favourites_count\":58,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521778769777856513\\/Txk-O4Cf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521778769777856513\\/Txk-O4Cf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312739299750744070\\/1651655437\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"365\":{\"id\":1140740046485635073,\"id_str\":\"1140740046485635073\",\"name\":\"Maufemor\",\"screen_name\":\"maufemor7\",\"location\":\"Accra Ghana\",\"description\":\"I am Here for fan and Business.\\n#Follow4Following Back ASAP\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2932,\"friends_count\":3516,\"listed_count\":2,\"created_at\":\"Mon Jun 17 21:56:35 +0000 2019\",\"favourites_count\":2255,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554500782883487745\\/uDOiDozp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554500782883487745\\/uDOiDozp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1140740046485635073\\/1659456842\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"366\":{\"id\":1335505373399306240,\"id_str\":\"1335505373399306240\",\"name\":\"Revenes\",\"screen_name\":\"RevenesNigeria\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are all about consumer tech products.\\nWe sell, We blog, We review and We share love along the way. \\ud83d\\udda4\\ud83e\\udd0d\\nJoin Us!!\\n+234 810 034 5260\\n#revenesnigeria\",\"url\":\"https:\\/\\/t.co\\/NHT3wDsrxx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NHT3wDsrxx\",\"expanded_url\":\"https:\\/\\/www.revenes.com\\/social-page\\/\",\"display_url\":\"revenes.com\\/social-page\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":261,\"friends_count\":66,\"listed_count\":1,\"created_at\":\"Sun Dec 06 08:44:41 +0000 2020\",\"favourites_count\":2897,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1279,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520819982296354818\\/vyRL2vNh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520819982296354818\\/vyRL2vNh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1335505373399306240\\/1655139372\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"367\":{\"id\":1014049065997422592,\"id_str\":\"1014049065997422592\",\"name\":\"NIGERIAN\",\"screen_name\":\"CjKrisEze\",\"location\":\"Lagos\",\"description\":\"Integrity Respect and rule of law\",\"url\":\"https:\\/\\/t.co\\/dT1axvvWIH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dT1axvvWIH\",\"expanded_url\":\"http:\\/\\/www.kristinroofing.com.ng\",\"display_url\":\"kristinroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":1149,\"listed_count\":0,\"created_at\":\"Tue Jul 03 07:31:52 +0000 2018\",\"favourites_count\":9357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2579,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1185517868663877633\\/bGVqXAH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1185517868663877633\\/bGVqXAH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1014049065997422592\\/1571484478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"368\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"369\":{\"id\":943589629340549120,\"id_str\":\"943589629340549120\",\"name\":\"Noble sunny\",\"screen_name\":\"Noble_asun\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":236,\"listed_count\":0,\"created_at\":\"Wed Dec 20 21:11:13 +0000 2017\",\"favourites_count\":63,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":762,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1369383434192359424\\/5GwTavYk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1369383434192359424\\/5GwTavYk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/943589629340549120\\/1615321437\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"370\":{\"id\":962513296665477120,\"id_str\":\"962513296665477120\",\"name\":\"Praise Ogunade\",\"screen_name\":\"OgunadePraise\",\"location\":\"Lagos, Nigeria\",\"description\":\"I Am Addicted To D Presence of God.I Carry His Presence With Me Every Where I Go.I Have A Passion...To Learn At His Presence, I Am A Misfit Elsewhere.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":79,\"listed_count\":1,\"created_at\":\"Sun Feb 11 02:27:07 +0000 2018\",\"favourites_count\":231,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":798,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377001248067555331\\/vQLqhaMC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377001248067555331\\/vQLqhaMC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/962513296665477120\\/1518560200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"371\":{\"id\":1382325349107830792,\"id_str\":\"1382325349107830792\",\"name\":\"gobarta_\",\"screen_name\":\"gobarta_\",\"location\":\"Nigeria\",\"description\":\"A safe space to trade and Barter. Trade smartly, stay happy. To download app, click on https:\\/\\/t.co\\/TCAu2rxr34\",\"url\":\"https:\\/\\/t.co\\/7UxZUdRazF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7UxZUdRazF\",\"expanded_url\":\"http:\\/\\/www.gobarta.com\",\"display_url\":\"gobarta.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TCAu2rxr34\",\"expanded_url\":\"https:\\/\\/play.google.com\\/store\\/apps\\/details?id=com.gobarter.barter_ui\",\"display_url\":\"play.google.com\\/store\\/apps\\/det\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":5,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Wed Apr 14 13:30:42 +0000 2021\",\"favourites_count\":179,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1382325590934556672\\/xtSIvAbQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1382325590934556672\\/xtSIvAbQ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"372\":{\"id\":1125656343900241920,\"id_str\":\"1125656343900241920\",\"name\":\"Francis Ofori Quansah\",\"screen_name\":\"GIJShuttle\",\"location\":\"Burma camp\",\"description\":\"Sports Journalist @GHANANEWSAGENCY featured in @ghstandard @skyypowerfm @news_ghana @TheGhanaWeb francisofori605@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1767,\"friends_count\":2746,\"listed_count\":0,\"created_at\":\"Tue May 07 06:59:20 +0000 2019\",\"favourites_count\":10408,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":9952,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1497501310274441217\\/KSLwnBkR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1497501310274441217\\/KSLwnBkR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125656343900241920\\/1609584540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"373\":{\"id\":1535870920174080002,\"id_str\":\"1535870920174080002\",\"name\":\"Ikemefuna\",\"screen_name\":\"Ezedinachukwu\",\"location\":\"Ado Ekiti, Nigeria\",\"description\":\"Life is Dgreatest Teacher Dmore u live D more u Learn so Invest more in Human Humility pays more adopt it:Real Estate,Solar,Cctv Installation\\/Training\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde6\\ud83c\\uddea\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":353,\"listed_count\":0,\"created_at\":\"Sun Jun 12 06:26:04 +0000 2022\",\"favourites_count\":10112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1571,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535871220444549126\\/AVmDepCA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535871220444549126\\/AVmDepCA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535870920174080002\\/1655158423\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"374\":{\"id\":1267849824151515136,\"id_str\":\"1267849824151515136\",\"name\":\"BHG Media\",\"screen_name\":\"bhginfodesk\",\"location\":\"Calabar \",\"description\":\"News Blog And Media Broadcast\",\"url\":\"https:\\/\\/t.co\\/EtqqAEASnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EtqqAEASnm\",\"expanded_url\":\"https:\\/\\/bhginfodesks.com\",\"display_url\":\"bhginfodesks.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":200,\"listed_count\":0,\"created_at\":\"Tue Jun 02 16:07:47 +0000 2020\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1507,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1348956218828709890\\/N_sRvdIQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1348956218828709890\\/N_sRvdIQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1267849824151515136\\/1610448578\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"375\":{\"id\":228383551,\"id_str\":\"228383551\",\"name\":\"A.Olalekan \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Maworry22\",\"location\":\"Lagos\",\"description\":\"Brand Reporter| Social Media Analyst|Author #Muisng| Wordpress Advocate| Tech Enthusiast| Content Writer| Copywriter| 02 Academy Alumni\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":959,\"friends_count\":2066,\"listed_count\":2,\"created_at\":\"Sun Dec 19 15:21:05 +0000 2010\",\"favourites_count\":1250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999216394381111296\\/2oBCGa4Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999216394381111296\\/2oBCGa4Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/228383551\\/1451471534\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"376\":{\"id\":1395444137609019403,\"id_str\":\"1395444137609019403\",\"name\":\"DemetersLawFirm #DivorceNigeria\",\"screen_name\":\"DemetersF\",\"location\":\"Nigeria\",\"description\":\"Everything You Need To Know About Marriage, Divorce & Custody in Nigeria\",\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/MzAgams\",\"display_url\":\"linktr.ee\\/MzAgams\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Thu May 20 18:21:13 +0000 2021\",\"favourites_count\":153,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1395444137609019403\\/1656532889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"377\":{\"id\":55308144,\"id_str\":\"55308144\",\"name\":\"Peter Obi's Minister of Power\",\"screen_name\":\"RealPOOkeke\",\"location\":\"Nigeria\",\"description\":\"Shadow Minister of Power|Global Energy Efficiency & Sustainability Advocate | Power Engineer| Social Commentator|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":548,\"friends_count\":1163,\"listed_count\":8,\"created_at\":\"Thu Jul 09 17:56:14 +0000 2009\",\"favourites_count\":229,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/55308144\\/1655442076\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"378\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"379\":{\"id\":4407242247,\"id_str\":\"4407242247\",\"name\":\"Liqourlion \\ud83e\\udd81Groovy\\u2763\\ufe0fBeauty\\u2693\\ufe0f\\u2763\\ufe0f\",\"screen_name\":\"holarjuhmoker\",\"location\":\"Lagos\",\"description\":\"\\ud83c\\udf61\\ud83d\\udcb5 Liqourlion\\ud83e\\udd81, Groovy\\u2763\\ufe0fBeauty\\u2763\\ufe0fBryan\\u2763\\ufe0fphyna \\u2763\\ufe0fAdekunle\\u2763\\ufe0f\\u2026 You drag any of my babies I Drag you like I pass my Neighbour generator\\u2692\\u2694\\ufe0f\\ud83d\\udd2a\\ud83e\\ude93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":247,\"friends_count\":110,\"listed_count\":0,\"created_at\":\"Mon Dec 07 18:05:57 +0000 2015\",\"favourites_count\":2845,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554919610117492736\\/p8fvKtUs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554919610117492736\\/p8fvKtUs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4407242247\\/1659556711\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"380\":{\"id\":1094632463589146624,\"id_str\":\"1094632463589146624\",\"name\":\"Great Crypto Mind\",\"screen_name\":\"crypto_palaver\",\"location\":\"Abeokuta\",\"description\":\"Respect for people irrespective of race and colour. Lover of anything good. Eschews violence.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Sun Feb 10 16:21:31 +0000 2019\",\"favourites_count\":640,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1094638767971938304\\/ZoC77cpk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1094638767971938304\\/ZoC77cpk_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"381\":{\"id\":2876181225,\"id_str\":\"2876181225\",\"name\":\"zubenna\",\"screen_name\":\"zubboke42\",\"location\":\"Porthacourt,Nigeria \",\"description\":\"Keep pushing never give up ,You can\\u2019t be unlucky for a year.|Port harcourt boy Original|IG:- @ zubenna\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":62,\"listed_count\":0,\"created_at\":\"Fri Nov 14 09:27:22 +0000 2014\",\"favourites_count\":338,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":158,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2876181225\\/1653251845\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"382\":{\"id\":1532374245195530241,\"id_str\":\"1532374245195530241\",\"name\":\"Jhonex Real Estate and Agent\",\"screen_name\":\"JHONEXEMPIRE\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Consultant! Customers satisfaction is our major priority WhatsApp or call \\u260e\\ufe0f 08078560055 09025686700\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":505,\"listed_count\":0,\"created_at\":\"Thu Jun 02 14:51:19 +0000 2022\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":133,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532394917435256834\\/wFALcRQB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532394917435256834\\/wFALcRQB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1532374245195530241\\/1654187119\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"383\":{\"id\":1216819131531649024,\"id_str\":\"1216819131531649024\",\"name\":\"TheRealBaller\",\"screen_name\":\"_Kellykhalifa\",\"location\":\"Accra, Ghana\",\"description\":\"Unique Coke Ambassador@Donjazzy Personal adviser\\/\\/Vbank account number:1004383185\\/\\/\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1030,\"friends_count\":1006,\"listed_count\":0,\"created_at\":\"Mon Jan 13 20:28:14 +0000 2020\",\"favourites_count\":9486,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2353,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522526717113511937\\/2i4pxnsK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522526717113511937\\/2i4pxnsK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1216819131531649024\\/1652793130\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"384\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"385\":{\"id\":1551827209865814016,\"id_str\":\"1551827209865814016\",\"name\":\"George Tracy\",\"screen_name\":\"yur_tee\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udccdYouTuber | Fashion |Lifestyle | Vlog\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/JWV9EprYqs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JWV9EprYqs\",\"expanded_url\":\"https:\\/\\/youtu.be\\/Urp8nd9aOME\",\"display_url\":\"youtu.be\\/Urp8nd9aOME\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Tue Jul 26 07:10:30 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551827445443182593\\/cIB56vJ__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551827445443182593\\/cIB56vJ__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551827209865814016\\/1658820212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"386\":{\"id\":1504520696822652933,\"id_str\":\"1504520696822652933\",\"name\":\"Spacemall\",\"screen_name\":\"spacemallio\",\"location\":\"Nigeria\",\"description\":\"providing you virtual store to manage your business, customers, staffs, sales & share receipt. publish your product online & metaverse in 1 click.\",\"url\":\"https:\\/\\/t.co\\/OsSOrKzD2w\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsSOrKzD2w\",\"expanded_url\":\"https:\\/\\/www.spacemall.io\",\"display_url\":\"spacemall.io\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":3,\"listed_count\":1,\"created_at\":\"Thu Mar 17 18:11:21 +0000 2022\",\"favourites_count\":22,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524401095208050690\\/JUwzGEXm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524401095208050690\\/JUwzGEXm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1504520696822652933\\/1652289482\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"387\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"388\":{\"id\":1496492388910571532,\"id_str\":\"1496492388910571532\",\"name\":\"bgrconnect\",\"screen_name\":\"bgrconnect\",\"location\":\"Lekki, Nigeria\",\"description\":\"Banksome Global Resources delivers high quality & energy sufficient buildings and exceptional projection management services on our construction projects.\",\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"expanded_url\":\"http:\\/\\/www.banksomegroup.com\",\"display_url\":\"banksomegroup.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Wed Feb 23 14:34:17 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"389\":{\"id\":1173633660316213248,\"id_str\":\"1173633660316213248\",\"name\":\"Maurice Udedike\",\"screen_name\":\"dunuotubelu\",\"location\":\"Lagos, Nigeria\",\"description\":\"like exploring\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":670,\"friends_count\":1332,\"listed_count\":0,\"created_at\":\"Mon Sep 16 16:24:35 +0000 2019\",\"favourites_count\":17560,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"390\":{\"id\":1177737732384329729,\"id_str\":\"1177737732384329729\",\"name\":\"BETO BLINKS\",\"screen_name\":\"99blinks1\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Sprinkling kindness everywhere\\u2019s I go, \\ud83e\\udda7wise tweets INSTAGRAM @99Blinks\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":384,\"listed_count\":3,\"created_at\":\"Sat Sep 28 00:12:22 +0000 2019\",\"favourites_count\":1330,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":619,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530423720325656578\\/t0VY8dU__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530423720325656578\\/t0VY8dU__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1177737732384329729\\/1653716434\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"391\":{\"id\":2943707103,\"id_str\":\"2943707103\",\"name\":\"Anietie Hanson\",\"screen_name\":\"iamaniehanson\",\"location\":\"Port-Harcourt, Nigeria\",\"description\":\"QHSE Advisor and Trainer| Life Coach| Author| Gospel Teacher\\n\\nHelping individuals to strategically think and develop themselves towards their great life vision\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":175,\"listed_count\":0,\"created_at\":\"Sat Dec 27 12:49:17 +0000 2014\",\"favourites_count\":90,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":126,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550897855208071169\\/XMLBLZ2B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550897855208071169\\/XMLBLZ2B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2943707103\\/1657739522\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"392\":{\"id\":1316387563167518720,\"id_str\":\"1316387563167518720\",\"name\":\"BeholdHomes\",\"screen_name\":\"Behold_Homes\",\"location\":\"Lekki, Nigeria\",\"description\":\"A real estate company from Nigeria focused on building and selling luxury homes and estates in the country. \\ud83c\\udfe0\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/rce5Y5bXoY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rce5Y5bXoY\",\"expanded_url\":\"http:\\/\\/beholdhomesproperty.com\",\"display_url\":\"beholdhomesproperty.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1091,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Wed Oct 14 14:37:22 +0000 2020\",\"favourites_count\":126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":222,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316387711926837249\\/zl0siVup_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316387711926837249\\/zl0siVup_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316387563167518720\\/1602686474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"393\":{\"id\":1182786500045561856,\"id_str\":\"1182786500045561856\",\"name\":\"Samuel Reginald Annobil\",\"screen_name\":\"ReginaldAnnobil\",\"location\":\"Ghana\",\"description\":\"God first | Frontend Dev | Volunteer | Teacher | Tech_stuff | Learner | iWrite\",\"url\":\"https:\\/\\/t.co\\/I2BNwEUUgZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I2BNwEUUgZ\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/samuel-reginald-annobil\",\"display_url\":\"linkedin.com\\/in\\/samuel-regi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":169,\"friends_count\":220,\"listed_count\":0,\"created_at\":\"Fri Oct 11 22:34:27 +0000 2019\",\"favourites_count\":9601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1014,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480562810602106883\\/UpNszT_U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480562810602106883\\/UpNszT_U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1182786500045561856\\/1657197269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"394\":{\"id\":1239254891694088192,\"id_str\":\"1239254891694088192\",\"name\":\"GoodwillHeritageFoundation\",\"screen_name\":\"GoodwillHF\",\"location\":\"Apata, Ibadan \",\"description\":\"GoodWill Heritage Foundation (GWHF) is a Nonprofit Organization.\",\"url\":\"https:\\/\\/t.co\\/KJ6yLqpFXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KJ6yLqpFXo\",\"expanded_url\":\"https:\\/\\/goodwillheritage.org\",\"display_url\":\"goodwillheritage.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Sun Mar 15 18:19:46 +0000 2020\",\"favourites_count\":23,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1240184589164961792\\/Szsi4dX7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1240184589164961792\\/Szsi4dX7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239254891694088192\\/1613583034\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"395\":{\"id\":1226286909560938498,\"id_str\":\"1226286909560938498\",\"name\":\"Bargain Fortress\",\"screen_name\":\"BargainFortress\",\"location\":\"Nigeria\",\"description\":\"Bringing you the best bargain deals from the West ... Don't blink \\ud83d\\ude09 #bargainhunter Handler: @donzama\",\"url\":\"https:\\/\\/t.co\\/dEwbECLa49\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dEwbECLa49\",\"expanded_url\":\"https:\\/\\/bargainfortress.company.site\\/\",\"display_url\":\"bargainfortress.company.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Sat Feb 08 23:29:38 +0000 2020\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":329,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1383663032975302661\\/KpKHj9iZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1383663032975302661\\/KpKHj9iZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1226286909560938498\\/1583785212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"396\":{\"id\":1940444742,\"id_str\":\"1940444742\",\"name\":\"Papi Designer\",\"screen_name\":\"Rukegetrich09\",\"location\":\"Abuja, Nigeria\",\"description\":\"UI\\/UX Designer \\u25c7 Agriprenuer \\u2667 Tech Explorer.\",\"url\":\"https:\\/\\/t.co\\/NvjrC8ktD3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NvjrC8ktD3\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/rukevweovwigho\",\"display_url\":\"behance.net\\/rukevweovwigho\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":832,\"friends_count\":517,\"listed_count\":0,\"created_at\":\"Sun Oct 06 10:08:43 +0000 2013\",\"favourites_count\":3444,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553727915241644032\\/LXQkyVq5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553727915241644032\\/LXQkyVq5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1940444742\\/1586845469\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"397\":{\"id\":1517581269927874562,\"id_str\":\"1517581269927874562\",\"name\":\"Myabove\",\"screen_name\":\"welcometoabove\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udfc6 NO \\ud83e\\udd47 TOP Deriv Exchanger\\n\\ud83c\\udfc6 Deriv, LiteForex, Hfx Affiliate & Partner\\n\\ud83d\\udcb0 Crypto Exchange\\n\\ud83d\\udcb0 Skrill Exchange\\n\\ud83d\\udcb0 Perfect money Exchange\",\"url\":\"https:\\/\\/t.co\\/VUyvP3PUgj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VUyvP3PUgj\",\"expanded_url\":\"http:\\/\\/www.myabove.ng\",\"display_url\":\"myabove.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":8,\"listed_count\":0,\"created_at\":\"Fri Apr 22 19:09:24 +0000 2022\",\"favourites_count\":136,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":126,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517582402868109312\\/zA-h_cVj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517582402868109312\\/zA-h_cVj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517581269927874562\\/1650964903\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"398\":{\"id\":1210101988601540608,\"id_str\":\"1210101988601540608\",\"name\":\"MOO CREATIVE STUDIOS\",\"screen_name\":\"MOOCREATIVESTU1\",\"location\":\"Lagos Nigeria\",\"description\":\"We Create and Tell Stories Around The World\",\"url\":\"https:\\/\\/t.co\\/lqZmm2kkaZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lqZmm2kkaZ\",\"expanded_url\":\"http:\\/\\/www.moocreativestudios.com\",\"display_url\":\"moocreativestudios.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Thu Dec 26 07:36:23 +0000 2019\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1210103630151507968\\/-cEXE9I2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1210103630151507968\\/-cEXE9I2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1210101988601540608\\/1577347260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"399\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"400\":{\"id\":958695789232050176,\"id_str\":\"958695789232050176\",\"name\":\"OSSEI OWUSU\",\"screen_name\":\"OSSEI_OWUSU\",\"location\":\"Kumasi, Ghana\",\"description\":\"Leadership Politics History Science Art Technology Design & Architecture Business & Finance Youth Leadership Parliament(YLP)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":837,\"friends_count\":4037,\"listed_count\":0,\"created_at\":\"Wed Jan 31 13:37:42 +0000 2018\",\"favourites_count\":12253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1890,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1458551873435283458\\/gJHeWJ2s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1458551873435283458\\/gJHeWJ2s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/958695789232050176\\/1650530845\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"401\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"402\":{\"id\":1554874725498855424,\"id_str\":\"1554874725498855424\",\"name\":\"Zig Properties\",\"screen_name\":\"Zigproperties\",\"location\":\"Keffi, Nigeria\",\"description\":\"Zig Properties is positioned as a go to company for Agricultural purpose lands and other properties in Nasarawa and Abuja\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":45,\"listed_count\":0,\"created_at\":\"Wed Aug 03 17:00:09 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554878043214192641\\/p4IqPn-L_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554878043214192641\\/p4IqPn-L_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554874725498855424\\/1659546920\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"403\":{\"id\":2230801162,\"id_str\":\"2230801162\",\"name\":\"paschal\\u2026\",\"screen_name\":\"rocafela77\",\"location\":\"Lagos nigeria\",\"description\":\"06:06,dob 5.6height :::::::;young nigerian entrepreneur : crypto currency xpert and programmer :explorer :traveler pure breed genius (pure vibez) free spirited\",\"url\":\"https:\\/\\/t.co\\/z1MsZdTatt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/z1MsZdTatt\",\"expanded_url\":\"http:\\/\\/www.idgaf.com\",\"display_url\":\"idgaf.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1398,\"friends_count\":1479,\"listed_count\":2,\"created_at\":\"Tue Dec 17 22:35:53 +0000 2013\",\"favourites_count\":11280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1459,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555579399596023809\\/KCRQcT74_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555579399596023809\\/KCRQcT74_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2230801162\\/1658880285\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"404\":{\"id\":1081165750948237312,\"id_str\":\"1081165750948237312\",\"name\":\"flamzyofthegoodlife \\ud83e\\udda5\",\"screen_name\":\"NnamaniPrince1\",\"location\":\"Enugu, Nigeria\",\"description\":\"NEVER GO AGAINST THE FAMILY\\ud83e\\udd1e\\ud83c\\udffe\\u267f\\ufe0f\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":691,\"friends_count\":769,\"listed_count\":27,\"created_at\":\"Fri Jan 04 12:29:36 +0000 2019\",\"favourites_count\":1164,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":810,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532398905467588609\\/CzluRRZO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532398905467588609\\/CzluRRZO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1081165750948237312\\/1659602229\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"405\":{\"id\":1497558761904484356,\"id_str\":\"1497558761904484356\",\"name\":\"RHEYBOR\",\"screen_name\":\"de_easygreen\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hip-hop Monster\\ud83d\\udcaa\\n\\nafro beast \\n\\nfor booking\\/enquiries 07046582783\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":92,\"listed_count\":0,\"created_at\":\"Sat Feb 26 13:07:09 +0000 2022\",\"favourites_count\":414,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":71,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1497559376978231300\\/oyw7Ub7K_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1497559376978231300\\/oyw7Ub7K_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"406\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"407\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"408\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"409\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"410\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"411\":{\"id\":1146510084538884098,\"id_str\":\"1146510084538884098\",\"name\":\"ZamEkpere\\ud83d\\ude4f\",\"screen_name\":\"ChinazaJessica4\",\"location\":\"Awka, Nigeria\",\"description\":\"Techie \\ud83d\\udc69\\u200d\\ud83d\\udcbb Enthusiast(Frontend dev). html || css || JavaScript || React JS\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":694,\"listed_count\":0,\"created_at\":\"Wed Jul 03 20:04:40 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":159,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490658706010300419\\/XMvQXO9s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490658706010300419\\/XMvQXO9s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1146510084538884098\\/1644235707\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"412\":{\"id\":1077871486306783232,\"id_str\":\"1077871486306783232\",\"name\":\"Bright Agbons\",\"screen_name\":\"bright_agbons\",\"location\":\"Nigeria\",\"description\":\"URBANE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":254,\"friends_count\":965,\"listed_count\":0,\"created_at\":\"Wed Dec 26 10:19:22 +0000 2018\",\"favourites_count\":4978,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2321,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483186904313040901\\/Nk-Xh8OL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483186904313040901\\/Nk-Xh8OL_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"413\":{\"id\":81361737,\"id_str\":\"81361737\",\"name\":\"Dennis Peter\",\"screen_name\":\"denys_peter\",\"location\":\"Lagos\",\"description\":\"A Quality and Safety Professional, with a specialty in Real Estate, Property Management and Marketing.\",\"url\":\"https:\\/\\/t.co\\/Db8DC1CErO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Db8DC1CErO\",\"expanded_url\":\"http:\\/\\/www.safehouseproperties.blogspot.com\",\"display_url\":\"safehouseproperties.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":250,\"friends_count\":587,\"listed_count\":3,\"created_at\":\"Sat Oct 10 14:08:20 +0000 2009\",\"favourites_count\":1595,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1028943959987552256\\/U0OSv9uP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1028943959987552256\\/U0OSv9uP_normal.jpg\",\"profile_link_color\":\"1EB300\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"414\":{\"id\":1496896114422910976,\"id_str\":\"1496896114422910976\",\"name\":\"Vidan\",\"screen_name\":\"vidantv\",\"location\":\"Nigeria\",\"description\":\"Media personality\",\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"expanded_url\":\"https:\\/\\/m.me\\/Vistavid?fbclid=IwAR2GeMKUOyTZ7k5mLRnikdX9Bp4XZy39rsNY28RWzE5-xltW-MDslU1c08Q\",\"display_url\":\"m.me\\/Vistavid?fbcli\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Feb 24 17:14:06 +0000 2022\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496896114422910976\\/1656066107\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"415\":{\"id\":1541348118188494854,\"id_str\":\"1541348118188494854\",\"name\":\"Chuviedecorolowu\",\"screen_name\":\"Chuvidecorolowu\",\"location\":\"Lagos, Nigeria\",\"description\":\"We offer service on interior decorations ranging from floors and it\\u2019s accessories to wall decorations like wallpapers and panels to ceilings !\",\"url\":\"https:\\/\\/t.co\\/lNHTXZYfNt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lNHTXZYfNt\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/chuviedecor_olowu\",\"display_url\":\"linktr.ee\\/chuviedecor_ol\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":234,\"listed_count\":0,\"created_at\":\"Mon Jun 27 09:10:14 +0000 2022\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541349340127576066\\/tkOl2ZCr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541349340127576066\\/tkOl2ZCr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541348118188494854\\/1656321306\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"416\":{\"id\":271349890,\"id_str\":\"271349890\",\"name\":\"Omuwa Godswill\\ud83c\\uddf3\\ud83c\\uddec[A.V.A.T.A.R]\",\"screen_name\":\"Intel_Avatar\",\"location\":\"Nigeria\",\"description\":\"A Lover Of Jesus Christ, Scientist, Social Media Manager and Influencer. Special Assistant to Edo State Governor (MEDIA)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":579,\"friends_count\":1010,\"listed_count\":3,\"created_at\":\"Thu Mar 24 09:59:48 +0000 2011\",\"favourites_count\":1733,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/271349890\\/1650137083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"417\":{\"id\":1522548511522312199,\"id_str\":\"1522548511522312199\",\"name\":\"Socialbrandcity\",\"screen_name\":\"socialbrandcity\",\"location\":\"Nigeria\",\"description\":\"Socialbrandcity\\n\\ud83d\\ude9bConnect with your audience\\n\\ud83d\\udef8Manage your handles & Make sales \\n\\ud83c\\udf86Digital Biz consult.\\n#webdesign #logo #pagemanager\\n08033454426\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Fri May 06 12:07:37 +0000 2022\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":164,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522548737939226627\\/4fucmdND_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522548737939226627\\/4fucmdND_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522548511522312199\\/1651857713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"418\":{\"id\":1481529455801737217,\"id_str\":\"1481529455801737217\",\"name\":\"energy_machinecfr\",\"screen_name\":\"Christoph7Onoja\",\"location\":\"Abuja, Nigeria\",\"description\":\"Prolific master of ceremony!! hypeman!! Comedian!! Dataanalysisexpert!! statistician cannabis enthusiasts \\ud83c\\udf43\\ud83c\\udf43\\ud83c\\udf43\\ud83c\\udf43the herb has all the answers tweet me by 420\",\"url\":\"https:\\/\\/t.co\\/q9rOjPrcEW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q9rOjPrcEW\",\"expanded_url\":\"http:\\/\\/www.dnmtmusic.com\",\"display_url\":\"dnmtmusic.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":110,\"friends_count\":392,\"listed_count\":10,\"created_at\":\"Thu Jan 13 07:32:18 +0000 2022\",\"favourites_count\":94,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537970207175495683\\/y1nyk3zg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537970207175495683\\/y1nyk3zg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481529455801737217\\/1642085726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"419\":{\"id\":1269357840,\"id_str\":\"1269357840\",\"name\":\"Alawiye Motivation\",\"screen_name\":\"NURUDEENSALMON\",\"location\":\"lagos,Nigeria\",\"description\":\"Writer, speaker, program facilitator, educational consultant. \\n(I am a Volunteer for Humanity)\",\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"expanded_url\":\"http:\\/\\/alawiyeweb.blogspot.com\",\"display_url\":\"alawiyeweb.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":189,\"listed_count\":1,\"created_at\":\"Fri Mar 15 10:17:31 +0000 2013\",\"favourites_count\":773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1096,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269357840\\/1654454936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"420\":{\"id\":1519105800450551808,\"id_str\":\"1519105800450551808\",\"name\":\"Gidexart\",\"screen_name\":\"Timmy_cruise1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Fine artist \\ud83c\\udfa8\\nturn on post notification\\ud83e\\udd7a\\u2665\\ufe0f\\ud83e\\udd1d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":328,\"friends_count\":1201,\"listed_count\":0,\"created_at\":\"Wed Apr 27 00:07:16 +0000 2022\",\"favourites_count\":1348,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":498,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554902166640500736\\/PJHGgn5N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554902166640500736\\/PJHGgn5N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519105800450551808\\/1651020007\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"421\":{\"id\":957886177817890816,\"id_str\":\"957886177817890816\",\"name\":\"Ayodele Paul\",\"screen_name\":\"classicpee_paul\",\"location\":\"osun state\",\"description\":\"Believer\\/Entrepreneur\\/\\nManaging Director at PAUL'S(An Adire clothing based Brand) Man-u Fan\\nFine young Boy\\n\\nThis smile \\u263ais essential, always shine that teeth\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":269,\"listed_count\":0,\"created_at\":\"Mon Jan 29 08:00:36 +0000 2018\",\"favourites_count\":389,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498963583157391360\\/41i04J86_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498963583157391360\\/41i04J86_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/957886177817890816\\/1646215742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"422\":{\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"name\":\"AsabariConsultativeCouncil\",\"screen_name\":\"Asabari_CC\",\"location\":\"Saki, Nigeria\",\"description\":\"Official Twitter handle, Asabari Consultative Council, Saki Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Sat Feb 17 04:38:51 +0000 2018\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":794,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"423\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"424\":{\"id\":1493903863749185536,\"id_str\":\"1493903863749185536\",\"name\":\"Crystos Doukas\",\"screen_name\":\"CrystosD\",\"location\":\"UAE\",\"description\":\"Just working on my path to ultimate self love & everything else\\nIllustrator - Animator in \\ud83c\\udde6\\ud83c\\uddea\\nCypriot \\ud83c\\udde8\\ud83c\\uddfe\\nInterested in politics, human & civil rights issues\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":528,\"friends_count\":248,\"listed_count\":0,\"created_at\":\"Wed Feb 16 11:03:43 +0000 2022\",\"favourites_count\":300,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":614,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493904576524976129\\/8jLtnhcp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493904576524976129\\/8jLtnhcp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493903863749185536\\/1645009756\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"425\":{\"id\":1004130608233185280,\"id_str\":\"1004130608233185280\",\"name\":\"Capt Austine\\u00a5\\u00a5\",\"screen_name\":\"austine_captain\",\"location\":\"Nigeria\",\"description\":\"do something different to receive something different \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udfc6\\ud83d\\ude4f\\u2796\",\"url\":\"https:\\/\\/t.co\\/BORxzrATMD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BORxzrATMD\",\"expanded_url\":\"http:\\/\\/loading.com\",\"display_url\":\"loading.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":294,\"friends_count\":1355,\"listed_count\":1,\"created_at\":\"Tue Jun 05 22:39:27 +0000 2018\",\"favourites_count\":1199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1260,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541505831526612998\\/3cI1rY8s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541505831526612998\\/3cI1rY8s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1004130608233185280\\/1654771525\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"426\":{\"id\":2799780153,\"id_str\":\"2799780153\",\"name\":\"Starry Gold Academy\",\"screen_name\":\"Starry_Gold\",\"location\":\"Lagos, Nigeria\",\"description\":\"We Make Learning Easier With Our Comprehensive Video Lectures\\/Tutorials For ICAN, CIS, CITN, ATSWA, WAEC JAMB, Post UTME, Junior WAEC And Other Exams\",\"url\":\"https:\\/\\/t.co\\/yZxGoRL0u3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yZxGoRL0u3\",\"expanded_url\":\"http:\\/\\/starrygoldacademy.com\",\"display_url\":\"starrygoldacademy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":103,\"listed_count\":1,\"created_at\":\"Thu Oct 02 12:33:58 +0000 2014\",\"favourites_count\":182,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1567,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1110464575894372352\\/08OKD3-M_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1110464575894372352\\/08OKD3-M_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2799780153\\/1649316123\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"427\":{\"id\":1096361679573696514,\"id_str\":\"1096361679573696514\",\"name\":\"Caridad Charity Foundation\",\"screen_name\":\"caridad_charity\",\"location\":\"Nigeria\",\"description\":\"Caridad Charity Foundation, rebuilding Women&Girl Personality, SocialEco thru, Empowerment, Education,Health & Climate Action info@caridadcharityfoundation.org\",\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"expanded_url\":\"http:\\/\\/www.caridadcharityfoundation.org\",\"display_url\":\"caridadcharityfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Fri Feb 15 10:52:48 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1096361679573696514\\/1606838455\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"428\":{\"id\":934312788176097280,\"id_str\":\"934312788176097280\",\"name\":\"Richie\\ud83d\\uddef\",\"screen_name\":\"Tomilee2002\",\"location\":\"Nigeria\",\"description\":\"Farmer and Consultant. Wizkid Fc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":335,\"friends_count\":2938,\"listed_count\":14,\"created_at\":\"Sat Nov 25 06:48:22 +0000 2017\",\"favourites_count\":1285,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2509,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534170677120536576\\/pzedf0SK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534170677120536576\\/pzedf0SK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/934312788176097280\\/1518545269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"429\":{\"id\":290664223,\"id_str\":\"290664223\",\"name\":\"Alex Agbo\",\"screen_name\":\"AlexAgbo23\",\"location\":\"Nigeria\",\"description\":\"Researcher | Tech | Enugu Rangers | Manchester United | Bullshit Detector | Boxing | Not Woke | Retweets are to encourage engagement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1296,\"friends_count\":999,\"listed_count\":1,\"created_at\":\"Sat Apr 30 17:39:30 +0000 2011\",\"favourites_count\":12984,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22314,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537543419727331331\\/uB55bkR0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537543419727331331\\/uB55bkR0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/290664223\\/1539174638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"430\":{\"id\":2456657931,\"id_str\":\"2456657931\",\"name\":\"Ogunlade Abiola Aremu\",\"screen_name\":\"OgunladeAbiola1\",\"location\":\"Nigeria\",\"description\":\"Promoting creativity to the maximum | Critic of bad governance | Blogger | Unapologetically, a Christian | Lover of sports| #ObidientlYusful\",\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCUBL1qgBRBpQROJrliXuwLA\",\"display_url\":\"youtube.com\\/channel\\/UCUBL1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1257,\"friends_count\":146,\"listed_count\":3,\"created_at\":\"Thu Apr 03 06:35:21 +0000 2014\",\"favourites_count\":1885,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3452,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2456657931\\/1646759743\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"431\":{\"id\":1208455455799951363,\"id_str\":\"1208455455799951363\",\"name\":\"Bernard Twise\",\"screen_name\":\"BernardTwise\",\"location\":\"Nigeria\",\"description\":\"I am an up coming musician..... from 9ja\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":260,\"friends_count\":948,\"listed_count\":0,\"created_at\":\"Sat Dec 21 18:33:52 +0000 2019\",\"favourites_count\":6882,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":840,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511763029716783105\\/6VhGmfTM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511763029716783105\\/6VhGmfTM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1208455455799951363\\/1637743082\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"432\":{\"id\":1472152760397307906,\"id_str\":\"1472152760397307906\",\"name\":\"Supreme_Continental\",\"screen_name\":\"SupremeContine1\",\"location\":\"Ilora, Oyo state. Ibadan\",\"description\":\"\\ud83d\\udc95A new Dimension of Luxury & Relaxation \\ud83d\\udc95\\nFor booking and reservation\\ud83d\\udc47\\n\\ud83d\\udcde09155578002\\n\\ud83d\\udcbb https:\\/\\/t.co\\/w5ZdX2elaX\\nWhatsApp: 09155578002\",\"url\":\"https:\\/\\/t.co\\/N2yMyIQ1IL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N2yMyIQ1IL\",\"expanded_url\":\"http:\\/\\/www.supremecontinentalhotel.com\",\"display_url\":\"supremecontinentalhotel.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w5ZdX2elaX\",\"expanded_url\":\"https:\\/\\/www.supremecontinentalhotel.com\\/\",\"display_url\":\"supremecontinentalhotel.com\",\"indices\":[86,109]}]}},\"protected\":false,\"followers_count\":48,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Sat Dec 18 10:32:45 +0000 2021\",\"favourites_count\":183,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":176,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1472153863998390273\\/lyhOayCg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1472153863998390273\\/lyhOayCg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1472152760397307906\\/1639828029\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"433\":{\"id\":1017100479325720576,\"id_str\":\"1017100479325720576\",\"name\":\"KosereNaijaMedia\\ud83d\\udce1\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Koserenaija1\",\"location\":\"Lagos, Nigeria\",\"description\":\"#MEDIA \\/ #MusicPromotions #wizkid #Davido \\nNo.1 African Portal for | Music | Entertainment & News Updates, all in both #English & #French Languages.\",\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"expanded_url\":\"http:\\/\\/koserenaija.com\",\"display_url\":\"koserenaija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1238,\"friends_count\":2279,\"listed_count\":0,\"created_at\":\"Wed Jul 11 17:37:05 +0000 2018\",\"favourites_count\":15812,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4053,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1017100479325720576\\/1540997135\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"434\":{\"id\":1489300352054792192,\"id_str\":\"1489300352054792192\",\"name\":\"AJOKEADEOMOBABAE\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\",\"screen_name\":\"NafisatAkanni\",\"location\":\"Ibadan Nigeria\",\"description\":\"lovely to be with, result oriented and prefers productivity\\ud83d\\ude01\\ud83d\\ude01\\ud83d\\ude01\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":86,\"listed_count\":0,\"created_at\":\"Thu Feb 03 18:11:10 +0000 2022\",\"favourites_count\":127,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489300445139021835\\/eU7Vvt78_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489300445139021835\\/eU7Vvt78_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489300352054792192\\/1645589146\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"435\":{\"id\":4919721857,\"id_str\":\"4919721857\",\"name\":\"@burnsen burna\\ud83e\\udd8d\",\"screen_name\":\"adisamiowon\",\"location\":\"Lagos\",\"description\":\"cool\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":900,\"friends_count\":711,\"listed_count\":0,\"created_at\":\"Tue Feb 16 15:21:17 +0000 2016\",\"favourites_count\":1638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1233610975502315520\\/4QZcKVFH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1233610975502315520\\/4QZcKVFH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"436\":{\"id\":871789905982173185,\"id_str\":\"871789905982173185\",\"name\":\"Gold\",\"screen_name\":\"GoldOnyemekara\",\"location\":\"Lagos, Nigeria\",\"description\":\"designer, crocheter, everything crochet, crochetsh0p04@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Mon Jun 05 18:04:45 +0000 2017\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503306723146309632\\/gmNoxdmI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503306723146309632\\/gmNoxdmI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/871789905982173185\\/1659605532\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"437\":{\"id\":1059991200,\"id_str\":\"1059991200\",\"name\":\"Yor\\u00f9b\\u00e1 Demon 001 \\ud83d\\udcbf\",\"screen_name\":\"therealsojidan\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigerian, Farmer, Leadership coach, Political Analyst, Musician, and some people's daddy!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":429,\"friends_count\":165,\"listed_count\":1,\"created_at\":\"Fri Jan 04 09:30:45 +0000 2013\",\"favourites_count\":5357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3421,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1416871146704809988\\/RSsqPQJR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1416871146704809988\\/RSsqPQJR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1059991200\\/1602433144\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"438\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"439\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"440\":{\"id\":1485371737697144835,\"id_str\":\"1485371737697144835\",\"name\":\"Nzubechi Akpu\\ud83d\\udcaa#PeterObi2023\",\"screen_name\":\"NzubechiAkpu\",\"location\":\"Lagos, Nigeria\",\"description\":\"An interior decorator with swag.\\nWhat I give you is the best quality @ the best affordable price. Let's do business.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":96,\"listed_count\":0,\"created_at\":\"Sun Jan 23 22:00:08 +0000 2022\",\"favourites_count\":200,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533455397729845248\\/Mbdn7rmh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533455397729845248\\/Mbdn7rmh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485371737697144835\\/1643036834\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"441\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"442\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"443\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"444\":{\"id\":1100468667815477248,\"id_str\":\"1100468667815477248\",\"name\":\"daps :)\",\"screen_name\":\"beatsbydaps\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"expanded_url\":\"https:\\/\\/mainstack.me\\/daps\",\"display_url\":\"mainstack.me\\/daps\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":274,\"friends_count\":434,\"listed_count\":2,\"created_at\":\"Tue Feb 26 18:52:30 +0000 2019\",\"favourites_count\":4493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100468667815477248\\/1655589645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"445\":{\"id\":784318248342818816,\"id_str\":\"784318248342818816\",\"name\":\"Ocymichael\",\"screen_name\":\"Ocymichael2\",\"location\":\"Lagos\",\"description\":\"Am Ocy Dun Michael born in lagos breeds in Imo and Abia, am a comedian\\/musician, this account is for comedy\\/news, thanks https:\\/\\/t.co\\/triF03VRo9\",\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/OCY-DUN-Comedy-Studio-332084777678542\\/\",\"display_url\":\"facebook.com\\/OCY-DUN-Comedy\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/triF03VRo9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCy_wGytS8V\",\"display_url\":\"youtube.com\\/channel\\/UCy_wG\\u2026\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":448,\"friends_count\":423,\"listed_count\":1,\"created_at\":\"Fri Oct 07 09:03:37 +0000 2016\",\"favourites_count\":2449,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2346,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/784318248342818816\\/1591268979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"446\":{\"id\":1282702180693221376,\"id_str\":\"1282702180693221376\",\"name\":\"CEO Africa\",\"screen_name\":\"CEOAfricanewss\",\"location\":\"Ibadan, Nigeria \",\"description\":\"Africa leading online media organisation that breaks news, Create documentaries, Online TV, Event coverage, Entrepreneurship etc. Download: https:\\/\\/t.co\\/ML9PjG6964\",\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"expanded_url\":\"http:\\/\\/www.ceoafrica.com\",\"display_url\":\"ceoafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ML9PjG6964\",\"expanded_url\":\"http:\\/\\/rb.gy\\/ms81ds\",\"display_url\":\"rb.gy\\/ms81ds\",\"indices\":[140,163]}]}},\"protected\":false,\"followers_count\":2193,\"friends_count\":2262,\"listed_count\":8,\"created_at\":\"Mon Jul 13 15:43:57 +0000 2020\",\"favourites_count\":1203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282702180693221376\\/1594810003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"447\":{\"id\":713724138830110720,\"id_str\":\"713724138830110720\",\"name\":\"SOFO BA\\ud83d\\udd25\",\"screen_name\":\"mike_jnr_gh\",\"location\":\"Ghana\",\"description\":\"I am worth more than billion dollars \\ud83d\\udcb5\\ud83d\\udcb8\\n.\\nI'm a whole vibe charley\\ud83d\\udcaf\\ud83d\\udd25\\n| ig - @mike_jnr_gh |\\n| fb - @mike_jnr_gh |\",\"url\":\"https:\\/\\/t.co\\/z2usvYrLhK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/z2usvYrLhK\",\"expanded_url\":\"https:\\/\\/youtu.be\\/5EpP8YdYIRc\",\"display_url\":\"youtu.be\\/5EpP8YdYIRc\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":92,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sat Mar 26 13:47:49 +0000 2016\",\"favourites_count\":1910,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1356,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485423072710696960\\/CoZC_ZJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485423072710696960\\/CoZC_ZJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/713724138830110720\\/1642198209\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"448\":{\"id\":191985235,\"id_str\":\"191985235\",\"name\":\"Ashinze\",\"screen_name\":\"TwittMe_Ash\",\"location\":\"In Nigeria\",\"description\":\"Movie Freak! #TheWalkingDead fan\\nI love the #MCU \\ud83d\\ude0d\\ud83d\\ude0d\\nI love DC\\nI love NG \\ud83c\\uddf3\\ud83c\\uddec\\nVFD 1009447152\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":354,\"friends_count\":1508,\"listed_count\":2,\"created_at\":\"Fri Sep 17 21:50:01 +0000 2010\",\"favourites_count\":913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2795,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"15E81F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418991753797984263\\/SpUYwH29_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418991753797984263\\/SpUYwH29_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/191985235\\/1645780003\",\"profile_link_color\":\"00B348\",\"profile_sidebar_border_color\":\"30D413\",\"profile_sidebar_fill_color\":\"2CD627\",\"profile_text_color\":\"92E812\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"449\":{\"id\":1282702180693221376,\"id_str\":\"1282702180693221376\",\"name\":\"CEO Africa\",\"screen_name\":\"CEOAfricanewss\",\"location\":\"Ibadan, Nigeria \",\"description\":\"Africa leading online media organisation that breaks news, Create documentaries, Online TV, Event coverage, Entrepreneurship etc. Download: https:\\/\\/t.co\\/ML9PjG6964\",\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"expanded_url\":\"http:\\/\\/www.ceoafrica.com\",\"display_url\":\"ceoafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ML9PjG6964\",\"expanded_url\":\"http:\\/\\/rb.gy\\/ms81ds\",\"display_url\":\"rb.gy\\/ms81ds\",\"indices\":[140,163]}]}},\"protected\":false,\"followers_count\":2193,\"friends_count\":2262,\"listed_count\":8,\"created_at\":\"Mon Jul 13 15:43:57 +0000 2020\",\"favourites_count\":1203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282702180693221376\\/1594810003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"450\":{\"id\":1536996023037476864,\"id_str\":\"1536996023037476864\",\"name\":\"FiliiMagna\",\"screen_name\":\"filiimagna\",\"location\":\"Lagos, Nigeria\",\"description\":\"Premium Consultancy Company Specializing in Travel Documentation||Visa Application||Emigration Advisory For Expatriates||Corporate Travel Service #travel\",\"url\":\"https:\\/\\/t.co\\/lKnCZuCCKj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lKnCZuCCKj\",\"expanded_url\":\"http:\\/\\/www.filiimagna.com\",\"display_url\":\"filiimagna.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Wed Jun 15 08:57:04 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536996376592121856\\/d_htOkcu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536996376592121856\\/d_htOkcu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536996023037476864\\/1655285870\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"451\":{\"id\":1053641940665856000,\"id_str\":\"1053641940665856000\",\"name\":\"Peculiar Hype\\ud83d\\udd4a\\ufe0f\",\"screen_name\":\"PeculiarHype\",\"location\":\"Nigeria\",\"description\":\"Online Promoter | Song(s) Distribution On streaming Platforms and Trend\\ud83d\\udcf1| Artiste AnR\\n\\nDM for Business Conversations Only\\nThank You.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2457,\"friends_count\":2576,\"listed_count\":2,\"created_at\":\"Sat Oct 20 13:39:49 +0000 2018\",\"favourites_count\":15777,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521841576653242368\\/6NCwlrbg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521841576653242368\\/6NCwlrbg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1053641940665856000\\/1654427953\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"452\":{\"id\":981524792548515840,\"id_str\":\"981524792548515840\",\"name\":\"kenneth\",\"screen_name\":\"kendaroza2\",\"location\":\"Lagos, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":144,\"listed_count\":0,\"created_at\":\"Wed Apr 04 13:32:01 +0000 2018\",\"favourites_count\":667,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":352,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553479039381389316\\/0IxYzsCe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553479039381389316\\/0IxYzsCe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/981524792548515840\\/1602777162\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"453\":{\"id\":35684345,\"id_str\":\"35684345\",\"name\":\"Toff T\",\"screen_name\":\"detoff\",\"location\":\"Lagos, Nigeria\",\"description\":\"De Toffest\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2204,\"friends_count\":2036,\"listed_count\":14,\"created_at\":\"Mon Apr 27 05:58:36 +0000 2009\",\"favourites_count\":59181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29689,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1320492264565649411\\/-7XUWJD5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1320492264565649411\\/-7XUWJD5_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"454\":{\"id\":1282702180693221376,\"id_str\":\"1282702180693221376\",\"name\":\"CEO Africa\",\"screen_name\":\"CEOAfricanewss\",\"location\":\"Ibadan, Nigeria \",\"description\":\"Africa leading online media organisation that breaks news, Create documentaries, Online TV, Event coverage, Entrepreneurship etc. Download: https:\\/\\/t.co\\/ML9PjG6964\",\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"expanded_url\":\"http:\\/\\/www.ceoafrica.com\",\"display_url\":\"ceoafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ML9PjG6964\",\"expanded_url\":\"http:\\/\\/rb.gy\\/ms81ds\",\"display_url\":\"rb.gy\\/ms81ds\",\"indices\":[140,163]}]}},\"protected\":false,\"followers_count\":2193,\"friends_count\":2262,\"listed_count\":8,\"created_at\":\"Mon Jul 13 15:43:57 +0000 2020\",\"favourites_count\":1203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282702180693221376\\/1594810003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"455\":{\"id\":1531631522889060353,\"id_str\":\"1531631522889060353\",\"name\":\"Lamar Fund$\",\"screen_name\":\"LamarFund\",\"location\":\"Nigeria\",\"description\":\"World BoY\\u2b50\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/0JHHwvQJnK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0JHHwvQJnK\",\"expanded_url\":\"https:\\/\\/youtu.be\\/hdXP_OnSD9k\",\"display_url\":\"youtu.be\\/hdXP_OnSD9k\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue May 31 13:39:55 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555106656383651841\\/y8gNthtX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555106656383651841\\/y8gNthtX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531631522889060353\\/1659601547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"456\":{\"id\":2503628037,\"id_str\":\"2503628037\",\"name\":\"Professor toplexnice\",\"screen_name\":\"PToplexnice\",\"location\":\"Akure Nigeria\",\"description\":\"An easy going guy so single and mingle be physician and technical intelligent is sure ability is hope wisdom is God doing\\n#lfc Liverpool fans for life\\n#cruise\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":212,\"listed_count\":1,\"created_at\":\"Wed Apr 23 09:10:05 +0000 2014\",\"favourites_count\":606,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/515362324182732800\\/gRR8MAy-_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/515362324182732800\\/gRR8MAy-_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2503628037\\/1411707012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"457\":{\"id\":4180250493,\"id_str\":\"4180250493\",\"name\":\"Awah U. Daniel\",\"screen_name\":\"afcdaniels\",\"location\":\"Lagos, Nigeria \",\"description\":\"@Arsenal supporter || An entrepreneur || @peterobi for president || @ugobeststores - business page. 08083913154\\/09091328045\",\"url\":\"https:\\/\\/t.co\\/IldFYpia3I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IldFYpia3I\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/reel\\/Cdq94kTjCpJ\\/?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/reel\\/Cdq94kTjC\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1756,\"friends_count\":515,\"listed_count\":5,\"created_at\":\"Fri Nov 13 17:32:44 +0000 2015\",\"favourites_count\":151517,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15365,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554167552233902081\\/wgWLSFi3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554167552233902081\\/wgWLSFi3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4180250493\\/1657654396\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"458\":{\"id\":992335702368161793,\"id_str\":\"992335702368161793\",\"name\":\"Lovelyn Chilaka\",\"screen_name\":\"lovelynchilaka\",\"location\":\"Lagos, Nigeria\",\"description\":\"Customer Service Pro\\/Business Entrepreneur\\/Online Fashion wholesales n retail Seller\\/Social Change Agent\\/ Volunteering\\/\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":219,\"listed_count\":0,\"created_at\":\"Fri May 04 09:30:42 +0000 2018\",\"favourites_count\":63,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/998094514303586305\\/vKE-43mC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/998094514303586305\\/vKE-43mC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/992335702368161793\\/1605779290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"459\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"460\":{\"id\":437092964,\"id_str\":\"437092964\",\"name\":\"\\ud83e\\udd34\\ud83c\\udffb\",\"screen_name\":\"DDadalekan\",\"location\":\"Nigeria\",\"description\":\"#Icon Royalty \\ud83d\\udc51, Brand influencer, Entertainer\\ud83d\\udc68\\u200d\\ud83c\\udfa4. https:\\/\\/t.co\\/zvFQjsuA6s #bitcoin #crypto #doge #trx\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zvFQjsuA6s\",\"expanded_url\":\"http:\\/\\/gate.io\",\"display_url\":\"gate.io\",\"indices\":[51,74]}]}},\"protected\":false,\"followers_count\":1962,\"friends_count\":4159,\"listed_count\":7,\"created_at\":\"Thu Dec 15 00:33:18 +0000 2011\",\"favourites_count\":2417,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8451,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1346799782392696832\\/y1j0GovH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1346799782392696832\\/y1j0GovH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/437092964\\/1609937267\",\"profile_link_color\":\"94D487\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"461\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"462\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"463\":{\"id\":968935741232504833,\"id_str\":\"968935741232504833\",\"name\":\"Michaella \\ud83d\\udde3\\ud83d\\udde3 \\ud83c\\uddf8\\ud83c\\uddf1\",\"screen_name\":\"kellajabbie\",\"location\":\"Sierra Leone\",\"description\":\"Procurement and supply \\/ Manager @kaemonevents1 \\/Manutd fan\\/ mills and boon fan\\/ my sanity is more important.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7751,\"friends_count\":6341,\"listed_count\":6,\"created_at\":\"Wed Feb 28 19:47:37 +0000 2018\",\"favourites_count\":18993,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9772,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476659422847975424\\/n3lSbTAG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476659422847975424\\/n3lSbTAG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/968935741232504833\\/1640898017\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"464\":{\"id\":1535881025670508544,\"id_str\":\"1535881025670508544\",\"name\":\"Isha_souvenir\",\"screen_name\":\"Isha_Souvenir\",\"location\":\"Lagos, Nigeria\",\"description\":\"party\\/corporate gift\\ud83c\\udf81 | branding | Nationwide delivery \\ud83d\\ude9a IG: https:\\/\\/t.co\\/TZ2eSDkpsT Contact: +234 803 377 2577\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TZ2eSDkpsT\",\"expanded_url\":\"https:\\/\\/instagram.com\\/ishasouvenir?igshid=\",\"display_url\":\"instagram.com\\/ishasouvenir?i\\u2026\",\"indices\":[61,84]}]}},\"protected\":false,\"followers_count\":198,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Sun Jun 12 07:06:25 +0000 2022\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535887667367403521\\/GPuhhN8A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535887667367403521\\/GPuhhN8A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535881025670508544\\/1655019198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"465\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"466\":{\"id\":1175103486838681601,\"id_str\":\"1175103486838681601\",\"name\":\"SAT TOWN BOY\\ud83e\\udd4f\",\"screen_name\":\"BadBoiEmi\",\"location\":\"Nigeria\",\"description\":\"artists\\/Footballer\\/ OND & Bsc in Business administration \\ud83c\\udf93 Be Nice to people & don\\u2019t Rush Life \\u270c\\ud83c\\udffb\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3258,\"friends_count\":3078,\"listed_count\":0,\"created_at\":\"Fri Sep 20 17:45:03 +0000 2019\",\"favourites_count\":4034,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4437,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547483559140679682\\/zE1fpey7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547483559140679682\\/zE1fpey7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1175103486838681601\\/1644059387\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"467\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"468\":{\"id\":2367244171,\"id_str\":\"2367244171\",\"name\":\"Oluwagbenga Osunlaja\",\"screen_name\":\"Iamlifted001\",\"location\":\"nigeria\",\"description\":\"Auditor| Corporate event host| Public speaker trainee| Content writer| self development expert.\",\"url\":\"https:\\/\\/t.co\\/XPlCj9Ttvh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XPlCj9Ttvh\",\"expanded_url\":\"http:\\/\\/liftedpen.blogspot.com\",\"display_url\":\"liftedpen.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":107,\"friends_count\":819,\"listed_count\":0,\"created_at\":\"Sat Mar 01 15:41:45 +0000 2014\",\"favourites_count\":21035,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521376105864876034\\/qUSiU-ro_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521376105864876034\\/qUSiU-ro_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2367244171\\/1600827404\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"469\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"470\":{\"id\":770789905601531904,\"id_str\":\"770789905601531904\",\"name\":\"Abdullah\",\"screen_name\":\"xminister0\",\"location\":\"Minna, Nigeria\",\"description\":\"\\ud83d\\udcceThe world is just like a sinking boat only the real will float\\/ Synthetic indices\\/ NFT and more\\n#TrustTheProcess \\n@NFTbyNATURE\",\"url\":\"https:\\/\\/t.co\\/dHb3gSUDzu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dHb3gSUDzu\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/untitled-collection-285367071\",\"display_url\":\"opensea.io\\/collection\\/unt\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":113,\"listed_count\":5,\"created_at\":\"Wed Aug 31 01:06:49 +0000 2016\",\"favourites_count\":962,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":263,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534559969969942528\\/upMSxvYd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534559969969942528\\/upMSxvYd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/770789905601531904\\/1585488076\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"471\":{\"id\":1511760262386302980,\"id_str\":\"1511760262386302980\",\"name\":\"Committed Soul Women Health Advocacy Africa Initi\",\"screen_name\":\"officialcoswohi\",\"location\":\"Nigeria\",\"description\":\"To see a Nigeria where vulnerable and Disadvantage Women Have access to human rights and Healthcare Services Without bias\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Wed Apr 06 17:38:40 +0000 2022\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552605050706468865\\/fiSgdGME_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552605050706468865\\/fiSgdGME_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1511760262386302980\\/1659004868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"472\":{\"id\":1534615043442098176,\"id_str\":\"1534615043442098176\",\"name\":\"Tish, D Dude with bikes \\ud83c\\udfcd\",\"screen_name\":\"superridedude\",\"location\":\"Lagos, Nigeria\",\"description\":\"Promoting Africa's biking culture.\\nfeel free to support this page via sending tips. #RUBBERSIDEDOWN\",\"url\":\"https:\\/\\/t.co\\/qQoUVIlixa\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qQoUVIlixa\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348133937874\",\"display_url\":\"wa.me\\/2348133937874\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":100,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Wed Jun 08 19:15:26 +0000 2022\",\"favourites_count\":261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534615423810998280\\/AW3CRqvI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534615423810998280\\/AW3CRqvI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534615043442098176\\/1654804318\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"473\":{\"id\":1300969128895942656,\"id_str\":\"1300969128895942656\",\"name\":\"Ellen Blinkz\",\"screen_name\":\"djblinkzgh\",\"location\":\"Accra - Ghana\",\"description\":\"Blogger,Dj n a Promoter.The old Account was Suspended. My fb Page is https:\\/\\/t.co\\/l4dRcOjqcq. Looking for a place to Buy n Sell? visit https:\\/\\/t.co\\/rBshydcrdJ\",\"url\":\"https:\\/\\/t.co\\/LkUoQcR7jc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LkUoQcR7jc\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/blinkzgh\",\"display_url\":\"audiomack.com\\/blinkzgh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l4dRcOjqcq\",\"expanded_url\":\"http:\\/\\/facebook.com\\/djblinkzgh\",\"display_url\":\"facebook.com\\/djblinkzgh\",\"indices\":[70,93]},{\"url\":\"https:\\/\\/t.co\\/rBshydcrdJ\",\"expanded_url\":\"http:\\/\\/donkomii.com\",\"display_url\":\"donkomii.com\",\"indices\":[136,159]}]}},\"protected\":false,\"followers_count\":1837,\"friends_count\":1788,\"listed_count\":2,\"created_at\":\"Wed Sep 02 01:29:58 +0000 2020\",\"favourites_count\":20295,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4968,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479932406857711622\\/Hu_xu6K0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479932406857711622\\/Hu_xu6K0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1300969128895942656\\/1653006687\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"474\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"475\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"476\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"477\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"478\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"479\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"480\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"481\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"482\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"483\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"484\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"485\":{\"id\":1509446119314661376,\"id_str\":\"1509446119314661376\",\"name\":\"PR.NG Firm\",\"screen_name\":\"PRFirmNG\",\"location\":\"Nigeria\",\"description\":\"PR Firm PR Agency Put your business out here in Nigeria . Be first . Strategy specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":66,\"listed_count\":0,\"created_at\":\"Thu Mar 31 08:23:08 +0000 2022\",\"favourites_count\":1089,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":683,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535718455856463873\\/-9TqM6Fu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535718455856463873\\/-9TqM6Fu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"486\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"487\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"488\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"489\":{\"id\":1520422661519818752,\"id_str\":\"1520422661519818752\",\"name\":\"Ugochukwu\",\"screen_name\":\"ugo247_unpre\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u00c9z\\u00ecgbo \\u0144wa \\u00e1f\\u1ecd\\u0300 IGBO with the simplest of taste, I'm satisfied with the best. A Realist, free-thinker. A 'Civil Engr' solving\\/providing solution. PEACEFUL\\ud83d\\udda4\\ud83c\\udf40\\ud83c\\udf0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Sat Apr 30 15:22:12 +0000 2022\",\"favourites_count\":1913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":776,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555070348600791040\\/s5jxbSch_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555070348600791040\\/s5jxbSch_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520422661519818752\\/1656239308\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"490\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"491\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"492\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"493\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"494\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"495\":{\"id\":1554735303033851909,\"id_str\":\"1554735303033851909\",\"name\":\"Judith chibuzor\",\"screen_name\":\"judith_chibuzor\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83e\\udd8b\\ud835\\udc60\\u210e\\ud835\\udc52'\\ud835\\udc60 \\ud835\\udc50\\ud835\\udc5c\\ud835\\udc5c\\ud835\\udc59\\ud83e\\udd8b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":67,\"listed_count\":0,\"created_at\":\"Wed Aug 03 07:46:24 +0000 2022\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"496\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"497\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"498\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"499\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"500\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"501\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"502\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"503\":{\"id\":290929222,\"id_str\":\"290929222\",\"name\":\"Kelly Steveo\",\"screen_name\":\"kellysteveo\",\"location\":\"Nigeria\",\"description\":\"|International Education Promoter|(INTL|EDU|TOUR|BUSINESS CONSULTANT @ StudyAbroadConceptz&Tourz)\\n|Volunteer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1988,\"friends_count\":4993,\"listed_count\":10,\"created_at\":\"Sun May 01 05:44:48 +0000 2011\",\"favourites_count\":14361,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8778,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521434183176007680\\/_am-Tv2l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521434183176007680\\/_am-Tv2l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/290929222\\/1544103089\",\"profile_link_color\":\"B40B43\",\"profile_sidebar_border_color\":\"CC3366\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"504\":{\"id\":1539343942969335809,\"id_str\":\"1539343942969335809\",\"name\":\"omoniyi layo\",\"screen_name\":\"debirexx\",\"location\":\"Abuja\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Tue Jun 21 20:26:27 +0000 2022\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539343942969335809\\/1656059959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"505\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"506\":{\"id\":254571955,\"id_str\":\"254571955\",\"name\":\"Emmanuel Testament\\ud83d\\udc99\",\"screen_name\":\"Youngtestament1\",\"location\":\"Lagos\",\"description\":\"Information Tech. ||University Of Ghana Alumni ||Real Estate||Programmer||Graphics_Designer||ZUC||Legon_Alumni#Team_Chelsea||PUC||#NWA\",\"url\":\"https:\\/\\/t.co\\/D0jtlHYY7R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D0jtlHYY7R\",\"expanded_url\":\"http:\\/\\/www.testamentg.blogspot.com\",\"display_url\":\"testamentg.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1037,\"friends_count\":1490,\"listed_count\":0,\"created_at\":\"Sat Feb 19 15:10:39 +0000 2011\",\"favourites_count\":5515,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527715582082224128\\/05spet1l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527715582082224128\\/05spet1l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/254571955\\/1622394820\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"507\":{\"id\":1012988264,\"id_str\":\"1012988264\",\"name\":\"Creative Daniel\",\"screen_name\":\"DrealUzor\",\"location\":\"Benin-City, Nigeria\",\"description\":\"Creative Designer | Brand strategist | Son of God.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":267,\"friends_count\":274,\"listed_count\":4,\"created_at\":\"Sat Dec 15 11:11:40 +0000 2012\",\"favourites_count\":357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1590,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487610095655694343\\/PUMN__Tz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487610095655694343\\/PUMN__Tz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1012988264\\/1643508425\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"508\":{\"id\":1395444137609019403,\"id_str\":\"1395444137609019403\",\"name\":\"DemetersLawFirm #DivorceNigeria\",\"screen_name\":\"DemetersF\",\"location\":\"Nigeria\",\"description\":\"Everything You Need To Know About Marriage, Divorce & Custody in Nigeria\",\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/MzAgams\",\"display_url\":\"linktr.ee\\/MzAgams\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Thu May 20 18:21:13 +0000 2021\",\"favourites_count\":153,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1395444137609019403\\/1656532889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"509\":{\"id\":194562831,\"id_str\":\"194562831\",\"name\":\"Adetokunbo| the Export Expert\",\"screen_name\":\"tokiadewoyin\",\"location\":\"Lagos, Nigeria\",\"description\":\"Beloved |Export Consultant |Agro commodity Exporter|Certified International Trade Finance professional(CITF)|Export journalism|Fortress20commodities\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/nHP36mqrmm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nHP36mqrmm\",\"expanded_url\":\"https:\\/\\/fortress20commodities.com\\/\",\"display_url\":\"fortress20commodities.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":271,\"listed_count\":0,\"created_at\":\"Fri Sep 24 13:00:47 +0000 2010\",\"favourites_count\":592,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503694061709971463\\/sqLTfpcu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503694061709971463\\/sqLTfpcu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"510\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"511\":{\"id\":1536393679480532993,\"id_str\":\"1536393679480532993\",\"name\":\"Flares\",\"screen_name\":\"theFlareabove\",\"location\":\"Nigeria\",\"description\":\"Arts, nature, objects and their beauty. \\ud83d\\ude0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Mon Jun 13 17:03:02 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536393906744700930\\/Ppf5RBpZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536393906744700930\\/Ppf5RBpZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536393679480532993\\/1655141144\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"512\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"513\":{\"id\":1554735303033851909,\"id_str\":\"1554735303033851909\",\"name\":\"Judith chibuzor\",\"screen_name\":\"judith_chibuzor\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83e\\udd8b\\ud835\\udc60\\u210e\\ud835\\udc52'\\ud835\\udc60 \\ud835\\udc50\\ud835\\udc5c\\ud835\\udc5c\\ud835\\udc59\\ud83e\\udd8b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":67,\"listed_count\":0,\"created_at\":\"Wed Aug 03 07:46:24 +0000 2022\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"514\":{\"id\":262305138,\"id_str\":\"262305138\",\"name\":\"Numero Uno\",\"screen_name\":\"uno_fini\",\"location\":\"Nigeria\",\"description\":\"Music Producer | Architect |\\u25a0| \\nIG- uno_fini |\\u25a0|\\nE-mail\\ud83d\\udce7- unofini5@gmail.com\\nMobile\\ud83d\\udcf1- 2348056266310\\nTribeTreeLife\",\"url\":\"https:\\/\\/t.co\\/HenkzSQlMO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HenkzSQlMO\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/unofini\",\"display_url\":\"linktr.ee\\/unofini\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":661,\"friends_count\":727,\"listed_count\":4,\"created_at\":\"Mon Mar 07 20:01:57 +0000 2011\",\"favourites_count\":12263,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3817,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFF04D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421247446206791683\\/miEUZVKA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421247446206791683\\/miEUZVKA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/262305138\\/1593654596\",\"profile_link_color\":\"0099CC\",\"profile_sidebar_border_color\":\"FFF8AD\",\"profile_sidebar_fill_color\":\"F6FFD1\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"515\":{\"id\":1546480005965914112,\"id_str\":\"1546480005965914112\",\"name\":\"advertidehawk\",\"screen_name\":\"advertidehawk01\",\"location\":\"Lagos, Nigeria\",\"description\":\"Am a professional in digital marketing specialized in affiliate marketing, affiliate link promotion.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Mon Jul 11 13:02:50 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547867825749929984\\/uwvJ4IEp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547867825749929984\\/uwvJ4IEp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546480005965914112\\/1659521489\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"516\":{\"id\":1242756631823351810,\"id_str\":\"1242756631823351810\",\"name\":\"Hamzat Ibraheem\",\"screen_name\":\"HHolard\",\"location\":\"Lagos, Nigeria\",\"description\":\"Agricultural and Biosystems Engineering student, Unilorin.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":296,\"friends_count\":870,\"listed_count\":1,\"created_at\":\"Wed Mar 25 10:14:27 +0000 2020\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":396,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1506342159389233154\\/oS6Y-Xsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1506342159389233154\\/oS6Y-Xsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1242756631823351810\\/1587427188\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"517\":{\"id\":1489375105641766916,\"id_str\":\"1489375105641766916\",\"name\":\"GodyGold \\u2122\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"godygold01\",\"location\":\"kogi state\",\"description\":\"#upcomingcomedian \\ud83d\\ude0b\\n#Eventplanner\\ud83c\\udf39\\n#Shoemaker\\ud83e\\udd29\\n#Taaoma\\u2764\\ufe0f\\n#TaoomAdviser\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2091,\"friends_count\":4527,\"listed_count\":1,\"created_at\":\"Thu Feb 03 23:08:18 +0000 2022\",\"favourites_count\":13098,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1686,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547236571954483204\\/I36tdeq7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547236571954483204\\/I36tdeq7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489375105641766916\\/1658721080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"518\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"519\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"520\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"521\":{\"id\":43851649,\"id_str\":\"43851649\",\"name\":\"Chinedu Hardy Nwadike\",\"screen_name\":\"hardynwa\",\"location\":\"Owerri, Nigeria\",\"description\":\"AUTHOR | BLOGGER | WEB\\/GRAPHIC DESIGNER | @Otowngist @ChildInkAfrica| MTG. @IamFloxyFlora @JanexMara | +2348038704454 | #LFC #TeamJesus #IamIgnotic\",\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"expanded_url\":\"http:\\/\\/otowngist.com\",\"display_url\":\"otowngist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2743,\"friends_count\":1332,\"listed_count\":26,\"created_at\":\"Mon Jun 01 08:04:36 +0000 2009\",\"favourites_count\":909,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82930,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43851649\\/1572299435\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"522\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"523\":{\"id\":385859703,\"id_str\":\"385859703\",\"name\":\"Ganiyu agbolahan sheriff (G.A.S)\",\"screen_name\":\"Sherealph4real\",\"location\":\"lagos nigeria\",\"description\":\"A father and husband,a clearing and forwarding agent, ardent @Chelsea supporter\\nan advocate for good governance\",\"url\":\"https:\\/\\/t.co\\/ArZJFpMxqs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ArZJFpMxqs\",\"expanded_url\":\"http:\\/\\/sherealph.com\",\"display_url\":\"sherealph.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":231,\"friends_count\":652,\"listed_count\":0,\"created_at\":\"Thu Oct 06 08:04:08 +0000 2011\",\"favourites_count\":4577,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1313591696928788482\\/WhVzV0by_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1313591696928788482\\/WhVzV0by_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/385859703\\/1603472676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"524\":{\"id\":43851649,\"id_str\":\"43851649\",\"name\":\"Chinedu Hardy Nwadike\",\"screen_name\":\"hardynwa\",\"location\":\"Owerri, Nigeria\",\"description\":\"AUTHOR | BLOGGER | WEB\\/GRAPHIC DESIGNER | @Otowngist @ChildInkAfrica| MTG. @IamFloxyFlora @JanexMara | +2348038704454 | #LFC #TeamJesus #IamIgnotic\",\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"expanded_url\":\"http:\\/\\/otowngist.com\",\"display_url\":\"otowngist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2743,\"friends_count\":1332,\"listed_count\":26,\"created_at\":\"Mon Jun 01 08:04:36 +0000 2009\",\"favourites_count\":909,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82930,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43851649\\/1572299435\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"525\":{\"id\":1384148845949448192,\"id_str\":\"1384148845949448192\",\"name\":\"Friendlilycoach: Business English\",\"screen_name\":\"friendlilycoach\",\"location\":\"Ikeja Lagos, Nigeria\",\"description\":\"Business English coach for business owners \\nI help busy business owners improve their\\nbusiness English skills\\nto get more business deals\\n\\ud83d\\ude80Work with me\\n DM 1:1\",\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/friendlilycoach\",\"display_url\":\"linktr.ee\\/friendlilycoach\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":195,\"friends_count\":181,\"listed_count\":0,\"created_at\":\"Mon Apr 19 14:16:29 +0000 2021\",\"favourites_count\":14936,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":506,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384148845949448192\\/1656706699\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"526\":{\"id\":3101767727,\"id_str\":\"3101767727\",\"name\":\"Abastin\\ud83d\\udc5fthe\\ud83e\\udd7eshoe\\ud83d\\udc5eplug\",\"screen_name\":\"abastinfooties\",\"location\":\"lagos \",\"description\":\"Certified shoemaker, physician (electronics), salaff \\u0627\\u0644\\u062d\\u0645\\u062f\\u0644\\u0644\\u0647, CHEIF EXECUTIVE OFFICER OF https:\\/\\/t.co\\/KS99H4dBZ8 (ABASTIN FOOTIES)\",\"url\":\"https:\\/\\/t.co\\/YjGxbKBveU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YjGxbKBveU\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348123699393\",\"display_url\":\"wa.me\\/c\\/2348123699393\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KS99H4dBZ8\",\"expanded_url\":\"http:\\/\\/ABASTIN.NG\",\"display_url\":\"ABASTIN.NG\",\"indices\":[90,113]}]}},\"protected\":false,\"followers_count\":165,\"friends_count\":162,\"listed_count\":0,\"created_at\":\"Sat Mar 21 12:48:50 +0000 2015\",\"favourites_count\":3592,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1522,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1399288715298672641\\/SNs84R0S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1399288715298672641\\/SNs84R0S_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3101767727\\/1571852080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"527\":{\"id\":1384148845949448192,\"id_str\":\"1384148845949448192\",\"name\":\"Friendlilycoach: Business English\",\"screen_name\":\"friendlilycoach\",\"location\":\"Ikeja Lagos, Nigeria\",\"description\":\"Business English coach for business owners \\nI help busy business owners improve their\\nbusiness English skills\\nto get more business deals\\n\\ud83d\\ude80Work with me\\n DM 1:1\",\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/friendlilycoach\",\"display_url\":\"linktr.ee\\/friendlilycoach\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":195,\"friends_count\":181,\"listed_count\":0,\"created_at\":\"Mon Apr 19 14:16:29 +0000 2021\",\"favourites_count\":14936,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":506,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384148845949448192\\/1656706699\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"528\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"529\":{\"id\":1536809855368974339,\"id_str\":\"1536809855368974339\",\"name\":\"Abdul Foodies\",\"screen_name\":\"AbdulFoodies\",\"location\":\"Jos, Nigeria \",\"description\":\"Foodstuff vegetables and fruits wholesale and retail nation wide delivery\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jun 14 20:38:19 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":54,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"530\":{\"id\":1384148845949448192,\"id_str\":\"1384148845949448192\",\"name\":\"Friendlilycoach: Business English\",\"screen_name\":\"friendlilycoach\",\"location\":\"Ikeja Lagos, Nigeria\",\"description\":\"Business English coach for business owners \\nI help busy business owners improve their\\nbusiness English skills\\nto get more business deals\\n\\ud83d\\ude80Work with me\\n DM 1:1\",\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/friendlilycoach\",\"display_url\":\"linktr.ee\\/friendlilycoach\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":195,\"friends_count\":181,\"listed_count\":0,\"created_at\":\"Mon Apr 19 14:16:29 +0000 2021\",\"favourites_count\":14936,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":506,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384148845949448192\\/1656706699\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"531\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"532\":{\"id\":4767118182,\"id_str\":\"4767118182\",\"name\":\"EKO OF CALABAR\",\"screen_name\":\"DjEko_1\",\"location\":\"VGM_HQ\",\"description\":\"Artist @Vgmrecords1 |Event Planner| Creative Thinker |DJ| Land Surveyor #TheSauce Out In All Digital Platforms email: Emperorotu16@gmail.com\",\"url\":\"https:\\/\\/t.co\\/1uRvimNEiG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1uRvimNEiG\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/eko-126\\/song\\/eko\",\"display_url\":\"audiomack.com\\/eko-126\\/song\\/e\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9801,\"friends_count\":9397,\"listed_count\":2,\"created_at\":\"Sat Jan 16 07:17:13 +0000 2016\",\"favourites_count\":60078,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7978,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522861313877286913\\/rfSdfhAg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522861313877286913\\/rfSdfhAg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4767118182\\/1569369452\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"533\":{\"id\":1493449741266472962,\"id_str\":\"1493449741266472962\",\"name\":\"ABASIFREKE\",\"screen_name\":\"akanscript_\",\"location\":\"Nigeria\",\"description\":\"Content is all I do. I see it in everything.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":24,\"listed_count\":0,\"created_at\":\"Tue Feb 15 04:59:13 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540038757654593536\\/d-9YHpkB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540038757654593536\\/d-9YHpkB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493449741266472962\\/1656008841\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"534\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"535\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"536\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"537\":{\"id\":1514607566357073927,\"id_str\":\"1514607566357073927\",\"name\":\"Net_makanaki_comics\",\"screen_name\":\"NetMakanaki\",\"location\":\"Nigeria\",\"description\":\"The Handky Man\\ud83e\\udde3\\ud83d\\ude05\",\"url\":\"https:\\/\\/t.co\\/xtHeJzBSUA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xtHeJzBSUA\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC2u6AlHfaDDKeAe_lKM8sow\",\"display_url\":\"youtube.com\\/channel\\/UC2u6A\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":510,\"listed_count\":0,\"created_at\":\"Thu Apr 14 14:12:54 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523437056172736512\\/VK5VOAoP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523437056172736512\\/VK5VOAoP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514607566357073927\\/1652051073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"538\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"539\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"540\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"541\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"542\":{\"id\":244023438,\"id_str\":\"244023438\",\"name\":\"MIKE\",\"screen_name\":\"wengermike\",\"location\":\"lagos\",\"description\":\"media consultant #photography #videographer #graphic artist #still & motion editing\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Fri Jan 28 10:04:20 +0000 2011\",\"favourites_count\":551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"3B94D9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1178122471276531712\\/dxzlVlat_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1178122471276531712\\/dxzlVlat_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/244023438\\/1602082992\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"543\":{\"id\":1524995178305671169,\"id_str\":\"1524995178305671169\",\"name\":\"M-zord Auto Republic\",\"screen_name\":\"m_zordAutorep\",\"location\":\"Nigeria\",\"description\":\"I welcome you if you are an Automotive lovers, name any cars you love and let us tell you something amazing about it. \\nIf you are not a car lover, you will be!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":206,\"listed_count\":0,\"created_at\":\"Fri May 13 06:09:34 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547132961564270592\\/TRHB31QX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547132961564270592\\/TRHB31QX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524995178305671169\\/1652515185\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"544\":{\"id\":1510942253191249925,\"id_str\":\"1510942253191249925\",\"name\":\"Olukorede Joy\",\"screen_name\":\"JoyOlukorede\",\"location\":\"Akure, Ondo State\",\"description\":\"Official Campus Ambassador at International MUN\\u00b6Industrial Chemist (in View)\\u00b6Data Analytics enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":213,\"listed_count\":0,\"created_at\":\"Mon Apr 04 11:28:29 +0000 2022\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510942253191249925\\/1658619740\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"545\":{\"id\":1552970733948747776,\"id_str\":\"1552970733948747776\",\"name\":\"OLAMIDE\\ud83e\\udd70\\ud83e\\udd0d\\u270c\\ufe0f\",\"screen_name\":\"i_amwordsmith\",\"location\":\"Lagos, Nigeria\",\"description\":\"Don't know what you will like to believe so just ask the questions please \\u270c\\ufe0f\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Fri Jul 29 10:54:57 +0000 2022\",\"favourites_count\":50,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":33,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553000617085386753\\/N5ZnQ-uC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553000617085386753\\/N5ZnQ-uC_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"546\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"547\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"548\":{\"id\":1511365623175069708,\"id_str\":\"1511365623175069708\",\"name\":\"Faithfynphotography\",\"screen_name\":\"Faithfynphotog2\",\"location\":\"\",\"description\":\"Faithfynphotography is a photography studio based in Edo state Nigeria we specialize in general event such as wedding, birthdays, studio sessions etc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":143,\"listed_count\":0,\"created_at\":\"Tue Apr 05 15:30:33 +0000 2022\",\"favourites_count\":154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":135,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511365860774006786\\/xtt-hOF4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511365860774006786\\/xtt-hOF4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1511365623175069708\\/1649174068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"549\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"550\":{\"id\":77688101,\"id_str\":\"77688101\",\"name\":\"Omar Kaj\",\"screen_name\":\"Andalusio\",\"location\":\"Lagos, Nigeria\",\"description\":\"Writer\\/graphic & website designer. I make apps (@omarkajsoftware). Author of 'Maria the Vampire Princess' & 'Hiroshi and the Neon Ninjas.' Nigerian & Lebanese.\",\"url\":\"https:\\/\\/t.co\\/E4BD1RjneP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E4BD1RjneP\",\"expanded_url\":\"https:\\/\\/www.omarkaj.com.ng\",\"display_url\":\"omarkaj.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641,\"friends_count\":2149,\"listed_count\":68,\"created_at\":\"Sun Sep 27 07:42:06 +0000 2009\",\"favourites_count\":12353,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504443423348117507\\/M1pXdgRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504443423348117507\\/M1pXdgRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/77688101\\/1647522256\",\"profile_link_color\":\"333333\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"551\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"552\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"553\":{\"id\":1458001472503926787,\"id_str\":\"1458001472503926787\",\"name\":\"Aja Peace\",\"screen_name\":\"ajapeace1\",\"location\":\"Nigeria\",\"description\":\"A prestigious, crypto enthusiast , always ready to impact.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1031,\"friends_count\":551,\"listed_count\":50,\"created_at\":\"Tue Nov 09 09:21:19 +0000 2021\",\"favourites_count\":22921,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1085,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"554\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"555\":{\"id\":1372115429766877184,\"id_str\":\"1372115429766877184\",\"name\":\"Robert Kingin'\",\"screen_name\":\"RobertAshu_\",\"location\":\"Nigeria\",\"description\":\"A learning business Entrepreneur, Creative, I Counsel, I Motivate, I Teach. Co-founder Barber's Closet https:\\/\\/t.co\\/VU6LBxDlT5\",\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100063973153033\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100063973153033\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[103,126]}]}},\"protected\":false,\"followers_count\":13,\"friends_count\":80,\"listed_count\":0,\"created_at\":\"Wed Mar 17 09:20:02 +0000 2021\",\"favourites_count\":123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552230869192015872\\/FrTqRW90_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552230869192015872\\/FrTqRW90_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372115429766877184\\/1653247358\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"556\":{\"id\":1204733699146833920,\"id_str\":\"1204733699146833920\",\"name\":\"Stark\\ud83d\\udc3a\\ud83d\\udc3a\",\"screen_name\":\"daniang_james\",\"location\":\"Jos, Nigeria\",\"description\":\"Architect, Interior Designer, 3d Visualization lover, Software freek\\ud83d\\ude02\\nChef \\ud83e\\udd62\\ud83e\\udd62\\nMinimalist Spender \\ud83e\\udd2a\\nEntrepreneur\\ud83d\\udcb0\\nReader\\nPhycology Enthusiast\",\"url\":\"https:\\/\\/t.co\\/zfNKjxYTHb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfNKjxYTHb\",\"expanded_url\":\"http:\\/\\/www.behance.net\\/JAMARKWA\",\"display_url\":\"behance.net\\/JAMARKWA\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":173,\"friends_count\":315,\"listed_count\":2,\"created_at\":\"Wed Dec 11 12:04:44 +0000 2019\",\"favourites_count\":345,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":139,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551307297514733569\\/26qVCWoZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551307297514733569\\/26qVCWoZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1204733699146833920\\/1659396737\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"557\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"558\":{\"id\":1017734190979256321,\"id_str\":\"1017734190979256321\",\"name\":\"Emerald\\u263a\",\"screen_name\":\"OdunolaOgundar1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am Emerald and sociologist.\\nI am a content writer, digital marketer, web designer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":206,\"listed_count\":4,\"created_at\":\"Fri Jul 13 11:35:14 +0000 2018\",\"favourites_count\":257,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":83,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1382756411772395529\\/lmcpHfrz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1382756411772395529\\/lmcpHfrz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"559\":{\"id\":3240190498,\"id_str\":\"3240190498\",\"name\":\"Ekemini Sunday\",\"screen_name\":\"maverick_kemmy\",\"location\":\"Akwa Ibom, Nigeria\",\"description\":\"3D and Visual Effect Artist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":195,\"listed_count\":2,\"created_at\":\"Thu May 07 08:32:44 +0000 2015\",\"favourites_count\":1806,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1741,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518883080219598854\\/8NqIBOfb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518883080219598854\\/8NqIBOfb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3240190498\\/1597600012\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"560\":{\"id\":1017100479325720576,\"id_str\":\"1017100479325720576\",\"name\":\"KosereNaijaMedia\\ud83d\\udce1\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Koserenaija1\",\"location\":\"Lagos, Nigeria\",\"description\":\"#MEDIA \\/ #MusicPromotions #wizkid #Davido \\nNo.1 African Portal for | Music | Entertainment & News Updates, all in both #English & #French Languages.\",\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"expanded_url\":\"http:\\/\\/koserenaija.com\",\"display_url\":\"koserenaija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1238,\"friends_count\":2279,\"listed_count\":0,\"created_at\":\"Wed Jul 11 17:37:05 +0000 2018\",\"favourites_count\":15812,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4053,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1017100479325720576\\/1540997135\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"561\":{\"id\":1538268358268837888,\"id_str\":\"1538268358268837888\",\"name\":\"Tea hexperrt\",\"screen_name\":\"THexperrt\",\"location\":\"Nigeria\",\"description\":\"Hey, I am TIJANI, a Digital Marketer skilled in Influencer marketing, social media marketing and Affiliate marketing. I am here to help contact if you need me.\",\"url\":\"https:\\/\\/t.co\\/1HeeMHPXPU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1HeeMHPXPU\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/teahexperrt\",\"display_url\":\"linktr.ee\\/teahexperrt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":106,\"listed_count\":0,\"created_at\":\"Sat Jun 18 21:12:28 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538276859707793408\\/TAbLPnEu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538276859707793408\\/TAbLPnEu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538268358268837888\\/1655588760\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"562\":{\"id\":1226318735822200833,\"id_str\":\"1226318735822200833\",\"name\":\"Kamous\",\"screen_name\":\"Kamous15\",\"location\":\"Ivory Coast\",\"description\":\"I believe in Africa \\ud83c\\udf1a\",\"url\":\"https:\\/\\/t.co\\/a0MBL6MkpC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a0MBL6MkpC\",\"expanded_url\":\"http:\\/\\/www.yelen.co\",\"display_url\":\"yelen.co\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":118,\"listed_count\":0,\"created_at\":\"Sun Feb 09 01:36:09 +0000 2020\",\"favourites_count\":1427,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1226319045693235200\\/rH8AkFom_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1226319045693235200\\/rH8AkFom_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"563\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"564\":{\"id\":1538706995489804289,\"id_str\":\"1538706995489804289\",\"name\":\"king ayomide anchor\",\"screen_name\":\"betubaba__\",\"location\":\"Ibadan, Nigeria\",\"description\":\"the shaderoom of talent don\\u2019t call me a blogger I am an entertainer Advt strictly to email praisrayomide92@gmail.com follow me on instagram @ayomideanchor\",\"url\":\"https:\\/\\/t.co\\/C0v8JS35dV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C0v8JS35dV\",\"expanded_url\":\"https:\\/\\/ayomideanchor.blogspot.com\\/2022\\/07\\/bobrisky.html\",\"display_url\":\"ayomideanchor.blogspot.com\\/2022\\/07\\/bobris\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":37,\"listed_count\":0,\"created_at\":\"Mon Jun 20 02:15:34 +0000 2022\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551001772495458305\\/FXpol5HM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551001772495458305\\/FXpol5HM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538706995489804289\\/1655692633\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"565\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"566\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"567\":{\"id\":1004038924983992320,\"id_str\":\"1004038924983992320\",\"name\":\"@Lizzie_Rowland\",\"screen_name\":\"LizzieRowland8\",\"location\":\"Lagos, Nigeria\",\"description\":\"Lover of God and Music. Creative Writer. Mass Communicator. I'm a darling\\ud83d\\ude0a\\ud83d\\ude0a\\ud83d\\ude0a\\/\\/ Entrepreneur\\/\\/IG business page: @d_thriftcorna \\/\\/ FB biz page: d_thriftcorna\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":116,\"listed_count\":0,\"created_at\":\"Tue Jun 05 16:35:08 +0000 2018\",\"favourites_count\":29,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1094346075421458434\\/S5y-ign-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1094346075421458434\\/S5y-ign-_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"568\":{\"id\":1519444188055670790,\"id_str\":\"1519444188055670790\",\"name\":\"Awana A gana\",\"screen_name\":\"awana_a_gana\",\"location\":\"Borno, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":101,\"listed_count\":0,\"created_at\":\"Wed Apr 27 22:31:58 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522302271639404545\\/JrnfoKQ0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522302271639404545\\/JrnfoKQ0_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"569\":{\"id\":2479822689,\"id_str\":\"2479822689\",\"name\":\"Adekola Abiodun\",\"screen_name\":\"nobleabey\",\"location\":\"Abuja, Nigeria\",\"description\":\"Interest in Finance, Big data, Data Analytics & Predictive Machine Learning\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":101,\"friends_count\":871,\"listed_count\":2,\"created_at\":\"Sat Apr 12 21:13:14 +0000 2014\",\"favourites_count\":1421,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515792914441453578\\/lOuPAMxa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515792914441453578\\/lOuPAMxa_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"570\":{\"id\":1524282286388170753,\"id_str\":\"1524282286388170753\",\"name\":\"Stevebluzz_official\",\"screen_name\":\"Stevebluzz__\",\"location\":\"Nigeria\",\"description\":\"Artiste\\nMusic is the oil I rub on my soul.\\nStevebluzz@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":96,\"listed_count\":0,\"created_at\":\"Wed May 11 06:57:06 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524282904565669888\\/WRi8p317_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524282904565669888\\/WRi8p317_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"571\":{\"id\":1164632120784039936,\"id_str\":\"1164632120784039936\",\"name\":\"Just Event Online Publication\",\"screen_name\":\"justeventsonlin\",\"location\":\"Nigeria\",\"description\":\"news, media publication, and events publication, former account @justeventonline\",\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"expanded_url\":\"http:\\/\\/justeventonline.com\",\"display_url\":\"justeventonline.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1215,\"friends_count\":68,\"listed_count\":1,\"created_at\":\"Thu Aug 22 20:15:36 +0000 2019\",\"favourites_count\":36,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1164632120784039936\\/1612162614\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"572\":{\"id\":1044279808274968584,\"id_str\":\"1044279808274968584\",\"name\":\"Obra\",\"screen_name\":\"OtwoGh\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Rapper\\/Singer\\/Song Writer\\/Performer\\/Musician\\/#3b3faempire #NKZ :For Bookings :+233546647665\\/+233509497158\",\"url\":\"https:\\/\\/t.co\\/ts427yJ7Ct\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ts427yJ7Ct\",\"expanded_url\":\"https:\\/\\/www.boomplay.com\\/share\\/music\\/93652255?srModel=COPYLINK&srList=IOS\",\"display_url\":\"boomplay.com\\/share\\/music\\/93\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":108,\"listed_count\":0,\"created_at\":\"Mon Sep 24 17:38:02 +0000 2018\",\"favourites_count\":3415,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":257,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551356761323569154\\/jwHPJX6L_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551356761323569154\\/jwHPJX6L_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1044279808274968584\\/1658706175\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"573\":{\"id\":356144107,\"id_str\":\"356144107\",\"name\":\"Officialsugargarcia\",\"screen_name\":\"9ja_poet_singer\",\"location\":\"Ikorodu\",\"description\":\"song machine\\ud83c\\udfb5\\nrecording act\\ud83c\\udfa4\\nsongwriter\\ud83d\\udcdd\\npoet,author\\ud83d\\udcda\\nnon religious being\\ud83d\\udd26\\ntop radio 90.9 NTR S24 winner\\ud83e\\udd47\\nArsenal\\u26bd\\nhttps:\\/\\/t.co\\/4JFMsYjy9w\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4JFMsYjy9w\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/owolabi-quadri-1\",\"display_url\":\"audiomack.com\\/owolabi-quadri\\u2026\",\"indices\":[115,138]}]}},\"protected\":false,\"followers_count\":116,\"friends_count\":307,\"listed_count\":2,\"created_at\":\"Tue Aug 16 12:10:11 +0000 2011\",\"favourites_count\":291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"574\":{\"id\":772784719507382272,\"id_str\":\"772784719507382272\",\"name\":\"ATTENTI\\ud83c\\udf0eN\",\"screen_name\":\"Swanskid_\",\"location\":\"Kumasi, Ghana\",\"description\":\"Blessings from the most high.....Instagram @swanskid_\",\"url\":\"https:\\/\\/t.co\\/rixGnPP7BV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rixGnPP7BV\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/swanskid\\/attention\",\"display_url\":\"distrokid.com\\/hyperfollow\\/sw\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":737,\"friends_count\":80,\"listed_count\":0,\"created_at\":\"Mon Sep 05 13:13:29 +0000 2016\",\"favourites_count\":1590,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":229,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520233021118558209\\/KZOn8jK3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520233021118558209\\/KZOn8jK3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/772784719507382272\\/1651286785\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"575\":{\"id\":835211810,\"id_str\":\"835211810\",\"name\":\"StopBadLeadership\\u2712\\ud83d\\udce7\",\"screen_name\":\"SaveThePeoplle\",\"location\":\"Abuja, Nigeria\",\"description\":\"Injustice is a threat to peace, coexistence and development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":464,\"listed_count\":2,\"created_at\":\"Thu Sep 20 09:52:19 +0000 2012\",\"favourites_count\":3499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/835211810\\/1632594200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"576\":{\"id\":352999659,\"id_str\":\"352999659\",\"name\":\"Emmanuel Okwor\",\"screen_name\":\"raymotors2019\",\"location\":\"Abia, Nigeria\",\"description\":\"A voice for the voiceless, social and political analyst, Writer, Thinker, Entrepreneur. Man of the people\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":174,\"friends_count\":499,\"listed_count\":0,\"created_at\":\"Thu Aug 11 11:54:56 +0000 2011\",\"favourites_count\":291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":657,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317447250998628353\\/UAcBl_tx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317447250998628353\\/UAcBl_tx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/352999659\\/1602938633\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"577\":{\"id\":1419998103772573698,\"id_str\":\"1419998103772573698\",\"name\":\"EGBO BLESSING\",\"screen_name\":\"EGBOBLESSING17\",\"location\":\"Nigeria\",\"description\":\"blessingmmesomachi@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 27 12:28:59 +0000 2021\",\"favourites_count\":22,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1419998453019643929\\/1Gy2IwZ2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1419998453019643929\\/1Gy2IwZ2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1419998103772573698\\/1652357758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"578\":{\"id\":902404597326766080,\"id_str\":\"902404597326766080\",\"name\":\"1mic De Rabbi\",\"screen_name\":\"officialonemic\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":205,\"friends_count\":475,\"listed_count\":0,\"created_at\":\"Tue Aug 29 05:36:36 +0000 2017\",\"favourites_count\":206,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328925022300286976\\/vqZFXovA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328925022300286976\\/vqZFXovA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/902404597326766080\\/1506661084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"579\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"580\":{\"id\":1391078083789197314,\"id_str\":\"1391078083789197314\",\"name\":\"JUST FOCUZ\",\"screen_name\":\"Oceanfocuz\",\"location\":\"Nigeria\",\"description\":\"Freelancer\\/\\/Fashionista\\/\\/Rotaractor\",\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/s2\\/32f940b784\",\"display_url\":\"fiverr.com\\/s2\\/32f940b784\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":200,\"listed_count\":2,\"created_at\":\"Sat May 08 17:11:12 +0000 2021\",\"favourites_count\":495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"581\":{\"id\":1391078083789197314,\"id_str\":\"1391078083789197314\",\"name\":\"JUST FOCUZ\",\"screen_name\":\"Oceanfocuz\",\"location\":\"Nigeria\",\"description\":\"Freelancer\\/\\/Fashionista\\/\\/Rotaractor\",\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/s2\\/32f940b784\",\"display_url\":\"fiverr.com\\/s2\\/32f940b784\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":200,\"listed_count\":2,\"created_at\":\"Sat May 08 17:11:12 +0000 2021\",\"favourites_count\":495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"582\":{\"id\":1319373245053886464,\"id_str\":\"1319373245053886464\",\"name\":\"Alexwills consolidated\",\"screen_name\":\"AAlexan63671061\",\"location\":\"Benin-City, Nigeria\",\"description\":\"am good at what i do no matter how hard\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":272,\"listed_count\":0,\"created_at\":\"Thu Oct 22 20:21:33 +0000 2020\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319373245053886464\\/1654848237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"583\":{\"id\":842401415981105152,\"id_str\":\"842401415981105152\",\"name\":\"JERAB WORLD\",\"screen_name\":\"JerryKatician01\",\"location\":\"Benue, Nigeria\",\"description\":\"Microbiologist.\\nEvent Organizer with JERABVOICE-MEDIA\\nConvener of KEPAawards\\/Miss Kwande Pageant.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Thu Mar 16 15:45:23 +0000 2017\",\"favourites_count\":3130,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":690,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395747325465800706\\/M-KIDhI4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395747325465800706\\/M-KIDhI4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842401415981105152\\/1602686767\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"584\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"585\":{\"id\":833544452614533124,\"id_str\":\"833544452614533124\",\"name\":\"Judeanarmz\",\"screen_name\":\"Jude_anarmz\",\"location\":\"Lagos, Nigeria\",\"description\":\"OXFORDPROPS MULTISERVICES ELITES LTD.\\nSubsidary Managing Director \\n\\nInvestment Manager | Smart Entrepreneur || The Oxford Green Farms Group\\u25aaTOGFG\\u25aaAgrolyfe \\ud83c\\udf31\",\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":781,\"listed_count\":1,\"created_at\":\"Mon Feb 20 05:10:58 +0000 2017\",\"favourites_count\":887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2919,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833544452614533124\\/1659562338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"586\":{\"id\":833544452614533124,\"id_str\":\"833544452614533124\",\"name\":\"Judeanarmz\",\"screen_name\":\"Jude_anarmz\",\"location\":\"Lagos, Nigeria\",\"description\":\"OXFORDPROPS MULTISERVICES ELITES LTD.\\nSubsidary Managing Director \\n\\nInvestment Manager | Smart Entrepreneur || The Oxford Green Farms Group\\u25aaTOGFG\\u25aaAgrolyfe \\ud83c\\udf31\",\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":781,\"listed_count\":1,\"created_at\":\"Mon Feb 20 05:10:58 +0000 2017\",\"favourites_count\":887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2919,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833544452614533124\\/1659562338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"587\":{\"id\":257007133,\"id_str\":\"257007133\",\"name\":\"TJ Saheed 'Wale\",\"screen_name\":\"TJSaheed\",\"location\":\"Abuja\",\"description\":\"I practice self-pampering\\ud83d\\ude00; @ngxgrp Swing, Trend and Position Trader \\ud83d\\udcc8\\ud83d\\udcc9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1739,\"friends_count\":1409,\"listed_count\":0,\"created_at\":\"Thu Feb 24 14:37:41 +0000 2011\",\"favourites_count\":715,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1182024139231678464\\/Ev4934J0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1182024139231678464\\/Ev4934J0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/257007133\\/1570651556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"588\":{\"id\":1497621902617100299,\"id_str\":\"1497621902617100299\",\"name\":\"CHB\",\"screen_name\":\"Bulky305\",\"location\":\"Lagos, Nigeria\",\"description\":\"Interior\\/Decor\\/Home\\/Office\\/Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Sat Feb 26 17:17:55 +0000 2022\",\"favourites_count\":738,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554055929389260800\\/-8x9tNwP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554055929389260800\\/-8x9tNwP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"589\":{\"id\":827379676251246592,\"id_str\":\"827379676251246592\",\"name\":\"Otobong Inieke\",\"screen_name\":\"devinieke\",\"location\":\"Niger Delta\",\"description\":\"Web developer. Indie Researcher. I promise i am not battery operated. See evidence at https:\\/\\/t.co\\/kqw2uglr79\",\"url\":\"https:\\/\\/t.co\\/eFVrxSVUd8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eFVrxSVUd8\",\"expanded_url\":\"https:\\/\\/devinieke.com.ng\\/\",\"display_url\":\"devinieke.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kqw2uglr79\",\"expanded_url\":\"http:\\/\\/devinieke.com.ng\",\"display_url\":\"devinieke.com.ng\",\"indices\":[86,109]}]}},\"protected\":false,\"followers_count\":61,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Feb 03 04:54:21 +0000 2017\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":223,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550302608023232513\\/qHIZjxd2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550302608023232513\\/qHIZjxd2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/827379676251246592\\/1564493213\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"590\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"591\":{\"id\":1368603054342299652,\"id_str\":\"1368603054342299652\",\"name\":\"Chuks\",\"screen_name\":\"Chuks238_\",\"location\":\"\",\"description\":\"I am the most friendly being that ever lives\\ud83d\\ude0d\\ud83e\\udd38\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1248,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 07 16:43:20 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1368603054342299652\\/1652602455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"592\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"593\":{\"id\":1121045969309773825,\"id_str\":\"1121045969309773825\",\"name\":\"NaijaRealityNews\",\"screen_name\":\"NaijaRealityNe1\",\"location\":\"Nigeria\",\"description\":\"News\\/\\/ Political updates\\/\\/ Entertainment\\/\\/\",\"url\":\"https:\\/\\/t.co\\/MX1HeKE6wv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MX1HeKE6wv\",\"expanded_url\":\"http:\\/\\/www.naijarealitynews.com\",\"display_url\":\"naijarealitynews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":186,\"friends_count\":178,\"listed_count\":3,\"created_at\":\"Wed Apr 24 13:39:21 +0000 2019\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1209958268296142848\\/H-rbfCaM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1209958268296142848\\/H-rbfCaM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1121045969309773825\\/1577311504\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"594\":{\"id\":1447468045153222658,\"id_str\":\"1447468045153222658\",\"name\":\"The Kampala Report\",\"screen_name\":\"KampalaReport\",\"location\":\"Uganda\",\"description\":\"https:\\/\\/t.co\\/3rgSeCcrSm. Uganda\\u2019s premier publishing and news and information platform.\",\"url\":\"https:\\/\\/t.co\\/c0IBiHnygH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c0IBiHnygH\",\"expanded_url\":\"http:\\/\\/thekampalareport.com\",\"display_url\":\"thekampalareport.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3rgSeCcrSm\",\"expanded_url\":\"http:\\/\\/theKampalaReport.com\",\"display_url\":\"theKampalaReport.com\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":973,\"friends_count\":390,\"listed_count\":4,\"created_at\":\"Mon Oct 11 07:44:27 +0000 2021\",\"favourites_count\":1172,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460131443141758979\\/APqiw-aD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460131443141758979\\/APqiw-aD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1447468045153222658\\/1636957440\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"595\":{\"id\":1554372786826760193,\"id_str\":\"1554372786826760193\",\"name\":\"Eyo Nelly Comedian\",\"screen_name\":\"EyoNelly1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Am easy to understand, jovial, easy to forgive and forget, I don\\u2019t have time for hatred, and I love some one progress.\",\"url\":\"https:\\/\\/t.co\\/9QDVmnf9vp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9QDVmnf9vp\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCegw683ccsmbgwae6uMaSww\",\"display_url\":\"youtube.com\\/channel\\/UCegw6\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":197,\"friends_count\":653,\"listed_count\":0,\"created_at\":\"Tue Aug 02 07:45:53 +0000 2022\",\"favourites_count\":50,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554381644576038912\\/2rpf7V77_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554381644576038912\\/2rpf7V77_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554372786826760193\\/1659429580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"596\":{\"id\":1091772044751052800,\"id_str\":\"1091772044751052800\",\"name\":\"cleeptv\",\"screen_name\":\"Cleeptvng\",\"location\":\"Lagos, Nigeria\",\"description\":\"The only online television with definite difference #cleeptvng #redcarpettv #pageanttv\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Sat Feb 02 18:55:14 +0000 2019\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1091772044751052800\\/1649018856\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"597\":{\"id\":1307802721,\"id_str\":\"1307802721\",\"name\":\"Bankole Oluwatobi Emmanuel\",\"screen_name\":\"tobilobaphotog\",\"location\":\"Nigeria\",\"description\":\"A Portrait | Wedding | Event Photographer.\\nContacts: 07030243091, 07082726271\\nEmail: tobiloba42graphy@gmail.com\",\"url\":\"https:\\/\\/t.co\\/HSKHhkOjpw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HSKHhkOjpw\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2347030243091\",\"display_url\":\"wa.me\\/c\\/2347030243091\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":692,\"friends_count\":989,\"listed_count\":0,\"created_at\":\"Wed Mar 27 15:29:26 +0000 2013\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2242,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375453870323863553\\/a8tKACye_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375453870323863553\\/a8tKACye_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1307802721\\/1413736833\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"598\":{\"id\":1554592378744356865,\"id_str\":\"1554592378744356865\",\"name\":\"Kosywilson\",\"screen_name\":\"Kosywilson2\",\"location\":\"\",\"description\":\"CRYPTO ENTHUSIAST\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Tue Aug 02 22:18:16 +0000 2022\",\"favourites_count\":7,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554596037569953798\\/87mzmM_p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554596037569953798\\/87mzmM_p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554592378744356865\\/1659558199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"599\":{\"id\":498698704,\"id_str\":\"498698704\",\"name\":\"Ellem Kuti\",\"screen_name\":\"kutithedirector\",\"location\":\"Lagos, Nigeria\",\"description\":\"Visual Artist | Product Designe | Video Editor & Creator | Legal Officer\",\"url\":\"https:\\/\\/t.co\\/4vNQzghZTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4vNQzghZTe\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCl1SKJl82kWr4Vus2roo2iA\",\"display_url\":\"youtube.com\\/channel\\/UCl1SK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":77,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Tue Feb 21 10:00:51 +0000 2012\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":97,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547365999250399232\\/iuKSQJKM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547365999250399232\\/iuKSQJKM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/498698704\\/1586771460\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"600\":{\"id\":1154377936440635393,\"id_str\":\"1154377936440635393\",\"name\":\"SUG D GENERAL \\ud83c\\udfa4\",\"screen_name\":\"SUG_D_GENERAL\",\"location\":\"Agbor, Nigeria\",\"description\":\"IGS 08\\/09| Unical Alumnus| 2016\\/2017 SUG Director of Socials| Event Host\\/Comp\\u00e8re| OAP & Pidgin News Presenter @Sleek FM| \\u2709 daniel.egwu1@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":338,\"friends_count\":324,\"listed_count\":0,\"created_at\":\"Thu Jul 25 13:08:42 +0000 2019\",\"favourites_count\":3958,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1753,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1350011510618263558\\/AcrI7Qn5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1350011510618263558\\/AcrI7Qn5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1154377936440635393\\/1609461363\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"601\":{\"id\":1126018021288480768,\"id_str\":\"1126018021288480768\",\"name\":\"Skillerdo superstar\",\"screen_name\":\"skillerdo\",\"location\":\"Lekki\",\"description\":\"I'm de man skillerdo Bae\\ud83c\\udf7e\\\" romantical i sing for yo..\\\"pose for de picture\\\"\\ud83d\\udcf8....@ https:\\/\\/t.co\\/N8Kq1ZLCJp\\nWhatsapp\\/Call me on ma +2348164705278\",\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed May 08 06:56:31 +0000 2019\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"602\":{\"id\":1003459379734220807,\"id_str\":\"1003459379734220807\",\"name\":\"Daniel Ahamba\",\"screen_name\":\"DanielNkem8\",\"location\":\"Lagos, Nigeria\",\"description\":\"Teens Coach | Music Minister | Polymer Engineer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1154,\"friends_count\":1870,\"listed_count\":6,\"created_at\":\"Mon Jun 04 02:12:14 +0000 2018\",\"favourites_count\":8480,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10739,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460765587915907077\\/hD6jfHcr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460765587915907077\\/hD6jfHcr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1003459379734220807\\/1531927717\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"603\":{\"id\":626591530,\"id_str\":\"626591530\",\"name\":\"Elon Musk \\ud83d\\udc99\",\"screen_name\":\"montero4emirate\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm an I.T Officer n a Server Admin. I sell n install all kinds of security gadgets:CCTVs,THURAYAs,Car Trackers,Access Control Systems,SPY Cams. +234-8061588654\",\"url\":\"https:\\/\\/t.co\\/O6fR3e8CYl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O6fR3e8CYl\",\"expanded_url\":\"http:\\/\\/www.monterotech.blogspot.com\",\"display_url\":\"monterotech.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3987,\"friends_count\":4881,\"listed_count\":0,\"created_at\":\"Wed Jul 04 16:31:18 +0000 2012\",\"favourites_count\":45919,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4415,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547625021241102336\\/HwvChi4B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547625021241102336\\/HwvChi4B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/626591530\\/1526381597\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"604\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"605\":{\"id\":1377892142304141313,\"id_str\":\"1377892142304141313\",\"name\":\"Ibadan Properties\",\"screen_name\":\"IbadanPropertis\",\"location\":\"Ibadan, Nigeria\",\"description\":\"call & WhatsApp:- 08025006103\",\"url\":\"https:\\/\\/t.co\\/vcqK6f3KoO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vcqK6f3KoO\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/UBEPK6KYOKPJG1\",\"display_url\":\"wa.me\\/message\\/UBEPK6\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":222,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Fri Apr 02 07:54:34 +0000 2021\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377899835907579904\\/xK-ZOuTt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377899835907579904\\/xK-ZOuTt_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"606\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"607\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"608\":{\"id\":1545322791960035331,\"id_str\":\"1545322791960035331\",\"name\":\"Davilisco\",\"screen_name\":\"davilisco\",\"location\":\"Nigeria\",\"description\":\"Song writer,lisco vibes \\ud83d\\udd25 my vibes beyond what you see,actor,dancer,entertainer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Fri Jul 08 08:24:20 +0000 2022\",\"favourites_count\":242,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545325361583505409\\/7XpVjGCI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545325361583505409\\/7XpVjGCI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"609\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"610\":{\"id\":1268945157757505543,\"id_str\":\"1268945157757505543\",\"name\":\"Dkenzie\",\"screen_name\":\"AmDkenzie\",\"location\":\"Lagos, Nigeria\",\"description\":\"A Musician, Content Creator, An Engineer\\/Entrepreneur and my Love For Kids and the Vulnerable is Second to known.\",\"url\":\"https:\\/\\/t.co\\/hy0QTlTq2R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hy0QTlTq2R\",\"expanded_url\":\"https:\\/\\/youtu.be\\/BxkfJXvYxek\",\"display_url\":\"youtu.be\\/BxkfJXvYxek\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Fri Jun 05 16:38:25 +0000 2020\",\"favourites_count\":318,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555142061602611200\\/07s2isKp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555142061602611200\\/07s2isKp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268945157757505543\\/1659609747\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"611\":{\"id\":1091772044751052800,\"id_str\":\"1091772044751052800\",\"name\":\"cleeptv\",\"screen_name\":\"Cleeptvng\",\"location\":\"Lagos, Nigeria\",\"description\":\"The only online television with definite difference #cleeptvng #redcarpettv #pageanttv\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Sat Feb 02 18:55:14 +0000 2019\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1091772044751052800\\/1649018856\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"612\":{\"id\":1169153319903879168,\"id_str\":\"1169153319903879168\",\"name\":\"Disezeal\",\"screen_name\":\"ZealDise\",\"location\":\"Lagos, Nigeria\",\"description\":\"performing artist l rapper l singer\\/song writer l SIGN TO P.M ESCAPADE RECORD https:\\/\\/t.co\\/humtaCTEta watch my video dise zeal ft erigga\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/humtaCTEta\",\"expanded_url\":\"https:\\/\\/youtu.be\\/RI7XUS-_890\",\"display_url\":\"youtu.be\\/RI7XUS-_890\",\"indices\":[78,101]}]}},\"protected\":false,\"followers_count\":192,\"friends_count\":1653,\"listed_count\":1,\"created_at\":\"Wed Sep 04 07:40:59 +0000 2019\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555579810335842304\\/9v9iVuwI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555579810335842304\\/9v9iVuwI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"613\":{\"id\":1482716035530768385,\"id_str\":\"1482716035530768385\",\"name\":\"Apostle Joseph Udoh\",\"screen_name\":\"ApostleJoeUdoh\",\"location\":\"Akwa ibom State, Nigeria\",\"description\":\"\\u2764FOLLOW ME for more Posts on your Health, Religious POSTS, Marriages, relationship etc. When there's good Health, Life is sweet\\ud83d\\udc4c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Sun Jan 16 14:07:33 +0000 2022\",\"favourites_count\":39,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":34,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550740250045173762\\/4YgoJ0eK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550740250045173762\\/4YgoJ0eK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482716035530768385\\/1658477504\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"614\":{\"id\":1482662666992766979,\"id_str\":\"1482662666992766979\",\"name\":\"tahir lawal\",\"screen_name\":\"huameeyr_\",\"location\":\"Nigeria\",\"description\":\"Consumer Hotline:+65-31290538 support@wikifx.com +234-706 777 7762; +61-449895363 Telegram:+60-103342306 Whatsapp:+852-6613 1970; +44-7517747077\",\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/\",\"display_url\":\"wikifx.com\\/en\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":250,\"listed_count\":0,\"created_at\":\"Sun Jan 16 10:35:22 +0000 2022\",\"favourites_count\":147,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482662666992766979\\/1642330199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"615\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"616\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"617\":{\"id\":1021863700838469633,\"id_str\":\"1021863700838469633\",\"name\":\"Hizbuzz\",\"screen_name\":\"xo_luxury_store\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified cloth dealer \\ud83d\\udd0c\\ud83c\\udf3c. We deal with all kind of clothes\\ud83d\\udc55, shoes\\ud83d\\udc5f\\ud83d\\udc5e, boxers, bags\\ud83c\\udf92, trousers, sun shade glasses\\ud83d\\udc53 Chelsea fc\\ud83d\\udc99 @mateokovacic8 fan\",\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348138512629\",\"display_url\":\"wa.me\\/+2348138512629\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":1160,\"listed_count\":0,\"created_at\":\"Tue Jul 24 21:04:26 +0000 2018\",\"favourites_count\":40842,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33102,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1021863700838469633\\/1603448863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"618\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"619\":{\"id\":1282343050149232640,\"id_str\":\"1282343050149232640\",\"name\":\"Timotee\",\"screen_name\":\"iam_timotee\",\"location\":\"Abuja, Nigeria\",\"description\":\"https:\\/\\/t.co\\/31B8RvQ4RS\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/31B8RvQ4RS\",\"expanded_url\":\"https:\\/\\/ffm.to\\/afro-urban\",\"display_url\":\"ffm.to\\/afro-urban\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":402,\"friends_count\":427,\"listed_count\":0,\"created_at\":\"Sun Jul 12 15:56:39 +0000 2020\",\"favourites_count\":3447,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":657,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533919079366639616\\/yfzh0eMy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533919079366639616\\/yfzh0eMy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282343050149232640\\/1654971643\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"620\":{\"id\":1546236824464629760,\"id_str\":\"1546236824464629760\",\"name\":\"Emeka okoye\",\"screen_name\":\"Ezeego_of_igbo\",\"location\":\"Lagos Nigeria \",\"description\":\"Humble Guy\\nBUSINESS MAN CEO NEOPERFECT NIG ENTERPRISE.(RC :3595181) CEO @neoperfect_merchandise_ on IG.\\nOld accounts blocked pls follow I will follow back.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":121,\"friends_count\":475,\"listed_count\":0,\"created_at\":\"Sun Jul 10 20:56:15 +0000 2022\",\"favourites_count\":70,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546236824464629760\\/1657486858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"621\":{\"id\":403033229,\"id_str\":\"403033229\",\"name\":\"TBC, CSC.\",\"screen_name\":\"Adedayomichaels\",\"location\":\"lagos\",\"description\":\"I am an International Emissary, A Global Citizen \\ud83d\\udcbc \\/Author. (First Class, Na Beans) \\/WeddingEmcee\\ud83e\\udd70\\/ CorporateEvent Host\\ud83c\\udfa4! @fcbarcelona\\ud83d\\ude0d\\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\",\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"expanded_url\":\"https:\\/\\/aheadly.co\\/yes\",\"display_url\":\"aheadly.co\\/yes\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":1190,\"listed_count\":0,\"created_at\":\"Tue Nov 01 22:45:10 +0000 2011\",\"favourites_count\":3194,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3899,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/403033229\\/1614815397\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"622\":{\"id\":1497847909068517377,\"id_str\":\"1497847909068517377\",\"name\":\"Ikenna Ugwu\",\"screen_name\":\"pastppl\",\"location\":\"Nigeria\",\"description\":\"Let\\u2019s go back #history\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Sun Feb 27 08:16:16 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508031684670853123\\/2FJv410X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508031684670853123\\/2FJv410X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497847909068517377\\/1648377791\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"623\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"624\":{\"id\":1317965393735143424,\"id_str\":\"1317965393735143424\",\"name\":\"Arma\",\"screen_name\":\"arma_lakes\",\"location\":\"Yorkshire and The Humber, Engl\",\"description\":\"Football Journalist \\u26bd\\nAspirations to Make A Change.\\nNobel Prize \\ud83e\\udd47\\n\\nConnect with me via https:\\/\\/t.co\\/YPNiJoIgnj\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YPNiJoIgnj\",\"expanded_url\":\"http:\\/\\/wa.link\\/mgufe3\",\"display_url\":\"wa.link\\/mgufe3\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":37,\"friends_count\":138,\"listed_count\":4,\"created_at\":\"Sun Oct 18 23:07:19 +0000 2020\",\"favourites_count\":1477,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2282,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491385938471178246\\/NtRQHIjR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491385938471178246\\/NtRQHIjR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317965393735143424\\/1644786447\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"625\":{\"id\":1547286170920521730,\"id_str\":\"1547286170920521730\",\"name\":\"Racheal Samuel\",\"screen_name\":\"feracouture_ng\",\"location\":\"Ibadan, Nigeria\",\"description\":\"A business administrator turned fashion designer | I cut to fit. IG: @feracouture.ng contact: 08107527169\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":19,\"listed_count\":0,\"created_at\":\"Wed Jul 13 18:26:23 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553665989786615808\\/Omo7s5ti_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553665989786615808\\/Omo7s5ti_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547286170920521730\\/1659258532\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"626\":{\"id\":479754411,\"id_str\":\"479754411\",\"name\":\"Chidimma&Chidiebere\",\"screen_name\":\"Aneke_Twins\",\"location\":\"Nigeria\",\"description\":\"About Us: Prod,Actors, CEO Greenville production int'l Ltd, https:\\/\\/t.co\\/wKR7Bmm02h Our Blog: https:\\/\\/t.co\\/DjOlxl33Tb Our Fan Page: https:\\/\\/t.co\\/opXqRQZgUH 08036129789\",\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"expanded_url\":\"http:\\/\\/greenvilleproductions.com\",\"display_url\":\"greenvilleproductions.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wKR7Bmm02h\",\"expanded_url\":\"http:\\/\\/bit.ly\\/OdEnWv\",\"display_url\":\"bit.ly\\/OdEnWv\",\"indices\":[60,83]},{\"url\":\"https:\\/\\/t.co\\/DjOlxl33Tb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/U2eefG\",\"display_url\":\"bit.ly\\/U2eefG\",\"indices\":[94,117]},{\"url\":\"https:\\/\\/t.co\\/opXqRQZgUH\",\"expanded_url\":\"http:\\/\\/on.fb.me\\/OdEZv7\",\"display_url\":\"on.fb.me\\/OdEZv7\",\"indices\":[132,155]}]}},\"protected\":false,\"followers_count\":6050,\"friends_count\":369,\"listed_count\":26,\"created_at\":\"Tue Jan 31 18:43:22 +0000 2012\",\"favourites_count\":2238,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9419,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/479754411\\/1619194743\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"627\":{\"id\":1544321553575428100,\"id_str\":\"1544321553575428100\",\"name\":\"Folks\",\"screen_name\":\"folks_room\",\"location\":\"Lagos, Nigeria\",\"description\":\"Asserting for Truth, Fairness and Justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Jul 05 14:05:58 +0000 2022\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544321553575428100\\/1659510356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"628\":{\"id\":3187033583,\"id_str\":\"3187033583\",\"name\":\"Obet Of Africa\",\"screen_name\":\"obetobetta\",\"location\":\"Lagos\",\"description\":\"A political Scientist and Educationist\",\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/_obet_jr\\/\",\"display_url\":\"instagram.com\\/_obet_jr\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Mon Apr 20 12:32:05 +0000 2015\",\"favourites_count\":446,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3187033583\\/1644142736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"629\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"630\":{\"id\":3964976607,\"id_str\":\"3964976607\",\"name\":\"D.MAN\",\"screen_name\":\"d_semigrapher\",\"location\":\"Otta, Nigeria\",\"description\":\"PHOTOGRAPHER \\nand a chelsea fan\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Thu Oct 15 12:13:34 +0000 2015\",\"favourites_count\":1074,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":762,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554804969575964672\\/RrDBPyWu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554804969575964672\\/RrDBPyWu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3964976607\\/1629332843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"631\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"632\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"633\":{\"id\":1516345896333631489,\"id_str\":\"1516345896333631489\",\"name\":\"Gospel vibes\",\"screen_name\":\"Yorbvibechurch\",\"location\":\"Lagos, Nigeria\",\"description\":\"The Gospel to the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":421,\"friends_count\":107,\"listed_count\":1,\"created_at\":\"Tue Apr 19 09:20:21 +0000 2022\",\"favourites_count\":524,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549369740367372290\\/XgkcdEbD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549369740367372290\\/XgkcdEbD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1516345896333631489\\/1650399395\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"634\":{\"id\":1010812634659217408,\"id_str\":\"1010812634659217408\",\"name\":\"Mc Primate\",\"screen_name\":\"primatekomedy\",\"location\":\"Nigeria\",\"description\":\"It's bro Primate comedy ...it's a new account because the old account got hacked\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":198,\"friends_count\":306,\"listed_count\":0,\"created_at\":\"Sun Jun 24 09:11:26 +0000 2018\",\"favourites_count\":472,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":245,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1010814276456669185\\/nGtamYU9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1010814276456669185\\/nGtamYU9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010812634659217408\\/1531464559\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"635\":{\"id\":1255811134344626176,\"id_str\":\"1255811134344626176\",\"name\":\"o\\u2019wunmi\\u2728\\ud83d\\udd3a\",\"screen_name\":\"Abike0991\",\"location\":\"Lagos, Nigeria\",\"description\":\"Dental surgeon assistant \\ud83d\\udc69\\ud83c\\udffd\\u200d\\u2695\\ufe0fI sell new and uk used phones \\ud83d\\udcf1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":581,\"listed_count\":2,\"created_at\":\"Thu Apr 30 10:48:47 +0000 2020\",\"favourites_count\":4669,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":927,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1335302272226643973\\/bbHknqr4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1335302272226643973\\/bbHknqr4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1255811134344626176\\/1607195846\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"636\":{\"id\":954291493753294848,\"id_str\":\"954291493753294848\",\"name\":\"Niniola \\u2665\\ufe0f\\ud83d\\udd4a\\ufe0f\",\"screen_name\":\"RotninS_JR\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"Fashion Brand||Men's Clothing||Hit the follow button let's be mutuals\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1358,\"friends_count\":1349,\"listed_count\":0,\"created_at\":\"Fri Jan 19 09:56:36 +0000 2018\",\"favourites_count\":8578,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555982434222612481\\/f10-s51b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555982434222612481\\/f10-s51b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/954291493753294848\\/1659810094\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"637\":{\"id\":1492278910398210049,\"id_str\":\"1492278910398210049\",\"name\":\"Obidient\",\"screen_name\":\"Sharon_sleey\",\"location\":\"Abuja, Nigeria\",\"description\":\"Video editor \\ud83d\\udcbb Makeup artist\\ud83d\\udc84 Drone pilot\\u270c\\ufe0f Graphic designer \\ud83d\\udc4dHit me up if you got any deal\\ud83d\\ude05\\ud83e\\udd2a\\ud83d\\udc44\",\"url\":\"https:\\/\\/t.co\\/gJKlIAIBzF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gJKlIAIBzF\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCadzdvqobeZrWQyAE7BhydQ\",\"display_url\":\"youtube.com\\/channel\\/UCadzd\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Fri Feb 11 23:26:50 +0000 2022\",\"favourites_count\":78,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":68,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552035261021929472\\/Lr-eD2LI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552035261021929472\\/Lr-eD2LI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492278910398210049\\/1644622600\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"638\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"639\":{\"id\":3143103863,\"id_str\":\"3143103863\",\"name\":\"Bcars Autos\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udde7(legit man)\",\"screen_name\":\"OLAMIBODEREHAN\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your car \\ud83d\\udd0c.. Brand new.. Foreign use.. Local used.. Of all kind. \\ud83d\\udcde08024592965..Manchester United fan.. Obedient&Yusful..Nigeria \\ud83c\\uddf3\\ud83c\\uddec & Uk \\ud83c\\uddec\\ud83c\\udde7 future citizen\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":914,\"friends_count\":1851,\"listed_count\":0,\"created_at\":\"Tue Apr 07 08:22:00 +0000 2015\",\"favourites_count\":804,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505110436022259714\\/AdiuQJc2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505110436022259714\\/AdiuQJc2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3143103863\\/1615931438\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"640\":{\"id\":1139934332527763456,\"id_str\":\"1139934332527763456\",\"name\":\"Adedamola Omo Awujo\\ud83d\\udc83\\ud83d\\udc83\",\"screen_name\":\"damola_awujo\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a law student\\ud83d\\udc69\\u200d\\u2696\\ufe0f.\\nI'm a light, always shining bright \\u2728.\\nI'm a Smiling queen \\ud83d\\ude00.\\nI'm a problem solver.\\nI'm a baby girl for life \\ud83e\\udd17\\ud83d\\udc83\\ud83d\\udc83\\ud83d\\udc83\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1422,\"friends_count\":1101,\"listed_count\":0,\"created_at\":\"Sat Jun 15 16:34:58 +0000 2019\",\"favourites_count\":1163,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":404,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547284691899875332\\/mJ15l2L3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547284691899875332\\/mJ15l2L3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1139934332527763456\\/1602015339\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"641\":{\"id\":895557285136801794,\"id_str\":\"895557285136801794\",\"name\":\"Ibhadojemu Lucky Emmanuel\",\"screen_name\":\"thegeminifire\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud835\\udc13\\ud835\\udc21\\ud835\\udc1e \\ud835\\udc1e\\ud835\\udc26\\ud835\\udc29\\ud835\\udc32\\ud835\\udc2b\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc27 \\ud835\\udc1e\\ud835\\udc27\\ud835\\udc2d\\ud835\\udc22\\ud835\\udc2d\\ud835\\udc32 \\u2600\\ufe0f\\ud83c\\udf16\\u2728\\ud83d\\udd25\\ud83d\\udc7c\\n\\nI serve the God of @temsbaby\",\"url\":\"https:\\/\\/t.co\\/vmFrbMtPHS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vmFrbMtPHS\",\"expanded_url\":\"http:\\/\\/linktr.ee\\/IbhadojemuLuckyEmmanuel\",\"display_url\":\"linktr.ee\\/IbhadojemuLuck\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":321,\"friends_count\":627,\"listed_count\":1,\"created_at\":\"Thu Aug 10 08:07:50 +0000 2017\",\"favourites_count\":3079,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481975218256195586\\/L7CdRxbl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481975218256195586\\/L7CdRxbl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/895557285136801794\\/1658631570\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"642\":{\"id\":224317583,\"id_str\":\"224317583\",\"name\":\"Adebayo Tosin Emmanuel\",\"screen_name\":\"adebayotosin80\",\"location\":\"Ibadan Oyo State, Nigeria\",\"description\":\"A Christian.\\nA Missionary.\\nA Mathematician.\\nMillennium Fellows Class of 2020.\\nAn SDGs Advocate.\\nNigerian Youths SDGs Oyo State Champion.\\nYALI Network member\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":679,\"friends_count\":5004,\"listed_count\":0,\"created_at\":\"Wed Dec 08 18:01:16 +0000 2010\",\"favourites_count\":6887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287547670211563523\\/3gXub2jY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287547670211563523\\/3gXub2jY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/224317583\\/1595810260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"643\":{\"id\":1519781504230080516,\"id_str\":\"1519781504230080516\",\"name\":\"B.u.b.e\",\"screen_name\":\"BubesTreat_3\",\"location\":\"Enugu, Nigeria\",\"description\":\"Foodie \\ud83c\\udf72.\\nChelsea \\ud83d\\udc99\\ud83d\\udc99 fan.\\nMovie lover \\u2728.\\nFun 2 be with.\\nTrouble maker\\ud83d\\ude02\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":127,\"listed_count\":0,\"created_at\":\"Thu Apr 28 20:52:29 +0000 2022\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527670199331307521\\/Iu0UUOnB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527670199331307521\\/Iu0UUOnB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519781504230080516\\/1653059933\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"644\":{\"id\":1338167900490838018,\"id_str\":\"1338167900490838018\",\"name\":\"pioneer \\u03c0\\u03c0\\ud83d\\udc93\",\"screen_name\":\"gamar_imam\",\"location\":\"Lagos, Nigeria\",\"description\":\"web developer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":384,\"listed_count\":1,\"created_at\":\"Sun Dec 13 17:04:35 +0000 2020\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1338167900490838018\\/1659712689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"645\":{\"id\":816033100337737732,\"id_str\":\"816033100337737732\",\"name\":\"Paul\",\"screen_name\":\"DL_first_son\",\"location\":\"Benin-City, Nigeria\",\"description\":\"I Teach. I Plumb. I Promote. I read. I ask questions. I review books. I love Children\",\"url\":\"https:\\/\\/t.co\\/dfy15qPs0p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dfy15qPs0p\",\"expanded_url\":\"http:\\/\\/paulleads.blogspot.com\",\"display_url\":\"paulleads.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":292,\"friends_count\":606,\"listed_count\":0,\"created_at\":\"Mon Jan 02 21:27:07 +0000 2017\",\"favourites_count\":1983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541324386514485249\\/mfvnsnbT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541324386514485249\\/mfvnsnbT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816033100337737732\\/1643483036\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"646\":{\"id\":276880233,\"id_str\":\"276880233\",\"name\":\"Kelvin C Egobudike \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Egobudike09\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83e\\udd82Scorpio | \\ud83d\\udcbbWeb designer | Product designer | Phones\\/laptops marketer | Female hair stylist. Also crazy about football, sexology, and fashion\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":555,\"friends_count\":473,\"listed_count\":4,\"created_at\":\"Mon Apr 04 08:18:50 +0000 2011\",\"favourites_count\":1200,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9879,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488428878058164225\\/y4J64TZh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488428878058164225\\/y4J64TZh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/276880233\\/1517826567\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"647\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"648\":{\"id\":2342721382,\"id_str\":\"2342721382\",\"name\":\"abubakar uthman olamilekan\",\"screen_name\":\"Lekzy_ola\",\"location\":\"LAGOS\",\"description\":\"Cool,calm and collected guy and i love football and good music.....A passionate arsenal fan and a jovial person.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":1460,\"listed_count\":0,\"created_at\":\"Fri Feb 14 07:42:56 +0000 2014\",\"favourites_count\":3381,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7046,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545589221578231808\\/Wjk-AuJY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545589221578231808\\/Wjk-AuJY_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"649\":{\"id\":1019603005140815873,\"id_str\":\"1019603005140815873\",\"name\":\"DTG8\",\"screen_name\":\"danthegreyt\",\"location\":\"Lagos, Nigeria\",\"description\":\"Singer\\/Songwriter, Rapper,\\nGLI(Genius Level intellect)\\nwriter,\\nArt genius.\\n\\nStream LMLMN\\ud83d\\udc49\\ud83d\\udc49\\ud83d\\udc49https:\\/\\/t.co\\/lMHXsmDDdV\",\"url\":\"https:\\/\\/t.co\\/QuOjrCCgEt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QuOjrCCgEt\",\"expanded_url\":\"https:\\/\\/youtu.be\\/kE-AY_KnIW8\",\"display_url\":\"youtu.be\\/kE-AY_KnIW8\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lMHXsmDDdV\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/track\\/4re56ForQue19EuA2tOY5V?si=horyCb1IT\",\"display_url\":\"open.spotify.com\\/track\\/4re56For\\u2026\",\"indices\":[91,114]}]}},\"protected\":false,\"followers_count\":185,\"friends_count\":647,\"listed_count\":0,\"created_at\":\"Wed Jul 18 15:21:14 +0000 2018\",\"favourites_count\":703,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":740,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555349844742610947\\/HRC-qfvi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555349844742610947\\/HRC-qfvi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1019603005140815873\\/1657705457\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"650\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"651\":{\"id\":1204401344779628546,\"id_str\":\"1204401344779628546\",\"name\":\"Nnachi Gracious\",\"screen_name\":\"Nnachigraciouss\",\"location\":\"Enugu, Nigeria\",\"description\":\"The future is mine \\ud83c\\udf1e\\nShop at my store @scrupulousempir\\nTech\\ud83d\\udcbb\\nArsenal\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/jWqDYUQH4i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jWqDYUQH4i\",\"expanded_url\":\"https:\\/\\/youtu.be\\/SUPiVFgp8kA\",\"display_url\":\"youtu.be\\/SUPiVFgp8kA\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":953,\"friends_count\":1792,\"listed_count\":0,\"created_at\":\"Tue Dec 10 14:04:08 +0000 2019\",\"favourites_count\":4140,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":349,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527764141368389637\\/Y1qX2IH__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527764141368389637\\/Y1qX2IH__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1204401344779628546\\/1653082332\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"652\":{\"id\":3193956341,\"id_str\":\"3193956341\",\"name\":\"OBC of my Hood\\ud83c\\udf0d\\u2764\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"goziedbrightest\",\"location\":\"FCT Abuja, Nigeria\",\"description\":\"Data Engineer, Python Backend Developer, \\nCritical Analyst, Good Listener, Media Personnel, Entrepreneur, Sports Lover, Man Utd Oriented and a Good Hustler\\ud83d\\udca6\\ud83c\\udf37\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2834,\"friends_count\":2789,\"listed_count\":0,\"created_at\":\"Wed Apr 22 08:00:59 +0000 2015\",\"favourites_count\":50058,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1994,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491465981549584393\\/TZy5h91__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491465981549584393\\/TZy5h91__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3193956341\\/1611498587\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"653\":{\"id\":825452446730301440,\"id_str\":\"825452446730301440\",\"name\":\"Duke of Port Harcourt \\ud83e\\udd81\\ud83d\\udc51\",\"screen_name\":\"abiye_daniel\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":166,\"listed_count\":0,\"created_at\":\"Sat Jan 28 21:16:14 +0000 2017\",\"favourites_count\":1550,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":909,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548609926637010944\\/mnvoFM6B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548609926637010944\\/mnvoFM6B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/825452446730301440\\/1657749012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"654\":{\"id\":1519308945524809729,\"id_str\":\"1519308945524809729\",\"name\":\"Chibest Ojc\",\"screen_name\":\"chibestojc01\",\"location\":\"\",\"description\":\"The excuses we make could be the symptoms of laziness or procrastination, fear or imposter syndrome. And sometimes, we\\u2019re just plain tired.\",\"url\":\"https:\\/\\/t.co\\/nP94aU2KoD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nP94aU2KoD\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC6MI6onIMa7VY1JmC7DNLeg\",\"display_url\":\"youtube.com\\/channel\\/UC6MI6\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":148,\"listed_count\":0,\"created_at\":\"Wed Apr 27 13:34:41 +0000 2022\",\"favourites_count\":76,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548299659449212931\\/TgSgR1Ja_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548299659449212931\\/TgSgR1Ja_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519308945524809729\\/1652884957\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"655\":{\"id\":1161439794435710976,\"id_str\":\"1161439794435710976\",\"name\":\"Billionaire Nursepreneur\",\"screen_name\":\"MadukaChidera3\",\"location\":\"Nigeria\",\"description\":\"Nursepreneur || Co-founder of https:\\/\\/t.co\\/szuOhaOrD0 || Pan-African || Objective Deist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/szuOhaOrD0\",\"expanded_url\":\"http:\\/\\/www.eazyhealth.org\",\"display_url\":\"eazyhealth.org\",\"indices\":[30,53]}]}},\"protected\":false,\"followers_count\":333,\"friends_count\":320,\"listed_count\":4,\"created_at\":\"Wed Aug 14 00:50:00 +0000 2019\",\"favourites_count\":13709,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3590,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461896226090242052\\/i8J2yBkK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461896226090242052\\/i8J2yBkK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"656\":{\"id\":1243143199226544128,\"id_str\":\"1243143199226544128\",\"name\":\"callmebaba_t\",\"screen_name\":\"bigtomcruz001\",\"location\":\"Benin-City, Nigeria\",\"description\":\"peaceful life for me and the youth of Nigeria is my dream\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":169,\"listed_count\":0,\"created_at\":\"Thu Mar 26 11:50:35 +0000 2020\",\"favourites_count\":277,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1324709331728818178\\/lOSOHiu-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1324709331728818178\\/lOSOHiu-_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"657\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"658\":{\"id\":1358673651718123521,\"id_str\":\"1358673651718123521\",\"name\":\"Aliyu Abdurrauf\",\"screen_name\":\"pre__sident\",\"location\":\"Kano, Nigeria\",\"description\":\"watch and Airpod plug \\ud83d\\udd0c #hustler #influencer #Real marid fan \\ud83d\\ude4b\\u200d\\u2642\\ufe0f. being a celebrity does no mean posting nude or half naked picture \\ud83c\\udf07\",\"url\":\"https:\\/\\/t.co\\/gAEWoQctZC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gAEWoQctZC\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/QI54HZD5OGOBF1\",\"display_url\":\"wa.me\\/message\\/QI54HZ\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":651,\"friends_count\":715,\"listed_count\":0,\"created_at\":\"Mon Feb 08 07:07:07 +0000 2021\",\"favourites_count\":1859,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1094,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554948113013657603\\/OexEcOG5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554948113013657603\\/OexEcOG5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358673651718123521\\/1647203974\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"659\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"660\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"661\":{\"id\":1481667747687940098,\"id_str\":\"1481667747687940098\",\"name\":\"Bennard Nancy\",\"screen_name\":\"iamnancy_koko\",\"location\":\"Lagos, Nigeria\",\"description\":\"Shudex Finest Artiste\\ud83e\\udd34\\ud83d\\udc9b\\ud83d\\udda4Brand Influencer And Actor \\ud83c\\udfad B.A In Theatre Arts \\ud83c\\udfad \\ud83d\\udcaf\\ud83c\\udf99\\u2728\",\"url\":\"https:\\/\\/t.co\\/agiANW8W50\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/agiANW8W50\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/ng\\/album\\/my-yunni-single\\/1604494302\",\"display_url\":\"music.apple.com\\/ng\\/album\\/my-yu\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":210,\"listed_count\":0,\"created_at\":\"Thu Jan 13 16:42:39 +0000 2022\",\"favourites_count\":62,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481668143277817857\\/mVXlTCiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481668143277817857\\/mVXlTCiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481667747687940098\\/1642092956\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"662\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"663\":{\"id\":1040032829491617792,\"id_str\":\"1040032829491617792\",\"name\":\"Midnyt Updates\",\"screen_name\":\"midnytupdates\",\"location\":\"Hohoe, Ghana\",\"description\":\"Space Host || Blogger || Personal Publicist || I Promote || Backup Account @AnipaManuel || \\ud83d\\udcafKeenyFrek|| Instagram: @midnytupdates https:\\/\\/t.co\\/g2w5Gjkg6k\",\"url\":\"https:\\/\\/t.co\\/jLIlViiWDd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jLIlViiWDd\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCh9aGZZU_NAEW_lWII0E0pQ\",\"display_url\":\"youtube.com\\/channel\\/UCh9aG\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/g2w5Gjkg6k\",\"expanded_url\":\"http:\\/\\/midnytupdates.com\",\"display_url\":\"midnytupdates.com\",\"indices\":[130,153]}]}},\"protected\":false,\"followers_count\":4447,\"friends_count\":5001,\"listed_count\":3,\"created_at\":\"Thu Sep 13 00:22:04 +0000 2018\",\"favourites_count\":52965,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26070,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519291189899546626\\/XtCS5w0r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519291189899546626\\/XtCS5w0r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1040032829491617792\\/1659459626\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"664\":{\"id\":137783971,\"id_str\":\"137783971\",\"name\":\"MD Muh'd\",\"screen_name\":\"md_shibili\",\"location\":\"Zamfara, Nigeria\",\"description\":\"DPA ,|BSc. Political Science |Masters Public Policy and Administration |Political Scientist |Social Critic |Policy Analyst |Activist |Good Governance Advocacy.\",\"url\":\"https:\\/\\/t.co\\/DMCFP3hv6S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DMCFP3hv6S\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/muhd.muhammad\",\"display_url\":\"facebook.com\\/muhd.muhammad\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1095,\"friends_count\":1514,\"listed_count\":5,\"created_at\":\"Tue Apr 27 19:13:13 +0000 2010\",\"favourites_count\":40835,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9764,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554908729384083459\\/T4Q9q4vL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554908729384083459\\/T4Q9q4vL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/137783971\\/1591784764\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"665\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"666\":{\"id\":1103448161568387072,\"id_str\":\"1103448161568387072\",\"name\":\"Champman043\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\udde7\\u2744\\ufe0f\\ud83d\\udcaf\",\"screen_name\":\"nworie_david\",\"location\":\"Lagos, Nigeria\",\"description\":\"COMEDIAN\\nContent creator \\nmeme\\ud83d\\ude09\\nlove adviser\\u2764\\ufe0f\\ud83d\\udcaf\",\"url\":\"https:\\/\\/t.co\\/YgjHPayWFl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YgjHPayWFl\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCeLnjft6YKjL_78oTFofGhA\",\"display_url\":\"youtube.com\\/channel\\/UCeLnj\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":585,\"listed_count\":0,\"created_at\":\"Thu Mar 07 00:11:57 +0000 2019\",\"favourites_count\":1336,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530558606105530369\\/9isHWErS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530558606105530369\\/9isHWErS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1103448161568387072\\/1653735335\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"667\":{\"id\":852545705805848576,\"id_str\":\"852545705805848576\",\"name\":\"ppellegrino\",\"screen_name\":\"ppell524\",\"location\":\"CO\",\"description\":\"Jesus-Moto-Fitness-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":113,\"friends_count\":465,\"listed_count\":10,\"created_at\":\"Thu Apr 13 15:35:10 +0000 2017\",\"favourites_count\":2403,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1638,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1364292633728716800\\/YaEhHV0M_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1364292633728716800\\/YaEhHV0M_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/852545705805848576\\/1657746596\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"668\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6919,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"669\":{\"id\":1119170467728904193,\"id_str\":\"1119170467728904193\",\"name\":\"2dotsmarket\",\"screen_name\":\"2dotsmarket\",\"location\":\"Nigeria\",\"description\":\"Official handle of https:\\/\\/t.co\\/2LV5I0kqeg | Nigerian online marketplace | Buy and Sell Everything in Nigeria\\nhttps:\\/\\/t.co\\/VsMiApD24z\",\"url\":\"https:\\/\\/t.co\\/lZx8zo8V0D\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lZx8zo8V0D\",\"expanded_url\":\"http:\\/\\/www.2dotsmarket.com\",\"display_url\":\"2dotsmarket.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2LV5I0kqeg\",\"expanded_url\":\"http:\\/\\/2dotsmarket.com\",\"display_url\":\"2dotsmarket.com\",\"indices\":[19,42]},{\"url\":\"https:\\/\\/t.co\\/VsMiApD24z\",\"expanded_url\":\"http:\\/\\/tinyurl.com\\/9rhfpdru\",\"display_url\":\"tinyurl.com\\/9rhfpdru\",\"indices\":[110,133]}]}},\"protected\":false,\"followers_count\":4134,\"friends_count\":352,\"listed_count\":0,\"created_at\":\"Fri Apr 19 09:26:47 +0000 2019\",\"favourites_count\":689,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1436694104415645708\\/GfIZn9Vm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1436694104415645708\\/GfIZn9Vm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1119170467728904193\\/1631369544\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"670\":{\"id\":447447050,\"id_str\":\"447447050\",\"name\":\"Daddyz\",\"screen_name\":\"daddyz33m\",\"location\":\"Nigeria\",\"description\":\"General Analysts |jerseys |Graphic Designer |Branding |Product description writer|Photography| 1000929594 VFB\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1112,\"friends_count\":1295,\"listed_count\":0,\"created_at\":\"Mon Dec 26 22:23:03 +0000 2011\",\"favourites_count\":6775,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554008315277070337\\/B4UrNp5S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554008315277070337\\/B4UrNp5S_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/447447050\\/1604530303\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"671\":{\"id\":1482630150617452553,\"id_str\":\"1482630150617452553\",\"name\":\"Mastrozamani\\ud83d\\ude08\",\"screen_name\":\"Mastrozamani\",\"location\":\"Lagos, Nigeria\",\"description\":\"30BG\\/ Cristiano Ronaldo \\ud83d\\udc10\\/ Good music || Davido \\ud83d\\udc10|| Michael Marabou fans \\ud83c\\udded\\ud83c\\uddf9 ||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":762,\"friends_count\":1197,\"listed_count\":8,\"created_at\":\"Sun Jan 16 08:25:59 +0000 2022\",\"favourites_count\":1557,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482630150617452553\\/1659092088\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"672\":{\"id\":1224097788352520192,\"id_str\":\"1224097788352520192\",\"name\":\"VERT \\ud83c\\udf08\",\"screen_name\":\"hisvert\",\"location\":\"Nigeria\",\"description\":\"AfroBeat in my Blood \\ud83d\\udc9a\\ud83e\\udd0d\\ud83d\\udc9a\",\"url\":\"https:\\/\\/t.co\\/3sB1XKXaFO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3sB1XKXaFO\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UC4YuP6JA9g1kk6vWvd32ljQ\",\"display_url\":\"m.youtube.com\\/channel\\/UC4YuP\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":601,\"listed_count\":1,\"created_at\":\"Sun Feb 02 22:31:04 +0000 2020\",\"favourites_count\":1197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":846,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495366991057670144\\/ahXLYyOi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495366991057670144\\/ahXLYyOi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224097788352520192\\/1580683429\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"673\":{\"id\":1081355548442984448,\"id_str\":\"1081355548442984448\",\"name\":\"King Tunde\",\"screen_name\":\"KingTunde4\",\"location\":\"Ibadan, Nigeria\",\"description\":\"I am greater than wat people thinks\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":307,\"listed_count\":0,\"created_at\":\"Sat Jan 05 01:03:48 +0000 2019\",\"favourites_count\":53,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":80,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1440499181412503557\\/wRHtwMaV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1440499181412503557\\/wRHtwMaV_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"674\":{\"id\":1295028506544484352,\"id_str\":\"1295028506544484352\",\"name\":\"Iym Multimedia\",\"screen_name\":\"Ind_Journos\",\"location\":\"Kano, Nigeria\",\"description\":\"Multimedia Company\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":263,\"listed_count\":0,\"created_at\":\"Sun Aug 16 16:04:14 +0000 2020\",\"favourites_count\":18,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":260,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519290367866249216\\/MrOP-tfm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519290367866249216\\/MrOP-tfm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295028506544484352\\/1651056555\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"675\":{\"id\":1358179329289682944,\"id_str\":\"1358179329289682944\",\"name\":\"Mr. Grade\",\"screen_name\":\"MrGrade3\",\"location\":\"Abuja, Nigeria\",\"description\":\"A Chef\\ud83e\\uddd1\\u200d\\ud83c\\udf73. Software Developer \\ud83e\\uddd1\\u200d\\ud83d\\udcbb The world is yours!!!\",\"url\":\"https:\\/\\/t.co\\/Plv2QKyLiU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Plv2QKyLiU\",\"expanded_url\":\"http:\\/\\/comingSoon.com\",\"display_url\":\"comingSoon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":218,\"listed_count\":1,\"created_at\":\"Sat Feb 06 22:23:00 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":49,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493542566721200130\\/8cOOk_h8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493542566721200130\\/8cOOk_h8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358179329289682944\\/1644923272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"676\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"677\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"678\":{\"id\":1502202594512494593,\"id_str\":\"1502202594512494593\",\"name\":\"Ariwhite\",\"screen_name\":\"jasper_nwankwo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Chef and a forex trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":82,\"friends_count\":662,\"listed_count\":0,\"created_at\":\"Fri Mar 11 08:40:32 +0000 2022\",\"favourites_count\":762,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":858,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502202989267894274\\/kqYdj7UG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502202989267894274\\/kqYdj7UG_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"679\":{\"id\":1013031987093884930,\"id_str\":\"1013031987093884930\",\"name\":\"Olajide I.O\",\"screen_name\":\"OlajideIO1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Video and Film Editing I Cameraman I Digital marketing I PR I Graphics Design I olajidemediaarts@gmail.com\",\"url\":\"https:\\/\\/t.co\\/i561eZINkM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i561eZINkM\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCEWh5NwXXIKvB6v-fYXwvew\\/\",\"display_url\":\"m.youtube.com\\/channel\\/UCEWh5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":162,\"friends_count\":248,\"listed_count\":0,\"created_at\":\"Sat Jun 30 12:10:21 +0000 2018\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353237670063984640\\/_iE59FmG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353237670063984640\\/_iE59FmG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1013031987093884930\\/1611472040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"680\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"681\":{\"id\":1554418899743117312,\"id_str\":\"1554418899743117312\",\"name\":\"\\u264c\\ufe0f\\ud83c\\udf51\",\"screen_name\":\"blunt_b1tch\",\"location\":\"Lagos, Nigeria\",\"description\":\"Blunt and Beautiful\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Tue Aug 02 10:48:50 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554418981326528518\\/poXjuvUw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554418981326528518\\/poXjuvUw_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"682\":{\"id\":384263249,\"id_str\":\"384263249\",\"name\":\"Jude_NFT.algo\",\"screen_name\":\"JohnAshafa\",\"location\":\"Abuja\",\"description\":\"Twitter Degen || Discord: @Ashafa#4627 || Crypto Enthusiast || Community manager @SOULMETAVERSE || Community moderator with @Gpshrine, @MoonActive\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":894,\"listed_count\":1,\"created_at\":\"Mon Oct 03 11:19:23 +0000 2011\",\"favourites_count\":2946,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2702,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547889326977007619\\/57AwTbiT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547889326977007619\\/57AwTbiT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/384263249\\/1656182492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"683\":{\"id\":720076095618461696,\"id_str\":\"720076095618461696\",\"name\":\"Osinuga\",\"screen_name\":\"Ay_adeyinka\",\"location\":\"Ogunstate Nigeria\",\"description\":\"Animal Nutritionist | Liverpool fan | Interested in Exportation business\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":332,\"friends_count\":725,\"listed_count\":0,\"created_at\":\"Wed Apr 13 02:28:14 +0000 2016\",\"favourites_count\":6031,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":490,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481188697571610627\\/Nv2957EI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481188697571610627\\/Nv2957EI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"684\":{\"id\":1465805871078912003,\"id_str\":\"1465805871078912003\",\"name\":\"Akotu Josep\",\"screen_name\":\"AkotuJosep\",\"location\":\"Lagos, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":385,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Tue Nov 30 22:12:19 +0000 2021\",\"favourites_count\":138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":109,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465808261429571585\\/VDreMtgb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465808261429571585\\/VDreMtgb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1465805871078912003\\/1638310924\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"685\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"686\":{\"id\":1544321553575428100,\"id_str\":\"1544321553575428100\",\"name\":\"Folks\",\"screen_name\":\"folks_room\",\"location\":\"Lagos, Nigeria\",\"description\":\"Asserting for Truth, Fairness and Justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Jul 05 14:05:58 +0000 2022\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544321553575428100\\/1659510356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"687\":{\"id\":1544321553575428100,\"id_str\":\"1544321553575428100\",\"name\":\"Folks\",\"screen_name\":\"folks_room\",\"location\":\"Lagos, Nigeria\",\"description\":\"Asserting for Truth, Fairness and Justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Jul 05 14:05:58 +0000 2022\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544321553575428100\\/1659510356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"688\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"689\":{\"id\":2453490388,\"id_str\":\"2453490388\",\"name\":\"Themistocles\",\"screen_name\":\"Fidelisjur\",\"location\":\"Benin\",\"description\":\"We are all recycled \\u267b\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":164,\"listed_count\":1,\"created_at\":\"Tue Apr 01 22:48:46 +0000 2014\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":469,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536206530873380865\\/dNhQxjab_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536206530873380865\\/dNhQxjab_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2453490388\\/1655095164\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"690\":{\"id\":1319021529288609795,\"id_str\":\"1319021529288609795\",\"name\":\"Henry Saliu\",\"screen_name\":\"henry_saliu\",\"location\":\"Nigeria\",\"description\":\"Bishop @pfministry President @IPSF Author: Purpose for Existence, Determine to prevail and Challenges in the Modern-day ministry and how to overcome.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Wed Oct 21 21:04:46 +0000 2020\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532302752495374336\\/uelgZDT5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532302752495374336\\/uelgZDT5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319021529288609795\\/1654163392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"691\":{\"id\":373937459,\"id_str\":\"373937459\",\"name\":\"\\u2018Wale\",\"screen_name\":\"olawuyiolawale\",\"location\":\"Nigeria\",\"description\":\"Certified Marketer || PR || Digital Influencer || Editor || Graphics Designer || AgriTech || DUFMA https:\\/\\/t.co\\/eiGhCBcsUy\",\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"expanded_url\":\"http:\\/\\/www.olainfinitee.blogspot.com\",\"display_url\":\"olainfinitee.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"expanded_url\":\"http:\\/\\/www.olainfinitee.blogspot.com\",\"display_url\":\"olainfinitee.blogspot.com\",\"indices\":[100,123]}]}},\"protected\":false,\"followers_count\":843,\"friends_count\":729,\"listed_count\":18,\"created_at\":\"Thu Sep 15 12:40:28 +0000 2011\",\"favourites_count\":2794,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479502319003869184\\/4P553Fho_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479502319003869184\\/4P553Fho_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373937459\\/1641575818\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"692\":{\"id\":920291895833743360,\"id_str\":\"920291895833743360\",\"name\":\"belacqua| Artist\",\"screen_name\":\"belacqua419\",\"location\":\"Accra, Ghana\",\"description\":\"\\ud83c\\udfc5God first \\n\\ud83c\\udfc6Freelance Graphics Artist\\n@Asantekotoko_sc\",\"url\":\"https:\\/\\/t.co\\/3UjfaT3KUJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3UjfaT3KUJ\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/belacqua419\",\"display_url\":\"linktr.ee\\/belacqua419\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":559,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Tue Oct 17 14:14:20 +0000 2017\",\"favourites_count\":119178,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1545,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1450901293413847052\\/bkAtyiid_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1450901293413847052\\/bkAtyiid_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/920291895833743360\\/1651579731\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"693\":{\"id\":740597455385939968,\"id_str\":\"740597455385939968\",\"name\":\"HumBle SoUL\",\"screen_name\":\"HumbleSoulGh\",\"location\":\"Accra, Ghana\",\"description\":\"Public Figure -Social Media Influencer. Fan of Hitz103.9fm ,TurnUpArmy MerquryQuaye \\ud83d\\udca5\\ud83d\\udc4a Best in Hyping of any event and Everything. Graphic Designer\",\"url\":\"https:\\/\\/t.co\\/302AQ5J3oq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/302AQ5J3oq\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/humblesoulgh?r=nametag\",\"display_url\":\"instagram.com\\/humblesoulgh?r\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12968,\"friends_count\":11287,\"listed_count\":1,\"created_at\":\"Wed Jun 08 17:32:47 +0000 2016\",\"favourites_count\":34554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46742,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485962554253926409\\/EW8_pTA-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485962554253926409\\/EW8_pTA-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/740597455385939968\\/1586968714\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"694\":{\"id\":2255973064,\"id_str\":\"2255973064\",\"name\":\"Adebayo sunday\",\"screen_name\":\"Hagiazo01\",\"location\":\"Lagos, Nigeria\",\"description\":\"Freelance Writer | Blogger | Poet | Life Coach | Mentor | Freelance Investor\",\"url\":\"https:\\/\\/t.co\\/vulzkfODcO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vulzkfODcO\",\"expanded_url\":\"https:\\/\\/sawndei.wordpress.com\",\"display_url\":\"sawndei.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87,\"friends_count\":645,\"listed_count\":0,\"created_at\":\"Wed Jan 01 09:34:38 +0000 2014\",\"favourites_count\":2083,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":689,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1019614815461965827\\/lh62p3Gb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1019614815461965827\\/lh62p3Gb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2255973064\\/1498834482\",\"profile_link_color\":\"91D2FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"695\":{\"id\":857494373902286848,\"id_str\":\"857494373902286848\",\"name\":\"Tiki Taka Del Argentino\",\"screen_name\":\"el_incredibilis\",\"location\":\"Lagos, Nigeria\",\"description\":\"#LM7 | #PeterObi4President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":852,\"friends_count\":885,\"listed_count\":5,\"created_at\":\"Thu Apr 27 07:19:25 +0000 2017\",\"favourites_count\":55329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13257,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536429290933346306\\/SL5ym7qg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536429290933346306\\/SL5ym7qg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/857494373902286848\\/1638272991\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"696\":{\"id\":1476009362711793668,\"id_str\":\"1476009362711793668\",\"name\":\"Xamhani 504\",\"screen_name\":\"Xamhani5\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/pRN57PHWap\\nFly The Freestyle is Out now on YouTube \\ud83d\\udd25\\n\\n\\ud83d\\udcde+233 262 719 588 \\/ +233 558 436 293\\n @Dan22Jac\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pRN57PHWap\",\"expanded_url\":\"http:\\/\\/youtu.be\\/End_AVx_hx4\",\"display_url\":\"youtu.be\\/End_AVx_hx4\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":156,\"friends_count\":172,\"listed_count\":0,\"created_at\":\"Wed Dec 29 01:57:59 +0000 2021\",\"favourites_count\":3716,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":446,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"697\":{\"id\":1502633410128498696,\"id_str\":\"1502633410128498696\",\"name\":\"Afro-Gene \\uf8ff\",\"screen_name\":\"Kuiry999\",\"location\":\"Lagos, Nigeria\",\"description\":\"Been Through Alotta Shit I Just Put That Pain Into Verses..\\ud83c\\udfa7\\ud83d\\udcdd 21st.Century.Sound\\ud83c\\udfb5 \\u271e \\ud83d\\udd2bStay Woke Y\\u2019all\\ud83d\\ude08 #AFROGENE\\ud83e\\uddec SHAMAYA OUT NOW\",\"url\":\"https:\\/\\/t.co\\/38tHb8ESIt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/38tHb8ESIt\",\"expanded_url\":\"http:\\/\\/Fanlink.to\\/shamaya\",\"display_url\":\"Fanlink.to\\/shamaya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":74,\"listed_count\":1,\"created_at\":\"Sat Mar 12 13:11:45 +0000 2022\",\"favourites_count\":1738,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":280,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502633726135750659\\/4FzsjpDq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502633726135750659\\/4FzsjpDq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502633410128498696\\/1647096815\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"698\":{\"id\":294077079,\"id_str\":\"294077079\",\"name\":\"Sportivation Media\",\"screen_name\":\"Sportivation1\",\"location\":\"LAGOS,NIGERIA\",\"description\":\"Sports Journalist, Sports OAP @ Rainbow FM, Dream Stars Ladies Media Officer. CEO @ Sportivation Media\",\"url\":\"https:\\/\\/t.co\\/Fqwiyd3UPP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fqwiyd3UPP\",\"expanded_url\":\"http:\\/\\/www.sportivation.com.ng\",\"display_url\":\"sportivation.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1459,\"friends_count\":3998,\"listed_count\":6,\"created_at\":\"Fri May 06 13:56:43 +0000 2011\",\"favourites_count\":2721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537564873168760832\\/fGscI2vT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537564873168760832\\/fGscI2vT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/294077079\\/1637681879\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"699\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"700\":{\"id\":870393110748180480,\"id_str\":\"870393110748180480\",\"name\":\"Temitope Mohammed\",\"screen_name\":\"cccfirmer\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist\\/GIS Analyst\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":181,\"friends_count\":1611,\"listed_count\":0,\"created_at\":\"Thu Jun 01 21:34:23 +0000 2017\",\"favourites_count\":9492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870393110748180480\\/1496401116\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"701\":{\"id\":1520736474093830144,\"id_str\":\"1520736474093830144\",\"name\":\"CODE-BREAKER\\ud83c\\udfae\",\"screen_name\":\"Dazai_Mill\",\"location\":\"Lagos, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Sun May 01 12:06:52 +0000 2022\",\"favourites_count\":87,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":87,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554862599006822408\\/5_tq9WZj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554862599006822408\\/5_tq9WZj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520736474093830144\\/1658571359\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"702\":{\"id\":1476009362711793668,\"id_str\":\"1476009362711793668\",\"name\":\"Xamhani 504\",\"screen_name\":\"Xamhani5\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/pRN57PHWap\\nFly The Freestyle is Out now on YouTube \\ud83d\\udd25\\n\\n\\ud83d\\udcde+233 262 719 588 \\/ +233 558 436 293\\n @Dan22Jac\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pRN57PHWap\",\"expanded_url\":\"http:\\/\\/youtu.be\\/End_AVx_hx4\",\"display_url\":\"youtu.be\\/End_AVx_hx4\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":156,\"friends_count\":172,\"listed_count\":0,\"created_at\":\"Wed Dec 29 01:57:59 +0000 2021\",\"favourites_count\":3716,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":446,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"703\":{\"id\":1003629257858469890,\"id_str\":\"1003629257858469890\",\"name\":\"Naturetee\",\"screen_name\":\"OLUWASHEYNOR\",\"location\":\"Lagos, Nigeria\",\"description\":\"professional Trouble maker\\/\\/ just savage\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":144,\"listed_count\":0,\"created_at\":\"Mon Jun 04 13:27:16 +0000 2018\",\"favourites_count\":209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":433,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527325028714676225\\/LeEUPSRC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527325028714676225\\/LeEUPSRC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1003629257858469890\\/1655051272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"704\":{\"id\":870393110748180480,\"id_str\":\"870393110748180480\",\"name\":\"Temitope Mohammed\",\"screen_name\":\"cccfirmer\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist\\/GIS Analyst\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":181,\"friends_count\":1611,\"listed_count\":0,\"created_at\":\"Thu Jun 01 21:34:23 +0000 2017\",\"favourites_count\":9492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870393110748180480\\/1496401116\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"705\":{\"id\":1362987368152764417,\"id_str\":\"1362987368152764417\",\"name\":\"Eman\",\"screen_name\":\"Funyonz2\",\"location\":\"nonya\",\"description\":\"Youtuber | Artist | Editor (for fun) Officially Quit Roblox | 15+\",\"url\":\"https:\\/\\/t.co\\/tmigyX2FJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tmigyX2FJX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCnA6Go4T77X-Vl6p09q9xvQ\",\"display_url\":\"youtube.com\\/channel\\/UCnA6G\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":72,\"listed_count\":0,\"created_at\":\"Sat Feb 20 04:49:51 +0000 2021\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":258,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555217179003555841\\/NohR5Rwg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555217179003555841\\/NohR5Rwg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1362987368152764417\\/1638024523\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"706\":{\"id\":1031832165347147776,\"id_str\":\"1031832165347147776\",\"name\":\"Ifunanya Fredrick Orji Micheal\",\"screen_name\":\"IfunanyaFred\",\"location\":\"ikeja Lagos Nigeria \",\"description\":\"Graphic designer and internet profile manager\\n\\nand \\nCreator of: \\n1. Afrizunkz nfts\\n2. Brown Skin Ladies nfts\\n3. Classic Gentz nfts\\n4. stylish ladies nfts\",\"url\":\"https:\\/\\/t.co\\/2EtAFlQB5H\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2EtAFlQB5H\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Fredrickoj\",\"display_url\":\"linktr.ee\\/Fredrickoj\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":152,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Aug 21 09:15:33 +0000 2018\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554075617511055360\\/nxzIPjbZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554075617511055360\\/nxzIPjbZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1031832165347147776\\/1642711663\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"707\":{\"id\":4859584672,\"id_str\":\"4859584672\",\"name\":\"taiwoakinsanya\",\"screen_name\":\"taiwosharpakin\",\"location\":\"Lagos, Nigeria\",\"description\":\"Christ and God Learner# Prosthetist and Orthotist. StartUp Founder @Dynalimb Technologies. 3D Technology Enthusiast. Healthcare.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":165,\"friends_count\":239,\"listed_count\":1,\"created_at\":\"Fri Jan 29 08:28:13 +0000 2016\",\"favourites_count\":3168,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":619,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549736057666772992\\/AaA9lI31_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549736057666772992\\/AaA9lI31_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4859584672\\/1647144243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"708\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"709\":{\"id\":1217802725569843201,\"id_str\":\"1217802725569843201\",\"name\":\"Mr Ntul\",\"screen_name\":\"xandadgr8\",\"location\":\"Federal Capital Territory\",\"description\":\"Talk to me about Realestate Recording\\/Performing Artist\\/ Chorister Webdesigner\\u25aaInstagram-@ixanda_ \\u25aa#CBK #DMG_Nation #klevzEnt\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":183,\"friends_count\":220,\"listed_count\":2,\"created_at\":\"Thu Jan 16 13:36:33 +0000 2020\",\"favourites_count\":1155,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1390608845102321666\\/9lS_lEwu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1390608845102321666\\/9lS_lEwu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1217802725569843201\\/1581065998\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"710\":{\"id\":1100112365096501248,\"id_str\":\"1100112365096501248\",\"name\":\"MrEverythingLife\",\"screen_name\":\"mreverything247\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"I Entertain\\u2022\\nCampus ambassador\\n(Busidea Career Solution)\\u2022\\nYouTube page link:\\nhttps:\\/\\/t.co\\/si3ntlhrkm\\n|Petroleum Chemist|\\n|Actor| |Comedian| |videographer|\",\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[77,100]}]}},\"protected\":false,\"followers_count\":41,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Mon Feb 25 19:16:41 +0000 2019\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100112365096501248\\/1619811321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"711\":{\"id\":1100112365096501248,\"id_str\":\"1100112365096501248\",\"name\":\"MrEverythingLife\",\"screen_name\":\"mreverything247\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"I Entertain\\u2022\\nCampus ambassador\\n(Busidea Career Solution)\\u2022\\nYouTube page link:\\nhttps:\\/\\/t.co\\/si3ntlhrkm\\n|Petroleum Chemist|\\n|Actor| |Comedian| |videographer|\",\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[77,100]}]}},\"protected\":false,\"followers_count\":41,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Mon Feb 25 19:16:41 +0000 2019\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100112365096501248\\/1619811321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"712\":{\"id\":360288406,\"id_str\":\"360288406\",\"name\":\"L.E Ombs\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"LeoOmbs\",\"location\":\"Nasarawa, Nigeria\",\"description\":\"Geek\\ud83d\\udcbb ||\\nFun lover ||\\nDream Chaser ||\\nYouth Advocate ||\\nAnalyst & Activist || \\nA @ConcernedNG ||\\n#NasarawaTwitterHangOut\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":201,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Tue Aug 23 00:09:17 +0000 2011\",\"favourites_count\":1077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1463301735766765568\\/2RHe-sDd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1463301735766765568\\/2RHe-sDd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/360288406\\/1599325289\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"713\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5196,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"714\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5196,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"715\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5196,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"716\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5196,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"717\":{\"id\":796420847233855489,\"id_str\":\"796420847233855489\",\"name\":\"archermedia\",\"screen_name\":\"Ivyarcher75\",\"location\":\"Benin-City, Nigeria\",\"description\":\"targeted entertainment\",\"url\":\"https:\\/\\/t.co\\/ebZE32irSO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ebZE32irSO\",\"expanded_url\":\"https:\\/\\/archermedia.com.ng\",\"display_url\":\"archermedia.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":289,\"friends_count\":949,\"listed_count\":1,\"created_at\":\"Wed Nov 09 18:35:01 +0000 2016\",\"favourites_count\":3158,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1042,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367075731457662976\\/aKrKosnl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367075731457662976\\/aKrKosnl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/796420847233855489\\/1596125653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"718\":{\"id\":1549729519623442432,\"id_str\":\"1549729519623442432\",\"name\":\"cyrillle Bahmou\",\"screen_name\":\"cyrillle_b\",\"location\":\"Lagos Nigeria\",\"description\":\"Speaker , Business growth Expect, I help BIZ OWNERS GROW THEMSELVES , their BUSINESS & their PROFITS.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Wed Jul 20 12:15:29 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555454268102119430\\/IbYP5jLq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555454268102119430\\/IbYP5jLq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549729519623442432\\/1658481345\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"719\":{\"id\":1496896114422910976,\"id_str\":\"1496896114422910976\",\"name\":\"Vidan\",\"screen_name\":\"vidantv\",\"location\":\"Nigeria\",\"description\":\"Media personality\",\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"expanded_url\":\"https:\\/\\/m.me\\/Vistavid?fbclid=IwAR2GeMKUOyTZ7k5mLRnikdX9Bp4XZy39rsNY28RWzE5-xltW-MDslU1c08Q\",\"display_url\":\"m.me\\/Vistavid?fbcli\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Feb 24 17:14:06 +0000 2022\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496896114422910976\\/1656066107\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"720\":{\"id\":910994864598323200,\"id_str\":\"910994864598323200\",\"name\":\"YoungTee \\ud83d\\udc7b\",\"screen_name\":\"itx_YoungTee\",\"location\":\"Lagos, Nigeria\",\"description\":\"Vibe killer\\ud83e\\udd76|BahdBoy|Lover of Music|Wizkid FC|Manchester United \\ud83d\\udd34|LION HEART \\ud83e\\udd0d#YoungTee.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":667,\"listed_count\":0,\"created_at\":\"Thu Sep 21 22:31:16 +0000 2017\",\"favourites_count\":967,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545804145202003969\\/j2v7cxr6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545804145202003969\\/j2v7cxr6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/910994864598323200\\/1657383414\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"721\":{\"id\":920245545909792775,\"id_str\":\"920245545909792775\",\"name\":\"Jennifer Bertilla Amuche, EJINKEONYE\",\"screen_name\":\"Casa_berti\",\"location\":\"Lagos, Nigeria\",\"description\":\"Social Entrepreneur- Organizational Leadership and Business Strategist \\n#followforfollow\",\"url\":\"https:\\/\\/t.co\\/RVuLM3ahDd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RVuLM3ahDd\",\"expanded_url\":\"https:\\/\\/recardosbertie.business.site\",\"display_url\":\"recardosbertie.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":258,\"friends_count\":285,\"listed_count\":0,\"created_at\":\"Tue Oct 17 11:10:10 +0000 2017\",\"favourites_count\":952,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":302,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548354778534555648\\/R5cFex86_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548354778534555648\\/R5cFex86_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/920245545909792775\\/1642167135\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"722\":{\"id\":1736141245,\"id_str\":\"1736141245\",\"name\":\"CERTIFIED MC\",\"screen_name\":\"iamadeflow\",\"location\":\"Lagos, Nigeria\",\"description\":\"Stand Up Comedian | MC | Content Creator\\nLive| Laugh| Love \\ud83d\\ude4c\\n\\n For bookings \\ud83d\\udce9 adeflowcomedian@gmail.com \\n@iamadeflow on all platforms\",\"url\":\"https:\\/\\/t.co\\/f6f3HvLJuE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f6f3HvLJuE\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UClCOi_Iho6c_r-p0DdmaPeQ\",\"display_url\":\"youtube.com\\/channel\\/UClCOi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1662,\"friends_count\":1322,\"listed_count\":3,\"created_at\":\"Fri Sep 06 18:18:51 +0000 2013\",\"favourites_count\":74334,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24993,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505259224376483848\\/6ZYp2sv7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505259224376483848\\/6ZYp2sv7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1736141245\\/1651239030\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"723\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"724\":{\"id\":3431581827,\"id_str\":\"3431581827\",\"name\":\"magjizzy\",\"screen_name\":\"magojazzy\",\"location\":\"Nigeria\",\"description\":\"Butterfield Entertainment Boss \\nartist on my label stain and Facebee holla at magjizzyezekiel@gmail.com for bookings\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1009,\"friends_count\":2625,\"listed_count\":3,\"created_at\":\"Wed Aug 19 15:32:11 +0000 2015\",\"favourites_count\":1892,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2248,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1054389615556288512\\/SiPqpXKO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1054389615556288512\\/SiPqpXKO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3431581827\\/1619692396\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"725\":{\"id\":988750622802530305,\"id_str\":\"988750622802530305\",\"name\":\"Gh \\ud83c\\uddec\\ud83c\\uddedblackstars\\u2b50\\ufe0f\",\"screen_name\":\"KlinsmannOfori\",\"location\":\"Accra, Ghana\",\"description\":\"Qatar \\ud83c\\uddf6\\ud83c\\udde6 we come\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":462,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Tue Apr 24 12:04:53 +0000 2018\",\"favourites_count\":129325,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1541,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534184933924786179\\/3gYOsgBH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534184933924786179\\/3gYOsgBH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"726\":{\"id\":1075403418481631233,\"id_str\":\"1075403418481631233\",\"name\":\"King Edrah \\ud83d\\udc51\",\"screen_name\":\"King_Edrah\",\"location\":\"Calabar, Nigeria\",\"description\":\"CEO @Geogem_Contrs | Civil Engineer | Project Manager | Consultant | Politician | Entrepreneur | Motivational Speaker \\/ Content creator |\",\"url\":\"https:\\/\\/t.co\\/Fd5JpkG2sA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fd5JpkG2sA\",\"expanded_url\":\"http:\\/\\/instagram.com\\/geogemcontractors\",\"display_url\":\"instagram.com\\/geogemcontract\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":819,\"friends_count\":969,\"listed_count\":0,\"created_at\":\"Wed Dec 19 14:52:09 +0000 2018\",\"favourites_count\":1069,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1082,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549044799675797511\\/p4F58Wpj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549044799675797511\\/p4F58Wpj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1075403418481631233\\/1614295979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"727\":{\"id\":1103207615037931520,\"id_str\":\"1103207615037931520\",\"name\":\"Jay Chopa\\ud83d\\udfe3\\ud83d\\udc9c\",\"screen_name\":\"Jay_Chopa\",\"location\":\"Lagos, Nigeria\",\"description\":\"am a rapper\\/singer and song writer.. \\nFor booking, contact HYB ENTERTAINMENT +234 703 117 5865 \\/ +2348102660507\",\"url\":\"https:\\/\\/t.co\\/9MHf9pzj68\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9MHf9pzj68\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/song\\/nicholaschiebuka1998\\/maria\",\"display_url\":\"audiomack.com\\/song\\/nicholasc\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":1660,\"listed_count\":0,\"created_at\":\"Wed Mar 06 08:16:06 +0000 2019\",\"favourites_count\":27623,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5507,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495395684601806852\\/d8qG6thk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495395684601806852\\/d8qG6thk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1103207615037931520\\/1606324262\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"728\":{\"id\":1258315949838602241,\"id_str\":\"1258315949838602241\",\"name\":\"Jobblasts Nigeria\",\"screen_name\":\"jobblasts_ng\",\"location\":\"Ikeja, Lagos, Nigeria\",\"description\":\"Recruiter\\nJob search by Jobblasts.\\nNigeria No 1 job plug \\ud83d\\udd0c\\nGetting you closer to your dream job...\\nDownload app on playstore: Jobblasts\",\"url\":\"https:\\/\\/t.co\\/zc1z3ULQZG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zc1z3ULQZG\",\"expanded_url\":\"http:\\/\\/www.jobblasts.com\",\"display_url\":\"jobblasts.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":231,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Thu May 07 09:02:07 +0000 2020\",\"favourites_count\":20,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1258321829174882304\\/9QI33JvF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1258321829174882304\\/9QI33JvF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1258315949838602241\\/1588843172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"729\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"730\":{\"id\":1342889742501896192,\"id_str\":\"1342889742501896192\",\"name\":\"Official Wiseking\",\"screen_name\":\"WiseKingoffici1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Super star wise king unsign Artist, for Booking,09055186154, Email wisebaba25@gmail.com @davido @Olamide @emoney @Rihanna @wisekingoffici1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":350,\"friends_count\":2157,\"listed_count\":1,\"created_at\":\"Sat Dec 26 17:47:40 +0000 2020\",\"favourites_count\":945,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342889742501896192\\/1655718497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"731\":{\"id\":1057385822494867458,\"id_str\":\"1057385822494867458\",\"name\":\"\\uf8ffAbubakar Sa\\u2019eed \\ud83d\\udc68\\u200d\\ud83d\\udcbb\",\"screen_name\":\"itz_ikhali\",\"location\":\"Kano, Nigeria\",\"description\":\"Footballer\\u2122 I'm Simple \\ud83d\\ude06 My team_ Hala Madrid\\u26bd\\ufe0f Proudly a Muslim\\ud83d\\udd4c 15th Dec \\ud83c\\udf82 BenZ \\u2b50\\ufe0f \\ud83d\\ude97 IG. itz_ikhali\",\"url\":\"https:\\/\\/t.co\\/uXeXwvefYu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uXeXwvefYu\",\"expanded_url\":\"http:\\/\\/www.serdeqmotors.com.ng\",\"display_url\":\"serdeqmotors.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":209,\"friends_count\":358,\"listed_count\":0,\"created_at\":\"Tue Oct 30 21:36:40 +0000 2018\",\"favourites_count\":1018,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7680,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509805893067710464\\/b8GxLGou_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509805893067710464\\/b8GxLGou_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1057385822494867458\\/1609171201\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"732\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"733\":{\"id\":1549024483192840193,\"id_str\":\"1549024483192840193\",\"name\":\"ValuCares\",\"screen_name\":\"CaresValu\",\"location\":\"Lagos,Nigeria\",\"description\":\"Valucares is an online\\/real time healthcare provider. We provide quality and affordable healthcare services to our customers.\",\"url\":\"https:\\/\\/t.co\\/nW6kBiOo2P\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nW6kBiOo2P\",\"expanded_url\":\"http:\\/\\/www.valucares.com\",\"display_url\":\"valucares.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":23,\"listed_count\":0,\"created_at\":\"Mon Jul 18 13:33:43 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549034497152352258\\/HNuVLgOa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549034497152352258\\/HNuVLgOa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549024483192840193\\/1658153878\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"734\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"735\":{\"id\":1467730838980812803,\"id_str\":\"1467730838980812803\",\"name\":\"IBBULTALKATIVE \\ud83d\\udeb4\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\udca8\",\"screen_name\":\"ibbultalkative\",\"location\":\"Lapai, Nigeria\",\"description\":\"Welcome to IBBUL TALKATIVE \\u270c\\ud83c\\udffd\\ud83d\\ude1c we rep:\\ud83d\\udc9aIbrahim Badamasi Babangida University, Lapai\\ud83d\\udc9a Enjoy unlimited MEMES, Campus gists.\\ud83d\\udd25 Entertainment\\ud83c\\udfacetc....\",\"url\":\"https:\\/\\/t.co\\/xZctnqIQpL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xZctnqIQpL\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348084957775\",\"display_url\":\"wa.me\\/+2348084957775\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":329,\"friends_count\":275,\"listed_count\":0,\"created_at\":\"Mon Dec 06 05:41:28 +0000 2021\",\"favourites_count\":3689,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":464,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528416959599153153\\/Zhcau9rm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528416959599153153\\/Zhcau9rm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1467730838980812803\\/1646385998\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"736\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"737\":{\"id\":826748906411274241,\"id_str\":\"826748906411274241\",\"name\":\"Bloodybeats 4:44 d EP\",\"screen_name\":\"officialUgoo\",\"location\":\"LAGOS NIGERIA\",\"description\":\"I PRODUCE, MIX, MASTER, AND I DROPPED MY FIRST PROJECT ON THE LINK BELOW\",\"url\":\"https:\\/\\/t.co\\/ILGAv2EeNn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ILGAv2EeNn\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/bloodybeats\\/444-2\",\"display_url\":\"distrokid.com\\/hyperfollow\\/bl\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":344,\"listed_count\":0,\"created_at\":\"Wed Feb 01 11:07:54 +0000 2017\",\"favourites_count\":20400,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2108,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548446247207333895\\/5iz6rvbn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548446247207333895\\/5iz6rvbn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/826748906411274241\\/1658013342\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"738\":{\"id\":1492383309195886600,\"id_str\":\"1492383309195886600\",\"name\":\"Marvis Rudy\",\"screen_name\":\"officiall_26\",\"location\":\"Edo, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":103,\"listed_count\":0,\"created_at\":\"Sat Feb 12 06:21:44 +0000 2022\",\"favourites_count\":123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530579898561187840\\/3sCjGV_W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530579898561187840\\/3sCjGV_W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492383309195886600\\/1653079872\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"739\":{\"id\":1550871033892282371,\"id_str\":\"1550871033892282371\",\"name\":\"maggie james\",\"screen_name\":\"magret_james2\",\"location\":\"\",\"description\":\"Sugar mum\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Sat Jul 23 15:51:01 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"740\":{\"id\":1094859184259108865,\"id_str\":\"1094859184259108865\",\"name\":\"winner vibes\",\"screen_name\":\"elchazag\",\"location\":\"heaven\",\"description\":\"\\u2022Raison D'\\u00eatre\\n\\u2022God's idea|\\nRap-Poe | Freelance Photographer | Creative Design\",\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/elchazag\",\"display_url\":\"audiomack.com\\/elchazag\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Mon Feb 11 07:22:25 +0000 2019\",\"favourites_count\":3721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1926,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1094859184259108865\\/1601837949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"741\":{\"id\":1094859184259108865,\"id_str\":\"1094859184259108865\",\"name\":\"winner vibes\",\"screen_name\":\"elchazag\",\"location\":\"heaven\",\"description\":\"\\u2022Raison D'\\u00eatre\\n\\u2022God's idea|\\nRap-Poe | Freelance Photographer | Creative Design\",\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/elchazag\",\"display_url\":\"audiomack.com\\/elchazag\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Mon Feb 11 07:22:25 +0000 2019\",\"favourites_count\":3721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1926,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1094859184259108865\\/1601837949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"742\":{\"id\":920979309308858368,\"id_str\":\"920979309308858368\",\"name\":\"Sir_Werry \\ud83c\\udf1f\",\"screen_name\":\"sir_werry\",\"location\":\"Lagos, Nigeria\",\"description\":\"I\\u2019m licensed to my sounds |Rapper Toni license| For sponsorship and enquires : 07014958065 NATURALLY OUT ON ALL PLATFORMS\",\"url\":\"https:\\/\\/t.co\\/ZfBq3CyCyP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZfBq3CyCyP\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/sirwerry\\/naturally\",\"display_url\":\"distrokid.com\\/hyperfollow\\/si\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":884,\"listed_count\":2,\"created_at\":\"Thu Oct 19 11:45:53 +0000 2017\",\"favourites_count\":2796,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532270288569831424\\/R2f7BmJO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532270288569831424\\/R2f7BmJO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/920979309308858368\\/1647819581\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"743\":{\"id\":1396173475212107776,\"id_str\":\"1396173475212107776\",\"name\":\"Bright Sunday Omotola\",\"screen_name\":\"BSO1905\",\"location\":\"Lagos, Nigeria\",\"description\":\"Godly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":125,\"friends_count\":227,\"listed_count\":0,\"created_at\":\"Sat May 22 18:38:12 +0000 2021\",\"favourites_count\":58719,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":620,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555180485889900544\\/-j3nKF6U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555180485889900544\\/-j3nKF6U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396173475212107776\\/1621946398\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"744\":{\"id\":57570221,\"id_str\":\"57570221\",\"name\":\"Iyke Larry\",\"screen_name\":\"Hillike\",\"location\":\"UAE\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":163,\"friends_count\":136,\"listed_count\":2,\"created_at\":\"Fri Jul 17 06:15:54 +0000 2009\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57570221\\/1419692473\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"745\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"746\":{\"id\":1435400676545372163,\"id_str\":\"1435400676545372163\",\"name\":\"jamie\",\"screen_name\":\"oneilj386\",\"location\":\"Enugu, Nigeria\",\"description\":\"life goes on\\n#30BG \\n@davido\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed Sep 08 00:32:58 +0000 2021\",\"favourites_count\":315,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1435400676545372163\\/1652824732\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"747\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"748\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"749\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"750\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"751\":{\"id\":1517744833808510977,\"id_str\":\"1517744833808510977\",\"name\":\"Western Post Nigeria\",\"screen_name\":\"westernpost_ng\",\"location\":\"Nigeria\",\"description\":\"Western Post is the authority for news and information across the South Western states of Nigeria including Kogi, Kwara, Edo and Delta States.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64288,\"friends_count\":35,\"listed_count\":11,\"created_at\":\"Sat Apr 23 05:59:33 +0000 2022\",\"favourites_count\":4812,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4478,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554062033649389568\\/OVkSmn4X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554062033649389568\\/OVkSmn4X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517744833808510977\\/1659352695\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"752\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"753\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"754\":{\"id\":1459025683,\"id_str\":\"1459025683\",\"name\":\"ALAYE\\ud83c\\udc04\\ufe0f\",\"screen_name\":\"sappzee\",\"location\":\"Nigeria\",\"description\":\"STRAIGHT UP THEEP OUT NOW \\u2757\\ufe0f\\u2757\\ufe0f\\u2757\\ufe0f #familybusiness\",\"url\":\"https:\\/\\/t.co\\/9Qwz3WrT9F\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Qwz3WrT9F\",\"expanded_url\":\"https:\\/\\/www.hitztunez.net\\/sappzee-returns-with-new-music-outside-listen\\/\",\"display_url\":\"hitztunez.net\\/sappzee-return\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1025,\"friends_count\":350,\"listed_count\":2,\"created_at\":\"Sun May 26 07:22:34 +0000 2013\",\"favourites_count\":127845,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10442,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549284342425423873\\/_rjpWenG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549284342425423873\\/_rjpWenG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1459025683\\/1644074695\",\"profile_link_color\":\"0A0099\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"755\":{\"id\":835449742670839808,\"id_str\":\"835449742670839808\",\"name\":\"Lawrence Ezekiel\",\"screen_name\":\"KafeEazy\",\"location\":\"Nigeria\",\"description\":\"Business Consultant\\nBusiness Tips\\nBusiness Optimization\\nDigital Marketing\",\"url\":\"https:\\/\\/t.co\\/nOi9ft1hGb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nOi9ft1hGb\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/277ob\",\"display_url\":\"btcs.love\\/invite\\/277ob\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Sat Feb 25 11:21:55 +0000 2017\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":413,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/987766670952484864\\/c1KkmqGS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/987766670952484864\\/c1KkmqGS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"756\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"757\":{\"id\":3938770221,\"id_str\":\"3938770221\",\"name\":\"samuel eshun\",\"screen_name\":\"samueleshungh\",\"location\":\"Accra\",\"description\":\"I work with a sense of urgency to get the whole story told the people. Sometimes affable, sometimes cheeky and most importantly objective. Let's take a stroll\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2812,\"friends_count\":196,\"listed_count\":0,\"created_at\":\"Mon Oct 12 17:00:23 +0000 2015\",\"favourites_count\":997,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1554,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477224075512713219\\/EbFwdXB1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477224075512713219\\/EbFwdXB1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3938770221\\/1602421200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"758\":{\"id\":2618177938,\"id_str\":\"2618177938\",\"name\":\"Binna\",\"screen_name\":\"Obi_Binna\",\"location\":\"Accra Ghana\",\"description\":\"Chairman Binna Limited; CEO Binnaparlour Fast food; Publisher Binnabook Magazine and also Venture Capital Investor #Blockchain\",\"url\":\"https:\\/\\/t.co\\/SfduVlVfd1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SfduVlVfd1\",\"expanded_url\":\"https:\\/\\/www.binnabook.com\",\"display_url\":\"binnabook.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118,\"friends_count\":115,\"listed_count\":4,\"created_at\":\"Tue Jun 17 19:50:43 +0000 2014\",\"favourites_count\":943,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1476,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1318294869840887809\\/AYiPvBeM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1318294869840887809\\/AYiPvBeM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2618177938\\/1652667113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"759\":{\"id\":1537696600046329856,\"id_str\":\"1537696600046329856\",\"name\":\"Matt Ovie\",\"screen_name\":\"ovie_matt\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"An engineering student \\ud83d\\udc68\\u200d\\ud83d\\udd27\\ud83c\\udf93 from PTI UNIVERSITY Also deal with gift cards redeemed of all types just inbox me. for better rate\",\"url\":\"https:\\/\\/t.co\\/bkLo3ERaw9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bkLo3ERaw9\",\"expanded_url\":\"http:\\/\\/instagram.com\\/matt_ovie\",\"display_url\":\"instagram.com\\/matt_ovie\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":257,\"friends_count\":426,\"listed_count\":0,\"created_at\":\"Fri Jun 17 07:20:35 +0000 2022\",\"favourites_count\":726,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554062993071251457\\/XfC1GkaV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554062993071251457\\/XfC1GkaV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537696600046329856\\/1657397199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"760\":{\"id\":1356251183980142596,\"id_str\":\"1356251183980142596\",\"name\":\"Rentic\",\"screen_name\":\"myrentic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Accommodations: (shortlets, roommates, flatmates, co-working spaces & more).\\n#Experiences: (Tours, massages, getaways, boat rides & more).\",\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"expanded_url\":\"https:\\/\\/rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Mon Feb 01 14:41:11 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356251183980142596\\/1612290624\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"761\":{\"id\":1278287668938448899,\"id_str\":\"1278287668938448899\",\"name\":\"Stevie \\u2642\\ufe0f\",\"screen_name\":\"StEvIe_Alo\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm an ARTIST \\ud83c\\udfa8 @alo_stevie on I.g\\nI'm a PHOTOGRAPHER \\ud83d\\udcf8\\n@halography_ on Instagram\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":263,\"friends_count\":321,\"listed_count\":0,\"created_at\":\"Wed Jul 01 11:21:56 +0000 2020\",\"favourites_count\":15429,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6685,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1278287668938448899\\/1646841113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"762\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"763\":{\"id\":736506943,\"id_str\":\"736506943\",\"name\":\"SUPER_STAR\",\"screen_name\":\"koki_officiall\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Business Consultant - Affiliate Marketer - Freelancer - Musician - Engineer\\n( Creative Marketer )\\nReady for any new challenge \\/\\/ 08092503360\",\"url\":\"https:\\/\\/t.co\\/ZDr63aoiOq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZDr63aoiOq\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~0178f34a36029df671?s=1017484851352698974\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1534,\"friends_count\":2567,\"listed_count\":0,\"created_at\":\"Sat Aug 04 10:28:46 +0000 2012\",\"favourites_count\":3448,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1863,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540723852891697157\\/bnQLWOJD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540723852891697157\\/bnQLWOJD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/736506943\\/1620212451\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"764\":{\"id\":1277803354316509184,\"id_str\":\"1277803354316509184\",\"name\":\"Anderson\",\"screen_name\":\"anderson_alozie\",\"location\":\"Lagos, Nigeria\",\"description\":\"Proudly Catholic|| Administrator|| UX designer|| Vibes|| Lover of Art and nature. Dm to know more\\ud83d\\ude0a||OAU||GGMU\\u2764\\ufe0f||I LOVE GIRLS \\ud83d\\udc9d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1286,\"friends_count\":1305,\"listed_count\":0,\"created_at\":\"Tue Jun 30 03:17:25 +0000 2020\",\"favourites_count\":1264,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1713,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536947460773396481\\/UqRSm1MN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536947460773396481\\/UqRSm1MN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1277803354316509184\\/1655271868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"765\":{\"id\":1063757650691858432,\"id_str\":\"1063757650691858432\",\"name\":\"Aliyu Abdullahi Gunigi\",\"screen_name\":\"abubillaal\",\"location\":\"Kaduna Nigeria \",\"description\":\"Sociologist, Egalitarian, Multi-cultured Human, Revolutionary, Anti Makeup, Advocate Of Natural Beauty, Promoter Of Social Justice And Equitable Society.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":348,\"friends_count\":130,\"listed_count\":0,\"created_at\":\"Sat Nov 17 11:36:02 +0000 2018\",\"favourites_count\":4705,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6936,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551691742872829953\\/YgZHhnYa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551691742872829953\\/YgZHhnYa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1063757650691858432\\/1542459492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"766\":{\"id\":925179498,\"id_str\":\"925179498\",\"name\":\"Fasinu Emmanuel\",\"screen_name\":\"fashemmy2010\",\"location\":\"Lagos Nigeria\",\"description\":\"Quality Analyst\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":461,\"friends_count\":702,\"listed_count\":1,\"created_at\":\"Sun Nov 04 11:42:03 +0000 2012\",\"favourites_count\":1226,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1120,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1446021039952220163\\/zY9SRpxc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1446021039952220163\\/zY9SRpxc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/925179498\\/1643742241\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"767\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"768\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"769\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"770\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"771\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"772\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"773\":{\"id\":1063784282706059269,\"id_str\":\"1063784282706059269\",\"name\":\"Noko Nice \\ud83c\\udfa5\\ud83d\\udcf8\\ud83c\\udfcc\\ud83c\\udffd\\u200d\\u2642\\ufe0f\",\"screen_name\":\"WhyWorri\",\"location\":\"Accra, Ghana\",\"description\":\"Videography Photography(Music videos,Movies,All Ceremonies,Photo shoot etc). Noko Nice is here to document your life\\u2019s moments\\u2026Available Worldwide \\ud83c\\udf0d\\ud83d\\udcf8\\ud83c\\udfcc\\ud83c\\udffd\\u200d\\u2642\\ufe0f.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1497,\"friends_count\":1029,\"listed_count\":0,\"created_at\":\"Sat Nov 17 13:21:51 +0000 2018\",\"favourites_count\":46589,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8381,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541138204878950400\\/5DqFA5ih_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541138204878950400\\/5DqFA5ih_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1063784282706059269\\/1649180649\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"774\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"775\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"776\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"777\":{\"id\":834103951712718853,\"id_str\":\"834103951712718853\",\"name\":\"Paul A Elijah\",\"screen_name\":\"PaulElijah16\",\"location\":\"Nigeria\",\"description\":\"A Pastor, A Teacher, An Entrepreneur, A Media Personnel.\\nA Light to My Generation.\",\"url\":\"https:\\/\\/t.co\\/WsjqhCg2pC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WsjqhCg2pC\",\"expanded_url\":\"https:\\/\\/wa.me\\/qr\\/4CGQQG74CMXUJ1\",\"display_url\":\"wa.me\\/qr\\/4CGQQG74CMX\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":147,\"friends_count\":1503,\"listed_count\":3,\"created_at\":\"Tue Feb 21 18:14:13 +0000 2017\",\"favourites_count\":907,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":878,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555309677751242757\\/JBEY5IUg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555309677751242757\\/JBEY5IUg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/834103951712718853\\/1659649674\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"778\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"779\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"780\":{\"id\":3935905942,\"id_str\":\"3935905942\",\"name\":\"Tosh Michaels \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"ToshSports\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Broadcast Journalist | Commentator | OAP @Diamond887fm Ilorin | Actor | Event Host | Email: jamesvic336@gmail.com.\",\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"expanded_url\":\"http:\\/\\/www.owosports.com.ng\",\"display_url\":\"owosports.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":433,\"friends_count\":996,\"listed_count\":3,\"created_at\":\"Mon Oct 12 09:24:48 +0000 2015\",\"favourites_count\":4197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1947,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3935905942\\/1640642689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"781\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"782\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"783\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"784\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"785\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"786\":{\"id\":798250776,\"id_str\":\"798250776\",\"name\":\"HEDREES\",\"screen_name\":\"AmooOlawale1\",\"location\":\"Nigeria\",\"description\":\"I seek refuge in u Allah against sheytan d accuse.\",\"url\":\"http:\\/\\/t.co\\/fQkuzH1lzh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fQkuzH1lzh\",\"expanded_url\":\"http:\\/\\/http.amooolawaleidris.com\",\"display_url\":\"http.amooolawaleidris.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":109,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Sun Sep 02 13:20:38 +0000 2012\",\"favourites_count\":971,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2861,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/788004857852624897\\/bblq84cW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/788004857852624897\\/bblq84cW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/798250776\\/1389339938\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"787\":{\"id\":1473679113961496585,\"id_str\":\"1473679113961496585\",\"name\":\"SALAWU OLUWATOBI\",\"screen_name\":\"tobinson10\",\"location\":\"Lagos, Nigeria\",\"description\":\"TeeGirl-that what they call me. I love Crypto, Tech, Sports, Vibes, Partying, politics (no b 9ja own) - e no de sweet.. and Vawulense (\\ud83e\\udd17 U know if u know)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":198,\"friends_count\":1093,\"listed_count\":5,\"created_at\":\"Wed Dec 22 15:38:09 +0000 2021\",\"favourites_count\":5774,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3115,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552053831973933056\\/ZP_oM5Wa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552053831973933056\\/ZP_oM5Wa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1473679113961496585\\/1644153961\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"788\":{\"id\":1514871863905816577,\"id_str\":\"1514871863905816577\",\"name\":\"FlyHezix\",\"screen_name\":\"flyhezix\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udd38Chartered Flight \\ud83d\\udd38Leasing \\ud83d\\udd38Helicopter Shuttle Service \\ud83d\\udd38Aircraft sales Contact:- +2348140491420\",\"url\":\"https:\\/\\/t.co\\/MYVovcJwdF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MYVovcJwdF\",\"expanded_url\":\"http:\\/\\/flyhezix.weebly.com\",\"display_url\":\"flyhezix.weebly.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Fri Apr 15 07:43:06 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538739669122310144\\/Akzhv8PA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538739669122310144\\/Akzhv8PA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514871863905816577\\/1650009810\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"789\":{\"id\":1527952716298964992,\"id_str\":\"1527952716298964992\",\"name\":\"Blaq_Pearlz\",\"screen_name\":\"pearlz_blaq\",\"location\":\"Lagos, Nigeria\",\"description\":\"Afrobeat is where music is, and where it will remain, Music is what i do, its part of me\",\"url\":\"https:\\/\\/t.co\\/fUP0BC0eKk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fUP0BC0eKk\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC4DIhjRfMR3h4FrPlabZuYg\",\"display_url\":\"youtube.com\\/channel\\/UC4DIh\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":493,\"listed_count\":0,\"created_at\":\"Sat May 21 10:01:50 +0000 2022\",\"favourites_count\":2411,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":353,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550601206757822471\\/hXMyovof_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550601206757822471\\/hXMyovof_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1527952716298964992\\/1658527111\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"790\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"791\":{\"id\":1252744966176202753,\"id_str\":\"1252744966176202753\",\"name\":\"TonyMoor\",\"screen_name\":\"MoorTony\",\"location\":\"Lagos\",\"description\":\"property consultant, Digital marketing professional, investment expert.A great friend,A man of God.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Apr 21 23:44:32 +0000 2020\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":156,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1394223136158126082\\/uGaArb3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1394223136158126082\\/uGaArb3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1252744966176202753\\/1652452446\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"792\":{\"id\":1478815961482412034,\"id_str\":\"1478815961482412034\",\"name\":\"Clinton Ikart\",\"screen_name\":\"ikart_clinton\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Ceo Clindice Music Limited ,\\nMusic business Consultant, Artiste Manager , Politician.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":336,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Wed Jan 05 19:49:51 +0000 2022\",\"favourites_count\":27250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":138,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515054668396834827\\/i7CWvFYu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515054668396834827\\/i7CWvFYu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478815961482412034\\/1653546265\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"793\":{\"id\":1256962330505641986,\"id_str\":\"1256962330505641986\",\"name\":\"HopVicProduction\\u26a1\\ufe0f\\ud83e\\udd41\\ud83d\\udd25\",\"screen_name\":\"hopvicbeat\",\"location\":\"Lagos, Nigeria\",\"description\":\"Music Production, Mixing and Mastering, music Production training, Beats, Jingle, Artist Branding, Online, Radio Promo.\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":\"https:\\/\\/t.co\\/VbTgqWTYKN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VbTgqWTYKN\",\"expanded_url\":\"https:\\/\\/youtu.be\\/xD24RTykUoc\",\"display_url\":\"youtu.be\\/xD24RTykUoc\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":104,\"listed_count\":0,\"created_at\":\"Sun May 03 15:02:39 +0000 2020\",\"favourites_count\":39,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":221,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1334854201533476865\\/sanFh_Vp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1334854201533476865\\/sanFh_Vp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1256962330505641986\\/1607089050\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"794\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"795\":{\"id\":1495036123919302661,\"id_str\":\"1495036123919302661\",\"name\":\"Ghcelebritybiz\",\"screen_name\":\"ghcelebritybiz\",\"location\":\"Accra, Ghana\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Sat Feb 19 14:02:57 +0000 2022\",\"favourites_count\":67,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":57,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496830579228172295\\/8Yv5psYV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496830579228172295\\/8Yv5psYV_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"796\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"797\":{\"id\":2613972650,\"id_str\":\"2613972650\",\"name\":\"BBNaija2022\",\"screen_name\":\"BBNaija_2022\",\"location\":\"Nigeria\",\"description\":\"Get all the latest Big Brother Naija 2022 Updates. This\\u2019s a fan page of BBNaija Subscribe to our YouTube Channel for Live Streams Link below\\u2935\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":13,\"listed_count\":4,\"created_at\":\"Wed Jul 09 18:07:39 +0000 2014\",\"favourites_count\":622,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2738,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2613972650\\/1652963380\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"798\":{\"id\":3153103287,\"id_str\":\"3153103287\",\"name\":\"Dat-Kogi-Boii\",\"screen_name\":\"BelloIlias\",\"location\":\"Kogi, Nigeria\",\"description\":\"Marketer and Team Leader at @UltimateBakery \\nBusiness Minded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":365,\"friends_count\":412,\"listed_count\":1,\"created_at\":\"Fri Apr 10 01:16:11 +0000 2015\",\"favourites_count\":770,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1630,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370642062115282948\\/fjSWX5_X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370642062115282948\\/fjSWX5_X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3153103287\\/1636874474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"799\":{\"id\":55308144,\"id_str\":\"55308144\",\"name\":\"Peter Obi's Minister of Power\",\"screen_name\":\"RealPOOkeke\",\"location\":\"Nigeria\",\"description\":\"Shadow Minister of Power|Global Energy Efficiency & Sustainability Advocate | Power Engineer| Social Commentator|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":548,\"friends_count\":1163,\"listed_count\":8,\"created_at\":\"Thu Jul 09 17:56:14 +0000 2009\",\"favourites_count\":229,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/55308144\\/1655442076\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"800\":{\"id\":931303751633244160,\"id_str\":\"931303751633244160\",\"name\":\"mallam cerdeeq\",\"screen_name\":\"arcsadeeqburji\",\"location\":\"Kano, Nigeria\",\"description\":\"every damn day am just doing it.#muslim #architect #enterprenure \\n# loving khatimul Anbiya\\u2764\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":423,\"listed_count\":0,\"created_at\":\"Thu Nov 16 23:31:31 +0000 2017\",\"favourites_count\":3797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1518,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526363093575557122\\/t3MqqHZI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526363093575557122\\/t3MqqHZI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/931303751633244160\\/1659907008\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"801\":{\"id\":1047917881718185985,\"id_str\":\"1047917881718185985\",\"name\":\"Succiano\",\"screen_name\":\"SuccianoM\",\"location\":\"Lagos \",\"description\":\"Public Speaker \\ud83c\\udfa4 Stress Management Enthusiast \\ud83d\\udde3\\ufe0f\\nHelping young undergraduates find their purpose without stress \\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\n\\ud83d\\udccdLead Gen\\ud83d\\udccdContent Curation\",\"url\":\"https:\\/\\/t.co\\/XxQQ8JWJZj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XxQQ8JWJZj\",\"expanded_url\":\"http:\\/\\/successrobert.com\\/killdepression\",\"display_url\":\"successrobert.com\\/killdepression\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":93,\"listed_count\":0,\"created_at\":\"Thu Oct 04 18:34:27 +0000 2018\",\"favourites_count\":114,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1402316536719740932\\/sBDx-at__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1402316536719740932\\/sBDx-at__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1047917881718185985\\/1619368806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"802\":{\"id\":1509188070201036807,\"id_str\":\"1509188070201036807\",\"name\":\"Chronicare\",\"screen_name\":\"Chronicareng\",\"location\":\"Lagos, Nigeria\",\"description\":\"Integrated Diabetes Management Centre\",\"url\":\"https:\\/\\/t.co\\/LCPNpkgCtL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LCPNpkgCtL\",\"expanded_url\":\"http:\\/\\/www.chronicare.org\",\"display_url\":\"chronicare.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Wed Mar 30 15:18:25 +0000 2022\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544669520442363904\\/ij2tVJe6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544669520442363904\\/ij2tVJe6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509188070201036807\\/1648654910\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"803\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"804\":{\"id\":2885459335,\"id_str\":\"2885459335\",\"name\":\"Database World\",\"screen_name\":\"Sir_Money_gh\",\"location\":\"ghana\",\"description\":\"Database activist \\nemail benhast21@gmail.com\\nIG @sir_money_ #Database #oracle #PowerBI\\n@oracle @mssqlserver\",\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCjqrnmLvpmpU4nIFjOYPUGQ\",\"display_url\":\"youtube.com\\/channel\\/UCjqrn\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":328,\"friends_count\":269,\"listed_count\":1,\"created_at\":\"Fri Oct 31 16:29:15 +0000 2014\",\"favourites_count\":6043,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7020,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2885459335\\/1641320456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"805\":{\"id\":1435400676545372163,\"id_str\":\"1435400676545372163\",\"name\":\"jamie\",\"screen_name\":\"oneilj386\",\"location\":\"Enugu, Nigeria\",\"description\":\"life goes on\\n#30BG \\n@davido\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed Sep 08 00:32:58 +0000 2021\",\"favourites_count\":315,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1435400676545372163\\/1652824732\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"806\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64920,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"807\":{\"id\":1241988294797377544,\"id_str\":\"1241988294797377544\",\"name\":\"Obi.ajulu\\ud83d\\udc9d\",\"screen_name\":\"_Obi_ajulu\",\"location\":\"Enugu, Nigeria\",\"description\":\"Dealers on all kinds of sports kits \\nDe'patricks sports and wears\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Mon Mar 23 07:21:13 +0000 2020\",\"favourites_count\":16833,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":654,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1345029240421494785\\/4o-Yft74_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1345029240421494785\\/4o-Yft74_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1241988294797377544\\/1609515237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"808\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64920,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"809\":{\"id\":1205938170094903296,\"id_str\":\"1205938170094903296\",\"name\":\"C'MON LET'S DISCUSS THIS \\ud83d\\udcac\",\"screen_name\":\"Naijamatterblog\",\"location\":\"Lagos, Nigeria\",\"description\":\"BASICALLY;\\nI READ \\ud83d\\udcd6 \\nI WRITE \\u270d\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":324,\"friends_count\":28,\"listed_count\":8,\"created_at\":\"Sat Dec 14 19:51:00 +0000 2019\",\"favourites_count\":633,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":684,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1254532220888518656\\/IZyTEwrV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1254532220888518656\\/IZyTEwrV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1205938170094903296\\/1622793350\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"810\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"811\":{\"id\":1072585382972284928,\"id_str\":\"1072585382972284928\",\"name\":\"AprokoRepublic \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"aprokorepublic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Entertainment Blog ||Music, Video Business Promoter ||For steady update Turn Notification..Submit Content:Call\\/Whatsapp:07062811394, \\ud83d\\udce9aprokorepublic@gmail.com\",\"url\":\"https:\\/\\/t.co\\/Ka7dgfZb3a\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ka7dgfZb3a\",\"expanded_url\":\"https:\\/\\/aprokorepublic.com.ng\",\"display_url\":\"aprokorepublic.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2913,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Tue Dec 11 20:14:17 +0000 2018\",\"favourites_count\":31129,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11806,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534158502356303872\\/lHPD2lXc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534158502356303872\\/lHPD2lXc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1072585382972284928\\/1654622951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"812\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64920,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"813\":{\"id\":1481683902238535682,\"id_str\":\"1481683902238535682\",\"name\":\"Memzydavid\\ud83d\\udcb0\",\"screen_name\":\"Ememsef\",\"location\":\"Nigeria\",\"description\":\"A Food Scientists, Writer, Social Media manager and Moderator, Liverpool fans\\ud83d\\udc96\\ud83e\\udd17.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":854,\"friends_count\":774,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:46:10 +0000 2022\",\"favourites_count\":1316,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":918,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552256871020597251\\/a0SpQ0ll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552256871020597251\\/a0SpQ0ll_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481683902238535682\\/1654625948\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"814\":{\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"name\":\"William Iwu\",\"screen_name\":\"betsmasterspro\",\"location\":\"Jos, Nigeria\",\"description\":\"Welcome To Betsmasterpro matches,We Offer \\ud83d\\udcaf Fixed Matches All Correct Scores,If You're Interested Call \\ud83d\\udcdeOr WhatsApp Us On \\ud83d\\udcf2+2349095386137.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1085,\"friends_count\":37,\"listed_count\":1,\"created_at\":\"Wed Nov 25 02:59:59 +0000 2020\",\"favourites_count\":1247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1931,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331432336127381504\\/1629374439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"815\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64920,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"816\":{\"id\":553943682,\"id_str\":\"553943682\",\"name\":\"The Quest Times\",\"screen_name\":\"thequesttimes\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigeria's most credible news website\",\"url\":\"https:\\/\\/t.co\\/YkKBpEFlz3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YkKBpEFlz3\",\"expanded_url\":\"http:\\/\\/thequesttimes.com\",\"display_url\":\"thequesttimes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34015,\"friends_count\":12859,\"listed_count\":35,\"created_at\":\"Sat Apr 14 21:52:37 +0000 2012\",\"favourites_count\":24631,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":49569,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530998775031930886\\/qa2beBd4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530998775031930886\\/qa2beBd4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/553943682\\/1653853640\",\"profile_link_color\":\"F58EA8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"817\":{\"id\":2787083009,\"id_str\":\"2787083009\",\"name\":\"Bible Wonderland NG\",\"screen_name\":\"BibleWonderLand\",\"location\":\"Surulere, Lagos, Nigeria\",\"description\":\"Nigeria's largest provider of Christian books and Church supplies. \\nWe're available at 08105682169, 08105682168. \\nEmail us at info@biblewonderlandng.com\",\"url\":\"https:\\/\\/t.co\\/gXvQszFK9R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gXvQszFK9R\",\"expanded_url\":\"http:\\/\\/www.biblewonderlandng.com\",\"display_url\":\"biblewonderlandng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1193,\"friends_count\":291,\"listed_count\":1,\"created_at\":\"Sat Sep 27 12:50:05 +0000 2014\",\"favourites_count\":774,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2214,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"3266CC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/747360541958615042\\/h7AR6azg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/747360541958615042\\/h7AR6azg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2787083009\\/1535170817\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"818\":{\"id\":4342153529,\"id_str\":\"4342153529\",\"name\":\"Mma\",\"screen_name\":\"obi_Jules\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"Massage Therapist | Radio Presenter | Voice Over Artist | Editor | Mobile Masseuse | CEO ZenSpa.\",\"url\":\"https:\\/\\/t.co\\/Z9kOxLxbCr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z9kOxLxbCr\",\"expanded_url\":\"http:\\/\\/www.julesempire.ng\",\"display_url\":\"julesempire.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":650,\"friends_count\":561,\"listed_count\":0,\"created_at\":\"Tue Dec 01 17:53:46 +0000 2015\",\"favourites_count\":4397,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":463,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502996225519464453\\/APpE70Sl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502996225519464453\\/APpE70Sl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4342153529\\/1542738004\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"819\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64920,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"820\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64920,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"821\":{\"id\":929978055497519104,\"id_str\":\"929978055497519104\",\"name\":\"Almost_Rich\",\"screen_name\":\"MOlorunkalu\",\"location\":\"Lagos Nigeria \",\"description\":\"NOT yOuR kInDa GuY|| Everything WIZKID IG: @meek_carti_\",\"url\":\"https:\\/\\/t.co\\/fB19NONknP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fB19NONknP\",\"expanded_url\":\"http:\\/\\/www.notjustok.me\",\"display_url\":\"notjustok.me\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":396,\"friends_count\":1348,\"listed_count\":1,\"created_at\":\"Mon Nov 13 07:43:41 +0000 2017\",\"favourites_count\":160,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1849,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1363133282490155015\\/PnBLb6K4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1363133282490155015\\/PnBLb6K4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/929978055497519104\\/1581489158\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"822\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"823\":{\"id\":1254048209036550144,\"id_str\":\"1254048209036550144\",\"name\":\"pharez_sdb\",\"screen_name\":\"SilverstoneDC\",\"location\":\"\",\"description\":\"Tomorrow is Now\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":887,\"listed_count\":0,\"created_at\":\"Sat Apr 25 14:03:06 +0000 2020\",\"favourites_count\":721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":183,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542508429851275264\\/sHQOec5J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542508429851275264\\/sHQOec5J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1254048209036550144\\/1654456552\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"824\":{\"id\":610702056,\"id_str\":\"610702056\",\"name\":\"GoldMyneTV\",\"screen_name\":\"GoldmyneTV\",\"location\":\"Lagos Nigeria\",\"description\":\"Goldmyne Creates Epic Content\",\"url\":\"https:\\/\\/t.co\\/iZTe27r9oX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iZTe27r9oX\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/goldmynetv\",\"display_url\":\"youtube.com\\/goldmynetv\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52374,\"friends_count\":9789,\"listed_count\":93,\"created_at\":\"Sun Jun 17 08:12:14 +0000 2012\",\"favourites_count\":1473,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":128190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540985176544739329\\/nkYKqfot_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540985176544739329\\/nkYKqfot_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/610702056\\/1526374907\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"825\":{\"id\":950297148624646144,\"id_str\":\"950297148624646144\",\"name\":\"Association for Fertility and Reproductive Health\",\"screen_name\":\"AFRHNig\",\"location\":\"Lagos, Nigeria\",\"description\":\"AFRH is a registered body whose main aim is to promote interest in, and understanding of, reproductive biology and medicine.\",\"url\":\"https:\\/\\/t.co\\/FJiFFszU9x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FJiFFszU9x\",\"expanded_url\":\"http:\\/\\/www.afrhnigeria.org\",\"display_url\":\"afrhnigeria.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":58,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Mon Jan 08 09:24:30 +0000 2018\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":134,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525074281453039622\\/0nyap8zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525074281453039622\\/0nyap8zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/950297148624646144\\/1652708068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"826\":{\"id\":765183391377592320,\"id_str\":\"765183391377592320\",\"name\":\"Fran\\u00e7ois Kahn\\ud83e\\udde4\\ud83e\\udde4\\u26bd\\ufe0f\",\"screen_name\":\"KasoaOliverKahn\",\"location\":\"Ghana \",\"description\":\"Bayern Munich -Ghana Fan Rep \\u2665\\ufe0f| Football Analyst | Bilingual | Wild Life enthusiast \\ud83d\\udc08\\u200d\\u2b1b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":779,\"friends_count\":766,\"listed_count\":0,\"created_at\":\"Mon Aug 15 13:48:32 +0000 2016\",\"favourites_count\":5592,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":652,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1444112157365387269\\/YKC8C40V_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1444112157365387269\\/YKC8C40V_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/765183391377592320\\/1633305513\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"827\":{\"id\":1275948939951386624,\"id_str\":\"1275948939951386624\",\"name\":\"Boakyewaa Asiamah\",\"screen_name\":\"BoakyewaaAsiam2\",\"location\":\"Kasoa, Ghana\",\"description\":\"Make sure you leave impact, when making it! God first!! Greatness Festering Inside of Me\\ud83d\\udd25\\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":84,\"friends_count\":149,\"listed_count\":0,\"created_at\":\"Thu Jun 25 00:28:44 +0000 2020\",\"favourites_count\":390,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":134,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543160332146941953\\/qkdcAzRA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543160332146941953\\/qkdcAzRA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"828\":{\"id\":1297264385367433217,\"id_str\":\"1297264385367433217\",\"name\":\"Baale_Of_Barcelona\",\"screen_name\":\"iamdannylaurels\",\"location\":\"Lagos, Nigeria\",\"description\":\"Content creator.\\nSport Analyst\\n proudly ladokite\\ud83d\\ude43\\nNo 1 Barcelona fan..\\nActivist\\nAmbassador for peace \\ud83d\\udd4a\\ufe0f and unity in Nigeria...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":596,\"friends_count\":666,\"listed_count\":0,\"created_at\":\"Sat Aug 22 20:08:38 +0000 2020\",\"favourites_count\":694,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546954940739981312\\/eqVB7NtM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546954940739981312\\/eqVB7NtM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1297264385367433217\\/1611335809\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"829\":{\"id\":1546236824464629760,\"id_str\":\"1546236824464629760\",\"name\":\"Emeka okoye\",\"screen_name\":\"Ezeego_of_igbo\",\"location\":\"Lagos Nigeria \",\"description\":\"Humble Guy\\nBUSINESS MAN CEO NEOPERFECT NIG ENTERPRISE.(RC :3595181) CEO @neoperfect_merchandise_ on IG.\\nOld accounts blocked pls follow I will follow back.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":121,\"friends_count\":475,\"listed_count\":0,\"created_at\":\"Sun Jul 10 20:56:15 +0000 2022\",\"favourites_count\":70,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546236824464629760\\/1657486858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"830\":{\"id\":1316640380151046144,\"id_str\":\"1316640380151046144\",\"name\":\"Oluwaloni_eefa\",\"screen_name\":\"oluwanonieefa\",\"location\":\"Lagos, Nigeria\",\"description\":\"I WANT ATTENTION \\nI'M AN ARTIST \\nSong writer\\nsinger \\nrapper\\n@oluwaloni_eefa on ig \\n\\ud83e\\udde1\\u2b50\\nASABADBOY \\nI'MJUSTABREASTLOVER\\ud83e\\udde1\\n#fan know as #eefans\",\"url\":\"https:\\/\\/t.co\\/HokMftJ4lZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HokMftJ4lZ\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/oluwaloni_eefa\",\"display_url\":\"audiomack.com\\/oluwaloni_eefa\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Thu Oct 15 07:21:59 +0000 2020\",\"favourites_count\":242,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1474700412875907078\\/7dSBXmaV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1474700412875907078\\/7dSBXmaV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316640380151046144\\/1641064340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"831\":{\"id\":375314790,\"id_str\":\"375314790\",\"name\":\"ojarx\",\"screen_name\":\"Ojarikreclement\",\"location\":\"Lagos, Nigeria\",\"description\":\"Product Guy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Sat Sep 17 22:21:15 +0000 2011\",\"favourites_count\":461,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":293,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541526786974126081\\/89DcYkuI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541526786974126081\\/89DcYkuI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/375314790\\/1656363942\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"832\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64920,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"833\":{\"id\":1520357760,\"id_str\":\"1520357760\",\"name\":\"Comrade Akpos\",\"screen_name\":\"Iam_Gpphilipson\",\"location\":\"Lagos, Nigeria\",\"description\":\"Looking forward for 2023 Nigeria Election, Vote Peter Obi\\nNigeria to the moon \\ud83d\\udcc8\\nif you Banter me, Peace isn't an Option.\\n\\n#Bitcoin \\n#Ethereum\\n#Bnb\\n#XRp\\n#Zen\",\"url\":\"https:\\/\\/t.co\\/PkDjpFVoM6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PkDjpFVoM6\",\"expanded_url\":\"http:\\/\\/myamibo.blogspot.com\",\"display_url\":\"myamibo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1349,\"friends_count\":3785,\"listed_count\":8,\"created_at\":\"Sat Jun 15 20:41:15 +0000 2013\",\"favourites_count\":12842,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15601,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541720304761929728\\/aSpURyrx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541720304761929728\\/aSpURyrx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520357760\\/1655019580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"834\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"835\":{\"id\":1505679898324656131,\"id_str\":\"1505679898324656131\",\"name\":\"CAMPUS GIST TV \\ud83d\\udcfa\",\"screen_name\":\"Splendidprince0\",\"location\":\"Anambra, Nigeria\",\"description\":\"Your sure plug on all campus gist and Gossips in Naija and more Follow us on whatsapp 09031931285 For all your campus stories and gist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1145,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Sun Mar 20 22:58:04 +0000 2022\",\"favourites_count\":3137,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505685096778588163\\/vESOXnW2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505685096778588163\\/vESOXnW2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1505679898324656131\\/1651148817\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"836\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"837\":{\"id\":1312749556816322560,\"id_str\":\"1312749556816322560\",\"name\":\"Fasasi Jnr\",\"screen_name\":\"1880Tgold\",\"location\":\"Lagos, Nigeria\",\"description\":\"One of the best ways to broaden your horizon about life and increase your chances is by investing in yourself. https:\\/\\/t.co\\/58RmodNPYp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/58RmodNPYp\",\"expanded_url\":\"https:\\/\\/payhip.com\\/WEBOKI?af=af62e74a689695a\",\"display_url\":\"payhip.com\\/WEBOKI?af=af62\\u2026\",\"indices\":[111,134]}]}},\"protected\":false,\"followers_count\":65,\"friends_count\":156,\"listed_count\":0,\"created_at\":\"Sun Oct 04 13:41:34 +0000 2020\",\"favourites_count\":168,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":300,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1312758413986869250\\/RNPhdHrk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1312758413986869250\\/RNPhdHrk_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"838\":{\"id\":967901732591292416,\"id_str\":\"967901732591292416\",\"name\":\"\\u0623\\u0646\\u0627 \\u062d\\u0644\\u064a\\u0641\\u0629\\ud83d\\ude0e\\ud83c\\uddf7\\ud83c\\uddfa\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Fagman01\",\"location\":\"Nigeria\",\"description\":\"investor khalifar \\u263a\\ufe0f\\ud83d\\udc94\\ud83d\\udcaf\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf7\\ud83c\\uddfa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":164,\"listed_count\":3,\"created_at\":\"Sun Feb 25 23:18:50 +0000 2018\",\"favourites_count\":2649,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527357872136343556\\/t21Eo-vi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527357872136343556\\/t21Eo-vi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/967901732591292416\\/1637146612\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"839\":{\"id\":1339568078410178560,\"id_str\":\"1339568078410178560\",\"name\":\"Francis Umendiego\",\"screen_name\":\"doziego\",\"location\":\"Abuja, Nigeria\",\"description\":\"Ph.D In View || Governance-Policy Researcher || Program Management Specialist || Friedrich Ebert Stiftung OMYV 2022 Fellow || @UN #SDGs 2030\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":329,\"friends_count\":2807,\"listed_count\":4,\"created_at\":\"Thu Dec 17 13:48:25 +0000 2020\",\"favourites_count\":8709,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551873046134267905\\/-E1UKgJS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551873046134267905\\/-E1UKgJS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1339568078410178560\\/1659312182\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"840\":{\"id\":1550114284276830213,\"id_str\":\"1550114284276830213\",\"name\":\"Slimtalker\",\"screen_name\":\"Slimtalker2\",\"location\":\"Nigeria\",\"description\":\"bookings :kinikadaniel123@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Thu Jul 21 13:43:50 +0000 2022\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551155235187556354\\/U8mdZnnl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551155235187556354\\/U8mdZnnl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550114284276830213\\/1658411644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"841\":{\"id\":1235237327439568896,\"id_str\":\"1235237327439568896\",\"name\":\"omoleye victor\",\"screen_name\":\"omoleye_victor\",\"location\":\"Nigeria\",\"description\":\"Digital marketer|| book promoter || graphics designer|| store promoter || social media manager||photographer||\",\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/omoleyevictor\",\"display_url\":\"fiverr.com\\/omoleyevictor\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":836,\"listed_count\":0,\"created_at\":\"Wed Mar 04 16:15:21 +0000 2020\",\"favourites_count\":89,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235237327439568896\\/1658497278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"842\":{\"id\":1399979771770122242,\"id_str\":\"1399979771770122242\",\"name\":\"vintagebraidedwigs\",\"screen_name\":\"vintagebraidwig\",\"location\":\"Nigeria\",\"description\":\"Our business is proudly black owned \\u270a\\ud83c\\udfffand our wigs are made specially for you with love \\ud83d\\udc95and care\\ud83e\\udd70. IG\\/FB\\/TK: @vintagebraidedwigs \\ud83c\\udf0d\\ud83d\\udce6\",\"url\":\"https:\\/\\/t.co\\/o6b52ckSlC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o6b52ckSlC\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/VintageHairs\",\"display_url\":\"linktr.ee\\/VintageHairs\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Jun 02 06:42:56 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":133,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1464242654435282949\\/v9VjS9ad_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1464242654435282949\\/v9VjS9ad_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399979771770122242\\/1637937644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"843\":{\"id\":1235237327439568896,\"id_str\":\"1235237327439568896\",\"name\":\"omoleye victor\",\"screen_name\":\"omoleye_victor\",\"location\":\"Nigeria\",\"description\":\"Digital marketer|| book promoter || graphics designer|| store promoter || social media manager||photographer||\",\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/omoleyevictor\",\"display_url\":\"fiverr.com\\/omoleyevictor\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":836,\"listed_count\":0,\"created_at\":\"Wed Mar 04 16:15:21 +0000 2020\",\"favourites_count\":89,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235237327439568896\\/1658497278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"844\":{\"id\":1469988138982547458,\"id_str\":\"1469988138982547458\",\"name\":\"world_wide\",\"screen_name\":\"w_w_accessories\",\"location\":\"Lagos, Nigeria\",\"description\":\"Home of car interior decor\\n\\ud83d\\ude97\\ud83d\\udefb\\ud83d\\ude98\\ud83d\\ude96\\nshop 49 D3 Aspmda lagos.\\n\\nOur name is WORLD-WIDE.\\n\\nlet's be ur choice for all car accessories \\ud83e\\udd85\\ud83c\\udf10\\n\\n#caraccessories\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":54,\"listed_count\":3,\"created_at\":\"Sun Dec 12 11:11:07 +0000 2021\",\"favourites_count\":119,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":89,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555668500563345408\\/40mOliMP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555668500563345408\\/40mOliMP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1469988138982547458\\/1658226306\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"845\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"846\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"847\":{\"id\":602839866,\"id_str\":\"602839866\",\"name\":\"Ali Aiyes\",\"screen_name\":\"AliAiyes\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":36,\"listed_count\":2,\"created_at\":\"Fri Jun 08 13:28:23 +0000 2012\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":310,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351809954286546945\\/kCjc4w1D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351809954286546945\\/kCjc4w1D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/602839866\\/1611131632\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"848\":{\"id\":1375465426260480004,\"id_str\":\"1375465426260480004\",\"name\":\"Glory | Glowhubdesign | GD\",\"screen_name\":\"globlog3\",\"location\":\"Nigeria\",\"description\":\"I'm a Graphic designer, I will visualize and communicate your message simply and incredibly.\",\"url\":\"https:\\/\\/t.co\\/iYC5asLAUh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iYC5asLAUh\",\"expanded_url\":\"http:\\/\\/www.glowhubgraphics.blogspot.com\",\"display_url\":\"glowhubgraphics.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Fri Mar 26 15:11:43 +0000 2021\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542963720644698112\\/2yDlyVq-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542963720644698112\\/2yDlyVq-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375465426260480004\\/1659208235\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"849\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"850\":{\"id\":822024954246000640,\"id_str\":\"822024954246000640\",\"name\":\"M-Jeezy\",\"screen_name\":\"NwonualaHope\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Geologist, Entrepreneur.\\n\\nMasculine Energy\\/ALPHA\\nHuman right activist\\/An activist for good governance.\\n\\nFully Obi-dient\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Thu Jan 19 10:16:36 +0000 2017\",\"favourites_count\":8576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"851\":{\"id\":1021863700838469633,\"id_str\":\"1021863700838469633\",\"name\":\"Hizbuzz\",\"screen_name\":\"xo_luxury_store\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified cloth dealer \\ud83d\\udd0c\\ud83c\\udf3c. We deal with all kind of clothes\\ud83d\\udc55, shoes\\ud83d\\udc5f\\ud83d\\udc5e, boxers, bags\\ud83c\\udf92, trousers, sun shade glasses\\ud83d\\udc53 Chelsea fc\\ud83d\\udc99 @mateokovacic8 fan\",\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348138512629\",\"display_url\":\"wa.me\\/+2348138512629\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":1160,\"listed_count\":0,\"created_at\":\"Tue Jul 24 21:04:26 +0000 2018\",\"favourites_count\":40842,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33102,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1021863700838469633\\/1603448863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"852\":{\"id\":865322296050950144,\"id_str\":\"865322296050950144\",\"name\":\"Jay Dee Akaa\",\"screen_name\":\"jay_dee_akaa\",\"location\":\"FCT Abuja, Nigeria\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"\\ud83d\\udcfbRadio Presenter\\/Producer, DJ\\/Music Promoter, Corporate MC, Red Carpet Host. \\nFor Radio Interview\\/Song Promo\\/Adverts \\ud83d\\udc4907087033250, Instagram: jay_dee_akaa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2051,\"friends_count\":1643,\"listed_count\":0,\"created_at\":\"Thu May 18 21:44:47 +0000 2017\",\"favourites_count\":63615,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865322296050950144\\/1652079426\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"853\":{\"id\":1527244489454243843,\"id_str\":\"1527244489454243843\",\"name\":\"lumyboy\",\"screen_name\":\"lumy01609368\",\"location\":\"\",\"description\":\"content creator \\/influencer\\nMeet my house girl \\ud83d\\ude0a\\ni:g:@lumyboy\\ntiktok:@itslumyboy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Thu May 19 11:07:32 +0000 2022\",\"favourites_count\":24,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527266700994961409\\/Nv1KwrfB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527266700994961409\\/Nv1KwrfB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1527244489454243843\\/1652963947\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"854\":{\"id\":3639778217,\"id_str\":\"3639778217\",\"name\":\"LarrieOluksCreative\",\"screen_name\":\"larrieoluks\",\"location\":\"Lagos,Nigeria\",\"description\":\"Cinematographer||Photographer||Creative Director.\\n\\u2022Weddings \\u2022Portraits \\u2022Documentary {\\ud83d\\udcf8\\ud83c\\udfa5}\\nArsenalFC fan\\u2764\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":246,\"friends_count\":223,\"listed_count\":3,\"created_at\":\"Sun Sep 13 07:28:32 +0000 2015\",\"favourites_count\":2364,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2063,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554040336187625472\\/wOLhecvX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554040336187625472\\/wOLhecvX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3639778217\\/1616082002\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"855\":{\"id\":1160690442725466112,\"id_str\":\"1160690442725466112\",\"name\":\"Emmanuel Max\",\"screen_name\":\"emmanul_max\",\"location\":\"Nigeria\",\"description\":\"Everyday Vibez \\nlet's be for Real \\ud83d\\ude0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":247,\"friends_count\":290,\"listed_count\":0,\"created_at\":\"Sun Aug 11 23:12:20 +0000 2019\",\"favourites_count\":2760,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":185,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482195175225057282\\/xc1dbFuD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482195175225057282\\/xc1dbFuD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1160690442725466112\\/1590059591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"856\":{\"id\":776462429668642817,\"id_str\":\"776462429668642817\",\"name\":\"makuachukwu Momegha\",\"screen_name\":\"makuachukwuMom1\",\"location\":\"Anambra, Nigeria\",\"description\":\"I'm Meek|| Discipline || Honest ||\\nCrypto Enthusiast || Stock Enthusiast || Pi Network Enthusiast || Pi Network Ambassador .\\nFootball Enthusiast @chelseafc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64,\"friends_count\":490,\"listed_count\":10,\"created_at\":\"Thu Sep 15 16:47:24 +0000 2016\",\"favourites_count\":2439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2287,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548653840874061825\\/e7ytSmuM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548653840874061825\\/e7ytSmuM_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"857\":{\"id\":2280011326,\"id_str\":\"2280011326\",\"name\":\"Enoch Nwokike\",\"screen_name\":\"MarsSolar__\",\"location\":\"Nigeria\",\"description\":\"Solar Energy Oriented\\n Dealer\\nStreet Lights\\nSolar Panel\\nBattery \\nInverter\\nRechargeables\\nfor business contact:\\nmarssolarandelectric@gmail.com 08146406709\",\"url\":\"https:\\/\\/t.co\\/f5QoD0dDEA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f5QoD0dDEA\",\"expanded_url\":\"http:\\/\\/enochnwokike.9.facebook.com\",\"display_url\":\"enochnwokike.9.facebook.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":60,\"listed_count\":0,\"created_at\":\"Mon Jan 13 21:37:59 +0000 2014\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":167,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517440926930583561\\/MEq7vb4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517440926930583561\\/MEq7vb4D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2280011326\\/1650621083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"858\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"859\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"860\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"861\":{\"id\":1460584214563364874,\"id_str\":\"1460584214563364874\",\"name\":\"Christian Uchenna\",\"screen_name\":\"Christi07919961\",\"location\":\"Niger, Nigeria\",\"description\":\"Music minister\\ud83c\\udf99\\ufe0fpastor\\ud83c\\udfa4Entrepreneur\\ud83c\\udf49 Agriculturist\\ud83c\\udf4d Fun to be with\\ud83d\\ude00 Unapologetically a Christian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":266,\"listed_count\":5,\"created_at\":\"Tue Nov 16 12:23:55 +0000 2021\",\"favourites_count\":559,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":437,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460584417433374721\\/zfvm-Ynf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460584417433374721\\/zfvm-Ynf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"862\":{\"id\":171890315,\"id_str\":\"171890315\",\"name\":\"Martins Obaseki\",\"screen_name\":\"M_Obaseki\",\"location\":\"Uyo, Nigeria\",\"description\":\"Data Freak | Finance \\ud83d\\udcb0 | Engineer \\ud83d\\udc68\\ud83c\\udffe\\u200d\\ud83d\\udd27| Tech lover\\ud83d\\udcbb #EndSARS \\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/N2OrpMszdi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N2OrpMszdi\",\"expanded_url\":\"https:\\/\\/martinsobaseki.netlify.app\\/\",\"display_url\":\"martinsobaseki.netlify.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":717,\"friends_count\":1775,\"listed_count\":7,\"created_at\":\"Wed Jul 28 12:26:43 +0000 2010\",\"favourites_count\":3357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15046,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540363749839835136\\/OIXsG-o__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540363749839835136\\/OIXsG-o__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/171890315\\/1624824361\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"863\":{\"id\":1120285676325326848,\"id_str\":\"1120285676325326848\",\"name\":\"Asopalace Properties\",\"screen_name\":\"aso_palace\",\"location\":\"Nigeria\",\"description\":\"Asopalace Nigeria Limited \\/Registered\\/ Land & Real Estate Markerter\\/ C.A.C No. 1027771.Other services: House Short-let\\/Rent\\/Construction\\/Development 07043373145\",\"url\":\"https:\\/\\/t.co\\/9HWmB3pFC6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9HWmB3pFC6\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/CS27OKURRNP4I1\",\"display_url\":\"wa.me\\/message\\/CS27OK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Mon Apr 22 11:18:13 +0000 2019\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":33,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549428501282947074\\/juAXtFsi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549428501282947074\\/juAXtFsi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120285676325326848\\/1658247515\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"864\":{\"id\":808974325474852864,\"id_str\":\"808974325474852864\",\"name\":\"sheiscatherine___\",\"screen_name\":\"katy_kenzy\",\"location\":\"Kaduna \",\"description\":\"personality is What counts. Be you!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Wed Dec 14 09:58:04 +0000 2016\",\"favourites_count\":1847,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":301,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1332802379784335365\\/3eK3P3bO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1332802379784335365\\/3eK3P3bO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/808974325474852864\\/1606599975\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"865\":{\"id\":230109458,\"id_str\":\"230109458\",\"name\":\"hify\\u2122\",\"screen_name\":\"hify_2\",\"location\":\"Lagos, Nigeria\",\"description\":\"above the cloud...\\nMEMBER OF LEO CLUB\\n\\n#teamchelsea,\\n#teamBIG5ive...\\nIG: @hify_2\\n#Sagittarius\",\"url\":\"https:\\/\\/t.co\\/mfwsOjHL13\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mfwsOjHL13\",\"expanded_url\":\"http:\\/\\/hifyme.wordpress.com\",\"display_url\":\"hifyme.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":487,\"friends_count\":652,\"listed_count\":0,\"created_at\":\"Fri Dec 24 08:56:42 +0000 2010\",\"favourites_count\":12633,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16896,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ABB8C2\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509577241524584464\\/A9JhrGJP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509577241524584464\\/A9JhrGJP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/230109458\\/1640725032\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"866\":{\"id\":987897642,\"id_str\":\"987897642\",\"name\":\"Victor Alex\",\"screen_name\":\"victordeyforyou\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m a massive fan of Jose Mourinho and Cristiano Ronaldo that sums up everything you need to know about me. tweetabout mou and Ronaldo you will get my attention\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2312,\"friends_count\":3095,\"listed_count\":12,\"created_at\":\"Tue Dec 04 03:01:52 +0000 2012\",\"favourites_count\":21077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26516,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554725449787482112\\/YcnBFZa2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554725449787482112\\/YcnBFZa2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/987897642\\/1659510418\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"867\":{\"id\":932398437831774208,\"id_str\":\"932398437831774208\",\"name\":\"uncleolatv\",\"screen_name\":\"uncle3olafood\",\"location\":\"Lagos, Nigeria\",\"description\":\"Actor\\nyou can subscribe to my YouTube CHANNEL \\nhttps:\\/\\/t.co\\/PoaTv0EzyZ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PoaTv0EzyZ\",\"expanded_url\":\"http:\\/\\/youtube.com\\/uncleolatv\",\"display_url\":\"youtube.com\\/uncleolatv\",\"indices\":[47,70]}]}},\"protected\":false,\"followers_count\":226,\"friends_count\":948,\"listed_count\":0,\"created_at\":\"Mon Nov 20 00:01:25 +0000 2017\",\"favourites_count\":317,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546692679463059456\\/T2LaESTV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546692679463059456\\/T2LaESTV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932398437831774208\\/1652871729\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"868\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"869\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"870\":{\"id\":1087257244306231296,\"id_str\":\"1087257244306231296\",\"name\":\"Breeze Okoye\",\"screen_name\":\"breeze_okoye\",\"location\":\"Anambra, Nigeria\",\"description\":\"CHELSEA FC \\ud83d\\udc99\\ud83d\\udc99Ronaldo all day \\u2764\\ufe0f\\u2764\\ufe0f lover of African culture and also a karid entity \\ud83d\\udc49\\ud83c\\udffe\\ud83d\\udc48\\ud83c\\udffe lover of Peter OBi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":612,\"friends_count\":624,\"listed_count\":0,\"created_at\":\"Mon Jan 21 07:55:02 +0000 2019\",\"favourites_count\":78598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":644,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509089524411998212\\/Xiy9xCw1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509089524411998212\\/Xiy9xCw1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1087257244306231296\\/1551721042\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"871\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"872\":{\"id\":770821664250757124,\"id_str\":\"770821664250757124\",\"name\":\"Godswill Asuquo\",\"screen_name\":\"Gafexian_Zone\",\"location\":\"Nigeria\",\"description\":\"Pencil and biro Artist | Graphic designer | Architect | Chelsea FC | Lover of classical music | Deo ac veritati\",\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/gafexianzone\",\"display_url\":\"facebook.com\\/gafexianzone\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":591,\"listed_count\":0,\"created_at\":\"Wed Aug 31 03:13:00 +0000 2016\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"873\":{\"id\":1193618822726590464,\"id_str\":\"1193618822726590464\",\"name\":\"Ch\\u00e1mila J\",\"screen_name\":\"Queen_Chamila\",\"location\":\"Lagos, Nigeria\",\"description\":\"QUEEN\\ud83d\\udc51\\ud83c\\udfdd\\ufe0f|| Art lover||Aspiring model||Nature Photography||#WID||#Maraverse\",\"url\":\"https:\\/\\/t.co\\/zkwc61r5JA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zkwc61r5JA\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/queen_chamila\\/\",\"display_url\":\"instagram.com\\/queen_chamila\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":238,\"listed_count\":0,\"created_at\":\"Sun Nov 10 19:58:15 +0000 2019\",\"favourites_count\":262,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":87,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549043912525975561\\/QyHkDTmk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549043912525975561\\/QyHkDTmk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1193618822726590464\\/1658155984\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"874\":{\"id\":1337900128980639744,\"id_str\":\"1337900128980639744\",\"name\":\"Jbankz\",\"screen_name\":\"meetJbankz\",\"location\":\"Nigeria\",\"description\":\"|| Musician || Song Writer ||\\nThe New EP,\\n#ELEVATE\\n\\\"now out on all music streaming platforms\",\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"expanded_url\":\"https:\\/\\/orcd.co\\/jbankz-elevate\",\"display_url\":\"orcd.co\\/jbankz-elevate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":2276,\"listed_count\":1,\"created_at\":\"Sat Dec 12 23:20:37 +0000 2020\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337900128980639744\\/1616501762\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"875\":{\"id\":501666079,\"id_str\":\"501666079\",\"name\":\"lastofmykind \\ud83d\\udd1e\",\"screen_name\":\"Ugondabai\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2651 \\nE. S. S. E. N. T. R. I. C\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":574,\"friends_count\":332,\"listed_count\":3,\"created_at\":\"Fri Feb 24 10:55:22 +0000 2012\",\"favourites_count\":33273,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484676772843204610\\/bpKeolpA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484676772843204610\\/bpKeolpA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/501666079\\/1659705148\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"876\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6919,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"877\":{\"id\":1211809838243565570,\"id_str\":\"1211809838243565570\",\"name\":\"Wisdom Udo\",\"screen_name\":\"Wisdom_udoson\",\"location\":\"Lagos, Nigeria\",\"description\":\"Journalist \\ud83d\\udcccPR&Tech Enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Tue Dec 31 00:42:54 +0000 2019\",\"favourites_count\":152,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316692101120303104\\/oEN4Avdz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316692101120303104\\/oEN4Avdz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1211809838243565570\\/1602758949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"878\":{\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"name\":\"AsabariConsultativeCouncil\",\"screen_name\":\"Asabari_CC\",\"location\":\"Saki, Nigeria\",\"description\":\"Official Twitter handle, Asabari Consultative Council, Saki Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Sat Feb 17 04:38:51 +0000 2018\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":794,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"879\":{\"id\":1361392900769255428,\"id_str\":\"1361392900769255428\",\"name\":\"CityScoopNews Gh\",\"screen_name\":\"Cityscoopgh\",\"location\":\"Ghana\",\"description\":\"welcome to City Scoop News Gh. we bring you the best of news across the world. please subscribe to our YouTube channel for more content. Thank you \\ud83d\\ude4f\",\"url\":\"https:\\/\\/t.co\\/up0JbkvYwm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/up0JbkvYwm\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCVS3zzLqmHwpw3S0Fa5_glQ\",\"display_url\":\"youtube.com\\/channel\\/UCVS3z\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":282,\"friends_count\":265,\"listed_count\":0,\"created_at\":\"Mon Feb 15 19:12:52 +0000 2021\",\"favourites_count\":1081,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":289,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527719586329673731\\/kHNTXKt__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527719586329673731\\/kHNTXKt__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1361392900769255428\\/1653312336\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"880\":{\"id\":272182927,\"id_str\":\"272182927\",\"name\":\"EMMATRILLION!!!, IF U NO BELIEVE REST.\",\"screen_name\":\"gifshizzle\",\"location\":\"Abuja\",\"description\":\"Data specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":562,\"friends_count\":695,\"listed_count\":0,\"created_at\":\"Sat Mar 26 00:36:10 +0000 2011\",\"favourites_count\":4337,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15895,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550961072819027968\\/E2QaFE8J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550961072819027968\\/E2QaFE8J_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"881\":{\"id\":1310558404117696512,\"id_str\":\"1310558404117696512\",\"name\":\"offkid\",\"screen_name\":\"offkidayo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Skul na scam crooner\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":102,\"listed_count\":0,\"created_at\":\"Mon Sep 28 12:34:21 +0000 2020\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":429,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488631623180595213\\/tNAnH9Bx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488631623180595213\\/tNAnH9Bx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1310558404117696512\\/1643752412\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"882\":{\"id\":1695778105,\"id_str\":\"1695778105\",\"name\":\"Tinubufrontier\",\"screen_name\":\"Tinubufrontier\",\"location\":\"NIGERIA\",\"description\":\"Towards The Actualization Of The Presidential Mandate Of Asiwaju Bola Ahmed Tinubu ll Retweet not an endorsement!!\",\"url\":\"https:\\/\\/t.co\\/1eDZ4240o3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1eDZ4240o3\",\"expanded_url\":\"http:\\/\\/www.apcyouthfrontierng.com\",\"display_url\":\"apcyouthfrontierng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27332,\"friends_count\":2457,\"listed_count\":39,\"created_at\":\"Sat Aug 24 06:46:06 +0000 2013\",\"favourites_count\":72875,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":59129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/474939940741332993\\/NwvxFiMZ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/474939940741332993\\/NwvxFiMZ_normal.jpeg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"883\":{\"id\":939476737628524544,\"id_str\":\"939476737628524544\",\"name\":\"#BBNAIJA #BreakingNews\",\"screen_name\":\"nnheadlines\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your source for entertainment news, politics, celebrities, sports, celeb news, #BreakingNews For adverts & promotions \\ud83d\\udc47info@nigeriannewsheadlines.com\",\"url\":\"https:\\/\\/t.co\\/zWLnfUrBAQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zWLnfUrBAQ\",\"expanded_url\":\"https:\\/\\/nigeriannewsheadlines.com\",\"display_url\":\"nigeriannewsheadlines.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2943,\"friends_count\":4765,\"listed_count\":8,\"created_at\":\"Sat Dec 09 12:48:03 +0000 2017\",\"favourites_count\":22570,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":109572,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524322272688889858\\/lQ5LsU5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524322272688889858\\/lQ5LsU5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/939476737628524544\\/1652450071\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"884\":{\"id\":1388772825905963011,\"id_str\":\"1388772825905963011\",\"name\":\"Black Diamond BLD\",\"screen_name\":\"BlackdiamondBLD\",\"location\":\"Nigeria\",\"description\":\"BLACKDIAMOND(BLD) just launched on pancakeswap 0xa49a87f02bc830fb3c4a8afd56d977171ec12553 let\\u2019s make it the next big thing join us https:\\/\\/t.co\\/klJjtKb7LZ\",\"url\":\"https:\\/\\/t.co\\/fOkSAL4v2p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fOkSAL4v2p\",\"expanded_url\":\"https:\\/\\/bldtoken.com\",\"display_url\":\"bldtoken.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/klJjtKb7LZ\",\"expanded_url\":\"https:\\/\\/t.me\\/BlackDiamondBLD\",\"display_url\":\"t.me\\/BlackDiamondBLD\",\"indices\":[131,154]}]}},\"protected\":false,\"followers_count\":344,\"friends_count\":409,\"listed_count\":25,\"created_at\":\"Sun May 02 08:30:31 +0000 2021\",\"favourites_count\":701,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":768,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417063910511947779\\/uRh-1VaQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417063910511947779\\/uRh-1VaQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1388772825905963011\\/1626689340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"885\":{\"id\":956552583170142209,\"id_str\":\"956552583170142209\",\"name\":\"Jessy\",\"screen_name\":\"lastborn_jess\",\"location\":\"Lagos, Nigeria\",\"description\":\"Lover of good food\\ud83d\\ude0b and vibes\\/\\/MAN U\\u2763\\ufe0f\\/\\/NoStressZone\\/\\/Customer Service Executive\\/\\/Event Planner\\/\\/Lastborn\\/\\/IG:@sheisjessy \\/\\/VB: 1011896287\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":799,\"friends_count\":797,\"listed_count\":0,\"created_at\":\"Thu Jan 25 15:41:22 +0000 2018\",\"favourites_count\":11595,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1506750658157948929\\/WBcbf5YI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1506750658157948929\\/WBcbf5YI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/956552583170142209\\/1609541837\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"886\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"887\":{\"id\":1021863700838469633,\"id_str\":\"1021863700838469633\",\"name\":\"Hizbuzz\",\"screen_name\":\"xo_luxury_store\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified cloth dealer \\ud83d\\udd0c\\ud83c\\udf3c. We deal with all kind of clothes\\ud83d\\udc55, shoes\\ud83d\\udc5f\\ud83d\\udc5e, boxers, bags\\ud83c\\udf92, trousers, sun shade glasses\\ud83d\\udc53 Chelsea fc\\ud83d\\udc99 @mateokovacic8 fan\",\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348138512629\",\"display_url\":\"wa.me\\/+2348138512629\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":1160,\"listed_count\":0,\"created_at\":\"Tue Jul 24 21:04:26 +0000 2018\",\"favourites_count\":40842,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33102,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1021863700838469633\\/1603448863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"888\":{\"id\":1553286102538133511,\"id_str\":\"1553286102538133511\",\"name\":\"Swag\",\"screen_name\":\"Uma_zum\",\"location\":\"\",\"description\":\"Oneness\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Sat Jul 30 07:47:39 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":31,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553286446794031104\\/3GPiZxGE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553286446794031104\\/3GPiZxGE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553286102538133511\\/1659517814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"889\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"890\":{\"id\":1481189314226798593,\"id_str\":\"1481189314226798593\",\"name\":\"Priceless\",\"screen_name\":\"Priceless002\",\"location\":\"Lagos, Nigeria\",\"description\":\"Fun to be with and very naughty \\ud83d\\udc49\\ud83d\\udc4c\\ud83d\\udca6 \\ud83d\\ude1c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":80,\"friends_count\":108,\"listed_count\":8,\"created_at\":\"Wed Jan 12 09:00:50 +0000 2022\",\"favourites_count\":628,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":162,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553347102331256834\\/wFrE14uJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553347102331256834\\/wFrE14uJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481189314226798593\\/1642068548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"891\":{\"id\":1278287668938448899,\"id_str\":\"1278287668938448899\",\"name\":\"Stevie \\u2642\\ufe0f\",\"screen_name\":\"StEvIe_Alo\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm an ARTIST \\ud83c\\udfa8 @alo_stevie on I.g\\nI'm a PHOTOGRAPHER \\ud83d\\udcf8\\n@halography_ on Instagram\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":263,\"friends_count\":321,\"listed_count\":0,\"created_at\":\"Wed Jul 01 11:21:56 +0000 2020\",\"favourites_count\":15429,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6685,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1278287668938448899\\/1646841113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"892\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2657,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2054,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"893\":{\"id\":3187033583,\"id_str\":\"3187033583\",\"name\":\"Obet Of Africa\",\"screen_name\":\"obetobetta\",\"location\":\"Lagos\",\"description\":\"A political Scientist and Educationist\",\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/_obet_jr\\/\",\"display_url\":\"instagram.com\\/_obet_jr\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Mon Apr 20 12:32:05 +0000 2015\",\"favourites_count\":446,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3187033583\\/1644142736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"894\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"895\":{\"id\":1157629744827043841,\"id_str\":\"1157629744827043841\",\"name\":\"Ay\\u1ecd\\u0300b\\u00e1mi\",\"screen_name\":\"theayobami_\",\"location\":\"Lagos\",\"description\":\"No Way Down\",\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/theayobami_\",\"display_url\":\"linktr.ee\\/theayobami_\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":492,\"friends_count\":198,\"listed_count\":0,\"created_at\":\"Sat Aug 03 12:30:13 +0000 2019\",\"favourites_count\":1074,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":913,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1157629744827043841\\/1658829676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"896\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"897\":{\"id\":810000148277301248,\"id_str\":\"810000148277301248\",\"name\":\"Tipcy J. . .\",\"screen_name\":\"Tipcy_Jaej\",\"location\":\"Nigeria\",\"description\":\"Beats by Jay\\n\\nPlease stream IF EP\\nhttps:\\/\\/t.co\\/VhEu1zNXuA\\n \\nhttps:\\/\\/t.co\\/U8J44H57AN\",\"url\":\"https:\\/\\/t.co\\/WsZ6sELp8v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WsZ6sELp8v\",\"expanded_url\":\"https:\\/\\/soundcloud.com\\/user-505499138\",\"display_url\":\"soundcloud.com\\/user-505499138\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VhEu1zNXuA\",\"expanded_url\":\"https:\\/\\/youtube.com\\/playlist?list=OLAK5uy_mhpJvdLKGLwgjZl5wO_9CQfmFL8qldJ3s\",\"display_url\":\"youtube.com\\/playlist?list=\\u2026\",\"indices\":[34,57]},{\"url\":\"https:\\/\\/t.co\\/U8J44H57AN\",\"expanded_url\":\"http:\\/\\/tipcyjaej.fanlink.to\\/gM7W\",\"display_url\":\"tipcyjaej.fanlink.to\\/gM7W\",\"indices\":[60,83]}]}},\"protected\":false,\"followers_count\":1018,\"friends_count\":1009,\"listed_count\":1,\"created_at\":\"Sat Dec 17 05:54:19 +0000 2016\",\"favourites_count\":24385,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20912,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485490254509400066\\/UfbWR00O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485490254509400066\\/UfbWR00O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/810000148277301248\\/1643003533\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"898\":{\"id\":1517237838210904065,\"id_str\":\"1517237838210904065\",\"name\":\"ANIK\\u00a3\\ud83e\\udd70\\u2665\\ufe0f\",\"screen_name\":\"Anike_olofada\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":158,\"listed_count\":0,\"created_at\":\"Thu Apr 21 20:24:54 +0000 2022\",\"favourites_count\":474,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517241409308348418\\/60s1x9yp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517241409308348418\\/60s1x9yp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"899\":{\"id\":2726051293,\"id_str\":\"2726051293\",\"name\":\"Firmus Advisory\",\"screen_name\":\"Firmus_Advisory\",\"location\":\"Accra, Ghana\",\"description\":\"Your preferred consulting firm for Business Regulatory Compliance, Social\\/Market Research and Trade Development.\",\"url\":\"https:\\/\\/t.co\\/JwJNMqQoM2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JwJNMqQoM2\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/FirmusAdvisory\",\"display_url\":\"linktr.ee\\/FirmusAdvisory\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":347,\"friends_count\":436,\"listed_count\":1,\"created_at\":\"Tue Aug 12 11:50:09 +0000 2014\",\"favourites_count\":559,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1380,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1214885006914572290\\/04TAcbVq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1214885006914572290\\/04TAcbVq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2726051293\\/1622119726\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"900\":{\"id\":4249227737,\"id_str\":\"4249227737\",\"name\":\"Richman onuche\",\"screen_name\":\"Richmanonuche1\",\"location\":\"Abuja\",\"description\":\"A man with few words.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":248,\"listed_count\":2,\"created_at\":\"Sun Nov 22 11:32:25 +0000 2015\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1198941396612370432\\/D82WMyrU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1198941396612370432\\/D82WMyrU_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"901\":{\"id\":1167538860,\"id_str\":\"1167538860\",\"name\":\"\\ud835\\udc04\\ud835\\udc26\\ud835\\udc29\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2f\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2c\",\"screen_name\":\"Emperor_vibes0\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\ud835\\udc16\\ud835\\udc21\\ud835\\udc1a\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc2f\\ud835\\udc1e\\ud835\\udc2b \\ud835\\udc32\\ud835\\udc28\\ud835\\udc2e \\ud835\\udc1d\\ud835\\udc28, \\ud835\\udc00\\ud835\\udc22\\ud835\\udc26 \\ud835\\udc07\\ud835\\udc08\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\ud83d\\udcab \\ud83d\\ude02 \\ud835\\udc15\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc22\\ud835\\udc1a\\ud835\\udc27\\u2728\\ud83c\\udf43 \\ud835\\udc0f\\ud835\\udc1a\\ud835\\udc2c\\ud835\\udc2d\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2d\\ud835\\udc21\\ud835\\udc1e\\ud835\\udc28 \\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":223,\"friends_count\":156,\"listed_count\":0,\"created_at\":\"Mon Feb 11 01:59:56 +0000 2013\",\"favourites_count\":352,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167538860\\/1659127987\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"902\":{\"id\":1946861028,\"id_str\":\"1946861028\",\"name\":\"Truelover\",\"screen_name\":\"Sun_xit\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"let's play along \\ud83c\\udfd6\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":200,\"listed_count\":0,\"created_at\":\"Tue Oct 08 13:20:26 +0000 2013\",\"favourites_count\":359,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":375,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1374423466271600646\\/SCsnrslE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1374423466271600646\\/SCsnrslE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1946861028\\/1616646082\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"903\":{\"id\":4834659045,\"id_str\":\"4834659045\",\"name\":\"IT NEWS NIGERIA\",\"screen_name\":\"itnewsnigeria1\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT NEWS NIGERIA is a digital news platform promoting businesses, innovation, Fintechs, and start-ups. \\nThe future is online...\",\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"expanded_url\":\"https:\\/\\/www.itnewsnigeria.ng\",\"display_url\":\"itnewsnigeria.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1001,\"friends_count\":4713,\"listed_count\":5,\"created_at\":\"Fri Jan 22 09:39:04 +0000 2016\",\"favourites_count\":830,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4834659045\\/1489702799\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"904\":{\"id\":1356251183980142596,\"id_str\":\"1356251183980142596\",\"name\":\"Rentic\",\"screen_name\":\"myrentic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Accommodations: (shortlets, roommates, flatmates, co-working spaces & more).\\n#Experiences: (Tours, massages, getaways, boat rides & more).\",\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"expanded_url\":\"https:\\/\\/rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Mon Feb 01 14:41:11 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356251183980142596\\/1612290624\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"905\":{\"id\":1262762986235498496,\"id_str\":\"1262762986235498496\",\"name\":\"Justin Ekwueme 1 of Enugu\",\"screen_name\":\"_BigJustin_\",\"location\":\"Enugu, Nigeria\",\"description\":\"Social media Marketing || Brand Strategy || Jesus is the way || Outsider \\ud83e\\udd8d|| Bilingual \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddee\\ud83c\\uddf9 Co-founder @_creatorsmedia Editor @enugu_gram\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":271,\"friends_count\":635,\"listed_count\":0,\"created_at\":\"Tue May 19 15:12:22 +0000 2020\",\"favourites_count\":6291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1623,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546962396639596546\\/iCkOVUfz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546962396639596546\\/iCkOVUfz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1262762986235498496\\/1649675308\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"906\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"907\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"908\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"909\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"910\":{\"id\":1534961510799265805,\"id_str\":\"1534961510799265805\",\"name\":\"AUTHORISED GADGETS\",\"screen_name\":\"TAG_authorised\",\"location\":\"Ikeja, Nigeria\",\"description\":\"iBUY- iSELL -iSWAP - I\\u2019myour PLUG \\ud83d\\udd0c-NATIONWIDE DELIVERY \\ud83d\\ude9a \\ud83d\\udce6 NO1GADGETPLUG. Instagram: TAG_pc\\u2026WhatsApp link below \\ud83d\\udc47\\ud83c\\udffd\",\"url\":\"https:\\/\\/t.co\\/sJ9EXB1dWU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sJ9EXB1dWU\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/7UAYELNBXLIOO1\",\"display_url\":\"wa.me\\/message\\/7UAYEL\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":278,\"friends_count\":112,\"listed_count\":0,\"created_at\":\"Thu Jun 09 18:12:11 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":104,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544979138494304256\\/FDTfOk1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544979138494304256\\/FDTfOk1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"911\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"912\":{\"id\":853674103324246017,\"id_str\":\"853674103324246017\",\"name\":\"Lucasdusky\",\"screen_name\":\"LukeKyauta\",\"location\":\"Nigeria,Abuja\",\"description\":\"Skit maker, and Content creator, Graphic Designer,\",\"url\":\"https:\\/\\/t.co\\/mLp4YBsi4S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mLp4YBsi4S\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCX2sTToCRFfs0KCyWZtYUhg\",\"display_url\":\"youtube.com\\/channel\\/UCX2sT\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":232,\"friends_count\":228,\"listed_count\":0,\"created_at\":\"Sun Apr 16 18:19:01 +0000 2017\",\"favourites_count\":1797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482395328154423296\\/A09iQKo7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482395328154423296\\/A09iQKo7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/853674103324246017\\/1642265629\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"913\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"914\":{\"id\":862421804547289094,\"id_str\":\"862421804547289094\",\"name\":\"twelvebeatz_producer\",\"screen_name\":\"12_beatz\",\"location\":\"Lagos, Nigeria\",\"description\":\"i am a producer and i love meeting people, and i want to introduce African music to the world\\ninstagram - twelvebeatz_producer\\n\\nbookings - josephtoyosi2014@gmai\",\"url\":\"https:\\/\\/t.co\\/dmPuqQ2mf0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dmPuqQ2mf0\",\"expanded_url\":\"https:\\/\\/soundcloud.com\\/joseph-toyosi\\/12beatz-x-sade-sade-mi-mr-eazi-x-sarkodie-x-runtown-type-beat-2\",\"display_url\":\"soundcloud.com\\/joseph-toyosi\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":319,\"friends_count\":1264,\"listed_count\":0,\"created_at\":\"Wed May 10 21:39:16 +0000 2017\",\"favourites_count\":616,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1766,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526829244097122305\\/v80ep0YC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526829244097122305\\/v80ep0YC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/862421804547289094\\/1568135180\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"915\":{\"id\":1507395243880202241,\"id_str\":\"1507395243880202241\",\"name\":\"Daniel Orakwue\",\"screen_name\":\"daniel_orakwue\",\"location\":\"Lagos, Nigeria\",\"description\":\"Sales & Marketing (My journey). I recommend digital products that are guaranteed to help you financially. My pinned tweet will change your life; read through!\",\"url\":\"https:\\/\\/t.co\\/DAfk8D9tBi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DAfk8D9tBi\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/msc8ttwx\",\"display_url\":\"tinyurl.com\\/msc8ttwx\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":306,\"listed_count\":0,\"created_at\":\"Fri Mar 25 16:33:50 +0000 2022\",\"favourites_count\":5212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":866,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517647344799559682\\/FCZWXMVG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517647344799559682\\/FCZWXMVG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507395243880202241\\/1648227338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"916\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"917\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"918\":{\"id\":1390622632832376833,\"id_str\":\"1390622632832376833\",\"name\":\"AmandaMalls\",\"screen_name\":\"amanda_malls\",\"location\":\"Port Harcourt\",\"description\":\"E-commerce mall for all your basic needs.\\nLocated in the heart of Port Harcourt, Online shopping made easy\\n#Shopnow\",\"url\":\"https:\\/\\/t.co\\/ncGDpjx4Of\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ncGDpjx4Of\",\"expanded_url\":\"http:\\/\\/www.amandamalls.com\",\"display_url\":\"amandamalls.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Fri May 07 11:01:00 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554448243278467073\\/ZUkeuYJn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554448243278467073\\/ZUkeuYJn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1390622632832376833\\/1621848100\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"919\":{\"id\":1484059968512868352,\"id_str\":\"1484059968512868352\",\"name\":\"SUCDRI NIG LTD\",\"screen_name\":\"sucdri\",\"location\":\"Ogun State\",\"description\":\"SDNL is an IT firm. We specialize in domain & web hosting services, website & mobile app development as well as graphics design and capacity building.\",\"url\":\"https:\\/\\/t.co\\/VkI5qQ5aFw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VkI5qQ5aFw\",\"expanded_url\":\"https:\\/\\/sdnl.com.ng\",\"display_url\":\"sdnl.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Thu Jan 20 07:07:54 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484061469931192322\\/isBW9x30_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484061469931192322\\/isBW9x30_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484059968512868352\\/1642682945\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"920\":{\"id\":899378243576483842,\"id_str\":\"899378243576483842\",\"name\":\"Funny_king122\",\"screen_name\":\"Aji__bade\",\"location\":\"Osun, Nigeria\",\"description\":\"Pure and applied chemistry, LAUTECH\\niDesign|| aFFiliate marketer|| Man Utd fan|| pure chemist|| Clickfunnel expert||\\u270c\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":216,\"listed_count\":0,\"created_at\":\"Sun Aug 20 21:10:57 +0000 2017\",\"favourites_count\":719,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481531135188426752\\/RBPJtqmW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481531135188426752\\/RBPJtqmW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/899378243576483842\\/1642059523\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"921\":{\"id\":1553476310311247875,\"id_str\":\"1553476310311247875\",\"name\":\"Monalis-ng\",\"screen_name\":\"MonalisNg\",\"location\":\"Uyo, Nigeria\",\"description\":\"Lifestyle, Beauty & fashion\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Sat Jul 30 20:23:36 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553484886098542592\\/PAdOoGGh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553484886098542592\\/PAdOoGGh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553476310311247875\\/1659214701\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"922\":{\"id\":1198015707277152258,\"id_str\":\"1198015707277152258\",\"name\":\"Patson Luxury Homes!!!\",\"screen_name\":\"MrJayPappy1\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Port Harcourt Realtor, Business Dev, Interior Deco.. Chelsea FC fan ... Good music stan. trying to grow my 4th account so FB too, 3 suspended\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2293,\"friends_count\":2390,\"listed_count\":1,\"created_at\":\"Fri Nov 22 23:10:17 +0000 2019\",\"favourites_count\":4754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4536,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1198015707277152258\\/1655451393\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"923\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"924\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"925\":{\"id\":999980858986680320,\"id_str\":\"999980858986680320\",\"name\":\"prince aso\",\"screen_name\":\"Princeaso_\",\"location\":\"Lagos , Nigeria\",\"description\":\"Musician\\/comedian \\/ Content creator\\/ Graphics Designer\\/ Business Tycoon.\\nFor Booking: princeasomusic@gmail.com\\nInstagram @princeaso_\",\"url\":\"https:\\/\\/t.co\\/AMD1Qmt4GY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AMD1Qmt4GY\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/princeaso\\/song\\/pray-for-nigeria\",\"display_url\":\"audiomack.com\\/princeaso\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":976,\"friends_count\":1878,\"listed_count\":9,\"created_at\":\"Fri May 25 11:49:50 +0000 2018\",\"favourites_count\":11916,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493632902176854025\\/VEZzqYWf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493632902176854025\\/VEZzqYWf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/999980858986680320\\/1629286768\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"926\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"927\":{\"id\":1519874014084308992,\"id_str\":\"1519874014084308992\",\"name\":\"Movie Hack\",\"screen_name\":\"Movie__Hack\",\"location\":\"Ghana\",\"description\":\"Everything about Movies\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":39,\"listed_count\":0,\"created_at\":\"Fri Apr 29 03:01:03 +0000 2022\",\"favourites_count\":199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":169,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519876228035055616\\/v1peeJtK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519876228035055616\\/v1peeJtK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519874014084308992\\/1651201797\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"928\":{\"id\":1524304915308466176,\"id_str\":\"1524304915308466176\",\"name\":\"Obi Chidiebere\",\"screen_name\":\"Chidi_Africa\",\"location\":\"Nigeria\",\"description\":\"I am Afrikan that Love Afrikaans \\ud83c\\uddff\\ud83c\\uddfc\\ud83c\\uddff\\ud83c\\uddf2\\ud83c\\uddfa\\ud83c\\uddec\\ud83c\\uddf9\\ud83c\\uddf3\\ud83c\\uddf9\\ud83c\\uddec\\ud83c\\uddf9\\ud83c\\uddff\\ud83c\\uddf8\\ud83c\\udde9\\ud83c\\uddf8\\ud83c\\uddf8\\ud83c\\uddff\\ud83c\\udde6\\ud83c\\uddf8\\ud83c\\uddf4\\ud83c\\uddf8\\ud83c\\udde8\\ud83c\\uddf8\\ud83c\\uddf3\\ud83c\\uddf8\\ud83c\\uddf9\\ud83c\\uddf7\\ud83c\\uddfc\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddea\\ud83c\\uddf3\\ud83c\\udde6 \\ud83c\\uddf2\\ud83c\\uddff\\ud83c\\uddf2\\ud83c\\udde6 \\ud83c\\uddf2\\ud83c\\uddfa\\ud83c\\uddf2\\ud83c\\uddf7\\ud83c\\uddf2\\ud83c\\uddf1\\ud83c\\uddf2\\ud83c\\uddfc\\ud83c\\uddf2\\ud83c\\uddec\\ud83c\\uddf1\\ud83c\\uddfe\\ud83c\\uddf1\\ud83c\\uddf7\\ud83c\\uddf1\\ud83c\\uddf8\\ud83c\\uddf0\\ud83c\\uddea\\ud83c\\uddec\\ud83c\\uddfc\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\uddf2\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":149,\"listed_count\":0,\"created_at\":\"Wed May 11 08:26:44 +0000 2022\",\"favourites_count\":841,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":827,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544954440049909760\\/WrSZg87Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544954440049909760\\/WrSZg87Q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"929\":{\"id\":1315605826279813121,\"id_str\":\"1315605826279813121\",\"name\":\"CSR REPORTERS\",\"screen_name\":\"CsrReporters\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigeria's No.1 CSR&S publication. \\n\\nWe analyse, review and report all CSR and Sustainability acts of organizations and well-meaning individuals across Africa.\",\"url\":\"https:\\/\\/t.co\\/G4CUZCx8vC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/G4CUZCx8vC\",\"expanded_url\":\"http:\\/\\/www.csrreporters.com\",\"display_url\":\"csrreporters.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":186,\"listed_count\":0,\"created_at\":\"Mon Oct 12 10:51:07 +0000 2020\",\"favourites_count\":67,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1629,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544986892353019904\\/hu868jJz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544986892353019904\\/hu868jJz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1315605826279813121\\/1657188520\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"930\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"931\":{\"id\":1544831266029182977,\"id_str\":\"1544831266029182977\",\"name\":\"thequeenhelenbrand\",\"screen_name\":\"thequeenhelen1\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Affordable ||Classy||Stylish prices\\ud83d\\udc9c\\ud83e\\udd0d\\ud83d\\udc9c\\ud83e\\udd0dmade to wear and with love\\ud83d\\ude48\\ud83e\\udd0d\",\"url\":\"https:\\/\\/t.co\\/ISVeusRYvO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ISVeusRYvO\",\"expanded_url\":\"https:\\/\\/thequeenhelenbrand.bumpa.shop\",\"display_url\":\"thequeenhelenbrand.bumpa.shop\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":51,\"listed_count\":0,\"created_at\":\"Wed Jul 06 23:51:03 +0000 2022\",\"favourites_count\":113,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":106,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544832356674052098\\/yh7SjRaI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544832356674052098\\/yh7SjRaI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544831266029182977\\/1659624547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"932\":{\"id\":1522893464458997762,\"id_str\":\"1522893464458997762\",\"name\":\"BAMJ TV\\ud83d\\udcfa\",\"screen_name\":\"bamj_tv\",\"location\":\"Nigeria\",\"description\":\"~~Entertainment~\\n~Content creator~\\n~Funny memes ~\\n~Football~ \\nFollow us on\\nIG: @Bamj_Tv\\nFB:@Bamj Tv\\nTikTok:@bamj_tv\\nSend Hi to use on WhatsApp 09131256531\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":239,\"listed_count\":0,\"created_at\":\"Sat May 07 10:58:15 +0000 2022\",\"favourites_count\":457,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":209,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550585986509307909\\/f1ZCgWxF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550585986509307909\\/f1ZCgWxF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522893464458997762\\/1654611904\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"933\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"934\":{\"id\":1469882952490401796,\"id_str\":\"1469882952490401796\",\"name\":\"Sunday U.\",\"screen_name\":\"Evereztt\",\"location\":\"\",\"description\":\"UI\\/UX Designer | Brand Identity Designer \\n\\n.\\n.\\n\\n . \\ud83d\\udce9\\u260e\\ufe0f+2349034640238\",\"url\":\"https:\\/\\/t.co\\/VtAFgqQr6Z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VtAFgqQr6Z\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~01c2f5b3859c10dff8\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":76,\"listed_count\":1,\"created_at\":\"Sun Dec 12 04:13:10 +0000 2021\",\"favourites_count\":723,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554761367760019457\\/VTCJGnel_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554761367760019457\\/VTCJGnel_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1469882952490401796\\/1659524491\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"935\":{\"id\":1498183392214532097,\"id_str\":\"1498183392214532097\",\"name\":\"Bari700\",\"screen_name\":\"Bari7007\",\"location\":\"Abuja, Nigeria \",\"description\":\"A Sports Animal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Mon Feb 28 06:29:10 +0000 2022\",\"favourites_count\":9373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498183392214532097\\/1646030690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"936\":{\"id\":1310421467696422912,\"id_str\":\"1310421467696422912\",\"name\":\"Chuks.Copn\",\"screen_name\":\"ChuksCopn\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hardships often prepare ordinary people for an extraordinary destiny.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":250,\"listed_count\":0,\"created_at\":\"Mon Sep 28 03:30:27 +0000 2020\",\"favourites_count\":897,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535914305966702593\\/ndwcGHjg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535914305966702593\\/ndwcGHjg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1310421467696422912\\/1655025602\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"937\":{\"id\":1428008881,\"id_str\":\"1428008881\",\"name\":\"Adoga Michael Oyi\",\"screen_name\":\"AdogaMikeOyi\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Marketer| Biochemist | Blogger| Peace Maker| Social Media Influencer| Policy Analyst| Die-hard @ChelseaFC supporter\",\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"expanded_url\":\"https:\\/\\/www.theeaglesvoice.com\",\"display_url\":\"theeaglesvoice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1204,\"friends_count\":1621,\"listed_count\":1,\"created_at\":\"Tue May 14 14:24:33 +0000 2013\",\"favourites_count\":12327,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1428008881\\/1617307325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"938\":{\"id\":1428008881,\"id_str\":\"1428008881\",\"name\":\"Adoga Michael Oyi\",\"screen_name\":\"AdogaMikeOyi\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Marketer| Biochemist | Blogger| Peace Maker| Social Media Influencer| Policy Analyst| Die-hard @ChelseaFC supporter\",\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"expanded_url\":\"https:\\/\\/www.theeaglesvoice.com\",\"display_url\":\"theeaglesvoice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1204,\"friends_count\":1621,\"listed_count\":1,\"created_at\":\"Tue May 14 14:24:33 +0000 2013\",\"favourites_count\":12327,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1428008881\\/1617307325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"939\":{\"id\":1514295106349805571,\"id_str\":\"1514295106349805571\",\"name\":\"Phyna\",\"screen_name\":\"Phicoco1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Thespian, interior designer, skincare therapist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:31:32 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541382547430588416\\/x0g-dkmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541382547430588416\\/x0g-dkmp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"940\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"941\":{\"id\":1498183392214532097,\"id_str\":\"1498183392214532097\",\"name\":\"Bari700\",\"screen_name\":\"Bari7007\",\"location\":\"Abuja, Nigeria \",\"description\":\"A Sports Animal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Mon Feb 28 06:29:10 +0000 2022\",\"favourites_count\":9373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498183392214532097\\/1646030690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"942\":{\"id\":3938770221,\"id_str\":\"3938770221\",\"name\":\"samuel eshun\",\"screen_name\":\"samueleshungh\",\"location\":\"Accra\",\"description\":\"I work with a sense of urgency to get the whole story told the people. Sometimes affable, sometimes cheeky and most importantly objective. Let's take a stroll\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2812,\"friends_count\":196,\"listed_count\":0,\"created_at\":\"Mon Oct 12 17:00:23 +0000 2015\",\"favourites_count\":997,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1554,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477224075512713219\\/EbFwdXB1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477224075512713219\\/EbFwdXB1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3938770221\\/1602421200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"943\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"944\":{\"id\":1537548195332513792,\"id_str\":\"1537548195332513792\",\"name\":\"Emmanuel Abuhson\",\"screen_name\":\"emmanuelabuhson\",\"location\":\"Kogi, Nigeria\",\"description\":\"Diffusion of Innovation Strategist, Media Facilitator and Agroprenuer with over a decade work experience in Agribusiness and Business Development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Thu Jun 16 21:30:42 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537548195332513792\\/1655475965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"945\":{\"id\":1501907565248143365,\"id_str\":\"1501907565248143365\",\"name\":\"Stephen T. Quartzz\",\"screen_name\":\"StephenQuartzz\",\"location\":\"Nigeria\",\"description\":\"\\ud83e\\udd70\\ud83c\\udf89\\ud83d\\udcaf\\ud83d\\udcda\\ud83e\\udd2f\",\"url\":\"https:\\/\\/t.co\\/n3K6zq6Omg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n3K6zq6Omg\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~01ae9dcb069921269f\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":155,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Thu Mar 10 13:08:11 +0000 2022\",\"favourites_count\":6139,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":192,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536544799305699328\\/eq_OYirX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536544799305699328\\/eq_OYirX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501907565248143365\\/1646919175\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"946\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"947\":{\"id\":2217165422,\"id_str\":\"2217165422\",\"name\":\"John's_lay couture\\ud83d\\udc8e\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Johnslaycouture\",\"location\":\"Nigeria\",\"description\":\"First Born. \\nResponsibility's plenty... NATION WIDE DELIVERY AVAILABLE \\ud83d\\udcaf\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":842,\"friends_count\":706,\"listed_count\":0,\"created_at\":\"Wed Nov 27 04:39:34 +0000 2013\",\"favourites_count\":36562,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8042,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554570006582755333\\/WARZuayF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554570006582755333\\/WARZuayF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2217165422\\/1653996203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"948\":{\"id\":1490461671256645632,\"id_str\":\"1490461671256645632\",\"name\":\"Maazi Nelly\\ud83d\\ude0d\",\"screen_name\":\"EdwinNelly5\",\"location\":\"Gwarimpa, Abuja. \",\"description\":\"Wait a minute....... Okay I'm just staying focus. A young Doc. from the East\\ud83d\\udc93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":464,\"listed_count\":0,\"created_at\":\"Sun Feb 06 23:05:51 +0000 2022\",\"favourites_count\":2839,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539079992394620928\\/l9JnzJnz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539079992394620928\\/l9JnzJnz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490461671256645632\\/1659520455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"949\":{\"id\":1498420205554483204,\"id_str\":\"1498420205554483204\",\"name\":\"Mr Myke M\\ud83d\\udc99\",\"screen_name\":\"mrmyke_1\",\"location\":\"Aba, Nigeria\",\"description\":\"crypto king\\n\\nI sell South African Somerset wine and we create perfume #fragrance .\",\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"expanded_url\":\"http:\\/\\/athena-stores.business.site\",\"display_url\":\"athena-stores.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Mon Feb 28 22:10:13 +0000 2022\",\"favourites_count\":137,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498420205554483204\\/1646392456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"950\":{\"id\":1317768210419245056,\"id_str\":\"1317768210419245056\",\"name\":\"Koliwill\",\"screen_name\":\"Koliwill1\",\"location\":\"Lekki, Nigeria\",\"description\":\"#TheCough my up coming EP\",\"url\":\"https:\\/\\/t.co\\/83bq0z1J0D\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/83bq0z1J0D\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC5oYraA7TeP4qwAGao5wETQ\",\"display_url\":\"youtube.com\\/channel\\/UC5oYr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Sun Oct 18 10:03:39 +0000 2020\",\"favourites_count\":1498,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":602,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554484142477385728\\/iZMSKvdU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554484142477385728\\/iZMSKvdU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317768210419245056\\/1659463685\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"951\":{\"id\":1273869568541437953,\"id_str\":\"1273869568541437953\",\"name\":\"ms_lateefa\",\"screen_name\":\"tees_essentials\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Fri Jun 19 06:46:13 +0000 2020\",\"favourites_count\":104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1327560471248056329\\/wnGeWdn0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1327560471248056329\\/wnGeWdn0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1273869568541437953\\/1612873033\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"952\":{\"id\":1269357840,\"id_str\":\"1269357840\",\"name\":\"Alawiye Motivation\",\"screen_name\":\"NURUDEENSALMON\",\"location\":\"lagos,Nigeria\",\"description\":\"Writer, speaker, program facilitator, educational consultant. \\n(I am a Volunteer for Humanity)\",\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"expanded_url\":\"http:\\/\\/alawiyeweb.blogspot.com\",\"display_url\":\"alawiyeweb.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":189,\"listed_count\":1,\"created_at\":\"Fri Mar 15 10:17:31 +0000 2013\",\"favourites_count\":773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1096,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269357840\\/1654454936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"953\":{\"id\":1044856596185186306,\"id_str\":\"1044856596185186306\",\"name\":\"Defi_CMSK\",\"screen_name\":\"CmskEmmanuel\",\"location\":\"Nigeria\",\"description\":\"Priest | Technical Analyst | Crypto enthusiast | Man United fan\\ud83d\\udd34\\ud83d\\udd34 | All Tech related | Crypto Ambassador | visual content Developer\",\"url\":\"https:\\/\\/t.co\\/5yjRJx2m6i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5yjRJx2m6i\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/Cmskphotography\",\"display_url\":\"facebook.com\\/Cmskphotography\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":129,\"friends_count\":365,\"listed_count\":5,\"created_at\":\"Wed Sep 26 07:49:59 +0000 2018\",\"favourites_count\":370,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555791018938830849\\/DYYS5CT1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555791018938830849\\/DYYS5CT1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1044856596185186306\\/1659658462\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"954\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"955\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"956\":{\"id\":1005630848,\"id_str\":\"1005630848\",\"name\":\"#NewNigeria\",\"screen_name\":\"truth_propagate\",\"location\":\"Maiduguri, Nigeria\",\"description\":\"Nigerian Youth for #RevolutionNigeria #2023Elections #GoodGovernance #NigeriaReform #YouthDemocracy #YouthInPower #GreatNigeria #ICT4Youth2023 #YouthRights\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":191,\"listed_count\":0,\"created_at\":\"Wed Dec 12 05:17:28 +0000 2012\",\"favourites_count\":310,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1436,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530424620389646337\\/eJdh713G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530424620389646337\\/eJdh713G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1005630848\\/1603582237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"957\":{\"id\":1027089048135983104,\"id_str\":\"1027089048135983104\",\"name\":\"Benita Ani\",\"screen_name\":\"benita_ani\",\"location\":\"Nigeria\",\"description\":\"Insurer,\\nBiz:benny's silkykola\\nSend a dm if u need Gorontular\\/sillykola\\nAugust 1st\\ud83c\\udf82\\nStudied @unijos\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":165,\"friends_count\":227,\"listed_count\":0,\"created_at\":\"Wed Aug 08 07:08:06 +0000 2018\",\"favourites_count\":799,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":283,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1340172413133328384\\/GtQCp0Zj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1340172413133328384\\/GtQCp0Zj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"958\":{\"id\":2969294343,\"id_str\":\"2969294343\",\"name\":\"Disturbing_Art_Official\",\"screen_name\":\"egodfred31\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Graphics_Designer#Expert_In_Desktop_Publishing#Artist#Musician(GetAffordableCartoon Animation@09093869126)followme on instagram @ElijahGodfred.Fb@ElijahGodfred\",\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"expanded_url\":\"http:\\/\\/t.me\\/DisturbingArt\",\"display_url\":\"t.me\\/DisturbingArt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":340,\"friends_count\":94,\"listed_count\":2,\"created_at\":\"Fri Jan 09 07:20:21 +0000 2015\",\"favourites_count\":371,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1295,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2969294343\\/1656591540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"959\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"960\":{\"id\":4902159379,\"id_str\":\"4902159379\",\"name\":\"Gbatima\",\"screen_name\":\"CaulkerDom\",\"location\":\"Freetown, Sierra Leone\",\"description\":\"Imperfect but modest l\\u00f8ner. Avid Reader. Rts\\/Likes = not endorsements|Books|Music|Coffee|\\n\\nScrabble aficionado. Views my own. Eph 4:2 #COYG\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":605,\"friends_count\":1542,\"listed_count\":0,\"created_at\":\"Sat Feb 13 13:47:50 +0000 2016\",\"favourites_count\":37867,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9782,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539581195587051521\\/FqiPjJV0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539581195587051521\\/FqiPjJV0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4902159379\\/1643326524\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"961\":{\"id\":990733765860347904,\"id_str\":\"990733765860347904\",\"name\":\"Susan Bukola Akande\",\"screen_name\":\"akande_susan_b\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Jesus Christ Addict.\\nRoyalty.\\nWorld Shaker.\\n#MinisterForSoupAffairs\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Sun Apr 29 23:25:11 +0000 2018\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":123,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/990768964363055104\\/Do3dzrIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/990768964363055104\\/Do3dzrIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/990733765860347904\\/1659526585\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"962\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"963\":{\"id\":1390265461502320640,\"id_str\":\"1390265461502320640\",\"name\":\"NickMills\\u2764\\ufe0f\\u2764\\ufe0f\",\"screen_name\":\"nickmills21\",\"location\":\"Accra, Ghana\",\"description\":\"Gifted Ruler Derry @ManUtd Don't expect to be rich like Jay-Z While you're still Lay- Z For Pro contact nicholasderry20@gmail.com fan of @stonebwoy\",\"url\":\"https:\\/\\/t.co\\/YWmnlNiQ8v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YWmnlNiQ8v\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC3gXbDsFfFBrYRRmVnwFKdw\",\"display_url\":\"youtube.com\\/channel\\/UC3gXb\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2546,\"friends_count\":3073,\"listed_count\":0,\"created_at\":\"Thu May 06 11:22:08 +0000 2021\",\"favourites_count\":18331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1241,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552367253064421376\\/ArhJXPfr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552367253064421376\\/ArhJXPfr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1390265461502320640\\/1658320636\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"964\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"965\":{\"id\":287750449,\"id_str\":\"287750449\",\"name\":\"Ibanga Isine\",\"screen_name\":\"Ibykul\",\"location\":\"Abuja-Nigeria\",\"description\":\"Multiple-award winning investigative journalist, teacher, activist. CNN MultiChoice African Journalist Award, 2015. Wole Soyinka Investigative Reporter 2019.\",\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"expanded_url\":\"http:\\/\\/guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2894,\"friends_count\":882,\"listed_count\":19,\"created_at\":\"Mon Apr 25 16:18:12 +0000 2011\",\"favourites_count\":493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2492,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"966\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"967\":{\"id\":287750449,\"id_str\":\"287750449\",\"name\":\"Ibanga Isine\",\"screen_name\":\"Ibykul\",\"location\":\"Abuja-Nigeria\",\"description\":\"Multiple-award winning investigative journalist, teacher, activist. CNN MultiChoice African Journalist Award, 2015. Wole Soyinka Investigative Reporter 2019.\",\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"expanded_url\":\"http:\\/\\/guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2894,\"friends_count\":882,\"listed_count\":19,\"created_at\":\"Mon Apr 25 16:18:12 +0000 2011\",\"favourites_count\":493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2492,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"968\":{\"id\":1208046199409979392,\"id_str\":\"1208046199409979392\",\"name\":\"Osehobo\",\"screen_name\":\"DonOsehobo\",\"location\":\"Benin-City, Nigeria\",\"description\":\"#Publicist\\n#Blogger\\n#Contentdeveloper \\n#JournalismResearcher\",\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"expanded_url\":\"http:\\/\\/www.agbakablog.com\",\"display_url\":\"agbakablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":931,\"friends_count\":2787,\"listed_count\":0,\"created_at\":\"Fri Dec 20 15:27:29 +0000 2019\",\"favourites_count\":2412,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5754,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1208046199409979392\\/1656251324\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"969\":{\"id\":1549638837877575680,\"id_str\":\"1549638837877575680\",\"name\":\"Ema Bms\",\"screen_name\":\"opuwari66\",\"location\":\"Nigeria\",\"description\":\"Affiliate Marketer|Business Coach| I teach people how to make 6 figures monthly| YouTuber| Realtor | Web Designer| Graphics Designer|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Wed Jul 20 06:14:43 +0000 2022\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554033899143139328\\/6KMBvQM3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554033899143139328\\/6KMBvQM3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549638837877575680\\/1659344320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"970\":{\"id\":1352619967649357824,\"id_str\":\"1352619967649357824\",\"name\":\"Adedayo Adesuyi\",\"screen_name\":\"AdesuyiAdedayo\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Administrator | Tech Enthusiast | \\u271d\\ufe0f | MUFC\\ud83d\\udc4a\\ud83d\\udd34\\ud83d\\udc79\\u26bd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":653,\"friends_count\":649,\"listed_count\":0,\"created_at\":\"Fri Jan 22 14:12:08 +0000 2021\",\"favourites_count\":50818,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8950,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548014767024906240\\/0_-6ELqN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548014767024906240\\/0_-6ELqN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1352619967649357824\\/1657911341\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"971\":{\"id\":93659333,\"id_str\":\"93659333\",\"name\":\"Weyacrypto\\ud83d\\udc8e\",\"screen_name\":\"Onyenaweya88\",\"location\":\"\",\"description\":\"I teach about achieving financial freedom via Cryptocurrency and Affiliate marketing.\\nA Proud Father and POS Aggregator.\\n@opay_ng & @banklyng\",\"url\":\"https:\\/\\/t.co\\/zXmcNl9Tjv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zXmcNl9Tjv\",\"expanded_url\":\"https:\\/\\/wa.link\\/b0ayoo\",\"display_url\":\"wa.link\\/b0ayoo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":689,\"friends_count\":1449,\"listed_count\":8,\"created_at\":\"Mon Nov 30 16:10:00 +0000 2009\",\"favourites_count\":8434,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6623,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541019350806691840\\/1jwTVex3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541019350806691840\\/1jwTVex3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/93659333\\/1657437835\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"972\":{\"id\":1091485351175163904,\"id_str\":\"1091485351175163904\",\"name\":\"Babalola Samuel\",\"screen_name\":\"mrwopaa\",\"location\":\"Lagos, Nigeria\",\"description\":\"Entertainer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Fri Feb 01 23:56:01 +0000 2019\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550546696186257408\\/b_hpjGmX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550546696186257408\\/b_hpjGmX_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"973\":{\"id\":4493503761,\"id_str\":\"4493503761\",\"name\":\"Ariemu Ogaga, arpa\",\"screen_name\":\"ariemu_ogaga\",\"location\":\"Abuja\",\"description\":\"Brilliant Journalist\\/Researcher\\/Advertiser\\/Salesperson\",\"url\":\"https:\\/\\/t.co\\/8GQhIx78iQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8GQhIx78iQ\",\"expanded_url\":\"https:\\/\\/nigeriannewsdirect.com\\/?s=Ogaga+ariemu\",\"display_url\":\"nigeriannewsdirect.com\\/?s=Ogaga+ariemu\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":156,\"friends_count\":364,\"listed_count\":0,\"created_at\":\"Tue Dec 15 16:01:32 +0000 2015\",\"favourites_count\":542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1396947190820573185\\/ujBt-cFO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1396947190820573185\\/ujBt-cFO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"974\":{\"id\":1225167464549507075,\"id_str\":\"1225167464549507075\",\"name\":\"F.S.o.A\",\"screen_name\":\"arynzeee\",\"location\":\"Nigeria\",\"description\":\"First Son of ADOLPH \\ud83c\\udfc5\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":405,\"listed_count\":0,\"created_at\":\"Wed Feb 05 21:23:22 +0000 2020\",\"favourites_count\":1939,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":480,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550198190699315200\\/c6kn_fRm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550198190699315200\\/c6kn_fRm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1225167464549507075\\/1657498452\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"975\":{\"id\":611485324,\"id_str\":\"611485324\",\"name\":\"#DE LAST BORN\\ud83d\\udc9c\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\uddeb\\ud83c\\uddee\",\"screen_name\":\"qwame_nana\",\"location\":\"Greater Accra, Ghana\",\"description\":\"A businesswoman, philanthropist, Social Commentator, Youth Activist and a Believer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":839,\"friends_count\":778,\"listed_count\":2,\"created_at\":\"Mon Jun 18 07:36:35 +0000 2012\",\"favourites_count\":19154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534090090879889409\\/wClq8apr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534090090879889409\\/wClq8apr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/611485324\\/1597467157\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"976\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"977\":{\"id\":1354535299255328769,\"id_str\":\"1354535299255328769\",\"name\":\"Chinagorom Ohanu\",\"screen_name\":\"Djackyz\",\"location\":\"\",\"description\":\"Believe in your dreams and put Baba God first \\ud83e\\udd70\\ud83e\\udd70\\ud83d\\ude0d\\ud83d\\ude0d...one \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":132,\"listed_count\":0,\"created_at\":\"Wed Jan 27 21:03:03 +0000 2021\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488424923215314949\\/77qtnVuU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488424923215314949\\/77qtnVuU_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"978\":{\"id\":1261941616979382273,\"id_str\":\"1261941616979382273\",\"name\":\"Epitome Stores\",\"screen_name\":\"EpitomeStores\",\"location\":\"Nigeria\",\"description\":\"Epitome Stores .. It's all about you.\\nWe sell cloths & shoes for all genders, ages & specific edibles like Honey.\\nCall: +2348062412774.\\n#EpitomeStores\",\"url\":\"https:\\/\\/t.co\\/MhUZg49zd1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MhUZg49zd1\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCX234CH6IqtT4xn_8_R3gpA\",\"display_url\":\"youtube.com\\/channel\\/UCX234\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":117,\"friends_count\":79,\"listed_count\":1,\"created_at\":\"Sun May 17 08:49:50 +0000 2020\",\"favourites_count\":7024,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6833,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1293916811508035585\\/hDGyRyfn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1293916811508035585\\/hDGyRyfn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261941616979382273\\/1597328847\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"979\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"980\":{\"id\":257664999,\"id_str\":\"257664999\",\"name\":\"Trillionaire mindset \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"TerryOladapo\",\"location\":\"Lagos, Nigeria\",\"description\":\"*Accountant * philosopher * Entrepreneur * Peace ambassador * E-learner * Music lover * Virgo * Dream big coz Nothing is impossible. Email:cyboug08@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4143,\"friends_count\":4842,\"listed_count\":1,\"created_at\":\"Fri Feb 25 22:41:52 +0000 2011\",\"favourites_count\":19495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3751,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1457525499333337091\\/PA7YD9lU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1457525499333337091\\/PA7YD9lU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/257664999\\/1587316459\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"981\":{\"id\":1546817892573921281,\"id_str\":\"1546817892573921281\",\"name\":\"Your Data & Airtime Plug \\ud83d\\udd0c\",\"screen_name\":\"Jara_Connect\",\"location\":\"Abuja\",\"description\":\"Get the best deals on;\\n\\u2022Airtime & Data \\n\\u2022TV subscription\\n\\u2022Electricity bills payment\\n\\u2022Airtime to cash\\n\\nAt https:\\/\\/t.co\\/UW7WXqAs6a\",\"url\":\"https:\\/\\/t.co\\/WFTmvTjGTV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WFTmvTjGTV\",\"expanded_url\":\"http:\\/\\/Jaraconnect.com\",\"display_url\":\"Jaraconnect.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW7WXqAs6a\",\"expanded_url\":\"http:\\/\\/jaraconnect.com\",\"display_url\":\"jaraconnect.com\",\"indices\":[105,128]}]}},\"protected\":false,\"followers_count\":34,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jul 12 11:25:32 +0000 2022\",\"favourites_count\":223,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546824254800502787\\/Qi7Ccqqj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546824254800502787\\/Qi7Ccqqj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546817892573921281\\/1659257455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"982\":{\"id\":74133251,\"id_str\":\"74133251\",\"name\":\"Kizito Cudjoe\",\"screen_name\":\"MisterKizito\",\"location\":\"Accra, Ghana\",\"description\":\"Journalist @bftghana | Info Blogger | Dev. Communication Specialist | Volunteer | Youth Advocate\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":937,\"friends_count\":1761,\"listed_count\":4,\"created_at\":\"Mon Sep 14 11:23:48 +0000 2009\",\"favourites_count\":2532,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":4494,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549722609776033795\\/gVDIz7zM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549722609776033795\\/gVDIz7zM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/74133251\\/1657311989\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"983\":{\"id\":1542100268015312896,\"id_str\":\"1542100268015312896\",\"name\":\"Bereal Brand\",\"screen_name\":\"bereal_akpan\",\"location\":\"Nigeria\",\"description\":\"\\ud83e\\udd32GODS OWN\\ud83e\\udd32Your focus determines your future\",\"url\":\"https:\\/\\/t.co\\/aVYlS9jcHO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aVYlS9jcHO\",\"expanded_url\":\"http:\\/\\/africdailyupdates.blogspot.com\",\"display_url\":\"africdailyupdates.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":49,\"friends_count\":206,\"listed_count\":0,\"created_at\":\"Wed Jun 29 10:59:34 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554749790973460480\\/LAu4WMzu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554749790973460480\\/LAu4WMzu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"984\":{\"id\":1482630150617452553,\"id_str\":\"1482630150617452553\",\"name\":\"Mastrozamani\\ud83d\\ude08\",\"screen_name\":\"Mastrozamani\",\"location\":\"Lagos, Nigeria\",\"description\":\"30BG\\/ Cristiano Ronaldo \\ud83d\\udc10\\/ Good music || Davido \\ud83d\\udc10|| Michael Marabou fans \\ud83c\\udded\\ud83c\\uddf9 ||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":762,\"friends_count\":1199,\"listed_count\":8,\"created_at\":\"Sun Jan 16 08:25:59 +0000 2022\",\"favourites_count\":1557,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482630150617452553\\/1659092088\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"985\":{\"id\":1520583680972005377,\"id_str\":\"1520583680972005377\",\"name\":\"\\u1d42\\u1d52\\u207f\\u1d48\\u1d49\\u02b3 Q\\u1d52\\u1d58\\u1d57\\u1d49\\u02e2\",\"screen_name\":\"wonderqoute\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2022\\u00b4\\u00af`\\u2022. \\ud83c\\udf80 \\ud835\\udc3f\\ud835\\udc52\\ud835\\udcc9 \\ud835\\udc40\\ud835\\udcce \\ud835\\udcac\\ud835\\udcca\\u2741\\ud835\\udcc9\\ud835\\udc52 \\ud835\\udc45\\ud835\\udc52\\ud835\\udcbb\\ud835\\udcc7\\ud835\\udc52\\ud835\\udcc8\\ud835\\udcbd \\ud835\\udcce\\ud83d\\udc9e\\ud835\\udcca. \\ud83c\\udf80 .\\u2022`\\u00af\\u00b4\\u2022\",\"url\":\"https:\\/\\/t.co\\/gDrqEv8OC9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gDrqEv8OC9\",\"expanded_url\":\"https:\\/\\/vm.tiktok.com\\/ZMNSRWQSG\\/\",\"display_url\":\"vm.tiktok.com\\/ZMNSRWQSG\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Sun May 01 01:59:58 +0000 2022\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543567573287043073\\/_GiTvU5__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543567573287043073\\/_GiTvU5__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520583680972005377\\/1659471352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"986\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"987\":{\"id\":1544786612801896453,\"id_str\":\"1544786612801896453\",\"name\":\"Fiwasewa\",\"screen_name\":\"Fiwasewaaa\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Seamstress | Beddings Vendor | Vintage shirts | Interiors \\ud83d\\udd0c | Adorable | Passionate | Committed | Fashion lover \\ud83d\\udccc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Wed Jul 06 20:53:42 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545171616207933441\\/JApqi2le_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545171616207933441\\/JApqi2le_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544786612801896453\\/1657141499\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"988\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"989\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"990\":{\"id\":242984841,\"id_str\":\"242984841\",\"name\":\"Izzitalk\",\"screen_name\":\"izzitalk\",\"location\":\"Nigeria\",\"description\":\"We must be United, that's the only way to massively win.\",\"url\":\"https:\\/\\/t.co\\/pBd8pZ5zUm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pBd8pZ5zUm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/ikoTYrO-Y1M\",\"display_url\":\"youtu.be\\/ikoTYrO-Y1M\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":736,\"friends_count\":3582,\"listed_count\":8,\"created_at\":\"Wed Jan 26 01:37:08 +0000 2011\",\"favourites_count\":2254,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9525,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555938779558445057\\/ZiuIEb01_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555938779558445057\\/ZiuIEb01_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/242984841\\/1659799650\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"991\":{\"id\":1553705771090808834,\"id_str\":\"1553705771090808834\",\"name\":\"VICKYCARE FOUNDATION\",\"screen_name\":\"VICKYCARE1\",\"location\":\"ABUJA, NIGERIA\",\"description\":\"Our aim is reaching out to less privileged children, women, the girl child and the disabled, for the most valid expression of love is giving.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Sun Jul 31 11:35:29 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553706287489335299\\/LXgJ8OQ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553706287489335299\\/LXgJ8OQ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553705771090808834\\/1659267603\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"992\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"993\":{\"id\":1509148638009831429,\"id_str\":\"1509148638009831429\",\"name\":\"Audacia Prime Realty\",\"screen_name\":\"audacia_prime_\",\"location\":\"Lagos, Nigeria\",\"description\":\"We offer unmatched real estate solutions and help people invest in properties in strategic locations with as low as 250K.\",\"url\":\"https:\\/\\/t.co\\/9ttVuFu1Iq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9ttVuFu1Iq\",\"expanded_url\":\"http:\\/\\/audaciaprime.com\",\"display_url\":\"audaciaprime.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Wed Mar 30 12:41:07 +0000 2022\",\"favourites_count\":91,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509218671524261898\\/jBS4Mr5a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509218671524261898\\/jBS4Mr5a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509148638009831429\\/1648840834\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"994\":{\"id\":1269378128868265984,\"id_str\":\"1269378128868265984\",\"name\":\"Jerry of Lagos\",\"screen_name\":\"EfeJerry1\",\"location\":\"Lagos, Nigeria\",\"description\":\"A very simple guy who just want to love God everyday\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Sat Jun 06 21:18:41 +0000 2020\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1269378530028199941\\/7t5EAB75_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1269378530028199941\\/7t5EAB75_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269378128868265984\\/1598462364\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"995\":{\"id\":822024954246000640,\"id_str\":\"822024954246000640\",\"name\":\"M-Jeezy\",\"screen_name\":\"NwonualaHope\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Geologist, Entrepreneur.\\n\\nMasculine Energy\\/ALPHA\\nHuman right activist\\/An activist for good governance.\\n\\nFully Obi-dient\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Thu Jan 19 10:16:36 +0000 2017\",\"favourites_count\":8576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"996\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"997\":{\"id\":1483240375435341824,\"id_str\":\"1483240375435341824\",\"name\":\"Daniel Chukwuebuka Udechukwu\",\"screen_name\":\"SweetMusicMan27\",\"location\":\"Nigeria\",\"description\":\"Just that man seeking Love and God Caring but sometimes I just want to Sing and drive all night long.\\ud83e\\udd2f\\ud83e\\udd2f\\ud83e\\udd2f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":117,\"listed_count\":0,\"created_at\":\"Tue Jan 18 00:50:56 +0000 2022\",\"favourites_count\":156,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":402,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483240621540315140\\/jJ83Tx53_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483240621540315140\\/jJ83Tx53_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483240375435341824\\/1643908583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"998\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"999\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1000\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1001\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1002\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1003\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1004\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1005\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1006\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1007\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1008\":{\"id\":3185125111,\"id_str\":\"3185125111\",\"name\":\"Camera Sniiper \\ud83d\\udcf8\",\"screen_name\":\"FredTizzle\",\"location\":\"Lagos\",\"description\":\"PHOTOGRAPHER \\/ CINEMATOGRAPHER \\ud83d\\udcf8. Do whatever floats your boat as long as it doesn\\u2019t sink mine\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1065,\"friends_count\":1122,\"listed_count\":1,\"created_at\":\"Mon May 04 11:31:39 +0000 2015\",\"favourites_count\":19303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5373,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554747747194048512\\/RY2jL64U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554747747194048512\\/RY2jL64U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3185125111\\/1610746439\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1009\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1010\":{\"id\":2878666641,\"id_str\":\"2878666641\",\"name\":\"Emmanuel Atser \\ud83d\\udc99\\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\udf13\\ud83d\\ude80\",\"screen_name\":\"emmanuel_atser\",\"location\":\"Abuja, Nigeria\",\"description\":\"Makurdi,Benue,Nigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2521,\"friends_count\":3869,\"listed_count\":3,\"created_at\":\"Sat Nov 15 22:30:43 +0000 2014\",\"favourites_count\":11614,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16049,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322158480321634304\\/vw12EHLn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322158480321634304\\/vw12EHLn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2878666641\\/1568936199\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1011\":{\"id\":461902032,\"id_str\":\"461902032\",\"name\":\"OLUWATOBILOBA\",\"screen_name\":\"tobzyeasy\",\"location\":\"Nigeria\",\"description\":\"Just try and always believe in yourself\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":539,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Thu Jan 12 10:02:25 +0000 2012\",\"favourites_count\":5838,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11780,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1314850400621789186\\/U3e0dz9Y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1314850400621789186\\/U3e0dz9Y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/461902032\\/1406714591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1012\":{\"id\":1545418862845476864,\"id_str\":\"1545418862845476864\",\"name\":\"Solid Mineral Sorcerer\",\"screen_name\":\"MineralSorcerer\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"My sole aim is to source for any type of Solid Minerals (Commercial quantities), Purchase\\/Lease of mining sites and Exploration.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Fri Jul 08 14:46:03 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545419865447604226\\/YJbs8VnI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545419865447604226\\/YJbs8VnI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1013\":{\"id\":2943682546,\"id_str\":\"2943682546\",\"name\":\"EKUND\\u00c0Y\\u00d2 (Social Disruptor)\",\"screen_name\":\"wagbayiikay\",\"location\":\"lagos \",\"description\":\"\\u201c I have need to be all on fire, for I have mountains of ice about me to melt.\\u201d\",\"url\":\"https:\\/\\/t.co\\/V18p41pYPL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V18p41pYPL\",\"expanded_url\":\"http:\\/\\/Hansamlink.com\\/work.in.progress\",\"display_url\":\"Hansamlink.com\\/work.in.progre\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":943,\"listed_count\":0,\"created_at\":\"Sat Dec 27 11:26:13 +0000 2014\",\"favourites_count\":790,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":995,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538249946708824064\\/zi3vmpqr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538249946708824064\\/zi3vmpqr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2943682546\\/1655582369\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1014\":{\"id\":1289123299201396740,\"id_str\":\"1289123299201396740\",\"name\":\"Sue Wong\",\"screen_name\":\"SueWong28243824\",\"location\":\"GBA\",\"description\":\"Journalist | Producer | Think Tank Researcher | #NatureLover | #Art | #Culture | #Foodie | #NFT | #Metaverse | #Web3 | #Biz | Views are my own. RT\\u2260 endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10528,\"friends_count\":3915,\"listed_count\":3,\"created_at\":\"Fri Jul 31 08:58:54 +0000 2020\",\"favourites_count\":39559,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487124742880391171\\/eazLnZ43_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487124742880391171\\/eazLnZ43_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1289123299201396740\\/1643376162\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1015\":{\"id\":305454038,\"id_str\":\"305454038\",\"name\":\"Ojongs\",\"screen_name\":\"Ojongs1\",\"location\":\"Nigeria\",\"description\":\"System Engineer\\/\\/Cybersecurity Specialist\\/\\/UI Designer\\/\\/IoT\\/\\/Web developer\\/\\/Digital Marketing Manager\\/\\/Laptop Sure Plug\\ud83d\\udd0c\\ud83d\\udd0c\\ud83d\\udd0c\",\"url\":\"https:\\/\\/t.co\\/qvKvlMJYgF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qvKvlMJYgF\",\"expanded_url\":\"http:\\/\\/ojongs.blogspot.com\",\"display_url\":\"ojongs.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":459,\"friends_count\":1647,\"listed_count\":0,\"created_at\":\"Thu May 26 07:33:05 +0000 2011\",\"favourites_count\":805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2209,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546930272762986496\\/ZqbakvwU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546930272762986496\\/ZqbakvwU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/305454038\\/1552515311\",\"profile_link_color\":\"23CAEB\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1016\":{\"id\":855447441964924930,\"id_str\":\"855447441964924930\",\"name\":\"Victor I.Bajju\",\"screen_name\":\"Victorbajju_30\",\"location\":\"Abuja, Nigeria\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/jfT5oFaJqI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jfT5oFaJqI\",\"expanded_url\":\"http:\\/\\/www.Rainbowconceptpaintingltd.com\",\"display_url\":\"Rainbowconceptpaintingltd.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":570,\"friends_count\":654,\"listed_count\":0,\"created_at\":\"Fri Apr 21 15:45:38 +0000 2017\",\"favourites_count\":8149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556162311148257280\\/GdQacD58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556162311148257280\\/GdQacD58_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/855447441964924930\\/1658306853\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1017\":{\"id\":2328234917,\"id_str\":\"2328234917\",\"name\":\"Prince Adetunde.A.F. Adedamola\",\"screen_name\":\"Man4all_Season\",\"location\":\"Lagos, Nigeria\",\"description\":\"Master in Sociology *Criminologist* crusader for social change* Humanitarian*Rotarian, Muslim.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4632,\"friends_count\":4607,\"listed_count\":0,\"created_at\":\"Thu Feb 06 14:49:46 +0000 2014\",\"favourites_count\":97721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":49590,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1429547266172362752\\/fxPYtBCt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1429547266172362752\\/fxPYtBCt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2328234917\\/1612742394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1018\":{\"id\":1356251183980142596,\"id_str\":\"1356251183980142596\",\"name\":\"Rentic\",\"screen_name\":\"myrentic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Accommodations: (shortlets, roommates, flatmates, co-working spaces & more).\\n#Experiences: (Tours, massages, getaways, boat rides & more).\",\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"expanded_url\":\"https:\\/\\/rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Mon Feb 01 14:41:11 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356251183980142596\\/1612290624\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1019\":{\"id\":1211037919118409729,\"id_str\":\"1211037919118409729\",\"name\":\"The Last Airbender\",\"screen_name\":\"Mclioon\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"sociologist\\ud83d\\udcd2 Mc \\/event planner\\ud83c\\udf39Taurus\\u2649\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/peO2Tjt69h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/peO2Tjt69h\",\"expanded_url\":\"https:\\/\\/instagram.com\\/mclioon?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/mclioon?igshid\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":82,\"listed_count\":0,\"created_at\":\"Sat Dec 28 21:35:30 +0000 2019\",\"favourites_count\":159,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":213,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554190678653124611\\/LUTC0Snb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554190678653124611\\/LUTC0Snb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1211037919118409729\\/1601071789\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1020\":{\"id\":3194490489,\"id_str\":\"3194490489\",\"name\":\"Trouv\\u00e9\",\"screen_name\":\"trouve_ng\",\"location\":\"Nigeria\",\"description\":\"Tell us what you want, we will find it and connect you for free.\\nThat simple.\\nReach us on WhatsApp @ https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348088939403\",\"display_url\":\"wa.me\\/2348088939403\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348088939403\",\"display_url\":\"wa.me\\/2348088939403\",\"indices\":[101,124]}]}},\"protected\":false,\"followers_count\":381,\"friends_count\":379,\"listed_count\":0,\"created_at\":\"Wed Apr 22 11:48:32 +0000 2015\",\"favourites_count\":237,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1364127139621203968\\/w41HpyS4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1364127139621203968\\/w41HpyS4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3194490489\\/1614068232\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1021\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1022\":{\"id\":211586223,\"id_str\":\"211586223\",\"name\":\"Kelvs\",\"screen_name\":\"kelvinalohan\",\"location\":\"Abuja, Nigeria.\",\"description\":\"Sometimes blur is needed to see everything else clearly. \\n#FaithfulGod\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1626,\"friends_count\":3982,\"listed_count\":4,\"created_at\":\"Wed Nov 03 17:41:39 +0000 2010\",\"favourites_count\":2984,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3488,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319694544829636609\\/dL6VDvka_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319694544829636609\\/dL6VDvka_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/211586223\\/1415561983\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1023\":{\"id\":2540367001,\"id_str\":\"2540367001\",\"name\":\"Emmanuel Amakiri\",\"screen_name\":\"Makiri_manuel\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Versatile Entrepreneur. Radical Biochemist.\\ud83d\\ude0e\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":208,\"listed_count\":0,\"created_at\":\"Sun Jun 01 21:55:40 +0000 2014\",\"favourites_count\":420,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":195,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554404176993681409\\/g60XSxV1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554404176993681409\\/g60XSxV1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2540367001\\/1659433832\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"78C0A8\",\"profile_text_color\":\"5E412F\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1024\":{\"id\":1158344306559725571,\"id_str\":\"1158344306559725571\",\"name\":\"JBS\",\"screen_name\":\"JadonDashery\",\"location\":\"Accra, Ghana\",\"description\":\"\\ud83e\\udd35\\ud83c\\udffbSuit & Tuxedo | \\ud83d\\udc54Shirt & Ties | Delivery 24Hrs 0557801016.\",\"url\":\"https:\\/\\/t.co\\/TV0SAbuuTT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TV0SAbuuTT\",\"expanded_url\":\"https:\\/\\/wa.link\\/c8rpw6\",\"display_url\":\"wa.link\\/c8rpw6\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":510,\"friends_count\":614,\"listed_count\":1,\"created_at\":\"Mon Aug 05 11:49:38 +0000 2019\",\"favourites_count\":1737,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490763358211084292\\/MDZjKWOh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490763358211084292\\/MDZjKWOh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1158344306559725571\\/1651239778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1025\":{\"id\":1554452432117276673,\"id_str\":\"1554452432117276673\",\"name\":\"Adighije Regan\",\"screen_name\":\"__osinachi__\",\"location\":\"Umuahia, Nigeria\",\"description\":\"Content writer|Poet|everything beautiful| @manutd fan\\nGGMU!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Tue Aug 02 13:02:14 +0000 2022\",\"favourites_count\":422,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554733257052266498\\/2VJ5Ea8f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554733257052266498\\/2VJ5Ea8f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554452432117276673\\/1659512311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1026\":{\"id\":1385591842733953025,\"id_str\":\"1385591842733953025\",\"name\":\"DJ SANOS\",\"screen_name\":\"GeorgeEneje\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Entertainment Lover | Music Producer | Beat Maker | Amateur Photographer | Amateur Film Maker | Communication & Media Studies\",\"url\":\"https:\\/\\/t.co\\/XNPotoYIkP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XNPotoYIkP\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/weird-daredevilnft\",\"display_url\":\"opensea.io\\/collection\\/wei\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":613,\"friends_count\":457,\"listed_count\":25,\"created_at\":\"Fri Apr 23 13:50:27 +0000 2021\",\"favourites_count\":377,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532624853479698432\\/TOg1e8dt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532624853479698432\\/TOg1e8dt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1385591842733953025\\/1648373830\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1027\":{\"id\":1508810016366772228,\"id_str\":\"1508810016366772228\",\"name\":\"Shortlet lagos\",\"screen_name\":\"ShortletLagosng\",\"location\":\"Lagos, Nigeria\",\"description\":\"Service apartments in Lagos Nigeria.. Listing|| Bookings|| Regular stay|| House parties|| Movie\\/video shoots|| TV Commercials. call\\/watshapp +2348137623065\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Tue Mar 29 14:15:41 +0000 2022\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508871505853169669\\/lCmNiMxC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508871505853169669\\/lCmNiMxC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1508810016366772228\\/1648577986\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1028\":{\"id\":1229291322047111173,\"id_str\":\"1229291322047111173\",\"name\":\"Stancity\",\"screen_name\":\"Stancity3\",\"location\":\"Abuja\",\"description\":\"The Earth is ours to Plough and Not to Plunder!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Mon Feb 17 06:28:10 +0000 2020\",\"favourites_count\":2498,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":816,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530470919776440323\\/u-Tos2Ws_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530470919776440323\\/u-Tos2Ws_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1229291322047111173\\/1659465084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1029\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1030\":{\"id\":1482286953806630912,\"id_str\":\"1482286953806630912\",\"name\":\"Hon Gaya\",\"screen_name\":\"MrGaya23\",\"location\":\"Nigeria\",\"description\":\"The legacy builder's, peace builder and Compassionate\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":193,\"friends_count\":577,\"listed_count\":0,\"created_at\":\"Sat Jan 15 09:42:31 +0000 2022\",\"favourites_count\":2693,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482286953806630912\\/1653148630\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1031\":{\"id\":1078454444029825025,\"id_str\":\"1078454444029825025\",\"name\":\"N_ssey\",\"screen_name\":\"Nsikanekanemm\",\"location\":\"Uyo, Nigeria\",\"description\":\"Email: Nsikanuekanem@gmail.com IG: @Nsikanekanemm Actor, Content Creator, YouTuber\\ud83e\\udd17\",\"url\":\"https:\\/\\/t.co\\/Go1BvVJdWM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Go1BvVJdWM\",\"expanded_url\":\"https:\\/\\/nsikanekanem.disha.page\",\"display_url\":\"nsikanekanem.disha.page\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":352,\"friends_count\":657,\"listed_count\":1,\"created_at\":\"Fri Dec 28 00:55:50 +0000 2018\",\"favourites_count\":1783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":553,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528076568802754562\\/_gXplSUR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528076568802754562\\/_gXplSUR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1078454444029825025\\/1551844157\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1032\":{\"id\":1537458387067314177,\"id_str\":\"1537458387067314177\",\"name\":\"Class Suites Hotel & Apartments\",\"screen_name\":\"classsuitehotel\",\"location\":\"Nigeria\",\"description\":\"Hotel & Apartments; Your home away from home \\ud83c\\udfe1\",\"url\":\"https:\\/\\/t.co\\/nLFlO8nWwM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nLFlO8nWwM\",\"expanded_url\":\"https:\\/\\/classsuite.com\\/\",\"display_url\":\"classsuite.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Thu Jun 16 15:34:24 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":55,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537458639589588993\\/2f6WP4T4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537458639589588993\\/2f6WP4T4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537458387067314177\\/1655394235\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1033\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1034\":{\"id\":1499465796975841292,\"id_str\":\"1499465796975841292\",\"name\":\"KING RICKKY\",\"screen_name\":\"Kingrickky23\",\"location\":\"Lagos, Nigeria\",\"description\":\"Rickky la cooler yo\\ud83d\\udc51\\ud83d\\ude07\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":504,\"friends_count\":490,\"listed_count\":0,\"created_at\":\"Thu Mar 03 19:24:56 +0000 2022\",\"favourites_count\":1440,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1149,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549327077278715904\\/c60ZaKFS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549327077278715904\\/c60ZaKFS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1035\":{\"id\":743528576541200384,\"id_str\":\"743528576541200384\",\"name\":\"Julius d Just\",\"screen_name\":\"JobayeResources\",\"location\":\"lagos\",\"description\":\"I m a great guy, found by God mercy and strengthen by God grace. I am on a journey 2 heavenly but destined 2 water the earth as take each step. #Blessed2Bless\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":745,\"listed_count\":10,\"created_at\":\"Thu Jun 16 19:40:01 +0000 2016\",\"favourites_count\":58,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":442,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535750098931654658\\/yPnvVULJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535750098931654658\\/yPnvVULJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743528576541200384\\/1654986331\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1036\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1037\":{\"id\":880015105135607808,\"id_str\":\"880015105135607808\",\"name\":\"Zeeter Oliver\",\"screen_name\":\"OliverZeeter\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec Afrofusion Songstress of Abuja \\n. \\n\\nInstagram\\n\\n- @zeeteroliver \\n\\nMy Music \\n- \\n\\nhttps:\\/\\/t.co\\/nccSFc5qkp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nccSFc5qkp\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Zeeteroliver\",\"display_url\":\"linktr.ee\\/Zeeteroliver\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":326,\"friends_count\":1050,\"listed_count\":1,\"created_at\":\"Wed Jun 28 10:48:45 +0000 2017\",\"favourites_count\":904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":784,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880015105135607808\\/1659766982\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1038\":{\"id\":1331195103080312835,\"id_str\":\"1331195103080312835\",\"name\":\"6FIVE EMPIRE\",\"screen_name\":\"6fiveEmpire\",\"location\":\"Anambra, Nigeria\",\"description\":\"Entertainment, Media, building design, Construction and education #COMPANY\\nWe love to help people think differently so they can have financial freedom.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":159,\"listed_count\":1,\"created_at\":\"Tue Nov 24 11:18:42 +0000 2020\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331199094019264515\\/W6F3j__2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331199094019264515\\/W6F3j__2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331195103080312835\\/1659885072\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1039\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1040\":{\"id\":324184276,\"id_str\":\"324184276\",\"name\":\"Ayodele ti idi ile Ogunsusi\",\"screen_name\":\"officialOSYB\",\"location\":\"Nigeria\",\"description\":\"O.A.P, #87MediaCo #JesusBoy #FakeAccents. Compere | Music Producer |Copy Writer |Songwriter |Singer |Voice Actor. Bookings 07032700419.\",\"url\":\"https:\\/\\/t.co\\/VOFxhyszqh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VOFxhyszqh\",\"expanded_url\":\"https:\\/\\/youtu.be\\/-V7j8TcY9MQ\",\"display_url\":\"youtu.be\\/-V7j8TcY9MQ\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1089,\"friends_count\":1035,\"listed_count\":8,\"created_at\":\"Sun Jun 26 04:34:08 +0000 2011\",\"favourites_count\":6566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17140,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481599727774969862\\/-hHI30lB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481599727774969862\\/-hHI30lB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/324184276\\/1653840453\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1041\":{\"id\":1498420205554483204,\"id_str\":\"1498420205554483204\",\"name\":\"Mr Myke M\\ud83d\\udc99\",\"screen_name\":\"mrmyke_1\",\"location\":\"Aba, Nigeria\",\"description\":\"crypto king\\n\\nI sell South African Somerset wine and we create perfume #fragrance .\",\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"expanded_url\":\"http:\\/\\/athena-stores.business.site\",\"display_url\":\"athena-stores.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Mon Feb 28 22:10:13 +0000 2022\",\"favourites_count\":137,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498420205554483204\\/1646392456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1042\":{\"id\":226166695,\"id_str\":\"226166695\",\"name\":\"Eze Am\\u1ee5 na Eke \\u26aa\",\"screen_name\":\"Jugo_kc\",\"location\":\"Lagos, Nigeria\",\"description\":\"A writer, an entertainer, A real Estate Agent. Catholic. Masculinist!!. The author of Love is just amazing, On https:\\/\\/t.co\\/fU4lVSvyuC\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fU4lVSvyuC\",\"expanded_url\":\"http:\\/\\/Amazon.com\",\"display_url\":\"Amazon.com\",\"indices\":[111,134]}]}},\"protected\":false,\"followers_count\":1130,\"friends_count\":1107,\"listed_count\":0,\"created_at\":\"Mon Dec 13 13:56:08 +0000 2010\",\"favourites_count\":217099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":27626,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536264299324252160\\/w9LNxgJP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536264299324252160\\/w9LNxgJP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/226166695\\/1653151824\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1043\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1044\":{\"id\":1136575796636803072,\"id_str\":\"1136575796636803072\",\"name\":\"Payday Republik\",\"screen_name\":\"PaydayRepublik\",\"location\":\"\",\"description\":\"We\\u2019Outside \\ud83c\\udf0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":417,\"friends_count\":395,\"listed_count\":0,\"created_at\":\"Thu Jun 06 10:09:21 +0000 2019\",\"favourites_count\":6544,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538194420541145093\\/GPkJ98id_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538194420541145093\\/GPkJ98id_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1136575796636803072\\/1580318711\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1045\":{\"id\":1100468667815477248,\"id_str\":\"1100468667815477248\",\"name\":\"daps :)\",\"screen_name\":\"beatsbydaps\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"expanded_url\":\"https:\\/\\/mainstack.me\\/daps\",\"display_url\":\"mainstack.me\\/daps\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":274,\"friends_count\":434,\"listed_count\":2,\"created_at\":\"Tue Feb 26 18:52:30 +0000 2019\",\"favourites_count\":4493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100468667815477248\\/1655589645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1046\":{\"id\":1296726719425130497,\"id_str\":\"1296726719425130497\",\"name\":\"Igwe Richard\",\"screen_name\":\"IgweRichard8\",\"location\":\"Nigeria\",\"description\":\"simplicity is my nature, I love equity, justice and fairness, I hate discrimination.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Aug 21 08:32:21 +0000 2020\",\"favourites_count\":1112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":240,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549999638811377664\\/LxVl3_Ae_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549999638811377664\\/LxVl3_Ae_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1296726719425130497\\/1659511479\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1047\":{\"id\":268106672,\"id_str\":\"268106672\",\"name\":\"chuzzello\",\"screen_name\":\"chuzzy247\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pharmacist|||Entrepreneur|||Public Affairs Analyst|||\\u00b6\\u2122\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":223,\"friends_count\":224,\"listed_count\":0,\"created_at\":\"Fri Mar 18 04:34:36 +0000 2011\",\"favourites_count\":12313,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3831,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554566795360714752\\/cJdpiNLf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554566795360714752\\/cJdpiNLf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1048\":{\"id\":1513140523346931718,\"id_str\":\"1513140523346931718\",\"name\":\"Your Excellency\",\"screen_name\":\"yenkwin\",\"location\":\"Nigeria\",\"description\":\"Graphics Designer | Official tweets are assigned GN, else it's just for fun.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":103,\"listed_count\":0,\"created_at\":\"Sun Apr 10 13:03:32 +0000 2022\",\"favourites_count\":1354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1049\":{\"id\":783378050,\"id_str\":\"783378050\",\"name\":\"It's Kyng Babe\",\"screen_name\":\"Iamkyngizy\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udc10First African rapper to mint his Music as NFT - NFhttps:\\/\\/opensea.io\\/Kyng-izynI Bookings : Izzythegreen@gmail.com\",\"url\":\"https:\\/\\/t.co\\/6haTwnmdxK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6haTwnmdxK\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/sure4me\",\"display_url\":\"fanlink.to\\/sure4me\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":374,\"friends_count\":1188,\"listed_count\":0,\"created_at\":\"Sun Aug 26 23:20:14 +0000 2012\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503321908254806017\\/OFfacZ-d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503321908254806017\\/OFfacZ-d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783378050\\/1659381261\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1050\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1051\":{\"id\":333373252,\"id_str\":\"333373252\",\"name\":\"Gbenga Adene\",\"screen_name\":\"GbengaAdene\",\"location\":\"Nigeria\",\"description\":\"Architect @gbengaadene Public Speaker @contacthowga1 and a Consultant. Ondo State Youth of the Year 2019 || JCI Top Ten Youths in Nigeria 2020\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1173,\"friends_count\":99,\"listed_count\":1,\"created_at\":\"Mon Jul 11 12:50:49 +0000 2011\",\"favourites_count\":2521,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395708244190957568\\/gB8Gq6oM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395708244190957568\\/gB8Gq6oM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/333373252\\/1525846402\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1052\":{\"id\":1501236907954610185,\"id_str\":\"1501236907954610185\",\"name\":\"Tariq Properties Limited\",\"screen_name\":\"tariqproperties\",\"location\":\"Nigeria\",\"description\":\"Real Estate Broker| Consultant |Development\\ud83d\\udccdVGC- Ikoyi \\ud83c\\udfe0Sales \\ud83c\\udfe0Rents \\ud83c\\udfe0Land\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Tue Mar 08 16:43:37 +0000 2022\",\"favourites_count\":64,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501237447732170755\\/q5EGbjnc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501237447732170755\\/q5EGbjnc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501236907954610185\\/1646758022\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1053\":{\"id\":1552563432960000000,\"id_str\":\"1552563432960000000\",\"name\":\"Brymstone\\ud83e\\udd85\\ud83d\\udda4\\ud83c\\udf0a\",\"screen_name\":\"brymstone001\",\"location\":\"Lagos, Nigeria\",\"description\":\"Aquarius King \\u2652\\ufe0f || Innovative || progressive || and || shamelessly revolutionary ||\\ud83e\\udd17\\ud83d\\udcaf I stan @wizkidayo for life\\ud83e\\udd85\\ud83d\\udda4\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":219,\"listed_count\":0,\"created_at\":\"Thu Jul 28 07:55:58 +0000 2022\",\"favourites_count\":154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":164,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552563579722801153\\/y-WywhUz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552563579722801153\\/y-WywhUz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552563432960000000\\/1659278534\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1054\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1055\":{\"id\":2180916851,\"id_str\":\"2180916851\",\"name\":\"KING OF THE STREET \\u270d\\ufe0f\",\"screen_name\":\"Mc_Highness\",\"location\":\"Nigeria\",\"description\":\"News and Media Company\",\"url\":\"https:\\/\\/t.co\\/dnRLuXpMcS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dnRLuXpMcS\",\"expanded_url\":\"http:\\/\\/www.naijarealitynews.com\",\"display_url\":\"naijarealitynews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":948,\"friends_count\":2894,\"listed_count\":5,\"created_at\":\"Thu Nov 14 17:14:25 +0000 2013\",\"favourites_count\":940,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4998,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367825090117853187\\/tgdrXgmm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367825090117853187\\/tgdrXgmm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2180916851\\/1652413249\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1056\":{\"id\":1320431678,\"id_str\":\"1320431678\",\"name\":\"Igbuku christian mamus\",\"screen_name\":\"SirIgbuku\",\"location\":\"Nigeria\",\"description\":\"Am a certified librarian,a businessman also a politician, in all Christ is my priority\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":244,\"friends_count\":332,\"listed_count\":1,\"created_at\":\"Mon Apr 01 14:14:37 +0000 2013\",\"favourites_count\":115,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":344,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551277807082291200\\/5ztE_JOC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551277807082291200\\/5ztE_JOC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320431678\\/1642064501\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1057\":{\"id\":1496492388910571532,\"id_str\":\"1496492388910571532\",\"name\":\"bgrconnect\",\"screen_name\":\"bgrconnect\",\"location\":\"Lekki, Nigeria\",\"description\":\"Banksome Global Resources delivers high quality & energy sufficient buildings and exceptional projection management services on our construction projects.\",\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"expanded_url\":\"http:\\/\\/www.banksomegroup.com\",\"display_url\":\"banksomegroup.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Wed Feb 23 14:34:17 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1058\":{\"id\":1375008658246008833,\"id_str\":\"1375008658246008833\",\"name\":\"Ability\",\"screen_name\":\"ability_etuk\",\"location\":\"lekki\",\"description\":\"Digital marketer|SEO Specialist|Graphic designer| music lover\\ud83c\\udfb8\\ud83c\\udfb8\\ud83c\\udfb6\\n\\ud83d\\ude0bno mind the bio\\ud83e\\udd2aI like enjoyment too\",\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"expanded_url\":\"http:\\/\\/www.rapigrowth.com.ng\",\"display_url\":\"rapigrowth.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Thu Mar 25 08:56:39 +0000 2021\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375008658246008833\\/1659134272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1059\":{\"id\":2409715205,\"id_str\":\"2409715205\",\"name\":\"Odipkreations\",\"screen_name\":\"odipkreations\",\"location\":\"Abuja\",\"description\":\"You can get the best when u trust us to give u the best. This is odip kreation where ur dreams abt cakes become a reality. Pin:2BB356AA. Call 08064077401\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Fri Mar 14 09:12:08 +0000 2014\",\"favourites_count\":332,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":520,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1259999982071005187\\/L8mqai9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1259999982071005187\\/L8mqai9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2409715205\\/1478247326\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1060\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1061\":{\"id\":1060922787425120256,\"id_str\":\"1060922787425120256\",\"name\":\"Beejayspecial_comedy\",\"screen_name\":\"BEEJAYSPECIAL_C\",\"location\":\"Osun\",\"description\":\"I\\u2019m a student of Federal university of technology minna Niger state ( Mathematics education ) ACTOR | COMEDIAN | EDITOR #support your boi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Fri Nov 09 15:51:18 +0000 2018\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":214,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455286420348702721\\/rRCsl7vj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455286420348702721\\/rRCsl7vj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1060922787425120256\\/1655450952\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1062\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1063\":{\"id\":1282445934065057792,\"id_str\":\"1282445934065057792\",\"name\":\"soulflows fyneface\",\"screen_name\":\"soulflows_F\",\"location\":\"Nigeria\",\"description\":\"Husband| TV Host|Coach| political Analyst|word in 60 seconds|voice over artist|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1468,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Sun Jul 12 22:45:21 +0000 2020\",\"favourites_count\":14051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":417,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282445934065057792\\/1594594508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1064\":{\"id\":927116579116118016,\"id_str\":\"927116579116118016\",\"name\":\"dubizSenju\",\"screen_name\":\"dubiz_senju\",\"location\":\"Nigeria \",\"description\":\"my name is dubem Victor \\nI'm a digital comic artist. \\nI'm the author of the webcomic:Dream\\nI also make digital portraits and posters,\\nI take commissions\",\"url\":\"https:\\/\\/t.co\\/11ZVKTYAi4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/11ZVKTYAi4\",\"expanded_url\":\"http:\\/\\/www.dreamseries.webcomic.ws\",\"display_url\":\"dreamseries.webcomic.ws\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":90,\"friends_count\":238,\"listed_count\":1,\"created_at\":\"Sun Nov 05 10:13:12 +0000 2017\",\"favourites_count\":151,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529451360638361603\\/1LOk23J7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529451360638361603\\/1LOk23J7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/927116579116118016\\/1589452669\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1065\":{\"id\":1154339523800834048,\"id_str\":\"1154339523800834048\",\"name\":\"MIMI NATION\",\"screen_name\":\"Mimi_Nation22\",\"location\":\"Abuja, Nigeria\",\"description\":\"A visual artist, I paint with gold and silver. Listed NFT's for sale to invest in my art and community.\\n\\nPlease collect my Arts via the link below. Thanks\",\"url\":\"https:\\/\\/t.co\\/mBshyztJ1T\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mBshyztJ1T\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/mimi-nation-collection\",\"display_url\":\"opensea.io\\/collection\\/mim\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":119,\"listed_count\":0,\"created_at\":\"Thu Jul 25 10:36:03 +0000 2019\",\"favourites_count\":210,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534137134730338304\\/dIP_rZcK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534137134730338304\\/dIP_rZcK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1154339523800834048\\/1654601771\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1066\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1067\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1068\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1069\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1070\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1071\":{\"id\":1136514277160960000,\"id_str\":\"1136514277160960000\",\"name\":\"Savage Lord\\ud83d\\udda4\\ud83d\\udc9b\",\"screen_name\":\"EtzlordA\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pr || Graphic Artist || Brand Influencer || Web Designer!\\ud83d\\uddb1\\nNo bad vibe. \\ud83d\\udc95\\n\\ud83c\\udf8a Sagittarius \\ud83c\\udf8a\\nIg: @etzlord_savage \\nChat\\ud83e\\udd4f: https:\\/\\/t.co\\/Ujf1UJtPDi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ujf1UJtPDi\",\"expanded_url\":\"https:\\/\\/wa.me\\/DM\",\"display_url\":\"wa.me\\/DM\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":489,\"friends_count\":681,\"listed_count\":0,\"created_at\":\"Thu Jun 06 06:04:53 +0000 2019\",\"favourites_count\":8566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2893,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1404620576728178688\\/4n5DGtue_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1404620576728178688\\/4n5DGtue_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1072\":{\"id\":621221632,\"id_str\":\"621221632\",\"name\":\"sojex\",\"screen_name\":\"BabatundeSoji\",\"location\":\"Ifo ogun state Nigeria\",\"description\":\"Crop production and Animal science consultant\\/ Soil scientist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259,\"friends_count\":1073,\"listed_count\":0,\"created_at\":\"Thu Jun 28 18:49:33 +0000 2012\",\"favourites_count\":2985,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532838920546820096\\/v3Igpb-k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532838920546820096\\/v3Igpb-k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1073\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1074\":{\"id\":769255514,\"id_str\":\"769255514\",\"name\":\"KRAZY_BANKER COMEDY\",\"screen_name\":\"krazy_bankr\",\"location\":\"LAGOS\",\"description\":\"ALL INVOLVED\",\"url\":\"https:\\/\\/t.co\\/FPcqVsoffp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FPcqVsoffp\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCCKz5deQyvmVySCdHl5PkIg\",\"display_url\":\"youtube.com\\/channel\\/UCCKz5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Mon Aug 20 10:18:47 +0000 2012\",\"favourites_count\":170,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":100,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550642793848135680\\/Md4Re7hl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550642793848135680\\/Md4Re7hl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/769255514\\/1658537038\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1075\":{\"id\":960046854,\"id_str\":\"960046854\",\"name\":\"onos\",\"screen_name\":\"Onos_bee\",\"location\":\"lagos\",\"description\":\"3D artist| VFX| Man utd Fan\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":71,\"listed_count\":0,\"created_at\":\"Tue Nov 20 08:54:23 +0000 2012\",\"favourites_count\":94,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1376942537596932097\\/yzreRkoO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1376942537596932097\\/yzreRkoO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/960046854\\/1656350386\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1076\":{\"id\":1173633660316213248,\"id_str\":\"1173633660316213248\",\"name\":\"Maurice Udedike\",\"screen_name\":\"dunuotubelu\",\"location\":\"Lagos, Nigeria\",\"description\":\"like exploring\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":670,\"friends_count\":1332,\"listed_count\":0,\"created_at\":\"Mon Sep 16 16:24:35 +0000 2019\",\"favourites_count\":17560,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1077\":{\"id\":859248504,\"id_str\":\"859248504\",\"name\":\"LECTOR NOCTURNO\",\"screen_name\":\"MangasJavier\",\"location\":\"Marte\",\"description\":\"Quiero dormir un rato, un rato, un minuto, un siglo; pero que todos sepan que no he muerto\\n\\n#Pumas\\n#49ers #Dallas\\nContador de carrera\\nAteoPolitico\\nPero\\n\\ud83d\\udcaf% AMLO\",\"url\":\"https:\\/\\/t.co\\/7fJgdIrxsT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7fJgdIrxsT\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/MangasJavier\",\"display_url\":\"Instagram.com\\/MangasJavier\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2522,\"friends_count\":2203,\"listed_count\":0,\"created_at\":\"Wed Oct 03 06:07:32 +0000 2012\",\"favourites_count\":26114,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82152,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532255746754129920\\/Jcx3k3hL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532255746754129920\\/Jcx3k3hL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/859248504\\/1654578395\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1078\":{\"id\":1342889742501896192,\"id_str\":\"1342889742501896192\",\"name\":\"Official Wiseking\",\"screen_name\":\"WiseKingoffici1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Super star wise king unsign Artist, for Booking,09055186154, Email wisebaba25@gmail.com @davido @Olamide @emoney @Rihanna @wisekingoffici1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":350,\"friends_count\":2157,\"listed_count\":1,\"created_at\":\"Sat Dec 26 17:47:40 +0000 2020\",\"favourites_count\":945,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342889742501896192\\/1655718497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1079\":{\"id\":841787565669814272,\"id_str\":\"841787565669814272\",\"name\":\"No 1 Kitchen And Household Store\",\"screen_name\":\"Highkay_Store\",\"location\":\"Ogun, Nigeria\",\"description\":\"\\ud83d\\udcaf Online Store\\nE - Commerce\\nMini Importation\\nProcurement Agent\\nDigital Marketing\\nFarmer (Plantation)\",\"url\":\"https:\\/\\/t.co\\/WM7f5j9KtM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WM7f5j9KtM\",\"expanded_url\":\"http:\\/\\/www.highkaystore.website\",\"display_url\":\"highkaystore.website\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6903,\"friends_count\":6274,\"listed_count\":2,\"created_at\":\"Tue Mar 14 23:06:10 +0000 2017\",\"favourites_count\":132755,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":90901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482615880982880258\\/Icz6A_sZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482615880982880258\\/Icz6A_sZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/841787565669814272\\/1642317761\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1080\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1081\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1082\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1083\":{\"id\":721409786,\"id_str\":\"721409786\",\"name\":\"Kindy\",\"screen_name\":\"raphaelkindy\",\"location\":\"Nigeria\",\"description\":\"A tech lover\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":813,\"listed_count\":2,\"created_at\":\"Sat Jul 28 03:33:50 +0000 2012\",\"favourites_count\":1443,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550701008698892288\\/LOJ5oi3n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550701008698892288\\/LOJ5oi3n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/721409786\\/1646459272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1084\":{\"id\":881482790415609856,\"id_str\":\"881482790415609856\",\"name\":\"Humanaidng\",\"screen_name\":\"humanaidng\",\"location\":\"Abuja, Nigeria\",\"description\":\"We are professionals committed to promoting child education, health and empowering mothers for sustainable child care.\",\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\",\"display_url\":\"humanaid.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sun Jul 02 12:00:49 +0000 2017\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/881482790415609856\\/1561182580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1085\":{\"id\":921181314400661504,\"id_str\":\"921181314400661504\",\"name\":\"ONOGWU Muhammed\",\"screen_name\":\"Galacticus_O\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Technologist, Journalist, Chief Press Secretary to @OfficialGYBKogi\",\"url\":\"https:\\/\\/t.co\\/TQgtwSqZ62\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TQgtwSqZ62\",\"expanded_url\":\"http:\\/\\/www.kogistate.gov.ng\",\"display_url\":\"kogistate.gov.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9667,\"friends_count\":1415,\"listed_count\":14,\"created_at\":\"Fri Oct 20 01:08:34 +0000 2017\",\"favourites_count\":2891,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1940,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538590533899243520\\/eFQreVIo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538590533899243520\\/eFQreVIo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/921181314400661504\\/1655824853\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1086\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1087\":{\"id\":1573449217,\"id_str\":\"1573449217\",\"name\":\"Ben diamond\",\"screen_name\":\"Llyodben56\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"that nice guy\",\"url\":\"https:\\/\\/t.co\\/WgrLPO3PgL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WgrLPO3PgL\",\"expanded_url\":\"http:\\/\\/Facebook.com\\/llyodben\",\"display_url\":\"Facebook.com\\/llyodben\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":245,\"listed_count\":1,\"created_at\":\"Sat Jul 06 18:52:48 +0000 2013\",\"favourites_count\":802,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1342165822568075266\\/zuLRVzRV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1342165822568075266\\/zuLRVzRV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1573449217\\/1373146068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1088\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1089\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1090\":{\"id\":1537878267587227649,\"id_str\":\"1537878267587227649\",\"name\":\"This_is_gabrieltv\",\"screen_name\":\"gabriel1tv\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec v \\ud83d\\ude02a \\ud83d\\ude02w \\ud83d\\ude02u \\ud83d\\ude02l \\ud83d\\ude02e \\ud83d\\ude02n \\ud83d\\ude02c \\ud83d\\ude02e \\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/PEK959NwkO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PEK959NwkO\",\"expanded_url\":\"https:\\/\\/gabriel1tv.blogspot.com\\/\",\"display_url\":\"gabriel1tv.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":43,\"listed_count\":1,\"created_at\":\"Fri Jun 17 19:22:36 +0000 2022\",\"favourites_count\":253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":98,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537879830699462658\\/m4IIceuI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537879830699462658\\/m4IIceuI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537878267587227649\\/1655495903\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1091\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1092\":{\"id\":245215938,\"id_str\":\"245215938\",\"name\":\"Ugoala Justice Uche\",\"screen_name\":\"just_urch\",\"location\":\"Nigeria\",\"description\":\"We make the Best Peanuts\\/\\n\\n IG: @greatfoodsng\\n\\nJust about anyone can be Financially Independent\",\"url\":\"https:\\/\\/t.co\\/3mhDtNxR2q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3mhDtNxR2q\",\"expanded_url\":\"https:\\/\\/ucheugoala.blogspot.com.ng\\/\",\"display_url\":\"ucheugoala.blogspot.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":536,\"friends_count\":2035,\"listed_count\":3,\"created_at\":\"Mon Jan 31 04:34:34 +0000 2011\",\"favourites_count\":8563,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10444,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1290009597147742210\\/N51YwzAa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1290009597147742210\\/N51YwzAa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/245215938\\/1621753201\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1093\":{\"id\":1016809643157458946,\"id_str\":\"1016809643157458946\",\"name\":\"Lloyd Manasseh E. Agbonlahor\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f\",\"screen_name\":\"Lloyd_Manasseh\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\u2206 Head of Mission - The GreenLabel Africa\\n\\u2206 Special Youth Envoy - New Africa-France Summit\\n\\u2206 Refugees, IDPs, Returnees & Stateless Persons Advocate\",\"url\":\"https:\\/\\/t.co\\/7p3YBMcuJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7p3YBMcuJX\",\"expanded_url\":\"http:\\/\\/Thegreenlabelafrica.org\",\"display_url\":\"Thegreenlabelafrica.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1008,\"friends_count\":334,\"listed_count\":0,\"created_at\":\"Tue Jul 10 22:21:25 +0000 2018\",\"favourites_count\":5577,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551598324561727490\\/BFCpc2Pk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551598324561727490\\/BFCpc2Pk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1016809643157458946\\/1578265720\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1094\":{\"id\":1546596557239328769,\"id_str\":\"1546596557239328769\",\"name\":\"Oyeseeker\\ud83d\\udc99\",\"screen_name\":\"OyeseekerSamuel\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":299,\"listed_count\":0,\"created_at\":\"Mon Jul 11 20:46:24 +0000 2022\",\"favourites_count\":205,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546596792938233859\\/YcEuSiOt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546596792938233859\\/YcEuSiOt_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1095\":{\"id\":1482356556813545473,\"id_str\":\"1482356556813545473\",\"name\":\"Nigeria youths for Peter Obi\",\"screen_name\":\"peterobimandate\",\"location\":\"Abuja, Nigeria\",\"description\":\"Everything Peter Obi\\/\\/Update Peter Obi...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237,\"friends_count\":225,\"listed_count\":3,\"created_at\":\"Sat Jan 15 14:18:54 +0000 2022\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482356556813545473\\/1659438195\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1096\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1097\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1098\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1099\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1100\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1101\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1102\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1103\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1104\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1105\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1106\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1107\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1108\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1109\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1110\":{\"id\":1542230669337698305,\"id_str\":\"1542230669337698305\",\"name\":\"Abraham Ojehomome Airunugba \\ud83e\\udd8d\\ud83e\\udd8d\\ud83e\\udd8d\\ud83e\\udd8d\",\"screen_name\":\"abraham_airs\",\"location\":\"Lagos, Nigeria\",\"description\":\"Introvert.#Hope #Kindness #Love #Physiologist. #CriticalThinking.#Wellness.A @Globalcitizen #ClimateJustice.#BiomassEnergy.#Food @Afrofusion @Burnaboy Jugs.A \\ud83d\\udc8e\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":1346,\"listed_count\":0,\"created_at\":\"Wed Jun 29 19:37:25 +0000 2022\",\"favourites_count\":678,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":745,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555800490113470466\\/p8VdpKMN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555800490113470466\\/p8VdpKMN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1542230669337698305\\/1656657085\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1111\":{\"id\":1533776242494816256,\"id_str\":\"1533776242494816256\",\"name\":\"Faiese\",\"screen_name\":\"Wright_tweet\",\"location\":\"Lagos, Nigeria\",\"description\":\"Intelligent, creative, loves good things and God fearing\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Mon Jun 06 11:43:36 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534118859153854464\\/PwAZYr9L_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534118859153854464\\/PwAZYr9L_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1112\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1113\":{\"id\":927909864004902912,\"id_str\":\"927909864004902912\",\"name\":\"Chioma Nweze\",\"screen_name\":\"ChristabelNwez1\",\"location\":\"Nigeria\",\"description\":\"Am a passionate Actor & Model.Always giving it my best https:\\/\\/t.co\\/X50GYo1RPC can email me @ christabelnweze@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X50GYo1RPC\",\"expanded_url\":\"http:\\/\\/shot.You\",\"display_url\":\"shot.You\",\"indices\":[55,78]}]}},\"protected\":false,\"followers_count\":2,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Tue Nov 07 14:45:26 +0000 2017\",\"favourites_count\":184,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261231368304017410\\/edEduZ44_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261231368304017410\\/edEduZ44_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1114\":{\"id\":1487177731905400837,\"id_str\":\"1487177731905400837\",\"name\":\"Daniel TemiTope Oluwarado\",\"screen_name\":\"DOluwarado\",\"location\":\"Nigeria\",\"description\":\"I am a plumber\\ud83d\\ude01\\ud83d\\udc68\\u200d\\ud83d\\udd27\\ud83d\\udc51\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":41,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Fri Jan 28 21:36:31 +0000 2022\",\"favourites_count\":12399,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":105,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495788804057276417\\/qPPCrly2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495788804057276417\\/qPPCrly2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487177731905400837\\/1645458941\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1115\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1116\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1117\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1118\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1119\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1120\":{\"id\":1544222356515717120,\"id_str\":\"1544222356515717120\",\"name\":\"Real_Akintola Kiks\",\"screen_name\":\"daniel_kikiowo\",\"location\":\"Lagos.\",\"description\":\"I tweet about Life, Money, humans, Clothes,Music, fashion, Football, and Sales.\\n\\nIG : Kikispecialz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Tue Jul 05 07:32:00 +0000 2022\",\"favourites_count\":5024,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545097360338046977\\/E_jpFDls_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545097360338046977\\/E_jpFDls_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544222356515717120\\/1657214858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1121\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1122\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1123\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1124\":{\"id\":1396253789582135298,\"id_str\":\"1396253789582135298\",\"name\":\"Ghnewslive\",\"screen_name\":\"Ghnewslive_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghnewlive publishes most of Ghana\\u2019s best News, updates, current affairs, and Entertainment. We bring you breaking news and updates straight from Ghana....\",\"url\":\"https:\\/\\/t.co\\/xLKxbRR2a3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xLKxbRR2a3\",\"expanded_url\":\"http:\\/\\/ghnewslive.com\",\"display_url\":\"ghnewslive.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":587,\"friends_count\":1325,\"listed_count\":0,\"created_at\":\"Sat May 22 23:57:11 +0000 2021\",\"favourites_count\":1905,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2598,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1456309573510438912\\/YdyCUfF3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1456309573510438912\\/YdyCUfF3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396253789582135298\\/1636046234\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1125\":{\"id\":1490616678253801475,\"id_str\":\"1490616678253801475\",\"name\":\"I'm Kwesi\",\"screen_name\":\"Imkwesi_\",\"location\":\"Ghana\",\"description\":\"Enjoy my stressfree contents here\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":562,\"listed_count\":0,\"created_at\":\"Mon Feb 07 09:21:43 +0000 2022\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490616678253801475\\/1656956475\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1126\":{\"id\":1186208214552961024,\"id_str\":\"1186208214552961024\",\"name\":\"HUi HUi HUi HUi HUi\",\"screen_name\":\"DNobody101\",\"location\":\"UAE\",\"description\":\"Cheeni\\n\\nTweets R fake\\n\\nParody Account \\n\\nRocket Scientist\\n\\nIdiots will be Immediately BLOCKED \\n\\nPart Time Lawyer\\nFull Time Liar\\n\\nRT and Likes are NOT endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1185,\"friends_count\":1081,\"listed_count\":2,\"created_at\":\"Mon Oct 21 09:11:25 +0000 2019\",\"favourites_count\":130680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":820,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554499482653687808\\/bTPYwv2-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554499482653687808\\/bTPYwv2-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1186208214552961024\\/1656778726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1127\":{\"id\":1488673106373791749,\"id_str\":\"1488673106373791749\",\"name\":\"Ecomfavmichael\",\"screen_name\":\"olojo_michael\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am Michael, a digital marketer and website developer. From social media marketing to email marketing, Shopify marketing, I have always render quality services\",\"url\":\"https:\\/\\/t.co\\/KL5g4Dt32i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KL5g4Dt32i\",\"expanded_url\":\"https:\\/\\/61f9233093b20.site123.me\\/\",\"display_url\":\"61f9233093b20.site123.me\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":192,\"listed_count\":0,\"created_at\":\"Wed Feb 02 00:38:55 +0000 2022\",\"favourites_count\":332,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542276548895686657\\/9cjT49B5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542276548895686657\\/9cjT49B5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1488673106373791749\\/1656542357\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1128\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1129\":{\"id\":1206482529181749248,\"id_str\":\"1206482529181749248\",\"name\":\"Houseofmolecules\",\"screen_name\":\"Houseofmolecule\",\"location\":\"Lagos, Nigeria\",\"description\":\"PR| Web Designer| Brand Influencer| Car Dealer\",\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"expanded_url\":\"http:\\/\\/www.houseofmolecules.com.ng\",\"display_url\":\"houseofmolecules.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":533,\"friends_count\":552,\"listed_count\":0,\"created_at\":\"Mon Dec 16 07:53:57 +0000 2019\",\"favourites_count\":688,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":400,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1130\":{\"id\":1042067054440919040,\"id_str\":\"1042067054440919040\",\"name\":\"Ochicanado_\",\"screen_name\":\"ochicanado\",\"location\":\"Lagos, Nigeria\",\"description\":\"TALENT DISCOVERER\\n* Music Promoter\\n* Branding \\n* TVHost \\n* P.R.O @Bea_mediaNLTD\\n* Etalk @Fnktvchannel #ochicanadotalent #beamedianetworkltd #Fnktv\",\"url\":\"https:\\/\\/t.co\\/HJhaQGVBVz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HJhaQGVBVz\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCjas9-gIZQEpmgJUAo-c_Vw\",\"display_url\":\"youtube.com\\/channel\\/UCjas9\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":721,\"friends_count\":672,\"listed_count\":3,\"created_at\":\"Tue Sep 18 15:05:21 +0000 2018\",\"favourites_count\":88045,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20336,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1304458545484697600\\/aK16crbu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1304458545484697600\\/aK16crbu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1042067054440919040\\/1579668143\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1131\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1132\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1133\":{\"id\":1517348080705843217,\"id_str\":\"1517348080705843217\",\"name\":\"La princesse Anne \\ud83c\\udf6b\\ud83d\\udc8b\\ud83d\\udc83\",\"screen_name\":\"Balzack_17\",\"location\":\"Bamako Mali\",\"description\":\"\\u00c9tudiante Blogueuse, Journaliste, \\u00c9crivaine, Artiste\\nBeaut\\u00e9, demoiselle Assimiste,\\nBalzack_anne a bit shy (un peu timide)\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude4aslogan b\\u00e2t toi et c\\u00e9l\\u00e8bre \\ud83d\\udc9c\\ud83d\\udc9c\\ud83d\\udc9c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":399,\"friends_count\":807,\"listed_count\":0,\"created_at\":\"Fri Apr 22 03:42:46 +0000 2022\",\"favourites_count\":318,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":287,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556107150899937282\\/E3krWDAE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556107150899937282\\/E3krWDAE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517348080705843217\\/1659410167\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1134\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1135\":{\"id\":356370832,\"id_str\":\"356370832\",\"name\":\"PASTOR ELVIS O. ASORO\",\"screen_name\":\"elvisasoro\",\"location\":\"LAGOS , NIGERIA \",\"description\":\"MINISTER OF THE GOSPEL OF JESUS CHRIST AND WRITER. LEAD PASTOR, RESTORATION POWER OF GOD MINISTRY INTERNATIONAL, TRIUMPHANT. LAG. NIGERIA. I AM A WORLD CHANGER!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":178,\"listed_count\":4,\"created_at\":\"Tue Aug 16 19:09:18 +0000 2011\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/356370832\\/1450964262\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1136\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1137\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1138\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1139\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1140\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1141\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1142\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1143\":{\"id\":1130686728,\"id_str\":\"1130686728\",\"name\":\"KinG_Emmy\\u00ae\\ud83d\\udd4a\\ufe0f\",\"screen_name\":\"realemmysky\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2022\\u2022Father - Husband - Family Man - Businessman - Chelsea FC - Wizkid FC - Lover of football & Music\\u2022\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":284,\"friends_count\":1109,\"listed_count\":1,\"created_at\":\"Tue Jan 29 10:46:11 +0000 2013\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1763,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555781909338267648\\/KYb0H0m3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555781909338267648\\/KYb0H0m3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1130686728\\/1659707309\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1144\":{\"id\":516450674,\"id_str\":\"516450674\",\"name\":\"Moses Kaketo\",\"screen_name\":\"mkaketo\",\"location\":\"Uganda\",\"description\":\"Circulation and distribution expert,Journalist, Marketer, Farmer, Teacher. Writer at Newz Post https:\\/\\/t.co\\/Pwkue3WOYk\",\"url\":\"https:\\/\\/t.co\\/wtGE5sC5b6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wtGE5sC5b6\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/pub\\/moses-kaketo\\/31\\/b5b\\/437\",\"display_url\":\"linkedin.com\\/pub\\/moses-kake\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Pwkue3WOYk\",\"expanded_url\":\"http:\\/\\/www.newz.ug\",\"display_url\":\"newz.ug\",\"indices\":[95,118]}]}},\"protected\":false,\"followers_count\":503,\"friends_count\":268,\"listed_count\":60,\"created_at\":\"Tue Mar 06 11:43:30 +0000 2012\",\"favourites_count\":744,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6974,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/821594492042170368\\/tsNJs3n5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/821594492042170368\\/tsNJs3n5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/516450674\\/1484718328\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1145\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1146\":{\"id\":1405281648711802890,\"id_str\":\"1405281648711802890\",\"name\":\"Sunset Drone Gh\",\"screen_name\":\"drone_gh\",\"location\":\"Sunyani\",\"description\":\"Sunset Drone Gh is an aerial photography and videography team that has the aim of projecting the African continent to the world. follow us on YouTube to watch\",\"url\":\"https:\\/\\/t.co\\/PgKma6CFiz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PgKma6CFiz\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCZsa-p_JvFj5TVwbEZlLM0A\",\"display_url\":\"youtube.com\\/channel\\/UCZsa-\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":495,\"listed_count\":0,\"created_at\":\"Wed Jun 16 21:50:58 +0000 2021\",\"favourites_count\":141,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1405282139734646788\\/U4UrOTML_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1405282139734646788\\/U4UrOTML_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1405281648711802890\\/1623881927\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1147\":{\"id\":1348735095146950656,\"id_str\":\"1348735095146950656\",\"name\":\"Official_Ruth1\",\"screen_name\":\"RDaterush1\",\"location\":\"Accra, Ghana\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3181,\"friends_count\":8,\"listed_count\":1,\"created_at\":\"Mon Jan 11 20:55:05 +0000 2021\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554587768696803329\\/GxzSV8G5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554587768696803329\\/GxzSV8G5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1348735095146950656\\/1659478715\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1148\":{\"id\":1518447687850508290,\"id_str\":\"1518447687850508290\",\"name\":\"Adeyemi Toluwalase\",\"screen_name\":\"i_love_buterfly\",\"location\":\"Lagos, Nigeria\",\"description\":\"I love photography. It's what i do for a living\\ud83c\\udf80\\ud83d\\udcf7. \\ni make memories\\n@boy_director is my mentor\\nI love art\\nI love butterflies\\ud83d\\ude0a\\ninstagram@am_butterfly_shot_it\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Mon Apr 25 04:32:22 +0000 2022\",\"favourites_count\":547,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1518447687850508290\\/1656815290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1149\":{\"id\":1518447687850508290,\"id_str\":\"1518447687850508290\",\"name\":\"Adeyemi Toluwalase\",\"screen_name\":\"i_love_buterfly\",\"location\":\"Lagos, Nigeria\",\"description\":\"I love photography. It's what i do for a living\\ud83c\\udf80\\ud83d\\udcf7. \\ni make memories\\n@boy_director is my mentor\\nI love art\\nI love butterflies\\ud83d\\ude0a\\ninstagram@am_butterfly_shot_it\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Mon Apr 25 04:32:22 +0000 2022\",\"favourites_count\":547,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1518447687850508290\\/1656815290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1150\":{\"id\":1468663399013883907,\"id_str\":\"1468663399013883907\",\"name\":\"Eu_Gene\\ud83d\\uddff\\ud83c\\udde8\\ud83c\\udde6\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"eugene_iwunze\",\"location\":\"Lagos, Nigeria\",\"description\":\"If not God\\ud83e\\udd0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":37,\"friends_count\":76,\"listed_count\":0,\"created_at\":\"Wed Dec 08 19:28:04 +0000 2021\",\"favourites_count\":225,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522889237783359488\\/6kXCtDSO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522889237783359488\\/6kXCtDSO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468663399013883907\\/1651920062\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1151\":{\"id\":1504250408159617026,\"id_str\":\"1504250408159617026\",\"name\":\"Brian Jerry\",\"screen_name\":\"realbrianjerry\",\"location\":\"Accra\",\"description\":\"Author, Business Consultant, Medical Professional\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Thu Mar 17 00:17:25 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550393280600367106\\/D76zWIZt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550393280600367106\\/D76zWIZt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1504250408159617026\\/1658477549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1152\":{\"id\":1423396129048309762,\"id_str\":\"1423396129048309762\",\"name\":\"LITSPYCH0\\ud83c\\udf15\\ud83c\\udf19\\u2728\",\"screen_name\":\"lit_spych0\",\"location\":\"Abuja, Nigeria\",\"description\":\"#forbesminded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Thu Aug 05 21:31:14 +0000 2021\",\"favourites_count\":3336,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":162,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535691055554781185\\/Xw5hMDWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535691055554781185\\/Xw5hMDWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1423396129048309762\\/1648634086\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1153\":{\"id\":1351679985510187009,\"id_str\":\"1351679985510187009\",\"name\":\"Nyperri\",\"screen_name\":\"9yperri\",\"location\":\"Lagos, Nigeria\",\"description\":\"NYPERRI. artist. song writer. stage magician..... momentum Gang leader.\\nenquires info:@ 9yperri@ https:\\/\\/t.co\\/D34NhjJ9Xz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D34NhjJ9Xz\",\"expanded_url\":\"http:\\/\\/Gmail.com\",\"display_url\":\"Gmail.com\",\"indices\":[97,120]}]}},\"protected\":false,\"followers_count\":273,\"friends_count\":662,\"listed_count\":0,\"created_at\":\"Tue Jan 19 23:56:59 +0000 2021\",\"favourites_count\":972,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":153,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1379741796029304838\\/PIRPgGAb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1379741796029304838\\/PIRPgGAb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1351679985510187009\\/1613395418\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1154\":{\"id\":4106649551,\"id_str\":\"4106649551\",\"name\":\"imongan frei\",\"screen_name\":\"i_amFrei\",\"location\":\"lagos, Nigeria\",\"description\":\"Working, chocolate in color. fun to be wit..straight forward in Human. Play football nd badminton. Eat a lot cos I luv cooking\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":262,\"listed_count\":0,\"created_at\":\"Tue Nov 03 19:24:52 +0000 2015\",\"favourites_count\":193,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":307,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519818136526147584\\/_ric6_CL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519818136526147584\\/_ric6_CL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4106649551\\/1538875138\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1155\":{\"id\":949369120574844928,\"id_str\":\"949369120574844928\",\"name\":\"Matahari Organic Farms-Organisch Boerderijen\",\"screen_name\":\"Anthromarmalade\",\"location\":\"Porto Novo, BENIN\",\"description\":\"Journalism, Anthropologist, Organic Agriculture, Contemporary Art. \\nAutour des reves menaces par les fauves, on entretient le feu.\\n-Christiane Taubira-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":425,\"friends_count\":1187,\"listed_count\":7,\"created_at\":\"Fri Jan 05 19:56:51 +0000 2018\",\"favourites_count\":26799,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149975271807868928\\/scYpHXq8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149975271807868928\\/scYpHXq8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/949369120574844928\\/1613308090\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1156\":{\"id\":1527266123741265921,\"id_str\":\"1527266123741265921\",\"name\":\"SimmyMoses\",\"screen_name\":\"seemeon79\",\"location\":\"Akwa Ibom, Nigeria\",\"description\":\"Be nice to me\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":141,\"listed_count\":0,\"created_at\":\"Thu May 19 12:33:29 +0000 2022\",\"favourites_count\":247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534431929478565888\\/Yxd3zFea_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534431929478565888\\/Yxd3zFea_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1157\":{\"id\":1374863782992871428,\"id_str\":\"1374863782992871428\",\"name\":\"zuby blaq\\ud83d\\udcc8\\ud83d\\udcb0\",\"screen_name\":\"zubyblaq4\",\"location\":\"Nigeria\",\"description\":\"Music artist \\ud83c\\udfb6\\ud83c\\udfb6\\ud83c\\udfb6\\ud83c\\udfbc #NFT Lover ,crypto believer,NON FUNGIBLE HUMAN\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":604,\"listed_count\":23,\"created_at\":\"Wed Mar 24 23:21:04 +0000 2021\",\"favourites_count\":421,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1000,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529705702880591873\\/y2cN69Ww_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529705702880591873\\/y2cN69Ww_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1374863782992871428\\/1643658919\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1158\":{\"id\":1170042564688437255,\"id_str\":\"1170042564688437255\",\"name\":\"V for Vawulence\\ud83d\\uddef\",\"screen_name\":\"Ychizway\",\"location\":\"EPISODIC ESTATE\",\"description\":\"official IG account @ychizway\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Sep 06 18:34:47 +0000 2019\",\"favourites_count\":6420,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554622227693330433\\/rC9dJa8k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554622227693330433\\/rC9dJa8k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1170042564688437255\\/1659485809\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1159\":{\"id\":1543926431884918785,\"id_str\":\"1543926431884918785\",\"name\":\"Yahaya Adam\",\"screen_name\":\"iamyahayaadam\",\"location\":\"Ghana\",\"description\":\"Arts and entertainment\\n \\ud83d\\ude18Welcome\\ud83d\\ude1c\",\"url\":\"https:\\/\\/t.co\\/5CeWhgs6Br\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5CeWhgs6Br\",\"expanded_url\":\"https:\\/\\/mail.google.com\\/mail\\/mu\\/mp\\/231\\/\",\"display_url\":\"mail.google.com\\/mail\\/mu\\/mp\\/231\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":51,\"listed_count\":0,\"created_at\":\"Mon Jul 04 11:55:43 +0000 2022\",\"favourites_count\":32,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543926696272863232\\/ArtQz_YJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543926696272863232\\/ArtQz_YJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1543926431884918785\\/1658884081\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1160\":{\"id\":593836622,\"id_str\":\"593836622\",\"name\":\"SHEFFY B\",\"screen_name\":\"sheffy_b\",\"location\":\"lagos\",\"description\":\"official account of a recording\\/performing hip hop artist.for booking and enquiries contact olajideseun83@yahoo.com,olajideseun101@gmail.com,08134061338\",\"url\":\"https:\\/\\/t.co\\/Zq2E68JCW1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Zq2E68JCW1\",\"expanded_url\":\"http:\\/\\/goo.gl\\/aCHDpB\",\"display_url\":\"goo.gl\\/aCHDpB\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":619,\"listed_count\":1,\"created_at\":\"Tue May 29 16:21:39 +0000 2012\",\"favourites_count\":676,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1148,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534470887633784833\\/1HXgnwdp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534470887633784833\\/1HXgnwdp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/593836622\\/1655346304\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1161\":{\"id\":145736753,\"id_str\":\"145736753\",\"name\":\"prince mantse-bi\",\"screen_name\":\"mantsebi\",\"location\":\"Accra\",\"description\":\"JesusChrist, LoveWorld, ACMilan, Denzel_W, EvaMendes Zinedine_Zidane, Count of Monte Cristo, Wing-Chun | I follow back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":343,\"friends_count\":1174,\"listed_count\":1,\"created_at\":\"Wed May 19 19:03:09 +0000 2010\",\"favourites_count\":821,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1205857011591725057\\/3ljI-u6t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1205857011591725057\\/3ljI-u6t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/145736753\\/1576333691\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1162\":{\"id\":798491414753579008,\"id_str\":\"798491414753579008\",\"name\":\"israelpaulonyah\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"israelpaulonyah\",\"location\":\"lagos nigeria\",\"description\":\"I keep balling hard. I know am gonna get there\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":565,\"friends_count\":2721,\"listed_count\":1,\"created_at\":\"Tue Nov 15 11:42:43 +0000 2016\",\"favourites_count\":13618,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/823235368254316545\\/yUX-YI84_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/823235368254316545\\/yUX-YI84_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/798491414753579008\\/1537463320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1163\":{\"id\":348513392,\"id_str\":\"348513392\",\"name\":\"serendipity\",\"screen_name\":\"tundeflo\",\"location\":\"Lagos, Nigeria\",\"description\":\"inspirational speaker, teacher, writer and personal financial planner\",\"url\":\"https:\\/\\/t.co\\/xuIEFFatDs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xuIEFFatDs\",\"expanded_url\":\"http:\\/\\/www.tundeofhope.com\",\"display_url\":\"tundeofhope.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":160,\"friends_count\":220,\"listed_count\":2,\"created_at\":\"Thu Aug 04 15:15:24 +0000 2011\",\"favourites_count\":994,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2353,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1154005068338909184\\/ZdDSmEhK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1154005068338909184\\/ZdDSmEhK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/348513392\\/1384270344\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1164\":{\"id\":1395760548915068933,\"id_str\":\"1395760548915068933\",\"name\":\"APOSTLE GODWIN OCHIJE MICHAEL\",\"screen_name\":\"GodwinOchije\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"An Apostle of Christ to the nation's of the earth..\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":37,\"listed_count\":0,\"created_at\":\"Fri May 21 15:17:50 +0000 2021\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1165\":{\"id\":753865956200439808,\"id_str\":\"753865956200439808\",\"name\":\"Rainmakers Grandson\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\udded\",\"screen_name\":\"Scolarmann10\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Rotaractor|| Procurement Professional || Travel Junky || IT\",\"url\":\"https:\\/\\/t.co\\/bi7spmxeCj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bi7spmxeCj\",\"expanded_url\":\"http:\\/\\/www.witechtravel.com\",\"display_url\":\"witechtravel.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":164,\"friends_count\":422,\"listed_count\":0,\"created_at\":\"Fri Jul 15 08:17:05 +0000 2016\",\"favourites_count\":440,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1494438502037168132\\/-Zc5DE5x_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1494438502037168132\\/-Zc5DE5x_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/753865956200439808\\/1568101698\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1166\":{\"id\":4834659045,\"id_str\":\"4834659045\",\"name\":\"IT NEWS NIGERIA\",\"screen_name\":\"itnewsnigeria1\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT NEWS NIGERIA is a digital news platform promoting businesses, innovation, Fintechs, and start-ups. \\nThe future is online...\",\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"expanded_url\":\"https:\\/\\/www.itnewsnigeria.ng\",\"display_url\":\"itnewsnigeria.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1001,\"friends_count\":4713,\"listed_count\":5,\"created_at\":\"Fri Jan 22 09:39:04 +0000 2016\",\"favourites_count\":830,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4834659045\\/1489702799\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1167\":{\"id\":1553580006978224128,\"id_str\":\"1553580006978224128\",\"name\":\"Raymond Digital\",\"screen_name\":\"RaymondDigital2\",\"location\":\"Nigeria\",\"description\":\"Hello, I am a Web\\/E-commerce Developer and Author, I offer quality gigs for Etsy, Shopify, Wix, Redbubble, Amazon, Wattpad. I look forward to working with you\",\"url\":\"https:\\/\\/t.co\\/Ms3tOCdH9s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ms3tOCdH9s\",\"expanded_url\":\"http:\\/\\/www.fiverr.com\\/raymonddigital\",\"display_url\":\"fiverr.com\\/raymonddigital\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":140,\"listed_count\":0,\"created_at\":\"Sun Jul 31 03:15:42 +0000 2022\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553586679516127232\\/FVPdCgQc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553586679516127232\\/FVPdCgQc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553580006978224128\\/1659238909\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1168\":{\"id\":1311981647433265158,\"id_str\":\"1311981647433265158\",\"name\":\"Khojo_Hazard\\ud83d\\udd30\\ud83d\\udd30\",\"screen_name\":\"Khojo_Hazard25\",\"location\":\"Greater Accra, Ghana\",\"description\":\"No assistance, no handouts, no favors, straight hustle\\ud83d\\ude09\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1503,\"friends_count\":1750,\"listed_count\":0,\"created_at\":\"Fri Oct 02 10:49:49 +0000 2020\",\"favourites_count\":137212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":71670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540073594558054401\\/A9bqWfnZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540073594558054401\\/A9bqWfnZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1311981647433265158\\/1655635170\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1169\":{\"id\":770821664250757124,\"id_str\":\"770821664250757124\",\"name\":\"Godswill Asuquo\",\"screen_name\":\"Gafexian_Zone\",\"location\":\"Nigeria\",\"description\":\"Pencil and biro Artist | Graphic designer | Architect | Chelsea FC | Lover of classical music | Deo ac veritati\",\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/gafexianzone\",\"display_url\":\"facebook.com\\/gafexianzone\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":591,\"listed_count\":0,\"created_at\":\"Wed Aug 31 03:13:00 +0000 2016\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1170\":{\"id\":946298234804285440,\"id_str\":\"946298234804285440\",\"name\":\"KellyWhyte\",\"screen_name\":\"KellyWhyte18\",\"location\":\"Lagos, Nigeria\",\"description\":\"Model Love fashion ChopLifeGang Instagram @kellywhyte16 Tiktok @kellywhyte8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":866,\"friends_count\":886,\"listed_count\":0,\"created_at\":\"Thu Dec 28 08:34:15 +0000 2017\",\"favourites_count\":19762,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2464,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496768973031026689\\/4uY5VeUv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496768973031026689\\/4uY5VeUv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/946298234804285440\\/1631347438\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1171\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1172\":{\"id\":2471440877,\"id_str\":\"2471440877\",\"name\":\"UrbanDistrictng\",\"screen_name\":\"Urbandistrictng\",\"location\":\"33A, Moore Road, Yaba. \",\"description\":\"Gastropub, Vendor for Festivals, Caterers \\nand chill out spot\",\"url\":\"https:\\/\\/t.co\\/PkZtYQgitR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PkZtYQgitR\",\"expanded_url\":\"https:\\/\\/goo.gl\\/maps\\/7mzVqnvgxhH2\",\"display_url\":\"goo.gl\\/maps\\/7mzVqnvgx\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":148,\"friends_count\":159,\"listed_count\":0,\"created_at\":\"Wed Apr 09 10:57:44 +0000 2014\",\"favourites_count\":30,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/642680099263877120\\/fbXrggQ0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/642680099263877120\\/fbXrggQ0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2471440877\\/1442061819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1173\":{\"id\":307931586,\"id_str\":\"307931586\",\"name\":\"Lawrence Ehilegbu\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"lawehilegbu\",\"location\":\"Lagos, Nigeria\",\"description\":\"Entrepreneur & SME Facilitator. Content Creator. Baby Diaper Dealer.\\nOBIdient Nigerian!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":876,\"friends_count\":625,\"listed_count\":16,\"created_at\":\"Mon May 30 14:58:42 +0000 2011\",\"favourites_count\":20073,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15064,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544070096938835977\\/5Bhn-TfA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544070096938835977\\/5Bhn-TfA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/307931586\\/1658378382\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1174\":{\"id\":1126018021288480768,\"id_str\":\"1126018021288480768\",\"name\":\"Skillerdo superstar\",\"screen_name\":\"skillerdo\",\"location\":\"Lekki\",\"description\":\"I'm de man skillerdo Bae\\ud83c\\udf7e\\\" romantical i sing for yo..\\\"pose for de picture\\\"\\ud83d\\udcf8....@ https:\\/\\/t.co\\/N8Kq1ZLCJp\\nWhatsapp\\/Call me on ma +2348164705278\",\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed May 08 06:56:31 +0000 2019\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1175\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1176\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1177\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1178\":{\"id\":1548028783768190976,\"id_str\":\"1548028783768190976\",\"name\":\"Therealcasey\",\"screen_name\":\"therealcasey40\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":70,\"listed_count\":0,\"created_at\":\"Fri Jul 15 19:36:54 +0000 2022\",\"favourites_count\":127,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548028948604338177\\/tIUKJeow_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548028948604338177\\/tIUKJeow_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1548028783768190976\\/1658740527\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1179\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1180\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1181\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1182\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1183\":{\"id\":1546440944207151106,\"id_str\":\"1546440944207151106\",\"name\":\"Os Steve\",\"screen_name\":\"OsStevegivethem\",\"location\":\"Nigeria\",\"description\":\"Nigerian Music Artist, rapper, influencer.\\nbookings @ossteve123@gmail.com\\nor WhatsApp @ 234 - 08135683140\",\"url\":\"https:\\/\\/t.co\\/hRGeysqlj5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hRGeysqlj5\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/os-steve\\/song\\/19407190\",\"display_url\":\"audiomack.com\\/os-steve\\/song\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Mon Jul 11 10:28:04 +0000 2022\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546441184830279680\\/c22EMg88_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546441184830279680\\/c22EMg88_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1184\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1185\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1186\":{\"id\":588966961,\"id_str\":\"588966961\",\"name\":\"Kapital FM Abuja 92.9\",\"screen_name\":\"kapital929\",\"location\":\"Abuja, Nigeria\",\"description\":\"Official Twitter handle of 92.9 KapitalFM Abuja, The Station that Rocks! Follow us for interesting and informative tweets. IG: kapital929\",\"url\":\"https:\\/\\/t.co\\/FtTU9YFiKL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FtTU9YFiKL\",\"expanded_url\":\"http:\\/\\/www.kapital929.fm\",\"display_url\":\"kapital929.fm\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5295,\"friends_count\":340,\"listed_count\":46,\"created_at\":\"Thu May 24 08:50:15 +0000 2012\",\"favourites_count\":912,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":43101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/643490743785529344\\/nft4-pKN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/643490743785529344\\/nft4-pKN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/588966961\\/1602486140\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1187\":{\"id\":1282943999393894402,\"id_str\":\"1282943999393894402\",\"name\":\"Teacher Chike\",\"screen_name\":\"teacherchike1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Biology Teacher ||\\nMotivational Speaker ||\\nContent Creator ||\\nTeens Coach || \\nChildren Evangelist ||\\nAmazon KDP Publisher\",\"url\":\"https:\\/\\/t.co\\/kMStY8t2JQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kMStY8t2JQ\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCvA-qOZYQgCVlLaHOcmcQsw\",\"display_url\":\"m.youtube.com\\/channel\\/UCvA-q\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Tue Jul 14 07:44:34 +0000 2020\",\"favourites_count\":290,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":715,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1289408100152348673\\/78WDrL-g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1289408100152348673\\/78WDrL-g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282943999393894402\\/1657570252\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1188\":{\"id\":1188467539388571648,\"id_str\":\"1188467539388571648\",\"name\":\"Anya_Nyako\\u2606\",\"screen_name\":\"Anya_Nyako2505\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Jeremiah 29:11 \\nSCD (Sickle Cell Disease) Survivor \\ud83d\\udcaa\\ud83c\\udfff\\nSCD Advocate.\\nWomen are no longer meant to sit still and look pretty - We are meant to lead empires...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3044,\"friends_count\":4407,\"listed_count\":5,\"created_at\":\"Sun Oct 27 14:48:57 +0000 2019\",\"favourites_count\":47033,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73347,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1188467539388571648\\/1655657592\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1189\":{\"id\":1500182314218934276,\"id_str\":\"1500182314218934276\",\"name\":\"Louis Prinzy\",\"screen_name\":\"louis_prinzy\",\"location\":\"Port Harcourt \",\"description\":\"TurnLifeEazI\",\"url\":\"https:\\/\\/t.co\\/bJrmVAXuV5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bJrmVAXuV5\",\"expanded_url\":\"https:\\/\\/whatsapp.com\\/dl\\/\",\"display_url\":\"whatsapp.com\\/dl\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":35,\"listed_count\":1,\"created_at\":\"Sat Mar 05 18:52:21 +0000 2022\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1500182699348267016\\/P7eGSOiJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1500182699348267016\\/P7eGSOiJ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1190\":{\"id\":1363675202224275456,\"id_str\":\"1363675202224275456\",\"name\":\"Goodboy OSH\",\"screen_name\":\"continentalkid_\",\"location\":\"Abuja, Nigeria\",\"description\":\"continental\\ud83c\\udf0d| music promoter| NFT artist \\n\\nEntertainment industry Freak\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":112,\"friends_count\":216,\"listed_count\":0,\"created_at\":\"Mon Feb 22 02:21:47 +0000 2021\",\"favourites_count\":2154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1602,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546844981750546435\\/0oIuFuh9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546844981750546435\\/0oIuFuh9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363675202224275456\\/1657547508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1191\":{\"id\":1261182154786115588,\"id_str\":\"1261182154786115588\",\"name\":\"sirvee\",\"screen_name\":\"Sirvee101\",\"location\":\"Lagos, Nigeria\",\"description\":\"just been my self\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":84,\"friends_count\":312,\"listed_count\":0,\"created_at\":\"Fri May 15 06:30:55 +0000 2020\",\"favourites_count\":1854,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":575,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1430207459210186761\\/wkjpeB3g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1430207459210186761\\/wkjpeB3g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261182154786115588\\/1629823004\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1192\":{\"id\":135608407,\"id_str\":\"135608407\",\"name\":\"Chuks E\",\"screen_name\":\"Chukyz360\",\"location\":\"Nigeria\",\"description\":\"Science and tech enthusiast. Ambivert. Sapiosexual. Pragmatic. Business oriented. Good sense of humour. Arsenal & Real Madrid fan. Pure cruise! #obidient\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":715,\"friends_count\":823,\"listed_count\":0,\"created_at\":\"Wed Apr 21 19:58:52 +0000 2010\",\"favourites_count\":22784,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3279,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545366405868134400\\/NSPSGYw4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545366405868134400\\/NSPSGYw4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1193\":{\"id\":1224193611182505985,\"id_str\":\"1224193611182505985\",\"name\":\"Lifestylegist\",\"screen_name\":\"Lifestylegist1\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Lifestylegist is dedicated to informing, entertaining, educating and inspiring vitality.\",\"url\":\"https:\\/\\/t.co\\/nsPK8KPqmn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nsPK8KPqmn\",\"expanded_url\":\"http:\\/\\/www.lifestylegist.com\",\"display_url\":\"lifestylegist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":286,\"friends_count\":387,\"listed_count\":0,\"created_at\":\"Mon Feb 03 04:51:31 +0000 2020\",\"favourites_count\":2632,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1156,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1228995284585328640\\/3bAKXWLl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1228995284585328640\\/3bAKXWLl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224193611182505985\\/1581850283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1194\":{\"id\":1138132116183683072,\"id_str\":\"1138132116183683072\",\"name\":\"Consider This\",\"screen_name\":\"ConsiderThis19\",\"location\":\"Pacific Northwest\",\"description\":\"Wherever you go, there you are\\u2026 I\\u2019ll follow if you\\u2019re funny or have common sense. \\ud83d\\ude02 TruthSocial \\ud83c\\udf89\\ud83c\\udf89 @WhyAskWhy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":257,\"friends_count\":2406,\"listed_count\":1,\"created_at\":\"Mon Jun 10 17:13:36 +0000 2019\",\"favourites_count\":54601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1433640774155923464\\/cCJxn9IV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1433640774155923464\\/cCJxn9IV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1138132116183683072\\/1638674558\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1195\":{\"id\":1246713292913094666,\"id_str\":\"1246713292913094666\",\"name\":\"ZillyBoy\",\"screen_name\":\"ZOrogho\",\"location\":\"Lagos, Nigeria\",\"description\":\"No bad energy\\u2757\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1072,\"friends_count\":179,\"listed_count\":1,\"created_at\":\"Sun Apr 05 08:16:35 +0000 2020\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554588062663016459\\/iDnYXl3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554588062663016459\\/iDnYXl3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1246713292913094666\\/1659477665\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1196\":{\"id\":2920376675,\"id_str\":\"2920376675\",\"name\":\"Mukhar Nura\",\"screen_name\":\"aboki_30BG\",\"location\":\"Nigeria\",\"description\":\"I unfollow if you don't follow back\\n\\n#30BG #WRBLO\\n\\nSpread Love not hate\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\n\\nI love Prophet Muhammad S.A.W \\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":456,\"friends_count\":808,\"listed_count\":10,\"created_at\":\"Sat Dec 13 21:41:42 +0000 2014\",\"favourites_count\":19783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514259965678170116\\/Qa3B1izw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514259965678170116\\/Qa3B1izw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2920376675\\/1591986894\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1197\":{\"id\":3852265463,\"id_str\":\"3852265463\",\"name\":\"Ibrahim Mahmoud\",\"screen_name\":\"doctoregr\",\"location\":\"Birnin-Kebbi, Nigeria\",\"description\":\"Medical doctor,Blogger,Entrepreneur,SEO,Business Idea Expert. A satirist in an abusive relationship with the country Nigeria.\\n#Coronavirus\",\"url\":\"https:\\/\\/t.co\\/MJO21uYiN0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MJO21uYiN0\",\"expanded_url\":\"http:\\/\\/www.gidisblog.com\",\"display_url\":\"gidisblog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":347,\"friends_count\":120,\"listed_count\":0,\"created_at\":\"Sat Oct 03 12:27:42 +0000 2015\",\"favourites_count\":60,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1149,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1086712088414904321\\/FYvjT65d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1086712088414904321\\/FYvjT65d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3852265463\\/1654409083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1198\":{\"id\":1543530637575032832,\"id_str\":\"1543530637575032832\",\"name\":\"success city kennel,,,,,,\",\"screen_name\":\"alabedejoseph1\",\"location\":\"Jos, Nigeria\",\"description\":\"Dog breeder, pet lover, and general domestic animal consultant, contact: 08064781867\",\"url\":\"https:\\/\\/t.co\\/XtQL3R5lH0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XtQL3R5lH0\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/2EA6K43IU\",\"display_url\":\"wa.me\\/message\\/2EA6K4\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89,\"friends_count\":317,\"listed_count\":0,\"created_at\":\"Sun Jul 03 09:43:24 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543661451612667904\\/jkhubE_r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543661451612667904\\/jkhubE_r_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1199\":{\"id\":1491201918722613249,\"id_str\":\"1491201918722613249\",\"name\":\"bring more vawlens \\ud83d\\ude02\\ud83d\\udd25\",\"screen_name\":\"Justforupdate9\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Wed Feb 09 00:07:13 +0000 2022\",\"favourites_count\":304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":74,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553655293481033729\\/9b89mVRn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553655293481033729\\/9b89mVRn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1200\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1201\":{\"id\":1014631112260378624,\"id_str\":\"1014631112260378624\",\"name\":\"AL\\u00b6GB\\u00b6\\u00b6\",\"screen_name\":\"thisisalagbaa\",\"location\":\"Lagos, Nigeria\",\"description\":\"A comedian|actor|Skit maker|Compere|editor. I make creative hilarious birthday shoutout videos. I ENTERTAIN!\",\"url\":\"https:\\/\\/t.co\\/cxTbeYmvxL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cxTbeYmvxL\",\"expanded_url\":\"https:\\/\\/youtu.be\\/ePSb5MhhPzA\",\"display_url\":\"youtu.be\\/ePSb5MhhPzA\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":986,\"friends_count\":1039,\"listed_count\":1,\"created_at\":\"Wed Jul 04 22:04:42 +0000 2018\",\"favourites_count\":3708,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2838,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1391369844201771013\\/PttmU-_l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1391369844201771013\\/PttmU-_l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1014631112260378624\\/1617055190\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1202\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1203\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1204\":{\"id\":1238439806390206466,\"id_str\":\"1238439806390206466\",\"name\":\"Ibrahim A. Adepoju\",\"screen_name\":\"IbrahimAAdepoju\",\"location\":\"Nigeria\",\"description\":\"Network Administrator | Project Engineering @ehealthafrica | Co-founder @senjugloballtd\\nCountries: \\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\uddec\\ud83c\\udded \\ud83c\\uddea\\ud83c\\uddf9 \\ud83c\\uddec\\ud83c\\uddfc\",\"url\":\"https:\\/\\/t.co\\/nbiPBa7JLs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nbiPBa7JLs\",\"expanded_url\":\"https:\\/\\/ibrahimaadepoju.medium.com\\/\",\"display_url\":\"ibrahimaadepoju.medium.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95,\"friends_count\":93,\"listed_count\":1,\"created_at\":\"Fri Mar 13 12:20:58 +0000 2020\",\"favourites_count\":2790,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1837,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551332268299456514\\/GhRuUDQg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551332268299456514\\/GhRuUDQg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238439806390206466\\/1658701421\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1205\":{\"id\":1545475041156112388,\"id_str\":\"1545475041156112388\",\"name\":\"jopastravels\",\"screen_name\":\"jopas_gh\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Jopas operates majorly in Ghana and we offer diverse array of chauffeur drive services, airport pickups and drop offs, tour services,business & private transpor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":136,\"listed_count\":0,\"created_at\":\"Fri Jul 08 18:29:16 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545475343305379840\\/dvfYy_Jf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545475343305379840\\/dvfYy_Jf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1545475041156112388\\/1659467329\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1206\":{\"id\":1539355009585913857,\"id_str\":\"1539355009585913857\",\"name\":\"Dr. GIJATI BKVARANGA\",\"screen_name\":\"DrGijati\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hello friend i am licenced medical doctor in field of male enhancememt, come to my office in Lagos and i help you become real man with huhe acessory, cash only.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Tue Jun 21 21:10:25 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539355009585913857\\/1656527997\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1207\":{\"id\":1539355009585913857,\"id_str\":\"1539355009585913857\",\"name\":\"Dr. GIJATI BKVARANGA\",\"screen_name\":\"DrGijati\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hello friend i am licenced medical doctor in field of male enhancememt, come to my office in Lagos and i help you become real man with huhe acessory, cash only.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Tue Jun 21 21:10:25 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539355009585913857\\/1656527997\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1208\":{\"id\":2787183426,\"id_str\":\"2787183426\",\"name\":\"RUM-D (oke daniel ayodeji)\",\"screen_name\":\"rum_d4u\",\"location\":\"Lagos, Nigeria\",\"description\":\"Afro-pop singer for booking +2348103613403\",\"url\":\"https:\\/\\/t.co\\/mCUJT4hlxC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mCUJT4hlxC\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/rum-d\\/song\\/rum-d-lero\",\"display_url\":\"audiomack.com\\/rum-d\\/song\\/rum\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":124,\"listed_count\":0,\"created_at\":\"Wed Sep 03 03:48:47 +0000 2014\",\"favourites_count\":1068,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":743,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1426456366114250753\\/doLRJ5Q9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1426456366114250753\\/doLRJ5Q9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2787183426\\/1615256652\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1209\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1210\":{\"id\":1519380325725622274,\"id_str\":\"1519380325725622274\",\"name\":\"Yeasin AR \\u2764\\ufe0f\\ud83c\\uddf8\\ud83c\\udde9\\ud83c\\uddf5\\ud83c\\uddf0\\u2764\\ufe0f\",\"screen_name\":\"AyaubiK47441869\",\"location\":\"UAE \",\"description\":\"PTI Imran Khan \\ud83d\\udc9a\\ud83c\\uddf5\\ud83c\\uddf0\\ud83c\\uddf7\\ud83c\\uddfa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":273,\"friends_count\":395,\"listed_count\":0,\"created_at\":\"Wed Apr 27 18:18:03 +0000 2022\",\"favourites_count\":10379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11359,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519380325725622274\\/1653479415\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1211\":{\"id\":1481918920101666819,\"id_str\":\"1481918920101666819\",\"name\":\"OMO IYA SAMUUUUU\\u2764\\ufe0f\\ud83e\\udec2\\ud83c\\udf1a\",\"screen_name\":\"_omoiya_samuuuu\",\"location\":\"Nigeria\",\"description\":\"DieHard Lover of @olamide\\ud83d\\udc9b BLUES4L\\ud83d\\udc99 @chelseafc Aquarius \\u2652\\ufe0f God | Mum | Family | Real Geez\\u2764\\ufe0f Music \\ud83c\\udfbc Lover +ArtistPR\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/DgyErYcRvX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DgyErYcRvX\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/zero-bars\\/1634470535?i=1634470536\",\"display_url\":\"music.apple.com\\/us\\/album\\/zero-\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":790,\"listed_count\":0,\"created_at\":\"Fri Jan 14 09:19:47 +0000 2022\",\"favourites_count\":1540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":428,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481919069163077635\\/Gh0EFxVJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481919069163077635\\/Gh0EFxVJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481918920101666819\\/1656367781\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1212\":{\"id\":1514720496205578253,\"id_str\":\"1514720496205578253\",\"name\":\"Saint-Joseph Joseph\",\"screen_name\":\"Jos1Saint\",\"location\":\"Lagos, Nigeria\",\"description\":\"Call_me_Chaplin \\ud83e\\udd1d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":50,\"friends_count\":117,\"listed_count\":1,\"created_at\":\"Thu Apr 14 21:41:35 +0000 2022\",\"favourites_count\":66,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529933460617543692\\/XdRQopIK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529933460617543692\\/XdRQopIK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514720496205578253\\/1653599550\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1213\":{\"id\":2855900398,\"id_str\":\"2855900398\",\"name\":\"Ogunsola Samuel\",\"screen_name\":\"oladeji_ogunsh\",\"location\":\"Lagos, Nigeria. \",\"description\":\"Broadcast Journalist, News Editor, News Producer, Political Activist, Media Consultant, Chelsea FC, Sport Lover, Ibadan Boy !!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1521,\"friends_count\":1632,\"listed_count\":0,\"created_at\":\"Sun Nov 02 00:05:24 +0000 2014\",\"favourites_count\":19779,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4541,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535693471574630405\\/8KDkhZIx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535693471574630405\\/8KDkhZIx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2855900398\\/1612364779\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1214\":{\"id\":1545475041156112388,\"id_str\":\"1545475041156112388\",\"name\":\"jopastravels\",\"screen_name\":\"jopas_gh\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Jopas operates majorly in Ghana and we offer diverse array of chauffeur drive services, airport pickups and drop offs, tour services,business & private transpor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":136,\"listed_count\":0,\"created_at\":\"Fri Jul 08 18:29:16 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545475343305379840\\/dvfYy_Jf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545475343305379840\\/dvfYy_Jf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1545475041156112388\\/1659467329\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1215\":{\"id\":129630681,\"id_str\":\"129630681\",\"name\":\"BLACK LOVE\\ud83d\\udda4\\ud83d\\udda4\",\"screen_name\":\"iamogswagg\",\"location\":\"Nigeria\",\"description\":\"Recording artist..song writter..rapper...#independent artist....for bookings, studio sessions, content contact 08112864391\\nemail:- jessematthewsswagg@gmail.com\",\"url\":\"https:\\/\\/t.co\\/QEVR1kM85C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QEVR1kM85C\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/STREAMDRILL\",\"display_url\":\"fanlink.to\\/STREAMDRILL\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1359,\"friends_count\":1958,\"listed_count\":1,\"created_at\":\"Sun Apr 04 23:23:09 +0000 2010\",\"favourites_count\":764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12220,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1449547393616199683\\/528gkjrn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1449547393616199683\\/528gkjrn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/129630681\\/1619557324\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1216\":{\"id\":1484672617051271171,\"id_str\":\"1484672617051271171\",\"name\":\"SAMMIE\\ud83d\\udc80\\ud83d\\udca6\",\"screen_name\":\"Sammie172002\",\"location\":\"Lagos, Nigeria\",\"description\":\"Dream is a basic right\\ud83d\\udd25\\nReal Madrid C.f.\\ud83d\\udca5\\nFrench Educator\\ud83d\\ude0a\\nI no send your papa\\ud83d\\udc80\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142,\"friends_count\":182,\"listed_count\":0,\"created_at\":\"Fri Jan 21 23:42:41 +0000 2022\",\"favourites_count\":1019,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1004,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550479502949720064\\/rIbMJurl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550479502949720064\\/rIbMJurl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484672617051271171\\/1642809155\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1217\":{\"id\":1269066021505302530,\"id_str\":\"1269066021505302530\",\"name\":\"JOBS & SCHOLARSHIPS HUB\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"JobsHubGh\",\"location\":\"Ghana\",\"description\":\"We are dedicated to bringing you the most up-to-date information on job vacancies, scholarships, and important dates.\",\"url\":\"https:\\/\\/t.co\\/zxjs7zotXx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zxjs7zotXx\",\"expanded_url\":\"http:\\/\\/ghnewsbanq.com\",\"display_url\":\"ghnewsbanq.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2217,\"friends_count\":1889,\"listed_count\":0,\"created_at\":\"Sat Jun 06 00:38:29 +0000 2020\",\"favourites_count\":3820,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7405,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505382325474971651\\/vSUK3v0J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505382325474971651\\/vSUK3v0J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269066021505302530\\/1647785975\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1218\":{\"id\":356144107,\"id_str\":\"356144107\",\"name\":\"Officialsugargarcia\",\"screen_name\":\"9ja_poet_singer\",\"location\":\"Ikorodu\",\"description\":\"song machine\\ud83c\\udfb5\\nrecording act\\ud83c\\udfa4\\nsongwriter\\ud83d\\udcdd\\npoet,author\\ud83d\\udcda\\nnon religious being\\ud83d\\udd26\\ntop radio 90.9 NTR S24 winner\\ud83e\\udd47\\nArsenal\\u26bd\\nhttps:\\/\\/t.co\\/4JFMsYjy9w\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4JFMsYjy9w\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/owolabi-quadri-1\",\"display_url\":\"audiomack.com\\/owolabi-quadri\\u2026\",\"indices\":[115,138]}]}},\"protected\":false,\"followers_count\":116,\"friends_count\":307,\"listed_count\":2,\"created_at\":\"Tue Aug 16 12:10:11 +0000 2011\",\"favourites_count\":291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1219\":{\"id\":870327427347750912,\"id_str\":\"870327427347750912\",\"name\":\"Daniella Amba\",\"screen_name\":\"Danley_codes\",\"location\":\"Nigeria \",\"description\":\"|MPDS Certified| |Data Science| \\n| Machine Learning | |Artificial intelligence||Consultant| |Co-founder:@analysthub| \\n Co-founder:@TADInitiative|\\ud83d\\udc9e\",\"url\":\"https:\\/\\/t.co\\/SFnyvo737B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SFnyvo737B\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/daniella-mkpandiok-60247010a\",\"display_url\":\"linkedin.com\\/in\\/daniella-mk\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":171,\"friends_count\":557,\"listed_count\":2,\"created_at\":\"Thu Jun 01 17:13:23 +0000 2017\",\"favourites_count\":940,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509172834442129410\\/ulpeLBhs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509172834442129410\\/ulpeLBhs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870327427347750912\\/1590828518\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1220\":{\"id\":1135892779995996160,\"id_str\":\"1135892779995996160\",\"name\":\"Ugwuanyi Michael\",\"screen_name\":\"Centre4A\",\"location\":\"Enugu, Nigeria\",\"description\":\"I love music ,I am a writer and blogger https:\\/\\/t.co\\/oM0r6lgHDa \\n entrepreneur and fan of @PeterObi @iamdrsid @YusufDatiAhmed\\n @Renoomokri\",\"url\":\"https:\\/\\/t.co\\/TqCMu70cuK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqCMu70cuK\",\"expanded_url\":\"https:\\/\\/newtecgist.blogspot.com\",\"display_url\":\"newtecgist.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oM0r6lgHDa\",\"expanded_url\":\"https:\\/\\/sportsleagueudpate.blogspot.com\",\"display_url\":\"sportsleagueudpate.blogspot.com\",\"indices\":[42,65]}]}},\"protected\":false,\"followers_count\":84,\"friends_count\":1422,\"listed_count\":2,\"created_at\":\"Tue Jun 04 12:55:17 +0000 2019\",\"favourites_count\":1049,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1597,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519703624640827393\\/Bz-NB8YP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519703624640827393\\/Bz-NB8YP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1135892779995996160\\/1588425267\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1221\":{\"id\":1267395685881708545,\"id_str\":\"1267395685881708545\",\"name\":\"Sub_sidy\",\"screen_name\":\"sub_sidy1\",\"location\":\"Nigeria\",\"description\":\"Emcee||Comedian||Actor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":481,\"listed_count\":0,\"created_at\":\"Mon Jun 01 10:01:27 +0000 2020\",\"favourites_count\":6553,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555319202571030528\\/GnKaK-GQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555319202571030528\\/GnKaK-GQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1267395685881708545\\/1592259893\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1222\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1223\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1224\":{\"id\":1069708695972519938,\"id_str\":\"1069708695972519938\",\"name\":\"Top photographer in Ibadan\",\"screen_name\":\"arike_imagery\",\"location\":\"Bodija estate, Ibadan\",\"description\":\"Quality images only! https:\\/\\/t.co\\/tkyIRLVqAu Agricultural Economist\\ud83d\\udcb8\\ud83d\\udcb9 University of Ibadan \\ud83c\\udf93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tkyIRLVqAu\",\"expanded_url\":\"http:\\/\\/instagram.com\\/arike_imagery\",\"display_url\":\"instagram.com\\/arike_imagery\",\"indices\":[21,44]}]}},\"protected\":false,\"followers_count\":757,\"friends_count\":1307,\"listed_count\":0,\"created_at\":\"Mon Dec 03 21:43:22 +0000 2018\",\"favourites_count\":304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":281,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512456453050839044\\/6nEQwxqZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512456453050839044\\/6nEQwxqZ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1225\":{\"id\":1163102265953136640,\"id_str\":\"1163102265953136640\",\"name\":\"Mimi\",\"screen_name\":\"Dota_of_a_King\",\"location\":\"Rivers, Nigeria\",\"description\":\"The one God loves\\ud83d\\ude0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sun Aug 18 14:56:17 +0000 2019\",\"favourites_count\":1017,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":892,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551975856653967366\\/MsQDj0LF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551975856653967366\\/MsQDj0LF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1163102265953136640\\/1604651858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1226\":{\"id\":146687201,\"id_str\":\"146687201\",\"name\":\"Captain EDET\",\"screen_name\":\"captain_edet\",\"location\":\"Lagos, Nigeria\",\"description\":\"Only God Inspires... TweetGuru, Comedian, Publicist, Whatsapp: 07037443852 #ComedyCruise #FunnyEmpire IG: captainedet25 Facebook: captainedetDlaffCommanda\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":890,\"friends_count\":1254,\"listed_count\":3,\"created_at\":\"Sat May 22 02:48:26 +0000 2010\",\"favourites_count\":4615,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3461,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367057404052070400\\/dY1jzzEb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367057404052070400\\/dY1jzzEb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/146687201\\/1559175464\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1227\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1228\":{\"id\":1224801474607288327,\"id_str\":\"1224801474607288327\",\"name\":\"AbUtEcH\\ud83e\\udd0c\",\"screen_name\":\"AbUtEcH_bRo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Web Developer, Software Engineer #python #django, Graphic Designer, Content Creator & Digital Marketer. CEO: @abubtechnology_h https:\\/\\/t.co\\/TudfbJ6VM0\",\"url\":\"https:\\/\\/t.co\\/eA01XZupBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eA01XZupBA\",\"expanded_url\":\"https:\\/\\/abutech.disha.page\\/\",\"display_url\":\"abutech.disha.page\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TudfbJ6VM0\",\"expanded_url\":\"https:\\/\\/adh.com.ng\",\"display_url\":\"adh.com.ng\",\"indices\":[127,150]}]}},\"protected\":false,\"followers_count\":101,\"friends_count\":384,\"listed_count\":2,\"created_at\":\"Tue Feb 04 21:06:55 +0000 2020\",\"favourites_count\":246,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":718,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548104258339291136\\/0GFNjYBh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548104258339291136\\/0GFNjYBh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224801474607288327\\/1659485321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1229\":{\"id\":1368603054342299652,\"id_str\":\"1368603054342299652\",\"name\":\"Chuks\",\"screen_name\":\"Chuks238_\",\"location\":\"\",\"description\":\"I am the most friendly being that ever lives\\ud83d\\ude0d\\ud83e\\udd38\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1248,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 07 16:43:20 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1368603054342299652\\/1652602455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1230\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1231\":{\"id\":632213198,\"id_str\":\"632213198\",\"name\":\"okarotor onome \\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\",\"screen_name\":\"officialonoski\",\"location\":\"Lagos Nigeria\",\"description\":\"Introvert,extrovert,dual charcterized,trendy,classic and love life.Have atter disdane for peeps who brag about what they never had clue of.\",\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"expanded_url\":\"http:\\/\\/www.okarotor.wordpress.com\",\"display_url\":\"okarotor.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":380,\"friends_count\":1740,\"listed_count\":0,\"created_at\":\"Tue Jul 10 18:41:43 +0000 2012\",\"favourites_count\":7487,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/632213198\\/1623137282\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1232\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1233\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1234\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1235\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1236\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1237\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1238\":{\"id\":632213198,\"id_str\":\"632213198\",\"name\":\"okarotor onome \\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\",\"screen_name\":\"officialonoski\",\"location\":\"Lagos Nigeria\",\"description\":\"Introvert,extrovert,dual charcterized,trendy,classic and love life.Have atter disdane for peeps who brag about what they never had clue of.\",\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"expanded_url\":\"http:\\/\\/www.okarotor.wordpress.com\",\"display_url\":\"okarotor.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":380,\"friends_count\":1740,\"listed_count\":0,\"created_at\":\"Tue Jul 10 18:41:43 +0000 2012\",\"favourites_count\":7487,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/632213198\\/1623137282\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1239\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1240\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1241\":{\"id\":1452768120792354819,\"id_str\":\"1452768120792354819\",\"name\":\"K Tevi\",\"screen_name\":\"kayode_tevi\",\"location\":\"Lagos, Nigeria\",\"description\":\"#CR7\\ud83d\\udc10 #MUFC\",\"url\":\"https:\\/\\/t.co\\/vL9Tid7dkC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vL9Tid7dkC\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/invites\\/contact\\/?i=169iavwj54b2i&utm_content=l3zt9pz\",\"display_url\":\"instagram.com\\/invites\\/contac\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1024,\"friends_count\":1105,\"listed_count\":3,\"created_at\":\"Mon Oct 25 22:44:53 +0000 2021\",\"favourites_count\":7085,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5576,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556231066846904320\\/dbdm-XwL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556231066846904320\\/dbdm-XwL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1452768120792354819\\/1659869385\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1242\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1243\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1244\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1245\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1246\":{\"id\":225229971,\"id_str\":\"225229971\",\"name\":\"Ayodele David Dasaolu\",\"screen_name\":\"Topmostnigga\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"Love having fun.Crypto Enthusiast #teammanunited#teamcapricorn #sol #Polkadot #Polygon\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":153,\"friends_count\":465,\"listed_count\":2,\"created_at\":\"Sat Dec 11 01:43:49 +0000 2010\",\"favourites_count\":517,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2923,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556185328850960384\\/bDZ_Drcp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556185328850960384\\/bDZ_Drcp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/225229971\\/1570990814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1247\":{\"id\":226126659,\"id_str\":\"226126659\",\"name\":\"George Basara 4Peter Obi\",\"screen_name\":\"PBplusOilAndGas\",\"location\":\"Nigeria\",\"description\":\"Peter Obi Live Radio\",\"url\":\"https:\\/\\/t.co\\/gFTYNGUKDQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gFTYNGUKDQ\",\"expanded_url\":\"http:\\/\\/www.pbplusoilandgas.com\",\"display_url\":\"pbplusoilandgas.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4168,\"friends_count\":2984,\"listed_count\":64,\"created_at\":\"Mon Dec 13 11:28:19 +0000 2010\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":298857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552749219475324929\\/zGoh16Ic_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552749219475324929\\/zGoh16Ic_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/226126659\\/1410980190\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1248\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1249\":{\"id\":207920369,\"id_str\":\"207920369\",\"name\":\"OGHALE\",\"screen_name\":\"Oghalegreatness\",\"location\":\"Lagos,Nigeria\",\"description\":\"I don't seek for attention but I get it. I'm just a lady with big dreams. I enjoy being natural,I'm just me. #Teamnomakeup\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Tue Oct 26 09:08:52 +0000 2010\",\"favourites_count\":734,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3365,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/207920369\\/1448980315\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1250\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1251\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1252\":{\"id\":1355647431367667717,\"id_str\":\"1355647431367667717\",\"name\":\"Hon. Gbesh of Unilorin \\ud83c\\udf3c\",\"screen_name\":\"HGbesh\",\"location\":\"Lagos, Nigeria\",\"description\":\"NAPHSS PRO ELECT, Unilorin chapter | Comedian | Content creator | Entertainer | Lover of football | Lover of cruise and vawulence | Education \\nIG:@hon_gbesh\",\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC7hKRiL7GXzWJox9XPUH21g\",\"display_url\":\"youtube.com\\/channel\\/UC7hKR\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":376,\"listed_count\":0,\"created_at\":\"Sat Jan 30 22:42:04 +0000 2021\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355647431367667717\\/1658981548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1253\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1254\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1255\":{\"id\":1321707408201289728,\"id_str\":\"1321707408201289728\",\"name\":\"Daily Trends Gh\",\"screen_name\":\"ghpatootv\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana fast rising and favorite lifestyle blogs, Entertainment & More | Long On https:\\/\\/t.co\\/riyYTBhadZ\",\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rIYz7KTDa6\",\"expanded_url\":\"http:\\/\\/dailytrendsgh.com\",\"display_url\":\"dailytrendsgh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/riyYTBhadZ\",\"expanded_url\":\"http:\\/\\/Dailytrendsgh.com\",\"display_url\":\"Dailytrendsgh.com\",\"indices\":[79,102]}]}},\"protected\":false,\"followers_count\":2338,\"friends_count\":929,\"listed_count\":0,\"created_at\":\"Thu Oct 29 06:56:35 +0000 2020\",\"favourites_count\":22610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529421000613449728\\/0-w7iO9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1321707408201289728\\/1645256219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1256\":{\"id\":1464377308823932929,\"id_str\":\"1464377308823932929\",\"name\":\"Camillus Chinonso\",\"screen_name\":\"CamillusChinon1\",\"location\":\"\",\"description\":\"Trade ur crypto coins with me\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":122,\"listed_count\":2,\"created_at\":\"Fri Nov 26 23:35:49 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":23,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554570725104680961\\/PHHebpkH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554570725104680961\\/PHHebpkH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1257\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1258\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1259\":{\"id\":1554224918220480526,\"id_str\":\"1554224918220480526\",\"name\":\"Amaz Global Empire\",\"screen_name\":\"Amaz_Global\",\"location\":\"Lagos, Nigeria\",\"description\":\"Welcome to Amaz Global Collections where we deal on all kinds of Men and Female wears including Men and Female Sandals,Palms,Shoes and Snickers\",\"url\":\"https:\\/\\/t.co\\/5hYqrBNXKr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5hYqrBNXKr\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/HEepeTkvJcOIhOupVG3GY9\",\"display_url\":\"chat.whatsapp.com\\/HEepeTkvJcOIhO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:58:20 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554225321490137092\\/M_AGGp9Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554225321490137092\\/M_AGGp9Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554224918220480526\\/1659473210\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1260\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1261\":{\"id\":1081965733947547648,\"id_str\":\"1081965733947547648\",\"name\":\"Erioluwa Popoola\",\"screen_name\":\"erioluu\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Theatre Director | Actor | Writer | Voice over artist | Art Enthusiast | Ofaraw best in doing plenty things |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":216,\"listed_count\":0,\"created_at\":\"Sun Jan 06 17:28:27 +0000 2019\",\"favourites_count\":202,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547184392103133184\\/DRri33-S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547184392103133184\\/DRri33-S_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1262\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1263\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1560,\"friends_count\":3011,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1264\":{\"id\":519695366,\"id_str\":\"519695366\",\"name\":\"Izuchukwu Ahuchaogu\",\"screen_name\":\"Ahuchaoguizu\",\"location\":\"Nigeria\",\"description\":\"I am unpredictable and focused.\",\"url\":\"https:\\/\\/t.co\\/B0ftBp4wPh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B0ftBp4wPh\",\"expanded_url\":\"http:\\/\\/cityrovers.net\",\"display_url\":\"cityrovers.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":405,\"friends_count\":1602,\"listed_count\":2,\"created_at\":\"Fri Mar 09 18:10:43 +0000 2012\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2453,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536743634606997506\\/7NIY13zQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536743634606997506\\/7NIY13zQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/519695366\\/1448237335\",\"profile_link_color\":\"9266CC\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1265\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1266\":{\"id\":244433750,\"id_str\":\"244433750\",\"name\":\"klymate$\",\"screen_name\":\"Klymates\",\"location\":\"Ho, Ghana\",\"description\":\"#FreedomFighter #father #writter #php #programer #hacker #HackingTheMindOfGod #peaceLoving #crazyAtTimes #Anon #CyberSecurityExpert #untweeter #SystemsAdmin\",\"url\":\"https:\\/\\/t.co\\/F4lqSaMkjh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/F4lqSaMkjh\",\"expanded_url\":\"http:\\/\\/jahrod.com\",\"display_url\":\"jahrod.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":546,\"friends_count\":5001,\"listed_count\":6,\"created_at\":\"Sat Jan 29 08:55:03 +0000 2011\",\"favourites_count\":3150,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3993,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1432840564194557958\\/Lrswiln8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1432840564194557958\\/Lrswiln8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/244433750\\/1634878616\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1267\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2657,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2054,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1268\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1269\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1270\":{\"id\":344006533,\"id_str\":\"344006533\",\"name\":\"Plus E\",\"screen_name\":\"pluse_official\",\"location\":\"lagos NG\",\"description\":\"Plus_E A Super Multi Talented Artist\\/Music_Produce\\/Songwriter for bookings emekamusic8@gmail.com stream my new single \\u201cMedicine\\u201d links \\ud83d\\udc47\\ud83c\\udffe\",\"url\":\"https:\\/\\/t.co\\/T88yJaw97b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/T88yJaw97b\",\"expanded_url\":\"https:\\/\\/hyperfollow.com\\/PlusE?fbclid=IwAR1QrsqHkpbo1z98OUSFNhYgHikJcUd_j1j8t9m8XqNubCsomsooaItQj8s\",\"display_url\":\"hyperfollow.com\\/PlusE?fbclid=I\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":478,\"friends_count\":485,\"listed_count\":2,\"created_at\":\"Thu Jul 28 12:04:12 +0000 2011\",\"favourites_count\":2556,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549357339945443330\\/pKinY7nh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549357339945443330\\/pKinY7nh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/344006533\\/1658317760\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1271\":{\"id\":1481791683616546817,\"id_str\":\"1481791683616546817\",\"name\":\"Macdavvis\",\"screen_name\":\"Macdavvis1\",\"location\":\"\",\"description\":\"6Ft1 Photographer || Freelance | Portraits | Nfts |\\n(and fun stuff \\ud83d\\ude04)\\n Decorative Frames (Frame consultant)\\n\\nCheck out my link below for my Nft Collections \\u2b07\\u2b07\\u2b07\",\"url\":\"https:\\/\\/t.co\\/GPUGXePWeN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GPUGXePWeN\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Macdavvis\",\"display_url\":\"linktr.ee\\/Macdavvis\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":327,\"friends_count\":496,\"listed_count\":1,\"created_at\":\"Fri Jan 14 00:54:13 +0000 2022\",\"favourites_count\":2055,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1504,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511790321146998789\\/Hqzx_xF2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511790321146998789\\/Hqzx_xF2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481791683616546817\\/1655141567\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1272\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1273\":{\"id\":1318116642170306561,\"id_str\":\"1318116642170306561\",\"name\":\"@pha\\ud83d\\ude0a\",\"screen_name\":\"Godsphavour\",\"location\":\"Akwa ibom\",\"description\":\"Digital marketer |Content Writer| Blockchain Enthusiast| French \\ud83d\\udd04 English Translator| A baby\\ud83d\\ude43\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":428,\"friends_count\":434,\"listed_count\":0,\"created_at\":\"Mon Oct 19 09:08:10 +0000 2020\",\"favourites_count\":3626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1218,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520143221149605888\\/oiJ6weYi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520143221149605888\\/oiJ6weYi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1318116642170306561\\/1656167011\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1274\":{\"id\":1150419928559828992,\"id_str\":\"1150419928559828992\",\"name\":\"carboncleaners.ng\",\"screen_name\":\"enginecarboncl3\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"We restore engines by getting rid of carbon buildup...also offer free diagnostics for your regular and heavy duty vehicles and machinery...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":38,\"listed_count\":1,\"created_at\":\"Sun Jul 14 15:00:59 +0000 2019\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":71,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150420216469475330\\/WYKX2BXP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150420216469475330\\/WYKX2BXP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1275\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1276\":{\"id\":1101456316130828288,\"id_str\":\"1101456316130828288\",\"name\":\"AbikeOnibata\",\"screen_name\":\"mydeviria\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your Stock Shoes Plug\\ud83d\\udd0c\\n\\nMules|Heels|Sneakers&Sandals\\n\\ud83d\\udc61\\ud83d\\udc60\\ud83e\\udd7e\\ud83d\\udc5f\\ud83d\\udc5e\\n\\nMrs O\\ud83d\\udc8d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":578,\"friends_count\":947,\"listed_count\":1,\"created_at\":\"Fri Mar 01 12:17:04 +0000 2019\",\"favourites_count\":2214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1101456316130828288\\/1659471517\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1277\":{\"id\":1282724522257534977,\"id_str\":\"1282724522257534977\",\"name\":\"Tee\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udde7\",\"screen_name\":\"CousinTeee\",\"location\":\"Lagos\",\"description\":\"30BG\\ud83d\\udcb0 Family\\u2022 Football\\u2022 Food\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":519,\"friends_count\":523,\"listed_count\":0,\"created_at\":\"Mon Jul 13 17:12:31 +0000 2020\",\"favourites_count\":11272,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9108,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547907402808172544\\/RmJPLPHc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547907402808172544\\/RmJPLPHc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282724522257534977\\/1657723075\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1278\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1279\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1280\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1281\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1282\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1283\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1284\":{\"id\":1284531896853110784,\"id_str\":\"1284531896853110784\",\"name\":\"Peter-Cephas Olufunde\",\"screen_name\":\"cephas_arts\",\"location\":\"Nigeria\",\"description\":\"\\u2022 A SELF-TAUGHT CHARCOAL HYPERREALIST\\n\\u2022 A LEAD GUITARIST\\n\\u2022 ENGLISH STUDIES, OAU\\n\\u2022 1999, NIGERIA\\n\\nPlease check out all drawings on my IG page\\ud83d\\udc47\\ud83e\\udd29\",\"url\":\"https:\\/\\/t.co\\/4TlKcgF0jE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4TlKcgF0jE\",\"expanded_url\":\"https:\\/\\/instagram.com\\/cephas_arts?igshid=1tj2wjfnmc20t\",\"display_url\":\"instagram.com\\/cephas_arts?ig\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":346,\"friends_count\":4,\"listed_count\":2,\"created_at\":\"Sat Jul 18 16:54:29 +0000 2020\",\"favourites_count\":713,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493101611765407747\\/0kRyRl-Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493101611765407747\\/0kRyRl-Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284531896853110784\\/1659339808\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1285\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1286\":{\"id\":936872343992979456,\"id_str\":\"936872343992979456\",\"name\":\"Oluwat'Obidient\",\"screen_name\":\"FadoroTobi\",\"location\":\"Lagos, Nigeria\",\"description\":\"A believer. A realtor with integrity. I love to help the marginalized (when given the chance) to the best of my ability. An orphan with a difference\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":314,\"friends_count\":586,\"listed_count\":0,\"created_at\":\"Sat Dec 02 08:19:07 +0000 2017\",\"favourites_count\":8226,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548941614453850114\\/pIj0PIop_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548941614453850114\\/pIj0PIop_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/936872343992979456\\/1655016730\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1287\":{\"id\":2746552630,\"id_str\":\"2746552630\",\"name\":\"Duke of Okeho\",\"screen_name\":\"Ade_omo_Giwa\",\"location\":\"Space\",\"description\":\"\\ud83d\\udc9420-10-202 \\n\\nfix Naija Oh lord\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":753,\"friends_count\":856,\"listed_count\":1,\"created_at\":\"Mon Aug 18 17:11:10 +0000 2014\",\"favourites_count\":9533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3609,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509520399960182787\\/-kvzgTRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509520399960182787\\/-kvzgTRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2746552630\\/1573423781\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1288\":{\"id\":1458001472503926787,\"id_str\":\"1458001472503926787\",\"name\":\"Aja Peace\",\"screen_name\":\"ajapeace1\",\"location\":\"Nigeria\",\"description\":\"A prestigious, crypto enthusiast , always ready to impact.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1031,\"friends_count\":551,\"listed_count\":50,\"created_at\":\"Tue Nov 09 09:21:19 +0000 2021\",\"favourites_count\":22921,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1085,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1289\":{\"id\":410118173,\"id_str\":\"410118173\",\"name\":\"James Agbaje\",\"screen_name\":\"james_agbaje01\",\"location\":\"NIGERIA\",\"description\":\"I am passionate about helping #jobseekers land their dream job. \\n\\nEvery one deserves to be happy, everyone deserves a dream job.\",\"url\":\"https:\\/\\/t.co\\/myFm8RgBJr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/myFm8RgBJr\",\"expanded_url\":\"https:\\/\\/www.nennetworks.com\",\"display_url\":\"nennetworks.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":306,\"listed_count\":2,\"created_at\":\"Fri Nov 11 17:22:24 +0000 2011\",\"favourites_count\":1033,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375002369205886980\\/-PLsgp8N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375002369205886980\\/-PLsgp8N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/410118173\\/1517448510\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1290\":{\"id\":255492846,\"id_str\":\"255492846\",\"name\":\"I. K. E. N. N. A.\",\"screen_name\":\"Gbachis\",\"location\":\"Lagos, Nigeria\",\"description\":\"Automotive | Industrials | Transmission Oils |QCQA | iDesign Chelseafc\\n\\nhenryiyke2410@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1015,\"friends_count\":1415,\"listed_count\":3,\"created_at\":\"Mon Feb 21 13:43:37 +0000 2011\",\"favourites_count\":9851,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4497,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556020566322290689\\/hkzSmixz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556020566322290689\\/hkzSmixz_normal.jpg\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1291\":{\"id\":1423753564657229827,\"id_str\":\"1423753564657229827\",\"name\":\"chin\",\"screen_name\":\"Longdenjr1\",\"location\":\"Jos, Nigeria\",\"description\":\"pulling through \\ud83e\\udd85\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":79,\"friends_count\":163,\"listed_count\":1,\"created_at\":\"Fri Aug 06 21:11:29 +0000 2021\",\"favourites_count\":1407,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517439432722456578\\/tynrinUI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517439432722456578\\/tynrinUI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1292\":{\"id\":1510226099984388101,\"id_str\":\"1510226099984388101\",\"name\":\"Funkeye Dickson\",\"screen_name\":\"DicksonFunkeye\",\"location\":\"Warri, Nigeria\",\"description\":\"humble ijaw girl, fashion designer,\\ud83d\\udc57\\ud83d\\udc5a, IT personnel , traveller, lover of God , accountant, entrepreneur\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":101,\"friends_count\":157,\"listed_count\":0,\"created_at\":\"Sat Apr 02 12:02:27 +0000 2022\",\"favourites_count\":53,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510228372617670659\\/3iLbCk9u_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510228372617670659\\/3iLbCk9u_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510226099984388101\\/1648901489\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1293\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1294\":{\"id\":1481703042915446796,\"id_str\":\"1481703042915446796\",\"name\":\"Best brain entertainment\",\"screen_name\":\"AdelabuOladele\",\"location\":\"Lagos\",\"description\":\"I'm a comedian,Inspirational speaker, actor,great thinker,mc,fighter of truth and justice. https:\\/\\/t.co\\/djvA72pz48\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/djvA72pz48\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCm_HcMd66VO8sDQm7_cqo1g\",\"display_url\":\"youtube.com\\/channel\\/UCm_Hc\\u2026\",\"indices\":[91,114]}]}},\"protected\":false,\"followers_count\":155,\"friends_count\":182,\"listed_count\":0,\"created_at\":\"Thu Jan 13 19:06:33 +0000 2022\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482593226049654784\\/e557-yz5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482593226049654784\\/e557-yz5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481703042915446796\\/1642312724\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1295\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1296\":{\"id\":1463252595787636752,\"id_str\":\"1463252595787636752\",\"name\":\"Otaku\",\"screen_name\":\"Otaku_konnect\",\"location\":\"\",\"description\":\"NO. 1 Plug for everything anime in Nigeria \\ud83c\\udf0a\\ud83c\\udf0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Tue Nov 23 21:06:34 +0000 2021\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1463252852743319556\\/VlbbBldG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1463252852743319556\\/VlbbBldG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1463252595787636752\\/1658923901\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1297\":{\"id\":1487000964691341320,\"id_str\":\"1487000964691341320\",\"name\":\"The Benjamin Feyijimi\",\"screen_name\":\"thebenfeyijimi\",\"location\":\"Ibadan, Nigeria\",\"description\":\"President, 9ja&i initiative| O.A.P|Singer| Educationist| Author| Public Speaker\\n\\n#Nigeria&I\\n\\n#AdvocateForAbetterNigeria\\n\\nhttp:\\/\\/www.thebenjaminfeyijimiinitiativ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":177,\"friends_count\":570,\"listed_count\":0,\"created_at\":\"Fri Jan 28 09:54:21 +0000 2022\",\"favourites_count\":335,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":150,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487359066984927238\\/AMAuAdlZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487359066984927238\\/AMAuAdlZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487000964691341320\\/1643617436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1298\":{\"id\":589796636,\"id_str\":\"589796636\",\"name\":\"Nadir Khan\",\"screen_name\":\"nhk2277\",\"location\":\"UAE\",\"description\":\"The Silent Majority. \\nTaboos & ethics of modern humanity. \\nGeologist. rt not endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3632,\"friends_count\":4960,\"listed_count\":0,\"created_at\":\"Fri May 25 07:58:48 +0000 2012\",\"favourites_count\":52699,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":62070,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1299\":{\"id\":1371021266564562948,\"id_str\":\"1371021266564562948\",\"name\":\"Doctorspunkyburniton\",\"screen_name\":\"NicholaskofiCo4\",\"location\":\"Greater Accra, Ghana\",\"description\":\"-Music Promoter -Brand Influencer GodFather @stonebwoy\",\"url\":\"https:\\/\\/t.co\\/kHLxb7ijm4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kHLxb7ijm4\",\"expanded_url\":\"https:\\/\\/kv-online-talent.lnk.to\\/SB1G\",\"display_url\":\"kv-online-talent.lnk.to\\/SB1G\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641,\"friends_count\":428,\"listed_count\":0,\"created_at\":\"Sun Mar 14 08:53:23 +0000 2021\",\"favourites_count\":3123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515616352463204356\\/3UYEsgAx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515616352463204356\\/3UYEsgAx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1371021266564562948\\/1615765284\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1300\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1301\":{\"id\":291561619,\"id_str\":\"291561619\",\"name\":\"Lamar ofd buj\",\"screen_name\":\"lamar_ralph\",\"location\":\"Nigeria\",\"description\":\"Entrepreneur \\u2022 Accountant\\u2022 CoFounder Gawerex Tech Ltd. \\u2022. #PeterObi4President\",\"url\":\"https:\\/\\/t.co\\/RHCaTyUmSI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RHCaTyUmSI\",\"expanded_url\":\"http:\\/\\/smartron.com.ng\",\"display_url\":\"smartron.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4222,\"friends_count\":3588,\"listed_count\":10,\"created_at\":\"Mon May 02 07:00:29 +0000 2011\",\"favourites_count\":38586,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52756,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544641249495351302\\/0ogYkhVk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544641249495351302\\/0ogYkhVk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/291561619\\/1657106254\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1302\":{\"id\":1326176068164870144,\"id_str\":\"1326176068164870144\",\"name\":\"opeyemi afolabi\",\"screen_name\":\"OpeyemiArinola5\",\"location\":\"Lagos, Nigeria\",\"description\":\"a health advocate\\/educator\\/student\\nfounder of my health matters\",\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"expanded_url\":\"http:\\/\\/myhealthmatterstoday.wordpress.com\",\"display_url\":\"myhealthmatterstoday.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Tue Nov 10 14:53:36 +0000 2020\",\"favourites_count\":558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1326176068164870144\\/1659470260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1303\":{\"id\":589796636,\"id_str\":\"589796636\",\"name\":\"Nadir Khan\",\"screen_name\":\"nhk2277\",\"location\":\"UAE\",\"description\":\"The Silent Majority. \\nTaboos & ethics of modern humanity. \\nGeologist. rt not endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3632,\"friends_count\":4960,\"listed_count\":0,\"created_at\":\"Fri May 25 07:58:48 +0000 2012\",\"favourites_count\":52699,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":62070,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1304\":{\"id\":1337900128980639744,\"id_str\":\"1337900128980639744\",\"name\":\"Jbankz\",\"screen_name\":\"meetJbankz\",\"location\":\"Nigeria\",\"description\":\"|| Musician || Song Writer ||\\nThe New EP,\\n#ELEVATE\\n\\\"now out on all music streaming platforms\",\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"expanded_url\":\"https:\\/\\/orcd.co\\/jbankz-elevate\",\"display_url\":\"orcd.co\\/jbankz-elevate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":2276,\"listed_count\":1,\"created_at\":\"Sat Dec 12 23:20:37 +0000 2020\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337900128980639744\\/1616501762\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1305\":{\"id\":1320448177921761280,\"id_str\":\"1320448177921761280\",\"name\":\"Hun Cho DC\",\"screen_name\":\"ChoWurld\",\"location\":\"Nigeria\",\"description\":\"Son Of God\\ud83c\\udfc6\\ud83e\\udd85\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Sun Oct 25 19:32:47 +0000 2020\",\"favourites_count\":135,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":31,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492440849002737668\\/mii3VYlD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492440849002737668\\/mii3VYlD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320448177921761280\\/1603655084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1306\":{\"id\":1485203694773755906,\"id_str\":\"1485203694773755906\",\"name\":\"Idowu\",\"screen_name\":\"nobleman_0\",\"location\":\"Ilorin, Nigeria\",\"description\":\"b*d laugher \\ud83d\\ude02 | Liverpool fan | music \\ud83c\\udfb6 | Fav. pet CAT \\ud83d\\udc08| interested in woman | Gamer \\ud83c\\udfae\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":542,\"listed_count\":2,\"created_at\":\"Sun Jan 23 10:52:26 +0000 2022\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554152295792840706\\/0RTlYaV4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554152295792840706\\/0RTlYaV4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1307\":{\"id\":500988165,\"id_str\":\"500988165\",\"name\":\"YUNG SKIZZY\",\"screen_name\":\"promphizy\",\"location\":\"Nigeria\",\"description\":\"NEW EP ON THE WAY SOON!!!\\n\\n#HEARTBREAKONAWEEKEND\",\"url\":\"https:\\/\\/t.co\\/XO7f7IWAfn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XO7f7IWAfn\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/promphizy\",\"display_url\":\"audiomack.com\\/promphizy\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1575,\"friends_count\":684,\"listed_count\":4,\"created_at\":\"Thu Feb 23 17:39:43 +0000 2012\",\"favourites_count\":105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7740,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552640576918638592\\/Hhn0BnQX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552640576918638592\\/Hhn0BnQX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/500988165\\/1657405307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1308\":{\"id\":1508898255303757830,\"id_str\":\"1508898255303757830\",\"name\":\"EmmyKin\",\"screen_name\":\"EmmyKin4\",\"location\":\"Accra, Ghana\",\"description\":\"God fearing | Graphics Designer \\ud83d\\udcbb\\ud83d\\udda5 | Motivational\\/Inspirational Activist | Philanthropist | Song Writer | Rapper\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":192,\"listed_count\":0,\"created_at\":\"Tue Mar 29 20:06:03 +0000 2022\",\"favourites_count\":303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":397,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546888211351457794\\/0KnwfH1i_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546888211351457794\\/0KnwfH1i_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1309\":{\"id\":1541944237457117184,\"id_str\":\"1541944237457117184\",\"name\":\"Matthew Adewusi\",\"screen_name\":\"MatthewAdewusi1\",\"location\":\"Ibadan, Nigeria.\",\"description\":\"Hello, I'm matthew, a Digital and Network Marketer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":54,\"listed_count\":0,\"created_at\":\"Wed Jun 29 00:39:20 +0000 2022\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541944370202648579\\/-j9k0EIF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541944370202648579\\/-j9k0EIF_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1310\":{\"id\":1254055027,\"id_str\":\"1254055027\",\"name\":\"Segun_thebook\",\"screen_name\":\"SSnetwoork\",\"location\":\"Lagos\",\"description\":\"Co-founder BusyBuddies. Journalist\\/Broadcaster\\/Writer #teamArsenal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4260,\"friends_count\":469,\"listed_count\":27,\"created_at\":\"Sat Mar 09 10:41:06 +0000 2013\",\"favourites_count\":63048,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":110631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514932593829068805\\/SwUQ1fxo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514932593829068805\\/SwUQ1fxo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1254055027\\/1626886843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1311\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1312\":{\"id\":1533420684642328576,\"id_str\":\"1533420684642328576\",\"name\":\"Emmanuel Otakhor\",\"screen_name\":\"OtakhorEmmanuel\",\"location\":\"Lagos\",\"description\":\"Cool dude\\/Photographer\\/Actor\\/Artist manager\\/Good vibe\\/Banker\\/Arsenal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":139,\"listed_count\":0,\"created_at\":\"Sun Jun 05 12:09:29 +0000 2022\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1533420684642328576\\/1659525553\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1313\":{\"id\":103651090,\"id_str\":\"103651090\",\"name\":\"Arnold Boateng\",\"screen_name\":\"Arnold_Boateng\",\"location\":\"Accra, Ghana\",\"description\":\"Author of The Dreams of Our Youth; The African Youth Question; ANANSE Verses| Speaker | Entrepreneur| CEO Aseda AgroPark | Founder, Goldvalley School\",\"url\":\"https:\\/\\/t.co\\/FUi4VQD0k6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FUi4VQD0k6\",\"expanded_url\":\"http:\\/\\/www.arnoldboateng.com\",\"display_url\":\"arnoldboateng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":699,\"friends_count\":134,\"listed_count\":7,\"created_at\":\"Sun Jan 10 19:54:24 +0000 2010\",\"favourites_count\":1264,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6137,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1338239342192566274\\/op_Jx8cZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1338239342192566274\\/op_Jx8cZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/103651090\\/1593119403\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1314\":{\"id\":1263817439776837634,\"id_str\":\"1263817439776837634\",\"name\":\"Azal's thoughts\",\"screen_name\":\"me_azal\",\"location\":\"Lagos, Nigeria\",\"description\":\"#endsars #endswat #endpolicebrutality and let's have peace\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":132,\"listed_count\":0,\"created_at\":\"Fri May 22 13:02:23 +0000 2020\",\"favourites_count\":268,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1347919901617487875\\/G3Q8nsZF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1347919901617487875\\/G3Q8nsZF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1263817439776837634\\/1597074103\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1315\":{\"id\":1360278712277749765,\"id_str\":\"1360278712277749765\",\"name\":\"Davano\",\"screen_name\":\"davanooo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Technophile\\ud83d\\udcf1| Blaugrana\\ud83d\\udc99\\u2764\\ufe0f| Melophile\\ud83c\\udfa7| Working towards your DREAM makes it a GOAL\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3316,\"friends_count\":3222,\"listed_count\":0,\"created_at\":\"Fri Feb 12 17:25:07 +0000 2021\",\"favourites_count\":44369,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":950,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532832448567975936\\/oCxoRgSD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532832448567975936\\/oCxoRgSD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1360278712277749765\\/1654208131\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1316\":{\"id\":865513506765799424,\"id_str\":\"865513506765799424\",\"name\":\"Overhplus Properties\",\"screen_name\":\"overhplus\",\"location\":\"Lekki, Nigeria\",\"description\":\"We Sell , Rent , Lease , Manage and Develop Properties.. We are Offer the best Real Estate deals.\",\"url\":\"https:\\/\\/t.co\\/zrljDtmqS6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zrljDtmqS6\",\"expanded_url\":\"http:\\/\\/www.overhplusproperties.com\",\"display_url\":\"overhplusproperties.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118,\"friends_count\":230,\"listed_count\":1,\"created_at\":\"Fri May 19 10:24:35 +0000 2017\",\"favourites_count\":2477,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1104,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1335122960231899137\\/1-vvKNxz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1335122960231899137\\/1-vvKNxz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865513506765799424\\/1658843912\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1317\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1318\":{\"id\":375126170,\"id_str\":\"375126170\",\"name\":\"Suliyat A A Idris\",\"screen_name\":\"Ennygirl4succes\",\"location\":\"Kano, Nigeria\",\"description\":\"Digital Safety Advocate | Educator | Sociopreneur\",\"url\":\"https:\\/\\/t.co\\/NkSkm6JEv1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NkSkm6JEv1\",\"expanded_url\":\"http:\\/\\/www.edunovativeconcept.com.ng\",\"display_url\":\"edunovativeconcept.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":164,\"friends_count\":47,\"listed_count\":3,\"created_at\":\"Sat Sep 17 15:07:05 +0000 2011\",\"favourites_count\":87,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":112,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1224075286750298112\\/p7g3kNHc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1224075286750298112\\/p7g3kNHc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/375126170\\/1423826831\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"DBE9ED\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1319\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1320\":{\"id\":1468496381308719108,\"id_str\":\"1468496381308719108\",\"name\":\"Teewithdspice\",\"screen_name\":\"realgurltee\",\"location\":\"Nigeria\",\"description\":\"Just a girl still working on herself \\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Wed Dec 08 08:23:34 +0000 2021\",\"favourites_count\":207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468496381308719108\\/1659468568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1321\":{\"id\":1539343942969335809,\"id_str\":\"1539343942969335809\",\"name\":\"omoniyi layo\",\"screen_name\":\"debirexx\",\"location\":\"Abuja\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Tue Jun 21 20:26:27 +0000 2022\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539343942969335809\\/1656059959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1322\":{\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"name\":\"Elite Star Foundation\",\"screen_name\":\"NGOELITESTAR\",\"location\":\"Nigeria\",\"description\":\"Ensuring lifelong learning opportunities for all and reducing all forms of inequalities and violence against children.\",\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"expanded_url\":\"https:\\/\\/www.elitestarfoundation.org\",\"display_url\":\"elitestarfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":492,\"listed_count\":0,\"created_at\":\"Sat Nov 20 04:48:29 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461919316400648194\\/1637384456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1323\":{\"id\":1145737649644343298,\"id_str\":\"1145737649644343298\",\"name\":\"OLUWATOBILOBA \\ud83d\\udc99\\u270c\",\"screen_name\":\"OmobulejoTobi\",\"location\":\"Lagos, Nigeria\",\"description\":\"@Chelseafc \\ud83d\\udc99 \\/\\/ WITH GOD ALL THINGS ARE POSSIBLE\\/\\/ \\u2764\\ufe0f DM for Cheap PROMO\\/Ads Gbengantobiloba@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12781,\"friends_count\":12097,\"listed_count\":5,\"created_at\":\"Mon Jul 01 16:55:17 +0000 2019\",\"favourites_count\":95319,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":21949,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1452182004376772608\\/lRcESL2__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1452182004376772608\\/lRcESL2__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1145737649644343298\\/1657732287\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1324\":{\"id\":1468496381308719108,\"id_str\":\"1468496381308719108\",\"name\":\"Teewithdspice\",\"screen_name\":\"realgurltee\",\"location\":\"Nigeria\",\"description\":\"Just a girl still working on herself \\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Wed Dec 08 08:23:34 +0000 2021\",\"favourites_count\":207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468496381308719108\\/1659468568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1325\":{\"id\":718354373286490113,\"id_str\":\"718354373286490113\",\"name\":\"Dcod\",\"screen_name\":\"ClemzyDcod\",\"location\":\"Nigeria\",\"description\":\"Code Anything \\ud83d\\udd25\\nRap Style.\\nFor bookings: dcod1@yahoo.com\\nEnquiries: 08051041414\",\"url\":\"https:\\/\\/t.co\\/xEvidsNkDz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xEvidsNkDz\",\"expanded_url\":\"https:\\/\\/clemzydcod.fanlink.to\\/garri\",\"display_url\":\"clemzydcod.fanlink.to\\/garri\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":177,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Fri Apr 08 08:26:43 +0000 2016\",\"favourites_count\":2881,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":700,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1454036467366432772\\/Q4ylkl_k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1454036467366432772\\/Q4ylkl_k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/718354373286490113\\/1587369137\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1326\":{\"id\":811714976,\"id_str\":\"811714976\",\"name\":\"Abrak_1981\",\"screen_name\":\"keep_itreal81\",\"location\":\"lagos \",\"description\":\"Keen to learn\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":207,\"listed_count\":0,\"created_at\":\"Sat Sep 08 21:15:56 +0000 2012\",\"favourites_count\":227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554374851594444802\\/UKGMmjGZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554374851594444802\\/UKGMmjGZ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1327\":{\"id\":727930445007093760,\"id_str\":\"727930445007093760\",\"name\":\"Boakye\",\"screen_name\":\"Ur_Provost_COS\",\"location\":\"Ghana\",\"description\":\"An Environmental enthusiast, socialist and an activist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":106,\"listed_count\":0,\"created_at\":\"Wed May 04 18:38:37 +0000 2016\",\"favourites_count\":608,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":327,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538824347749691394\\/C_Fzqhne_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538824347749691394\\/C_Fzqhne_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/727930445007093760\\/1637308069\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1328\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1329\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1330\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1331\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1332\":{\"id\":4304359282,\"id_str\":\"4304359282\",\"name\":\"Bright Jacobs\",\"screen_name\":\"bajoboru\",\"location\":\"Warri\",\"description\":\"Civil Engineer. Project Manager. MNSE. MNICE @bajconsults Group\\nIFB & only unfollow if U unfollow\",\"url\":\"https:\\/\\/t.co\\/fGYWV4mDaF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fGYWV4mDaF\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/bajconcepts\",\"display_url\":\"facebook.com\\/bajconcepts\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1027,\"friends_count\":1244,\"listed_count\":1,\"created_at\":\"Sat Nov 28 06:26:12 +0000 2015\",\"favourites_count\":1698,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1072531993412493313\\/VlOF_8dc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1072531993412493313\\/VlOF_8dc_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1333\":{\"id\":1523062194166022145,\"id_str\":\"1523062194166022145\",\"name\":\"\\ud835\\udc12\\ud835\\udc21\\ud835\\udc22\\ud835\\udc27\\ud835\\udc1a\\ud835\\udc31\\ud83e\\udd76\",\"screen_name\":\"shinax_drolls\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud835\\udc08\\ud835\\udc0c\\ud835\\udc04\\ud835\\udc0b\\ud835\\udc04\\ud83d\\udc7b\\n\\ud83c\\udde9\\u200a\\ud83c\\uddf7\\u200a\\ud83c\\uddf4\\u200a\\ud83c\\uddf1\\u200a\\ud83c\\uddf1\\u200a\\ud83e\\udd21\\n\\ud83e\\udd76 \\ud835\\udc13\\ud835\\udc21\\ud835\\udc1e \\ud835\\udc06\\ud835\\udc25\\ud835\\udc1a\\ud835\\udc2c\\ud835\\udc2c \\ud835\\udc0c\\ud835\\udc1a\\ud835\\udc27\\ud83e\\udd7d\\n\\ud83e\\udd76 \\ud835\\udc02\\ud835\\udc28\\ud835\\udc27\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc27\\ud835\\udc2d \\ud835\\udc02\\ud835\\udc2b\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc2d\\ud835\\udc28\\ud835\\udc2b\\ud83e\\udd76\\n\\ud835\\udc16\\ud835\\udc1e\\ud835\\udc25\\ud835\\udc1c\\ud835\\udc28\\ud835\\udc26\\ud835\\udc1e \\ud835\\udc2d\\ud835\\udc28 \\ud835\\udc12\\ud835\\udc21\\ud835\\udc22\\ud835\\udc27\\ud835\\udc1a\\ud835\\udc31 \\ud835\\udc16\\ud835\\udc28\\ud835\\udc2b\\ud835\\udc25\\ud835\\udc1d\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/0YQatPu3Cz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0YQatPu3Cz\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCnZT8WC60mrPN0VoSdTf7gw\",\"display_url\":\"youtube.com\\/channel\\/UCnZT8\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":66,\"listed_count\":0,\"created_at\":\"Sat May 07 22:09:03 +0000 2022\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555519014788554753\\/KE02tirj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555519014788554753\\/KE02tirj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1523062194166022145\\/1658091713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1334\":{\"id\":965162806344634368,\"id_str\":\"965162806344634368\",\"name\":\"Prince of Peace\",\"screen_name\":\"KabirOduola\",\"location\":\"Nigeria\",\"description\":\"Am a lover of peaceful coexistence, religion, geographic, tongue, or colorations don't affect my decision in friendship.\\nRespect, Love and Peace is all I cared\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":567,\"friends_count\":657,\"listed_count\":4,\"created_at\":\"Sun Feb 18 09:55:19 +0000 2018\",\"favourites_count\":41201,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":23505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541462139579277314\\/OpZB6Z3z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541462139579277314\\/OpZB6Z3z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965162806344634368\\/1519583230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1335\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1336\":{\"id\":275190072,\"id_str\":\"275190072\",\"name\":\"dis OBI-dient delegate \\ud83d\\ude02 \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"akomscopy\",\"location\":\"Lagos, Nigeria\",\"description\":\"YORUBA SPACE HOST\\ud83c\\udf99\\ufe0f\\ud83d\\udc4c\\ud83c\\udf77\\nC.o.o @everythingplast on Twitter\\nBsc. public admin \\ndeals in plastic furnitures & household\\n (member APCNYL Media team)\",\"url\":\"https:\\/\\/t.co\\/iLli7PDGqa\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iLli7PDGqa\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/akomolafe-isaac-87484b147\",\"display_url\":\"linkedin.com\\/in\\/akomolafe-i\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5614,\"friends_count\":4121,\"listed_count\":12,\"created_at\":\"Thu Mar 31 20:12:06 +0000 2011\",\"favourites_count\":97179,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":133389,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554874513296343042\\/4HzVo0VL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554874513296343042\\/4HzVo0VL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/275190072\\/1646055319\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1337\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1338\":{\"id\":90823573,\"id_str\":\"90823573\",\"name\":\"Clement Afreh\",\"screen_name\":\"clement_afreh\",\"location\":\"Kumasi\",\"description\":\"CEO of the year @CBCIncUshers #Blogger @CBCInc_Hypes, #Founder of @sisterstalkglob @CBCInc_Gh and @TravailersTIWM #teamJesus #eventpromoter #MusicDirector\",\"url\":\"https:\\/\\/t.co\\/BxgEdBZHqt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BxgEdBZHqt\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/cafreh\",\"display_url\":\"facebook.com\\/cafreh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2912,\"friends_count\":1205,\"listed_count\":6,\"created_at\":\"Wed Nov 18 07:36:52 +0000 2009\",\"favourites_count\":8299,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12888,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509246200838606849\\/CVK_pYU-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509246200838606849\\/CVK_pYU-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/90823573\\/1606153576\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1339\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1340\":{\"id\":464680113,\"id_str\":\"464680113\",\"name\":\"\\u2014\\u2014-\\u2014Wuzi is supporting Peter Obi for President\\u2014\\u2014\\u2014\\u2014\",\"screen_name\":\"dawuzi\",\"location\":\"Lagos, Nigeria\",\"description\":\"software dev extraordinaire in the making. $M naire in the making. Loving dad & husband in the making. Working on removing all (in the making) u read. #bitcoin\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":843,\"friends_count\":785,\"listed_count\":19,\"created_at\":\"Sun Jan 15 14:20:15 +0000 2012\",\"favourites_count\":14808,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28444,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1362892094088638465\\/tfheVbrI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1362892094088638465\\/tfheVbrI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/464680113\\/1652999739\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1341\":{\"id\":1309543038151200775,\"id_str\":\"1309543038151200775\",\"name\":\"Divine Autos\",\"screen_name\":\"SenatorJoseph4\",\"location\":\"\",\"description\":\"Proud Dad, Lover of God,Automobile Dealer, Sales, Purchase and maintenance, Positive vibes always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":313,\"friends_count\":486,\"listed_count\":1,\"created_at\":\"Fri Sep 25 17:19:36 +0000 2020\",\"favourites_count\":6051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1921,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1309543038151200775\\/1658871374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1342\":{\"id\":1268155371589439488,\"id_str\":\"1268155371589439488\",\"name\":\"Job Vacancies Ghana\",\"screen_name\":\"jobvacanciesgh_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana's Trusted Career Consult\\n\\u2022 Career Tips \\u2022 Interview Tips \\u2022 Career Advice\\n\\ud83d\\udd14Turn on your post notification for updates\",\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ywJi2F\",\"display_url\":\"bit.ly\\/3ywJi2F\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26129,\"friends_count\":1449,\"listed_count\":9,\"created_at\":\"Wed Jun 03 12:23:37 +0000 2020\",\"favourites_count\":17329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268155371589439488\\/1659366481\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1343\":{\"id\":752186680849891328,\"id_str\":\"752186680849891328\",\"name\":\"Charles Antwi\",\"screen_name\":\"antwicharles26\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Tax Consultant | Farming Enthusiast | Proud Chelsea Fan \\ud83d\\udc99\\ud83d\\udc99\",\"url\":\"https:\\/\\/t.co\\/xKzQN4zmpr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xKzQN4zmpr\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC-aFpv4m_qog6GoIEF3uVNw\",\"display_url\":\"youtube.com\\/channel\\/UC-aFp\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1955,\"friends_count\":1436,\"listed_count\":1,\"created_at\":\"Sun Jul 10 17:04:14 +0000 2016\",\"favourites_count\":30589,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1168805546805387264\\/KnHXN4C5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1168805546805387264\\/KnHXN4C5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/752186680849891328\\/1567499933\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1344\":{\"id\":3485859021,\"id_str\":\"3485859021\",\"name\":\"Shawty\\u2019s prof\",\"screen_name\":\"ahmerdrufae\",\"location\":\"Nigeria\",\"description\":\"Biochemist \\/\\/Owner: Asb mixed bag and Asb_carsgalore \\/\\/Baller\\/\\/Believer\\/\\/\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5634,\"friends_count\":3661,\"listed_count\":0,\"created_at\":\"Sun Aug 30 01:08:24 +0000 2015\",\"favourites_count\":73134,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22682,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533280609367359491\\/Rg3nkfFW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533280609367359491\\/Rg3nkfFW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3485859021\\/1617223073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1345\":{\"id\":2587232163,\"id_str\":\"2587232163\",\"name\":\"Ityclety\",\"screen_name\":\"Itycletylove\",\"location\":\"Akwa Ibom, Nigeria\",\"description\":\"Impossibility Lies Within The State Of The Mind\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":351,\"friends_count\":758,\"listed_count\":0,\"created_at\":\"Fri Jun 06 15:07:48 +0000 2014\",\"favourites_count\":7483,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545061080455696386\\/moBpJi_W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545061080455696386\\/moBpJi_W_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1346\":{\"id\":1268155371589439488,\"id_str\":\"1268155371589439488\",\"name\":\"Job Vacancies Ghana\",\"screen_name\":\"jobvacanciesgh_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana's Trusted Career Consult\\n\\u2022 Career Tips \\u2022 Interview Tips \\u2022 Career Advice\\n\\ud83d\\udd14Turn on your post notification for updates\",\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ywJi2F\",\"display_url\":\"bit.ly\\/3ywJi2F\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26129,\"friends_count\":1449,\"listed_count\":9,\"created_at\":\"Wed Jun 03 12:23:37 +0000 2020\",\"favourites_count\":17329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268155371589439488\\/1659366481\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1347\":{\"id\":1216651467895058432,\"id_str\":\"1216651467895058432\",\"name\":\"The_Ohemaa_Herself\\ud83d\\udc51\\ud83d\\udc95\",\"screen_name\":\"EfiaOkorewaa\",\"location\":\"Accra, Ghana\",\"description\":\"Girl-Almighty\\ud83d\\udcaa\\ud83c\\udffc \\ud83d\\udc9e God first \\ud83d\\ude4f\\ud83c\\udffc\\ud83d\\ude4f\\ud83c\\udffc||Biomedical Engineer||\\ud83d\\udd27@ManchesterUnited fan\\u26bd\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4332,\"friends_count\":4697,\"listed_count\":7,\"created_at\":\"Mon Jan 13 09:22:01 +0000 2020\",\"favourites_count\":5292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2891,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529848497859702786\\/_fvoMwzB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529848497859702786\\/_fvoMwzB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1216651467895058432\\/1617920179\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1348\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1349\":{\"id\":2285686874,\"id_str\":\"2285686874\",\"name\":\"ChoosePeace\",\"screen_name\":\"IssahTuaha\",\"location\":\"Ghana\",\"description\":\"Founder & Director of @asfitnetwork \\u2022Teacher \\u2022Interfaith Activist \\u2022Ambassador of @GlobPeaceIndex \\u2022Traveller \\u2022SDGs Advocate\",\"url\":\"https:\\/\\/t.co\\/SPeXjSjOQ9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SPeXjSjOQ9\",\"expanded_url\":\"https:\\/\\/asfitnetwork.org\\/the-executive-director\\/\",\"display_url\":\"asfitnetwork.org\\/the-executive-\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":526,\"listed_count\":3,\"created_at\":\"Fri Jan 10 21:52:16 +0000 2014\",\"favourites_count\":3129,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2869,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1203458467740172288\\/qwU7VKPr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1203458467740172288\\/qwU7VKPr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2285686874\\/1639395536\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1350\":{\"id\":2717216135,\"id_str\":\"2717216135\",\"name\":\"Mentie of Delta\\ud83d\\udc70\\u200d\\u2640\\ufe0f\\u2764\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"mentie_pride\",\"location\":\"Lagos, Nigeria\",\"description\":\"An Accountant\\/\\/ An Aries \\u2648\\ufe0f\\/\\/ A lover of God\\/\\/ free minded\\/\\/ football lover \\u26bd\\ufe0f\\/\\/ A #Model\\ud83d\\udc78\\/\\/ #menties_pride \\/\\/ #April7th\\/\\/ Female Alpha\\ud83e\\udddc\\u200d\\u2640\\ufe0f\\/\\/ @arsenal\",\"url\":\"https:\\/\\/t.co\\/wJiHsMtNIq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wJiHsMtNIq\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/menties_pride\",\"display_url\":\"instagram.com\\/menties_pride\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2541,\"friends_count\":2074,\"listed_count\":1,\"created_at\":\"Fri Jul 18 23:15:30 +0000 2014\",\"favourites_count\":6186,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5045,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553475734882193409\\/c2DWE0aA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553475734882193409\\/c2DWE0aA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2717216135\\/1631616583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1351\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1352\":{\"id\":1268155371589439488,\"id_str\":\"1268155371589439488\",\"name\":\"Job Vacancies Ghana\",\"screen_name\":\"jobvacanciesgh_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana's Trusted Career Consult\\n\\u2022 Career Tips \\u2022 Interview Tips \\u2022 Career Advice\\n\\ud83d\\udd14Turn on your post notification for updates\",\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ywJi2F\",\"display_url\":\"bit.ly\\/3ywJi2F\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26129,\"friends_count\":1449,\"listed_count\":9,\"created_at\":\"Wed Jun 03 12:23:37 +0000 2020\",\"favourites_count\":17329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268155371589439488\\/1659366481\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1353\":{\"id\":1522897900950503425,\"id_str\":\"1522897900950503425\",\"name\":\"KING OF NORTH\\ud83d\\udc51\\ud83c\\udf93\",\"screen_name\":\"ibrahim_IbbJnr8\",\"location\":\"Abuja Nigeria\",\"description\":\"\\ud83d\\udc93if you love \\u054f\\u0585\\u028d\\u04bd\\u0585\\u0572\\u04bd\\u263a, pray for them. Pray for their peace. \\ud83d\\ude05Pray for \\u0535\\u0570\\u04bdir\\u2764 growth. Pray for their success. Pray for their happiness.\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":302,\"listed_count\":0,\"created_at\":\"Sat May 07 11:16:17 +0000 2022\",\"favourites_count\":3052,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3862,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534299728548069376\\/70OZAcMj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534299728548069376\\/70OZAcMj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522897900950503425\\/1654434468\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1354\":{\"id\":1268155371589439488,\"id_str\":\"1268155371589439488\",\"name\":\"Job Vacancies Ghana\",\"screen_name\":\"jobvacanciesgh_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Ghana's Trusted Career Consult\\n\\u2022 Career Tips \\u2022 Interview Tips \\u2022 Career Advice\\n\\ud83d\\udd14Turn on your post notification for updates\",\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6hFteoDyoX\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ywJi2F\",\"display_url\":\"bit.ly\\/3ywJi2F\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26129,\"friends_count\":1449,\"listed_count\":9,\"created_at\":\"Wed Jun 03 12:23:37 +0000 2020\",\"favourites_count\":17329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554121777613357057\\/kWkoq4A-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268155371589439488\\/1659366481\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1355\":{\"id\":1309543038151200775,\"id_str\":\"1309543038151200775\",\"name\":\"Divine Autos\",\"screen_name\":\"SenatorJoseph4\",\"location\":\"\",\"description\":\"Proud Dad, Lover of God,Automobile Dealer, Sales, Purchase and maintenance, Positive vibes always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":313,\"friends_count\":486,\"listed_count\":1,\"created_at\":\"Fri Sep 25 17:19:36 +0000 2020\",\"favourites_count\":6051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1921,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1309543038151200775\\/1658871374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1356\":{\"id\":896196087748407297,\"id_str\":\"896196087748407297\",\"name\":\"Officialdjspace\",\"screen_name\":\"officialdjspace\",\"location\":\"Lagos Nigeria \",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Sat Aug 12 02:26:12 +0000 2017\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":56,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/896196087748407297\\/1609241573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1357\":{\"id\":842751123098406912,\"id_str\":\"842751123098406912\",\"name\":\"Code\\ud83c\\udfd0\",\"screen_name\":\"OfokansiH\",\"location\":\"Nigeria\",\"description\":\"Civil Engineer \\/Blogger \\/very good in architectural and structural design \\n\\nIf you unfollow, I will definitely return the favour \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":2155,\"listed_count\":1,\"created_at\":\"Fri Mar 17 14:55:00 +0000 2017\",\"favourites_count\":2102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8531,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842751123098406912\\/1656930981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1358\":{\"id\":842751123098406912,\"id_str\":\"842751123098406912\",\"name\":\"Code\\ud83c\\udfd0\",\"screen_name\":\"OfokansiH\",\"location\":\"Nigeria\",\"description\":\"Civil Engineer \\/Blogger \\/very good in architectural and structural design \\n\\nIf you unfollow, I will definitely return the favour \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":2155,\"listed_count\":1,\"created_at\":\"Fri Mar 17 14:55:00 +0000 2017\",\"favourites_count\":2102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8531,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842751123098406912\\/1656930981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1359\":{\"id\":1512828788,\"id_str\":\"1512828788\",\"name\":\"\\ud83c\\udf1fFaith\",\"screen_name\":\"faithluseno\",\"location\":\"Ke\",\"description\":\"LIVE TRUTH \\/ LIVE RIGHT \\/ LIVE GODLY\\/GOODLY\",\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/mishiefinthetemple\",\"display_url\":\"youtube.com\\/user\\/mishiefin\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5212,\"friends_count\":5543,\"listed_count\":9,\"created_at\":\"Thu Jun 13 08:58:42 +0000 2013\",\"favourites_count\":9146,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1512828788\\/1657043375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1360\":{\"id\":889548207121989632,\"id_str\":\"889548207121989632\",\"name\":\"Tizzie\",\"screen_name\":\"tizzieofficial\",\"location\":\"\",\"description\":\"Rep BIGWIZ and Messi \\u2665\\ufe0f\\ud83e\\udd85\\ud83d\\udda4. A Professional Barber. Unilorite. Lover of Music and football. YouTubehttps:\\/\\/youtube.com\\/channel\\/UCyfA3o-KcOmsCXxxKIPLP1AU1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":1124,\"listed_count\":0,\"created_at\":\"Mon Jul 24 18:09:54 +0000 2017\",\"favourites_count\":97643,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":939,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889548207121989632\\/1651779013\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1361\":{\"id\":1291869860356595712,\"id_str\":\"1291869860356595712\",\"name\":\"Tmiles\",\"screen_name\":\"tmilesfootwear\",\"location\":\"Ibadan, Nigeria\",\"description\":\"A self owned brand that deals in all kind of leather shoes..\\nWe bring beauty to your feet when you rock our product..\\n07061820852 calls and WhatsApp.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":77,\"listed_count\":0,\"created_at\":\"Fri Aug 07 22:52:48 +0000 2020\",\"favourites_count\":8583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526318473869152257\\/viT8grUd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526318473869152257\\/viT8grUd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1291869860356595712\\/1642631054\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1362\":{\"id\":209792558,\"id_str\":\"209792558\",\"name\":\"Cameron Lewis\",\"screen_name\":\"yoURDATAisyours\",\"location\":\"Pacific Northwest\",\"description\":\"Executive in Technology + Primary industries | Husband to Dr. Hasler-Lewis | Proud Dad 3 GR8 Adults | Flyfisher | \\ud83d\\udeb2 | You are what you eat | #Resistance\",\"url\":\"https:\\/\\/t.co\\/98k6vQ1Y2C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/98k6vQ1Y2C\",\"expanded_url\":\"http:\\/\\/olivinolife.com\\/\",\"display_url\":\"olivinolife.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3713,\"friends_count\":3676,\"listed_count\":1028,\"created_at\":\"Fri Oct 29 23:06:57 +0000 2010\",\"favourites_count\":3542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":65171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"4A913C\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1117888672106336257\\/8eR_iPgT_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1117888672106336257\\/8eR_iPgT_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/209792558\\/1583904178\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"352B21\",\"profile_text_color\":\"C2AF99\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1363\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1364\":{\"id\":1288060497334591490,\"id_str\":\"1288060497334591490\",\"name\":\"son of the south\",\"screen_name\":\"official_pizz\",\"location\":\"Lagos, Nigeria\",\"description\":\"What makes me special is seeing you smile\",\"url\":\"https:\\/\\/t.co\\/wpSlFpFJWm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpSlFpFJWm\",\"expanded_url\":\"http:\\/\\/instagram.com\\/officialpizz\",\"display_url\":\"instagram.com\\/officialpizz\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":871,\"friends_count\":790,\"listed_count\":0,\"created_at\":\"Tue Jul 28 10:35:47 +0000 2020\",\"favourites_count\":2369,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1124,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529040812369223685\\/_yWpnZZA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529040812369223685\\/_yWpnZZA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1288060497334591490\\/1616147831\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1365\":{\"id\":1535514328589385729,\"id_str\":\"1535514328589385729\",\"name\":\"Queenmercy \\ud83d\\udc51\",\"screen_name\":\"MercyOlakunle2\",\"location\":\"Ado Ekiti, Nigeria\",\"description\":\"Yah it\\u2019s queen mercy follow me I flb \\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":133,\"listed_count\":0,\"created_at\":\"Sat Jun 11 06:49:10 +0000 2022\",\"favourites_count\":66,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537084632352579585\\/gGq371Ll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537084632352579585\\/gGq371Ll_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535514328589385729\\/1655790325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1366\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1367\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1368\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1369\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1370\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1371\":{\"id\":479754411,\"id_str\":\"479754411\",\"name\":\"Chidimma&Chidiebere\",\"screen_name\":\"Aneke_Twins\",\"location\":\"Nigeria\",\"description\":\"About Us: Prod,Actors, CEO Greenville production int'l Ltd, https:\\/\\/t.co\\/wKR7Bmm02h Our Blog: https:\\/\\/t.co\\/DjOlxl33Tb Our Fan Page: https:\\/\\/t.co\\/opXqRQZgUH 08036129789\",\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"expanded_url\":\"http:\\/\\/greenvilleproductions.com\",\"display_url\":\"greenvilleproductions.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wKR7Bmm02h\",\"expanded_url\":\"http:\\/\\/bit.ly\\/OdEnWv\",\"display_url\":\"bit.ly\\/OdEnWv\",\"indices\":[60,83]},{\"url\":\"https:\\/\\/t.co\\/DjOlxl33Tb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/U2eefG\",\"display_url\":\"bit.ly\\/U2eefG\",\"indices\":[94,117]},{\"url\":\"https:\\/\\/t.co\\/opXqRQZgUH\",\"expanded_url\":\"http:\\/\\/on.fb.me\\/OdEZv7\",\"display_url\":\"on.fb.me\\/OdEZv7\",\"indices\":[132,155]}]}},\"protected\":false,\"followers_count\":6050,\"friends_count\":369,\"listed_count\":26,\"created_at\":\"Tue Jan 31 18:43:22 +0000 2012\",\"favourites_count\":2238,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9419,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/479754411\\/1619194743\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1372\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1373\":{\"id\":817531158,\"id_str\":\"817531158\",\"name\":\"adebanjo micheal\",\"screen_name\":\"mickkycutz\",\"location\":\"Obalende\",\"description\":\"Mickky-Cutz makes perfect size and rebrand you \\ud83d\\udc4d\\ud83c\\udffb\",\"url\":\"https:\\/\\/t.co\\/LQ4W9PgoV7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LQ4W9PgoV7\",\"expanded_url\":\"http:\\/\\/Mickkycutz.com\",\"display_url\":\"Mickkycutz.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":291,\"friends_count\":854,\"listed_count\":0,\"created_at\":\"Tue Sep 11 14:30:16 +0000 2012\",\"favourites_count\":2989,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1245308995599990784\\/ZFlBd5Bm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1245308995599990784\\/ZFlBd5Bm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/817531158\\/1582035826\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1374\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1375\":{\"id\":1058495583206412288,\"id_str\":\"1058495583206412288\",\"name\":\"Favorite_Talkative\\u270c\\ufe0f\",\"screen_name\":\"Princes37396148\",\"location\":\"Lagos, Nigeria\",\"description\":\"political sociologist\\nlover of Christ \\u2764\\ufe0f\\nfriendly \\ud83d\\udc9c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Fri Nov 02 23:06:27 +0000 2018\",\"favourites_count\":781,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":81,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554537898657173504\\/RiGK6uuD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554537898657173504\\/RiGK6uuD_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1376\":{\"id\":92769204,\"id_str\":\"92769204\",\"name\":\"Gbestile Lance Armstrong \\ud83e\\udd33\\ud83c\\udffe\\ud83c\\udfa5\\ud83d\\udeb2\",\"screen_name\":\"kwazibruce\",\"location\":\"Ghana\",\"description\":\"Social Media Manager | Digital Journalist | Knowledge Worker | Alumnus @McKinsey Forward Africa Programme 2021; @UNESCO #MILclicker RTs\\u2260endorsement\",\"url\":\"https:\\/\\/t.co\\/bfuFtVDRXt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bfuFtVDRXt\",\"expanded_url\":\"https:\\/\\/kwasibruce.medium.com\\/\",\"display_url\":\"kwasibruce.medium.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1886,\"friends_count\":400,\"listed_count\":90,\"created_at\":\"Thu Nov 26 14:56:20 +0000 2009\",\"favourites_count\":7702,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52743,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1441738092558258184\\/eud0CF42_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1441738092558258184\\/eud0CF42_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/92769204\\/1488502792\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1377\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1378\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1379\":{\"id\":1536942410592399360,\"id_str\":\"1536942410592399360\",\"name\":\"bolireloaded\",\"screen_name\":\"bolireloaded\",\"location\":\"Akure, Nigeria\",\"description\":\"We aim to become your first option when you think of consuming Roasted Plantain (Boli). We deliver to anywhere in Akure\",\"url\":\"https:\\/\\/t.co\\/ulwxB05N1i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ulwxB05N1i\",\"expanded_url\":\"http:\\/\\/wa.me\\/2347048780019\",\"display_url\":\"wa.me\\/2347048780019\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Jun 15 05:23:34 +0000 2022\",\"favourites_count\":42,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":39,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536942604612472833\\/eq5j1GdF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536942604612472833\\/eq5j1GdF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536942410592399360\\/1655315567\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1380\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1381\":{\"id\":1501329714,\"id_str\":\"1501329714\",\"name\":\"DM_Cruz\",\"screen_name\":\"DavidmmhdMomoh\",\"location\":\"Lagos, Nigeria\",\"description\":\"Artist\\n\\nfollow me on IG @iam_dmcruz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":153,\"listed_count\":3,\"created_at\":\"Tue Jun 11 09:59:50 +0000 2013\",\"favourites_count\":72,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":39,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538846616765050881\\/vQZhzUWe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538846616765050881\\/vQZhzUWe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501329714\\/1449522658\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1382\":{\"id\":1188467539388571648,\"id_str\":\"1188467539388571648\",\"name\":\"Anya_Nyako\\u2606\",\"screen_name\":\"Anya_Nyako2505\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Jeremiah 29:11 \\nSCD (Sickle Cell Disease) Survivor \\ud83d\\udcaa\\ud83c\\udfff\\nSCD Advocate.\\nWomen are no longer meant to sit still and look pretty - We are meant to lead empires...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3044,\"friends_count\":4407,\"listed_count\":5,\"created_at\":\"Sun Oct 27 14:48:57 +0000 2019\",\"favourites_count\":47034,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73348,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1188467539388571648\\/1655657592\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1383\":{\"id\":1371869056316358656,\"id_str\":\"1371869056316358656\",\"name\":\"CHAMPAGNE BABY\",\"screen_name\":\"OgGreatCampbel1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm the Greatest Pop Star from Africa to the world\\n24 OUT NOW WORLDWIDE !!!!\",\"url\":\"https:\\/\\/t.co\\/SPpJYf03eW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SPpJYf03eW\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/ng\\/album\\/24-ep\\/1631115875\",\"display_url\":\"music.apple.com\\/ng\\/album\\/24-ep\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":164,\"listed_count\":0,\"created_at\":\"Tue Mar 16 17:01:01 +0000 2021\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":185,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540281198865522689\\/39XsMUAn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540281198865522689\\/39XsMUAn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1371869056316358656\\/1655166871\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1384\":{\"id\":4794711408,\"id_str\":\"4794711408\",\"name\":\"John From JokosHQ\",\"screen_name\":\"johnfromjokoshq\",\"location\":\"Edo, Nigeria\",\"description\":\"Personal Finance Blog - #MakeMoney | #SideHustles | #Insurance | #Loans - https:\\/\\/t.co\\/Caxti45Z1M\",\"url\":\"https:\\/\\/t.co\\/NluJplod3b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NluJplod3b\",\"expanded_url\":\"https:\\/\\/jokoshq.com\",\"display_url\":\"jokoshq.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Caxti45Z1M\",\"expanded_url\":\"http:\\/\\/jokoshq.com\",\"display_url\":\"jokoshq.com\",\"indices\":[74,97]}]}},\"protected\":false,\"followers_count\":507,\"friends_count\":1247,\"listed_count\":65,\"created_at\":\"Thu Jan 21 20:19:29 +0000 2016\",\"favourites_count\":294,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504416607430488064\\/JCBFE8sV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504416607430488064\\/JCBFE8sV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4794711408\\/1647515859\",\"profile_link_color\":\"2A3950\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1385\":{\"id\":1188868044447240194,\"id_str\":\"1188868044447240194\",\"name\":\"Selahmeditate\",\"screen_name\":\"selahmeditate\",\"location\":\"Lagos, Nigeria\",\"description\":\"My mission is to challenge you to think and take actions that will lead to your success in all areas of your life.\\n\\ud83d\\udcda Read Daily\\n\\ud83e\\uddf5 Your Mind is your Limit\",\"url\":\"https:\\/\\/t.co\\/gxxcdOQbqB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gxxcdOQbqB\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/SelahMeditate\",\"display_url\":\"youtube.com\\/SelahMeditate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Mon Oct 28 17:20:19 +0000 2019\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":418,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1188871021987799040\\/t9nhAPFF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1188871021987799040\\/t9nhAPFF_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1386\":{\"id\":1499464487186927621,\"id_str\":\"1499464487186927621\",\"name\":\"Emmanuel M A Kamara\",\"screen_name\":\"EmmanuelMAKam11\",\"location\":\"\",\"description\":\"Exceptional Journalist with Integrity\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Thu Mar 03 19:19:57 +0000 2022\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499464613917769738\\/75AjFJ6Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499464613917769738\\/75AjFJ6Q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1387\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1388\":{\"id\":374020433,\"id_str\":\"374020433\",\"name\":\"\\ud83d\\ude1dTolani Sukurat\\ud83d\\ude1a\",\"screen_name\":\"malltallerny\",\"location\":\"Nigeria\",\"description\":\"Winona \\ud83e\\udd13 Fc Barcelona fan,\\nFashion Designer\\/Stylist \\ud83e\\udde5\\ud83d\\udc57 \\n(i own my stuff\\u270c) IG: @lani_piece\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2209,\"friends_count\":1322,\"listed_count\":0,\"created_at\":\"Thu Sep 15 15:31:56 +0000 2011\",\"favourites_count\":5779,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530613961523138560\\/S03GORaw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530613961523138560\\/S03GORaw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/374020433\\/1614345540\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1389\":{\"id\":3503954355,\"id_str\":\"3503954355\",\"name\":\"Qs_Umar_Faruq_Ajibola\",\"screen_name\":\"OluwasanjoFaruq\",\"location\":\"Oyo, Nigeria\",\"description\":\"A Muslim\\ud83d\\udc7d\\ud83d\\udc7dA Chelsea Fan\\ud83d\\udc7d\\ud83d\\udc7dA quantity surveyor\\ud83d\\udc7d\\ud83d\\udc7d A project Manager \\ud83d\\udea7 General contractor \\ud83d\\udc77\\ud83c\\udffdA realtors \\ud83c\\udfe0\\ud83c\\udfed\\ud83c\\udfe3\\ud83c\\udfec\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":166,\"friends_count\":834,\"listed_count\":1,\"created_at\":\"Mon Aug 31 17:35:29 +0000 2015\",\"favourites_count\":2707,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1532,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550210316860014592\\/rOmunENd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550210316860014592\\/rOmunENd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3503954355\\/1605075334\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1390\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1391\":{\"id\":743814793941913600,\"id_str\":\"743814793941913600\",\"name\":\"Royal Oak Inc\",\"screen_name\":\"RoyalOakInc\",\"location\":\"BK\",\"description\":\"#VentureCap \\nTechnical, Sentiment, Fundamental \\n#CRYPTO - #P2E #Metaverse #GAMING \\n#BTC #ETH - #Stocks - #Economy \\nNot FA DYOR\",\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCmJkSVdn6f7-iHhT4bGAPbA\",\"display_url\":\"youtube.com\\/channel\\/UCmJkS\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":831,\"friends_count\":468,\"listed_count\":23,\"created_at\":\"Fri Jun 17 14:37:21 +0000 2016\",\"favourites_count\":4388,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743814793941913600\\/1659493718\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1392\":{\"id\":1048586980915863552,\"id_str\":\"1048586980915863552\",\"name\":\"PERFECT\",\"screen_name\":\"PHChurchgirl\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Writter and Model\\n\\nvolunteer @myEmyWealth\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":350,\"listed_count\":1,\"created_at\":\"Sat Oct 06 14:53:12 +0000 2018\",\"favourites_count\":330,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":100,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488196904223715338\\/6_I-ba9l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488196904223715338\\/6_I-ba9l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1048586980915863552\\/1651668549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1393\":{\"id\":870403786547875842,\"id_str\":\"870403786547875842\",\"name\":\"Kossy Okonkwo\",\"screen_name\":\"kosisochukw_\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kossy is a tech enthusiast, i breathe tech. I\\u2019m a product designer, a digital marketer, business developer, creative thinker, business woman and God\\u2019s princess\",\"url\":\"https:\\/\\/t.co\\/nSxJcMojUl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nSxJcMojUl\",\"expanded_url\":\"http:\\/\\/www.kossies.com\",\"display_url\":\"kossies.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":262,\"listed_count\":0,\"created_at\":\"Thu Jun 01 22:16:48 +0000 2017\",\"favourites_count\":86,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":156,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1459208381051424769\\/hKLzAvzw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1459208381051424769\\/hKLzAvzw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870403786547875842\\/1636549237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1394\":{\"id\":1430808551883100162,\"id_str\":\"1430808551883100162\",\"name\":\"Kashif Khan\",\"screen_name\":\"Real_KashifKhan\",\"location\":\"UAE \",\"description\":\"Award Winner In Forex Asia .Consultant, Analyst at Forex Market Asia. Tweets are Personal. RTs are not endorsements.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":861,\"listed_count\":5,\"created_at\":\"Thu Aug 26 08:25:28 +0000 2021\",\"favourites_count\":1332,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":414,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538176181870395392\\/LvMFz187_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538176181870395392\\/LvMFz187_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1430808551883100162\\/1655564766\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1395\":{\"id\":623233938,\"id_str\":\"623233938\",\"name\":\"Kwaku Antwi-Boasiako\",\"screen_name\":\"ABKwaku\",\"location\":\"Accra, Ghana\",\"description\":\"Ghanaian\\ud83c\\uddec\\ud83c\\udded | What is written, is written | Man Utd & Kotoko | Love F1, Tennis, Boxing & Other Sport | Retweet not endorsement\",\"url\":\"https:\\/\\/t.co\\/3wCtzDPnUe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3wCtzDPnUe\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/kwaku.antwiboasiako.3\",\"display_url\":\"facebook.com\\/kwaku.antwiboa\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":107587,\"friends_count\":103722,\"listed_count\":43,\"created_at\":\"Sat Jun 30 21:26:16 +0000 2012\",\"favourites_count\":431,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9618,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556193573581852673\\/XGvBMDUY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556193573581852673\\/XGvBMDUY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/623233938\\/1541841185\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1396\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1560,\"friends_count\":3011,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1397\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1560,\"friends_count\":3011,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1398\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1560,\"friends_count\":3011,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1399\":{\"id\":1247580496411996162,\"id_str\":\"1247580496411996162\",\"name\":\"Nighties & lounge wears\",\"screen_name\":\"organic_sis\",\"location\":\"Lagos, Nigeria\",\"description\":\"I sell beautiful nighties and lounge wears at affordable https:\\/\\/t.co\\/7HUENsQrIW can reach me via WhatsApp: https:\\/\\/t.co\\/1IY4nlmMKl\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7HUENsQrIW\",\"expanded_url\":\"http:\\/\\/prices.You\",\"display_url\":\"prices.You\",\"indices\":[57,80]},{\"url\":\"https:\\/\\/t.co\\/1IY4nlmMKl\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/N6DGZYI5A5JMN1\",\"display_url\":\"wa.me\\/message\\/N6DGZY\\u2026\",\"indices\":[108,131]}]}},\"protected\":false,\"followers_count\":149,\"friends_count\":243,\"listed_count\":1,\"created_at\":\"Tue Apr 07 17:42:34 +0000 2020\",\"favourites_count\":862,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1352286998627831815\\/LDW-cryf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1352286998627831815\\/LDW-cryf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1247580496411996162\\/1611070361\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1400\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1401\":{\"id\":1319242347020996608,\"id_str\":\"1319242347020996608\",\"name\":\"\\ud835\\udc0f\\ud835\\udc11\\ud835\\udc04\\ud835\\udc02\\ud835\\udc08\\ud835\\udc0e\\ud835\\udc14\\ud835\\udc12 \\ud835\\udc0e\\ud835\\udc05 \\ud835\\udc0f\\ud835\\udc0e\\ud835\\udc11\\ud835\\udc13\\ud835\\udc07\\ud835\\udc00\\ud835\\udc11\\ud835\\udc02\\ud835\\udc0e\\ud835\\udc14\\ud835\\udc11\\ud835\\udc13\",\"screen_name\":\"PreciousP001\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"\\ud835\\udc01\\ud835\\udc22\\ud835\\udc28\\ud835\\udc1c\\ud835\\udc21\\ud835\\udc1e\\ud835\\udc26\\ud835\\udc22\\ud835\\udc2c\\ud835\\udc2d \\n\\ud835\\udc00\\ud835\\udc02\\ud835\\udc13\\ud835\\udc08\\ud835\\udc15\\ud835\\udc08\\ud835\\udc12\\ud835\\udc13\\n\\ud835\\udc0d\\ud835\\udc08\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\ud835\\udc08\\ud835\\udc00\\ud835\\udc0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":515,\"listed_count\":0,\"created_at\":\"Thu Oct 22 11:41:27 +0000 2020\",\"favourites_count\":1027,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":282,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552388729339273219\\/yRekNB3o_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552388729339273219\\/yRekNB3o_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319242347020996608\\/1658953402\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1402\":{\"id\":1399387146704855045,\"id_str\":\"1399387146704855045\",\"name\":\"Otaru of Lekki. \\ud83c\\udf1e\",\"screen_name\":\"kenneth51428693\",\"location\":\"Lagos, Nigeria\",\"description\":\"CEO Okhumode Logistics and Founder https:\\/\\/t.co\\/TzKoAmUqXK\",\"url\":\"https:\\/\\/t.co\\/940uFcGOc9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/940uFcGOc9\",\"expanded_url\":\"https:\\/\\/okhumodelogistics.bumpa.shop\\/\",\"display_url\":\"okhumodelogistics.bumpa.shop\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TzKoAmUqXK\",\"expanded_url\":\"http:\\/\\/Stationeries.com\",\"display_url\":\"Stationeries.com\",\"indices\":[35,58]}]}},\"protected\":false,\"followers_count\":21,\"friends_count\":213,\"listed_count\":0,\"created_at\":\"Mon May 31 15:28:09 +0000 2021\",\"favourites_count\":374,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":206,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552336355665092615\\/x_mYh6pV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552336355665092615\\/x_mYh6pV_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1403\":{\"id\":1467614874553438214,\"id_str\":\"1467614874553438214\",\"name\":\"ndscobbina\\ud83e\\udd34\\ud83c\\udffb\",\"screen_name\":\"nanadiabour_1\",\"location\":\"Earth\",\"description\":\"Dear reader: why settle for a duke when you can have a Prince|| Family Above All || Undergraduate @KNUSTGH || Social Media Fanatic|| \\ud83d\\udceewww.ndscobbina@gmail.com\",\"url\":\"https:\\/\\/t.co\\/l3jeKzZ1BH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l3jeKzZ1BH\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/p\\/CaaCAgTI09V\\/?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/p\\/CaaCAgTI09V\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":58,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sun Dec 05 22:00:50 +0000 2021\",\"favourites_count\":2814,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1592,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551687536589901825\\/zl7NvZdF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551687536589901825\\/zl7NvZdF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1467614874553438214\\/1657848449\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1404\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1405\":{\"id\":63752099,\"id_str\":\"63752099\",\"name\":\"Adegbite Adeyinka\",\"screen_name\":\"CodedlyCoded\",\"location\":\"Lagos ,Nigeria\",\"description\":\"I'm who I am.\\n#ex-ARS,#God lover.\\nTimes Magazine Person of the year 2006.\\n#Amateur Singer, Guitarist, #Political Juggernault and #tech + #crypto enthusiast.\",\"url\":\"http:\\/\\/t.co\\/N3M3syU2o6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/N3M3syU2o6\",\"expanded_url\":\"http:\\/\\/Facebook.com\\/cohded\",\"display_url\":\"Facebook.com\\/cohded\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":488,\"friends_count\":2492,\"listed_count\":6,\"created_at\":\"Fri Aug 07 15:35:35 +0000 2009\",\"favourites_count\":12705,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6667,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1403636436054671361\\/3qXFARMz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1403636436054671361\\/3qXFARMz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/63752099\\/1603054964\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1406\":{\"id\":1283782049694973954,\"id_str\":\"1283782049694973954\",\"name\":\"Precious Jemeni Chinonso\",\"screen_name\":\"Young_X391\",\"location\":\"Watchman\",\"description\":\"HI, I'M PRECIOUS JEMENI, A VIDEO CREATOR ALWAYS AVAILABLE FOR ANY BUSINESS.\\n WHATSAPP NUMBER\\n \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\n 09057645411\",\"url\":\"https:\\/\\/t.co\\/au8BZF19pk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/au8BZF19pk\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/CHINONSOLONDONUSEDPHONES\\/\",\"display_url\":\"facebook.com\\/CHINONSOLONDON\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":441,\"friends_count\":1353,\"listed_count\":0,\"created_at\":\"Thu Jul 16 15:14:40 +0000 2020\",\"favourites_count\":214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":53,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545126836031700992\\/a98HUXLz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545126836031700992\\/a98HUXLz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1283782049694973954\\/1655858962\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1407\":{\"id\":1020746307231780864,\"id_str\":\"1020746307231780864\",\"name\":\"Betty's Hairven\\ud83d\\udc9a\\ud83d\\udc7c\\ud83d\\udc70\\ud83d\\udcab\",\"screen_name\":\"bettyshairven\",\"location\":\"Ibadan\\/Lagos Nigeria\",\"description\":\"\\u2666\\ufe0fBridal Hairstylist\\u2666\\ufe0fWig-Maker \\u2666\\ufe0fFrontal install&Customization \\u2666\\ufe0fPro-Wig Revamp \\u2666\\ufe0fSales of Human hair Extension. IG;@bettyshairven\\u2666\\ufe0fhttps:\\/\\/t.co\\/yZ5mXFVrhh\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yZ5mXFVrhh\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348131372299\",\"display_url\":\"wa.me\\/2348131372299\",\"indices\":[133,156]}]}},\"protected\":false,\"followers_count\":143,\"friends_count\":151,\"listed_count\":0,\"created_at\":\"Sat Jul 21 19:04:18 +0000 2018\",\"favourites_count\":620,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554507812276936705\\/0vo9UYxp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554507812276936705\\/0vo9UYxp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1020746307231780864\\/1659458526\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1408\":{\"id\":1483468168656048134,\"id_str\":\"1483468168656048134\",\"name\":\"@graciaofficial\\ud83e\\udd8b\",\"screen_name\":\"graciaofficia11\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"\\ud83d\\udcaffun Vet doc in process \\ud83d\\ude09\\u2764\\ufe0f\\ud83d\\udcaf follow me I will follow back instantly \\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Tue Jan 18 15:56:04 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483468168656048134\\/1643450822\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1409\":{\"id\":2731185005,\"id_str\":\"2731185005\",\"name\":\"Cyptopreacher\",\"screen_name\":\"Rumerule\",\"location\":\"Lagos, Nigeria\",\"description\":\"Blockchain& Fintech Writer|| #Bitcoin lover||Founder CPBA\\/\\/ Co-Founder ThinkCrypto\\/\\/Digital-Market analyst @Channelstv\\/\\/ https:\\/\\/t.co\\/ClkOl0jpum\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ClkOl0jpum\",\"expanded_url\":\"http:\\/\\/t.me\\/thecryptopreac\",\"display_url\":\"t.me\\/thecryptopreac\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":1550,\"friends_count\":1239,\"listed_count\":15,\"created_at\":\"Fri Aug 01 23:16:19 +0000 2014\",\"favourites_count\":6569,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4653,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2731185005\\/1642407607\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1410\":{\"id\":1483468168656048134,\"id_str\":\"1483468168656048134\",\"name\":\"@graciaofficial\\ud83e\\udd8b\",\"screen_name\":\"graciaofficia11\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"\\ud83d\\udcaffun Vet doc in process \\ud83d\\ude09\\u2764\\ufe0f\\ud83d\\udcaf follow me I will follow back instantly \\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Tue Jan 18 15:56:04 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483468168656048134\\/1643450822\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1411\":{\"id\":1496679506756739073,\"id_str\":\"1496679506756739073\",\"name\":\"MOE\",\"screen_name\":\"Tomiprano\",\"location\":\"Lagos, Nigeria\",\"description\":\"Minstrel |Linguist\\ud83d\\udcd6 |Gift curator \\ud83c\\udf81 |Social Media Manager\\u25fb\\ufe0fInterior Designer \\ud83e\\udeb4 |Estate Manager \\ud83c\\udfe1 |Stylist \\ud83e\\udd7b|YouTuber \\ud83d\\udcf9|Photographer| Coffee \\u2615\\ufe0f\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/Aodkr8Sa6B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Aodkr8Sa6B\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/tomiprano\",\"display_url\":\"linktr.ee\\/tomiprano\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":20,\"listed_count\":1,\"created_at\":\"Thu Feb 24 02:53:09 +0000 2022\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":75,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496679906389934083\\/4ejy4cAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496679906389934083\\/4ejy4cAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496679506756739073\\/1645671802\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1412\":{\"id\":1110786005106348032,\"id_str\":\"1110786005106348032\",\"name\":\"trylips\",\"screen_name\":\"trylips\",\"location\":\"Lagos, Nigeria\",\"description\":\"Prankster \\u2022|\\u2022Comedian|\\u2022Influencer\\u2022|\\u2022Skit Maker.. SPREAD MY LOVE\\u2764\\ufe0f.. |follow me on IG https:\\/\\/t.co\\/rHuQ9B5P2E\",\"url\":\"https:\\/\\/t.co\\/l1r6p5HISG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l1r6p5HISG\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCDTq_NmkDeoQYEvPIKKsZ_A\",\"display_url\":\"youtube.com\\/channel\\/UCDTq_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rHuQ9B5P2E\",\"expanded_url\":\"https:\\/\\/instagram.com\\/trylips\",\"display_url\":\"instagram.com\\/trylips\",\"indices\":[85,108]}]}},\"protected\":false,\"followers_count\":4451,\"friends_count\":2756,\"listed_count\":0,\"created_at\":\"Wed Mar 27 06:09:55 +0000 2019\",\"favourites_count\":23219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1469,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550764883834175492\\/ViQNXvVt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550764883834175492\\/ViQNXvVt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1110786005106348032\\/1642279628\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1413\":{\"id\":134425558,\"id_str\":\"134425558\",\"name\":\"Muhammad Zubairu, PhD\",\"screen_name\":\"mzubairu\",\"location\":\"Abuja - Nigeria\",\"description\":\"Je suis qui je suis. Je dis la v\\u00e9rit\\u00e9, m\\u00eame si \\u00e7a allait me co\\u00fbter ma vie. Gaskiya tafi kobo!............\",\"url\":\"https:\\/\\/t.co\\/Ik78KtBWHY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ik78KtBWHY\",\"expanded_url\":\"http:\\/\\/nigcomsat.gov.ng\",\"display_url\":\"nigcomsat.gov.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":179,\"friends_count\":1388,\"listed_count\":0,\"created_at\":\"Sun Apr 18 11:18:44 +0000 2010\",\"favourites_count\":126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1081124945218994177\\/LKqidrXj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1081124945218994177\\/LKqidrXj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/134425558\\/1581239965\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1414\":{\"id\":1159375453049819136,\"id_str\":\"1159375453049819136\",\"name\":\"9jalatest.com\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"9jalatesttv\",\"location\":\"Enugu, Nigeria\",\"description\":\"We are https:\\/\\/t.co\\/1rIgngLYVb Home of Entertainment We promote Quality Entertainment works to millions of Audience.\",\"url\":\"https:\\/\\/t.co\\/qFhr47YfCo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qFhr47YfCo\",\"expanded_url\":\"http:\\/\\/www.9jalatest.com\",\"display_url\":\"9jalatest.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1rIgngLYVb\",\"expanded_url\":\"http:\\/\\/9jalatest.com\",\"display_url\":\"9jalatest.com\",\"indices\":[7,30]}]}},\"protected\":false,\"followers_count\":416,\"friends_count\":571,\"listed_count\":1,\"created_at\":\"Thu Aug 08 08:07:02 +0000 2019\",\"favourites_count\":3490,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2636,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524157266563325952\\/NbO0xR5b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524157266563325952\\/NbO0xR5b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1159375453049819136\\/1612178330\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1415\":{\"id\":869903364,\"id_str\":\"869903364\",\"name\":\"SHERUBAWON \\ud83d\\udc99\\ud83e\\udd85\",\"screen_name\":\"lamzyondbeat\",\"location\":\"Lagos\",\"description\":\"GISTLOVERS CLASSCAPTIAN\\u2026Follow @lamzyondbeatzblog on Instagram DM FOR ADS\\u2026BRAND AMB 4 : @wulespecial @everything_5pounds_equivalent @bodiedbymaryan\",\"url\":\"https:\\/\\/t.co\\/j96onxBRDS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/j96onxBRDS\",\"expanded_url\":\"https:\\/\\/lamzyondbeat.streamlink.to\\/DiamondEp\",\"display_url\":\"lamzyondbeat.streamlink.to\\/DiamondEp\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":449,\"friends_count\":93,\"listed_count\":2,\"created_at\":\"Tue Oct 09 13:40:23 +0000 2012\",\"favourites_count\":1185,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2888,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1394791623586951170\\/IDB3QKnw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1394791623586951170\\/IDB3QKnw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/869903364\\/1592880259\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1416\":{\"id\":1486578326437302277,\"id_str\":\"1486578326437302277\",\"name\":\"Sprout Analtyics And IT Solutions\",\"screen_name\":\"sproutaits\",\"location\":\"Ikorodu, Lagos\",\"description\":\"RC: 3534735|| Interactive ICT Classes || Software development || Business development || Data Analytics || #Certified\",\"url\":\"https:\\/\\/t.co\\/GavEuLIS21\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GavEuLIS21\",\"expanded_url\":\"http:\\/\\/sproutaits.com\",\"display_url\":\"sproutaits.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Thu Jan 27 05:54:44 +0000 2022\",\"favourites_count\":93,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1486578606428110854\\/AasUoEKg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1486578606428110854\\/AasUoEKg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486578326437302277\\/1643263607\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1417\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1418\":{\"id\":1106460109616701440,\"id_str\":\"1106460109616701440\",\"name\":\"MBA INVESTMENT NIGERIA LIMITED\",\"screen_name\":\"mba_phone_store\",\"location\":\"Ahmadu bello way kaduna state \",\"description\":\"DEALERS OF SMARTPHONES BOTH BRAND NEW AND SMART USED WE SELL WE BUY WE SWAP FOR ENQUIRIES DM\\/CALL 07032655719 OFFICE ADD:AFF 13 BACAB PLAZA AHMADU BELLO WAY KAD\",\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"expanded_url\":\"http:\\/\\/www.mbainvestment.com\",\"display_url\":\"mbainvestment.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19782,\"friends_count\":4176,\"listed_count\":14,\"created_at\":\"Fri Mar 15 07:40:21 +0000 2019\",\"favourites_count\":20983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106460109616701440\\/1577378394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1419\":{\"id\":1239717417359683587,\"id_str\":\"1239717417359683587\",\"name\":\"Daniel Gbenda\",\"screen_name\":\"danielgbenda\",\"location\":\"Makurdi, Nigeria\",\"description\":\"Gospel artist|Law Student|Farmer\",\"url\":\"https:\\/\\/t.co\\/kuQt4WAnjh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kuQt4WAnjh\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/DanielGbenda\",\"display_url\":\"linktr.ee\\/DanielGbenda\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":929,\"friends_count\":157,\"listed_count\":0,\"created_at\":\"Tue Mar 17 00:57:58 +0000 2020\",\"favourites_count\":19981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1040,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498630895611387906\\/beplIjip_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498630895611387906\\/beplIjip_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239717417359683587\\/1655148498\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1420\":{\"id\":1106460109616701440,\"id_str\":\"1106460109616701440\",\"name\":\"MBA INVESTMENT NIGERIA LIMITED\",\"screen_name\":\"mba_phone_store\",\"location\":\"Ahmadu bello way kaduna state \",\"description\":\"DEALERS OF SMARTPHONES BOTH BRAND NEW AND SMART USED WE SELL WE BUY WE SWAP FOR ENQUIRIES DM\\/CALL 07032655719 OFFICE ADD:AFF 13 BACAB PLAZA AHMADU BELLO WAY KAD\",\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"expanded_url\":\"http:\\/\\/www.mbainvestment.com\",\"display_url\":\"mbainvestment.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19782,\"friends_count\":4176,\"listed_count\":14,\"created_at\":\"Fri Mar 15 07:40:21 +0000 2019\",\"favourites_count\":20983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106460109616701440\\/1577378394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1421\":{\"id\":1551248834138972161,\"id_str\":\"1551248834138972161\",\"name\":\"Okeey_m\",\"screen_name\":\"okeey_m\",\"location\":\"\",\"description\":\"Lawyer, Keyboardist, Actor, Script writer, Motivational speaker, Public Speaker, Artist and a lover of Jesus \\ud83e\\udd0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Sun Jul 24 16:52:08 +0000 2022\",\"favourites_count\":64,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":27,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551249053719175170\\/e0OOn7Wq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551249053719175170\\/e0OOn7Wq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551248834138972161\\/1659461570\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1422\":{\"id\":1154077700438601729,\"id_str\":\"1154077700438601729\",\"name\":\"Sneakers.NG\",\"screen_name\":\"uglyyorubadboy\",\"location\":\"Lagos, Nigeria\",\"description\":\"Looking dapper is good business | shoes \\ud83d\\udc5e \\ud83d\\udc5f and jerseys . We offer you the best service | SNEAKERS PLUG \\ud83d\\udd0c| \\ud83d\\udc99\\u2764\\ufe0f CULER| IG:@My_SneakersNG | Aspiring DA\",\"url\":\"https:\\/\\/t.co\\/WzQIpRWs3M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WzQIpRWs3M\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/RIOIOAV4XGDUM1\",\"display_url\":\"wa.me\\/message\\/RIOIOA\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6168,\"friends_count\":5779,\"listed_count\":2,\"created_at\":\"Wed Jul 24 17:15:40 +0000 2019\",\"favourites_count\":62752,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38871,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529001253702979584\\/Ivh4ZtUd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529001253702979584\\/Ivh4ZtUd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1154077700438601729\\/1653377282\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1423\":{\"id\":1280138882751827968,\"id_str\":\"1280138882751827968\",\"name\":\"SNEH J\",\"screen_name\":\"AnthonySneh\",\"location\":\"Lagos, Nigeria\",\"description\":\"FILM MAKER\\ud83c\\udfad\\ud83c\\udfad\\ud83c\\udde8\\ud83c\\uddf5\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddff\\ud83c\\uddfa\\ud83c\\uddf2\\ud83c\\uddf9\\ud83c\\uddfb ARTIST\\ud83c\\udfa4\\ud83c\\udfb5\\ud83c\\udfbc,DANCE COACH \\ud83d\\udd7a\\ud83d\\udd7a\\nAND FILM DIRECTOR \\ud83c\\udfac\\ud83c\\udf9e\\ufe0f\\ud83c\\udfa5\\ud83d\\udcfd\\ufe0f\\ud83d\\udcf8 BTS MAKER\",\"url\":\"https:\\/\\/t.co\\/ZHsxOxCJii\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZHsxOxCJii\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/sneh-j\",\"display_url\":\"audiomack.com\\/sneh-j\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":254,\"friends_count\":437,\"listed_count\":0,\"created_at\":\"Mon Jul 06 13:58:13 +0000 2020\",\"favourites_count\":5913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2320,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553655993959153664\\/_l26d6YF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553655993959153664\\/_l26d6YF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1280138882751827968\\/1645093956\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1424\":{\"id\":716008789921689604,\"id_str\":\"716008789921689604\",\"name\":\"Lythiba Nissefou\",\"screen_name\":\"Bathilyfoussen3\",\"location\":\"Abidjan \",\"description\":\"Mourir pour l'id\\u00e9e, c'est la seule fa\\u00e7on d'\\u00eatre \\u00e0 la hauteur de l'id\\u00e9e. C'est la\\u00a0justification'' ALBERT CAMUS '' \\ud83c\\uddf2\\ud83c\\uddf1\\ud83c\\udde8\\ud83c\\uddee\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":1220,\"listed_count\":1,\"created_at\":\"Fri Apr 01 21:06:13 +0000 2016\",\"favourites_count\":5898,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1878,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1453415772135563269\\/KrthMLl3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1453415772135563269\\/KrthMLl3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/716008789921689604\\/1635358159\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1425\":{\"id\":848038824789856256,\"id_str\":\"848038824789856256\",\"name\":\"Daniel Dozie\",\"screen_name\":\"niel_astrildz\",\"location\":\"Lagos, Nigeria\",\"description\":\"An Enthusiast\",\"url\":\"https:\\/\\/t.co\\/bO2p61sfac\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bO2p61sfac\",\"expanded_url\":\"https:\\/\\/daniel-dozie.dev\",\"display_url\":\"daniel-dozie.dev\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Sat Apr 01 05:06:26 +0000 2017\",\"favourites_count\":50,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":173,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546265293894422529\\/IR-lPV9j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546265293894422529\\/IR-lPV9j_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1426\":{\"id\":235263973,\"id_str\":\"235263973\",\"name\":\"Starfield Montessori\",\"screen_name\":\"StarfieldMS\",\"location\":\"Lagos, Nigeria\",\"description\":\"The official Twitter profile of Starfield Montessori School, Lekki.\",\"url\":\"https:\\/\\/t.co\\/eodhcjomjd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eodhcjomjd\",\"expanded_url\":\"https:\\/\\/www.starfieldmontessorischool.com\\/schedule-a-tour\",\"display_url\":\"starfieldmontessorischool.com\\/schedule-a-tour\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99,\"friends_count\":22,\"listed_count\":1,\"created_at\":\"Fri Jan 07 19:19:50 +0000 2011\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547940499683627009\\/OZaAYjfH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547940499683627009\\/OZaAYjfH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/235263973\\/1428069198\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1427\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1428\":{\"id\":281642857,\"id_str\":\"281642857\",\"name\":\"Nimot Adetola Sulaimon\",\"screen_name\":\"NaijaTalkative_\",\"location\":\"Lagos\",\"description\":\"Muslim\\/\\/B.A English and International Studies\\/\\/PRfluencer\\/\\/Correspondent @pmnewsnigeria \\/\\/Vendor Relations Manager @loveweddingsng \\u2709\\ufe0f nimetua@gmail.com\",\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"expanded_url\":\"http:\\/\\/pmnewsnigeria.com\",\"display_url\":\"pmnewsnigeria.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":465,\"friends_count\":918,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:42:18 +0000 2011\",\"favourites_count\":586,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/281642857\\/1569838198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1429\":{\"id\":752521951348985856,\"id_str\":\"752521951348985856\",\"name\":\"Ol\\u00e1t\\u00fand\\u00e9 Ol\\u00f3\\u00f3r\\u00f2 (\\u00c0are On\\u00edged\\u00fa) \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf1\\ud83c\\uddf7\",\"screen_name\":\"TundeOloro\",\"location\":\"Lagos, Nigeria\",\"description\":\"Remnant tribe of hyper-creative minority || If content is King then I'm the king's Maker. I curate, research, edit, Visualize and promote Content for a living\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":471,\"listed_count\":0,\"created_at\":\"Mon Jul 11 15:16:29 +0000 2016\",\"favourites_count\":598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530067535072219136\\/beZJL35J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530067535072219136\\/beZJL35J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/752521951348985856\\/1659118582\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1430\":{\"id\":1553455382168834051,\"id_str\":\"1553455382168834051\",\"name\":\"Creative Primez\",\"screen_name\":\"Creativeprimez\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2666\\ufe0fMusic Cover Art \\u2666\\ufe0fBranding Logo \\u2666\\ufe0fCreative Designs , (postal-handbill) You Imagine , We create COLLABORATION ( Place order Now )\\ud83d\\udd3d\",\"url\":\"https:\\/\\/t.co\\/avJwGy3VUJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/avJwGy3VUJ\",\"expanded_url\":\"https:\\/\\/instagram.com\\/creativeprimez?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/creativeprimez\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 30 19:00:21 +0000 2022\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":43,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553850896395780097\\/M8nPIHYe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553850896395780097\\/M8nPIHYe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553455382168834051\\/1659301912\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1431\":{\"id\":525214871,\"id_str\":\"525214871\",\"name\":\"Asonya Gh\",\"screen_name\":\"asonyagh\",\"location\":\"Ghana, wa\",\"description\":\"Entrepreneur, Entertainment\\/Life Style Blogger. #TeamBarca #ITTech #asonyacomputers\",\"url\":\"https:\\/\\/t.co\\/tZsoc2djGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tZsoc2djGz\",\"expanded_url\":\"http:\\/\\/OneMuzikGh.Com\",\"display_url\":\"OneMuzikGh.Com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":817,\"friends_count\":960,\"listed_count\":1,\"created_at\":\"Thu Mar 15 09:44:04 +0000 2012\",\"favourites_count\":5155,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":744,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1376923361079611403\\/8alkyeUq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1376923361079611403\\/8alkyeUq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/525214871\\/1599077002\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1432\":{\"id\":1471642299641778176,\"id_str\":\"1471642299641778176\",\"name\":\"INI\",\"screen_name\":\"blackman_ini\",\"location\":\"Nigeria\",\"description\":\"Nigerian designer\\ud83c\\uddf3\\ud83c\\uddec\\nFootwear designer\\ud83d\\udc4c\\ud83c\\udffd\\nProduct designer\\ud83d\\udc4c\\ud83c\\udffd\\nInstagram: https:\\/\\/t.co\\/ApIi9QiheJ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ApIi9QiheJ\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/i.am.dice\",\"display_url\":\"instagram.com\\/i.am.dice\",\"indices\":[70,93]}]}},\"protected\":false,\"followers_count\":98,\"friends_count\":121,\"listed_count\":0,\"created_at\":\"Fri Dec 17 00:44:15 +0000 2021\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534834784769396736\\/QrWUevo4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534834784769396736\\/QrWUevo4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1471642299641778176\\/1654720795\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1433\":{\"id\":1167791790864441351,\"id_str\":\"1167791790864441351\",\"name\":\"PeterObi stan\",\"screen_name\":\"amSirkings\",\"location\":\"Anambra, Nigeria\",\"description\":\"Philosopher. \\n\\nsirkings300@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nCeFAFDg0d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nCeFAFDg0d\",\"expanded_url\":\"http:\\/\\/komback.com\",\"display_url\":\"komback.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":300,\"friends_count\":1095,\"listed_count\":0,\"created_at\":\"Sat Aug 31 13:30:56 +0000 2019\",\"favourites_count\":3292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2284,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535951366329360386\\/bzgexWKu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535951366329360386\\/bzgexWKu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167791790864441351\\/1592875122\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1434\":{\"id\":162063549,\"id_str\":\"162063549\",\"name\":\"Al-Hassan\",\"screen_name\":\"Dubaidollars\",\"location\":\"U.A.E\",\"description\":\"We Make things happen in Dubai when it comes to ShowBiz and Entertainment. Major Talent Buyer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":30,\"listed_count\":0,\"created_at\":\"Fri Jul 02 14:44:30 +0000 2010\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":78,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/526956846439886848\\/u9_eqdJL_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/526956846439886848\\/u9_eqdJL_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/162063549\\/1414471080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1435\":{\"id\":556990334,\"id_str\":\"556990334\",\"name\":\"DAVID\",\"screen_name\":\"dadadavidob\",\"location\":\"Lagos\",\"description\":\"I am all about a detribalised Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":795,\"friends_count\":791,\"listed_count\":2,\"created_at\":\"Wed Apr 18 16:02:36 +0000 2012\",\"favourites_count\":846,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3346,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539859335333003264\\/YB44Pzc4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539859335333003264\\/YB44Pzc4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/556990334\\/1421523260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1436\":{\"id\":1236311190126673920,\"id_str\":\"1236311190126673920\",\"name\":\"ikeh\\ud80c\\udcf5\",\"screen_name\":\"_I_K_E_H_\",\"location\":\"Lagos, Nigeria\",\"description\":\"Welcome\\ud83e\\udd1d\\ud83c\\udffd....\\n\\n\\u2022 Influential ranter \\u2022 I serve blunt tweets(TRUTH) \\u2022\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2115,\"friends_count\":1256,\"listed_count\":1,\"created_at\":\"Sat Mar 07 15:22:28 +0000 2020\",\"favourites_count\":5048,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2325,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1369627139616694278\\/2c8Peud7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1369627139616694278\\/2c8Peud7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1236311190126673920\\/1588323497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1437\":{\"id\":1096361679573696514,\"id_str\":\"1096361679573696514\",\"name\":\"Caridad Charity Foundation\",\"screen_name\":\"caridad_charity\",\"location\":\"Nigeria\",\"description\":\"Caridad Charity Foundation, rebuilding Women&Girl Personality, SocialEco thru, Empowerment, Education,Health & Climate Action info@caridadcharityfoundation.org\",\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"expanded_url\":\"http:\\/\\/www.caridadcharityfoundation.org\",\"display_url\":\"caridadcharityfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Fri Feb 15 10:52:48 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1096361679573696514\\/1606838455\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1438\":{\"id\":1083738576284803075,\"id_str\":\"1083738576284803075\",\"name\":\"NAIJAVILLE\\ud83e\\udd85 (Nwaeri JohnPaul)\",\"screen_name\":\"NAIJAVILLE1\",\"location\":\"Ikeja, Nigeria\",\"description\":\"\\ud83d\\udc3cA platform for all gists,topics and news around.\\n\\ud83d\\udc18VFDbank1007409068 Nwaeri JP.\\n\\ud83d\\udc30-IG:https:\\/\\/t.co\\/kGxqJCUqvQ\\n\\u2b50Quidax:Qnaijaville.MAVIN FAMILY.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kGxqJCUqvQ\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/naijavi1le__\",\"display_url\":\"instagram.com\\/naijavi1le__\",\"indices\":[85,108]}]}},\"protected\":false,\"followers_count\":242,\"friends_count\":1254,\"listed_count\":0,\"created_at\":\"Fri Jan 11 14:53:06 +0000 2019\",\"favourites_count\":6122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8208,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550975408107134979\\/OOq8-ibq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550975408107134979\\/OOq8-ibq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1083738576284803075\\/1650647833\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1439\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1440\":{\"id\":3291302559,\"id_str\":\"3291302559\",\"name\":\"Suleiman\",\"screen_name\":\"Yasuke1000\",\"location\":\"Nigeria\",\"description\":\"Male\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":583,\"listed_count\":2,\"created_at\":\"Wed May 20 13:57:09 +0000 2015\",\"favourites_count\":561,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":778,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511321637165178883\\/GZUEnbla_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511321637165178883\\/GZUEnbla_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3291302559\\/1570264040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1441\":{\"id\":512052306,\"id_str\":\"512052306\",\"name\":\"williams umeh\",\"screen_name\":\"WilliamsUmeh\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a graphic designer (and lead designer at Soft Touch by Will), tech enthusiast and a Hospitality expert.\",\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"expanded_url\":\"http:\\/\\/soft-touch-by-will.business.site\\/\",\"display_url\":\"soft-touch-by-will.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":94,\"listed_count\":1,\"created_at\":\"Fri Mar 02 15:10:38 +0000 2012\",\"favourites_count\":754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":216,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/512052306\\/1649729778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1442\":{\"id\":1125140365563060224,\"id_str\":\"1125140365563060224\",\"name\":\"Tosan Ceniplug\",\"screen_name\":\"stallionlori\",\"location\":\"Lekki, Nigeria\",\"description\":\"\\ud83c\\udff8 Founder VGC Badminton club \\ud83d\\udd0c Ceniplug \\ud83e\\udde0 @padupafrica Chaperon Tfrizil clothing co\\ud83c\\udfa5Film Distributor \\ud83d\\udcda\\ud83d\\udd8bPolitician \\u26a0\\ufe0fCaution Party Events \\ud83d\\udd1dSportainment \\ud83d\\udddd\",\"url\":\"https:\\/\\/t.co\\/o3MbSTcZat\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o3MbSTcZat\",\"expanded_url\":\"http:\\/\\/www.mmm360.blogspot.com\",\"display_url\":\"mmm360.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1058,\"friends_count\":1147,\"listed_count\":0,\"created_at\":\"Sun May 05 20:49:02 +0000 2019\",\"favourites_count\":9197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4116,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1494605934517268480\\/iZ7lJVll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1494605934517268480\\/iZ7lJVll_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125140365563060224\\/1652724150\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1443\":{\"id\":1155047862369214464,\"id_str\":\"1155047862369214464\",\"name\":\"Emperor P\",\"screen_name\":\"posh_emperor\",\"location\":\"Ogun, Nigeria\",\"description\":\"Certified Economist\\ud83d\\udcafQualified Computer Engineer\\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbb Ember Member \\ud83c\\udf89 IntrovertedGangster\\ud83d\\udc7d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":8,\"listed_count\":0,\"created_at\":\"Sat Jul 27 09:30:44 +0000 2019\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":231,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523220903718440961\\/X7yHzuht_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523220903718440961\\/X7yHzuht_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1155047862369214464\\/1595241180\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1444\":{\"id\":281642857,\"id_str\":\"281642857\",\"name\":\"Nimot Adetola Sulaimon\",\"screen_name\":\"NaijaTalkative_\",\"location\":\"Lagos\",\"description\":\"Muslim\\/\\/B.A English and International Studies\\/\\/PRfluencer\\/\\/Correspondent @pmnewsnigeria \\/\\/Vendor Relations Manager @loveweddingsng \\u2709\\ufe0f nimetua@gmail.com\",\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"expanded_url\":\"http:\\/\\/pmnewsnigeria.com\",\"display_url\":\"pmnewsnigeria.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":465,\"friends_count\":918,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:42:18 +0000 2011\",\"favourites_count\":586,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/281642857\\/1569838198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1445\":{\"id\":1550926146870689792,\"id_str\":\"1550926146870689792\",\"name\":\"Ageless\",\"screen_name\":\"WumiAnu\",\"location\":\"Lagos, Nigeria\",\"description\":\"Content creator,Brand influencer ,Serial entrepreneur ,Media girl-TV, Red carpet host Speaker(My message is Jesus) Bookings:anuoluwapoadewumib@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":176,\"listed_count\":0,\"created_at\":\"Sat Jul 23 19:30:16 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550930125302206466\\/2yaRJbMD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550930125302206466\\/2yaRJbMD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550926146870689792\\/1658605543\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1446\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1447\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1448\":{\"id\":1302347011413377024,\"id_str\":\"1302347011413377024\",\"name\":\"Israel Osinachi Kelvin\",\"screen_name\":\"osinachi_kelvin\",\"location\":\"Nigeria\",\"description\":\"Minister, Writer, Public Speaker, Son, Christian.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":359,\"friends_count\":327,\"listed_count\":1,\"created_at\":\"Sat Sep 05 20:45:22 +0000 2020\",\"favourites_count\":1107,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1205,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551572083406143488\\/vV4TLwrz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551572083406143488\\/vV4TLwrz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302347011413377024\\/1658758540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1449\":{\"id\":512052306,\"id_str\":\"512052306\",\"name\":\"williams umeh\",\"screen_name\":\"WilliamsUmeh\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a graphic designer (and lead designer at Soft Touch by Will), tech enthusiast and a Hospitality expert.\",\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"expanded_url\":\"http:\\/\\/soft-touch-by-will.business.site\\/\",\"display_url\":\"soft-touch-by-will.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":94,\"listed_count\":1,\"created_at\":\"Fri Mar 02 15:10:38 +0000 2012\",\"favourites_count\":754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":216,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/512052306\\/1649729778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1450\":{\"id\":2941848286,\"id_str\":\"2941848286\",\"name\":\"Hanteywhite \\ud83c\\uddf3\\ud83c\\uddec #YNWA\",\"screen_name\":\"Dat_Oronboy\",\"location\":\"Nigeria\",\"description\":\"An educationist \\/ laughing gas \\ud83d\\ude02\\/ fast learner\\/ die hard Liverpool supporter #ynwa\\u2764 \\/ church boy\\n\\ud83d\\udce8: anteemmanuel5@gmail.com\\n IG:@dat_oronboy Abeg app:oronboy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3549,\"friends_count\":2964,\"listed_count\":0,\"created_at\":\"Fri Dec 26 06:30:27 +0000 2014\",\"favourites_count\":3678,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":16852,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489141834286833665\\/NrKAhcM4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489141834286833665\\/NrKAhcM4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2941848286\\/1603257054\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1451\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1452\":{\"id\":1394274549080891393,\"id_str\":\"1394274549080891393\",\"name\":\"Rega\",\"screen_name\":\"Rega_jpg\",\"location\":\"Uganda, Nigeria\",\"description\":\"Hypocrite hu ji | selective outrage only | no one's ally | biased | Rt's are not endorsement | \\u092e\\u0930\\u093e\\u0920\\u0940 \\ud83d\\udea9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":129,\"listed_count\":0,\"created_at\":\"Mon May 17 12:52:20 +0000 2021\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1394274549080891393\\/1635602283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1453\":{\"id\":1109827616809340928,\"id_str\":\"1109827616809340928\",\"name\":\"THEBLACKHEADBONNETGUY\",\"screen_name\":\"RankingSmoothy\",\"location\":\"Lagos, Nigeria\",\"description\":\"INOFITSHOUTINOWANSHOUT.....\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":632,\"friends_count\":1497,\"listed_count\":4,\"created_at\":\"Sun Mar 24 14:41:38 +0000 2019\",\"favourites_count\":4557,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":601,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551864621430104066\\/l8JOCeMr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551864621430104066\\/l8JOCeMr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1109827616809340928\\/1657879814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1454\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1455\":{\"id\":1268444082621288448,\"id_str\":\"1268444082621288448\",\"name\":\"OBI-dent baby girl\",\"screen_name\":\"ezinnediato\",\"location\":\"Lagos, Nigeria\",\"description\":\"God\\u2019s baby girl \\u270a\\ud83c\\udffd psalms 23:1 A proud OBI-dient girl\",\"url\":\"https:\\/\\/t.co\\/xTaL5mIhFG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xTaL5mIhFG\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCvAv3pkUSBwNN42CeTxqsiA\",\"display_url\":\"youtube.com\\/channel\\/UCvAv3\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":127,\"friends_count\":82,\"listed_count\":0,\"created_at\":\"Thu Jun 04 07:27:03 +0000 2020\",\"favourites_count\":1260,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":995,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550365237794193412\\/PBgb5mkp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550365237794193412\\/PBgb5mkp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268444082621288448\\/1591532283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1456\":{\"id\":1522975092359184385,\"id_str\":\"1522975092359184385\",\"name\":\"\\ud83d\\udd1eSURE WINNING \\u26bd FIXED MATCH PLATFORM \\ud83d\\udcb0\",\"screen_name\":\"sure_odds11\",\"location\":\"Lagos, Nigeria\",\"description\":\"We specialize in sales of fixed match 100% sure matches available at affordable prices message our admin for more info\",\"url\":\"https:\\/\\/t.co\\/yu6BZKw2KU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yu6BZKw2KU\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ZFMEO5UIWEVKH1\",\"display_url\":\"wa.me\\/message\\/ZFMEO5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3758,\"friends_count\":4970,\"listed_count\":0,\"created_at\":\"Sat May 07 16:22:29 +0000 2022\",\"favourites_count\":50207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15220,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535507534227841024\\/fnOmr-2Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535507534227841024\\/fnOmr-2Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522975092359184385\\/1653246758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1457\":{\"id\":1259953433924308994,\"id_str\":\"1259953433924308994\",\"name\":\"Dreamyryder Digital Coach Creator\",\"screen_name\":\"Ryder07575428\",\"location\":\"United States\",\"description\":\"Home of digital life\\nHow a digital \\/ Affiliate marketer, I help promo companies brand and social media. \\nAs a Digital Coach I really appreciate my work.\",\"url\":\"https:\\/\\/t.co\\/HhOS5iyxMH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HhOS5iyxMH\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/kingsley-pius-935a561ab\",\"display_url\":\"linkedin.com\\/in\\/kingsley-pi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":152,\"listed_count\":1,\"created_at\":\"Mon May 11 21:08:16 +0000 2020\",\"favourites_count\":504,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":373,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551820235577106434\\/JFDQrOCJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551820235577106434\\/JFDQrOCJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1259953433924308994\\/1658817749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1458\":{\"id\":2330665138,\"id_str\":\"2330665138\",\"name\":\"chaegame king\",\"screen_name\":\"KingChaegame\",\"location\":\"NIGERIA\",\"description\":\"\\\"If you are living in the past, you don't have a future.\\\" Join me on my enquiry into life. \\n#LFC\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":217,\"friends_count\":1032,\"listed_count\":1,\"created_at\":\"Fri Feb 07 19:28:59 +0000 2014\",\"favourites_count\":15811,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11010,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518768980529455104\\/MTJefD1F_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518768980529455104\\/MTJefD1F_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2330665138\\/1523771862\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1459\":{\"id\":1537548195332513792,\"id_str\":\"1537548195332513792\",\"name\":\"Emmanuel Abuhson\",\"screen_name\":\"emmanuelabuhson\",\"location\":\"Kogi, Nigeria\",\"description\":\"Diffusion of Innovation Strategist, Media Facilitator and Agroprenuer with over a decade work experience in Agribusiness and Business Development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Thu Jun 16 21:30:42 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537548195332513792\\/1655475965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1460\":{\"id\":1285768301159813123,\"id_str\":\"1285768301159813123\",\"name\":\"hodlzilla AKA \\ud83c\\udf36\\ud83c\\udf64\\ud83c\\udf2e\",\"screen_name\":\"Hodlzilla\",\"location\":\"OK\",\"description\":\"\\u2022 AKA @spicyshrimptaco \\u2022 async.artist \\u2022 retail banker gone degenerate \\u2022 President of the @BuffaloBookClub \\u2022 @lostboyNFT #4618 \\u2022 HNS: z8x\",\"url\":\"https:\\/\\/t.co\\/WLRF8MCTAy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WLRF8MCTAy\",\"expanded_url\":\"http:\\/\\/hns.to\\/spicyshrimptaco\",\"display_url\":\"hns.to\\/spicyshrimptaco\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202,\"friends_count\":1389,\"listed_count\":11,\"created_at\":\"Wed Jul 22 02:47:18 +0000 2020\",\"favourites_count\":456,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2017,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554506627591593986\\/biHE0J9H_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554506627591593986\\/biHE0J9H_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1285768301159813123\\/1659891963\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1461\":{\"id\":1346741244534337537,\"id_str\":\"1346741244534337537\",\"name\":\"Boprinhomes\",\"screen_name\":\"boprinhomes\",\"location\":\"Lekki, Nigeria\",\"description\":\"residential properties \\ncommercial properties\\nlands\\nshortlet apartment \\n07038995709\\n\\nboprinhomes@gmail.com\",\"url\":\"https:\\/\\/t.co\\/sqJhonO4WX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sqJhonO4WX\",\"expanded_url\":\"https:\\/\\/boprinhomes.estateagentsng.com\\/\",\"display_url\":\"boprinhomes.estateagentsng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":105,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Jan 06 08:52:11 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":389,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1507475130884276228\\/jqQgg6ZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1507475130884276228\\/jqQgg6ZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346741244534337537\\/1648245485\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1462\":{\"id\":1490616678253801475,\"id_str\":\"1490616678253801475\",\"name\":\"I'm Kwesi\",\"screen_name\":\"Imkwesi_\",\"location\":\"Ghana\",\"description\":\"Enjoy my stressfree contents here\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":562,\"listed_count\":0,\"created_at\":\"Mon Feb 07 09:21:43 +0000 2022\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490616678253801475\\/1656956475\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1463\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1464\":{\"id\":1553552173845315584,\"id_str\":\"1553552173845315584\",\"name\":\"Precious Pelumi\",\"screen_name\":\"pelumi2_pelumi\",\"location\":\"\",\"description\":\"HERE FOR ALL\\ud83e\\udd0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sun Jul 31 01:24:55 +0000 2022\",\"favourites_count\":1057,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553552579828846592\\/fOBoTD-P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553552579828846592\\/fOBoTD-P_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1465\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1466\":{\"id\":145736753,\"id_str\":\"145736753\",\"name\":\"prince mantse-bi\",\"screen_name\":\"mantsebi\",\"location\":\"Accra\",\"description\":\"JesusChrist, LoveWorld, ACMilan, Denzel_W, EvaMendes Zinedine_Zidane, Count of Monte Cristo, Wing-Chun | I follow back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":343,\"friends_count\":1174,\"listed_count\":1,\"created_at\":\"Wed May 19 19:03:09 +0000 2010\",\"favourites_count\":821,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1205857011591725057\\/3ljI-u6t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1205857011591725057\\/3ljI-u6t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/145736753\\/1576333691\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1467\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2909,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1468\":{\"id\":1502314843625435138,\"id_str\":\"1502314843625435138\",\"name\":\"Milliator \\ud83d\\udc69\\u200d\\ud83c\\udf73\\ud83e\\udd5e\\u26bd\\ufe0f\\ud83c\\udfad\",\"screen_name\":\"Milli_ator\",\"location\":\"Lagos, Nigeria\",\"description\":\"EVERYWHERE YOU GO\\ud83d\\udd04\\n~THESPIAN \\ud83c\\udfad\\n~CHEF\\ud83d\\udc69\\u200d\\ud83c\\udf73\\n~KITCHEN EXPERT\\ud83e\\udd5e\\n~FOOTBALL LOVER\\u26bd\\ufe0f\\n~MONEY LOVER\\ud83d\\udcb5\\n\\u2935\\ufe0f\\nDM open for reasonable conversations only \\ud83d\\ude11\",\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"expanded_url\":\"http:\\/\\/www.naijabet.com\\/reg\\/af\\/301064\",\"display_url\":\"naijabet.com\\/reg\\/af\\/301064\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":480,\"friends_count\":654,\"listed_count\":0,\"created_at\":\"Fri Mar 11 16:06:03 +0000 2022\",\"favourites_count\":12000,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7868,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502314843625435138\\/1659354254\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1469\":{\"id\":893321941,\"id_str\":\"893321941\",\"name\":\"\\ud835\\udcd0\\ud835\\udcf1\\ud835\\udcfc\\ud835\\udcea\\ud835\\udcf7 \\ud835\\udcdd\\ud835\\udcea\\ud835\\udcfa\\ud835\\udcff\\ud835\\udcf2\",\"screen_name\":\"ahsaan444\",\"location\":\"\\ud835\\udc7c\\ud835\\udc68\\ud835\\udc6c\",\"description\":\"\\ud835\\udc7b\\ud835\\udc89\\ud835\\udc8a\\ud835\\udc8f\\ud835\\udc88\\ud835\\udc94 \\ud835\\udc98\\ud835\\udc8a\\ud835\\udc8d\\ud835\\udc8d \\ud835\\udc83\\ud835\\udc86 \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93 \\ud835\\udc8a\\ud835\\udc87 \\ud835\\udc96 \\ud835\\udc98\\ud835\\udc82\\ud835\\udc8f\\ud835\\udc95 \\ud835\\udc95\\ud835\\udc90 \\ud835\\udc8e\\ud835\\udc82\\ud835\\udc8c\\ud835\\udc86 \\ud835\\udc95\\ud835\\udc89\\ud835\\udc86\\ud835\\udc8e \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":1581,\"listed_count\":0,\"created_at\":\"Sat Oct 20 14:06:24 +0000 2012\",\"favourites_count\":425,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/893321941\\/1653047288\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1470\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1471\":{\"id\":1496974507394973698,\"id_str\":\"1496974507394973698\",\"name\":\"frayobliss\",\"screen_name\":\"isbliss_5\",\"location\":\"Lagos, Nigeria\",\"description\":\"welcome to my world.\\nibliss the thrillar.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":237,\"listed_count\":1,\"created_at\":\"Thu Feb 24 22:25:25 +0000 2022\",\"favourites_count\":1138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496974507394973698\\/1651762861\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1472\":{\"id\":1383713110867865607,\"id_str\":\"1383713110867865607\",\"name\":\"NC Miki\",\"screen_name\":\"Chukzmiki\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"Co-Founder Gamez Planet and Echoes In Crypto. Astarter Ambassador!\\nCo-Founder the Royal Challenge\",\"url\":\"https:\\/\\/t.co\\/KruJFRFTg7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KruJFRFTg7\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC4dzQJHqd4O5nM5nRC39xHQ\",\"display_url\":\"youtube.com\\/channel\\/UC4dzQ\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":124,\"listed_count\":6,\"created_at\":\"Sun Apr 18 09:25:43 +0000 2021\",\"favourites_count\":1346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538298338461745152\\/FzbItlot_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538298338461745152\\/FzbItlot_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1383713110867865607\\/1659614407\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1473\":{\"id\":1195210427828985856,\"id_str\":\"1195210427828985856\",\"name\":\"Broadcast Ghana Web\",\"screen_name\":\"BroadcastGhana\",\"location\":\"Ghana-Accra\",\"description\":\"BROADCAST GHANA is Ghana\\u2019s fastest-growing news medium that focuses on mirroring General News, Politics, Governance, Sports, Business News, Entertainment, Lifes\",\"url\":\"https:\\/\\/t.co\\/PcdddZLg19\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PcdddZLg19\",\"expanded_url\":\"http:\\/\\/www.broadcastghana.com\",\"display_url\":\"broadcastghana.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Fri Nov 15 05:25:20 +0000 2019\",\"favourites_count\":121,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1195286843518062592\\/mNQP-VNC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1195286843518062592\\/mNQP-VNC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1195210427828985856\\/1573813572\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1474\":{\"id\":1546766387821133824,\"id_str\":\"1546766387821133824\",\"name\":\"OBIdient YouTube Tv\",\"screen_name\":\"ObidientYoutube\",\"location\":\"Abuja, Nigeria\",\"description\":\"YouTube Channel Dedicated to PETER OBI adherents ( #obidients ) and Anti P.O\\u2019s\\u2026.Welcome Nigerians\",\"url\":\"https:\\/\\/t.co\\/D9II4oZzEY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9II4oZzEY\",\"expanded_url\":\"http:\\/\\/myurls.co\\/obidientyoutubetv\",\"display_url\":\"myurls.co\\/obidientyoutub\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":72,\"listed_count\":0,\"created_at\":\"Tue Jul 12 08:00:43 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":132,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546766871462117379\\/PIjek6Ix_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546766871462117379\\/PIjek6Ix_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546766387821133824\\/1657615063\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1475\":{\"id\":1394274549080891393,\"id_str\":\"1394274549080891393\",\"name\":\"Rega\",\"screen_name\":\"Rega_jpg\",\"location\":\"Uganda, Nigeria\",\"description\":\"Hypocrite hu ji | selective outrage only | no one's ally | biased | Rt's are not endorsement | \\u092e\\u0930\\u093e\\u0920\\u0940 \\ud83d\\udea9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":129,\"listed_count\":0,\"created_at\":\"Mon May 17 12:52:20 +0000 2021\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1394274549080891393\\/1635602283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1476\":{\"id\":30563247,\"id_str\":\"30563247\",\"name\":\"Ebirim Anozie\",\"screen_name\":\"AnozieEbirim\",\"location\":\"Nigeria\",\"description\":\"Human. Atheist. Cardiologist. Chess player. Fan of star wars, Lord of the rings, Survivor, Pink Floyd, the poem Howl, and Isaac Asimov's Foundation trilogy.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":294,\"friends_count\":1754,\"listed_count\":5,\"created_at\":\"Sun Apr 12 00:42:33 +0000 2009\",\"favourites_count\":7022,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545464082907766784\\/7_2quJXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545464082907766784\\/7_2quJXs_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1477\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1478\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1479\":{\"id\":1206993464677801984,\"id_str\":\"1206993464677801984\",\"name\":\"SEAN\\u2019s_APPAREL\\u00ae\\ufe0f\",\"screen_name\":\"ChaunceySean1\",\"location\":\"Lagos,Nigeria \",\"description\":\"Your Number 1 ONLINE STREET WEARS\\/JERSEY PLUG\\ud83d\\udd0c .Don\\u2019t Doubt QUALITY\\u203c\\ufe0f#FootballTwitter.PLANET EARTH\\ud83c\\udf0eDELIVERY \\ud83d\\ude9a\",\"url\":\"https:\\/\\/t.co\\/CVPueWIPAe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CVPueWIPAe\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2349018681172\",\"display_url\":\"wa.me\\/+2349018681172\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":1058,\"listed_count\":2,\"created_at\":\"Tue Dec 17 17:44:31 +0000 2019\",\"favourites_count\":6454,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2777,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1413964525876006916\\/zfpE26_7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1413964525876006916\\/zfpE26_7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1206993464677801984\\/1621005306\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1480\":{\"id\":833792125003243522,\"id_str\":\"833792125003243522\",\"name\":\"TheCitizen\",\"screen_name\":\"Alex_Obe10\",\"location\":\"Lagos\",\"description\":\"|Public Affairs Analyst|SDG Advocate|PDP| Arsenal #startups #DataAnalyst #ANSO Scholar \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\uddf3\",\"url\":\"https:\\/\\/t.co\\/4XlqbRVJam\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4XlqbRVJam\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/alex-obeten-555b61184\",\"display_url\":\"linkedin.com\\/in\\/alex-obeten\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2533,\"friends_count\":3340,\"listed_count\":3,\"created_at\":\"Mon Feb 20 21:35:08 +0000 2017\",\"favourites_count\":41495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322583536113778690\\/Igj9F_p3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322583536113778690\\/Igj9F_p3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833792125003243522\\/1658920638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1481\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1482\":{\"id\":1274200177348313094,\"id_str\":\"1274200177348313094\",\"name\":\"Arinze Okoye\",\"screen_name\":\"rinxe_\",\"location\":\"Abuja, Nigeria\",\"description\":\"Just a salesperson. Bring that item, let me help you sell it. #obedient\",\"url\":\"https:\\/\\/t.co\\/81Z10ARFGV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/81Z10ARFGV\",\"expanded_url\":\"https:\\/\\/chupez.com\",\"display_url\":\"chupez.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2675,\"friends_count\":2972,\"listed_count\":0,\"created_at\":\"Sat Jun 20 04:39:52 +0000 2020\",\"favourites_count\":20019,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3269,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543571416012017665\\/PN8EdDPp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543571416012017665\\/PN8EdDPp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1274200177348313094\\/1657128960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1483\":{\"id\":1539665465651478531,\"id_str\":\"1539665465651478531\",\"name\":\"Spiff\",\"screen_name\":\"Atomic379\",\"location\":\"Lagos, Nigeria\",\"description\":\"GOD NEVER FAILS \\u271d\\ufe0f\\n:Lit G \\ud83e\\udd18\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":210,\"listed_count\":0,\"created_at\":\"Wed Jun 22 17:44:00 +0000 2022\",\"favourites_count\":437,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":134,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541041584837369856\\/XnxGngm0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541041584837369856\\/XnxGngm0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539665465651478531\\/1656264925\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1484\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1485\":{\"id\":1554262437997707264,\"id_str\":\"1554262437997707264\",\"name\":\"Kingsley Wealth\",\"screen_name\":\"ezekingwealth\",\"location\":\"Lagos, Nigeria\",\"description\":\"There's nothing more precious in life than FREEDOM.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Tue Aug 02 00:27:30 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554264940466380800\\/oeyiizbI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554264940466380800\\/oeyiizbI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1486\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1487\":{\"id\":1431593977304788998,\"id_str\":\"1431593977304788998\",\"name\":\"Badman Stoney\",\"screen_name\":\"Badman__Stoney\",\"location\":\"Nigeria\",\"description\":\"\\ud83e\\udd85 INNATE TALENT \\u2764\\ufe0f\\u200d\\ud83d\\udd25\\ud83e\\uddde\\u200d\\u2642\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/VOye1vhtxZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VOye1vhtxZ\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/badman_stoney\",\"display_url\":\"instagram.com\\/badman_stoney\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sat Aug 28 12:26:31 +0000 2021\",\"favourites_count\":652,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":647,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539950559511330817\\/_iCWPpNi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539950559511330817\\/_iCWPpNi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1431593977304788998\\/1645922408\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1488\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1489\":{\"id\":225553221,\"id_str\":\"225553221\",\"name\":\"Zubaida Afua Mabuno Ismail\",\"screen_name\":\"Dereal_ZAMI\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Climate\\/Gender Journo Mandela Washing Fellow @SyracuseUniversity | \\ud83c\\uddec\\ud83c\\udded Correspondent @Rsf_en| worked @rfi, @fourthestategh, @tv3_ghana| #PandoraPapers\",\"url\":\"https:\\/\\/t.co\\/9pV78IKtMr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9pV78IKtMr\",\"expanded_url\":\"https:\\/\\/chinadialogue.net\\/en\\/nature\\/kenyas-ogiek-community-promote-a-new-vision-for-conservation-in-\",\"display_url\":\"chinadialogue.net\\/en\\/nature\\/keny\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2340,\"friends_count\":1945,\"listed_count\":22,\"created_at\":\"Sat Dec 11 21:36:29 +0000 2010\",\"favourites_count\":8402,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":10127,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553544504329867265\\/b30hBPT0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553544504329867265\\/b30hBPT0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/225553221\\/1643055983\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1490\":{\"id\":938107544165380097,\"id_str\":\"938107544165380097\",\"name\":\"Twene Jonas TV\",\"screen_name\":\"TweneJonasTV\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Communications Specialist, Brand Enthusiased, Child & Person's With Disabilities Right Advocate, Master of Ceremonies. I Pray To God. Retweets not endorsement.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3448,\"friends_count\":449,\"listed_count\":2,\"created_at\":\"Tue Dec 05 18:07:22 +0000 2017\",\"favourites_count\":15605,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10724,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534316158123393025\\/bcYRZpbw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534316158123393025\\/bcYRZpbw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/938107544165380097\\/1539113363\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1491\":{\"id\":1487783608651821057,\"id_str\":\"1487783608651821057\",\"name\":\"olamzy_richie\",\"screen_name\":\"nonstopdancer55\",\"location\":\"surulere\",\"description\":\"FM ACCT DISABLED 15k followers \\ud83c\\udf0d\\u2728\\nDancer-Comedian-Prankstar \\ud83d\\udd7a \\nSIR pinky \\ud83e\\udd70\\u2665\\nLet move 1k followers \\u2728\\u2665\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/n8vJeUfIZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n8vJeUfIZq\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCYFUficdOCFcHee47zu4cIg\",\"display_url\":\"youtube.com\\/channel\\/UCYFUf\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":71,\"listed_count\":0,\"created_at\":\"Sun Jan 30 13:44:47 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554495526556631043\\/m4Q3b49y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554495526556631043\\/m4Q3b49y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487783608651821057\\/1659455588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1492\":{\"id\":1174025214595862528,\"id_str\":\"1174025214595862528\",\"name\":\"Lucky Trip\",\"screen_name\":\"LuckyTripGh\",\"location\":\"\",\"description\":\"Lucky Trip is a TV show where celebrities surprise their fans with a ride. Produced by @sacrefilms \\nhttps:\\/\\/t.co\\/BNQlZLzc2O\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BNQlZLzc2O\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC3n-8Lrno-B0wGIXPu-p4yA\",\"display_url\":\"youtube.com\\/channel\\/UC3n-8\\u2026\",\"indices\":[100,123]}]}},\"protected\":false,\"followers_count\":390,\"friends_count\":1196,\"listed_count\":0,\"created_at\":\"Tue Sep 17 18:20:46 +0000 2019\",\"favourites_count\":76,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":681,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553270742728556544\\/t9haPDAQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553270742728556544\\/t9haPDAQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1174025214595862528\\/1656930569\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1493\":{\"id\":1259605817613058049,\"id_str\":\"1259605817613058049\",\"name\":\"Dr Yusuf Datti Ahmed-PhD\",\"screen_name\":\"Dav_nation777\",\"location\":\"Nigeria\",\"description\":\"Labour party Vice president Candidate \\u270d\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":244,\"listed_count\":0,\"created_at\":\"Sun May 10 22:06:57 +0000 2020\",\"favourites_count\":27260,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":412,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1259609058153246723\\/4Fw8zdOt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1259609058153246723\\/4Fw8zdOt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1259605817613058049\\/1589153623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1494\":{\"id\":1554488869902585857,\"id_str\":\"1554488869902585857\",\"name\":\"Proscrow\",\"screen_name\":\"realproscrow\",\"location\":\"Nigeria\",\"description\":\"Proscrow is a company with aim of facilitating Real Estate sales, purchase and rental.\",\"url\":\"https:\\/\\/t.co\\/VgMuoiV2Qv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VgMuoiV2Qv\",\"expanded_url\":\"http:\\/\\/proscrow.co\",\"display_url\":\"proscrow.co\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Aug 02 15:27:06 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554490284955811842\\/c5UlxuXH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554490284955811842\\/c5UlxuXH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554488869902585857\\/1659454341\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1495\":{\"id\":1516387378021244937,\"id_str\":\"1516387378021244937\",\"name\":\"Cucumber TV\",\"screen_name\":\"CucumberTV1\",\"location\":\"Lagos, Nigeria\",\"description\":\"A content creator, Mc, Comedian & skit maker\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":62,\"listed_count\":0,\"created_at\":\"Tue Apr 19 12:05:23 +0000 2022\",\"favourites_count\":367,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":150,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516387832541106182\\/9-0Sc-m4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516387832541106182\\/9-0Sc-m4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1496\":{\"id\":1396589545643298818,\"id_str\":\"1396589545643298818\",\"name\":\"Maryama \\u2764\\ufe0f\\u2764\\ufe0f\",\"screen_name\":\"Sweet_Maryama\",\"location\":\"Accra, Ghana\",\"description\":\"Make the right decisions.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":258,\"friends_count\":206,\"listed_count\":1,\"created_at\":\"Sun May 23 22:11:37 +0000 2021\",\"favourites_count\":1013,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1669,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396589545643298818\\/1655375331\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1497\":{\"id\":2267049964,\"id_str\":\"2267049964\",\"name\":\"Ardo Fulbe\\ud83d\\udc51\",\"screen_name\":\"usmandamani\",\"location\":\"Minna\",\"description\":\"Pullo Gainaako (Heardsman) \\nProudly Fulani\\ud83d\\udc04\\nMicrobiologist \\ud83d\\udd2c\\nUDUS Alumni \\ud83c\\udf93\\nMan United \\u26bd\\nFootball+Tennis \\ud83c\\udfd3\\n4th June \\ud83c\\udf82\\nVegetarian\\ud83c\\udf3f\\nTea\\u2615\\nAlways think death!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1305,\"friends_count\":1220,\"listed_count\":3,\"created_at\":\"Tue Jan 07 14:52:20 +0000 2014\",\"favourites_count\":75405,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487348377444573187\\/QrUeAZ51_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487348377444573187\\/QrUeAZ51_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2267049964\\/1571669100\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1498\":{\"id\":316324757,\"id_str\":\"316324757\",\"name\":\"Sue Searson\",\"screen_name\":\"SSearson\",\"location\":\"Jersey C.I.\",\"description\":\"Future purple wearer, fizz drinking leftie, likes TV, books and travel. Proud Merseysider & current Rock Dweller.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":295,\"friends_count\":614,\"listed_count\":15,\"created_at\":\"Mon Jun 13 08:33:58 +0000 2011\",\"favourites_count\":24296,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12728,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1422859170634739713\\/fQhzn4yp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1422859170634739713\\/fQhzn4yp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/316324757\\/1460394345\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1499\":{\"id\":1499078894409949189,\"id_str\":\"1499078894409949189\",\"name\":\"Say No \\u274c To RACISM\\/WAR\",\"screen_name\":\"SayNoToRACISMW1\",\"location\":\"Nigeria\",\"description\":\"RACISM is a public health crisis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Mar 02 17:48:47 +0000 2022\",\"favourites_count\":258,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":328,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499078894409949189\\/1646244040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1500\":{\"id\":1387101620555685888,\"id_str\":\"1387101620555685888\",\"name\":\"Grizzly Dan\",\"screen_name\":\"dan_nyeche\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Stop surviving and start Living. \\u26a0\\ufe0f\\ud83d\\uded0 Always DYOR. NFA | #Btc | #Tether |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":7,\"created_at\":\"Tue Apr 27 17:50:24 +0000 2021\",\"favourites_count\":1866,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387101620555685888\\/1658484935\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1501\":{\"id\":1534904566520725505,\"id_str\":\"1534904566520725505\",\"name\":\"JUJU\",\"screen_name\":\"_usejuju\",\"location\":\"Lagos, Nigeria\",\"description\":\"Never Visit Your Bank Branch Again. \\n\\nFirst-rate Financial Solutions Provider for Small Businesses.\",\"url\":\"https:\\/\\/t.co\\/Jrxkr9ajd8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jrxkr9ajd8\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/usejuju\",\"display_url\":\"linktr.ee\\/usejuju\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Thu Jun 09 14:25:53 +0000 2022\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":32,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542070778497212416\\/LkrPgy6Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542070778497212416\\/LkrPgy6Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534904566520725505\\/1656518369\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1502\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1503\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2070,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1504\":{\"id\":2456657931,\"id_str\":\"2456657931\",\"name\":\"Ogunlade Abiola Aremu\",\"screen_name\":\"OgunladeAbiola1\",\"location\":\"Nigeria\",\"description\":\"Promoting creativity to the maximum | Critic of bad governance | Blogger | Unapologetically, a Christian | Lover of sports| #ObidientlYusful\",\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCUBL1qgBRBpQROJrliXuwLA\",\"display_url\":\"youtube.com\\/channel\\/UCUBL1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1257,\"friends_count\":146,\"listed_count\":3,\"created_at\":\"Thu Apr 03 06:35:21 +0000 2014\",\"favourites_count\":1885,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3452,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2456657931\\/1646759743\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1505\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1506\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1507\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2070,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1508\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1509\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1510\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2070,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1511\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1512\":{\"id\":192895128,\"id_str\":\"192895128\",\"name\":\"Gabriel Ntoka\",\"screen_name\":\"Gabntoka\",\"location\":\"Lagos, Nigeria\",\"description\":\"Political Scientist | Journalist | Communications\\/PR Professional| Content Development Specialist | @Manutd fan | Lover of all things good.\",\"url\":\"https:\\/\\/t.co\\/fXsR1llGzQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fXsR1llGzQ\",\"expanded_url\":\"http:\\/\\/www.gntoka.wordpress.com\",\"display_url\":\"gntoka.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":361,\"friends_count\":498,\"listed_count\":10,\"created_at\":\"Mon Sep 20 13:08:02 +0000 2010\",\"favourites_count\":1112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":40084,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/779739764094369792\\/e4SzLcbe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/779739764094369792\\/e4SzLcbe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/192895128\\/1474739417\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1513\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2070,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1514\":{\"id\":1553470684059271169,\"id_str\":\"1553470684059271169\",\"name\":\"Stephanie\",\"screen_name\":\"StephanieAOT\",\"location\":\"Abuja, Nigeria\",\"description\":\"A girl\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Sat Jul 30 20:01:15 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553486528403365888\\/2q7vnzSC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553486528403365888\\/2q7vnzSC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553470684059271169\\/1659214936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1515\":{\"id\":48009546,\"id_str\":\"48009546\",\"name\":\"Lecturer\\u2122\\u00a9\",\"screen_name\":\"emoruwa\",\"location\":\"lagos,Nigeria\",\"description\":\"An IATA certified travel consultant, a minister of God and someone who loves to live\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1381,\"friends_count\":2005,\"listed_count\":2,\"created_at\":\"Wed Jun 17 16:07:38 +0000 2009\",\"favourites_count\":2111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535184198755041281\\/i6L0LK6Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535184198755041281\\/i6L0LK6Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48009546\\/1552492933\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1516\":{\"id\":1396142465900367874,\"id_str\":\"1396142465900367874\",\"name\":\"Angel Network News\",\"screen_name\":\"angelnetnews\",\"location\":\"Awka, Nigeria\",\"description\":\"Journalism is the Freedom of the People |\\nDownload ANN App today\\ud83d\\udcf1 https:\\/\\/t.co\\/h4aVNCCbFk\",\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"expanded_url\":\"http:\\/\\/www.angelnetworknews.com\",\"display_url\":\"angelnetworknews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h4aVNCCbFk\",\"expanded_url\":\"https:\\/\\/angelnetworknews.com\\/mobile-apps\\/\",\"display_url\":\"angelnetworknews.com\\/mobile-apps\\/\",\"indices\":[66,89]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":83,\"listed_count\":0,\"created_at\":\"Sat May 22 16:34:50 +0000 2021\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396142465900367874\\/1657392226\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1517\":{\"id\":1064869621206065152,\"id_str\":\"1064869621206065152\",\"name\":\"Digi-Man\",\"screen_name\":\"edigitmarketng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's #1 #Digital_Marketing company\\n\\nWe offer #digitalmarketing, Nigerians Email & #GSM #Databases, #web #designing, #graphics, #Logo, #SEO, #Branding\",\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"expanded_url\":\"https:\\/\\/digitalmarket.com.ng\",\"display_url\":\"digitalmarket.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Tue Nov 20 13:14:36 +0000 2018\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1064869621206065152\\/1642910003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1518\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2070,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1519\":{\"id\":1064869621206065152,\"id_str\":\"1064869621206065152\",\"name\":\"Digi-Man\",\"screen_name\":\"edigitmarketng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's #1 #Digital_Marketing company\\n\\nWe offer #digitalmarketing, Nigerians Email & #GSM #Databases, #web #designing, #graphics, #Logo, #SEO, #Branding\",\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"expanded_url\":\"https:\\/\\/digitalmarket.com.ng\",\"display_url\":\"digitalmarket.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Tue Nov 20 13:14:36 +0000 2018\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1064869621206065152\\/1642910003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1520\":{\"id\":786984526278979584,\"id_str\":\"786984526278979584\",\"name\":\"Freeworldmaster \\ud83c\\udf1d\",\"screen_name\":\"freeworldmaster\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Social media influencer\\ud83c\\udf1d \\n\\nLiverpool fc \\ud83c\\udf1d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3038,\"friends_count\":3291,\"listed_count\":0,\"created_at\":\"Fri Oct 14 17:38:27 +0000 2016\",\"favourites_count\":36037,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12799,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541497682040168448\\/JCLj3i2I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541497682040168448\\/JCLj3i2I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786984526278979584\\/1602994115\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1521\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1522\":{\"id\":1484150022614695938,\"id_str\":\"1484150022614695938\",\"name\":\"Superfmph\",\"screen_name\":\"superfm933\",\"location\":\"Port Harcourt, Rivers State.\",\"description\":\"Super FM is a family and urban talk sustain station located in Rivers state to transmit commercially viable, relevant and strategic programs\\/shows that inform,\",\"url\":\"https:\\/\\/t.co\\/3s3kcnef0w\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3s3kcnef0w\",\"expanded_url\":\"http:\\/\\/superfm.online\\/ph\",\"display_url\":\"superfm.online\\/ph\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":550,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Thu Jan 20 13:07:59 +0000 2022\",\"favourites_count\":766,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1089,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551832328787435521\\/X5zXtxh3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551832328787435521\\/X5zXtxh3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484150022614695938\\/1658820635\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1523\":{\"id\":1164632120784039936,\"id_str\":\"1164632120784039936\",\"name\":\"Just Event Online Publication\",\"screen_name\":\"justeventsonlin\",\"location\":\"Nigeria\",\"description\":\"news, media publication, and events publication, former account @justeventonline\",\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"expanded_url\":\"http:\\/\\/justeventonline.com\",\"display_url\":\"justeventonline.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1215,\"friends_count\":68,\"listed_count\":1,\"created_at\":\"Thu Aug 22 20:15:36 +0000 2019\",\"favourites_count\":36,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1164632120784039936\\/1612162614\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1524\":{\"id\":2629907452,\"id_str\":\"2629907452\",\"name\":\"Obi Bamidele Samuel\",\"screen_name\":\"Samdel_bams80\",\"location\":\"Lagos, Nigeria\",\"description\":\"show promoter, CEO of SAMDEL entertainment and promotions, Head of marketing and promotion Supernova creations\",\"url\":\"https:\\/\\/t.co\\/aS3nO4PMhh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aS3nO4PMhh\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/samdel.obi\",\"display_url\":\"facebook.com\\/samdel.obi\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2058,\"friends_count\":2403,\"listed_count\":4,\"created_at\":\"Sun Jun 22 00:13:16 +0000 2014\",\"favourites_count\":6856,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6025,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539979401626112001\\/JGx4yc4f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539979401626112001\\/JGx4yc4f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2629907452\\/1443795019\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1525\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1526\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1527\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1528\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1529\":{\"id\":1237133081452187648,\"id_str\":\"1237133081452187648\",\"name\":\"Temitope Ajila\\ud83c\\udf3b\",\"screen_name\":\"Temitope_7\",\"location\":\"Akure, Nigeria \",\"description\":\"Tech| Web Design| NFT | e-mail: nelsontemitope5@gmail.com, LinkedIn https:\\/\\/t.co\\/3RJPCQ27Gh\",\"url\":\"https:\\/\\/t.co\\/VLmfQ6uvkU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VLmfQ6uvkU\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/untitled-collection-270350931\",\"display_url\":\"opensea.io\\/collection\\/unt\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3RJPCQ27Gh\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/temitope-ajila-2880a2191\",\"display_url\":\"linkedin.com\\/in\\/temitope-aj\\u2026\",\"indices\":[68,91]}]}},\"protected\":false,\"followers_count\":469,\"friends_count\":79,\"listed_count\":5,\"created_at\":\"Mon Mar 09 21:48:28 +0000 2020\",\"favourites_count\":49380,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7061,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555979677507919872\\/cTdYX0q__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555979677507919872\\/cTdYX0q__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1237133081452187648\\/1649037399\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1530\":{\"id\":1198015707277152258,\"id_str\":\"1198015707277152258\",\"name\":\"Patson Luxury Homes!!!\",\"screen_name\":\"MrJayPappy1\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Port Harcourt Realtor, Business Dev, Interior Deco.. Chelsea FC fan ... Good music stan. trying to grow my 4th account so FB too, 3 suspended\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2293,\"friends_count\":2390,\"listed_count\":1,\"created_at\":\"Fri Nov 22 23:10:17 +0000 2019\",\"favourites_count\":4754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4536,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1198015707277152258\\/1655451393\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1531\":{\"id\":773160289,\"id_str\":\"773160289\",\"name\":\"Reconcept\",\"screen_name\":\"reconceptl\",\"location\":\"Enugu, Nigeria\",\"description\":\"Author and blog writer|| Mindset coach Taking you on a journey of creating your desired life and becoming a part of the society.\",\"url\":\"https:\\/\\/t.co\\/bKNLeTJMM4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bKNLeTJMM4\",\"expanded_url\":\"http:\\/\\/medium.com\\/@reconcept\",\"display_url\":\"medium.com\\/@reconcept\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Wed Aug 22 08:14:03 +0000 2012\",\"favourites_count\":289,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":275,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543703329087393793\\/r83C50Y-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543703329087393793\\/r83C50Y-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/773160289\\/1656882541\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1532\":{\"id\":187204088,\"id_str\":\"187204088\",\"name\":\"Jedi Skywalker\",\"screen_name\":\"irosky007\",\"location\":\"ABUJA\",\"description\":\"Political Analyst, Promoter of truth and justice. (Tell it as it is).\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1646,\"friends_count\":602,\"listed_count\":13,\"created_at\":\"Sun Sep 05 15:28:00 +0000 2010\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":37514,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1325779580653858816\\/T4e8o1qs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1325779580653858816\\/T4e8o1qs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/187204088\\/1563857471\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1533\":{\"id\":1672512198,\"id_str\":\"1672512198\",\"name\":\"Elvis Suave\",\"screen_name\":\"Elvis_Suave\",\"location\":\"Lagos, Nigeria\",\"description\":\"brand marketing black belt holder @reventtech\\nI enjoy learning new things. football @chelseafc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":647,\"listed_count\":0,\"created_at\":\"Thu Aug 15 07:41:13 +0000 2013\",\"favourites_count\":1216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1241,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528814743003320320\\/GIOWoUJk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528814743003320320\\/GIOWoUJk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1672512198\\/1615557353\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1534\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1535\":{\"id\":1509580726500478978,\"id_str\":\"1509580726500478978\",\"name\":\"#ObiDatti023\\u270c\\ufe0f\",\"screen_name\":\"lucky_kierian\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Sapiosexual \\ud83d\\udda4\\ud83d\\udda4 | Volunteer \\ud83d\\ude0c\\ud83d\\udc99| Medic \\ud83d\\udc89\\ud83d\\udca6| Political enthusiast \\u270c\\ufe0f| Anim\\u00e9 \\ud83d\\ude05\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":910,\"friends_count\":1261,\"listed_count\":0,\"created_at\":\"Thu Mar 31 17:18:16 +0000 2022\",\"favourites_count\":2415,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":355,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509580852455432197\\/FxNASGg8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509580852455432197\\/FxNASGg8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509580726500478978\\/1657371503\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1536\":{\"id\":1496974507394973698,\"id_str\":\"1496974507394973698\",\"name\":\"frayobliss\",\"screen_name\":\"isbliss_5\",\"location\":\"Lagos, Nigeria\",\"description\":\"welcome to my world.\\nibliss the thrillar.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":237,\"listed_count\":1,\"created_at\":\"Thu Feb 24 22:25:25 +0000 2022\",\"favourites_count\":1138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496974507394973698\\/1651762861\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1537\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1538\":{\"id\":725722205758218240,\"id_str\":\"725722205758218240\",\"name\":\"Israel Inioluwa Espirit\",\"screen_name\":\"IsraelEspirit\",\"location\":\"Ibadan, Nigeria\",\"description\":\"A passionate Poet | Lover of God.\\n\\nYouTube \\n https:\\/\\/t.co\\/Wg9Zk67duZ\",\"url\":\"https:\\/\\/t.co\\/h7e4H8Biii\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h7e4H8Biii\",\"expanded_url\":\"http:\\/\\/www.digitalsknowhow.blogspot.com\",\"display_url\":\"digitalsknowhow.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Wg9Zk67duZ\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/channel\\/UCzm9mvvLqhg1-mK8yakZkhw\",\"display_url\":\"youtube.com\\/channel\\/UCzm9m\\u2026\",\"indices\":[45,68]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":136,\"listed_count\":0,\"created_at\":\"Thu Apr 28 16:23:51 +0000 2016\",\"favourites_count\":110,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528639474955059200\\/npLzx7PR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528639474955059200\\/npLzx7PR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/725722205758218240\\/1658504476\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1539\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1540\":{\"id\":449260561,\"id_str\":\"449260561\",\"name\":\"NanaKay\\u2764\\ufe0f\\ud83c\\uddec\\ud83c\\udded\",\"screen_name\":\"NKM_Global\",\"location\":\"Ghana\",\"description\":\"Cool x stubborn like that...\\ud83e\\udd17. Loyalty\",\"url\":\"https:\\/\\/t.co\\/HO9aVYAnZE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HO9aVYAnZE\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/nanakwabenamensah\\/\",\"display_url\":\"instagram.com\\/nanakwabenamen\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":186,\"friends_count\":100,\"listed_count\":3,\"created_at\":\"Wed Dec 28 22:52:23 +0000 2011\",\"favourites_count\":1772,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2149,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552313095367888896\\/HhB2IPJY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552313095367888896\\/HhB2IPJY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/449260561\\/1644053659\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1541\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1542\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1543\":{\"id\":1019789413369475074,\"id_str\":\"1019789413369475074\",\"name\":\"Aliu Rukayat Olaide\",\"screen_name\":\"OlaideMarketing\",\"location\":\"Nigeria\",\"description\":\"An Online Entrepreneur | Sales and Marketing | Learn how to take advantage of online opportunities For Free: https:\\/\\/t.co\\/WCkHGsYySp |Chelsea FC\\ud83d\\udc8e\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WCkHGsYySp\",\"expanded_url\":\"https:\\/\\/wa.link\\/9nh0tv\",\"display_url\":\"wa.link\\/9nh0tv\",\"indices\":[109,132]}]}},\"protected\":false,\"followers_count\":200,\"friends_count\":864,\"listed_count\":2,\"created_at\":\"Thu Jul 19 03:41:57 +0000 2018\",\"favourites_count\":3172,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515746993544511489\\/h75BHPEn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515746993544511489\\/h75BHPEn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1019789413369475074\\/1659775795\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1544\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1545\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1546\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2909,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1547\":{\"id\":1467784595294896134,\"id_str\":\"1467784595294896134\",\"name\":\"adewole olusegun ifeanyichukwu samson\",\"screen_name\":\"shegx007\",\"location\":\"Lagos, Nigeria\",\"description\":\"Footballer player (free agent)\\u26bd\\ufe0f\\ud83c\\uddf3\\ud83c\\uddec The football field is the place I feel most alive. \\ud83d\\ude0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":163,\"friends_count\":271,\"listed_count\":0,\"created_at\":\"Mon Dec 06 09:15:19 +0000 2021\",\"favourites_count\":4171,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4466,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555334404708487169\\/GzmTIJp2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555334404708487169\\/GzmTIJp2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1467784595294896134\\/1645528149\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1548\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1549\":{\"id\":1485727139051843594,\"id_str\":\"1485727139051843594\",\"name\":\"Lalipop\",\"screen_name\":\"iam_lalipop\",\"location\":\"Accra, Ghana\",\"description\":\"Pan-Africanist|| Barca fan|| Free Thinker|||tweets are my opinions || retweets are not endorsement \\u274c\\n\\nApart from my ancestors, I don't belief in any other god!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":958,\"listed_count\":3,\"created_at\":\"Mon Jan 24 21:32:33 +0000 2022\",\"favourites_count\":2572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485727139051843594\\/1650988944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1550\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1551\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1552\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1553\":{\"id\":873525708689158144,\"id_str\":\"873525708689158144\",\"name\":\"Ogunleke Victor\",\"screen_name\":\"Tobilobaddon\",\"location\":\" Nigeria\",\"description\":\"Web Developer, Tour Operator\\nDM is open for business\",\"url\":\"https:\\/\\/t.co\\/uO3nosrxnA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uO3nosrxnA\",\"expanded_url\":\"https:\\/\\/elitedigitalservices.org\",\"display_url\":\"elitedigitalservices.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Sat Jun 10 13:02:13 +0000 2017\",\"favourites_count\":181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":383,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1429874174701576197\\/Irnpr34M_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1429874174701576197\\/Irnpr34M_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/873525708689158144\\/1578433026\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1554\":{\"id\":965369032277884928,\"id_str\":\"965369032277884928\",\"name\":\"Onyishi Francis\",\"screen_name\":\"FrancisOnyishi\",\"location\":\"Abuja\",\"description\":\"Enthusiastic\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":91,\"listed_count\":1,\"created_at\":\"Sun Feb 18 23:34:47 +0000 2018\",\"favourites_count\":1551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965369032277884928\\/1650277677\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1555\":{\"id\":993223833040584705,\"id_str\":\"993223833040584705\",\"name\":\"Kwame Stalwart\\ud83d\\udcab\",\"screen_name\":\"kwame_stalwart\",\"location\":\"Accra, Ghana\",\"description\":\"Quarmyne Shadrack\\u270a#God\\ud83d\\udd30#cryptocurrency\\ud83d\\udd30#altcoins #blockchain\\ud83d\\udd30Chamber of Agribusiness Ghana \\ud83d\\udd30#KNUST\\ud83d\\udd30..#agribusiness \\ud83d\\udd30 #bitcoin\\ud83d\\udd30 @FaithOOFathers\\ud83d\\udd30#POJOBA\",\"url\":\"https:\\/\\/t.co\\/NUoxtMe5Gc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NUoxtMe5Gc\",\"expanded_url\":\"https:\\/\\/inclabfoundation.org\\/dissecting-blockchain-technology-and-crypto-currency\\/\",\"display_url\":\"inclabfoundation.org\\/dissecting-blo\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7573,\"friends_count\":6944,\"listed_count\":5,\"created_at\":\"Sun May 06 20:19:49 +0000 2018\",\"favourites_count\":57229,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24876,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1456539724303245324\\/vHqCnvW5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1456539724303245324\\/vHqCnvW5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/993223833040584705\\/1616235977\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1556\":{\"id\":1324896966170570754,\"id_str\":\"1324896966170570754\",\"name\":\"delywest_\",\"screen_name\":\"delywest_\",\"location\":\"Lagos, Nigeria\",\"description\":\"music lover and upcoming artiste\",\"url\":\"https:\\/\\/t.co\\/AW5HKXOHb3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AW5HKXOHb3\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/udeogalanyaebuka\",\"display_url\":\"audiomack.com\\/udeogalanyaebu\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Sat Nov 07 02:10:42 +0000 2020\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":427,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523766197896028161\\/rpAcIbVE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523766197896028161\\/rpAcIbVE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1324896966170570754\\/1652129160\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1557\":{\"id\":875307882887229440,\"id_str\":\"875307882887229440\",\"name\":\"Rubies Technologies\",\"screen_name\":\"rubiestech\",\"location\":\"Lagos, Nigeria\",\"description\":\"Rubies Technologies is a social enterprise that empowers and inspire kids and teenagers to fall in love with programming and innovation.\",\"url\":\"https:\\/\\/t.co\\/olo8Vnt58d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/olo8Vnt58d\",\"expanded_url\":\"https:\\/\\/rubiestechnologies.org\\/\",\"display_url\":\"rubiestechnologies.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":289,\"friends_count\":54,\"listed_count\":0,\"created_at\":\"Thu Jun 15 11:03:56 +0000 2017\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":668,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1278098274256289793\\/Lh8Gxrvj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1278098274256289793\\/Lh8Gxrvj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/875307882887229440\\/1536021127\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1558\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1559\":{\"id\":749063444,\"id_str\":\"749063444\",\"name\":\"Chidinma.C\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"eagle103_voice\",\"location\":\"Nigeria\",\"description\":\"The quietest people tend to have the loudest minds. :) God's favourite\\ud83d\\ude00 a minstrel\\ud83c\\udfbb Aspiring Digital marketer and a Chef\",\"url\":\"https:\\/\\/t.co\\/TNVyjSLPuy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TNVyjSLPuy\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/chidinma_eagle_voice\",\"display_url\":\"linktr.ee\\/chidinma_eagle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":252,\"friends_count\":247,\"listed_count\":1,\"created_at\":\"Fri Aug 10 09:59:51 +0000 2012\",\"favourites_count\":810,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":783,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541472891425914882\\/XEa1gCWU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541472891425914882\\/XEa1gCWU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/749063444\\/1586353158\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1560\":{\"id\":2352078711,\"id_str\":\"2352078711\",\"name\":\"Yo Mark That\\ud83c\\udf9f\",\"screen_name\":\"Rexx_Dandy\",\"location\":\"Kano, Nigeria\",\"description\":\"#SidiBastard \\ud83c\\udf0e\\ud83c\\uddf3\\ud83c\\uddec\\nRapper-Singer-Stylist & More \\nRAP & DANCEHALL FREAK\\ud83d\\udc7b\\n #No_Holidays\",\"url\":\"https:\\/\\/t.co\\/VLDKM30Gzb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VLDKM30Gzb\",\"expanded_url\":\"https:\\/\\/www.reverbnation.com\\/rexxdandy\\/song\\/31705105-rexx-dandy-again\",\"display_url\":\"reverbnation.com\\/rexxdandy\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":461,\"friends_count\":1481,\"listed_count\":1,\"created_at\":\"Wed Feb 19 07:31:08 +0000 2014\",\"favourites_count\":389,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372661315555168258\\/cXZTH61y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372661315555168258\\/cXZTH61y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2352078711\\/1608277504\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1561\":{\"id\":993223833040584705,\"id_str\":\"993223833040584705\",\"name\":\"Kwame Stalwart\\ud83d\\udcab\",\"screen_name\":\"kwame_stalwart\",\"location\":\"Accra, Ghana\",\"description\":\"Quarmyne Shadrack\\u270a#God\\ud83d\\udd30#cryptocurrency\\ud83d\\udd30#altcoins #blockchain\\ud83d\\udd30Chamber of Agribusiness Ghana \\ud83d\\udd30#KNUST\\ud83d\\udd30..#agribusiness \\ud83d\\udd30 #bitcoin\\ud83d\\udd30 @FaithOOFathers\\ud83d\\udd30#POJOBA\",\"url\":\"https:\\/\\/t.co\\/NUoxtMe5Gc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NUoxtMe5Gc\",\"expanded_url\":\"https:\\/\\/inclabfoundation.org\\/dissecting-blockchain-technology-and-crypto-currency\\/\",\"display_url\":\"inclabfoundation.org\\/dissecting-blo\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7573,\"friends_count\":6944,\"listed_count\":5,\"created_at\":\"Sun May 06 20:19:49 +0000 2018\",\"favourites_count\":57229,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24876,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1456539724303245324\\/vHqCnvW5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1456539724303245324\\/vHqCnvW5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/993223833040584705\\/1616235977\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1562\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1563\":{\"id\":1334973464478937088,\"id_str\":\"1334973464478937088\",\"name\":\". \\ud835\\udcd5.\",\"screen_name\":\"qf00_\",\"location\":\"UAE\",\"description\":\"\\ud835\\ude44\\ud835\\ude59\\ud835\\ude60 \\ud835\\ude6c\\ud835\\ude5d\\ud835\\ude56\\ud835\\ude69 \\ud835\\ude69\\ud835\\ude64 \\ud835\\ude6c\\ud835\\ude67\\ud835\\ude5e\\ud835\\ude69\\ud835\\ude5a \\ud835\\ude5d\\ud835\\ude5a\\ud835\\ude67\\ud835\\ude5a\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":234,\"friends_count\":615,\"listed_count\":3,\"created_at\":\"Fri Dec 04 21:31:01 +0000 2020\",\"favourites_count\":10766,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4938,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555237905077075971\\/u7MXspos_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555237905077075971\\/u7MXspos_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1334973464478937088\\/1659720292\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1564\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1565\":{\"id\":177218249,\"id_str\":\"177218249\",\"name\":\"MamaAfrica\\ud83c\\udde8\\ud83c\\uddf2\",\"screen_name\":\"SoLaMenace\",\"location\":\"CAMEROON\",\"description\":\"Un Lion ne tremble jamais devant sa proie #Catholic #Mbouda #CMR #237 #Catalane #ManCityForEPL #VamosNadal follow me at https:\\/\\/t.co\\/ysOTqLTMra\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ysOTqLTMra\",\"expanded_url\":\"http:\\/\\/instagram.com\\/the_01grind\\/\",\"display_url\":\"instagram.com\\/the_01grind\\/\",\"indices\":[122,145]}]}},\"protected\":false,\"followers_count\":342,\"friends_count\":213,\"listed_count\":4,\"created_at\":\"Wed Aug 11 15:22:45 +0000 2010\",\"favourites_count\":1982,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15265,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1274416244662427650\\/CKJTop_R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1274416244662427650\\/CKJTop_R_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1566\":{\"id\":144426464,\"id_str\":\"144426464\",\"name\":\"Molobedu\",\"screen_name\":\"Molobeduu\",\"location\":\"Burkina Faso\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":1120,\"listed_count\":1,\"created_at\":\"Sun May 16 07:37:24 +0000 2010\",\"favourites_count\":2576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/720635112174567424\\/0r-uH1a0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/720635112174567424\\/0r-uH1a0_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1567\":{\"id\":1111296587941187589,\"id_str\":\"1111296587941187589\",\"name\":\"Tinasavage \\ud83d\\udc51\",\"screen_name\":\"Tina_Obodoke\",\"location\":\"Lagos state\",\"description\":\"Social Media Manager | Model | Gratitude | \\u264f | IG: iamtinasavage_ CEO: @Priscillahairz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":146,\"friends_count\":266,\"listed_count\":0,\"created_at\":\"Thu Mar 28 15:58:48 +0000 2019\",\"favourites_count\":4186,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2816,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551516147639533570\\/LWEmaZID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551516147639533570\\/LWEmaZID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1111296587941187589\\/1658829173\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1568\":{\"id\":1083011443,\"id_str\":\"1083011443\",\"name\":\"S\\u00fcleyman Ibn Orhan\",\"screen_name\":\"AIFeisal\",\"location\":\"Nigeria\",\"description\":\"Journalism || Banking & Finance || History || Theology\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4807,\"friends_count\":318,\"listed_count\":15,\"created_at\":\"Sat Jan 12 13:38:14 +0000 2013\",\"favourites_count\":7437,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":32875,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551576650357301248\\/iCL8GxDD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551576650357301248\\/iCL8GxDD_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1569\":{\"id\":1484982176118628354,\"id_str\":\"1484982176118628354\",\"name\":\"Dr. McMichelle Donbraye \\ud83d\\udca5\",\"screen_name\":\"drDME27\",\"location\":\"Nigeria\",\"description\":\"Medical Doctor*Lecturer*Human Nutrition enthusiast*#Aspiring Gastroenterologist& Hepatologist#\\nA good diet is the most powerful weapon we have against diseases!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":252,\"friends_count\":237,\"listed_count\":0,\"created_at\":\"Sat Jan 22 20:12:18 +0000 2022\",\"favourites_count\":4700,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2966,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538518881513484289\\/XGM7swAF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538518881513484289\\/XGM7swAF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484982176118628354\\/1655937638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1570\":{\"id\":1513140523346931718,\"id_str\":\"1513140523346931718\",\"name\":\"Your Excellency\",\"screen_name\":\"yenkwin\",\"location\":\"Nigeria\",\"description\":\"Graphics Designer | Official tweets are assigned GN, else it's just for fun.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":103,\"listed_count\":0,\"created_at\":\"Sun Apr 10 13:03:32 +0000 2022\",\"favourites_count\":1354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1571\":{\"id\":1485727139051843594,\"id_str\":\"1485727139051843594\",\"name\":\"Lalipop\",\"screen_name\":\"iam_lalipop\",\"location\":\"Accra, Ghana\",\"description\":\"Pan-Africanist|| Barca fan|| Free Thinker|||tweets are my opinions || retweets are not endorsement \\u274c\\n\\nApart from my ancestors, I don't belief in any other god!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":958,\"listed_count\":3,\"created_at\":\"Mon Jan 24 21:32:33 +0000 2022\",\"favourites_count\":2572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485727139051843594\\/1650988944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1572\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1573\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1574\":{\"id\":965369032277884928,\"id_str\":\"965369032277884928\",\"name\":\"Onyishi Francis\",\"screen_name\":\"FrancisOnyishi\",\"location\":\"Abuja\",\"description\":\"Enthusiastic\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":91,\"listed_count\":1,\"created_at\":\"Sun Feb 18 23:34:47 +0000 2018\",\"favourites_count\":1551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965369032277884928\\/1650277677\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1575\":{\"id\":34924724,\"id_str\":\"34924724\",\"name\":\"Jo\\u00f1 Abu-Kpaw\\u00f6h \\ud83c\\uddf8\\ud83c\\uddf1\\u270d\",\"screen_name\":\"jckpawoh\",\"location\":\"Freetown, Sierra Leone \",\"description\":\"#Foodie. #Optimist. #FulbrightFellow. #NaturalResources #Economist. #PurdueAlumni. Psychology label: #ShyExtrovert\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3519,\"friends_count\":3815,\"listed_count\":7,\"created_at\":\"Fri Apr 24 13:31:41 +0000 2009\",\"favourites_count\":4077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7787,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"00B8B8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536472800734629888\\/RBY_SXFV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536472800734629888\\/RBY_SXFV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/34924724\\/1546227495\",\"profile_link_color\":\"00B2B8\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1576\":{\"id\":1519380325725622274,\"id_str\":\"1519380325725622274\",\"name\":\"Yeasin AR \\u2764\\ufe0f\\ud83c\\uddf8\\ud83c\\udde9\\ud83c\\uddf5\\ud83c\\uddf0\\u2764\\ufe0f\",\"screen_name\":\"AyaubiK47441869\",\"location\":\"UAE \",\"description\":\"PTI Imran Khan \\ud83d\\udc9a\\ud83c\\uddf5\\ud83c\\uddf0\\ud83c\\uddf7\\ud83c\\uddfa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":273,\"friends_count\":395,\"listed_count\":0,\"created_at\":\"Wed Apr 27 18:18:03 +0000 2022\",\"favourites_count\":10379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11359,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519380325725622274\\/1653479415\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1577\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1578\":{\"id\":252557015,\"id_str\":\"252557015\",\"name\":\"kingsley Diamond\",\"screen_name\":\"dynamicfxtrader\",\"location\":\"Abuja, Nigeria\",\"description\":\"Financial Trader\\/Analyst \\ud83d\\udcc8\\ud83d\\udcc9 | Crypto Exchanger | Passive Income Coach | Digital Marketer \\ud83d\\udcb9| Tech Guy\\ud83d\\udc68\\u200d\\ud83d\\udcbb | Chelsea Fc\\ud83d\\udc10 | Snooker \\ud83c\\udfb1 Relaxation \\ud83d\\udc4d\",\"url\":\"https:\\/\\/t.co\\/QUGxvP2W9z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QUGxvP2W9z\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/dynamictrader\",\"display_url\":\"linktr.ee\\/dynamictrader\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":393,\"friends_count\":568,\"listed_count\":11,\"created_at\":\"Tue Feb 15 12:48:57 +0000 2011\",\"favourites_count\":1176,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EBEBEB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515836034487050247\\/NUC01L4V_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515836034487050247\\/NUC01L4V_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/252557015\\/1650232538\",\"profile_link_color\":\"21689E\",\"profile_sidebar_border_color\":\"DFDFDF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1579\":{\"id\":1188773142329724928,\"id_str\":\"1188773142329724928\",\"name\":\"Makana Media\",\"screen_name\":\"Makana_Media\",\"location\":\"North legon, Accra \",\"description\":\"Local news, Business, Sports, Technology, Entertainment, Fashion, Culture, Education and Exclusive Comedy videos \\ud83d\\ude06\\ud83c\\udfa4 .\",\"url\":\"https:\\/\\/t.co\\/h6V2kVJMoM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h6V2kVJMoM\",\"expanded_url\":\"http:\\/\\/www.makanaonline.com\",\"display_url\":\"makanaonline.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1204,\"friends_count\":884,\"listed_count\":2,\"created_at\":\"Mon Oct 28 11:03:07 +0000 2019\",\"favourites_count\":1788,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533801846883622912\\/54BqaLDA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533801846883622912\\/54BqaLDA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1188773142329724928\\/1632312126\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1580\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1581\":{\"id\":1300012903249195009,\"id_str\":\"1300012903249195009\",\"name\":\"papicru!se\\ud83c\\udf83\",\"screen_name\":\"joephyszn\",\"location\":\"Uyo, Nigeria\",\"description\":\"Music Producer & Sound Engineer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Sun Aug 30 10:10:26 +0000 2020\",\"favourites_count\":5071,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1570,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552717929212428288\\/4ZGCnUFx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552717929212428288\\/4ZGCnUFx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1300012903249195009\\/1647748756\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1582\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1583\":{\"id\":622640291,\"id_str\":\"622640291\",\"name\":\"#Asiwaju2023.\",\"screen_name\":\"olasekoni\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist by training. Billionaire aiming.\\n C.E.O LARRYPAY VENTURES. Die-hard @chelseafc fan. Unapologetic Tinubu fan . Rt not endorsement.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":902,\"friends_count\":725,\"listed_count\":8,\"created_at\":\"Sat Jun 30 08:37:35 +0000 2012\",\"favourites_count\":28917,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/622640291\\/1642176134\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1584\":{\"id\":1387101620555685888,\"id_str\":\"1387101620555685888\",\"name\":\"Grizzly Dan\",\"screen_name\":\"dan_nyeche\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Stop surviving and start Living. \\u26a0\\ufe0f\\ud83d\\uded0 Always DYOR. NFA | #Btc | #Tether |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":7,\"created_at\":\"Tue Apr 27 17:50:24 +0000 2021\",\"favourites_count\":1866,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387101620555685888\\/1658484935\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1585\":{\"id\":783317666,\"id_str\":\"783317666\",\"name\":\"Thomas Kwame Sankara\\ud83c\\uddec\\ud83c\\udded\\u2606\",\"screen_name\":\"brevity2020\",\"location\":\"Ghana\",\"description\":\"Attune to the Culture of Reciprocity|| The Rawlings Built Dogma || God First||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1423,\"friends_count\":363,\"listed_count\":0,\"created_at\":\"Sun Aug 26 22:34:24 +0000 2012\",\"favourites_count\":30267,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28294,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527183576718094338\\/v9JvI52H_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527183576718094338\\/v9JvI52H_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783317666\\/1616270445\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1586\":{\"id\":622640291,\"id_str\":\"622640291\",\"name\":\"#Asiwaju2023.\",\"screen_name\":\"olasekoni\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist by training. Billionaire aiming.\\n C.E.O LARRYPAY VENTURES. Die-hard @chelseafc fan. Unapologetic Tinubu fan . Rt not endorsement.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":902,\"friends_count\":725,\"listed_count\":8,\"created_at\":\"Sat Jun 30 08:37:35 +0000 2012\",\"favourites_count\":28917,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/622640291\\/1642176134\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1587\":{\"id\":415794979,\"id_str\":\"415794979\",\"name\":\"Ben There Done That\",\"screen_name\":\"AndStrats\",\"location\":\"VA\",\"description\":\"Writer\\/Photographer #Liberty #FreeMarkets #PrivateProperty #IndividualRights Priors: CNN Headline News\\/CNN-International MRC\\/CNSNews CapHill #GATA Matt 5:16\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1136,\"friends_count\":575,\"listed_count\":23,\"created_at\":\"Fri Nov 18 20:40:47 +0000 2011\",\"favourites_count\":37911,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2954,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"41447D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1119454601667915777\\/VS8_-fp0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1119454601667915777\\/VS8_-fp0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/415794979\\/1402769131\",\"profile_link_color\":\"0E1791\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1588\":{\"id\":1312812289603637248,\"id_str\":\"1312812289603637248\",\"name\":\"Noel Emmanuel\",\"screen_name\":\"UcheJS\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udc64 UI\\/UX Designer\\/Frontend web developer. Tweets about tech, startups and innovation\",\"url\":\"https:\\/\\/t.co\\/8GQVYbNFtq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8GQVYbNFtq\",\"expanded_url\":\"https:\\/\\/www.figma.com\\/@UcheJs\",\"display_url\":\"figma.com\\/@UcheJs\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":227,\"friends_count\":216,\"listed_count\":2,\"created_at\":\"Sun Oct 04 17:50:35 +0000 2020\",\"favourites_count\":7027,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2852,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554577708889300995\\/oktKWO19_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554577708889300995\\/oktKWO19_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312812289603637248\\/1659133419\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1589\":{\"id\":403033229,\"id_str\":\"403033229\",\"name\":\"TBC, CSC.\",\"screen_name\":\"Adedayomichaels\",\"location\":\"lagos\",\"description\":\"I am an International Emissary, A Global Citizen \\ud83d\\udcbc \\/Author. (First Class, Na Beans) \\/WeddingEmcee\\ud83e\\udd70\\/ CorporateEvent Host\\ud83c\\udfa4! @fcbarcelona\\ud83d\\ude0d\\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\",\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"expanded_url\":\"https:\\/\\/aheadly.co\\/yes\",\"display_url\":\"aheadly.co\\/yes\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":1190,\"listed_count\":0,\"created_at\":\"Tue Nov 01 22:45:10 +0000 2011\",\"favourites_count\":3194,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3899,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/403033229\\/1614815397\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1590\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1591\":{\"id\":622640291,\"id_str\":\"622640291\",\"name\":\"#Asiwaju2023.\",\"screen_name\":\"olasekoni\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist by training. Billionaire aiming.\\n C.E.O LARRYPAY VENTURES. Die-hard @chelseafc fan. Unapologetic Tinubu fan . Rt not endorsement.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":902,\"friends_count\":725,\"listed_count\":8,\"created_at\":\"Sat Jun 30 08:37:35 +0000 2012\",\"favourites_count\":28917,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/622640291\\/1642176134\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1592\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2909,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1593\":{\"id\":1468257289433980928,\"id_str\":\"1468257289433980928\",\"name\":\"The Honeysuckle Ghana\",\"screen_name\":\"honeysucklegh\",\"location\":\"Accra, Ghana\",\"description\":\"Sports Bar\\/Pub\\/Restaurant\\/Experience\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":12,\"listed_count\":2,\"created_at\":\"Tue Dec 07 16:33:34 +0000 2021\",\"favourites_count\":688,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":218,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1468257492048171008\\/JNNASZ9h_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1468257492048171008\\/JNNASZ9h_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468257289433980928\\/1641546639\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1594\":{\"id\":3384385683,\"id_str\":\"3384385683\",\"name\":\"HERAN\",\"screen_name\":\"heranorg\",\"location\":\"Nigeria\",\"description\":\"Official account of #HERAN. Get latest information on Heran. Follow us on Instagram: @heranorg_ Facebook @heranorg +2348166912594\\n#GlobalGoals #family\",\"url\":\"https:\\/\\/t.co\\/D4BR7JLUFh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D4BR7JLUFh\",\"expanded_url\":\"http:\\/\\/heran.org\",\"display_url\":\"heran.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":25,\"listed_count\":1,\"created_at\":\"Mon Jul 20 11:59:57 +0000 2015\",\"favourites_count\":86,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/623101521794846720\\/Ry2gOHfc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/623101521794846720\\/Ry2gOHfc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3384385683\\/1490965164\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1595\":{\"id\":415794979,\"id_str\":\"415794979\",\"name\":\"Ben There Done That\",\"screen_name\":\"AndStrats\",\"location\":\"VA\",\"description\":\"Writer\\/Photographer #Liberty #FreeMarkets #PrivateProperty #IndividualRights Priors: CNN Headline News\\/CNN-International MRC\\/CNSNews CapHill #GATA Matt 5:16\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1136,\"friends_count\":575,\"listed_count\":23,\"created_at\":\"Fri Nov 18 20:40:47 +0000 2011\",\"favourites_count\":37911,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2954,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"41447D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1119454601667915777\\/VS8_-fp0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1119454601667915777\\/VS8_-fp0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/415794979\\/1402769131\",\"profile_link_color\":\"0E1791\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1596\":{\"id\":135117366,\"id_str\":\"135117366\",\"name\":\"#BBNaija\",\"screen_name\":\"Bomweekly\",\"location\":\"Nigeria\",\"description\":\"News | Entertainment | Life Style & More.\\ud83d\\udc49\\nFormerly @belinberry\\ud83d\\udc4d\\nSend news tips to WhatsApp only -08036842854\\n\\ud83d\\udc47\\nInstagram @bomweekly\\nFacebook @bomweekly\",\"url\":\"https:\\/\\/t.co\\/SxiJx7ihHv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SxiJx7ihHv\",\"expanded_url\":\"https:\\/\\/www.bomweekly.com\",\"display_url\":\"bomweekly.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4013,\"friends_count\":475,\"listed_count\":52,\"created_at\":\"Tue Apr 20 11:28:20 +0000 2010\",\"favourites_count\":1767,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550901867995078656\\/KBFDZ-QS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550901867995078656\\/KBFDZ-QS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/135117366\\/1656943931\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1597\":{\"id\":1241865697409540099,\"id_str\":\"1241865697409540099\",\"name\":\"favourite property plug.\\ud83e\\udd70\\ud83e\\udd70\\ud83d\\ude0b\\ud83d\\ude0b\",\"screen_name\":\"Adelanibabatun5\",\"location\":\" surulere \",\"description\":\"Real Estate broker | Consultant | Developer.\\n\\u260e\\ufe0f 08114574484.\\n\\u260e\\ufe0f 07044983363.\\nhttps:\\/\\/t.co\\/BmuA9BmU5c\\n\\nclick the link to watch \\nhttps:\\/\\/t.co\\/YmPCJ2A583\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BmuA9BmU5c\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/HBYMA2\",\"display_url\":\"wa.me\\/message\\/HBYMA2\",\"indices\":[77,100]},{\"url\":\"https:\\/\\/t.co\\/YmPCJ2A583\",\"expanded_url\":\"https:\\/\\/youtu.be\\/ytiIZmgfGaI\",\"display_url\":\"youtu.be\\/ytiIZmgfGaI\",\"indices\":[127,150]}]}},\"protected\":false,\"followers_count\":136,\"friends_count\":340,\"listed_count\":1,\"created_at\":\"Sun Mar 22 23:14:02 +0000 2020\",\"favourites_count\":610,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":724,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508696515061161984\\/G6eRveFg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508696515061161984\\/G6eRveFg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1241865697409540099\\/1591771156\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1598\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1599\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1600\":{\"id\":4625276296,\"id_str\":\"4625276296\",\"name\":\"Obidient Bliss \\ud83d\\udc8e\",\"screen_name\":\"blissoharisi\",\"location\":\"Lagos, Nigeria\",\"description\":\"Freelancer, Web Developer, God & People lover, An Army in @cci_lekki\\n@peterobi my https:\\/\\/t.co\\/iOE8g7Pc8A Obicentric\",\"url\":\"https:\\/\\/t.co\\/IUzUHAj5Qz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IUzUHAj5Qz\",\"expanded_url\":\"http:\\/\\/www.kontentize.com\",\"display_url\":\"kontentize.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iOE8g7Pc8A\",\"expanded_url\":\"http:\\/\\/president.am\",\"display_url\":\"president.am\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":391,\"friends_count\":367,\"listed_count\":1,\"created_at\":\"Sun Dec 27 20:51:54 +0000 2015\",\"favourites_count\":13027,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6478,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536499860538531842\\/VbNqY-Jj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536499860538531842\\/VbNqY-Jj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4625276296\\/1654613455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1601\":{\"id\":370937756,\"id_str\":\"370937756\",\"name\":\"Oguntunnbi segun\",\"screen_name\":\"Oguntunnbi\",\"location\":\"osun state\",\"description\":\"Osspi\\ud83e\\udd33\",\"url\":\"https:\\/\\/t.co\\/IGMtFUtZyw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IGMtFUtZyw\",\"expanded_url\":\"http:\\/\\/osspi.blogspot.com\",\"display_url\":\"osspi.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2285,\"friends_count\":2599,\"listed_count\":0,\"created_at\":\"Fri Sep 09 22:20:07 +0000 2011\",\"favourites_count\":18361,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1387889130164654086\\/NV651P00_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1387889130164654086\\/NV651P00_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/370937756\\/1597192343\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1602\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1603\":{\"id\":1496974507394973698,\"id_str\":\"1496974507394973698\",\"name\":\"frayobliss\",\"screen_name\":\"isbliss_5\",\"location\":\"Lagos, Nigeria\",\"description\":\"welcome to my world.\\nibliss the thrillar.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":237,\"listed_count\":1,\"created_at\":\"Thu Feb 24 22:25:25 +0000 2022\",\"favourites_count\":1138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496974507394973698\\/1651762861\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1604\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1605\":{\"id\":1499078894409949189,\"id_str\":\"1499078894409949189\",\"name\":\"Say No \\u274c To RACISM\\/WAR\",\"screen_name\":\"SayNoToRACISMW1\",\"location\":\"Nigeria\",\"description\":\"RACISM is a public health crisis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Mar 02 17:48:47 +0000 2022\",\"favourites_count\":258,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":328,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499078894409949189\\/1646244040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1606\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1607\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1608\":{\"id\":622640291,\"id_str\":\"622640291\",\"name\":\"#Asiwaju2023.\",\"screen_name\":\"olasekoni\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist by training. Billionaire aiming.\\n C.E.O LARRYPAY VENTURES. Die-hard @chelseafc fan. Unapologetic Tinubu fan . Rt not endorsement.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":902,\"friends_count\":725,\"listed_count\":8,\"created_at\":\"Sat Jun 30 08:37:35 +0000 2012\",\"favourites_count\":28917,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/622640291\\/1642176134\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1609\":{\"id\":1736141245,\"id_str\":\"1736141245\",\"name\":\"CERTIFIED MC\",\"screen_name\":\"iamadeflow\",\"location\":\"Lagos, Nigeria\",\"description\":\"Stand Up Comedian | MC | Content Creator\\nLive| Laugh| Love \\ud83d\\ude4c\\n\\n For bookings \\ud83d\\udce9 adeflowcomedian@gmail.com \\n@iamadeflow on all platforms\",\"url\":\"https:\\/\\/t.co\\/f6f3HvLJuE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f6f3HvLJuE\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UClCOi_Iho6c_r-p0DdmaPeQ\",\"display_url\":\"youtube.com\\/channel\\/UClCOi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1662,\"friends_count\":1322,\"listed_count\":3,\"created_at\":\"Fri Sep 06 18:18:51 +0000 2013\",\"favourites_count\":74334,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24993,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505259224376483848\\/6ZYp2sv7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505259224376483848\\/6ZYp2sv7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1736141245\\/1651239030\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1610\":{\"id\":622640291,\"id_str\":\"622640291\",\"name\":\"#Asiwaju2023.\",\"screen_name\":\"olasekoni\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist by training. Billionaire aiming.\\n C.E.O LARRYPAY VENTURES. Die-hard @chelseafc fan. Unapologetic Tinubu fan . Rt not endorsement.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":902,\"friends_count\":725,\"listed_count\":8,\"created_at\":\"Sat Jun 30 08:37:35 +0000 2012\",\"favourites_count\":28917,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme16\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534082725891739648\\/Qe3Or7SW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/622640291\\/1642176134\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1611\":{\"id\":1878607682,\"id_str\":\"1878607682\",\"name\":\"BENJAMIN OSSY\",\"screen_name\":\"Benstinoc\",\"location\":\" Nigeria \",\"description\":\"A crypto enthusiast\\ud83e\\ude99, Bible Scholar \\ud83d\\udcd6 and lover of God\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Wed Sep 18 08:18:00 +0000 2013\",\"favourites_count\":737,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":838,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548079275969900545\\/taEcs20m_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548079275969900545\\/taEcs20m_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1878607682\\/1657883460\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1612\":{\"id\":625279772,\"id_str\":\"625279772\",\"name\":\"Oluseyi Johnson\",\"screen_name\":\"OluseyiJohnsonG\",\"location\":\"Abuja.Nigeria\",\"description\":\"Lover of Jesus, Worshipper, Teens Leader. I'm me. Never stop believing in what you n God would accomplish if u partner with Him. @TeensLoveF\",\"url\":\"https:\\/\\/t.co\\/9dwzUXnBj0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9dwzUXnBj0\",\"expanded_url\":\"http:\\/\\/tlf.org.ng\",\"display_url\":\"tlf.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":272,\"friends_count\":1752,\"listed_count\":2,\"created_at\":\"Tue Jul 03 05:19:51 +0000 2012\",\"favourites_count\":2170,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526117359529996289\\/dVm5IZUV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526117359529996289\\/dVm5IZUV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/625279772\\/1548085967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1613\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1614\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1615\":{\"id\":1499078894409949189,\"id_str\":\"1499078894409949189\",\"name\":\"Say No \\u274c To RACISM\\/WAR\",\"screen_name\":\"SayNoToRACISMW1\",\"location\":\"Nigeria\",\"description\":\"RACISM is a public health crisis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Mar 02 17:48:47 +0000 2022\",\"favourites_count\":258,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":328,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499078894409949189\\/1646244040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1616\":{\"id\":1019550552781475841,\"id_str\":\"1019550552781475841\",\"name\":\"Liverpool Chief Priest\",\"screen_name\":\"donbogidon1\",\"location\":\"Anambra, Nigeria\",\"description\":\"I'm a Civil Engineer, Content creator and Writer, OAP sports presenter, Liverpool fan and music instrumentalist. donikemefuna1@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":253,\"listed_count\":0,\"created_at\":\"Wed Jul 18 11:52:48 +0000 2018\",\"favourites_count\":1388,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1310592937588334595\\/NP1hBJSI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1310592937588334595\\/NP1hBJSI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1019550552781475841\\/1601305025\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1617\":{\"id\":1519365637247848450,\"id_str\":\"1519365637247848450\",\"name\":\"ophelia.theartist | Abstract Art | Pouring Art\",\"screen_name\":\"Opheliathearti6\",\"location\":\"Greater Accra, Ghana\",\"description\":\"\\ud83d\\udd8c Ghanaian acrylic pouring Sensei \\n\\ud83d\\udd8c Painting themes of happiness, perseverance and can-do\",\"url\":\"https:\\/\\/t.co\\/IqVtsyK65a\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IqVtsyK65a\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCTpMPQpQzDWHlVi3EGwFJ9A\",\"display_url\":\"youtube.com\\/channel\\/UCTpMP\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":35,\"listed_count\":0,\"created_at\":\"Wed Apr 27 17:19:51 +0000 2022\",\"favourites_count\":165,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":63,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519365916898873345\\/gaS447Ty_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519365916898873345\\/gaS447Ty_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519365637247848450\\/1651080780\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1618\":{\"id\":1312896963155763201,\"id_str\":\"1312896963155763201\",\"name\":\"Zubair A Zubair\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Funny_African01\",\"location\":\"Kano, Nigeria\",\"description\":\"Human Rights Activist |Writer| UN model |S. Journalist @nigeria_tracker | Radio Host| Actor| Comedian| Youth Advocate| Pan Africanist | 3 Honor. DD \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\\u2708\\ufe0f\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100013692549752\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":172,\"friends_count\":351,\"listed_count\":0,\"created_at\":\"Sun Oct 04 23:27:08 +0000 2020\",\"favourites_count\":4869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2966,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312896963155763201\\/1647710037\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1619\":{\"id\":1496974507394973698,\"id_str\":\"1496974507394973698\",\"name\":\"frayobliss\",\"screen_name\":\"isbliss_5\",\"location\":\"Lagos, Nigeria\",\"description\":\"welcome to my world.\\nibliss the thrillar.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":237,\"listed_count\":1,\"created_at\":\"Thu Feb 24 22:25:25 +0000 2022\",\"favourites_count\":1138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496974507394973698\\/1651762861\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1620\":{\"id\":1318458441153785856,\"id_str\":\"1318458441153785856\",\"name\":\"Jlove Of Lekki for Peter Obi\",\"screen_name\":\"ChefJlove\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m an Obidient Nigerian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":452,\"listed_count\":1,\"created_at\":\"Tue Oct 20 07:46:32 +0000 2020\",\"favourites_count\":220,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":535,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535919993568874497\\/xJsCzwnd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535919993568874497\\/xJsCzwnd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1318458441153785856\\/1616059758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1621\":{\"id\":1485727139051843594,\"id_str\":\"1485727139051843594\",\"name\":\"Lalipop\",\"screen_name\":\"iam_lalipop\",\"location\":\"Accra, Ghana\",\"description\":\"Pan-Africanist|| Barca fan|| Free Thinker|||tweets are my opinions || retweets are not endorsement \\u274c\\n\\nApart from my ancestors, I don't belief in any other god!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":958,\"listed_count\":3,\"created_at\":\"Mon Jan 24 21:32:33 +0000 2022\",\"favourites_count\":2572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485727139051843594\\/1650988944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1622\":{\"id\":1407703643562950656,\"id_str\":\"1407703643562950656\",\"name\":\"Akanniola\",\"screen_name\":\"OlaAkanni7\",\"location\":\"Lagos, Nigeria\",\"description\":\"Just lovely\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":79,\"friends_count\":895,\"listed_count\":0,\"created_at\":\"Wed Jun 23 14:15:07 +0000 2021\",\"favourites_count\":1949,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":397,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1444284579469307911\\/fyzcKO-5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1444284579469307911\\/fyzcKO-5_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1623\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2909,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1624\":{\"id\":1317189530546556928,\"id_str\":\"1317189530546556928\",\"name\":\"Valiant\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\",\"screen_name\":\"Valiantjoe1\",\"location\":\"Nigeria\",\"description\":\"Full stack \\ud83d\\udcbb\\/software developer \\n\\nTURING \\ud83c\\udfc6\\n\\n:Liverpool Fan \\ud83c\\udfc6\\ud83c\\udfc6\\ud83c\\udfc6\\n\\n#God_is_the_greatest\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":439,\"listed_count\":2,\"created_at\":\"Fri Oct 16 19:44:09 +0000 2020\",\"favourites_count\":881,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":638,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547719369228107778\\/b7BenO2s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547719369228107778\\/b7BenO2s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317189530546556928\\/1654153508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1625\":{\"id\":1312896963155763201,\"id_str\":\"1312896963155763201\",\"name\":\"Zubair A Zubair\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Funny_African01\",\"location\":\"Kano, Nigeria\",\"description\":\"Human Rights Activist |Writer| UN model |S. Journalist @nigeria_tracker | Radio Host| Actor| Comedian| Youth Advocate| Pan Africanist | 3 Honor. DD \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\\u2708\\ufe0f\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100013692549752\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":172,\"friends_count\":351,\"listed_count\":0,\"created_at\":\"Sun Oct 04 23:27:08 +0000 2020\",\"favourites_count\":4869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2966,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312896963155763201\\/1647710037\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1626\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2909,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1627\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1628\":{\"id\":793706406,\"id_str\":\"793706406\",\"name\":\"citizenKwame\",\"screen_name\":\"CKNews247\",\"location\":\"Cape Coast, Ghana\",\"description\":\"Most Reliable News Source in Ghana that Provides Only the Relevant News You Need\",\"url\":\"https:\\/\\/t.co\\/fX1YAmp8bv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fX1YAmp8bv\",\"expanded_url\":\"https:\\/\\/citizenkwame.com\",\"display_url\":\"citizenkwame.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1139,\"friends_count\":1403,\"listed_count\":0,\"created_at\":\"Fri Aug 31 11:59:22 +0000 2012\",\"favourites_count\":4479,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":617,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542929664573931520\\/FpH4sKQT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542929664573931520\\/FpH4sKQT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/793706406\\/1634227855\",\"profile_link_color\":\"9266CC\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1629\":{\"id\":1490069073564246021,\"id_str\":\"1490069073564246021\",\"name\":\"prudence_Daniels\\u2122\\ud83d\\udd31\\ud83d\\udc8b\\u2764\\ufe0f\\u2728\\ud83d\\udc85\",\"screen_name\":\"prudenceovlagos\",\"location\":\"Lagos, Nigeria\",\"description\":\"Unique\\ud83d\\udd31\\ud83d\\udccc\\u2764\\ufe0f\\nstudent\\ud83d\\udcd8\\ud83d\\udcd9\\ud83d\\udcda\\nmusic icon\\ud83c\\udfa4\\ud83c\\udfb6\\ud83c\\udfb5\\ud83c\\udfbb\\nchef\\ud83c\\udf74\\ud83c\\udf78\\ud83c\\udf5d\\ud83c\\udf5c\\ud83e\\udd63\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2764,\"friends_count\":2590,\"listed_count\":4,\"created_at\":\"Sat Feb 05 21:05:48 +0000 2022\",\"favourites_count\":46942,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4102,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542079876160700418\\/FDufHnsr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542079876160700418\\/FDufHnsr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490069073564246021\\/1644215400\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1630\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1631\":{\"id\":1500010676558909440,\"id_str\":\"1500010676558909440\",\"name\":\"David Naomi Chidera\",\"screen_name\":\"dnaomi876\",\"location\":\"Lagos, Nigeria\",\"description\":\"God's grace love and mercy is sufficient for me and my family\\nI help people live life on their own terms\\nThe lifestyle I signed up for\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":2255,\"listed_count\":0,\"created_at\":\"Sat Mar 05 07:30:27 +0000 2022\",\"favourites_count\":461,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528017392735068160\\/yD-7zESN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528017392735068160\\/yD-7zESN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1500010676558909440\\/1656855569\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1632\":{\"id\":50623469,\"id_str\":\"50623469\",\"name\":\"Seyisayo DAVID (MSD)\",\"screen_name\":\"PraiseMACHINE02\",\"location\":\"Lagos,Nigeria\",\"description\":\"ARSENAL FAN, Music Enthusiast, Sports Analyst, CEO GOSPELCAFETV(gospel platform).. #Godfidence\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":391,\"friends_count\":960,\"listed_count\":3,\"created_at\":\"Thu Jun 25 11:48:52 +0000 2009\",\"favourites_count\":42851,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3484,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316332112790933504\\/NZluzR4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316332112790933504\\/NZluzR4A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/50623469\\/1588262818\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1633\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1634\":{\"id\":755092277782085633,\"id_str\":\"755092277782085633\",\"name\":\"kazeem Fashola \\ud83d\\udc90\",\"screen_name\":\"solianoconcept\",\"location\":\"Lagos, Nigeria\",\"description\":\"SolianoConcept is a building & renovation company that is located in Lagos, NigThe company is basically interior & decoration,https:\\/\\/t.co\\/Jt0PlR3U0j\",\"url\":\"https:\\/\\/t.co\\/rJrbjnkKER\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rJrbjnkKER\",\"expanded_url\":\"http:\\/\\/solianoconcept.com.ng\",\"display_url\":\"solianoconcept.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jt0PlR3U0j\",\"expanded_url\":\"http:\\/\\/www.solianoconcept.com.ng\",\"display_url\":\"solianoconcept.com.ng\",\"indices\":[126,149]}]}},\"protected\":false,\"followers_count\":216,\"friends_count\":390,\"listed_count\":1,\"created_at\":\"Mon Jul 18 17:30:03 +0000 2016\",\"favourites_count\":35973,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5485,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1330447944567369729\\/1s03hncX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1330447944567369729\\/1s03hncX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/755092277782085633\\/1593791751\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1635\":{\"id\":1496811243847491584,\"id_str\":\"1496811243847491584\",\"name\":\"Sunday Babajide\",\"screen_name\":\"SundayBabajid10\",\"location\":\"Lagos, Nigeria\",\"description\":\"FinanceIIIAccountingIIITax AdvisoryIIIInvestment AdvisoryIIIMGT Consulting III Real estateIIICAC accredited agent.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":119,\"listed_count\":0,\"created_at\":\"Thu Feb 24 11:36:43 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496824723149361157\\/IbTRKk0k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496824723149361157\\/IbTRKk0k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1636\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1637\":{\"id\":3039613731,\"id_str\":\"3039613731\",\"name\":\"Paulitodo Samuel\",\"screen_name\":\"itodougo\",\"location\":\"Nigeria\",\"description\":\"Intrinsically humanitarian, good governance advocate. A Man of God, Area Superintendent Pastor, Christ Centered.\\nPublic analyst and Speaker.\",\"url\":\"https:\\/\\/t.co\\/fBbKW7xEhH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fBbKW7xEhH\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/DeOSYfYNt5m3ApWyKDruZ6\",\"display_url\":\"chat.whatsapp.com\\/DeOSYfYNt5m3Ap\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":359,\"friends_count\":639,\"listed_count\":1,\"created_at\":\"Sun Feb 15 20:46:49 +0000 2015\",\"favourites_count\":1579,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1556,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541376977671692289\\/C3CP3_hG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541376977671692289\\/C3CP3_hG_normal.jpg\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1638\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1639\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2070,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1640\":{\"id\":4458200495,\"id_str\":\"4458200495\",\"name\":\"Distinguished Senator\",\"screen_name\":\"Senatorisiaq\",\"location\":\"Otta, Nigeria\",\"description\":\"patriotic\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":446,\"friends_count\":701,\"listed_count\":0,\"created_at\":\"Sat Dec 12 10:10:15 +0000 2015\",\"favourites_count\":900,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":598,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495309663834972165\\/5kEum-nl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495309663834972165\\/5kEum-nl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4458200495\\/1645344591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1641\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1642\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1643\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2070,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1644\":{\"id\":1242338030,\"id_str\":\"1242338030\",\"name\":\"Ijeoma Mbama (Ijsugarr)\",\"screen_name\":\"ijeomambama\",\"location\":\"Nigeria\",\"description\":\"The beauty of radio.\\nOn Air Personnel.\\nNewscaster\\nat Super fm 93.3\\nPort Harcourt.\\nYour radio plug.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":925,\"friends_count\":961,\"listed_count\":0,\"created_at\":\"Mon Mar 04 22:16:36 +0000 2013\",\"favourites_count\":3426,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":996,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551100745776304128\\/uEHAYB7h_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551100745776304128\\/uEHAYB7h_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1242338030\\/1642085314\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1645\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1646\":{\"id\":1097201866092486657,\"id_str\":\"1097201866092486657\",\"name\":\"MILEZ\",\"screen_name\":\"Milez_Eli\",\"location\":\"Accra, Ghana\",\"description\":\"Physician || Philanthropist || I serve a living God!!!\",\"url\":\"https:\\/\\/t.co\\/SyuRdxTPV5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SyuRdxTPV5\",\"expanded_url\":\"http:\\/\\/www.milez.eli.gh.com\",\"display_url\":\"milez.eli.gh.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5001,\"friends_count\":5448,\"listed_count\":1,\"created_at\":\"Sun Feb 17 18:31:24 +0000 2019\",\"favourites_count\":40671,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":36449,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1237716088412135430\\/oE12DFLl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1237716088412135430\\/oE12DFLl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1097201866092486657\\/1595030490\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1647\":{\"id\":1316814257460326404,\"id_str\":\"1316814257460326404\",\"name\":\"\\ud835\\udc01\\ud835\\udc2b\\ud835\\udc32\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc33\\ud835\\udc32\\u2b50\\ufe0f\",\"screen_name\":\"bryteazy\",\"location\":\"Nigeria\",\"description\":\"Skit maker|content creator|INSTAGRAM @\\ud835\\udc01\\ud835\\udc2b\\ud835\\udc32\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc33\\ud835\\udc32\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":102,\"friends_count\":140,\"listed_count\":0,\"created_at\":\"Thu Oct 15 18:52:57 +0000 2020\",\"favourites_count\":450,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532110982121652231\\/9XZKa4cQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532110982121652231\\/9XZKa4cQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316814257460326404\\/1654848551\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1648\":{\"id\":1485727139051843594,\"id_str\":\"1485727139051843594\",\"name\":\"Lalipop\",\"screen_name\":\"iam_lalipop\",\"location\":\"Accra, Ghana\",\"description\":\"Pan-Africanist|| Barca fan|| Free Thinker|||tweets are my opinions || retweets are not endorsement \\u274c\\n\\nApart from my ancestors, I don't belief in any other god!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":958,\"listed_count\":3,\"created_at\":\"Mon Jan 24 21:32:33 +0000 2022\",\"favourites_count\":2572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485727139051843594\\/1650988944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1649\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1650\":{\"id\":1312137870744973319,\"id_str\":\"1312137870744973319\",\"name\":\"IN-COUNTRY MEDICARE\",\"screen_name\":\"medicare_in\",\"location\":\"Abuja, Nigeria\",\"description\":\"...Center for Well being, Precision and Personalized Medicine\",\"url\":\"https:\\/\\/t.co\\/rxXE6mjeaj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rxXE6mjeaj\",\"expanded_url\":\"https:\\/\\/incountrymedicare.com\",\"display_url\":\"incountrymedicare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Fri Oct 02 21:10:51 +0000 2020\",\"favourites_count\":20,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":60,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322247013694611456\\/T0THE9xg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322247013694611456\\/T0THE9xg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312137870744973319\\/1604083227\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1651\":{\"id\":1499867836902252552,\"id_str\":\"1499867836902252552\",\"name\":\"pearl sammy\",\"screen_name\":\"pearlsammy5\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":92,\"listed_count\":0,\"created_at\":\"Fri Mar 04 22:02:42 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499867960764215305\\/SLKb171X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499867960764215305\\/SLKb171X_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1652\":{\"id\":1446977803879071750,\"id_str\":\"1446977803879071750\",\"name\":\"Ughelli Son Media\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec F\\ud83c\\udd71\\ufe0fF #BBNaij Benin Deji\",\"screen_name\":\"UghelliSon1\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Available For All Promotions | || Cleaning Consultant , || Don\\u2019t Take My Tweets Too Serious, +2348027478287\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1459,\"friends_count\":1068,\"listed_count\":0,\"created_at\":\"Sat Oct 09 23:16:33 +0000 2021\",\"favourites_count\":4358,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555255063156752386\\/hs4y80Ar_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555255063156752386\\/hs4y80Ar_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1446977803879071750\\/1659297496\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1653\":{\"id\":1431650266588270592,\"id_str\":\"1431650266588270592\",\"name\":\"Son of God\",\"screen_name\":\"inanakwasi\",\"location\":\"Ghana\",\"description\":\"Disappointed but no surprised \\ud83e\\udd11\\ud83e\\udd11\\ud83e\\udd11\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":704,\"friends_count\":915,\"listed_count\":3,\"created_at\":\"Sat Aug 28 16:10:14 +0000 2021\",\"favourites_count\":349,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":570,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451267762588950531\\/adCKc1p9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451267762588950531\\/adCKc1p9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1431650266588270592\\/1634844172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1654\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1655\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1656\":{\"id\":1081091726188654597,\"id_str\":\"1081091726188654597\",\"name\":\"Idokz\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Dannypete4\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm always inquisitive\\ud83e\\udd14, always thriving, can't stop won't stop\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":1912,\"listed_count\":0,\"created_at\":\"Fri Jan 04 07:35:28 +0000 2019\",\"favourites_count\":9810,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555579170822012930\\/1CM9iE6P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555579170822012930\\/1CM9iE6P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1081091726188654597\\/1658074220\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1657\":{\"id\":1281758785615417345,\"id_str\":\"1281758785615417345\",\"name\":\"MoviePlus\\ud83d\\udcfa\",\"screen_name\":\"MoviePlusx\",\"location\":\"Nigeria\",\"description\":\"MOVIES (Old & New) and REVIEWS.\\ud83d\\udcfa Check My Media For My Tweets.\\ud83e\\udd2a\\n\\nBackUp - @Movie_Plux\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2260,\"friends_count\":2006,\"listed_count\":4,\"created_at\":\"Sat Jul 11 01:14:59 +0000 2020\",\"favourites_count\":22439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1324863425164546048\\/_XojFNlS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1324863425164546048\\/_XojFNlS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1281758785615417345\\/1659797506\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1658\":{\"id\":500564996,\"id_str\":\"500564996\",\"name\":\"KING \\ud83d\\udc51 ELENIYAN\",\"screen_name\":\"olisasegun1\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":170,\"listed_count\":0,\"created_at\":\"Thu Feb 23 07:53:03 +0000 2012\",\"favourites_count\":594,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":217,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531207036322598912\\/tfU_9-8e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531207036322598912\\/tfU_9-8e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/500564996\\/1489863212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1659\":{\"id\":1485727139051843594,\"id_str\":\"1485727139051843594\",\"name\":\"Lalipop\",\"screen_name\":\"iam_lalipop\",\"location\":\"Accra, Ghana\",\"description\":\"Pan-Africanist|| Barca fan|| Free Thinker|||tweets are my opinions || retweets are not endorsement \\u274c\\n\\nApart from my ancestors, I don't belief in any other god!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":958,\"listed_count\":3,\"created_at\":\"Mon Jan 24 21:32:33 +0000 2022\",\"favourites_count\":2572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485727139051843594\\/1650988944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1660\":{\"id\":1550914540266786817,\"id_str\":\"1550914540266786817\",\"name\":\"D nicky doll\\ud83e\\udd75\\ud83e\\udd8b\",\"screen_name\":\"nickyB112\",\"location\":\"Nigeria\",\"description\":\"good byad gyal\\ud83e\\udd24 Gemini \\u264a\\ufe0f love of black\\ud83d\\udda4 cheers to a good life\\ud83e\\udd42\\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Sat Jul 23 18:43:51 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550942189332713475\\/v3xSk65__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550942189332713475\\/v3xSk65__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550914540266786817\\/1659045879\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1661\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1662\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1663\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1664\":{\"id\":989872157357420544,\"id_str\":\"989872157357420544\",\"name\":\"Lemontee\",\"screen_name\":\"callmelemontee\",\"location\":\"Nigeria\",\"description\":\"Activated-no Bad Songs \\nSinger \\ud83c\\udf99\\ufe0f\\nRapper\\u00b0\\nHipop & Afro \\u303d\\nPerforming Artist\\u23cf\\nSong Writer \\u23f9 \\nInstrumentalist\\ud83d\\udd06\",\"url\":\"https:\\/\\/t.co\\/xfUqWERzxy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xfUqWERzxy\",\"expanded_url\":\"https:\\/\\/ffm.to\\/lemontee-dreamz\",\"display_url\":\"ffm.to\\/lemontee-dreamz\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":49,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Fri Apr 27 14:21:28 +0000 2018\",\"favourites_count\":474,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482080963823910913\\/j60fzSEm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482080963823910913\\/j60fzSEm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/989872157357420544\\/1653470365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1665\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1666\":{\"id\":286341946,\"id_str\":\"286341946\",\"name\":\"Samuel Danbauchi\",\"screen_name\":\"Sam_Deck\",\"location\":\"Jos, Nigeria.\",\"description\":\"Early Childhood Professional\\nBlessed\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":683,\"friends_count\":910,\"listed_count\":0,\"created_at\":\"Fri Apr 22 20:22:37 +0000 2011\",\"favourites_count\":147,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6535,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553178876943241218\\/YK-xxN0x_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553178876943241218\\/YK-xxN0x_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/286341946\\/1480345078\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1667\":{\"id\":960542806933729281,\"id_str\":\"960542806933729281\",\"name\":\"Ad\\u00e1j\\u00e0\\ud83e\\udd77\",\"screen_name\":\"AdajaMusic\",\"location\":\"Lagos, Nigeria\",\"description\":\"Welcome to the world of wonders \\ud83d\\udda4. Singer Songwriter Winner #Bigdreamsnigeriatvshow\",\"url\":\"https:\\/\\/t.co\\/TPHdKsCrGr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TPHdKsCrGr\",\"expanded_url\":\"https:\\/\\/spinnup.link\\/504529-adaja-sounds-of\",\"display_url\":\"spinnup.link\\/504529-adaja-s\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":395,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Mon Feb 05 15:57:05 +0000 2018\",\"favourites_count\":17558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":739,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1448404628161409029\\/sVE-Lslh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1448404628161409029\\/sVE-Lslh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/960542806933729281\\/1658484917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1668\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1669\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1670\":{\"id\":621221632,\"id_str\":\"621221632\",\"name\":\"sojex\",\"screen_name\":\"BabatundeSoji\",\"location\":\"Ifo ogun state Nigeria\",\"description\":\"Crop production and Animal science consultant\\/ Soil scientist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259,\"friends_count\":1073,\"listed_count\":0,\"created_at\":\"Thu Jun 28 18:49:33 +0000 2012\",\"favourites_count\":2985,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532838920546820096\\/v3Igpb-k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532838920546820096\\/v3Igpb-k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1671\":{\"id\":1359092875284332546,\"id_str\":\"1359092875284332546\",\"name\":\"Truckademy\",\"screen_name\":\"truckademy\",\"location\":\"Sango-Ota, Ogun State, Nigeria\",\"description\":\"Africa's no 1 emerging truck drivers training & recruitment hub. Do you want to learn how to drive a truck? kindly call us 09092372617 #SafetyAdvocate\",\"url\":\"https:\\/\\/t.co\\/GG3FHytp28\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GG3FHytp28\",\"expanded_url\":\"http:\\/\\/www.thetruckademy.com\",\"display_url\":\"thetruckademy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":75,\"listed_count\":0,\"created_at\":\"Tue Feb 09 10:53:02 +0000 2021\",\"favourites_count\":115,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":266,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367117833369509889\\/b0fFj7Ge_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367117833369509889\\/b0fFj7Ge_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1359092875284332546\\/1642438151\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1672\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1673\":{\"id\":1390816022970634244,\"id_str\":\"1390816022970634244\",\"name\":\"Oyale Emmanuelaudu \\ud83c\\udd97\",\"screen_name\":\"Oyale_e\",\"location\":\"Lagos, Nigeria\",\"description\":\"Actor\\ud83c\\udf9e\\ufe0f\\n\\nYouTuber\\ud83d\\udd34\\n\\nMeta Verified Social Media Marketer\\u24c2\\ufe0f\\n\\nPhilanthropist\\ud83c\\udf0e\\n\\nChrist-Like Christian\\u2665\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/M6su1xhbtj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M6su1xhbtj\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCZlIPIlmbmLEQn4PzOFablA\",\"display_url\":\"youtube.com\\/channel\\/UCZlIP\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":102,\"friends_count\":292,\"listed_count\":0,\"created_at\":\"Fri May 07 23:49:32 +0000 2021\",\"favourites_count\":146,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555102907023986688\\/JG0GXUeH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555102907023986688\\/JG0GXUeH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1390816022970634244\\/1659599632\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1674\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1675\":{\"id\":1119322772260442114,\"id_str\":\"1119322772260442114\",\"name\":\"We-let properties\",\"screen_name\":\"properties_we\",\"location\":\"Abeokuta \",\"description\":\"We-let,We-sell, We-build & We-manage, properties across Ogun State and Nigeria at Large\",\"url\":\"https:\\/\\/t.co\\/3xW1OZRIq9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3xW1OZRIq9\",\"expanded_url\":\"http:\\/\\/weletproperties.com.ng\",\"display_url\":\"weletproperties.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":519,\"listed_count\":5,\"created_at\":\"Fri Apr 19 19:31:59 +0000 2019\",\"favourites_count\":323,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":358,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1226978701465833475\\/c5eDzFZE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1226978701465833475\\/c5eDzFZE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1119322772260442114\\/1555713334\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1676\":{\"id\":1519972652,\"id_str\":\"1519972652\",\"name\":\"Orczy BARON\",\"screen_name\":\"OrczyB\",\"location\":\"Accra, Ghana\",\"description\":\"Be the change U want to see\",\"url\":\"https:\\/\\/t.co\\/LneK4J09o6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LneK4J09o6\",\"expanded_url\":\"https:\\/\\/minepi.com\\/dBaronX\",\"display_url\":\"minepi.com\\/dBaronX\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":143,\"listed_count\":0,\"created_at\":\"Sat Jun 15 17:30:25 +0000 2013\",\"favourites_count\":115,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1306196051834146817\\/YUMtotoD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1306196051834146817\\/YUMtotoD_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1677\":{\"id\":260590345,\"id_str\":\"260590345\",\"name\":\"Jennifer\",\"screen_name\":\"jen_mazzei\",\"location\":\"VA\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":162,\"listed_count\":0,\"created_at\":\"Fri Mar 04 05:06:17 +0000 2011\",\"favourites_count\":104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":120,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1241204115583139842\\/Mtcr9MRt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1241204115583139842\\/Mtcr9MRt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/260590345\\/1533128811\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1678\":{\"id\":1519972652,\"id_str\":\"1519972652\",\"name\":\"Orczy BARON\",\"screen_name\":\"OrczyB\",\"location\":\"Accra, Ghana\",\"description\":\"Be the change U want to see\",\"url\":\"https:\\/\\/t.co\\/LneK4J09o6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LneK4J09o6\",\"expanded_url\":\"https:\\/\\/minepi.com\\/dBaronX\",\"display_url\":\"minepi.com\\/dBaronX\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":143,\"listed_count\":0,\"created_at\":\"Sat Jun 15 17:30:25 +0000 2013\",\"favourites_count\":115,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1306196051834146817\\/YUMtotoD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1306196051834146817\\/YUMtotoD_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1679\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1680\":{\"id\":1485727139051843594,\"id_str\":\"1485727139051843594\",\"name\":\"Lalipop\",\"screen_name\":\"iam_lalipop\",\"location\":\"Accra, Ghana\",\"description\":\"Pan-Africanist|| Barca fan|| Free Thinker|||tweets are my opinions || retweets are not endorsement \\u274c\\n\\nApart from my ancestors, I don't belief in any other god!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":958,\"listed_count\":3,\"created_at\":\"Mon Jan 24 21:32:33 +0000 2022\",\"favourites_count\":2572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485727139051843594\\/1650988944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1681\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1682\":{\"id\":294722720,\"id_str\":\"294722720\",\"name\":\"Livingstone Eghosa O\",\"screen_name\":\"ItsEghosa\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2664 #Invent #Create #Make \\u25c7 #Dontgiveup #BePositive \\u2667 #challengeyourself Keepit \\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":326,\"friends_count\":443,\"listed_count\":1,\"created_at\":\"Sat May 07 17:04:15 +0000 2011\",\"favourites_count\":886,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":911,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1248742253629235206\\/gQEP6zoy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1248742253629235206\\/gQEP6zoy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/294722720\\/1585394057\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1683\":{\"id\":2741620606,\"id_str\":\"2741620606\",\"name\":\"Obimoney!!! \\ud83d\\udc99\\u2764\\ufe0f\\ud83d\\udcc8\\ud83d\\udcc9\",\"screen_name\":\"samuelobiora21\",\"location\":\"Somewhere in Nigeria\",\"description\":\"Medical Student \\ud83d\\udc68\\u200d\\u2695\\ufe0f\\nEntrepreneur \\ud83d\\udcb5\\ud83d\\udcb5\\nExtrovert \\ud83d\\udcaf\\ud83d\\udcaf\\nForex trader and Networker!!\\nFollow back \\u270c\\ufe0f Messi @Fcbarcelona \\ud83d\\udc99\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6129,\"friends_count\":6083,\"listed_count\":0,\"created_at\":\"Wed Aug 13 09:40:48 +0000 2014\",\"favourites_count\":26125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":32074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554453009328898052\\/mbNV64pn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554453009328898052\\/mbNV64pn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2741620606\\/1659445090\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1684\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1685\":{\"id\":764637083315077120,\"id_str\":\"764637083315077120\",\"name\":\"\\ud83c\\udf89ItsrealDjzee\\u2764\",\"screen_name\":\"itsrealdjzee1\",\"location\":\"Aba, Nigeria\",\"description\":\"official \\ud83c\\udf9bDisk Jockey @RealFmab\\ud83d\\udcfb Comedian \\ud83e\\udd23media influencer \\nEvents management's\\ud83d\\udc52\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1541,\"friends_count\":890,\"listed_count\":1,\"created_at\":\"Sun Aug 14 01:37:41 +0000 2016\",\"favourites_count\":1029,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":615,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536623508066811905\\/SBDyGfB0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536623508066811905\\/SBDyGfB0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/764637083315077120\\/1612864976\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1686\":{\"id\":1022792578998181888,\"id_str\":\"1022792578998181888\",\"name\":\"S7venth _Halo\",\"screen_name\":\"WilzMalifa\",\"location\":\"Lagos, Nigeria\",\"description\":\"In life you come and you go but your impact stays.\\nActive Pioneer \\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Fri Jul 27 10:35:28 +0000 2018\",\"favourites_count\":524,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2091,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551557134835499011\\/cXgOzoUt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551557134835499011\\/cXgOzoUt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1022792578998181888\\/1602463275\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1687\":{\"id\":1493162921177894914,\"id_str\":\"1493162921177894914\",\"name\":\"Pura Vida Beach Lagos\",\"screen_name\":\"PuraVidaLagos\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pura Vida\\ud83c\\udfd6\\ufe0f Located in Ilashe, Lagos, \\ud83d\\udd34 we only take direct booking. We do not work with agents. Tag us #puravidalagos https:\\/\\/t.co\\/Kw9R8r0rE\",\"url\":\"https:\\/\\/t.co\\/hTtatbIiDi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hTtatbIiDi\",\"expanded_url\":null,\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Mon Feb 14 09:59:53 +0000 2022\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":73,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493169040357007362\\/yAe2dzlO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493169040357007362\\/yAe2dzlO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493162921177894914\\/1644834281\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1688\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1689\":{\"id\":260590345,\"id_str\":\"260590345\",\"name\":\"Jennifer\",\"screen_name\":\"jen_mazzei\",\"location\":\"VA\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":162,\"listed_count\":0,\"created_at\":\"Fri Mar 04 05:06:17 +0000 2011\",\"favourites_count\":104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":120,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1241204115583139842\\/Mtcr9MRt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1241204115583139842\\/Mtcr9MRt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/260590345\\/1533128811\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1690\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1691\":{\"id\":1384447899828957186,\"id_str\":\"1384447899828957186\",\"name\":\"Awireee\\ud83d\\udcb8\\ud83e\\udd74\",\"screen_name\":\"pelumiii_awiree\",\"location\":\"Nigeria\",\"description\":\"Eventsplanner \\u2022 Financial analysis \\u2022 GGMU \\u2022 emmanuelodunayomi@gmail.com. Comedian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Tue Apr 20 10:04:50 +0000 2021\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384447899828957186\\/1620914365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1692\":{\"id\":2613972650,\"id_str\":\"2613972650\",\"name\":\"BBNaija2022\",\"screen_name\":\"BBNaija_2022\",\"location\":\"Nigeria\",\"description\":\"Get all the latest Big Brother Naija 2022 Updates. This\\u2019s a fan page of BBNaija Subscribe to our YouTube Channel for Live Streams Link below\\u2935\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":13,\"listed_count\":4,\"created_at\":\"Wed Jul 09 18:07:39 +0000 2014\",\"favourites_count\":622,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2738,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2613972650\\/1652963380\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1693\":{\"id\":1510000322231549954,\"id_str\":\"1510000322231549954\",\"name\":\"Adiongano\",\"screen_name\":\"AAdiongano\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\nA Lawyer. Interested in Politics,History, Philosophy, Economics, Science, Music...\\n\\nalso plays a piano.\",\"url\":\"https:\\/\\/t.co\\/HHMvI2Wylw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HHMvI2Wylw\",\"expanded_url\":\"https:\\/\\/wa.me\\/+23407037217492\",\"display_url\":\"wa.me\\/+23407037217492\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Fri Apr 01 21:05:28 +0000 2022\",\"favourites_count\":2558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535227236621623297\\/c2E3SgoC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535227236621623297\\/c2E3SgoC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510000322231549954\\/1649790551\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1694\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1695\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1696\":{\"id\":843910826,\"id_str\":\"843910826\",\"name\":\"Joyner\\u26aa\\ufe0f\",\"screen_name\":\"Joynerkardinal\",\"location\":\"abuja\",\"description\":\"very simple guy \\ud83d\\udde3 footballer\\u2764\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1111,\"friends_count\":1326,\"listed_count\":0,\"created_at\":\"Mon Sep 24 16:49:32 +0000 2012\",\"favourites_count\":6904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1555,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1222836260772950017\\/mllR-qkP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1222836260772950017\\/mllR-qkP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/843910826\\/1576104534\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1697\":{\"id\":784318248342818816,\"id_str\":\"784318248342818816\",\"name\":\"Ocymichael\",\"screen_name\":\"Ocymichael2\",\"location\":\"Lagos\",\"description\":\"Am Ocy Dun Michael born in lagos breeds in Imo and Abia, am a comedian\\/musician, this account is for comedy\\/news, thanks https:\\/\\/t.co\\/triF03VRo9\",\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/OCY-DUN-Comedy-Studio-332084777678542\\/\",\"display_url\":\"facebook.com\\/OCY-DUN-Comedy\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/triF03VRo9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCy_wGytS8V\",\"display_url\":\"youtube.com\\/channel\\/UCy_wG\\u2026\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":448,\"friends_count\":423,\"listed_count\":1,\"created_at\":\"Fri Oct 07 09:03:37 +0000 2016\",\"favourites_count\":2449,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2346,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/784318248342818816\\/1591268979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1698\":{\"id\":260590345,\"id_str\":\"260590345\",\"name\":\"Jennifer\",\"screen_name\":\"jen_mazzei\",\"location\":\"VA\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":162,\"listed_count\":0,\"created_at\":\"Fri Mar 04 05:06:17 +0000 2011\",\"favourites_count\":104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":120,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1241204115583139842\\/Mtcr9MRt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1241204115583139842\\/Mtcr9MRt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/260590345\\/1533128811\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1699\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1700\":{\"id\":1497621902617100299,\"id_str\":\"1497621902617100299\",\"name\":\"CHB\",\"screen_name\":\"Bulky305\",\"location\":\"Lagos, Nigeria\",\"description\":\"Interior\\/Decor\\/Home\\/Office\\/Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Sat Feb 26 17:17:55 +0000 2022\",\"favourites_count\":738,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554055929389260800\\/-8x9tNwP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554055929389260800\\/-8x9tNwP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1701\":{\"id\":1489626117082423296,\"id_str\":\"1489626117082423296\",\"name\":\"Chinweuba C. Clement\",\"screen_name\":\"ChinweubaC2\",\"location\":\"Lagos, Nigeria\",\"description\":\"My dear, have fun, enjoy your life well and choose positive thinking.\\n\\nI am into Digital and Media Marketing | Web development.\\nFollow me for positive contents.\",\"url\":\"https:\\/\\/t.co\\/OjELYoIzTt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OjELYoIzTt\",\"expanded_url\":\"https:\\/\\/rebrand.ly\\/connect-with-Chinweuba\",\"display_url\":\"rebrand.ly\\/connect-with-C\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":67,\"listed_count\":0,\"created_at\":\"Fri Feb 04 15:45:43 +0000 2022\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":80,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548693923899625475\\/LWGv1KGd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548693923899625475\\/LWGv1KGd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489626117082423296\\/1652091009\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1702\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1703\":{\"id\":228142725,\"id_str\":\"228142725\",\"name\":\"Hillary\",\"screen_name\":\"hill831\",\"location\":\"Nigeria\",\"description\":\"Come closer to know me better.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":1359,\"listed_count\":4,\"created_at\":\"Sat Dec 18 21:12:27 +0000 2010\",\"favourites_count\":308,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":755,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1318851541911195648\\/faDDZB2X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1318851541911195648\\/faDDZB2X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/228142725\\/1603273688\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1704\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1705\":{\"id\":1552960003094503424,\"id_str\":\"1552960003094503424\",\"name\":\"Gilbert Ezenyimulu\",\"screen_name\":\"ezenwannemotors\",\"location\":\"Nigeria\",\"description\":\"| Dealers in both foreign and Registered vehicles | I\\u2019m here to serve you better | I buy, sell and swap | I also clear cars | \\u260e\\ufe0f 08130800836\",\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"expanded_url\":\"http:\\/\\/ezenwannemotors.com\",\"display_url\":\"ezenwannemotors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":120,\"listed_count\":0,\"created_at\":\"Fri Jul 29 10:12:33 +0000 2022\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552960003094503424\\/1659090359\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1706\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1707\":{\"id\":1554444925680361473,\"id_str\":\"1554444925680361473\",\"name\":\"Heavenly Happy\",\"screen_name\":\"Hhouseshortlet\",\"location\":\"\",\"description\":\"We are a residential Shortlet Apartment based in the mainland of Lagos offering exclusive and luxury holiday accommodation to guests from Nigeria and beyond.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Tue Aug 02 12:32:26 +0000 2022\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554445017619599360\\/ON6FdQnN_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554445017619599360\\/ON6FdQnN_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1708\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1709\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1710\":{\"id\":1519103438847725572,\"id_str\":\"1519103438847725572\",\"name\":\"Myles\",\"screen_name\":\"myles_pudo\",\"location\":\"Ghana\",\"description\":\"\\ud83d\\udd30Order visibility for merchants and consumers.\\n\\ud83d\\udd31#Daas Delivery as a service\",\"url\":\"https:\\/\\/t.co\\/K8bUSQUOpS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/K8bUSQUOpS\",\"expanded_url\":\"https:\\/\\/myles-web.netlify.app\\/\",\"display_url\":\"myles-web.netlify.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":265,\"friends_count\":219,\"listed_count\":0,\"created_at\":\"Tue Apr 26 23:58:03 +0000 2022\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":89,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519135704839827459\\/G6-lrHse_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519135704839827459\\/G6-lrHse_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519103438847725572\\/1659729045\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1711\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1712\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1713\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1714\":{\"id\":1060637099035160576,\"id_str\":\"1060637099035160576\",\"name\":\"zee's grills& co\",\"screen_name\":\"zees_grillz\",\"location\":\"Ogun, Nigeria\",\"description\":\"buy rich creamy Burger, \\nshawama \\nBBQ\\nchicken & chip\\npancakes \\nGizdodo \\nwaffles \\naffordable rate in abuja. order on WhatsApp 07017335573, I.G: Zees_grills_co\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3795,\"friends_count\":3376,\"listed_count\":19,\"created_at\":\"Thu Nov 08 20:56:04 +0000 2018\",\"favourites_count\":3187,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5939,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1185268732999938054\\/wE60t49b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1185268732999938054\\/wE60t49b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1060637099035160576\\/1571425066\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1715\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1716\":{\"id\":1498292935091179520,\"id_str\":\"1498292935091179520\",\"name\":\"Pencity Realty\",\"screen_name\":\"PencityRealty\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pencity Realty Limited is a Real Estate and Construction company that is poised to provide both luxury and affordable real estate services in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/YtDevDZBPz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YtDevDZBPz\",\"expanded_url\":\"http:\\/\\/pencityrealty.com\",\"display_url\":\"pencityrealty.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Mon Feb 28 13:44:25 +0000 2022\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508752476639571973\\/Q2joeuzR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508752476639571973\\/Q2joeuzR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498292935091179520\\/1648549740\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1717\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1718\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1719\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1720\":{\"id\":988365854411812866,\"id_str\":\"988365854411812866\",\"name\":\"Most Handsome Guy in Jos \\ud83d\\ude0e\",\"screen_name\":\"buzzy_comedian\",\"location\":\"\",\"description\":\"Stand-Up Comedian,\\nEvents MC,\\nActor,\\nContent creator,\\nOnline Brand\\/Business Influencer,\\nOAP,\\nYouTube Channel link https:\\/\\/t.co\\/JwEuXMxofk\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JwEuXMxofk\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCg1FUPoc7XIl6lDu\",\"display_url\":\"youtube.com\\/channel\\/UCg1FU\\u2026\",\"indices\":[114,137]}]}},\"protected\":false,\"followers_count\":2107,\"friends_count\":2290,\"listed_count\":0,\"created_at\":\"Mon Apr 23 10:35:57 +0000 2018\",\"favourites_count\":8757,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4264,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502992487421517829\\/7uR9Pqh3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502992487421517829\\/7uR9Pqh3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988365854411812866\\/1616367957\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1721\":{\"id\":3121548731,\"id_str\":\"3121548731\",\"name\":\"Emuka Ikedinachi\",\"screen_name\":\"Iykemuka\",\"location\":\"Lagos, Nigeria.\",\"description\":\"I am a cool,calm person that loves to bring out the best in humans. Passionate about human beings.\\nAn Entrepreneur, an Accountant, a teacher and a learner.\",\"url\":\"https:\\/\\/t.co\\/TC7IyG3da4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TC7IyG3da4\",\"expanded_url\":\"http:\\/\\/greatnesstab.blogspot.com\",\"display_url\":\"greatnesstab.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":337,\"friends_count\":352,\"listed_count\":0,\"created_at\":\"Fri Mar 27 15:31:08 +0000 2015\",\"favourites_count\":727,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":530,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530119963750572032\\/DTiv47SR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530119963750572032\\/DTiv47SR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3121548731\\/1653644123\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1722\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1723\":{\"id\":1075280000293715970,\"id_str\":\"1075280000293715970\",\"name\":\"SWAT C\",\"screen_name\":\"swatc_music\",\"location\":\"Nigeria\",\"description\":\"RECORDING Artist \\n SONG WIRTER,\\n VOCALIST \\n\\nfor booking email: kelvinobi32@gmail.com\",\"url\":\"https:\\/\\/t.co\\/gLEJD6bFyN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gLEJD6bFyN\",\"expanded_url\":\"https:\\/\\/ampl.ink\\/stream-mercy\",\"display_url\":\"ampl.ink\\/stream-mercy\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":279,\"friends_count\":613,\"listed_count\":0,\"created_at\":\"Wed Dec 19 06:41:44 +0000 2018\",\"favourites_count\":15107,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2788,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514432474583027717\\/4kOhA_gf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514432474583027717\\/4kOhA_gf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1075280000293715970\\/1645859374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1724\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1725\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1726\":{\"id\":1510753964660305923,\"id_str\":\"1510753964660305923\",\"name\":\"Lil Shappi\",\"screen_name\":\"lil_shappi\",\"location\":\"Lagos, Nigeria\",\"description\":\"(The Lyrically Shappi) A man on a mission without a vision ends with confusion (2022 deserve good music)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":77,\"friends_count\":70,\"listed_count\":0,\"created_at\":\"Sun Apr 03 23:00:27 +0000 2022\",\"favourites_count\":87,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":68,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523418108672811009\\/rkddDEyv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523418108672811009\\/rkddDEyv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510753964660305923\\/1649027805\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1727\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1728\":{\"id\":931931411350802432,\"id_str\":\"931931411350802432\",\"name\":\"Steve Obinna\",\"screen_name\":\"steve_crownn\",\"location\":\"Imo State , Nigeria\",\"description\":\"|I love my MOTHER\\u2764\\ufe0f|Let Love Lead \\ud83d\\udc9d|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":680,\"friends_count\":3136,\"listed_count\":5,\"created_at\":\"Sat Nov 18 17:05:37 +0000 2017\",\"favourites_count\":6167,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553656800297336832\\/qNxtqrzp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553656800297336832\\/qNxtqrzp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/931931411350802432\\/1659640556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1729\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1730\":{\"id\":1542795983108673536,\"id_str\":\"1542795983108673536\",\"name\":\"ziclisynergy\",\"screen_name\":\"ziclisynergy1\",\"location\":\"Lagos, Nigeria.\",\"description\":\"Zicli synergy limited is the manufacturer of Zicli paint and Pharmaceutical products. The company is also the sole distributor of Inesfly Insecticide Paint.\",\"url\":\"https:\\/\\/t.co\\/iennC3wYC0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iennC3wYC0\",\"expanded_url\":\"https:\\/\\/ziclisynergy.com\\/\",\"display_url\":\"ziclisynergy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Fri Jul 01 09:03:53 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542796384805523456\\/6gOJlT1w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542796384805523456\\/6gOJlT1w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1542795983108673536\\/1656666320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1731\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1732\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1733\":{\"id\":1276194873335590913,\"id_str\":\"1276194873335590913\",\"name\":\"JAMES EPOM COMEDY.\",\"screen_name\":\"JamesEpomComedy\",\"location\":\"Cross River State.\",\"description\":\"A COMEDIAN \\nAN ACTOR.\\n\\nPLS SUSCRIBE TO OUR YOUTUBE CHANNEL.\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47.\\nhttps:\\/\\/t.co\\/IJB1axlB8G\",\"url\":\"https:\\/\\/t.co\\/5Ht0zUq863\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5Ht0zUq863\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCx_RDBC4vxNKf7DZOPSUyAw\",\"display_url\":\"youtube.com\\/channel\\/UCx_RD\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IJB1axlB8G\",\"expanded_url\":\"http:\\/\\/youtube.co\",\"display_url\":\"youtube.co\",\"indices\":[70,93]}]}},\"protected\":false,\"followers_count\":158,\"friends_count\":338,\"listed_count\":0,\"created_at\":\"Thu Jun 25 16:46:06 +0000 2020\",\"favourites_count\":304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":275,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1389851609405038594\\/4hRxyowL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1389851609405038594\\/4hRxyowL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1276194873335590913\\/1648631641\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1734\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1735\":{\"id\":1313401148813053952,\"id_str\":\"1313401148813053952\",\"name\":\"Thejosephjegede\",\"screen_name\":\"thejosephjegede\",\"location\":\"Nigeria\",\"description\":\"He\\/him, \\nWriter, Blogger and Author, Polyglot and Language Coach, Translator and Interpreter, Book- and Boot-freak. https:\\/\\/t.co\\/Ye0WayLot5\",\"url\":\"https:\\/\\/t.co\\/qCPIAwcHqh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qCPIAwcHqh\",\"expanded_url\":\"https:\\/\\/theeverymann.blogspot.com\\/?m=1\",\"display_url\":\"theeverymann.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ye0WayLot5\",\"expanded_url\":\"http:\\/\\/www.novelty-fiction.com\\/gazette\\/2022\",\"display_url\":\"novelty-fiction.com\\/gazette\\/2022\",\"indices\":[117,140]}]}},\"protected\":false,\"followers_count\":135,\"friends_count\":258,\"listed_count\":0,\"created_at\":\"Tue Oct 06 08:50:24 +0000 2020\",\"favourites_count\":2948,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":924,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537752490363568128\\/vt_OZgIb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537752490363568128\\/vt_OZgIb_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1736\":{\"id\":1399365823517671424,\"id_str\":\"1399365823517671424\",\"name\":\"loyalist \\ud83d\\udc99\\ud83c\\udfce\\ud83d\\ude97\\ud83d\\udcabFKCC\",\"screen_name\":\"femkings\",\"location\":\"Lagos, Nigeria\",\"description\":\"WE DEAL |||| IN ALL AUTOMOBILE BRANDS ALSO DO PRE ORDER... FROM USA\\ud83c\\uddfa\\ud83c\\uddf8FORGIEN USED OR LOCALLY REGISTERED ...@femkings .. Suspended acct @FEMKINGSAUTOS\",\"url\":\"https:\\/\\/t.co\\/4BcFZtj0Tn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4BcFZtj0Tn\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/CBBYUHF3GGDGM1\",\"display_url\":\"wa.me\\/message\\/CBBYUH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":591,\"friends_count\":2506,\"listed_count\":3,\"created_at\":\"Mon May 31 14:03:17 +0000 2021\",\"favourites_count\":2788,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480189045758214153\\/3u-HzfwL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480189045758214153\\/3u-HzfwL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399365823517671424\\/1642261100\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1737\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1738\":{\"id\":1040141394399178752,\"id_str\":\"1040141394399178752\",\"name\":\"Claudia B. Adusei\",\"screen_name\":\"AduseiClaudia\",\"location\":\"Accra, Ghana\",\"description\":\"God-minded \\nPropagating the Gospel of Jesus Christ\\nI'm special because I'm Me\\ud83d\\ude04\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":251,\"listed_count\":1,\"created_at\":\"Thu Sep 13 07:33:28 +0000 2018\",\"favourites_count\":4888,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1653,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1383773688210739212\\/x6kTTmPX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1383773688210739212\\/x6kTTmPX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1040141394399178752\\/1542307105\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1739\":{\"id\":1011909252594716672,\"id_str\":\"1011909252594716672\",\"name\":\"G126 Continental Travels\",\"screen_name\":\"g126travelsng\",\"location\":\"Lagos, Nigeria\",\"description\":\"G126 renders travel management services. Airline ticketing, hotels, tours, car rentals and suggestions for beautiful destinations.\",\"url\":\"https:\\/\\/t.co\\/LI7FsS4IGE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LI7FsS4IGE\",\"expanded_url\":\"http:\\/\\/www.g126.com.ng\",\"display_url\":\"g126.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Jun 27 09:49:01 +0000 2018\",\"favourites_count\":376,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":289,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1227192821343563776\\/rsmJCRMW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1227192821343563776\\/rsmJCRMW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1011909252594716672\\/1583328528\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1740\":{\"id\":1485727139051843594,\"id_str\":\"1485727139051843594\",\"name\":\"Lalipop\",\"screen_name\":\"iam_lalipop\",\"location\":\"Accra, Ghana\",\"description\":\"Pan-Africanist|| Barca fan|| Free Thinker|||tweets are my opinions || retweets are not endorsement \\u274c\\n\\nApart from my ancestors, I don't belief in any other god!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":65,\"friends_count\":958,\"listed_count\":3,\"created_at\":\"Mon Jan 24 21:32:33 +0000 2022\",\"favourites_count\":2572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505615294634643458\\/x6LGDEgd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485727139051843594\\/1650988944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1741\":{\"id\":2876181225,\"id_str\":\"2876181225\",\"name\":\"zubenna\",\"screen_name\":\"zubboke42\",\"location\":\"Porthacourt,Nigeria \",\"description\":\"Keep pushing never give up ,You can\\u2019t be unlucky for a year.|Port harcourt boy Original|IG:- @ zubenna\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":62,\"listed_count\":0,\"created_at\":\"Fri Nov 14 09:27:22 +0000 2014\",\"favourites_count\":338,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":158,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2876181225\\/1653251845\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1742\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1743\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1744\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1745\":{\"id\":1081091726188654597,\"id_str\":\"1081091726188654597\",\"name\":\"Idokz\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Dannypete4\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm always inquisitive\\ud83e\\udd14, always thriving, can't stop won't stop\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":1912,\"listed_count\":0,\"created_at\":\"Fri Jan 04 07:35:28 +0000 2019\",\"favourites_count\":9810,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555579170822012930\\/1CM9iE6P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555579170822012930\\/1CM9iE6P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1081091726188654597\\/1658074220\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1746\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1747\":{\"id\":1256542153880240128,\"id_str\":\"1256542153880240128\",\"name\":\"Anna Mungasa\",\"screen_name\":\"AnnaMungasa\",\"location\":\"Uganda\",\"description\":\"#LoveAbounds\\ud83d\\udc93\\na professional waitress, \\nlove acting &\\nGod's last born\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":702,\"friends_count\":906,\"listed_count\":0,\"created_at\":\"Sat May 02 11:13:13 +0000 2020\",\"favourites_count\":16382,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":660,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510160798999584768\\/SHQAGUn-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510160798999584768\\/SHQAGUn-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1256542153880240128\\/1588888495\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1748\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1749\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1750\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1751\":{\"id\":1144927690417463296,\"id_str\":\"1144927690417463296\",\"name\":\"efya seedorfina\\ud83c\\udf7a\\ud83e\\udd70\\ud83c\\udf89\",\"screen_name\":\"EfyaSeedorfina\",\"location\":\"Winneba, Ghana\",\"description\":\"\\u2764\\ufe0finfluencer \\u2764\\ufe0fActress \\u2764\\ufe0fmotivator \\u2764\\ufe0fhappy child \\ud83e\\uddd2\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":745,\"friends_count\":724,\"listed_count\":0,\"created_at\":\"Sat Jun 29 11:16:47 +0000 2019\",\"favourites_count\":1669,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1564,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1427895945145077763\\/OxG6L7yQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1427895945145077763\\/OxG6L7yQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1144927690417463296\\/1650649695\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1752\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1753\":{\"id\":1355861937670811648,\"id_str\":\"1355861937670811648\",\"name\":\"Silvaweb\",\"screen_name\":\"Silvaweb247\",\"location\":\"Anambra, Nigeria\",\"description\":\"Business\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":416,\"listed_count\":0,\"created_at\":\"Sun Jan 31 12:54:25 +0000 2021\",\"favourites_count\":199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":115,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554882753749028869\\/IQfH-ItS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554882753749028869\\/IQfH-ItS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355861937670811648\\/1613665570\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1754\":{\"id\":1483119012552843267,\"id_str\":\"1483119012552843267\",\"name\":\"Monad\\ud83d\\udd25\\ud83d\\udd25\",\"screen_name\":\"Monad_118\",\"location\":\"Benin-City, Nigeria\",\"description\":\"won't ever let nothing that's got a skin to take Jehovah place\\ud83e\\udd11\\u2764\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":196,\"listed_count\":1,\"created_at\":\"Mon Jan 17 16:48:42 +0000 2022\",\"favourites_count\":1826,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":445,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551618290203623424\\/7a82CAEV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551618290203623424\\/7a82CAEV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483119012552843267\\/1659706709\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1755\":{\"id\":196563354,\"id_str\":\"196563354\",\"name\":\"the diverse human \\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\uddf2\\ud83c\\uddfa \\ud83c\\udde6\\ud83c\\uddea\",\"screen_name\":\"iamhorlagoke\",\"location\":\"Nigeria\",\"description\":\"Conceptual Digital Artist | Practically insane with IT | Swing Trader | Hustler | Co-Creator @GOkari_ng | Learner | \\ud83c\\udf10 Portfolio @sigit_global\",\"url\":\"https:\\/\\/t.co\\/vJkEfIuEuq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vJkEfIuEuq\",\"expanded_url\":\"http:\\/\\/goke.disha.page\",\"display_url\":\"goke.disha.page\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":143,\"friends_count\":363,\"listed_count\":3,\"created_at\":\"Wed Sep 29 12:10:57 +0000 2010\",\"favourites_count\":139,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478431704968617988\\/lA7F0EbG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478431704968617988\\/lA7F0EbG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/196563354\\/1603230307\",\"profile_link_color\":\"05152C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1756\":{\"id\":1482743795691184132,\"id_str\":\"1482743795691184132\",\"name\":\"JUBILEEY NGA\",\"screen_name\":\"NgaJubilee\",\"location\":\"Lekki Lagos\",\"description\":\"JUBILEEYWORLDWIDE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Sun Jan 16 15:57:34 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537198796005904384\\/dHNO-xOJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537198796005904384\\/dHNO-xOJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482743795691184132\\/1656017149\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1757\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1758\":{\"id\":1509818570452221952,\"id_str\":\"1509818570452221952\",\"name\":\"Lawal Faith (Techsential)\",\"screen_name\":\"adesayo_faith\",\"location\":\"Lagos, Nigeria\",\"description\":\"Digital Marketer - Email marketing and Automation || Sales Funnel\\/Landing page design || Website and App design || UI\\/UX (Figma, Adobe XD) || Student\",\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/techsential\",\"display_url\":\"behance.net\\/techsential\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":791,\"listed_count\":1,\"created_at\":\"Fri Apr 01 09:03:13 +0000 2022\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509818570452221952\\/1658560032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1759\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1760\":{\"id\":1509818570452221952,\"id_str\":\"1509818570452221952\",\"name\":\"Lawal Faith (Techsential)\",\"screen_name\":\"adesayo_faith\",\"location\":\"Lagos, Nigeria\",\"description\":\"Digital Marketer - Email marketing and Automation || Sales Funnel\\/Landing page design || Website and App design || UI\\/UX (Figma, Adobe XD) || Student\",\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/techsential\",\"display_url\":\"behance.net\\/techsential\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":791,\"listed_count\":1,\"created_at\":\"Fri Apr 01 09:03:13 +0000 2022\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509818570452221952\\/1658560032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1761\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1762\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1763\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1764\":{\"id\":1508648173664980994,\"id_str\":\"1508648173664980994\",\"name\":\"Fs Commerce\",\"screen_name\":\"fs_commerce\",\"location\":\"Lagos\",\"description\":\"Full Stack Ecommerce Website\\/ Website\\/ Shopify Store Developer with Proven Years Of Experience\\n\\n#twitter #instagram #facebook #memes #tiktok #love #follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Tue Mar 29 03:32:42 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":269,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508651175108829187\\/iqtzEW25_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508651175108829187\\/iqtzEW25_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1765\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1766\":{\"id\":1355861937670811648,\"id_str\":\"1355861937670811648\",\"name\":\"Silvaweb\",\"screen_name\":\"Silvaweb247\",\"location\":\"Anambra, Nigeria\",\"description\":\"Business\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":416,\"listed_count\":0,\"created_at\":\"Sun Jan 31 12:54:25 +0000 2021\",\"favourites_count\":199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":115,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554882753749028869\\/IQfH-ItS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554882753749028869\\/IQfH-ItS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355861937670811648\\/1613665570\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1767\":{\"id\":93714489,\"id_str\":\"93714489\",\"name\":\"cy4ce 1chenaana\",\"screen_name\":\"Builsa_MaN\",\"location\":\"Ghana\",\"description\":\"|Sales|promotions\",\"url\":\"https:\\/\\/t.co\\/da5p8BYk2x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/da5p8BYk2x\",\"expanded_url\":\"https:\\/\\/builsamanstore.company.site\",\"display_url\":\"builsamanstore.company.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1237,\"friends_count\":1044,\"listed_count\":4,\"created_at\":\"Mon Nov 30 21:35:23 +0000 2009\",\"favourites_count\":1915,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3878,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553855716313780225\\/eLQG5U8K_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553855716313780225\\/eLQG5U8K_normal.jpg\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"DBE9ED\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1768\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1769\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1770\":{\"id\":1504597159013928975,\"id_str\":\"1504597159013928975\",\"name\":\"Ms Willie's period care boxes\\ud83d\\udc9c\",\"screen_name\":\"willi_eee\",\"location\":\"Abuja, Nigeria\",\"description\":\"period care packages, curated and delivered to you door step every month \\ud83c\\udf3a\",\"url\":\"https:\\/\\/t.co\\/hr5m0QipA4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hr5m0QipA4\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/QQOQ77W3YW2YN1\",\"display_url\":\"wa.me\\/message\\/QQOQ77\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142,\"friends_count\":197,\"listed_count\":0,\"created_at\":\"Thu Mar 17 23:15:11 +0000 2022\",\"favourites_count\":345,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":153,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541094833388929027\\/VP3kYcqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541094833388929027\\/VP3kYcqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1504597159013928975\\/1656260668\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1771\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1772\":{\"id\":1484150022614695938,\"id_str\":\"1484150022614695938\",\"name\":\"Superfmph\",\"screen_name\":\"superfm933\",\"location\":\"Port Harcourt, Rivers State.\",\"description\":\"Super FM is a family and urban talk sustain station located in Rivers state to transmit commercially viable, relevant and strategic programs\\/shows that inform,\",\"url\":\"https:\\/\\/t.co\\/3s3kcnef0w\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3s3kcnef0w\",\"expanded_url\":\"http:\\/\\/superfm.online\\/ph\",\"display_url\":\"superfm.online\\/ph\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":550,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Thu Jan 20 13:07:59 +0000 2022\",\"favourites_count\":766,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1089,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551832328787435521\\/X5zXtxh3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551832328787435521\\/X5zXtxh3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484150022614695938\\/1658820635\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1773\":{\"id\":461006881,\"id_str\":\"461006881\",\"name\":\"El Matador\",\"screen_name\":\"Okai_AA\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Media Planning| Business Strategy. Abuja \\ud83c\\uddf3\\ud83c\\uddec & Amsterdam \\ud83c\\uddf3\\ud83c\\uddf1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":159,\"friends_count\":155,\"listed_count\":1,\"created_at\":\"Wed Jan 11 10:40:06 +0000 2012\",\"favourites_count\":11772,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10718,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508430160462241793\\/MEwSMJUo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508430160462241793\\/MEwSMJUo_normal.jpg\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1774\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1775\":{\"id\":2170873966,\"id_str\":\"2170873966\",\"name\":\"Serial Killer\",\"screen_name\":\"mr_caustic\",\"location\":\"Benin city, Edo state, Nigeria\",\"description\":\"A singer,\\nSongwriter, \\nEntertainer \\ncontact +2349057802308, jeffojeez@gmail.com\",\"url\":\"https:\\/\\/t.co\\/OjnQb2MA5N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OjnQb2MA5N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/artist\\/mr_caustic\",\"display_url\":\"audiomack.com\\/artist\\/mr_caus\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":254,\"listed_count\":4,\"created_at\":\"Wed Nov 06 14:20:38 +0000 2013\",\"favourites_count\":2396,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5302,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147520360167936000\\/_N4oUrKW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147520360167936000\\/_N4oUrKW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2170873966\\/1612859494\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1776\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1777\":{\"id\":1653994592,\"id_str\":\"1653994592\",\"name\":\"Olaadura Olayinka Michael\",\"screen_name\":\"olaadura4christ\",\"location\":\"Oyo, Nigeria\",\"description\":\"A CHRISTIAN,A PROPHETIC EVANGELIST GOSPEL ARTIST, RELATIONSHIP COACH\\/COUNSELOR, A POLITICIAN.\\nThe chief officer at DIVINE NEWS MEDIA.\",\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"expanded_url\":\"http:\\/\\/mixlr.com\\/divine-news-media\",\"display_url\":\"mixlr.com\\/divine-news-me\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":102,\"listed_count\":0,\"created_at\":\"Wed Aug 07 22:15:50 +0000 2013\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":143,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1778\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1779\":{\"id\":2885459335,\"id_str\":\"2885459335\",\"name\":\"Database World\",\"screen_name\":\"Sir_Money_gh\",\"location\":\"ghana\",\"description\":\"Database activist \\nemail benhast21@gmail.com\\nIG @sir_money_ #Database #oracle #PowerBI\\n@oracle @mssqlserver\",\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCjqrnmLvpmpU4nIFjOYPUGQ\",\"display_url\":\"youtube.com\\/channel\\/UCjqrn\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":328,\"friends_count\":269,\"listed_count\":1,\"created_at\":\"Fri Oct 31 16:29:15 +0000 2014\",\"favourites_count\":6043,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7020,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2885459335\\/1641320456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1780\":{\"id\":1538854958275125249,\"id_str\":\"1538854958275125249\",\"name\":\"Medagh_\",\"screen_name\":\"Medagh_\",\"location\":\"Adabraka\",\"description\":\"Dealers in quality and affordable home textiles. https:\\/\\/t.co\\/0YQ0YuXyQq\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0YQ0YuXyQq\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/TXVA7V2RXYFDE1\",\"display_url\":\"wa.me\\/message\\/TXVA7V\\u2026\",\"indices\":[49,72]}]}},\"protected\":false,\"followers_count\":3,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Mon Jun 20 12:03:21 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542410405280088064\\/9nE9USDO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542410405280088064\\/9nE9USDO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1781\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1782\":{\"id\":1328264006402904064,\"id_str\":\"1328264006402904064\",\"name\":\"Bona T\",\"screen_name\":\"Danielf35506865\",\"location\":\"Ogun, Nigeria\",\"description\":\"Hope to cooperate with you.\\ud83c\\udde8\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde7\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Mon Nov 16 09:09:59 +0000 2020\",\"favourites_count\":7,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554418462646222849\\/UMT4Os1-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554418462646222849\\/UMT4Os1-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1328264006402904064\\/1659376795\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1783\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1784\":{\"id\":851710432083574784,\"id_str\":\"851710432083574784\",\"name\":\"dear dapson\",\"screen_name\":\"DearDapson\",\"location\":\"Lagos, Nigeria\",\"description\":\"Therapist\\n\\n\\nThe Scopio King\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":204,\"friends_count\":112,\"listed_count\":0,\"created_at\":\"Tue Apr 11 08:16:05 +0000 2017\",\"favourites_count\":548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3909,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1128995032147611648\\/gzzdJj0z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1128995032147611648\\/gzzdJj0z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1785\":{\"id\":46837236,\"id_str\":\"46837236\",\"name\":\"George Uwaifo\",\"screen_name\":\"GeorgeUwaifo\",\"location\":\"Lagos, Nigeria\",\"description\":\"A computer &natural scientist; Author; A social, political, sport & MMA blogger; A profound thinker; lover of the cosmos; Good humored & a student of business.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":828,\"friends_count\":217,\"listed_count\":49,\"created_at\":\"Sat Jun 13 05:51:43 +0000 2009\",\"favourites_count\":16750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":35635,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550860318535999488\\/ZrRki5_1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550860318535999488\\/ZrRki5_1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/46837236\\/1515761491\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1786\":{\"id\":1449101836116545536,\"id_str\":\"1449101836116545536\",\"name\":\"Alpha\",\"screen_name\":\"alpha_tettey\",\"location\":\"Tema, Ghana\",\"description\":\"Do charity in Dignity....\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Fri Oct 15 19:57:11 +0000 2021\",\"favourites_count\":939,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":289,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554419476090724357\\/pmirfVRR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554419476090724357\\/pmirfVRR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1449101836116545536\\/1647178764\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1787\":{\"id\":1387101620555685888,\"id_str\":\"1387101620555685888\",\"name\":\"Grizzly Dan\",\"screen_name\":\"dan_nyeche\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Stop surviving and start Living. \\u26a0\\ufe0f\\ud83d\\uded0 Always DYOR. NFA | #Btc | #Tether |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":7,\"created_at\":\"Tue Apr 27 17:50:24 +0000 2021\",\"favourites_count\":1866,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387101620555685888\\/1658484935\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1788\":{\"id\":828662474,\"id_str\":\"828662474\",\"name\":\"\\ud83c\\udd7f\\ufe0ficaso Of Lagos \\u00ae\\u2122\",\"screen_name\":\"ee_zuu_art\",\"location\":\"Lagos, Nigeria\",\"description\":\"B.Eng Civil Engineering \\ud83d\\udc77 || Digital_illustrator \\ud83c\\udfa8 || Affiliate marketing \\u2622|| I SELL Phones \\ud83d\\udcf2 & Laptops \\ud83d\\udcbb|| \\u260e\\ufe0f\\ud83d\\udce5 08089519766 || \\ud83d\\udd34 ManUtd & CR7\\ud83d\\udd1d.\",\"url\":\"https:\\/\\/t.co\\/d38nqLFZus\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/d38nqLFZus\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348089519766\",\"display_url\":\"wa.me\\/+2348089519766\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1094,\"friends_count\":1088,\"listed_count\":0,\"created_at\":\"Mon Sep 17 08:49:47 +0000 2012\",\"favourites_count\":18340,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16800,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546521641248854016\\/UjcerCd2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546521641248854016\\/UjcerCd2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/828662474\\/1646120759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1789\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1790\":{\"id\":1552960003094503424,\"id_str\":\"1552960003094503424\",\"name\":\"Gilbert Ezenyimulu\",\"screen_name\":\"ezenwannemotors\",\"location\":\"Nigeria\",\"description\":\"| Dealers in both foreign and Registered vehicles | I\\u2019m here to serve you better | I buy, sell and swap | I also clear cars | \\u260e\\ufe0f 08130800836\",\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"expanded_url\":\"http:\\/\\/ezenwannemotors.com\",\"display_url\":\"ezenwannemotors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":120,\"listed_count\":0,\"created_at\":\"Fri Jul 29 10:12:33 +0000 2022\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552960003094503424\\/1659090359\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1791\":{\"id\":1482630150617452553,\"id_str\":\"1482630150617452553\",\"name\":\"Mastrozamani\\ud83d\\ude08\",\"screen_name\":\"Mastrozamani\",\"location\":\"Lagos, Nigeria\",\"description\":\"30BG\\/ Cristiano Ronaldo \\ud83d\\udc10\\/ Good music || Davido \\ud83d\\udc10|| Michael Marabou fans \\ud83c\\udded\\ud83c\\uddf9 ||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":762,\"friends_count\":1202,\"listed_count\":8,\"created_at\":\"Sun Jan 16 08:25:59 +0000 2022\",\"favourites_count\":1558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482630150617452553\\/1659092088\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1792\":{\"id\":1252744966176202753,\"id_str\":\"1252744966176202753\",\"name\":\"TonyMoor\",\"screen_name\":\"MoorTony\",\"location\":\"Lagos\",\"description\":\"property consultant, Digital marketing professional, investment expert.A great friend,A man of God.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Apr 21 23:44:32 +0000 2020\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":156,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1394223136158126082\\/uGaArb3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1394223136158126082\\/uGaArb3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1252744966176202753\\/1652452446\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1793\":{\"id\":1492884731398082561,\"id_str\":\"1492884731398082561\",\"name\":\"Samuel Osakue\",\"screen_name\":\"samuel_osakue\",\"location\":\"Benin-City, Nigeria\",\"description\":\"Author and Editor of My debut Horror Thriller Novel, 'Truth or Dare: Aftermath'.\\nTo Grab a copy of this awesome book, click here \\ud83d\\udc49 https:\\/\\/t.co\\/VowRHTLwNv\",\"url\":\"https:\\/\\/t.co\\/VowRHTLwNv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VowRHTLwNv\",\"expanded_url\":\"https:\\/\\/amzn.to\\/3mEgWwZ\",\"display_url\":\"amzn.to\\/3mEgWwZ\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VowRHTLwNv\",\"expanded_url\":\"https:\\/\\/amzn.to\\/3mEgWwZ\",\"display_url\":\"amzn.to\\/3mEgWwZ\",\"indices\":[131,154]}]}},\"protected\":false,\"followers_count\":339,\"friends_count\":1019,\"listed_count\":0,\"created_at\":\"Sun Feb 13 15:34:11 +0000 2022\",\"favourites_count\":2777,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2172,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1500275593375535106\\/6290aXGb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1500275593375535106\\/6290aXGb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492884731398082561\\/1654589699\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1794\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1795\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1796\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6187,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1797\":{\"id\":2471440877,\"id_str\":\"2471440877\",\"name\":\"UrbanDistrictng\",\"screen_name\":\"Urbandistrictng\",\"location\":\"33A, Moore Road, Yaba. \",\"description\":\"Gastropub, Vendor for Festivals, Caterers \\nand chill out spot\",\"url\":\"https:\\/\\/t.co\\/PkZtYQgitR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PkZtYQgitR\",\"expanded_url\":\"https:\\/\\/goo.gl\\/maps\\/7mzVqnvgxhH2\",\"display_url\":\"goo.gl\\/maps\\/7mzVqnvgx\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":148,\"friends_count\":159,\"listed_count\":0,\"created_at\":\"Wed Apr 09 10:57:44 +0000 2014\",\"favourites_count\":30,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/642680099263877120\\/fbXrggQ0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/642680099263877120\\/fbXrggQ0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2471440877\\/1442061819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1798\":{\"id\":716506086,\"id_str\":\"716506086\",\"name\":\"WAAW Foundation\",\"screen_name\":\"WAAW_Foundation\",\"location\":\"Abuja, Nigeria\",\"description\":\"Working to Advance STEM education for African Women Foundation-Nonprofit working to increase participation of African girls in science, technology & engineering\",\"url\":\"https:\\/\\/t.co\\/IAv2d7f1aP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IAv2d7f1aP\",\"expanded_url\":\"https:\\/\\/waawfoundation.org\",\"display_url\":\"waawfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3085,\"friends_count\":1037,\"listed_count\":53,\"created_at\":\"Wed Jul 25 18:16:57 +0000 2012\",\"favourites_count\":1060,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"709397\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1280430260027342848\\/RFvplJwt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1280430260027342848\\/RFvplJwt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/716506086\\/1594112554\",\"profile_link_color\":\"FF3300\",\"profile_sidebar_border_color\":\"86A4A6\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1799\":{\"id\":983436282859806721,\"id_str\":\"983436282859806721\",\"name\":\"Ghana's No.1 Hype Hub\",\"screen_name\":\"hypealert_gh\",\"location\":\"Accra, Ghana\",\"description\":\"An online marketing hub. \\n||Business Growth Tips || Event & Music Promo || Campaigns || ShowBiz Updates|| Media Services\\n\\nContact: 0203413850\",\"url\":\"https:\\/\\/t.co\\/GRZP63rwks\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GRZP63rwks\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCW8YpetCihulXa_9rSyCinw\",\"display_url\":\"youtube.com\\/channel\\/UCW8Yp\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":802,\"friends_count\":839,\"listed_count\":1,\"created_at\":\"Mon Apr 09 20:07:35 +0000 2018\",\"favourites_count\":2021,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1274974074347929609\\/32ayBfqj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1274974074347929609\\/32ayBfqj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/983436282859806721\\/1592812556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1800\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1801\":{\"id\":3935905942,\"id_str\":\"3935905942\",\"name\":\"Tosh Michaels \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"ToshSports\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Broadcast Journalist | Commentator | OAP @Diamond887fm Ilorin | Actor | Event Host | Email: jamesvic336@gmail.com.\",\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"expanded_url\":\"http:\\/\\/www.owosports.com.ng\",\"display_url\":\"owosports.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":433,\"friends_count\":996,\"listed_count\":3,\"created_at\":\"Mon Oct 12 09:24:48 +0000 2015\",\"favourites_count\":4197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1947,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3935905942\\/1640642689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1802\":{\"id\":1333394451625021440,\"id_str\":\"1333394451625021440\",\"name\":\"JEGCY SYSTEMS COMPANY LTD\",\"screen_name\":\"Jegcysystemsltd\",\"location\":\"Lagos\\/Abuja\",\"description\":\"JEGCY SYSTEMS LIMITED is a duly registered company which specialized on Hydrant systems, CCTV and Fire Safety Systems with corporate offices in Lagos\\/Abuja.\",\"url\":\"https:\\/\\/t.co\\/G25NaNBjm3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/G25NaNBjm3\",\"expanded_url\":\"http:\\/\\/www.jegcysystemscompany.com\",\"display_url\":\"jegcysystemscompany.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":271,\"listed_count\":0,\"created_at\":\"Mon Nov 30 12:56:52 +0000 2020\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":214,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534535605639598081\\/DJCT7Vlz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534535605639598081\\/DJCT7Vlz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1333394451625021440\\/1606748583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1803\":{\"id\":1198030580,\"id_str\":\"1198030580\",\"name\":\"KING\",\"screen_name\":\"KingsEmpire1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Business. I believe in God| humanity is supreme. Greatest\\ud83d\\ude4c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":553,\"listed_count\":1,\"created_at\":\"Tue Feb 19 17:06:23 +0000 2013\",\"favourites_count\":9214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2793,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541140315150712833\\/QpjnZc2W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541140315150712833\\/QpjnZc2W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1198030580\\/1651973076\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1804\":{\"id\":2726051293,\"id_str\":\"2726051293\",\"name\":\"Firmus Advisory\",\"screen_name\":\"Firmus_Advisory\",\"location\":\"Accra, Ghana\",\"description\":\"Your preferred consulting firm for Business Regulatory Compliance, Social\\/Market Research and Trade Development.\",\"url\":\"https:\\/\\/t.co\\/JwJNMqQoM2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JwJNMqQoM2\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/FirmusAdvisory\",\"display_url\":\"linktr.ee\\/FirmusAdvisory\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":347,\"friends_count\":436,\"listed_count\":1,\"created_at\":\"Tue Aug 12 11:50:09 +0000 2014\",\"favourites_count\":559,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1380,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1214885006914572290\\/04TAcbVq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1214885006914572290\\/04TAcbVq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2726051293\\/1622119726\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1805\":{\"id\":216088342,\"id_str\":\"216088342\",\"name\":\"Idris Dangalan\",\"screen_name\":\"IdrisDangalan\",\"location\":\"Nigeria\",\"description\":\"Belt and Road initiative (BRI) Ambassador, \\nSuzhou Xinlusiyu Culture Development Co., Ltd.\",\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"expanded_url\":\"https:\\/\\/m.facebook.com\\/peace30?_rdr\",\"display_url\":\"m.facebook.com\\/peace30?_rdr\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":927,\"friends_count\":350,\"listed_count\":18,\"created_at\":\"Mon Nov 15 19:28:27 +0000 2010\",\"favourites_count\":8216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18730,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/216088342\\/1509188657\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1806\":{\"id\":216088342,\"id_str\":\"216088342\",\"name\":\"Idris Dangalan\",\"screen_name\":\"IdrisDangalan\",\"location\":\"Nigeria\",\"description\":\"Belt and Road initiative (BRI) Ambassador, \\nSuzhou Xinlusiyu Culture Development Co., Ltd.\",\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"expanded_url\":\"https:\\/\\/m.facebook.com\\/peace30?_rdr\",\"display_url\":\"m.facebook.com\\/peace30?_rdr\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":927,\"friends_count\":350,\"listed_count\":18,\"created_at\":\"Mon Nov 15 19:28:27 +0000 2010\",\"favourites_count\":8216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18730,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/216088342\\/1509188657\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1807\":{\"id\":1001482032147566592,\"id_str\":\"1001482032147566592\",\"name\":\"Dinma\",\"screen_name\":\"Dinma_DinmaRose\",\"location\":\"Abuja, Nigeria\",\"description\":\"I believe in making so much wealth from this online space,I provide value packed financial tips. \\n\\nSales\\/ Marketing.\",\"url\":\"https:\\/\\/t.co\\/GoXyTMheAX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GoXyTMheAX\",\"expanded_url\":\"https:\\/\\/wa.link\\/htstcu\",\"display_url\":\"wa.link\\/htstcu\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5568,\"friends_count\":5053,\"listed_count\":0,\"created_at\":\"Tue May 29 15:14:57 +0000 2018\",\"favourites_count\":13784,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6462,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517444485000704002\\/35dYHweY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517444485000704002\\/35dYHweY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1001482032147566592\\/1644934905\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1808\":{\"id\":216088342,\"id_str\":\"216088342\",\"name\":\"Idris Dangalan\",\"screen_name\":\"IdrisDangalan\",\"location\":\"Nigeria\",\"description\":\"Belt and Road initiative (BRI) Ambassador, \\nSuzhou Xinlusiyu Culture Development Co., Ltd.\",\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"expanded_url\":\"https:\\/\\/m.facebook.com\\/peace30?_rdr\",\"display_url\":\"m.facebook.com\\/peace30?_rdr\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":927,\"friends_count\":350,\"listed_count\":18,\"created_at\":\"Mon Nov 15 19:28:27 +0000 2010\",\"favourites_count\":8216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18730,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/216088342\\/1509188657\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1809\":{\"id\":719934970354081792,\"id_str\":\"719934970354081792\",\"name\":\"Naijaloveinfo\",\"screen_name\":\"naijaloveinfo\",\"location\":\"Nigeria\",\"description\":\"Naijaloveinfo...Truly for everyone \\nOnline News, Photos, Videos, Online Advert & Lots more. Phone: +2347067853731; Email: naijaloveinfo@gmail.com\\n#Naijaloveinfo\",\"url\":\"https:\\/\\/t.co\\/MDKWCn60Ak\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MDKWCn60Ak\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC5n28XOTXz7dBF4z0W72bGg\",\"display_url\":\"youtube.com\\/channel\\/UC5n28\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":962,\"friends_count\":256,\"listed_count\":5,\"created_at\":\"Tue Apr 12 17:07:27 +0000 2016\",\"favourites_count\":28528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":45696,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1137653803120058370\\/1ZER97Yf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1137653803120058370\\/1ZER97Yf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/719934970354081792\\/1588623351\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1810\":{\"id\":1296376967982452739,\"id_str\":\"1296376967982452739\",\"name\":\"Divine\",\"screen_name\":\"DivineCity6\",\"location\":\"Lagos, Nigeria\",\"description\":\"Divinity in Humanity\\n Online Campaign Gladiator for H.E Peter Obi\\n\\/\\/Chelsea FC\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":232,\"friends_count\":788,\"listed_count\":0,\"created_at\":\"Thu Aug 20 09:22:29 +0000 2020\",\"favourites_count\":562,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1106,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548216679007600647\\/Tvqs9oUX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548216679007600647\\/Tvqs9oUX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1296376967982452739\\/1653855056\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1811\":{\"id\":3067952663,\"id_str\":\"3067952663\",\"name\":\"Upshot Reports\",\"screen_name\":\"upshotreports\",\"location\":\"Lagos, Nigeria\",\"description\":\"News, Media, Publishing, Advertising\",\"url\":\"https:\\/\\/t.co\\/W4nLWLdR4Z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/W4nLWLdR4Z\",\"expanded_url\":\"http:\\/\\/www.upshotreports.com\\/\",\"display_url\":\"upshotreports.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1164,\"friends_count\":965,\"listed_count\":6,\"created_at\":\"Tue Mar 03 14:56:10 +0000 2015\",\"favourites_count\":45,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":75184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/572774091187183616\\/4cCTCxEi_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/572774091187183616\\/4cCTCxEi_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3067952663\\/1540549563\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1812\":{\"id\":1314137759926431745,\"id_str\":\"1314137759926431745\",\"name\":\"Estelle Watches\",\"screen_name\":\"EstelleWatches\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your plug for the classiest watches;\\n@estelle__CMW\\n@estelle__LW\\n@estelle__RW\\n@estelle__AW\\n@estelle__SDW\\nIG @estellewatches\\nPayment validates order\\n(09099250051)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":117,\"friends_count\":159,\"listed_count\":0,\"created_at\":\"Thu Oct 08 09:37:23 +0000 2020\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":177,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1314137905770758151\\/XVPqCVSU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1314137905770758151\\/XVPqCVSU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1314137759926431745\\/1610478094\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1813\":{\"id\":2560001369,\"id_str\":\"2560001369\",\"name\":\"Surest Top\",\"screen_name\":\"SurestTop\",\"location\":\"Abuja, Nigeria\",\"description\":\"CEO Surest Top Laundry and General Cleaning Services | Agriculturists | Entrepreneur | Bar\\u00e7a fan | https:\\/\\/t.co\\/GjCpeqdmLM for business.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GjCpeqdmLM\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/J5HV75SGIKYAA1\",\"display_url\":\"wa.me\\/message\\/J5HV75\\u2026\",\"indices\":[99,122]}]}},\"protected\":false,\"followers_count\":182,\"friends_count\":2636,\"listed_count\":2,\"created_at\":\"Fri May 23 08:56:33 +0000 2014\",\"favourites_count\":5742,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2654,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1244777096343441420\\/6sN6fxB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1244777096343441420\\/6sN6fxB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2560001369\\/1616350055\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1814\":{\"id\":1551115023002619904,\"id_str\":\"1551115023002619904\",\"name\":\"Hot Story Base\",\"screen_name\":\"hotstorybase\",\"location\":\"United States\",\"description\":\"Trends and Stories | Sales of Quality Products | Lover of Greatness.\",\"url\":\"https:\\/\\/t.co\\/WQWQgWNGIr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WQWQgWNGIr\",\"expanded_url\":\"https:\\/\\/bit.ly\\/mcabojo\",\"display_url\":\"bit.ly\\/mcabojo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Sun Jul 24 08:00:31 +0000 2022\",\"favourites_count\":174,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":111,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554377451786092549\\/5sYx7iKT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554377451786092549\\/5sYx7iKT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551115023002619904\\/1659594814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1815\":{\"id\":890740988569890817,\"id_str\":\"890740988569890817\",\"name\":\"\\ua9c1\\u0f12\\u265bYoung Pablo\\u265b\\u0f12\\ua9c2\",\"screen_name\":\"itzprince007\",\"location\":\"Nigeria\",\"description\":\"Online Punter and International Sport betting\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":303,\"friends_count\":1267,\"listed_count\":0,\"created_at\":\"Fri Jul 28 01:09:35 +0000 2017\",\"favourites_count\":1603,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1697,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1259769583327641601\\/iSL2rbXP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1259769583327641601\\/iSL2rbXP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/890740988569890817\\/1502229269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1816\":{\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"name\":\"William Iwu\",\"screen_name\":\"betsmasterspro\",\"location\":\"Jos, Nigeria\",\"description\":\"Welcome To Betsmasterpro matches,We Offer \\ud83d\\udcaf Fixed Matches All Correct Scores,If You're Interested Call \\ud83d\\udcdeOr WhatsApp Us On \\ud83d\\udcf2+2349095386137.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1085,\"friends_count\":37,\"listed_count\":1,\"created_at\":\"Wed Nov 25 02:59:59 +0000 2020\",\"favourites_count\":1247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1931,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331432336127381504\\/1629374439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1817\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1818\":{\"id\":1302540736789913600,\"id_str\":\"1302540736789913600\",\"name\":\"Richard Cobbinah-Johnson\\ud83d\\udee0\\ud83e\\ude9b\\ud83d\\udcd7\\u26ea\\ud83d\\udcbb\",\"screen_name\":\"Rich_Places_\",\"location\":\"Greater Accra, Ghana\",\"description\":\"#pastor | #Web3Developer| #TimeMagazine #personoftheyear 2006| \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\udf10| #Youtuber| #CEO @Richplaces_sign| Educator @pathtoWeb3dao | #BlackTechTwitter\",\"url\":\"https:\\/\\/t.co\\/D9185OJeHg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9185OJeHg\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/Richplaces\",\"display_url\":\"youtube.com\\/c\\/Richplaces\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99,\"friends_count\":534,\"listed_count\":1,\"created_at\":\"Sun Sep 06 09:34:58 +0000 2020\",\"favourites_count\":906,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":445,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528755601093820416\\/7TJbu5VM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528755601093820416\\/7TJbu5VM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302540736789913600\\/1599387194\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1819\":{\"id\":1149619052949594113,\"id_str\":\"1149619052949594113\",\"name\":\"ChairborneGSL\",\"screen_name\":\"chairbornegsl\",\"location\":\"Lagos, Nigeria\",\"description\":\"An Indigenous Marine Logistics\\/EPC company focused on providing diverse services to the Oil and Gas industry in Nigeria and Africa.\",\"url\":\"https:\\/\\/t.co\\/eUlIbbDtRX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eUlIbbDtRX\",\"expanded_url\":\"http:\\/\\/chairbornegsl.com\",\"display_url\":\"chairbornegsl.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":469,\"friends_count\":74,\"listed_count\":0,\"created_at\":\"Fri Jul 12 09:58:35 +0000 2019\",\"favourites_count\":12621,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1346042034218541056\\/2QuqsrAG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1346042034218541056\\/2QuqsrAG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1149619052949594113\\/1574336437\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1820\":{\"id\":1551518556642316290,\"id_str\":\"1551518556642316290\",\"name\":\"Smockafriq\",\"screen_name\":\"smockafriq\",\"location\":\"Accra-Ghana \",\"description\":\"|| Stay fabulous in ready to wear and custom made designs from our versatile heritage ||\\n|| Follow us on FB, IG and LinkedIn as SmockAfriq ||\",\"url\":\"https:\\/\\/t.co\\/xb2mC97I6q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xb2mC97I6q\",\"expanded_url\":\"https:\\/\\/smockafriq.afrikrea.com\\/en\",\"display_url\":\"smockafriq.afrikrea.com\\/en\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Mon Jul 25 10:44:11 +0000 2022\",\"favourites_count\":1281,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":64,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551522242034651136\\/G2sqYbN6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551522242034651136\\/G2sqYbN6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551518556642316290\\/1658746387\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1821\":{\"id\":507673231,\"id_str\":\"507673231\",\"name\":\"BingelBeeba\",\"screen_name\":\"alitamnya\",\"location\":\"Nigeria\",\"description\":\"Marketing||E-marketing||RoadTravelEnthusiast||Liverpoolfc||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1493,\"friends_count\":1557,\"listed_count\":1,\"created_at\":\"Tue Feb 28 17:36:39 +0000 2012\",\"favourites_count\":15526,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":999,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1346739906949902338\\/NqGpQsiH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1346739906949902338\\/NqGpQsiH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1822\":{\"id\":1345734206308163586,\"id_str\":\"1345734206308163586\",\"name\":\"Abasisom\",\"screen_name\":\"abasisom\",\"location\":\"Calabar\",\"description\":\"Free style influencer | DM for adverts, publicity and brand promotions.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9720,\"friends_count\":993,\"listed_count\":1,\"created_at\":\"Sun Jan 03 14:10:21 +0000 2021\",\"favourites_count\":13104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22295,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524647373229768704\\/yUSB2PsS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524647373229768704\\/yUSB2PsS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1345734206308163586\\/1652339282\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1823\":{\"id\":1253523282890022913,\"id_str\":\"1253523282890022913\",\"name\":\"foyeecfr \\ud83d\\ude08\\ud83d\\ude08\",\"screen_name\":\"EnduranceOfoye2\",\"location\":\"Ikorodu, Nigeria\",\"description\":\"Award winning stand up comedi\\ud83c\\udfa4\\ud83c\\udfa4\\ud83e\\udd39\\ud83c\\udffc\\u200d\\u2642\\ufe0f\\ud83c\\udfad\\ud83c\\udfad\\ud83c\\udfadand professional standard events compere.. political scientists and I also enjoy barbing \\ud83d\\udc87\\ud83c\\udffc\\u200d\\u2642\\ufe0f\\ud83d\\udc87\\ud83c\\udffc\\u200d\\u2642\\ufe0f\\ud83d\\udc87\\ud83c\\udffc\\u200d\\u2642\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":727,\"friends_count\":758,\"listed_count\":0,\"created_at\":\"Fri Apr 24 03:17:15 +0000 2020\",\"favourites_count\":4617,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2594,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1296517944625836037\\/Ajhci8H-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1296517944625836037\\/Ajhci8H-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1253523282890022913\\/1597948942\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1824\":{\"id\":431461767,\"id_str\":\"431461767\",\"name\":\"alade kazeem bello\",\"screen_name\":\"bakadejare\",\"location\":\"lagos\",\"description\":\"lovers of ideas, Global peace and love\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":168,\"friends_count\":470,\"listed_count\":3,\"created_at\":\"Thu Dec 08 09:15:17 +0000 2011\",\"favourites_count\":2867,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4961,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1257619364171350018\\/RQNjfMAd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1257619364171350018\\/RQNjfMAd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/431461767\\/1455184362\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1825\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1826\":{\"id\":1544222356515717120,\"id_str\":\"1544222356515717120\",\"name\":\"Real_Akintola Kiks\",\"screen_name\":\"daniel_kikiowo\",\"location\":\"Lagos.\",\"description\":\"I tweet about Life, Money, humans, Clothes,Music, fashion, Football, and Sales.\\n\\nIG : Kikispecialz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Tue Jul 05 07:32:00 +0000 2022\",\"favourites_count\":5024,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545097360338046977\\/E_jpFDls_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545097360338046977\\/E_jpFDls_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544222356515717120\\/1657214858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1827\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1828\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4811,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1829\":{\"id\":386560001,\"id_str\":\"386560001\",\"name\":\"PRINCE MUSTAPHA HASSAN OBAJE\",\"screen_name\":\"m_hasObaje\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142,\"friends_count\":249,\"listed_count\":0,\"created_at\":\"Fri Oct 07 14:01:55 +0000 2011\",\"favourites_count\":2080,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2421,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487104415114928130\\/fHVnPt78_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487104415114928130\\/fHVnPt78_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/386560001\\/1583138080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1830\":{\"id\":829383942499401732,\"id_str\":\"829383942499401732\",\"name\":\"DOPATUNES\",\"screen_name\":\"dopatunes\",\"location\":\"Lagos, Nigeria\",\"description\":\"https:\\/\\/t.co\\/m6w3GqjBRa\",\"url\":\"https:\\/\\/t.co\\/HFZy8EP3ap\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HFZy8EP3ap\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCpL1N7YshixDaQuS9oA9jUw\",\"display_url\":\"youtube.com\\/channel\\/UCpL1N\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/m6w3GqjBRa\",\"expanded_url\":\"https:\\/\\/smart.bio\\/dopatunes_ilgm\\/\",\"display_url\":\"smart.bio\\/dopatunes_ilgm\\/\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":64,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Wed Feb 08 17:38:35 +0000 2017\",\"favourites_count\":102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":760,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511901572812398595\\/elej7ZbF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511901572812398595\\/elej7ZbF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829383942499401732\\/1604117606\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1831\":{\"id\":829383942499401732,\"id_str\":\"829383942499401732\",\"name\":\"DOPATUNES\",\"screen_name\":\"dopatunes\",\"location\":\"Lagos, Nigeria\",\"description\":\"https:\\/\\/t.co\\/m6w3GqjBRa\",\"url\":\"https:\\/\\/t.co\\/HFZy8EP3ap\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HFZy8EP3ap\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCpL1N7YshixDaQuS9oA9jUw\",\"display_url\":\"youtube.com\\/channel\\/UCpL1N\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/m6w3GqjBRa\",\"expanded_url\":\"https:\\/\\/smart.bio\\/dopatunes_ilgm\\/\",\"display_url\":\"smart.bio\\/dopatunes_ilgm\\/\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":64,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Wed Feb 08 17:38:35 +0000 2017\",\"favourites_count\":102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":760,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511901572812398595\\/elej7ZbF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511901572812398595\\/elej7ZbF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829383942499401732\\/1604117606\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1832\":{\"id\":1171020648,\"id_str\":\"1171020648\",\"name\":\"DEENO\",\"screen_name\":\"olomo_deeno\",\"location\":\"Lagos, Nigeria\",\"description\":\"IG - olomo_deeno || Bookings : olomodeenobaby@gmail.com , +2349158570899\",\"url\":\"https:\\/\\/t.co\\/mRKyQ2NYcT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mRKyQ2NYcT\",\"expanded_url\":\"https:\\/\\/songwhip.com\\/deeno\\/adaeze\",\"display_url\":\"songwhip.com\\/deeno\\/adaeze\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":132,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Tue Feb 12 05:46:29 +0000 2013\",\"favourites_count\":1729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":713,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553732907587588101\\/PSZA0apV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553732907587588101\\/PSZA0apV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171020648\\/1659273778\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1833\":{\"id\":1486535340982685700,\"id_str\":\"1486535340982685700\",\"name\":\"MOphotos\\ud83d\\udcf8\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"MOphotos_\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Mobile Photographer\\ud83c\\uddf3\\ud83c\\uddec\\n\\niCreate|\\nStreet Photography|\\nAbstract|\\nLandscape|\\nNature|\\nWallpapers|\\nArchitecture|\\n\\nblackceo@gmail.com\\n#MOphotography\",\"url\":\"https:\\/\\/t.co\\/VtmdX9oolP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VtmdX9oolP\",\"expanded_url\":\"https:\\/\\/bit.ly\\/Mophotoscollections\",\"display_url\":\"bit.ly\\/Mophotoscollec\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Thu Jan 27 03:04:05 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487526712376184843\\/lNvCL9V8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487526712376184843\\/lNvCL9V8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486535340982685700\\/1643489108\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1834\":{\"id\":356370832,\"id_str\":\"356370832\",\"name\":\"PASTOR ELVIS O. ASORO\",\"screen_name\":\"elvisasoro\",\"location\":\"LAGOS , NIGERIA \",\"description\":\"MINISTER OF THE GOSPEL OF JESUS CHRIST AND WRITER. LEAD PASTOR, RESTORATION POWER OF GOD MINISTRY INTERNATIONAL, TRIUMPHANT. LAG. NIGERIA. I AM A WORLD CHANGER!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":178,\"listed_count\":4,\"created_at\":\"Tue Aug 16 19:09:18 +0000 2011\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/356370832\\/1450964262\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1835\":{\"id\":730775959884976128,\"id_str\":\"730775959884976128\",\"name\":\"ThankGod chukwuemeka\",\"screen_name\":\"emekamau\",\"location\":\"Imo state\",\"description\":\"Crypto enthusiast, Airdrop lord, NFT Creator.\\nwe are Maucoins, we teach, instruct but not advice cryptocurrency, DEFI, and NFT.\",\"url\":\"https:\\/\\/t.co\\/IeD8O0EU6S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IeD8O0EU6S\",\"expanded_url\":\"http:\\/\\/maucrypto.blogpost.com\",\"display_url\":\"maucrypto.blogpost.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":472,\"listed_count\":7,\"created_at\":\"Thu May 12 15:05:40 +0000 2016\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1332650266596872192\\/tlEnl03V_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1332650266596872192\\/tlEnl03V_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/730775959884976128\\/1646958964\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1836\":{\"id\":730775959884976128,\"id_str\":\"730775959884976128\",\"name\":\"ThankGod chukwuemeka\",\"screen_name\":\"emekamau\",\"location\":\"Imo state\",\"description\":\"Crypto enthusiast, Airdrop lord, NFT Creator.\\nwe are Maucoins, we teach, instruct but not advice cryptocurrency, DEFI, and NFT.\",\"url\":\"https:\\/\\/t.co\\/IeD8O0EU6S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IeD8O0EU6S\",\"expanded_url\":\"http:\\/\\/maucrypto.blogpost.com\",\"display_url\":\"maucrypto.blogpost.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":472,\"listed_count\":7,\"created_at\":\"Thu May 12 15:05:40 +0000 2016\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1332650266596872192\\/tlEnl03V_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1332650266596872192\\/tlEnl03V_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/730775959884976128\\/1646958964\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1837\":{\"id\":1012233600304058368,\"id_str\":\"1012233600304058368\",\"name\":\"Oladele Michael\",\"screen_name\":\"ItsAlaremu\",\"location\":\"Lagos,nigeria\",\"description\":\"self motivation,tolerance but don't dare,computer\\/phone engineer..love cars and fine art.\",\"url\":\"https:\\/\\/t.co\\/ocfak8gOaY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ocfak8gOaY\",\"expanded_url\":\"https:\\/\\/share.socialrebel.co\\/Amdynamic\",\"display_url\":\"share.socialrebel.co\\/Amdynamic\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":342,\"friends_count\":1031,\"listed_count\":1,\"created_at\":\"Thu Jun 28 07:17:51 +0000 2018\",\"favourites_count\":1342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6590,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518006351527649281\\/MhakpH9c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518006351527649281\\/MhakpH9c_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1012233600304058368\\/1605568897\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1838\":{\"id\":4896238275,\"id_str\":\"4896238275\",\"name\":\"Sylvanus Ayoola Igwe\",\"screen_name\":\"ayoola_igwe\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"BSc, Political Science; PGD, English Language. Formerly a Political Analyst on IBR 92.5. YouTuber. https:\\/\\/t.co\\/sDAOcZE2PG\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sDAOcZE2PG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ylHXdIproductivity_guaranteed\",\"display_url\":\"bit.ly\\/3ylHXdIproduct\\u2026\",\"indices\":[99,122]}]}},\"protected\":false,\"followers_count\":54,\"friends_count\":141,\"listed_count\":0,\"created_at\":\"Wed Feb 10 22:42:07 +0000 2016\",\"favourites_count\":651,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1711,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542006142204796929\\/4BDRoXlp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542006142204796929\\/4BDRoXlp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4896238275\\/1656477900\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1839\":{\"id\":272768103,\"id_str\":\"272768103\",\"name\":\"MattFurrerererer\",\"screen_name\":\"MattFurrer\",\"location\":\"OK\",\"description\":\"Following YHWH to the best of my broken ability. Sooners, Patriots, Thunder fan. Storms are cool to. Memes. Numbers 1:1-9 Deuteronomy 6:4-5 John 3:16-17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1155,\"friends_count\":1654,\"listed_count\":25,\"created_at\":\"Sun Mar 27 04:23:09 +0000 2011\",\"favourites_count\":5183,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14018,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505623249564143623\\/SvZ5_NgR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505623249564143623\\/SvZ5_NgR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/272768103\\/1651598719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1840\":{\"id\":1490829541434085379,\"id_str\":\"1490829541434085379\",\"name\":\"TikTok videos and comments\",\"screen_name\":\"tiktokvidncom\",\"location\":\"\",\"description\":\"Read and die comments on Tiktok \\ud83d\\ude02\\ud83d\\ude02\\ud83d\\ude02\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":70,\"listed_count\":0,\"created_at\":\"Mon Feb 07 23:27:52 +0000 2022\",\"favourites_count\":143,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546537048387067905\\/91SVYq3c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546537048387067905\\/91SVYq3c_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1841\":{\"id\":988836322247835652,\"id_str\":\"988836322247835652\",\"name\":\"\\u0131ll\\u0131 GospelEmpireGh \\u0131ll\\u0131\",\"screen_name\":\"GospelEmpireGh\",\"location\":\"Accra, Ghana\",\"description\":\"\\u0131ll\\u0131 The World's Premier Christian Media \\u0131ll\\u0131\\n| Gospel Celebrity News | DM Us For Promos & Ads | Call\\/WhatApp: +233558856705 | Founder\\/CEO: @iamsampsonannan\",\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lRm7sklldm\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/gospelempiregh\",\"display_url\":\"linktr.ee\\/gospelempiregh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1160,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Tue Apr 24 17:45:25 +0000 2018\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":422,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024186569094295552\\/6FxznjID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988836322247835652\\/1646808893\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1842\":{\"id\":1499881401327497217,\"id_str\":\"1499881401327497217\",\"name\":\"Adedamolaart\",\"screen_name\":\"Adedamolaartt\",\"location\":\"Ibadan, Nigeria\",\"description\":\"NFT artist.......https:\\/\\/t.co\\/XTnlvxlZVd\\n\\n Contact me@07037734481 on Whatsapp or DM here to make an order for a nice potrait artwork. 30BG\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XTnlvxlZVd\",\"expanded_url\":\"https:\\/\\/opensea.io\\/assets\\/matic\\/0x2953399124\",\"display_url\":\"opensea.io\\/assets\\/matic\\/0\\u2026\",\"indices\":[17,40]}]}},\"protected\":false,\"followers_count\":58,\"friends_count\":519,\"listed_count\":0,\"created_at\":\"Fri Mar 04 22:56:32 +0000 2022\",\"favourites_count\":366,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5582,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521778732784136192\\/Be9i2_kE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521778732784136192\\/Be9i2_kE_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1843\":{\"id\":1452073829245853697,\"id_str\":\"1452073829245853697\",\"name\":\"J. C. Iro\",\"screen_name\":\"_KingTekno\",\"location\":\"Nigeria\",\"description\":\"CEO Tekkxe (Quiz Master & English Language Examiner)\",\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"expanded_url\":\"https:\\/\\/thepeoplesparrot.blogspot.com\\/?m=1\",\"display_url\":\"thepeoplesparrot.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Sun Oct 24 00:46:11 +0000 2021\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":500,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1452073829245853697\\/1642094272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1844\":{\"id\":2628758169,\"id_str\":\"2628758169\",\"name\":\"Oyewo Yunus Olajuwon\",\"screen_name\":\"oyewo_yunus\",\"location\":\"C\\u00f4te d'Ivoire\",\"description\":\"Co-founder JeuneRiche\\u270c\\ud83c\\udffd|\\nFounder YoLife\\ud83e\\udded|\\nKhadijat's Husband \\ud83d\\udc91|\\nand Father\\n\\ud83d\\udc68\\u200d\\ud83d\\udc69\\u200d\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/xKdFtsFwEU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xKdFtsFwEU\",\"expanded_url\":\"http:\\/\\/instagram.com\\/iam_yunusola\",\"display_url\":\"instagram.com\\/iam_yunusola\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":262,\"listed_count\":2,\"created_at\":\"Sat Jun 21 15:29:57 +0000 2014\",\"favourites_count\":6310,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1220255127099117568\\/1r4hxEac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1220255127099117568\\/1r4hxEac_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1845\":{\"id\":989870432227676160,\"id_str\":\"989870432227676160\",\"name\":\"DavoTunchi\\ud83c\\uddf8\\ud83c\\uddf1\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udded\",\"screen_name\":\"vido_Lengar\",\"location\":\"Where the money @\",\"description\":\"NFT | Stylist | TalentBuilder | Blockchain | Binance | CiscoAcademy | CCNA | CCNP\",\"url\":\"https:\\/\\/t.co\\/sIuesDLOdM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sIuesDLOdM\",\"expanded_url\":\"http:\\/\\/www.moneybag.com\",\"display_url\":\"moneybag.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Apr 27 14:14:36 +0000 2018\",\"favourites_count\":2421,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":960,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534868854698086401\\/p6KdSHk7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534868854698086401\\/p6KdSHk7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/989870432227676160\\/1596479162\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1846\":{\"id\":1355647431367667717,\"id_str\":\"1355647431367667717\",\"name\":\"Hon. Gbesh of Unilorin \\ud83c\\udf3c\",\"screen_name\":\"HGbesh\",\"location\":\"Lagos, Nigeria\",\"description\":\"NAPHSS PRO ELECT, Unilorin chapter | Comedian | Content creator | Entertainer | Lover of football | Lover of cruise and vawulence | Education \\nIG:@hon_gbesh\",\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC7hKRiL7GXzWJox9XPUH21g\",\"display_url\":\"youtube.com\\/channel\\/UC7hKR\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":376,\"listed_count\":0,\"created_at\":\"Sat Jan 30 22:42:04 +0000 2021\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355647431367667717\\/1658981548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1847\":{\"id\":1308144316745998339,\"id_str\":\"1308144316745998339\",\"name\":\"Micheal Effiong\",\"screen_name\":\"Micheal_keyz_\",\"location\":\"Lagos\",\"description\":\"Music is what I love \\ud83d\\udcbb we make music\\ud83c\\udfb5\\ud83c\\udfb6\\ud83c\\udfb9\",\"url\":\"https:\\/\\/t.co\\/rUr3Ms1aeR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rUr3Ms1aeR\",\"expanded_url\":\"https:\\/\\/youtu.be\\/Ob4tIXJD-xM\",\"display_url\":\"youtu.be\\/Ob4tIXJD-xM\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":278,\"listed_count\":2,\"created_at\":\"Mon Sep 21 20:41:40 +0000 2020\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":95,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1308147287198228482\\/UuYOHQOF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1308147287198228482\\/UuYOHQOF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1308144316745998339\\/1642029332\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1848\":{\"id\":1315853619619672066,\"id_str\":\"1315853619619672066\",\"name\":\"Streetdoings\",\"screen_name\":\"streetdoings\",\"location\":\"Enugu, Nigeria\",\"description\":\"we are three wise men\\ud83d\\ude46\",\"url\":\"https:\\/\\/t.co\\/j6L7VbltQk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/j6L7VbltQk\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCR7PFv2Sry26UoPecL5QVVQ\\/videos\",\"display_url\":\"m.youtube.com\\/channel\\/UCR7PF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":534,\"friends_count\":1458,\"listed_count\":1,\"created_at\":\"Tue Oct 13 03:15:55 +0000 2020\",\"favourites_count\":625,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552367339043434496\\/tlXmyp7c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552367339043434496\\/tlXmyp7c_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1315853619619672066\\/1642725638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1849\":{\"id\":383715114,\"id_str\":\"383715114\",\"name\":\"Adamazi Mbonu Onyi Jennifer\",\"screen_name\":\"adamazi_mbonu\",\"location\":\"Nigeria\",\"description\":\"Soil Scientist| Critical Thinker| Blogger| SDGs Advocate| Volunteer| Writer| Environmentalist\",\"url\":\"https:\\/\\/t.co\\/2AZPijWtd0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2AZPijWtd0\",\"expanded_url\":\"http:\\/\\/www.adamazi.com\",\"display_url\":\"adamazi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":894,\"friends_count\":2887,\"listed_count\":6,\"created_at\":\"Sun Oct 02 11:26:05 +0000 2011\",\"favourites_count\":773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1448657377557811204\\/VwgzQ5W1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1448657377557811204\\/VwgzQ5W1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/383715114\\/1570307953\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1850\":{\"id\":619771652,\"id_str\":\"619771652\",\"name\":\"james_saturday\",\"screen_name\":\"james_saturday\",\"location\":\"lagos surulere\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":1048,\"listed_count\":0,\"created_at\":\"Wed Jun 27 07:35:35 +0000 2012\",\"favourites_count\":1797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1149,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542929413590990850\\/_7Zr8G5l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542929413590990850\\/_7Zr8G5l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/619771652\\/1644140211\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1851\":{\"id\":1547721134811951104,\"id_str\":\"1547721134811951104\",\"name\":\"Desportspastor Elchijo\",\"screen_name\":\"desportspastor\",\"location\":\"Nigeria\",\"description\":\"Sports|Politics|#Obidientl|Ronaldo \\u2764\\ufe0f|OAP|Musician|Manchester united \\u2764\\ufe0f|... I love gaming too.\",\"url\":\"https:\\/\\/t.co\\/Ah9BT5CWbq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ah9BT5CWbq\",\"expanded_url\":\"http:\\/\\/anchor.fm\\/elchijo\",\"display_url\":\"anchor.fm\\/elchijo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":125,\"listed_count\":0,\"created_at\":\"Thu Jul 14 23:14:32 +0000 2022\",\"favourites_count\":367,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":304,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550999218701172737\\/DM6OsjhY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550999218701172737\\/DM6OsjhY_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1852\":{\"id\":2233187260,\"id_str\":\"2233187260\",\"name\":\"Tominsin Joseph\",\"screen_name\":\"Tominsin_Joseph\",\"location\":\"lagos\",\"description\":\"We provide immediate access to a large varied volume of Genuine properties for our clients in Nigeria and diaspora. ENGINEER\\ud83d\\udea7 | YOUR PROPERTY MAN. SMART HOME\\ud83c\\udfe1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":274,\"listed_count\":0,\"created_at\":\"Thu Dec 19 12:30:11 +0000 2013\",\"favourites_count\":74,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551659322572242945\\/j9q3p9G9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551659322572242945\\/j9q3p9G9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2233187260\\/1658779575\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1853\":{\"id\":1484664687568510979,\"id_str\":\"1484664687568510979\",\"name\":\"Jacklyn Ihuoma\",\"screen_name\":\"jacklyn_ihuoma\",\"location\":\"Nigeria\",\"description\":\"Model\\u2763\\ufe0f\\nMedia icon\\ud83d\\udd25\\nPolitical enthusiasts\\ud83d\\udca5\\nphilanthropist \\nSports Analyst\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":189,\"listed_count\":1,\"created_at\":\"Fri Jan 21 23:10:43 +0000 2022\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":75,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484665173021544449\\/TyzlkLdb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484665173021544449\\/TyzlkLdb_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1854\":{\"id\":1250729646087438336,\"id_str\":\"1250729646087438336\",\"name\":\"L.A YON\",\"screen_name\":\"BgmGoldenboy\",\"location\":\"Lagos, Nigeria\",\"description\":\"Musician\\/songwriter\\n\\nNO MORE \\n*New Song out now show me love by streaming this hit\\ud83d\\udd25\\ud83d\\ude4f\\ud83c\\udffe, repsot\\ud83d\\ude4f\\ud83c\\udffe\\u2764\\ufe0f*\",\"url\":\"https:\\/\\/t.co\\/2yFOPKfGGT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2yFOPKfGGT\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/la_yonvox\\/song\\/no-more\",\"display_url\":\"audiomack.com\\/la_yonvox\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":428,\"friends_count\":1778,\"listed_count\":0,\"created_at\":\"Thu Apr 16 10:16:36 +0000 2020\",\"favourites_count\":1344,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":173,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533181678113501185\\/n55uNQic_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533181678113501185\\/n55uNQic_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1250729646087438336\\/1654373972\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1855\":{\"id\":1176767014557376512,\"id_str\":\"1176767014557376512\",\"name\":\"jai toons \\ud83d\\udc2c\",\"screen_name\":\"Fatjaicaleb\",\"location\":\"Jos, Nigeria\",\"description\":\"kingdom ambassador,christian \\u271d\\ufe0f, singer\\/song writer \\ud83c\\udfa7, Author \\ud83d\\udcd6 , Botanist\\ud83c\\udf31 animation maker, blogger\",\"url\":\"https:\\/\\/t.co\\/jjdYynnF1Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jjdYynnF1Y\",\"expanded_url\":\"https:\\/\\/truesuccessavenue.blogspot.com\\/?m=1\",\"display_url\":\"truesuccessavenue.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1235,\"friends_count\":1934,\"listed_count\":1,\"created_at\":\"Wed Sep 25 07:55:11 +0000 2019\",\"favourites_count\":296,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":355,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555330604077572096\\/kSriOoSp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555330604077572096\\/kSriOoSp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1176767014557376512\\/1656108683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1856\":{\"id\":1464965613261053955,\"id_str\":\"1464965613261053955\",\"name\":\"Adeyyy\",\"screen_name\":\"247_adeyyy\",\"location\":\"Ibadan, Nigeria\",\"description\":\"\\u2022\\ud83c\\uddf3\\ud83c\\uddec\\u2022\\nFreelancer || High on Self Development & Productivity || Picasso Art Lover \\ud83c\\udfa8 || Music Lover || UiTE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":375,\"listed_count\":0,\"created_at\":\"Sun Nov 28 14:33:34 +0000 2021\",\"favourites_count\":235,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549307512431820801\\/EqV7lREQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549307512431820801\\/EqV7lREQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1464965613261053955\\/1658235497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1857\":{\"id\":865543393010524160,\"id_str\":\"865543393010524160\",\"name\":\"Omalexzy\",\"screen_name\":\"EphraimOmale\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Rapper | Songwriter | Blogger | policy maker | preacher\\n +2347016373543\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Fri May 19 12:23:20 +0000 2017\",\"favourites_count\":253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524900487774064655\\/TdTMg4Pp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524900487774064655\\/TdTMg4Pp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865543393010524160\\/1652399582\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1858\":{\"id\":2269084765,\"id_str\":\"2269084765\",\"name\":\"BrandEscort\",\"screen_name\":\"Brandescortinfo\",\"location\":\"Lagos, Nigeria\",\"description\":\"BrandEscort, a news platform aimed at inspiring innovation and creativity in brands to enhance the lives of the consumers. 07033956609, brandescortng@gmail.com\",\"url\":\"https:\\/\\/t.co\\/VyfAoL8imE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VyfAoL8imE\",\"expanded_url\":\"http:\\/\\/brandescortng.com\",\"display_url\":\"brandescortng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20904,\"friends_count\":19592,\"listed_count\":31,\"created_at\":\"Mon Dec 30 16:12:14 +0000 2013\",\"favourites_count\":685,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5928,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1357271370808365057\\/IDHIkNlc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1357271370808365057\\/IDHIkNlc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2269084765\\/1594328403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1859\":{\"id\":866946325199376385,\"id_str\":\"866946325199376385\",\"name\":\"Umoh Bright\",\"screen_name\":\"Dave__NGA\",\"location\":\"Port Harcourt, Nigeria \",\"description\":\"Gemini\\u2653 Software developer, 6\\u20194\\u201d in Jesus name!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":610,\"friends_count\":730,\"listed_count\":1,\"created_at\":\"Tue May 23 09:18:05 +0000 2017\",\"favourites_count\":8927,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537383655018053633\\/0uU6FSV5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537383655018053633\\/0uU6FSV5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/866946325199376385\\/1576595646\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1860\":{\"id\":1315853619619672066,\"id_str\":\"1315853619619672066\",\"name\":\"Streetdoings\",\"screen_name\":\"streetdoings\",\"location\":\"Enugu, Nigeria\",\"description\":\"we are three wise men\\ud83d\\ude46\",\"url\":\"https:\\/\\/t.co\\/j6L7VbltQk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/j6L7VbltQk\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCR7PFv2Sry26UoPecL5QVVQ\\/videos\",\"display_url\":\"m.youtube.com\\/channel\\/UCR7PF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":534,\"friends_count\":1458,\"listed_count\":1,\"created_at\":\"Tue Oct 13 03:15:55 +0000 2020\",\"favourites_count\":625,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552367339043434496\\/tlXmyp7c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552367339043434496\\/tlXmyp7c_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1315853619619672066\\/1642725638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1861\":{\"id\":1342564448507203584,\"id_str\":\"1342564448507203584\",\"name\":\"Joe Angelo's\",\"screen_name\":\"Joe_Angelos\",\"location\":\"Lagos, Nigeria\",\"description\":\"The people's beauty \\ud83d\\udc87 \\u2763\\ufe0f\\n#joeangelosvision30 \\ud83d\\udd2e#choix \\ud83d\\udca5\",\"url\":\"https:\\/\\/t.co\\/OeWJsJauRX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OeWJsJauRX\",\"expanded_url\":\"https:\\/\\/instagram.com\\/joe_angelos?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/joe_angelos?ig\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4695,\"friends_count\":3708,\"listed_count\":1,\"created_at\":\"Fri Dec 25 20:15:01 +0000 2020\",\"favourites_count\":8714,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518010168138678273\\/U7ibGspG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518010168138678273\\/U7ibGspG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342564448507203584\\/1650326441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1862\":{\"id\":1465766052957241357,\"id_str\":\"1465766052957241357\",\"name\":\"Joseph NJ || Angel\",\"screen_name\":\"JosephNjjj\",\"location\":\"Lagos, Nigeria\",\"description\":\"Aspiring Hair stylist || Last Angel.\\n\\nHere to catch fun!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":773,\"friends_count\":977,\"listed_count\":1,\"created_at\":\"Tue Nov 30 19:34:20 +0000 2021\",\"favourites_count\":1170,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":571,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553897070582550530\\/YvGAngVn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553897070582550530\\/YvGAngVn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1465766052957241357\\/1659571157\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1863\":{\"id\":1214139164930654208,\"id_str\":\"1214139164930654208\",\"name\":\"Agbor Nnachi Joseph\",\"screen_name\":\"AgborNnachi\",\"location\":\"Nigeria\",\"description\":\"Entrepreneur | Digital Infopreneur || Last Angel. \\n\\nHere for Business and Fun!\\n #The_peoples_choix #choix \\ud83d\\udc97\",\"url\":\"https:\\/\\/t.co\\/KeIprXkV9z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KeIprXkV9z\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100073287031901\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1573,\"friends_count\":2896,\"listed_count\":0,\"created_at\":\"Mon Jan 06 10:58:47 +0000 2020\",\"favourites_count\":1777,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550759036211154944\\/mFVgxDxu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550759036211154944\\/mFVgxDxu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1214139164930654208\\/1659318178\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1864\":{\"id\":1489088863171661827,\"id_str\":\"1489088863171661827\",\"name\":\"Renergy boy\",\"screen_name\":\"DonaldTomax\",\"location\":\"Nigeria\",\"description\":\"I Rap, Sing, Trap and I love music\",\"url\":\"https:\\/\\/t.co\\/ks4isZlT2y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ks4isZlT2y\",\"expanded_url\":\"https:\\/\\/youtu.be\\/pmLZmWTEeMI\",\"display_url\":\"youtu.be\\/pmLZmWTEeMI\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":127,\"friends_count\":297,\"listed_count\":1,\"created_at\":\"Thu Feb 03 04:10:54 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":133,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496615714337218577\\/21Jzl643_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496615714337218577\\/21Jzl643_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1865\":{\"id\":1126018021288480768,\"id_str\":\"1126018021288480768\",\"name\":\"Skillerdo superstar\",\"screen_name\":\"skillerdo\",\"location\":\"Lekki\",\"description\":\"I'm de man skillerdo Bae\\ud83c\\udf7e\\\" romantical i sing for yo..\\\"pose for de picture\\\"\\ud83d\\udcf8....@ https:\\/\\/t.co\\/N8Kq1ZLCJp\\nWhatsapp\\/Call me on ma +2348164705278\",\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed May 08 06:56:31 +0000 2019\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1866\":{\"id\":1081979436508037120,\"id_str\":\"1081979436508037120\",\"name\":\"_kwm\",\"screen_name\":\"__kwm1\",\"location\":\"Accra, Ghana\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89,\"friends_count\":112,\"listed_count\":0,\"created_at\":\"Sun Jan 06 18:22:54 +0000 2019\",\"favourites_count\":3385,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":354,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555739499199700992\\/jvz_YVsD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555739499199700992\\/jvz_YVsD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1081979436508037120\\/1628039383\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1867\":{\"id\":939476737628524544,\"id_str\":\"939476737628524544\",\"name\":\"#BBNAIJA #BreakingNews\",\"screen_name\":\"nnheadlines\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your source for entertainment news, politics, celebrities, sports, celeb news, #BreakingNews For adverts & promotions \\ud83d\\udc47info@nigeriannewsheadlines.com\",\"url\":\"https:\\/\\/t.co\\/zWLnfUrBAQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zWLnfUrBAQ\",\"expanded_url\":\"https:\\/\\/nigeriannewsheadlines.com\",\"display_url\":\"nigeriannewsheadlines.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2943,\"friends_count\":4765,\"listed_count\":8,\"created_at\":\"Sat Dec 09 12:48:03 +0000 2017\",\"favourites_count\":22570,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":109573,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524322272688889858\\/lQ5LsU5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524322272688889858\\/lQ5LsU5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/939476737628524544\\/1652450071\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1868\":{\"id\":1239653180629229575,\"id_str\":\"1239653180629229575\",\"name\":\"funmi_oj\",\"screen_name\":\"funmiojay\",\"location\":\"Lagos, Nigeria\",\"description\":\"oluwafunmilayo\\ud83d\\udc51\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Mon Mar 16 20:42:15 +0000 2020\",\"favourites_count\":72,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552348515095007235\\/wg5r2DSW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552348515095007235\\/wg5r2DSW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239653180629229575\\/1658943684\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1869\":{\"id\":142667122,\"id_str\":\"142667122\",\"name\":\"Manspirit | Engines of Fury \\ud83c\\udfae\",\"screen_name\":\"despirit1\",\"location\":\"Nigeria\",\"description\":\"Brand Ambassador @EnginesOfFury | Community Manager: @meland_ai |\\n\\nJoin Engine of Fury Discord for First hand info: https:\\/\\/t.co\\/XxBvb6Innx\\n\\n\\ud83e\\ude99 $FURY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XxBvb6Innx\",\"expanded_url\":\"http:\\/\\/discord.gg\\/CAHxvtgKjg\",\"display_url\":\"discord.gg\\/CAHxvtgKjg\",\"indices\":[116,139]}]}},\"protected\":false,\"followers_count\":359,\"friends_count\":1060,\"listed_count\":7,\"created_at\":\"Tue May 11 12:46:57 +0000 2010\",\"favourites_count\":1391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2608,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544398171622805507\\/wAPtQFJV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544398171622805507\\/wAPtQFJV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/142667122\\/1659288807\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1870\":{\"id\":1256017022321860608,\"id_str\":\"1256017022321860608\",\"name\":\"BUKAZ Graphics\",\"screen_name\":\"Sunteky\",\"location\":\"Nnewi, Nigeria\",\"description\":\"I'm a professional graphics designer with more than five years experience. I design anything graphics: logo, 3D mockup, banner, poster, paper back, animation\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":60,\"listed_count\":0,\"created_at\":\"Fri May 01 00:27:29 +0000 2020\",\"favourites_count\":33,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":158,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1308975174499422209\\/4P35MvA8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1308975174499422209\\/4P35MvA8_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1871\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1872\":{\"id\":2628758169,\"id_str\":\"2628758169\",\"name\":\"Oyewo Yunus Olajuwon\",\"screen_name\":\"oyewo_yunus\",\"location\":\"C\\u00f4te d'Ivoire\",\"description\":\"Co-founder JeuneRiche\\u270c\\ud83c\\udffd|\\nFounder YoLife\\ud83e\\udded|\\nKhadijat's Husband \\ud83d\\udc91|\\nand Father\\n\\ud83d\\udc68\\u200d\\ud83d\\udc69\\u200d\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/xKdFtsFwEU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xKdFtsFwEU\",\"expanded_url\":\"http:\\/\\/instagram.com\\/iam_yunusola\",\"display_url\":\"instagram.com\\/iam_yunusola\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":262,\"listed_count\":2,\"created_at\":\"Sat Jun 21 15:29:57 +0000 2014\",\"favourites_count\":6310,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1220255127099117568\\/1r4hxEac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1220255127099117568\\/1r4hxEac_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1873\":{\"id\":2628758169,\"id_str\":\"2628758169\",\"name\":\"Oyewo Yunus Olajuwon\",\"screen_name\":\"oyewo_yunus\",\"location\":\"C\\u00f4te d'Ivoire\",\"description\":\"Co-founder JeuneRiche\\u270c\\ud83c\\udffd|\\nFounder YoLife\\ud83e\\udded|\\nKhadijat's Husband \\ud83d\\udc91|\\nand Father\\n\\ud83d\\udc68\\u200d\\ud83d\\udc69\\u200d\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/xKdFtsFwEU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xKdFtsFwEU\",\"expanded_url\":\"http:\\/\\/instagram.com\\/iam_yunusola\",\"display_url\":\"instagram.com\\/iam_yunusola\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":262,\"listed_count\":2,\"created_at\":\"Sat Jun 21 15:29:57 +0000 2014\",\"favourites_count\":6310,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1220255127099117568\\/1r4hxEac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1220255127099117568\\/1r4hxEac_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1874\":{\"id\":1481543990143029252,\"id_str\":\"1481543990143029252\",\"name\":\"Managarciya\",\"screen_name\":\"ManagarciyaT\",\"location\":\"Nigeria\",\"description\":\"A news Magazine to appreciate and compliment the role of women in the society and encourage their participation in the socioeconomic development.\",\"url\":\"https:\\/\\/t.co\\/i2vpAAPMG3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i2vpAAPMG3\",\"expanded_url\":\"https:\\/\\/managarciya.com\\/\",\"display_url\":\"managarciya.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":49,\"listed_count\":1,\"created_at\":\"Thu Jan 13 08:33:08 +0000 2022\",\"favourites_count\":180,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481544831528747009\\/TBPooyWF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481544831528747009\\/TBPooyWF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481543990143029252\\/1642067274\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1875\":{\"id\":1541008333544595458,\"id_str\":\"1541008333544595458\",\"name\":\"Chibuike\",\"screen_name\":\"freakychubby_0\",\"location\":\"Lagos, Nigeria\",\"description\":\"Opportunities don\\u2019t happen. You create them. backup @chibuike_007 Barca fan\\ud83d\\udda4.. freight forwarder \\ud83d\\udccc \\ud83d\\udef3\\u26f4\\u2693\\ufe0f ESUT016\\ud83d\\udcda I don\\u2019t like to LOUD it!! \\ud83d\\udcad\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":224,\"friends_count\":282,\"listed_count\":0,\"created_at\":\"Sun Jun 26 10:40:05 +0000 2022\",\"favourites_count\":574,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":381,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550070025100398592\\/YQeB62hs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550070025100398592\\/YQeB62hs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541008333544595458\\/1656851329\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1876\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1877\":{\"id\":1548764256845369349,\"id_str\":\"1548764256845369349\",\"name\":\"Enyte Investment Limited\",\"screen_name\":\"EnyteInvestment\",\"location\":\"Lagos \",\"description\":\"Enyte Investment\\nRealEstate\\nRealEstate Consultant. \\nEperienced management team.\\n Exceptional services. \\n08137441449\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":90,\"friends_count\":146,\"listed_count\":0,\"created_at\":\"Sun Jul 17 20:20:40 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548765197137068032\\/Q0P_Lvf4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548765197137068032\\/Q0P_Lvf4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1548764256845369349\\/1659718573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1878\":{\"id\":1513201837347946499,\"id_str\":\"1513201837347946499\",\"name\":\"\\u00d2k\\u00f2l\\u00f2 Art Community\",\"screen_name\":\"Okolo_Community\",\"location\":\"\",\"description\":\"\\u00d2k\\u00f2l\\u00f2 Art Community is a creators' haven. A space for expression of all art forms.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":98,\"listed_count\":0,\"created_at\":\"Sun Apr 10 17:07:01 +0000 2022\",\"favourites_count\":24,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":27,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513202106748084227\\/RS5oMALj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513202106748084227\\/RS5oMALj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1879\":{\"id\":1173173722322210816,\"id_str\":\"1173173722322210816\",\"name\":\"Ceiga\",\"screen_name\":\"Ceigapills1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Art\\nGood music \\n#killdemwithkindness\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":110,\"listed_count\":0,\"created_at\":\"Sun Sep 15 09:56:42 +0000 2019\",\"favourites_count\":165,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":178,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514733435725701136\\/v_WHezzQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514733435725701136\\/v_WHezzQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1173173722322210816\\/1649975469\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1880\":{\"id\":1484147137650823171,\"id_str\":\"1484147137650823171\",\"name\":\"ChainDustry\",\"screen_name\":\"ChainDustry\",\"location\":\"Nigeria\",\"description\":\"Chaindustry is a DoToEarn network offering value & digital services to its users and partners | https:\\/\\/t.co\\/jVJRj5MYtl\\n#CD2E\",\"url\":\"https:\\/\\/t.co\\/aA54wBUD0m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aA54wBUD0m\",\"expanded_url\":\"http:\\/\\/chaindustry.io\",\"display_url\":\"chaindustry.io\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jVJRj5MYtl\",\"expanded_url\":\"http:\\/\\/linktree.com\\/chaindustry\",\"display_url\":\"linktree.com\\/chaindustry\",\"indices\":[96,119]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":216,\"listed_count\":41,\"created_at\":\"Thu Jan 20 12:54:19 +0000 2022\",\"favourites_count\":3907,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":254,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536383563750420481\\/bERG4Tyn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536383563750420481\\/bERG4Tyn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484147137650823171\\/1655385613\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1881\":{\"id\":224317583,\"id_str\":\"224317583\",\"name\":\"Adebayo Tosin Emmanuel\",\"screen_name\":\"adebayotosin80\",\"location\":\"Ibadan Oyo State, Nigeria\",\"description\":\"A Christian.\\nA Missionary.\\nA Mathematician.\\nMillennium Fellows Class of 2020.\\nAn SDGs Advocate.\\nNigerian Youths SDGs Oyo State Champion.\\nYALI Network member\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":679,\"friends_count\":5004,\"listed_count\":0,\"created_at\":\"Wed Dec 08 18:01:16 +0000 2010\",\"favourites_count\":6887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287547670211563523\\/3gXub2jY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287547670211563523\\/3gXub2jY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/224317583\\/1595810260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1882\":{\"id\":1355647431367667717,\"id_str\":\"1355647431367667717\",\"name\":\"Hon. Gbesh of Unilorin \\ud83c\\udf3c\",\"screen_name\":\"HGbesh\",\"location\":\"Lagos, Nigeria\",\"description\":\"NAPHSS PRO ELECT, Unilorin chapter | Comedian | Content creator | Entertainer | Lover of football | Lover of cruise and vawulence | Education \\nIG:@hon_gbesh\",\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC7hKRiL7GXzWJox9XPUH21g\",\"display_url\":\"youtube.com\\/channel\\/UC7hKR\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":376,\"listed_count\":0,\"created_at\":\"Sat Jan 30 22:42:04 +0000 2021\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355647431367667717\\/1658981548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1883\":{\"id\":438417593,\"id_str\":\"438417593\",\"name\":\"billionaire of the year\",\"screen_name\":\"s_ifame\",\"location\":\"Nigeria\",\"description\":\"*S.I aka B.O.Y* inspire to create something beneficial...\\nfor booking call 08109909525, 07055083029 or email @ 6fiveempirebillonaireoftheyear@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Dec 16 15:25:18 +0000 2011\",\"favourites_count\":399,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/780960139780222976\\/H5kFZS0X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/780960139780222976\\/H5kFZS0X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/438417593\\/1659600209\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1884\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1885\":{\"id\":327259929,\"id_str\":\"327259929\",\"name\":\"042cinema\",\"screen_name\":\"ChiazorThompson\",\"location\":\"Enugu Nigeria\",\"description\":\"I am a cinematographer, a filmmaker and a video editor(Nollywood)\\nPhotography and cinematography is what gives me joy in doing\\nIG:@mracts \\nWhatsApp:09021853067\",\"url\":\"https:\\/\\/t.co\\/rurwLzdFOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rurwLzdFOB\",\"expanded_url\":\"http:\\/\\/facebook.com\\/thompson.c.alor\",\"display_url\":\"facebook.com\\/thompson.c.alor\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":86,\"friends_count\":400,\"listed_count\":0,\"created_at\":\"Fri Jul 01 08:01:41 +0000 2011\",\"favourites_count\":409,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532331102022651904\\/2VY3p0VP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532331102022651904\\/2VY3p0VP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/327259929\\/1569583957\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"D3D2CF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1886\":{\"id\":1008922076756013056,\"id_str\":\"1008922076756013056\",\"name\":\"PRESIDENTASSISTANTBOYFRIEND\",\"screen_name\":\"Nizzy_dee\",\"location\":\"Lagos, Nigeria\",\"description\":\"AERONAUTICAL and Astronautical Engineer AGRICULTURE AND TECH ENTHUSIAST \\ud83d\\udccc\\ud83d\\udc4d wiz\\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":422,\"friends_count\":277,\"listed_count\":0,\"created_at\":\"Tue Jun 19 03:59:02 +0000 2018\",\"favourites_count\":2669,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1891,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490473541631942657\\/v2ofQp4e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490473541631942657\\/v2ofQp4e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008922076756013056\\/1644191560\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1887\":{\"id\":540042016,\"id_str\":\"540042016\",\"name\":\"Tochukwu Daniel\",\"screen_name\":\"dannychuks24\",\"location\":\"Abuja\",\"description\":\"I'm a BUSINESS MAN... Any legit business, a digital marketer, business development manager... I sell... God bless me & my friends.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":655,\"friends_count\":935,\"listed_count\":1,\"created_at\":\"Thu Mar 29 14:59:47 +0000 2012\",\"favourites_count\":7764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1161540780118487040\\/nyvnatuN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1161540780118487040\\/nyvnatuN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/540042016\\/1654763243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1888\":{\"id\":1209917689919164416,\"id_str\":\"1209917689919164416\",\"name\":\"Phenomenal\",\"screen_name\":\"UdodirimUche\",\"location\":\"Nigeria\",\"description\":\"Small boy with a very Big God\\ud83c\\udfcb\\ufe0f\\u200d\\u2640\\ufe0f\\nNFT and crypto enthusiast\\nAvid novel Reader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":116,\"friends_count\":768,\"listed_count\":2,\"created_at\":\"Wed Dec 25 19:24:17 +0000 2019\",\"favourites_count\":2638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1209917689919164416\\/1649449035\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1889\":{\"id\":980743376579497984,\"id_str\":\"980743376579497984\",\"name\":\"Hinchy\",\"screen_name\":\"Giifthinchy\",\"location\":\"Nigeria\",\"description\":\"Music,entertainment\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Mon Apr 02 09:46:57 +0000 2018\",\"favourites_count\":1373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":532,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531553542623924228\\/LxfFUgQH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531553542623924228\\/LxfFUgQH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/980743376579497984\\/1525472626\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1890\":{\"id\":1501750832399892483,\"id_str\":\"1501750832399892483\",\"name\":\"azeezat_ ari.yike\",\"screen_name\":\"riyike001\",\"location\":\"Nigeria\",\"description\":\"||Striving Muslimah\\ud83e\\uddd5 ||Writer\\n||Arike ||Graphic designer sometimes \\n||Arabic\\ud83e\\udd0c\\u2764\\u2764\\n|| Jannah!\\ud83e\\udd32\\ud83e\\udd7a\",\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"expanded_url\":\"https:\\/\\/zeewrites17.blogspot.com\",\"display_url\":\"zeewrites17.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":93,\"listed_count\":0,\"created_at\":\"Thu Mar 10 02:44:50 +0000 2022\",\"favourites_count\":3135,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1414,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501750832399892483\\/1646880676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1891\":{\"id\":1477655041276317703,\"id_str\":\"1477655041276317703\",\"name\":\"EclairageAfrica\",\"screen_name\":\"EclairageAfrica\",\"location\":\"Lagos, Nigeria\",\"description\":\"Eclairage Africa believes every underprivileged person's dignity must be protected by clothing them. \\/DONATE A CLOTH\\/ SHARE YOUR WARMTH \\/. RN:178018\",\"url\":\"https:\\/\\/t.co\\/W2ZhIDM6JS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/W2ZhIDM6JS\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/eclairageafrica\",\"display_url\":\"linktr.ee\\/eclairageafrica\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Sun Jan 02 14:56:50 +0000 2022\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477655374467584007\\/PDrX_Y4s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477655374467584007\\/PDrX_Y4s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1477655041276317703\\/1641135749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1892\":{\"id\":1350449482605932545,\"id_str\":\"1350449482605932545\",\"name\":\"john francis official\",\"screen_name\":\"minJohnfrancis\",\"location\":\"Lagos, Nigeria\",\"description\":\"#BusinessCoach\\n#SocialmediaManager\\n#Gospel_music_minister\\n#content creator\\n#Digital_marketer\\n#blogger\\nYouTube @min john francis\\nInstagram @toocloser.com\\n\\u2764\\u2764\\u2764\\u2764\\u2764\",\"url\":\"https:\\/\\/t.co\\/nNzQToTk88\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nNzQToTk88\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/johnfrancis20\",\"display_url\":\"linktr.ee\\/johnfrancis20\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":542,\"friends_count\":714,\"listed_count\":2,\"created_at\":\"Sat Jan 16 14:27:21 +0000 2021\",\"favourites_count\":307,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":805,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495143415134183427\\/E8A1Cenl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495143415134183427\\/E8A1Cenl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1350449482605932545\\/1644023935\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1893\":{\"id\":889043064349745152,\"id_str\":\"889043064349745152\",\"name\":\"Vessel\",\"screen_name\":\"Vessel_Israel\",\"location\":\"OAU Ile ife Nigeria\",\"description\":\"A believer\\/\\/student of The word\\/\\/Worshipper\\/\\/Graphics Designer\\/\\/Perfectionist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":37,\"friends_count\":39,\"listed_count\":0,\"created_at\":\"Sun Jul 23 08:42:38 +0000 2017\",\"favourites_count\":1032,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":266,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1311002034959720450\\/6DhchEh4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1311002034959720450\\/6DhchEh4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889043064349745152\\/1601402215\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1894\":{\"id\":1339659346175799296,\"id_str\":\"1339659346175799296\",\"name\":\"leema\\u2019s glamour\",\"screen_name\":\"haleemamusah\",\"location\":\"Abuja, Nigeria\",\"description\":\"muslimah\\ud83e\\uddd5\\ud83c\\udffc. mommy\\u2019s girl \\ud83e\\udd70. introvert\\ud83c\\udf1a. #newaccount #makeup artist #juvia\\u2019s place\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":250,\"friends_count\":243,\"listed_count\":0,\"created_at\":\"Thu Dec 17 19:52:03 +0000 2020\",\"favourites_count\":5223,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":944,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522492466133360640\\/9zyVD54D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522492466133360640\\/9zyVD54D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1339659346175799296\\/1649715584\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1895\":{\"id\":1493128746890678278,\"id_str\":\"1493128746890678278\",\"name\":\"Adennn Consulting\",\"screen_name\":\"AdennnConsult\",\"location\":\"Abuja, Nigeria\",\"description\":\"BRAND STRATEGY || BRAND IDENTITY\\nTake you by the hand to create compelling strategies & designs for your business to thrive.\\nWe Believe In Your Name\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Mon Feb 14 07:44:00 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533073719555497984\\/se_-vuTm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533073719555497984\\/se_-vuTm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493128746890678278\\/1654348234\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1896\":{\"id\":1261104203688271875,\"id_str\":\"1261104203688271875\",\"name\":\"Mr Ikenna\",\"screen_name\":\"Everwise02\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"\\ud83d\\udc49\\ud83c\\udffeCEO,\\n\\ud83d\\udc49\\ud83c\\udffeEver Wise Multi Tech World.\\n\\ud83d\\udc49\\ud83c\\udffeDigital Marketer.\\n\\ud83d\\udc49\\ud83c\\udffeTutor\\/Inspirational Speaker.\\n\\ud83d\\udc49\\ud83c\\udffeBrand Therapist.\\n\\ud83d\\udc49\\ud83c\\udffehttps:\\/\\/t.co\\/2od7K7iVYr\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2od7K7iVYr\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/WQRLGAORNLVQF1\",\"display_url\":\"wa.me\\/message\\/WQRLGA\\u2026\",\"indices\":[109,132]}]}},\"protected\":false,\"followers_count\":47,\"friends_count\":370,\"listed_count\":0,\"created_at\":\"Fri May 15 01:21:09 +0000 2020\",\"favourites_count\":528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":230,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554184807105662978\\/gcT5ONGc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554184807105662978\\/gcT5ONGc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261104203688271875\\/1659251395\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1897\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1560,\"friends_count\":3011,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1898\":{\"id\":1319932737374031872,\"id_str\":\"1319932737374031872\",\"name\":\"Chanji\",\"screen_name\":\"Chanji2046\",\"location\":\"Awka\",\"description\":\"A crypto Enthusiast, Teacher and a vendor... $BTC $ETH $DOT $KSM $ATOM\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":553,\"listed_count\":6,\"created_at\":\"Sat Oct 24 09:24:30 +0000 2020\",\"favourites_count\":234,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":442,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319933008447754240\\/jGfMPAXA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319933008447754240\\/jGfMPAXA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1899\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1560,\"friends_count\":3011,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1900\":{\"id\":1170256505955934209,\"id_str\":\"1170256505955934209\",\"name\":\"Olathefunny\",\"screen_name\":\"Olathefunny\",\"location\":\"Lagos, Nigeria\",\"description\":\"(( Comedian )) Life Without Happiness Is Nothing\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1260,\"friends_count\":1576,\"listed_count\":0,\"created_at\":\"Sat Sep 07 08:44:45 +0000 2019\",\"favourites_count\":20581,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5210,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536341526187368448\\/ynqwdoHZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536341526187368448\\/ynqwdoHZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1170256505955934209\\/1655127350\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1901\":{\"id\":1532629196656283648,\"id_str\":\"1532629196656283648\",\"name\":\"3\\ud835\\uddd7 \\ud835\\udddf\\ud83d\\udeab\\ud835\\udde5\\ud835\\uddd7\\ud83d\\udc99\\ud83c\\udf39\\ud83d\\udda5\\ufe0f\",\"screen_name\":\"SambaBoy00\",\"location\":\"\\ud835\\udddf\\ud835\\uddee\\ud835\\uddf4\\ud835\\uddfc\\ud835\\ude00,\\ud835\\udde1\\ud835\\uddf6\\ud835\\uddf4\\ud835\\uddf2\\ud835\\uddff\\ud835\\uddf6\\ud835\\uddee\",\"description\":\"\\ud835\\uddd6.\\ud835\\uddd8.\\ud835\\udde2 \\ud835\\udde6\\ud835\\uddd4\\ud835\\udde0\\ud835\\uddd5\\ud835\\uddd4 \\ud835\\uddd7\\ud835\\udddc\\ud835\\uddda\\ud835\\udddc\\ud835\\udde7\\ud835\\uddd4\\ud835\\udddf\\ud835\\udde6\\ud83e\\udd35\\n\\ud835\\udde0\\ud835\\uddee\\ud835\\uddff\\ud835\\uddf8\\ud835\\uddf2\\ud835\\ude01\\ud835\\uddf2\\ud835\\uddff,\\ud835\\uddd6\\ud835\\uddfc\\ud835\\uddfb\\ud835\\ude01\\ud835\\uddf2\\ud835\\uddfb\\ud835\\ude01 \\ud835\\uddd6\\ud835\\uddff\\ud835\\uddf2\\ud835\\uddee\\ud835\\ude01\\ud835\\uddfc\\ud835\\uddff,\\ud83e\\uddb8\\u200d\\u2640\\ufe0f\\ud83e\\uddda\\u200d\\u2640\\ufe0f\\ud83c\\udfc7\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":283,\"listed_count\":0,\"created_at\":\"Fri Jun 03 07:44:30 +0000 2022\",\"favourites_count\":807,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1573,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553839851543330818\\/EGvigAJw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553839851543330818\\/EGvigAJw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1532629196656283648\\/1659227105\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1902\":{\"id\":1496974507394973698,\"id_str\":\"1496974507394973698\",\"name\":\"frayobliss\",\"screen_name\":\"isbliss_5\",\"location\":\"Lagos, Nigeria\",\"description\":\"welcome to my world.\\nibliss the thrillar.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":237,\"listed_count\":1,\"created_at\":\"Thu Feb 24 22:25:25 +0000 2022\",\"favourites_count\":1138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496974507394973698\\/1651762861\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1903\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1904\":{\"id\":1360582389668405249,\"id_str\":\"1360582389668405249\",\"name\":\"NKST Church High Level Makurdi\",\"screen_name\":\"NKST_HighLevel\",\"location\":\"Makurdi, Nigeria\",\"description\":\"We are an Evangelical, Reformed, Church of Christ. \\nMISSION: Winning souls for Jesus. Worship with us @ 13, Uke Wende Street High - Level Makurdi.\\nGod is Love!\",\"url\":\"https:\\/\\/t.co\\/1b59DR73wS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1b59DR73wS\",\"expanded_url\":\"http:\\/\\/nksthighlevelchurch.org\",\"display_url\":\"nksthighlevelchurch.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":121,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Sat Feb 13 13:31:54 +0000 2021\",\"favourites_count\":631,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512152560295194641\\/HmET_ztw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512152560295194641\\/HmET_ztw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1360582389668405249\\/1619334734\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1905\":{\"id\":1482286953806630912,\"id_str\":\"1482286953806630912\",\"name\":\"Hon Gaya\",\"screen_name\":\"MrGaya23\",\"location\":\"Nigeria\",\"description\":\"The legacy builder's, peace builder and Compassionate\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":193,\"friends_count\":577,\"listed_count\":0,\"created_at\":\"Sat Jan 15 09:42:31 +0000 2022\",\"favourites_count\":2693,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482286953806630912\\/1653148630\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1906\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1907\":{\"id\":168628285,\"id_str\":\"168628285\",\"name\":\"K33P WALKING\\ud83d\\udc4c\\ud83e\\udd82\\ud83d\\udcaf\",\"screen_name\":\"DIXXONofficial\",\"location\":\"lagos\",\"description\":\"engineer(sound engineer,automobile)||Social Media Marketter||flight reservation tickets||DM for adverts and promos||Brand influencer||\",\"url\":\"https:\\/\\/t.co\\/Vd7Xn7cyfB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Vd7Xn7cyfB\",\"expanded_url\":\"http:\\/\\/www.inline.inc.com\",\"display_url\":\"inline.inc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111,\"friends_count\":1708,\"listed_count\":2,\"created_at\":\"Tue Jul 20 11:42:18 +0000 2010\",\"favourites_count\":131,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495384951662993408\\/Ha0v6Tks_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495384951662993408\\/Ha0v6Tks_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/168628285\\/1593507799\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1908\":{\"id\":1254388611878998017,\"id_str\":\"1254388611878998017\",\"name\":\"Psycho\",\"screen_name\":\"rappsycho21\",\"location\":\"Accra, Ghana\",\"description\":\"Artist \\ud83c\\udfb6\\ud83c\\udf99\\/ Songwriter \\ud83c\\udfb6 and also an upcoming \\ud83d\\udd4b\\ud83d\\ude4f IG:officialpsycho send beat : abduldenlad@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":49,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Sun Apr 26 12:37:58 +0000 2020\",\"favourites_count\":827,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517247848907165704\\/T7WUcK0l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517247848907165704\\/T7WUcK0l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1254388611878998017\\/1655122582\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1909\":{\"id\":1487000964691341320,\"id_str\":\"1487000964691341320\",\"name\":\"The Benjamin Feyijimi\",\"screen_name\":\"thebenfeyijimi\",\"location\":\"Ibadan, Nigeria\",\"description\":\"President, 9ja&i initiative| O.A.P|Singer| Educationist| Author| Public Speaker\\n\\n#Nigeria&I\\n\\n#AdvocateForAbetterNigeria\\n\\nhttp:\\/\\/www.thebenjaminfeyijimiinitiativ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":177,\"friends_count\":570,\"listed_count\":0,\"created_at\":\"Fri Jan 28 09:54:21 +0000 2022\",\"favourites_count\":335,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":150,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487359066984927238\\/AMAuAdlZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487359066984927238\\/AMAuAdlZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487000964691341320\\/1643617436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1910\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1911\":{\"id\":1409667074721562627,\"id_str\":\"1409667074721562627\",\"name\":\"One Blood\",\"screen_name\":\"OneBlood_1\",\"location\":\"Accra, Ghana\",\"description\":\"Entertainment, sports and anything interesting \\u270a\\u270a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1485,\"friends_count\":1308,\"listed_count\":2,\"created_at\":\"Tue Jun 29 00:16:54 +0000 2021\",\"favourites_count\":4196,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2193,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1431732569318567936\\/t86bnDoS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1431732569318567936\\/t86bnDoS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1409667074721562627\\/1658625212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1912\":{\"id\":1481514315874193409,\"id_str\":\"1481514315874193409\",\"name\":\"MEGAMAN\",\"screen_name\":\"MEGAMAN638\",\"location\":\"somewhere on earth\",\"description\":\"ARCHITECT\\nCG ARTIST\\nGRAPHICS DESIGNER\\nFARMER\\n\\ud83d\\ude42\\ud83d\\ude42\\nCrypto enthusiast \\nNft creator\\nCharacter creator\\ngame world creator with unreal engine.\",\"url\":\"https:\\/\\/t.co\\/qIZpO7aLhK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qIZpO7aLhK\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/adewale638f6c5\",\"display_url\":\"behance.net\\/adewale638f6c5\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":180,\"friends_count\":83,\"listed_count\":0,\"created_at\":\"Thu Jan 13 06:32:46 +0000 2022\",\"favourites_count\":106,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":120,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515822627134263303\\/piRf211h_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515822627134263303\\/piRf211h_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481514315874193409\\/1659836789\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1913\":{\"id\":1653994592,\"id_str\":\"1653994592\",\"name\":\"Olaadura Olayinka Michael\",\"screen_name\":\"olaadura4christ\",\"location\":\"Oyo, Nigeria\",\"description\":\"A CHRISTIAN,A PROPHETIC EVANGELIST GOSPEL ARTIST, RELATIONSHIP COACH\\/COUNSELOR, A POLITICIAN.\\nThe chief officer at DIVINE NEWS MEDIA.\",\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"expanded_url\":\"http:\\/\\/mixlr.com\\/divine-news-media\",\"display_url\":\"mixlr.com\\/divine-news-me\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":102,\"listed_count\":0,\"created_at\":\"Wed Aug 07 22:15:50 +0000 2013\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":143,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1914\":{\"id\":207920369,\"id_str\":\"207920369\",\"name\":\"OGHALE\",\"screen_name\":\"Oghalegreatness\",\"location\":\"Lagos,Nigeria\",\"description\":\"I don't seek for attention but I get it. I'm just a lady with big dreams. I enjoy being natural,I'm just me. #Teamnomakeup\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Tue Oct 26 09:08:52 +0000 2010\",\"favourites_count\":734,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3365,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/207920369\\/1448980315\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1915\":{\"id\":281642857,\"id_str\":\"281642857\",\"name\":\"Nimot Adetola Sulaimon\",\"screen_name\":\"NaijaTalkative_\",\"location\":\"Lagos\",\"description\":\"Muslim\\/\\/B.A English and International Studies\\/\\/PRfluencer\\/\\/Correspondent @pmnewsnigeria \\/\\/Vendor Relations Manager @loveweddingsng \\u2709\\ufe0f nimetua@gmail.com\",\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"expanded_url\":\"http:\\/\\/pmnewsnigeria.com\",\"display_url\":\"pmnewsnigeria.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":465,\"friends_count\":918,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:42:18 +0000 2011\",\"favourites_count\":586,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/281642857\\/1569838198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1916\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1917\":{\"id\":1249866387293638659,\"id_str\":\"1249866387293638659\",\"name\":\"Osas Elizabeth\",\"screen_name\":\"snowkween9\",\"location\":\"Lagos, Nigeria\",\"description\":\"we are all bad in someone story\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":181,\"friends_count\":384,\"listed_count\":0,\"created_at\":\"Tue Apr 14 01:06:00 +0000 2020\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":170,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1249866701472239621\\/bRq6LE4S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1249866701472239621\\/bRq6LE4S_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1249866387293638659\\/1586832050\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1918\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1919\":{\"id\":93714489,\"id_str\":\"93714489\",\"name\":\"cy4ce 1chenaana\",\"screen_name\":\"Builsa_MaN\",\"location\":\"Ghana\",\"description\":\"|Sales|promotions\",\"url\":\"https:\\/\\/t.co\\/da5p8BYk2x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/da5p8BYk2x\",\"expanded_url\":\"https:\\/\\/builsamanstore.company.site\",\"display_url\":\"builsamanstore.company.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1237,\"friends_count\":1044,\"listed_count\":4,\"created_at\":\"Mon Nov 30 21:35:23 +0000 2009\",\"favourites_count\":1915,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3878,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553855716313780225\\/eLQG5U8K_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553855716313780225\\/eLQG5U8K_normal.jpg\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"DBE9ED\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1920\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1921\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1922\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1923\":{\"id\":1495459523452092421,\"id_str\":\"1495459523452092421\",\"name\":\"Kachi_Nation\",\"screen_name\":\"SimplestKachi\",\"location\":\"Fct Abuja\",\"description\":\"Affiliate to @SAMHAVARD.\\nDigital marketer \\nEntrepreneur \\nbusiness consultant.\",\"url\":\"https:\\/\\/t.co\\/7tocuL9Skm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7tocuL9Skm\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/8b2ukxas\",\"display_url\":\"tinyurl.com\\/8b2ukxas\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":19,\"listed_count\":0,\"created_at\":\"Sun Feb 20 18:05:39 +0000 2022\",\"favourites_count\":365,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":466,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548797988742615041\\/VG8v8YXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548797988742615041\\/VG8v8YXL_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1924\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1925\":{\"id\":900705160812482564,\"id_str\":\"900705160812482564\",\"name\":\"Your destiny\",\"screen_name\":\"AD_osahon\",\"location\":\"Benin-City, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec6ft5\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":574,\"listed_count\":2,\"created_at\":\"Thu Aug 24 13:03:39 +0000 2017\",\"favourites_count\":987,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":80,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549677419702980608\\/SklQrojt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549677419702980608\\/SklQrojt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/900705160812482564\\/1659472454\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1926\":{\"id\":1273666362364309504,\"id_str\":\"1273666362364309504\",\"name\":\"HushCloud\",\"screen_name\":\"etiene_umoren\",\"location\":\"Nigeria\",\"description\":\"Blockchain & cryptocurrency enthusiast, Technical writer || \\ud83d\\udccaproject promoter \\ud83d\\ude80|| A Brand Ambassador |https:\\/\\/t.co\\/7RHd4gZR2k\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7RHd4gZR2k\",\"expanded_url\":\"http:\\/\\/linktr.ee\\/umoren_etiene\",\"display_url\":\"linktr.ee\\/umoren_etiene\",\"indices\":[102,125]}]}},\"protected\":false,\"followers_count\":2904,\"friends_count\":1331,\"listed_count\":4,\"created_at\":\"Thu Jun 18 17:18:48 +0000 2020\",\"favourites_count\":14142,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317595962815164416\\/Cmv2c4sC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317595962815164416\\/Cmv2c4sC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1273666362364309504\\/1592556239\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1927\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1928\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1929\":{\"id\":1537383081824374784,\"id_str\":\"1537383081824374784\",\"name\":\"George Godwin\",\"screen_name\":\"Georgegodwin303\",\"location\":\"Rivers, Nigeria\",\"description\":\"Being myself\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jun 16 10:34:48 +0000 2022\",\"favourites_count\":60,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537383800610725895\\/p5t9W4H5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537383800610725895\\/p5t9W4H5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537383081824374784\\/1655888333\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1930\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1931\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1932\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1933\":{\"id\":537988948,\"id_str\":\"537988948\",\"name\":\"Afamefuna Cleopatra\",\"screen_name\":\"AfamefunaCleopa\",\"location\":\"NIGERIA\",\"description\":\"Kind hearted\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Tue Mar 27 08:42:31 +0000 2012\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/876395703022563328\\/7BvQwOfo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/876395703022563328\\/7BvQwOfo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1934\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1935\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1936\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1937\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1938\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1939\":{\"id\":1489745835806101506,\"id_str\":\"1489745835806101506\",\"name\":\"THE GREAT\",\"screen_name\":\"liljaytjy\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\udde618. multitalented \\ud83d\\ude48 ovoxolinkup \\ud83e\\udd89\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1047,\"friends_count\":344,\"listed_count\":0,\"created_at\":\"Fri Feb 04 23:41:10 +0000 2022\",\"favourites_count\":319,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":65,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489746064903180290\\/Ssc9cN6g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489746064903180290\\/Ssc9cN6g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489745835806101506\\/1652152418\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1940\":{\"id\":1552435559649492992,\"id_str\":\"1552435559649492992\",\"name\":\"WWS \\ud83d\\udecd\",\"screen_name\":\"wildwestshoppin\",\"location\":\"Minna, Nigeria\",\"description\":\"Shoes \\u2022 Sandals \\u2022 Caps \\u2022 Watches etc. || Minna\\ud83d\\udccc || WhatsApp: 08104504438 || Nationwide deliveries \\ud83d\\udce6\\ud83d\\udecd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Wed Jul 27 23:27:47 +0000 2022\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":75,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552436828732547072\\/yMCP46Kp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552436828732547072\\/yMCP46Kp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1941\":{\"id\":1142370935359647744,\"id_str\":\"1142370935359647744\",\"name\":\"Tare\",\"screen_name\":\"TareVictoria\",\"location\":\"Asaba\",\"description\":\"Perfume whore\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1407,\"friends_count\":907,\"listed_count\":2,\"created_at\":\"Sat Jun 22 09:57:09 +0000 2019\",\"favourites_count\":13997,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":459,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478303492049707009\\/ukviakWQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478303492049707009\\/ukviakWQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1142370935359647744\\/1641289994\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1942\":{\"id\":1191416988784091136,\"id_str\":\"1191416988784091136\",\"name\":\"Vivian\",\"screen_name\":\"Thatcrochetgal\",\"location\":\"Owerri, Nigeria\",\"description\":\"A Crochet artist \\ud83e\\uddf6\\ud83e\\uddf6\\ud83e\\uddf6\\nIG @veevs_crochets \\nTiktok @_veevs_crochets\\nemail \\ud83d\\udce7debby98vivian@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":207,\"listed_count\":0,\"created_at\":\"Mon Nov 04 18:09:05 +0000 2019\",\"favourites_count\":3654,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550911734554279936\\/ePGN7RfD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550911734554279936\\/ePGN7RfD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191416988784091136\\/1658339219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1943\":{\"id\":1493678526242988032,\"id_str\":\"1493678526242988032\",\"name\":\"Tezi\",\"screen_name\":\"ItsTezi\",\"location\":\"Ughelli, Nigeria\",\"description\":\"I love me \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":38,\"listed_count\":0,\"created_at\":\"Tue Feb 15 20:08:47 +0000 2022\",\"favourites_count\":194,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553106547533877249\\/S6b1ZEmT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553106547533877249\\/S6b1ZEmT_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1944\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1945\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1946\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1947\":{\"id\":1008855480,\"id_str\":\"1008855480\",\"name\":\"Yorla\",\"screen_name\":\"Yorlakh\",\"location\":\"Accra, Ghana\",\"description\":\"I am a professional beekeeper.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":756,\"friends_count\":664,\"listed_count\":4,\"created_at\":\"Thu Dec 13 13:51:33 +0000 2012\",\"favourites_count\":3519,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3035,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008855480\\/1616238421\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1948\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1949\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1950\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1951\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1952\":{\"id\":1343434638983892993,\"id_str\":\"1343434638983892993\",\"name\":\"Karen\\ud83d\\udc93\",\"screen_name\":\"baby_girl_karen\",\"location\":\"Nigeria\",\"description\":\"Creating my own sunshine \\ud83e\\udd7a\\ud83d\\udc95\",\"url\":\"https:\\/\\/t.co\\/lVz7aL0rXg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lVz7aL0rXg\",\"expanded_url\":\"https:\\/\\/instagram.com\\/karenokuna?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/karenokuna?igs\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":92,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Mon Dec 28 05:53:47 +0000 2020\",\"favourites_count\":1108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":323,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554158123333681153\\/TGKyEVxQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554158123333681153\\/TGKyEVxQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1343434638983892993\\/1613021186\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1953\":{\"id\":1547519450739613697,\"id_str\":\"1547519450739613697\",\"name\":\"Majik Hub (Former account got blocked)\",\"screen_name\":\"_majikhub\",\"location\":\"Nigeria\",\"description\":\"We are here for you!!\\nCreative Designs | Content Writing | SM Management | Marketing and lot more\\n\\ud83d\\udcf108026897790\\n\\ud83d\\udce7majikhub@gmail.com\\n\\ud83d\\udce9or Send a DM\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Thu Jul 14 09:52:58 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549743444314177536\\/oLb5tr_b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549743444314177536\\/oLb5tr_b_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1954\":{\"id\":1098317496791322624,\"id_str\":\"1098317496791322624\",\"name\":\"Geroman\",\"screen_name\":\"nezzylayo\",\"location\":\"Ibadan, Nigeria\",\"description\":\"A song writer, performer and also a recording Artiste, Gmail : nezzylayo@Gmail.com , jinaduolufemi95@gmail.com , WhatsApp number : 08155549200.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":146,\"friends_count\":123,\"listed_count\":1,\"created_at\":\"Wed Feb 20 20:24:31 +0000 2019\",\"favourites_count\":9282,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":876,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536793508413063169\\/nbpWJwV4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536793508413063169\\/nbpWJwV4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1098317496791322624\\/1654976586\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1955\":{\"id\":1212033221984059398,\"id_str\":\"1212033221984059398\",\"name\":\"\\ud83d\\udc7d\",\"screen_name\":\"wendugodson\",\"location\":\"Lagos, Nigeria\",\"description\":\"I\\u2019m not here to please you.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":209,\"friends_count\":186,\"listed_count\":0,\"created_at\":\"Tue Dec 31 15:30:26 +0000 2019\",\"favourites_count\":16942,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2245,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555981341262487557\\/36NNT7II_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555981341262487557\\/36NNT7II_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212033221984059398\\/1659809928\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1956\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1957\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1958\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1959\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1960\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1961\":{\"id\":824532229930020864,\"id_str\":\"824532229930020864\",\"name\":\"MYB\",\"screen_name\":\"officialmyb_\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Creative | AfroBeat is the Highlife \\ud83c\\uddf3\\ud83c\\uddec 08123225276 | THIS YEAR OUT NOW\",\"url\":\"https:\\/\\/t.co\\/eDZ1D9aStW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eDZ1D9aStW\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/artist\\/officialmyb\",\"display_url\":\"audiomack.com\\/artist\\/officia\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":403,\"friends_count\":1217,\"listed_count\":3,\"created_at\":\"Thu Jan 26 08:19:37 +0000 2017\",\"favourites_count\":1143,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489792324746022922\\/HFs4jekX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489792324746022922\\/HFs4jekX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/824532229930020864\\/1590882995\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1962\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1963\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1964\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1965\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1966\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1967\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1968\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1969\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1970\":{\"id\":3306025499,\"id_str\":\"3306025499\",\"name\":\"Togbe Kojo Wolasime I\",\"screen_name\":\"kojowolasime\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Advertising & Marketing Consultant\",\"url\":\"https:\\/\\/t.co\\/jScrk8NTQc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jScrk8NTQc\",\"expanded_url\":\"http:\\/\\/thewolasimes.com\",\"display_url\":\"thewolasimes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":208,\"friends_count\":70,\"listed_count\":3,\"created_at\":\"Mon Jun 01 21:31:38 +0000 2015\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":32,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213556567544483840\\/1-xAUbNB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213556567544483840\\/1-xAUbNB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3306025499\\/1578169408\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1971\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1972\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1973\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1974\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1975\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1976\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1977\":{\"id\":1306672934,\"id_str\":\"1306672934\",\"name\":\"Virtue Grace YouTube\",\"screen_name\":\"virtue_grace\",\"location\":\"Lagos, Nigeria\",\"description\":\"African Storytellerer |YouTube Content Creator\",\"url\":\"https:\\/\\/t.co\\/J1KLk1DXbA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J1KLk1DXbA\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC2lA5y4dwSyiWMbSj69IlNQ\",\"display_url\":\"youtube.com\\/channel\\/UC2lA5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":249,\"listed_count\":4,\"created_at\":\"Wed Mar 27 06:15:16 +0000 2013\",\"favourites_count\":1059,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":306,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1161690220657618944\\/6jXMjohp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1161690220657618944\\/6jXMjohp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1306672934\\/1651401073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1978\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1979\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1980\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1981\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1982\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1983\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1984\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1985\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1986\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1987\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1988\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1989\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1990\":{\"id\":1393095027753201665,\"id_str\":\"1393095027753201665\",\"name\":\"Rabbi\",\"screen_name\":\"_cfoluwatade\",\"location\":\"Lagos, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1637,\"friends_count\":3937,\"listed_count\":1,\"created_at\":\"Fri May 14 06:45:49 +0000 2021\",\"favourites_count\":3761,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1260,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542635808011812868\\/lDMA2uhJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542635808011812868\\/lDMA2uhJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1393095027753201665\\/1620975543\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1991\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1992\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1993\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1994\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1995\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1996\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1997\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1998\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"1999\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2000\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2001\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2002\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2003\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2004\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2005\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2006\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2007\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2008\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2009\":{\"id\":999980858986680320,\"id_str\":\"999980858986680320\",\"name\":\"prince aso\",\"screen_name\":\"Princeaso_\",\"location\":\"Lagos , Nigeria\",\"description\":\"Musician\\/comedian \\/ Content creator\\/ Graphics Designer\\/ Business Tycoon.\\nFor Booking: princeasomusic@gmail.com\\nInstagram @princeaso_\",\"url\":\"https:\\/\\/t.co\\/AMD1Qmt4GY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AMD1Qmt4GY\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/princeaso\\/song\\/pray-for-nigeria\",\"display_url\":\"audiomack.com\\/princeaso\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":976,\"friends_count\":1878,\"listed_count\":9,\"created_at\":\"Fri May 25 11:49:50 +0000 2018\",\"favourites_count\":11916,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493632902176854025\\/VEZzqYWf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493632902176854025\\/VEZzqYWf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/999980858986680320\\/1629286768\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2010\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2011\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2012\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2013\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2014\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2015\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2016\":{\"id\":1399364650928574466,\"id_str\":\"1399364650928574466\",\"name\":\"Oluwatobi is king\",\"screen_name\":\"Oluwatob1_king\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Sustainable Development Advocate= Foodie=Baker=music lover = Voice Over Artist=YouTuber= Brand Influencer\",\"url\":\"https:\\/\\/t.co\\/yrsfgCFKNd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrsfgCFKNd\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCD1LOZ5MGcME_U9Afedafog\",\"display_url\":\"youtube.com\\/channel\\/UCD1LO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":140,\"listed_count\":0,\"created_at\":\"Mon May 31 13:58:55 +0000 2021\",\"favourites_count\":456,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465681517187850245\\/o9CHbAW4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465681517187850245\\/o9CHbAW4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399364650928574466\\/1622470237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2017\":{\"id\":898432343093919744,\"id_str\":\"898432343093919744\",\"name\":\"B Madonna\",\"screen_name\":\"officialbmadona\",\"location\":\"Abuja, Nigeria\",\"description\":\"-Dental Hygienist\\/Public Health Specialist\\n-Model\\n-Techsters \\ud83c\\udf1f\",\"url\":\"https:\\/\\/t.co\\/RThit3aMl2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RThit3aMl2\",\"expanded_url\":\"https:\\/\\/discord.gg\\/mZbUx4ygRN\",\"display_url\":\"discord.gg\\/mZbUx4ygRN\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":117,\"listed_count\":0,\"created_at\":\"Fri Aug 18 06:32:17 +0000 2017\",\"favourites_count\":255,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":177,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1382611710712938497\\/qFRPN6Sg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1382611710712938497\\/qFRPN6Sg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/898432343093919744\\/1655069805\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2018\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2019\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2020\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2021\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2022\":{\"id\":743814793941913600,\"id_str\":\"743814793941913600\",\"name\":\"Royal Oak Inc\",\"screen_name\":\"RoyalOakInc\",\"location\":\"BK\",\"description\":\"#VentureCap \\nTechnical, Sentiment, Fundamental \\n#CRYPTO - #P2E #Metaverse #GAMING \\n#BTC #ETH - #Stocks - #Economy \\nNot FA DYOR\",\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCmJkSVdn6f7-iHhT4bGAPbA\",\"display_url\":\"youtube.com\\/channel\\/UCmJkS\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":831,\"friends_count\":468,\"listed_count\":23,\"created_at\":\"Fri Jun 17 14:37:21 +0000 2016\",\"favourites_count\":4388,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743814793941913600\\/1659493718\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2023\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2024\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2025\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2026\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2027\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2028\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2029\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2030\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2031\":{\"id\":1495890640277843974,\"id_str\":\"1495890640277843974\",\"name\":\"Up2date Entertainment\",\"screen_name\":\"Up2date_media\",\"location\":\"\",\"description\":\"Up2date to the wiase\\ud83c\\udf0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Mon Feb 21 22:38:48 +0000 2022\",\"favourites_count\":87,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495890946311049223\\/RXrM2XU1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495890946311049223\\/RXrM2XU1_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2032\":{\"id\":1217516988655906816,\"id_str\":\"1217516988655906816\",\"name\":\"Blacqtv\",\"screen_name\":\"blacqtv\",\"location\":\"surulere Lagos Nigeria\",\"description\":\"blacqtv number 1 online tv\\n\\nhttps:\\/\\/t.co\\/W3F5Xyhy48\",\"url\":\"https:\\/\\/t.co\\/25imIeqjaQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/25imIeqjaQ\",\"expanded_url\":\"http:\\/\\/www.blacqtv.com\",\"display_url\":\"blacqtv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/W3F5Xyhy48\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCwlL6lgtlG1uBahqybSYyxA\",\"display_url\":\"youtube.com\\/channel\\/UCwlL6\\u2026\",\"indices\":[28,51]}]}},\"protected\":false,\"followers_count\":46,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Jan 15 18:41:09 +0000 2020\",\"favourites_count\":225,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":699,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1398343007510974473\\/-jL8ZCf7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1398343007510974473\\/-jL8ZCf7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1217516988655906816\\/1622226037\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2033\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2034\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2035\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2036\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2037\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2038\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2039\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2040\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2041\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2042\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2043\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2044\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2045\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2046\":{\"id\":1399365823517671424,\"id_str\":\"1399365823517671424\",\"name\":\"loyalist \\ud83d\\udc99\\ud83c\\udfce\\ud83d\\ude97\\ud83d\\udcabFKCC\",\"screen_name\":\"femkings\",\"location\":\"Lagos, Nigeria\",\"description\":\"WE DEAL |||| IN ALL AUTOMOBILE BRANDS ALSO DO PRE ORDER... FROM USA\\ud83c\\uddfa\\ud83c\\uddf8FORGIEN USED OR LOCALLY REGISTERED ...@femkings .. Suspended acct @FEMKINGSAUTOS\",\"url\":\"https:\\/\\/t.co\\/4BcFZtj0Tn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4BcFZtj0Tn\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/CBBYUHF3GGDGM1\",\"display_url\":\"wa.me\\/message\\/CBBYUH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":591,\"friends_count\":2506,\"listed_count\":3,\"created_at\":\"Mon May 31 14:03:17 +0000 2021\",\"favourites_count\":2788,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480189045758214153\\/3u-HzfwL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480189045758214153\\/3u-HzfwL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399365823517671424\\/1642261100\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2047\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2048\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2049\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2050\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2051\":{\"id\":1514923901108764676,\"id_str\":\"1514923901108764676\",\"name\":\"PAMILERIN\",\"screen_name\":\"PAMILER25805351\",\"location\":\"Web3\",\"description\":\"Keep fighting through your worst days. It's how you earn your best days. trust me #nft is the future\",\"url\":\"https:\\/\\/t.co\\/uMiXiPpFvd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uMiXiPpFvd\",\"expanded_url\":\"https:\\/\\/opensea.io\\/Art_and_cultures\",\"display_url\":\"opensea.io\\/Art_and_cultur\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":92,\"listed_count\":0,\"created_at\":\"Fri Apr 15 11:09:48 +0000 2022\",\"favourites_count\":126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551259319882194944\\/VPx1esm-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551259319882194944\\/VPx1esm-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514923901108764676\\/1650021197\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2052\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2053\":{\"id\":403033229,\"id_str\":\"403033229\",\"name\":\"TBC, CSC.\",\"screen_name\":\"Adedayomichaels\",\"location\":\"lagos\",\"description\":\"I am an International Emissary, A Global Citizen \\ud83d\\udcbc \\/Author. (First Class, Na Beans) \\/WeddingEmcee\\ud83e\\udd70\\/ CorporateEvent Host\\ud83c\\udfa4! @fcbarcelona\\ud83d\\ude0d\\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\",\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"expanded_url\":\"https:\\/\\/aheadly.co\\/yes\",\"display_url\":\"aheadly.co\\/yes\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":1190,\"listed_count\":0,\"created_at\":\"Tue Nov 01 22:45:10 +0000 2011\",\"favourites_count\":3194,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3899,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/403033229\\/1614815397\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2054\":{\"id\":1316387563167518720,\"id_str\":\"1316387563167518720\",\"name\":\"BeholdHomes\",\"screen_name\":\"Behold_Homes\",\"location\":\"Lekki, Nigeria\",\"description\":\"A real estate company from Nigeria focused on building and selling luxury homes and estates in the country. \\ud83c\\udfe0\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/rce5Y5bXoY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rce5Y5bXoY\",\"expanded_url\":\"http:\\/\\/beholdhomesproperty.com\",\"display_url\":\"beholdhomesproperty.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1091,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Wed Oct 14 14:37:22 +0000 2020\",\"favourites_count\":126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":222,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316387711926837249\\/zl0siVup_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316387711926837249\\/zl0siVup_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316387563167518720\\/1602686474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2055\":{\"id\":1258092074622160897,\"id_str\":\"1258092074622160897\",\"name\":\"FEMI AFRICA SP\",\"screen_name\":\"femiafricaNG\",\"location\":\"lagos \",\"description\":\"Herbalist son\\ud83d\\udc80\\u2620\\ufe0f | comedian\",\"url\":\"https:\\/\\/t.co\\/r6WJvutq7p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/r6WJvutq7p\",\"expanded_url\":\"http:\\/\\/www.femiafrica.com\",\"display_url\":\"femiafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2723,\"friends_count\":141,\"listed_count\":1,\"created_at\":\"Wed May 06 17:52:01 +0000 2020\",\"favourites_count\":192,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":347,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556041057929920512\\/CkHVVEJ1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556041057929920512\\/CkHVVEJ1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1258092074622160897\\/1657584205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2056\":{\"id\":893321941,\"id_str\":\"893321941\",\"name\":\"\\ud835\\udcd0\\ud835\\udcf1\\ud835\\udcfc\\ud835\\udcea\\ud835\\udcf7 \\ud835\\udcdd\\ud835\\udcea\\ud835\\udcfa\\ud835\\udcff\\ud835\\udcf2\",\"screen_name\":\"ahsaan444\",\"location\":\"\\ud835\\udc7c\\ud835\\udc68\\ud835\\udc6c\",\"description\":\"\\ud835\\udc7b\\ud835\\udc89\\ud835\\udc8a\\ud835\\udc8f\\ud835\\udc88\\ud835\\udc94 \\ud835\\udc98\\ud835\\udc8a\\ud835\\udc8d\\ud835\\udc8d \\ud835\\udc83\\ud835\\udc86 \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93 \\ud835\\udc8a\\ud835\\udc87 \\ud835\\udc96 \\ud835\\udc98\\ud835\\udc82\\ud835\\udc8f\\ud835\\udc95 \\ud835\\udc95\\ud835\\udc90 \\ud835\\udc8e\\ud835\\udc82\\ud835\\udc8c\\ud835\\udc86 \\ud835\\udc95\\ud835\\udc89\\ud835\\udc86\\ud835\\udc8e \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":1581,\"listed_count\":0,\"created_at\":\"Sat Oct 20 14:06:24 +0000 2012\",\"favourites_count\":425,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/893321941\\/1653047288\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2057\":{\"id\":851710432083574784,\"id_str\":\"851710432083574784\",\"name\":\"dear dapson\",\"screen_name\":\"DearDapson\",\"location\":\"Lagos, Nigeria\",\"description\":\"Therapist\\n\\n\\nThe Scopio King\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":204,\"friends_count\":112,\"listed_count\":0,\"created_at\":\"Tue Apr 11 08:16:05 +0000 2017\",\"favourites_count\":548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3909,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1128995032147611648\\/gzzdJj0z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1128995032147611648\\/gzzdJj0z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2058\":{\"id\":889548207121989632,\"id_str\":\"889548207121989632\",\"name\":\"Tizzie\",\"screen_name\":\"tizzieofficial\",\"location\":\"\",\"description\":\"Rep BIGWIZ and Messi \\u2665\\ufe0f\\ud83e\\udd85\\ud83d\\udda4. A Professional Barber. Unilorite. Lover of Music and football. YouTubehttps:\\/\\/youtube.com\\/channel\\/UCyfA3o-KcOmsCXxxKIPLP1AU1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":1124,\"listed_count\":0,\"created_at\":\"Mon Jul 24 18:09:54 +0000 2017\",\"favourites_count\":97643,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":939,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889548207121989632\\/1651779013\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2059\":{\"id\":1461233220285046786,\"id_str\":\"1461233220285046786\",\"name\":\"Agro Market Square\",\"screen_name\":\"agromarketsquar\",\"location\":\"Nigeria\",\"description\":\"#Agro Market Square is a B2B platform that connects #smallholder farmers directly with value chain actors in an open and transparent #marketplace.\",\"url\":\"https:\\/\\/t.co\\/2BCadqJxsN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2BCadqJxsN\",\"expanded_url\":\"http:\\/\\/agromarketsquare.com\",\"display_url\":\"agromarketsquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":37,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Thu Nov 18 07:24:32 +0000 2021\",\"favourites_count\":604,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":77,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504694896145354753\\/7jKR9mLG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504694896145354753\\/7jKR9mLG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461233220285046786\\/1647582604\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2060\":{\"id\":3129184060,\"id_str\":\"3129184060\",\"name\":\"\\u00bdman,\\u00bdamazing\",\"screen_name\":\"Eddyofedinville\",\"location\":\"Lagos, Nigeria\",\"description\":\"Life hacker, DIY enthusiasts, fashion designer, civil engineer, investor\\/business minded, potentialist, music, sport, Arsenal.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Mon Mar 30 14:34:36 +0000 2015\",\"favourites_count\":4496,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535879942394761218\\/aJx2W1Fm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535879942394761218\\/aJx2W1Fm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3129184060\\/1607018142\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2061\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2062\":{\"id\":2863464223,\"id_str\":\"2863464223\",\"name\":\"Join The Jihad\",\"screen_name\":\"SeekingJustPath\",\"location\":\"Freetown, Sierra Leone\",\"description\":\"#godAI #MagickMatrix #GogMagog #JoinTheJihad\\n#Evolution #CERN #TimeReversal #AIDrivenEvolution #Islam \\n\\nhttps:\\/\\/t.co\\/4FYDjLSfEl\",\"url\":\"https:\\/\\/t.co\\/xpYIm2yX2q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xpYIm2yX2q\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC1Lq3YChUb0eUT9IE1xPVCQ\",\"display_url\":\"youtube.com\\/channel\\/UC1Lq3\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4FYDjLSfEl\",\"expanded_url\":\"https:\\/\\/www.brighteon.com\\/channels\\/sonofadam\",\"display_url\":\"brighteon.com\\/channels\\/sonof\\u2026\",\"indices\":[104,127]}]}},\"protected\":false,\"followers_count\":832,\"friends_count\":899,\"listed_count\":15,\"created_at\":\"Sat Oct 18 20:33:37 +0000 2014\",\"favourites_count\":6844,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1427034759574822913\\/ySldCeFn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1427034759574822913\\/ySldCeFn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2863464223\\/1629066625\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2063\":{\"id\":747420751465054209,\"id_str\":\"747420751465054209\",\"name\":\"Small but Mighty Opinion\",\"screen_name\":\"serial_ranter\",\"location\":\"Lagos, Nigeria\",\"description\":\"Author of Water and Fire, Storyteller, Content creator, Digital Marketer, professional resume writer & LinkedIn optimization expert.\",\"url\":\"https:\\/\\/t.co\\/S7lc2RR8TA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S7lc2RR8TA\",\"expanded_url\":\"http:\\/\\/www.ofunneceo.blogspot.com\",\"display_url\":\"ofunneceo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":214,\"friends_count\":333,\"listed_count\":1,\"created_at\":\"Mon Jun 27 13:26:08 +0000 2016\",\"favourites_count\":560,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1219,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1326780805574750214\\/sWvzBb7Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1326780805574750214\\/sWvzBb7Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/747420751465054209\\/1571131412\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2064\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2065\":{\"id\":969385391857037313,\"id_str\":\"969385391857037313\",\"name\":\"Johnson Le Artiste \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"JohnsonLeArtist\",\"location\":\"Nigeria\",\"description\":\"A student Electrical Electronics Engineer, a visual Artist, singer and a professional listener.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":249,\"friends_count\":670,\"listed_count\":0,\"created_at\":\"Fri Mar 02 01:34:22 +0000 2018\",\"favourites_count\":1854,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/969385391857037313\\/1603226397\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2066\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2067\":{\"id\":1524508089172561920,\"id_str\":\"1524508089172561920\",\"name\":\"Charles Etoh\",\"screen_name\":\"charles_etoh\",\"location\":\"Owerri, Nigeria\",\"description\":\"\\u2605Affiliate Marketing Coach\\u2605\\nConnect with me for tweets about Internet businesses and how you can make a minimum of 150k\\/month online with your smartphone\",\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"expanded_url\":\"https:\\/\\/wa.link\\/xh7n42\",\"display_url\":\"wa.link\\/xh7n42\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Wed May 11 21:54:55 +0000 2022\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524508089172561920\\/1659402807\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2068\":{\"id\":1524508089172561920,\"id_str\":\"1524508089172561920\",\"name\":\"Charles Etoh\",\"screen_name\":\"charles_etoh\",\"location\":\"Owerri, Nigeria\",\"description\":\"\\u2605Affiliate Marketing Coach\\u2605\\nConnect with me for tweets about Internet businesses and how you can make a minimum of 150k\\/month online with your smartphone\",\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"expanded_url\":\"https:\\/\\/wa.link\\/xh7n42\",\"display_url\":\"wa.link\\/xh7n42\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Wed May 11 21:54:55 +0000 2022\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524508089172561920\\/1659402807\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2069\":{\"id\":1524508089172561920,\"id_str\":\"1524508089172561920\",\"name\":\"Charles Etoh\",\"screen_name\":\"charles_etoh\",\"location\":\"Owerri, Nigeria\",\"description\":\"\\u2605Affiliate Marketing Coach\\u2605\\nConnect with me for tweets about Internet businesses and how you can make a minimum of 150k\\/month online with your smartphone\",\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"expanded_url\":\"https:\\/\\/wa.link\\/xh7n42\",\"display_url\":\"wa.link\\/xh7n42\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Wed May 11 21:54:55 +0000 2022\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524508089172561920\\/1659402807\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2070\":{\"id\":1524508089172561920,\"id_str\":\"1524508089172561920\",\"name\":\"Charles Etoh\",\"screen_name\":\"charles_etoh\",\"location\":\"Owerri, Nigeria\",\"description\":\"\\u2605Affiliate Marketing Coach\\u2605\\nConnect with me for tweets about Internet businesses and how you can make a minimum of 150k\\/month online with your smartphone\",\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZpXXkRxil\",\"expanded_url\":\"https:\\/\\/wa.link\\/xh7n42\",\"display_url\":\"wa.link\\/xh7n42\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Wed May 11 21:54:55 +0000 2022\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541481580178317313\\/11rX2Vy6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524508089172561920\\/1659402807\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2071\":{\"id\":1545827893045084163,\"id_str\":\"1545827893045084163\",\"name\":\"Modella\",\"screen_name\":\"modellabbn\",\"location\":\"Nigeria\",\"description\":\"The 26th #BBNaija\\u00a0 Level Up Housemate, modella #modellabbn\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Sat Jul 09 17:51:45 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554277648330801156\\/HuTUBvXz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554277648330801156\\/HuTUBvXz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1545827893045084163\\/1659294780\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2072\":{\"id\":1317098131742445571,\"id_str\":\"1317098131742445571\",\"name\":\"KING\\ud83e\\udd34\\ud83e\\udd34\\ud83e\\udd34 David\",\"screen_name\":\"olonite_s\",\"location\":\"Nigeria\",\"description\":\"Right Writer| Rare Realist| Ironic\\nPhilosopher,Intellectual Fighter,mounter,Skilled Poet,Nigerian Scientist,Born orator,\\nCreative Essayist,Pen soldier\",\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/olonite_s\\/\",\"display_url\":\"instagram.com\\/olonite_s\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":786,\"friends_count\":834,\"listed_count\":0,\"created_at\":\"Fri Oct 16 13:41:03 +0000 2020\",\"favourites_count\":1427,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":990,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317098131742445571\\/1618848804\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2073\":{\"id\":1317098131742445571,\"id_str\":\"1317098131742445571\",\"name\":\"KING\\ud83e\\udd34\\ud83e\\udd34\\ud83e\\udd34 David\",\"screen_name\":\"olonite_s\",\"location\":\"Nigeria\",\"description\":\"Right Writer| Rare Realist| Ironic\\nPhilosopher,Intellectual Fighter,mounter,Skilled Poet,Nigerian Scientist,Born orator,\\nCreative Essayist,Pen soldier\",\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/olonite_s\\/\",\"display_url\":\"instagram.com\\/olonite_s\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":786,\"friends_count\":834,\"listed_count\":0,\"created_at\":\"Fri Oct 16 13:41:03 +0000 2020\",\"favourites_count\":1427,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":990,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317098131742445571\\/1618848804\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2074\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2075\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2076\":{\"id\":810013640,\"id_str\":\"810013640\",\"name\":\"Eric Atasia \\ud83d\\udc9b\\ud83d\\udc99\",\"screen_name\":\"ericatasia\",\"location\":\"Lagos, Nigeria\",\"description\":\"DTWS (Drunk Till We Sleep) Trap Remix OUT! Listen on Spotify with link below \\ud83d\\udc47\\ud83c\\udffe bookings: bookericatasia@gmail.com\",\"url\":\"https:\\/\\/t.co\\/ngOxdREP42\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ngOxdREP42\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/album\\/5gbluS2VW8J6a7g4dm94YR?si=Cekzd8uETUStRVNuQ5uMbg\",\"display_url\":\"open.spotify.com\\/album\\/5gbluS2V\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2981,\"friends_count\":1223,\"listed_count\":6,\"created_at\":\"Sat Sep 08 02:25:21 +0000 2012\",\"favourites_count\":7391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4491,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521846557284442112\\/-nJ0K5Ny_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521846557284442112\\/-nJ0K5Ny_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/810013640\\/1651671481\",\"profile_link_color\":\"94D487\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2077\":{\"id\":1255434563901423618,\"id_str\":\"1255434563901423618\",\"name\":\"AG\",\"screen_name\":\"AlugbinGodwin\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Front-end developer || Tech Blogger || Spainish\\ud83c\\uddea\\ud83c\\uddf8 lover || Yoruba Nation citizen || Built https:\\/\\/t.co\\/p5ZHCigHNB\",\"url\":\"https:\\/\\/t.co\\/UNVck9c9TM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UNVck9c9TM\",\"expanded_url\":\"http:\\/\\/godilon.vercel.app\",\"display_url\":\"godilon.vercel.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p5ZHCigHNB\",\"expanded_url\":\"https:\\/\\/devilon.online\",\"display_url\":\"devilon.online\",\"indices\":[90,113]}]}},\"protected\":false,\"followers_count\":34,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Wed Apr 29 09:51:50 +0000 2020\",\"favourites_count\":599,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":135,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554115704017879040\\/46XS9qba_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554115704017879040\\/46XS9qba_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2078\":{\"id\":1454461398885486595,\"id_str\":\"1454461398885486595\",\"name\":\"Prime Business Africa\",\"screen_name\":\"PB_Africa\",\"location\":\"Nigeria\",\"description\":\"Africa's leading multimedia platform for Business Intelligence, Policy & market-moving news\",\"url\":\"https:\\/\\/t.co\\/N5cTJTom9E\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N5cTJTom9E\",\"expanded_url\":\"http:\\/\\/www.primebusiness.africa\",\"display_url\":\"primebusiness.africa\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":76,\"listed_count\":1,\"created_at\":\"Sat Oct 30 14:54:27 +0000 2021\",\"favourites_count\":4661,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1454466653924777984\\/PNSamHEN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1454466653924777984\\/PNSamHEN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1454461398885486595\\/1638279417\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2079\":{\"id\":815446476,\"id_str\":\"815446476\",\"name\":\"Akewusolaf Blog\",\"screen_name\":\"AkewusolafBNG\",\"location\":\"Nigeria\",\"description\":\"Your #1 Go-to for News| Politics |Sport| Entertainment| Gist| Fashion| Lifestyles| Quotes| Current Affairs| For stories & advert Enq: akewusolafblog@gmail.com\",\"url\":\"https:\\/\\/t.co\\/bW808XZle7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bW808XZle7\",\"expanded_url\":\"http:\\/\\/akewusolafblog.com\",\"display_url\":\"akewusolafblog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1737,\"friends_count\":2271,\"listed_count\":1,\"created_at\":\"Mon Sep 10 15:29:32 +0000 2012\",\"favourites_count\":26708,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7192,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546643626381434880\\/QunRBM8q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546643626381434880\\/QunRBM8q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2080\":{\"id\":827379676251246592,\"id_str\":\"827379676251246592\",\"name\":\"Otobong Inieke\",\"screen_name\":\"devinieke\",\"location\":\"Niger Delta\",\"description\":\"Web developer. Indie Researcher. I promise i am not battery operated. See evidence at https:\\/\\/t.co\\/kqw2uglr79\",\"url\":\"https:\\/\\/t.co\\/eFVrxSVUd8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eFVrxSVUd8\",\"expanded_url\":\"https:\\/\\/devinieke.com.ng\\/\",\"display_url\":\"devinieke.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kqw2uglr79\",\"expanded_url\":\"http:\\/\\/devinieke.com.ng\",\"display_url\":\"devinieke.com.ng\",\"indices\":[86,109]}]}},\"protected\":false,\"followers_count\":61,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Feb 03 04:54:21 +0000 2017\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":223,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550302608023232513\\/qHIZjxd2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550302608023232513\\/qHIZjxd2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/827379676251246592\\/1564493213\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2081\":{\"id\":1381361714944475138,\"id_str\":\"1381361714944475138\",\"name\":\"A\\u00b2 Michael\",\"screen_name\":\"Asquaremichael\",\"location\":\"Anonymous\",\"description\":\"Crypto Trader || Financial Analyst || Wealth Creator || CAD\\/CAM Expert || Computer Geek and Network Marketer || Contact @ https:\\/\\/t.co\\/ibqlRXNjvc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ibqlRXNjvc\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/SIREY5YMUVBMB1\",\"display_url\":\"wa.me\\/message\\/SIREY5\\u2026\",\"indices\":[122,145]}]}},\"protected\":false,\"followers_count\":60,\"friends_count\":196,\"listed_count\":9,\"created_at\":\"Sun Apr 11 21:41:26 +0000 2021\",\"favourites_count\":3137,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":389,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1500212055349018626\\/PGRxxUTl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1500212055349018626\\/PGRxxUTl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1381361714944475138\\/1646513467\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2082\":{\"id\":1008855480,\"id_str\":\"1008855480\",\"name\":\"Yorla\",\"screen_name\":\"Yorlakh\",\"location\":\"Accra, Ghana\",\"description\":\"I am a professional beekeeper.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":756,\"friends_count\":664,\"listed_count\":4,\"created_at\":\"Thu Dec 13 13:51:33 +0000 2012\",\"favourites_count\":3519,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3035,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008855480\\/1616238421\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2083\":{\"id\":1363859738,\"id_str\":\"1363859738\",\"name\":\"Ethereal BADNE$$\",\"screen_name\":\"FunJumbo\",\"location\":\"lagos\",\"description\":\"P R O P H E T A \\ud80c\\udef9 \\ud80c\\udc80 \\ud80c\\udd43\",\"url\":\"https:\\/\\/t.co\\/vVec4wzqlt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vVec4wzqlt\",\"expanded_url\":\"https:\\/\\/badnedollardollar.trac.co\\/badnedollardollarmandem\",\"display_url\":\"badnedollardollar.trac.co\\/badnedollardol\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2320,\"friends_count\":2248,\"listed_count\":1,\"created_at\":\"Fri Apr 19 07:56:58 +0000 2013\",\"favourites_count\":2635,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19785,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435138998767398913\\/l7kmURqT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435138998767398913\\/l7kmURqT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363859738\\/1604479340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2084\":{\"id\":1008855480,\"id_str\":\"1008855480\",\"name\":\"Yorla\",\"screen_name\":\"Yorlakh\",\"location\":\"Accra, Ghana\",\"description\":\"I am a professional beekeeper.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":756,\"friends_count\":664,\"listed_count\":4,\"created_at\":\"Thu Dec 13 13:51:33 +0000 2012\",\"favourites_count\":3519,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3035,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008855480\\/1616238421\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2085\":{\"id\":2254997783,\"id_str\":\"2254997783\",\"name\":\"Chris Omokhoa\",\"screen_name\":\"OmokhoaChris\",\"location\":\"Nigeria\",\"description\":\"Writer,Transcedentalist and Consultant\",\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"expanded_url\":\"https:\\/\\/www.chrisomokhoablog.com\",\"display_url\":\"chrisomokhoablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":36,\"listed_count\":1,\"created_at\":\"Tue Dec 31 20:09:24 +0000 2013\",\"favourites_count\":14995,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5329,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2086\":{\"id\":1387101620555685888,\"id_str\":\"1387101620555685888\",\"name\":\"Grizzly Dan\",\"screen_name\":\"dan_nyeche\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Stop surviving and start Living. \\u26a0\\ufe0f\\ud83d\\uded0 Always DYOR. NFA | #Btc | #Tether |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":7,\"created_at\":\"Tue Apr 27 17:50:24 +0000 2021\",\"favourites_count\":1866,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387101620555685888\\/1658484935\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2087\":{\"id\":1186284599682523142,\"id_str\":\"1186284599682523142\",\"name\":\"COURAGEOUZ\",\"screen_name\":\"COURAGEOUZ1\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"Freaky daddy born champion \\ud83d\\udcab\",\"url\":\"https:\\/\\/t.co\\/45UGFPfyXK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/45UGFPfyXK\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/Milo\",\"display_url\":\"fanlink.to\\/Milo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":136,\"friends_count\":148,\"listed_count\":0,\"created_at\":\"Mon Oct 21 14:14:35 +0000 2019\",\"favourites_count\":785,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1910,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516175412719763458\\/Dyv_sMXw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516175412719763458\\/Dyv_sMXw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1186284599682523142\\/1624004477\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2088\":{\"id\":194107618,\"id_str\":\"194107618\",\"name\":\"ICED OUT! \\ud83d\\udca1\",\"screen_name\":\"RAPLORD4EVA\",\"location\":\"Abuja\",\"description\":\"Artiste | Graphic designer | Sound engineer | Film maker | +2349052390760 | rdsgraphixng@gmail.com STREAM ICED OUT https:\\/\\/t.co\\/bdgrlxJdU2\",\"url\":\"https:\\/\\/t.co\\/bdgrlxJdU2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bdgrlxJdU2\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/RAPLORD\",\"display_url\":\"fanlink.to\\/RAPLORD\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bdgrlxJdU2\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/RAPLORD\",\"display_url\":\"fanlink.to\\/RAPLORD\",\"indices\":[116,139]}]}},\"protected\":false,\"followers_count\":1064,\"friends_count\":1059,\"listed_count\":10,\"created_at\":\"Thu Sep 23 13:07:18 +0000 2010\",\"favourites_count\":1677,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491674421039443971\\/CnMi3JOs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491674421039443971\\/CnMi3JOs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/194107618\\/1387459816\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2089\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2090\":{\"id\":1519365637247848450,\"id_str\":\"1519365637247848450\",\"name\":\"ophelia.theartist | Abstract Art | Pouring Art\",\"screen_name\":\"Opheliathearti6\",\"location\":\"Greater Accra, Ghana\",\"description\":\"\\ud83d\\udd8c Ghanaian acrylic pouring Sensei \\n\\ud83d\\udd8c Painting themes of happiness, perseverance and can-do\",\"url\":\"https:\\/\\/t.co\\/IqVtsyK65a\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IqVtsyK65a\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCTpMPQpQzDWHlVi3EGwFJ9A\",\"display_url\":\"youtube.com\\/channel\\/UCTpMP\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":35,\"listed_count\":0,\"created_at\":\"Wed Apr 27 17:19:51 +0000 2022\",\"favourites_count\":165,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":63,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519365916898873345\\/gaS447Ty_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519365916898873345\\/gaS447Ty_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519365637247848450\\/1651080780\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2091\":{\"id\":1396589545643298818,\"id_str\":\"1396589545643298818\",\"name\":\"Maryama \\u2764\\ufe0f\\u2764\\ufe0f\",\"screen_name\":\"Sweet_Maryama\",\"location\":\"Accra, Ghana\",\"description\":\"Make the right decisions.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":258,\"friends_count\":206,\"listed_count\":1,\"created_at\":\"Sun May 23 22:11:37 +0000 2021\",\"favourites_count\":1013,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1669,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396589545643298818\\/1655375331\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2092\":{\"id\":2254997783,\"id_str\":\"2254997783\",\"name\":\"Chris Omokhoa\",\"screen_name\":\"OmokhoaChris\",\"location\":\"Nigeria\",\"description\":\"Writer,Transcedentalist and Consultant\",\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"expanded_url\":\"https:\\/\\/www.chrisomokhoablog.com\",\"display_url\":\"chrisomokhoablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":36,\"listed_count\":1,\"created_at\":\"Tue Dec 31 20:09:24 +0000 2013\",\"favourites_count\":14995,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5329,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2093\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2094\":{\"id\":1204328421712637952,\"id_str\":\"1204328421712637952\",\"name\":\"Keemsings\\ud83c\\udfa4\",\"screen_name\":\"keemt_official\",\"location\":\"Abuja, Nigeria\",\"description\":\"Musician\\nAna out now \\ud83c\\udf0d link below \\ud83d\\udc47\\ud83c\\udffd\",\"url\":\"https:\\/\\/t.co\\/7rySo5zeQu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7rySo5zeQu\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/Keem_t-Ana\",\"display_url\":\"fanlink.to\\/Keem_t-Ana\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Tue Dec 10 09:14:44 +0000 2019\",\"favourites_count\":1780,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":355,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498922633412464642\\/sl7Guw-p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498922633412464642\\/sl7Guw-p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1204328421712637952\\/1639591789\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2095\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2096\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2097\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2098\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2099\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2100\":{\"id\":337643348,\"id_str\":\"337643348\",\"name\":\"Enugu 1st Son\\ud83d\\udca7\",\"screen_name\":\"gen2crystal\",\"location\":\"Enugu, Nigeria\",\"description\":\"Realtor \\u00a6 Laptop Tech \\u00a6 Graphic Designer\\n\\nIG: @gen2crystal\\nEmail: gen2crystals@gmail.com\\n\\n#ProudlyAfrican\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1505,\"friends_count\":2314,\"listed_count\":1,\"created_at\":\"Mon Jul 18 10:46:46 +0000 2011\",\"favourites_count\":8949,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5550,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553796444443877377\\/4JK2tNgm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553796444443877377\\/4JK2tNgm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/337643348\\/1659400060\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2101\":{\"id\":1538092613932400640,\"id_str\":\"1538092613932400640\",\"name\":\"Hezekiah Adebayo\",\"screen_name\":\"Hezix_1\",\"location\":\"Abuja, Nigeria\",\"description\":\"https:\\/\\/t.co\\/1yvfSeVcbG\",\"url\":\"https:\\/\\/t.co\\/l462c3sxo0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l462c3sxo0\",\"expanded_url\":\"http:\\/\\/www.flyhezix.weebly.com\",\"display_url\":\"flyhezix.weebly.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1yvfSeVcbG\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/hezix\",\"display_url\":\"linktr.ee\\/hezix\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":29,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Sat Jun 18 09:34:00 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540303459571867648\\/HzgjDm4z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540303459571867648\\/HzgjDm4z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538092613932400640\\/1655896666\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2102\":{\"id\":973131068403568640,\"id_str\":\"973131068403568640\",\"name\":\"Eko Club Nigeria\",\"screen_name\":\"EkoClubNigeria\",\"location\":\"Lagos, Nigeria\",\"description\":\"EKO CLUB is an indigenous organization of Lagosians, established to foster cooperation and collaboration, unity, brotherhood and sisterhood amongst its members.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":45,\"listed_count\":1,\"created_at\":\"Mon Mar 12 09:38:21 +0000 2018\",\"favourites_count\":18,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":103,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/973133981213429761\\/gLDe7GLR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/973133981213429761\\/gLDe7GLR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/973131068403568640\\/1523529755\",\"profile_link_color\":\"91D2FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2103\":{\"id\":1157092439041204229,\"id_str\":\"1157092439041204229\",\"name\":\"BrandNerds Ltd\",\"screen_name\":\"brandnerdsltd\",\"location\":\"Accra, Ghana\",\"description\":\"Uplifting Brands.\\nDigital Marketing | Brand Development & Strategies || Creative Works \\n\\ud83d\\udce7hello@brandnerdsltd\\n#brandnerdsltd\",\"url\":\"https:\\/\\/t.co\\/xgPW2D6Be6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xgPW2D6Be6\",\"expanded_url\":\"https:\\/\\/brandnerdsltd.com\",\"display_url\":\"brandnerdsltd.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":121,\"friends_count\":207,\"listed_count\":0,\"created_at\":\"Fri Aug 02 00:55:09 +0000 2019\",\"favourites_count\":207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":336,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1255133445056942080\\/8L_5XuJP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1255133445056942080\\/8L_5XuJP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1157092439041204229\\/1588065809\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2104\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2105\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2106\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2107\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2108\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2109\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2110\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2111\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2112\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2113\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2114\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2115\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2116\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2117\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2118\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2119\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2120\":{\"id\":190080294,\"id_str\":\"190080294\",\"name\":\"Oche Jessica\",\"screen_name\":\"ocheene\",\"location\":\"Nigeria\",\"description\":\"Blogger, Beard Care distributor, Sells anything sellable, longrich products distributor, business woman, Lover of God.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":671,\"friends_count\":231,\"listed_count\":1,\"created_at\":\"Mon Sep 13 01:08:13 +0000 2010\",\"favourites_count\":11455,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554092268382044168\\/4Tankjl3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554092268382044168\\/4Tankjl3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/190080294\\/1566829023\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2121\":{\"id\":289796354,\"id_str\":\"289796354\",\"name\":\"Olusegun Billionaire\",\"screen_name\":\"olusegunbillion\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Billionaire (RC 1936119) Realtor\\u2757 Property Sales\\u2757Real Estate Developer\\u2757+2349011588909\",\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tiFM5LjhFy\",\"expanded_url\":\"https:\\/\\/goshensquare.com\",\"display_url\":\"goshensquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":305,\"friends_count\":888,\"listed_count\":11,\"created_at\":\"Fri Apr 29 07:00:16 +0000 2011\",\"favourites_count\":981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1752,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482362569423740939\\/i-X1vgcQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/289796354\\/1640998683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2122\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2123\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2124\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2125\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2126\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2127\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2128\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2129\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2130\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2131\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2132\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2133\":{\"id\":1486359549015691280,\"id_str\":\"1486359549015691280\",\"name\":\"Tony Odogwu\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf9\\ud83c\\uddec\",\"screen_name\":\"blazechukwu\",\"location\":\"Lagos, Nigeria\",\"description\":\"Na fun I come catch \\ud83d\\ude02\\ud83d\\ude02 @odogwu1hr suspended @5k\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":48,\"listed_count\":0,\"created_at\":\"Wed Jan 26 15:25:39 +0000 2022\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":103,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553783930905665536\\/v5-xfPMh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553783930905665536\\/v5-xfPMh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486359549015691280\\/1659102141\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2134\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2135\":{\"id\":1183720830024454144,\"id_str\":\"1183720830024454144\",\"name\":\"Simisola of Lala \\u2648\\ufe0f\\ud83c\\uddec\\ud83c\\udde7\\ud83c\\uddf9\\ud83c\\uddf7\",\"screen_name\":\"SimisolaGold\",\"location\":\"Lekki, Nigeria\",\"description\":\"Actress & Model. 1WithGod \\ud83d\\ude4f\\ud83c\\udffd Aries \\u2648\\ufe0f Queen \\ud83d\\udc78\\ud83c\\udffb\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2197,\"friends_count\":721,\"listed_count\":1,\"created_at\":\"Mon Oct 14 12:27:07 +0000 2019\",\"favourites_count\":5099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531226912915345408\\/hscfn_2z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531226912915345408\\/hscfn_2z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183720830024454144\\/1571128399\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2136\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2137\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2138\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2139\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2140\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2141\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2142\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2143\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2144\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2145\":{\"id\":1498379877044654080,\"id_str\":\"1498379877044654080\",\"name\":\"john titooh\",\"screen_name\":\"titooh_john\",\"location\":\"\",\"description\":\"Avarage in hight with a brown skin color\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":328,\"listed_count\":0,\"created_at\":\"Mon Feb 28 19:32:22 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":34,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519575876018622464\\/8TRXcAPZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519575876018622464\\/8TRXcAPZ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2146\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2147\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2148\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2149\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2150\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2151\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2152\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2153\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2154\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2155\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2156\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2157\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2158\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2159\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2160\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2161\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2162\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2163\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2164\":{\"id\":4135390517,\"id_str\":\"4135390517\",\"name\":\"wokeyim\",\"screen_name\":\"wokeyimm\",\"location\":\"Nigeria\",\"description\":\"Founder @Getskilledafriq |Teens Activist| serial entrepreneur\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":149,\"friends_count\":116,\"listed_count\":0,\"created_at\":\"Sat Nov 07 16:27:16 +0000 2015\",\"favourites_count\":134,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":79,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552751305172598784\\/oUXDxZAV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552751305172598784\\/oUXDxZAV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4135390517\\/1659039620\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2165\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2166\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2167\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2168\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2169\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2170\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2171\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2172\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2173\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2174\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2175\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2176\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2177\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2178\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2179\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2180\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2181\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2182\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2183\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2184\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2185\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2186\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2187\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2188\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2189\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2190\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2191\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2192\":{\"id\":2765696152,\"id_str\":\"2765696152\",\"name\":\"Teeluxury\",\"screen_name\":\"Tee_Luxry\",\"location\":\"Lagos, Nigeria\",\"description\":\"Life's too short, don't waste it reading my bio\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":815,\"friends_count\":753,\"listed_count\":0,\"created_at\":\"Tue Sep 09 16:56:18 +0000 2014\",\"favourites_count\":2707,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554069218622054400\\/3Z_E9h3j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554069218622054400\\/3Z_E9h3j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2765696152\\/1646932057\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2193\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2194\":{\"id\":1388272780626509824,\"id_str\":\"1388272780626509824\",\"name\":\"PurpleStone Mall\",\"screen_name\":\"shoppurple_mall\",\"location\":\"Lagos,Nigeria\",\"description\":\"Purplestone Is Nigeria's #1 & Largest Online Marketplace for Fashion And Many More!\",\"url\":\"https:\\/\\/t.co\\/YW9lo1SIBx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YW9lo1SIBx\",\"expanded_url\":\"http:\\/\\/www.purplestonemall.com\",\"display_url\":\"purplestonemall.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15228,\"friends_count\":276,\"listed_count\":11,\"created_at\":\"Fri Apr 30 23:23:37 +0000 2021\",\"favourites_count\":11887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11204,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493142682897690631\\/7F_z73ln_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493142682897690631\\/7F_z73ln_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1388272780626509824\\/1644827933\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2195\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2196\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2197\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2198\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2199\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2200\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2201\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2202\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2203\":{\"id\":1372255015734239233,\"id_str\":\"1372255015734239233\",\"name\":\"Shadito\\ud83d\\udc93Best Tv\",\"screen_name\":\"BestShadito\",\"location\":\"Accra, Ghana\",\"description\":\"For Bookings and Advert on shaditokwadwo@gmail.com\",\"url\":\"https:\\/\\/t.co\\/sUx7iBd0qY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sUx7iBd0qY\",\"expanded_url\":\"http:\\/\\/www.ShaditoBestTV.com\",\"display_url\":\"ShaditoBestTV.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":263,\"friends_count\":134,\"listed_count\":0,\"created_at\":\"Wed Mar 17 18:34:45 +0000 2021\",\"favourites_count\":336,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1468122154512355330\\/9-ikI14z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1468122154512355330\\/9-ikI14z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372255015734239233\\/1655379606\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2204\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2205\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2206\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2207\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2208\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2209\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2210\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2211\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2212\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2213\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2214\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2215\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2216\":{\"id\":865322296050950144,\"id_str\":\"865322296050950144\",\"name\":\"Jay Dee Akaa\",\"screen_name\":\"jay_dee_akaa\",\"location\":\"FCT Abuja, Nigeria\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"\\ud83d\\udcfbRadio Presenter\\/Producer, DJ\\/Music Promoter, Corporate MC, Red Carpet Host. \\nFor Radio Interview\\/Song Promo\\/Adverts \\ud83d\\udc4907087033250, Instagram: jay_dee_akaa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2051,\"friends_count\":1643,\"listed_count\":0,\"created_at\":\"Thu May 18 21:44:47 +0000 2017\",\"favourites_count\":63615,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865322296050950144\\/1652079426\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2217\":{\"id\":2726051293,\"id_str\":\"2726051293\",\"name\":\"Firmus Advisory\",\"screen_name\":\"Firmus_Advisory\",\"location\":\"Accra, Ghana\",\"description\":\"Your preferred consulting firm for Business Regulatory Compliance, Social\\/Market Research and Trade Development.\",\"url\":\"https:\\/\\/t.co\\/JwJNMqQoM2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JwJNMqQoM2\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/FirmusAdvisory\",\"display_url\":\"linktr.ee\\/FirmusAdvisory\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":347,\"friends_count\":436,\"listed_count\":1,\"created_at\":\"Tue Aug 12 11:50:09 +0000 2014\",\"favourites_count\":559,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1380,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1214885006914572290\\/04TAcbVq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1214885006914572290\\/04TAcbVq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2726051293\\/1622119726\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2218\":{\"id\":2956250285,\"id_str\":\"2956250285\",\"name\":\"rosemary_realtor\",\"screen_name\":\"rozemareey\",\"location\":\"Lagos - Nigeria.\",\"description\":\"- Content Developer & Realtor at Hazibian Intl Ltd.\\n\\nHome Ownership | Land Sales | Property Development | Land Banking | Housing | Investment | Building etc.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Fri Jan 02 08:07:04 +0000 2015\",\"favourites_count\":313,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":527,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522861552264785921\\/sdtCGLOg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522861552264785921\\/sdtCGLOg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2956250285\\/1645102776\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2219\":{\"id\":1178731948497395713,\"id_str\":\"1178731948497395713\",\"name\":\"Paulo Tech\",\"screen_name\":\"paulotechng\",\"location\":\"Akure\",\"description\":\"ORACLE DATABASE ADMINISTRATION | WEB DESIGN | SOFTWARE (WEB & APP DEV.) l CYBERSECURITY | POS (INVENTORY MANAGEMENT SOLUTION) | I.T CONSULTING.\\n+234 813 3429592\",\"url\":\"https:\\/\\/t.co\\/aOoDSRkNPB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aOoDSRkNPB\",\"expanded_url\":\"http:\\/\\/paulotech.com.ng\",\"display_url\":\"paulotech.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":391,\"friends_count\":1159,\"listed_count\":1,\"created_at\":\"Mon Sep 30 18:03:20 +0000 2019\",\"favourites_count\":577,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":240,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1433918526503342084\\/mZVoM8Fm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1433918526503342084\\/mZVoM8Fm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1178731948497395713\\/1638337290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2220\":{\"id\":824783948853047297,\"id_str\":\"824783948853047297\",\"name\":\"Paul Emeka\",\"screen_name\":\"iampaulemeka\",\"location\":\"Akure, Nigeria.\",\"description\":\"CEO: @paulotechng @remisionafrica | Oracle DBA @dbaseconcepts | Web\\/Laravel\\/React Js\\/Node Js Developer | Entrepreneur | Pig Farmer | Call On +234 813 342 9592\",\"url\":\"https:\\/\\/t.co\\/G1avkM5hxZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/G1avkM5hxZ\",\"expanded_url\":\"http:\\/\\/paulotech.com.ng\",\"display_url\":\"paulotech.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":388,\"friends_count\":1381,\"listed_count\":1,\"created_at\":\"Fri Jan 27 00:59:51 +0000 2017\",\"favourites_count\":1763,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1042,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1445723654889689092\\/bge1x6HE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1445723654889689092\\/bge1x6HE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/824783948853047297\\/1638334040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2221\":{\"id\":1206973424167505921,\"id_str\":\"1206973424167505921\",\"name\":\"Centurion\\u270a\\ud83d\\ude80\",\"screen_name\":\"IgweFrancis16\",\"location\":\"Lagos, Nigeria\",\"description\":\"understandable to those that knows\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":575,\"friends_count\":776,\"listed_count\":0,\"created_at\":\"Tue Dec 17 16:24:35 +0000 2019\",\"favourites_count\":47914,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":70188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1373670017548566535\\/pmfEmAJZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1373670017548566535\\/pmfEmAJZ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2222\":{\"id\":969385391857037313,\"id_str\":\"969385391857037313\",\"name\":\"Johnson Le Artiste \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"JohnsonLeArtist\",\"location\":\"Nigeria\",\"description\":\"A student Electrical Electronics Engineer, a visual Artist, singer and a professional listener.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":249,\"friends_count\":670,\"listed_count\":0,\"created_at\":\"Fri Mar 02 01:34:22 +0000 2018\",\"favourites_count\":1854,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/969385391857037313\\/1603226397\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2223\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2224\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2225\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2226\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2227\":{\"id\":1222289479488155649,\"id_str\":\"1222289479488155649\",\"name\":\"HOFT Developers\",\"screen_name\":\"HoftDevelopers\",\"location\":\"Nigeria\",\"description\":\"Innovation and Skillset for Everyone!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":213,\"friends_count\":143,\"listed_count\":0,\"created_at\":\"Tue Jan 28 22:45:18 +0000 2020\",\"favourites_count\":150,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":210,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1223165319369437184\\/qFp0EkaR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1223165319369437184\\/qFp0EkaR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1222289479488155649\\/1584990120\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2228\":{\"id\":147302508,\"id_str\":\"147302508\",\"name\":\"Berry\",\"screen_name\":\"Survival690\",\"location\":\"Nigeria\",\"description\":\"Retweet is not endorsement. Baby girl for life\\u2026 My Life is easy. business owner. No1 wizkid fan. No 1 Manchester United fan #mufc #Manutd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":612,\"friends_count\":4811,\"listed_count\":5,\"created_at\":\"Sun May 23 19:30:45 +0000 2010\",\"favourites_count\":695,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2436,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534228373723045888\\/XpJJ4caP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534228373723045888\\/XpJJ4caP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/147302508\\/1653298866\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2229\":{\"id\":405130034,\"id_str\":\"405130034\",\"name\":\"VennRhymes\",\"screen_name\":\"VennRhymes\",\"location\":\"Accra, Ghana\",\"description\":\"Motivational Speaker|| MC|| Corporate Trainer|| Writer \\nvery easy going, loves God, Man United.\",\"url\":\"https:\\/\\/t.co\\/nB3PkveaNH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nB3PkveaNH\",\"expanded_url\":\"http:\\/\\/vennrhymes07.wordpress.com\",\"display_url\":\"vennrhymes07.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":632,\"friends_count\":1011,\"listed_count\":5,\"created_at\":\"Fri Nov 04 22:11:56 +0000 2011\",\"favourites_count\":10169,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1748,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1352538181070163968\\/dvTimSOx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1352538181070163968\\/dvTimSOx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/405130034\\/1513953119\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2230\":{\"id\":784318248342818816,\"id_str\":\"784318248342818816\",\"name\":\"Ocymichael\",\"screen_name\":\"Ocymichael2\",\"location\":\"Lagos\",\"description\":\"Am Ocy Dun Michael born in lagos breeds in Imo and Abia, am a comedian\\/musician, this account is for comedy\\/news, thanks https:\\/\\/t.co\\/triF03VRo9\",\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/OCY-DUN-Comedy-Studio-332084777678542\\/\",\"display_url\":\"facebook.com\\/OCY-DUN-Comedy\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/triF03VRo9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCy_wGytS8V\",\"display_url\":\"youtube.com\\/channel\\/UCy_wG\\u2026\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":448,\"friends_count\":423,\"listed_count\":1,\"created_at\":\"Fri Oct 07 09:03:37 +0000 2016\",\"favourites_count\":2449,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2346,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/784318248342818816\\/1591268979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2231\":{\"id\":1492227921523654656,\"id_str\":\"1492227921523654656\",\"name\":\"LEGITINFO\\ud83d\\udccc\",\"screen_name\":\"legitinfong\",\"location\":\"Nigeria\",\"description\":\"Content Developer || Blogger || PR || AnR || OBA Pikin\",\"url\":\"https:\\/\\/t.co\\/yE1GTyArAF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yE1GTyArAF\",\"expanded_url\":\"https:\\/\\/www.legitinfo.com.ng\",\"display_url\":\"legitinfo.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":116,\"listed_count\":0,\"created_at\":\"Fri Feb 11 20:04:12 +0000 2022\",\"favourites_count\":159,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504714079075721216\\/kGeahNzO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504714079075721216\\/kGeahNzO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2232\":{\"id\":1534426498974765062,\"id_str\":\"1534426498974765062\",\"name\":\"Aborisade Oluwaseun\",\"screen_name\":\"iamalivingchild\",\"location\":\"Lagos, Nigeria\",\"description\":\"|innovator| |writer| |I.T specialist| |DM for advertisement|\\n|help me reach 1k followers|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":728,\"friends_count\":1543,\"listed_count\":0,\"created_at\":\"Wed Jun 08 06:46:23 +0000 2022\",\"favourites_count\":1240,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":307,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550907616955666433\\/93Ob-S1k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550907616955666433\\/93Ob-S1k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534426498974765062\\/1657827908\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2233\":{\"id\":1081029364194705409,\"id_str\":\"1081029364194705409\",\"name\":\"Apostolic Grace Network\",\"screen_name\":\"ApostolicGraceN\",\"location\":\"Nigeria\",\"description\":\"Apostolic Grace Network | ...take back your life\",\"url\":\"https:\\/\\/t.co\\/3O78SMCd6m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3O78SMCd6m\",\"expanded_url\":\"http:\\/\\/www.apostolicgracenetwork.org\",\"display_url\":\"apostolicgracenetwork.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":31,\"listed_count\":0,\"created_at\":\"Fri Jan 04 03:27:39 +0000 2019\",\"favourites_count\":74,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1096484280077897728\\/6DCZybLf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1096484280077897728\\/6DCZybLf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1081029364194705409\\/1550257444\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2234\":{\"id\":1258315949838602241,\"id_str\":\"1258315949838602241\",\"name\":\"Jobblasts Nigeria\",\"screen_name\":\"jobblasts_ng\",\"location\":\"Ikeja, Lagos, Nigeria\",\"description\":\"Recruiter\\nJob search by Jobblasts.\\nNigeria No 1 job plug \\ud83d\\udd0c\\nGetting you closer to your dream job...\\nDownload app on playstore: Jobblasts\",\"url\":\"https:\\/\\/t.co\\/zc1z3ULQZG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zc1z3ULQZG\",\"expanded_url\":\"http:\\/\\/www.jobblasts.com\",\"display_url\":\"jobblasts.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":231,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Thu May 07 09:02:07 +0000 2020\",\"favourites_count\":20,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1258321829174882304\\/9QI33JvF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1258321829174882304\\/9QI33JvF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1258315949838602241\\/1588843172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2235\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2236\":{\"id\":321950642,\"id_str\":\"321950642\",\"name\":\"Bold and Beautiful Salon\\/Spa\",\"screen_name\":\"BnBhairsalon\",\"location\":\"Abuja, Nigeria\",\"description\":\"Founded in the year 2008, Bold & Beautiful Salon is known to offer high-quality Salon & Spa Services.\",\"url\":\"https:\\/\\/t.co\\/q2p622xgwk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q2p622xgwk\",\"expanded_url\":\"http:\\/\\/www.boldandbeautifulsalon.com\",\"display_url\":\"boldandbeautifulsalon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1635,\"friends_count\":2464,\"listed_count\":4,\"created_at\":\"Wed Jun 22 11:57:42 +0000 2011\",\"favourites_count\":176,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3309,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFEFC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1240240861931360256\\/xR8LInZe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1240240861931360256\\/xR8LInZe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/321950642\\/1597953071\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2237\":{\"id\":1346649080152412160,\"id_str\":\"1346649080152412160\",\"name\":\"FNK TV\",\"screen_name\":\"Fnktvchannel\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Fnk Tv is an infotainment online tv for ~News updates~Talk shows~ Entertainment Gossips~ Reality shows and More from \\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\uddec\\ud83c\\udded \\ud83c\\udf0d & \\ud83c\\udf0f subscribe to our YouTube\",\"url\":\"https:\\/\\/t.co\\/EPBhG89tLv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EPBhG89tLv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UClBustdsHpy5w-1OhN3rDYw\",\"display_url\":\"youtube.com\\/channel\\/UClBus\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":8,\"listed_count\":0,\"created_at\":\"Wed Jan 06 02:45:44 +0000 2021\",\"favourites_count\":706,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1988,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1346651540224933889\\/hfJYP6aw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1346651540224933889\\/hfJYP6aw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346649080152412160\\/1610697842\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2238\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2239\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2240\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2241\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2242\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2243\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2244\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2245\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2246\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2247\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2248\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2249\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2250\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2251\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2252\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2253\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2254\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2255\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2256\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2257\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2258\":{\"id\":1389040881651654659,\"id_str\":\"1389040881651654659\",\"name\":\"Mr_Runswag1\",\"screen_name\":\"MRunswag\",\"location\":\"Accra Ghana\",\"description\":\"Christ Is My Foundation \\ud83d\\ude4fSteady On My Grind Never Go On A Holiday. @RealShibaDoge Is The Future. \\/\\/www.instagram.com\\/callmerunswag_official\\/\",\"url\":\"https:\\/\\/t.co\\/45QpdycuEy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/45QpdycuEy\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Shibadoge\",\"display_url\":\"linktr.ee\\/Shibadoge\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":597,\"listed_count\":10,\"created_at\":\"Mon May 03 02:15:43 +0000 2021\",\"favourites_count\":279,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552526565275213826\\/LqVzQ_Cb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552526565275213826\\/LqVzQ_Cb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1389040881651654659\\/1658780861\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2259\":{\"id\":1275493567734206464,\"id_str\":\"1275493567734206464\",\"name\":\"Prince Peter Tunwagun\",\"screen_name\":\"PetrousyD\",\"location\":\"Lagos, Nigeria.\",\"description\":\"Creative Graphics Designer || Digital Marketer || Sales Strategist\",\"url\":\"https:\\/\\/t.co\\/CSLucvfdbw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CSLucvfdbw\",\"expanded_url\":\"http:\\/\\/petrousydesign.wordpress.com\",\"display_url\":\"petrousydesign.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jun 23 18:19:16 +0000 2020\",\"favourites_count\":23,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482881574878261258\\/oLBoJLZE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482881574878261258\\/oLBoJLZE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1275493567734206464\\/1648052901\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2260\":{\"id\":1275493567734206464,\"id_str\":\"1275493567734206464\",\"name\":\"Prince Peter Tunwagun\",\"screen_name\":\"PetrousyD\",\"location\":\"Lagos, Nigeria.\",\"description\":\"Creative Graphics Designer || Digital Marketer || Sales Strategist\",\"url\":\"https:\\/\\/t.co\\/CSLucvfdbw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CSLucvfdbw\",\"expanded_url\":\"http:\\/\\/petrousydesign.wordpress.com\",\"display_url\":\"petrousydesign.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jun 23 18:19:16 +0000 2020\",\"favourites_count\":23,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482881574878261258\\/oLBoJLZE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482881574878261258\\/oLBoJLZE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1275493567734206464\\/1648052901\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2261\":{\"id\":4896238275,\"id_str\":\"4896238275\",\"name\":\"Sylvanus Ayoola Igwe\",\"screen_name\":\"ayoola_igwe\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"BSc, Political Science; PGD, English Language. Formerly a Political Analyst on IBR 92.5. YouTuber. https:\\/\\/t.co\\/sDAOcZE2PG\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sDAOcZE2PG\",\"expanded_url\":\"https:\\/\\/bit.ly\\/3ylHXdIproductivity_guaranteed\",\"display_url\":\"bit.ly\\/3ylHXdIproduct\\u2026\",\"indices\":[99,122]}]}},\"protected\":false,\"followers_count\":54,\"friends_count\":141,\"listed_count\":0,\"created_at\":\"Wed Feb 10 22:42:07 +0000 2016\",\"favourites_count\":651,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1711,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542006142204796929\\/4BDRoXlp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542006142204796929\\/4BDRoXlp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4896238275\\/1656477900\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2262\":{\"id\":1101067046622777344,\"id_str\":\"1101067046622777344\",\"name\":\"Shine Publications\",\"screen_name\":\"ShinepubGhana\",\"location\":\"Greater Accra, Ghana\",\"description\":\"We are a media company that loves entertainment, glamour and youth empowerment. +233240568338 https:\\/\\/t.co\\/prOuhzjcZN\",\"url\":\"https:\\/\\/t.co\\/prOuhzjcZN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/prOuhzjcZN\",\"expanded_url\":\"http:\\/\\/www.shinepublications.com\",\"display_url\":\"shinepublications.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/prOuhzjcZN\",\"expanded_url\":\"http:\\/\\/www.shinepublications.com\",\"display_url\":\"shinepublications.com\",\"indices\":[94,117]}]}},\"protected\":false,\"followers_count\":136,\"friends_count\":272,\"listed_count\":0,\"created_at\":\"Thu Feb 28 10:30:15 +0000 2019\",\"favourites_count\":2594,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2096,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1234511451643052033\\/8MH_Cz7R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1234511451643052033\\/8MH_Cz7R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1101067046622777344\\/1583165441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2263\":{\"id\":1541830904552869888,\"id_str\":\"1541830904552869888\",\"name\":\"Blogger Burger\",\"screen_name\":\"HighlifeeNg\",\"location\":\"Nigeria\",\"description\":\"\\u272b\\ud835\\udc01\\ud835\\udc0b\\ud835\\udc0e\\ud835\\udc06\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11 \\ud835\\udc01\\ud835\\udc14\\ud835\\udc11\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\u272b \\ud835\\udc01\\ud835\\udc08\\ud835\\udc06\\ud835\\udc0d\\ud835\\udc00\\ud835\\udc0c\\ud835\\udc04\\n\\u25fc\\ufe0f\\ud835\\udc68\\ud835\\udc6b\\ud835\\udc7d\\ud835\\udc6c\\ud835\\udc79\\ud835\\udc7b \\/\\/ \\ud835\\udc77\\ud835\\udc79\\ud835\\udc76\\ud835\\udc74\\ud835\\udc76\\ud835\\udc7b\\ud835\\udc70\\ud835\\udc76\\ud835\\udc75 \\n \\nDM\\u272b On WhatsApp \\ud83d\\udc47\",\"url\":\"https:\\/\\/t.co\\/tsjzQsVz9W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tsjzQsVz9W\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348102609823\\/\",\"display_url\":\"wa.me\\/2348102609823\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":77,\"friends_count\":306,\"listed_count\":0,\"created_at\":\"Tue Jun 28 17:08:54 +0000 2022\",\"favourites_count\":228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":73,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544295858409193472\\/UcM257br_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544295858409193472\\/UcM257br_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541830904552869888\\/1657023826\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2264\":{\"id\":1469234622789607424,\"id_str\":\"1469234622789607424\",\"name\":\"Dan_Flamez\",\"screen_name\":\"danflamez19\",\"location\":\"Nigeria\",\"description\":\"No stress urself \\ud83e\\udd17 just follow me \\ud83d\\udcaf\\ud83d\\udcc0\\ud83c\\udfb6\\ud83c\\udf10\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":976,\"listed_count\":0,\"created_at\":\"Fri Dec 10 09:17:06 +0000 2021\",\"favourites_count\":2913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1150,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553705809544101888\\/k_KvKSK8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553705809544101888\\/k_KvKSK8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1469234622789607424\\/1653927555\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2265\":{\"id\":1507717149414076420,\"id_str\":\"1507717149414076420\",\"name\":\"Sales Paragon\",\"screen_name\":\"Marketin_expert\",\"location\":\"Lagos, Nigeria\",\"description\":\"A Certified Digital Marketer, Graphics Designer and Book Promoter.\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99,\"friends_count\":404,\"listed_count\":0,\"created_at\":\"Sat Mar 26 13:52:52 +0000 2022\",\"favourites_count\":119,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":40,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549059803955314691\\/OGXqbZHU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549059803955314691\\/OGXqbZHU_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2266\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2267\":{\"id\":1449752541378629634,\"id_str\":\"1449752541378629634\",\"name\":\"Crypto empire\",\"screen_name\":\"Cryptoempire19\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your number 1 Crypto information Plug.\\n\\nDisclaimer: My tweet is not an investment advice. DYOR, Start ur Crypto journey here\\nhttps:\\/\\/t.co\\/tp4vM3kIUL\",\"url\":\"https:\\/\\/t.co\\/B6dwb3jEPv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B6dwb3jEPv\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/aemilabravo\",\"display_url\":\"linktr.ee\\/aemilabravo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tp4vM3kIUL\",\"expanded_url\":\"https:\\/\\/amzn.to\\/3yGY2wg\",\"display_url\":\"amzn.to\\/3yGY2wg\",\"indices\":[126,149]}]}},\"protected\":false,\"followers_count\":47,\"friends_count\":160,\"listed_count\":11,\"created_at\":\"Sun Oct 17 15:02:14 +0000 2021\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":746,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475753622193512451\\/98L1hUYR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475753622193512451\\/98L1hUYR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2268\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2269\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2270\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2271\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2272\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2273\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2274\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2275\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2276\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2277\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2278\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2279\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2280\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2281\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2282\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2283\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2284\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2285\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2286\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2287\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2288\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2289\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2290\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2291\":{\"id\":24548059,\"id_str\":\"24548059\",\"name\":\"Curtis Fernheiser III\",\"screen_name\":\"CurtFernheiser\",\"location\":\"The Great Pacific Northwest\",\"description\":\"\\ud83d\\udc41\\ufe0f \\u2665\\ufe0f \\ud83c\\uddfa\\ud83c\\uddf8 and \\ud83d\\udc41\\ufe0f\\u2665\\ufe0f my \\ud83c\\uddec\\ud83c\\udde7 Wife \\ud83d\\ude4fMatthew 28:20\\n Spam=Blocked\\ud83e\\udd2a\\n \\ud83c\\uddfa\\ud83c\\uddf2Patriot Party\\ud83c\\uddfa\\ud83c\\uddf8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1533,\"friends_count\":1510,\"listed_count\":2,\"created_at\":\"Sun Mar 15 16:47:27 +0000 2009\",\"favourites_count\":14346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24548059\\/1659165343\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2292\":{\"id\":24548059,\"id_str\":\"24548059\",\"name\":\"Curtis Fernheiser III\",\"screen_name\":\"CurtFernheiser\",\"location\":\"The Great Pacific Northwest\",\"description\":\"\\ud83d\\udc41\\ufe0f \\u2665\\ufe0f \\ud83c\\uddfa\\ud83c\\uddf8 and \\ud83d\\udc41\\ufe0f\\u2665\\ufe0f my \\ud83c\\uddec\\ud83c\\udde7 Wife \\ud83d\\ude4fMatthew 28:20\\n Spam=Blocked\\ud83e\\udd2a\\n \\ud83c\\uddfa\\ud83c\\uddf2Patriot Party\\ud83c\\uddfa\\ud83c\\uddf8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1533,\"friends_count\":1510,\"listed_count\":2,\"created_at\":\"Sun Mar 15 16:47:27 +0000 2009\",\"favourites_count\":14346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24548059\\/1659165343\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2293\":{\"id\":415794979,\"id_str\":\"415794979\",\"name\":\"Ben There Done That\",\"screen_name\":\"AndStrats\",\"location\":\"VA\",\"description\":\"Writer\\/Photographer #Liberty #FreeMarkets #PrivateProperty #IndividualRights Priors: CNN Headline News\\/CNN-International MRC\\/CNSNews CapHill #GATA Matt 5:16\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1136,\"friends_count\":575,\"listed_count\":23,\"created_at\":\"Fri Nov 18 20:40:47 +0000 2011\",\"favourites_count\":37911,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2954,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"41447D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1119454601667915777\\/VS8_-fp0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1119454601667915777\\/VS8_-fp0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/415794979\\/1402769131\",\"profile_link_color\":\"0E1791\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2294\":{\"id\":3404523537,\"id_str\":\"3404523537\",\"name\":\"#237Showbiz\\ud83c\\udde8\\ud83c\\uddf2\",\"screen_name\":\"237Showbiz\",\"location\":\"Cameroon\",\"description\":\"#1 Cameroonian Award winning Music & Entertainment Media. Promote Everything Entertainment\\ud83c\\udde8\\ud83c\\uddf2| #Team237 #TT237 #Cameroon Contact us: info@237showbiz.com\",\"url\":\"https:\\/\\/t.co\\/vgfa7yB0TF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vgfa7yB0TF\",\"expanded_url\":\"https:\\/\\/www.237showbiz.com\",\"display_url\":\"237showbiz.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40568,\"friends_count\":3776,\"listed_count\":42,\"created_at\":\"Wed Aug 05 18:44:17 +0000 2015\",\"favourites_count\":11199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":34535,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1323009796749090819\\/aXcTd3oe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1323009796749090819\\/aXcTd3oe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3404523537\\/1604265294\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2295\":{\"id\":1427134799878098948,\"id_str\":\"1427134799878098948\",\"name\":\"CornDog\\ud83c\\udf3d\\ud83d\\udc36\\ud83c\\udf4a\\ud83e\\udda2\\ud83d\\ude9a\\ud83d\\ude9b\\ud83d\\ude92\\ud80c\\udd8f\\ud83d\\udc38\\ud80c\\udd8f\",\"screen_name\":\"Corndog98368908\",\"location\":\"OK\",\"description\":\"Likes popcorn, dogs, and nice shoes. Moonlights as shoe shine boy. CornDog CB4D, AKA \\\"Yukon Cornelius\\\", another Under Dog\\u231a\\ud83c\\udf0a\\ud83e\\udd86\",\"url\":\"https:\\/\\/t.co\\/0NvtcK152v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0NvtcK152v\",\"expanded_url\":\"http:\\/\\/phxmarker.blogspot.com\",\"display_url\":\"phxmarker.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":51,\"friends_count\":354,\"listed_count\":0,\"created_at\":\"Mon Aug 16 05:07:23 +0000 2021\",\"favourites_count\":3031,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1500318699793702917\\/7k7WIj3U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1500318699793702917\\/7k7WIj3U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1427134799878098948\\/1629090672\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2296\":{\"id\":251217910,\"id_str\":\"251217910\",\"name\":\"Rizzz\",\"screen_name\":\"irean_6\",\"location\":\"UAE\",\"description\":\"Strategic Analyst, political commentator \\nPostdoctoral fellow at the London School of Economics and Political Science(LSE)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":162,\"friends_count\":130,\"listed_count\":4,\"created_at\":\"Sat Feb 12 17:48:53 +0000 2011\",\"favourites_count\":1771,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1539,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509141909880688642\\/CSLVZk9X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509141909880688642\\/CSLVZk9X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/251217910\\/1648642609\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2297\":{\"id\":1513090958837141508,\"id_str\":\"1513090958837141508\",\"name\":\"Obinna\",\"screen_name\":\"peterseyi7281\",\"location\":\"\",\"description\":\"Deep and logical crazy thinker\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":261,\"listed_count\":1,\"created_at\":\"Sun Apr 10 09:46:29 +0000 2022\",\"favourites_count\":108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":75,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554117160838074369\\/nQ5m6u5L_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554117160838074369\\/nQ5m6u5L_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2298\":{\"id\":1146930666178789377,\"id_str\":\"1146930666178789377\",\"name\":\"Kendox,\",\"screen_name\":\"k_endox\",\"location\":\"Abuja, Nigeria\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/DEVJvCH5Ck\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DEVJvCH5Ck\",\"expanded_url\":\"https:\\/\\/songwhip.com\\/kendox\\/jailer\",\"display_url\":\"songwhip.com\\/kendox\\/jailer\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":264,\"friends_count\":720,\"listed_count\":0,\"created_at\":\"Thu Jul 04 23:55:54 +0000 2019\",\"favourites_count\":5804,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1601,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551604163703984128\\/9CFnI1-l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551604163703984128\\/9CFnI1-l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1146930666178789377\\/1658858303\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2299\":{\"id\":1464921560,\"id_str\":\"1464921560\",\"name\":\"#NOTFORSALE\",\"screen_name\":\"11signofficial\",\"location\":\"Nigeria\",\"description\":\"songwriter, political Analyst. #afroprime #afrobeats\",\"url\":\"https:\\/\\/t.co\\/nP2P30dFLL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nP2P30dFLL\",\"expanded_url\":\"https:\\/\\/push.fm\\/fl\\/notforsale\",\"display_url\":\"push.fm\\/fl\\/notforsale\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":335,\"friends_count\":530,\"listed_count\":0,\"created_at\":\"Tue May 28 15:08:00 +0000 2013\",\"favourites_count\":15433,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2628,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544627805824208896\\/MCMXTxYE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544627805824208896\\/MCMXTxYE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1464921560\\/1645963925\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2300\":{\"id\":3404523537,\"id_str\":\"3404523537\",\"name\":\"#237Showbiz\\ud83c\\udde8\\ud83c\\uddf2\",\"screen_name\":\"237Showbiz\",\"location\":\"Cameroon\",\"description\":\"#1 Cameroonian Award winning Music & Entertainment Media. Promote Everything Entertainment\\ud83c\\udde8\\ud83c\\uddf2| #Team237 #TT237 #Cameroon Contact us: info@237showbiz.com\",\"url\":\"https:\\/\\/t.co\\/vgfa7yB0TF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vgfa7yB0TF\",\"expanded_url\":\"https:\\/\\/www.237showbiz.com\",\"display_url\":\"237showbiz.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40568,\"friends_count\":3776,\"listed_count\":42,\"created_at\":\"Wed Aug 05 18:44:17 +0000 2015\",\"favourites_count\":11199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":34535,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1323009796749090819\\/aXcTd3oe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1323009796749090819\\/aXcTd3oe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3404523537\\/1604265294\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2301\":{\"id\":1528314471306997762,\"id_str\":\"1528314471306997762\",\"name\":\"OJA JOHNSON\",\"screen_name\":\"ojajohnson\",\"location\":\"Bayelsa, Nigeria\",\"description\":\"I am a person with a different story.\\nfirst I studied A Medical Course\\nSecondly I love entertainment,journalism,Media..\",\"url\":\"https:\\/\\/t.co\\/n1ebi2wFKM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n1ebi2wFKM\",\"expanded_url\":\"http:\\/\\/www.calabargist.com\",\"display_url\":\"calabargist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Sun May 22 09:59:39 +0000 2022\",\"favourites_count\":239,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553743114539507718\\/7s8r2gvc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553743114539507718\\/7s8r2gvc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1528314471306997762\\/1659276200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2302\":{\"id\":752186680849891328,\"id_str\":\"752186680849891328\",\"name\":\"Charles Antwi\",\"screen_name\":\"antwicharles26\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Tax Consultant | Farming Enthusiast | Proud Chelsea Fan \\ud83d\\udc99\\ud83d\\udc99\",\"url\":\"https:\\/\\/t.co\\/xKzQN4zmpr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xKzQN4zmpr\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC-aFpv4m_qog6GoIEF3uVNw\",\"display_url\":\"youtube.com\\/channel\\/UC-aFp\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1955,\"friends_count\":1436,\"listed_count\":1,\"created_at\":\"Sun Jul 10 17:04:14 +0000 2016\",\"favourites_count\":30589,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1168805546805387264\\/KnHXN4C5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1168805546805387264\\/KnHXN4C5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/752186680849891328\\/1567499933\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2303\":{\"id\":198850963,\"id_str\":\"198850963\",\"name\":\"Valentine\",\"screen_name\":\"gava34\",\"location\":\"Abuja\",\"description\":\"Simplicity\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":241,\"listed_count\":0,\"created_at\":\"Tue Oct 05 12:19:51 +0000 2010\",\"favourites_count\":269,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":96,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/468801844895293440\\/TYomt4Ed_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/468801844895293440\\/TYomt4Ed_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/198850963\\/1656396509\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2304\":{\"id\":1396589545643298818,\"id_str\":\"1396589545643298818\",\"name\":\"Maryama \\u2764\\ufe0f\\u2764\\ufe0f\",\"screen_name\":\"Sweet_Maryama\",\"location\":\"Accra, Ghana\",\"description\":\"Make the right decisions.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":258,\"friends_count\":206,\"listed_count\":1,\"created_at\":\"Sun May 23 22:11:37 +0000 2021\",\"favourites_count\":1013,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1669,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396589545643298818\\/1655375331\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2305\":{\"id\":1396589545643298818,\"id_str\":\"1396589545643298818\",\"name\":\"Maryama \\u2764\\ufe0f\\u2764\\ufe0f\",\"screen_name\":\"Sweet_Maryama\",\"location\":\"Accra, Ghana\",\"description\":\"Make the right decisions.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":258,\"friends_count\":206,\"listed_count\":1,\"created_at\":\"Sun May 23 22:11:37 +0000 2021\",\"favourites_count\":1013,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1669,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537381274092027906\\/YsdKH-83_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396589545643298818\\/1655375331\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2306\":{\"id\":1535915503432175617,\"id_str\":\"1535915503432175617\",\"name\":\"Celestine Ozonna\",\"screen_name\":\"OZONNAX\",\"location\":\"Jos, Nigeria\",\"description\":\".\\n..\\n...\\n....\\n.....\\nI AM ME\\n.....\\n....\\n...\\n..\\n.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Sun Jun 12 09:23:05 +0000 2022\",\"favourites_count\":74,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553739646957404160\\/4QERHut__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553739646957404160\\/4QERHut__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535915503432175617\\/1655645329\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2307\":{\"id\":1294758632387641344,\"id_str\":\"1294758632387641344\",\"name\":\"REAL LIFE TALK WITH BLESSING\",\"screen_name\":\"REALLIFETALKWI1\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"KingB\\ud83d\\udc51 \\ufffdChild Counselor \\ufffdLife After Depression Coach \\ufffdContent Creator From Real Life Experience \\ufffdPodcaster and Scoliosis Ambassador. I \\u2764\\ufe0f THE TRUTH\",\"url\":\"https:\\/\\/t.co\\/oLImzQyhtD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oLImzQyhtD\",\"expanded_url\":\"https:\\/\\/anchor.fm\\/blessing-edibite\",\"display_url\":\"anchor.fm\\/blessing-edibi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":499,\"friends_count\":441,\"listed_count\":0,\"created_at\":\"Sat Aug 15 22:11:52 +0000 2020\",\"favourites_count\":760,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3398,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543481485340057604\\/P-SpfPvX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543481485340057604\\/P-SpfPvX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1294758632387641344\\/1643283001\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2308\":{\"id\":1246192960737357824,\"id_str\":\"1246192960737357824\",\"name\":\"okayson\",\"screen_name\":\"hagusokayson\",\"location\":\"Nigeria\",\"description\":\"It is well\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1445,\"friends_count\":2065,\"listed_count\":0,\"created_at\":\"Fri Apr 03 21:49:05 +0000 2020\",\"favourites_count\":3450,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3916,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1361244694957748226\\/r_ZESvn6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1361244694957748226\\/r_ZESvn6_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2309\":{\"id\":1055125237422002176,\"id_str\":\"1055125237422002176\",\"name\":\"AyTee\\ud83c\\udd94\",\"screen_name\":\"Aytee001\",\"location\":\"Lagos, Nigeria\",\"description\":\"Influencer| Content writer | Website Designer.\\nPhysiotherapist\\ud83c\\udf1c\\nJaytee Accessories Plug (JAP)\\n\\nhttps:\\/\\/t.co\\/lQ3vzvt0h0\\n\\nUpwork\\nhttps:\\/\\/t.co\\/bJb8QFxVLm\",\"url\":\"https:\\/\\/t.co\\/AbeF0SSySd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AbeF0SSySd\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/tomj_writer1\",\"display_url\":\"fiverr.com\\/tomj_writer1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lQ3vzvt0h0\",\"expanded_url\":\"http:\\/\\/tiktok.com\\/@blaq_tunde\",\"display_url\":\"tiktok.com\\/@blaq_tunde\",\"indices\":[95,118]},{\"url\":\"https:\\/\\/t.co\\/bJb8QFxVLm\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3uSou4l\",\"display_url\":\"bit.ly\\/3uSou4l\",\"indices\":[127,150]}]}},\"protected\":false,\"followers_count\":1172,\"friends_count\":1380,\"listed_count\":0,\"created_at\":\"Wed Oct 24 15:53:54 +0000 2018\",\"favourites_count\":4857,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2770,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542400328770920449\\/FuDWCDk4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542400328770920449\\/FuDWCDk4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1055125237422002176\\/1654078736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2310\":{\"id\":1055125237422002176,\"id_str\":\"1055125237422002176\",\"name\":\"AyTee\\ud83c\\udd94\",\"screen_name\":\"Aytee001\",\"location\":\"Lagos, Nigeria\",\"description\":\"Influencer| Content writer | Website Designer.\\nPhysiotherapist\\ud83c\\udf1c\\nJaytee Accessories Plug (JAP)\\n\\nhttps:\\/\\/t.co\\/lQ3vzvt0h0\\n\\nUpwork\\nhttps:\\/\\/t.co\\/bJb8QFxVLm\",\"url\":\"https:\\/\\/t.co\\/AbeF0SSySd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AbeF0SSySd\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/tomj_writer1\",\"display_url\":\"fiverr.com\\/tomj_writer1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lQ3vzvt0h0\",\"expanded_url\":\"http:\\/\\/tiktok.com\\/@blaq_tunde\",\"display_url\":\"tiktok.com\\/@blaq_tunde\",\"indices\":[95,118]},{\"url\":\"https:\\/\\/t.co\\/bJb8QFxVLm\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3uSou4l\",\"display_url\":\"bit.ly\\/3uSou4l\",\"indices\":[127,150]}]}},\"protected\":false,\"followers_count\":1172,\"friends_count\":1380,\"listed_count\":0,\"created_at\":\"Wed Oct 24 15:53:54 +0000 2018\",\"favourites_count\":4857,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2770,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542400328770920449\\/FuDWCDk4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542400328770920449\\/FuDWCDk4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1055125237422002176\\/1654078736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2311\":{\"id\":3447459857,\"id_str\":\"3447459857\",\"name\":\"kobbymoni\",\"screen_name\":\"kobbymoni2\",\"location\":\"Greater Accra, Ghana\",\"description\":\"@chelseafc fan || @HeartsOfOakGh fan || entrepreneur || football fan ||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1905,\"friends_count\":2302,\"listed_count\":0,\"created_at\":\"Wed Aug 26 13:45:13 +0000 2015\",\"favourites_count\":25807,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1503,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1420322068260864001\\/-b8OKpuq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1420322068260864001\\/-b8OKpuq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3447459857\\/1641122628\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2312\":{\"id\":1179156710,\"id_str\":\"1179156710\",\"name\":\"A-TYPE-OF-CHRIST-\",\"screen_name\":\"IM_CITIZENX\",\"location\":\"Abuja, Nigeria\",\"description\":\"GOD FIRST, SON OF GOD, NIGERIAN PATRIOT, ARSENAL FC FAN, A BUHARIST 2 ZA CORE & ESCHATOLOGY ENTHUSIAST.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1101,\"friends_count\":292,\"listed_count\":3,\"created_at\":\"Thu Feb 14 13:43:27 +0000 2013\",\"favourites_count\":3157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9044,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1273005692983685127\\/tMtnFku6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1273005692983685127\\/tMtnFku6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1179156710\\/1439921046\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2313\":{\"id\":4193834998,\"id_str\":\"4193834998\",\"name\":\"B O M B A M A N N\",\"screen_name\":\"Bombamann7\",\"location\":\"Ghana\",\"description\":\"Reinar\\u00e1 \\ud83c\\udf34\\ud83c\\udf34\\ud83c\\udf34\",\"url\":\"https:\\/\\/t.co\\/LfxOHCcdcp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LfxOHCcdcp\",\"expanded_url\":\"https:\\/\\/ffm.to\\/oenxdyp\",\"display_url\":\"ffm.to\\/oenxdyp\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":570,\"friends_count\":229,\"listed_count\":1,\"created_at\":\"Sun Nov 15 12:14:08 +0000 2015\",\"favourites_count\":5502,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3222,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554953838402183169\\/e9pnIg7S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554953838402183169\\/e9pnIg7S_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4193834998\\/1639741257\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2314\":{\"id\":1519365637247848450,\"id_str\":\"1519365637247848450\",\"name\":\"ophelia.theartist | Abstract Art | Pouring Art\",\"screen_name\":\"Opheliathearti6\",\"location\":\"Greater Accra, Ghana\",\"description\":\"\\ud83d\\udd8c Ghanaian acrylic pouring Sensei \\n\\ud83d\\udd8c Painting themes of happiness, perseverance and can-do\",\"url\":\"https:\\/\\/t.co\\/IqVtsyK65a\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IqVtsyK65a\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCTpMPQpQzDWHlVi3EGwFJ9A\",\"display_url\":\"youtube.com\\/channel\\/UCTpMP\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":35,\"listed_count\":0,\"created_at\":\"Wed Apr 27 17:19:51 +0000 2022\",\"favourites_count\":165,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":63,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519365916898873345\\/gaS447Ty_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519365916898873345\\/gaS447Ty_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519365637247848450\\/1651080780\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2315\":{\"id\":1159375453049819136,\"id_str\":\"1159375453049819136\",\"name\":\"9jalatest.com\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"9jalatesttv\",\"location\":\"Enugu, Nigeria\",\"description\":\"We are https:\\/\\/t.co\\/1rIgngLYVb Home of Entertainment We promote Quality Entertainment works to millions of Audience.\",\"url\":\"https:\\/\\/t.co\\/qFhr47YfCo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qFhr47YfCo\",\"expanded_url\":\"http:\\/\\/www.9jalatest.com\",\"display_url\":\"9jalatest.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1rIgngLYVb\",\"expanded_url\":\"http:\\/\\/9jalatest.com\",\"display_url\":\"9jalatest.com\",\"indices\":[7,30]}]}},\"protected\":false,\"followers_count\":416,\"friends_count\":571,\"listed_count\":1,\"created_at\":\"Thu Aug 08 08:07:02 +0000 2019\",\"favourites_count\":3490,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2636,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524157266563325952\\/NbO0xR5b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524157266563325952\\/NbO0xR5b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1159375453049819136\\/1612178330\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2316\":{\"id\":1311664780160258048,\"id_str\":\"1311664780160258048\",\"name\":\"DESIRE CAPITALS LIMITED\",\"screen_name\":\"desirecapitals\",\"location\":\"Jos, Nigeria\",\"description\":\"RC 1721108 \\nDESIRE CAPITALS LIMITED IS A FINANCIAL FIRM REGISTERED UNDER THE CAC THAT IS INTO:\\n1. GIVING OUT OF LOANS\\n2. MANAGING INVESTMENTS\\n3. CONSULTANCY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":494,\"listed_count\":0,\"created_at\":\"Thu Oct 01 13:50:47 +0000 2020\",\"favourites_count\":299,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":142,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1311665582194843649\\/hDw5wFJE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1311665582194843649\\/hDw5wFJE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1311664780160258048\\/1601561506\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2317\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2318\":{\"id\":1482662666992766979,\"id_str\":\"1482662666992766979\",\"name\":\"tahir lawal\",\"screen_name\":\"huameeyr_\",\"location\":\"Nigeria\",\"description\":\"Consumer Hotline:+65-31290538 support@wikifx.com +234-706 777 7762; +61-449895363 Telegram:+60-103342306 Whatsapp:+852-6613 1970; +44-7517747077\",\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/\",\"display_url\":\"wikifx.com\\/en\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":250,\"listed_count\":0,\"created_at\":\"Sun Jan 16 10:35:22 +0000 2022\",\"favourites_count\":147,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482662666992766979\\/1642330199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2319\":{\"id\":784318248342818816,\"id_str\":\"784318248342818816\",\"name\":\"Ocymichael\",\"screen_name\":\"Ocymichael2\",\"location\":\"Lagos\",\"description\":\"Am Ocy Dun Michael born in lagos breeds in Imo and Abia, am a comedian\\/musician, this account is for comedy\\/news, thanks https:\\/\\/t.co\\/triF03VRo9\",\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/OCY-DUN-Comedy-Studio-332084777678542\\/\",\"display_url\":\"facebook.com\\/OCY-DUN-Comedy\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/triF03VRo9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCy_wGytS8V\",\"display_url\":\"youtube.com\\/channel\\/UCy_wG\\u2026\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":448,\"friends_count\":423,\"listed_count\":1,\"created_at\":\"Fri Oct 07 09:03:37 +0000 2016\",\"favourites_count\":2449,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2346,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/784318248342818816\\/1591268979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2320\":{\"id\":2717216135,\"id_str\":\"2717216135\",\"name\":\"Mentie of Delta\\ud83d\\udc70\\u200d\\u2640\\ufe0f\\u2764\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"mentie_pride\",\"location\":\"Lagos, Nigeria\",\"description\":\"An Accountant\\/\\/ An Aries \\u2648\\ufe0f\\/\\/ A lover of God\\/\\/ free minded\\/\\/ football lover \\u26bd\\ufe0f\\/\\/ A #Model\\ud83d\\udc78\\/\\/ #menties_pride \\/\\/ #April7th\\/\\/ Female Alpha\\ud83e\\udddc\\u200d\\u2640\\ufe0f\\/\\/ @arsenal\",\"url\":\"https:\\/\\/t.co\\/wJiHsMtNIq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wJiHsMtNIq\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/menties_pride\",\"display_url\":\"instagram.com\\/menties_pride\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2541,\"friends_count\":2074,\"listed_count\":1,\"created_at\":\"Fri Jul 18 23:15:30 +0000 2014\",\"favourites_count\":6186,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5045,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553475734882193409\\/c2DWE0aA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553475734882193409\\/c2DWE0aA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2717216135\\/1631616583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2321\":{\"id\":1095708094146007040,\"id_str\":\"1095708094146007040\",\"name\":\"Oluebube Joshua\",\"screen_name\":\"oluebube_joshua\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udda5\\ufe0f Entrepreneur | \\ud83d\\udcb0 Digital Marketing Consultant | \\ud83d\\udcbb Graphic Designer. I Teach People How To scale up their busines using their smartphone\\/ laptop.\",\"url\":\"https:\\/\\/t.co\\/AXxGzDlBsa\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AXxGzDlBsa\",\"expanded_url\":\"http:\\/\\/orighthub.com\",\"display_url\":\"orighthub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":435,\"friends_count\":979,\"listed_count\":1,\"created_at\":\"Wed Feb 13 15:35:41 +0000 2019\",\"favourites_count\":435,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":718,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537525830322212866\\/1kh8CTu4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537525830322212866\\/1kh8CTu4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1095708094146007040\\/1644628841\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2322\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2323\":{\"id\":1209930270394200064,\"id_str\":\"1209930270394200064\",\"name\":\"Praise John\",\"screen_name\":\"praisejohnn\",\"location\":\"Lagos, Nigeria\",\"description\":\"600k+ followers on Fb 250k+on tiktok 60k on Instagram\\u2026yes I\\u2019m a social media Influencer and creator \\u2764\\ufe0f this is my only Twitter account\\ud83d\\ude4f\",\"url\":\"https:\\/\\/t.co\\/f20naERzzt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f20naERzzt\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/praisejohnn\",\"display_url\":\"Instagram.com\\/praisejohnn\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6561,\"friends_count\":848,\"listed_count\":7,\"created_at\":\"Wed Dec 25 20:14:09 +0000 2019\",\"favourites_count\":2365,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":643,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519742423395708928\\/7ThKrfbF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519742423395708928\\/7ThKrfbF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1209930270394200064\\/1651169815\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2324\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2325\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2326\":{\"id\":1537011149295722496,\"id_str\":\"1537011149295722496\",\"name\":\"Nah feee\\ud83d\\udd4a\",\"screen_name\":\"feeenahh\",\"location\":\"Lagos, Nigeria\",\"description\":\"Music lover, DON JAZZY, Politics, Travel\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":24,\"listed_count\":0,\"created_at\":\"Wed Jun 15 09:56:51 +0000 2022\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537201736443740162\\/isx85aD2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537201736443740162\\/isx85aD2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537011149295722496\\/1655321252\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2327\":{\"id\":881482790415609856,\"id_str\":\"881482790415609856\",\"name\":\"Humanaidng\",\"screen_name\":\"humanaidng\",\"location\":\"Abuja, Nigeria\",\"description\":\"We are professionals committed to promoting child education, health and empowering mothers for sustainable child care.\",\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\",\"display_url\":\"humanaid.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sun Jul 02 12:00:49 +0000 2017\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/881482790415609856\\/1561182580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2328\":{\"id\":1282445934065057792,\"id_str\":\"1282445934065057792\",\"name\":\"soulflows fyneface\",\"screen_name\":\"soulflows_F\",\"location\":\"Nigeria\",\"description\":\"Husband| TV Host|Coach| political Analyst|word in 60 seconds|voice over artist|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1468,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Sun Jul 12 22:45:21 +0000 2020\",\"favourites_count\":14051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":417,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282445934065057792\\/1594594508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2329\":{\"id\":1427310379,\"id_str\":\"1427310379\",\"name\":\"Miss Kemi\",\"screen_name\":\"Oluwakemistry\",\"location\":\"Lagos, Nigeria\",\"description\":\"A philosopher, digital marketer ,online store vendor .Whatsapp..07030509162\",\"url\":\"https:\\/\\/t.co\\/6zNNuKS51d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6zNNuKS51d\",\"expanded_url\":\"http:\\/\\/wa.me\\/2347030509162\",\"display_url\":\"wa.me\\/2347030509162\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":327,\"friends_count\":471,\"listed_count\":0,\"created_at\":\"Tue May 14 08:11:32 +0000 2013\",\"favourites_count\":497,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1159,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1068882502973120512\\/qm3chVnz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1068882502973120512\\/qm3chVnz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1427310379\\/1642589320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2330\":{\"id\":1450826071608266757,\"id_str\":\"1450826071608266757\",\"name\":\"King Priestly\",\"screen_name\":\"priestlynews1\",\"location\":\"Anambra, Nigeria\",\"description\":\"Welcome to the official account of priestly group of companies -football lover CHELSEA Fan all day\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":205,\"listed_count\":0,\"created_at\":\"Wed Oct 20 14:07:55 +0000 2021\",\"favourites_count\":204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":746,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552991104022323207\\/xUrswJNx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552991104022323207\\/xUrswJNx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1450826071608266757\\/1647083609\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2331\":{\"id\":994240773884432384,\"id_str\":\"994240773884432384\",\"name\":\"Obasi Susan\\ud83d\\udc96\\u2728\\ud83d\\udc8e\",\"screen_name\":\"Suezhan2\",\"location\":\"Abuja, Nigeria\",\"description\":\"Business Administrator\\ud83d\\udc9d\\ud83d\\udcda| Freelancer\\ud83d\\udcdd\\ud83d\\udccc\\ud83d\\udcb0| Article Writer\\ud83d\\udcdd| Chelsea Fan\\ud83d\\udcaf| Strong-Willed\\u2764\\ufe0f| Lover of God\\ud83d\\udc96\\ud83e\\udd70|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":904,\"friends_count\":1699,\"listed_count\":0,\"created_at\":\"Wed May 09 15:40:47 +0000 2018\",\"favourites_count\":10584,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3572,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353395127583170560\\/U0u7fWCx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353395127583170560\\/U0u7fWCx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/994240773884432384\\/1611509518\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2332\":{\"id\":2503628037,\"id_str\":\"2503628037\",\"name\":\"Professor toplexnice\",\"screen_name\":\"PToplexnice\",\"location\":\"Akure Nigeria\",\"description\":\"An easy going guy so single and mingle be physician and technical intelligent is sure ability is hope wisdom is God doing\\n#lfc Liverpool fans for life\\n#cruise\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":212,\"listed_count\":1,\"created_at\":\"Wed Apr 23 09:10:05 +0000 2014\",\"favourites_count\":606,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/515362324182732800\\/gRR8MAy-_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/515362324182732800\\/gRR8MAy-_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2503628037\\/1411707012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2333\":{\"id\":1350387186525462530,\"id_str\":\"1350387186525462530\",\"name\":\"Yutchay\\u2728 \\ud83e\\udd8b \\ud83c\\udf08\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"YutchayBella\",\"location\":\"\",\"description\":\"What's life without a lil craziness \\ud83d\\ude1b\\n\\u2648 Aries\",\"url\":\"https:\\/\\/t.co\\/6pc8MLcYwg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6pc8MLcYwg\",\"expanded_url\":\"http:\\/\\/instagram.com\\/yutchay_xx\",\"display_url\":\"instagram.com\\/yutchay_xx\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":84,\"friends_count\":173,\"listed_count\":0,\"created_at\":\"Sat Jan 16 10:19:40 +0000 2021\",\"favourites_count\":142,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":81,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553690078786060288\\/2fpqTzww_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553690078786060288\\/2fpqTzww_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1350387186525462530\\/1610795385\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2334\":{\"id\":1543611367042719744,\"id_str\":\"1543611367042719744\",\"name\":\"Taoh Bondum\",\"screen_name\":\"TBondum\",\"location\":\"\",\"description\":\"A realtor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Sun Jul 03 15:04:00 +0000 2022\",\"favourites_count\":76,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543611521628049415\\/afcsuNYU_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543611521628049415\\/afcsuNYU_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2335\":{\"id\":1522975092359184385,\"id_str\":\"1522975092359184385\",\"name\":\"\\ud83d\\udd1eSURE WINNING \\u26bd FIXED MATCH PLATFORM \\ud83d\\udcb0\",\"screen_name\":\"sure_odds11\",\"location\":\"Lagos, Nigeria\",\"description\":\"We specialize in sales of fixed match 100% sure matches available at affordable prices message our admin for more info\",\"url\":\"https:\\/\\/t.co\\/yu6BZKw2KU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yu6BZKw2KU\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ZFMEO5UIWEVKH1\",\"display_url\":\"wa.me\\/message\\/ZFMEO5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3758,\"friends_count\":4970,\"listed_count\":0,\"created_at\":\"Sat May 07 16:22:29 +0000 2022\",\"favourites_count\":50207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15220,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535507534227841024\\/fnOmr-2Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535507534227841024\\/fnOmr-2Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522975092359184385\\/1653246758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2336\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2337\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2338\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2339\":{\"id\":1522857794201960453,\"id_str\":\"1522857794201960453\",\"name\":\"Panque_bf\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"panquespark\",\"location\":\"Rivers, Nigeria\",\"description\":\"in God i trust oo\\ud83e\\udd70\\ud83d\\ude4f\\u26a1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":233,\"listed_count\":0,\"created_at\":\"Sat May 07 08:36:51 +0000 2022\",\"favourites_count\":570,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":247,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556170707142414336\\/UlAEcGTu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556170707142414336\\/UlAEcGTu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522857794201960453\\/1659158690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2340\":{\"id\":1522857794201960453,\"id_str\":\"1522857794201960453\",\"name\":\"Panque_bf\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"panquespark\",\"location\":\"Rivers, Nigeria\",\"description\":\"in God i trust oo\\ud83e\\udd70\\ud83d\\ude4f\\u26a1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":233,\"listed_count\":0,\"created_at\":\"Sat May 07 08:36:51 +0000 2022\",\"favourites_count\":570,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":247,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556170707142414336\\/UlAEcGTu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556170707142414336\\/UlAEcGTu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522857794201960453\\/1659158690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2341\":{\"id\":1536809855368974339,\"id_str\":\"1536809855368974339\",\"name\":\"Abdul Foodies\",\"screen_name\":\"AbdulFoodies\",\"location\":\"Jos, Nigeria \",\"description\":\"Foodstuff vegetables and fruits wholesale and retail nation wide delivery\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jun 14 20:38:19 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":54,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2342\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2343\":{\"id\":331127488,\"id_str\":\"331127488\",\"name\":\"Anthony Chukwuebuka\",\"screen_name\":\"Marktony165\",\"location\":\"Ebonyi state Nigeria\",\"description\":\"Everything crypto Happens here. But Now Nigerian Politics first.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":405,\"friends_count\":183,\"listed_count\":4,\"created_at\":\"Thu Jul 07 17:53:53 +0000 2011\",\"favourites_count\":2364,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1055,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541080746080800769\\/QR078MJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541080746080800769\\/QR078MJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/331127488\\/1657305312\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2344\":{\"id\":1350387186525462530,\"id_str\":\"1350387186525462530\",\"name\":\"Yutchay\\u2728 \\ud83e\\udd8b \\ud83c\\udf08\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"YutchayBella\",\"location\":\"\",\"description\":\"What's life without a lil craziness \\ud83d\\ude1b\\n\\u2648 Aries\",\"url\":\"https:\\/\\/t.co\\/6pc8MLcYwg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6pc8MLcYwg\",\"expanded_url\":\"http:\\/\\/instagram.com\\/yutchay_xx\",\"display_url\":\"instagram.com\\/yutchay_xx\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":84,\"friends_count\":173,\"listed_count\":0,\"created_at\":\"Sat Jan 16 10:19:40 +0000 2021\",\"favourites_count\":142,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":81,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553690078786060288\\/2fpqTzww_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553690078786060288\\/2fpqTzww_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1350387186525462530\\/1610795385\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2345\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2346\":{\"id\":799579042299006977,\"id_str\":\"799579042299006977\",\"name\":\"Okotete Emmanuel Joseph\",\"screen_name\":\"OEJOZEFF\",\"location\":\"Benin-City, Nigeria\",\"description\":\"CARTOONIST \\ud83d\\uddbc\\ufe0f\\n| ANIMATOR \\ud83d\\udcfd\\ufe0f\\n| LOWKEY LIFESTYLE \\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/ijN6Gl7fkP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ijN6Gl7fkP\",\"expanded_url\":\"http:\\/\\/youtube.com\\/oejozeff?sub_confirmation=1\",\"display_url\":\"youtube.com\\/oejozeff?sub_c\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":345,\"friends_count\":40,\"listed_count\":0,\"created_at\":\"Fri Nov 18 11:44:33 +0000 2016\",\"favourites_count\":783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553682341540790272\\/zS_cXCjF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553682341540790272\\/zS_cXCjF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/799579042299006977\\/1659261608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2347\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2348\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2349\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2350\":{\"id\":1509818570452221952,\"id_str\":\"1509818570452221952\",\"name\":\"Lawal Faith (Techsential)\",\"screen_name\":\"adesayo_faith\",\"location\":\"Lagos, Nigeria\",\"description\":\"Digital Marketer - Email marketing and Automation || Sales Funnel\\/Landing page design || Website and App design || UI\\/UX (Figma, Adobe XD) || Student\",\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/techsential\",\"display_url\":\"behance.net\\/techsential\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":791,\"listed_count\":1,\"created_at\":\"Fri Apr 01 09:03:13 +0000 2022\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509818570452221952\\/1658560032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2351\":{\"id\":1525155939325816833,\"id_str\":\"1525155939325816833\",\"name\":\"JUDE CURRY\",\"screen_name\":\"Atta_Kwasii\",\"location\":\"Online \\u2601\\ufe0f \",\"description\":\"Your Favourite Advisor \\ud83d\\ude0d\\nFounder @TECHACKTIVE #YOLO \\n#Tips us @ PayPal https:\\/\\/t.co\\/nYVZZ9MS00 @Arsenal #Arsenal\",\"url\":\"https:\\/\\/t.co\\/S9IIhFDKz3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S9IIhFDKz3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TECHACKTIVE?t=Mu6HTdLCAIe-liUlM8vs6w&s=09\",\"display_url\":\"twitter.com\\/TECHACKTIVE?t=\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nYVZZ9MS00\",\"expanded_url\":\"https:\\/\\/www.paypal.me\\/judecurry\",\"display_url\":\"paypal.me\\/judecurry\",\"indices\":[76,99]}]}},\"protected\":false,\"followers_count\":193,\"friends_count\":382,\"listed_count\":0,\"created_at\":\"Fri May 13 16:48:27 +0000 2022\",\"favourites_count\":2805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3801,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543923162752159744\\/TxuZh1ZB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543923162752159744\\/TxuZh1ZB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1525155939325816833\\/1656691423\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2352\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2353\":{\"id\":1520332987405062144,\"id_str\":\"1520332987405062144\",\"name\":\"Sadeeq Maigishiri\",\"screen_name\":\"MGsadeeq32\",\"location\":\"Abuja, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":30,\"listed_count\":0,\"created_at\":\"Sat Apr 30 09:23:37 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521618281852977152\\/aBjEafmu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521618281852977152\\/aBjEafmu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2354\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2355\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2356\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2357\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2358\":{\"id\":1283730913902370816,\"id_str\":\"1283730913902370816\",\"name\":\"SIKSHOES.NG\",\"screen_name\":\"sikshoes\",\"location\":\"Nigeria\",\"description\":\"Business Oriented.\\nFun Loving. \\nLover of good music.\\nLove making friends.\\nSerial Entrepreneur. \\nC.E.O #siKShoes\",\"url\":\"https:\\/\\/t.co\\/L7GeR3iPTD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/L7GeR3iPTD\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/sikshoes.ng\",\"display_url\":\"facebook.com\\/sikshoes.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259,\"friends_count\":317,\"listed_count\":1,\"created_at\":\"Thu Jul 16 11:51:32 +0000 2020\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1874,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549422811130826759\\/m2eVVX88_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549422811130826759\\/m2eVVX88_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1283730913902370816\\/1640768394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2359\":{\"id\":1553457923552051201,\"id_str\":\"1553457923552051201\",\"name\":\"U. S. DIALA\",\"screen_name\":\"diala_ugochukwu\",\"location\":\"Mararaba, Nigeria\",\"description\":\"Professional Computer Engineer, who is excellent in Laptop Repair\\/Maintenance, Destop repair, Software Installation, Printer and Sales.\",\"url\":\"https:\\/\\/t.co\\/MIg6Mr1Akw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MIg6Mr1Akw\",\"expanded_url\":\"http:\\/\\/usdialaglobalservice.com\",\"display_url\":\"usdialaglobalservice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":125,\"friends_count\":551,\"listed_count\":0,\"created_at\":\"Sat Jul 30 19:10:33 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553685627593449476\\/xFDbDUyP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553685627593449476\\/xFDbDUyP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553457923552051201\\/1659213548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2360\":{\"id\":1147162140954021888,\"id_str\":\"1147162140954021888\",\"name\":\"EXCLUSIVE_PAUL\",\"screen_name\":\"Exclusive_Paull\",\"location\":\"Nigeria\",\"description\":\"OKEOWO PAUL.. An Agricultural Engineer\\ud83d\\udc77... I only radiate good vibes. Don\\u2019t stop when you are tired. Stop when you're done \\ud83d\\ude0e\\nemail: okeowopaul18@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":284,\"friends_count\":298,\"listed_count\":0,\"created_at\":\"Fri Jul 05 15:15:42 +0000 2019\",\"favourites_count\":8975,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":529,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555064175214436352\\/fCTEFmrS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555064175214436352\\/fCTEFmrS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1147162140954021888\\/1623617446\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2361\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2362\":{\"id\":4746397599,\"id_str\":\"4746397599\",\"name\":\"ALHAJI O\\u2074\",\"screen_name\":\"Ajibolatweet\",\"location\":\"Lagos, Nigeria\",\"description\":\"PHOTOGRAPHER || LIVERPOOL FC || STARBOY FC\",\"url\":\"https:\\/\\/instagram.com\\/04elevenpictures?utm_source=ig_profile_share&igshid=l8shub86yy5x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/instagram.com\\/04elevenpictures?utm_source=ig_profile_share&igshid=l8shub86yy5x\",\"expanded_url\":null,\"indices\":[0,86]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4001,\"friends_count\":4189,\"listed_count\":2,\"created_at\":\"Fri Jan 08 17:31:09 +0000 2016\",\"favourites_count\":6511,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8777,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538972480752189440\\/zr16VqFu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538972480752189440\\/zr16VqFu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4746397599\\/1576772389\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2363\":{\"id\":1093107368181800961,\"id_str\":\"1093107368181800961\",\"name\":\"Loving_davoo\\u2764\\ufe0f\\u2764\\ufe0f\",\"screen_name\":\"lovin_davoo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Economist | Data Analyst | Relationship counselor \\ud83d\\udc98 | Vocalist \\ud83c\\udfa4 | An Extrovert | Chelsea fan \\ud83d\\udc99 | Aspiring content creator\\ud83d\\ude01 | Drizzy Stan\\ud83e\\udd89\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":455,\"friends_count\":583,\"listed_count\":1,\"created_at\":\"Wed Feb 06 11:21:20 +0000 2019\",\"favourites_count\":4346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513676103646420992\\/RYkOne2p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513676103646420992\\/RYkOne2p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1093107368181800961\\/1618537184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2364\":{\"id\":1295894470093869056,\"id_str\":\"1295894470093869056\",\"name\":\"Lord Nelson\",\"screen_name\":\"thehighestblog\",\"location\":\"Tema community 4\",\"description\":\"Successful Young Blogger \\ud83c\\udfc6\\ud83c\\udfc6.\",\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4HhR9ZavqU\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCU0nW7tDgxNEh-VrVY3dJmg\",\"display_url\":\"youtube.com\\/channel\\/UCU0nW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":703,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Wed Aug 19 01:25:40 +0000 2020\",\"favourites_count\":2598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2311,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531616356931624960\\/2JVrik1E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295894470093869056\\/1654888608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2365\":{\"id\":2305210268,\"id_str\":\"2305210268\",\"name\":\"Peter Obi son in Kaduna\",\"screen_name\":\"GovaRidechief\",\"location\":\"Abuja, Nigeria\",\"description\":\"Am from enugu state, base in Abuja city Nigeria, movie making and costumier, Brand Manager GovaRide\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":514,\"listed_count\":4,\"created_at\":\"Wed Jan 22 17:35:57 +0000 2014\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":501,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1263643195562475523\\/96P4ulQB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1263643195562475523\\/96P4ulQB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2305210268\\/1656629923\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2366\":{\"id\":1220491285355728897,\"id_str\":\"1220491285355728897\",\"name\":\"Dan's jewelries\",\"screen_name\":\"AsaraDaniel1\",\"location\":\"Lagos, Nigeria\",\"description\":\"model\\ud83e\\udde5\\ud83c\\udfa9\\ud83d\\udc5e\\nsinger\\ud83c\\udfa4\\nsong writer \\ud83d\\udcc3\\ncomedian \\ud83c\\udfad\\nactor \\nentrepreneur\\njeweller \\ud83d\\udc8d\\ud83d\\udc8e\\ud83d\\udcff\\niyanuoluwadaniel88@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":50,\"friends_count\":139,\"listed_count\":1,\"created_at\":\"Thu Jan 23 23:39:58 +0000 2020\",\"favourites_count\":322,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":264,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527325774386458625\\/jt2K4bFO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527325774386458625\\/jt2K4bFO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1220491285355728897\\/1652978427\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2367\":{\"id\":778499933943070721,\"id_str\":\"778499933943070721\",\"name\":\"ZANDO!!!\",\"screen_name\":\"ZANDOAREONE\",\"location\":\"kogi Nigeria\",\"description\":\"The love for blockchain technology ever since I started is becoming more interesting.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":419,\"friends_count\":421,\"listed_count\":1,\"created_at\":\"Wed Sep 21 07:43:42 +0000 2016\",\"favourites_count\":22330,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5894,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521765676578451456\\/A8ZuQYbP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521765676578451456\\/A8ZuQYbP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/778499933943070721\\/1599043414\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2368\":{\"id\":1532629196656283648,\"id_str\":\"1532629196656283648\",\"name\":\"3\\ud835\\uddd7 \\ud835\\udddf\\ud83d\\udeab\\ud835\\udde5\\ud835\\uddd7\\ud83d\\udc99\\ud83c\\udf39\\ud83d\\udda5\\ufe0f\",\"screen_name\":\"SambaBoy00\",\"location\":\"\\ud835\\udddf\\ud835\\uddee\\ud835\\uddf4\\ud835\\uddfc\\ud835\\ude00,\\ud835\\udde1\\ud835\\uddf6\\ud835\\uddf4\\ud835\\uddf2\\ud835\\uddff\\ud835\\uddf6\\ud835\\uddee\",\"description\":\"\\ud835\\uddd6.\\ud835\\uddd8.\\ud835\\udde2 \\ud835\\udde6\\ud835\\uddd4\\ud835\\udde0\\ud835\\uddd5\\ud835\\uddd4 \\ud835\\uddd7\\ud835\\udddc\\ud835\\uddda\\ud835\\udddc\\ud835\\udde7\\ud835\\uddd4\\ud835\\udddf\\ud835\\udde6\\ud83e\\udd35\\n\\ud835\\udde0\\ud835\\uddee\\ud835\\uddff\\ud835\\uddf8\\ud835\\uddf2\\ud835\\ude01\\ud835\\uddf2\\ud835\\uddff,\\ud835\\uddd6\\ud835\\uddfc\\ud835\\uddfb\\ud835\\ude01\\ud835\\uddf2\\ud835\\uddfb\\ud835\\ude01 \\ud835\\uddd6\\ud835\\uddff\\ud835\\uddf2\\ud835\\uddee\\ud835\\ude01\\ud835\\uddfc\\ud835\\uddff,\\ud83e\\uddb8\\u200d\\u2640\\ufe0f\\ud83e\\uddda\\u200d\\u2640\\ufe0f\\ud83c\\udfc7\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":283,\"listed_count\":0,\"created_at\":\"Fri Jun 03 07:44:30 +0000 2022\",\"favourites_count\":807,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1573,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553839851543330818\\/EGvigAJw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553839851543330818\\/EGvigAJw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1532629196656283648\\/1659227105\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2369\":{\"id\":1219293922482180099,\"id_str\":\"1219293922482180099\",\"name\":\"FIRST SON\",\"screen_name\":\"misragold\",\"location\":\"Lagos, Nigeria\",\"description\":\"Islam || Travel & Nature || Gold & Inv. \\n-- iLove Reading News, Will Retweet and Comments on ur post. \\ud83c\\udf39\\niSpeaks \\ud83d\\udc49\\ud83c\\udffe English || Zarma || Hausa || Yoruba\",\"url\":\"https:\\/\\/t.co\\/msbseWbhPg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/msbseWbhPg\",\"expanded_url\":\"http:\\/\\/minepi.com\\/Vpn654\",\"display_url\":\"minepi.com\\/Vpn654\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":251,\"listed_count\":3,\"created_at\":\"Mon Jan 20 16:21:59 +0000 2020\",\"favourites_count\":425,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":783,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537810033282625536\\/2F0nzVe9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537810033282625536\\/2F0nzVe9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1219293922482180099\\/1655409248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2370\":{\"id\":4783220948,\"id_str\":\"4783220948\",\"name\":\"ABN TV\",\"screen_name\":\"abnonlinetv\",\"location\":\"Nigeria\",\"description\":\"An online #television and #radio #news platform based in Nigeria, West Africa\",\"url\":\"https:\\/\\/t.co\\/MdRLZXLQ0r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MdRLZXLQ0r\",\"expanded_url\":\"http:\\/\\/www.abntv.com.ng\",\"display_url\":\"abntv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":941,\"friends_count\":616,\"listed_count\":29,\"created_at\":\"Tue Jan 19 12:47:18 +0000 2016\",\"favourites_count\":800,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":31075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1037031203977801728\\/xnLCEaYI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1037031203977801728\\/xnLCEaYI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4783220948\\/1609479169\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2371\":{\"id\":1363399919101444099,\"id_str\":\"1363399919101444099\",\"name\":\"H O N O R A B L E \\u2744\\ufe0f\",\"screen_name\":\"iam_Vikitomtom\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":107,\"friends_count\":512,\"listed_count\":0,\"created_at\":\"Sun Feb 21 08:07:43 +0000 2021\",\"favourites_count\":1074,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519306516603588608\\/tIgFhKj3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519306516603588608\\/tIgFhKj3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363399919101444099\\/1644150746\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2372\":{\"id\":1313506816500920322,\"id_str\":\"1313506816500920322\",\"name\":\"weightgainwithsisi\",\"screen_name\":\"weightgainfire\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\udf51WEIGHT GAIN WEIGHT LOSS , \\ud83c\\udf51BUTT ENLARGEMENT. \\ud83c\\udf51effect in 3weeks\\ud83d\\udd25 \\ud83d\\udcaf insta@gainweightwith_sisi @single2moro\",\"url\":\"https:\\/\\/t.co\\/iBS68LcWbm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iBS68LcWbm\",\"expanded_url\":\"https:\\/\\/gainweightwithsisi.mailchimpsites.com\\/\",\"display_url\":\"gainweightwithsisi.mailchimpsites.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":699,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Tue Oct 06 15:50:19 +0000 2020\",\"favourites_count\":6245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4327,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490680637052891144\\/ieF7Wi94_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490680637052891144\\/ieF7Wi94_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1313506816500920322\\/1642721365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2373\":{\"id\":898503132459786240,\"id_str\":\"898503132459786240\",\"name\":\"Bright_light\",\"screen_name\":\"Emmisung\",\"location\":\"Kano, Nigeria\",\"description\":\"blogger, Administrator, business man...\\n\\ud83d\\ude2e\\ud83d\\ude09\\ud83d\\udca5\\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":79,\"listed_count\":0,\"created_at\":\"Fri Aug 18 11:13:34 +0000 2017\",\"favourites_count\":1016,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/898503132459786240\\/1587168692\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2374\":{\"id\":1452073829245853697,\"id_str\":\"1452073829245853697\",\"name\":\"J. C. Iro\",\"screen_name\":\"_KingTekno\",\"location\":\"Nigeria\",\"description\":\"CEO Tekkxe (Quiz Master & English Language Examiner)\",\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"expanded_url\":\"https:\\/\\/thepeoplesparrot.blogspot.com\\/?m=1\",\"display_url\":\"thepeoplesparrot.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Sun Oct 24 00:46:11 +0000 2021\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":500,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1452073829245853697\\/1642094272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2375\":{\"id\":898503132459786240,\"id_str\":\"898503132459786240\",\"name\":\"Bright_light\",\"screen_name\":\"Emmisung\",\"location\":\"Kano, Nigeria\",\"description\":\"blogger, Administrator, business man...\\n\\ud83d\\ude2e\\ud83d\\ude09\\ud83d\\udca5\\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":79,\"listed_count\":0,\"created_at\":\"Fri Aug 18 11:13:34 +0000 2017\",\"favourites_count\":1016,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/898503132459786240\\/1587168692\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2376\":{\"id\":907417630612520960,\"id_str\":\"907417630612520960\",\"name\":\"\\ud83d\\udc09G i r l f r i e n d S n a t c h e r\\ud83d\\udd7a\\ud83c\\udffb\\ud83e\\udd34\\ud83c\\udffb\\ud83d\\ude80\",\"screen_name\":\"__amandoo\",\"location\":\"Nigeria\",\"description\":\"Alhmdllh Ana Muslim\\ud83d\\ude4f| Allah \\u261d\\ufe0f| Prophet Muhammad \\ud83d\\udc98| Mom \\ud83d\\udc51\\u2764\\ufe0f| RIJF Dad \\ud83d\\ude2d\\ud83d\\udc94|Abusite \\ud83d\\udcda| Hustler \\ud83d\\udcaa\\ud83c\\udfff| Dm for Ads & promotions| Family over all \\ud83e\\udd0d| Dec. 25th\\ud83c\\udf89\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10120,\"friends_count\":4646,\"listed_count\":1,\"created_at\":\"Tue Sep 12 01:36:36 +0000 2017\",\"favourites_count\":65523,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20845,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1268098265435836416\\/5ZW_dIaP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1268098265435836416\\/5ZW_dIaP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/907417630612520960\\/1589292757\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2377\":{\"id\":1536280490377990146,\"id_str\":\"1536280490377990146\",\"name\":\"Tolu Adams\",\"screen_name\":\"thetoluadams\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate consultant with over 4years experience. Project Manager at Envision Homes. I offer Real Estate investment Advise and the best deals available.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":45,\"listed_count\":0,\"created_at\":\"Mon Jun 13 09:33:41 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":23,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536345238645530629\\/NM8Lv5pD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536345238645530629\\/NM8Lv5pD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536280490377990146\\/1655128225\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2378\":{\"id\":1274613862680203265,\"id_str\":\"1274613862680203265\",\"name\":\"MrBayoOfficial\\ud83d\\udcf6\",\"screen_name\":\"Mr_Bayo_jnr\",\"location\":\"Nigeria\",\"description\":\"Hello, I welcome you all to my profile, I sell out my correct scores in different odds and they are 100% accurate. Im available 24\\/7\\ud83d\\udce1 or +2349058058993\\u260e\\ufe0f\\ud83d\\udc09\",\"url\":\"https:\\/\\/t.co\\/ZM2Od9UqqD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZM2Od9UqqD\",\"expanded_url\":\"http:\\/\\/Www.Greenlandfixed.org\",\"display_url\":\"Greenlandfixed.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3501,\"friends_count\":898,\"listed_count\":0,\"created_at\":\"Sun Jun 21 08:03:29 +0000 2020\",\"favourites_count\":765,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2798,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1274617938918735874\\/VScmHhvv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1274617938918735874\\/VScmHhvv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1274613862680203265\\/1592727579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2379\":{\"id\":1477603389378895873,\"id_str\":\"1477603389378895873\",\"name\":\"Trends O\\u2019clock\",\"screen_name\":\"TrendsOclock\",\"location\":\"Greater Accra, Ghana\",\"description\":\"Blogger| Digital Content Creator| PR Student |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":282,\"friends_count\":164,\"listed_count\":0,\"created_at\":\"Sun Jan 02 11:31:38 +0000 2022\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":710,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556407784085884929\\/ObkFp717_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556407784085884929\\/ObkFp717_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1477603389378895873\\/1658768769\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2380\":{\"id\":161414566,\"id_str\":\"161414566\",\"name\":\"@mc_actually\",\"screen_name\":\"emmanuelonyele\",\"location\":\"Lagos, Nigeria\",\"description\":\"D Comedian With 2much Swagg!\\n\\nI INVESTED IN MYSELF NOW I'M SELLING,PUSHING IT GRADUALLY.TRENDING ROUND D GLOBE! Its Just God Anyway.\\n\\n4 Bookings- +2348184984107\",\"url\":\"https:\\/\\/t.co\\/ZEfTyeB9ZC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZEfTyeB9ZC\",\"expanded_url\":\"http:\\/\\/mc-actually.mywapblog.com\",\"display_url\":\"mc-actually.mywapblog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":692,\"friends_count\":1732,\"listed_count\":4,\"created_at\":\"Wed Jun 30 20:00:27 +0000 2010\",\"favourites_count\":931,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2687,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435882642738749442\\/_SxCbhUU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435882642738749442\\/_SxCbhUU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/161414566\\/1631175914\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2381\":{\"id\":1508334945546248194,\"id_str\":\"1508334945546248194\",\"name\":\"Israel D. edet\",\"screen_name\":\"GrtJovial\",\"location\":\"Calabar cross River\",\"description\":\"Fortunes always favors the bold,\\nonline marketer @expertnaire\\nhttps:\\/\\/t.co\\/B7Wea4bME9\\n\\nclick on me \\u261d\\ufe0f\\u261d\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/Q5h9KZL5hD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Q5h9KZL5hD\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XA3M5P2T4THSE1\",\"display_url\":\"wa.me\\/message\\/XA3M5P\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B7Wea4bME9\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/G6j0CUmEdn3HAbYb6rBa1i\",\"display_url\":\"chat.whatsapp.com\\/G6j0CUmEdn3HAb\\u2026\",\"indices\":[62,85]}]}},\"protected\":false,\"followers_count\":79,\"friends_count\":576,\"listed_count\":0,\"created_at\":\"Mon Mar 28 06:48:47 +0000 2022\",\"favourites_count\":222,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":307,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534115077783265280\\/IRrwwkje_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534115077783265280\\/IRrwwkje_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1508334945546248194\\/1648709872\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2382\":{\"id\":1111541960207204352,\"id_str\":\"1111541960207204352\",\"name\":\"\\ud83d\\udc9a\\ud83c\\udfb6\\u271d\\ufe0f\",\"screen_name\":\"Boyolamzie\",\"location\":\"Lagos, Nigeria\",\"description\":\"Artiste\\u2022 My sound?\\u201cA sound for the heart \\u2764\\ufe0f\\ud83d\\udc9a\\u201dYou Know\\u201d out now \\ud83c\\udf0e\\ud83d\\udd0a\\u2b07\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/eQ8WCo4T1U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eQ8WCo4T1U\",\"expanded_url\":\"https:\\/\\/li.sten.to\\/Youknow\",\"display_url\":\"li.sten.to\\/Youknow\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":328,\"listed_count\":0,\"created_at\":\"Fri Mar 29 08:13:49 +0000 2019\",\"favourites_count\":1430,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":143,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490467071016189952\\/T45jS2fi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490467071016189952\\/T45jS2fi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1111541960207204352\\/1612761605\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2383\":{\"id\":1167599898700713984,\"id_str\":\"1167599898700713984\",\"name\":\"callme_lakeman\\ud83d\\ude0e\",\"screen_name\":\"Mobayoolamilek1\",\"location\":\"Lagos, Nigeria\",\"description\":\"@chelsea FC\\ud83d\\udc99\\ud83d\\udc99\\ud83d\\udc99| @KDB | Game freak | PES lover | Computer freak | graphic designer | @fireboy my boy \\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1579,\"friends_count\":1591,\"listed_count\":1,\"created_at\":\"Sat Aug 31 00:48:14 +0000 2019\",\"favourites_count\":70792,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":32637,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503303764203167747\\/XpmxMWv-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503303764203167747\\/XpmxMWv-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167599898700713984\\/1654760422\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2384\":{\"id\":1502375428606021640,\"id_str\":\"1502375428606021640\",\"name\":\"Minstrel_Temmy\",\"screen_name\":\"concepts_tm\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Small boy big God\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Fri Mar 11 20:06:40 +0000 2022\",\"favourites_count\":188,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":152,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514630226218831877\\/hbDil0sf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514630226218831877\\/hbDil0sf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502375428606021640\\/1649950961\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2385\":{\"id\":1041618672815681536,\"id_str\":\"1041618672815681536\",\"name\":\"thatblaqboi\",\"screen_name\":\"Kay_Blaq01\",\"location\":\"Akure\",\"description\":\"Photographer || Cyber Security Student || Futarian || Lover of sports || Part time introvert,full time extrovert || Chelsea \\ud83d\\udc99\\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":442,\"friends_count\":492,\"listed_count\":0,\"created_at\":\"Mon Sep 17 09:23:38 +0000 2018\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":533,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544981185704632320\\/db82NvM9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544981185704632320\\/db82NvM9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1041618672815681536\\/1599670449\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2386\":{\"id\":955451743474774017,\"id_str\":\"955451743474774017\",\"name\":\"BJBIZZY\\ud83e\\udd21\",\"screen_name\":\"iam_bjbizzy\",\"location\":\"Lagos\",\"description\":\"| Believer | Typist - 75WPM | Graphics designer | Techie | Blogger | https:\\/\\/t.co\\/bbcAgdhA4h\",\"url\":\"https:\\/\\/t.co\\/gKmntfqKGp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gKmntfqKGp\",\"expanded_url\":\"http:\\/\\/www.YouTube.com\\/channel\\/UCFBq_qSOiFdf-ET9T3vVTrQ\",\"display_url\":\"YouTube.com\\/channel\\/UCFBq_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bbcAgdhA4h\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2349022875883\",\"display_url\":\"wa.me\\/+2349022875883\",\"indices\":[69,92]}]}},\"protected\":false,\"followers_count\":1287,\"friends_count\":1155,\"listed_count\":1,\"created_at\":\"Mon Jan 22 14:47:01 +0000 2018\",\"favourites_count\":12568,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4298,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543699172955721728\\/0UUsZZnd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543699172955721728\\/0UUsZZnd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/955451743474774017\\/1614433784\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2387\":{\"id\":1384447899828957186,\"id_str\":\"1384447899828957186\",\"name\":\"Awireee\\ud83d\\udcb8\\ud83e\\udd74\",\"screen_name\":\"pelumiii_awiree\",\"location\":\"Nigeria\",\"description\":\"Eventsplanner \\u2022 Financial analysis \\u2022 GGMU \\u2022 emmanuelodunayomi@gmail.com. Comedian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Tue Apr 20 10:04:50 +0000 2021\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384447899828957186\\/1620914365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2388\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2389\":{\"id\":222617214,\"id_str\":\"222617214\",\"name\":\"Kelvin king\",\"screen_name\":\"kelvinbillions_\",\"location\":\"Lagos, Nigeria\",\"description\":\"Technical analysis freak \\ud83d\\ude08 \\ud83d\\ude08. NFT enthusiast $$. https:\\/\\/t.co\\/HZl8KeUszH join BILLIONS DAO get access to learning and valuable info for free\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HZl8KeUszH\",\"expanded_url\":\"https:\\/\\/discord.gg\\/KnbYAReT\",\"display_url\":\"discord.gg\\/KnbYAReT\",\"indices\":[51,74]}]}},\"protected\":false,\"followers_count\":871,\"friends_count\":125,\"listed_count\":6,\"created_at\":\"Fri Dec 03 23:07:24 +0000 2010\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1251,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521778078082551808\\/UTYwuLp__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521778078082551808\\/UTYwuLp__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222617214\\/1651655154\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2390\":{\"id\":2885459335,\"id_str\":\"2885459335\",\"name\":\"Database World\",\"screen_name\":\"Sir_Money_gh\",\"location\":\"ghana\",\"description\":\"Database activist \\nemail benhast21@gmail.com\\nIG @sir_money_ #Database #oracle #PowerBI\\n@oracle @mssqlserver\",\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCjqrnmLvpmpU4nIFjOYPUGQ\",\"display_url\":\"youtube.com\\/channel\\/UCjqrn\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":328,\"friends_count\":269,\"listed_count\":1,\"created_at\":\"Fri Oct 31 16:29:15 +0000 2014\",\"favourites_count\":6043,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7020,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2885459335\\/1641320456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2391\":{\"id\":1280138882751827968,\"id_str\":\"1280138882751827968\",\"name\":\"SNEH J\",\"screen_name\":\"AnthonySneh\",\"location\":\"Lagos, Nigeria\",\"description\":\"FILM MAKER\\ud83c\\udfad\\ud83c\\udfad\\ud83c\\udde8\\ud83c\\uddf5\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddff\\ud83c\\uddfa\\ud83c\\uddf2\\ud83c\\uddf9\\ud83c\\uddfb ARTIST\\ud83c\\udfa4\\ud83c\\udfb5\\ud83c\\udfbc,DANCE COACH \\ud83d\\udd7a\\ud83d\\udd7a\\nAND FILM DIRECTOR \\ud83c\\udfac\\ud83c\\udf9e\\ufe0f\\ud83c\\udfa5\\ud83d\\udcfd\\ufe0f\\ud83d\\udcf8 BTS MAKER\",\"url\":\"https:\\/\\/t.co\\/ZHsxOxCJii\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZHsxOxCJii\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/sneh-j\",\"display_url\":\"audiomack.com\\/sneh-j\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":254,\"friends_count\":437,\"listed_count\":0,\"created_at\":\"Mon Jul 06 13:58:13 +0000 2020\",\"favourites_count\":5913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2320,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553655993959153664\\/_l26d6YF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553655993959153664\\/_l26d6YF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1280138882751827968\\/1645093956\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2392\":{\"id\":4868958250,\"id_str\":\"4868958250\",\"name\":\"Masta Blade\",\"screen_name\":\"farukcalypse2\",\"location\":\"Abuja,Nigeria\",\"description\":\"Rapper\\/ Barber\\/poet\\/Entrepreneuer \\/ philanthropist.\",\"url\":\"https:\\/\\/t.co\\/DiHKIqiwIM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DiHKIqiwIM\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/MastaBlade\",\"display_url\":\"youtube.com\\/c\\/MastaBlade\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Mon Feb 01 11:21:23 +0000 2016\",\"favourites_count\":261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":550,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549267436360302592\\/g2NF8EYt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549267436360302592\\/g2NF8EYt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4868958250\\/1644560756\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2393\":{\"id\":1510779916060659716,\"id_str\":\"1510779916060659716\",\"name\":\"SendIt\",\"screen_name\":\"helpsendit\",\"location\":\"Lagos, Nigeria\",\"description\":\"Engineering growth for businesses through swift, reliable and customer-friendly pick-up and drop-off delivery service in Lagos.\",\"url\":\"https:\\/\\/t.co\\/9gPxcVOiar\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9gPxcVOiar\",\"expanded_url\":\"http:\\/\\/helpsendit.com\",\"display_url\":\"helpsendit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":39,\"listed_count\":0,\"created_at\":\"Mon Apr 04 00:43:04 +0000 2022\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535695134272245761\\/xPV3lSJ0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535695134272245761\\/xPV3lSJ0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510779916060659716\\/1654986208\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2394\":{\"id\":1524164946149486595,\"id_str\":\"1524164946149486595\",\"name\":\"Adisa Joshua\",\"screen_name\":\"adisajoshua8\",\"location\":\"Lagos, Nigeria\",\"description\":\"A Footballer \\u26bd\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":75,\"listed_count\":0,\"created_at\":\"Tue May 10 23:10:51 +0000 2022\",\"favourites_count\":440,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":39,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546870832718299136\\/bscBWxOy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546870832718299136\\/bscBWxOy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524164946149486595\\/1657637722\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2395\":{\"id\":3557007382,\"id_str\":\"3557007382\",\"name\":\"badgovtcorruptgudppu \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\udde6\",\"screen_name\":\"Carter0fficial_\",\"location\":\"Lagos, Nigeria\",\"description\":\"Next time you think you are perfect....Try walking on water.... Marradona\\u26bd|Graphic Designer|HR Manager|LM10\\u26bd|Blues4life\\u26bd|4\\ufe0f\\u20e3\\ud83c\\udd71\\ufe0f\\ud83c\\udd71\\ufe0f|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":568,\"friends_count\":661,\"listed_count\":0,\"created_at\":\"Sat Sep 05 15:59:33 +0000 2015\",\"favourites_count\":9118,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3615,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1318967222598074368\\/5kFhn3ua_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1318967222598074368\\/5kFhn3ua_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3557007382\\/1624279284\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2396\":{\"id\":1527952716298964992,\"id_str\":\"1527952716298964992\",\"name\":\"Blaq_Pearlz\",\"screen_name\":\"pearlz_blaq\",\"location\":\"Lagos, Nigeria\",\"description\":\"Afrobeat is where music is, and where it will remain, Music is what i do, its part of me\",\"url\":\"https:\\/\\/t.co\\/fUP0BC0eKk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fUP0BC0eKk\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC4DIhjRfMR3h4FrPlabZuYg\",\"display_url\":\"youtube.com\\/channel\\/UC4DIh\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":493,\"listed_count\":0,\"created_at\":\"Sat May 21 10:01:50 +0000 2022\",\"favourites_count\":2411,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":353,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550601206757822471\\/hXMyovof_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550601206757822471\\/hXMyovof_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1527952716298964992\\/1658527111\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2397\":{\"id\":1813917607,\"id_str\":\"1813917607\",\"name\":\"\\u25aaKENNEDY AGYAPONG\\u25aa4PRESIDENT~2024-(AK-0003128)\",\"screen_name\":\"toku2247\",\"location\":\"Ghana\",\"description\":\"\\ud83d\\udcd6Revelation 1:7\\ud83d\\udc47\\n Look, He is coming with the clouds, & every eye will see him, even those who pierced him; & All peoples on earth will mourn because of HIM.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":263,\"listed_count\":3,\"created_at\":\"Sun Sep 08 07:29:34 +0000 2013\",\"favourites_count\":7057,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9523,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537758556291837952\\/6C4rdB1s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537758556291837952\\/6C4rdB1s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1813917607\\/1534253297\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2398\":{\"id\":1324896966170570754,\"id_str\":\"1324896966170570754\",\"name\":\"delywest_\",\"screen_name\":\"delywest_\",\"location\":\"Lagos, Nigeria\",\"description\":\"music lover and upcoming artiste\",\"url\":\"https:\\/\\/t.co\\/AW5HKXOHb3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AW5HKXOHb3\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/udeogalanyaebuka\",\"display_url\":\"audiomack.com\\/udeogalanyaebu\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Sat Nov 07 02:10:42 +0000 2020\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":427,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523766197896028161\\/rpAcIbVE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523766197896028161\\/rpAcIbVE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1324896966170570754\\/1652129160\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2399\":{\"id\":1813917607,\"id_str\":\"1813917607\",\"name\":\"\\u25aaKENNEDY AGYAPONG\\u25aa4PRESIDENT~2024-(AK-0003128)\",\"screen_name\":\"toku2247\",\"location\":\"Ghana\",\"description\":\"\\ud83d\\udcd6Revelation 1:7\\ud83d\\udc47\\n Look, He is coming with the clouds, & every eye will see him, even those who pierced him; & All peoples on earth will mourn because of HIM.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":263,\"listed_count\":3,\"created_at\":\"Sun Sep 08 07:29:34 +0000 2013\",\"favourites_count\":7057,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9523,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537758556291837952\\/6C4rdB1s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537758556291837952\\/6C4rdB1s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1813917607\\/1534253297\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2400\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1560,\"friends_count\":3011,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2401\":{\"id\":1491298484347195397,\"id_str\":\"1491298484347195397\",\"name\":\"Abolarin Clement\\ud83d\\ude01\",\"screen_name\":\"Clemen2Clement\",\"location\":\"Nigeria\",\"description\":\"An insurance advisor in LEADWAY ASSURANCE COMPANY LIMITED \\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbc,Gym enthusiast \\ud83c\\udfcb\\ud83c\\udfff\\ud83c\\udfcb\\ufe0f\\u200d\\u2640\\ufe0f,Official pastor son .\\ud83c\\udfe1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":112,\"friends_count\":501,\"listed_count\":0,\"created_at\":\"Wed Feb 09 06:30:56 +0000 2022\",\"favourites_count\":312,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":588,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491298757362733057\\/iCQgXtPE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491298757362733057\\/iCQgXtPE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491298484347195397\\/1653222050\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2402\":{\"id\":737651835452981248,\"id_str\":\"737651835452981248\",\"name\":\"OG OF THE SOUTH \\ud83d\\udd59\",\"screen_name\":\"citypeople01\",\"location\":\" Nigeria\",\"description\":\"Innovative business oriented \\u270a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88,\"friends_count\":455,\"listed_count\":5,\"created_at\":\"Tue May 31 14:27:57 +0000 2016\",\"favourites_count\":2783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548188182478344192\\/gprujVWy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548188182478344192\\/gprujVWy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/737651835452981248\\/1597911104\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2403\":{\"id\":3141910017,\"id_str\":\"3141910017\",\"name\":\"@\\u0105\\u014b\\u0131\\u0267\\u01a1\\u0284\\u0284\\u0131\\u00a2\\u0105\\u03b9 \\u2206\\u1d3c\\u1d2e\\u1d35\\u1d3c\\u1d3f\\u1d2c\\u1d34 \\u1d2c\\u1d3a\\u1d35\\u1d34\\u2206\",\"screen_name\":\"obiorah1010\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u0251\\u04c0\\u0561\\u0251\\u057e\\u054f \\u054f\\u0535\\u0251\\u057e \\u0539\\u0585\\u054f\\u00ed\\u0535\\u00ed\\u0475\\u04bd\\npr\\u03c3ud f\\u03b1th\\u0454r \\ntru\\u0455t w\\u00edll \\u03b1lw\\u03b1\\u0447\\u0455 c\\u03c3m\\u0454 f\\u00edr\\u0455t\\n\\u1d2e\\u1d41\\u1d40 \\u1d38\\u1d3c\\u1d5b\\u1d31 \\u1d35\\u02e2 \\u1d40\\u1d34\\u1d31 \\u1d33\\u1d3f\\u1d31\\u1d2c\\u1d40\\u1d31\\u02e2\\u1d40\",\"url\":\"https:\\/\\/t.co\\/V7LPLUY3hk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V7LPLUY3hk\",\"expanded_url\":\"http:\\/\\/instagram.com\\/anihofficial\",\"display_url\":\"instagram.com\\/anihofficial\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1335,\"friends_count\":381,\"listed_count\":1,\"created_at\":\"Mon Apr 06 21:14:52 +0000 2015\",\"favourites_count\":16822,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2490,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551523255709827074\\/ak3dtJwt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551523255709827074\\/ak3dtJwt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3141910017\\/1629438691\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2404\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2405\":{\"id\":927830691936653312,\"id_str\":\"927830691936653312\",\"name\":\"R\\u00f8y\\u00e4l C\\u00f8mpadr\\u00eb\",\"screen_name\":\"Abefe_dixon\",\"location\":\"Lagos, Nigeria\",\"description\":\"Cryptocurrency Investor | CEO Multipurpose | Bling's Xchange\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":1031,\"listed_count\":1,\"created_at\":\"Tue Nov 07 09:30:49 +0000 2017\",\"favourites_count\":2909,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1807,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509372618465501187\\/5WY-14fW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509372618465501187\\/5WY-14fW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/927830691936653312\\/1571214012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2406\":{\"id\":1479751891110223873,\"id_str\":\"1479751891110223873\",\"name\":\"Edioba\",\"screen_name\":\"meg_comedy\",\"location\":\"Benin \",\"description\":\"I'm a content creator (meg_comedy)\",\"url\":\"https:\\/\\/t.co\\/0MW6h4rtgD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0MW6h4rtgD\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCu0xAtn3oPzXgHayBTAdjqA\",\"display_url\":\"youtube.com\\/channel\\/UCu0xA\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":3675,\"listed_count\":0,\"created_at\":\"Sat Jan 08 09:49:04 +0000 2022\",\"favourites_count\":931,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":106,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479913678594101257\\/CBTN__Ll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479913678594101257\\/CBTN__Ll_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2407\":{\"id\":1268088934015393797,\"id_str\":\"1268088934015393797\",\"name\":\"Balogun of FUTA\",\"screen_name\":\"Teebamzy1\",\"location\":\"Akure, Nigeria\",\"description\":\"NAEMSS Futa President|| Content creator||Crypto trader|| Christian|| Student|| image maker||Vendor|| pccg|| football analyst|Solution to the world \\ud83c\\udf10\\ud83d\\udc9a\\u2665\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":335,\"friends_count\":463,\"listed_count\":1,\"created_at\":\"Wed Jun 03 07:56:22 +0000 2020\",\"favourites_count\":2255,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1832,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554255213187502081\\/2qM54ROq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554255213187502081\\/2qM54ROq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268088934015393797\\/1652136440\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2408\":{\"id\":1156636999157264384,\"id_str\":\"1156636999157264384\",\"name\":\"Swaalah Fuseini\",\"screen_name\":\"lhordswaalah\",\"location\":\"Accra, Ghana\",\"description\":\"|| An Economist \\ud83d\\udcc8|| Leadership || Akora \\ud83c\\udfb9|| Inspirationist\\ud83d\\ude07|| Agriculture \\ud83d\\udc69\\u200d\\ud83c\\udf3e || Renewable Energy || Recycling || Believe you can \\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":208,\"listed_count\":0,\"created_at\":\"Wed Jul 31 18:45:24 +0000 2019\",\"favourites_count\":2018,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":421,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1404757831665033223\\/ZR06mUfr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1404757831665033223\\/ZR06mUfr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1156636999157264384\\/1629720698\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2409\":{\"id\":816530601205526529,\"id_str\":\"816530601205526529\",\"name\":\"kukulaja\",\"screen_name\":\"HollaBYoung\",\"location\":\"Nigeria\",\"description\":\"Afroking himself omo Iya wake\",\"url\":\"https:\\/\\/t.co\\/ejJM7q7JNP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ejJM7q7JNP\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/holla-b-\\/song\\/holla-b-smiles-melody\",\"display_url\":\"audiomack.com\\/holla-b-\\/song\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":547,\"friends_count\":2326,\"listed_count\":1,\"created_at\":\"Wed Jan 04 06:24:00 +0000 2017\",\"favourites_count\":1721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1616,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548334296355614720\\/PK5PMA8c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548334296355614720\\/PK5PMA8c_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816530601205526529\\/1626255596\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2410\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2411\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2412\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2413\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2414\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2415\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2416\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2417\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2418\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2419\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2420\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2421\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2422\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2423\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2424\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2425\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2426\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2427\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2428\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2429\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2430\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2431\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2432\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2433\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2434\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2435\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2436\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2437\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2438\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2439\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2440\":{\"id\":2539269292,\"id_str\":\"2539269292\",\"name\":\"Nya\",\"screen_name\":\"bm_nya\",\"location\":\" Accra, Ghana\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":35,\"listed_count\":0,\"created_at\":\"Sat May 10 15:49:59 +0000 2014\",\"favourites_count\":1862,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1397549507844378624\\/OkHdnU3T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1397549507844378624\\/OkHdnU3T_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2539269292\\/1654788660\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2441\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2442\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2443\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2444\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2445\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2446\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2447\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2448\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2449\":{\"id\":1042067054440919040,\"id_str\":\"1042067054440919040\",\"name\":\"Ochicanado_\",\"screen_name\":\"ochicanado\",\"location\":\"Lagos, Nigeria\",\"description\":\"TALENT DISCOVERER\\n* Music Promoter\\n* Branding \\n* TVHost \\n* P.R.O @Bea_mediaNLTD\\n* Etalk @Fnktvchannel #ochicanadotalent #beamedianetworkltd #Fnktv\",\"url\":\"https:\\/\\/t.co\\/HJhaQGVBVz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HJhaQGVBVz\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCjas9-gIZQEpmgJUAo-c_Vw\",\"display_url\":\"youtube.com\\/channel\\/UCjas9\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":721,\"friends_count\":672,\"listed_count\":3,\"created_at\":\"Tue Sep 18 15:05:21 +0000 2018\",\"favourites_count\":88045,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20336,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1304458545484697600\\/aK16crbu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1304458545484697600\\/aK16crbu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1042067054440919040\\/1579668143\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2450\":{\"id\":829383942499401732,\"id_str\":\"829383942499401732\",\"name\":\"DOPATUNES\",\"screen_name\":\"dopatunes\",\"location\":\"Lagos, Nigeria\",\"description\":\"https:\\/\\/t.co\\/m6w3GqjBRa\",\"url\":\"https:\\/\\/t.co\\/HFZy8EP3ap\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HFZy8EP3ap\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCpL1N7YshixDaQuS9oA9jUw\",\"display_url\":\"youtube.com\\/channel\\/UCpL1N\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/m6w3GqjBRa\",\"expanded_url\":\"https:\\/\\/smart.bio\\/dopatunes_ilgm\\/\",\"display_url\":\"smart.bio\\/dopatunes_ilgm\\/\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":64,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Wed Feb 08 17:38:35 +0000 2017\",\"favourites_count\":102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":760,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511901572812398595\\/elej7ZbF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511901572812398595\\/elej7ZbF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829383942499401732\\/1604117606\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2451\":{\"id\":1502736716532178952,\"id_str\":\"1502736716532178952\",\"name\":\"Abbanya exclusive caps\",\"screen_name\":\"Abbanya1\",\"location\":\"Borno, Nigeria\",\"description\":\"quality isn\\u2019t expensive it\\u2019s priceless\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":635,\"listed_count\":0,\"created_at\":\"Sat Mar 12 20:02:27 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":40,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502737010901110787\\/s132rT3I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502737010901110787\\/s132rT3I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502736716532178952\\/1648956383\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2452\":{\"id\":207920369,\"id_str\":\"207920369\",\"name\":\"OGHALE\",\"screen_name\":\"Oghalegreatness\",\"location\":\"Lagos,Nigeria\",\"description\":\"I don't seek for attention but I get it. I'm just a lady with big dreams. I enjoy being natural,I'm just me. #Teamnomakeup\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Tue Oct 26 09:08:52 +0000 2010\",\"favourites_count\":734,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3365,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/207920369\\/1448980315\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2453\":{\"id\":1544831266029182977,\"id_str\":\"1544831266029182977\",\"name\":\"thequeenhelenbrand\",\"screen_name\":\"thequeenhelen1\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Affordable ||Classy||Stylish prices\\ud83d\\udc9c\\ud83e\\udd0d\\ud83d\\udc9c\\ud83e\\udd0dmade to wear and with love\\ud83d\\ude48\\ud83e\\udd0d\",\"url\":\"https:\\/\\/t.co\\/ISVeusRYvO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ISVeusRYvO\",\"expanded_url\":\"https:\\/\\/thequeenhelenbrand.bumpa.shop\",\"display_url\":\"thequeenhelenbrand.bumpa.shop\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":51,\"listed_count\":0,\"created_at\":\"Wed Jul 06 23:51:03 +0000 2022\",\"favourites_count\":113,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":106,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544832356674052098\\/yh7SjRaI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544832356674052098\\/yh7SjRaI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544831266029182977\\/1659624547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2454\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2455\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2456\":{\"id\":1008855480,\"id_str\":\"1008855480\",\"name\":\"Yorla\",\"screen_name\":\"Yorlakh\",\"location\":\"Accra, Ghana\",\"description\":\"I am a professional beekeeper.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":756,\"friends_count\":664,\"listed_count\":4,\"created_at\":\"Thu Dec 13 13:51:33 +0000 2012\",\"favourites_count\":3519,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3035,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008855480\\/1616238421\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2457\":{\"id\":1008855480,\"id_str\":\"1008855480\",\"name\":\"Yorla\",\"screen_name\":\"Yorlakh\",\"location\":\"Accra, Ghana\",\"description\":\"I am a professional beekeeper.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":756,\"friends_count\":664,\"listed_count\":4,\"created_at\":\"Thu Dec 13 13:51:33 +0000 2012\",\"favourites_count\":3519,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3035,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498300379976675329\\/97dy8jcc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008855480\\/1616238421\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2458\":{\"id\":18120897,\"id_str\":\"18120897\",\"name\":\"\\ud83c\\uddfa\\ud83c\\uddf8OldGuy_54\",\"screen_name\":\"Oldguy_54\",\"location\":\"Deep South\",\"description\":\"Casually watching liberals shooting themselves in the foot since 2008. \\nUltra Registered voter.\\nFree speech is a human right.\\nRetired\\nup\\/yours\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1719,\"friends_count\":2419,\"listed_count\":1,\"created_at\":\"Sun Dec 14 19:13:12 +0000 2008\",\"favourites_count\":25506,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25892,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1345605166104530944\\/QqUqXddP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1345605166104530944\\/QqUqXddP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18120897\\/1657941067\",\"profile_link_color\":\"91D2FA\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2459\":{\"id\":1499318030056271875,\"id_str\":\"1499318030056271875\",\"name\":\"The 21st century Lady\",\"screen_name\":\"21CLwigs\",\"location\":\"Kumasi, Ghana (KNUST)\",\"description\":\"Let's talk about hair!\\ud83e\\uddd1|| Follow us on IG @ https:\\/\\/t.co\\/qOmuje6j8l\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qOmuje6j8l\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/the_21st_century_lady_wigs?r=nametag\",\"display_url\":\"instagram.com\\/the_21st_centu\\u2026\",\"indices\":[44,67]}]}},\"protected\":false,\"followers_count\":16,\"friends_count\":45,\"listed_count\":0,\"created_at\":\"Thu Mar 03 09:38:22 +0000 2022\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516410115913621529\\/RnHvlfTV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516410115913621529\\/RnHvlfTV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499318030056271875\\/1650162158\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2460\":{\"id\":1167538860,\"id_str\":\"1167538860\",\"name\":\"\\ud835\\udc04\\ud835\\udc26\\ud835\\udc29\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2f\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2c\",\"screen_name\":\"Emperor_vibes0\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\ud835\\udc16\\ud835\\udc21\\ud835\\udc1a\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc2f\\ud835\\udc1e\\ud835\\udc2b \\ud835\\udc32\\ud835\\udc28\\ud835\\udc2e \\ud835\\udc1d\\ud835\\udc28, \\ud835\\udc00\\ud835\\udc22\\ud835\\udc26 \\ud835\\udc07\\ud835\\udc08\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\ud83d\\udcab \\ud83d\\ude02 \\ud835\\udc15\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc22\\ud835\\udc1a\\ud835\\udc27\\u2728\\ud83c\\udf43 \\ud835\\udc0f\\ud835\\udc1a\\ud835\\udc2c\\ud835\\udc2d\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2d\\ud835\\udc21\\ud835\\udc1e\\ud835\\udc28 \\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":223,\"friends_count\":156,\"listed_count\":0,\"created_at\":\"Mon Feb 11 01:59:56 +0000 2013\",\"favourites_count\":352,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167538860\\/1659127987\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2461\":{\"id\":1132485789655412736,\"id_str\":\"1132485789655412736\",\"name\":\"Oluwadammy\",\"screen_name\":\"Oluwadammy_jb\",\"location\":\"Lagos, Nigeria\",\"description\":\"MUSIC FROM THE HEART AND SOUL \\ud83d\\udc9d\\ud83c\\udfbc\",\"url\":\"https:\\/\\/t.co\\/E8OIxOh9TD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E8OIxOh9TD\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/oluwadammy_\",\"display_url\":\"audiomack.com\\/oluwadammy_\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":107,\"listed_count\":0,\"created_at\":\"Sun May 26 03:17:07 +0000 2019\",\"favourites_count\":622,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1486491407330258948\\/SooIxzVP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1486491407330258948\\/SooIxzVP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1132485789655412736\\/1643243907\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2462\":{\"id\":1522857794201960453,\"id_str\":\"1522857794201960453\",\"name\":\"Panque_bf\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"panquespark\",\"location\":\"Rivers, Nigeria\",\"description\":\"in God i trust oo\\ud83e\\udd70\\ud83d\\ude4f\\u26a1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":233,\"listed_count\":0,\"created_at\":\"Sat May 07 08:36:51 +0000 2022\",\"favourites_count\":570,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":247,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556170707142414336\\/UlAEcGTu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556170707142414336\\/UlAEcGTu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522857794201960453\\/1659158690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2463\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2464\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2465\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2466\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2467\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2468\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2469\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2470\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2471\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2472\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2473\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2474\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2475\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2476\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2477\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2478\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2479\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2480\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2481\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2482\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2483\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2484\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2485\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2486\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2487\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2488\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2489\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2490\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2491\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2492\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2493\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2494\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2495\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2496\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2497\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2498\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2499\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2500\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2501\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2502\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2503\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2504\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2505\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2506\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2507\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2508\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2509\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2510\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2511\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2512\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2513\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2514\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2515\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2516\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2517\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2518\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2519\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2520\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2521\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2522\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2523\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2524\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2525\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2526\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2527\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2528\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2529\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2530\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2531\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2532\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2533\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2534\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2535\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2536\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2537\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2538\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2539\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2540\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2541\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2542\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2543\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2544\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2545\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2546\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2547\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2548\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2549\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2550\":{\"id\":599102034,\"id_str\":\"599102034\",\"name\":\"Olayinka Abisoye\",\"screen_name\":\"popularhoney\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":151,\"friends_count\":320,\"listed_count\":0,\"created_at\":\"Mon Jun 04 07:21:08 +0000 2012\",\"favourites_count\":2750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1297,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/599102034\\/1436951858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2551\":{\"id\":2969340039,\"id_str\":\"2969340039\",\"name\":\"Asuo Gyebi\",\"screen_name\":\"asuo6565\",\"location\":\"Kumasi, Ghana\",\"description\":\"Do the right thing even when no one is watching you -this is called integrity\",\"url\":\"https:\\/\\/t.co\\/gFM7FM8U6k\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gFM7FM8U6k\",\"expanded_url\":\"https:\\/\\/admin.google.com\\/ncs.edu.gh\\/AdminHome?pli=1&fral=1\",\"display_url\":\"admin.google.com\\/ncs.edu.gh\\/Adm\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":568,\"listed_count\":0,\"created_at\":\"Fri Jan 09 08:15:14 +0000 2015\",\"favourites_count\":1699,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1522,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1019729587121610752\\/5vYN1ehC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1019729587121610752\\/5vYN1ehC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2969340039\\/1516188279\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2552\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2553\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2554\":{\"id\":599102034,\"id_str\":\"599102034\",\"name\":\"Olayinka Abisoye\",\"screen_name\":\"popularhoney\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":151,\"friends_count\":320,\"listed_count\":0,\"created_at\":\"Mon Jun 04 07:21:08 +0000 2012\",\"favourites_count\":2750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1297,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/599102034\\/1436951858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2555\":{\"id\":599102034,\"id_str\":\"599102034\",\"name\":\"Olayinka Abisoye\",\"screen_name\":\"popularhoney\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":151,\"friends_count\":320,\"listed_count\":0,\"created_at\":\"Mon Jun 04 07:21:08 +0000 2012\",\"favourites_count\":2750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1297,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/599102034\\/1436951858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2556\":{\"id\":1463336220134715397,\"id_str\":\"1463336220134715397\",\"name\":\"Shefiu \\ud83e\\udd47\\ud83e\\udd47\\ud83d\\udc8e\\ud83d\\udc8e\\ud83d\\udcaf\",\"screen_name\":\"Sheftechofficia\",\"location\":\"Nigeria\",\"description\":\"Website Marketing and Promotion Wizard with Best Marketing Strategy\",\"url\":\"https:\\/\\/t.co\\/AXt6GUvJ2Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AXt6GUvJ2Y\",\"expanded_url\":\"http:\\/\\/www.fiverr.com\\/shef_ecommerce\",\"display_url\":\"fiverr.com\\/shef_ecommerce\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6130,\"friends_count\":1143,\"listed_count\":2,\"created_at\":\"Wed Nov 24 02:38:58 +0000 2021\",\"favourites_count\":92,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1466005377900810242\\/rYiw1Qnl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1466005377900810242\\/rYiw1Qnl_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2557\":{\"id\":1235154463901585413,\"id_str\":\"1235154463901585413\",\"name\":\"\\u4e2d\\u56fd\\u9a7b\\u52a0\\u7eb3\\u5927\\u4f7f\\u9986 Chinese Embassy in Ghana\",\"screen_name\":\"ChinaEmbinGH\",\"location\":\"Accra\",\"description\":\"The official account of the Chinese Embassy in Ghana\",\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJiF1zBmXC\",\"expanded_url\":\"http:\\/\\/gh.chineseembassy.org\\/eng\\/\",\"display_url\":\"gh.chineseembassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4493,\"friends_count\":157,\"listed_count\":99,\"created_at\":\"Wed Mar 04 10:45:58 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1235154623394127875\\/s7NkAcRz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235154463901585413\\/1586016992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2558\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2559\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2560\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2561\":{\"id\":24548059,\"id_str\":\"24548059\",\"name\":\"Curtis Fernheiser III\",\"screen_name\":\"CurtFernheiser\",\"location\":\"The Great Pacific Northwest\",\"description\":\"\\ud83d\\udc41\\ufe0f \\u2665\\ufe0f \\ud83c\\uddfa\\ud83c\\uddf8 and \\ud83d\\udc41\\ufe0f\\u2665\\ufe0f my \\ud83c\\uddec\\ud83c\\udde7 Wife \\ud83d\\ude4fMatthew 28:20\\n Spam=Blocked\\ud83e\\udd2a\\n \\ud83c\\uddfa\\ud83c\\uddf2Patriot Party\\ud83c\\uddfa\\ud83c\\uddf8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1533,\"friends_count\":1510,\"listed_count\":2,\"created_at\":\"Sun Mar 15 16:47:27 +0000 2009\",\"favourites_count\":14346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24548059\\/1659165343\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2562\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2563\":{\"id\":845769670070358016,\"id_str\":\"845769670070358016\",\"name\":\"franklin uchenna\",\"screen_name\":\"fungistz\",\"location\":\"Lagos, Nigeria\",\"description\":\"Forex Trader, Computer Scientist & Content Creator.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":366,\"listed_count\":2,\"created_at\":\"Sat Mar 25 22:49:37 +0000 2017\",\"favourites_count\":1131,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2352,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546464413372268546\\/LQ9R3InC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546464413372268546\\/LQ9R3InC_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2564\":{\"id\":1509818570452221952,\"id_str\":\"1509818570452221952\",\"name\":\"Lawal Faith (Techsential)\",\"screen_name\":\"adesayo_faith\",\"location\":\"Lagos, Nigeria\",\"description\":\"Digital Marketer - Email marketing and Automation || Sales Funnel\\/Landing page design || Website and App design || UI\\/UX (Figma, Adobe XD) || Student\",\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KjIxURltjM\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/techsential\",\"display_url\":\"behance.net\\/techsential\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":791,\"listed_count\":1,\"created_at\":\"Fri Apr 01 09:03:13 +0000 2022\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550739276010225664\\/Bcc_fTJy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509818570452221952\\/1658560032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2565\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2566\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2567\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2568\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2569\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2570\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2571\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2572\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2573\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2574\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2575\":{\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"name\":\"William Iwu\",\"screen_name\":\"betsmasterspro\",\"location\":\"Jos, Nigeria\",\"description\":\"Welcome To Betsmasterpro matches,We Offer \\ud83d\\udcaf Fixed Matches All Correct Scores,If You're Interested Call \\ud83d\\udcdeOr WhatsApp Us On \\ud83d\\udcf2+2349095386137.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1085,\"friends_count\":37,\"listed_count\":1,\"created_at\":\"Wed Nov 25 02:59:59 +0000 2020\",\"favourites_count\":1247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1931,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331432336127381504\\/1629374439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2576\":{\"id\":1045807534894911488,\"id_str\":\"1045807534894911488\",\"name\":\"\\ud83c\\uddec\\ud83c\\udded SON OF GAMALIEL\",\"screen_name\":\"desiadenyo97\",\"location\":\"Tema, Ghana\",\"description\":\"Special Educator. \\nReading Interventionist \\nCivil rights Activist\\nFirm believer in Hard work.\\nWhat is the Ghanaian dream?\\nContact for ads and promos\\ud83c\\udf37\\ud83e\\udd17\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Sep 28 22:48:41 +0000 2018\",\"favourites_count\":2181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":563,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544472091134763010\\/m1ajBKPY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1045807534894911488\\/1659210778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2577\":{\"id\":1282590760718733312,\"id_str\":\"1282590760718733312\",\"name\":\"OnlinePikin\",\"screen_name\":\"Online_Pikin\",\"location\":\"Nigeria\",\"description\":\"A niche blog telling stories on brands, causes, people & events from around the globe.\",\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\",\"display_url\":\"onlinepikin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Mon Jul 13 08:20:59 +0000 2020\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282590760718733312\\/1659910806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2578\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2579\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2580\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2581\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2582\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2583\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2584\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2585\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2586\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2587\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2588\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2589\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2590\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2591\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2592\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2593\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2594\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2595\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2596\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2597\":{\"id\":48293000,\"id_str\":\"48293000\",\"name\":\"olawepo abel\",\"screen_name\":\"damikay\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT Technician | Web Developer | Social Media \\/ Internet Business Guru | Informarketing | Sport \\ud83c\\udfbe\\ud83c\\udfc0 I always win 5 - 7 time in a week\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":200,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Thu Jun 18 08:47:53 +0000 2009\",\"favourites_count\":739,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1260281565449502720\\/QYWWzSiP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48293000\\/1658722550\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2598\":{\"id\":109525208,\"id_str\":\"109525208\",\"name\":\"Sarashni\",\"screen_name\":\"sarashni\",\"location\":\"Johannesburg, South Africa\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":988,\"friends_count\":419,\"listed_count\":1,\"created_at\":\"Fri Jan 29 10:19:28 +0000 2010\",\"favourites_count\":62747,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":35163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/887267985395785728\\/zqDDj09r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/887267985395785728\\/zqDDj09r_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2599\":{\"id\":2822290261,\"id_str\":\"2822290261\",\"name\":\"Master_Shifu\",\"screen_name\":\"Kobus_Bekker7\",\"location\":\"South Africa , Benoni\",\"description\":\"#flyinghighsince1985\\n\\nThe world's freelancer -\\n\\nCorrecting the Balance of the Spiritual world - \\n\\nhttps:\\/\\/t.co\\/fbMz0wzaxg\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fbMz0wzaxg\",\"expanded_url\":\"http:\\/\\/paypal.me\\/waspss?country\",\"display_url\":\"paypal.me\\/waspss?country\",\"indices\":[98,121]}]}},\"protected\":false,\"followers_count\":190,\"friends_count\":275,\"listed_count\":7,\"created_at\":\"Sat Sep 20 16:16:30 +0000 2014\",\"favourites_count\":271,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2822290261\\/1659082127\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2600\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2601\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2602\":{\"id\":2822290261,\"id_str\":\"2822290261\",\"name\":\"Master_Shifu\",\"screen_name\":\"Kobus_Bekker7\",\"location\":\"South Africa , Benoni\",\"description\":\"#flyinghighsince1985\\n\\nThe world's freelancer -\\n\\nCorrecting the Balance of the Spiritual world - \\n\\nhttps:\\/\\/t.co\\/fbMz0wzaxg\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fbMz0wzaxg\",\"expanded_url\":\"http:\\/\\/paypal.me\\/waspss?country\",\"display_url\":\"paypal.me\\/waspss?country\",\"indices\":[98,121]}]}},\"protected\":false,\"followers_count\":190,\"friends_count\":275,\"listed_count\":7,\"created_at\":\"Sat Sep 20 16:16:30 +0000 2014\",\"favourites_count\":271,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2822290261\\/1659082127\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2603\":{\"id\":2822290261,\"id_str\":\"2822290261\",\"name\":\"Master_Shifu\",\"screen_name\":\"Kobus_Bekker7\",\"location\":\"South Africa , Benoni\",\"description\":\"#flyinghighsince1985\\n\\nThe world's freelancer -\\n\\nCorrecting the Balance of the Spiritual world - \\n\\nhttps:\\/\\/t.co\\/fbMz0wzaxg\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fbMz0wzaxg\",\"expanded_url\":\"http:\\/\\/paypal.me\\/waspss?country\",\"display_url\":\"paypal.me\\/waspss?country\",\"indices\":[98,121]}]}},\"protected\":false,\"followers_count\":190,\"friends_count\":275,\"listed_count\":7,\"created_at\":\"Sat Sep 20 16:16:30 +0000 2014\",\"favourites_count\":271,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2822290261\\/1659082127\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2604\":{\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"name\":\"PretoriaLIVE\",\"screen_name\":\"LivePretoria\",\"location\":\"Pretoria, South Africa\",\"description\":\"Follow us for all NEWS updates - politics, international relations, entertainment, governance, crime, community news - from PRETORIA, SA, Africa and the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2636,\"friends_count\":206,\"listed_count\":8,\"created_at\":\"Wed Oct 30 05:13:38 +0000 2019\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11613,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2605\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2606\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2607\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2608\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2609\":{\"id\":1248199232,\"id_str\":\"1248199232\",\"name\":\"Mr Wakura\",\"screen_name\":\"CitizenWakura\",\"location\":\"Masvingo, Zimbabwe\",\"description\":\"The People are the Priority\",\"url\":\"https:\\/\\/t.co\\/dTGcpDZGRq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dTGcpDZGRq\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/wakuraa\",\"display_url\":\"facebook.com\\/wakuraa\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9903,\"friends_count\":10145,\"listed_count\":2,\"created_at\":\"Thu Mar 07 08:01:51 +0000 2013\",\"favourites_count\":30212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":48569,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549756767067832327\\/lsA-uiHF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549756767067832327\\/lsA-uiHF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1248199232\\/1643041030\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2610\":{\"id\":40827263,\"id_str\":\"40827263\",\"name\":\"crisis2peace.org\",\"screen_name\":\"crisis2peace_\",\"location\":\"Joburg\",\"description\":\"\\\"Be Veg, Go Green to Save Human Race\\\" SupremeMasterTV Live 247 #BitCoin \\u26a1\\ufe0fSV https:\\/\\/t.co\\/JiaOMksww6 $gv_bsv \\/\\/Gerhard #vegan\",\"url\":\"https:\\/\\/t.co\\/dHoJQJPjPB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dHoJQJPjPB\",\"expanded_url\":\"http:\\/\\/www.SupremeMasterTV.com\\/worldwide\",\"display_url\":\"SupremeMasterTV.com\\/worldwide\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JiaOMksww6\",\"expanded_url\":\"http:\\/\\/www.Crisis2Peace.org\",\"display_url\":\"Crisis2Peace.org\",\"indices\":[77,100]}]}},\"protected\":false,\"followers_count\":2966,\"friends_count\":4351,\"listed_count\":192,\"created_at\":\"Mon May 18 06:30:21 +0000 2009\",\"favourites_count\":154967,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":112985,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525786761481396224\\/_4ApcHLE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525786761481396224\\/_4ApcHLE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/40827263\\/1576536537\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2611\":{\"id\":2706157957,\"id_str\":\"2706157957\",\"name\":\"gerhardus \",\"screen_name\":\"gerhardvk12\",\"location\":\"Pretoria\",\"description\":\"Bodybuilding, aesthetics, personal Trainer, fitness. It all makes a person stronger and a better person\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":546,\"friends_count\":1256,\"listed_count\":9,\"created_at\":\"Mon Aug 04 09:27:01 +0000 2014\",\"favourites_count\":395,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1178,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503247795335094272\\/JXlsAG9T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503247795335094272\\/JXlsAG9T_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2706157957\\/1437465886\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2612\":{\"id\":2822290261,\"id_str\":\"2822290261\",\"name\":\"Master_Shifu\",\"screen_name\":\"Kobus_Bekker7\",\"location\":\"South Africa , Benoni\",\"description\":\"#flyinghighsince1985\\n\\nThe world's freelancer -\\n\\nCorrecting the Balance of the Spiritual world - \\n\\nhttps:\\/\\/t.co\\/fbMz0wzaxg\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fbMz0wzaxg\",\"expanded_url\":\"http:\\/\\/paypal.me\\/waspss?country\",\"display_url\":\"paypal.me\\/waspss?country\",\"indices\":[98,121]}]}},\"protected\":false,\"followers_count\":190,\"friends_count\":275,\"listed_count\":7,\"created_at\":\"Sat Sep 20 16:16:30 +0000 2014\",\"favourites_count\":271,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2822290261\\/1659082127\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2613\":{\"id\":2822290261,\"id_str\":\"2822290261\",\"name\":\"Master_Shifu\",\"screen_name\":\"Kobus_Bekker7\",\"location\":\"South Africa , Benoni\",\"description\":\"#flyinghighsince1985\\n\\nThe world's freelancer -\\n\\nCorrecting the Balance of the Spiritual world - \\n\\nhttps:\\/\\/t.co\\/fbMz0wzaxg\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fbMz0wzaxg\",\"expanded_url\":\"http:\\/\\/paypal.me\\/waspss?country\",\"display_url\":\"paypal.me\\/waspss?country\",\"indices\":[98,121]}]}},\"protected\":false,\"followers_count\":190,\"friends_count\":275,\"listed_count\":7,\"created_at\":\"Sat Sep 20 16:16:30 +0000 2014\",\"favourites_count\":271,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2822290261\\/1659082127\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2614\":{\"id\":2822290261,\"id_str\":\"2822290261\",\"name\":\"Master_Shifu\",\"screen_name\":\"Kobus_Bekker7\",\"location\":\"South Africa , Benoni\",\"description\":\"#flyinghighsince1985\\n\\nThe world's freelancer -\\n\\nCorrecting the Balance of the Spiritual world - \\n\\nhttps:\\/\\/t.co\\/fbMz0wzaxg\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fbMz0wzaxg\",\"expanded_url\":\"http:\\/\\/paypal.me\\/waspss?country\",\"display_url\":\"paypal.me\\/waspss?country\",\"indices\":[98,121]}]}},\"protected\":false,\"followers_count\":190,\"friends_count\":275,\"listed_count\":7,\"created_at\":\"Sat Sep 20 16:16:30 +0000 2014\",\"favourites_count\":271,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555671814818480134\\/jgMdR0k1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2822290261\\/1659082127\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2615\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2616\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2617\":{\"id\":1095944724576374785,\"id_str\":\"1095944724576374785\",\"name\":\"carlton temazburg\",\"screen_name\":\"CTemazburg\",\"location\":\"Zimbabwe\",\"description\":\"Patriot, Proponent of free thinking\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1048,\"friends_count\":1587,\"listed_count\":0,\"created_at\":\"Thu Feb 14 07:15:58 +0000 2019\",\"favourites_count\":9010,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1357353545511665665\\/dcl_59ew_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1357353545511665665\\/dcl_59ew_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2618\":{\"id\":409115661,\"id_str\":\"409115661\",\"name\":\"Nhlanhla Ndlovu\",\"screen_name\":\"Nhlanhlanndlovu\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"\\u25cfRenaissance Man || \\u25cfICT\\/IT || \\u25cfHardworker || \\u25cfEmphatic Thinker || \\u25cfI'm just good at existing, Existing in my Truth!!!!\\u25cfnhlanhla25ndlovu@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Thu Nov 10 09:15:13 +0000 2011\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":27,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555779364234711040\\/om2yFlIa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555779364234711040\\/om2yFlIa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/409115661\\/1659721407\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2619\":{\"id\":2194112875,\"id_str\":\"2194112875\",\"name\":\"BenMoto\",\"screen_name\":\"bchiketo\",\"location\":\"Mutare, Zimbabwe\",\"description\":\"Journalist | Cartoonist | Son | Traveler | Poet | Father | Dreamer\",\"url\":\"https:\\/\\/t.co\\/iHD1bFIKZ3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iHD1bFIKZ3\",\"expanded_url\":\"https:\\/\\/cartoonmovement.com\\/cartoonist\\/16156\",\"display_url\":\"cartoonmovement.com\\/cartoonist\\/161\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":674,\"friends_count\":1437,\"listed_count\":2,\"created_at\":\"Thu Nov 14 12:34:47 +0000 2013\",\"favourites_count\":1863,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":325,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1074224708009320449\\/wq6QiUUW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1074224708009320449\\/wq6QiUUW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2620\":{\"id\":1292939731341369350,\"id_str\":\"1292939731341369350\",\"name\":\"Katumpa Steel works SA\",\"screen_name\":\"KatumpaSteel1\",\"location\":\"Sandton, South Africa\",\"description\":\"carpe diem\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":466,\"listed_count\":0,\"created_at\":\"Mon Aug 10 21:44:09 +0000 2020\",\"favourites_count\":915,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1304662293460987904\\/7gUm7HN2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1304662293460987904\\/7gUm7HN2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1292939731341369350\\/1599890703\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2621\":{\"id\":1498250096223338496,\"id_str\":\"1498250096223338496\",\"name\":\"Relebogile Dinake\",\"screen_name\":\"reledinake\",\"location\":\"Rustenburg, South Africa\",\"description\":\"\\ud83d\\udc9cLaw Student\\u2696\\ufe0f\\ud83d\\udc9cKago's Momma\\ud83d\\udc69\\u200d\\ud83d\\udc67\\ud83d\\udc9cTaurus Baby\\u2728\\ud83e\\uddd8\\ud83c\\udffe\\u200d\\u2640\\ufe0f\\ud83d\\udc9c https:\\/\\/t.co\\/BqTtraD8LA Sign up and get 40$ sign up bonus.\\ud83d\\udd25\\ud83d\\udcb5\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BqTtraD8LA\",\"expanded_url\":\"https:\\/\\/ref.surveyj.co\\/RelebogileRN\",\"display_url\":\"ref.surveyj.co\\/RelebogileRN\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":726,\"friends_count\":845,\"listed_count\":0,\"created_at\":\"Mon Feb 28 10:54:04 +0000 2022\",\"favourites_count\":2988,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":384,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498250455511674881\\/bSZ-udAv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498250455511674881\\/bSZ-udAv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498250096223338496\\/1649435074\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2622\":{\"id\":796315167957155840,\"id_str\":\"796315167957155840\",\"name\":\"@Son of the Soil\",\"screen_name\":\"Epic_waynee\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Young ,Goal Driven ,Self motivated photographer ,writer and journalism student .Bookings or more infor kindly contact 0638312595\\/wayneedube@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":413,\"listed_count\":0,\"created_at\":\"Wed Nov 09 11:35:05 +0000 2016\",\"favourites_count\":603,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":369,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499060179949731846\\/54DmQNRE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499060179949731846\\/54DmQNRE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/796315167957155840\\/1579505239\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2623\":{\"id\":218064860,\"id_str\":\"218064860\",\"name\":\"Tshepo Lentor \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"Lentor_\",\"location\":\"Rustenburg, South Africa\",\"description\":\"How many eyes does Lord Bloodraven have\\ud83c\\udf19\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":171,\"listed_count\":1,\"created_at\":\"Sun Nov 21 09:38:46 +0000 2010\",\"favourites_count\":255,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8090,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1347300888881352707\\/nA14RyOL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1347300888881352707\\/nA14RyOL_normal.jpg\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2624\":{\"id\":928363793482240001,\"id_str\":\"928363793482240001\",\"name\":\"Official_bra_thato\",\"screen_name\":\"ThatoModiba_02\",\"location\":\"Pretoria, South Africa\",\"description\":\"Hustler\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":314,\"listed_count\":0,\"created_at\":\"Wed Nov 08 20:49:11 +0000 2017\",\"favourites_count\":916,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1422900325481078785\\/nMDdY8Z__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1422900325481078785\\/nMDdY8Z__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/928363793482240001\\/1510175466\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2625\":{\"id\":1066641698846060544,\"id_str\":\"1066641698846060544\",\"name\":\"Skay Muzic\\u24c2\\ufe0f\",\"screen_name\":\"SkayMuzic\",\"location\":\"Pretoria \",\"description\":\"Musician|Recording Artist|Bookings:\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\nEmail:Skaymusicbookings@gmail.com\\nContact:084 695 3759\",\"url\":\"https:\\/\\/t.co\\/iSUV8SJsUV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iSUV8SJsUV\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/SkayMuzic\",\"display_url\":\"linktr.ee\\/SkayMuzic\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":294,\"friends_count\":116,\"listed_count\":0,\"created_at\":\"Sun Nov 25 10:36:13 +0000 2018\",\"favourites_count\":1390,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1058,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553946541328564224\\/YuHNE8HS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553946541328564224\\/YuHNE8HS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1066641698846060544\\/1659324701\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2626\":{\"id\":1090183890709434368,\"id_str\":\"1090183890709434368\",\"name\":\"Gee Hafe.\",\"screen_name\":\"GeeHafe\",\"location\":\"Johannesburg\",\"description\":\"Hip Hop Opinions & Reviews \\nhttps:\\/\\/t.co\\/dXEMmPttL0\\u2026\\n\\nInquiries: geehafe@gmail.com\",\"url\":\"https:\\/\\/t.co\\/5mouDxEMwb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5mouDxEMwb\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC0JRv9kBgPj2OdoRYtwSCgw\",\"display_url\":\"youtube.com\\/channel\\/UC0JRv\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dXEMmPttL0\",\"expanded_url\":\"http:\\/\\/youtube.com\\/channel\\/UC0JRv\",\"display_url\":\"youtube.com\\/channel\\/UC0JRv\",\"indices\":[28,51]}]}},\"protected\":false,\"followers_count\":1080,\"friends_count\":180,\"listed_count\":0,\"created_at\":\"Tue Jan 29 09:44:28 +0000 2019\",\"favourites_count\":13829,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552157666604097537\\/tOKASJmf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552157666604097537\\/tOKASJmf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1090183890709434368\\/1610783819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2627\":{\"id\":1255754170885382146,\"id_str\":\"1255754170885382146\",\"name\":\"High performance Center\",\"screen_name\":\"Electriccars8\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Master Technicians : we service and repair all makes of cars. repair of Engines, gearbox and Diff. Discipline, Honesty and integrity.South Africa \\ud83c\\uddff\\ud83c\\udde6and Africa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5753,\"friends_count\":6326,\"listed_count\":1,\"created_at\":\"Thu Apr 30 07:02:03 +0000 2020\",\"favourites_count\":24914,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1255776875068170240\\/4xJGBV27_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1255776875068170240\\/4xJGBV27_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1255754170885382146\\/1614160646\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2628\":{\"id\":998829528872079360,\"id_str\":\"998829528872079360\",\"name\":\"#Somayah Out Now\\ud83c\\udf0d\",\"screen_name\":\"HlokwaA\",\"location\":\"Midrand, South Africa\",\"description\":\"DJ | Producer | Audio Engineer | Entrepreneur\\nBookings@hlokwawaafrika.co.za\\n+27 78 027 7147\",\"url\":\"https:\\/\\/t.co\\/v949pioJnM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/v949pioJnM\",\"expanded_url\":\"https:\\/\\/album.link\\/i\\/1619835386\",\"display_url\":\"album.link\\/i\\/1619835386\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2413,\"friends_count\":2413,\"listed_count\":0,\"created_at\":\"Tue May 22 07:34:51 +0000 2018\",\"favourites_count\":18440,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531474268311150593\\/48mvDN7Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531474268311150593\\/48mvDN7Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/998829528872079360\\/1622964918\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2629\":{\"id\":1553480129006997505,\"id_str\":\"1553480129006997505\",\"name\":\"Best World News\",\"screen_name\":\"BestWorldNews2\",\"location\":\"Johannesburg, South Africa\",\"description\":\"You Tuber\\nBlogger\\nContent creator\\nhttps:\\/\\/t.co\\/ypLjCUUANI\",\"url\":\"https:\\/\\/t.co\\/AjCgYcf4qi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AjCgYcf4qi\",\"expanded_url\":\"https:\\/\\/www.mudzunga.co.za\",\"display_url\":\"mudzunga.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ypLjCUUANI\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCXm-0OfC9dkqss1sq2pD1Sg\",\"display_url\":\"youtube.com\\/channel\\/UCXm-0\\u2026\",\"indices\":[34,57]}]}},\"protected\":false,\"followers_count\":139,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Sat Jul 30 20:38:44 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":86,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553744162767486978\\/E_wRApJU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553744162767486978\\/E_wRApJU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553480129006997505\\/1659276449\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2630\":{\"id\":1553749755938873345,\"id_str\":\"1553749755938873345\",\"name\":\"PraiseC\",\"screen_name\":\"WithPraisee\",\"location\":\"Pretoria, South Africa\",\"description\":\"Novel Writer\\nEntertainment Blogger \\nFunny Content \\nContent Creator \\nMental health activist\\nYouTuber\\nhttps:\\/\\/t.co\\/IdXy8X3d2G\",\"url\":\"https:\\/\\/t.co\\/uPweYUo94Q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uPweYUo94Q\",\"expanded_url\":\"http:\\/\\/PraiseC.blogspot.com\",\"display_url\":\"PraiseC.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IdXy8X3d2G\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC6kB1SnSgah-1CPJwxRLOhA\",\"display_url\":\"youtube.com\\/channel\\/UC6kB1\\u2026\",\"indices\":[100,123]}]}},\"protected\":false,\"followers_count\":163,\"friends_count\":222,\"listed_count\":0,\"created_at\":\"Sun Jul 31 14:30:07 +0000 2022\",\"favourites_count\":59,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555544183015874564\\/YXN-nUJR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555544183015874564\\/YXN-nUJR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553749755938873345\\/1659705675\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2631\":{\"id\":1030346490722623488,\"id_str\":\"1030346490722623488\",\"name\":\"ElrioVanTled\",\"screen_name\":\"IssaVanh\",\"location\":\"Pretoria, South Africa\",\"description\":\"I will win not Immidiately but Definately \\ud83d\\udcaf\\u270c\",\"url\":\"https:\\/\\/t.co\\/NUWg0pBjSu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NUWg0pBjSu\",\"expanded_url\":\"http:\\/\\/www.Bccsa.co.za\",\"display_url\":\"Bccsa.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2083,\"friends_count\":3006,\"listed_count\":0,\"created_at\":\"Fri Aug 17 06:52:01 +0000 2018\",\"favourites_count\":9499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2287,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515680794206953473\\/J-Aqr7J7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515680794206953473\\/J-Aqr7J7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1030346490722623488\\/1635964472\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2632\":{\"id\":1076358338575826944,\"id_str\":\"1076358338575826944\",\"name\":\"Leon Trotsky\",\"screen_name\":\"TrotskySA\",\"location\":\"Polokwane, South Africa\",\"description\":\"Black Consciousness Movement | Socialist Revolutionary\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":483,\"friends_count\":277,\"listed_count\":0,\"created_at\":\"Sat Dec 22 06:06:40 +0000 2018\",\"favourites_count\":4306,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498041721288114183\\/sMQMdWjC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498041721288114183\\/sMQMdWjC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1076358338575826944\\/1586733569\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2633\":{\"id\":1459291278,\"id_str\":\"1459291278\",\"name\":\"EvE of Eden\",\"screen_name\":\"KgaugeloKs\",\"location\":\"Tzaneen \",\"description\":\"High standards protect you from low quality experiences\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":319,\"friends_count\":437,\"listed_count\":0,\"created_at\":\"Sun May 26 10:29:15 +0000 2013\",\"favourites_count\":1632,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":764,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1290929904905785344\\/FxWTlXir_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1290929904905785344\\/FxWTlXir_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1459291278\\/1658997412\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2634\":{\"id\":1351150466760142848,\"id_str\":\"1351150466760142848\",\"name\":\"WolfFX\\ud83d\\udc3a\",\"screen_name\":\"WolfFX13\",\"location\":\"Pretoria, South Africa\",\"description\":\"Ecclesiastes 11 verse 1:invest your money in foreign trade and one of this days you will make profit | Forex trader | signals provider | Mentor | NO INVESTMENT\",\"url\":\"https:\\/\\/t.co\\/H1YE3Deh4m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/H1YE3Deh4m\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/6ghlY2eLlOVFhQr79tLZV3\",\"display_url\":\"chat.whatsapp.com\\/6ghlY2eLlOVFhQ\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":109,\"friends_count\":70,\"listed_count\":0,\"created_at\":\"Mon Jan 18 12:52:42 +0000 2021\",\"favourites_count\":356,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":713,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351150910953705474\\/X1fdLTt9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351150910953705474\\/X1fdLTt9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1351150466760142848\\/1610987389\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2635\":{\"id\":1498318920696188934,\"id_str\":\"1498318920696188934\",\"name\":\"Volkswagen Sales Arcadia\",\"screen_name\":\"ShiloteW\",\"location\":\"Pretoria, South Africa\",\"description\":\"Sales Excecutive \\nBIDVEST MCCARTHY VOLKSWAGEN ARCADIA\\n064 094 5063 \\/ 012 309 1793\\nviews expressed are mine, not my employer.\",\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/47AEEHNZPORCJ1\",\"display_url\":\"wa.me\\/message\\/47AEEH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":376,\"friends_count\":707,\"listed_count\":0,\"created_at\":\"Mon Feb 28 15:27:52 +0000 2022\",\"favourites_count\":203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498318920696188934\\/1659592958\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2636\":{\"id\":1075702173735026688,\"id_str\":\"1075702173735026688\",\"name\":\"UMMAMEDIA\",\"screen_name\":\"mediaumma\",\"location\":\"Pretoria, South Africa\",\"description\":\"UMMA Media is a division of United Muslim Movement of Africa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Thu Dec 20 10:39:18 +0000 2018\",\"favourites_count\":166,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1076756756653662209\\/g3wKtc05_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1076756756653662209\\/g3wKtc05_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1075702173735026688\\/1545553789\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2637\":{\"id\":134837932,\"id_str\":\"134837932\",\"name\":\"Active FM Official\",\"screen_name\":\"ACTIVEFM\",\"location\":\"Johannesburg\",\"description\":\"Active FM is an international online podcasting radio station operating from the south of Johannesburg.\\nWe release 5 shows a day - Mondays to Fridays.\",\"url\":\"https:\\/\\/t.co\\/u7UO2oIvdx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/u7UO2oIvdx\",\"expanded_url\":\"http:\\/\\/www.activefm.co.za\",\"display_url\":\"activefm.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1188,\"friends_count\":824,\"listed_count\":3,\"created_at\":\"Mon Apr 19 15:54:57 +0000 2010\",\"favourites_count\":4906,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5999,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484489246492741632\\/n3jNTmqN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484489246492741632\\/n3jNTmqN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/134837932\\/1642768882\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2638\":{\"id\":964065061588340736,\"id_str\":\"964065061588340736\",\"name\":\"Art & Sole_SA\",\"screen_name\":\"sole_willy\",\"location\":\"Midrand, South Africa\",\"description\":\"My name is William noko Aka Art & Sole\\ud83c\\udf9b Dj\\/Producer from midrand(Jhb) Bookings:\\ud83d\\udce9williamnoko57@gmail.com \\ud83d\\udcde0659527889\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":505,\"listed_count\":0,\"created_at\":\"Thu Feb 15 09:13:16 +0000 2018\",\"favourites_count\":253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545487994697703426\\/w7OaLmFQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545487994697703426\\/w7OaLmFQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/964065061588340736\\/1647263175\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2639\":{\"id\":1498318920696188934,\"id_str\":\"1498318920696188934\",\"name\":\"Volkswagen Sales Arcadia\",\"screen_name\":\"ShiloteW\",\"location\":\"Pretoria, South Africa\",\"description\":\"Sales Excecutive \\nBIDVEST MCCARTHY VOLKSWAGEN ARCADIA\\n064 094 5063 \\/ 012 309 1793\\nviews expressed are mine, not my employer.\",\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/47AEEHNZPORCJ1\",\"display_url\":\"wa.me\\/message\\/47AEEH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":376,\"friends_count\":707,\"listed_count\":0,\"created_at\":\"Mon Feb 28 15:27:52 +0000 2022\",\"favourites_count\":203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498318920696188934\\/1659592958\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2640\":{\"id\":1447486492180369411,\"id_str\":\"1447486492180369411\",\"name\":\"Minister of ZanuPf\\ud83c\\uddff\\ud83c\\uddfc.\",\"screen_name\":\"babieRinenharo\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"Zimbabwean.\\nZanuPf Member.\\nBulawayo, Zimbabwe \\ud83c\\uddff\\ud83c\\uddfc .\\nGod above all.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2087,\"friends_count\":2405,\"listed_count\":1,\"created_at\":\"Mon Oct 11 08:58:43 +0000 2021\",\"favourites_count\":9645,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11352,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553542776616374281\\/gj1-kd4u_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553542776616374281\\/gj1-kd4u_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1447486492180369411\\/1646808092\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2641\":{\"id\":1455807188430163975,\"id_str\":\"1455807188430163975\",\"name\":\"Main_character\",\"screen_name\":\"Main_C_official\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Musician| rapsinger | Songwriter| Recording artist\\nMr COAT (Coolest of all times)\\nI tear stages ,I break records.\\nA legend in the making \\ud83d\\udc51\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":1472,\"listed_count\":0,\"created_at\":\"Wed Nov 03 08:01:51 +0000 2021\",\"favourites_count\":3294,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536422348672405505\\/OKdC1IpG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536422348672405505\\/OKdC1IpG_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2642\":{\"id\":2978181507,\"id_str\":\"2978181507\",\"name\":\"YT: Potego M Rakobela\",\"screen_name\":\"MokgadiPR\",\"location\":\"Soweto, South Africa\",\"description\":\"IG:https:\\/\\/t.co\\/mIqVwFgBLD, Jeremiah 17:7 \\ud83d\\ude4f. please subscribe to my YouTube channel \\ud83d\\udc47\\ud83c\\udffc\",\"url\":\"https:\\/\\/t.co\\/i2DYI1mvn9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i2DYI1mvn9\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCM9viUPkY3f6eR4fMr4eLlQ\",\"display_url\":\"youtube.com\\/channel\\/UCM9vi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mIqVwFgBLD\",\"expanded_url\":\"http:\\/\\/instagram.com\\/potego_rakobela\",\"display_url\":\"instagram.com\\/potego_rakobela\",\"indices\":[3,26]}]}},\"protected\":false,\"followers_count\":1758,\"friends_count\":1512,\"listed_count\":0,\"created_at\":\"Wed Jan 14 15:27:57 +0000 2015\",\"favourites_count\":3947,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2466,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501937696066863106\\/Vpy7P48Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501937696066863106\\/Vpy7P48Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2978181507\\/1522449970\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2643\":{\"id\":478797059,\"id_str\":\"478797059\",\"name\":\"EvogueRadio\",\"screen_name\":\"EvogueRadio\",\"location\":\"Sandton, South Africa\",\"description\":\"Where Urban Lifestyle Entertainment content and Music meet. Uncensored and unapologetic. Info@evogueradioworld.co.za\\nwhatsapp :0672304024\\nCall :0110200937\",\"url\":\"https:\\/\\/t.co\\/anSPOAreO7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/anSPOAreO7\",\"expanded_url\":\"https:\\/\\/evogueradioworld.co.za\\/\",\"display_url\":\"evogueradioworld.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6196,\"friends_count\":2706,\"listed_count\":12,\"created_at\":\"Mon Jan 30 17:37:27 +0000 2012\",\"favourites_count\":6126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":55664,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1459848152371142658\\/cqxkcF7k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1459848152371142658\\/cqxkcF7k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/478797059\\/1636828593\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2644\":{\"id\":4872459094,\"id_str\":\"4872459094\",\"name\":\"*When politicians fights, the nation suffers* \\u2696\",\"screen_name\":\"MihlangaJM\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Views on twitter are personal. Professional advice on consideration.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":291,\"friends_count\":305,\"listed_count\":1,\"created_at\":\"Tue Feb 02 19:14:27 +0000 2016\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1596,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542402661881896960\\/qmDxqQMd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542402661881896960\\/qmDxqQMd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4872459094\\/1463097479\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2645\":{\"id\":2303180380,\"id_str\":\"2303180380\",\"name\":\"Sakhi Khuzwayo \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"SakhyKhuzwayo\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Founder @SZKHoldings | Entrepreneur. Economics. Investor. FinTech. Speaker. Traveller. IG: sakhykhuzwayo\",\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCo0mz1wEmoisVPuifGH4QAA\",\"display_url\":\"youtube.com\\/channel\\/UCo0mz\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":126,\"friends_count\":283,\"listed_count\":11,\"created_at\":\"Sat Jan 25 09:24:45 +0000 2014\",\"favourites_count\":6342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2303180380\\/1549451320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2646\":{\"id\":1487031929715273730,\"id_str\":\"1487031929715273730\",\"name\":\"Crossroads Bread \\u201c Bake the World a better place\\u201d\",\"screen_name\":\"JohanStapelbe15\",\"location\":\"Pretoria, South Africa\",\"description\":\"What must you break apart to bring a family together? Bread, of course.-Judi Picoult- We create employment at NGO\\u2019s to bake Craft breads to communities\",\"url\":\"https:\\/\\/t.co\\/xsRC1vWJrc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xsRC1vWJrc\",\"expanded_url\":\"http:\\/\\/www.crossroadsbread.co.za\",\"display_url\":\"crossroadsbread.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":168,\"friends_count\":1121,\"listed_count\":0,\"created_at\":\"Fri Jan 28 12:02:58 +0000 2022\",\"favourites_count\":2046,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1929,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487520702588760073\\/iTzM_rCs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487520702588760073\\/iTzM_rCs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487031929715273730\\/1651431653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2647\":{\"id\":1292150372568567809,\"id_str\":\"1292150372568567809\",\"name\":\"Herbalife Guy\\ud83c\\udf3f\\ud83e\\udd1d\",\"screen_name\":\"DMotileni798\",\"location\":\"Mokopane\",\"description\":\"That sh*t is overrated!\\n\\nTaking orders \\ud83c\\udf3f WhatsApp 069 597 1099..Let's get those body GOALs \\ud83d\\ude4c\\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1946,\"friends_count\":2369,\"listed_count\":0,\"created_at\":\"Sat Aug 08 17:27:33 +0000 2020\",\"favourites_count\":6871,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2152,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546938393375956996\\/xIRT76xk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546938393375956996\\/xIRT76xk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1292150372568567809\\/1645959611\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2648\":{\"id\":1498318920696188934,\"id_str\":\"1498318920696188934\",\"name\":\"Volkswagen Sales Arcadia\",\"screen_name\":\"ShiloteW\",\"location\":\"Pretoria, South Africa\",\"description\":\"Sales Excecutive \\nBIDVEST MCCARTHY VOLKSWAGEN ARCADIA\\n064 094 5063 \\/ 012 309 1793\\nviews expressed are mine, not my employer.\",\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/47AEEHNZPORCJ1\",\"display_url\":\"wa.me\\/message\\/47AEEH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":376,\"friends_count\":707,\"listed_count\":0,\"created_at\":\"Mon Feb 28 15:27:52 +0000 2022\",\"favourites_count\":203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498318920696188934\\/1659592958\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2649\":{\"id\":1074245192776146944,\"id_str\":\"1074245192776146944\",\"name\":\"CradleOHK\",\"screen_name\":\"CradleOhk\",\"location\":\"Pretoria, South Africa\",\"description\":\"Data Analytics & Risk Management For Private Equity.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sun Dec 16 10:09:47 +0000 2018\",\"favourites_count\":1613,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":72,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1296770638024187905\\/ts5VqJqZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1296770638024187905\\/ts5VqJqZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1074245192776146944\\/1598009190\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2650\":{\"id\":472825503,\"id_str\":\"472825503\",\"name\":\"Mabala Conglomerate\",\"screen_name\":\"MulaloJNR\",\"location\":\"Pretoria\",\"description\":\"CEO, Director, Founder, and President at Mabala Conglomerate (Pty) Ltd| @KaizerChiefs and @FCBarcelona are my soccer homes\",\"url\":\"https:\\/\\/t.co\\/8xdfI2Ez1h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8xdfI2Ez1h\",\"expanded_url\":\"https:\\/\\/www.twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":222,\"friends_count\":363,\"listed_count\":4,\"created_at\":\"Tue Jan 24 10:27:15 +0000 2012\",\"favourites_count\":3069,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6754,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514373402840154113\\/d_YowWz7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514373402840154113\\/d_YowWz7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/472825503\\/1649889917\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2651\":{\"id\":4624133423,\"id_str\":\"4624133423\",\"name\":\"Salaamedia\",\"screen_name\":\"salaamedia\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Official account of Salaamedia | Media Agency \\ud83d\\udd34 Amplifying unheard voices. First Official Humanitarian Journalism portal. Humanity is the agenda \\ud83c\\uddff\\ud83c\\udde6\",\"url\":\"https:\\/\\/t.co\\/o6m4InvvGB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o6m4InvvGB\",\"expanded_url\":\"http:\\/\\/www.salaamedia.com\",\"display_url\":\"salaamedia.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7291,\"friends_count\":1553,\"listed_count\":45,\"created_at\":\"Sun Dec 27 18:28:03 +0000 2015\",\"favourites_count\":1557,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20810,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508592704988590080\\/xpjLnJO7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508592704988590080\\/xpjLnJO7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4624133423\\/1645304186\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2652\":{\"id\":4624133423,\"id_str\":\"4624133423\",\"name\":\"Salaamedia\",\"screen_name\":\"salaamedia\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Official account of Salaamedia | Media Agency \\ud83d\\udd34 Amplifying unheard voices. First Official Humanitarian Journalism portal. Humanity is the agenda \\ud83c\\uddff\\ud83c\\udde6\",\"url\":\"https:\\/\\/t.co\\/o6m4InvvGB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o6m4InvvGB\",\"expanded_url\":\"http:\\/\\/www.salaamedia.com\",\"display_url\":\"salaamedia.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7291,\"friends_count\":1553,\"listed_count\":45,\"created_at\":\"Sun Dec 27 18:28:03 +0000 2015\",\"favourites_count\":1557,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20810,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508592704988590080\\/xpjLnJO7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508592704988590080\\/xpjLnJO7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4624133423\\/1645304186\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2653\":{\"id\":1117262198697492480,\"id_str\":\"1117262198697492480\",\"name\":\"Mamogobo Shaun Nkhokho\\ud83c\\udf55.\",\"screen_name\":\"mamogobo_shaun\",\"location\":\"Johannesburg, South Africa\",\"description\":\"https:\\/\\/t.co\\/rYGgEw76Ux\\nMopedi Wa Ga-Sekhukhune\\u2728\\n#Pi\\u03c0Network\\n#LimpopoPi\\u03c0Representative \\n#The Future Of Digital Currency's_4IR\\n#RichMinds\\ud83e\\udde0\\ud83d\\udc18...\",\"url\":\"https:\\/\\/t.co\\/EuecacjQyW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EuecacjQyW\",\"expanded_url\":\"http:\\/\\/www.ShaunNkhokho.com\",\"display_url\":\"ShaunNkhokho.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rYGgEw76Ux\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/Shaun_nkhokho\",\"display_url\":\"Instagram.com\\/Shaun_nkhokho\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":1599,\"friends_count\":2820,\"listed_count\":0,\"created_at\":\"Sun Apr 14 03:04:00 +0000 2019\",\"favourites_count\":853,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":746,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521337924180221952\\/Q9gN1fnV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521337924180221952\\/Q9gN1fnV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1117262198697492480\\/1639584145\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2654\":{\"id\":1286768308180717575,\"id_str\":\"1286768308180717575\",\"name\":\"Youtube : Skai Cole\",\"screen_name\":\"SkaiCole\",\"location\":\"Johannesburg, South Africa\",\"description\":\"SA YouTuber (1million+ Views) \\u2022 Presenter \\u2022 Singer Songwriter \\u2022 Social Media Manager\",\"url\":\"https:\\/\\/t.co\\/x2rLCSD7TV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x2rLCSD7TV\",\"expanded_url\":\"https:\\/\\/youtu.be\\/KWd6KTJesi0\",\"display_url\":\"youtu.be\\/KWd6KTJesi0\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":795,\"listed_count\":0,\"created_at\":\"Fri Jul 24 21:01:10 +0000 2020\",\"favourites_count\":4164,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1486074606503055362\\/NVeFfMID_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1486074606503055362\\/NVeFfMID_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1286768308180717575\\/1643142772\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2655\":{\"id\":1472993461540470794,\"id_str\":\"1472993461540470794\",\"name\":\"khoi khoi\",\"screen_name\":\"khoikhoi_sa\",\"location\":\"Gauteng\",\"description\":\"khoi khoi is a South African footwear brand.\",\"url\":\"https:\\/\\/t.co\\/qXI9Zk4eo2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qXI9Zk4eo2\",\"expanded_url\":\"http:\\/\\/www.khoikhoi.co.za\",\"display_url\":\"khoikhoi.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":664,\"friends_count\":186,\"listed_count\":1,\"created_at\":\"Mon Dec 20 18:13:19 +0000 2021\",\"favourites_count\":1740,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555256307728392193\\/BK8IhxNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555256307728392193\\/BK8IhxNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1472993461540470794\\/1659124741\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2656\":{\"id\":2906094753,\"id_str\":\"2906094753\",\"name\":\"Jobs, Internships, Learnerships and more\",\"screen_name\":\"CareerZoneSA\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Doing our part to help fight unemployment\",\"url\":\"https:\\/\\/t.co\\/Joaq17U92h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Joaq17U92h\",\"expanded_url\":\"http:\\/\\/www.careerzzone.co.za\",\"display_url\":\"careerzzone.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4388,\"friends_count\":147,\"listed_count\":3,\"created_at\":\"Fri Dec 05 08:28:56 +0000 2014\",\"favourites_count\":33,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":189,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1445094521600106498\\/-EgYa82f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1445094521600106498\\/-EgYa82f_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2657\":{\"id\":190260428,\"id_str\":\"190260428\",\"name\":\"Asa Sitole\",\"screen_name\":\"AsaSitole\",\"location\":\"Johannesburg & Libode, SA\",\"description\":\"Mpangele | Servant of Yah @JesusChristFund | A Prophetic Intercessor | Financial Planner @Sanlam See @AsaFinPlanner & @ASFMain | Bible College Student\",\"url\":\"https:\\/\\/t.co\\/JfcgQQT4vF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JfcgQQT4vF\",\"expanded_url\":\"http:\\/\\/www.jesuschristfund.org.za\\/ASM\",\"display_url\":\"jesuschristfund.org.za\\/ASM\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4339,\"friends_count\":4705,\"listed_count\":4,\"created_at\":\"Mon Sep 13 14:10:29 +0000 2010\",\"favourites_count\":2722,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7847,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548754721254547456\\/HbrnDH5d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548754721254547456\\/HbrnDH5d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/190260428\\/1653681375\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2658\":{\"id\":951882494718218240,\"id_str\":\"951882494718218240\",\"name\":\"Brazo\",\"screen_name\":\"MthembuSisekelo\",\"location\":\"Roodepoort, South Africa\",\"description\":\"Based in Johannesburg \\u2022 Photographer \\u2022 Video editor \\u2022 Camera Operator DM or email for bookings mthembusisekelo@gmail.com \\ud83c\\uddff\\ud83c\\udde6\",\"url\":\"https:\\/\\/t.co\\/nIHqh16SCE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nIHqh16SCE\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCxUj2QrfedOPBcbpQZG9llQ\",\"display_url\":\"youtube.com\\/channel\\/UCxUj2\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":778,\"friends_count\":59,\"listed_count\":1,\"created_at\":\"Fri Jan 12 18:24:06 +0000 2018\",\"favourites_count\":1929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18963,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534526498199293954\\/gA7N5G5-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534526498199293954\\/gA7N5G5-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/951882494718218240\\/1636987693\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2659\":{\"id\":136211752,\"id_str\":\"136211752\",\"name\":\"Zain Vawda\",\"screen_name\":\"zvawda\",\"location\":\"Sandton, South Africa\",\"description\":\"Financial Markets Writer,\\nOpinions are my own and do not constitute financial advice.\\nChivalry shouldnt be dead.\\nhttps:\\/\\/t.co\\/uXNft6etmt\",\"url\":\"https:\\/\\/t.co\\/5AGoVVI4F6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5AGoVVI4F6\",\"expanded_url\":\"https:\\/\\/www.dailyfx.com\\/\",\"display_url\":\"dailyfx.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uXNft6etmt\",\"expanded_url\":\"https:\\/\\/www.dailyfx.com\\/risk-warning\",\"display_url\":\"dailyfx.com\\/risk-warning\",\"indices\":[113,136]}]}},\"protected\":false,\"followers_count\":238,\"friends_count\":761,\"listed_count\":2,\"created_at\":\"Fri Apr 23 09:20:07 +0000 2010\",\"favourites_count\":533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2005,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519281061401874432\\/kCE5VnNt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519281061401874432\\/kCE5VnNt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/136211752\\/1655932278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2660\":{\"id\":1351150466760142848,\"id_str\":\"1351150466760142848\",\"name\":\"WolfFX\\ud83d\\udc3a\",\"screen_name\":\"WolfFX13\",\"location\":\"Pretoria, South Africa\",\"description\":\"Ecclesiastes 11 verse 1:invest your money in foreign trade and one of this days you will make profit | Forex trader | signals provider | Mentor | NO INVESTMENT\",\"url\":\"https:\\/\\/t.co\\/H1YE3Deh4m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/H1YE3Deh4m\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/6ghlY2eLlOVFhQr79tLZV3\",\"display_url\":\"chat.whatsapp.com\\/6ghlY2eLlOVFhQ\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":109,\"friends_count\":70,\"listed_count\":0,\"created_at\":\"Mon Jan 18 12:52:42 +0000 2021\",\"favourites_count\":356,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":713,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351150910953705474\\/X1fdLTt9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351150910953705474\\/X1fdLTt9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1351150466760142848\\/1610987389\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2661\":{\"id\":453219805,\"id_str\":\"453219805\",\"name\":\"Adekunle stan account\",\"screen_name\":\"letty2mnisi\",\"location\":\"Pretoria\",\"description\":\"Lover of love\\ud83d\\ude0d\\u2764... \\n\\n@antolecky\\u2764 @bammybestowed\\ud83d\\udc99 @dianerusset\\ud83d\\udc9a @ama_qamata\\u2764 @thando_thabethe\\ud83e\\udd0d@vynomiller\\ud83d\\ude0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8768,\"friends_count\":1116,\"listed_count\":13,\"created_at\":\"Mon Jan 02 18:11:48 +0000 2012\",\"favourites_count\":18590,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":186017,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553895941840818179\\/-4fsp7fm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553895941840818179\\/-4fsp7fm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/453219805\\/1589243462\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2662\":{\"id\":60610330,\"id_str\":\"60610330\",\"name\":\"Mega 1\",\"screen_name\":\"jansfin\",\"location\":\"East London, South Africa\",\"description\":\"'Politics: Poli, a Latin word meaning 'many' and 'tics' meaning bloodsucking creatures.'\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":511,\"friends_count\":3213,\"listed_count\":0,\"created_at\":\"Mon Jul 27 14:23:57 +0000 2009\",\"favourites_count\":5214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1072772501112016897\\/-VxPyqq9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1072772501112016897\\/-VxPyqq9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/60610330\\/1544603772\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2663\":{\"id\":555216334,\"id_str\":\"555216334\",\"name\":\"Mr Plumber \\ud83d\\udc77\\ud83c\\udffe\\u200d\\u2642\\ufe0f\\ud83d\\udee0\\ufe0f\\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"LesibaHorns\",\"location\":\"Seshego, South Africa\",\"description\":\"CEO of Makgoba and Son's Plumbing and Lesiba Horns Enterprise.Son of mount zion\\u2b50. @Masandawana and @Liverpool Loyal Fan.IPA Board member and limpopo chairman.\",\"url\":\"https:\\/\\/t.co\\/XuQygczjFm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XuQygczjFm\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/makgoba_thabang?r=nametag\",\"display_url\":\"instagram.com\\/makgoba_thaban\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5976,\"friends_count\":6605,\"listed_count\":19,\"created_at\":\"Mon Apr 16 15:43:06 +0000 2012\",\"favourites_count\":148860,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1376851412462764032\\/L5m8Ch5B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1376851412462764032\\/L5m8Ch5B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/555216334\\/1621723731\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2664\":{\"id\":1174598995,\"id_str\":\"1174598995\",\"name\":\"Bantu Holomisa\",\"screen_name\":\"BantuHolomisa\",\"location\":\"Pretoria\",\"description\":\"Maj. Gen. (Ret.) Bantu Holomisa, MP - President of the United Democratic Movement (UDM) and founder of Champions of the Environment Foundation\",\"url\":\"https:\\/\\/t.co\\/BUw7AWQQoX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BUw7AWQQoX\",\"expanded_url\":\"https:\\/\\/udm.org.za\\/\",\"display_url\":\"udm.org.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":629051,\"friends_count\":7141,\"listed_count\":408,\"created_at\":\"Wed Feb 13 09:32:52 +0000 2013\",\"favourites_count\":20538,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"020303\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1438802838600232961\\/qTkdJCJL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1438802838600232961\\/qTkdJCJL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1174598995\\/1636370420\",\"profile_link_color\":\"FAB81E\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2665\":{\"id\":410614536,\"id_str\":\"410614536\",\"name\":\"Paul Graham\",\"screen_name\":\"PMGeducator\",\"location\":\"Johannesburg\",\"description\":\"Elections, African Politics, Democracy and a general curiosity about how the world works, or doesn't.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":906,\"friends_count\":231,\"listed_count\":30,\"created_at\":\"Sat Nov 12 10:06:08 +0000 2011\",\"favourites_count\":142,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18105,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/848889861004304384\\/orHi0Z-6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/848889861004304384\\/orHi0Z-6_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2666\":{\"id\":910797337391435777,\"id_str\":\"910797337391435777\",\"name\":\"Sandile Proff Nyembe\",\"screen_name\":\"ProffNyembe\",\"location\":\"Johannesburg, South Africa\",\"description\":\"IG: @proff_nyembe tik-too:proff_nyembe\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":557,\"friends_count\":317,\"listed_count\":0,\"created_at\":\"Thu Sep 21 09:26:21 +0000 2017\",\"favourites_count\":233,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":257,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548843774708776961\\/yLrDMkIt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548843774708776961\\/yLrDMkIt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/910797337391435777\\/1658108118\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2667\":{\"id\":752853056,\"id_str\":\"752853056\",\"name\":\"IAmMogoshadi\\u2764\\ufe0f\\u2764\\ufe0f\",\"screen_name\":\"TeskaAcademy\",\"location\":\"Polokwane\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87,\"friends_count\":226,\"listed_count\":0,\"created_at\":\"Sun Aug 12 10:11:32 +0000 2012\",\"favourites_count\":1228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":153,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484325846022119426\\/LyelBti5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484325846022119426\\/LyelBti5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/752853056\\/1604124979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2668\":{\"id\":1294609842842329089,\"id_str\":\"1294609842842329089\",\"name\":\"Riebeckite Clothing\",\"screen_name\":\"riebeckitecloth\",\"location\":\"Witbank, Mpumalanga\",\"description\":\"Clothing Brand\\nMen| Women| Kids \\nCamping, outdoor, casual, formal wear\",\"url\":\"https:\\/\\/t.co\\/3NZhhnfxVP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3NZhhnfxVP\",\"expanded_url\":\"http:\\/\\/www.riebeckiteclothing.com\",\"display_url\":\"riebeckiteclothing.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":50,\"friends_count\":207,\"listed_count\":0,\"created_at\":\"Sat Aug 15 12:20:37 +0000 2020\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503799443199598607\\/9OAYbO5j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503799443199598607\\/9OAYbO5j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1294609842842329089\\/1597761698\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2669\":{\"id\":241120468,\"id_str\":\"241120468\",\"name\":\"\\ud83c\\udd7f\\ufe0fMinister of Finance\\ud83c\\udf65\",\"screen_name\":\"garothedj\",\"location\":\"Johannesburg - South Africa\",\"description\":\"I comment on things I find interesting - I drink water - I talk in my sleep - I speak it to existence \\n I Sell Cars & Things\\ud83d\\ude97\\ud83d\\ude9a\\ud83d\\udd0c\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/b0OyBtu79J\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/b0OyBtu79J\",\"expanded_url\":\"https:\\/\\/app.thesalt.co.za\\/join\\/q14yu\",\"display_url\":\"app.thesalt.co.za\\/join\\/q14yu\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3842,\"friends_count\":4621,\"listed_count\":5,\"created_at\":\"Fri Jan 21 14:21:44 +0000 2011\",\"favourites_count\":26791,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12530,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1456554318887260162\\/qpglQFBW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1456554318887260162\\/qpglQFBW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/241120468\\/1624960207\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2670\":{\"id\":1190634249185103872,\"id_str\":\"1190634249185103872\",\"name\":\"Guccie Pain Graphics\",\"screen_name\":\"GPGraphicsSA\",\"location\":\"Johannesburg\",\"description\":\"For Bookings & Enq. \\nContact\\/WhatsApp +2779 027 4386\\n\\ud83c\\uddff\\ud83c\\udde6\",\"url\":\"https:\\/\\/t.co\\/nDG2CmSzY1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDG2CmSzY1\",\"expanded_url\":\"https:\\/\\/msha.ke\\/guccie_pain_graphics\",\"display_url\":\"msha.ke\\/guccie_pain_gr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":862,\"friends_count\":1852,\"listed_count\":1,\"created_at\":\"Sat Nov 02 14:18:45 +0000 2019\",\"favourites_count\":2190,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1222,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1443522154943942657\\/efXsucEq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1443522154943942657\\/efXsucEq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1190634249185103872\\/1613797280\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2671\":{\"id\":4872459094,\"id_str\":\"4872459094\",\"name\":\"*When politicians fights, the nation suffers* \\u2696\",\"screen_name\":\"MihlangaJM\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Views on twitter are personal. Professional advice on consideration.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":291,\"friends_count\":305,\"listed_count\":1,\"created_at\":\"Tue Feb 02 19:14:27 +0000 2016\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1596,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542402661881896960\\/qmDxqQMd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542402661881896960\\/qmDxqQMd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4872459094\\/1463097479\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2672\":{\"id\":1229671175250419713,\"id_str\":\"1229671175250419713\",\"name\":\"YrboyT\",\"screen_name\":\"_Mr_T33\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I, a stranger, am afraid in a world I never made. #GGMU.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":690,\"friends_count\":1657,\"listed_count\":1,\"created_at\":\"Tue Feb 18 07:37:27 +0000 2020\",\"favourites_count\":33611,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":37531,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1425452632798269441\\/8-JUNwvh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1425452632798269441\\/8-JUNwvh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1229671175250419713\\/1642797261\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2673\":{\"id\":2706157957,\"id_str\":\"2706157957\",\"name\":\"gerhardus \",\"screen_name\":\"gerhardvk12\",\"location\":\"Pretoria\",\"description\":\"Bodybuilding, aesthetics, personal Trainer, fitness. It all makes a person stronger and a better person\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":546,\"friends_count\":1256,\"listed_count\":9,\"created_at\":\"Mon Aug 04 09:27:01 +0000 2014\",\"favourites_count\":395,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1178,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503247795335094272\\/JXlsAG9T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503247795335094272\\/JXlsAG9T_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2706157957\\/1437465886\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2674\":{\"id\":254525021,\"id_str\":\"254525021\",\"name\":\"Sminka Tshimangadzo\",\"screen_name\":\"nicesminka\",\"location\":\"Midrand, South Africa\",\"description\":\"co founder of Oddikit lifestyle exclusive clothes brand\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":1161,\"listed_count\":0,\"created_at\":\"Sat Feb 19 13:13:03 +0000 2011\",\"favourites_count\":3287,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4386,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"BADFCD\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1349660868519321600\\/ZhKyKCZi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1349660868519321600\\/ZhKyKCZi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/254525021\\/1590941740\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C3E53\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2675\":{\"id\":1116255763184455681,\"id_str\":\"1116255763184455681\",\"name\":\"Ngoako Kunta Kganakga\",\"screen_name\":\"kunta_j\",\"location\":\"Polokwane, South Africa\",\"description\":\"speak when you have something to say and not because you have to say something.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1233,\"friends_count\":2362,\"listed_count\":0,\"created_at\":\"Thu Apr 11 08:24:47 +0000 2019\",\"favourites_count\":3201,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15948,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287667030112587776\\/6a7wUSDq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287667030112587776\\/6a7wUSDq_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2676\":{\"id\":3371284949,\"id_str\":\"3371284949\",\"name\":\"Koketso Makgatlhe\",\"screen_name\":\"MakgatlheK\",\"location\":\"Pretoria, South Africa\",\"description\":\"I'm real, and i hope some of my followers are too.\\n\\n\\nIG: @Koketsomakgatlhe\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1504,\"friends_count\":1920,\"listed_count\":0,\"created_at\":\"Sat Jul 11 20:43:43 +0000 2015\",\"favourites_count\":884,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1358,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477544370035474433\\/o-ukITrP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477544370035474433\\/o-ukITrP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3371284949\\/1611388374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2677\":{\"id\":907613669663670273,\"id_str\":\"907613669663670273\",\"name\":\"The McCool's Corner\",\"screen_name\":\"mccools_corner\",\"location\":\"Mabopane\",\"description\":\"The McCool's Corner is your one stop shop for tailor made clothing, personalised watches and wall clocks as well as customized laser engraved products.\",\"url\":\"https:\\/\\/t.co\\/qjUux2SQW6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qjUux2SQW6\",\"expanded_url\":\"http:\\/\\/www.themccoolscorner.com\",\"display_url\":\"themccoolscorner.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":332,\"friends_count\":1020,\"listed_count\":2,\"created_at\":\"Tue Sep 12 14:35:36 +0000 2017\",\"favourites_count\":144,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":418,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328457664481857537\\/BpcSdAj0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328457664481857537\\/BpcSdAj0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/907613669663670273\\/1629878664\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2678\":{\"id\":47725854,\"id_str\":\"47725854\",\"name\":\"Nurswan\",\"screen_name\":\"NurSwan\",\"location\":\"Pretoria\",\"description\":\"Arts consultant, gender activist, former journalist,always on the err ball, come sunset 2 unwind, I'l b dancing on a bar counter in sum or other music hall ;-)\",\"url\":\"https:\\/\\/t.co\\/rnPtwmFkbO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rnPtwmFkbO\",\"expanded_url\":\"https:\\/\\/nurswan.wordpress.com\\/\",\"display_url\":\"nurswan.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":794,\"friends_count\":424,\"listed_count\":22,\"created_at\":\"Tue Jun 16 19:53:27 +0000 2009\",\"favourites_count\":3162,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15856,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1371048632070373378\\/5JJub1Em_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1371048632070373378\\/5JJub1Em_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/47725854\\/1418320934\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2679\":{\"id\":1455410767277301760,\"id_str\":\"1455410767277301760\",\"name\":\"Mavuthela. Com\",\"screen_name\":\"MavuthelaCom\",\"location\":\"Johannesburg, South Africa\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":805,\"friends_count\":4057,\"listed_count\":0,\"created_at\":\"Tue Nov 02 05:45:56 +0000 2021\",\"favourites_count\":2293,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":667,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1463229736440770566\\/gf8OciFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1463229736440770566\\/gf8OciFA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2680\":{\"id\":1145967145022611457,\"id_str\":\"1145967145022611457\",\"name\":\"Propaganda Pretoria\",\"screen_name\":\"PropagandaPTA\",\"location\":\"Pretoria, South Africa\",\"description\":\"Nothing like this exists. Nor will it ever. #PropagandaPTA , Pretoria\\u2019s biggest entertainment destination. 3 Floors, Elevated stage, BraaiHouse, Aquabar.\",\"url\":\"https:\\/\\/t.co\\/Zd4Md7Qg7b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Zd4Md7Qg7b\",\"expanded_url\":\"https:\\/\\/propagandapretoria.co.za\",\"display_url\":\"propagandapretoria.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4915,\"friends_count\":720,\"listed_count\":1,\"created_at\":\"Tue Jul 02 08:07:13 +0000 2019\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542054736962150400\\/IIz_oEAX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542054736962150400\\/IIz_oEAX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1145967145022611457\\/1654584913\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2681\":{\"id\":1547053222661165059,\"id_str\":\"1547053222661165059\",\"name\":\"tee axe\",\"screen_name\":\"ThanduxoloMdak1\",\"location\":\"Johannesburg, South Africa\",\"description\":\"angikho right ekhanda\\ud83d\\ude42\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Wed Jul 13 03:00:25 +0000 2022\",\"favourites_count\":36,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550033300965789696\\/jJlpZw6U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550033300965789696\\/jJlpZw6U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547053222661165059\\/1658391710\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2682\":{\"id\":1380027992571797506,\"id_str\":\"1380027992571797506\",\"name\":\"YOUR MEDIA\",\"screen_name\":\"YOURMEDIA_ZA\",\"location\":\"Johannesburg\",\"description\":\"We use degital media to drive representation. Home to SHE channel. We are #WhereYOUare\",\"url\":\"https:\\/\\/t.co\\/5RMEkXdcj9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5RMEkXdcj9\",\"expanded_url\":\"http:\\/\\/www.yourmedia.co.za\",\"display_url\":\"yourmedia.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Thu Apr 08 05:21:37 +0000 2021\",\"favourites_count\":60,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":100,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542473169855971328\\/aVlNt8uI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542473169855971328\\/aVlNt8uI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1380027992571797506\\/1656597416\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2683\":{\"id\":1454627539,\"id_str\":\"1454627539\",\"name\":\"Mr Beard\",\"screen_name\":\"Sphinx_Mnguni\",\"location\":\"Johannesburg, soweto\",\"description\":\"#Deep House Head. #Feminist. #Photographer. #Artist. In three words I can sum up everything I've learned about life: it goes on.\",\"url\":\"https:\\/\\/t.co\\/es5iEJWGJm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/es5iEJWGJm\",\"expanded_url\":\"http:\\/\\/www.Sphinx.peperonity.com\",\"display_url\":\"Sphinx.peperonity.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1603,\"friends_count\":1814,\"listed_count\":1,\"created_at\":\"Fri May 24 16:09:25 +0000 2013\",\"favourites_count\":11940,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6558,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551626852887920643\\/TTVKs9UA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551626852887920643\\/TTVKs9UA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1454627539\\/1515854673\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2684\":{\"id\":1461248919632068612,\"id_str\":\"1461248919632068612\",\"name\":\"The Chop Shop 137\",\"screen_name\":\"TheChopShop137\",\"location\":\"Johannesburg, South Africa\",\"description\":\"The Land Rover Shop, TheChopShop, Your Land Rover and Jaguar Gurus in town. Spares, Repairs, Sales, Trade ins, Spray painting, Panel beating, Breakings. British\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Thu Nov 18 08:25:06 +0000 2021\",\"favourites_count\":30,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478995302220718082\\/W_-_zMeB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478995302220718082\\/W_-_zMeB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461248919632068612\\/1650949334\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2685\":{\"id\":1498318920696188934,\"id_str\":\"1498318920696188934\",\"name\":\"Volkswagen Sales Arcadia\",\"screen_name\":\"ShiloteW\",\"location\":\"Pretoria, South Africa\",\"description\":\"Sales Excecutive \\nBIDVEST MCCARTHY VOLKSWAGEN ARCADIA\\n064 094 5063 \\/ 012 309 1793\\nviews expressed are mine, not my employer.\",\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/47AEEHNZPORCJ1\",\"display_url\":\"wa.me\\/message\\/47AEEH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":376,\"friends_count\":707,\"listed_count\":0,\"created_at\":\"Mon Feb 28 15:27:52 +0000 2022\",\"favourites_count\":203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498318920696188934\\/1659592958\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2686\":{\"id\":1498318920696188934,\"id_str\":\"1498318920696188934\",\"name\":\"Volkswagen Sales Arcadia\",\"screen_name\":\"ShiloteW\",\"location\":\"Pretoria, South Africa\",\"description\":\"Sales Excecutive \\nBIDVEST MCCARTHY VOLKSWAGEN ARCADIA\\n064 094 5063 \\/ 012 309 1793\\nviews expressed are mine, not my employer.\",\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/47AEEHNZPORCJ1\",\"display_url\":\"wa.me\\/message\\/47AEEH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":376,\"friends_count\":707,\"listed_count\":0,\"created_at\":\"Mon Feb 28 15:27:52 +0000 2022\",\"favourites_count\":203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498318920696188934\\/1659592958\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2687\":{\"id\":2303180380,\"id_str\":\"2303180380\",\"name\":\"Sakhi Khuzwayo \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"SakhyKhuzwayo\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Founder @SZKHoldings | Entrepreneur. Economics. Investor. FinTech. Speaker. Traveller. IG: sakhykhuzwayo\",\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCo0mz1wEmoisVPuifGH4QAA\",\"display_url\":\"youtube.com\\/channel\\/UCo0mz\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":126,\"friends_count\":283,\"listed_count\":11,\"created_at\":\"Sat Jan 25 09:24:45 +0000 2014\",\"favourites_count\":6342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2303180380\\/1549451320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2688\":{\"id\":1295337031346905089,\"id_str\":\"1295337031346905089\",\"name\":\"Pacific Blues Logistics.\",\"screen_name\":\"pacificblues_SA\",\"location\":\"Johannesburg\",\"description\":\"For all your Cross-Border Bus Luxury Services we also offer Trucking Logistics Solutions. info@pacificblues.co.za +27 61 548 3132\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":66,\"listed_count\":0,\"created_at\":\"Mon Aug 17 12:30:34 +0000 2020\",\"favourites_count\":150,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1452649476947054605\\/ftziSup4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1452649476947054605\\/ftziSup4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295337031346905089\\/1652248735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2689\":{\"id\":1295337031346905089,\"id_str\":\"1295337031346905089\",\"name\":\"Pacific Blues Logistics.\",\"screen_name\":\"pacificblues_SA\",\"location\":\"Johannesburg\",\"description\":\"For all your Cross-Border Bus Luxury Services we also offer Trucking Logistics Solutions. info@pacificblues.co.za +27 61 548 3132\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":66,\"listed_count\":0,\"created_at\":\"Mon Aug 17 12:30:34 +0000 2020\",\"favourites_count\":150,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1452649476947054605\\/ftziSup4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1452649476947054605\\/ftziSup4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295337031346905089\\/1652248735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2690\":{\"id\":144426464,\"id_str\":\"144426464\",\"name\":\"Molobedu\",\"screen_name\":\"Molobeduu\",\"location\":\"Burkina Faso\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":1120,\"listed_count\":1,\"created_at\":\"Sun May 16 07:37:24 +0000 2010\",\"favourites_count\":2576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/720635112174567424\\/0r-uH1a0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/720635112174567424\\/0r-uH1a0_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2691\":{\"id\":453995956,\"id_str\":\"453995956\",\"name\":\"Abo Baloyi \\ud83d\\udc12\",\"screen_name\":\"ABOBALOYI\",\"location\":\"Midrand, South Africa\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/eUpCTxn3mj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eUpCTxn3mj\",\"expanded_url\":\"https:\\/\\/baloyiabo.co.za\",\"display_url\":\"baloyiabo.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":484,\"friends_count\":427,\"listed_count\":0,\"created_at\":\"Tue Jan 03 14:20:21 +0000 2012\",\"favourites_count\":2108,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2443,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498371910190739459\\/TzWeN_4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498371910190739459\\/TzWeN_4A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/453995956\\/1646074455\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2692\":{\"id\":2303180380,\"id_str\":\"2303180380\",\"name\":\"Sakhi Khuzwayo \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"SakhyKhuzwayo\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Founder @SZKHoldings | Entrepreneur. Economics. Investor. FinTech. Speaker. Traveller. IG: sakhykhuzwayo\",\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCo0mz1wEmoisVPuifGH4QAA\",\"display_url\":\"youtube.com\\/channel\\/UCo0mz\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":126,\"friends_count\":283,\"listed_count\":11,\"created_at\":\"Sat Jan 25 09:24:45 +0000 2014\",\"favourites_count\":6342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2303180380\\/1549451320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2693\":{\"id\":1553480129006997505,\"id_str\":\"1553480129006997505\",\"name\":\"Best World News\",\"screen_name\":\"BestWorldNews2\",\"location\":\"Johannesburg, South Africa\",\"description\":\"You Tuber\\nBlogger\\nContent creator\\nhttps:\\/\\/t.co\\/ypLjCUUANI\",\"url\":\"https:\\/\\/t.co\\/AjCgYcf4qi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AjCgYcf4qi\",\"expanded_url\":\"https:\\/\\/www.mudzunga.co.za\",\"display_url\":\"mudzunga.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ypLjCUUANI\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCXm-0OfC9dkqss1sq2pD1Sg\",\"display_url\":\"youtube.com\\/channel\\/UCXm-0\\u2026\",\"indices\":[34,57]}]}},\"protected\":false,\"followers_count\":139,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Sat Jul 30 20:38:44 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":86,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553744162767486978\\/E_wRApJU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553744162767486978\\/E_wRApJU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553480129006997505\\/1659276449\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2694\":{\"id\":912654734032560129,\"id_str\":\"912654734032560129\",\"name\":\"#LetsFixSouthAfrica #ActionSA \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"signslibra\",\"location\":\"Soweto & Pietermaritzburg. RSA\",\"description\":\"#Researcher #SelfTaughtTrader #OnlineGamblingHustler #Investor #Economist #Politician #PoliticalActivist. Big Fan Of Sport (Cricket Soccer & Rugby Etc)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":645,\"friends_count\":788,\"listed_count\":1,\"created_at\":\"Tue Sep 26 12:26:59 +0000 2017\",\"favourites_count\":2605,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1170334119781392384\\/V1TWeVZ1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1170334119781392384\\/V1TWeVZ1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/912654734032560129\\/1656779627\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2695\":{\"id\":1263397021257543680,\"id_str\":\"1263397021257543680\",\"name\":\"Nate\",\"screen_name\":\"NathanL18293484\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I\\u2019ll deal with the ramifications of my authentic self\",\"url\":\"https:\\/\\/t.co\\/GIzTvAAS3R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GIzTvAAS3R\",\"expanded_url\":\"http:\\/\\/www.n-eight.photography\",\"display_url\":\"n-eight.photography\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":130,\"listed_count\":0,\"created_at\":\"Thu May 21 09:11:52 +0000 2020\",\"favourites_count\":276,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1292916419286491137\\/7lrssTQH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1292916419286491137\\/7lrssTQH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1263397021257543680\\/1597090293\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2696\":{\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"name\":\"PretoriaLIVE\",\"screen_name\":\"LivePretoria\",\"location\":\"Pretoria, South Africa\",\"description\":\"Follow us for all NEWS updates - politics, international relations, entertainment, governance, crime, community news - from PRETORIA, SA, Africa and the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2636,\"friends_count\":206,\"listed_count\":8,\"created_at\":\"Wed Oct 30 05:13:38 +0000 2019\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11613,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2697\":{\"id\":1553124385766129664,\"id_str\":\"1553124385766129664\",\"name\":\"Mzansi Growth Fund\",\"screen_name\":\"MzansiGFund\",\"location\":\"Johannesburg, South Africa\",\"description\":\"CrowdFunded Business Purchases\\n\\nMin investment R 10 000.00\\nPrivate Portfolio options from\\nR 1 000 000.00\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":71,\"listed_count\":0,\"created_at\":\"Fri Jul 29 21:05:13 +0000 2022\",\"favourites_count\":93,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":45,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553126027144077312\\/9Pnoguvs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553126027144077312\\/9Pnoguvs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553124385766129664\\/1659517451\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2698\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2699\":{\"id\":1372517409677053965,\"id_str\":\"1372517409677053965\",\"name\":\"Andimba Herman Toivo ya Toivo \\u270a\\ufe0f\\u270a\\ufe0f\",\"screen_name\":\"MothebeThebi\",\"location\":\"Zeerust, South Africa\",\"description\":\"Corporate Comms Specialist | LLB (Ongoing) | Aspiring Historian | Trained Sports Journo | Sometimes on Radio | Village Boy | African Music \\ud83c\\udfb6 \\ud83c\\udfb5\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2815,\"friends_count\":4991,\"listed_count\":1,\"created_at\":\"Thu Mar 18 11:57:23 +0000 2021\",\"favourites_count\":10342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7995,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552552999234445313\\/_XA8d7mO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552552999234445313\\/_XA8d7mO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372517409677053965\\/1658167543\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2700\":{\"id\":1483172221942222852,\"id_str\":\"1483172221942222852\",\"name\":\"Salaamedia Stream\",\"screen_name\":\"SalaamediaLive\",\"location\":\"Johannesburg, South Africa\",\"description\":\"The Official livestream account of @salaamedia \\n\\ud83d\\udd34 Livestream | Onair Broadcast | Events\",\"url\":\"https:\\/\\/t.co\\/EeyH1gpRcM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EeyH1gpRcM\",\"expanded_url\":\"http:\\/\\/www.salaamedia.com\",\"display_url\":\"salaamedia.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":265,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Mon Jan 17 20:20:22 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1617,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495701305796579329\\/dTbRnYDu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495701305796579329\\/dTbRnYDu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483172221942222852\\/1642462187\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2701\":{\"id\":1551171425444265984,\"id_str\":\"1551171425444265984\",\"name\":\"CRESGLOBAL FOREX LUMINARIES\",\"screen_name\":\"crescent_forex\",\"location\":\"Sandton, South Africa\",\"description\":\"CEO\\u2606Cresglobal Forex Luminaries\\nOfficial Account\\n\\nFollow up on Instagram \\u2606 Cresglobal_forex\",\"url\":\"https:\\/\\/t.co\\/AFSJd82PVJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AFSJd82PVJ\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/cresglobalforexluminaries\",\"display_url\":\"linktr.ee\\/cresglobalfore\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Sun Jul 24 11:44:44 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551932787506151424\\/Y6Bv4qCO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551932787506151424\\/Y6Bv4qCO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2702\":{\"id\":410901279,\"id_str\":\"410901279\",\"name\":\"Siyabonga Mthembu\",\"screen_name\":\"real_cboy\",\"location\":\"South africa sandton\",\"description\":\"Ecstatic and etiquette entrepreneur.\",\"url\":\"http:\\/\\/t.co\\/csVSspKq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/csVSspKq\",\"expanded_url\":\"http:\\/\\/www.premierattractionssa.co.za\",\"display_url\":\"premierattractionssa.co.za\",\"indices\":[0,20]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":88,\"listed_count\":1,\"created_at\":\"Sat Nov 12 18:38:31 +0000 2011\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":463,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1222107106955931649\\/4nGdT3Y__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1222107106955931649\\/4nGdT3Y__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/410901279\\/1422961912\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2703\":{\"id\":712927525,\"id_str\":\"712927525\",\"name\":\"Marius C. Oula\",\"screen_name\":\"russobaross\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I swear to tell only the truth - Citizen of the Universe - Love your Neighbor as Yourself - Race is just geographic - https:\\/\\/t.co\\/4wYRtPohMD\",\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"expanded_url\":\"http:\\/\\/www.maisoncatalogue.co.za\",\"display_url\":\"maisoncatalogue.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4wYRtPohMD\",\"expanded_url\":\"http:\\/\\/mariusoula.blogspot.com\",\"display_url\":\"mariusoula.blogspot.com\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":51,\"friends_count\":456,\"listed_count\":1,\"created_at\":\"Mon Jul 23 19:00:00 +0000 2012\",\"favourites_count\":2105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/712927525\\/1637069392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2704\":{\"id\":712927525,\"id_str\":\"712927525\",\"name\":\"Marius C. Oula\",\"screen_name\":\"russobaross\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I swear to tell only the truth - Citizen of the Universe - Love your Neighbor as Yourself - Race is just geographic - https:\\/\\/t.co\\/4wYRtPohMD\",\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"expanded_url\":\"http:\\/\\/www.maisoncatalogue.co.za\",\"display_url\":\"maisoncatalogue.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4wYRtPohMD\",\"expanded_url\":\"http:\\/\\/mariusoula.blogspot.com\",\"display_url\":\"mariusoula.blogspot.com\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":51,\"friends_count\":456,\"listed_count\":1,\"created_at\":\"Mon Jul 23 19:00:00 +0000 2012\",\"favourites_count\":2105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/712927525\\/1637069392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2705\":{\"id\":712927525,\"id_str\":\"712927525\",\"name\":\"Marius C. Oula\",\"screen_name\":\"russobaross\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I swear to tell only the truth - Citizen of the Universe - Love your Neighbor as Yourself - Race is just geographic - https:\\/\\/t.co\\/4wYRtPohMD\",\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"expanded_url\":\"http:\\/\\/www.maisoncatalogue.co.za\",\"display_url\":\"maisoncatalogue.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4wYRtPohMD\",\"expanded_url\":\"http:\\/\\/mariusoula.blogspot.com\",\"display_url\":\"mariusoula.blogspot.com\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":51,\"friends_count\":456,\"listed_count\":1,\"created_at\":\"Mon Jul 23 19:00:00 +0000 2012\",\"favourites_count\":2105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/712927525\\/1637069392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2706\":{\"id\":712927525,\"id_str\":\"712927525\",\"name\":\"Marius C. Oula\",\"screen_name\":\"russobaross\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I swear to tell only the truth - Citizen of the Universe - Love your Neighbor as Yourself - Race is just geographic - https:\\/\\/t.co\\/4wYRtPohMD\",\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"expanded_url\":\"http:\\/\\/www.maisoncatalogue.co.za\",\"display_url\":\"maisoncatalogue.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4wYRtPohMD\",\"expanded_url\":\"http:\\/\\/mariusoula.blogspot.com\",\"display_url\":\"mariusoula.blogspot.com\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":51,\"friends_count\":456,\"listed_count\":1,\"created_at\":\"Mon Jul 23 19:00:00 +0000 2012\",\"favourites_count\":2105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/712927525\\/1637069392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2707\":{\"id\":712927525,\"id_str\":\"712927525\",\"name\":\"Marius C. Oula\",\"screen_name\":\"russobaross\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I swear to tell only the truth - Citizen of the Universe - Love your Neighbor as Yourself - Race is just geographic - https:\\/\\/t.co\\/4wYRtPohMD\",\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"expanded_url\":\"http:\\/\\/www.maisoncatalogue.co.za\",\"display_url\":\"maisoncatalogue.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4wYRtPohMD\",\"expanded_url\":\"http:\\/\\/mariusoula.blogspot.com\",\"display_url\":\"mariusoula.blogspot.com\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":51,\"friends_count\":456,\"listed_count\":1,\"created_at\":\"Mon Jul 23 19:00:00 +0000 2012\",\"favourites_count\":2105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/712927525\\/1637069392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2708\":{\"id\":1480522060426264582,\"id_str\":\"1480522060426264582\",\"name\":\"Dope Dev Technologies\",\"screen_name\":\"Kingpin10123\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Qualified Web developer\",\"url\":\"https:\\/\\/t.co\\/2vG4siqvea\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2vG4siqvea\",\"expanded_url\":\"https:\\/\\/dopedev.w3spaces.com\",\"display_url\":\"dopedev.w3spaces.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Mon Jan 10 12:49:44 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554723242685997056\\/NhjZ5fVf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554723242685997056\\/NhjZ5fVf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2709\":{\"id\":1498797845259997187,\"id_str\":\"1498797845259997187\",\"name\":\"Brian\",\"screen_name\":\"BrianChimuti_\",\"location\":\"Shurugwi\",\"description\":\"Zimbabwean\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":160,\"listed_count\":0,\"created_at\":\"Tue Mar 01 23:11:01 +0000 2022\",\"favourites_count\":143,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515650003066396673\\/xN9Y1uGt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515650003066396673\\/xN9Y1uGt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498797845259997187\\/1646176617\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2710\":{\"id\":1480522060426264582,\"id_str\":\"1480522060426264582\",\"name\":\"Dope Dev Technologies\",\"screen_name\":\"Kingpin10123\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Qualified Web developer\",\"url\":\"https:\\/\\/t.co\\/2vG4siqvea\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2vG4siqvea\",\"expanded_url\":\"https:\\/\\/dopedev.w3spaces.com\",\"display_url\":\"dopedev.w3spaces.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Mon Jan 10 12:49:44 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554723242685997056\\/NhjZ5fVf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554723242685997056\\/NhjZ5fVf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2711\":{\"id\":1483172221942222852,\"id_str\":\"1483172221942222852\",\"name\":\"Salaamedia Stream\",\"screen_name\":\"SalaamediaLive\",\"location\":\"Johannesburg, South Africa\",\"description\":\"The Official livestream account of @salaamedia \\n\\ud83d\\udd34 Livestream | Onair Broadcast | Events\",\"url\":\"https:\\/\\/t.co\\/EeyH1gpRcM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EeyH1gpRcM\",\"expanded_url\":\"http:\\/\\/www.salaamedia.com\",\"display_url\":\"salaamedia.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":265,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Mon Jan 17 20:20:22 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1617,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495701305796579329\\/dTbRnYDu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495701305796579329\\/dTbRnYDu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483172221942222852\\/1642462187\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2712\":{\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"name\":\"PretoriaLIVE\",\"screen_name\":\"LivePretoria\",\"location\":\"Pretoria, South Africa\",\"description\":\"Follow us for all NEWS updates - politics, international relations, entertainment, governance, crime, community news - from PRETORIA, SA, Africa and the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2636,\"friends_count\":206,\"listed_count\":8,\"created_at\":\"Wed Oct 30 05:13:38 +0000 2019\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11613,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2713\":{\"id\":2370939089,\"id_str\":\"2370939089\",\"name\":\"Netha_F\",\"screen_name\":\"netha_fn\",\"location\":\"Pretoria east\",\"description\":\"An Entrepreneur.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1033,\"friends_count\":1939,\"listed_count\":1,\"created_at\":\"Fri Feb 28 11:47:25 +0000 2014\",\"favourites_count\":4273,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1126,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1204517515214434305\\/ahlQ_Ier_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1204517515214434305\\/ahlQ_Ier_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2370939089\\/1642337449\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2714\":{\"id\":1080562879408099328,\"id_str\":\"1080562879408099328\",\"name\":\"Zandisile\",\"screen_name\":\"ZandySeal\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Unapologetic and Opinionated Action SA member (Instagram: @ZandySeal)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":889,\"friends_count\":249,\"listed_count\":0,\"created_at\":\"Wed Jan 02 20:34:01 +0000 2019\",\"favourites_count\":5164,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7570,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1463562739570327557\\/pX8uOrFQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1463562739570327557\\/pX8uOrFQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1080562879408099328\\/1647013405\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2715\":{\"id\":1370819444566589443,\"id_str\":\"1370819444566589443\",\"name\":\"Betway n Hollywood Analyst\",\"screen_name\":\"MbusoProBet_ZA\",\"location\":\"Sandton, South Africa\",\"description\":\"\\u2696\\ufe0fFull Time Bettor n Analyst\\n\\ud83c\\udfe7Kill The Bookies\\n\\u23f3Soon To Launch Our Own Mzansi Tips App\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":950,\"friends_count\":29,\"listed_count\":1,\"created_at\":\"Sat Mar 13 19:30:19 +0000 2021\",\"favourites_count\":82,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":217,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417261973226639361\\/BKvnqVcB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417261973226639361\\/BKvnqVcB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1370819444566589443\\/1615669619\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2716\":{\"id\":160548495,\"id_str\":\"160548495\",\"name\":\"Hombre de Palabra\",\"screen_name\":\"palabra_hombre\",\"location\":\"Zimbabwe\",\"description\":\"PhD in Life Science, trader, market analyst, money manager. It is not freedom of action that harms markets but a lack of freedom. Invest in your own future!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95,\"friends_count\":122,\"listed_count\":0,\"created_at\":\"Mon Jun 28 13:41:34 +0000 2010\",\"favourites_count\":13315,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4714,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1158237495986966528\\/JzTKO9sG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1158237495986966528\\/JzTKO9sG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/160548495\\/1655762251\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2717\":{\"id\":2844693645,\"id_str\":\"2844693645\",\"name\":\"Khustaz\",\"screen_name\":\"khustazm\",\"location\":\"Midrand,South Africa\",\"description\":\"A true noble South African. Political Strategist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1140,\"friends_count\":1085,\"listed_count\":0,\"created_at\":\"Sun Oct 26 05:06:16 +0000 2014\",\"favourites_count\":31264,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11057,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1438330835602657281\\/lJUX_niD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1438330835602657281\\/lJUX_niD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2844693645\\/1648567379\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2718\":{\"id\":160548495,\"id_str\":\"160548495\",\"name\":\"Hombre de Palabra\",\"screen_name\":\"palabra_hombre\",\"location\":\"Zimbabwe\",\"description\":\"PhD in Life Science, trader, market analyst, money manager. It is not freedom of action that harms markets but a lack of freedom. Invest in your own future!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95,\"friends_count\":122,\"listed_count\":0,\"created_at\":\"Mon Jun 28 13:41:34 +0000 2010\",\"favourites_count\":13315,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4714,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1158237495986966528\\/JzTKO9sG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1158237495986966528\\/JzTKO9sG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/160548495\\/1655762251\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2719\":{\"id\":1498318920696188934,\"id_str\":\"1498318920696188934\",\"name\":\"Volkswagen Sales Arcadia\",\"screen_name\":\"ShiloteW\",\"location\":\"Pretoria, South Africa\",\"description\":\"Sales Excecutive \\nBIDVEST MCCARTHY VOLKSWAGEN ARCADIA\\n064 094 5063 \\/ 012 309 1793\\nviews expressed are mine, not my employer.\",\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NPVYeROPsQ\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/47AEEHNZPORCJ1\",\"display_url\":\"wa.me\\/message\\/47AEEH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":376,\"friends_count\":707,\"listed_count\":0,\"created_at\":\"Mon Feb 28 15:27:52 +0000 2022\",\"favourites_count\":203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551202217956352003\\/XwuaFAlQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498318920696188934\\/1659592958\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2720\":{\"id\":1258126905087266818,\"id_str\":\"1258126905087266818\",\"name\":\"EvolvingAfricanChild\",\"screen_name\":\"EvolvingAfrican\",\"location\":\"Joburg. \",\"description\":\"evolutionary content.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":176,\"friends_count\":546,\"listed_count\":1,\"created_at\":\"Wed May 06 20:10:33 +0000 2020\",\"favourites_count\":5472,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":942,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1273687159749386240\\/3p4JvtzK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1273687159749386240\\/3p4JvtzK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1258126905087266818\\/1593677569\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2721\":{\"id\":53875510,\"id_str\":\"53875510\",\"name\":\"Siboniso \\ud83c\\uddff\\ud83c\\udde6\\ud83c\\uddf7\\ud83c\\uddfa\",\"screen_name\":\"vilakazisss\",\"location\":\"Centurion, South Africa\",\"description\":\"Forex Trader. biker. traveller, introverted extrovert, F1, tennis, football, fitness. Sagittarius.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":673,\"listed_count\":5,\"created_at\":\"Sun Jul 05 09:20:39 +0000 2009\",\"favourites_count\":8085,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3736,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550389167418392576\\/uO418PeL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550389167418392576\\/uO418PeL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/53875510\\/1612166301\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2722\":{\"id\":794512907870621700,\"id_str\":\"794512907870621700\",\"name\":\"Evns\",\"screen_name\":\"EvnsMamabolo\",\"location\":\"Polokwane, South Africa\",\"description\":\"Friendly \\ud83d\\udcaf Open Minded Photographer \\ud83d\\udcf7 IG : @LetEvnsSnapyou IG : @Evns_Mams #Wearyourconvo\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":736,\"friends_count\":1055,\"listed_count\":0,\"created_at\":\"Fri Nov 04 12:13:33 +0000 2016\",\"favourites_count\":8944,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5745,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400759484130156544\\/fw0x3uZZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400759484130156544\\/fw0x3uZZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/794512907870621700\\/1597244693\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2723\":{\"id\":1359407772,\"id_str\":\"1359407772\",\"name\":\"Makwe Fund Managers\",\"screen_name\":\"MakweMasilela\",\"location\":\"Melrose Arch, Johannesburg\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/AIbBdNfFRE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AIbBdNfFRE\",\"expanded_url\":\"http:\\/\\/www.makwefm.co.za\",\"display_url\":\"makwefm.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1214,\"friends_count\":472,\"listed_count\":6,\"created_at\":\"Wed Apr 17 13:26:02 +0000 2013\",\"favourites_count\":523,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1491,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1391780612009254917\\/y2rypJnw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1391780612009254917\\/y2rypJnw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1359407772\\/1618230600\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2724\":{\"id\":2303180380,\"id_str\":\"2303180380\",\"name\":\"Sakhi Khuzwayo \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"SakhyKhuzwayo\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Founder @SZKHoldings | Entrepreneur. Economics. Investor. FinTech. Speaker. Traveller. IG: sakhykhuzwayo\",\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8MLZRHzSpK\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCo0mz1wEmoisVPuifGH4QAA\",\"display_url\":\"youtube.com\\/channel\\/UCo0mz\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":126,\"friends_count\":283,\"listed_count\":11,\"created_at\":\"Sat Jan 25 09:24:45 +0000 2014\",\"favourites_count\":6342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1286091263087976448\\/p4BSyuZo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2303180380\\/1549451320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2725\":{\"id\":16959399,\"id_str\":\"16959399\",\"name\":\"Neville Jacob\",\"screen_name\":\"RaveKnave\",\"location\":\"The New Forest\",\"description\":\"Suave, slim, dull - Not! Author of 'High Times and Crimes in Throbbing Morton' - it's exciting! https:\\/\\/t.co\\/uUaNteynEW\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uUaNteynEW\",\"expanded_url\":\"https:\\/\\/read.amazon.co.uk\\/kp\\/embed?asin=B07M9PPXWW&previe\",\"display_url\":\"read.amazon.co.uk\\/kp\\/embed?asin=\\u2026\",\"indices\":[100,123]}]}},\"protected\":false,\"followers_count\":58,\"friends_count\":104,\"listed_count\":4,\"created_at\":\"Sat Oct 25 00:08:18 +0000 2008\",\"favourites_count\":805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1939,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/774660915878703104\\/zMWv_5JJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/774660915878703104\\/zMWv_5JJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16959399\\/1485166571\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2726\":{\"id\":1514336721734938626,\"id_str\":\"1514336721734938626\",\"name\":\"SNIPER_ENTRY_MASTERS\",\"screen_name\":\"Sniper_E_Master\",\"location\":\"Pretoria\",\"description\":\"We are a group of professional traders providing currency signals for detailed signals join our free telegram group on this link https:\\/\\/t.co\\/sKCdo0Jg4l\",\"url\":\"https:\\/\\/t.co\\/sKCdo0Jg4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sKCdo0Jg4l\",\"expanded_url\":\"https:\\/\\/t.me\\/+Y6lJKKCejNRkOGVk\",\"display_url\":\"t.me\\/+Y6lJKKCejNRkO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sKCdo0Jg4l\",\"expanded_url\":\"https:\\/\\/t.me\\/+Y6lJKKCejNRkOGVk\",\"display_url\":\"t.me\\/+Y6lJKKCejNRkO\\u2026\",\"indices\":[129,152]}]}},\"protected\":false,\"followers_count\":13,\"friends_count\":376,\"listed_count\":0,\"created_at\":\"Wed Apr 13 20:16:59 +0000 2022\",\"favourites_count\":180,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":237,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514597329218654216\\/b35PyGxs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514597329218654216\\/b35PyGxs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514336721734938626\\/1649943124\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2727\":{\"id\":1167355558351032320,\"id_str\":\"1167355558351032320\",\"name\":\"Pro Cyn\\ud83c\\uddff\\ud83c\\uddfc\\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"Pro_Cyn\",\"location\":\"Pretoria, South Africa\",\"description\":\"writer \\u2022 rapper \\u2022 reader \\u2022 never stop growing \\u2022 your favorite rapper's ghost writer \\u2022\\nbonganincubeprocyn@gmail.com for bookings\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":402,\"listed_count\":0,\"created_at\":\"Fri Aug 30 08:37:27 +0000 2019\",\"favourites_count\":2618,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":442,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478469460864475138\\/oTQjGuJO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478469460864475138\\/oTQjGuJO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167355558351032320\\/1641329560\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2728\":{\"id\":2663107992,\"id_str\":\"2663107992\",\"name\":\"Kaboyaone\",\"screen_name\":\"Kaboyaone_M\",\"location\":\"Gaborone, Botswana\",\"description\":\"Sports Enthusiast and so much more.\\n\\ud83c\\udde7\\ud83c\\uddfc\\ud83c\\uddff\\ud83c\\udde6\",\"url\":\"https:\\/\\/t.co\\/xEeexovX4s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xEeexovX4s\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/Kaboyaone.m\\/\",\"display_url\":\"instagram.com\\/Kaboyaone.m\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":333,\"friends_count\":264,\"listed_count\":1,\"created_at\":\"Sun Jul 20 14:20:57 +0000 2014\",\"favourites_count\":7830,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2762,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553139309481451520\\/Amna9XHz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553139309481451520\\/Amna9XHz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2663107992\\/1659570056\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2729\":{\"id\":1431096884710477825,\"id_str\":\"1431096884710477825\",\"name\":\"Dutchess Zette\",\"screen_name\":\"dutchess_zette\",\"location\":\"Johannesburg, South Africa\",\"description\":\"@dutchess_zette on IG | Film and Tv Production graduate\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Fri Aug 27 03:31:32 +0000 2021\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549723508195921920\\/rW-l6g8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549723508195921920\\/rW-l6g8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1431096884710477825\\/1658318000\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2730\":{\"id\":1553749755938873345,\"id_str\":\"1553749755938873345\",\"name\":\"PraiseC\",\"screen_name\":\"WithPraisee\",\"location\":\"Pretoria, South Africa\",\"description\":\"Novel Writer\\nEntertainment Blogger \\nFunny Content \\nContent Creator \\nMental health activist\\nYouTuber\\nhttps:\\/\\/t.co\\/IdXy8X3d2G\",\"url\":\"https:\\/\\/t.co\\/uPweYUo94Q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uPweYUo94Q\",\"expanded_url\":\"http:\\/\\/PraiseC.blogspot.com\",\"display_url\":\"PraiseC.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IdXy8X3d2G\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC6kB1SnSgah-1CPJwxRLOhA\",\"display_url\":\"youtube.com\\/channel\\/UC6kB1\\u2026\",\"indices\":[100,123]}]}},\"protected\":false,\"followers_count\":163,\"friends_count\":222,\"listed_count\":0,\"created_at\":\"Sun Jul 31 14:30:07 +0000 2022\",\"favourites_count\":59,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555544183015874564\\/YXN-nUJR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555544183015874564\\/YXN-nUJR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553749755938873345\\/1659705675\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2731\":{\"id\":851568072,\"id_str\":\"851568072\",\"name\":\"Pire_vieux\",\"screen_name\":\"Masaku_01\",\"location\":\"Pretoria, South Africa\",\"description\":\"Human\\n\\u2666\\ufe0fRoyal blood \\ud83d\\udc51\\ud83c\\udde8\\ud83c\\udde9\\n\\ud83d\\udccdPretoria...\\n\\ud83d\\udcc6 21 December \\n\\ud83d\\udcda Metallurgical Engineer \\ud83c\\udf93\\nPhillipians 4:13 I can do all things through Christ who strengthens me.\",\"url\":\"https:\\/\\/t.co\\/dNFr8FaSBq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dNFr8FaSBq\",\"expanded_url\":\"http:\\/\\/Facebook.com\\/Manuprettyboy\",\"display_url\":\"Facebook.com\\/Manuprettyboy\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":625,\"friends_count\":632,\"listed_count\":1,\"created_at\":\"Fri Sep 28 19:03:27 +0000 2012\",\"favourites_count\":4805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3949,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465921412095430658\\/M2gkm-uB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465921412095430658\\/M2gkm-uB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/851568072\\/1658123281\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2732\":{\"id\":1090510546103877632,\"id_str\":\"1090510546103877632\",\"name\":\"Business talk with Bokang\",\"screen_name\":\"bokangnat\",\"location\":\"Johannesburg, South Africa\",\"description\":\"CEO @omni_praise and @hapitainment, Entrepreneur, musician,Hapivestment\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":1899,\"listed_count\":0,\"created_at\":\"Wed Jan 30 07:22:29 +0000 2019\",\"favourites_count\":224,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2419,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543137132054708224\\/0ik21Qmt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543137132054708224\\/0ik21Qmt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1090510546103877632\\/1629298513\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2733\":{\"id\":779276802,\"id_str\":\"779276802\",\"name\":\"FL Studio \\ud83e\\udd6d\",\"screen_name\":\"Smashed_Beats\",\"location\":\"Soweto, South Africa\",\"description\":\"Producer in the making.. #DeepHouse #Soulful #Afro #Trap #Hip-Hop - #OldSchool #Funk #R&B\\n\\nFor bookings contact: smashedsoul49@gmail.com +2780028672 #DanceBaby\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30298,\"friends_count\":19619,\"listed_count\":39,\"created_at\":\"Sat Aug 25 01:13:02 +0000 2012\",\"favourites_count\":96718,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":213812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1445765030339694594\\/ENs2e9Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1445765030339694594\\/ENs2e9Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/779276802\\/1602393117\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2734\":{\"id\":875418409479090176,\"id_str\":\"875418409479090176\",\"name\":\"Nevanji\",\"screen_name\":\"NNehoreka\",\"location\":\"Zimbabwe\",\"description\":\"Microblogger, opinionated cadre. I tweet my views, likes are not always endorsements but most of the time are! I support national growth and development\",\"url\":\"https:\\/\\/t.co\\/hFLWHAXAQi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hFLWHAXAQi\",\"expanded_url\":\"http:\\/\\/munya263.wordpress.com\",\"display_url\":\"munya263.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5854,\"friends_count\":3896,\"listed_count\":8,\"created_at\":\"Thu Jun 15 18:23:08 +0000 2017\",\"favourites_count\":14945,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":39087,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537745467265646595\\/h7mKwQak_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537745467265646595\\/h7mKwQak_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/875418409479090176\\/1655462106\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2735\":{\"id\":298593547,\"id_str\":\"298593547\",\"name\":\"Serotobale Phala\",\"screen_name\":\"serotobale\",\"location\":\"Mooikloof\",\"description\":\"Visionary\\/ Serial Entrepreneur \\/ Philantropist\",\"url\":\"https:\\/\\/t.co\\/pse2qcupfz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pse2qcupfz\",\"expanded_url\":\"https:\\/\\/www.babinanoko.co.za\",\"display_url\":\"babinanoko.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":208,\"friends_count\":759,\"listed_count\":0,\"created_at\":\"Sat May 14 15:53:00 +0000 2011\",\"favourites_count\":766,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1468338179942060039\\/CdGS-Ra9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1468338179942060039\\/CdGS-Ra9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/298593547\\/1659302136\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2736\":{\"id\":423692319,\"id_str\":\"423692319\",\"name\":\"I am Tom\",\"screen_name\":\"TomThembi\",\"location\":\"Jo'burg, South Africa\",\"description\":\"Black\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":185,\"friends_count\":443,\"listed_count\":0,\"created_at\":\"Mon Nov 28 20:33:45 +0000 2011\",\"favourites_count\":1227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3489,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1414671459620999169\\/Lyh-Y89d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1414671459620999169\\/Lyh-Y89d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/423692319\\/1526318264\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2737\":{\"id\":318340529,\"id_str\":\"318340529\",\"name\":\"Mr Makgoba\\ud83d\\uddef\\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"breezymak\",\"location\":\"Sandton \",\"description\":\"https:\\/\\/t.co\\/1817UXNNDq\\nwe do security systems. \\ndigital systems that are designed to ease your mind.\",\"url\":\"https:\\/\\/t.co\\/AIOqixND4r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AIOqixND4r\",\"expanded_url\":\"http:\\/\\/www.betgivtech.co.za\",\"display_url\":\"betgivtech.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1817UXNNDq\",\"expanded_url\":\"http:\\/\\/betgivtech.co.za\",\"display_url\":\"betgivtech.co.za\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":3124,\"friends_count\":4985,\"listed_count\":3,\"created_at\":\"Thu Jun 16 10:10:53 +0000 2011\",\"favourites_count\":2091,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10162,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525531164383055874\\/cXxOG5OL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525531164383055874\\/cXxOG5OL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/318340529\\/1509278231\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2738\":{\"id\":1514336721734938626,\"id_str\":\"1514336721734938626\",\"name\":\"SNIPER_ENTRY_MASTERS\",\"screen_name\":\"Sniper_E_Master\",\"location\":\"Pretoria\",\"description\":\"We are a group of professional traders providing currency signals for detailed signals join our free telegram group on this link https:\\/\\/t.co\\/sKCdo0Jg4l\",\"url\":\"https:\\/\\/t.co\\/sKCdo0Jg4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sKCdo0Jg4l\",\"expanded_url\":\"https:\\/\\/t.me\\/+Y6lJKKCejNRkOGVk\",\"display_url\":\"t.me\\/+Y6lJKKCejNRkO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sKCdo0Jg4l\",\"expanded_url\":\"https:\\/\\/t.me\\/+Y6lJKKCejNRkOGVk\",\"display_url\":\"t.me\\/+Y6lJKKCejNRkO\\u2026\",\"indices\":[129,152]}]}},\"protected\":false,\"followers_count\":13,\"friends_count\":376,\"listed_count\":0,\"created_at\":\"Wed Apr 13 20:16:59 +0000 2022\",\"favourites_count\":180,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":237,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514597329218654216\\/b35PyGxs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514597329218654216\\/b35PyGxs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514336721734938626\\/1649943124\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2739\":{\"id\":854451684776583172,\"id_str\":\"854451684776583172\",\"name\":\"Iscathulo SA\",\"screen_name\":\"Iscathulo_SA\",\"location\":\"Johannesburg, South Africa\",\"description\":\"||South African based Black owned shoe \\ud83d\\udc5e making businesses|| A black young man following his passion\\ud83d\\udcab||\",\"url\":\"https:\\/\\/t.co\\/kGXL31TIBg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kGXL31TIBg\",\"expanded_url\":\"https:\\/\\/iscathulo.com\",\"display_url\":\"iscathulo.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4749,\"friends_count\":1244,\"listed_count\":3,\"created_at\":\"Tue Apr 18 21:48:51 +0000 2017\",\"favourites_count\":1443,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1426,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1361854169381036036\\/EwrjsjBI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1361854169381036036\\/EwrjsjBI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/854451684776583172\\/1629533883\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2740\":{\"id\":1225039010319474688,\"id_str\":\"1225039010319474688\",\"name\":\"Dr. SA Patriot\",\"screen_name\":\"DrPatriotSA\",\"location\":\"Centurion, South Africa\",\"description\":\"All Zimbabweans must go back home. #VotsekMakwerekwere #VoetsekRamaPhosa \\ud83d\\udd95\\ud83d\\udd95\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1458,\"friends_count\":2010,\"listed_count\":0,\"created_at\":\"Wed Feb 05 12:51:04 +0000 2020\",\"favourites_count\":56403,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10712,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1419668228377296898\\/cbrz-Cvr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1419668228377296898\\/cbrz-Cvr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1225039010319474688\\/1619635295\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2741\":{\"id\":847869160252223490,\"id_str\":\"847869160252223490\",\"name\":\"Shaba The Great\",\"screen_name\":\"shabathegreat\",\"location\":\"Mafikeng, South Africa\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2884,\"friends_count\":2691,\"listed_count\":2,\"created_at\":\"Fri Mar 31 17:52:15 +0000 2017\",\"favourites_count\":4360,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1024010957050339329\\/MLgGbUIL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1024010957050339329\\/MLgGbUIL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/847869160252223490\\/1495641128\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2742\":{\"id\":824194397667467265,\"id_str\":\"824194397667467265\",\"name\":\"Mr Iscathulo\",\"screen_name\":\"RudzaniWiseman\",\"location\":\"Johannesburg, South Africa\",\"description\":\"The founder of Iscathulo_SA.Quality suede shoes,bags,belts & many more.iscathulo was established in 2018 with the aim of inspiring our fellow South Africans.\",\"url\":\"https:\\/\\/t.co\\/SP95YTtWzm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SP95YTtWzm\",\"expanded_url\":\"http:\\/\\/www.iscathulosa.co.za\",\"display_url\":\"iscathulosa.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":237,\"listed_count\":0,\"created_at\":\"Wed Jan 25 09:57:12 +0000 2017\",\"favourites_count\":330,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1434133155074744324\\/O9ldp3dz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1434133155074744324\\/O9ldp3dz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/824194397667467265\\/1586011473\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2743\":{\"id\":2410094957,\"id_str\":\"2410094957\",\"name\":\"Bongani Hadebe\",\"screen_name\":\"__Bongz\",\"location\":\"Soweto\",\"description\":\"I'm mind-ful \\ud83e\\udd14\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/fZ0q20Tat9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fZ0q20Tat9\",\"expanded_url\":\"http:\\/\\/binfolder.co.za\",\"display_url\":\"binfolder.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":624,\"listed_count\":16,\"created_at\":\"Fri Mar 14 12:42:47 +0000 2014\",\"favourites_count\":1765,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3782,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545460197166047232\\/wkOEQmQU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545460197166047232\\/wkOEQmQU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2410094957\\/1587122712\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2744\":{\"id\":107813400,\"id_str\":\"107813400\",\"name\":\"Mcdonald Sibuyi\\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"mcdsibuyi\",\"location\":\"RSA\",\"description\":\"God fearing, Loving Husband and a Father. A political activist. A Rotarian. Former CEO of Letaba Hospital #serviceaboveself\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1691,\"friends_count\":2086,\"listed_count\":5,\"created_at\":\"Sat Jan 23 20:52:09 +0000 2010\",\"favourites_count\":13287,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5595,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482963791616913409\\/JYaPmLEA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482963791616913409\\/JYaPmLEA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/107813400\\/1610621900\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2745\":{\"id\":250118501,\"id_str\":\"250118501\",\"name\":\"Rhangani\",\"screen_name\":\"OnlyRhangani\",\"location\":\"Pretoria, South Africa\",\"description\":\"AC Milan\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1012,\"friends_count\":439,\"listed_count\":8,\"created_at\":\"Thu Feb 10 13:19:58 +0000 2011\",\"favourites_count\":2502,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":19713,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1446758187479314438\\/w0zM6fBg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1446758187479314438\\/w0zM6fBg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250118501\\/1653377892\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2746\":{\"id\":1089093842748559361,\"id_str\":\"1089093842748559361\",\"name\":\"Majozi\",\"screen_name\":\"JoeMajozie\",\"location\":\"Boksburg, South Africa\",\"description\":\"Belief is acceptance of ignorance\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9017,\"friends_count\":8803,\"listed_count\":0,\"created_at\":\"Sat Jan 26 09:33:01 +0000 2019\",\"favourites_count\":50967,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":16363,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515412606344912900\\/Ejl7bBsu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515412606344912900\\/Ejl7bBsu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1089093842748559361\\/1590094847\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2747\":{\"id\":936649476843999233,\"id_str\":\"936649476843999233\",\"name\":\"Sanah2.0\",\"screen_name\":\"sanah2_0\",\"location\":\"Makhado, South Africa\",\"description\":\"South Africa ki masipa \\ud83c\\uddff\\ud83c\\udde6\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":115,\"listed_count\":1,\"created_at\":\"Fri Dec 01 17:33:32 +0000 2017\",\"favourites_count\":1430,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1029735060033945601\\/bWio3vMW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1029735060033945601\\/bWio3vMW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/936649476843999233\\/1534342951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2748\":{\"id\":151028922,\"id_str\":\"151028922\",\"name\":\"Ntembeko Sosibo\",\"screen_name\":\"ntembekoS\",\"location\":\"JOHANNESBURG\",\"description\":\"The First Trillion is the hardest \\nFees Must Fall Generation \\nBlockchain Generation\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":964,\"friends_count\":2918,\"listed_count\":39,\"created_at\":\"Wed Jun 02 12:41:22 +0000 2010\",\"favourites_count\":28494,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":50607,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/863829547317424128\\/pjuCaKZy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/863829547317424128\\/pjuCaKZy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/151028922\\/1512687494\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2749\":{\"id\":121422853,\"id_str\":\"121422853\",\"name\":\"Moshabi Senwamadi\",\"screen_name\":\"Senwamadi\",\"location\":\"Johannesburg, South Africa\",\"description\":\"South African. Soul\\/R&B Collector & Selector. Current Affairs-Politics\\/Economics\\/Business. Die-Hard Orlando-Pirates Supporter. Music. Moshabi. @CafeVamps\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1088,\"friends_count\":1484,\"listed_count\":21,\"created_at\":\"Tue Mar 09 13:05:41 +0000 2010\",\"favourites_count\":67888,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":38689,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"709397\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1140915834946236416\\/wCxKAoyM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1140915834946236416\\/wCxKAoyM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/121422853\\/1484298402\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"86A4A6\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2750\":{\"id\":1225039010319474688,\"id_str\":\"1225039010319474688\",\"name\":\"Dr. SA Patriot\",\"screen_name\":\"DrPatriotSA\",\"location\":\"Centurion, South Africa\",\"description\":\"All Zimbabweans must go back home. #VotsekMakwerekwere #VoetsekRamaPhosa \\ud83d\\udd95\\ud83d\\udd95\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1458,\"friends_count\":2010,\"listed_count\":0,\"created_at\":\"Wed Feb 05 12:51:04 +0000 2020\",\"favourites_count\":56403,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10712,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1419668228377296898\\/cbrz-Cvr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1419668228377296898\\/cbrz-Cvr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1225039010319474688\\/1619635295\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2751\":{\"id\":1520003958831517696,\"id_str\":\"1520003958831517696\",\"name\":\"Thabang Dikae\\ud83c\\udde7\\ud83c\\uddfc\",\"screen_name\":\"thabangdikaee\",\"location\":\"Botswana\",\"description\":\"Only if Africa could trade within Herself...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":138,\"listed_count\":0,\"created_at\":\"Fri Apr 29 11:36:28 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520004715240636416\\/Q_0mUOto_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520004715240636416\\/Q_0mUOto_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520003958831517696\\/1651233714\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2752\":{\"id\":1302293185323036672,\"id_str\":\"1302293185323036672\",\"name\":\"VADERRR\",\"screen_name\":\"vaderrr_ggm\",\"location\":\"Midrand, South Africa\",\"description\":\"\\ud83d\\udcbf\\ud83d\\udcbf\\ud83d\\udcbf I\\u2019m the artist you never knew you needed to hear until you heard him\\ud83c\\udfb1 \\ud83d\\udea8\\u201dRRR\\u201d EP OUT NOW !!! \\ud83d\\udea8 \\u201cI\\u2019M NOT LUKE\\u2019S FATHER\\u201d\",\"url\":\"https:\\/\\/t.co\\/1PNxFCQpET\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1PNxFCQpET\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCr9fRFOyimRdA3hY_Kv75Ew\",\"display_url\":\"youtube.com\\/channel\\/UCr9fR\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":378,\"listed_count\":0,\"created_at\":\"Sat Sep 05 17:11:26 +0000 2020\",\"favourites_count\":1363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":676,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552349077945335808\\/45PCHx_r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552349077945335808\\/45PCHx_r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302293185323036672\\/1656840458\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2753\":{\"id\":146851441,\"id_str\":\"146851441\",\"name\":\"Dr kabelo Thamae\",\"screen_name\":\"mikezibo\",\"location\":\"gaborone botswana\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":149,\"listed_count\":0,\"created_at\":\"Sat May 22 14:18:01 +0000 2010\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400524940613459975\\/w3F6vH02_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400524940613459975\\/w3F6vH02_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2754\":{\"id\":979628067017682946,\"id_str\":\"979628067017682946\",\"name\":\"Spirited1\",\"screen_name\":\"helen_spirit1\",\"location\":\"North West\",\"description\":\"Politics & humour. Rabid, bitter socialists not welcome. Calling out left wing hypocrisy daily.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16461,\"friends_count\":4901,\"listed_count\":27,\"created_at\":\"Fri Mar 30 07:55:06 +0000 2018\",\"favourites_count\":194692,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":76179,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1392745598646951938\\/UREociYc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1392745598646951938\\/UREociYc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/979628067017682946\\/1645187546\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2755\":{\"id\":322004148,\"id_str\":\"322004148\",\"name\":\"Alicia Siyasiya\",\"screen_name\":\"liciakruger\",\"location\":\"\",\"description\":\"Conservative \\ud83d\\udcaf. IR. Politics. Current Affairs. Catholic. Pro-life!. Pro \\ud83c\\uddee\\ud83c\\uddf1 THEOTOKOS \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":693,\"friends_count\":883,\"listed_count\":9,\"created_at\":\"Wed Jun 22 13:53:22 +0000 2011\",\"favourites_count\":12531,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10549,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527148860681879554\\/8Hc1L-O9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527148860681879554\\/8Hc1L-O9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/322004148\\/1636215772\",\"profile_link_color\":\"91D2FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2756\":{\"id\":454825216,\"id_str\":\"454825216\",\"name\":\"\\ud83d\\udcb2bu 4\\ufe0f\\u20e34\\ufe0f\\u20e3 #IStandWithLewisHamilton\\u270c\\ud83c\\udffd\",\"screen_name\":\"SibusisoSithebe\",\"location\":\"Johannesburg\",\"description\":\"Your Energy Isn\\u2019t For Everyone | #DenzelWashington | #BlackLivesMatter | #LewisHamilton | #LionelMessi | #LeBronJames | #MarcMarques | #RafaelNadal | OG | \\u2764\\ufe0f&\\ud83d\\udd6f\",\"url\":\"https:\\/\\/t.co\\/t6yT31TfQY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/t6yT31TfQY\",\"expanded_url\":\"https:\\/\\/www.twitter.com\\/sibusisosithebe\",\"display_url\":\"twitter.com\\/sibusisosithebe\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1199,\"friends_count\":5003,\"listed_count\":60,\"created_at\":\"Wed Jan 04 12:30:50 +0000 2012\",\"favourites_count\":800,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33559,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1071850981384687618\\/ymbbD8ww_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1071850981384687618\\/ymbbD8ww_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/454825216\\/1542433120\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2757\":{\"id\":1424332909045944328,\"id_str\":\"1424332909045944328\",\"name\":\"Yash Jain\",\"screen_name\":\"proteasyash\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Potterhead.\\n\\ud83c\\uddff\\ud83c\\udde6\\ud83c\\udfcf fan.\\nRahul Dravid \\ud83d\\udc4d\\nmovie lover \\ud83c\\udf7f\\nNovak Djokovic!\\nCSK!\",\"url\":\"https:\\/\\/t.co\\/DZhe5IJmBk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DZhe5IJmBk\",\"expanded_url\":\"http:\\/\\/fuckicc.com\",\"display_url\":\"fuckicc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":967,\"friends_count\":1518,\"listed_count\":1,\"created_at\":\"Sun Aug 08 11:33:43 +0000 2021\",\"favourites_count\":43061,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544386832095318016\\/BIphkm2o_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544386832095318016\\/BIphkm2o_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1424332909045944328\\/1657045606\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2758\":{\"id\":1510941851989299203,\"id_str\":\"1510941851989299203\",\"name\":\"F\\u00eabr\\u00fcary last k\\u00ef\\u00f1g\",\"screen_name\":\"Lastki2King\",\"location\":\"Pretoria, South Africa\",\"description\":\"my life is like forbidden fruit, My bae know better than I do\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Mon Apr 04 11:27:04 +0000 2022\",\"favourites_count\":1049,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531352675777974278\\/hF-OCuVy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531352675777974278\\/hF-OCuVy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510941851989299203\\/1653937594\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2759\":{\"id\":338279088,\"id_str\":\"338279088\",\"name\":\"Tamie and 874 others\",\"screen_name\":\"TamsanqaMkoko\",\"location\":\"Pretoria, South Africa\",\"description\":\"establishing influence in a struggle between two established powers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2746,\"friends_count\":3643,\"listed_count\":11,\"created_at\":\"Tue Jul 19 10:22:22 +0000 2011\",\"favourites_count\":20770,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":23743,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535620975085203456\\/hByyG0Ma_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535620975085203456\\/hByyG0Ma_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/338279088\\/1650489596\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2760\":{\"id\":198831061,\"id_str\":\"198831061\",\"name\":\"Mfecane\",\"screen_name\":\"TendayiZinyama\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"Managing Director @Tradezone Communications. Communicating to promote access to information leaving no one and no place behind.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11174,\"friends_count\":6554,\"listed_count\":4,\"created_at\":\"Tue Oct 05 11:02:27 +0000 2010\",\"favourites_count\":30116,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":74314,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554167317759770626\\/MrKttzJm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554167317759770626\\/MrKttzJm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/198831061\\/1649614134\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2761\":{\"id\":1075702173735026688,\"id_str\":\"1075702173735026688\",\"name\":\"UMMAMEDIA\",\"screen_name\":\"mediaumma\",\"location\":\"Pretoria, South Africa\",\"description\":\"UMMA Media is a division of United Muslim Movement of Africa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Thu Dec 20 10:39:18 +0000 2018\",\"favourites_count\":166,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1076756756653662209\\/g3wKtc05_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1076756756653662209\\/g3wKtc05_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1075702173735026688\\/1545553789\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2762\":{\"id\":459064282,\"id_str\":\"459064282\",\"name\":\"Gael Mutombo\\ud83c\\udde8\\ud83c\\udde9\\ud83c\\uddee\\ud83c\\uddf1\",\"screen_name\":\"GaelMutombo\",\"location\":\"Johannesburg\",\"description\":\"I'm interested in the word of God\\ud83d\\udcff, music\\ud83c\\udfbc, reading\\ud83d\\udcd6. Web designer, SysAdmin\\ud83d\\udd75 \\ud83d\\udcbb (Opinions that are tweeted are my own)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99,\"friends_count\":100,\"listed_count\":1,\"created_at\":\"Mon Jan 09 07:35:57 +0000 2012\",\"favourites_count\":1199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1550,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1056824971736047616\\/I6cmxDtO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1056824971736047616\\/I6cmxDtO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/459064282\\/1544688489\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2763\":{\"id\":860258172061315073,\"id_str\":\"860258172061315073\",\"name\":\"Future Philanthropist \\ud80c\\udcf5\",\"screen_name\":\"joas_moloto\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Never thought of being entrepreneur but future Philanthropist. \\n\\n#ROMANS 8:28-39\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":35,\"listed_count\":0,\"created_at\":\"Thu May 04 22:21:45 +0000 2017\",\"favourites_count\":344,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517140076429414401\\/vi9kahon_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517140076429414401\\/vi9kahon_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/860258172061315073\\/1650998793\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2764\":{\"id\":121422853,\"id_str\":\"121422853\",\"name\":\"Moshabi Senwamadi\",\"screen_name\":\"Senwamadi\",\"location\":\"Johannesburg, South Africa\",\"description\":\"South African. Soul\\/R&B Collector & Selector. Current Affairs-Politics\\/Economics\\/Business. Die-Hard Orlando-Pirates Supporter. Music. Moshabi. @CafeVamps\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1088,\"friends_count\":1484,\"listed_count\":21,\"created_at\":\"Tue Mar 09 13:05:41 +0000 2010\",\"favourites_count\":67888,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":38689,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"709397\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1140915834946236416\\/wCxKAoyM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1140915834946236416\\/wCxKAoyM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/121422853\\/1484298402\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"86A4A6\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2765\":{\"id\":964623727,\"id_str\":\"964623727\",\"name\":\"the10thman\",\"screen_name\":\"shabs_i_r\",\"location\":\"Johannesburg, South Africa\",\"description\":\"A Dominant Theory Will Emerge And Become Conventional Wisdom\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3144,\"friends_count\":3325,\"listed_count\":0,\"created_at\":\"Thu Nov 22 17:10:23 +0000 2012\",\"favourites_count\":8340,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":191533,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/875822434791952384\\/6llfO0up_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/875822434791952384\\/6llfO0up_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/964623727\\/1573323268\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2766\":{\"id\":243829132,\"id_str\":\"243829132\",\"name\":\"Didi\",\"screen_name\":\"LedimoSeloyi\",\"location\":\"Sandton, South Africa\",\"description\":\"Owner - @didiskitchenza\\nContact: 061 839 3440 or didiskitchenvibes@gmail.com for orders\\n\\nEverything else in my life involves Soca music\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3450,\"friends_count\":678,\"listed_count\":14,\"created_at\":\"Thu Jan 27 22:22:40 +0000 2011\",\"favourites_count\":2576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":118631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547618234903318529\\/yodiIl8N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547618234903318529\\/yodiIl8N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243829132\\/1652803371\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2767\":{\"id\":242756378,\"id_str\":\"242756378\",\"name\":\"Sipho Masondo\",\"screen_name\":\"vercingetorics\",\"location\":\"Soweto, Johannesburg\",\"description\":\"News24 journo\\/news junkie \\/ investigator \\/ All things Dark web\\/ Digital Forensics\\/ encryption\\/ Open-Source Intelligence (OSINT)& Off-grid Comms!\\n#WeAre24\",\"url\":\"https:\\/\\/t.co\\/nJPvifgPPw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJPvifgPPw\",\"expanded_url\":\"http:\\/\\/www.media24.com\",\"display_url\":\"media24.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9528,\"friends_count\":1709,\"listed_count\":66,\"created_at\":\"Tue Jan 25 14:39:05 +0000 2011\",\"favourites_count\":30998,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25622,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFF04D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522591285130969088\\/q4TeiTg3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522591285130969088\\/q4TeiTg3_normal.jpg\",\"profile_link_color\":\"0099CC\",\"profile_sidebar_border_color\":\"FFF8AD\",\"profile_sidebar_fill_color\":\"F6FFD1\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2768\":{\"id\":243829132,\"id_str\":\"243829132\",\"name\":\"Didi\",\"screen_name\":\"LedimoSeloyi\",\"location\":\"Sandton, South Africa\",\"description\":\"Owner - @didiskitchenza\\nContact: 061 839 3440 or didiskitchenvibes@gmail.com for orders\\n\\nEverything else in my life involves Soca music\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3450,\"friends_count\":678,\"listed_count\":14,\"created_at\":\"Thu Jan 27 22:22:40 +0000 2011\",\"favourites_count\":2576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":118631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547618234903318529\\/yodiIl8N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547618234903318529\\/yodiIl8N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243829132\\/1652803371\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2769\":{\"id\":409761720,\"id_str\":\"409761720\",\"name\":\"Keke Mashie\",\"screen_name\":\"CharlieMashie\",\"location\":\"Pretoria,South Africa\",\"description\":\"Son,Father,Uncle and a Grandson of Makgoakgoa Clan of Kingdom of Lesotho. Ntwana Botshabelo.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":438,\"friends_count\":556,\"listed_count\":0,\"created_at\":\"Fri Nov 11 05:42:18 +0000 2011\",\"favourites_count\":2945,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/993995310224625665\\/u0A6yq9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/993995310224625665\\/u0A6yq9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/409761720\\/1446576178\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2770\":{\"id\":1015874978498187265,\"id_str\":\"1015874978498187265\",\"name\":\"Maxwell Phakathi T\",\"screen_name\":\"MaxwellPhakath3\",\"location\":\"Pretoria, South Africa\",\"description\":\"Just a cool guy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16,\"friends_count\":157,\"listed_count\":0,\"created_at\":\"Sun Jul 08 08:27:23 +0000 2018\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547706438214041603\\/OwUWy5CA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547706438214041603\\/OwUWy5CA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2771\":{\"id\":1231636102550900737,\"id_str\":\"1231636102550900737\",\"name\":\"mnce bans...*\",\"screen_name\":\"mncebans\",\"location\":\"limpopo, South Africa\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4833,\"friends_count\":4918,\"listed_count\":0,\"created_at\":\"Sun Feb 23 17:45:20 +0000 2020\",\"favourites_count\":18283,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2725,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1364541628141207554\\/G3WUNoJT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1364541628141207554\\/G3WUNoJT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1231636102550900737\\/1583564066\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2772\":{\"id\":286314292,\"id_str\":\"286314292\",\"name\":\"Mbali\",\"screen_name\":\"mbals_mbali\",\"location\":\"Johannesburg, South Africa\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1692,\"friends_count\":3275,\"listed_count\":0,\"created_at\":\"Fri Apr 22 19:12:56 +0000 2011\",\"favourites_count\":11172,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6389,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150837751383756800\\/guvYh7O3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150837751383756800\\/guvYh7O3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/286314292\\/1584816073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2773\":{\"id\":1452197727429971969,\"id_str\":\"1452197727429971969\",\"name\":\"SA SOCIAL MEDIA NEWS\",\"screen_name\":\"SASOCIALMEDIANE\",\"location\":\"Pretoria, South Africa\",\"description\":\"Bringing you the best celeb gossip\\n\\nYouTube link \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\",\"url\":\"https:\\/\\/t.co\\/Zr8l6ZTXy7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Zr8l6ZTXy7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCvx227WX6yZNiVyt0JAQgXA\",\"display_url\":\"youtube.com\\/channel\\/UCvx22\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":231,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Sun Oct 24 08:58:27 +0000 2021\",\"favourites_count\":193,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1452197889086836738\\/zUbrIBXQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1452197889086836738\\/zUbrIBXQ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2774\":{\"id\":37504976,\"id_str\":\"37504976\",\"name\":\"EN\",\"screen_name\":\"nwisibor\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I am the good news from Nigeria~An early career academic who studies Political psychology, elections and some things in btw.\\n RT not endorsement. Views my own.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":628,\"friends_count\":627,\"listed_count\":2,\"created_at\":\"Sun May 03 21:20:41 +0000 2009\",\"favourites_count\":4354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8994,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1318074773348454401\\/jzfqhwyJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1318074773348454401\\/jzfqhwyJ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2775\":{\"id\":476998569,\"id_str\":\"476998569\",\"name\":\"Starona\",\"screen_name\":\"RTisane\",\"location\":\"Johannesburg\",\"description\":\"The Oppressor wants us to forget about our horrifying history while he keeps feeding off our Land, No Retreat No Surrender \\u270a\\ud83c\\udffe#LandExpropriation\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":956,\"friends_count\":1616,\"listed_count\":9,\"created_at\":\"Sat Jan 28 18:35:30 +0000 2012\",\"favourites_count\":26536,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":43137,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149609778806571011\\/sHOgCloE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149609778806571011\\/sHOgCloE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/476998569\\/1562923306\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2776\":{\"id\":904078831761453057,\"id_str\":\"904078831761453057\",\"name\":\"Stage 6\",\"screen_name\":\"KiptonNative\",\"location\":\"Pretoria, South Africa\",\"description\":\"@morebodilaw Legal Services Consultant\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":652,\"friends_count\":5000,\"listed_count\":2,\"created_at\":\"Sat Sep 02 20:29:25 +0000 2017\",\"favourites_count\":605,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2880,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1366384984173522945\\/N2-F-FCh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1366384984173522945\\/N2-F-FCh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/904078831761453057\\/1590494198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2777\":{\"id\":472720903,\"id_str\":\"472720903\",\"name\":\"Black&Proud\",\"screen_name\":\"Realstylz\",\"location\":\"Zimbabwe\",\"description\":\"Stress-resistant variety\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1050,\"friends_count\":444,\"listed_count\":15,\"created_at\":\"Tue Jan 24 07:17:43 +0000 2012\",\"favourites_count\":60682,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":58822,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1407602817737633793\\/hPtMuh38_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1407602817737633793\\/hPtMuh38_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/472720903\\/1569506824\",\"profile_link_color\":\"6EB800\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2778\":{\"id\":808326409710145537,\"id_str\":\"808326409710145537\",\"name\":\"Afro||'Greek\\u25cf\\u00ecsh'\",\"screen_name\":\"PapiMofokeng3\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Documentary Filmmaker & Journalist \\n#SupportIndieFilm #LofiFilms #videojournalist #Photojournalist\",\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"expanded_url\":\"http:\\/\\/www.papithefixer.wordpress.com\",\"display_url\":\"papithefixer.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":1336,\"listed_count\":2,\"created_at\":\"Mon Dec 12 15:03:28 +0000 2016\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/808326409710145537\\/1657372927\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2779\":{\"id\":808326409710145537,\"id_str\":\"808326409710145537\",\"name\":\"Afro||'Greek\\u25cf\\u00ecsh'\",\"screen_name\":\"PapiMofokeng3\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Documentary Filmmaker & Journalist \\n#SupportIndieFilm #LofiFilms #videojournalist #Photojournalist\",\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"expanded_url\":\"http:\\/\\/www.papithefixer.wordpress.com\",\"display_url\":\"papithefixer.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":1336,\"listed_count\":2,\"created_at\":\"Mon Dec 12 15:03:28 +0000 2016\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/808326409710145537\\/1657372927\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2780\":{\"id\":1425335611959939074,\"id_str\":\"1425335611959939074\",\"name\":\"Katsomedia24\",\"screen_name\":\"katsomedia24\",\"location\":\"Johannesburg, South Africa\",\"description\":\"24hour Live News, Sports, Entertainment. We Follow Back Instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2419,\"friends_count\":1914,\"listed_count\":1,\"created_at\":\"Wed Aug 11 05:58:00 +0000 2021\",\"favourites_count\":21203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530859136023511040\\/9P6Qx_fY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530859136023511040\\/9P6Qx_fY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1425335611959939074\\/1628701137\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2781\":{\"id\":151028922,\"id_str\":\"151028922\",\"name\":\"Ntembeko Sosibo\",\"screen_name\":\"ntembekoS\",\"location\":\"JOHANNESBURG\",\"description\":\"The First Trillion is the hardest \\nFees Must Fall Generation \\nBlockchain Generation\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":964,\"friends_count\":2918,\"listed_count\":39,\"created_at\":\"Wed Jun 02 12:41:22 +0000 2010\",\"favourites_count\":28494,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":50607,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/863829547317424128\\/pjuCaKZy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/863829547317424128\\/pjuCaKZy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/151028922\\/1512687494\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2782\":{\"id\":37504976,\"id_str\":\"37504976\",\"name\":\"EN\",\"screen_name\":\"nwisibor\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I am the good news from Nigeria~An early career academic who studies Political psychology, elections and some things in btw.\\n RT not endorsement. Views my own.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":628,\"friends_count\":627,\"listed_count\":2,\"created_at\":\"Sun May 03 21:20:41 +0000 2009\",\"favourites_count\":4354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8994,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1318074773348454401\\/jzfqhwyJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1318074773348454401\\/jzfqhwyJ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2783\":{\"id\":875418409479090176,\"id_str\":\"875418409479090176\",\"name\":\"Nevanji\",\"screen_name\":\"NNehoreka\",\"location\":\"Zimbabwe\",\"description\":\"Microblogger, opinionated cadre. I tweet my views, likes are not always endorsements but most of the time are! I support national growth and development\",\"url\":\"https:\\/\\/t.co\\/hFLWHAXAQi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hFLWHAXAQi\",\"expanded_url\":\"http:\\/\\/munya263.wordpress.com\",\"display_url\":\"munya263.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5854,\"friends_count\":3896,\"listed_count\":8,\"created_at\":\"Thu Jun 15 18:23:08 +0000 2017\",\"favourites_count\":14945,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":39087,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537745467265646595\\/h7mKwQak_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537745467265646595\\/h7mKwQak_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/875418409479090176\\/1655462106\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2784\":{\"id\":808326409710145537,\"id_str\":\"808326409710145537\",\"name\":\"Afro||'Greek\\u25cf\\u00ecsh'\",\"screen_name\":\"PapiMofokeng3\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Documentary Filmmaker & Journalist \\n#SupportIndieFilm #LofiFilms #videojournalist #Photojournalist\",\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"expanded_url\":\"http:\\/\\/www.papithefixer.wordpress.com\",\"display_url\":\"papithefixer.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":1336,\"listed_count\":2,\"created_at\":\"Mon Dec 12 15:03:28 +0000 2016\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/808326409710145537\\/1657372927\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2785\":{\"id\":808326409710145537,\"id_str\":\"808326409710145537\",\"name\":\"Afro||'Greek\\u25cf\\u00ecsh'\",\"screen_name\":\"PapiMofokeng3\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Documentary Filmmaker & Journalist \\n#SupportIndieFilm #LofiFilms #videojournalist #Photojournalist\",\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6dZaF2h491\",\"expanded_url\":\"http:\\/\\/www.papithefixer.wordpress.com\",\"display_url\":\"papithefixer.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":1336,\"listed_count\":2,\"created_at\":\"Mon Dec 12 15:03:28 +0000 2016\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538869105410859015\\/coEU3_sy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/808326409710145537\\/1657372927\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2786\":{\"id\":118968740,\"id_str\":\"118968740\",\"name\":\"#TruTheEyeOfANeedle \\ud83e\\uddd0\\ud83e\\uddd0\",\"screen_name\":\"bhekosok\",\"location\":\"Johannesburg\",\"description\":\"Major\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2254,\"friends_count\":2128,\"listed_count\":0,\"created_at\":\"Tue Mar 02 07:43:45 +0000 2010\",\"favourites_count\":15623,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24325,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490807117095346178\\/Cc0jWYxo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490807117095346178\\/Cc0jWYxo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/118968740\\/1602156808\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2787\":{\"id\":1289230519,\"id_str\":\"1289230519\",\"name\":\"Mnini Wamaplazi \\ud83c\\uddff\\ud83c\\uddfc \\ud83c\\uddef\\ud83c\\uddf5\",\"screen_name\":\"NyathiBrilliant\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"#NdebeleTwitter Recovering BIG BANG THEORY addict| Sold 2Chainz his 2nd chain| DrugDiscovery&Development| ComputationalChemistry| DrugDesign\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3613,\"friends_count\":3034,\"listed_count\":6,\"created_at\":\"Fri Mar 22 17:21:14 +0000 2013\",\"favourites_count\":7306,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26189,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451585129785315333\\/s1s9amE9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451585129785315333\\/s1s9amE9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1289230519\\/1595957676\",\"profile_link_color\":\"F5ABB5\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2788\":{\"id\":54531465,\"id_str\":\"54531465\",\"name\":\"\\ud835\\udca5\\ud835\\udc5c\\ud835\\udcbd\\ud835\\udcc3 \\ud835\\udcaf\\ud835\\udcb6\\ud835\\udccc\\ud835\\udcb6\\ud835\\udcc3\\ud835\\udcb9\\ud835\\udcb6 \\u2122\\ufe0f\",\"screen_name\":\"johnn_tawanda\",\"location\":\"Sandton, South Africa\",\"description\":\"He\\/ Him | Humanist \\ud83c\\udf0f \\ud83c\\uddfa\\ud83c\\uddf3| L\\u2019Avenir Wines | Apply code LV075 for discount \\ud83c\\udf77\\ud83c\\udf7e\\ud83e\\udd42\",\"url\":\"https:\\/\\/t.co\\/xu9Ca5jcyy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xu9Ca5jcyy\",\"expanded_url\":\"https:\\/\\/advini.co.za\\/shop\\/lavenir\\/\",\"display_url\":\"advini.co.za\\/shop\\/lavenir\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15645,\"friends_count\":2941,\"listed_count\":13,\"created_at\":\"Tue Jul 07 12:32:19 +0000 2009\",\"favourites_count\":15511,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42866,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1151F2\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547455856584826880\\/dNnvwTX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547455856584826880\\/dNnvwTX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/54531465\\/1654333811\",\"profile_link_color\":\"2271E6\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2789\":{\"id\":981274746263306241,\"id_str\":\"981274746263306241\",\"name\":\"MCMphotographyZA\",\"screen_name\":\"MR_MoreTAR\",\"location\":\"Standerton, South Africa\",\"description\":\"\\u25cfphotographer\\ud83d\\udcf7\\n\\u25a0UjStudent\\ud83c\\udf93\\n\\u25a0GodIsMyRoleModel\\ud83d\\ude4f\\n\\u25a0MechStudent\\ud83d\\udd0e\\ud83d\\udd29\\ud83c\\udf0e\\n\\u25a0UpcomingArtist\\ud83c\\udfbc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":79,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Tue Apr 03 20:58:25 +0000 2018\",\"favourites_count\":603,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/981275630619779072\\/e1cHjRsC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/981275630619779072\\/e1cHjRsC_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2790\":{\"id\":41225235,\"id_str\":\"41225235\",\"name\":\"SGMPodcast\",\"screen_name\":\"sgmpodcst\",\"location\":\"Pretoria, South Africa\",\"description\":\"Hosted by Rocco Strydom\\n\\ud83c\\udfa7\\ud83d\\udd0a https:\\/\\/t.co\\/o5n4NJMfO0\\nStonks Go Moon (SGM) - is a Weekly Punch in the Mouth Finance,Tech and Business Podcast\",\"url\":\"https:\\/\\/t.co\\/o5n4NJMfO0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5n4NJMfO0\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/SGMPODCAST\",\"display_url\":\"linktr.ee\\/SGMPODCAST\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5n4NJMfO0\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/SGMPODCAST\",\"display_url\":\"linktr.ee\\/SGMPODCAST\",\"indices\":[27,50]}]}},\"protected\":false,\"followers_count\":2535,\"friends_count\":3671,\"listed_count\":245,\"created_at\":\"Tue May 19 22:12:45 +0000 2009\",\"favourites_count\":26785,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9824,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517062671106981888\\/Co7k9hWr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517062671106981888\\/Co7k9hWr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/41225235\\/1636293448\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2791\":{\"id\":363616922,\"id_str\":\"363616922\",\"name\":\"Imvelo Interiors\",\"screen_name\":\"blacjesusernest\",\"location\":\"Johannesburg\",\"description\":\"Custom Made Exquisite Furniture, Email-thamsanqa.ernest@yahoo.com Whatsapp-0785612127\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3645,\"friends_count\":4725,\"listed_count\":4,\"created_at\":\"Sun Aug 28 11:50:56 +0000 2011\",\"favourites_count\":5231,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4905,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1068726387098509313\\/X-DrJ9jR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1068726387098509313\\/X-DrJ9jR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2792\":{\"id\":960149276574846976,\"id_str\":\"960149276574846976\",\"name\":\"Pete #SlavaUkraini!\",\"screen_name\":\"PetevanH\",\"location\":\"BW\",\"description\":\"Allergisch gegen Dummheit und rechte Einstellung. \\n\\nMag Biken, Oldtimer schrauben und \\u00fcberaus laute Gitarrenverst\\u00e4rker in zu kleinen R\\u00e4umen. Born @ 352PPM\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":482,\"listed_count\":0,\"created_at\":\"Sun Feb 04 13:53:21 +0000 2018\",\"favourites_count\":7783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2786,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481735322790678537\\/xJ2Ky7PI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481735322790678537\\/xJ2Ky7PI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/960149276574846976\\/1655638540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2793\":{\"id\":196939449,\"id_str\":\"196939449\",\"name\":\"Mvuselelo\",\"screen_name\":\"GieGumede\",\"location\":\"Springs, South Africa\",\"description\":\"I live for love & appreciation\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":100,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Sep 30 08:02:34 +0000 2010\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2430,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538236796353511429\\/eELputdx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538236796353511429\\/eELputdx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/196939449\\/1459961591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2794\":{\"id\":41225235,\"id_str\":\"41225235\",\"name\":\"SGMPodcast\",\"screen_name\":\"sgmpodcst\",\"location\":\"Pretoria, South Africa\",\"description\":\"Hosted by Rocco Strydom\\n\\ud83c\\udfa7\\ud83d\\udd0a https:\\/\\/t.co\\/o5n4NJMfO0\\nStonks Go Moon (SGM) - is a Weekly Punch in the Mouth Finance,Tech and Business Podcast\",\"url\":\"https:\\/\\/t.co\\/o5n4NJMfO0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5n4NJMfO0\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/SGMPODCAST\",\"display_url\":\"linktr.ee\\/SGMPODCAST\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o5n4NJMfO0\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/SGMPODCAST\",\"display_url\":\"linktr.ee\\/SGMPODCAST\",\"indices\":[27,50]}]}},\"protected\":false,\"followers_count\":2535,\"friends_count\":3671,\"listed_count\":245,\"created_at\":\"Tue May 19 22:12:45 +0000 2009\",\"favourites_count\":26785,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9824,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517062671106981888\\/Co7k9hWr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517062671106981888\\/Co7k9hWr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/41225235\\/1636293448\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2795\":{\"id\":1277504906,\"id_str\":\"1277504906\",\"name\":\"Zenzo L\",\"screen_name\":\"ZenzoLusengo\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Husband Dad Investor Markets|Startups|Sport|Music|Wine RTs not endorsements\",\"url\":\"https:\\/\\/t.co\\/KZyMNtcLP1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KZyMNtcLP1\",\"expanded_url\":\"http:\\/\\/www.amb.co.za\",\"display_url\":\"amb.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6307,\"friends_count\":6219,\"listed_count\":1117,\"created_at\":\"Mon Mar 18 11:32:37 +0000 2013\",\"favourites_count\":14801,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":106454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C1E8EB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546112838569181184\\/lN0e9oUL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546112838569181184\\/lN0e9oUL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1277504906\\/1659459127\",\"profile_link_color\":\"00B380\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2796\":{\"id\":7829112,\"id_str\":\"7829112\",\"name\":\"Shaidz\",\"screen_name\":\"Shaidz\",\"location\":\"Southey \",\"description\":\"I want to make this little world a better place. Only after breakfast though.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":293,\"friends_count\":599,\"listed_count\":12,\"created_at\":\"Mon Jul 30 20:15:04 +0000 2007\",\"favourites_count\":257,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11386,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"192B9E\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1759826607\\/purple-rose_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1759826607\\/purple-rose_normal.jpg\",\"profile_link_color\":\"1F558F\",\"profile_sidebar_border_color\":\"090B14\",\"profile_sidebar_fill_color\":\"4AB3A5\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2797\":{\"id\":1414486848907448323,\"id_str\":\"1414486848907448323\",\"name\":\"David Jones\",\"screen_name\":\"nianyi_yishujia\",\"location\":\"Katlehong, South Africa\",\"description\":\"David Jones bags for sale\\n\\nWe deliver nation wide\\n \\ud83d\\udceb\\ud83d\\udce6Pexi R60(5-7 of working days)\\n\\ud83d\\udce6 Aramex R100(2-3of working days)\\n\\nContact or WhatsApp:064 8381 587\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":31,\"listed_count\":0,\"created_at\":\"Mon Jul 12 07:28:59 +0000 2021\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488831760850898948\\/AB9cJI4g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488831760850898948\\/AB9cJI4g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1414486848907448323\\/1626416269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2798\":{\"id\":212360224,\"id_str\":\"212360224\",\"name\":\"Mhukahuru\\ud83d\\udc18\\ud83d\\udc18\\ud83d\\udc18\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"tondechipunza\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"@Manutd super fan\\n\\u201c In the end only three things matter: how much you loved, how gently you lived, and how gracefully you let go of things not meant for you. \\u201d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":690,\"friends_count\":1253,\"listed_count\":4,\"created_at\":\"Fri Nov 05 21:32:19 +0000 2010\",\"favourites_count\":19608,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1405487497937891330\\/gx1_I8s7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1405487497937891330\\/gx1_I8s7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/212360224\\/1562129362\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2799\":{\"id\":1525240337135960082,\"id_str\":\"1525240337135960082\",\"name\":\"035_Trendsetter_SA\",\"screen_name\":\"035Trendsetter\",\"location\":\"Pretoria, South Africa\",\"description\":\"VIRGO \\u264d\\ufe0f ,Footballer \\u26bd\\ufe0f, UMZULU\\ud83c\\uddff\\ud83c\\udde6 Digital creator, Videographer, Fashion , Sarcastic Gwod, Student @TUT\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Fri May 13 22:23:46 +0000 2022\",\"favourites_count\":294,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544476947190800386\\/zupVbNlb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544476947190800386\\/zupVbNlb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1525240337135960082\\/1652481299\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2800\":{\"id\":568956040,\"id_str\":\"568956040\",\"name\":\"Thapelo Speaks \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"McBills89\",\"location\":\"South Africa\",\"description\":\"Mission One Africa Feasible Study|\\nBookmark Africa| African Source|\\n\\n#Pretoria2Nairobi|\\n\\nhttps:\\/\\/t.co\\/btKl3huE9Y\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/btKl3huE9Y\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC3RUUXeXuvdRFpxBD\",\"display_url\":\"youtube.com\\/channel\\/UC3RUU\\u2026\",\"indices\":[89,112]}]}},\"protected\":false,\"followers_count\":1410,\"friends_count\":1360,\"listed_count\":10,\"created_at\":\"Wed May 02 09:28:30 +0000 2012\",\"favourites_count\":3460,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":32332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541868033316110345\\/WLe6JCgr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541868033316110345\\/WLe6JCgr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/568956040\\/1615203235\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2801\":{\"id\":416176954,\"id_str\":\"416176954\",\"name\":\"Davie\",\"screen_name\":\"Kudziiee\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"I want a Tesla\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1165,\"friends_count\":1217,\"listed_count\":8,\"created_at\":\"Sat Nov 19 10:10:35 +0000 2011\",\"favourites_count\":1653,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4663,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1291222243498954754\\/IjW6FmTP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1291222243498954754\\/IjW6FmTP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/416176954\\/1652080436\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2802\":{\"id\":385310818,\"id_str\":\"385310818\",\"name\":\"Undead Hunter\",\"screen_name\":\"Sydney_Sidwell\",\"location\":\"Pretoria, South Africa\",\"description\":\"What the Fuck does that gotta do with you?\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1361,\"friends_count\":4999,\"listed_count\":0,\"created_at\":\"Wed Oct 05 08:26:49 +0000 2011\",\"favourites_count\":12894,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1050636209003753472\\/y7Sdy6Zk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1050636209003753472\\/y7Sdy6Zk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/385310818\\/1539326430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2803\":{\"id\":851708670,\"id_str\":\"851708670\",\"name\":\"Thabo Kupa\",\"screen_name\":\"ThaboKupa\",\"location\":\"Pretoria, South Africa\",\"description\":\"The philosophers have only interpreted the world, in various ways, the point is to change it. - Karl Marx\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3909,\"friends_count\":1264,\"listed_count\":4,\"created_at\":\"Fri Sep 28 20:43:39 +0000 2012\",\"favourites_count\":1388,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5474,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533941960297394177\\/8o4cht7F_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533941960297394177\\/8o4cht7F_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/851708670\\/1413998185\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2804\":{\"id\":2706157957,\"id_str\":\"2706157957\",\"name\":\"gerhardus \",\"screen_name\":\"gerhardvk12\",\"location\":\"Pretoria\",\"description\":\"Bodybuilding, aesthetics, personal Trainer, fitness. It all makes a person stronger and a better person\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":546,\"friends_count\":1256,\"listed_count\":9,\"created_at\":\"Mon Aug 04 09:27:01 +0000 2014\",\"favourites_count\":395,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1178,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503247795335094272\\/JXlsAG9T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503247795335094272\\/JXlsAG9T_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2706157957\\/1437465886\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2805\":{\"id\":1277504906,\"id_str\":\"1277504906\",\"name\":\"Zenzo L\",\"screen_name\":\"ZenzoLusengo\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Husband Dad Investor Markets|Startups|Sport|Music|Wine RTs not endorsements\",\"url\":\"https:\\/\\/t.co\\/KZyMNtcLP1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KZyMNtcLP1\",\"expanded_url\":\"http:\\/\\/www.amb.co.za\",\"display_url\":\"amb.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6307,\"friends_count\":6219,\"listed_count\":1117,\"created_at\":\"Mon Mar 18 11:32:37 +0000 2013\",\"favourites_count\":14801,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":106454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C1E8EB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546112838569181184\\/lN0e9oUL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546112838569181184\\/lN0e9oUL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1277504906\\/1659459127\",\"profile_link_color\":\"00B380\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2806\":{\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"name\":\"PretoriaLIVE\",\"screen_name\":\"LivePretoria\",\"location\":\"Pretoria, South Africa\",\"description\":\"Follow us for all NEWS updates - politics, international relations, entertainment, governance, crime, community news - from PRETORIA, SA, Africa and the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2636,\"friends_count\":206,\"listed_count\":8,\"created_at\":\"Wed Oct 30 05:13:38 +0000 2019\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11613,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2807\":{\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"name\":\"PretoriaLIVE\",\"screen_name\":\"LivePretoria\",\"location\":\"Pretoria, South Africa\",\"description\":\"Follow us for all NEWS updates - politics, international relations, entertainment, governance, crime, community news - from PRETORIA, SA, Africa and the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2636,\"friends_count\":206,\"listed_count\":8,\"created_at\":\"Wed Oct 30 05:13:38 +0000 2019\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11613,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2808\":{\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"name\":\"PretoriaLIVE\",\"screen_name\":\"LivePretoria\",\"location\":\"Pretoria, South Africa\",\"description\":\"Follow us for all NEWS updates - politics, international relations, entertainment, governance, crime, community news - from PRETORIA, SA, Africa and the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2636,\"friends_count\":206,\"listed_count\":8,\"created_at\":\"Wed Oct 30 05:13:38 +0000 2019\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11613,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2809\":{\"id\":1116255763184455681,\"id_str\":\"1116255763184455681\",\"name\":\"Ngoako Kunta Kganakga\",\"screen_name\":\"kunta_j\",\"location\":\"Polokwane, South Africa\",\"description\":\"speak when you have something to say and not because you have to say something.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1233,\"friends_count\":2362,\"listed_count\":0,\"created_at\":\"Thu Apr 11 08:24:47 +0000 2019\",\"favourites_count\":3201,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15948,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287667030112587776\\/6a7wUSDq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287667030112587776\\/6a7wUSDq_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2810\":{\"id\":2513251249,\"id_str\":\"2513251249\",\"name\":\"Nawa \\ud83e\\udd82\",\"screen_name\":\"sabutanawa\",\"location\":\"Namibia\",\"description\":\"nothing to see here, just follow me and all shall be revealed.\",\"url\":\"https:\\/\\/t.co\\/aEMQuYSqq3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aEMQuYSqq3\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/Sabutanawa\",\"display_url\":\"youtube.com\\/user\\/Sabutanawa\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1633,\"friends_count\":1673,\"listed_count\":1,\"created_at\":\"Wed May 21 17:54:24 +0000 2014\",\"favourites_count\":6685,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1371914067124834305\\/aus1uN-C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1371914067124834305\\/aus1uN-C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2513251249\\/1580225465\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2811\":{\"id\":703595039583309825,\"id_str\":\"703595039583309825\",\"name\":\"M O - A F R I K A \\u2026. \\ud83c\\uddff\\ud83c\\udde6\\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"Mbhape1\",\"location\":\"Midrand, South Africa\",\"description\":\"Who am i without God\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3583,\"friends_count\":3106,\"listed_count\":0,\"created_at\":\"Sat Feb 27 14:58:24 +0000 2016\",\"favourites_count\":28530,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372133020350693377\\/2lJhtW7t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372133020350693377\\/2lJhtW7t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/703595039583309825\\/1615976981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2812\":{\"id\":703595039583309825,\"id_str\":\"703595039583309825\",\"name\":\"M O - A F R I K A \\u2026. \\ud83c\\uddff\\ud83c\\udde6\\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"Mbhape1\",\"location\":\"Midrand, South Africa\",\"description\":\"Who am i without God\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3583,\"friends_count\":3106,\"listed_count\":0,\"created_at\":\"Sat Feb 27 14:58:24 +0000 2016\",\"favourites_count\":28530,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372133020350693377\\/2lJhtW7t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372133020350693377\\/2lJhtW7t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/703595039583309825\\/1615976981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2813\":{\"id\":820607980928466944,\"id_str\":\"820607980928466944\",\"name\":\"Well Maid\",\"screen_name\":\"wellmaidsa\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Well Maid is a diversified business support services company, focused on 3 main areas; events and canteen management & catering services and placements service.\",\"url\":\"https:\\/\\/t.co\\/Zc7U21DTvd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Zc7U21DTvd\",\"expanded_url\":\"https:\\/\\/www.wellmaid.co.za\\/\",\"display_url\":\"wellmaid.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":143,\"listed_count\":0,\"created_at\":\"Sun Jan 15 12:26:03 +0000 2017\",\"favourites_count\":122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":983,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548222309143433216\\/qP_f8P9I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548222309143433216\\/qP_f8P9I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/820607980928466944\\/1657959922\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2814\":{\"id\":1277504906,\"id_str\":\"1277504906\",\"name\":\"Zenzo L\",\"screen_name\":\"ZenzoLusengo\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Husband Dad Investor Markets|Startups|Sport|Music|Wine RTs not endorsements\",\"url\":\"https:\\/\\/t.co\\/KZyMNtcLP1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KZyMNtcLP1\",\"expanded_url\":\"http:\\/\\/www.amb.co.za\",\"display_url\":\"amb.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6307,\"friends_count\":6219,\"listed_count\":1117,\"created_at\":\"Mon Mar 18 11:32:37 +0000 2013\",\"favourites_count\":14801,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":106454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C1E8EB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546112838569181184\\/lN0e9oUL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546112838569181184\\/lN0e9oUL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1277504906\\/1659459127\",\"profile_link_color\":\"00B380\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2815\":{\"id\":259604418,\"id_str\":\"259604418\",\"name\":\"Rand Merchant Bank\",\"screen_name\":\"RMBCIB\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Traditional Values or Innovative Ideas? With our talent the answer is always, why not both. RMB is a diversified financial services company.\",\"url\":\"https:\\/\\/t.co\\/JcVRnizMMr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JcVRnizMMr\",\"expanded_url\":\"https:\\/\\/www.rmb.co.za\\/\",\"display_url\":\"rmb.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14723,\"friends_count\":247,\"listed_count\":127,\"created_at\":\"Wed Mar 02 06:25:32 +0000 2011\",\"favourites_count\":2118,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":21729,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000005\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1473183351905398787\\/FkGRLCvp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1473183351905398787\\/FkGRLCvp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259604418\\/1649949035\",\"profile_link_color\":\"0051B3\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2816\":{\"id\":3958443041,\"id_str\":\"3958443041\",\"name\":\"WeSouthAfricanPatriots \\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"SGNewspoint\",\"location\":\"\",\"description\":\"Love reading and creating content.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1228,\"friends_count\":2045,\"listed_count\":1,\"created_at\":\"Wed Oct 14 19:15:11 +0000 2015\",\"favourites_count\":2189,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":397,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461617299992072195\\/og6tczHO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461617299992072195\\/og6tczHO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3958443041\\/1640638032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2817\":{\"id\":198831061,\"id_str\":\"198831061\",\"name\":\"Mfecane\",\"screen_name\":\"TendayiZinyama\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"Managing Director @Tradezone Communications. Communicating to promote access to information leaving no one and no place behind.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11174,\"friends_count\":6554,\"listed_count\":4,\"created_at\":\"Tue Oct 05 11:02:27 +0000 2010\",\"favourites_count\":30116,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":74314,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554167317759770626\\/MrKttzJm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554167317759770626\\/MrKttzJm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/198831061\\/1649614134\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2818\":{\"id\":272963155,\"id_str\":\"272963155\",\"name\":\"Professor Ndebele \\u2790\",\"screen_name\":\"prondebele\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"Child of God. Teacher of the word of God by Grace. Prophetic Minister. Revivalist and demonstrator of power.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":85,\"listed_count\":6,\"created_at\":\"Sun Mar 27 14:53:24 +0000 2011\",\"favourites_count\":2076,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15783,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421718113041649664\\/FdS3-6wB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421718113041649664\\/FdS3-6wB_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2819\":{\"id\":761539553324855296,\"id_str\":\"761539553324855296\",\"name\":\"Cogadh\\ud83e\\udd85\\u2648\",\"screen_name\":\"sithole_batlar\",\"location\":\"South Africa\",\"description\":\"Swimming Pool Expert\\ud83c\\udfca\\ud83d\\udc2c | Photographer | Graphic Designer | Mutsonga Wa Xiviri \\u2648\",\"url\":\"https:\\/\\/t.co\\/WrhA8FqN52\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WrhA8FqN52\",\"expanded_url\":\"http:\\/\\/www.blackeagle.co.za\",\"display_url\":\"blackeagle.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":980,\"friends_count\":1661,\"listed_count\":0,\"created_at\":\"Fri Aug 05 12:29:13 +0000 2016\",\"favourites_count\":7130,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":687,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551377653793525760\\/W2uBjvKC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551377653793525760\\/W2uBjvKC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/761539553324855296\\/1659690594\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2820\":{\"id\":290810136,\"id_str\":\"290810136\",\"name\":\"Asanda Makatala\",\"screen_name\":\"Dumakude_M\",\"location\":\"Johannesburg, South Africa\",\"description\":\"\\u2022 Deejay #SirD, \\n\\u2022Cinematographer,\\n\\u2022Photographer.\\nBooking: amakatala55@gmail.com \\n#Faku #Ndayeni #Nyawuza #PhondoRoyalBlood\\n#SaveTheChildren. \\n@VisualJourney00\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259,\"friends_count\":142,\"listed_count\":1,\"created_at\":\"Sat Apr 30 23:51:39 +0000 2011\",\"favourites_count\":8184,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11654,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554196384819077127\\/uoPr093q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554196384819077127\\/uoPr093q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/290810136\\/1612470376\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2821\":{\"id\":2979663825,\"id_str\":\"2979663825\",\"name\":\"Nash ElPapi\",\"screen_name\":\"TTraemuziq\",\"location\":\"Johannesburg, South Africa\",\"description\":\"-I love dogs \\ud83d\\udc15 -Founder and Designer of@black_widow_brands -Professional International recognized Barista\\u2615\\ufe0f -YouTube.com\\/channel\\/UCYrydBnvVvjsWPbY5t2wBlw\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":509,\"listed_count\":0,\"created_at\":\"Thu Jan 15 12:50:09 +0000 2015\",\"favourites_count\":513,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555404497228283904\\/_svNtY5P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555404497228283904\\/_svNtY5P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2979663825\\/1654288065\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2822\":{\"id\":894665295780040704,\"id_str\":\"894665295780040704\",\"name\":\"C M\",\"screen_name\":\"Calvin_MNcube\",\"location\":\"Gauteng\",\"description\":\"A writer is the sum of their experiences. Pan-African!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1050,\"friends_count\":321,\"listed_count\":1,\"created_at\":\"Mon Aug 07 21:03:23 +0000 2017\",\"favourites_count\":6113,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6673,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555895871526543360\\/GkJRrfTG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555895871526543360\\/GkJRrfTG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/894665295780040704\\/1634046804\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2823\":{\"id\":821684481803350019,\"id_str\":\"821684481803350019\",\"name\":\"Big Smoke Thy Paparazzo\\ud83d\\udcf8\",\"screen_name\":\"bigsmokevisuals\",\"location\":\"Nelspruit, South Africa\",\"description\":\"\\ud83d\\udcf7Professional Photographer | Videographer \\ud83d\\udcf9 | Artist Manager | Content Creator | Creative Director \\nWhatsApp:067 005 3494\\nEmail:bigsmokevisuals@gmail.com\",\"url\":\"https:\\/\\/t.co\\/ucqIPCk48w\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ucqIPCk48w\",\"expanded_url\":\"http:\\/\\/jemi.so\\/big-smoke-visuals\",\"display_url\":\"jemi.so\\/big-smoke-visu\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1428,\"friends_count\":1567,\"listed_count\":0,\"created_at\":\"Wed Jan 18 11:43:41 +0000 2017\",\"favourites_count\":487,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":414,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551126110301261824\\/3eIObZVL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551126110301261824\\/3eIObZVL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/821684481803350019\\/1643206086\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2824\":{\"id\":1003304028342808576,\"id_str\":\"1003304028342808576\",\"name\":\"@teekay_laney\\u26a1\",\"screen_name\":\"TNkangane\",\"location\":\"Centurion, South Africa\",\"description\":\"Lover of life... \\nI follow back\\n\\n... \\n\\u25cfRoad manager\\n\\u25cfInsurance Claims Consultant\\n\\n\\u2661Party\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":704,\"friends_count\":1422,\"listed_count\":0,\"created_at\":\"Sun Jun 03 15:54:55 +0000 2018\",\"favourites_count\":1621,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1506961599902502919\\/NK6sIAKx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1506961599902502919\\/NK6sIAKx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1003304028342808576\\/1645720057\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2825\":{\"id\":1478308063241289729,\"id_str\":\"1478308063241289729\",\"name\":\"Nkele Talifhani Galedzana\",\"screen_name\":\"intandoyabantu\",\"location\":\"Johannesburg, South Africa\",\"description\":\"1st Youngest Independent Councilor Candidate Local Government Elections 2021 \\ud83d\\uddf3 || 2022 Mail and Guardian 200 Young South Africans \\ud83c\\udfc6\\ud83d\\udc51|| Servant || Student\",\"url\":\"https:\\/\\/t.co\\/RGzujXDRiU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RGzujXDRiU\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/peopleschoiceza\",\"display_url\":\"facebook.com\\/peopleschoiceza\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Tue Jan 04 10:12:14 +0000 2022\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":27,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554579992901828608\\/wQYWrqHn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554579992901828608\\/wQYWrqHn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478308063241289729\\/1651062189\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2826\":{\"id\":958883537230364672,\"id_str\":\"958883537230364672\",\"name\":\"Therd Suspect\",\"screen_name\":\"therd_suspect\",\"location\":\"Johannesburg, South Africa\",\"description\":\"#EGV #EssentialGoodVibes #Mondays\\n16:00 - 18:00 BST 17:00 - 19:00 CAT\\nhttps:\\/\\/t.co\\/3j76aP85Pn\",\"url\":\"https:\\/\\/t.co\\/NBpzktT461\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NBpzktT461\",\"expanded_url\":\"https:\\/\\/www.traxsource.com\\/artist\\/129869\\/therd-suspect\",\"display_url\":\"traxsource.com\\/artist\\/129869\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3j76aP85Pn\",\"expanded_url\":\"http:\\/\\/deeplomatikkradio.co.uk\",\"display_url\":\"deeplomatikkradio.co.uk\",\"indices\":[70,93]}]}},\"protected\":false,\"followers_count\":61,\"friends_count\":226,\"listed_count\":0,\"created_at\":\"Thu Feb 01 02:03:45 +0000 2018\",\"favourites_count\":517,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552450930649481221\\/AQmFKdUf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552450930649481221\\/AQmFKdUf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/958883537230364672\\/1658968122\",\"profile_link_color\":\"91D2FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2827\":{\"id\":4533554727,\"id_str\":\"4533554727\",\"name\":\"IG: @zakes_twala\",\"screen_name\":\"Zakes_Twala\",\"location\":\"Johannesburg, South Africa\",\"description\":\"Eclectic jack of all trades\\u2122\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":765,\"friends_count\":798,\"listed_count\":1,\"created_at\":\"Sat Dec 19 08:35:55 +0000 2015\",\"favourites_count\":10743,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5844,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1329384363058925570\\/r7DqNz_x_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1329384363058925570\\/r7DqNz_x_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4533554727\\/1633695288\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2828\":{\"id\":1116255763184455681,\"id_str\":\"1116255763184455681\",\"name\":\"Ngoako Kunta Kganakga\",\"screen_name\":\"kunta_j\",\"location\":\"Polokwane, South Africa\",\"description\":\"speak when you have something to say and not because you have to say something.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1233,\"friends_count\":2362,\"listed_count\":0,\"created_at\":\"Thu Apr 11 08:24:47 +0000 2019\",\"favourites_count\":3201,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15948,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287667030112587776\\/6a7wUSDq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287667030112587776\\/6a7wUSDq_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2829\":{\"id\":726190250691846144,\"id_str\":\"726190250691846144\",\"name\":\"STYLIST_ENTREPRENEUR\",\"screen_name\":\"N_Mphakama\",\"location\":\"Johannesburg, South Africa\",\"description\":\"African Entrepreneur \\ud83c\\udf0d\\u2764\",\"url\":\"https:\\/\\/t.co\\/1pElXKgMlg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1pElXKgMlg\",\"expanded_url\":\"http:\\/\\/Dopekicksa.store\",\"display_url\":\"Dopekicksa.store\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":495,\"friends_count\":441,\"listed_count\":0,\"created_at\":\"Fri Apr 29 23:23:42 +0000 2016\",\"favourites_count\":20992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1370,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549141346824355841\\/zE7HMD-R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549141346824355841\\/zE7HMD-R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/726190250691846144\\/1658178836\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2830\":{\"id\":1164218679925649410,\"id_str\":\"1164218679925649410\",\"name\":\"DeGrande Art Maestro\\ud83c\\uddff\\ud83c\\udde6\",\"screen_name\":\"devilbehindart\",\"location\":\"Lephalale, South Africa\",\"description\":\"Visual Artist\\ud83d\\udc68\\u200d\\ud83c\\udfa8\\ud83c\\udfa8 Sponsored by @Elegantfuel Artist Proof Studio \\ud83d\\udc68\\u200d\\ud83c\\udf93 Whatsapp: 0678822495 Johannesburg\\/ Lephalale \\ud83d\\udccd Instagram: Degrande_artmaestro\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27844,\"friends_count\":22685,\"listed_count\":2,\"created_at\":\"Wed Aug 21 16:52:29 +0000 2019\",\"favourites_count\":123722,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5149,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537752643329839104\\/wYNzrd0v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537752643329839104\\/wYNzrd0v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1164218679925649410\\/1610121184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2831\":{\"id\":357481151,\"id_str\":\"357481151\",\"name\":\"Mphathi Motha\",\"screen_name\":\"MphathiMotha\",\"location\":\"Ekurhuleni \",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":529,\"friends_count\":634,\"listed_count\":0,\"created_at\":\"Thu Aug 18 12:45:03 +0000 2011\",\"favourites_count\":5834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16092,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0B0E0F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539121812642177024\\/R1Ug6nzj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539121812642177024\\/R1Ug6nzj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/357481151\\/1653582281\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2832\":{\"id\":712927525,\"id_str\":\"712927525\",\"name\":\"Marius C. Oula\",\"screen_name\":\"russobaross\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I swear to tell only the truth - Citizen of the Universe - Love your Neighbor as Yourself - Race is just geographic - https:\\/\\/t.co\\/4wYRtPohMD\",\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"expanded_url\":\"http:\\/\\/www.maisoncatalogue.co.za\",\"display_url\":\"maisoncatalogue.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4wYRtPohMD\",\"expanded_url\":\"http:\\/\\/mariusoula.blogspot.com\",\"display_url\":\"mariusoula.blogspot.com\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":51,\"friends_count\":456,\"listed_count\":1,\"created_at\":\"Mon Jul 23 19:00:00 +0000 2012\",\"favourites_count\":2105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/712927525\\/1637069392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2833\":{\"id\":712927525,\"id_str\":\"712927525\",\"name\":\"Marius C. Oula\",\"screen_name\":\"russobaross\",\"location\":\"Johannesburg, South Africa\",\"description\":\"I swear to tell only the truth - Citizen of the Universe - Love your Neighbor as Yourself - Race is just geographic - https:\\/\\/t.co\\/4wYRtPohMD\",\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z5j5AtHCHu\",\"expanded_url\":\"http:\\/\\/www.maisoncatalogue.co.za\",\"display_url\":\"maisoncatalogue.co.za\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4wYRtPohMD\",\"expanded_url\":\"http:\\/\\/mariusoula.blogspot.com\",\"display_url\":\"mariusoula.blogspot.com\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":51,\"friends_count\":456,\"listed_count\":1,\"created_at\":\"Mon Jul 23 19:00:00 +0000 2012\",\"favourites_count\":2105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539601508580397056\\/bSF_Rh5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/712927525\\/1637069392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2834\":{\"id\":1284393566484168704,\"id_str\":\"1284393566484168704\",\"name\":\"Shalom DRT official\",\"screen_name\":\"ShalomDrt\",\"location\":\"Johannesburg, South Africa\",\"description\":\"King of South African hip hop \\ud83d\\udc51\\n#kingofsouthafricanhiphop\",\"url\":\"https:\\/\\/t.co\\/fbEov1V9nI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fbEov1V9nI\",\"expanded_url\":\"https:\\/\\/unitedmasters.com\\/shalom-drt\",\"display_url\":\"unitedmasters.com\\/shalom-drt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":1316,\"listed_count\":2,\"created_at\":\"Sat Jul 18 07:44:35 +0000 2020\",\"favourites_count\":701,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":630,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522742153604222976\\/k5k4GNUV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522742153604222976\\/k5k4GNUV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284393566484168704\\/1595413818\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2835\":{\"id\":65841393,\"id_str\":\"65841393\",\"name\":\"Tlotliso wa ACDP \\ud83c\\uddff\\ud83c\\udde6\\ud83c\\uddee\\ud83c\\uddf1\\ud83c\\uddf1\\ud83c\\uddf8\",\"screen_name\":\"TlotlisoM_\",\"location\":\"Vosloorus\",\"description\":\"Husband | Father| Servant | Friend | Brother | Malome | #ACDP Member | Orlando Pirates supporter | I LOVE ISRAEL https:\\/\\/t.co\\/ssVSobAxIE\",\"url\":\"https:\\/\\/t.co\\/bwHSDlo7c3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bwHSDlo7c3\",\"expanded_url\":\"http:\\/\\/www.deisi.org\",\"display_url\":\"deisi.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ssVSobAxIE\",\"expanded_url\":\"http:\\/\\/acdp.org.za\",\"display_url\":\"acdp.org.za\",\"indices\":[114,137]}]}},\"protected\":false,\"followers_count\":1562,\"friends_count\":1309,\"listed_count\":27,\"created_at\":\"Sat Aug 15 06:08:54 +0000 2009\",\"favourites_count\":4486,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":21793,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1110420632968269824\\/qg3nc72Z_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1110420632968269824\\/qg3nc72Z_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/65841393\\/1506937755\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2836\":{\"id\":1498250096223338496,\"id_str\":\"1498250096223338496\",\"name\":\"Relebogile Dinake\",\"screen_name\":\"reledinake\",\"location\":\"Rustenburg, South Africa\",\"description\":\"\\ud83d\\udc9cLaw Student\\u2696\\ufe0f\\ud83d\\udc9cKago's Momma\\ud83d\\udc69\\u200d\\ud83d\\udc67\\ud83d\\udc9cTaurus Baby\\u2728\\ud83e\\uddd8\\ud83c\\udffe\\u200d\\u2640\\ufe0f\\ud83d\\udc9c https:\\/\\/t.co\\/BqTtraD8LA Sign up and get 40$ sign up bonus.\\ud83d\\udd25\\ud83d\\udcb5\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BqTtraD8LA\",\"expanded_url\":\"https:\\/\\/ref.surveyj.co\\/RelebogileRN\",\"display_url\":\"ref.surveyj.co\\/RelebogileRN\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":726,\"friends_count\":845,\"listed_count\":0,\"created_at\":\"Mon Feb 28 10:54:04 +0000 2022\",\"favourites_count\":2988,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":384,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498250455511674881\\/bSZ-udAv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498250455511674881\\/bSZ-udAv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498250096223338496\\/1649435074\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2837\":{\"id\":736123098630610944,\"id_str\":\"736123098630610944\",\"name\":\"Mduduzi Nkosi\",\"screen_name\":\"Mduduzi_Nkos_i\",\"location\":\"Pretoria, South Africa\",\"description\":\"#Bitcoin #HODL\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3523,\"friends_count\":3550,\"listed_count\":1,\"created_at\":\"Fri May 27 09:13:18 +0000 2016\",\"favourites_count\":5633,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1112,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1216275734160977920\\/-HoouG8V_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1216275734160977920\\/-HoouG8V_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/736123098630610944\\/1586982308\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2838\":{\"id\":951882494718218240,\"id_str\":\"951882494718218240\",\"name\":\"Brazo\",\"screen_name\":\"MthembuSisekelo\",\"location\":\"Roodepoort, South Africa\",\"description\":\"Based in Johannesburg \\u2022 Photographer \\u2022 Video editor \\u2022 Camera Operator DM or email for bookings mthembusisekelo@gmail.com \\ud83c\\uddff\\ud83c\\udde6\",\"url\":\"https:\\/\\/t.co\\/nIHqh16SCE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nIHqh16SCE\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCxUj2QrfedOPBcbpQZG9llQ\",\"display_url\":\"youtube.com\\/channel\\/UCxUj2\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":778,\"friends_count\":59,\"listed_count\":1,\"created_at\":\"Fri Jan 12 18:24:06 +0000 2018\",\"favourites_count\":1929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18963,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534526498199293954\\/gA7N5G5-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534526498199293954\\/gA7N5G5-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/951882494718218240\\/1636987693\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2839\":{\"id\":83920621,\"id_str\":\"83920621\",\"name\":\"Phillip Tshabalala\",\"screen_name\":\"TshabalalaP\",\"location\":\"Benoni, South Africa\",\"description\":\"Love,\\nLife,\\nLaughter.\\nLoyal to unlearning, relearning & application of knowledge.\\nDisciple of Yeshua\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":226,\"friends_count\":503,\"listed_count\":4,\"created_at\":\"Tue Oct 20 20:37:39 +0000 2009\",\"favourites_count\":7702,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5935,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533488865926946816\\/aWDoAa0m_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533488865926946816\\/aWDoAa0m_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/83920621\\/1468827149\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2840\":{\"id\":892450844628725764,\"id_str\":\"892450844628725764\",\"name\":\"Conor\",\"screen_name\":\"ConormaraZ\",\"location\":\"Connemara\\/\\u041a\\u043e\\u043d\\u043d\\u0435\\u043c\\u0430\\u0440\\u0430\",\"description\":\"Connemara state-affiliated media.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":182,\"friends_count\":281,\"listed_count\":0,\"created_at\":\"Tue Aug 01 18:23:57 +0000 2017\",\"favourites_count\":6349,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5726,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551260555637395457\\/HmRVtz0y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551260555637395457\\/HmRVtz0y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/892450844628725764\\/1657047121\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2841\":{\"id\":1421486361517907968,\"id_str\":\"1421486361517907968\",\"name\":\"All Life 2 Africa\",\"screen_name\":\"AllLife2Africa\",\"location\":\"Randburg\",\"description\":\"We explore the\\ud83c\\udf0dAfrican culture ,traditions, values, totems, proverbs, Folktale, Business-tips and many more. #Blogger #Africa\",\"url\":\"https:\\/\\/t.co\\/YtwodbNIAJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YtwodbNIAJ\",\"expanded_url\":\"https:\\/\\/totemnetwork.blogspot.com\\/\",\"display_url\":\"totemnetwork.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1776,\"friends_count\":3512,\"listed_count\":2,\"created_at\":\"Sat Jul 31 15:02:23 +0000 2021\",\"favourites_count\":486,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3079,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421491758442160131\\/XOegvnrp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421491758442160131\\/XOegvnrp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1421486361517907968\\/1627745024\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2842\":{\"id\":198831061,\"id_str\":\"198831061\",\"name\":\"Mfecane\",\"screen_name\":\"TendayiZinyama\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"Managing Director @Tradezone Communications. Communicating to promote access to information leaving no one and no place behind.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11174,\"friends_count\":6554,\"listed_count\":4,\"created_at\":\"Tue Oct 05 11:02:27 +0000 2010\",\"favourites_count\":30116,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":74314,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554167317759770626\\/MrKttzJm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554167317759770626\\/MrKttzJm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/198831061\\/1649614134\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2843\":{\"id\":1447486492180369411,\"id_str\":\"1447486492180369411\",\"name\":\"Minister of ZanuPf\\ud83c\\uddff\\ud83c\\uddfc.\",\"screen_name\":\"babieRinenharo\",\"location\":\"Bulawayo, Zimbabwe\",\"description\":\"Zimbabwean.\\nZanuPf Member.\\nBulawayo, Zimbabwe \\ud83c\\uddff\\ud83c\\uddfc .\\nGod above all.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2087,\"friends_count\":2405,\"listed_count\":1,\"created_at\":\"Mon Oct 11 08:58:43 +0000 2021\",\"favourites_count\":9645,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11352,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553542776616374281\\/gj1-kd4u_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553542776616374281\\/gj1-kd4u_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1447486492180369411\\/1646808092\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2844\":{\"id\":1171793872592224258,\"id_str\":\"1171793872592224258\",\"name\":\"AmbCHENXiaodong\",\"screen_name\":\"ChinaAmbSA\",\"location\":\"Pretoria\",\"description\":\"Chinese Ambassador to South Africa.\\n\\nFor Visa-related issues please contact 0027-11-5059300 or johannesburgcenter@visaforchina.org\",\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nGww7sb43B\",\"expanded_url\":\"http:\\/\\/za.china-embassy.org\\/eng\\/\",\"display_url\":\"za.china-embassy.org\\/eng\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16410,\"friends_count\":440,\"listed_count\":134,\"created_at\":\"Wed Sep 11 14:35:55 +0000 2019\",\"favourites_count\":3926,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3769,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328278965514022912\\/q99nZGEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1171793872592224258\\/1614418917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2845\":{\"id\":831559608,\"id_str\":\"831559608\",\"name\":\"EconPoliticist\",\"screen_name\":\"EconPoliticist\",\"location\":\"GFY\",\"description\":\"D5 ride or die. Aspiring rapper and designer and, getting good at it, if you will.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":538,\"friends_count\":581,\"listed_count\":3,\"created_at\":\"Tue Sep 18 17:56:40 +0000 2012\",\"favourites_count\":18890,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11072,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1446864858889310209\\/o9ByYTK5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1446864858889310209\\/o9ByYTK5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/831559608\\/1633794439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2846\":{\"id\":1551557293510217728,\"id_str\":\"1551557293510217728\",\"name\":\"Loot Here\",\"screen_name\":\"Loot_HereZA\",\"location\":\"Polokwane, South Africa\",\"description\":\"Aesthetics\\ud83d\\udecd\\ufe0f\\ud83d\\uded2\\nEnquires \\ud83d\\udce8: kontolfun1252@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":100,\"friends_count\":670,\"listed_count\":0,\"created_at\":\"Mon Jul 25 13:17:54 +0000 2022\",\"favourites_count\":31,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":35,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551558613688279045\\/GaBTJDu6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551558613688279045\\/GaBTJDu6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551557293510217728\\/1658755490\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2847\":{\"id\":1189409898754387969,\"id_str\":\"1189409898754387969\",\"name\":\"PretoriaLIVE\",\"screen_name\":\"LivePretoria\",\"location\":\"Pretoria, South Africa\",\"description\":\"Follow us for all NEWS updates - politics, international relations, entertainment, governance, crime, community news - from PRETORIA, SA, Africa and the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2636,\"friends_count\":206,\"listed_count\":8,\"created_at\":\"Wed Oct 30 05:13:38 +0000 2019\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11613,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1189414083516338177\\/WUpKVIul_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2848\":{\"id\":272100746,\"id_str\":\"272100746\",\"name\":\"CHI-Exclusive\",\"screen_name\":\"chiexclusivehub\",\"location\":\"Nigeria\",\"description\":\"Website Designer \\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83d\\udcbb | Realtor| Blogger| eShop Manager (@ExclusiveShops) \\ud83d\\udecd|For Web Designs whatsapp me through d-web or mail matthias@chiexclusive.com\",\"url\":\"https:\\/\\/t.co\\/BRmxlKRSam\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BRmxlKRSam\",\"expanded_url\":\"https:\\/\\/chiexclusive.com\",\"display_url\":\"chiexclusive.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11461,\"friends_count\":8242,\"listed_count\":2,\"created_at\":\"Fri Mar 25 20:52:02 +0000 2011\",\"favourites_count\":2012,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7628,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351483555562532866\\/ikCmeYTq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351483555562532866\\/ikCmeYTq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/272100746\\/1620384027\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2849\":{\"id\":3352737683,\"id_str\":\"3352737683\",\"name\":\"All Round News\",\"screen_name\":\"AllRoundNewsNG\",\"location\":\"Nigeria\",\"description\":\"All About News\",\"url\":\"http:\\/\\/t.co\\/MyAMvf3YcQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MyAMvf3YcQ\",\"expanded_url\":\"http:\\/\\/AllRoundNews.NG\",\"display_url\":\"AllRoundNews.NG\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":430,\"friends_count\":1,\"listed_count\":4,\"created_at\":\"Wed Jul 01 02:44:19 +0000 2015\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77875,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/617559745583382528\\/bmUnciYA_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/617559745583382528\\/bmUnciYA_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3352737683\\/1436084513\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2850\":{\"id\":727138517239767041,\"id_str\":\"727138517239767041\",\"name\":\"Gerald P Bartlett\",\"screen_name\":\"GpbartlettP\",\"location\":\"Timbuktu\",\"description\":\"Travelling & exploring life with the Darug Nations people. Don\\u2019t take myself too seriously, love a good respectful discussion. Complicated & Unique.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":197,\"listed_count\":4,\"created_at\":\"Mon May 02 14:11:47 +0000 2016\",\"favourites_count\":1342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/727138517239767041\\/1657767970\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2851\":{\"id\":430723686,\"id_str\":\"430723686\",\"name\":\"Green Hive\",\"screen_name\":\"Greenhive5\",\"location\":\"uganda\",\"description\":\"HOTELIER\",\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/bukirwaeducationfund\",\"display_url\":\"facebook.com\\/bukirwaeducati\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":108,\"friends_count\":474,\"listed_count\":0,\"created_at\":\"Wed Dec 07 14:05:20 +0000 2011\",\"favourites_count\":783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/430723686\\/1618904971\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2852\":{\"id\":430723686,\"id_str\":\"430723686\",\"name\":\"Green Hive\",\"screen_name\":\"Greenhive5\",\"location\":\"uganda\",\"description\":\"HOTELIER\",\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/bukirwaeducationfund\",\"display_url\":\"facebook.com\\/bukirwaeducati\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":108,\"friends_count\":474,\"listed_count\":0,\"created_at\":\"Wed Dec 07 14:05:20 +0000 2011\",\"favourites_count\":783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/430723686\\/1618904971\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2853\":{\"id\":162934876,\"id_str\":\"162934876\",\"name\":\"Silvado \\u2b07\\ufe0f\",\"screen_name\":\"countrybouy1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Filmmaker \\ud83c\\udfac\\ud83d\\udcfd\\nCypto maniac\\nNFT Creator\\n\\nFilm And TV:\\nAssistant Director \\nScript Supervisor\\nScript Editor\",\"url\":\"https:\\/\\/t.co\\/9Q8Ax6JsYm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Q8Ax6JsYm\",\"expanded_url\":\"https:\\/\\/rarible.com\\/token\\/0xc9154424B823b10579895cCBE442d41b9Abd96Ed:8228893423091918802435039797288\",\"display_url\":\"rarible.com\\/token\\/0xc91544\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":269,\"friends_count\":502,\"listed_count\":2,\"created_at\":\"Mon Jul 05 03:12:41 +0000 2010\",\"favourites_count\":189,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2416,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544262424836116481\\/VQWWa6XE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544262424836116481\\/VQWWa6XE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/162934876\\/1649688232\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2854\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2855\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2856\":{\"id\":837439731558453249,\"id_str\":\"837439731558453249\",\"name\":\"ACCESS\\/DAKAR\",\"screen_name\":\"ACCESSDAKAR\",\"location\":\"Dakar\",\"description\":\"SUIVEZ-NOUS SUR LES RESEAUX SOCIAUX VIA...\\nhttps:\\/\\/t.co\\/c4ndyDjt4G\\nhttps:\\/\\/t.co\\/yrmWIT8laI\\u200b\\nhttps:\\/\\/t.co\\/9mwYfvkJyT\",\"url\":\"https:\\/\\/t.co\\/1GkNaDGce8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1GkNaDGce8\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/AccessDakarSN\",\"display_url\":\"youtube.com\\/c\\/AccessDakarSN\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c4ndyDjt4G\",\"expanded_url\":\"http:\\/\\/instagram.com\\/accessdakarsn\",\"display_url\":\"instagram.com\\/accessdakarsn\",\"indices\":[43,66]},{\"url\":\"https:\\/\\/t.co\\/yrmWIT8laI\",\"expanded_url\":\"http:\\/\\/facebook.com\\/accessdakarSN\",\"display_url\":\"facebook.com\\/accessdakarSN\",\"indices\":[67,90]},{\"url\":\"https:\\/\\/t.co\\/9mwYfvkJyT\",\"expanded_url\":\"http:\\/\\/tiktok.com\\/@accessdakar\",\"display_url\":\"tiktok.com\\/@accessdakar\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":224,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Thu Mar 02 23:09:25 +0000 2017\",\"favourites_count\":2974,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6222,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543929189056888832\\/5BMmm_9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543929189056888832\\/5BMmm_9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/837439731558453249\\/1565817834\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2857\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2858\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2859\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2860\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2861\":{\"id\":892298735115522048,\"id_str\":\"892298735115522048\",\"name\":\"Timi Isaac\",\"screen_name\":\"Gracious_Song\",\"location\":\"Nigeria\",\"description\":\"I provide some of the best solutions to issues, even if they seem entertaining.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":91,\"listed_count\":0,\"created_at\":\"Tue Aug 01 08:19:31 +0000 2017\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":89,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1355045868118962176\\/3kGGoqNi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1355045868118962176\\/3kGGoqNi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/892298735115522048\\/1601540172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2862\":{\"id\":1223212461010096129,\"id_str\":\"1223212461010096129\",\"name\":\"Clinton_Snowbird\",\"screen_name\":\"ClintonSnowbird\",\"location\":\"Abuja, Nigeria\",\"description\":\"#footballinmyDNA \\ud83e\\uddec || Africa & Black history \\ud83d\\udccc Red Devil \\ud83d\\udd34. Vibes || cruise\\ud83d\\ude0e I had fun once\\u2014it was horrible. 6\\u20193ft strong \\ud83d\\ude0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3134,\"friends_count\":3033,\"listed_count\":0,\"created_at\":\"Fri Jan 31 11:52:46 +0000 2020\",\"favourites_count\":8773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546438057183907840\\/KREogTZI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546438057183907840\\/KREogTZI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1223212461010096129\\/1654726474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2863\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2864\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2865\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2866\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2867\":{\"id\":318945033,\"id_str\":\"318945033\",\"name\":\"JAYDO KINHO\",\"screen_name\":\"Jaydokinhotweet\",\"location\":\"Nigeria\",\"description\":\"Singer | Songwriter | Model | Actor \\n Email:jaydokinho@gmail.com | +2348060400535\",\"url\":\"https:\\/\\/t.co\\/oMJSSlncTW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oMJSSlncTW\",\"expanded_url\":\"https:\\/\\/music.youtube.com\\/watch?v=Z6V3Ecq3qz4&feature=share\",\"display_url\":\"music.youtube.com\\/watch?v=Z6V3Ec\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":761,\"friends_count\":1262,\"listed_count\":1,\"created_at\":\"Fri Jun 17 09:30:36 +0000 2011\",\"favourites_count\":853,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2683,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521272159540289536\\/Ef7rH9e8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521272159540289536\\/Ef7rH9e8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/318945033\\/1656898974\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2868\":{\"id\":725816690542518273,\"id_str\":\"725816690542518273\",\"name\":\"Urwah Adam Suleiman\",\"screen_name\":\"adam_urwah\",\"location\":\"Kaduna, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":289,\"listed_count\":0,\"created_at\":\"Thu Apr 28 22:39:18 +0000 2016\",\"favourites_count\":9895,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":584,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/998358582193078274\\/FQMWLfeJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/998358582193078274\\/FQMWLfeJ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2869\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2870\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2871\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2872\":{\"id\":1481668045881982990,\"id_str\":\"1481668045881982990\",\"name\":\"Nigeria voice\",\"screen_name\":\"9jariavoice\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Thu Jan 13 16:42:53 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2873\":{\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"name\":\"Elite Star Foundation\",\"screen_name\":\"NGOELITESTAR\",\"location\":\"Nigeria\",\"description\":\"Ensuring lifelong learning opportunities for all and reducing all forms of inequalities and violence against children.\",\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"expanded_url\":\"https:\\/\\/www.elitestarfoundation.org\",\"display_url\":\"elitestarfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":492,\"listed_count\":0,\"created_at\":\"Sat Nov 20 04:48:29 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461919316400648194\\/1637384456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2874\":{\"id\":311120818,\"id_str\":\"311120818\",\"name\":\"Left Coast Librarian \\ud83c\\udf32\",\"screen_name\":\"LeftCoastMLIS\",\"location\":\"Pacific Northwest\",\"description\":\"MLIS, @SJSU \\ud83d\\udcda MA, Int\\u2019l Human Rights, @josefkorbel \\ud83c\\uddfa\\ud83c\\uddf3 True crime obsessive \\ud83d\\udd0e Space & aviation geek \\u2708\\ufe0f Tabletop gamer \\ud83c\\udfb2 Ally \\ud83c\\udff3\\ufe0f\\u200d\\ud83c\\udf08\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":3127,\"listed_count\":9,\"created_at\":\"Sat Jun 04 22:54:20 +0000 2011\",\"favourites_count\":11341,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1369,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1497166624960376833\\/opldLcf5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1497166624960376833\\/opldLcf5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/311120818\\/1656784566\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2875\":{\"id\":2841969340,\"id_str\":\"2841969340\",\"name\":\"Charleson Otubu\",\"screen_name\":\"IAMCharleson\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Enterpreneur, SlayChat Founder, Content Creator, imarketer, Web Develper, FullStack Developer, JavaScript, HTML, CSS, JAVA, C++, PHP, PYTHON,\",\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/hellocharleson\",\"display_url\":\"linkedin.com\\/in\\/hellocharle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8750,\"friends_count\":870,\"listed_count\":24,\"created_at\":\"Thu Oct 23 14:33:23 +0000 2014\",\"favourites_count\":190,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":250,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2841969340\\/1595895798\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2876\":{\"id\":2841969340,\"id_str\":\"2841969340\",\"name\":\"Charleson Otubu\",\"screen_name\":\"IAMCharleson\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Enterpreneur, SlayChat Founder, Content Creator, imarketer, Web Develper, FullStack Developer, JavaScript, HTML, CSS, JAVA, C++, PHP, PYTHON,\",\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/hellocharleson\",\"display_url\":\"linkedin.com\\/in\\/hellocharle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8750,\"friends_count\":870,\"listed_count\":24,\"created_at\":\"Thu Oct 23 14:33:23 +0000 2014\",\"favourites_count\":190,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":250,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2841969340\\/1595895798\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2877\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2878\":{\"id\":1271350597732782080,\"id_str\":\"1271350597732782080\",\"name\":\"Mahmud Tim Kargbo\",\"screen_name\":\"MahmudTim\",\"location\":\"Sierra Leone\",\"description\":\"Journalist, Researcher and Social Commentator\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5721,\"friends_count\":4042,\"listed_count\":9,\"created_at\":\"Fri Jun 12 07:57:06 +0000 2020\",\"favourites_count\":30,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1269,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1477093009061732352\\/hEwGz557_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1477093009061732352\\/hEwGz557_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2879\":{\"id\":978009861324763136,\"id_str\":\"978009861324763136\",\"name\":\"Affectionate_Beau\",\"screen_name\":\"Aff_Beau\",\"location\":\"Nigeria\",\"description\":\"NO!!! I don't mind being special, isn't that what we all want?\\ud83e\\udd14\",\"url\":\"https:\\/\\/t.co\\/109TTtKJJu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/109TTtKJJu\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/affectionate__beau\",\"display_url\":\"instagram.com\\/affectionate__\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 25 20:44:56 +0000 2018\",\"favourites_count\":600,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":540,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528743185345916928\\/Zu0mDdW4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528743185345916928\\/Zu0mDdW4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/978009861324763136\\/1642884083\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2880\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2881\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2882\":{\"id\":900647718590320640,\"id_str\":\"900647718590320640\",\"name\":\"Adedamola\",\"screen_name\":\"tomidearoso\",\"location\":\"Abuja\",\"description\":\"Zaphnathpaaneah| Writer| Geologist| \\u05d9\\u05b0\\u05d4\\u05d5\\u05bc\\u05d3\\u05b8\\u05d4|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6980,\"friends_count\":6543,\"listed_count\":2,\"created_at\":\"Thu Aug 24 09:15:24 +0000 2017\",\"favourites_count\":69572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542178723977482241\\/CFH8yuqN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542178723977482241\\/CFH8yuqN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/900647718590320640\\/1646359596\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2883\":{\"id\":1954402777,\"id_str\":\"1954402777\",\"name\":\"TheCable\",\"screen_name\":\"thecableng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's independent online newspaper\",\"url\":\"https:\\/\\/t.co\\/8BVA5oEStE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BVA5oEStE\",\"expanded_url\":\"http:\\/\\/www.thecable.ng\",\"display_url\":\"thecable.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":977716,\"friends_count\":4374,\"listed_count\":846,\"created_at\":\"Fri Oct 11 15:01:36 +0000 2013\",\"favourites_count\":3093,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":217605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485955811918684163\\/Zd2E7nxF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485955811918684163\\/Zd2E7nxF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1954402777\\/1655235212\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2884\":{\"id\":958489440560779265,\"id_str\":\"958489440560779265\",\"name\":\"AdewaleMubarack\",\"screen_name\":\"AdewaleMubarack\",\"location\":\"Abuja, Nigeria\",\"description\":\"Hi, remember it is possible if you try. I am Adewale and with love to you, always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":238,\"friends_count\":1502,\"listed_count\":0,\"created_at\":\"Tue Jan 30 23:57:45 +0000 2018\",\"favourites_count\":4186,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549849761305530370\\/SdA_N87W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549849761305530370\\/SdA_N87W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/958489440560779265\\/1658353112\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2885\":{\"id\":25868966,\"id_str\":\"25868966\",\"name\":\"Chakams\",\"screen_name\":\"chakams\",\"location\":\"nigeria\",\"description\":\"https:\\/\\/t.co\\/nJkBKmGLYa. Fatherhood...& Beyonce\",\"url\":\"https:\\/\\/t.co\\/02whuwMHPN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/02whuwMHPN\",\"expanded_url\":\"http:\\/\\/newsancenow.wordpress.com\",\"display_url\":\"newsancenow.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJkBKmGLYa\",\"expanded_url\":\"http:\\/\\/News.Music.Sport.Tech\",\"display_url\":\"News.Music.Sport.Tech\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":1015,\"friends_count\":960,\"listed_count\":54,\"created_at\":\"Sun Mar 22 19:56:46 +0000 2009\",\"favourites_count\":915,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117112,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1288863437360160771\\/F2yHcPgK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1288863437360160771\\/F2yHcPgK_normal.jpg\",\"profile_link_color\":\"9D582E\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2886\":{\"id\":1512828788,\"id_str\":\"1512828788\",\"name\":\"\\ud83c\\udf1fFaith\",\"screen_name\":\"faithluseno\",\"location\":\"Ke\",\"description\":\"LIVE TRUTH \\/ LIVE RIGHT \\/ LIVE GODLY\\/GOODLY\",\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/mishiefinthetemple\",\"display_url\":\"youtube.com\\/user\\/mishiefin\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5212,\"friends_count\":5543,\"listed_count\":9,\"created_at\":\"Thu Jun 13 08:58:42 +0000 2013\",\"favourites_count\":9146,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1512828788\\/1657043375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2887\":{\"id\":835211810,\"id_str\":\"835211810\",\"name\":\"StopBadLeadership\\u2712\\ud83d\\udce7\",\"screen_name\":\"SaveThePeoplle\",\"location\":\"Abuja, Nigeria\",\"description\":\"Injustice is a threat to peace, coexistence and development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":464,\"listed_count\":2,\"created_at\":\"Thu Sep 20 09:52:19 +0000 2012\",\"favourites_count\":3499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/835211810\\/1632594200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2888\":{\"id\":1137100939511377920,\"id_str\":\"1137100939511377920\",\"name\":\"Conzummate\",\"screen_name\":\"conzummate\",\"location\":\"UAE\",\"description\":\"A result-oriented Digital Marketing agency. Serving in Social Media Management, Digital Marketing, Web Development, Lead generation, and SEO.\",\"url\":\"https:\\/\\/t.co\\/SpEy0gixTj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SpEy0gixTj\",\"expanded_url\":\"http:\\/\\/conzummate.com\",\"display_url\":\"conzummate.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":701,\"listed_count\":0,\"created_at\":\"Fri Jun 07 20:56:05 +0000 2019\",\"favourites_count\":300,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":321,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543165334852616194\\/1wE8ZdSi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543165334852616194\\/1wE8ZdSi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1137100939511377920\\/1613926995\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2889\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2890\":{\"id\":1482356556813545473,\"id_str\":\"1482356556813545473\",\"name\":\"Nigeria youths for Peter Obi\",\"screen_name\":\"peterobimandate\",\"location\":\"Abuja, Nigeria\",\"description\":\"Everything Peter Obi\\/\\/Update Peter Obi...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237,\"friends_count\":225,\"listed_count\":3,\"created_at\":\"Sat Jan 15 14:18:54 +0000 2022\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482356556813545473\\/1659438195\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2891\":{\"id\":1491725022964105217,\"id_str\":\"1491725022964105217\",\"name\":\"Muyiwa Owen\",\"screen_name\":\"muyiwaowen\",\"location\":\"Nigeria\",\"description\":\"Wordpress website designer\\nPHP and Front-end developer\",\"url\":\"https:\\/\\/t.co\\/ByabPtyakR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ByabPtyakR\",\"expanded_url\":\"http:\\/\\/webpadi.com\",\"display_url\":\"webpadi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3521,\"friends_count\":13,\"listed_count\":2,\"created_at\":\"Thu Feb 10 10:45:47 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":731,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540947105698693122\\/G-0lhGk3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540947105698693122\\/G-0lhGk3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491725022964105217\\/1659410719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2892\":{\"id\":1109235758701924354,\"id_str\":\"1109235758701924354\",\"name\":\"Kaduna Phones & Cars PLUG.\",\"screen_name\":\"Phone_Stores\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Phones and cars Dealer , \\u260e\\ufe0f Or WhatsApp 07032655719\\/ 08033110080\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8366,\"friends_count\":8359,\"listed_count\":6,\"created_at\":\"Fri Mar 22 23:29:48 +0000 2019\",\"favourites_count\":158375,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33371,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481505324624400386\\/byywnq6J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481505324624400386\\/byywnq6J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1109235758701924354\\/1618277573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2893\":{\"id\":1507072848157974530,\"id_str\":\"1507072848157974530\",\"name\":\"CityHunter Majestys\",\"screen_name\":\"CityHunterMaje1\",\"location\":\"Nigeria\",\"description\":\"COMEDIAN\",\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/majestysComedy\",\"display_url\":\"youtube.com\\/c\\/majestysCome\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 24 19:12:57 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507072848157974530\\/1649238032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2894\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2895\":{\"id\":943112178,\"id_str\":\"943112178\",\"name\":\"Nditah Sam \\ud83e\\udd80 #OBIdient\",\"screen_name\":\"nditah_sammy\",\"location\":\"Nigeria\",\"description\":\"CTO @ PMT | #AWSCommunityBuilder #PrismaAmbassad\\nSeek Truth, Be Kind! Tweets are mine.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":2249,\"listed_count\":4,\"created_at\":\"Mon Nov 12 09:03:53 +0000 2012\",\"favourites_count\":4708,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2234,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428023396244262912\\/T69NAMml_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428023396244262912\\/T69NAMml_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/943112178\\/1623483322\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2896\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2897\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2898\":{\"id\":433620593,\"id_str\":\"433620593\",\"name\":\"F.Fayankinnu&Co\",\"screen_name\":\"ffcproperties\",\"location\":\"Abuja\",\"description\":\"Estate Surveyors and Valuers, Property Consultants, Property Managers.\\nWe do:Valuation, Agency,(sales & lease), property management & more\",\"url\":\"https:\\/\\/t.co\\/XGOCfY9yO5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XGOCfY9yO5\",\"expanded_url\":\"https:\\/\\/ffayankinnu-co-estate-surveyors.business.site\",\"display_url\":\"\\u2026nnu-co-estate-surveyors.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":171,\"friends_count\":408,\"listed_count\":0,\"created_at\":\"Sat Dec 10 20:05:02 +0000 2011\",\"favourites_count\":122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554226105703403520\\/lSJFQnuK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554226105703403520\\/lSJFQnuK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/433620593\\/1601753715\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2899\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2900\":{\"id\":994199758406287361,\"id_str\":\"994199758406287361\",\"name\":\"DEXIT ARMY\\ud83d\\udcb9(MR DEXIT)\",\"screen_name\":\"Bigwig430\",\"location\":\"Nigeria\",\"description\":\"A Crypto trader and Investor, BLOCKCHAIN enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":609,\"friends_count\":831,\"listed_count\":6,\"created_at\":\"Wed May 09 12:57:48 +0000 2018\",\"favourites_count\":16010,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461387979017048072\\/HjkCAWBb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461387979017048072\\/HjkCAWBb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/994199758406287361\\/1649685977\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2901\":{\"id\":931326091,\"id_str\":\"931326091\",\"name\":\"Dr Opiyansky\",\"screen_name\":\"Opiyansky\",\"location\":\"Abuja\",\"description\":\"A Nigerian Patriot who loves to make friends and help people.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":247,\"listed_count\":0,\"created_at\":\"Wed Nov 07 05:38:10 +0000 2012\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487311163780218884\\/EP6lJaRR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487311163780218884\\/EP6lJaRR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/931326091\\/1643436539\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2902\":{\"id\":1549747236451631105,\"id_str\":\"1549747236451631105\",\"name\":\"Opta Punter\",\"screen_name\":\"OptaPunter\",\"location\":\"Somewhere in Nigeria\",\"description\":\"Opta Punter | football lover \\u26bd| \\u2022 #CR7 \\ud83d\\udc10| Arsenal\\ud83c\\udf88| Sport business \\ud83e\\ude99| sporty bet \\ud83d\\udd34 bet9ja \\ud83d\\udcb5 | adventure \\ud83d\\udeeb\\ud83c\\udfd6\\ufe0f\\ud83c\\udfdd\\ufe0f\\ud83c\\udf10\",\"url\":\"https:\\/\\/t.co\\/zbHTHXtlL4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zbHTHXtlL4\",\"expanded_url\":\"https:\\/\\/t.me\\/+LlS_o_0JOUxkYTlk\",\"display_url\":\"t.me\\/+LlS_o_0JOUxkY\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":57,\"listed_count\":0,\"created_at\":\"Wed Jul 20 13:25:26 +0000 2022\",\"favourites_count\":250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":64,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549832668329771010\\/kASyuuMe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549832668329771010\\/kASyuuMe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549747236451631105\\/1658343876\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2903\":{\"id\":1332786054546513922,\"id_str\":\"1332786054546513922\",\"name\":\"Yaasir\\u00a9\",\"screen_name\":\"Yaaseir\",\"location\":\"Nigeria\",\"description\":\"Follower Of Sheikh Ibrahim Zakzaky (H). I share news about Islamic movement & Sheikh Zakzaky (H) as well as sharing the victim's account of #ZariaMassacre. \\ud83d\\udcf7\\ud83d\\udcdd\",\"url\":\"https:\\/\\/t.co\\/PNDm7fujjg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PNDm7fujjg\",\"expanded_url\":\"http:\\/\\/www.imnig.org\",\"display_url\":\"imnig.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1538,\"friends_count\":1425,\"listed_count\":3,\"created_at\":\"Sat Nov 28 20:39:45 +0000 2020\",\"favourites_count\":2621,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4681,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530563089225207808\\/sHM4s_Gr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530563089225207808\\/sHM4s_Gr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1332786054546513922\\/1655234868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2904\":{\"id\":1491728260002156546,\"id_str\":\"1491728260002156546\",\"name\":\"Darlington\",\"screen_name\":\"Darling41595671\",\"location\":\"Abuja, Nigeria\",\"description\":\"Enjoy every day like is your last day , travel to new places\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Thu Feb 10 10:58:45 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491728785561071617\\/S_JjQB2P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491728785561071617\\/S_JjQB2P_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2905\":{\"id\":1553132452750802944,\"id_str\":\"1553132452750802944\",\"name\":\"Sammy Crowd\",\"screen_name\":\"CrowdSammy\",\"location\":\"nigeria\",\"description\":\"Hello, Samuel is my name, Am from West Africa. If you need to raise a serious fund because you have a serious business or problem? Kindly contact me!!\",\"url\":\"https:\\/\\/t.co\\/OKqWfBRHJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OKqWfBRHJX\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/sammy_crowd\",\"display_url\":\"fiverr.com\\/sammy_crowd\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Fri Jul 29 21:37:04 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553133079715274759\\/adPuD39Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553133079715274759\\/adPuD39Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553132452750802944\\/1659130860\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2906\":{\"id\":1399943458920402949,\"id_str\":\"1399943458920402949\",\"name\":\"Nigerians for peace and justice\",\"screen_name\":\"NFPJNig\",\"location\":\"Nigeria \",\"description\":\"Mobilising Civic Action to Counter Hate Speech and Violent Extremism both Online and Offline. Unity and Security? Vote Peter Obi for 9ja President #PeterObi2023\",\"url\":\"https:\\/\\/t.co\\/PsTqTr9Q2M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PsTqTr9Q2M\",\"expanded_url\":\"https:\\/\\/www.end-violence.org\\/members\\/african-cultural-awareness-norway\",\"display_url\":\"end-violence.org\\/members\\/africa\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1715,\"friends_count\":3039,\"listed_count\":1,\"created_at\":\"Wed Jun 02 04:19:06 +0000 2021\",\"favourites_count\":1871,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4963,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536555310600822784\\/9KoxG7-7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536555310600822784\\/9KoxG7-7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399943458920402949\\/1659890608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2907\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2908\":{\"id\":908861707363209216,\"id_str\":\"908861707363209216\",\"name\":\"Brandor X Inc.\",\"screen_name\":\"brandorxinc\",\"location\":\"Nigeria\",\"description\":\"Full Service Brand Consulting Agency \\ud83c\\udfaf Strategy | Visual Design | Brand Development\\/Management | Marketing & Promotions | Content | Brand Audit\\/Optimisation\",\"url\":\"https:\\/\\/t.co\\/Xpd0oCJ5vK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Xpd0oCJ5vK\",\"expanded_url\":\"http:\\/\\/www.brandorxinc.com\",\"display_url\":\"brandorxinc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":92,\"friends_count\":12,\"listed_count\":3,\"created_at\":\"Sat Sep 16 01:14:51 +0000 2017\",\"favourites_count\":409,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554986321931902978\\/E5G0dMLO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554986321931902978\\/E5G0dMLO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/908861707363209216\\/1659573693\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2909\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2910\":{\"id\":756445926735114240,\"id_str\":\"756445926735114240\",\"name\":\"Emmanuel SObio\\ud83c\\uddf7\\ud83c\\uddfa\",\"screen_name\":\"sobioemma\",\"location\":\"Nigeria\",\"description\":\"NFTs, Crypto, Digital Books.\",\"url\":\"https:\\/\\/t.co\\/FYYEoTIQ0V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FYYEoTIQ0V\",\"expanded_url\":\"http:\\/\\/bobbysobio.gumroad.com\",\"display_url\":\"bobbysobio.gumroad.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":488,\"listed_count\":6,\"created_at\":\"Fri Jul 22 11:08:57 +0000 2016\",\"favourites_count\":19156,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7869,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1446683983929085956\\/q1f_2e4w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1446683983929085956\\/q1f_2e4w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/756445926735114240\\/1633793106\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2911\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2912\":{\"id\":1541712126166941696,\"id_str\":\"1541712126166941696\",\"name\":\"Concerned Nigerians 4 Peter Obi\",\"screen_name\":\"CN4PO\",\"location\":\"Abuja\",\"description\":\"Official Page of Concerned Nigerians for Peter Obi support (CNPO)\",\"url\":\"https:\\/\\/t.co\\/bttwwxHdjL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bttwwxHdjL\",\"expanded_url\":\"https:\\/\\/concernednigeria4obi.com\",\"display_url\":\"concernednigeria4obi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Tue Jun 28 09:18:04 +0000 2022\",\"favourites_count\":19,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545428832592748544\\/vbi5AmHb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545428832592748544\\/vbi5AmHb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541712126166941696\\/1656408321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2913\":{\"id\":1380609695602376704,\"id_str\":\"1380609695602376704\",\"name\":\"SammyGray\",\"screen_name\":\"SammyGrayE3\",\"location\":\"Nigeria\",\"description\":\"influencer, Crypto enthusiast, Graphic designer, Community manager.\\nlet's talk about crypto\\ud83d\\ude0a\\n\\n#DeFi #Metaverse, #NFT\\n$paw #Paw\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":96,\"friends_count\":651,\"listed_count\":2,\"created_at\":\"Fri Apr 09 19:53:19 +0000 2021\",\"favourites_count\":1042,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1638,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514641160261845000\\/nBOn5Yne_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514641160261845000\\/nBOn5Yne_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1380609695602376704\\/1649953568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2914\":{\"id\":1519705607472881666,\"id_str\":\"1519705607472881666\",\"name\":\"Andrew Kunz\",\"screen_name\":\"AndrewKunz7\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Thu Apr 28 15:50:43 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519706516122742785\\/-Fo-mEbQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519706516122742785\\/-Fo-mEbQ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2915\":{\"id\":4403164115,\"id_str\":\"4403164115\",\"name\":\"\\ud835\\udd6e\\ud835\\udd8d\\ud835\\udd9a\\ud835\\udd90\\ud835\\udd9c\\ud835\\udd9a\\ud835\\udd8a\\ud835\\udd87\\ud835\\udd9a\\ud835\\udd90\\ud835\\udd86\\ud83d\\udc05\\ud83d\\udd57\",\"screen_name\":\"Zeus_el_Savage\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":153,\"friends_count\":438,\"listed_count\":0,\"created_at\":\"Mon Dec 07 08:59:57 +0000 2015\",\"favourites_count\":5145,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4183,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536411238984556548\\/3Wluw_jX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536411238984556548\\/3Wluw_jX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4403164115\\/1655293431\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2916\":{\"id\":829298967456407553,\"id_str\":\"829298967456407553\",\"name\":\"OmoHalleluyah\",\"screen_name\":\"oye_goke\",\"location\":\"Oyo, Nigeria\",\"description\":\"Leo \\u264c\\ufe0f Unpredictable \\ud83d\\ude43 On a Different diet \\ud83d\\ude0e Manchester United... I FoLLow BaCk ASAP\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":209,\"friends_count\":343,\"listed_count\":0,\"created_at\":\"Wed Feb 08 12:00:56 +0000 2017\",\"favourites_count\":1800,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1270990407426551810\\/3g-0VkP9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1270990407426551810\\/3g-0VkP9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829298967456407553\\/1659650719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2917\":{\"id\":1380253676850188289,\"id_str\":\"1380253676850188289\",\"name\":\"Fast-Paced_Sloth\",\"screen_name\":\"FastPacedSloth\",\"location\":\"CO\",\"description\":\"PS4 Streamer\\n@twitch #affiliate\\nProfessional Sloth |\\nSpread Love, Not Hate |\\nSmile, it's contagious!\\nTIK TOK: @FastPacedSloth\",\"url\":\"https:\\/\\/t.co\\/ewlxI2TIKL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ewlxI2TIKL\",\"expanded_url\":\"https:\\/\\/www.twitch.tv\\/fast_paced_sloth\",\"display_url\":\"twitch.tv\\/fast_paced_slo\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":24,\"listed_count\":0,\"created_at\":\"Thu Apr 08 20:18:25 +0000 2021\",\"favourites_count\":492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":473,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1380255376994541571\\/Twzlq66y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1380255376994541571\\/Twzlq66y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1380253676850188289\\/1617914946\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2918\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2919\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2920\":{\"id\":1112132117876670464,\"id_str\":\"1112132117876670464\",\"name\":\"Dimples\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Twenty_naira\",\"location\":\"Nigeria\",\"description\":\"I'm an administrator with managerial techniques.\\nI'm proud to be an African.\\nHausa empire\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":310,\"listed_count\":0,\"created_at\":\"Sat Mar 30 23:18:54 +0000 2019\",\"favourites_count\":10379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484127262610006018\\/4_VgaYRF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484127262610006018\\/4_VgaYRF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1112132117876670464\\/1650041610\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2921\":{\"id\":1301589823338278912,\"id_str\":\"1301589823338278912\",\"name\":\"trender_sam\",\"screen_name\":\"trender_sam\",\"location\":\"Nigeria\",\"description\":\"omo, sha I just dey!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Thu Sep 03 18:36:31 +0000 2020\",\"favourites_count\":436,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1308750802316656641\\/UQfXieMV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1308750802316656641\\/UQfXieMV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301589823338278912\\/1620834167\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2922\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2923\":{\"id\":1252284507270643713,\"id_str\":\"1252284507270643713\",\"name\":\"Ordinary Alhaji\",\"screen_name\":\"Humanity_First5\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Humanitarian\\ud83d\\ude4c Alutarian\\u270a\\ud83c\\udffdResearcher\\u270d\\ufe0f Thinker\\ud83d\\ude47\\ud83c\\udffd\\u200d\\u2642\\ufe0fPolitical Scientist\\ud83d\\udcdaConscienstist\\ud83e\\udd26Motivator\\ud83d\\udcaa Volunteer \\ud83d\\udc6b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":552,\"friends_count\":411,\"listed_count\":0,\"created_at\":\"Mon Apr 20 17:14:51 +0000 2020\",\"favourites_count\":402,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":137,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505131996321927170\\/ON9ZzcvU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505131996321927170\\/ON9ZzcvU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1252284507270643713\\/1647686406\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2924\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2925\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2926\":{\"id\":1302372543307882499,\"id_str\":\"1302372543307882499\",\"name\":\"kinqbrizy\",\"screen_name\":\"kinqbrizy1\",\"location\":\"Nigeria\",\"description\":\"I AM A DEMIGOD \\ud83d\\udc7d Bookings: \\ud83d\\udce7 Okoliep909@gmail.com \\u260e\\ufe0f 09035229540 WANT YOU OUT NOW!! \\ud83d\\udc47\",\"url\":\"https:\\/\\/t.co\\/WXl5yr37si\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WXl5yr37si\",\"expanded_url\":\"https:\\/\\/streamlink.to\\/iykeman-Kinqbrizy-want-you\",\"display_url\":\"streamlink.to\\/iykeman-Kinqbr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1063,\"friends_count\":936,\"listed_count\":0,\"created_at\":\"Sat Sep 05 22:26:43 +0000 2020\",\"favourites_count\":11210,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1986,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491761085728403458\\/td8JFaHc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491761085728403458\\/td8JFaHc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302372543307882499\\/1599345448\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2927\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2928\":{\"id\":1220433994866663426,\"id_str\":\"1220433994866663426\",\"name\":\"correct shoes plug.\",\"screen_name\":\"krafti101\",\"location\":\"\",\"description\":\"i dey sell better shoes, slides, snickers,boots, crocs and lots more even hand made...just keeping checking my tweets.\\u270c\\u270c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":395,\"friends_count\":896,\"listed_count\":0,\"created_at\":\"Thu Jan 23 19:52:04 +0000 2020\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511939031688519684\\/GQTdnwK6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511939031688519684\\/GQTdnwK6_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2929\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2930\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2931\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2934,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2932\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2933\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2934\":{\"id\":271349890,\"id_str\":\"271349890\",\"name\":\"Omuwa Godswill\\ud83c\\uddf3\\ud83c\\uddec[A.V.A.T.A.R]\",\"screen_name\":\"Intel_Avatar\",\"location\":\"Nigeria\",\"description\":\"A Lover Of Jesus Christ, Scientist, Social Media Manager and Influencer. Special Assistant to Edo State Governor (MEDIA)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":579,\"friends_count\":1010,\"listed_count\":3,\"created_at\":\"Thu Mar 24 09:59:48 +0000 2011\",\"favourites_count\":1733,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/271349890\\/1650137083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2935\":{\"id\":1322083981890904065,\"id_str\":\"1322083981890904065\",\"name\":\"Fatima\",\"screen_name\":\"Ftm_Zahra10\",\"location\":\"Nigeria\",\"description\":\"You don\\u2019t know your future.\\nBut you know Allah, so Trust Allah, because Allah has control over your future.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4871,\"friends_count\":4952,\"listed_count\":1,\"created_at\":\"Fri Oct 30 07:52:49 +0000 2020\",\"favourites_count\":6908,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16263,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499101703232229381\\/4rq2tvFq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499101703232229381\\/4rq2tvFq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1322083981890904065\\/1634976383\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2936\":{\"id\":1000797269757759488,\"id_str\":\"1000797269757759488\",\"name\":\"Benco\",\"screen_name\":\"Am_Benco\",\"location\":\"Nigeria\",\"description\":\"Comedian\\/MC\\/Actor\\nThe toothbrush guy \\ud83c\\uddf3\\ud83c\\uddec\\n\\n\\ud83d\\udce9 uzochukwubernard@gmail.com\",\"url\":\"https:\\/\\/t.co\\/oFy4RXQBTw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oFy4RXQBTw\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCBUjeIAtu9OrCMXszhLg8ew\",\"display_url\":\"youtube.com\\/channel\\/UCBUje\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Sun May 27 17:53:57 +0000 2018\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548976040084738048\\/Brc3mKC4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548976040084738048\\/Brc3mKC4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1000797269757759488\\/1658139791\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2937\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2938\":{\"id\":1547267093736919040,\"id_str\":\"1547267093736919040\",\"name\":\"Treasuregodwin7\",\"screen_name\":\"Treasuregodwi7\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m here to make you laugh. follow me on instagram, YouTube and tiktok @Treasuregodwin7\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":319,\"listed_count\":0,\"created_at\":\"Wed Jul 13 17:10:16 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547268125783203841\\/fQw-ZgbJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547268125783203841\\/fQw-ZgbJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547267093736919040\\/1657751470\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2939\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2940\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2941\":{\"id\":2881941982,\"id_str\":\"2881941982\",\"name\":\"The Rockdweller \\ud83d\\udc51\\ud83d\\udd25\\ud83d\\udc51\\ud83d\\udcc8\\ud83d\\udcc8\\ud83d\\udcc8\",\"screen_name\":\"The_Rockdweller\",\"location\":\"New Nigeria \",\"description\":\"I am the only Rockdweller you will ever meet in your life. I quit writing for Forex. By 2031 I would have raised 40 millionaires($) through Fx trading .\",\"url\":\"https:\\/\\/t.co\\/uZz7WrSFO5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uZz7WrSFO5\",\"expanded_url\":\"http:\\/\\/therockdweller.com\",\"display_url\":\"therockdweller.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":434,\"friends_count\":1037,\"listed_count\":13,\"created_at\":\"Mon Nov 17 23:47:20 +0000 2014\",\"favourites_count\":810,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1347796283143155714\\/JmUvGpYW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1347796283143155714\\/JmUvGpYW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2881941982\\/1642051992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2942\":{\"id\":1302402292323414016,\"id_str\":\"1302402292323414016\",\"name\":\"Everyone's_Favorite\\ud83d\\udc7c\\ud83d\\ude15\",\"screen_name\":\"SiR__DONY\",\"location\":\"Kano, Nigeria\",\"description\":\"If u unfollow me ,broo u know za Drill \\nit will backfire\\n__\\u270a\\ud83d\\udeb6\",\"url\":\"https:\\/\\/t.co\\/7mti9QrPPy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7mti9QrPPy\",\"expanded_url\":\"http:\\/\\/amsisawa.co.ng\",\"display_url\":\"amsisawa.co.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":963,\"friends_count\":1084,\"listed_count\":0,\"created_at\":\"Sun Sep 06 00:24:57 +0000 2020\",\"favourites_count\":1481,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1771,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555232631050178560\\/VmVA3pG2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555232631050178560\\/VmVA3pG2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302402292323414016\\/1642113867\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2943\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2944\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2945\":{\"id\":829042549708951552,\"id_str\":\"829042549708951552\",\"name\":\"Brian Podcast\",\"screen_name\":\"brian_naija\",\"location\":\"Nigeria\",\"description\":\"latest news and updates, and podcast shows on NA WE OWN podcast...\",\"url\":\"https:\\/\\/t.co\\/WZQo7N6y89\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WZQo7N6y89\",\"expanded_url\":\"https:\\/\\/anchor.fm\\/benson-christian\\/episodes\\/Say-no-to-depression-e9vhvr\",\"display_url\":\"anchor.fm\\/benson-christi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89,\"friends_count\":85,\"listed_count\":0,\"created_at\":\"Tue Feb 07 19:02:01 +0000 2017\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":241,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1047449493438976000\\/W-uftmFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1047449493438976000\\/W-uftmFA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829042549708951552\\/1578441219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2946\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2947\":{\"id\":1507072848157974530,\"id_str\":\"1507072848157974530\",\"name\":\"CityHunter Majestys\",\"screen_name\":\"CityHunterMaje1\",\"location\":\"Nigeria\",\"description\":\"COMEDIAN\",\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/majestysComedy\",\"display_url\":\"youtube.com\\/c\\/majestysCome\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 24 19:12:57 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507072848157974530\\/1649238032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2948\":{\"id\":537681495,\"id_str\":\"537681495\",\"name\":\"Samuel Adebayo Abodunrin\",\"screen_name\":\"wf_impact\",\"location\":\"Nigeria\",\"description\":\"Content Creator| Writer| Presenter|Producer| Social Analyst| Volunteer|Public Speaker| Compere| Sports Analyst| Scriptwriter\",\"url\":\"https:\\/\\/t.co\\/70py7GpFu2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/70py7GpFu2\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/abodunrin3\",\"display_url\":\"facebook.com\\/abodunrin3\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1029,\"friends_count\":949,\"listed_count\":1,\"created_at\":\"Mon Mar 26 21:57:49 +0000 2012\",\"favourites_count\":2807,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1307398558845415424\\/Jx_iE9p__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1307398558845415424\\/Jx_iE9p__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/537681495\\/1600693965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2949\":{\"id\":285106640,\"id_str\":\"285106640\",\"name\":\"Tayo Moses Omojesu It'sWl\",\"screen_name\":\"OMOJESUCFR\",\"location\":\"Abuja\",\"description\":\"\\ud83d\\udd31ACTOR\\n\\ud83d\\udd31COMEDIAN \\n\\ud83d\\udd31CONTENT CREATOR\\n\\ud83d\\udd31ENTERTAINER\\n\\ud83d\\udd31ROMANS 9:15-16\\ud83d\\ude4f\\n\\ud83d\\ude49Follow FB,IG@OMOJESUCFR For HILARIOUS COMEDY SKITS\\ud83d\\udc4dPLS SUBSCRIBE TO MY YOUTUBE\",\"url\":\"https:\\/\\/t.co\\/FqkIFn75OR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FqkIFn75OR\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCgiklYEkNn5DTSIY921GGOA\\/videos\",\"display_url\":\"m.youtube.com\\/channel\\/UCgikl\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":178,\"friends_count\":216,\"listed_count\":2,\"created_at\":\"Wed Apr 20 14:55:43 +0000 2011\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481650953111494664\\/XNEpjc-g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481650953111494664\\/XNEpjc-g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/285106640\\/1584709317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2950\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2951\":{\"id\":1547297863759273985,\"id_str\":\"1547297863759273985\",\"name\":\"memetopia\",\"screen_name\":\"memetopiaz\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\ude04\\ud83d\\ude04\\ud83d\\ude04 \\ud83d\\udca5 Follow me for funny memes daily \\ud83d\\udca5\\ud83d\\ude04\\ud83d\\ude04\\ud83d\\ude04 \\n- @memetopiaz\\n- #Memes\\n- #memetopiaz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Wed Jul 13 19:12:29 +0000 2022\",\"favourites_count\":228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547317967943245824\\/t5OhpAis_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547317967943245824\\/t5OhpAis_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547297863759273985\\/1657912736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2952\":{\"id\":955505347724267520,\"id_str\":\"955505347724267520\",\"name\":\"Brief\",\"screen_name\":\"BriefNig\",\"location\":\"Nigeria\",\"description\":\"Facts first. \\nNews|Business|Politics|Technology\",\"url\":\"https:\\/\\/t.co\\/tPEAfFCNPi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tPEAfFCNPi\",\"expanded_url\":\"Http:\\/\\/Brief.ng\",\"display_url\":\"Brief.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":520,\"friends_count\":840,\"listed_count\":1,\"created_at\":\"Mon Jan 22 18:20:02 +0000 2018\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538961548672221184\\/98NTaMXm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538961548672221184\\/98NTaMXm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/955505347724267520\\/1655370944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2953\":{\"id\":2521008697,\"id_str\":\"2521008697\",\"name\":\"Fatima Sana Shaikh\",\"screen_name\":\"fatima_shaaikh\",\"location\":\"UAE\",\"description\":\"Actress\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":280,\"friends_count\":2206,\"listed_count\":1,\"created_at\":\"Sat May 24 17:48:43 +0000 2014\",\"favourites_count\":1195,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1893,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ABB8C2\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549048819131760640\\/T95y3_5W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549048819131760640\\/T95y3_5W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2521008697\\/1659701883\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2954\":{\"id\":1355475092063531014,\"id_str\":\"1355475092063531014\",\"name\":\"edublogs.ng\",\"screen_name\":\"edublogsng\",\"location\":\"Nigeria\",\"description\":\"This is the Official Twitter handle of https:\\/\\/t.co\\/hD3cUZnzvM\\nWhatsApp - https:\\/\\/t.co\\/nfi1H2ukLP\",\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"expanded_url\":\"https:\\/\\/edublogs.com.ng\\/\",\"display_url\":\"edublogs.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"expanded_url\":\"https:\\/\\/edublogs.com.ng\\/\",\"display_url\":\"edublogs.com.ng\",\"indices\":[39,62]},{\"url\":\"https:\\/\\/t.co\\/nfi1H2ukLP\",\"expanded_url\":\"https:\\/\\/wa.me\\/2349092463561\",\"display_url\":\"wa.me\\/2349092463561\",\"indices\":[74,97]}]}},\"protected\":false,\"followers_count\":192,\"friends_count\":158,\"listed_count\":2,\"created_at\":\"Sat Jan 30 11:17:17 +0000 2021\",\"favourites_count\":265,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523563936817328128\\/RPAA9Zrm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523563936817328128\\/RPAA9Zrm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355475092063531014\\/1652080964\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2955\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2934,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2956\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2957\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2958\":{\"id\":854041219156070400,\"id_str\":\"854041219156070400\",\"name\":\"GistHub\",\"screen_name\":\"GistHubNaija\",\"location\":\"Nigeria\",\"description\":\"JUICY GIST\\/EXCLUSIVE CONTENT\\/ NEWS ON THE GO!\\nlet's feed your eyes with today's happenings, follow us for instant follow back.\\nRight here we just love gist!\",\"url\":\"https:\\/\\/t.co\\/MQ9XkH2fx9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MQ9XkH2fx9\",\"expanded_url\":\"http:\\/\\/gisthubnaija.com\",\"display_url\":\"gisthubnaija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Mon Apr 17 18:37:48 +0000 2017\",\"favourites_count\":647,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12618,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/854054720004124672\\/s0QnMIHp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/854054720004124672\\/s0QnMIHp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2959\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2960\":{\"id\":965369032277884928,\"id_str\":\"965369032277884928\",\"name\":\"Onyishi Francis\",\"screen_name\":\"FrancisOnyishi\",\"location\":\"Abuja\",\"description\":\"Enthusiastic\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":91,\"listed_count\":1,\"created_at\":\"Sun Feb 18 23:34:47 +0000 2018\",\"favourites_count\":1551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965369032277884928\\/1650277677\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2961\":{\"id\":1152619362978816000,\"id_str\":\"1152619362978816000\",\"name\":\"99 _qudus\",\"screen_name\":\"99_qudus\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcb2crypto currency \\ud83d\\udcb2 Never expect to get help from others. learn to get through life alone. Get up and fight !!\",\"url\":\"https:\\/\\/t.co\\/3hcpVbSVPS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3hcpVbSVPS\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/99qudus\\/\",\"display_url\":\"instagram.com\\/99qudus\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3080,\"friends_count\":3046,\"listed_count\":8,\"created_at\":\"Sat Jul 20 16:40:45 +0000 2019\",\"favourites_count\":3665,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":719,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549702841710907399\\/m32KJKrY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549702841710907399\\/m32KJKrY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1152619362978816000\\/1658312936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2962\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2963\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2964\":{\"id\":1249672282764697602,\"id_str\":\"1249672282764697602\",\"name\":\"\\ud83d\\udd31\\u269c\\ufe0f\\u2728Abdullateef Mikail\\u2728\\ud83d\\udd31\\u269c\\ufe0f\",\"screen_name\":\"AmbassadorDKing\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Agriculturalists| Business Entrepreneur |Ready For Business|Self Confident|Policaly Oriented|Laycon\\u2019s Fanatics|Entertaining|Sports Lover|Human Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":305,\"listed_count\":0,\"created_at\":\"Mon Apr 13 12:14:43 +0000 2020\",\"favourites_count\":204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2886,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1249672282764697602\\/1601240623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2965\":{\"id\":749993188690128897,\"id_str\":\"749993188690128897\",\"name\":\"Ismail Mahamadou\",\"screen_name\":\"jamanisti\",\"location\":\"Niamey\",\"description\":\"\\u00c9tudiants, consultant en informatique\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Mon Jul 04 15:48:05 +0000 2016\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/749997524514201600\\/Wzq7PrO0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/749997524514201600\\/Wzq7PrO0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/749993188690128897\\/1659622714\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2966\":{\"id\":1519261928404787200,\"id_str\":\"1519261928404787200\",\"name\":\"Olu baba\",\"screen_name\":\"Olubabaoshole\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m the water that has no enemy, for all your challenges and spiritual problems call me for solutions +2348067718912.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed Apr 27 10:27:49 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519262187554058241\\/xhID2Ob__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519262187554058241\\/xhID2Ob__normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2967\":{\"id\":1282590760718733312,\"id_str\":\"1282590760718733312\",\"name\":\"OnlinePikin\",\"screen_name\":\"Online_Pikin\",\"location\":\"Nigeria\",\"description\":\"A niche blog telling stories on brands, causes, people & events from around the globe.\",\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\",\"display_url\":\"onlinepikin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Mon Jul 13 08:20:59 +0000 2020\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282590760718733312\\/1659910806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2968\":{\"id\":3053955908,\"id_str\":\"3053955908\",\"name\":\"Emmanuel Ifeanyichukwu Joseph\",\"screen_name\":\"emmaijoseph\",\"location\":\"Nigeria\",\"description\":\"A website Developer, Graphic Designer, Video Editor with @ozoneicttech \\nContent Creator & author with @olearnzone\\n#emmaijoseph\\n#programmer\\n#business\\n#developer\",\"url\":\"https:\\/\\/t.co\\/2JqzhdtDE5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2JqzhdtDE5\",\"expanded_url\":\"http:\\/\\/olearnzone.com.ng\\/author\\/ije\",\"display_url\":\"olearnzone.com.ng\\/author\\/ije\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":287,\"friends_count\":2671,\"listed_count\":0,\"created_at\":\"Sun Mar 01 23:01:08 +0000 2015\",\"favourites_count\":208,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484790360228384770\\/Ef9yr1hW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484790360228384770\\/Ef9yr1hW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3053955908\\/1650222889\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2969\":{\"id\":1249672282764697602,\"id_str\":\"1249672282764697602\",\"name\":\"\\ud83d\\udd31\\u269c\\ufe0f\\u2728Abdullateef Mikail\\u2728\\ud83d\\udd31\\u269c\\ufe0f\",\"screen_name\":\"AmbassadorDKing\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Agriculturalists| Business Entrepreneur |Ready For Business|Self Confident|Policaly Oriented|Laycon\\u2019s Fanatics|Entertaining|Sports Lover|Human Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":305,\"listed_count\":0,\"created_at\":\"Mon Apr 13 12:14:43 +0000 2020\",\"favourites_count\":204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2886,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1249672282764697602\\/1601240623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2970\":{\"id\":366542977,\"id_str\":\"366542977\",\"name\":\"DJ BORSH OF THE BUJ\",\"screen_name\":\"Dj_borsh\",\"location\":\"Abuja, Nigeria\",\"description\":\"PRO DJ Official DJ @coolfmabuja || Bookings -@gmail.com || Events || Music promotions (Radio) 08037511961 (apple,spotify,audiomack ) || DM open for business\",\"url\":\"https:\\/\\/t.co\\/bvPu25Jo3z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bvPu25Jo3z\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/dj_borsh\",\"display_url\":\"linktr.ee\\/dj_borsh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6874,\"friends_count\":6660,\"listed_count\":6,\"created_at\":\"Fri Sep 02 11:06:10 +0000 2011\",\"favourites_count\":40363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":45920,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1444696333965742091\\/XjEod9-l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1444696333965742091\\/XjEod9-l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/366542977\\/1550914762\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2971\":{\"id\":880015105135607808,\"id_str\":\"880015105135607808\",\"name\":\"Zeeter Oliver\",\"screen_name\":\"OliverZeeter\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec Afrofusion Songstress of Abuja \\n. \\n\\nInstagram\\n\\n- @zeeteroliver \\n\\nMy Music \\n- \\n\\nhttps:\\/\\/t.co\\/nccSFc5qkp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nccSFc5qkp\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Zeeteroliver\",\"display_url\":\"linktr.ee\\/Zeeteroliver\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":326,\"friends_count\":1050,\"listed_count\":1,\"created_at\":\"Wed Jun 28 10:48:45 +0000 2017\",\"favourites_count\":904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":784,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880015105135607808\\/1659766982\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2972\":{\"id\":1452049831195815941,\"id_str\":\"1452049831195815941\",\"name\":\"Oscar Azolibe\",\"screen_name\":\"OAzolibe\",\"location\":\"Nigeria\",\"description\":\"Digital Creator (Going Viral Tonight)\",\"url\":\"https:\\/\\/t.co\\/kljsePsTsX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kljsePsTsX\",\"expanded_url\":\"http:\\/\\/www.oscarblog.online\",\"display_url\":\"oscarblog.online\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":23,\"listed_count\":0,\"created_at\":\"Sat Oct 23 23:10:56 +0000 2021\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522124094409486336\\/PWFgkJvS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522124094409486336\\/PWFgkJvS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2973\":{\"id\":103711724,\"id_str\":\"103711724\",\"name\":\"Sewen Lad \\ud83c\\udf10\",\"screen_name\":\"LadSewen\",\"location\":\"Nigeria\",\"description\":\"Photographer, Psych expert, Strategic Thinker, Actor & VoiceOver artist, NFT enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":317,\"friends_count\":582,\"listed_count\":3,\"created_at\":\"Mon Jan 11 00:52:39 +0000 2010\",\"favourites_count\":1293,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1449,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508912847329411083\\/v-hBEJxi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508912847329411083\\/v-hBEJxi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/103711724\\/1657750350\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2974\":{\"id\":1502296508561076228,\"id_str\":\"1502296508561076228\",\"name\":\"Ghost\",\"screen_name\":\"K_h_a_l_i_f\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf39\\ud83d\\ude4f\\ud83c\\udf39\\ud83e\\udd0c\\ud83c\\udf39\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\nfor more good content \\n\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/Fxod4Kti8y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fxod4Kti8y\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCE_EzAq_s-1-8RkoIsvVGjQ\",\"display_url\":\"youtube.com\\/channel\\/UCE_Ez\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1060,\"friends_count\":2803,\"listed_count\":1,\"created_at\":\"Fri Mar 11 14:53:23 +0000 2022\",\"favourites_count\":411,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":98,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554892941331660801\\/W2BP-YbL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554892941331660801\\/W2BP-YbL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502296508561076228\\/1648993901\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2975\":{\"id\":999243488,\"id_str\":\"999243488\",\"name\":\"YINQAH_GE\\ud83d\\udc8e\",\"screen_name\":\"olayinkaige\",\"location\":\"abuja\",\"description\":\"When the street are jungle there can only be one king\",\"url\":\"https:\\/\\/t.co\\/apqEWyTEq9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/apqEWyTEq9\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/olayinka-ige-107a9b83\",\"display_url\":\"linkedin.com\\/in\\/olayinka-ig\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":462,\"listed_count\":0,\"created_at\":\"Sun Dec 09 13:02:30 +0000 2012\",\"favourites_count\":268,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":983,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458170461827129344\\/G0RbTMIf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458170461827129344\\/G0RbTMIf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/999243488\\/1424367031\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2976\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2977\":{\"id\":1245884934889377792,\"id_str\":\"1245884934889377792\",\"name\":\"Infactng\",\"screen_name\":\"infactng\",\"location\":\"Abuja, Nigeria\",\"description\":\"Investigations, Long Form Narrative Journalism.\",\"url\":\"https:\\/\\/t.co\\/EJP8BVaMUr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EJP8BVaMUr\",\"expanded_url\":\"http:\\/\\/www.infactng.com\",\"display_url\":\"infactng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":28,\"friends_count\":54,\"listed_count\":0,\"created_at\":\"Fri Apr 03 01:25:22 +0000 2020\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":629,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1352945880622657536\\/7RlzRQ8a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1352945880622657536\\/7RlzRQ8a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1245884934889377792\\/1611402382\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2978\":{\"id\":1526991568749617159,\"id_str\":\"1526991568749617159\",\"name\":\"Peter Obi's errand boy\\u26aa\",\"screen_name\":\"Nwakaibeya001\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":80,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed May 18 18:22:37 +0000 2022\",\"favourites_count\":1316,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":491,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535874958332682240\\/s-zYdYwZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535874958332682240\\/s-zYdYwZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526991568749617159\\/1652898824\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2979\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2980\":{\"id\":1382325349107830792,\"id_str\":\"1382325349107830792\",\"name\":\"gobarta_\",\"screen_name\":\"gobarta_\",\"location\":\"Nigeria\",\"description\":\"A safe space to trade and Barter. Trade smartly, stay happy. To download app, click on https:\\/\\/t.co\\/TCAu2rxr34\",\"url\":\"https:\\/\\/t.co\\/7UxZUdRazF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7UxZUdRazF\",\"expanded_url\":\"http:\\/\\/www.gobarta.com\",\"display_url\":\"gobarta.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TCAu2rxr34\",\"expanded_url\":\"https:\\/\\/play.google.com\\/store\\/apps\\/details?id=com.gobarter.barter_ui\",\"display_url\":\"play.google.com\\/store\\/apps\\/det\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":5,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Wed Apr 14 13:30:42 +0000 2021\",\"favourites_count\":179,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1382325590934556672\\/xtSIvAbQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1382325590934556672\\/xtSIvAbQ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2981\":{\"id\":1395444137609019403,\"id_str\":\"1395444137609019403\",\"name\":\"DemetersLawFirm #DivorceNigeria\",\"screen_name\":\"DemetersF\",\"location\":\"Nigeria\",\"description\":\"Everything You Need To Know About Marriage, Divorce & Custody in Nigeria\",\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/MzAgams\",\"display_url\":\"linktr.ee\\/MzAgams\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Thu May 20 18:21:13 +0000 2021\",\"favourites_count\":153,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1395444137609019403\\/1656532889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2982\":{\"id\":2876181225,\"id_str\":\"2876181225\",\"name\":\"zubenna\",\"screen_name\":\"zubboke42\",\"location\":\"Porthacourt,Nigeria \",\"description\":\"Keep pushing never give up ,You can\\u2019t be unlucky for a year.|Port harcourt boy Original|IG:- @ zubenna\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":62,\"listed_count\":0,\"created_at\":\"Fri Nov 14 09:27:22 +0000 2014\",\"favourites_count\":338,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":158,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2876181225\\/1653251845\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2983\":{\"id\":1504520696822652933,\"id_str\":\"1504520696822652933\",\"name\":\"Spacemall\",\"screen_name\":\"spacemallio\",\"location\":\"Nigeria\",\"description\":\"providing you virtual store to manage your business, customers, staffs, sales & share receipt. publish your product online & metaverse in 1 click.\",\"url\":\"https:\\/\\/t.co\\/OsSOrKzD2w\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsSOrKzD2w\",\"expanded_url\":\"https:\\/\\/www.spacemall.io\",\"display_url\":\"spacemall.io\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":3,\"listed_count\":1,\"created_at\":\"Thu Mar 17 18:11:21 +0000 2022\",\"favourites_count\":22,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524401095208050690\\/JUwzGEXm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524401095208050690\\/JUwzGEXm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1504520696822652933\\/1652289482\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2984\":{\"id\":1226286909560938498,\"id_str\":\"1226286909560938498\",\"name\":\"Bargain Fortress\",\"screen_name\":\"BargainFortress\",\"location\":\"Nigeria\",\"description\":\"Bringing you the best bargain deals from the West ... Don't blink \\ud83d\\ude09 #bargainhunter Handler: @donzama\",\"url\":\"https:\\/\\/t.co\\/dEwbECLa49\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dEwbECLa49\",\"expanded_url\":\"https:\\/\\/bargainfortress.company.site\\/\",\"display_url\":\"bargainfortress.company.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Sat Feb 08 23:29:38 +0000 2020\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":329,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1383663032975302661\\/KpKHj9iZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1383663032975302661\\/KpKHj9iZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1226286909560938498\\/1583785212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2985\":{\"id\":1940444742,\"id_str\":\"1940444742\",\"name\":\"Papi Designer\",\"screen_name\":\"Rukegetrich09\",\"location\":\"Abuja, Nigeria\",\"description\":\"UI\\/UX Designer \\u25c7 Agriprenuer \\u2667 Tech Explorer.\",\"url\":\"https:\\/\\/t.co\\/NvjrC8ktD3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NvjrC8ktD3\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/rukevweovwigho\",\"display_url\":\"behance.net\\/rukevweovwigho\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":832,\"friends_count\":517,\"listed_count\":0,\"created_at\":\"Sun Oct 06 10:08:43 +0000 2013\",\"favourites_count\":3444,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553727915241644032\\/LXQkyVq5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553727915241644032\\/LXQkyVq5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1940444742\\/1586845469\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2986\":{\"id\":1517581269927874562,\"id_str\":\"1517581269927874562\",\"name\":\"Myabove\",\"screen_name\":\"welcometoabove\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udfc6 NO \\ud83e\\udd47 TOP Deriv Exchanger\\n\\ud83c\\udfc6 Deriv, LiteForex, Hfx Affiliate & Partner\\n\\ud83d\\udcb0 Crypto Exchange\\n\\ud83d\\udcb0 Skrill Exchange\\n\\ud83d\\udcb0 Perfect money Exchange\",\"url\":\"https:\\/\\/t.co\\/VUyvP3PUgj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VUyvP3PUgj\",\"expanded_url\":\"http:\\/\\/www.myabove.ng\",\"display_url\":\"myabove.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":8,\"listed_count\":0,\"created_at\":\"Fri Apr 22 19:09:24 +0000 2022\",\"favourites_count\":136,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":126,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517582402868109312\\/zA-h_cVj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517582402868109312\\/zA-h_cVj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517581269927874562\\/1650964903\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2987\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2988\":{\"id\":1554874725498855424,\"id_str\":\"1554874725498855424\",\"name\":\"Zig Properties\",\"screen_name\":\"Zigproperties\",\"location\":\"Keffi, Nigeria\",\"description\":\"Zig Properties is positioned as a go to company for Agricultural purpose lands and other properties in Nasarawa and Abuja\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":45,\"listed_count\":0,\"created_at\":\"Wed Aug 03 17:00:09 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554878043214192641\\/p4IqPn-L_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554878043214192641\\/p4IqPn-L_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554874725498855424\\/1659546920\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2989\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2990\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2991\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2992\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2993\":{\"id\":1077871486306783232,\"id_str\":\"1077871486306783232\",\"name\":\"Bright Agbons\",\"screen_name\":\"bright_agbons\",\"location\":\"Nigeria\",\"description\":\"URBANE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":254,\"friends_count\":965,\"listed_count\":0,\"created_at\":\"Wed Dec 26 10:19:22 +0000 2018\",\"favourites_count\":4978,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2321,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483186904313040901\\/Nk-Xh8OL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483186904313040901\\/Nk-Xh8OL_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2994\":{\"id\":1496896114422910976,\"id_str\":\"1496896114422910976\",\"name\":\"Vidan\",\"screen_name\":\"vidantv\",\"location\":\"Nigeria\",\"description\":\"Media personality\",\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"expanded_url\":\"https:\\/\\/m.me\\/Vistavid?fbclid=IwAR2GeMKUOyTZ7k5mLRnikdX9Bp4XZy39rsNY28RWzE5-xltW-MDslU1c08Q\",\"display_url\":\"m.me\\/Vistavid?fbcli\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Feb 24 17:14:06 +0000 2022\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496896114422910976\\/1656066107\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2995\":{\"id\":271349890,\"id_str\":\"271349890\",\"name\":\"Omuwa Godswill\\ud83c\\uddf3\\ud83c\\uddec[A.V.A.T.A.R]\",\"screen_name\":\"Intel_Avatar\",\"location\":\"Nigeria\",\"description\":\"A Lover Of Jesus Christ, Scientist, Social Media Manager and Influencer. Special Assistant to Edo State Governor (MEDIA)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":579,\"friends_count\":1010,\"listed_count\":3,\"created_at\":\"Thu Mar 24 09:59:48 +0000 2011\",\"favourites_count\":1733,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/271349890\\/1650137083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2996\":{\"id\":1522548511522312199,\"id_str\":\"1522548511522312199\",\"name\":\"Socialbrandcity\",\"screen_name\":\"socialbrandcity\",\"location\":\"Nigeria\",\"description\":\"Socialbrandcity\\n\\ud83d\\ude9bConnect with your audience\\n\\ud83d\\udef8Manage your handles & Make sales \\n\\ud83c\\udf86Digital Biz consult.\\n#webdesign #logo #pagemanager\\n08033454426\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Fri May 06 12:07:37 +0000 2022\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":164,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522548737939226627\\/4fucmdND_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522548737939226627\\/4fucmdND_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522548511522312199\\/1651857713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2997\":{\"id\":1481529455801737217,\"id_str\":\"1481529455801737217\",\"name\":\"energy_machinecfr\",\"screen_name\":\"Christoph7Onoja\",\"location\":\"Abuja, Nigeria\",\"description\":\"Prolific master of ceremony!! hypeman!! Comedian!! Dataanalysisexpert!! statistician cannabis enthusiasts \\ud83c\\udf43\\ud83c\\udf43\\ud83c\\udf43\\ud83c\\udf43the herb has all the answers tweet me by 420\",\"url\":\"https:\\/\\/t.co\\/q9rOjPrcEW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q9rOjPrcEW\",\"expanded_url\":\"http:\\/\\/www.dnmtmusic.com\",\"display_url\":\"dnmtmusic.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":110,\"friends_count\":392,\"listed_count\":10,\"created_at\":\"Thu Jan 13 07:32:18 +0000 2022\",\"favourites_count\":94,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537970207175495683\\/y1nyk3zg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537970207175495683\\/y1nyk3zg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481529455801737217\\/1642085726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2998\":{\"id\":1519105800450551808,\"id_str\":\"1519105800450551808\",\"name\":\"Gidexart\",\"screen_name\":\"Timmy_cruise1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Fine artist \\ud83c\\udfa8\\nturn on post notification\\ud83e\\udd7a\\u2665\\ufe0f\\ud83e\\udd1d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":328,\"friends_count\":1201,\"listed_count\":0,\"created_at\":\"Wed Apr 27 00:07:16 +0000 2022\",\"favourites_count\":1348,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":498,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554902166640500736\\/PJHGgn5N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554902166640500736\\/PJHGgn5N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519105800450551808\\/1651020007\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"2999\":{\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"name\":\"AsabariConsultativeCouncil\",\"screen_name\":\"Asabari_CC\",\"location\":\"Saki, Nigeria\",\"description\":\"Official Twitter handle, Asabari Consultative Council, Saki Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Sat Feb 17 04:38:51 +0000 2018\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":794,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3000\":{\"id\":1493903863749185536,\"id_str\":\"1493903863749185536\",\"name\":\"Crystos Doukas\",\"screen_name\":\"CrystosD\",\"location\":\"UAE\",\"description\":\"Just working on my path to ultimate self love & everything else\\nIllustrator - Animator in \\ud83c\\udde6\\ud83c\\uddea\\nCypriot \\ud83c\\udde8\\ud83c\\uddfe\\nInterested in politics, human & civil rights issues\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":528,\"friends_count\":248,\"listed_count\":0,\"created_at\":\"Wed Feb 16 11:03:43 +0000 2022\",\"favourites_count\":300,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":614,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493904576524976129\\/8jLtnhcp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493904576524976129\\/8jLtnhcp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493903863749185536\\/1645009756\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3001\":{\"id\":1096361679573696514,\"id_str\":\"1096361679573696514\",\"name\":\"Caridad Charity Foundation\",\"screen_name\":\"caridad_charity\",\"location\":\"Nigeria\",\"description\":\"Caridad Charity Foundation, rebuilding Women&Girl Personality, SocialEco thru, Empowerment, Education,Health & Climate Action info@caridadcharityfoundation.org\",\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"expanded_url\":\"http:\\/\\/www.caridadcharityfoundation.org\",\"display_url\":\"caridadcharityfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Fri Feb 15 10:52:48 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1096361679573696514\\/1606838455\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3002\":{\"id\":934312788176097280,\"id_str\":\"934312788176097280\",\"name\":\"Richie\\ud83d\\uddef\",\"screen_name\":\"Tomilee2002\",\"location\":\"Nigeria\",\"description\":\"Farmer and Consultant. Wizkid Fc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":335,\"friends_count\":2938,\"listed_count\":14,\"created_at\":\"Sat Nov 25 06:48:22 +0000 2017\",\"favourites_count\":1285,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2509,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534170677120536576\\/pzedf0SK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534170677120536576\\/pzedf0SK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/934312788176097280\\/1518545269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3003\":{\"id\":290664223,\"id_str\":\"290664223\",\"name\":\"Alex Agbo\",\"screen_name\":\"AlexAgbo23\",\"location\":\"Nigeria\",\"description\":\"Researcher | Tech | Enugu Rangers | Manchester United | Bullshit Detector | Boxing | Not Woke | Retweets are to encourage engagement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1296,\"friends_count\":999,\"listed_count\":1,\"created_at\":\"Sat Apr 30 17:39:30 +0000 2011\",\"favourites_count\":12984,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22315,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537543419727331331\\/uB55bkR0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537543419727331331\\/uB55bkR0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/290664223\\/1539174638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3004\":{\"id\":2456657931,\"id_str\":\"2456657931\",\"name\":\"Ogunlade Abiola Aremu\",\"screen_name\":\"OgunladeAbiola1\",\"location\":\"Nigeria\",\"description\":\"Promoting creativity to the maximum | Critic of bad governance | Blogger | Unapologetically, a Christian | Lover of sports| #ObidientlYusful\",\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCUBL1qgBRBpQROJrliXuwLA\",\"display_url\":\"youtube.com\\/channel\\/UCUBL1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1258,\"friends_count\":146,\"listed_count\":3,\"created_at\":\"Thu Apr 03 06:35:21 +0000 2014\",\"favourites_count\":1885,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3452,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2456657931\\/1646759743\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3005\":{\"id\":1208455455799951363,\"id_str\":\"1208455455799951363\",\"name\":\"Bernard Twise\",\"screen_name\":\"BernardTwise\",\"location\":\"Nigeria\",\"description\":\"I am an up coming musician..... from 9ja\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":260,\"friends_count\":948,\"listed_count\":0,\"created_at\":\"Sat Dec 21 18:33:52 +0000 2019\",\"favourites_count\":6882,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":840,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511763029716783105\\/6VhGmfTM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511763029716783105\\/6VhGmfTM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1208455455799951363\\/1637743082\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3006\":{\"id\":1472152760397307906,\"id_str\":\"1472152760397307906\",\"name\":\"Supreme_Continental\",\"screen_name\":\"SupremeContine1\",\"location\":\"Ilora, Oyo state. Ibadan\",\"description\":\"\\ud83d\\udc95A new Dimension of Luxury & Relaxation \\ud83d\\udc95\\nFor booking and reservation\\ud83d\\udc47\\n\\ud83d\\udcde09155578002\\n\\ud83d\\udcbb https:\\/\\/t.co\\/w5ZdX2elaX\\nWhatsApp: 09155578002\",\"url\":\"https:\\/\\/t.co\\/N2yMyIQ1IL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N2yMyIQ1IL\",\"expanded_url\":\"http:\\/\\/www.supremecontinentalhotel.com\",\"display_url\":\"supremecontinentalhotel.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w5ZdX2elaX\",\"expanded_url\":\"https:\\/\\/www.supremecontinentalhotel.com\\/\",\"display_url\":\"supremecontinentalhotel.com\",\"indices\":[86,109]}]}},\"protected\":false,\"followers_count\":48,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Sat Dec 18 10:32:45 +0000 2021\",\"favourites_count\":183,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":176,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1472153863998390273\\/lyhOayCg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1472153863998390273\\/lyhOayCg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1472152760397307906\\/1639828029\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3007\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3008\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3009\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3010\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3011\":{\"id\":1100468667815477248,\"id_str\":\"1100468667815477248\",\"name\":\"daps :)\",\"screen_name\":\"beatsbydaps\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"expanded_url\":\"https:\\/\\/mainstack.me\\/daps\",\"display_url\":\"mainstack.me\\/daps\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":274,\"friends_count\":434,\"listed_count\":2,\"created_at\":\"Tue Feb 26 18:52:30 +0000 2019\",\"favourites_count\":4493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100468667815477248\\/1655589645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3012\":{\"id\":191985235,\"id_str\":\"191985235\",\"name\":\"Ashinze\",\"screen_name\":\"TwittMe_Ash\",\"location\":\"In Nigeria\",\"description\":\"Movie Freak! #TheWalkingDead fan\\nI love the #MCU \\ud83d\\ude0d\\ud83d\\ude0d\\nI love DC\\nI love NG \\ud83c\\uddf3\\ud83c\\uddec\\nVFD 1009447152\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":354,\"friends_count\":1508,\"listed_count\":2,\"created_at\":\"Fri Sep 17 21:50:01 +0000 2010\",\"favourites_count\":913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2795,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"15E81F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418991753797984263\\/SpUYwH29_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418991753797984263\\/SpUYwH29_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/191985235\\/1645780003\",\"profile_link_color\":\"00B348\",\"profile_sidebar_border_color\":\"30D413\",\"profile_sidebar_fill_color\":\"2CD627\",\"profile_text_color\":\"92E812\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3013\":{\"id\":1053641940665856000,\"id_str\":\"1053641940665856000\",\"name\":\"Peculiar Hype\\ud83d\\udd4a\\ufe0f\",\"screen_name\":\"PeculiarHype\",\"location\":\"Nigeria\",\"description\":\"Online Promoter | Song(s) Distribution On streaming Platforms and Trend\\ud83d\\udcf1| Artiste AnR\\n\\nDM for Business Conversations Only\\nThank You.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2457,\"friends_count\":2576,\"listed_count\":2,\"created_at\":\"Sat Oct 20 13:39:49 +0000 2018\",\"favourites_count\":15777,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521841576653242368\\/6NCwlrbg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521841576653242368\\/6NCwlrbg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1053641940665856000\\/1654427953\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3014\":{\"id\":1531631522889060353,\"id_str\":\"1531631522889060353\",\"name\":\"Lamar Fund$\",\"screen_name\":\"LamarFund\",\"location\":\"Nigeria\",\"description\":\"World BoY\\u2b50\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/0JHHwvQJnK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0JHHwvQJnK\",\"expanded_url\":\"https:\\/\\/youtu.be\\/hdXP_OnSD9k\",\"display_url\":\"youtu.be\\/hdXP_OnSD9k\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue May 31 13:39:55 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555106656383651841\\/y8gNthtX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555106656383651841\\/y8gNthtX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531631522889060353\\/1659601547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3015\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3016\":{\"id\":437092964,\"id_str\":\"437092964\",\"name\":\"\\ud83e\\udd34\\ud83c\\udffb\",\"screen_name\":\"DDadalekan\",\"location\":\"Nigeria\",\"description\":\"#Icon Royalty \\ud83d\\udc51, Brand influencer, Entertainer\\ud83d\\udc68\\u200d\\ud83c\\udfa4. https:\\/\\/t.co\\/zvFQjsuA6s #bitcoin #crypto #doge #trx\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zvFQjsuA6s\",\"expanded_url\":\"http:\\/\\/gate.io\",\"display_url\":\"gate.io\",\"indices\":[51,74]}]}},\"protected\":false,\"followers_count\":1962,\"friends_count\":4159,\"listed_count\":7,\"created_at\":\"Thu Dec 15 00:33:18 +0000 2011\",\"favourites_count\":2417,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8451,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1346799782392696832\\/y1j0GovH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1346799782392696832\\/y1j0GovH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/437092964\\/1609937267\",\"profile_link_color\":\"94D487\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3017\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3018\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3019\":{\"id\":968935741232504833,\"id_str\":\"968935741232504833\",\"name\":\"Michaella \\ud83d\\udde3\\ud83d\\udde3 \\ud83c\\uddf8\\ud83c\\uddf1\",\"screen_name\":\"kellajabbie\",\"location\":\"Sierra Leone\",\"description\":\"Procurement and supply \\/ Manager @kaemonevents1 \\/Manutd fan\\/ mills and boon fan\\/ my sanity is more important.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7752,\"friends_count\":6341,\"listed_count\":6,\"created_at\":\"Wed Feb 28 19:47:37 +0000 2018\",\"favourites_count\":18992,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9772,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476659422847975424\\/n3lSbTAG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476659422847975424\\/n3lSbTAG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/968935741232504833\\/1640898017\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3020\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3021\":{\"id\":1175103486838681601,\"id_str\":\"1175103486838681601\",\"name\":\"SAT TOWN BOY\\ud83e\\udd4f\",\"screen_name\":\"BadBoiEmi\",\"location\":\"Nigeria\",\"description\":\"artists\\/Footballer\\/ OND & Bsc in Business administration \\ud83c\\udf93 Be Nice to people & don\\u2019t Rush Life \\u270c\\ud83c\\udffb\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3258,\"friends_count\":3078,\"listed_count\":0,\"created_at\":\"Fri Sep 20 17:45:03 +0000 2019\",\"favourites_count\":4034,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4437,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547483559140679682\\/zE1fpey7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547483559140679682\\/zE1fpey7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1175103486838681601\\/1644059387\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3022\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3023\":{\"id\":2367244171,\"id_str\":\"2367244171\",\"name\":\"Oluwagbenga Osunlaja\",\"screen_name\":\"Iamlifted001\",\"location\":\"nigeria\",\"description\":\"Auditor| Corporate event host| Public speaker trainee| Content writer| self development expert.\",\"url\":\"https:\\/\\/t.co\\/XPlCj9Ttvh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XPlCj9Ttvh\",\"expanded_url\":\"http:\\/\\/liftedpen.blogspot.com\",\"display_url\":\"liftedpen.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":107,\"friends_count\":819,\"listed_count\":0,\"created_at\":\"Sat Mar 01 15:41:45 +0000 2014\",\"favourites_count\":21035,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521376105864876034\\/qUSiU-ro_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521376105864876034\\/qUSiU-ro_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2367244171\\/1600827404\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3024\":{\"id\":770789905601531904,\"id_str\":\"770789905601531904\",\"name\":\"Abdullah\",\"screen_name\":\"xminister0\",\"location\":\"Minna, Nigeria\",\"description\":\"\\ud83d\\udcceThe world is just like a sinking boat only the real will float\\/ Synthetic indices\\/ NFT and more\\n#TrustTheProcess \\n@NFTbyNATURE\",\"url\":\"https:\\/\\/t.co\\/dHb3gSUDzu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dHb3gSUDzu\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/untitled-collection-285367071\",\"display_url\":\"opensea.io\\/collection\\/unt\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":113,\"listed_count\":5,\"created_at\":\"Wed Aug 31 01:06:49 +0000 2016\",\"favourites_count\":962,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":263,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534559969969942528\\/upMSxvYd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534559969969942528\\/upMSxvYd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/770789905601531904\\/1585488076\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3025\":{\"id\":1511760262386302980,\"id_str\":\"1511760262386302980\",\"name\":\"Committed Soul Women Health Advocacy Africa Initi\",\"screen_name\":\"officialcoswohi\",\"location\":\"Nigeria\",\"description\":\"To see a Nigeria where vulnerable and Disadvantage Women Have access to human rights and Healthcare Services Without bias\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Wed Apr 06 17:38:40 +0000 2022\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552605050706468865\\/fiSgdGME_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552605050706468865\\/fiSgdGME_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1511760262386302980\\/1659004868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3026\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3027\":{\"id\":1509446119314661376,\"id_str\":\"1509446119314661376\",\"name\":\"PR.NG Firm\",\"screen_name\":\"PRFirmNG\",\"location\":\"Nigeria\",\"description\":\"PR Firm PR Agency Put your business out here in Nigeria . Be first . Strategy specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":66,\"listed_count\":0,\"created_at\":\"Thu Mar 31 08:23:08 +0000 2022\",\"favourites_count\":1089,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":683,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535718455856463873\\/-9TqM6Fu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535718455856463873\\/-9TqM6Fu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3028\":{\"id\":290929222,\"id_str\":\"290929222\",\"name\":\"Kelly Steveo\",\"screen_name\":\"kellysteveo\",\"location\":\"Nigeria\",\"description\":\"|International Education Promoter|(INTL|EDU|TOUR|BUSINESS CONSULTANT @ StudyAbroadConceptz&Tourz)\\n|Volunteer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1988,\"friends_count\":4993,\"listed_count\":10,\"created_at\":\"Sun May 01 05:44:48 +0000 2011\",\"favourites_count\":14361,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8778,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521434183176007680\\/_am-Tv2l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521434183176007680\\/_am-Tv2l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/290929222\\/1544103089\",\"profile_link_color\":\"B40B43\",\"profile_sidebar_border_color\":\"CC3366\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3029\":{\"id\":1539343942969335809,\"id_str\":\"1539343942969335809\",\"name\":\"omoniyi layo\",\"screen_name\":\"debirexx\",\"location\":\"Abuja\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Tue Jun 21 20:26:27 +0000 2022\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539343942969335809\\/1656059959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3030\":{\"id\":1395444137609019403,\"id_str\":\"1395444137609019403\",\"name\":\"DemetersLawFirm #DivorceNigeria\",\"screen_name\":\"DemetersF\",\"location\":\"Nigeria\",\"description\":\"Everything You Need To Know About Marriage, Divorce & Custody in Nigeria\",\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/MzAgams\",\"display_url\":\"linktr.ee\\/MzAgams\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Thu May 20 18:21:13 +0000 2021\",\"favourites_count\":153,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1395444137609019403\\/1656532889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3031\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3032\":{\"id\":1536393679480532993,\"id_str\":\"1536393679480532993\",\"name\":\"Flares\",\"screen_name\":\"theFlareabove\",\"location\":\"Nigeria\",\"description\":\"Arts, nature, objects and their beauty. \\ud83d\\ude0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Mon Jun 13 17:03:02 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536393906744700930\\/Ppf5RBpZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536393906744700930\\/Ppf5RBpZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536393679480532993\\/1655141144\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3033\":{\"id\":262305138,\"id_str\":\"262305138\",\"name\":\"Numero Uno\",\"screen_name\":\"uno_fini\",\"location\":\"Nigeria\",\"description\":\"Music Producer | Architect |\\u25a0| \\nIG- uno_fini |\\u25a0|\\nE-mail\\ud83d\\udce7- unofini5@gmail.com\\nMobile\\ud83d\\udcf1- 2348056266310\\nTribeTreeLife\",\"url\":\"https:\\/\\/t.co\\/HenkzSQlMO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HenkzSQlMO\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/unofini\",\"display_url\":\"linktr.ee\\/unofini\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":661,\"friends_count\":727,\"listed_count\":4,\"created_at\":\"Mon Mar 07 20:01:57 +0000 2011\",\"favourites_count\":12263,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3817,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFF04D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421247446206791683\\/miEUZVKA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421247446206791683\\/miEUZVKA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/262305138\\/1593654596\",\"profile_link_color\":\"0099CC\",\"profile_sidebar_border_color\":\"FFF8AD\",\"profile_sidebar_fill_color\":\"F6FFD1\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3034\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3035\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3036\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3037\":{\"id\":1536809855368974339,\"id_str\":\"1536809855368974339\",\"name\":\"Abdul Foodies\",\"screen_name\":\"AbdulFoodies\",\"location\":\"Jos, Nigeria \",\"description\":\"Foodstuff vegetables and fruits wholesale and retail nation wide delivery\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jun 14 20:38:19 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":54,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3038\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3039\":{\"id\":1493449741266472962,\"id_str\":\"1493449741266472962\",\"name\":\"ABASIFREKE\",\"screen_name\":\"akanscript_\",\"location\":\"Nigeria\",\"description\":\"Content is all I do. I see it in everything.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":24,\"listed_count\":0,\"created_at\":\"Tue Feb 15 04:59:13 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540038757654593536\\/d-9YHpkB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540038757654593536\\/d-9YHpkB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493449741266472962\\/1656008841\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3040\":{\"id\":1514607566357073927,\"id_str\":\"1514607566357073927\",\"name\":\"Net_makanaki_comics\",\"screen_name\":\"NetMakanaki\",\"location\":\"Nigeria\",\"description\":\"The Handky Man\\ud83e\\udde3\\ud83d\\ude05\",\"url\":\"https:\\/\\/t.co\\/xtHeJzBSUA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xtHeJzBSUA\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC2u6AlHfaDDKeAe_lKM8sow\",\"display_url\":\"youtube.com\\/channel\\/UC2u6A\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":510,\"listed_count\":0,\"created_at\":\"Thu Apr 14 14:12:54 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523437056172736512\\/VK5VOAoP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523437056172736512\\/VK5VOAoP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514607566357073927\\/1652051073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3041\":{\"id\":1524995178305671169,\"id_str\":\"1524995178305671169\",\"name\":\"M-zord Auto Republic\",\"screen_name\":\"m_zordAutorep\",\"location\":\"Nigeria\",\"description\":\"I welcome you if you are an Automotive lovers, name any cars you love and let us tell you something amazing about it. \\nIf you are not a car lover, you will be!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":206,\"listed_count\":0,\"created_at\":\"Fri May 13 06:09:34 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547132961564270592\\/TRHB31QX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547132961564270592\\/TRHB31QX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524995178305671169\\/1652515185\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3042\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3043\":{\"id\":1458001472503926787,\"id_str\":\"1458001472503926787\",\"name\":\"Aja Peace\",\"screen_name\":\"ajapeace1\",\"location\":\"Nigeria\",\"description\":\"A prestigious, crypto enthusiast , always ready to impact.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1031,\"friends_count\":551,\"listed_count\":50,\"created_at\":\"Tue Nov 09 09:21:19 +0000 2021\",\"favourites_count\":22921,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1085,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3044\":{\"id\":1372115429766877184,\"id_str\":\"1372115429766877184\",\"name\":\"Robert Kingin'\",\"screen_name\":\"RobertAshu_\",\"location\":\"Nigeria\",\"description\":\"A learning business Entrepreneur, Creative, I Counsel, I Motivate, I Teach. Co-founder Barber's Closet https:\\/\\/t.co\\/VU6LBxDlT5\",\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100063973153033\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100063973153033\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[103,126]}]}},\"protected\":false,\"followers_count\":13,\"friends_count\":80,\"listed_count\":0,\"created_at\":\"Wed Mar 17 09:20:02 +0000 2021\",\"favourites_count\":123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552230869192015872\\/FrTqRW90_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552230869192015872\\/FrTqRW90_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372115429766877184\\/1653247358\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3045\":{\"id\":1204733699146833920,\"id_str\":\"1204733699146833920\",\"name\":\"Stark\\ud83d\\udc3a\\ud83d\\udc3a\",\"screen_name\":\"daniang_james\",\"location\":\"Jos, Nigeria\",\"description\":\"Architect, Interior Designer, 3d Visualization lover, Software freek\\ud83d\\ude02\\nChef \\ud83e\\udd62\\ud83e\\udd62\\nMinimalist Spender \\ud83e\\udd2a\\nEntrepreneur\\ud83d\\udcb0\\nReader\\nPhycology Enthusiast\",\"url\":\"https:\\/\\/t.co\\/zfNKjxYTHb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfNKjxYTHb\",\"expanded_url\":\"http:\\/\\/www.behance.net\\/JAMARKWA\",\"display_url\":\"behance.net\\/JAMARKWA\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":173,\"friends_count\":315,\"listed_count\":2,\"created_at\":\"Wed Dec 11 12:04:44 +0000 2019\",\"favourites_count\":345,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":139,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551307297514733569\\/26qVCWoZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551307297514733569\\/26qVCWoZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1204733699146833920\\/1659396737\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3046\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3047\":{\"id\":1538268358268837888,\"id_str\":\"1538268358268837888\",\"name\":\"Tea hexperrt\",\"screen_name\":\"THexperrt\",\"location\":\"Nigeria\",\"description\":\"Hey, I am TIJANI, a Digital Marketer skilled in Influencer marketing, social media marketing and Affiliate marketing. I am here to help contact if you need me.\",\"url\":\"https:\\/\\/t.co\\/1HeeMHPXPU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1HeeMHPXPU\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/teahexperrt\",\"display_url\":\"linktr.ee\\/teahexperrt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":106,\"listed_count\":0,\"created_at\":\"Sat Jun 18 21:12:28 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538276859707793408\\/TAbLPnEu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538276859707793408\\/TAbLPnEu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538268358268837888\\/1655588760\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3048\":{\"id\":1226318735822200833,\"id_str\":\"1226318735822200833\",\"name\":\"Kamous\",\"screen_name\":\"Kamous15\",\"location\":\"Ivory Coast\",\"description\":\"I believe in Africa \\ud83c\\udf1a\",\"url\":\"https:\\/\\/t.co\\/a0MBL6MkpC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/a0MBL6MkpC\",\"expanded_url\":\"http:\\/\\/www.yelen.co\",\"display_url\":\"yelen.co\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":118,\"listed_count\":0,\"created_at\":\"Sun Feb 09 01:36:09 +0000 2020\",\"favourites_count\":1427,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1226319045693235200\\/rH8AkFom_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1226319045693235200\\/rH8AkFom_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3049\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3050\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3051\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3052\":{\"id\":1519444188055670790,\"id_str\":\"1519444188055670790\",\"name\":\"Awana A gana\",\"screen_name\":\"awana_a_gana\",\"location\":\"Borno, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":101,\"listed_count\":0,\"created_at\":\"Wed Apr 27 22:31:58 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522302271639404545\\/JrnfoKQ0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522302271639404545\\/JrnfoKQ0_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3053\":{\"id\":2479822689,\"id_str\":\"2479822689\",\"name\":\"Adekola Abiodun\",\"screen_name\":\"nobleabey\",\"location\":\"Abuja, Nigeria\",\"description\":\"Interest in Finance, Big data, Data Analytics & Predictive Machine Learning\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":101,\"friends_count\":871,\"listed_count\":2,\"created_at\":\"Sat Apr 12 21:13:14 +0000 2014\",\"favourites_count\":1421,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515792914441453578\\/lOuPAMxa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515792914441453578\\/lOuPAMxa_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3054\":{\"id\":1524282286388170753,\"id_str\":\"1524282286388170753\",\"name\":\"Stevebluzz_official\",\"screen_name\":\"Stevebluzz__\",\"location\":\"Nigeria\",\"description\":\"Artiste\\nMusic is the oil I rub on my soul.\\nStevebluzz@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":96,\"listed_count\":0,\"created_at\":\"Wed May 11 06:57:06 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524282904565669888\\/WRi8p317_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524282904565669888\\/WRi8p317_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3055\":{\"id\":1164632120784039936,\"id_str\":\"1164632120784039936\",\"name\":\"Just Event Online Publication\",\"screen_name\":\"justeventsonlin\",\"location\":\"Nigeria\",\"description\":\"news, media publication, and events publication, former account @justeventonline\",\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"expanded_url\":\"http:\\/\\/justeventonline.com\",\"display_url\":\"justeventonline.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1215,\"friends_count\":68,\"listed_count\":1,\"created_at\":\"Thu Aug 22 20:15:36 +0000 2019\",\"favourites_count\":36,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1164632120784039936\\/1612162614\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3056\":{\"id\":835211810,\"id_str\":\"835211810\",\"name\":\"StopBadLeadership\\u2712\\ud83d\\udce7\",\"screen_name\":\"SaveThePeoplle\",\"location\":\"Abuja, Nigeria\",\"description\":\"Injustice is a threat to peace, coexistence and development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":464,\"listed_count\":2,\"created_at\":\"Thu Sep 20 09:52:19 +0000 2012\",\"favourites_count\":3499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/835211810\\/1632594200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3057\":{\"id\":1419998103772573698,\"id_str\":\"1419998103772573698\",\"name\":\"EGBO BLESSING\",\"screen_name\":\"EGBOBLESSING17\",\"location\":\"Nigeria\",\"description\":\"blessingmmesomachi@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 27 12:28:59 +0000 2021\",\"favourites_count\":22,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1419998453019643929\\/1Gy2IwZ2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1419998453019643929\\/1Gy2IwZ2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1419998103772573698\\/1652357758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3058\":{\"id\":902404597326766080,\"id_str\":\"902404597326766080\",\"name\":\"1mic De Rabbi\",\"screen_name\":\"officialonemic\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":205,\"friends_count\":475,\"listed_count\":0,\"created_at\":\"Tue Aug 29 05:36:36 +0000 2017\",\"favourites_count\":206,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328925022300286976\\/vqZFXovA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328925022300286976\\/vqZFXovA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/902404597326766080\\/1506661084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3059\":{\"id\":1391078083789197314,\"id_str\":\"1391078083789197314\",\"name\":\"JUST FOCUZ\",\"screen_name\":\"Oceanfocuz\",\"location\":\"Nigeria\",\"description\":\"Freelancer\\/\\/Fashionista\\/\\/Rotaractor\",\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/s2\\/32f940b784\",\"display_url\":\"fiverr.com\\/s2\\/32f940b784\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":200,\"listed_count\":2,\"created_at\":\"Sat May 08 17:11:12 +0000 2021\",\"favourites_count\":495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3060\":{\"id\":1391078083789197314,\"id_str\":\"1391078083789197314\",\"name\":\"JUST FOCUZ\",\"screen_name\":\"Oceanfocuz\",\"location\":\"Nigeria\",\"description\":\"Freelancer\\/\\/Fashionista\\/\\/Rotaractor\",\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/s2\\/32f940b784\",\"display_url\":\"fiverr.com\\/s2\\/32f940b784\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":200,\"listed_count\":2,\"created_at\":\"Sat May 08 17:11:12 +0000 2021\",\"favourites_count\":495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3061\":{\"id\":842401415981105152,\"id_str\":\"842401415981105152\",\"name\":\"JERAB WORLD\",\"screen_name\":\"JerryKatician01\",\"location\":\"Benue, Nigeria\",\"description\":\"Microbiologist.\\nEvent Organizer with JERABVOICE-MEDIA\\nConvener of KEPAawards\\/Miss Kwande Pageant.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Thu Mar 16 15:45:23 +0000 2017\",\"favourites_count\":3130,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":690,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395747325465800706\\/M-KIDhI4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395747325465800706\\/M-KIDhI4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842401415981105152\\/1602686767\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3062\":{\"id\":257007133,\"id_str\":\"257007133\",\"name\":\"TJ Saheed 'Wale\",\"screen_name\":\"TJSaheed\",\"location\":\"Abuja\",\"description\":\"I practice self-pampering\\ud83d\\ude00; @ngxgrp Swing, Trend and Position Trader \\ud83d\\udcc8\\ud83d\\udcc9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1739,\"friends_count\":1409,\"listed_count\":4,\"created_at\":\"Thu Feb 24 14:37:41 +0000 2011\",\"favourites_count\":715,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1182024139231678464\\/Ev4934J0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1182024139231678464\\/Ev4934J0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/257007133\\/1570651556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3063\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3064\":{\"id\":1121045969309773825,\"id_str\":\"1121045969309773825\",\"name\":\"NaijaRealityNews\",\"screen_name\":\"NaijaRealityNe1\",\"location\":\"Nigeria\",\"description\":\"News\\/\\/ Political updates\\/\\/ Entertainment\\/\\/\",\"url\":\"https:\\/\\/t.co\\/MX1HeKE6wv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MX1HeKE6wv\",\"expanded_url\":\"http:\\/\\/www.naijarealitynews.com\",\"display_url\":\"naijarealitynews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":186,\"friends_count\":178,\"listed_count\":3,\"created_at\":\"Wed Apr 24 13:39:21 +0000 2019\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1209958268296142848\\/H-rbfCaM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1209958268296142848\\/H-rbfCaM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1121045969309773825\\/1577311504\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3065\":{\"id\":1447468045153222658,\"id_str\":\"1447468045153222658\",\"name\":\"The Kampala Report\",\"screen_name\":\"KampalaReport\",\"location\":\"Uganda\",\"description\":\"https:\\/\\/t.co\\/3rgSeCcrSm. Uganda\\u2019s premier publishing and news and information platform.\",\"url\":\"https:\\/\\/t.co\\/c0IBiHnygH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c0IBiHnygH\",\"expanded_url\":\"http:\\/\\/thekampalareport.com\",\"display_url\":\"thekampalareport.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3rgSeCcrSm\",\"expanded_url\":\"http:\\/\\/theKampalaReport.com\",\"display_url\":\"theKampalaReport.com\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":973,\"friends_count\":390,\"listed_count\":4,\"created_at\":\"Mon Oct 11 07:44:27 +0000 2021\",\"favourites_count\":1172,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460131443141758979\\/APqiw-aD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460131443141758979\\/APqiw-aD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1447468045153222658\\/1636957440\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3066\":{\"id\":1307802721,\"id_str\":\"1307802721\",\"name\":\"Bankole Oluwatobi Emmanuel\",\"screen_name\":\"tobilobaphotog\",\"location\":\"Nigeria\",\"description\":\"A Portrait | Wedding | Event Photographer.\\nContacts: 07030243091, 07082726271\\nEmail: tobiloba42graphy@gmail.com\",\"url\":\"https:\\/\\/t.co\\/HSKHhkOjpw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HSKHhkOjpw\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2347030243091\",\"display_url\":\"wa.me\\/c\\/2347030243091\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":692,\"friends_count\":989,\"listed_count\":0,\"created_at\":\"Wed Mar 27 15:29:26 +0000 2013\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2242,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375453870323863553\\/a8tKACye_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375453870323863553\\/a8tKACye_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1307802721\\/1413736833\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3067\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3068\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2934,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3069\":{\"id\":1545322791960035331,\"id_str\":\"1545322791960035331\",\"name\":\"Davilisco\",\"screen_name\":\"davilisco\",\"location\":\"Nigeria\",\"description\":\"Song writer,lisco vibes \\ud83d\\udd25 my vibes beyond what you see,actor,dancer,entertainer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Fri Jul 08 08:24:20 +0000 2022\",\"favourites_count\":243,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545325361583505409\\/7XpVjGCI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545325361583505409\\/7XpVjGCI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3070\":{\"id\":1482662666992766979,\"id_str\":\"1482662666992766979\",\"name\":\"tahir lawal\",\"screen_name\":\"huameeyr_\",\"location\":\"Nigeria\",\"description\":\"Consumer Hotline:+65-31290538 support@wikifx.com +234-706 777 7762; +61-449895363 Telegram:+60-103342306 Whatsapp:+852-6613 1970; +44-7517747077\",\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/\",\"display_url\":\"wikifx.com\\/en\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":250,\"listed_count\":0,\"created_at\":\"Sun Jan 16 10:35:22 +0000 2022\",\"favourites_count\":147,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482662666992766979\\/1642330199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3071\":{\"id\":1282343050149232640,\"id_str\":\"1282343050149232640\",\"name\":\"Timotee\",\"screen_name\":\"iam_timotee\",\"location\":\"Abuja, Nigeria\",\"description\":\"https:\\/\\/t.co\\/31B8RvQ4RS\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/31B8RvQ4RS\",\"expanded_url\":\"https:\\/\\/ffm.to\\/afro-urban\",\"display_url\":\"ffm.to\\/afro-urban\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":402,\"friends_count\":427,\"listed_count\":0,\"created_at\":\"Sun Jul 12 15:56:39 +0000 2020\",\"favourites_count\":3447,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":657,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533919079366639616\\/yfzh0eMy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533919079366639616\\/yfzh0eMy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282343050149232640\\/1654971643\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3072\":{\"id\":1497847909068517377,\"id_str\":\"1497847909068517377\",\"name\":\"Ikenna Ugwu\",\"screen_name\":\"pastppl\",\"location\":\"Nigeria\",\"description\":\"Let\\u2019s go back #history\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Sun Feb 27 08:16:16 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508031684670853123\\/2FJv410X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508031684670853123\\/2FJv410X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497847909068517377\\/1648377791\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3073\":{\"id\":1317965393735143424,\"id_str\":\"1317965393735143424\",\"name\":\"Arma\",\"screen_name\":\"arma_lakes\",\"location\":\"Yorkshire and The Humber, Engl\",\"description\":\"Football Journalist \\u26bd\\nAspirations to Make A Change.\\nNobel Prize \\ud83e\\udd47\\n\\nConnect with me via https:\\/\\/t.co\\/YPNiJoIgnj\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YPNiJoIgnj\",\"expanded_url\":\"http:\\/\\/wa.link\\/mgufe3\",\"display_url\":\"wa.link\\/mgufe3\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":37,\"friends_count\":138,\"listed_count\":4,\"created_at\":\"Sun Oct 18 23:07:19 +0000 2020\",\"favourites_count\":1477,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2282,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491385938471178246\\/NtRQHIjR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491385938471178246\\/NtRQHIjR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317965393735143424\\/1644786447\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3074\":{\"id\":479754411,\"id_str\":\"479754411\",\"name\":\"Chidimma&Chidiebere\",\"screen_name\":\"Aneke_Twins\",\"location\":\"Nigeria\",\"description\":\"About Us: Prod,Actors, CEO Greenville production int'l Ltd, https:\\/\\/t.co\\/wKR7Bmm02h Our Blog: https:\\/\\/t.co\\/DjOlxl33Tb Our Fan Page: https:\\/\\/t.co\\/opXqRQZgUH 08036129789\",\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"expanded_url\":\"http:\\/\\/greenvilleproductions.com\",\"display_url\":\"greenvilleproductions.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wKR7Bmm02h\",\"expanded_url\":\"http:\\/\\/bit.ly\\/OdEnWv\",\"display_url\":\"bit.ly\\/OdEnWv\",\"indices\":[60,83]},{\"url\":\"https:\\/\\/t.co\\/DjOlxl33Tb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/U2eefG\",\"display_url\":\"bit.ly\\/U2eefG\",\"indices\":[94,117]},{\"url\":\"https:\\/\\/t.co\\/opXqRQZgUH\",\"expanded_url\":\"http:\\/\\/on.fb.me\\/OdEZv7\",\"display_url\":\"on.fb.me\\/OdEZv7\",\"indices\":[132,155]}]}},\"protected\":false,\"followers_count\":6050,\"friends_count\":369,\"listed_count\":26,\"created_at\":\"Tue Jan 31 18:43:22 +0000 2012\",\"favourites_count\":2238,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9419,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/479754411\\/1619194743\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3075\":{\"id\":1010812634659217408,\"id_str\":\"1010812634659217408\",\"name\":\"Mc Primate\",\"screen_name\":\"primatekomedy\",\"location\":\"Nigeria\",\"description\":\"It's bro Primate comedy ...it's a new account because the old account got hacked\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":198,\"friends_count\":306,\"listed_count\":0,\"created_at\":\"Sun Jun 24 09:11:26 +0000 2018\",\"favourites_count\":472,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":245,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1010814276456669185\\/nGtamYU9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1010814276456669185\\/nGtamYU9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010812634659217408\\/1531464559\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3076\":{\"id\":1492278910398210049,\"id_str\":\"1492278910398210049\",\"name\":\"Obidient\",\"screen_name\":\"Sharon_sleey\",\"location\":\"Abuja, Nigeria\",\"description\":\"Video editor \\ud83d\\udcbb Makeup artist\\ud83d\\udc84 Drone pilot\\u270c\\ufe0f Graphic designer \\ud83d\\udc4dHit me up if you got any deal\\ud83d\\ude05\\ud83e\\udd2a\\ud83d\\udc44\",\"url\":\"https:\\/\\/t.co\\/gJKlIAIBzF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gJKlIAIBzF\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCadzdvqobeZrWQyAE7BhydQ\",\"display_url\":\"youtube.com\\/channel\\/UCadzd\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Fri Feb 11 23:26:50 +0000 2022\",\"favourites_count\":78,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":68,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552035261021929472\\/Lr-eD2LI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552035261021929472\\/Lr-eD2LI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492278910398210049\\/1644622600\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3077\":{\"id\":727138517239767041,\"id_str\":\"727138517239767041\",\"name\":\"Gerald P Bartlett\",\"screen_name\":\"GpbartlettP\",\"location\":\"Timbuktu\",\"description\":\"Travelling & exploring life with the Darug Nations people. Don\\u2019t take myself too seriously, love a good respectful discussion. Complicated & Unique.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":197,\"listed_count\":4,\"created_at\":\"Mon May 02 14:11:47 +0000 2016\",\"favourites_count\":1342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/727138517239767041\\/1657767970\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3078\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3079\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3080\":{\"id\":3193956341,\"id_str\":\"3193956341\",\"name\":\"OBC of my Hood\\ud83c\\udf0d\\u2764\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"goziedbrightest\",\"location\":\"FCT Abuja, Nigeria\",\"description\":\"Data Engineer, Python Backend Developer, \\nCritical Analyst, Good Listener, Media Personnel, Entrepreneur, Sports Lover, Man Utd Oriented and a Good Hustler\\ud83d\\udca6\\ud83c\\udf37\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2834,\"friends_count\":2789,\"listed_count\":0,\"created_at\":\"Wed Apr 22 08:00:59 +0000 2015\",\"favourites_count\":50058,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1994,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491465981549584393\\/TZy5h91__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491465981549584393\\/TZy5h91__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3193956341\\/1611498587\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3081\":{\"id\":1161439794435710976,\"id_str\":\"1161439794435710976\",\"name\":\"Billionaire Nursepreneur\",\"screen_name\":\"MadukaChidera3\",\"location\":\"Nigeria\",\"description\":\"Nursepreneur || Co-founder of https:\\/\\/t.co\\/szuOhaOrD0 || Pan-African || Objective Deist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/szuOhaOrD0\",\"expanded_url\":\"http:\\/\\/www.eazyhealth.org\",\"display_url\":\"eazyhealth.org\",\"indices\":[30,53]}]}},\"protected\":false,\"followers_count\":333,\"friends_count\":320,\"listed_count\":4,\"created_at\":\"Wed Aug 14 00:50:00 +0000 2019\",\"favourites_count\":13709,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3590,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461896226090242052\\/i8J2yBkK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461896226090242052\\/i8J2yBkK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3082\":{\"id\":1358673651718123521,\"id_str\":\"1358673651718123521\",\"name\":\"Aliyu Abdurrauf\",\"screen_name\":\"pre__sident\",\"location\":\"Kano, Nigeria\",\"description\":\"watch and Airpod plug \\ud83d\\udd0c #hustler #influencer #Real marid fan \\ud83d\\ude4b\\u200d\\u2642\\ufe0f. being a celebrity does no mean posting nude or half naked picture \\ud83c\\udf07\",\"url\":\"https:\\/\\/t.co\\/gAEWoQctZC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gAEWoQctZC\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/QI54HZD5OGOBF1\",\"display_url\":\"wa.me\\/message\\/QI54HZ\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":651,\"friends_count\":715,\"listed_count\":0,\"created_at\":\"Mon Feb 08 07:07:07 +0000 2021\",\"favourites_count\":1859,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1095,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554948113013657603\\/OexEcOG5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554948113013657603\\/OexEcOG5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358673651718123521\\/1647203974\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3083\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3084\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3085\":{\"id\":137783971,\"id_str\":\"137783971\",\"name\":\"MD Muh'd\",\"screen_name\":\"md_shibili\",\"location\":\"Zamfara, Nigeria\",\"description\":\"DPA ,|BSc. Political Science |Masters Public Policy and Administration |Political Scientist |Social Critic |Policy Analyst |Activist |Good Governance Advocacy.\",\"url\":\"https:\\/\\/t.co\\/DMCFP3hv6S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DMCFP3hv6S\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/muhd.muhammad\",\"display_url\":\"facebook.com\\/muhd.muhammad\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1095,\"friends_count\":1514,\"listed_count\":5,\"created_at\":\"Tue Apr 27 19:13:13 +0000 2010\",\"favourites_count\":40835,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9764,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554908729384083459\\/T4Q9q4vL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554908729384083459\\/T4Q9q4vL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/137783971\\/1591784764\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3086\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3087\":{\"id\":852545705805848576,\"id_str\":\"852545705805848576\",\"name\":\"ppellegrino\",\"screen_name\":\"ppell524\",\"location\":\"CO\",\"description\":\"Jesus-Moto-Fitness-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":113,\"friends_count\":465,\"listed_count\":10,\"created_at\":\"Thu Apr 13 15:35:10 +0000 2017\",\"favourites_count\":2403,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1638,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1364292633728716800\\/YaEhHV0M_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1364292633728716800\\/YaEhHV0M_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/852545705805848576\\/1657746596\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3088\":{\"id\":1119170467728904193,\"id_str\":\"1119170467728904193\",\"name\":\"2dotsmarket\",\"screen_name\":\"2dotsmarket\",\"location\":\"Nigeria\",\"description\":\"Official handle of https:\\/\\/t.co\\/2LV5I0kqeg | Nigerian online marketplace | Buy and Sell Everything in Nigeria\\nhttps:\\/\\/t.co\\/VsMiApD24z\",\"url\":\"https:\\/\\/t.co\\/lZx8zo8V0D\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lZx8zo8V0D\",\"expanded_url\":\"http:\\/\\/www.2dotsmarket.com\",\"display_url\":\"2dotsmarket.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2LV5I0kqeg\",\"expanded_url\":\"http:\\/\\/2dotsmarket.com\",\"display_url\":\"2dotsmarket.com\",\"indices\":[19,42]},{\"url\":\"https:\\/\\/t.co\\/VsMiApD24z\",\"expanded_url\":\"http:\\/\\/tinyurl.com\\/9rhfpdru\",\"display_url\":\"tinyurl.com\\/9rhfpdru\",\"indices\":[110,133]}]}},\"protected\":false,\"followers_count\":4134,\"friends_count\":352,\"listed_count\":0,\"created_at\":\"Fri Apr 19 09:26:47 +0000 2019\",\"favourites_count\":689,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1436694104415645708\\/GfIZn9Vm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1436694104415645708\\/GfIZn9Vm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1119170467728904193\\/1631369544\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3089\":{\"id\":447447050,\"id_str\":\"447447050\",\"name\":\"Daddyz\",\"screen_name\":\"daddyz33m\",\"location\":\"Nigeria\",\"description\":\"General Analysts |jerseys |Graphic Designer |Branding |Product description writer|Photography| 1000929594 VFB\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1112,\"friends_count\":1295,\"listed_count\":0,\"created_at\":\"Mon Dec 26 22:23:03 +0000 2011\",\"favourites_count\":6775,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554008315277070337\\/B4UrNp5S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554008315277070337\\/B4UrNp5S_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/447447050\\/1604530303\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3090\":{\"id\":1224097788352520192,\"id_str\":\"1224097788352520192\",\"name\":\"VERT \\ud83c\\udf08\",\"screen_name\":\"hisvert\",\"location\":\"Nigeria\",\"description\":\"AfroBeat in my Blood \\ud83d\\udc9a\\ud83e\\udd0d\\ud83d\\udc9a\",\"url\":\"https:\\/\\/t.co\\/3sB1XKXaFO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3sB1XKXaFO\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UC4YuP6JA9g1kk6vWvd32ljQ\",\"display_url\":\"m.youtube.com\\/channel\\/UC4YuP\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":601,\"listed_count\":1,\"created_at\":\"Sun Feb 02 22:31:04 +0000 2020\",\"favourites_count\":1197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":846,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495366991057670144\\/ahXLYyOi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495366991057670144\\/ahXLYyOi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224097788352520192\\/1580683429\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3091\":{\"id\":1295028506544484352,\"id_str\":\"1295028506544484352\",\"name\":\"Iym Multimedia\",\"screen_name\":\"Ind_Journos\",\"location\":\"Kano, Nigeria\",\"description\":\"Multimedia Company\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":263,\"listed_count\":0,\"created_at\":\"Sun Aug 16 16:04:14 +0000 2020\",\"favourites_count\":18,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":260,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519290367866249216\\/MrOP-tfm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519290367866249216\\/MrOP-tfm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1295028506544484352\\/1651056555\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3092\":{\"id\":1358179329289682944,\"id_str\":\"1358179329289682944\",\"name\":\"Mr. Grade\",\"screen_name\":\"MrGrade3\",\"location\":\"Abuja, Nigeria\",\"description\":\"A Chef\\ud83e\\uddd1\\u200d\\ud83c\\udf73. Software Developer \\ud83e\\uddd1\\u200d\\ud83d\\udcbb The world is yours!!!\",\"url\":\"https:\\/\\/t.co\\/Plv2QKyLiU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Plv2QKyLiU\",\"expanded_url\":\"http:\\/\\/comingSoon.com\",\"display_url\":\"comingSoon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":218,\"listed_count\":1,\"created_at\":\"Sat Feb 06 22:23:00 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":49,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493542566721200130\\/8cOOk_h8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493542566721200130\\/8cOOk_h8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358179329289682944\\/1644923272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3093\":{\"id\":727138517239767041,\"id_str\":\"727138517239767041\",\"name\":\"Gerald P Bartlett\",\"screen_name\":\"GpbartlettP\",\"location\":\"Timbuktu\",\"description\":\"Travelling & exploring life with the Darug Nations people. Don\\u2019t take myself too seriously, love a good respectful discussion. Complicated & Unique.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":197,\"listed_count\":4,\"created_at\":\"Mon May 02 14:11:47 +0000 2016\",\"favourites_count\":1342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/727138517239767041\\/1657767970\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3094\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3095\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3096\":{\"id\":384263249,\"id_str\":\"384263249\",\"name\":\"Jude_NFT.algo\",\"screen_name\":\"JohnAshafa\",\"location\":\"Abuja\",\"description\":\"Twitter Degen || Discord: @Ashafa#4627 || Crypto Enthusiast || Community manager @SOULMETAVERSE || Community moderator with @Gpshrine, @MoonActive\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":894,\"listed_count\":1,\"created_at\":\"Mon Oct 03 11:19:23 +0000 2011\",\"favourites_count\":2946,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2702,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547889326977007619\\/57AwTbiT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547889326977007619\\/57AwTbiT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/384263249\\/1656182492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3097\":{\"id\":720076095618461696,\"id_str\":\"720076095618461696\",\"name\":\"Osinuga\",\"screen_name\":\"Ay_adeyinka\",\"location\":\"Ogunstate Nigeria\",\"description\":\"Animal Nutritionist | Liverpool fan | Interested in Exportation business\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":332,\"friends_count\":725,\"listed_count\":0,\"created_at\":\"Wed Apr 13 02:28:14 +0000 2016\",\"favourites_count\":6031,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":490,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481188697571610627\\/Nv2957EI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481188697571610627\\/Nv2957EI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3098\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3099\":{\"id\":727138517239767041,\"id_str\":\"727138517239767041\",\"name\":\"Gerald P Bartlett\",\"screen_name\":\"GpbartlettP\",\"location\":\"Timbuktu\",\"description\":\"Travelling & exploring life with the Darug Nations people. Don\\u2019t take myself too seriously, love a good respectful discussion. Complicated & Unique.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":197,\"listed_count\":4,\"created_at\":\"Mon May 02 14:11:47 +0000 2016\",\"favourites_count\":1342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/727138517239767041\\/1657767970\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3100\":{\"id\":1319021529288609795,\"id_str\":\"1319021529288609795\",\"name\":\"Henry Saliu\",\"screen_name\":\"henry_saliu\",\"location\":\"Nigeria\",\"description\":\"Bishop @pfministry President @IPSF Author: Purpose for Existence, Determine to prevail and Challenges in the Modern-day ministry and how to overcome.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Wed Oct 21 21:04:46 +0000 2020\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532302752495374336\\/uelgZDT5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532302752495374336\\/uelgZDT5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319021529288609795\\/1654163392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3101\":{\"id\":373937459,\"id_str\":\"373937459\",\"name\":\"\\u2018Wale\",\"screen_name\":\"olawuyiolawale\",\"location\":\"Nigeria\",\"description\":\"Certified Marketer || PR || Digital Influencer || Editor || Graphics Designer || AgriTech || DUFMA https:\\/\\/t.co\\/eiGhCBcsUy\",\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"expanded_url\":\"http:\\/\\/www.olainfinitee.blogspot.com\",\"display_url\":\"olainfinitee.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"expanded_url\":\"http:\\/\\/www.olainfinitee.blogspot.com\",\"display_url\":\"olainfinitee.blogspot.com\",\"indices\":[100,123]}]}},\"protected\":false,\"followers_count\":843,\"friends_count\":729,\"listed_count\":18,\"created_at\":\"Thu Sep 15 12:40:28 +0000 2011\",\"favourites_count\":2794,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479502319003869184\\/4P553Fho_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479502319003869184\\/4P553Fho_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373937459\\/1641575818\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3102\":{\"id\":727138517239767041,\"id_str\":\"727138517239767041\",\"name\":\"Gerald P Bartlett\",\"screen_name\":\"GpbartlettP\",\"location\":\"Timbuktu\",\"description\":\"Travelling & exploring life with the Darug Nations people. Don\\u2019t take myself too seriously, love a good respectful discussion. Complicated & Unique.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":197,\"listed_count\":4,\"created_at\":\"Mon May 02 14:11:47 +0000 2016\",\"favourites_count\":1342,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547014832838553600\\/XzcoTIhn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/727138517239767041\\/1657767970\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3103\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3104\":{\"id\":1217802725569843201,\"id_str\":\"1217802725569843201\",\"name\":\"Mr Ntul\",\"screen_name\":\"xandadgr8\",\"location\":\"Federal Capital Territory\",\"description\":\"Talk to me about Realestate Recording\\/Performing Artist\\/ Chorister Webdesigner\\u25aaInstagram-@ixanda_ \\u25aa#CBK #DMG_Nation #klevzEnt\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":183,\"friends_count\":220,\"listed_count\":2,\"created_at\":\"Thu Jan 16 13:36:33 +0000 2020\",\"favourites_count\":1155,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1390608845102321666\\/9lS_lEwu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1390608845102321666\\/9lS_lEwu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1217802725569843201\\/1581065998\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3105\":{\"id\":360288406,\"id_str\":\"360288406\",\"name\":\"L.E Ombs\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"LeoOmbs\",\"location\":\"Nasarawa, Nigeria\",\"description\":\"Geek\\ud83d\\udcbb ||\\nFun lover ||\\nDream Chaser ||\\nYouth Advocate ||\\nAnalyst & Activist || \\nA @ConcernedNG ||\\n#NasarawaTwitterHangOut\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":201,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Tue Aug 23 00:09:17 +0000 2011\",\"favourites_count\":1077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1463301735766765568\\/2RHe-sDd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1463301735766765568\\/2RHe-sDd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/360288406\\/1599325289\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3106\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3107\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3108\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3109\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3110\":{\"id\":1496896114422910976,\"id_str\":\"1496896114422910976\",\"name\":\"Vidan\",\"screen_name\":\"vidantv\",\"location\":\"Nigeria\",\"description\":\"Media personality\",\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"expanded_url\":\"https:\\/\\/m.me\\/Vistavid?fbclid=IwAR2GeMKUOyTZ7k5mLRnikdX9Bp4XZy39rsNY28RWzE5-xltW-MDslU1c08Q\",\"display_url\":\"m.me\\/Vistavid?fbcli\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Feb 24 17:14:06 +0000 2022\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496896114422910976\\/1656066107\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3111\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3112\":{\"id\":3431581827,\"id_str\":\"3431581827\",\"name\":\"magjizzy\",\"screen_name\":\"magojazzy\",\"location\":\"Nigeria\",\"description\":\"Butterfield Entertainment Boss \\nartist on my label stain and Facebee holla at magjizzyezekiel@gmail.com for bookings\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1009,\"friends_count\":2625,\"listed_count\":3,\"created_at\":\"Wed Aug 19 15:32:11 +0000 2015\",\"favourites_count\":1892,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2248,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1054389615556288512\\/SiPqpXKO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1054389615556288512\\/SiPqpXKO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3431581827\\/1619692396\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3113\":{\"id\":1057385822494867458,\"id_str\":\"1057385822494867458\",\"name\":\"\\uf8ffAbubakar Sa\\u2019eed \\ud83d\\udc68\\u200d\\ud83d\\udcbb\",\"screen_name\":\"itz_ikhali\",\"location\":\"Kano, Nigeria\",\"description\":\"Footballer\\u2122 I'm Simple \\ud83d\\ude06 My team_ Hala Madrid\\u26bd\\ufe0f Proudly a Muslim\\ud83d\\udd4c 15th Dec \\ud83c\\udf82 BenZ \\u2b50\\ufe0f \\ud83d\\ude97 IG. itz_ikhali\",\"url\":\"https:\\/\\/t.co\\/uXeXwvefYu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uXeXwvefYu\",\"expanded_url\":\"http:\\/\\/www.serdeqmotors.com.ng\",\"display_url\":\"serdeqmotors.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":209,\"friends_count\":358,\"listed_count\":0,\"created_at\":\"Tue Oct 30 21:36:40 +0000 2018\",\"favourites_count\":1018,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7680,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509805893067710464\\/b8GxLGou_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509805893067710464\\/b8GxLGou_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1057385822494867458\\/1609171201\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3114\":{\"id\":1467730838980812803,\"id_str\":\"1467730838980812803\",\"name\":\"IBBULTALKATIVE \\ud83d\\udeb4\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\udca8\",\"screen_name\":\"ibbultalkative\",\"location\":\"Lapai, Nigeria\",\"description\":\"Welcome to IBBUL TALKATIVE \\u270c\\ud83c\\udffd\\ud83d\\ude1c we rep:\\ud83d\\udc9aIbrahim Badamasi Babangida University, Lapai\\ud83d\\udc9a Enjoy unlimited MEMES, Campus gists.\\ud83d\\udd25 Entertainment\\ud83c\\udfacetc....\",\"url\":\"https:\\/\\/t.co\\/xZctnqIQpL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xZctnqIQpL\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348084957775\",\"display_url\":\"wa.me\\/+2348084957775\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":329,\"friends_count\":275,\"listed_count\":0,\"created_at\":\"Mon Dec 06 05:41:28 +0000 2021\",\"favourites_count\":3689,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":464,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528416959599153153\\/Zhcau9rm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528416959599153153\\/Zhcau9rm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1467730838980812803\\/1646385998\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3115\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3116\":{\"id\":1094859184259108865,\"id_str\":\"1094859184259108865\",\"name\":\"winner vibes\",\"screen_name\":\"elchazag\",\"location\":\"heaven\",\"description\":\"\\u2022Raison D'\\u00eatre\\n\\u2022God's idea|\\nRap-Poe | Freelance Photographer | Creative Design\",\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/elchazag\",\"display_url\":\"audiomack.com\\/elchazag\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Mon Feb 11 07:22:25 +0000 2019\",\"favourites_count\":3721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1926,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1094859184259108865\\/1601837949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3117\":{\"id\":1094859184259108865,\"id_str\":\"1094859184259108865\",\"name\":\"winner vibes\",\"screen_name\":\"elchazag\",\"location\":\"heaven\",\"description\":\"\\u2022Raison D'\\u00eatre\\n\\u2022God's idea|\\nRap-Poe | Freelance Photographer | Creative Design\",\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/elchazag\",\"display_url\":\"audiomack.com\\/elchazag\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Mon Feb 11 07:22:25 +0000 2019\",\"favourites_count\":3721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1926,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1094859184259108865\\/1601837949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3118\":{\"id\":57570221,\"id_str\":\"57570221\",\"name\":\"Iyke Larry\",\"screen_name\":\"Hillike\",\"location\":\"UAE\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":163,\"friends_count\":136,\"listed_count\":2,\"created_at\":\"Fri Jul 17 06:15:54 +0000 2009\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57570221\\/1419692473\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3119\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3120\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3121\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3122\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3123\":{\"id\":1517744833808510977,\"id_str\":\"1517744833808510977\",\"name\":\"Western Post Nigeria\",\"screen_name\":\"westernpost_ng\",\"location\":\"Nigeria\",\"description\":\"Western Post is the authority for news and information across the South Western states of Nigeria including Kogi, Kwara, Edo and Delta States.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64288,\"friends_count\":35,\"listed_count\":11,\"created_at\":\"Sat Apr 23 05:59:33 +0000 2022\",\"favourites_count\":4812,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4478,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554062033649389568\\/OVkSmn4X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554062033649389568\\/OVkSmn4X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517744833808510977\\/1659352695\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3124\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3125\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3126\":{\"id\":1459025683,\"id_str\":\"1459025683\",\"name\":\"ALAYE\\ud83c\\udc04\\ufe0f\",\"screen_name\":\"sappzee\",\"location\":\"Nigeria\",\"description\":\"STRAIGHT UP THEEP OUT NOW \\u2757\\ufe0f\\u2757\\ufe0f\\u2757\\ufe0f #familybusiness\",\"url\":\"https:\\/\\/t.co\\/9Qwz3WrT9F\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Qwz3WrT9F\",\"expanded_url\":\"https:\\/\\/www.hitztunez.net\\/sappzee-returns-with-new-music-outside-listen\\/\",\"display_url\":\"hitztunez.net\\/sappzee-return\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1025,\"friends_count\":350,\"listed_count\":2,\"created_at\":\"Sun May 26 07:22:34 +0000 2013\",\"favourites_count\":127845,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10442,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549284342425423873\\/_rjpWenG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549284342425423873\\/_rjpWenG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1459025683\\/1644074695\",\"profile_link_color\":\"0A0099\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3127\":{\"id\":835449742670839808,\"id_str\":\"835449742670839808\",\"name\":\"Lawrence Ezekiel\",\"screen_name\":\"KafeEazy\",\"location\":\"Nigeria\",\"description\":\"Business Consultant\\nBusiness Tips\\nBusiness Optimization\\nDigital Marketing\",\"url\":\"https:\\/\\/t.co\\/nOi9ft1hGb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nOi9ft1hGb\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/277ob\",\"display_url\":\"btcs.love\\/invite\\/277ob\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Sat Feb 25 11:21:55 +0000 2017\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":413,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/987766670952484864\\/c1KkmqGS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/987766670952484864\\/c1KkmqGS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3128\":{\"id\":736506943,\"id_str\":\"736506943\",\"name\":\"SUPER_STAR\",\"screen_name\":\"koki_officiall\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Business Consultant - Affiliate Marketer - Freelancer - Musician - Engineer\\n( Creative Marketer )\\nReady for any new challenge \\/\\/ 08092503360\",\"url\":\"https:\\/\\/t.co\\/ZDr63aoiOq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZDr63aoiOq\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~0178f34a36029df671?s=1017484851352698974\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1534,\"friends_count\":2567,\"listed_count\":0,\"created_at\":\"Sat Aug 04 10:28:46 +0000 2012\",\"favourites_count\":3448,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1863,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540723852891697157\\/bnQLWOJD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540723852891697157\\/bnQLWOJD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/736506943\\/1620212451\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3129\":{\"id\":1063757650691858432,\"id_str\":\"1063757650691858432\",\"name\":\"Aliyu Abdullahi Gunigi\",\"screen_name\":\"abubillaal\",\"location\":\"Kaduna Nigeria \",\"description\":\"Sociologist, Egalitarian, Multi-cultured Human, Revolutionary, Anti Makeup, Advocate Of Natural Beauty, Promoter Of Social Justice And Equitable Society.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":348,\"friends_count\":130,\"listed_count\":0,\"created_at\":\"Sat Nov 17 11:36:02 +0000 2018\",\"favourites_count\":4705,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6936,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551691742872829953\\/YgZHhnYa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551691742872829953\\/YgZHhnYa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1063757650691858432\\/1542459492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3130\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3131\":{\"id\":834103951712718853,\"id_str\":\"834103951712718853\",\"name\":\"Paul A Elijah\",\"screen_name\":\"PaulElijah16\",\"location\":\"Nigeria\",\"description\":\"A Pastor, A Teacher, An Entrepreneur, A Media Personnel.\\nA Light to My Generation.\",\"url\":\"https:\\/\\/t.co\\/WsjqhCg2pC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WsjqhCg2pC\",\"expanded_url\":\"https:\\/\\/wa.me\\/qr\\/4CGQQG74CMXUJ1\",\"display_url\":\"wa.me\\/qr\\/4CGQQG74CMX\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":147,\"friends_count\":1503,\"listed_count\":3,\"created_at\":\"Tue Feb 21 18:14:13 +0000 2017\",\"favourites_count\":907,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":878,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555309677751242757\\/JBEY5IUg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555309677751242757\\/JBEY5IUg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/834103951712718853\\/1659649674\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3132\":{\"id\":3935905942,\"id_str\":\"3935905942\",\"name\":\"Tosh Michaels \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"ToshSports\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Broadcast Journalist | Commentator | OAP @Diamond887fm Ilorin | Actor | Event Host | Email: jamesvic336@gmail.com.\",\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"expanded_url\":\"http:\\/\\/www.owosports.com.ng\",\"display_url\":\"owosports.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":433,\"friends_count\":996,\"listed_count\":3,\"created_at\":\"Mon Oct 12 09:24:48 +0000 2015\",\"favourites_count\":4199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1948,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3935905942\\/1640642689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3133\":{\"id\":798250776,\"id_str\":\"798250776\",\"name\":\"HEDREES\",\"screen_name\":\"AmooOlawale1\",\"location\":\"Nigeria\",\"description\":\"I seek refuge in u Allah against sheytan d accuse.\",\"url\":\"http:\\/\\/t.co\\/fQkuzH1lzh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fQkuzH1lzh\",\"expanded_url\":\"http:\\/\\/http.amooolawaleidris.com\",\"display_url\":\"http.amooolawaleidris.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":109,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Sun Sep 02 13:20:38 +0000 2012\",\"favourites_count\":971,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2861,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/788004857852624897\\/bblq84cW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/788004857852624897\\/bblq84cW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/798250776\\/1389339938\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3134\":{\"id\":1514871863905816577,\"id_str\":\"1514871863905816577\",\"name\":\"FlyHezix\",\"screen_name\":\"flyhezix\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udd38Chartered Flight \\ud83d\\udd38Leasing \\ud83d\\udd38Helicopter Shuttle Service \\ud83d\\udd38Aircraft sales Contact:- +2348140491420\",\"url\":\"https:\\/\\/t.co\\/MYVovcJwdF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MYVovcJwdF\",\"expanded_url\":\"http:\\/\\/flyhezix.weebly.com\",\"display_url\":\"flyhezix.weebly.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Fri Apr 15 07:43:06 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538739669122310144\\/Akzhv8PA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538739669122310144\\/Akzhv8PA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514871863905816577\\/1650009810\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3135\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3136\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3137\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3138\":{\"id\":2613972650,\"id_str\":\"2613972650\",\"name\":\"BBNaija2022\",\"screen_name\":\"BBNaija_2022\",\"location\":\"Nigeria\",\"description\":\"Get all the latest Big Brother Naija 2022 Updates. This\\u2019s a fan page of BBNaija Subscribe to our YouTube Channel for Live Streams Link below\\u2935\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":13,\"listed_count\":4,\"created_at\":\"Wed Jul 09 18:07:39 +0000 2014\",\"favourites_count\":622,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2738,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2613972650\\/1652963380\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3139\":{\"id\":931303751633244160,\"id_str\":\"931303751633244160\",\"name\":\"mallam cerdeeq\",\"screen_name\":\"arcsadeeqburji\",\"location\":\"Kano, Nigeria\",\"description\":\"every damn day am just doing it.#muslim #architect #enterprenure \\n# loving khatimul Anbiya\\u2764\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":423,\"listed_count\":0,\"created_at\":\"Thu Nov 16 23:31:31 +0000 2017\",\"favourites_count\":3797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1518,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526363093575557122\\/t3MqqHZI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526363093575557122\\/t3MqqHZI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/931303751633244160\\/1659907008\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3140\":{\"id\":1481683902238535682,\"id_str\":\"1481683902238535682\",\"name\":\"Memzydavid\\ud83d\\udcb0\",\"screen_name\":\"Ememsef\",\"location\":\"Nigeria\",\"description\":\"A Food Scientists, Writer, Social Media manager and Moderator, Liverpool fans\\ud83d\\udc96\\ud83e\\udd17.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":854,\"friends_count\":774,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:46:10 +0000 2022\",\"favourites_count\":1316,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":918,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552256871020597251\\/a0SpQ0ll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552256871020597251\\/a0SpQ0ll_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481683902238535682\\/1654625948\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3141\":{\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"name\":\"William Iwu\",\"screen_name\":\"betsmasterspro\",\"location\":\"Jos, Nigeria\",\"description\":\"Welcome To Betsmasterpro matches,We Offer \\ud83d\\udcaf Fixed Matches All Correct Scores,If You're Interested Call \\ud83d\\udcdeOr WhatsApp Us On \\ud83d\\udcf2+2349095386137.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1085,\"friends_count\":37,\"listed_count\":1,\"created_at\":\"Wed Nov 25 02:59:59 +0000 2020\",\"favourites_count\":1247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1931,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331432336127381504\\/1629374439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3142\":{\"id\":4342153529,\"id_str\":\"4342153529\",\"name\":\"Mma\",\"screen_name\":\"obi_Jules\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"Massage Therapist | Radio Presenter | Voice Over Artist | Editor | Mobile Masseuse | CEO ZenSpa.\",\"url\":\"https:\\/\\/t.co\\/Z9kOxLxbCr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z9kOxLxbCr\",\"expanded_url\":\"http:\\/\\/www.julesempire.ng\",\"display_url\":\"julesempire.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":650,\"friends_count\":561,\"listed_count\":0,\"created_at\":\"Tue Dec 01 17:53:46 +0000 2015\",\"favourites_count\":4397,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":463,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502996225519464453\\/APpE70Sl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502996225519464453\\/APpE70Sl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4342153529\\/1542738004\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3143\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3144\":{\"id\":967901732591292416,\"id_str\":\"967901732591292416\",\"name\":\"\\u0623\\u0646\\u0627 \\u062d\\u0644\\u064a\\u0641\\u0629\\ud83d\\ude0e\\ud83c\\uddf7\\ud83c\\uddfa\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Fagman01\",\"location\":\"Nigeria\",\"description\":\"investor khalifar \\u263a\\ufe0f\\ud83d\\udc94\\ud83d\\udcaf\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf7\\ud83c\\uddfa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":164,\"listed_count\":3,\"created_at\":\"Sun Feb 25 23:18:50 +0000 2018\",\"favourites_count\":2649,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527357872136343556\\/t21Eo-vi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527357872136343556\\/t21Eo-vi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/967901732591292416\\/1637146612\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3145\":{\"id\":1339568078410178560,\"id_str\":\"1339568078410178560\",\"name\":\"Francis Umendiego\",\"screen_name\":\"doziego\",\"location\":\"Abuja, Nigeria\",\"description\":\"Ph.D In View || Governance-Policy Researcher || Program Management Specialist || Friedrich Ebert Stiftung OMYV 2022 Fellow || @UN #SDGs 2030\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":329,\"friends_count\":2807,\"listed_count\":4,\"created_at\":\"Thu Dec 17 13:48:25 +0000 2020\",\"favourites_count\":8709,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551873046134267905\\/-E1UKgJS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551873046134267905\\/-E1UKgJS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1339568078410178560\\/1659312182\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3146\":{\"id\":1550114284276830213,\"id_str\":\"1550114284276830213\",\"name\":\"Slimtalker\",\"screen_name\":\"Slimtalker2\",\"location\":\"Nigeria\",\"description\":\"bookings :kinikadaniel123@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Thu Jul 21 13:43:50 +0000 2022\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551155235187556354\\/U8mdZnnl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551155235187556354\\/U8mdZnnl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550114284276830213\\/1658411644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3147\":{\"id\":1235237327439568896,\"id_str\":\"1235237327439568896\",\"name\":\"omoleye victor\",\"screen_name\":\"omoleye_victor\",\"location\":\"Nigeria\",\"description\":\"Digital marketer|| book promoter || graphics designer|| store promoter || social media manager||photographer||\",\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/omoleyevictor\",\"display_url\":\"fiverr.com\\/omoleyevictor\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":836,\"listed_count\":0,\"created_at\":\"Wed Mar 04 16:15:21 +0000 2020\",\"favourites_count\":89,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235237327439568896\\/1658497278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3148\":{\"id\":1399979771770122242,\"id_str\":\"1399979771770122242\",\"name\":\"vintagebraidedwigs\",\"screen_name\":\"vintagebraidwig\",\"location\":\"Nigeria\",\"description\":\"Our business is proudly black owned \\u270a\\ud83c\\udfffand our wigs are made specially for you with love \\ud83d\\udc95and care\\ud83e\\udd70. IG\\/FB\\/TK: @vintagebraidedwigs \\ud83c\\udf0d\\ud83d\\udce6\",\"url\":\"https:\\/\\/t.co\\/o6b52ckSlC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o6b52ckSlC\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/VintageHairs\",\"display_url\":\"linktr.ee\\/VintageHairs\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Jun 02 06:42:56 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":133,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1464242654435282949\\/v9VjS9ad_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1464242654435282949\\/v9VjS9ad_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399979771770122242\\/1637937644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3149\":{\"id\":1235237327439568896,\"id_str\":\"1235237327439568896\",\"name\":\"omoleye victor\",\"screen_name\":\"omoleye_victor\",\"location\":\"Nigeria\",\"description\":\"Digital marketer|| book promoter || graphics designer|| store promoter || social media manager||photographer||\",\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/omoleyevictor\",\"display_url\":\"fiverr.com\\/omoleyevictor\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":836,\"listed_count\":0,\"created_at\":\"Wed Mar 04 16:15:21 +0000 2020\",\"favourites_count\":89,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235237327439568896\\/1658497278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3150\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3151\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3152\":{\"id\":602839866,\"id_str\":\"602839866\",\"name\":\"Ali Aiyes\",\"screen_name\":\"AliAiyes\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":36,\"listed_count\":2,\"created_at\":\"Fri Jun 08 13:28:23 +0000 2012\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":310,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351809954286546945\\/kCjc4w1D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351809954286546945\\/kCjc4w1D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/602839866\\/1611131632\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3153\":{\"id\":1375465426260480004,\"id_str\":\"1375465426260480004\",\"name\":\"Glory | Glowhubdesign | GD\",\"screen_name\":\"globlog3\",\"location\":\"Nigeria\",\"description\":\"I'm a Graphic designer, I will visualize and communicate your message simply and incredibly.\",\"url\":\"https:\\/\\/t.co\\/iYC5asLAUh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iYC5asLAUh\",\"expanded_url\":\"http:\\/\\/www.glowhubgraphics.blogspot.com\",\"display_url\":\"glowhubgraphics.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Fri Mar 26 15:11:43 +0000 2021\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542963720644698112\\/2yDlyVq-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542963720644698112\\/2yDlyVq-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375465426260480004\\/1659208235\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3154\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3155\":{\"id\":865322296050950144,\"id_str\":\"865322296050950144\",\"name\":\"Jay Dee Akaa\",\"screen_name\":\"jay_dee_akaa\",\"location\":\"FCT Abuja, Nigeria\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"\\ud83d\\udcfbRadio Presenter\\/Producer, DJ\\/Music Promoter, Corporate MC, Red Carpet Host. \\nFor Radio Interview\\/Song Promo\\/Adverts \\ud83d\\udc4907087033250, Instagram: jay_dee_akaa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2051,\"friends_count\":1643,\"listed_count\":0,\"created_at\":\"Thu May 18 21:44:47 +0000 2017\",\"favourites_count\":63615,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865322296050950144\\/1652079426\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3156\":{\"id\":1160690442725466112,\"id_str\":\"1160690442725466112\",\"name\":\"Emmanuel Max\",\"screen_name\":\"emmanul_max\",\"location\":\"Nigeria\",\"description\":\"Everyday Vibez \\nlet's be for Real \\ud83d\\ude0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":247,\"friends_count\":290,\"listed_count\":0,\"created_at\":\"Sun Aug 11 23:12:20 +0000 2019\",\"favourites_count\":2760,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":185,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482195175225057282\\/xc1dbFuD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482195175225057282\\/xc1dbFuD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1160690442725466112\\/1590059591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3157\":{\"id\":2280011326,\"id_str\":\"2280011326\",\"name\":\"Enoch Nwokike\",\"screen_name\":\"MarsSolar__\",\"location\":\"Nigeria\",\"description\":\"Solar Energy Oriented\\n Dealer\\nStreet Lights\\nSolar Panel\\nBattery \\nInverter\\nRechargeables\\nfor business contact:\\nmarssolarandelectric@gmail.com 08146406709\",\"url\":\"https:\\/\\/t.co\\/f5QoD0dDEA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f5QoD0dDEA\",\"expanded_url\":\"http:\\/\\/enochnwokike.9.facebook.com\",\"display_url\":\"enochnwokike.9.facebook.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":60,\"listed_count\":0,\"created_at\":\"Mon Jan 13 21:37:59 +0000 2014\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":167,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517440926930583561\\/MEq7vb4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517440926930583561\\/MEq7vb4D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2280011326\\/1650621083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3158\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3159\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3160\":{\"id\":1460584214563364874,\"id_str\":\"1460584214563364874\",\"name\":\"Christian Uchenna\",\"screen_name\":\"Christi07919961\",\"location\":\"Niger, Nigeria\",\"description\":\"Music minister\\ud83c\\udf99\\ufe0fpastor\\ud83c\\udfa4Entrepreneur\\ud83c\\udf49 Agriculturist\\ud83c\\udf4d Fun to be with\\ud83d\\ude00 Unapologetically a Christian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":266,\"listed_count\":5,\"created_at\":\"Tue Nov 16 12:23:55 +0000 2021\",\"favourites_count\":559,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":437,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460584417433374721\\/zfvm-Ynf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460584417433374721\\/zfvm-Ynf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3161\":{\"id\":1120285676325326848,\"id_str\":\"1120285676325326848\",\"name\":\"Asopalace Properties\",\"screen_name\":\"aso_palace\",\"location\":\"Nigeria\",\"description\":\"Asopalace Nigeria Limited \\/Registered\\/ Land & Real Estate Markerter\\/ C.A.C No. 1027771.Other services: House Short-let\\/Rent\\/Construction\\/Development 07043373145\",\"url\":\"https:\\/\\/t.co\\/9HWmB3pFC6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9HWmB3pFC6\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/CS27OKURRNP4I1\",\"display_url\":\"wa.me\\/message\\/CS27OK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Mon Apr 22 11:18:13 +0000 2019\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":33,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549428501282947074\\/juAXtFsi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549428501282947074\\/juAXtFsi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120285676325326848\\/1658247515\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3162\":{\"id\":808974325474852864,\"id_str\":\"808974325474852864\",\"name\":\"sheiscatherine___\",\"screen_name\":\"katy_kenzy\",\"location\":\"Kaduna \",\"description\":\"personality is What counts. Be you!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Wed Dec 14 09:58:04 +0000 2016\",\"favourites_count\":1847,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":301,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1332802379784335365\\/3eK3P3bO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1332802379784335365\\/3eK3P3bO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/808974325474852864\\/1606599975\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3163\":{\"id\":987897642,\"id_str\":\"987897642\",\"name\":\"Victor Alex\",\"screen_name\":\"victordeyforyou\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m a massive fan of Jose Mourinho and Cristiano Ronaldo that sums up everything you need to know about me. tweetabout mou and Ronaldo you will get my attention\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2312,\"friends_count\":3095,\"listed_count\":12,\"created_at\":\"Tue Dec 04 03:01:52 +0000 2012\",\"favourites_count\":21077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26516,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554725449787482112\\/YcnBFZa2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554725449787482112\\/YcnBFZa2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/987897642\\/1659510418\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3164\":{\"id\":770821664250757124,\"id_str\":\"770821664250757124\",\"name\":\"Godswill Asuquo\",\"screen_name\":\"Gafexian_Zone\",\"location\":\"Nigeria\",\"description\":\"Pencil and biro Artist | Graphic designer | Architect | Chelsea FC | Lover of classical music | Deo ac veritati\",\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/gafexianzone\",\"display_url\":\"facebook.com\\/gafexianzone\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":591,\"listed_count\":0,\"created_at\":\"Wed Aug 31 03:13:00 +0000 2016\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3165\":{\"id\":1337900128980639744,\"id_str\":\"1337900128980639744\",\"name\":\"Jbankz\",\"screen_name\":\"meetJbankz\",\"location\":\"Nigeria\",\"description\":\"|| Musician || Song Writer ||\\nThe New EP,\\n#ELEVATE\\n\\\"now out on all music streaming platforms\",\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"expanded_url\":\"https:\\/\\/orcd.co\\/jbankz-elevate\",\"display_url\":\"orcd.co\\/jbankz-elevate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":2276,\"listed_count\":1,\"created_at\":\"Sat Dec 12 23:20:37 +0000 2020\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337900128980639744\\/1616501762\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3166\":{\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"name\":\"AsabariConsultativeCouncil\",\"screen_name\":\"Asabari_CC\",\"location\":\"Saki, Nigeria\",\"description\":\"Official Twitter handle, Asabari Consultative Council, Saki Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Sat Feb 17 04:38:51 +0000 2018\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":794,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3167\":{\"id\":272182927,\"id_str\":\"272182927\",\"name\":\"EMMATRILLION!!!, IF U NO BELIEVE REST.\",\"screen_name\":\"gifshizzle\",\"location\":\"Abuja\",\"description\":\"Data specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":562,\"friends_count\":695,\"listed_count\":0,\"created_at\":\"Sat Mar 26 00:36:10 +0000 2011\",\"favourites_count\":4337,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15895,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550961072819027968\\/E2QaFE8J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550961072819027968\\/E2QaFE8J_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3168\":{\"id\":1695778105,\"id_str\":\"1695778105\",\"name\":\"Tinubufrontier\",\"screen_name\":\"Tinubufrontier\",\"location\":\"NIGERIA\",\"description\":\"Towards The Actualization Of The Presidential Mandate Of Asiwaju Bola Ahmed Tinubu ll Retweet not an endorsement!!\",\"url\":\"https:\\/\\/t.co\\/1eDZ4240o3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1eDZ4240o3\",\"expanded_url\":\"http:\\/\\/www.apcyouthfrontierng.com\",\"display_url\":\"apcyouthfrontierng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27332,\"friends_count\":2457,\"listed_count\":39,\"created_at\":\"Sat Aug 24 06:46:06 +0000 2013\",\"favourites_count\":72875,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":59129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/474939940741332993\\/NwvxFiMZ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/474939940741332993\\/NwvxFiMZ_normal.jpeg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3169\":{\"id\":1388772825905963011,\"id_str\":\"1388772825905963011\",\"name\":\"Black Diamond BLD\",\"screen_name\":\"BlackdiamondBLD\",\"location\":\"Nigeria\",\"description\":\"BLACKDIAMOND(BLD) just launched on pancakeswap 0xa49a87f02bc830fb3c4a8afd56d977171ec12553 let\\u2019s make it the next big thing join us https:\\/\\/t.co\\/klJjtKb7LZ\",\"url\":\"https:\\/\\/t.co\\/fOkSAL4v2p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fOkSAL4v2p\",\"expanded_url\":\"https:\\/\\/bldtoken.com\",\"display_url\":\"bldtoken.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/klJjtKb7LZ\",\"expanded_url\":\"https:\\/\\/t.me\\/BlackDiamondBLD\",\"display_url\":\"t.me\\/BlackDiamondBLD\",\"indices\":[131,154]}]}},\"protected\":false,\"followers_count\":344,\"friends_count\":409,\"listed_count\":25,\"created_at\":\"Sun May 02 08:30:31 +0000 2021\",\"favourites_count\":701,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":768,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417063910511947779\\/uRh-1VaQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417063910511947779\\/uRh-1VaQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1388772825905963011\\/1626689340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3170\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3171\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3172\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3173\":{\"id\":810000148277301248,\"id_str\":\"810000148277301248\",\"name\":\"Tipcy J. . .\",\"screen_name\":\"Tipcy_Jaej\",\"location\":\"Nigeria\",\"description\":\"Beats by Jay\\n\\nPlease stream IF EP\\nhttps:\\/\\/t.co\\/VhEu1zNXuA\\n \\nhttps:\\/\\/t.co\\/U8J44H57AN\",\"url\":\"https:\\/\\/t.co\\/WsZ6sELp8v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WsZ6sELp8v\",\"expanded_url\":\"https:\\/\\/soundcloud.com\\/user-505499138\",\"display_url\":\"soundcloud.com\\/user-505499138\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VhEu1zNXuA\",\"expanded_url\":\"https:\\/\\/youtube.com\\/playlist?list=OLAK5uy_mhpJvdLKGLwgjZl5wO_9CQfmFL8qldJ3s\",\"display_url\":\"youtube.com\\/playlist?list=\\u2026\",\"indices\":[34,57]},{\"url\":\"https:\\/\\/t.co\\/U8J44H57AN\",\"expanded_url\":\"http:\\/\\/tipcyjaej.fanlink.to\\/gM7W\",\"display_url\":\"tipcyjaej.fanlink.to\\/gM7W\",\"indices\":[60,83]}]}},\"protected\":false,\"followers_count\":1018,\"friends_count\":1009,\"listed_count\":1,\"created_at\":\"Sat Dec 17 05:54:19 +0000 2016\",\"favourites_count\":24385,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20912,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485490254509400066\\/UfbWR00O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485490254509400066\\/UfbWR00O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/810000148277301248\\/1643003533\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3174\":{\"id\":4249227737,\"id_str\":\"4249227737\",\"name\":\"Richman onuche\",\"screen_name\":\"Richmanonuche1\",\"location\":\"Abuja\",\"description\":\"A man with few words.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":248,\"listed_count\":2,\"created_at\":\"Sun Nov 22 11:32:25 +0000 2015\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1198941396612370432\\/D82WMyrU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1198941396612370432\\/D82WMyrU_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3175\":{\"id\":1167538860,\"id_str\":\"1167538860\",\"name\":\"\\ud835\\udc04\\ud835\\udc26\\ud835\\udc29\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2f\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2c\",\"screen_name\":\"Emperor_vibes0\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\ud835\\udc16\\ud835\\udc21\\ud835\\udc1a\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc2f\\ud835\\udc1e\\ud835\\udc2b \\ud835\\udc32\\ud835\\udc28\\ud835\\udc2e \\ud835\\udc1d\\ud835\\udc28, \\ud835\\udc00\\ud835\\udc22\\ud835\\udc26 \\ud835\\udc07\\ud835\\udc08\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\ud83d\\udcab \\ud83d\\ude02 \\ud835\\udc15\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc22\\ud835\\udc1a\\ud835\\udc27\\u2728\\ud83c\\udf43 \\ud835\\udc0f\\ud835\\udc1a\\ud835\\udc2c\\ud835\\udc2d\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2d\\ud835\\udc21\\ud835\\udc1e\\ud835\\udc28 \\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":223,\"friends_count\":156,\"listed_count\":0,\"created_at\":\"Mon Feb 11 01:59:56 +0000 2013\",\"favourites_count\":352,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167538860\\/1659127987\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3176\":{\"id\":853674103324246017,\"id_str\":\"853674103324246017\",\"name\":\"Lucasdusky\",\"screen_name\":\"LukeKyauta\",\"location\":\"Nigeria,Abuja\",\"description\":\"Skit maker, and Content creator, Graphic Designer,\",\"url\":\"https:\\/\\/t.co\\/mLp4YBsi4S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mLp4YBsi4S\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCX2sTToCRFfs0KCyWZtYUhg\",\"display_url\":\"youtube.com\\/channel\\/UCX2sT\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":232,\"friends_count\":228,\"listed_count\":0,\"created_at\":\"Sun Apr 16 18:19:01 +0000 2017\",\"favourites_count\":1797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482395328154423296\\/A09iQKo7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482395328154423296\\/A09iQKo7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/853674103324246017\\/1642265629\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3177\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3178\":{\"id\":1524304915308466176,\"id_str\":\"1524304915308466176\",\"name\":\"Obi Chidiebere\",\"screen_name\":\"Chidi_Africa\",\"location\":\"Nigeria\",\"description\":\"I am Afrikan that Love Afrikaans \\ud83c\\uddff\\ud83c\\uddfc\\ud83c\\uddff\\ud83c\\uddf2\\ud83c\\uddfa\\ud83c\\uddec\\ud83c\\uddf9\\ud83c\\uddf3\\ud83c\\uddf9\\ud83c\\uddec\\ud83c\\uddf9\\ud83c\\uddff\\ud83c\\uddf8\\ud83c\\udde9\\ud83c\\uddf8\\ud83c\\uddf8\\ud83c\\uddff\\ud83c\\udde6\\ud83c\\uddf8\\ud83c\\uddf4\\ud83c\\uddf8\\ud83c\\udde8\\ud83c\\uddf8\\ud83c\\uddf3\\ud83c\\uddf8\\ud83c\\uddf9\\ud83c\\uddf7\\ud83c\\uddfc\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddea\\ud83c\\uddf3\\ud83c\\udde6 \\ud83c\\uddf2\\ud83c\\uddff\\ud83c\\uddf2\\ud83c\\udde6 \\ud83c\\uddf2\\ud83c\\uddfa\\ud83c\\uddf2\\ud83c\\uddf7\\ud83c\\uddf2\\ud83c\\uddf1\\ud83c\\uddf2\\ud83c\\uddfc\\ud83c\\uddf2\\ud83c\\uddec\\ud83c\\uddf1\\ud83c\\uddfe\\ud83c\\uddf1\\ud83c\\uddf7\\ud83c\\uddf1\\ud83c\\uddf8\\ud83c\\uddf0\\ud83c\\uddea\\ud83c\\uddec\\ud83c\\uddfc\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\uddf2\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":149,\"listed_count\":0,\"created_at\":\"Wed May 11 08:26:44 +0000 2022\",\"favourites_count\":841,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":827,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544954440049909760\\/WrSZg87Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544954440049909760\\/WrSZg87Q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3179\":{\"id\":1522893464458997762,\"id_str\":\"1522893464458997762\",\"name\":\"BAMJ TV\\ud83d\\udcfa\",\"screen_name\":\"bamj_tv\",\"location\":\"Nigeria\",\"description\":\"~~Entertainment~\\n~Content creator~\\n~Funny memes ~\\n~Football~ \\nFollow us on\\nIG: @Bamj_Tv\\nFB:@Bamj Tv\\nTikTok:@bamj_tv\\nSend Hi to use on WhatsApp 09131256531\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":239,\"listed_count\":0,\"created_at\":\"Sat May 07 10:58:15 +0000 2022\",\"favourites_count\":457,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":209,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550585986509307909\\/f1ZCgWxF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550585986509307909\\/f1ZCgWxF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522893464458997762\\/1654611904\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3180\":{\"id\":1498183392214532097,\"id_str\":\"1498183392214532097\",\"name\":\"Bari700\",\"screen_name\":\"Bari7007\",\"location\":\"Abuja, Nigeria \",\"description\":\"A Sports Animal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Mon Feb 28 06:29:10 +0000 2022\",\"favourites_count\":9373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498183392214532097\\/1646030690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3181\":{\"id\":1428008881,\"id_str\":\"1428008881\",\"name\":\"Adoga Michael Oyi\",\"screen_name\":\"AdogaMikeOyi\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Marketer| Biochemist | Blogger| Peace Maker| Social Media Influencer| Policy Analyst| Die-hard @ChelseaFC supporter\",\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"expanded_url\":\"https:\\/\\/www.theeaglesvoice.com\",\"display_url\":\"theeaglesvoice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1204,\"friends_count\":1621,\"listed_count\":1,\"created_at\":\"Tue May 14 14:24:33 +0000 2013\",\"favourites_count\":12327,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1428008881\\/1617307325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3182\":{\"id\":1428008881,\"id_str\":\"1428008881\",\"name\":\"Adoga Michael Oyi\",\"screen_name\":\"AdogaMikeOyi\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Marketer| Biochemist | Blogger| Peace Maker| Social Media Influencer| Policy Analyst| Die-hard @ChelseaFC supporter\",\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"expanded_url\":\"https:\\/\\/www.theeaglesvoice.com\",\"display_url\":\"theeaglesvoice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1204,\"friends_count\":1621,\"listed_count\":1,\"created_at\":\"Tue May 14 14:24:33 +0000 2013\",\"favourites_count\":12327,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1428008881\\/1617307325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3183\":{\"id\":1514295106349805571,\"id_str\":\"1514295106349805571\",\"name\":\"Phyna\",\"screen_name\":\"Phicoco1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Thespian, interior designer, skincare therapist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:31:32 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541382547430588416\\/x0g-dkmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541382547430588416\\/x0g-dkmp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3184\":{\"id\":1498183392214532097,\"id_str\":\"1498183392214532097\",\"name\":\"Bari700\",\"screen_name\":\"Bari7007\",\"location\":\"Abuja, Nigeria \",\"description\":\"A Sports Animal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Mon Feb 28 06:29:10 +0000 2022\",\"favourites_count\":9373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498183392214532097\\/1646030690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3185\":{\"id\":1537548195332513792,\"id_str\":\"1537548195332513792\",\"name\":\"Emmanuel Abuhson\",\"screen_name\":\"emmanuelabuhson\",\"location\":\"Kogi, Nigeria\",\"description\":\"Diffusion of Innovation Strategist, Media Facilitator and Agroprenuer with over a decade work experience in Agribusiness and Business Development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Thu Jun 16 21:30:42 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537548195332513792\\/1655475965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3186\":{\"id\":1501907565248143365,\"id_str\":\"1501907565248143365\",\"name\":\"Stephen T. Quartzz\",\"screen_name\":\"StephenQuartzz\",\"location\":\"Nigeria\",\"description\":\"\\ud83e\\udd70\\ud83c\\udf89\\ud83d\\udcaf\\ud83d\\udcda\\ud83e\\udd2f\",\"url\":\"https:\\/\\/t.co\\/n3K6zq6Omg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n3K6zq6Omg\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~01ae9dcb069921269f\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":155,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Thu Mar 10 13:08:11 +0000 2022\",\"favourites_count\":6139,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":192,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536544799305699328\\/eq_OYirX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536544799305699328\\/eq_OYirX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501907565248143365\\/1646919175\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3187\":{\"id\":2217165422,\"id_str\":\"2217165422\",\"name\":\"John's_lay couture\\ud83d\\udc8e\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Johnslaycouture\",\"location\":\"Nigeria\",\"description\":\"First Born. \\nResponsibility's plenty... NATION WIDE DELIVERY AVAILABLE \\ud83d\\udcaf\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":842,\"friends_count\":706,\"listed_count\":0,\"created_at\":\"Wed Nov 27 04:39:34 +0000 2013\",\"favourites_count\":36562,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8042,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554570006582755333\\/WARZuayF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554570006582755333\\/WARZuayF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2217165422\\/1653996203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3188\":{\"id\":1273869568541437953,\"id_str\":\"1273869568541437953\",\"name\":\"ms_lateefa\",\"screen_name\":\"tees_essentials\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Fri Jun 19 06:46:13 +0000 2020\",\"favourites_count\":104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1327560471248056329\\/wnGeWdn0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1327560471248056329\\/wnGeWdn0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1273869568541437953\\/1612873033\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3189\":{\"id\":1044856596185186306,\"id_str\":\"1044856596185186306\",\"name\":\"Defi_CMSK\",\"screen_name\":\"CmskEmmanuel\",\"location\":\"Nigeria\",\"description\":\"Priest | Technical Analyst | Crypto enthusiast | Man United fan\\ud83d\\udd34\\ud83d\\udd34 | All Tech related | Crypto Ambassador | visual content Developer\",\"url\":\"https:\\/\\/t.co\\/5yjRJx2m6i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5yjRJx2m6i\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/Cmskphotography\",\"display_url\":\"facebook.com\\/Cmskphotography\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":129,\"friends_count\":365,\"listed_count\":5,\"created_at\":\"Wed Sep 26 07:49:59 +0000 2018\",\"favourites_count\":370,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555791018938830849\\/DYYS5CT1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555791018938830849\\/DYYS5CT1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1044856596185186306\\/1659658462\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3190\":{\"id\":1005630848,\"id_str\":\"1005630848\",\"name\":\"#NewNigeria\",\"screen_name\":\"truth_propagate\",\"location\":\"Maiduguri, Nigeria\",\"description\":\"Nigerian Youth for #RevolutionNigeria #2023Elections #GoodGovernance #NigeriaReform #YouthDemocracy #YouthInPower #GreatNigeria #ICT4Youth2023 #YouthRights\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":191,\"listed_count\":0,\"created_at\":\"Wed Dec 12 05:17:28 +0000 2012\",\"favourites_count\":310,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1436,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530424620389646337\\/eJdh713G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530424620389646337\\/eJdh713G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1005630848\\/1603582237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3191\":{\"id\":1027089048135983104,\"id_str\":\"1027089048135983104\",\"name\":\"Benita Ani\",\"screen_name\":\"benita_ani\",\"location\":\"Nigeria\",\"description\":\"Insurer,\\nBiz:benny's silkykola\\nSend a dm if u need Gorontular\\/sillykola\\nAugust 1st\\ud83c\\udf82\\nStudied @unijos\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":165,\"friends_count\":227,\"listed_count\":0,\"created_at\":\"Wed Aug 08 07:08:06 +0000 2018\",\"favourites_count\":799,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":283,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1340172413133328384\\/GtQCp0Zj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1340172413133328384\\/GtQCp0Zj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3192\":{\"id\":4902159379,\"id_str\":\"4902159379\",\"name\":\"Gbatima\",\"screen_name\":\"CaulkerDom\",\"location\":\"Freetown, Sierra Leone\",\"description\":\"Imperfect but modest l\\u00f8ner. Avid Reader. Rts\\/Likes = not endorsements|Books|Music|Coffee|\\n\\nScrabble aficionado. Views my own. Eph 4:2 #COYG\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":605,\"friends_count\":1542,\"listed_count\":0,\"created_at\":\"Sat Feb 13 13:47:50 +0000 2016\",\"favourites_count\":37867,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9782,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539581195587051521\\/FqiPjJV0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539581195587051521\\/FqiPjJV0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4902159379\\/1643326524\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3193\":{\"id\":990733765860347904,\"id_str\":\"990733765860347904\",\"name\":\"Susan Bukola Akande\",\"screen_name\":\"akande_susan_b\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Jesus Christ Addict.\\nRoyalty.\\nWorld Shaker.\\n#MinisterForSoupAffairs\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Sun Apr 29 23:25:11 +0000 2018\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":123,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/990768964363055104\\/Do3dzrIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/990768964363055104\\/Do3dzrIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/990733765860347904\\/1659526585\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3194\":{\"id\":287750449,\"id_str\":\"287750449\",\"name\":\"Ibanga Isine\",\"screen_name\":\"Ibykul\",\"location\":\"Abuja-Nigeria\",\"description\":\"Multiple-award winning investigative journalist, teacher, activist. CNN MultiChoice African Journalist Award, 2015. Wole Soyinka Investigative Reporter 2019.\",\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"expanded_url\":\"http:\\/\\/guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2894,\"friends_count\":882,\"listed_count\":19,\"created_at\":\"Mon Apr 25 16:18:12 +0000 2011\",\"favourites_count\":494,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2492,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3195\":{\"id\":287750449,\"id_str\":\"287750449\",\"name\":\"Ibanga Isine\",\"screen_name\":\"Ibykul\",\"location\":\"Abuja-Nigeria\",\"description\":\"Multiple-award winning investigative journalist, teacher, activist. CNN MultiChoice African Journalist Award, 2015. Wole Soyinka Investigative Reporter 2019.\",\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"expanded_url\":\"http:\\/\\/guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2894,\"friends_count\":882,\"listed_count\":19,\"created_at\":\"Mon Apr 25 16:18:12 +0000 2011\",\"favourites_count\":494,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2492,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3196\":{\"id\":1549638837877575680,\"id_str\":\"1549638837877575680\",\"name\":\"Ema Bms\",\"screen_name\":\"opuwari66\",\"location\":\"Nigeria\",\"description\":\"Affiliate Marketer|Business Coach| I teach people how to make 6 figures monthly| YouTuber| Realtor | Web Designer| Graphics Designer|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Wed Jul 20 06:14:43 +0000 2022\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554033899143139328\\/6KMBvQM3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554033899143139328\\/6KMBvQM3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549638837877575680\\/1659344320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3197\":{\"id\":1352619967649357824,\"id_str\":\"1352619967649357824\",\"name\":\"Adedayo Adesuyi\",\"screen_name\":\"AdesuyiAdedayo\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Administrator | Tech Enthusiast | \\u271d\\ufe0f | MUFC\\ud83d\\udc4a\\ud83d\\udd34\\ud83d\\udc79\\u26bd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":653,\"friends_count\":649,\"listed_count\":0,\"created_at\":\"Fri Jan 22 14:12:08 +0000 2021\",\"favourites_count\":50818,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8950,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548014767024906240\\/0_-6ELqN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548014767024906240\\/0_-6ELqN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1352619967649357824\\/1657911341\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3198\":{\"id\":4493503761,\"id_str\":\"4493503761\",\"name\":\"Ariemu Ogaga, arpa\",\"screen_name\":\"ariemu_ogaga\",\"location\":\"Abuja\",\"description\":\"Brilliant Journalist\\/Researcher\\/Advertiser\\/Salesperson\",\"url\":\"https:\\/\\/t.co\\/8GQhIx78iQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8GQhIx78iQ\",\"expanded_url\":\"https:\\/\\/nigeriannewsdirect.com\\/?s=Ogaga+ariemu\",\"display_url\":\"nigeriannewsdirect.com\\/?s=Ogaga+ariemu\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":156,\"friends_count\":364,\"listed_count\":0,\"created_at\":\"Tue Dec 15 16:01:32 +0000 2015\",\"favourites_count\":542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1396947190820573185\\/ujBt-cFO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1396947190820573185\\/ujBt-cFO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3199\":{\"id\":1225167464549507075,\"id_str\":\"1225167464549507075\",\"name\":\"F.S.o.A\",\"screen_name\":\"arynzeee\",\"location\":\"Nigeria\",\"description\":\"First Son of ADOLPH \\ud83c\\udfc5\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":405,\"listed_count\":0,\"created_at\":\"Wed Feb 05 21:23:22 +0000 2020\",\"favourites_count\":1939,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":480,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550198190699315200\\/c6kn_fRm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550198190699315200\\/c6kn_fRm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1225167464549507075\\/1657498452\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3200\":{\"id\":1261941616979382273,\"id_str\":\"1261941616979382273\",\"name\":\"Epitome Stores\",\"screen_name\":\"EpitomeStores\",\"location\":\"Nigeria\",\"description\":\"Epitome Stores .. It's all about you.\\nWe sell cloths & shoes for all genders, ages & specific edibles like Honey.\\nCall: +2348062412774.\\n#EpitomeStores\",\"url\":\"https:\\/\\/t.co\\/MhUZg49zd1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MhUZg49zd1\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCX234CH6IqtT4xn_8_R3gpA\",\"display_url\":\"youtube.com\\/channel\\/UCX234\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":117,\"friends_count\":79,\"listed_count\":1,\"created_at\":\"Sun May 17 08:49:50 +0000 2020\",\"favourites_count\":7024,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6833,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1293916811508035585\\/hDGyRyfn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1293916811508035585\\/hDGyRyfn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261941616979382273\\/1597328847\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3201\":{\"id\":1546817892573921281,\"id_str\":\"1546817892573921281\",\"name\":\"Your Data & Airtime Plug \\ud83d\\udd0c\",\"screen_name\":\"Jara_Connect\",\"location\":\"Abuja\",\"description\":\"Get the best deals on;\\n\\u2022Airtime & Data \\n\\u2022TV subscription\\n\\u2022Electricity bills payment\\n\\u2022Airtime to cash\\n\\nAt https:\\/\\/t.co\\/UW7WXqAs6a\",\"url\":\"https:\\/\\/t.co\\/WFTmvTjGTV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WFTmvTjGTV\",\"expanded_url\":\"http:\\/\\/Jaraconnect.com\",\"display_url\":\"Jaraconnect.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW7WXqAs6a\",\"expanded_url\":\"http:\\/\\/jaraconnect.com\",\"display_url\":\"jaraconnect.com\",\"indices\":[105,128]}]}},\"protected\":false,\"followers_count\":34,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jul 12 11:25:32 +0000 2022\",\"favourites_count\":224,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546824254800502787\\/Qi7Ccqqj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546824254800502787\\/Qi7Ccqqj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546817892573921281\\/1659257455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3202\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3203\":{\"id\":242984841,\"id_str\":\"242984841\",\"name\":\"Izzitalk\",\"screen_name\":\"izzitalk\",\"location\":\"Nigeria\",\"description\":\"We must be United, that's the only way to massively win.\",\"url\":\"https:\\/\\/t.co\\/pBd8pZ5zUm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pBd8pZ5zUm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/ikoTYrO-Y1M\",\"display_url\":\"youtu.be\\/ikoTYrO-Y1M\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":736,\"friends_count\":3582,\"listed_count\":8,\"created_at\":\"Wed Jan 26 01:37:08 +0000 2011\",\"favourites_count\":2254,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9525,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555938779558445057\\/ZiuIEb01_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555938779558445057\\/ZiuIEb01_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/242984841\\/1659799650\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3204\":{\"id\":1553705771090808834,\"id_str\":\"1553705771090808834\",\"name\":\"VICKYCARE FOUNDATION\",\"screen_name\":\"VICKYCARE1\",\"location\":\"ABUJA, NIGERIA\",\"description\":\"Our aim is reaching out to less privileged children, women, the girl child and the disabled, for the most valid expression of love is giving.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Sun Jul 31 11:35:29 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553706287489335299\\/LXgJ8OQ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553706287489335299\\/LXgJ8OQ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553705771090808834\\/1659267603\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3205\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3206\":{\"id\":839048721446891520,\"id_str\":\"839048721446891520\",\"name\":\"France Sonara\",\"screen_name\":\"FranceSonara\",\"location\":\"Guinea Bissau\",\"description\":\"Africa is still Victim of colonialism and world wars. The effects are eminent. The people dwell in cruelty and discord. Tribalism in governance and state terror\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Mar 07 09:42:58 +0000 2017\",\"favourites_count\":212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2877,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999186515262492672\\/0YHH-j5C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/839048721446891520\\/1527059608\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3207\":{\"id\":2878666641,\"id_str\":\"2878666641\",\"name\":\"Emmanuel Atser \\ud83d\\udc99\\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\udf13\\ud83d\\ude80\",\"screen_name\":\"emmanuel_atser\",\"location\":\"Abuja, Nigeria\",\"description\":\"Makurdi,Benue,Nigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2521,\"friends_count\":3869,\"listed_count\":3,\"created_at\":\"Sat Nov 15 22:30:43 +0000 2014\",\"favourites_count\":11614,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16049,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322158480321634304\\/vw12EHLn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322158480321634304\\/vw12EHLn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2878666641\\/1568936199\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3208\":{\"id\":461902032,\"id_str\":\"461902032\",\"name\":\"OLUWATOBILOBA\",\"screen_name\":\"tobzyeasy\",\"location\":\"Nigeria\",\"description\":\"Just try and always believe in yourself\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":539,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Thu Jan 12 10:02:25 +0000 2012\",\"favourites_count\":5838,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11780,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1314850400621789186\\/U3e0dz9Y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1314850400621789186\\/U3e0dz9Y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/461902032\\/1406714591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3209\":{\"id\":1545418862845476864,\"id_str\":\"1545418862845476864\",\"name\":\"Solid Mineral Sorcerer\",\"screen_name\":\"MineralSorcerer\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"My sole aim is to source for any type of Solid Minerals (Commercial quantities), Purchase\\/Lease of mining sites and Exploration.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Fri Jul 08 14:46:03 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545419865447604226\\/YJbs8VnI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545419865447604226\\/YJbs8VnI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3210\":{\"id\":305454038,\"id_str\":\"305454038\",\"name\":\"Ojongs\",\"screen_name\":\"Ojongs1\",\"location\":\"Nigeria\",\"description\":\"System Engineer\\/\\/Cybersecurity Specialist\\/\\/UI Designer\\/\\/IoT\\/\\/Web developer\\/\\/Digital Marketing Manager\\/\\/Laptop Sure Plug\\ud83d\\udd0c\\ud83d\\udd0c\\ud83d\\udd0c\",\"url\":\"https:\\/\\/t.co\\/qvKvlMJYgF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qvKvlMJYgF\",\"expanded_url\":\"http:\\/\\/ojongs.blogspot.com\",\"display_url\":\"ojongs.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":459,\"friends_count\":1647,\"listed_count\":0,\"created_at\":\"Thu May 26 07:33:05 +0000 2011\",\"favourites_count\":805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2209,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546930272762986496\\/ZqbakvwU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546930272762986496\\/ZqbakvwU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/305454038\\/1552515311\",\"profile_link_color\":\"23CAEB\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3211\":{\"id\":855447441964924930,\"id_str\":\"855447441964924930\",\"name\":\"Victor I.Bajju\",\"screen_name\":\"Victorbajju_30\",\"location\":\"Abuja, Nigeria\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/jfT5oFaJqI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jfT5oFaJqI\",\"expanded_url\":\"http:\\/\\/www.Rainbowconceptpaintingltd.com\",\"display_url\":\"Rainbowconceptpaintingltd.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":570,\"friends_count\":654,\"listed_count\":0,\"created_at\":\"Fri Apr 21 15:45:38 +0000 2017\",\"favourites_count\":8149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556162311148257280\\/GdQacD58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556162311148257280\\/GdQacD58_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/855447441964924930\\/1658306853\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3212\":{\"id\":3194490489,\"id_str\":\"3194490489\",\"name\":\"Trouv\\u00e9\",\"screen_name\":\"trouve_ng\",\"location\":\"Nigeria\",\"description\":\"Tell us what you want, we will find it and connect you for free.\\nThat simple.\\nReach us on WhatsApp @ https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348088939403\",\"display_url\":\"wa.me\\/2348088939403\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348088939403\",\"display_url\":\"wa.me\\/2348088939403\",\"indices\":[101,124]}]}},\"protected\":false,\"followers_count\":381,\"friends_count\":379,\"listed_count\":0,\"created_at\":\"Wed Apr 22 11:48:32 +0000 2015\",\"favourites_count\":237,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1364127139621203968\\/w41HpyS4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1364127139621203968\\/w41HpyS4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3194490489\\/1614068232\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3213\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3214\":{\"id\":211586223,\"id_str\":\"211586223\",\"name\":\"Kelvs\",\"screen_name\":\"kelvinalohan\",\"location\":\"Abuja, Nigeria.\",\"description\":\"Sometimes blur is needed to see everything else clearly. \\n#FaithfulGod\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1626,\"friends_count\":3982,\"listed_count\":4,\"created_at\":\"Wed Nov 03 17:41:39 +0000 2010\",\"favourites_count\":2984,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3488,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319694544829636609\\/dL6VDvka_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319694544829636609\\/dL6VDvka_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/211586223\\/1415561983\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3215\":{\"id\":1385591842733953025,\"id_str\":\"1385591842733953025\",\"name\":\"DJ SANOS\",\"screen_name\":\"GeorgeEneje\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Entertainment Lover | Music Producer | Beat Maker | Amateur Photographer | Amateur Film Maker | Communication & Media Studies\",\"url\":\"https:\\/\\/t.co\\/XNPotoYIkP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XNPotoYIkP\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/weird-daredevilnft\",\"display_url\":\"opensea.io\\/collection\\/wei\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":613,\"friends_count\":457,\"listed_count\":25,\"created_at\":\"Fri Apr 23 13:50:27 +0000 2021\",\"favourites_count\":377,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532624853479698432\\/TOg1e8dt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532624853479698432\\/TOg1e8dt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1385591842733953025\\/1648373830\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3216\":{\"id\":1229291322047111173,\"id_str\":\"1229291322047111173\",\"name\":\"Stancity\",\"screen_name\":\"Stancity3\",\"location\":\"Abuja\",\"description\":\"The Earth is ours to Plough and Not to Plunder!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Mon Feb 17 06:28:10 +0000 2020\",\"favourites_count\":2498,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":816,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530470919776440323\\/u-Tos2Ws_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530470919776440323\\/u-Tos2Ws_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1229291322047111173\\/1659465084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3217\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3218\":{\"id\":1482286953806630912,\"id_str\":\"1482286953806630912\",\"name\":\"Hon Gaya\",\"screen_name\":\"MrGaya23\",\"location\":\"Nigeria\",\"description\":\"The legacy builder's, peace builder and Compassionate\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":577,\"listed_count\":0,\"created_at\":\"Sat Jan 15 09:42:31 +0000 2022\",\"favourites_count\":2693,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482286953806630912\\/1653148630\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3219\":{\"id\":1537458387067314177,\"id_str\":\"1537458387067314177\",\"name\":\"Class Suites Hotel & Apartments\",\"screen_name\":\"classsuitehotel\",\"location\":\"Nigeria\",\"description\":\"Hotel & Apartments; Your home away from home \\ud83c\\udfe1\",\"url\":\"https:\\/\\/t.co\\/nLFlO8nWwM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nLFlO8nWwM\",\"expanded_url\":\"https:\\/\\/classsuite.com\\/\",\"display_url\":\"classsuite.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Thu Jun 16 15:34:24 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":55,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537458639589588993\\/2f6WP4T4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537458639589588993\\/2f6WP4T4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537458387067314177\\/1655394235\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3220\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3221\":{\"id\":880015105135607808,\"id_str\":\"880015105135607808\",\"name\":\"Zeeter Oliver\",\"screen_name\":\"OliverZeeter\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec Afrofusion Songstress of Abuja \\n. \\n\\nInstagram\\n\\n- @zeeteroliver \\n\\nMy Music \\n- \\n\\nhttps:\\/\\/t.co\\/nccSFc5qkp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nccSFc5qkp\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Zeeteroliver\",\"display_url\":\"linktr.ee\\/Zeeteroliver\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":326,\"friends_count\":1050,\"listed_count\":1,\"created_at\":\"Wed Jun 28 10:48:45 +0000 2017\",\"favourites_count\":904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":784,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880015105135607808\\/1659766982\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3222\":{\"id\":324184276,\"id_str\":\"324184276\",\"name\":\"Ayodele ti idi ile Ogunsusi\",\"screen_name\":\"officialOSYB\",\"location\":\"Nigeria\",\"description\":\"O.A.P, #87MediaCo #JesusBoy #FakeAccents. Compere | Music Producer |Copy Writer |Songwriter |Singer |Voice Actor. Bookings 07032700419.\",\"url\":\"https:\\/\\/t.co\\/VOFxhyszqh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VOFxhyszqh\",\"expanded_url\":\"https:\\/\\/youtu.be\\/-V7j8TcY9MQ\",\"display_url\":\"youtu.be\\/-V7j8TcY9MQ\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1089,\"friends_count\":1035,\"listed_count\":8,\"created_at\":\"Sun Jun 26 04:34:08 +0000 2011\",\"favourites_count\":6566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17140,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481599727774969862\\/-hHI30lB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481599727774969862\\/-hHI30lB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/324184276\\/1653840453\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3223\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3224\":{\"id\":1100468667815477248,\"id_str\":\"1100468667815477248\",\"name\":\"daps :)\",\"screen_name\":\"beatsbydaps\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"expanded_url\":\"https:\\/\\/mainstack.me\\/daps\",\"display_url\":\"mainstack.me\\/daps\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":274,\"friends_count\":434,\"listed_count\":2,\"created_at\":\"Tue Feb 26 18:52:30 +0000 2019\",\"favourites_count\":4493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100468667815477248\\/1655589645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3225\":{\"id\":1296726719425130497,\"id_str\":\"1296726719425130497\",\"name\":\"Igwe Richard\",\"screen_name\":\"IgweRichard8\",\"location\":\"Nigeria\",\"description\":\"simplicity is my nature, I love equity, justice and fairness, I hate discrimination.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Aug 21 08:32:21 +0000 2020\",\"favourites_count\":1112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":240,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549999638811377664\\/LxVl3_Ae_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549999638811377664\\/LxVl3_Ae_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1296726719425130497\\/1659511479\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3226\":{\"id\":1513140523346931718,\"id_str\":\"1513140523346931718\",\"name\":\"Your Excellency\",\"screen_name\":\"yenkwin\",\"location\":\"Nigeria\",\"description\":\"Graphics Designer | Official tweets are assigned GN, else it's just for fun.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":103,\"listed_count\":0,\"created_at\":\"Sun Apr 10 13:03:32 +0000 2022\",\"favourites_count\":1354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3227\":{\"id\":333373252,\"id_str\":\"333373252\",\"name\":\"Gbenga Adene\",\"screen_name\":\"GbengaAdene\",\"location\":\"Nigeria\",\"description\":\"Architect @gbengaadene Public Speaker @contacthowga1 and a Consultant. Ondo State Youth of the Year 2019 || JCI Top Ten Youths in Nigeria 2020\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1173,\"friends_count\":99,\"listed_count\":1,\"created_at\":\"Mon Jul 11 12:50:49 +0000 2011\",\"favourites_count\":2521,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395708244190957568\\/gB8Gq6oM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395708244190957568\\/gB8Gq6oM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/333373252\\/1525846402\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3228\":{\"id\":1501236907954610185,\"id_str\":\"1501236907954610185\",\"name\":\"Tariq Properties Limited\",\"screen_name\":\"tariqproperties\",\"location\":\"Nigeria\",\"description\":\"Real Estate Broker| Consultant |Development\\ud83d\\udccdVGC- Ikoyi \\ud83c\\udfe0Sales \\ud83c\\udfe0Rents \\ud83c\\udfe0Land\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Tue Mar 08 16:43:37 +0000 2022\",\"favourites_count\":64,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501237447732170755\\/q5EGbjnc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501237447732170755\\/q5EGbjnc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501236907954610185\\/1646758022\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3229\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3230\":{\"id\":2180916851,\"id_str\":\"2180916851\",\"name\":\"KING OF THE STREET \\u270d\\ufe0f\",\"screen_name\":\"Mc_Highness\",\"location\":\"Nigeria\",\"description\":\"News and Media Company\",\"url\":\"https:\\/\\/t.co\\/dnRLuXpMcS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dnRLuXpMcS\",\"expanded_url\":\"http:\\/\\/www.naijarealitynews.com\",\"display_url\":\"naijarealitynews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":948,\"friends_count\":2894,\"listed_count\":5,\"created_at\":\"Thu Nov 14 17:14:25 +0000 2013\",\"favourites_count\":940,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4998,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367825090117853187\\/tgdrXgmm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367825090117853187\\/tgdrXgmm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2180916851\\/1652413249\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3231\":{\"id\":1320431678,\"id_str\":\"1320431678\",\"name\":\"Igbuku christian mamus\",\"screen_name\":\"SirIgbuku\",\"location\":\"Nigeria\",\"description\":\"Am a certified librarian,a businessman also a politician, in all Christ is my priority\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":244,\"friends_count\":332,\"listed_count\":1,\"created_at\":\"Mon Apr 01 14:14:37 +0000 2013\",\"favourites_count\":115,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":344,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551277807082291200\\/5ztE_JOC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551277807082291200\\/5ztE_JOC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320431678\\/1642064501\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3232\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3233\":{\"id\":2409715205,\"id_str\":\"2409715205\",\"name\":\"Odipkreations\",\"screen_name\":\"odipkreations\",\"location\":\"Abuja\",\"description\":\"You can get the best when u trust us to give u the best. This is odip kreation where ur dreams abt cakes become a reality. Pin:2BB356AA. Call 08064077401\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Fri Mar 14 09:12:08 +0000 2014\",\"favourites_count\":332,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":520,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1259999982071005187\\/L8mqai9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1259999982071005187\\/L8mqai9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2409715205\\/1478247326\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3234\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3235\":{\"id\":1282445934065057792,\"id_str\":\"1282445934065057792\",\"name\":\"soulflows fyneface\",\"screen_name\":\"soulflows_F\",\"location\":\"Nigeria\",\"description\":\"Husband| TV Host|Coach| political Analyst|word in 60 seconds|voice over artist|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1468,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Sun Jul 12 22:45:21 +0000 2020\",\"favourites_count\":14051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":417,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282445934065057792\\/1594594508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3236\":{\"id\":927116579116118016,\"id_str\":\"927116579116118016\",\"name\":\"dubizSenju\",\"screen_name\":\"dubiz_senju\",\"location\":\"Nigeria \",\"description\":\"my name is dubem Victor \\nI'm a digital comic artist. \\nI'm the author of the webcomic:Dream\\nI also make digital portraits and posters,\\nI take commissions\",\"url\":\"https:\\/\\/t.co\\/11ZVKTYAi4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/11ZVKTYAi4\",\"expanded_url\":\"http:\\/\\/www.dreamseries.webcomic.ws\",\"display_url\":\"dreamseries.webcomic.ws\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":90,\"friends_count\":238,\"listed_count\":1,\"created_at\":\"Sun Nov 05 10:13:12 +0000 2017\",\"favourites_count\":151,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529451360638361603\\/1LOk23J7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529451360638361603\\/1LOk23J7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/927116579116118016\\/1589452669\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3237\":{\"id\":1154339523800834048,\"id_str\":\"1154339523800834048\",\"name\":\"MIMI NATION\",\"screen_name\":\"Mimi_Nation22\",\"location\":\"Abuja, Nigeria\",\"description\":\"A visual artist, I paint with gold and silver. Listed NFT's for sale to invest in my art and community.\\n\\nPlease collect my Arts via the link below. Thanks\",\"url\":\"https:\\/\\/t.co\\/mBshyztJ1T\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mBshyztJ1T\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/mimi-nation-collection\",\"display_url\":\"opensea.io\\/collection\\/mim\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":119,\"listed_count\":0,\"created_at\":\"Thu Jul 25 10:36:03 +0000 2019\",\"favourites_count\":210,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534137134730338304\\/dIP_rZcK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534137134730338304\\/dIP_rZcK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1154339523800834048\\/1654601771\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3238\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3239\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3240\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3241\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3242\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3243\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3244\":{\"id\":859248504,\"id_str\":\"859248504\",\"name\":\"LECTOR NOCTURNO\",\"screen_name\":\"MangasJavier\",\"location\":\"Marte\",\"description\":\"Quiero dormir un rato, un rato, un minuto, un siglo; pero que todos sepan que no he muerto\\n\\n#Pumas\\n#49ers #Dallas\\nContador de carrera\\nAteoPolitico\\nPero\\n\\ud83d\\udcaf% AMLO\",\"url\":\"https:\\/\\/t.co\\/7fJgdIrxsT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7fJgdIrxsT\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/MangasJavier\",\"display_url\":\"Instagram.com\\/MangasJavier\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2522,\"friends_count\":2203,\"listed_count\":0,\"created_at\":\"Wed Oct 03 06:07:32 +0000 2012\",\"favourites_count\":26114,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82152,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532255746754129920\\/Jcx3k3hL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532255746754129920\\/Jcx3k3hL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/859248504\\/1654578395\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3245\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3246\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3247\":{\"id\":721409786,\"id_str\":\"721409786\",\"name\":\"Kindy\",\"screen_name\":\"raphaelkindy\",\"location\":\"Nigeria\",\"description\":\"A tech lover\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":813,\"listed_count\":2,\"created_at\":\"Sat Jul 28 03:33:50 +0000 2012\",\"favourites_count\":1443,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550701008698892288\\/LOJ5oi3n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550701008698892288\\/LOJ5oi3n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/721409786\\/1646459272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3248\":{\"id\":881482790415609856,\"id_str\":\"881482790415609856\",\"name\":\"Humanaidng\",\"screen_name\":\"humanaidng\",\"location\":\"Abuja, Nigeria\",\"description\":\"We are professionals committed to promoting child education, health and empowering mothers for sustainable child care.\",\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\",\"display_url\":\"humanaid.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sun Jul 02 12:00:49 +0000 2017\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/881482790415609856\\/1561182580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3249\":{\"id\":921181314400661504,\"id_str\":\"921181314400661504\",\"name\":\"ONOGWU Muhammed\",\"screen_name\":\"Galacticus_O\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Technologist, Journalist, Chief Press Secretary to @OfficialGYBKogi\",\"url\":\"https:\\/\\/t.co\\/TQgtwSqZ62\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TQgtwSqZ62\",\"expanded_url\":\"http:\\/\\/www.kogistate.gov.ng\",\"display_url\":\"kogistate.gov.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9667,\"friends_count\":1415,\"listed_count\":14,\"created_at\":\"Fri Oct 20 01:08:34 +0000 2017\",\"favourites_count\":2891,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1940,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538590533899243520\\/eFQreVIo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538590533899243520\\/eFQreVIo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/921181314400661504\\/1655824853\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3250\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3251\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3252\":{\"id\":1537878267587227649,\"id_str\":\"1537878267587227649\",\"name\":\"This_is_gabrieltv\",\"screen_name\":\"gabriel1tv\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec v \\ud83d\\ude02a \\ud83d\\ude02w \\ud83d\\ude02u \\ud83d\\ude02l \\ud83d\\ude02e \\ud83d\\ude02n \\ud83d\\ude02c \\ud83d\\ude02e \\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/PEK959NwkO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PEK959NwkO\",\"expanded_url\":\"https:\\/\\/gabriel1tv.blogspot.com\\/\",\"display_url\":\"gabriel1tv.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":43,\"listed_count\":1,\"created_at\":\"Fri Jun 17 19:22:36 +0000 2022\",\"favourites_count\":253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":98,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537879830699462658\\/m4IIceuI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537879830699462658\\/m4IIceuI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537878267587227649\\/1655495903\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3253\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3254\":{\"id\":245215938,\"id_str\":\"245215938\",\"name\":\"Ugoala Justice Uche\",\"screen_name\":\"just_urch\",\"location\":\"Nigeria\",\"description\":\"We make the Best Peanuts\\/\\n\\n IG: @greatfoodsng\\n\\nJust about anyone can be Financially Independent\",\"url\":\"https:\\/\\/t.co\\/3mhDtNxR2q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3mhDtNxR2q\",\"expanded_url\":\"https:\\/\\/ucheugoala.blogspot.com.ng\\/\",\"display_url\":\"ucheugoala.blogspot.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":536,\"friends_count\":2035,\"listed_count\":3,\"created_at\":\"Mon Jan 31 04:34:34 +0000 2011\",\"favourites_count\":8563,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10444,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1290009597147742210\\/N51YwzAa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1290009597147742210\\/N51YwzAa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/245215938\\/1621753201\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3255\":{\"id\":1016809643157458946,\"id_str\":\"1016809643157458946\",\"name\":\"Lloyd Manasseh E. Agbonlahor\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f\",\"screen_name\":\"Lloyd_Manasseh\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\u2206 Head of Mission - The GreenLabel Africa\\n\\u2206 Special Youth Envoy - New Africa-France Summit\\n\\u2206 Refugees, IDPs, Returnees & Stateless Persons Advocate\",\"url\":\"https:\\/\\/t.co\\/7p3YBMcuJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7p3YBMcuJX\",\"expanded_url\":\"http:\\/\\/Thegreenlabelafrica.org\",\"display_url\":\"Thegreenlabelafrica.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1008,\"friends_count\":334,\"listed_count\":0,\"created_at\":\"Tue Jul 10 22:21:25 +0000 2018\",\"favourites_count\":5577,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551598324561727490\\/BFCpc2Pk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551598324561727490\\/BFCpc2Pk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1016809643157458946\\/1578265720\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3256\":{\"id\":1492189784575553539,\"id_str\":\"1492189784575553539\",\"name\":\"Llamaduck\",\"screen_name\":\"RealLlamaDuck\",\"location\":\"a pond near you\",\"description\":\"Part Llama, Part Duck.\\nI will never kill myself, if I end up dead investigate\",\"url\":\"https:\\/\\/t.co\\/MOuM98hPuY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MOuM98hPuY\",\"expanded_url\":\"https:\\/\\/t.me\\/TruthRevealedFull\",\"display_url\":\"t.me\\/TruthRevealedF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":186,\"friends_count\":115,\"listed_count\":3,\"created_at\":\"Fri Feb 11 17:32:34 +0000 2022\",\"favourites_count\":2665,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3214,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526527734696099841\\/fwmAQobg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526527734696099841\\/fwmAQobg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492189784575553539\\/1644602009\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3257\":{\"id\":1482356556813545473,\"id_str\":\"1482356556813545473\",\"name\":\"Nigeria youths for Peter Obi\",\"screen_name\":\"peterobimandate\",\"location\":\"Abuja, Nigeria\",\"description\":\"Everything Peter Obi\\/\\/Update Peter Obi...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237,\"friends_count\":225,\"listed_count\":3,\"created_at\":\"Sat Jan 15 14:18:54 +0000 2022\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482356556813545473\\/1659438195\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3258\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3259\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3260\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3261\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3262\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3263\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3264\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3265\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3266\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3267\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3268\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3269\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3270\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3271\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3272\":{\"id\":927909864004902912,\"id_str\":\"927909864004902912\",\"name\":\"Chioma Nweze\",\"screen_name\":\"ChristabelNwez1\",\"location\":\"Nigeria\",\"description\":\"Am a passionate Actor & Model.Always giving it my best https:\\/\\/t.co\\/X50GYo1RPC can email me @ christabelnweze@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X50GYo1RPC\",\"expanded_url\":\"http:\\/\\/shot.You\",\"display_url\":\"shot.You\",\"indices\":[55,78]}]}},\"protected\":false,\"followers_count\":2,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Tue Nov 07 14:45:26 +0000 2017\",\"favourites_count\":184,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261231368304017410\\/edEduZ44_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261231368304017410\\/edEduZ44_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3273\":{\"id\":1487177731905400837,\"id_str\":\"1487177731905400837\",\"name\":\"Daniel TemiTope Oluwarado\",\"screen_name\":\"DOluwarado\",\"location\":\"Nigeria\",\"description\":\"I am a plumber\\ud83d\\ude01\\ud83d\\udc68\\u200d\\ud83d\\udd27\\ud83d\\udc51\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":41,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Fri Jan 28 21:36:31 +0000 2022\",\"favourites_count\":12399,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":105,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495788804057276417\\/qPPCrly2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495788804057276417\\/qPPCrly2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487177731905400837\\/1645458941\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3274\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3275\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3276\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3277\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3278\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3279\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3280\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3281\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3282\":{\"id\":1186208214552961024,\"id_str\":\"1186208214552961024\",\"name\":\"HUi HUi HUi HUi HUi\",\"screen_name\":\"DNobody101\",\"location\":\"UAE\",\"description\":\"Cheeni\\n\\nTweets R fake\\n\\nParody Account \\n\\nRocket Scientist\\n\\nIdiots will be Immediately BLOCKED \\n\\nPart Time Lawyer\\nFull Time Liar\\n\\nRT and Likes are NOT endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1185,\"friends_count\":1081,\"listed_count\":2,\"created_at\":\"Mon Oct 21 09:11:25 +0000 2019\",\"favourites_count\":130680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":820,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554499482653687808\\/bTPYwv2-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554499482653687808\\/bTPYwv2-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1186208214552961024\\/1656778726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3283\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3284\":{\"id\":1517348080705843217,\"id_str\":\"1517348080705843217\",\"name\":\"La princesse Anne \\ud83c\\udf6b\\ud83d\\udc8b\\ud83d\\udc83\",\"screen_name\":\"Balzack_17\",\"location\":\"Bamako Mali\",\"description\":\"\\u00c9tudiante Blogueuse, Journaliste, \\u00c9crivaine, Artiste\\nBeaut\\u00e9, demoiselle Assimiste,\\nBalzack_anne a bit shy (un peu timide)\\ud83d\\ude48\\ud83d\\ude48\\ud83d\\ude4aslogan b\\u00e2t toi et c\\u00e9l\\u00e8bre \\ud83d\\udc9c\\ud83d\\udc9c\\ud83d\\udc9c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":399,\"friends_count\":807,\"listed_count\":0,\"created_at\":\"Fri Apr 22 03:42:46 +0000 2022\",\"favourites_count\":318,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":287,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556107150899937282\\/E3krWDAE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556107150899937282\\/E3krWDAE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517348080705843217\\/1659410167\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3285\":{\"id\":56588882,\"id_str\":\"56588882\",\"name\":\"GaGirl714\",\"screen_name\":\"Zoeys_Mom74\",\"location\":\" Ga\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":421,\"friends_count\":1302,\"listed_count\":5,\"created_at\":\"Tue Jul 14 03:14:04 +0000 2009\",\"favourites_count\":20068,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7765,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536228623505666048\\/ENyyzJ-Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536228623505666048\\/ENyyzJ-Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/56588882\\/1655100550\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3286\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3287\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3288\":{\"id\":516450674,\"id_str\":\"516450674\",\"name\":\"Moses Kaketo\",\"screen_name\":\"mkaketo\",\"location\":\"Uganda\",\"description\":\"Circulation and distribution expert,Journalist, Marketer, Farmer, Teacher. Writer at Newz Post https:\\/\\/t.co\\/Pwkue3WOYk\",\"url\":\"https:\\/\\/t.co\\/wtGE5sC5b6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wtGE5sC5b6\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/pub\\/moses-kaketo\\/31\\/b5b\\/437\",\"display_url\":\"linkedin.com\\/pub\\/moses-kake\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Pwkue3WOYk\",\"expanded_url\":\"http:\\/\\/www.newz.ug\",\"display_url\":\"newz.ug\",\"indices\":[95,118]}]}},\"protected\":false,\"followers_count\":503,\"friends_count\":268,\"listed_count\":60,\"created_at\":\"Tue Mar 06 11:43:30 +0000 2012\",\"favourites_count\":744,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6974,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/821594492042170368\\/tsNJs3n5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/821594492042170368\\/tsNJs3n5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/516450674\\/1484718328\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3289\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3290\":{\"id\":1423396129048309762,\"id_str\":\"1423396129048309762\",\"name\":\"LITSPYCH0\\ud83c\\udf15\\ud83c\\udf19\\u2728\",\"screen_name\":\"lit_spych0\",\"location\":\"Abuja, Nigeria\",\"description\":\"#forbesminded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Thu Aug 05 21:31:14 +0000 2021\",\"favourites_count\":3336,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":162,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535691055554781185\\/Xw5hMDWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535691055554781185\\/Xw5hMDWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1423396129048309762\\/1648634086\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3291\":{\"id\":1527266123741265921,\"id_str\":\"1527266123741265921\",\"name\":\"SimmyMoses\",\"screen_name\":\"seemeon79\",\"location\":\"Akwa Ibom, Nigeria\",\"description\":\"Be nice to me\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":141,\"listed_count\":0,\"created_at\":\"Thu May 19 12:33:29 +0000 2022\",\"favourites_count\":247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534431929478565888\\/Yxd3zFea_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534431929478565888\\/Yxd3zFea_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3292\":{\"id\":1170042564688437255,\"id_str\":\"1170042564688437255\",\"name\":\"V for Vawulence\\ud83d\\uddef\",\"screen_name\":\"Ychizway\",\"location\":\"EPISODIC ESTATE\",\"description\":\"official IG account @ychizway\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Sep 06 18:34:47 +0000 2019\",\"favourites_count\":6420,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554622227693330433\\/rC9dJa8k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554622227693330433\\/rC9dJa8k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1170042564688437255\\/1659485809\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3293\":{\"id\":1553580006978224128,\"id_str\":\"1553580006978224128\",\"name\":\"Raymond Digital\",\"screen_name\":\"RaymondDigital2\",\"location\":\"Nigeria\",\"description\":\"Hello, I am a Web\\/E-commerce Developer and Author, I offer quality gigs for Etsy, Shopify, Wix, Redbubble, Amazon, Wattpad. I look forward to working with you\",\"url\":\"https:\\/\\/t.co\\/Ms3tOCdH9s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ms3tOCdH9s\",\"expanded_url\":\"http:\\/\\/www.fiverr.com\\/raymonddigital\",\"display_url\":\"fiverr.com\\/raymonddigital\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":140,\"listed_count\":0,\"created_at\":\"Sun Jul 31 03:15:42 +0000 2022\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553586679516127232\\/FVPdCgQc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553586679516127232\\/FVPdCgQc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553580006978224128\\/1659238909\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3294\":{\"id\":770821664250757124,\"id_str\":\"770821664250757124\",\"name\":\"Godswill Asuquo\",\"screen_name\":\"Gafexian_Zone\",\"location\":\"Nigeria\",\"description\":\"Pencil and biro Artist | Graphic designer | Architect | Chelsea FC | Lover of classical music | Deo ac veritati\",\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/gafexianzone\",\"display_url\":\"facebook.com\\/gafexianzone\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":591,\"listed_count\":0,\"created_at\":\"Wed Aug 31 03:13:00 +0000 2016\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3295\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3296\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3297\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3298\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3299\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3300\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3301\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3302\":{\"id\":1546440944207151106,\"id_str\":\"1546440944207151106\",\"name\":\"Os Steve\",\"screen_name\":\"OsStevegivethem\",\"location\":\"Nigeria\",\"description\":\"Nigerian Music Artist, rapper, influencer.\\nbookings @ossteve123@gmail.com\\nor WhatsApp @ 234 - 08135683140\",\"url\":\"https:\\/\\/t.co\\/hRGeysqlj5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hRGeysqlj5\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/os-steve\\/song\\/19407190\",\"display_url\":\"audiomack.com\\/os-steve\\/song\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Mon Jul 11 10:28:04 +0000 2022\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546441184830279680\\/c22EMg88_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546441184830279680\\/c22EMg88_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3303\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3304\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3305\":{\"id\":588966961,\"id_str\":\"588966961\",\"name\":\"Kapital FM Abuja 92.9\",\"screen_name\":\"kapital929\",\"location\":\"Abuja, Nigeria\",\"description\":\"Official Twitter handle of 92.9 KapitalFM Abuja, The Station that Rocks! Follow us for interesting and informative tweets. IG: kapital929\",\"url\":\"https:\\/\\/t.co\\/FtTU9YFiKL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FtTU9YFiKL\",\"expanded_url\":\"http:\\/\\/www.kapital929.fm\",\"display_url\":\"kapital929.fm\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5295,\"friends_count\":340,\"listed_count\":46,\"created_at\":\"Thu May 24 08:50:15 +0000 2012\",\"favourites_count\":912,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":43101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/643490743785529344\\/nft4-pKN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/643490743785529344\\/nft4-pKN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/588966961\\/1602486140\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3306\":{\"id\":1282943999393894402,\"id_str\":\"1282943999393894402\",\"name\":\"Teacher Chike\",\"screen_name\":\"teacherchike1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Biology Teacher ||\\nMotivational Speaker ||\\nContent Creator ||\\nTeens Coach || \\nChildren Evangelist ||\\nAmazon KDP Publisher\",\"url\":\"https:\\/\\/t.co\\/kMStY8t2JQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kMStY8t2JQ\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCvA-qOZYQgCVlLaHOcmcQsw\",\"display_url\":\"m.youtube.com\\/channel\\/UCvA-q\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Tue Jul 14 07:44:34 +0000 2020\",\"favourites_count\":290,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":715,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1289408100152348673\\/78WDrL-g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1289408100152348673\\/78WDrL-g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282943999393894402\\/1657570252\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3307\":{\"id\":1188467539388571648,\"id_str\":\"1188467539388571648\",\"name\":\"Anya_Nyako\\u2606\",\"screen_name\":\"Anya_Nyako2505\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Jeremiah 29:11 \\nSCD (Sickle Cell Disease) Survivor \\ud83d\\udcaa\\ud83c\\udfff\\nSCD Advocate.\\nWomen are no longer meant to sit still and look pretty - We are meant to lead empires...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3045,\"friends_count\":4407,\"listed_count\":5,\"created_at\":\"Sun Oct 27 14:48:57 +0000 2019\",\"favourites_count\":47035,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73348,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1188467539388571648\\/1655657592\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3308\":{\"id\":1363675202224275456,\"id_str\":\"1363675202224275456\",\"name\":\"Goodboy OSH\",\"screen_name\":\"continentalkid_\",\"location\":\"Abuja, Nigeria\",\"description\":\"continental\\ud83c\\udf0d| music promoter| NFT artist \\n\\nEntertainment industry Freak\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":112,\"friends_count\":216,\"listed_count\":0,\"created_at\":\"Mon Feb 22 02:21:47 +0000 2021\",\"favourites_count\":2154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1602,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546844981750546435\\/0oIuFuh9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546844981750546435\\/0oIuFuh9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363675202224275456\\/1657547508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3309\":{\"id\":135608407,\"id_str\":\"135608407\",\"name\":\"Chuks E\",\"screen_name\":\"Chukyz360\",\"location\":\"Nigeria\",\"description\":\"Science and tech enthusiast. Ambivert. Sapiosexual. Pragmatic. Business oriented. Good sense of humour. Arsenal & Real Madrid fan. Pure cruise! #obidient\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":715,\"friends_count\":823,\"listed_count\":0,\"created_at\":\"Wed Apr 21 19:58:52 +0000 2010\",\"favourites_count\":22783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3279,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545366405868134400\\/NSPSGYw4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545366405868134400\\/NSPSGYw4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3310\":{\"id\":1138132116183683072,\"id_str\":\"1138132116183683072\",\"name\":\"Consider This\",\"screen_name\":\"ConsiderThis19\",\"location\":\"Pacific Northwest\",\"description\":\"Wherever you go, there you are\\u2026 I\\u2019ll follow if you\\u2019re funny or have common sense. \\ud83d\\ude02 TruthSocial \\ud83c\\udf89\\ud83c\\udf89 @WhyAskWhy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":257,\"friends_count\":2406,\"listed_count\":1,\"created_at\":\"Mon Jun 10 17:13:36 +0000 2019\",\"favourites_count\":54601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1433640774155923464\\/cCJxn9IV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1433640774155923464\\/cCJxn9IV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1138132116183683072\\/1638674558\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3311\":{\"id\":2920376675,\"id_str\":\"2920376675\",\"name\":\"Mukhar Nura\",\"screen_name\":\"aboki_30BG\",\"location\":\"Nigeria\",\"description\":\"I unfollow if you don't follow back\\n\\n#30BG #WRBLO\\n\\nSpread Love not hate\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\n\\nI love Prophet Muhammad S.A.W \\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":456,\"friends_count\":808,\"listed_count\":10,\"created_at\":\"Sat Dec 13 21:41:42 +0000 2014\",\"favourites_count\":19786,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514259965678170116\\/Qa3B1izw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514259965678170116\\/Qa3B1izw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2920376675\\/1591986894\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3312\":{\"id\":3852265463,\"id_str\":\"3852265463\",\"name\":\"Ibrahim Mahmoud\",\"screen_name\":\"doctoregr\",\"location\":\"Birnin-Kebbi, Nigeria\",\"description\":\"Medical doctor,Blogger,Entrepreneur,SEO,Business Idea Expert. A satirist in an abusive relationship with the country Nigeria.\\n#Coronavirus\",\"url\":\"https:\\/\\/t.co\\/MJO21uYiN0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MJO21uYiN0\",\"expanded_url\":\"http:\\/\\/www.gidisblog.com\",\"display_url\":\"gidisblog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":347,\"friends_count\":120,\"listed_count\":0,\"created_at\":\"Sat Oct 03 12:27:42 +0000 2015\",\"favourites_count\":60,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1149,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1086712088414904321\\/FYvjT65d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1086712088414904321\\/FYvjT65d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3852265463\\/1654409083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3313\":{\"id\":1543530637575032832,\"id_str\":\"1543530637575032832\",\"name\":\"success city kennel,,,,,,\",\"screen_name\":\"alabedejoseph1\",\"location\":\"Jos, Nigeria\",\"description\":\"Dog breeder, pet lover, and general domestic animal consultant, contact: 08064781867\",\"url\":\"https:\\/\\/t.co\\/XtQL3R5lH0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XtQL3R5lH0\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/2EA6K43IU\",\"display_url\":\"wa.me\\/message\\/2EA6K4\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89,\"friends_count\":317,\"listed_count\":0,\"created_at\":\"Sun Jul 03 09:43:24 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543661451612667904\\/jkhubE_r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543661451612667904\\/jkhubE_r_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3314\":{\"id\":1491201918722613249,\"id_str\":\"1491201918722613249\",\"name\":\"bring more vawlens \\ud83d\\ude02\\ud83d\\udd25\",\"screen_name\":\"Justforupdate9\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Wed Feb 09 00:07:13 +0000 2022\",\"favourites_count\":304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":74,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553655293481033729\\/9b89mVRn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553655293481033729\\/9b89mVRn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3315\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3316\":{\"id\":1238439806390206466,\"id_str\":\"1238439806390206466\",\"name\":\"Ibrahim A. Adepoju\",\"screen_name\":\"IbrahimAAdepoju\",\"location\":\"Nigeria\",\"description\":\"Network Administrator | Project Engineering @ehealthafrica | Co-founder @senjugloballtd\\nCountries: \\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\uddec\\ud83c\\udded \\ud83c\\uddea\\ud83c\\uddf9 \\ud83c\\uddec\\ud83c\\uddfc\",\"url\":\"https:\\/\\/t.co\\/nbiPBa7JLs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nbiPBa7JLs\",\"expanded_url\":\"https:\\/\\/ibrahimaadepoju.medium.com\\/\",\"display_url\":\"ibrahimaadepoju.medium.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95,\"friends_count\":93,\"listed_count\":1,\"created_at\":\"Fri Mar 13 12:20:58 +0000 2020\",\"favourites_count\":2790,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1837,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551332268299456514\\/GhRuUDQg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551332268299456514\\/GhRuUDQg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238439806390206466\\/1658701421\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3317\":{\"id\":1519380325725622274,\"id_str\":\"1519380325725622274\",\"name\":\"Yeasin AR \\u2764\\ufe0f\\ud83c\\uddf8\\ud83c\\udde9\\ud83c\\uddf5\\ud83c\\uddf0\\u2764\\ufe0f\",\"screen_name\":\"AyaubiK47441869\",\"location\":\"UAE \",\"description\":\"PTI Imran Khan \\ud83d\\udc9a\\ud83c\\uddf5\\ud83c\\uddf0\\ud83c\\uddf7\\ud83c\\uddfa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":273,\"friends_count\":395,\"listed_count\":0,\"created_at\":\"Wed Apr 27 18:18:03 +0000 2022\",\"favourites_count\":10379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11359,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519380325725622274\\/1653479415\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3318\":{\"id\":1481918920101666819,\"id_str\":\"1481918920101666819\",\"name\":\"OMO IYA SAMUUUUU\\u2764\\ufe0f\\ud83e\\udec2\\ud83c\\udf1a\",\"screen_name\":\"_omoiya_samuuuu\",\"location\":\"Nigeria\",\"description\":\"DieHard Lover of @olamide\\ud83d\\udc9b BLUES4L\\ud83d\\udc99 @chelseafc Aquarius \\u2652\\ufe0f God | Mum | Family | Real Geez\\u2764\\ufe0f Music \\ud83c\\udfbc Lover +ArtistPR\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/DgyErYcRvX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DgyErYcRvX\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/zero-bars\\/1634470535?i=1634470536\",\"display_url\":\"music.apple.com\\/us\\/album\\/zero-\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":790,\"listed_count\":0,\"created_at\":\"Fri Jan 14 09:19:47 +0000 2022\",\"favourites_count\":1540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":428,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481919069163077635\\/Gh0EFxVJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481919069163077635\\/Gh0EFxVJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481918920101666819\\/1656367781\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3319\":{\"id\":129630681,\"id_str\":\"129630681\",\"name\":\"BLACK LOVE\\ud83d\\udda4\\ud83d\\udda4\",\"screen_name\":\"iamogswagg\",\"location\":\"Nigeria\",\"description\":\"Recording artist..song writter..rapper...#independent artist....for bookings, studio sessions, content contact 08112864391\\nemail:- jessematthewsswagg@gmail.com\",\"url\":\"https:\\/\\/t.co\\/QEVR1kM85C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QEVR1kM85C\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/STREAMDRILL\",\"display_url\":\"fanlink.to\\/STREAMDRILL\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1359,\"friends_count\":1958,\"listed_count\":1,\"created_at\":\"Sun Apr 04 23:23:09 +0000 2010\",\"favourites_count\":764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12220,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1449547393616199683\\/528gkjrn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1449547393616199683\\/528gkjrn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/129630681\\/1619557324\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3320\":{\"id\":870327427347750912,\"id_str\":\"870327427347750912\",\"name\":\"Daniella Amba\",\"screen_name\":\"Danley_codes\",\"location\":\"Nigeria \",\"description\":\"|MPDS Certified| |Data Science| \\n| Machine Learning | |Artificial intelligence||Consultant| |Co-founder:@analysthub| \\n Co-founder:@TADInitiative|\\ud83d\\udc9e\",\"url\":\"https:\\/\\/t.co\\/SFnyvo737B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SFnyvo737B\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/daniella-mkpandiok-60247010a\",\"display_url\":\"linkedin.com\\/in\\/daniella-mk\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":171,\"friends_count\":557,\"listed_count\":2,\"created_at\":\"Thu Jun 01 17:13:23 +0000 2017\",\"favourites_count\":940,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509172834442129410\\/ulpeLBhs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509172834442129410\\/ulpeLBhs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870327427347750912\\/1590828518\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3321\":{\"id\":1267395685881708545,\"id_str\":\"1267395685881708545\",\"name\":\"Sub_sidy\",\"screen_name\":\"sub_sidy1\",\"location\":\"Nigeria\",\"description\":\"Emcee||Comedian||Actor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":481,\"listed_count\":0,\"created_at\":\"Mon Jun 01 10:01:27 +0000 2020\",\"favourites_count\":6553,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555319202571030528\\/GnKaK-GQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555319202571030528\\/GnKaK-GQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1267395685881708545\\/1592259893\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3322\":{\"id\":1213469839349575680,\"id_str\":\"1213469839349575680\",\"name\":\"Person von McPersonson\",\"screen_name\":\"person_von\",\"location\":\"Planet X\",\"description\":\"A nobody, homebody, COVID fearing, mask wearing niqabi who stans Firmino....and also needs a life. \\ud83d\\ude06\\n\\nCapitalism kills and Doug Ford is a timbit.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":265,\"listed_count\":3,\"created_at\":\"Sat Jan 04 14:39:07 +0000 2020\",\"favourites_count\":6805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7567,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523916589258706946\\/cfqZJ-CX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523916589258706946\\/cfqZJ-CX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1213469839349575680\\/1648778308\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3323\":{\"id\":1315972619255058433,\"id_str\":\"1315972619255058433\",\"name\":\"Bilbo TheQbit\",\"screen_name\":\"Bilbo52835554\",\"location\":\"Nowhere near you\",\"description\":\"Sapiens qui prospicit.\",\"url\":\"https:\\/\\/t.co\\/2knt6IZlX4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2knt6IZlX4\",\"expanded_url\":\"https:\\/\\/gettr.com\\/user\\/bilbotheqbit\",\"display_url\":\"gettr.com\\/user\\/bilbotheq\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":512,\"friends_count\":533,\"listed_count\":5,\"created_at\":\"Tue Oct 13 11:08:54 +0000 2020\",\"favourites_count\":2970,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2960,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1315972881801674754\\/mv8NAhWF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1315972881801674754\\/mv8NAhWF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1315972619255058433\\/1641583970\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3324\":{\"id\":226126659,\"id_str\":\"226126659\",\"name\":\"George Basara 4Peter Obi\",\"screen_name\":\"PBplusOilAndGas\",\"location\":\"Nigeria\",\"description\":\"Peter Obi Live Radio\",\"url\":\"https:\\/\\/t.co\\/gFTYNGUKDQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gFTYNGUKDQ\",\"expanded_url\":\"http:\\/\\/www.pbplusoilandgas.com\",\"display_url\":\"pbplusoilandgas.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4168,\"friends_count\":2984,\"listed_count\":64,\"created_at\":\"Mon Dec 13 11:28:19 +0000 2010\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":298857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552749219475324929\\/zGoh16Ic_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552749219475324929\\/zGoh16Ic_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/226126659\\/1410980190\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3325\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3326\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3327\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3328\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3329\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3330\":{\"id\":519695366,\"id_str\":\"519695366\",\"name\":\"Izuchukwu Ahuchaogu\",\"screen_name\":\"Ahuchaoguizu\",\"location\":\"Nigeria\",\"description\":\"I am unpredictable and focused.\",\"url\":\"https:\\/\\/t.co\\/B0ftBp4wPh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B0ftBp4wPh\",\"expanded_url\":\"http:\\/\\/cityrovers.net\",\"display_url\":\"cityrovers.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":405,\"friends_count\":1602,\"listed_count\":2,\"created_at\":\"Fri Mar 09 18:10:43 +0000 2012\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2453,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536743634606997506\\/7NIY13zQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536743634606997506\\/7NIY13zQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/519695366\\/1448237335\",\"profile_link_color\":\"9266CC\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3331\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3332\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3333\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3334\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3335\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3336\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3337\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3338\":{\"id\":1284531896853110784,\"id_str\":\"1284531896853110784\",\"name\":\"Peter-Cephas Olufunde\",\"screen_name\":\"cephas_arts\",\"location\":\"Nigeria\",\"description\":\"\\u2022 A SELF-TAUGHT CHARCOAL HYPERREALIST\\n\\u2022 A LEAD GUITARIST\\n\\u2022 ENGLISH STUDIES, OAU\\n\\u2022 1999, NIGERIA\\n\\nPlease check out all drawings on my IG page\\ud83d\\udc47\\ud83e\\udd29\",\"url\":\"https:\\/\\/t.co\\/4TlKcgF0jE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4TlKcgF0jE\",\"expanded_url\":\"https:\\/\\/instagram.com\\/cephas_arts?igshid=1tj2wjfnmc20t\",\"display_url\":\"instagram.com\\/cephas_arts?ig\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":346,\"friends_count\":4,\"listed_count\":2,\"created_at\":\"Sat Jul 18 16:54:29 +0000 2020\",\"favourites_count\":713,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493101611765407747\\/0kRyRl-Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493101611765407747\\/0kRyRl-Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284531896853110784\\/1659339808\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3339\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3340\":{\"id\":2746552630,\"id_str\":\"2746552630\",\"name\":\"Duke of Okeho\",\"screen_name\":\"Ade_omo_Giwa\",\"location\":\"Space\",\"description\":\"\\ud83d\\udc9420-10-202 \\n\\nfix Naija Oh lord\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":753,\"friends_count\":856,\"listed_count\":1,\"created_at\":\"Mon Aug 18 17:11:10 +0000 2014\",\"favourites_count\":9533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3609,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509520399960182787\\/-kvzgTRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509520399960182787\\/-kvzgTRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2746552630\\/1573423781\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3341\":{\"id\":1458001472503926787,\"id_str\":\"1458001472503926787\",\"name\":\"Aja Peace\",\"screen_name\":\"ajapeace1\",\"location\":\"Nigeria\",\"description\":\"A prestigious, crypto enthusiast , always ready to impact.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1031,\"friends_count\":551,\"listed_count\":50,\"created_at\":\"Tue Nov 09 09:21:19 +0000 2021\",\"favourites_count\":22921,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1085,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3342\":{\"id\":410118173,\"id_str\":\"410118173\",\"name\":\"James Agbaje\",\"screen_name\":\"james_agbaje01\",\"location\":\"NIGERIA\",\"description\":\"I am passionate about helping #jobseekers land their dream job. \\n\\nEvery one deserves to be happy, everyone deserves a dream job.\",\"url\":\"https:\\/\\/t.co\\/myFm8RgBJr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/myFm8RgBJr\",\"expanded_url\":\"https:\\/\\/www.nennetworks.com\",\"display_url\":\"nennetworks.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":306,\"listed_count\":2,\"created_at\":\"Fri Nov 11 17:22:24 +0000 2011\",\"favourites_count\":1033,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375002369205886980\\/-PLsgp8N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375002369205886980\\/-PLsgp8N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/410118173\\/1517448510\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3343\":{\"id\":1423753564657229827,\"id_str\":\"1423753564657229827\",\"name\":\"chin\",\"screen_name\":\"Longdenjr1\",\"location\":\"Jos, Nigeria\",\"description\":\"pulling through \\ud83e\\udd85\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":79,\"friends_count\":163,\"listed_count\":1,\"created_at\":\"Fri Aug 06 21:11:29 +0000 2021\",\"favourites_count\":1407,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517439432722456578\\/tynrinUI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517439432722456578\\/tynrinUI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3344\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3345\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3346\":{\"id\":589796636,\"id_str\":\"589796636\",\"name\":\"Nadir Khan\",\"screen_name\":\"nhk2277\",\"location\":\"UAE\",\"description\":\"The Silent Majority. \\nTaboos & ethics of modern humanity. \\nGeologist. rt not endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3632,\"friends_count\":4960,\"listed_count\":0,\"created_at\":\"Fri May 25 07:58:48 +0000 2012\",\"favourites_count\":52699,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":62070,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3347\":{\"id\":291561619,\"id_str\":\"291561619\",\"name\":\"Lamar ofd buj\",\"screen_name\":\"lamar_ralph\",\"location\":\"Nigeria\",\"description\":\"Entrepreneur \\u2022 Accountant\\u2022 CoFounder Gawerex Tech Ltd. \\u2022. #PeterObi4President\",\"url\":\"https:\\/\\/t.co\\/RHCaTyUmSI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RHCaTyUmSI\",\"expanded_url\":\"http:\\/\\/smartron.com.ng\",\"display_url\":\"smartron.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4222,\"friends_count\":3588,\"listed_count\":10,\"created_at\":\"Mon May 02 07:00:29 +0000 2011\",\"favourites_count\":38587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52757,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544641249495351302\\/0ogYkhVk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544641249495351302\\/0ogYkhVk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/291561619\\/1657106254\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3348\":{\"id\":589796636,\"id_str\":\"589796636\",\"name\":\"Nadir Khan\",\"screen_name\":\"nhk2277\",\"location\":\"UAE\",\"description\":\"The Silent Majority. \\nTaboos & ethics of modern humanity. \\nGeologist. rt not endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3632,\"friends_count\":4960,\"listed_count\":0,\"created_at\":\"Fri May 25 07:58:48 +0000 2012\",\"favourites_count\":52699,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":62070,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527387444462735361\\/MDBUTOYy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3349\":{\"id\":1337900128980639744,\"id_str\":\"1337900128980639744\",\"name\":\"Jbankz\",\"screen_name\":\"meetJbankz\",\"location\":\"Nigeria\",\"description\":\"|| Musician || Song Writer ||\\nThe New EP,\\n#ELEVATE\\n\\\"now out on all music streaming platforms\",\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"expanded_url\":\"https:\\/\\/orcd.co\\/jbankz-elevate\",\"display_url\":\"orcd.co\\/jbankz-elevate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":2276,\"listed_count\":1,\"created_at\":\"Sat Dec 12 23:20:37 +0000 2020\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337900128980639744\\/1616501762\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3350\":{\"id\":1320448177921761280,\"id_str\":\"1320448177921761280\",\"name\":\"Hun Cho DC\",\"screen_name\":\"ChoWurld\",\"location\":\"Nigeria\",\"description\":\"Son Of God\\ud83c\\udfc6\\ud83e\\udd85\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Sun Oct 25 19:32:47 +0000 2020\",\"favourites_count\":135,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":31,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492440849002737668\\/mii3VYlD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492440849002737668\\/mii3VYlD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320448177921761280\\/1603655084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3351\":{\"id\":1485203694773755906,\"id_str\":\"1485203694773755906\",\"name\":\"Idowu\",\"screen_name\":\"nobleman_0\",\"location\":\"Ilorin, Nigeria\",\"description\":\"b*d laugher \\ud83d\\ude02 | Liverpool fan | music \\ud83c\\udfb6 | Fav. pet CAT \\ud83d\\udc08| interested in woman | Gamer \\ud83c\\udfae\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":542,\"listed_count\":2,\"created_at\":\"Sun Jan 23 10:52:26 +0000 2022\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554152295792840706\\/0RTlYaV4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554152295792840706\\/0RTlYaV4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3352\":{\"id\":500988165,\"id_str\":\"500988165\",\"name\":\"YUNG SKIZZY\",\"screen_name\":\"promphizy\",\"location\":\"Nigeria\",\"description\":\"NEW EP ON THE WAY SOON!!!\\n\\n#HEARTBREAKONAWEEKEND\",\"url\":\"https:\\/\\/t.co\\/XO7f7IWAfn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XO7f7IWAfn\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/promphizy\",\"display_url\":\"audiomack.com\\/promphizy\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1575,\"friends_count\":684,\"listed_count\":4,\"created_at\":\"Thu Feb 23 17:39:43 +0000 2012\",\"favourites_count\":105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7740,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552640576918638592\\/Hhn0BnQX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552640576918638592\\/Hhn0BnQX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/500988165\\/1657405307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3353\":{\"id\":375126170,\"id_str\":\"375126170\",\"name\":\"Suliyat A A Idris\",\"screen_name\":\"Ennygirl4succes\",\"location\":\"Kano, Nigeria\",\"description\":\"Digital Safety Advocate | Educator | Sociopreneur\",\"url\":\"https:\\/\\/t.co\\/NkSkm6JEv1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NkSkm6JEv1\",\"expanded_url\":\"http:\\/\\/www.edunovativeconcept.com.ng\",\"display_url\":\"edunovativeconcept.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":164,\"friends_count\":47,\"listed_count\":3,\"created_at\":\"Sat Sep 17 15:07:05 +0000 2011\",\"favourites_count\":87,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":112,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1224075286750298112\\/p7g3kNHc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1224075286750298112\\/p7g3kNHc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/375126170\\/1423826831\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"DBE9ED\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3354\":{\"id\":1468496381308719108,\"id_str\":\"1468496381308719108\",\"name\":\"Teewithdspice\",\"screen_name\":\"realgurltee\",\"location\":\"Nigeria\",\"description\":\"Just a girl still working on herself \\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Wed Dec 08 08:23:34 +0000 2021\",\"favourites_count\":207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468496381308719108\\/1659468568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3355\":{\"id\":1539343942969335809,\"id_str\":\"1539343942969335809\",\"name\":\"omoniyi layo\",\"screen_name\":\"debirexx\",\"location\":\"Abuja\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Tue Jun 21 20:26:27 +0000 2022\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539343942969335809\\/1656059959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3356\":{\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"name\":\"Elite Star Foundation\",\"screen_name\":\"NGOELITESTAR\",\"location\":\"Nigeria\",\"description\":\"Ensuring lifelong learning opportunities for all and reducing all forms of inequalities and violence against children.\",\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"expanded_url\":\"https:\\/\\/www.elitestarfoundation.org\",\"display_url\":\"elitestarfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":492,\"listed_count\":0,\"created_at\":\"Sat Nov 20 04:48:29 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461919316400648194\\/1637384456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3357\":{\"id\":1468496381308719108,\"id_str\":\"1468496381308719108\",\"name\":\"Teewithdspice\",\"screen_name\":\"realgurltee\",\"location\":\"Nigeria\",\"description\":\"Just a girl still working on herself \\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Wed Dec 08 08:23:34 +0000 2021\",\"favourites_count\":207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468496381308719108\\/1659468568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3358\":{\"id\":718354373286490113,\"id_str\":\"718354373286490113\",\"name\":\"Dcod\",\"screen_name\":\"ClemzyDcod\",\"location\":\"Nigeria\",\"description\":\"Code Anything \\ud83d\\udd25\\nRap Style.\\nFor bookings: dcod1@yahoo.com\\nEnquiries: 08051041414\",\"url\":\"https:\\/\\/t.co\\/xEvidsNkDz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xEvidsNkDz\",\"expanded_url\":\"https:\\/\\/clemzydcod.fanlink.to\\/garri\",\"display_url\":\"clemzydcod.fanlink.to\\/garri\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":177,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Fri Apr 08 08:26:43 +0000 2016\",\"favourites_count\":2881,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":700,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1454036467366432772\\/Q4ylkl_k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1454036467366432772\\/Q4ylkl_k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/718354373286490113\\/1587369137\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3359\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3360\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3361\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3362\":{\"id\":965162806344634368,\"id_str\":\"965162806344634368\",\"name\":\"Prince of Peace\",\"screen_name\":\"KabirOduola\",\"location\":\"Nigeria\",\"description\":\"Am a lover of peaceful coexistence, religion, geographic, tongue, or colorations don't affect my decision in friendship.\\nRespect, Love and Peace is all I cared\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":567,\"friends_count\":657,\"listed_count\":4,\"created_at\":\"Sun Feb 18 09:55:19 +0000 2018\",\"favourites_count\":41201,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":23505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541462139579277314\\/OpZB6Z3z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541462139579277314\\/OpZB6Z3z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965162806344634368\\/1519583230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3363\":{\"id\":1309543038151200775,\"id_str\":\"1309543038151200775\",\"name\":\"Divine Autos\",\"screen_name\":\"SenatorJoseph4\",\"location\":\"\",\"description\":\"Proud Dad, Lover of God,Automobile Dealer, Sales, Purchase and maintenance, Positive vibes always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":313,\"friends_count\":486,\"listed_count\":1,\"created_at\":\"Fri Sep 25 17:19:36 +0000 2020\",\"favourites_count\":6051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1921,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1309543038151200775\\/1658871374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3364\":{\"id\":3485859021,\"id_str\":\"3485859021\",\"name\":\"Shawty\\u2019s prof\",\"screen_name\":\"ahmerdrufae\",\"location\":\"Nigeria\",\"description\":\"Biochemist \\/\\/Owner: Asb mixed bag and Asb_carsgalore \\/\\/Baller\\/\\/Believer\\/\\/\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5635,\"friends_count\":3661,\"listed_count\":0,\"created_at\":\"Sun Aug 30 01:08:24 +0000 2015\",\"favourites_count\":73134,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22682,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533280609367359491\\/Rg3nkfFW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533280609367359491\\/Rg3nkfFW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3485859021\\/1617223073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3365\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3366\":{\"id\":1522897900950503425,\"id_str\":\"1522897900950503425\",\"name\":\"KING OF NORTH\\ud83d\\udc51\\ud83c\\udf93\",\"screen_name\":\"ibrahim_IbbJnr8\",\"location\":\"Abuja Nigeria\",\"description\":\"\\ud83d\\udc93if you love \\u054f\\u0585\\u028d\\u04bd\\u0585\\u0572\\u04bd\\u263a, pray for them. Pray for their peace. \\ud83d\\ude05Pray for \\u0535\\u0570\\u04bdir\\u2764 growth. Pray for their success. Pray for their happiness.\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":302,\"listed_count\":0,\"created_at\":\"Sat May 07 11:16:17 +0000 2022\",\"favourites_count\":3052,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3862,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534299728548069376\\/70OZAcMj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534299728548069376\\/70OZAcMj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522897900950503425\\/1654434468\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3367\":{\"id\":1309543038151200775,\"id_str\":\"1309543038151200775\",\"name\":\"Divine Autos\",\"screen_name\":\"SenatorJoseph4\",\"location\":\"\",\"description\":\"Proud Dad, Lover of God,Automobile Dealer, Sales, Purchase and maintenance, Positive vibes always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":313,\"friends_count\":486,\"listed_count\":1,\"created_at\":\"Fri Sep 25 17:19:36 +0000 2020\",\"favourites_count\":6051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1921,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1309543038151200775\\/1658871374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3368\":{\"id\":842751123098406912,\"id_str\":\"842751123098406912\",\"name\":\"Code\\ud83c\\udfd0\",\"screen_name\":\"OfokansiH\",\"location\":\"Nigeria\",\"description\":\"Civil Engineer \\/Blogger \\/very good in architectural and structural design \\n\\nIf you unfollow, I will definitely return the favour \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":2155,\"listed_count\":1,\"created_at\":\"Fri Mar 17 14:55:00 +0000 2017\",\"favourites_count\":2102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8531,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842751123098406912\\/1656930981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3369\":{\"id\":842751123098406912,\"id_str\":\"842751123098406912\",\"name\":\"Code\\ud83c\\udfd0\",\"screen_name\":\"OfokansiH\",\"location\":\"Nigeria\",\"description\":\"Civil Engineer \\/Blogger \\/very good in architectural and structural design \\n\\nIf you unfollow, I will definitely return the favour \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":2155,\"listed_count\":1,\"created_at\":\"Fri Mar 17 14:55:00 +0000 2017\",\"favourites_count\":2102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8531,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842751123098406912\\/1656930981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3370\":{\"id\":1512828788,\"id_str\":\"1512828788\",\"name\":\"\\ud83c\\udf1fFaith\",\"screen_name\":\"faithluseno\",\"location\":\"Ke\",\"description\":\"LIVE TRUTH \\/ LIVE RIGHT \\/ LIVE GODLY\\/GOODLY\",\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/mishiefinthetemple\",\"display_url\":\"youtube.com\\/user\\/mishiefin\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5212,\"friends_count\":5543,\"listed_count\":9,\"created_at\":\"Thu Jun 13 08:58:42 +0000 2013\",\"favourites_count\":9146,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1512828788\\/1657043375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3371\":{\"id\":889548207121989632,\"id_str\":\"889548207121989632\",\"name\":\"Tizzie\",\"screen_name\":\"tizzieofficial\",\"location\":\"\",\"description\":\"Rep BIGWIZ and Messi \\u2665\\ufe0f\\ud83e\\udd85\\ud83d\\udda4. A Professional Barber. Unilorite. Lover of Music and football. YouTubehttps:\\/\\/youtube.com\\/channel\\/UCyfA3o-KcOmsCXxxKIPLP1AU1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":1124,\"listed_count\":0,\"created_at\":\"Mon Jul 24 18:09:54 +0000 2017\",\"favourites_count\":97643,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":939,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889548207121989632\\/1651779013\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3372\":{\"id\":209792558,\"id_str\":\"209792558\",\"name\":\"Cameron Lewis\",\"screen_name\":\"yoURDATAisyours\",\"location\":\"Pacific Northwest\",\"description\":\"Executive in Technology + Primary industries | Husband to Dr. Hasler-Lewis | Proud Dad 3 GR8 Adults | Flyfisher | \\ud83d\\udeb2 | You are what you eat | #Resistance\",\"url\":\"https:\\/\\/t.co\\/98k6vQ1Y2C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/98k6vQ1Y2C\",\"expanded_url\":\"http:\\/\\/olivinolife.com\\/\",\"display_url\":\"olivinolife.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3713,\"friends_count\":3676,\"listed_count\":1028,\"created_at\":\"Fri Oct 29 23:06:57 +0000 2010\",\"favourites_count\":3542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":65171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"4A913C\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1117888672106336257\\/8eR_iPgT_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1117888672106336257\\/8eR_iPgT_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/209792558\\/1583904178\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"352B21\",\"profile_text_color\":\"C2AF99\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3373\":{\"id\":479754411,\"id_str\":\"479754411\",\"name\":\"Chidimma&Chidiebere\",\"screen_name\":\"Aneke_Twins\",\"location\":\"Nigeria\",\"description\":\"About Us: Prod,Actors, CEO Greenville production int'l Ltd, https:\\/\\/t.co\\/wKR7Bmm02h Our Blog: https:\\/\\/t.co\\/DjOlxl33Tb Our Fan Page: https:\\/\\/t.co\\/opXqRQZgUH 08036129789\",\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"expanded_url\":\"http:\\/\\/greenvilleproductions.com\",\"display_url\":\"greenvilleproductions.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wKR7Bmm02h\",\"expanded_url\":\"http:\\/\\/bit.ly\\/OdEnWv\",\"display_url\":\"bit.ly\\/OdEnWv\",\"indices\":[60,83]},{\"url\":\"https:\\/\\/t.co\\/DjOlxl33Tb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/U2eefG\",\"display_url\":\"bit.ly\\/U2eefG\",\"indices\":[94,117]},{\"url\":\"https:\\/\\/t.co\\/opXqRQZgUH\",\"expanded_url\":\"http:\\/\\/on.fb.me\\/OdEZv7\",\"display_url\":\"on.fb.me\\/OdEZv7\",\"indices\":[132,155]}]}},\"protected\":false,\"followers_count\":6050,\"friends_count\":369,\"listed_count\":26,\"created_at\":\"Tue Jan 31 18:43:22 +0000 2012\",\"favourites_count\":2238,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9419,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/479754411\\/1619194743\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3374\":{\"id\":817531158,\"id_str\":\"817531158\",\"name\":\"adebanjo micheal\",\"screen_name\":\"mickkycutz\",\"location\":\"Obalende\",\"description\":\"Mickky-Cutz makes perfect size and rebrand you \\ud83d\\udc4d\\ud83c\\udffb\",\"url\":\"https:\\/\\/t.co\\/LQ4W9PgoV7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LQ4W9PgoV7\",\"expanded_url\":\"http:\\/\\/Mickkycutz.com\",\"display_url\":\"Mickkycutz.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":291,\"friends_count\":854,\"listed_count\":0,\"created_at\":\"Tue Sep 11 14:30:16 +0000 2012\",\"favourites_count\":2990,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1245308995599990784\\/ZFlBd5Bm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1245308995599990784\\/ZFlBd5Bm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/817531158\\/1582035826\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3375\":{\"id\":1188467539388571648,\"id_str\":\"1188467539388571648\",\"name\":\"Anya_Nyako\\u2606\",\"screen_name\":\"Anya_Nyako2505\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Jeremiah 29:11 \\nSCD (Sickle Cell Disease) Survivor \\ud83d\\udcaa\\ud83c\\udfff\\nSCD Advocate.\\nWomen are no longer meant to sit still and look pretty - We are meant to lead empires...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3045,\"friends_count\":4407,\"listed_count\":5,\"created_at\":\"Sun Oct 27 14:48:57 +0000 2019\",\"favourites_count\":47035,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73348,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1188467539388571648\\/1655657592\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3376\":{\"id\":1499464487186927621,\"id_str\":\"1499464487186927621\",\"name\":\"Emmanuel M A Kamara\",\"screen_name\":\"EmmanuelMAKam11\",\"location\":\"\",\"description\":\"Exceptional Journalist with Integrity\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Thu Mar 03 19:19:57 +0000 2022\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499464613917769738\\/75AjFJ6Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499464613917769738\\/75AjFJ6Q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3377\":{\"id\":374020433,\"id_str\":\"374020433\",\"name\":\"\\ud83d\\ude1dTolani Sukurat\\ud83d\\ude1a\",\"screen_name\":\"malltallerny\",\"location\":\"Nigeria\",\"description\":\"Winona \\ud83e\\udd13 Fc Barcelona fan,\\nFashion Designer\\/Stylist \\ud83e\\udde5\\ud83d\\udc57 \\n(i own my stuff\\u270c) IG: @lani_piece\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2209,\"friends_count\":1322,\"listed_count\":0,\"created_at\":\"Thu Sep 15 15:31:56 +0000 2011\",\"favourites_count\":5779,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530613961523138560\\/S03GORaw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530613961523138560\\/S03GORaw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/374020433\\/1614345540\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3378\":{\"id\":3503954355,\"id_str\":\"3503954355\",\"name\":\"Qs_Umar_Faruq_Ajibola\",\"screen_name\":\"OluwasanjoFaruq\",\"location\":\"Oyo, Nigeria\",\"description\":\"A Muslim\\ud83d\\udc7d\\ud83d\\udc7dA Chelsea Fan\\ud83d\\udc7d\\ud83d\\udc7dA quantity surveyor\\ud83d\\udc7d\\ud83d\\udc7d A project Manager \\ud83d\\udea7 General contractor \\ud83d\\udc77\\ud83c\\udffdA realtors \\ud83c\\udfe0\\ud83c\\udfed\\ud83c\\udfe3\\ud83c\\udfec\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":166,\"friends_count\":834,\"listed_count\":1,\"created_at\":\"Mon Aug 31 17:35:29 +0000 2015\",\"favourites_count\":2707,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1532,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550210316860014592\\/rOmunENd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550210316860014592\\/rOmunENd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3503954355\\/1605075334\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3379\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3380\":{\"id\":743814793941913600,\"id_str\":\"743814793941913600\",\"name\":\"Royal Oak Inc\",\"screen_name\":\"RoyalOakInc\",\"location\":\"BK\",\"description\":\"#VentureCap \\nTechnical, Sentiment, Fundamental \\n#CRYPTO - #P2E #Metaverse #GAMING \\n#BTC #ETH - #Stocks - #Economy \\nNot FA DYOR\",\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCmJkSVdn6f7-iHhT4bGAPbA\",\"display_url\":\"youtube.com\\/channel\\/UCmJkS\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":831,\"friends_count\":468,\"listed_count\":23,\"created_at\":\"Fri Jun 17 14:37:21 +0000 2016\",\"favourites_count\":4388,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743814793941913600\\/1659493718\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3381\":{\"id\":1430808551883100162,\"id_str\":\"1430808551883100162\",\"name\":\"Kashif Khan\",\"screen_name\":\"Real_KashifKhan\",\"location\":\"UAE \",\"description\":\"Award Winner In Forex Asia .Consultant, Analyst at Forex Market Asia. Tweets are Personal. RTs are not endorsements.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":861,\"listed_count\":5,\"created_at\":\"Thu Aug 26 08:25:28 +0000 2021\",\"favourites_count\":1332,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":414,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538176181870395392\\/LvMFz187_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538176181870395392\\/LvMFz187_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1430808551883100162\\/1655564766\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3382\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3383\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3384\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3385\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3386\":{\"id\":1483468168656048134,\"id_str\":\"1483468168656048134\",\"name\":\"@graciaofficial\\ud83e\\udd8b\",\"screen_name\":\"graciaofficia11\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"\\ud83d\\udcaffun Vet doc in process \\ud83d\\ude09\\u2764\\ufe0f\\ud83d\\udcaf follow me I will follow back instantly \\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Tue Jan 18 15:56:04 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483468168656048134\\/1643450822\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3387\":{\"id\":1483468168656048134,\"id_str\":\"1483468168656048134\",\"name\":\"@graciaofficial\\ud83e\\udd8b\",\"screen_name\":\"graciaofficia11\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"\\ud83d\\udcaffun Vet doc in process \\ud83d\\ude09\\u2764\\ufe0f\\ud83d\\udcaf follow me I will follow back instantly \\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Tue Jan 18 15:56:04 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483468168656048134\\/1643450822\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3388\":{\"id\":134425558,\"id_str\":\"134425558\",\"name\":\"Muhammad Zubairu, PhD\",\"screen_name\":\"mzubairu\",\"location\":\"Abuja - Nigeria\",\"description\":\"Je suis qui je suis. Je dis la v\\u00e9rit\\u00e9, m\\u00eame si \\u00e7a allait me co\\u00fbter ma vie. Gaskiya tafi kobo!............\",\"url\":\"https:\\/\\/t.co\\/Ik78KtBWHY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ik78KtBWHY\",\"expanded_url\":\"http:\\/\\/nigcomsat.gov.ng\",\"display_url\":\"nigcomsat.gov.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":179,\"friends_count\":1388,\"listed_count\":0,\"created_at\":\"Sun Apr 18 11:18:44 +0000 2010\",\"favourites_count\":126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1081124945218994177\\/LKqidrXj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1081124945218994177\\/LKqidrXj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/134425558\\/1581239965\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3389\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3390\":{\"id\":1106460109616701440,\"id_str\":\"1106460109616701440\",\"name\":\"MBA INVESTMENT NIGERIA LIMITED\",\"screen_name\":\"mba_phone_store\",\"location\":\"Ahmadu bello way kaduna state \",\"description\":\"DEALERS OF SMARTPHONES BOTH BRAND NEW AND SMART USED WE SELL WE BUY WE SWAP FOR ENQUIRIES DM\\/CALL 07032655719 OFFICE ADD:AFF 13 BACAB PLAZA AHMADU BELLO WAY KAD\",\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"expanded_url\":\"http:\\/\\/www.mbainvestment.com\",\"display_url\":\"mbainvestment.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19782,\"friends_count\":4176,\"listed_count\":14,\"created_at\":\"Fri Mar 15 07:40:21 +0000 2019\",\"favourites_count\":20983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106460109616701440\\/1577378394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3391\":{\"id\":1106460109616701440,\"id_str\":\"1106460109616701440\",\"name\":\"MBA INVESTMENT NIGERIA LIMITED\",\"screen_name\":\"mba_phone_store\",\"location\":\"Ahmadu bello way kaduna state \",\"description\":\"DEALERS OF SMARTPHONES BOTH BRAND NEW AND SMART USED WE SELL WE BUY WE SWAP FOR ENQUIRIES DM\\/CALL 07032655719 OFFICE ADD:AFF 13 BACAB PLAZA AHMADU BELLO WAY KAD\",\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"expanded_url\":\"http:\\/\\/www.mbainvestment.com\",\"display_url\":\"mbainvestment.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19782,\"friends_count\":4176,\"listed_count\":14,\"created_at\":\"Fri Mar 15 07:40:21 +0000 2019\",\"favourites_count\":20983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106460109616701440\\/1577378394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3392\":{\"id\":525214871,\"id_str\":\"525214871\",\"name\":\"Asonya Gh\",\"screen_name\":\"asonyagh\",\"location\":\"Ghana, wa\",\"description\":\"Entrepreneur, Entertainment\\/Life Style Blogger. #TeamBarca #ITTech #asonyacomputers\",\"url\":\"https:\\/\\/t.co\\/tZsoc2djGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tZsoc2djGz\",\"expanded_url\":\"http:\\/\\/OneMuzikGh.Com\",\"display_url\":\"OneMuzikGh.Com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":817,\"friends_count\":960,\"listed_count\":1,\"created_at\":\"Thu Mar 15 09:44:04 +0000 2012\",\"favourites_count\":5155,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":744,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1376923361079611403\\/8alkyeUq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1376923361079611403\\/8alkyeUq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/525214871\\/1599077002\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3393\":{\"id\":1471642299641778176,\"id_str\":\"1471642299641778176\",\"name\":\"INI\",\"screen_name\":\"blackman_ini\",\"location\":\"Nigeria\",\"description\":\"Nigerian designer\\ud83c\\uddf3\\ud83c\\uddec\\nFootwear designer\\ud83d\\udc4c\\ud83c\\udffd\\nProduct designer\\ud83d\\udc4c\\ud83c\\udffd\\nInstagram: https:\\/\\/t.co\\/ApIi9QiheJ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ApIi9QiheJ\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/i.am.dice\",\"display_url\":\"instagram.com\\/i.am.dice\",\"indices\":[70,93]}]}},\"protected\":false,\"followers_count\":98,\"friends_count\":121,\"listed_count\":0,\"created_at\":\"Fri Dec 17 00:44:15 +0000 2021\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534834784769396736\\/QrWUevo4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534834784769396736\\/QrWUevo4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1471642299641778176\\/1654720795\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3394\":{\"id\":162063549,\"id_str\":\"162063549\",\"name\":\"Al-Hassan\",\"screen_name\":\"Dubaidollars\",\"location\":\"U.A.E\",\"description\":\"We Make things happen in Dubai when it comes to ShowBiz and Entertainment. Major Talent Buyer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":30,\"listed_count\":0,\"created_at\":\"Fri Jul 02 14:44:30 +0000 2010\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":78,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/526956846439886848\\/u9_eqdJL_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/526956846439886848\\/u9_eqdJL_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/162063549\\/1414471080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3395\":{\"id\":1096361679573696514,\"id_str\":\"1096361679573696514\",\"name\":\"Caridad Charity Foundation\",\"screen_name\":\"caridad_charity\",\"location\":\"Nigeria\",\"description\":\"Caridad Charity Foundation, rebuilding Women&Girl Personality, SocialEco thru, Empowerment, Education,Health & Climate Action info@caridadcharityfoundation.org\",\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"expanded_url\":\"http:\\/\\/www.caridadcharityfoundation.org\",\"display_url\":\"caridadcharityfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Fri Feb 15 10:52:48 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1096361679573696514\\/1606838455\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3396\":{\"id\":3291302559,\"id_str\":\"3291302559\",\"name\":\"Suleiman\",\"screen_name\":\"Yasuke1000\",\"location\":\"Nigeria\",\"description\":\"Male\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":583,\"listed_count\":2,\"created_at\":\"Wed May 20 13:57:09 +0000 2015\",\"favourites_count\":561,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":778,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511321637165178883\\/GZUEnbla_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511321637165178883\\/GZUEnbla_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3291302559\\/1570264040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3397\":{\"id\":1302347011413377024,\"id_str\":\"1302347011413377024\",\"name\":\"Israel Osinachi Kelvin\",\"screen_name\":\"osinachi_kelvin\",\"location\":\"Nigeria\",\"description\":\"Minister, Writer, Public Speaker, Son, Christian.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":359,\"friends_count\":327,\"listed_count\":1,\"created_at\":\"Sat Sep 05 20:45:22 +0000 2020\",\"favourites_count\":1107,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1205,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551572083406143488\\/vV4TLwrz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551572083406143488\\/vV4TLwrz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302347011413377024\\/1658758540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3398\":{\"id\":2941848286,\"id_str\":\"2941848286\",\"name\":\"Hanteywhite \\ud83c\\uddf3\\ud83c\\uddec #YNWA\",\"screen_name\":\"Dat_Oronboy\",\"location\":\"Nigeria\",\"description\":\"An educationist \\/ laughing gas \\ud83d\\ude02\\/ fast learner\\/ die hard Liverpool supporter #ynwa\\u2764 \\/ church boy\\n\\ud83d\\udce8: anteemmanuel5@gmail.com\\n IG:@dat_oronboy Abeg app:oronboy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3549,\"friends_count\":2964,\"listed_count\":0,\"created_at\":\"Fri Dec 26 06:30:27 +0000 2014\",\"favourites_count\":3678,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":16852,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489141834286833665\\/NrKAhcM4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489141834286833665\\/NrKAhcM4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2941848286\\/1603257054\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3399\":{\"id\":1394274549080891393,\"id_str\":\"1394274549080891393\",\"name\":\"Rega\",\"screen_name\":\"Rega_jpg\",\"location\":\"Uganda, Nigeria\",\"description\":\"Hypocrite hu ji | selective outrage only | no one's ally | biased | Rt's are not endorsement | \\u092e\\u0930\\u093e\\u0920\\u0940 \\ud83d\\udea9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":129,\"listed_count\":0,\"created_at\":\"Mon May 17 12:52:20 +0000 2021\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1394274549080891393\\/1635602283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3400\":{\"id\":2330665138,\"id_str\":\"2330665138\",\"name\":\"chaegame king\",\"screen_name\":\"KingChaegame\",\"location\":\"NIGERIA\",\"description\":\"\\\"If you are living in the past, you don't have a future.\\\" Join me on my enquiry into life. \\n#LFC\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":217,\"friends_count\":1032,\"listed_count\":1,\"created_at\":\"Fri Feb 07 19:28:59 +0000 2014\",\"favourites_count\":15811,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11010,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518768980529455104\\/MTJefD1F_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518768980529455104\\/MTJefD1F_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2330665138\\/1523771862\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3401\":{\"id\":1537548195332513792,\"id_str\":\"1537548195332513792\",\"name\":\"Emmanuel Abuhson\",\"screen_name\":\"emmanuelabuhson\",\"location\":\"Kogi, Nigeria\",\"description\":\"Diffusion of Innovation Strategist, Media Facilitator and Agroprenuer with over a decade work experience in Agribusiness and Business Development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Thu Jun 16 21:30:42 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537548195332513792\\/1655475965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3402\":{\"id\":893321941,\"id_str\":\"893321941\",\"name\":\"\\ud835\\udcd0\\ud835\\udcf1\\ud835\\udcfc\\ud835\\udcea\\ud835\\udcf7 \\ud835\\udcdd\\ud835\\udcea\\ud835\\udcfa\\ud835\\udcff\\ud835\\udcf2\",\"screen_name\":\"ahsaan444\",\"location\":\"\\ud835\\udc7c\\ud835\\udc68\\ud835\\udc6c\",\"description\":\"\\ud835\\udc7b\\ud835\\udc89\\ud835\\udc8a\\ud835\\udc8f\\ud835\\udc88\\ud835\\udc94 \\ud835\\udc98\\ud835\\udc8a\\ud835\\udc8d\\ud835\\udc8d \\ud835\\udc83\\ud835\\udc86 \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93 \\ud835\\udc8a\\ud835\\udc87 \\ud835\\udc96 \\ud835\\udc98\\ud835\\udc82\\ud835\\udc8f\\ud835\\udc95 \\ud835\\udc95\\ud835\\udc90 \\ud835\\udc8e\\ud835\\udc82\\ud835\\udc8c\\ud835\\udc86 \\ud835\\udc95\\ud835\\udc89\\ud835\\udc86\\ud835\\udc8e \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":1581,\"listed_count\":0,\"created_at\":\"Sat Oct 20 14:06:24 +0000 2012\",\"favourites_count\":425,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/893321941\\/1653047288\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3403\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3404\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3405\":{\"id\":1546766387821133824,\"id_str\":\"1546766387821133824\",\"name\":\"OBIdient YouTube Tv\",\"screen_name\":\"ObidientYoutube\",\"location\":\"Abuja, Nigeria\",\"description\":\"YouTube Channel Dedicated to PETER OBI adherents ( #obidients ) and Anti P.O\\u2019s\\u2026.Welcome Nigerians\",\"url\":\"https:\\/\\/t.co\\/D9II4oZzEY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9II4oZzEY\",\"expanded_url\":\"http:\\/\\/myurls.co\\/obidientyoutubetv\",\"display_url\":\"myurls.co\\/obidientyoutub\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":72,\"listed_count\":0,\"created_at\":\"Tue Jul 12 08:00:43 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":132,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546766871462117379\\/PIjek6Ix_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546766871462117379\\/PIjek6Ix_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546766387821133824\\/1657615063\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3406\":{\"id\":1394274549080891393,\"id_str\":\"1394274549080891393\",\"name\":\"Rega\",\"screen_name\":\"Rega_jpg\",\"location\":\"Uganda, Nigeria\",\"description\":\"Hypocrite hu ji | selective outrage only | no one's ally | biased | Rt's are not endorsement | \\u092e\\u0930\\u093e\\u0920\\u0940 \\ud83d\\udea9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":129,\"listed_count\":0,\"created_at\":\"Mon May 17 12:52:20 +0000 2021\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1394274549080891393\\/1635602283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3407\":{\"id\":30563247,\"id_str\":\"30563247\",\"name\":\"Ebirim Anozie\",\"screen_name\":\"AnozieEbirim\",\"location\":\"Nigeria\",\"description\":\"Human. Atheist. Cardiologist. Chess player. Fan of star wars, Lord of the rings, Survivor, Pink Floyd, the poem Howl, and Isaac Asimov's Foundation trilogy.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":294,\"friends_count\":1754,\"listed_count\":5,\"created_at\":\"Sun Apr 12 00:42:33 +0000 2009\",\"favourites_count\":7022,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545464082907766784\\/7_2quJXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545464082907766784\\/7_2quJXs_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3408\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3409\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3410\":{\"id\":1274200177348313094,\"id_str\":\"1274200177348313094\",\"name\":\"Arinze Okoye\",\"screen_name\":\"rinxe_\",\"location\":\"Abuja, Nigeria\",\"description\":\"Just a salesperson. Bring that item, let me help you sell it. #obedient\",\"url\":\"https:\\/\\/t.co\\/81Z10ARFGV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/81Z10ARFGV\",\"expanded_url\":\"https:\\/\\/chupez.com\",\"display_url\":\"chupez.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2675,\"friends_count\":2972,\"listed_count\":0,\"created_at\":\"Sat Jun 20 04:39:52 +0000 2020\",\"favourites_count\":20019,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3269,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543571416012017665\\/PN8EdDPp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543571416012017665\\/PN8EdDPp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1274200177348313094\\/1657128960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3411\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3412\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3413\":{\"id\":1259605817613058049,\"id_str\":\"1259605817613058049\",\"name\":\"Dr Yusuf Datti Ahmed-PhD\",\"screen_name\":\"Dav_nation777\",\"location\":\"Nigeria\",\"description\":\"Labour party Vice president Candidate \\u270d\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95,\"friends_count\":244,\"listed_count\":0,\"created_at\":\"Sun May 10 22:06:57 +0000 2020\",\"favourites_count\":27260,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":412,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1259609058153246723\\/4Fw8zdOt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1259609058153246723\\/4Fw8zdOt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1259605817613058049\\/1589153623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3414\":{\"id\":1554488869902585857,\"id_str\":\"1554488869902585857\",\"name\":\"Proscrow\",\"screen_name\":\"realproscrow\",\"location\":\"Nigeria\",\"description\":\"Proscrow is a company with aim of facilitating Real Estate sales, purchase and rental.\",\"url\":\"https:\\/\\/t.co\\/VgMuoiV2Qv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VgMuoiV2Qv\",\"expanded_url\":\"http:\\/\\/proscrow.co\",\"display_url\":\"proscrow.co\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Aug 02 15:27:06 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554490284955811842\\/c5UlxuXH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554490284955811842\\/c5UlxuXH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554488869902585857\\/1659454341\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3415\":{\"id\":2267049964,\"id_str\":\"2267049964\",\"name\":\"Ardo Fulbe\\ud83d\\udc51\",\"screen_name\":\"usmandamani\",\"location\":\"Minna\",\"description\":\"Pullo Gainaako (Heardsman) \\nProudly Fulani\\ud83d\\udc04\\nMicrobiologist \\ud83d\\udd2c\\nUDUS Alumni \\ud83c\\udf93\\nMan United \\u26bd\\nFootball+Tennis \\ud83c\\udfd3\\n4th June \\ud83c\\udf82\\nVegetarian\\ud83c\\udf3f\\nTea\\u2615\\nAlways think death!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1305,\"friends_count\":1220,\"listed_count\":3,\"created_at\":\"Tue Jan 07 14:52:20 +0000 2014\",\"favourites_count\":75405,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487348377444573187\\/QrUeAZ51_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487348377444573187\\/QrUeAZ51_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2267049964\\/1571669100\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3416\":{\"id\":316324757,\"id_str\":\"316324757\",\"name\":\"Sue Searson\",\"screen_name\":\"SSearson\",\"location\":\"Jersey C.I.\",\"description\":\"Future purple wearer, fizz drinking leftie, likes TV, books and travel. Proud Merseysider & current Rock Dweller.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":295,\"friends_count\":614,\"listed_count\":15,\"created_at\":\"Mon Jun 13 08:33:58 +0000 2011\",\"favourites_count\":24296,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12728,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1422859170634739713\\/fQhzn4yp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1422859170634739713\\/fQhzn4yp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/316324757\\/1460394345\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3417\":{\"id\":1499078894409949189,\"id_str\":\"1499078894409949189\",\"name\":\"Say No \\u274c To RACISM\\/WAR\",\"screen_name\":\"SayNoToRACISMW1\",\"location\":\"Nigeria\",\"description\":\"RACISM is a public health crisis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Mar 02 17:48:47 +0000 2022\",\"favourites_count\":258,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":328,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499078894409949189\\/1646244040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3418\":{\"id\":2456657931,\"id_str\":\"2456657931\",\"name\":\"Ogunlade Abiola Aremu\",\"screen_name\":\"OgunladeAbiola1\",\"location\":\"Nigeria\",\"description\":\"Promoting creativity to the maximum | Critic of bad governance | Blogger | Unapologetically, a Christian | Lover of sports| #ObidientlYusful\",\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCUBL1qgBRBpQROJrliXuwLA\",\"display_url\":\"youtube.com\\/channel\\/UCUBL1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1258,\"friends_count\":146,\"listed_count\":3,\"created_at\":\"Thu Apr 03 06:35:21 +0000 2014\",\"favourites_count\":1885,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3452,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2456657931\\/1646759743\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3419\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3420\":{\"id\":1553470684059271169,\"id_str\":\"1553470684059271169\",\"name\":\"Stephanie\",\"screen_name\":\"StephanieAOT\",\"location\":\"Abuja, Nigeria\",\"description\":\"A girl\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Sat Jul 30 20:01:15 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553486528403365888\\/2q7vnzSC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553486528403365888\\/2q7vnzSC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553470684059271169\\/1659214936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3421\":{\"id\":1064869621206065152,\"id_str\":\"1064869621206065152\",\"name\":\"Digi-Man\",\"screen_name\":\"edigitmarketng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's #1 #Digital_Marketing company\\n\\nWe offer #digitalmarketing, Nigerians Email & #GSM #Databases, #web #designing, #graphics, #Logo, #SEO, #Branding\",\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"expanded_url\":\"https:\\/\\/digitalmarket.com.ng\",\"display_url\":\"digitalmarket.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Tue Nov 20 13:14:36 +0000 2018\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1064869621206065152\\/1642910003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3422\":{\"id\":1064869621206065152,\"id_str\":\"1064869621206065152\",\"name\":\"Digi-Man\",\"screen_name\":\"edigitmarketng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's #1 #Digital_Marketing company\\n\\nWe offer #digitalmarketing, Nigerians Email & #GSM #Databases, #web #designing, #graphics, #Logo, #SEO, #Branding\",\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"expanded_url\":\"https:\\/\\/digitalmarket.com.ng\",\"display_url\":\"digitalmarket.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Tue Nov 20 13:14:36 +0000 2018\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1064869621206065152\\/1642910003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3423\":{\"id\":1164632120784039936,\"id_str\":\"1164632120784039936\",\"name\":\"Just Event Online Publication\",\"screen_name\":\"justeventsonlin\",\"location\":\"Nigeria\",\"description\":\"news, media publication, and events publication, former account @justeventonline\",\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"expanded_url\":\"http:\\/\\/justeventonline.com\",\"display_url\":\"justeventonline.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1215,\"friends_count\":68,\"listed_count\":1,\"created_at\":\"Thu Aug 22 20:15:36 +0000 2019\",\"favourites_count\":36,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1164632120784039936\\/1612162614\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3424\":{\"id\":187204088,\"id_str\":\"187204088\",\"name\":\"Jedi Skywalker\",\"screen_name\":\"irosky007\",\"location\":\"ABUJA\",\"description\":\"Political Analyst, Promoter of truth and justice. (Tell it as it is).\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1646,\"friends_count\":602,\"listed_count\":13,\"created_at\":\"Sun Sep 05 15:28:00 +0000 2010\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":37514,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1325779580653858816\\/T4e8o1qs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1325779580653858816\\/T4e8o1qs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/187204088\\/1563857471\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3425\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3426\":{\"id\":1019789413369475074,\"id_str\":\"1019789413369475074\",\"name\":\"Aliu Rukayat Olaide\",\"screen_name\":\"OlaideMarketing\",\"location\":\"Nigeria\",\"description\":\"An Online Entrepreneur | Sales and Marketing | Learn how to take advantage of online opportunities For Free: https:\\/\\/t.co\\/WCkHGsYySp |Chelsea FC\\ud83d\\udc8e\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WCkHGsYySp\",\"expanded_url\":\"https:\\/\\/wa.link\\/9nh0tv\",\"display_url\":\"wa.link\\/9nh0tv\",\"indices\":[109,132]}]}},\"protected\":false,\"followers_count\":200,\"friends_count\":864,\"listed_count\":2,\"created_at\":\"Thu Jul 19 03:41:57 +0000 2018\",\"favourites_count\":3172,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515746993544511489\\/h75BHPEn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515746993544511489\\/h75BHPEn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1019789413369475074\\/1659775795\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3427\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3428\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3429\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3430\":{\"id\":873525708689158144,\"id_str\":\"873525708689158144\",\"name\":\"Ogunleke Victor\",\"screen_name\":\"Tobilobaddon\",\"location\":\" Nigeria\",\"description\":\"Web Developer, Tour Operator\\nDM is open for business\",\"url\":\"https:\\/\\/t.co\\/uO3nosrxnA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uO3nosrxnA\",\"expanded_url\":\"https:\\/\\/elitedigitalservices.org\",\"display_url\":\"elitedigitalservices.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Sat Jun 10 13:02:13 +0000 2017\",\"favourites_count\":181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":383,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1429874174701576197\\/Irnpr34M_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1429874174701576197\\/Irnpr34M_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/873525708689158144\\/1578433026\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3431\":{\"id\":965369032277884928,\"id_str\":\"965369032277884928\",\"name\":\"Onyishi Francis\",\"screen_name\":\"FrancisOnyishi\",\"location\":\"Abuja\",\"description\":\"Enthusiastic\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":91,\"listed_count\":1,\"created_at\":\"Sun Feb 18 23:34:47 +0000 2018\",\"favourites_count\":1551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965369032277884928\\/1650277677\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3432\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3433\":{\"id\":749063444,\"id_str\":\"749063444\",\"name\":\"Chidinma.C\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"eagle103_voice\",\"location\":\"Nigeria\",\"description\":\"The quietest people tend to have the loudest minds. :) God's favourite\\ud83d\\ude00 a minstrel\\ud83c\\udfbb Aspiring Digital marketer and a Chef\",\"url\":\"https:\\/\\/t.co\\/TNVyjSLPuy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TNVyjSLPuy\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/chidinma_eagle_voice\",\"display_url\":\"linktr.ee\\/chidinma_eagle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":252,\"friends_count\":247,\"listed_count\":1,\"created_at\":\"Fri Aug 10 09:59:51 +0000 2012\",\"favourites_count\":810,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":783,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541472891425914882\\/XEa1gCWU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541472891425914882\\/XEa1gCWU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/749063444\\/1586353158\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3434\":{\"id\":2352078711,\"id_str\":\"2352078711\",\"name\":\"Yo Mark That\\ud83c\\udf9f\",\"screen_name\":\"Rexx_Dandy\",\"location\":\"Kano, Nigeria\",\"description\":\"#SidiBastard \\ud83c\\udf0e\\ud83c\\uddf3\\ud83c\\uddec\\nRapper-Singer-Stylist & More \\nRAP & DANCEHALL FREAK\\ud83d\\udc7b\\n #No_Holidays\",\"url\":\"https:\\/\\/t.co\\/VLDKM30Gzb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VLDKM30Gzb\",\"expanded_url\":\"https:\\/\\/www.reverbnation.com\\/rexxdandy\\/song\\/31705105-rexx-dandy-again\",\"display_url\":\"reverbnation.com\\/rexxdandy\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":461,\"friends_count\":1481,\"listed_count\":1,\"created_at\":\"Wed Feb 19 07:31:08 +0000 2014\",\"favourites_count\":389,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372661315555168258\\/cXZTH61y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372661315555168258\\/cXZTH61y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2352078711\\/1608277504\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3435\":{\"id\":1334973464478937088,\"id_str\":\"1334973464478937088\",\"name\":\". \\ud835\\udcd5.\",\"screen_name\":\"qf00_\",\"location\":\"UAE\",\"description\":\"\\ud835\\ude44\\ud835\\ude59\\ud835\\ude60 \\ud835\\ude6c\\ud835\\ude5d\\ud835\\ude56\\ud835\\ude69 \\ud835\\ude69\\ud835\\ude64 \\ud835\\ude6c\\ud835\\ude67\\ud835\\ude5e\\ud835\\ude69\\ud835\\ude5a \\ud835\\ude5d\\ud835\\ude5a\\ud835\\ude67\\ud835\\ude5a\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":234,\"friends_count\":615,\"listed_count\":3,\"created_at\":\"Fri Dec 04 21:31:01 +0000 2020\",\"favourites_count\":10766,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4938,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555237905077075971\\/u7MXspos_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555237905077075971\\/u7MXspos_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1334973464478937088\\/1659720292\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3436\":{\"id\":144426464,\"id_str\":\"144426464\",\"name\":\"Molobedu\",\"screen_name\":\"Molobeduu\",\"location\":\"Burkina Faso\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":1120,\"listed_count\":1,\"created_at\":\"Sun May 16 07:37:24 +0000 2010\",\"favourites_count\":2576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/720635112174567424\\/0r-uH1a0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/720635112174567424\\/0r-uH1a0_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3437\":{\"id\":1083011443,\"id_str\":\"1083011443\",\"name\":\"S\\u00fcleyman Ibn Orhan\",\"screen_name\":\"AIFeisal\",\"location\":\"Nigeria\",\"description\":\"Journalism || Banking & Finance || History || Theology\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4807,\"friends_count\":318,\"listed_count\":15,\"created_at\":\"Sat Jan 12 13:38:14 +0000 2013\",\"favourites_count\":7437,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":32875,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551576650357301248\\/iCL8GxDD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551576650357301248\\/iCL8GxDD_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3438\":{\"id\":1484982176118628354,\"id_str\":\"1484982176118628354\",\"name\":\"Dr. McMichelle Donbraye \\ud83d\\udca5\",\"screen_name\":\"drDME27\",\"location\":\"Nigeria\",\"description\":\"Medical Doctor*Lecturer*Human Nutrition enthusiast*#Aspiring Gastroenterologist& Hepatologist#\\nA good diet is the most powerful weapon we have against diseases!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":237,\"listed_count\":0,\"created_at\":\"Sat Jan 22 20:12:18 +0000 2022\",\"favourites_count\":4700,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2966,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538518881513484289\\/XGM7swAF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538518881513484289\\/XGM7swAF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484982176118628354\\/1655937638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3439\":{\"id\":1513140523346931718,\"id_str\":\"1513140523346931718\",\"name\":\"Your Excellency\",\"screen_name\":\"yenkwin\",\"location\":\"Nigeria\",\"description\":\"Graphics Designer | Official tweets are assigned GN, else it's just for fun.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":103,\"listed_count\":0,\"created_at\":\"Sun Apr 10 13:03:32 +0000 2022\",\"favourites_count\":1354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3440\":{\"id\":785791763583758336,\"id_str\":\"785791763583758336\",\"name\":\"I Support Peter Obi\",\"screen_name\":\"onyibaemma\",\"location\":\"Nigeria\",\"description\":\"Social Media Manager | Content Writer || I help professionals and individuals grow their presence online.\\n\\n\\ud83d\\udca5I support Peter Obi For President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Tue Oct 11 10:38:50 +0000 2016\",\"favourites_count\":816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331540778234089473\\/DSL3nGy8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/785791763583758336\\/1547432489\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3441\":{\"id\":965369032277884928,\"id_str\":\"965369032277884928\",\"name\":\"Onyishi Francis\",\"screen_name\":\"FrancisOnyishi\",\"location\":\"Abuja\",\"description\":\"Enthusiastic\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":91,\"listed_count\":1,\"created_at\":\"Sun Feb 18 23:34:47 +0000 2018\",\"favourites_count\":1551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965369032277884928\\/1650277677\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3442\":{\"id\":34924724,\"id_str\":\"34924724\",\"name\":\"Jo\\u00f1 Abu-Kpaw\\u00f6h \\ud83c\\uddf8\\ud83c\\uddf1\\u270d\",\"screen_name\":\"jckpawoh\",\"location\":\"Freetown, Sierra Leone \",\"description\":\"#Foodie. #Optimist. #FulbrightFellow. #NaturalResources #Economist. #PurdueAlumni. Psychology label: #ShyExtrovert\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3519,\"friends_count\":3815,\"listed_count\":7,\"created_at\":\"Fri Apr 24 13:31:41 +0000 2009\",\"favourites_count\":4077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7787,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"00B8B8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536472800734629888\\/RBY_SXFV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536472800734629888\\/RBY_SXFV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/34924724\\/1546227495\",\"profile_link_color\":\"00B2B8\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3443\":{\"id\":1519380325725622274,\"id_str\":\"1519380325725622274\",\"name\":\"Yeasin AR \\u2764\\ufe0f\\ud83c\\uddf8\\ud83c\\udde9\\ud83c\\uddf5\\ud83c\\uddf0\\u2764\\ufe0f\",\"screen_name\":\"AyaubiK47441869\",\"location\":\"UAE \",\"description\":\"PTI Imran Khan \\ud83d\\udc9a\\ud83c\\uddf5\\ud83c\\uddf0\\ud83c\\uddf7\\ud83c\\uddfa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":273,\"friends_count\":395,\"listed_count\":0,\"created_at\":\"Wed Apr 27 18:18:03 +0000 2022\",\"favourites_count\":10379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11359,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551220750731939844\\/N2ZeWkXk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519380325725622274\\/1653479415\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3444\":{\"id\":252557015,\"id_str\":\"252557015\",\"name\":\"kingsley Diamond\",\"screen_name\":\"dynamicfxtrader\",\"location\":\"Abuja, Nigeria\",\"description\":\"Financial Trader\\/Analyst \\ud83d\\udcc8\\ud83d\\udcc9 | Crypto Exchanger | Passive Income Coach | Digital Marketer \\ud83d\\udcb9| Tech Guy\\ud83d\\udc68\\u200d\\ud83d\\udcbb | Chelsea Fc\\ud83d\\udc10 | Snooker \\ud83c\\udfb1 Relaxation \\ud83d\\udc4d\",\"url\":\"https:\\/\\/t.co\\/QUGxvP2W9z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QUGxvP2W9z\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/dynamictrader\",\"display_url\":\"linktr.ee\\/dynamictrader\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":393,\"friends_count\":568,\"listed_count\":11,\"created_at\":\"Tue Feb 15 12:48:57 +0000 2011\",\"favourites_count\":1176,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EBEBEB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515836034487050247\\/NUC01L4V_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515836034487050247\\/NUC01L4V_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/252557015\\/1650232538\",\"profile_link_color\":\"21689E\",\"profile_sidebar_border_color\":\"DFDFDF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3445\":{\"id\":3384385683,\"id_str\":\"3384385683\",\"name\":\"HERAN\",\"screen_name\":\"heranorg\",\"location\":\"Nigeria\",\"description\":\"Official account of #HERAN. Get latest information on Heran. Follow us on Instagram: @heranorg_ Facebook @heranorg +2348166912594\\n#GlobalGoals #family\",\"url\":\"https:\\/\\/t.co\\/D4BR7JLUFh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D4BR7JLUFh\",\"expanded_url\":\"http:\\/\\/heran.org\",\"display_url\":\"heran.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":25,\"listed_count\":1,\"created_at\":\"Mon Jul 20 11:59:57 +0000 2015\",\"favourites_count\":86,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/623101521794846720\\/Ry2gOHfc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/623101521794846720\\/Ry2gOHfc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3384385683\\/1490965164\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3446\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3447\":{\"id\":135117366,\"id_str\":\"135117366\",\"name\":\"#BBNaija\",\"screen_name\":\"Bomweekly\",\"location\":\"Nigeria\",\"description\":\"News | Entertainment | Life Style & More.\\ud83d\\udc49\\nFormerly @belinberry\\ud83d\\udc4d\\nSend news tips to WhatsApp only -08036842854\\n\\ud83d\\udc47\\nInstagram @bomweekly\\nFacebook @bomweekly\",\"url\":\"https:\\/\\/t.co\\/SxiJx7ihHv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SxiJx7ihHv\",\"expanded_url\":\"https:\\/\\/www.bomweekly.com\",\"display_url\":\"bomweekly.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4013,\"friends_count\":475,\"listed_count\":52,\"created_at\":\"Tue Apr 20 11:28:20 +0000 2010\",\"favourites_count\":1767,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550901867995078656\\/KBFDZ-QS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550901867995078656\\/KBFDZ-QS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/135117366\\/1656943931\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3448\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3449\":{\"id\":1499078894409949189,\"id_str\":\"1499078894409949189\",\"name\":\"Say No \\u274c To RACISM\\/WAR\",\"screen_name\":\"SayNoToRACISMW1\",\"location\":\"Nigeria\",\"description\":\"RACISM is a public health crisis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Mar 02 17:48:47 +0000 2022\",\"favourites_count\":258,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":328,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499078894409949189\\/1646244040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3450\":{\"id\":1878607682,\"id_str\":\"1878607682\",\"name\":\"BENJAMIN OSSY\",\"screen_name\":\"Benstinoc\",\"location\":\" Nigeria \",\"description\":\"A crypto enthusiast\\ud83e\\ude99, Bible Scholar \\ud83d\\udcd6 and lover of God\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Wed Sep 18 08:18:00 +0000 2013\",\"favourites_count\":737,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":838,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548079275969900545\\/taEcs20m_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548079275969900545\\/taEcs20m_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1878607682\\/1657883460\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3451\":{\"id\":625279772,\"id_str\":\"625279772\",\"name\":\"Oluseyi Johnson\",\"screen_name\":\"OluseyiJohnsonG\",\"location\":\"Abuja.Nigeria\",\"description\":\"Lover of Jesus, Worshipper, Teens Leader. I'm me. Never stop believing in what you n God would accomplish if u partner with Him. @TeensLoveF\",\"url\":\"https:\\/\\/t.co\\/9dwzUXnBj0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9dwzUXnBj0\",\"expanded_url\":\"http:\\/\\/tlf.org.ng\",\"display_url\":\"tlf.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":272,\"friends_count\":1752,\"listed_count\":2,\"created_at\":\"Tue Jul 03 05:19:51 +0000 2012\",\"favourites_count\":2170,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526117359529996289\\/dVm5IZUV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526117359529996289\\/dVm5IZUV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/625279772\\/1548085967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3452\":{\"id\":1499078894409949189,\"id_str\":\"1499078894409949189\",\"name\":\"Say No \\u274c To RACISM\\/WAR\",\"screen_name\":\"SayNoToRACISMW1\",\"location\":\"Nigeria\",\"description\":\"RACISM is a public health crisis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Mar 02 17:48:47 +0000 2022\",\"favourites_count\":258,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":328,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499078894409949189\\/1646244040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3453\":{\"id\":1312896963155763201,\"id_str\":\"1312896963155763201\",\"name\":\"Zubair A Zubair\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Funny_African01\",\"location\":\"Kano, Nigeria\",\"description\":\"Human Rights Activist |Writer| UN model |S. Journalist @nigeria_tracker | Radio Host| Actor| Comedian| Youth Advocate| Pan Africanist | 3 Honor. DD \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\\u2708\\ufe0f\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100013692549752\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":172,\"friends_count\":351,\"listed_count\":0,\"created_at\":\"Sun Oct 04 23:27:08 +0000 2020\",\"favourites_count\":4869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2966,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312896963155763201\\/1647710037\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3454\":{\"id\":1318458441153785856,\"id_str\":\"1318458441153785856\",\"name\":\"Jlove Of Lekki for Peter Obi\",\"screen_name\":\"ChefJlove\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m an Obidient Nigerian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":452,\"listed_count\":1,\"created_at\":\"Tue Oct 20 07:46:32 +0000 2020\",\"favourites_count\":220,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":535,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535919993568874497\\/xJsCzwnd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535919993568874497\\/xJsCzwnd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1318458441153785856\\/1616059758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3455\":{\"id\":1317189530546556928,\"id_str\":\"1317189530546556928\",\"name\":\"Valiant\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\",\"screen_name\":\"Valiantjoe1\",\"location\":\"Nigeria\",\"description\":\"Full stack \\ud83d\\udcbb\\/software developer \\n\\nTURING \\ud83c\\udfc6\\n\\n:Liverpool Fan \\ud83c\\udfc6\\ud83c\\udfc6\\ud83c\\udfc6\\n\\n#God_is_the_greatest\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":439,\"listed_count\":2,\"created_at\":\"Fri Oct 16 19:44:09 +0000 2020\",\"favourites_count\":881,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":638,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547719369228107778\\/b7BenO2s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547719369228107778\\/b7BenO2s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317189530546556928\\/1654153508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3456\":{\"id\":1312896963155763201,\"id_str\":\"1312896963155763201\",\"name\":\"Zubair A Zubair\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Funny_African01\",\"location\":\"Kano, Nigeria\",\"description\":\"Human Rights Activist |Writer| UN model |S. Journalist @nigeria_tracker | Radio Host| Actor| Comedian| Youth Advocate| Pan Africanist | 3 Honor. DD \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\\u2708\\ufe0f\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YaeU5F3qsq\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100013692549752\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":172,\"friends_count\":351,\"listed_count\":0,\"created_at\":\"Sun Oct 04 23:27:08 +0000 2020\",\"favourites_count\":4869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2966,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511208333289701376\\/sc6dq3ns_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312896963155763201\\/1647710037\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3457\":{\"id\":3039613731,\"id_str\":\"3039613731\",\"name\":\"Paulitodo Samuel\",\"screen_name\":\"itodougo\",\"location\":\"Nigeria\",\"description\":\"Intrinsically humanitarian, good governance advocate. A Man of God, Area Superintendent Pastor, Christ Centered.\\nPublic analyst and Speaker.\",\"url\":\"https:\\/\\/t.co\\/fBbKW7xEhH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fBbKW7xEhH\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/DeOSYfYNt5m3ApWyKDruZ6\",\"display_url\":\"chat.whatsapp.com\\/DeOSYfYNt5m3Ap\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":359,\"friends_count\":639,\"listed_count\":1,\"created_at\":\"Sun Feb 15 20:46:49 +0000 2015\",\"favourites_count\":1579,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1556,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541376977671692289\\/C3CP3_hG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541376977671692289\\/C3CP3_hG_normal.jpg\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3458\":{\"id\":1186753747759837186,\"id_str\":\"1186753747759837186\",\"name\":\"Auwal Faruq\",\"screen_name\":\"AuwalFaruq1\",\"location\":\"AREWA\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":429,\"listed_count\":3,\"created_at\":\"Tue Oct 22 21:20:29 +0000 2019\",\"favourites_count\":9030,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1521,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395830036675108867\\/aBuEAlnf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395830036675108867\\/aBuEAlnf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3459\":{\"id\":1316814257460326404,\"id_str\":\"1316814257460326404\",\"name\":\"\\ud835\\udc01\\ud835\\udc2b\\ud835\\udc32\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc33\\ud835\\udc32\\u2b50\\ufe0f\",\"screen_name\":\"bryteazy\",\"location\":\"Nigeria\",\"description\":\"Skit maker|content creator|INSTAGRAM @\\ud835\\udc01\\ud835\\udc2b\\ud835\\udc32\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc33\\ud835\\udc32\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":102,\"friends_count\":140,\"listed_count\":0,\"created_at\":\"Thu Oct 15 18:52:57 +0000 2020\",\"favourites_count\":450,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532110982121652231\\/9XZKa4cQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532110982121652231\\/9XZKa4cQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316814257460326404\\/1654848551\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3460\":{\"id\":1312137870744973319,\"id_str\":\"1312137870744973319\",\"name\":\"IN-COUNTRY MEDICARE\",\"screen_name\":\"medicare_in\",\"location\":\"Abuja, Nigeria\",\"description\":\"...Center for Well being, Precision and Personalized Medicine\",\"url\":\"https:\\/\\/t.co\\/rxXE6mjeaj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rxXE6mjeaj\",\"expanded_url\":\"https:\\/\\/incountrymedicare.com\",\"display_url\":\"incountrymedicare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Fri Oct 02 21:10:51 +0000 2020\",\"favourites_count\":20,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":60,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322247013694611456\\/T0THE9xg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322247013694611456\\/T0THE9xg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312137870744973319\\/1604083227\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3461\":{\"id\":1446977803879071750,\"id_str\":\"1446977803879071750\",\"name\":\"Ughelli Son Media\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec F\\ud83c\\udd71\\ufe0fF #BBNaij Benin Deji\",\"screen_name\":\"UghelliSon1\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Available For All Promotions | || Cleaning Consultant , || Don\\u2019t Take My Tweets Too Serious, +2348027478287\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1458,\"friends_count\":1068,\"listed_count\":0,\"created_at\":\"Sat Oct 09 23:16:33 +0000 2021\",\"favourites_count\":4354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555255063156752386\\/hs4y80Ar_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555255063156752386\\/hs4y80Ar_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1446977803879071750\\/1659297496\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3462\":{\"id\":1281758785615417345,\"id_str\":\"1281758785615417345\",\"name\":\"MoviePlus\\ud83d\\udcfa\",\"screen_name\":\"MoviePlusx\",\"location\":\"Nigeria\",\"description\":\"MOVIES (Old & New) and REVIEWS.\\ud83d\\udcfa Check My Media For My Tweets.\\ud83e\\udd2a\\n\\nBackUp - @Movie_Plux\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2259,\"friends_count\":2006,\"listed_count\":4,\"created_at\":\"Sat Jul 11 01:14:59 +0000 2020\",\"favourites_count\":22439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6576,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1324863425164546048\\/_XojFNlS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1324863425164546048\\/_XojFNlS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1281758785615417345\\/1659797506\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3463\":{\"id\":500564996,\"id_str\":\"500564996\",\"name\":\"KING \\ud83d\\udc51 ELENIYAN\",\"screen_name\":\"olisasegun1\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":170,\"listed_count\":0,\"created_at\":\"Thu Feb 23 07:53:03 +0000 2012\",\"favourites_count\":594,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":217,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531207036322598912\\/tfU_9-8e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531207036322598912\\/tfU_9-8e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/500564996\\/1489863212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3464\":{\"id\":1550914540266786817,\"id_str\":\"1550914540266786817\",\"name\":\"D nicky doll\\ud83e\\udd75\\ud83e\\udd8b\",\"screen_name\":\"nickyB112\",\"location\":\"Nigeria\",\"description\":\"good byad gyal\\ud83e\\udd24 Gemini \\u264a\\ufe0f love of black\\ud83d\\udda4 cheers to a good life\\ud83e\\udd42\\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Sat Jul 23 18:43:51 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550942189332713475\\/v3xSk65__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550942189332713475\\/v3xSk65__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550914540266786817\\/1659045879\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3465\":{\"id\":989872157357420544,\"id_str\":\"989872157357420544\",\"name\":\"Lemontee\",\"screen_name\":\"callmelemontee\",\"location\":\"Nigeria\",\"description\":\"Activated-no Bad Songs \\nSinger \\ud83c\\udf99\\ufe0f\\nRapper\\u00b0\\nHipop & Afro \\u303d\\nPerforming Artist\\u23cf\\nSong Writer \\u23f9 \\nInstrumentalist\\ud83d\\udd06\",\"url\":\"https:\\/\\/t.co\\/xfUqWERzxy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xfUqWERzxy\",\"expanded_url\":\"https:\\/\\/ffm.to\\/lemontee-dreamz\",\"display_url\":\"ffm.to\\/lemontee-dreamz\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":49,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Fri Apr 27 14:21:28 +0000 2018\",\"favourites_count\":474,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482080963823910913\\/j60fzSEm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482080963823910913\\/j60fzSEm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/989872157357420544\\/1653470365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3466\":{\"id\":286341946,\"id_str\":\"286341946\",\"name\":\"Samuel Danbauchi\",\"screen_name\":\"Sam_Deck\",\"location\":\"Jos, Nigeria.\",\"description\":\"Early Childhood Professional\\nBlessed\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":683,\"friends_count\":910,\"listed_count\":0,\"created_at\":\"Fri Apr 22 20:22:37 +0000 2011\",\"favourites_count\":148,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6535,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553178876943241218\\/YK-xxN0x_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553178876943241218\\/YK-xxN0x_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/286341946\\/1480345078\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3467\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3468\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3469\":{\"id\":2741620606,\"id_str\":\"2741620606\",\"name\":\"Obimoney!!! \\ud83d\\udc99\\u2764\\ufe0f\\ud83d\\udcc8\\ud83d\\udcc9\",\"screen_name\":\"samuelobiora21\",\"location\":\"Somewhere in Nigeria\",\"description\":\"Medical Student \\ud83d\\udc68\\u200d\\u2695\\ufe0f\\nEntrepreneur \\ud83d\\udcb5\\ud83d\\udcb5\\nExtrovert \\ud83d\\udcaf\\ud83d\\udcaf\\nForex trader and Networker!!\\nFollow back \\u270c\\ufe0f Messi @Fcbarcelona \\ud83d\\udc99\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6129,\"friends_count\":6083,\"listed_count\":0,\"created_at\":\"Wed Aug 13 09:40:48 +0000 2014\",\"favourites_count\":26125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":32074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554453009328898052\\/mbNV64pn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554453009328898052\\/mbNV64pn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2741620606\\/1659445090\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3470\":{\"id\":1384447899828957186,\"id_str\":\"1384447899828957186\",\"name\":\"Awireee\\ud83d\\udcb8\\ud83e\\udd74\",\"screen_name\":\"pelumiii_awiree\",\"location\":\"Nigeria\",\"description\":\"Eventsplanner \\u2022 Financial analysis \\u2022 GGMU \\u2022 emmanuelodunayomi@gmail.com. Comedian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Tue Apr 20 10:04:50 +0000 2021\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384447899828957186\\/1620914365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3471\":{\"id\":2613972650,\"id_str\":\"2613972650\",\"name\":\"BBNaija2022\",\"screen_name\":\"BBNaija_2022\",\"location\":\"Nigeria\",\"description\":\"Get all the latest Big Brother Naija 2022 Updates. This\\u2019s a fan page of BBNaija Subscribe to our YouTube Channel for Live Streams Link below\\u2935\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":13,\"listed_count\":4,\"created_at\":\"Wed Jul 09 18:07:39 +0000 2014\",\"favourites_count\":622,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2738,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2613972650\\/1652963380\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3472\":{\"id\":1510000322231549954,\"id_str\":\"1510000322231549954\",\"name\":\"Adiongano\",\"screen_name\":\"AAdiongano\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\nA Lawyer. Interested in Politics,History, Philosophy, Economics, Science, Music...\\n\\nalso plays a piano.\",\"url\":\"https:\\/\\/t.co\\/HHMvI2Wylw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HHMvI2Wylw\",\"expanded_url\":\"https:\\/\\/wa.me\\/+23407037217492\",\"display_url\":\"wa.me\\/+23407037217492\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Fri Apr 01 21:05:28 +0000 2022\",\"favourites_count\":2558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535227236621623297\\/c2E3SgoC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535227236621623297\\/c2E3SgoC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510000322231549954\\/1649790551\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3473\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3474\":{\"id\":843910826,\"id_str\":\"843910826\",\"name\":\"Joyner\\u26aa\\ufe0f\",\"screen_name\":\"Joynerkardinal\",\"location\":\"abuja\",\"description\":\"very simple guy \\ud83d\\udde3 footballer\\u2764\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1111,\"friends_count\":1326,\"listed_count\":0,\"created_at\":\"Mon Sep 24 16:49:32 +0000 2012\",\"favourites_count\":6904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1555,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1222836260772950017\\/mllR-qkP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1222836260772950017\\/mllR-qkP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/843910826\\/1576104534\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3475\":{\"id\":228142725,\"id_str\":\"228142725\",\"name\":\"Hillary\",\"screen_name\":\"hill831\",\"location\":\"Nigeria\",\"description\":\"Come closer to know me better.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":1359,\"listed_count\":4,\"created_at\":\"Sat Dec 18 21:12:27 +0000 2010\",\"favourites_count\":308,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":755,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1318851541911195648\\/faDDZB2X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1318851541911195648\\/faDDZB2X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/228142725\\/1603273688\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3476\":{\"id\":1552960003094503424,\"id_str\":\"1552960003094503424\",\"name\":\"Gilbert Ezenyimulu\",\"screen_name\":\"ezenwannemotors\",\"location\":\"Nigeria\",\"description\":\"| Dealers in both foreign and Registered vehicles | I\\u2019m here to serve you better | I buy, sell and swap | I also clear cars | \\u260e\\ufe0f 08130800836\",\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"expanded_url\":\"http:\\/\\/ezenwannemotors.com\",\"display_url\":\"ezenwannemotors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":120,\"listed_count\":0,\"created_at\":\"Fri Jul 29 10:12:33 +0000 2022\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552960003094503424\\/1659090359\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3477\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3478\":{\"id\":1520354356037627904,\"id_str\":\"1520354356037627904\",\"name\":\"JobsandJapa.com\",\"screen_name\":\"jobsandjapa\",\"location\":\"Nigeria\",\"description\":\"Connecting talents to the best #jobs, #scholarships, #fellowships, #travel opportunities in the world, and more. Maximize your Future!\",\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DGO6bN67aQ\",\"expanded_url\":\"http:\\/\\/www.jobsandjapa.com\",\"display_url\":\"jobsandjapa.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":312,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sat Apr 30 10:49:32 +0000 2022\",\"favourites_count\":587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521009580662272000\\/ez6nuQDw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520354356037627904\\/1651471929\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3479\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3480\":{\"id\":988365854411812866,\"id_str\":\"988365854411812866\",\"name\":\"Most Handsome Guy in Jos \\ud83d\\ude0e\",\"screen_name\":\"buzzy_comedian\",\"location\":\"\",\"description\":\"Stand-Up Comedian,\\nEvents MC,\\nActor,\\nContent creator,\\nOnline Brand\\/Business Influencer,\\nOAP,\\nYouTube Channel link https:\\/\\/t.co\\/JwEuXMxofk\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JwEuXMxofk\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCg1FUPoc7XIl6lDu\",\"display_url\":\"youtube.com\\/channel\\/UCg1FU\\u2026\",\"indices\":[114,137]}]}},\"protected\":false,\"followers_count\":2107,\"friends_count\":2290,\"listed_count\":0,\"created_at\":\"Mon Apr 23 10:35:57 +0000 2018\",\"favourites_count\":8757,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4264,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502992487421517829\\/7uR9Pqh3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502992487421517829\\/7uR9Pqh3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988365854411812866\\/1616367957\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3481\":{\"id\":1075280000293715970,\"id_str\":\"1075280000293715970\",\"name\":\"SWAT C\",\"screen_name\":\"swatc_music\",\"location\":\"Nigeria\",\"description\":\"RECORDING Artist \\n SONG WIRTER,\\n VOCALIST \\n\\nfor booking email: kelvinobi32@gmail.com\",\"url\":\"https:\\/\\/t.co\\/gLEJD6bFyN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gLEJD6bFyN\",\"expanded_url\":\"https:\\/\\/ampl.ink\\/stream-mercy\",\"display_url\":\"ampl.ink\\/stream-mercy\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":279,\"friends_count\":613,\"listed_count\":0,\"created_at\":\"Wed Dec 19 06:41:44 +0000 2018\",\"favourites_count\":15107,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2788,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514432474583027717\\/4kOhA_gf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514432474583027717\\/4kOhA_gf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1075280000293715970\\/1645859374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3482\":{\"id\":1313401148813053952,\"id_str\":\"1313401148813053952\",\"name\":\"Thejosephjegede\",\"screen_name\":\"thejosephjegede\",\"location\":\"Nigeria\",\"description\":\"He\\/him, \\nWriter, Blogger and Author, Polyglot and Language Coach, Translator and Interpreter, Book- and Boot-freak. https:\\/\\/t.co\\/Ye0WayLot5\",\"url\":\"https:\\/\\/t.co\\/qCPIAwcHqh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qCPIAwcHqh\",\"expanded_url\":\"https:\\/\\/theeverymann.blogspot.com\\/?m=1\",\"display_url\":\"theeverymann.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ye0WayLot5\",\"expanded_url\":\"http:\\/\\/www.novelty-fiction.com\\/gazette\\/2022\",\"display_url\":\"novelty-fiction.com\\/gazette\\/2022\",\"indices\":[117,140]}]}},\"protected\":false,\"followers_count\":135,\"friends_count\":258,\"listed_count\":0,\"created_at\":\"Tue Oct 06 08:50:24 +0000 2020\",\"favourites_count\":2948,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":924,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537752490363568128\\/vt_OZgIb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537752490363568128\\/vt_OZgIb_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3483\":{\"id\":2876181225,\"id_str\":\"2876181225\",\"name\":\"zubenna\",\"screen_name\":\"zubboke42\",\"location\":\"Porthacourt,Nigeria \",\"description\":\"Keep pushing never give up ,You can\\u2019t be unlucky for a year.|Port harcourt boy Original|IG:- @ zubenna\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":62,\"listed_count\":0,\"created_at\":\"Fri Nov 14 09:27:22 +0000 2014\",\"favourites_count\":338,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":158,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2876181225\\/1653251845\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3484\":{\"id\":1256542153880240128,\"id_str\":\"1256542153880240128\",\"name\":\"Anna Mungasa\",\"screen_name\":\"AnnaMungasa\",\"location\":\"Uganda\",\"description\":\"#LoveAbounds\\ud83d\\udc93\\na professional waitress, \\nlove acting &\\nGod's last born\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":702,\"friends_count\":906,\"listed_count\":0,\"created_at\":\"Sat May 02 11:13:13 +0000 2020\",\"favourites_count\":16382,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":660,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510160798999584768\\/SHQAGUn-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510160798999584768\\/SHQAGUn-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1256542153880240128\\/1588888495\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3485\":{\"id\":196563354,\"id_str\":\"196563354\",\"name\":\"the diverse human \\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\uddf2\\ud83c\\uddfa \\ud83c\\udde6\\ud83c\\uddea\",\"screen_name\":\"iamhorlagoke\",\"location\":\"Nigeria\",\"description\":\"Conceptual Digital Artist | Practically insane with IT | Swing Trader | Hustler | Co-Creator @GOkari_ng | Learner | \\ud83c\\udf10 Portfolio @sigit_global\",\"url\":\"https:\\/\\/t.co\\/vJkEfIuEuq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vJkEfIuEuq\",\"expanded_url\":\"http:\\/\\/goke.disha.page\",\"display_url\":\"goke.disha.page\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":143,\"friends_count\":363,\"listed_count\":3,\"created_at\":\"Wed Sep 29 12:10:57 +0000 2010\",\"favourites_count\":139,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478431704968617988\\/lA7F0EbG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478431704968617988\\/lA7F0EbG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/196563354\\/1603230307\",\"profile_link_color\":\"05152C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3486\":{\"id\":1504597159013928975,\"id_str\":\"1504597159013928975\",\"name\":\"Ms Willie's period care boxes\\ud83d\\udc9c\",\"screen_name\":\"willi_eee\",\"location\":\"Abuja, Nigeria\",\"description\":\"period care packages, curated and delivered to you door step every month \\ud83c\\udf3a\",\"url\":\"https:\\/\\/t.co\\/hr5m0QipA4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hr5m0QipA4\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/QQOQ77W3YW2YN1\",\"display_url\":\"wa.me\\/message\\/QQOQ77\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142,\"friends_count\":197,\"listed_count\":0,\"created_at\":\"Thu Mar 17 23:15:11 +0000 2022\",\"favourites_count\":345,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":153,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541094833388929027\\/VP3kYcqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541094833388929027\\/VP3kYcqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1504597159013928975\\/1656260668\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3487\":{\"id\":461006881,\"id_str\":\"461006881\",\"name\":\"El Matador\",\"screen_name\":\"Okai_AA\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Media Planning| Business Strategy. Abuja \\ud83c\\uddf3\\ud83c\\uddec & Amsterdam \\ud83c\\uddf3\\ud83c\\uddf1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":159,\"friends_count\":155,\"listed_count\":1,\"created_at\":\"Wed Jan 11 10:40:06 +0000 2012\",\"favourites_count\":11772,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10718,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508430160462241793\\/MEwSMJUo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508430160462241793\\/MEwSMJUo_normal.jpg\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3488\":{\"id\":2170873966,\"id_str\":\"2170873966\",\"name\":\"Serial Killer\",\"screen_name\":\"mr_caustic\",\"location\":\"Benin city, Edo state, Nigeria\",\"description\":\"A singer,\\nSongwriter, \\nEntertainer \\ncontact +2349057802308, jeffojeez@gmail.com\",\"url\":\"https:\\/\\/t.co\\/OjnQb2MA5N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OjnQb2MA5N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/artist\\/mr_caustic\",\"display_url\":\"audiomack.com\\/artist\\/mr_caus\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":254,\"listed_count\":4,\"created_at\":\"Wed Nov 06 14:20:38 +0000 2013\",\"favourites_count\":2396,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5302,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1147520360167936000\\/_N4oUrKW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1147520360167936000\\/_N4oUrKW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2170873966\\/1612859494\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3489\":{\"id\":1653994592,\"id_str\":\"1653994592\",\"name\":\"Olaadura Olayinka Michael\",\"screen_name\":\"olaadura4christ\",\"location\":\"Oyo, Nigeria\",\"description\":\"A CHRISTIAN,A PROPHETIC EVANGELIST GOSPEL ARTIST, RELATIONSHIP COACH\\/COUNSELOR, A POLITICIAN.\\nThe chief officer at DIVINE NEWS MEDIA.\",\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"expanded_url\":\"http:\\/\\/mixlr.com\\/divine-news-media\",\"display_url\":\"mixlr.com\\/divine-news-me\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":102,\"listed_count\":0,\"created_at\":\"Wed Aug 07 22:15:50 +0000 2013\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":143,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3490\":{\"id\":1552960003094503424,\"id_str\":\"1552960003094503424\",\"name\":\"Gilbert Ezenyimulu\",\"screen_name\":\"ezenwannemotors\",\"location\":\"Nigeria\",\"description\":\"| Dealers in both foreign and Registered vehicles | I\\u2019m here to serve you better | I buy, sell and swap | I also clear cars | \\u260e\\ufe0f 08130800836\",\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZmMuZ4f14y\",\"expanded_url\":\"http:\\/\\/ezenwannemotors.com\",\"display_url\":\"ezenwannemotors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":120,\"listed_count\":0,\"created_at\":\"Fri Jul 29 10:12:33 +0000 2022\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552963591661404160\\/JTao4jAT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552960003094503424\\/1659090359\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3491\":{\"id\":716506086,\"id_str\":\"716506086\",\"name\":\"WAAW Foundation\",\"screen_name\":\"WAAW_Foundation\",\"location\":\"Abuja, Nigeria\",\"description\":\"Working to Advance STEM education for African Women Foundation-Nonprofit working to increase participation of African girls in science, technology & engineering\",\"url\":\"https:\\/\\/t.co\\/IAv2d7f1aP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IAv2d7f1aP\",\"expanded_url\":\"https:\\/\\/waawfoundation.org\",\"display_url\":\"waawfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3085,\"friends_count\":1037,\"listed_count\":53,\"created_at\":\"Wed Jul 25 18:16:57 +0000 2012\",\"favourites_count\":1060,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"709397\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1280430260027342848\\/RFvplJwt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1280430260027342848\\/RFvplJwt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/716506086\\/1594112554\",\"profile_link_color\":\"FF3300\",\"profile_sidebar_border_color\":\"86A4A6\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3492\":{\"id\":3935905942,\"id_str\":\"3935905942\",\"name\":\"Tosh Michaels \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"ToshSports\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Broadcast Journalist | Commentator | OAP @Diamond887fm Ilorin | Actor | Event Host | Email: jamesvic336@gmail.com.\",\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"expanded_url\":\"http:\\/\\/www.owosports.com.ng\",\"display_url\":\"owosports.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":433,\"friends_count\":996,\"listed_count\":3,\"created_at\":\"Mon Oct 12 09:24:48 +0000 2015\",\"favourites_count\":4199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1948,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3935905942\\/1640642689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3493\":{\"id\":1198030580,\"id_str\":\"1198030580\",\"name\":\"KING\",\"screen_name\":\"KingsEmpire1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Business. I believe in God| humanity is supreme. Greatest\\ud83d\\ude4c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":553,\"listed_count\":1,\"created_at\":\"Tue Feb 19 17:06:23 +0000 2013\",\"favourites_count\":9214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2793,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541140315150712833\\/QpjnZc2W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541140315150712833\\/QpjnZc2W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1198030580\\/1651973076\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3494\":{\"id\":216088342,\"id_str\":\"216088342\",\"name\":\"Idris Dangalan\",\"screen_name\":\"IdrisDangalan\",\"location\":\"Nigeria\",\"description\":\"Belt and Road initiative (BRI) Ambassador, \\nSuzhou Xinlusiyu Culture Development Co., Ltd.\",\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"expanded_url\":\"https:\\/\\/m.facebook.com\\/peace30?_rdr\",\"display_url\":\"m.facebook.com\\/peace30?_rdr\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":927,\"friends_count\":350,\"listed_count\":18,\"created_at\":\"Mon Nov 15 19:28:27 +0000 2010\",\"favourites_count\":8216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18730,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/216088342\\/1509188657\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3495\":{\"id\":216088342,\"id_str\":\"216088342\",\"name\":\"Idris Dangalan\",\"screen_name\":\"IdrisDangalan\",\"location\":\"Nigeria\",\"description\":\"Belt and Road initiative (BRI) Ambassador, \\nSuzhou Xinlusiyu Culture Development Co., Ltd.\",\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"expanded_url\":\"https:\\/\\/m.facebook.com\\/peace30?_rdr\",\"display_url\":\"m.facebook.com\\/peace30?_rdr\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":927,\"friends_count\":350,\"listed_count\":18,\"created_at\":\"Mon Nov 15 19:28:27 +0000 2010\",\"favourites_count\":8216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18730,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/216088342\\/1509188657\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3496\":{\"id\":1001482032147566592,\"id_str\":\"1001482032147566592\",\"name\":\"Dinma\",\"screen_name\":\"Dinma_DinmaRose\",\"location\":\"Abuja, Nigeria\",\"description\":\"I believe in making so much wealth from this online space,I provide value packed financial tips. \\n\\nSales\\/ Marketing.\",\"url\":\"https:\\/\\/t.co\\/GoXyTMheAX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GoXyTMheAX\",\"expanded_url\":\"https:\\/\\/wa.link\\/htstcu\",\"display_url\":\"wa.link\\/htstcu\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5568,\"friends_count\":5053,\"listed_count\":0,\"created_at\":\"Tue May 29 15:14:57 +0000 2018\",\"favourites_count\":13784,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6462,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517444485000704002\\/35dYHweY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517444485000704002\\/35dYHweY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1001482032147566592\\/1644934905\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3497\":{\"id\":216088342,\"id_str\":\"216088342\",\"name\":\"Idris Dangalan\",\"screen_name\":\"IdrisDangalan\",\"location\":\"Nigeria\",\"description\":\"Belt and Road initiative (BRI) Ambassador, \\nSuzhou Xinlusiyu Culture Development Co., Ltd.\",\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/48prOTWo4r\",\"expanded_url\":\"https:\\/\\/m.facebook.com\\/peace30?_rdr\",\"display_url\":\"m.facebook.com\\/peace30?_rdr\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":927,\"friends_count\":350,\"listed_count\":18,\"created_at\":\"Mon Nov 15 19:28:27 +0000 2010\",\"favourites_count\":8216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18730,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481452829541900291\\/RjpYCCWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/216088342\\/1509188657\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3498\":{\"id\":719934970354081792,\"id_str\":\"719934970354081792\",\"name\":\"Naijaloveinfo\",\"screen_name\":\"naijaloveinfo\",\"location\":\"Nigeria\",\"description\":\"Naijaloveinfo...Truly for everyone \\nOnline News, Photos, Videos, Online Advert & Lots more. Phone: +2347067853731; Email: naijaloveinfo@gmail.com\\n#Naijaloveinfo\",\"url\":\"https:\\/\\/t.co\\/MDKWCn60Ak\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MDKWCn60Ak\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC5n28XOTXz7dBF4z0W72bGg\",\"display_url\":\"youtube.com\\/channel\\/UC5n28\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":962,\"friends_count\":256,\"listed_count\":5,\"created_at\":\"Tue Apr 12 17:07:27 +0000 2016\",\"favourites_count\":28528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":45696,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1137653803120058370\\/1ZER97Yf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1137653803120058370\\/1ZER97Yf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/719934970354081792\\/1588623351\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3499\":{\"id\":2560001369,\"id_str\":\"2560001369\",\"name\":\"Surest Top\",\"screen_name\":\"SurestTop\",\"location\":\"Abuja, Nigeria\",\"description\":\"CEO Surest Top Laundry and General Cleaning Services | Agriculturists | Entrepreneur | Bar\\u00e7a fan | https:\\/\\/t.co\\/GjCpeqdmLM for business.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GjCpeqdmLM\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/J5HV75SGIKYAA1\",\"display_url\":\"wa.me\\/message\\/J5HV75\\u2026\",\"indices\":[99,122]}]}},\"protected\":false,\"followers_count\":182,\"friends_count\":2636,\"listed_count\":2,\"created_at\":\"Fri May 23 08:56:33 +0000 2014\",\"favourites_count\":5745,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2656,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1244777096343441420\\/6sN6fxB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1244777096343441420\\/6sN6fxB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2560001369\\/1616350055\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3500\":{\"id\":1551115023002619904,\"id_str\":\"1551115023002619904\",\"name\":\"Hot Story Base\",\"screen_name\":\"hotstorybase\",\"location\":\"United States\",\"description\":\"Trends and Stories | Sales of Quality Products | Lover of Greatness.\",\"url\":\"https:\\/\\/t.co\\/WQWQgWNGIr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WQWQgWNGIr\",\"expanded_url\":\"https:\\/\\/bit.ly\\/mcabojo\",\"display_url\":\"bit.ly\\/mcabojo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Sun Jul 24 08:00:31 +0000 2022\",\"favourites_count\":174,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":111,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554377451786092549\\/5sYx7iKT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554377451786092549\\/5sYx7iKT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551115023002619904\\/1659594814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3501\":{\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"name\":\"William Iwu\",\"screen_name\":\"betsmasterspro\",\"location\":\"Jos, Nigeria\",\"description\":\"Welcome To Betsmasterpro matches,We Offer \\ud83d\\udcaf Fixed Matches All Correct Scores,If You're Interested Call \\ud83d\\udcdeOr WhatsApp Us On \\ud83d\\udcf2+2349095386137.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1085,\"friends_count\":37,\"listed_count\":1,\"created_at\":\"Wed Nov 25 02:59:59 +0000 2020\",\"favourites_count\":1247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1931,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331432336127381504\\/1629374439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3502\":{\"id\":507673231,\"id_str\":\"507673231\",\"name\":\"BingelBeeba\",\"screen_name\":\"alitamnya\",\"location\":\"Nigeria\",\"description\":\"Marketing||E-marketing||RoadTravelEnthusiast||Liverpoolfc||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1493,\"friends_count\":1557,\"listed_count\":1,\"created_at\":\"Tue Feb 28 17:36:39 +0000 2012\",\"favourites_count\":15526,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":999,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1346739906949902338\\/NqGpQsiH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1346739906949902338\\/NqGpQsiH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3503\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3504\":{\"id\":386560001,\"id_str\":\"386560001\",\"name\":\"PRINCE MUSTAPHA HASSAN OBAJE\",\"screen_name\":\"m_hasObaje\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142,\"friends_count\":249,\"listed_count\":0,\"created_at\":\"Fri Oct 07 14:01:55 +0000 2011\",\"favourites_count\":2080,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2421,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487104415114928130\\/fHVnPt78_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487104415114928130\\/fHVnPt78_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/386560001\\/1583138080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3505\":{\"id\":161855898,\"id_str\":\"161855898\",\"name\":\"Victor Zubarev\",\"screen_name\":\"VictorZubarev\",\"location\":\"FEMA Region V\",\"description\":\"Market Technical Analyst, Trading Systems Developer, Equities, Indexes Futures, FOREX, Cryptos 4LP Earth Ox LEO born on 28th #GG33Capo GANN & MARKET DIRECTOR\",\"url\":\"https:\\/\\/t.co\\/SdxaTGMIyi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SdxaTGMIyi\",\"expanded_url\":\"https:\\/\\/parsfortunacapitalllc.com\\/\",\"display_url\":\"parsfortunacapitalllc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9464,\"friends_count\":1237,\"listed_count\":271,\"created_at\":\"Thu Jul 01 23:49:44 +0000 2010\",\"favourites_count\":16321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48680,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1373806537328693249\\/HSQsPkdY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1373806537328693249\\/HSQsPkdY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/161855898\\/1438273146\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3506\":{\"id\":1452073829245853697,\"id_str\":\"1452073829245853697\",\"name\":\"J. C. Iro\",\"screen_name\":\"_KingTekno\",\"location\":\"Nigeria\",\"description\":\"CEO Tekkxe (Quiz Master & English Language Examiner)\",\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"expanded_url\":\"https:\\/\\/thepeoplesparrot.blogspot.com\\/?m=1\",\"display_url\":\"thepeoplesparrot.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Sun Oct 24 00:46:11 +0000 2021\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":500,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1452073829245853697\\/1642094272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3507\":{\"id\":383715114,\"id_str\":\"383715114\",\"name\":\"Adamazi Mbonu Onyi Jennifer\",\"screen_name\":\"adamazi_mbonu\",\"location\":\"Nigeria\",\"description\":\"Soil Scientist| Critical Thinker| Blogger| SDGs Advocate| Volunteer| Writer| Environmentalist\",\"url\":\"https:\\/\\/t.co\\/2AZPijWtd0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2AZPijWtd0\",\"expanded_url\":\"http:\\/\\/www.adamazi.com\",\"display_url\":\"adamazi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":894,\"friends_count\":2887,\"listed_count\":6,\"created_at\":\"Sun Oct 02 11:26:05 +0000 2011\",\"favourites_count\":773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1448657377557811204\\/VwgzQ5W1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1448657377557811204\\/VwgzQ5W1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/383715114\\/1570307953\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3508\":{\"id\":1547721134811951104,\"id_str\":\"1547721134811951104\",\"name\":\"Desportspastor Elchijo\",\"screen_name\":\"desportspastor\",\"location\":\"Nigeria\",\"description\":\"Sports|Politics|#Obidientl|Ronaldo \\u2764\\ufe0f|OAP|Musician|Manchester united \\u2764\\ufe0f|... I love gaming too.\",\"url\":\"https:\\/\\/t.co\\/Ah9BT5CWbq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ah9BT5CWbq\",\"expanded_url\":\"http:\\/\\/anchor.fm\\/elchijo\",\"display_url\":\"anchor.fm\\/elchijo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":125,\"listed_count\":0,\"created_at\":\"Thu Jul 14 23:14:32 +0000 2022\",\"favourites_count\":367,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":304,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550999218701172737\\/DM6OsjhY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550999218701172737\\/DM6OsjhY_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3509\":{\"id\":1176767014557376512,\"id_str\":\"1176767014557376512\",\"name\":\"jai toons \\ud83d\\udc2c\",\"screen_name\":\"Fatjaicaleb\",\"location\":\"Jos, Nigeria\",\"description\":\"kingdom ambassador,christian \\u271d\\ufe0f, singer\\/song writer \\ud83c\\udfa7, Author \\ud83d\\udcd6 , Botanist\\ud83c\\udf31 animation maker, blogger\",\"url\":\"https:\\/\\/t.co\\/jjdYynnF1Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jjdYynnF1Y\",\"expanded_url\":\"https:\\/\\/truesuccessavenue.blogspot.com\\/?m=1\",\"display_url\":\"truesuccessavenue.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1235,\"friends_count\":1934,\"listed_count\":1,\"created_at\":\"Wed Sep 25 07:55:11 +0000 2019\",\"favourites_count\":296,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":355,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555330604077572096\\/kSriOoSp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555330604077572096\\/kSriOoSp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1176767014557376512\\/1656108683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3510\":{\"id\":865543393010524160,\"id_str\":\"865543393010524160\",\"name\":\"Omalexzy\",\"screen_name\":\"EphraimOmale\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Rapper | Songwriter | Blogger | policy maker | preacher\\n +2347016373543\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Fri May 19 12:23:20 +0000 2017\",\"favourites_count\":253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524900487774064655\\/TdTMg4Pp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524900487774064655\\/TdTMg4Pp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865543393010524160\\/1652399582\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3511\":{\"id\":1214139164930654208,\"id_str\":\"1214139164930654208\",\"name\":\"Agbor Nnachi Joseph\",\"screen_name\":\"AgborNnachi\",\"location\":\"Nigeria\",\"description\":\"Entrepreneur | Digital Infopreneur || Last Angel. \\n\\nHere for Business and Fun!\\n #The_peoples_choix #choix \\ud83d\\udc97\",\"url\":\"https:\\/\\/t.co\\/KeIprXkV9z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KeIprXkV9z\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100073287031901\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1573,\"friends_count\":2896,\"listed_count\":0,\"created_at\":\"Mon Jan 06 10:58:47 +0000 2020\",\"favourites_count\":1777,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550759036211154944\\/mFVgxDxu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550759036211154944\\/mFVgxDxu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1214139164930654208\\/1659318178\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3512\":{\"id\":1489088863171661827,\"id_str\":\"1489088863171661827\",\"name\":\"Renergy boy\",\"screen_name\":\"DonaldTomax\",\"location\":\"Nigeria\",\"description\":\"I Rap, Sing, Trap and I love music\",\"url\":\"https:\\/\\/t.co\\/ks4isZlT2y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ks4isZlT2y\",\"expanded_url\":\"https:\\/\\/youtu.be\\/pmLZmWTEeMI\",\"display_url\":\"youtu.be\\/pmLZmWTEeMI\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":127,\"friends_count\":297,\"listed_count\":1,\"created_at\":\"Thu Feb 03 04:10:54 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":133,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496615714337218577\\/21Jzl643_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496615714337218577\\/21Jzl643_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3513\":{\"id\":142667122,\"id_str\":\"142667122\",\"name\":\"Manspirit | Engines of Fury \\ud83c\\udfae\",\"screen_name\":\"despirit1\",\"location\":\"Nigeria\",\"description\":\"Brand Ambassador @EnginesOfFury | Community Manager: @meland_ai |\\n\\nJoin Engine of Fury Discord for First hand info: https:\\/\\/t.co\\/XxBvb6Innx\\n\\n\\ud83e\\ude99 $FURY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XxBvb6Innx\",\"expanded_url\":\"http:\\/\\/discord.gg\\/CAHxvtgKjg\",\"display_url\":\"discord.gg\\/CAHxvtgKjg\",\"indices\":[116,139]}]}},\"protected\":false,\"followers_count\":359,\"friends_count\":1060,\"listed_count\":7,\"created_at\":\"Tue May 11 12:46:57 +0000 2010\",\"favourites_count\":1391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2608,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544398171622805507\\/wAPtQFJV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544398171622805507\\/wAPtQFJV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/142667122\\/1659288807\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3514\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3515\":{\"id\":1481543990143029252,\"id_str\":\"1481543990143029252\",\"name\":\"Managarciya\",\"screen_name\":\"ManagarciyaT\",\"location\":\"Nigeria\",\"description\":\"A news Magazine to appreciate and compliment the role of women in the society and encourage their participation in the socioeconomic development.\",\"url\":\"https:\\/\\/t.co\\/i2vpAAPMG3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i2vpAAPMG3\",\"expanded_url\":\"https:\\/\\/managarciya.com\\/\",\"display_url\":\"managarciya.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":49,\"listed_count\":1,\"created_at\":\"Thu Jan 13 08:33:08 +0000 2022\",\"favourites_count\":180,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481544831528747009\\/TBPooyWF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481544831528747009\\/TBPooyWF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481543990143029252\\/1642067274\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3516\":{\"id\":1547297863759273985,\"id_str\":\"1547297863759273985\",\"name\":\"memetopia\",\"screen_name\":\"memetopiaz\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\ude04\\ud83d\\ude04\\ud83d\\ude04 \\ud83d\\udca5 Follow me for funny memes daily \\ud83d\\udca5\\ud83d\\ude04\\ud83d\\ude04\\ud83d\\ude04 \\n- @memetopiaz\\n- #Memes\\n- #memetopiaz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Wed Jul 13 19:12:29 +0000 2022\",\"favourites_count\":228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547317967943245824\\/t5OhpAis_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547317967943245824\\/t5OhpAis_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547297863759273985\\/1657912736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3517\":{\"id\":1484147137650823171,\"id_str\":\"1484147137650823171\",\"name\":\"ChainDustry\",\"screen_name\":\"ChainDustry\",\"location\":\"Nigeria\",\"description\":\"Chaindustry is a DoToEarn network offering value & digital services to its users and partners | https:\\/\\/t.co\\/jVJRj5MYtl\\n#CD2E\",\"url\":\"https:\\/\\/t.co\\/aA54wBUD0m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aA54wBUD0m\",\"expanded_url\":\"http:\\/\\/chaindustry.io\",\"display_url\":\"chaindustry.io\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jVJRj5MYtl\",\"expanded_url\":\"http:\\/\\/linktree.com\\/chaindustry\",\"display_url\":\"linktree.com\\/chaindustry\",\"indices\":[96,119]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":216,\"listed_count\":41,\"created_at\":\"Thu Jan 20 12:54:19 +0000 2022\",\"favourites_count\":3907,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":254,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536383563750420481\\/bERG4Tyn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536383563750420481\\/bERG4Tyn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484147137650823171\\/1655385613\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3518\":{\"id\":438417593,\"id_str\":\"438417593\",\"name\":\"billionaire of the year\",\"screen_name\":\"s_ifame\",\"location\":\"Nigeria\",\"description\":\"*S.I aka B.O.Y* inspire to create something beneficial...\\nfor booking call 08109909525, 07055083029 or email @ 6fiveempirebillonaireoftheyear@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Dec 16 15:25:18 +0000 2011\",\"favourites_count\":399,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/780960139780222976\\/H5kFZS0X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/780960139780222976\\/H5kFZS0X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/438417593\\/1659600209\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3519\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3520\":{\"id\":540042016,\"id_str\":\"540042016\",\"name\":\"Tochukwu Daniel\",\"screen_name\":\"dannychuks24\",\"location\":\"Abuja\",\"description\":\"I'm a BUSINESS MAN... Any legit business, a digital marketer, business development manager... I sell... God bless me & my friends.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":655,\"friends_count\":935,\"listed_count\":1,\"created_at\":\"Thu Mar 29 14:59:47 +0000 2012\",\"favourites_count\":7764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1161540780118487040\\/nyvnatuN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1161540780118487040\\/nyvnatuN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/540042016\\/1654763243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3521\":{\"id\":1209917689919164416,\"id_str\":\"1209917689919164416\",\"name\":\"Phenomenal\",\"screen_name\":\"UdodirimUche\",\"location\":\"Nigeria\",\"description\":\"Small boy with a very Big God\\ud83c\\udfcb\\ufe0f\\u200d\\u2640\\ufe0f\\nNFT and crypto enthusiast\\nAvid novel Reader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":116,\"friends_count\":768,\"listed_count\":2,\"created_at\":\"Wed Dec 25 19:24:17 +0000 2019\",\"favourites_count\":2638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1209917689919164416\\/1649449035\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3522\":{\"id\":980743376579497984,\"id_str\":\"980743376579497984\",\"name\":\"Hinchy\",\"screen_name\":\"Giifthinchy\",\"location\":\"Nigeria\",\"description\":\"Music,entertainment\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":362,\"listed_count\":0,\"created_at\":\"Mon Apr 02 09:46:57 +0000 2018\",\"favourites_count\":1373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":532,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531553542623924228\\/LxfFUgQH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531553542623924228\\/LxfFUgQH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/980743376579497984\\/1525472626\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3523\":{\"id\":1501750832399892483,\"id_str\":\"1501750832399892483\",\"name\":\"azeezat_ ari.yike\",\"screen_name\":\"riyike001\",\"location\":\"Nigeria\",\"description\":\"||Striving Muslimah\\ud83e\\uddd5 ||Writer\\n||Arike ||Graphic designer sometimes \\n||Arabic\\ud83e\\udd0c\\u2764\\u2764\\n|| Jannah!\\ud83e\\udd32\\ud83e\\udd7a\",\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"expanded_url\":\"https:\\/\\/zeewrites17.blogspot.com\",\"display_url\":\"zeewrites17.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":93,\"listed_count\":0,\"created_at\":\"Thu Mar 10 02:44:50 +0000 2022\",\"favourites_count\":3135,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1414,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501750832399892483\\/1646880676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3524\":{\"id\":1339659346175799296,\"id_str\":\"1339659346175799296\",\"name\":\"leema\\u2019s glamour\",\"screen_name\":\"haleemamusah\",\"location\":\"Abuja, Nigeria\",\"description\":\"muslimah\\ud83e\\uddd5\\ud83c\\udffc. mommy\\u2019s girl \\ud83e\\udd70. introvert\\ud83c\\udf1a. #newaccount #makeup artist #juvia\\u2019s place\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":250,\"friends_count\":243,\"listed_count\":0,\"created_at\":\"Thu Dec 17 19:52:03 +0000 2020\",\"favourites_count\":5223,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":944,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522492466133360640\\/9zyVD54D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522492466133360640\\/9zyVD54D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1339659346175799296\\/1649715584\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3525\":{\"id\":1493128746890678278,\"id_str\":\"1493128746890678278\",\"name\":\"Adennn Consulting\",\"screen_name\":\"AdennnConsult\",\"location\":\"Abuja, Nigeria\",\"description\":\"BRAND STRATEGY || BRAND IDENTITY\\nTake you by the hand to create compelling strategies & designs for your business to thrive.\\nWe Believe In Your Name\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Mon Feb 14 07:44:00 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533073719555497984\\/se_-vuTm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533073719555497984\\/se_-vuTm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493128746890678278\\/1654348234\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3526\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3527\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3528\":{\"id\":1482286953806630912,\"id_str\":\"1482286953806630912\",\"name\":\"Hon Gaya\",\"screen_name\":\"MrGaya23\",\"location\":\"Nigeria\",\"description\":\"The legacy builder's, peace builder and Compassionate\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":577,\"listed_count\":0,\"created_at\":\"Sat Jan 15 09:42:31 +0000 2022\",\"favourites_count\":2693,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482286953806630912\\/1653148630\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3529\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3530\":{\"id\":56588882,\"id_str\":\"56588882\",\"name\":\"GaGirl714\",\"screen_name\":\"Zoeys_Mom74\",\"location\":\" Ga\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":421,\"friends_count\":1302,\"listed_count\":5,\"created_at\":\"Tue Jul 14 03:14:04 +0000 2009\",\"favourites_count\":20068,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7765,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536228623505666048\\/ENyyzJ-Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536228623505666048\\/ENyyzJ-Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/56588882\\/1655100550\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3531\":{\"id\":1653994592,\"id_str\":\"1653994592\",\"name\":\"Olaadura Olayinka Michael\",\"screen_name\":\"olaadura4christ\",\"location\":\"Oyo, Nigeria\",\"description\":\"A CHRISTIAN,A PROPHETIC EVANGELIST GOSPEL ARTIST, RELATIONSHIP COACH\\/COUNSELOR, A POLITICIAN.\\nThe chief officer at DIVINE NEWS MEDIA.\",\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SYkgxjhA5o\",\"expanded_url\":\"http:\\/\\/mixlr.com\\/divine-news-media\",\"display_url\":\"mixlr.com\\/divine-news-me\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":102,\"listed_count\":0,\"created_at\":\"Wed Aug 07 22:15:50 +0000 2013\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":143,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509255825461817349\\/LaRMT4AX_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3532\":{\"id\":1495459523452092421,\"id_str\":\"1495459523452092421\",\"name\":\"Kachi_Nation\",\"screen_name\":\"SimplestKachi\",\"location\":\"Fct Abuja\",\"description\":\"Affiliate to @SAMHAVARD.\\nDigital marketer \\nEntrepreneur \\nbusiness consultant.\",\"url\":\"https:\\/\\/t.co\\/7tocuL9Skm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7tocuL9Skm\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/8b2ukxas\",\"display_url\":\"tinyurl.com\\/8b2ukxas\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":19,\"listed_count\":0,\"created_at\":\"Sun Feb 20 18:05:39 +0000 2022\",\"favourites_count\":365,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":466,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548797988742615041\\/VG8v8YXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548797988742615041\\/VG8v8YXL_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3533\":{\"id\":1273666362364309504,\"id_str\":\"1273666362364309504\",\"name\":\"HushCloud\",\"screen_name\":\"etiene_umoren\",\"location\":\"Nigeria\",\"description\":\"Blockchain & cryptocurrency enthusiast, Technical writer || \\ud83d\\udccaproject promoter \\ud83d\\ude80|| A Brand Ambassador |https:\\/\\/t.co\\/7RHd4gZR2k\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7RHd4gZR2k\",\"expanded_url\":\"http:\\/\\/linktr.ee\\/umoren_etiene\",\"display_url\":\"linktr.ee\\/umoren_etiene\",\"indices\":[102,125]}]}},\"protected\":false,\"followers_count\":2904,\"friends_count\":1331,\"listed_count\":4,\"created_at\":\"Thu Jun 18 17:18:48 +0000 2020\",\"favourites_count\":14142,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317595962815164416\\/Cmv2c4sC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317595962815164416\\/Cmv2c4sC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1273666362364309504\\/1592556239\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3534\":{\"id\":537988948,\"id_str\":\"537988948\",\"name\":\"Afamefuna Cleopatra\",\"screen_name\":\"AfamefunaCleopa\",\"location\":\"NIGERIA\",\"description\":\"Kind hearted\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Tue Mar 27 08:42:31 +0000 2012\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/876395703022563328\\/7BvQwOfo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/876395703022563328\\/7BvQwOfo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3535\":{\"id\":1552435559649492992,\"id_str\":\"1552435559649492992\",\"name\":\"WWS \\ud83d\\udecd\",\"screen_name\":\"wildwestshoppin\",\"location\":\"Minna, Nigeria\",\"description\":\"Shoes \\u2022 Sandals \\u2022 Caps \\u2022 Watches etc. || Minna\\ud83d\\udccc || WhatsApp: 08104504438 || Nationwide deliveries \\ud83d\\udce6\\ud83d\\udecd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Wed Jul 27 23:27:47 +0000 2022\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":75,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552436828732547072\\/yMCP46Kp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552436828732547072\\/yMCP46Kp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3536\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3537\":{\"id\":1547519450739613697,\"id_str\":\"1547519450739613697\",\"name\":\"Majik Hub (Former account got blocked)\",\"screen_name\":\"_majikhub\",\"location\":\"Nigeria\",\"description\":\"We are here for you!!\\nCreative Designs | Content Writing | SM Management | Marketing and lot more\\n\\ud83d\\udcf108026897790\\n\\ud83d\\udce7majikhub@gmail.com\\n\\ud83d\\udce9or Send a DM\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Thu Jul 14 09:52:58 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549743444314177536\\/oLb5tr_b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549743444314177536\\/oLb5tr_b_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3538\":{\"id\":898432343093919744,\"id_str\":\"898432343093919744\",\"name\":\"B Madonna\",\"screen_name\":\"officialbmadona\",\"location\":\"Abuja, Nigeria\",\"description\":\"-Dental Hygienist\\/Public Health Specialist\\n-Model\\n-Techsters \\ud83c\\udf1f\",\"url\":\"https:\\/\\/t.co\\/RThit3aMl2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RThit3aMl2\",\"expanded_url\":\"https:\\/\\/discord.gg\\/mZbUx4ygRN\",\"display_url\":\"discord.gg\\/mZbUx4ygRN\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":117,\"listed_count\":0,\"created_at\":\"Fri Aug 18 06:32:17 +0000 2017\",\"favourites_count\":255,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":177,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1382611710712938497\\/qFRPN6Sg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1382611710712938497\\/qFRPN6Sg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/898432343093919744\\/1655069805\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3539\":{\"id\":743814793941913600,\"id_str\":\"743814793941913600\",\"name\":\"Royal Oak Inc\",\"screen_name\":\"RoyalOakInc\",\"location\":\"BK\",\"description\":\"#VentureCap \\nTechnical, Sentiment, Fundamental \\n#CRYPTO - #P2E #Metaverse #GAMING \\n#BTC #ETH - #Stocks - #Economy \\nNot FA DYOR\",\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AFwfWrwzG1\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCmJkSVdn6f7-iHhT4bGAPbA\",\"display_url\":\"youtube.com\\/channel\\/UCmJkS\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":831,\"friends_count\":468,\"listed_count\":23,\"created_at\":\"Fri Jun 17 14:37:21 +0000 2016\",\"favourites_count\":4388,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482718797601648648\\/gR89lvsN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743814793941913600\\/1659493718\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3540\":{\"id\":893321941,\"id_str\":\"893321941\",\"name\":\"\\ud835\\udcd0\\ud835\\udcf1\\ud835\\udcfc\\ud835\\udcea\\ud835\\udcf7 \\ud835\\udcdd\\ud835\\udcea\\ud835\\udcfa\\ud835\\udcff\\ud835\\udcf2\",\"screen_name\":\"ahsaan444\",\"location\":\"\\ud835\\udc7c\\ud835\\udc68\\ud835\\udc6c\",\"description\":\"\\ud835\\udc7b\\ud835\\udc89\\ud835\\udc8a\\ud835\\udc8f\\ud835\\udc88\\ud835\\udc94 \\ud835\\udc98\\ud835\\udc8a\\ud835\\udc8d\\ud835\\udc8d \\ud835\\udc83\\ud835\\udc86 \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93 \\ud835\\udc8a\\ud835\\udc87 \\ud835\\udc96 \\ud835\\udc98\\ud835\\udc82\\ud835\\udc8f\\ud835\\udc95 \\ud835\\udc95\\ud835\\udc90 \\ud835\\udc8e\\ud835\\udc82\\ud835\\udc8c\\ud835\\udc86 \\ud835\\udc95\\ud835\\udc89\\ud835\\udc86\\ud835\\udc8e \\ud835\\udc83\\ud835\\udc86\\ud835\\udc95\\ud835\\udc95\\ud835\\udc86\\ud835\\udc93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":1581,\"listed_count\":0,\"created_at\":\"Sat Oct 20 14:06:24 +0000 2012\",\"favourites_count\":425,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537298272825528320\\/oUqX5566_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/893321941\\/1653047288\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3541\":{\"id\":889548207121989632,\"id_str\":\"889548207121989632\",\"name\":\"Tizzie\",\"screen_name\":\"tizzieofficial\",\"location\":\"\",\"description\":\"Rep BIGWIZ and Messi \\u2665\\ufe0f\\ud83e\\udd85\\ud83d\\udda4. A Professional Barber. Unilorite. Lover of Music and football. YouTubehttps:\\/\\/youtube.com\\/channel\\/UCyfA3o-KcOmsCXxxKIPLP1AU1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":1124,\"listed_count\":0,\"created_at\":\"Mon Jul 24 18:09:54 +0000 2017\",\"favourites_count\":97643,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":939,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889548207121989632\\/1651779013\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3542\":{\"id\":1461233220285046786,\"id_str\":\"1461233220285046786\",\"name\":\"Agro Market Square\",\"screen_name\":\"agromarketsquar\",\"location\":\"Nigeria\",\"description\":\"#Agro Market Square is a B2B platform that connects #smallholder farmers directly with value chain actors in an open and transparent #marketplace.\",\"url\":\"https:\\/\\/t.co\\/2BCadqJxsN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2BCadqJxsN\",\"expanded_url\":\"http:\\/\\/agromarketsquare.com\",\"display_url\":\"agromarketsquare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":37,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Thu Nov 18 07:24:32 +0000 2021\",\"favourites_count\":604,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":77,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504694896145354753\\/7jKR9mLG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504694896145354753\\/7jKR9mLG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461233220285046786\\/1647582604\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3543\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3544\":{\"id\":2863464223,\"id_str\":\"2863464223\",\"name\":\"Join The Jihad\",\"screen_name\":\"SeekingJustPath\",\"location\":\"Freetown, Sierra Leone\",\"description\":\"#godAI #MagickMatrix #GogMagog #JoinTheJihad\\n#Evolution #CERN #TimeReversal #AIDrivenEvolution #Islam \\n\\nhttps:\\/\\/t.co\\/4FYDjLSfEl\",\"url\":\"https:\\/\\/t.co\\/xpYIm2yX2q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xpYIm2yX2q\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC1Lq3YChUb0eUT9IE1xPVCQ\",\"display_url\":\"youtube.com\\/channel\\/UC1Lq3\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4FYDjLSfEl\",\"expanded_url\":\"https:\\/\\/www.brighteon.com\\/channels\\/sonofadam\",\"display_url\":\"brighteon.com\\/channels\\/sonof\\u2026\",\"indices\":[104,127]}]}},\"protected\":false,\"followers_count\":832,\"friends_count\":899,\"listed_count\":15,\"created_at\":\"Sat Oct 18 20:33:37 +0000 2014\",\"favourites_count\":6844,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1427034759574822913\\/ySldCeFn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1427034759574822913\\/ySldCeFn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2863464223\\/1629066625\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3545\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3546\":{\"id\":969385391857037313,\"id_str\":\"969385391857037313\",\"name\":\"Johnson Le Artiste \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"JohnsonLeArtist\",\"location\":\"Nigeria\",\"description\":\"A student Electrical Electronics Engineer, a visual Artist, singer and a professional listener.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":249,\"friends_count\":670,\"listed_count\":0,\"created_at\":\"Fri Mar 02 01:34:22 +0000 2018\",\"favourites_count\":1854,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/969385391857037313\\/1603226397\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3547\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3548\":{\"id\":1545827893045084163,\"id_str\":\"1545827893045084163\",\"name\":\"Modella\",\"screen_name\":\"modellabbn\",\"location\":\"Nigeria\",\"description\":\"The 26th #BBNaija\\u00a0 Level Up Housemate, modella #modellabbn\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Sat Jul 09 17:51:45 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554277648330801156\\/HuTUBvXz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554277648330801156\\/HuTUBvXz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1545827893045084163\\/1659294780\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3549\":{\"id\":1317098131742445571,\"id_str\":\"1317098131742445571\",\"name\":\"KING\\ud83e\\udd34\\ud83e\\udd34\\ud83e\\udd34 David\",\"screen_name\":\"olonite_s\",\"location\":\"Nigeria\",\"description\":\"Right Writer| Rare Realist| Ironic\\nPhilosopher,Intellectual Fighter,mounter,Skilled Poet,Nigerian Scientist,Born orator,\\nCreative Essayist,Pen soldier\",\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/olonite_s\\/\",\"display_url\":\"instagram.com\\/olonite_s\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":786,\"friends_count\":834,\"listed_count\":0,\"created_at\":\"Fri Oct 16 13:41:03 +0000 2020\",\"favourites_count\":1427,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":990,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317098131742445571\\/1618848804\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3550\":{\"id\":1317098131742445571,\"id_str\":\"1317098131742445571\",\"name\":\"KING\\ud83e\\udd34\\ud83e\\udd34\\ud83e\\udd34 David\",\"screen_name\":\"olonite_s\",\"location\":\"Nigeria\",\"description\":\"Right Writer| Rare Realist| Ironic\\nPhilosopher,Intellectual Fighter,mounter,Skilled Poet,Nigerian Scientist,Born orator,\\nCreative Essayist,Pen soldier\",\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GCO68nSQkO\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/olonite_s\\/\",\"display_url\":\"instagram.com\\/olonite_s\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":786,\"friends_count\":834,\"listed_count\":0,\"created_at\":\"Fri Oct 16 13:41:03 +0000 2020\",\"favourites_count\":1427,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":990,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1359496186424623105\\/-6bSfPcB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317098131742445571\\/1618848804\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3551\":{\"id\":1454461398885486595,\"id_str\":\"1454461398885486595\",\"name\":\"Prime Business Africa\",\"screen_name\":\"PB_Africa\",\"location\":\"Nigeria\",\"description\":\"Africa's leading multimedia platform for Business Intelligence, Policy & market-moving news\",\"url\":\"https:\\/\\/t.co\\/N5cTJTom9E\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N5cTJTom9E\",\"expanded_url\":\"http:\\/\\/www.primebusiness.africa\",\"display_url\":\"primebusiness.africa\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":76,\"listed_count\":1,\"created_at\":\"Sat Oct 30 14:54:27 +0000 2021\",\"favourites_count\":4661,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1454466653924777984\\/PNSamHEN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1454466653924777984\\/PNSamHEN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1454461398885486595\\/1638279417\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3552\":{\"id\":815446476,\"id_str\":\"815446476\",\"name\":\"Akewusolaf Blog\",\"screen_name\":\"AkewusolafBNG\",\"location\":\"Nigeria\",\"description\":\"Your #1 Go-to for News| Politics |Sport| Entertainment| Gist| Fashion| Lifestyles| Quotes| Current Affairs| For stories & advert Enq: akewusolafblog@gmail.com\",\"url\":\"https:\\/\\/t.co\\/bW808XZle7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bW808XZle7\",\"expanded_url\":\"http:\\/\\/akewusolafblog.com\",\"display_url\":\"akewusolafblog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1736,\"friends_count\":2270,\"listed_count\":1,\"created_at\":\"Mon Sep 10 15:29:32 +0000 2012\",\"favourites_count\":26708,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7192,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546643626381434880\\/QunRBM8q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546643626381434880\\/QunRBM8q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3553\":{\"id\":2254997783,\"id_str\":\"2254997783\",\"name\":\"Chris Omokhoa\",\"screen_name\":\"OmokhoaChris\",\"location\":\"Nigeria\",\"description\":\"Writer,Transcedentalist and Consultant\",\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"expanded_url\":\"https:\\/\\/www.chrisomokhoablog.com\",\"display_url\":\"chrisomokhoablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":36,\"listed_count\":1,\"created_at\":\"Tue Dec 31 20:09:24 +0000 2013\",\"favourites_count\":14995,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5329,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3554\":{\"id\":194107618,\"id_str\":\"194107618\",\"name\":\"ICED OUT! \\ud83d\\udca1\",\"screen_name\":\"RAPLORD4EVA\",\"location\":\"Abuja\",\"description\":\"Artiste | Graphic designer | Sound engineer | Film maker | +2349052390760 | rdsgraphixng@gmail.com STREAM ICED OUT https:\\/\\/t.co\\/bdgrlxJdU2\",\"url\":\"https:\\/\\/t.co\\/bdgrlxJdU2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bdgrlxJdU2\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/RAPLORD\",\"display_url\":\"fanlink.to\\/RAPLORD\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bdgrlxJdU2\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/RAPLORD\",\"display_url\":\"fanlink.to\\/RAPLORD\",\"indices\":[116,139]}]}},\"protected\":false,\"followers_count\":1064,\"friends_count\":1059,\"listed_count\":10,\"created_at\":\"Thu Sep 23 13:07:18 +0000 2010\",\"favourites_count\":1677,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491674421039443971\\/CnMi3JOs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491674421039443971\\/CnMi3JOs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/194107618\\/1387459816\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3555\":{\"id\":2254997783,\"id_str\":\"2254997783\",\"name\":\"Chris Omokhoa\",\"screen_name\":\"OmokhoaChris\",\"location\":\"Nigeria\",\"description\":\"Writer,Transcedentalist and Consultant\",\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hXy82fGFRC\",\"expanded_url\":\"https:\\/\\/www.chrisomokhoablog.com\",\"display_url\":\"chrisomokhoablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":36,\"listed_count\":1,\"created_at\":\"Tue Dec 31 20:09:24 +0000 2013\",\"favourites_count\":14995,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5329,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/930418821629992960\\/WaZDkhwz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3556\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3557\":{\"id\":1204328421712637952,\"id_str\":\"1204328421712637952\",\"name\":\"Keemsings\\ud83c\\udfa4\",\"screen_name\":\"keemt_official\",\"location\":\"Abuja, Nigeria\",\"description\":\"Musician\\nAna out now \\ud83c\\udf0d link below \\ud83d\\udc47\\ud83c\\udffd\",\"url\":\"https:\\/\\/t.co\\/7rySo5zeQu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7rySo5zeQu\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/Keem_t-Ana\",\"display_url\":\"fanlink.to\\/Keem_t-Ana\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Tue Dec 10 09:14:44 +0000 2019\",\"favourites_count\":1780,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":355,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498922633412464642\\/sl7Guw-p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498922633412464642\\/sl7Guw-p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1204328421712637952\\/1639591789\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3558\":{\"id\":1538092613932400640,\"id_str\":\"1538092613932400640\",\"name\":\"Hezekiah Adebayo\",\"screen_name\":\"Hezix_1\",\"location\":\"Abuja, Nigeria\",\"description\":\"https:\\/\\/t.co\\/1yvfSeVcbG\",\"url\":\"https:\\/\\/t.co\\/l462c3sxo0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l462c3sxo0\",\"expanded_url\":\"http:\\/\\/www.flyhezix.weebly.com\",\"display_url\":\"flyhezix.weebly.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1yvfSeVcbG\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/hezix\",\"display_url\":\"linktr.ee\\/hezix\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":29,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Sat Jun 18 09:34:00 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540303459571867648\\/HzgjDm4z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540303459571867648\\/HzgjDm4z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538092613932400640\\/1655896666\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3559\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3560\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3561\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3562\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3563\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3564\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3565\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3566\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3567\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3568\":{\"id\":391639048,\"id_str\":\"391639048\",\"name\":\"Swavey_Kollection\",\"screen_name\":\"swaveykollectn\",\"location\":\"Nigeria\",\"description\":\"A Place Where Fashion Meets\\n\\u25aaWe make quality designs \\n\\u25aaNationwide Delivery \\ud83c\\udf0e\\n\\u25aaDM\",\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tMmijiGsnh\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/swavey_kollection?r=nametag\",\"display_url\":\"instagram.com\\/swavey_kollect\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":363,\"friends_count\":981,\"listed_count\":5,\"created_at\":\"Sat Oct 15 21:46:55 +0000 2011\",\"favourites_count\":1527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2957,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553667346643943424\\/NpWKN2Vl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/391639048\\/1632568478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3569\":{\"id\":190080294,\"id_str\":\"190080294\",\"name\":\"Oche Jessica\",\"screen_name\":\"ocheene\",\"location\":\"Nigeria\",\"description\":\"Blogger, Beard Care distributor, Sells anything sellable, longrich products distributor, business woman, Lover of God.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":671,\"friends_count\":231,\"listed_count\":1,\"created_at\":\"Mon Sep 13 01:08:13 +0000 2010\",\"favourites_count\":11455,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554092268382044168\\/4Tankjl3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554092268382044168\\/4Tankjl3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/190080294\\/1566829023\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3570\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3571\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3572\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3573\":{\"id\":4135390517,\"id_str\":\"4135390517\",\"name\":\"wokeyim\",\"screen_name\":\"wokeyimm\",\"location\":\"Nigeria\",\"description\":\"Founder @Getskilledafriq |Teens Activist| serial entrepreneur\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":149,\"friends_count\":116,\"listed_count\":0,\"created_at\":\"Sat Nov 07 16:27:16 +0000 2015\",\"favourites_count\":134,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":79,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552751305172598784\\/oUXDxZAV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552751305172598784\\/oUXDxZAV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4135390517\\/1659039620\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3574\":{\"id\":865322296050950144,\"id_str\":\"865322296050950144\",\"name\":\"Jay Dee Akaa\",\"screen_name\":\"jay_dee_akaa\",\"location\":\"FCT Abuja, Nigeria\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"\\ud83d\\udcfbRadio Presenter\\/Producer, DJ\\/Music Promoter, Corporate MC, Red Carpet Host. \\nFor Radio Interview\\/Song Promo\\/Adverts \\ud83d\\udc4907087033250, Instagram: jay_dee_akaa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2051,\"friends_count\":1643,\"listed_count\":0,\"created_at\":\"Thu May 18 21:44:47 +0000 2017\",\"favourites_count\":63615,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865322296050950144\\/1652079426\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3575\":{\"id\":969385391857037313,\"id_str\":\"969385391857037313\",\"name\":\"Johnson Le Artiste \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"JohnsonLeArtist\",\"location\":\"Nigeria\",\"description\":\"A student Electrical Electronics Engineer, a visual Artist, singer and a professional listener.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":249,\"friends_count\":670,\"listed_count\":0,\"created_at\":\"Fri Mar 02 01:34:22 +0000 2018\",\"favourites_count\":1854,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541478065888546818\\/0KmaBsDu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/969385391857037313\\/1603226397\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3576\":{\"id\":1222289479488155649,\"id_str\":\"1222289479488155649\",\"name\":\"HOFT Developers\",\"screen_name\":\"HoftDevelopers\",\"location\":\"Nigeria\",\"description\":\"Innovation and Skillset for Everyone!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":213,\"friends_count\":143,\"listed_count\":0,\"created_at\":\"Tue Jan 28 22:45:18 +0000 2020\",\"favourites_count\":150,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":210,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1223165319369437184\\/qFp0EkaR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1223165319369437184\\/qFp0EkaR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1222289479488155649\\/1584990120\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3577\":{\"id\":147302508,\"id_str\":\"147302508\",\"name\":\"Berry\",\"screen_name\":\"Survival690\",\"location\":\"Nigeria\",\"description\":\"Retweet is not endorsement. Baby girl for life\\u2026 My Life is easy. business owner. No1 wizkid fan. No 1 Manchester United fan #mufc #Manutd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":612,\"friends_count\":4811,\"listed_count\":5,\"created_at\":\"Sun May 23 19:30:45 +0000 2010\",\"favourites_count\":695,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2436,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534228373723045888\\/XpJJ4caP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534228373723045888\\/XpJJ4caP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/147302508\\/1653298866\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3578\":{\"id\":1492227921523654656,\"id_str\":\"1492227921523654656\",\"name\":\"LEGITINFO\\ud83d\\udccc\",\"screen_name\":\"legitinfong\",\"location\":\"Nigeria\",\"description\":\"Content Developer || Blogger || PR || AnR || OBA Pikin\",\"url\":\"https:\\/\\/t.co\\/yE1GTyArAF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yE1GTyArAF\",\"expanded_url\":\"https:\\/\\/www.legitinfo.com.ng\",\"display_url\":\"legitinfo.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":116,\"listed_count\":0,\"created_at\":\"Fri Feb 11 20:04:12 +0000 2022\",\"favourites_count\":159,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504714079075721216\\/kGeahNzO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504714079075721216\\/kGeahNzO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3579\":{\"id\":1081029364194705409,\"id_str\":\"1081029364194705409\",\"name\":\"Apostolic Grace Network\",\"screen_name\":\"ApostolicGraceN\",\"location\":\"Nigeria\",\"description\":\"Apostolic Grace Network | ...take back your life\",\"url\":\"https:\\/\\/t.co\\/3O78SMCd6m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3O78SMCd6m\",\"expanded_url\":\"http:\\/\\/www.apostolicgracenetwork.org\",\"display_url\":\"apostolicgracenetwork.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":31,\"listed_count\":0,\"created_at\":\"Fri Jan 04 03:27:39 +0000 2019\",\"favourites_count\":74,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1096484280077897728\\/6DCZybLf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1096484280077897728\\/6DCZybLf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1081029364194705409\\/1550257444\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3580\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3581\":{\"id\":321950642,\"id_str\":\"321950642\",\"name\":\"Bold and Beautiful Salon\\/Spa\",\"screen_name\":\"BnBhairsalon\",\"location\":\"Abuja, Nigeria\",\"description\":\"Founded in the year 2008, Bold & Beautiful Salon is known to offer high-quality Salon & Spa Services.\",\"url\":\"https:\\/\\/t.co\\/q2p622xgwk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q2p622xgwk\",\"expanded_url\":\"http:\\/\\/www.boldandbeautifulsalon.com\",\"display_url\":\"boldandbeautifulsalon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1635,\"friends_count\":2464,\"listed_count\":4,\"created_at\":\"Wed Jun 22 11:57:42 +0000 2011\",\"favourites_count\":176,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3309,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFEFC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1240240861931360256\\/xR8LInZe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1240240861931360256\\/xR8LInZe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/321950642\\/1597953071\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3582\":{\"id\":1541830904552869888,\"id_str\":\"1541830904552869888\",\"name\":\"Blogger Burger\",\"screen_name\":\"HighlifeeNg\",\"location\":\"Nigeria\",\"description\":\"\\u272b\\ud835\\udc01\\ud835\\udc0b\\ud835\\udc0e\\ud835\\udc06\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11 \\ud835\\udc01\\ud835\\udc14\\ud835\\udc11\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\u272b \\ud835\\udc01\\ud835\\udc08\\ud835\\udc06\\ud835\\udc0d\\ud835\\udc00\\ud835\\udc0c\\ud835\\udc04\\n\\u25fc\\ufe0f\\ud835\\udc68\\ud835\\udc6b\\ud835\\udc7d\\ud835\\udc6c\\ud835\\udc79\\ud835\\udc7b \\/\\/ \\ud835\\udc77\\ud835\\udc79\\ud835\\udc76\\ud835\\udc74\\ud835\\udc76\\ud835\\udc7b\\ud835\\udc70\\ud835\\udc76\\ud835\\udc75 \\n \\nDM\\u272b On WhatsApp \\ud83d\\udc47\",\"url\":\"https:\\/\\/t.co\\/tsjzQsVz9W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tsjzQsVz9W\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348102609823\\/\",\"display_url\":\"wa.me\\/2348102609823\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":77,\"friends_count\":306,\"listed_count\":0,\"created_at\":\"Tue Jun 28 17:08:54 +0000 2022\",\"favourites_count\":228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":73,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544295858409193472\\/UcM257br_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544295858409193472\\/UcM257br_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541830904552869888\\/1657023826\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3583\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3584\":{\"id\":24548059,\"id_str\":\"24548059\",\"name\":\"Curtis Fernheiser III\",\"screen_name\":\"CurtFernheiser\",\"location\":\"The Great Pacific Northwest\",\"description\":\"\\ud83d\\udc41\\ufe0f \\u2665\\ufe0f \\ud83c\\uddfa\\ud83c\\uddf8 and \\ud83d\\udc41\\ufe0f\\u2665\\ufe0f my \\ud83c\\uddec\\ud83c\\udde7 Wife \\ud83d\\ude4fMatthew 28:20\\n Spam=Blocked\\ud83e\\udd2a\\n \\ud83c\\uddfa\\ud83c\\uddf2Patriot Party\\ud83c\\uddfa\\ud83c\\uddf8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1533,\"friends_count\":1510,\"listed_count\":2,\"created_at\":\"Sun Mar 15 16:47:27 +0000 2009\",\"favourites_count\":14346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24548059\\/1659165343\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3585\":{\"id\":24548059,\"id_str\":\"24548059\",\"name\":\"Curtis Fernheiser III\",\"screen_name\":\"CurtFernheiser\",\"location\":\"The Great Pacific Northwest\",\"description\":\"\\ud83d\\udc41\\ufe0f \\u2665\\ufe0f \\ud83c\\uddfa\\ud83c\\uddf8 and \\ud83d\\udc41\\ufe0f\\u2665\\ufe0f my \\ud83c\\uddec\\ud83c\\udde7 Wife \\ud83d\\ude4fMatthew 28:20\\n Spam=Blocked\\ud83e\\udd2a\\n \\ud83c\\uddfa\\ud83c\\uddf2Patriot Party\\ud83c\\uddfa\\ud83c\\uddf8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1533,\"friends_count\":1510,\"listed_count\":2,\"created_at\":\"Sun Mar 15 16:47:27 +0000 2009\",\"favourites_count\":14346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24548059\\/1659165343\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3586\":{\"id\":251217910,\"id_str\":\"251217910\",\"name\":\"Rizzz\",\"screen_name\":\"irean_6\",\"location\":\"UAE\",\"description\":\"Strategic Analyst, political commentator \\nPostdoctoral fellow at the London School of Economics and Political Science(LSE)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":162,\"friends_count\":130,\"listed_count\":4,\"created_at\":\"Sat Feb 12 17:48:53 +0000 2011\",\"favourites_count\":1771,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1539,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509141909880688642\\/CSLVZk9X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509141909880688642\\/CSLVZk9X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/251217910\\/1648642609\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3587\":{\"id\":1146930666178789377,\"id_str\":\"1146930666178789377\",\"name\":\"Kendox,\",\"screen_name\":\"k_endox\",\"location\":\"Abuja, Nigeria\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/DEVJvCH5Ck\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DEVJvCH5Ck\",\"expanded_url\":\"https:\\/\\/songwhip.com\\/kendox\\/jailer\",\"display_url\":\"songwhip.com\\/kendox\\/jailer\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":264,\"friends_count\":720,\"listed_count\":0,\"created_at\":\"Thu Jul 04 23:55:54 +0000 2019\",\"favourites_count\":5804,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1601,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551604163703984128\\/9CFnI1-l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551604163703984128\\/9CFnI1-l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1146930666178789377\\/1658858303\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3588\":{\"id\":1464921560,\"id_str\":\"1464921560\",\"name\":\"#NOTFORSALE\",\"screen_name\":\"11signofficial\",\"location\":\"Nigeria\",\"description\":\"songwriter, political Analyst. #afroprime #afrobeats\",\"url\":\"https:\\/\\/t.co\\/nP2P30dFLL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nP2P30dFLL\",\"expanded_url\":\"https:\\/\\/push.fm\\/fl\\/notforsale\",\"display_url\":\"push.fm\\/fl\\/notforsale\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":335,\"friends_count\":530,\"listed_count\":0,\"created_at\":\"Tue May 28 15:08:00 +0000 2013\",\"favourites_count\":15433,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2628,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544627805824208896\\/MCMXTxYE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544627805824208896\\/MCMXTxYE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1464921560\\/1645963925\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3589\":{\"id\":198850963,\"id_str\":\"198850963\",\"name\":\"Valentine\",\"screen_name\":\"gava34\",\"location\":\"Abuja\",\"description\":\"Simplicity\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":241,\"listed_count\":0,\"created_at\":\"Tue Oct 05 12:19:51 +0000 2010\",\"favourites_count\":269,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":96,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/468801844895293440\\/TYomt4Ed_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/468801844895293440\\/TYomt4Ed_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/198850963\\/1656396509\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3590\":{\"id\":1535915503432175617,\"id_str\":\"1535915503432175617\",\"name\":\"Celestine Ozonna\",\"screen_name\":\"OZONNAX\",\"location\":\"Jos, Nigeria\",\"description\":\".\\n..\\n...\\n....\\n.....\\nI AM ME\\n.....\\n....\\n...\\n..\\n.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Sun Jun 12 09:23:05 +0000 2022\",\"favourites_count\":74,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553739646957404160\\/4QERHut__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553739646957404160\\/4QERHut__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535915503432175617\\/1655645329\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3591\":{\"id\":1246192960737357824,\"id_str\":\"1246192960737357824\",\"name\":\"okayson\",\"screen_name\":\"hagusokayson\",\"location\":\"Nigeria\",\"description\":\"It is well\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1445,\"friends_count\":2065,\"listed_count\":0,\"created_at\":\"Fri Apr 03 21:49:05 +0000 2020\",\"favourites_count\":3450,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3916,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1361244694957748226\\/r_ZESvn6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1361244694957748226\\/r_ZESvn6_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3592\":{\"id\":1179156710,\"id_str\":\"1179156710\",\"name\":\"A-TYPE-OF-CHRIST-\",\"screen_name\":\"IM_CITIZENX\",\"location\":\"Abuja, Nigeria\",\"description\":\"GOD FIRST, SON OF GOD, NIGERIAN PATRIOT, ARSENAL FC FAN, A BUHARIST 2 ZA CORE & ESCHATOLOGY ENTHUSIAST.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1101,\"friends_count\":292,\"listed_count\":3,\"created_at\":\"Thu Feb 14 13:43:27 +0000 2013\",\"favourites_count\":3157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9044,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1273005692983685127\\/tMtnFku6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1273005692983685127\\/tMtnFku6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1179156710\\/1439921046\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3593\":{\"id\":1311664780160258048,\"id_str\":\"1311664780160258048\",\"name\":\"DESIRE CAPITALS LIMITED\",\"screen_name\":\"desirecapitals\",\"location\":\"Jos, Nigeria\",\"description\":\"RC 1721108 \\nDESIRE CAPITALS LIMITED IS A FINANCIAL FIRM REGISTERED UNDER THE CAC THAT IS INTO:\\n1. GIVING OUT OF LOANS\\n2. MANAGING INVESTMENTS\\n3. CONSULTANCY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":494,\"listed_count\":0,\"created_at\":\"Thu Oct 01 13:50:47 +0000 2020\",\"favourites_count\":299,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":142,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1311665582194843649\\/hDw5wFJE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1311665582194843649\\/hDw5wFJE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1311664780160258048\\/1601561506\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3594\":{\"id\":1482662666992766979,\"id_str\":\"1482662666992766979\",\"name\":\"tahir lawal\",\"screen_name\":\"huameeyr_\",\"location\":\"Nigeria\",\"description\":\"Consumer Hotline:+65-31290538 support@wikifx.com +234-706 777 7762; +61-449895363 Telegram:+60-103342306 Whatsapp:+852-6613 1970; +44-7517747077\",\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/\",\"display_url\":\"wikifx.com\\/en\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":250,\"listed_count\":0,\"created_at\":\"Sun Jan 16 10:35:22 +0000 2022\",\"favourites_count\":147,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482662666992766979\\/1642330199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3595\":{\"id\":881482790415609856,\"id_str\":\"881482790415609856\",\"name\":\"Humanaidng\",\"screen_name\":\"humanaidng\",\"location\":\"Abuja, Nigeria\",\"description\":\"We are professionals committed to promoting child education, health and empowering mothers for sustainable child care.\",\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\",\"display_url\":\"humanaid.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sun Jul 02 12:00:49 +0000 2017\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/881482790415609856\\/1561182580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3596\":{\"id\":1282445934065057792,\"id_str\":\"1282445934065057792\",\"name\":\"soulflows fyneface\",\"screen_name\":\"soulflows_F\",\"location\":\"Nigeria\",\"description\":\"Husband| TV Host|Coach| political Analyst|word in 60 seconds|voice over artist|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1468,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Sun Jul 12 22:45:21 +0000 2020\",\"favourites_count\":14051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":417,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282445934065057792\\/1594594508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3597\":{\"id\":994240773884432384,\"id_str\":\"994240773884432384\",\"name\":\"Obasi Susan\\ud83d\\udc96\\u2728\\ud83d\\udc8e\",\"screen_name\":\"Suezhan2\",\"location\":\"Abuja, Nigeria\",\"description\":\"Business Administrator\\ud83d\\udc9d\\ud83d\\udcda| Freelancer\\ud83d\\udcdd\\ud83d\\udccc\\ud83d\\udcb0| Article Writer\\ud83d\\udcdd| Chelsea Fan\\ud83d\\udcaf| Strong-Willed\\u2764\\ufe0f| Lover of God\\ud83d\\udc96\\ud83e\\udd70|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":904,\"friends_count\":1699,\"listed_count\":0,\"created_at\":\"Wed May 09 15:40:47 +0000 2018\",\"favourites_count\":10584,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3572,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353395127583170560\\/U0u7fWCx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353395127583170560\\/U0u7fWCx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/994240773884432384\\/1611509518\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3598\":{\"id\":1543611367042719744,\"id_str\":\"1543611367042719744\",\"name\":\"Taoh Bondum\",\"screen_name\":\"TBondum\",\"location\":\"\",\"description\":\"A realtor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Sun Jul 03 15:04:00 +0000 2022\",\"favourites_count\":76,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543611521628049415\\/afcsuNYU_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543611521628049415\\/afcsuNYU_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3599\":{\"id\":1536809855368974339,\"id_str\":\"1536809855368974339\",\"name\":\"Abdul Foodies\",\"screen_name\":\"AbdulFoodies\",\"location\":\"Jos, Nigeria \",\"description\":\"Foodstuff vegetables and fruits wholesale and retail nation wide delivery\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jun 14 20:38:19 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":54,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3600\":{\"id\":1520332987405062144,\"id_str\":\"1520332987405062144\",\"name\":\"Sadeeq Maigishiri\",\"screen_name\":\"MGsadeeq32\",\"location\":\"Abuja, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":30,\"listed_count\":0,\"created_at\":\"Sat Apr 30 09:23:37 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521618281852977152\\/aBjEafmu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521618281852977152\\/aBjEafmu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3601\":{\"id\":1283730913902370816,\"id_str\":\"1283730913902370816\",\"name\":\"SIKSHOES.NG\",\"screen_name\":\"sikshoes\",\"location\":\"Nigeria\",\"description\":\"Business Oriented.\\nFun Loving. \\nLover of good music.\\nLove making friends.\\nSerial Entrepreneur. \\nC.E.O #siKShoes\",\"url\":\"https:\\/\\/t.co\\/L7GeR3iPTD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/L7GeR3iPTD\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/sikshoes.ng\",\"display_url\":\"facebook.com\\/sikshoes.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259,\"friends_count\":317,\"listed_count\":1,\"created_at\":\"Thu Jul 16 11:51:32 +0000 2020\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1874,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549422811130826759\\/m2eVVX88_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549422811130826759\\/m2eVVX88_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1283730913902370816\\/1640768394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3602\":{\"id\":1553457923552051201,\"id_str\":\"1553457923552051201\",\"name\":\"U. S. DIALA\",\"screen_name\":\"diala_ugochukwu\",\"location\":\"Mararaba, Nigeria\",\"description\":\"Professional Computer Engineer, who is excellent in Laptop Repair\\/Maintenance, Destop repair, Software Installation, Printer and Sales.\",\"url\":\"https:\\/\\/t.co\\/MIg6Mr1Akw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MIg6Mr1Akw\",\"expanded_url\":\"http:\\/\\/usdialaglobalservice.com\",\"display_url\":\"usdialaglobalservice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":125,\"friends_count\":551,\"listed_count\":0,\"created_at\":\"Sat Jul 30 19:10:33 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553685627593449476\\/xFDbDUyP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553685627593449476\\/xFDbDUyP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553457923552051201\\/1659213548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3603\":{\"id\":1147162140954021888,\"id_str\":\"1147162140954021888\",\"name\":\"EXCLUSIVE_PAUL\",\"screen_name\":\"Exclusive_Paull\",\"location\":\"Nigeria\",\"description\":\"OKEOWO PAUL.. An Agricultural Engineer\\ud83d\\udc77... I only radiate good vibes. Don\\u2019t stop when you are tired. Stop when you're done \\ud83d\\ude0e\\nemail: okeowopaul18@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":284,\"friends_count\":298,\"listed_count\":0,\"created_at\":\"Fri Jul 05 15:15:42 +0000 2019\",\"favourites_count\":8975,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":529,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555064175214436352\\/fCTEFmrS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555064175214436352\\/fCTEFmrS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1147162140954021888\\/1623617446\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3604\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3605\":{\"id\":2305210268,\"id_str\":\"2305210268\",\"name\":\"Peter Obi son in Kaduna\",\"screen_name\":\"GovaRidechief\",\"location\":\"Abuja, Nigeria\",\"description\":\"Am from enugu state, base in Abuja city Nigeria, movie making and costumier, Brand Manager GovaRide\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":514,\"listed_count\":4,\"created_at\":\"Wed Jan 22 17:35:57 +0000 2014\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":501,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1263643195562475523\\/96P4ulQB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1263643195562475523\\/96P4ulQB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2305210268\\/1656629923\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3606\":{\"id\":778499933943070721,\"id_str\":\"778499933943070721\",\"name\":\"ZANDO!!!\",\"screen_name\":\"ZANDOAREONE\",\"location\":\"kogi Nigeria\",\"description\":\"The love for blockchain technology ever since I started is becoming more interesting.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":419,\"friends_count\":421,\"listed_count\":1,\"created_at\":\"Wed Sep 21 07:43:42 +0000 2016\",\"favourites_count\":22330,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5894,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521765676578451456\\/A8ZuQYbP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521765676578451456\\/A8ZuQYbP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/778499933943070721\\/1599043414\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3607\":{\"id\":4783220948,\"id_str\":\"4783220948\",\"name\":\"ABN TV\",\"screen_name\":\"abnonlinetv\",\"location\":\"Nigeria\",\"description\":\"An online #television and #radio #news platform based in Nigeria, West Africa\",\"url\":\"https:\\/\\/t.co\\/MdRLZXLQ0r\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MdRLZXLQ0r\",\"expanded_url\":\"http:\\/\\/www.abntv.com.ng\",\"display_url\":\"abntv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":941,\"friends_count\":616,\"listed_count\":29,\"created_at\":\"Tue Jan 19 12:47:18 +0000 2016\",\"favourites_count\":800,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":31075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1037031203977801728\\/xnLCEaYI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1037031203977801728\\/xnLCEaYI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4783220948\\/1609479169\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3608\":{\"id\":1363399919101444099,\"id_str\":\"1363399919101444099\",\"name\":\"H O N O R A B L E \\u2744\\ufe0f\",\"screen_name\":\"iam_Vikitomtom\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":107,\"friends_count\":512,\"listed_count\":0,\"created_at\":\"Sun Feb 21 08:07:43 +0000 2021\",\"favourites_count\":1074,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519306516603588608\\/tIgFhKj3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519306516603588608\\/tIgFhKj3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363399919101444099\\/1644150746\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3609\":{\"id\":1313506816500920322,\"id_str\":\"1313506816500920322\",\"name\":\"weightgainwithsisi\",\"screen_name\":\"weightgainfire\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\udf51WEIGHT GAIN WEIGHT LOSS , \\ud83c\\udf51BUTT ENLARGEMENT. \\ud83c\\udf51effect in 3weeks\\ud83d\\udd25 \\ud83d\\udcaf insta@gainweightwith_sisi @single2moro\",\"url\":\"https:\\/\\/t.co\\/iBS68LcWbm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iBS68LcWbm\",\"expanded_url\":\"https:\\/\\/gainweightwithsisi.mailchimpsites.com\\/\",\"display_url\":\"gainweightwithsisi.mailchimpsites.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":699,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Tue Oct 06 15:50:19 +0000 2020\",\"favourites_count\":6245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4327,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490680637052891144\\/ieF7Wi94_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490680637052891144\\/ieF7Wi94_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1313506816500920322\\/1642721365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3610\":{\"id\":898503132459786240,\"id_str\":\"898503132459786240\",\"name\":\"Bright_light\",\"screen_name\":\"Emmisung\",\"location\":\"Kano, Nigeria\",\"description\":\"blogger, Administrator, business man...\\n\\ud83d\\ude2e\\ud83d\\ude09\\ud83d\\udca5\\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":79,\"listed_count\":0,\"created_at\":\"Fri Aug 18 11:13:34 +0000 2017\",\"favourites_count\":1016,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/898503132459786240\\/1587168692\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3611\":{\"id\":1452073829245853697,\"id_str\":\"1452073829245853697\",\"name\":\"J. C. Iro\",\"screen_name\":\"_KingTekno\",\"location\":\"Nigeria\",\"description\":\"CEO Tekkxe (Quiz Master & English Language Examiner)\",\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DLxblV13Z5\",\"expanded_url\":\"https:\\/\\/thepeoplesparrot.blogspot.com\\/?m=1\",\"display_url\":\"thepeoplesparrot.blogspot.com\\/?m=1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Sun Oct 24 00:46:11 +0000 2021\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":500,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479074128120487936\\/2_iYFvH3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1452073829245853697\\/1642094272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3612\":{\"id\":898503132459786240,\"id_str\":\"898503132459786240\",\"name\":\"Bright_light\",\"screen_name\":\"Emmisung\",\"location\":\"Kano, Nigeria\",\"description\":\"blogger, Administrator, business man...\\n\\ud83d\\ude2e\\ud83d\\ude09\\ud83d\\udca5\\ud83d\\udd25\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":79,\"listed_count\":0,\"created_at\":\"Fri Aug 18 11:13:34 +0000 2017\",\"favourites_count\":1016,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553673643095429121\\/87NDOfLZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/898503132459786240\\/1587168692\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3613\":{\"id\":907417630612520960,\"id_str\":\"907417630612520960\",\"name\":\"\\ud83d\\udc09G i r l f r i e n d S n a t c h e r\\ud83d\\udd7a\\ud83c\\udffb\\ud83e\\udd34\\ud83c\\udffb\\ud83d\\ude80\",\"screen_name\":\"__amandoo\",\"location\":\"Nigeria\",\"description\":\"Alhmdllh Ana Muslim\\ud83d\\ude4f| Allah \\u261d\\ufe0f| Prophet Muhammad \\ud83d\\udc98| Mom \\ud83d\\udc51\\u2764\\ufe0f| RIJF Dad \\ud83d\\ude2d\\ud83d\\udc94|Abusite \\ud83d\\udcda| Hustler \\ud83d\\udcaa\\ud83c\\udfff| Dm for Ads & promotions| Family over all \\ud83e\\udd0d| Dec. 25th\\ud83c\\udf89\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10135,\"friends_count\":4649,\"listed_count\":1,\"created_at\":\"Tue Sep 12 01:36:36 +0000 2017\",\"favourites_count\":65616,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20849,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1268098265435836416\\/5ZW_dIaP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1268098265435836416\\/5ZW_dIaP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/907417630612520960\\/1589292757\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3614\":{\"id\":1274613862680203265,\"id_str\":\"1274613862680203265\",\"name\":\"MrBayoOfficial\\ud83d\\udcf6\",\"screen_name\":\"Mr_Bayo_jnr\",\"location\":\"Nigeria\",\"description\":\"Hello, I welcome you all to my profile, I sell out my correct scores in different odds and they are 100% accurate. Im available 24\\/7\\ud83d\\udce1 or +2349058058993\\u260e\\ufe0f\\ud83d\\udc09\",\"url\":\"https:\\/\\/t.co\\/ZM2Od9UqqD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZM2Od9UqqD\",\"expanded_url\":\"http:\\/\\/Www.Greenlandfixed.org\",\"display_url\":\"Greenlandfixed.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3501,\"friends_count\":898,\"listed_count\":0,\"created_at\":\"Sun Jun 21 08:03:29 +0000 2020\",\"favourites_count\":765,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2798,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1274617938918735874\\/VScmHhvv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1274617938918735874\\/VScmHhvv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1274613862680203265\\/1592727579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3615\":{\"id\":1384447899828957186,\"id_str\":\"1384447899828957186\",\"name\":\"Awireee\\ud83d\\udcb8\\ud83e\\udd74\",\"screen_name\":\"pelumiii_awiree\",\"location\":\"Nigeria\",\"description\":\"Eventsplanner \\u2022 Financial analysis \\u2022 GGMU \\u2022 emmanuelodunayomi@gmail.com. Comedian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Tue Apr 20 10:04:50 +0000 2021\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1384448414784557056\\/7s1-fKcY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384447899828957186\\/1620914365\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3616\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3617\":{\"id\":4868958250,\"id_str\":\"4868958250\",\"name\":\"Masta Blade\",\"screen_name\":\"farukcalypse2\",\"location\":\"Abuja,Nigeria\",\"description\":\"Rapper\\/ Barber\\/poet\\/Entrepreneuer \\/ philanthropist.\",\"url\":\"https:\\/\\/t.co\\/DiHKIqiwIM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DiHKIqiwIM\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/MastaBlade\",\"display_url\":\"youtube.com\\/c\\/MastaBlade\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Mon Feb 01 11:21:23 +0000 2016\",\"favourites_count\":261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":550,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549267436360302592\\/g2NF8EYt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549267436360302592\\/g2NF8EYt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4868958250\\/1644560756\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3618\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3619\":{\"id\":737651835452981248,\"id_str\":\"737651835452981248\",\"name\":\"OG OF THE SOUTH \\ud83d\\udd59\",\"screen_name\":\"citypeople01\",\"location\":\" Nigeria\",\"description\":\"Innovative business oriented \\u270a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88,\"friends_count\":455,\"listed_count\":5,\"created_at\":\"Tue May 31 14:27:57 +0000 2016\",\"favourites_count\":2783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548188182478344192\\/gprujVWy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548188182478344192\\/gprujVWy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/737651835452981248\\/1597911104\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3620\":{\"id\":816530601205526529,\"id_str\":\"816530601205526529\",\"name\":\"kukulaja\",\"screen_name\":\"HollaBYoung\",\"location\":\"Nigeria\",\"description\":\"Afroking himself omo Iya wake\",\"url\":\"https:\\/\\/t.co\\/ejJM7q7JNP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ejJM7q7JNP\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/holla-b-\\/song\\/holla-b-smiles-melody\",\"display_url\":\"audiomack.com\\/holla-b-\\/song\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":547,\"friends_count\":2326,\"listed_count\":1,\"created_at\":\"Wed Jan 04 06:24:00 +0000 2017\",\"favourites_count\":1721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1616,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548334296355614720\\/PK5PMA8c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548334296355614720\\/PK5PMA8c_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816530601205526529\\/1626255596\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3621\":{\"id\":1502736716532178952,\"id_str\":\"1502736716532178952\",\"name\":\"Abbanya exclusive caps\",\"screen_name\":\"Abbanya1\",\"location\":\"Borno, Nigeria\",\"description\":\"quality isn\\u2019t expensive it\\u2019s priceless\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":635,\"listed_count\":0,\"created_at\":\"Sat Mar 12 20:02:27 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":40,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502737010901110787\\/s132rT3I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502737010901110787\\/s132rT3I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502736716532178952\\/1648956383\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3622\":{\"id\":1167538860,\"id_str\":\"1167538860\",\"name\":\"\\ud835\\udc04\\ud835\\udc26\\ud835\\udc29\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2f\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2c\",\"screen_name\":\"Emperor_vibes0\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\ud835\\udc16\\ud835\\udc21\\ud835\\udc1a\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc2f\\ud835\\udc1e\\ud835\\udc2b \\ud835\\udc32\\ud835\\udc28\\ud835\\udc2e \\ud835\\udc1d\\ud835\\udc28, \\ud835\\udc00\\ud835\\udc22\\ud835\\udc26 \\ud835\\udc07\\ud835\\udc08\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\ud83d\\udcab \\ud83d\\ude02 \\ud835\\udc15\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc22\\ud835\\udc1a\\ud835\\udc27\\u2728\\ud83c\\udf43 \\ud835\\udc0f\\ud835\\udc1a\\ud835\\udc2c\\ud835\\udc2d\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2d\\ud835\\udc21\\ud835\\udc1e\\ud835\\udc28 \\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":223,\"friends_count\":156,\"listed_count\":0,\"created_at\":\"Mon Feb 11 01:59:56 +0000 2013\",\"favourites_count\":352,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167538860\\/1659127987\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3623\":{\"id\":1463336220134715397,\"id_str\":\"1463336220134715397\",\"name\":\"Shefiu \\ud83e\\udd47\\ud83e\\udd47\\ud83d\\udc8e\\ud83d\\udc8e\\ud83d\\udcaf\",\"screen_name\":\"Sheftechofficia\",\"location\":\"Nigeria\",\"description\":\"Website Marketing and Promotion Wizard with Best Marketing Strategy\",\"url\":\"https:\\/\\/t.co\\/AXt6GUvJ2Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AXt6GUvJ2Y\",\"expanded_url\":\"http:\\/\\/www.fiverr.com\\/shef_ecommerce\",\"display_url\":\"fiverr.com\\/shef_ecommerce\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6130,\"friends_count\":1143,\"listed_count\":2,\"created_at\":\"Wed Nov 24 02:38:58 +0000 2021\",\"favourites_count\":92,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1466005377900810242\\/rYiw1Qnl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1466005377900810242\\/rYiw1Qnl_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3624\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3625\":{\"id\":1524723918539419648,\"id_str\":\"1524723918539419648\",\"name\":\"atmine22\",\"screen_name\":\"atmine22\",\"location\":\"no where near you\",\"description\":\"Just lookin, but not being a bot I am not always polite and I do swear rarely ..sometimes ...often .....frequently ..... oh OK a LOT.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":12,\"listed_count\":9,\"created_at\":\"Thu May 12 12:11:55 +0000 2022\",\"favourites_count\":6227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11487,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3626\":{\"id\":24548059,\"id_str\":\"24548059\",\"name\":\"Curtis Fernheiser III\",\"screen_name\":\"CurtFernheiser\",\"location\":\"The Great Pacific Northwest\",\"description\":\"\\ud83d\\udc41\\ufe0f \\u2665\\ufe0f \\ud83c\\uddfa\\ud83c\\uddf8 and \\ud83d\\udc41\\ufe0f\\u2665\\ufe0f my \\ud83c\\uddec\\ud83c\\udde7 Wife \\ud83d\\ude4fMatthew 28:20\\n Spam=Blocked\\ud83e\\udd2a\\n \\ud83c\\uddfa\\ud83c\\uddf2Patriot Party\\ud83c\\uddfa\\ud83c\\uddf8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1533,\"friends_count\":1510,\"listed_count\":2,\"created_at\":\"Sun Mar 15 16:47:27 +0000 2009\",\"favourites_count\":14346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17268,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548421980306567171\\/ss-LhZX8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24548059\\/1659165343\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3627\":{\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"name\":\"William Iwu\",\"screen_name\":\"betsmasterspro\",\"location\":\"Jos, Nigeria\",\"description\":\"Welcome To Betsmasterpro matches,We Offer \\ud83d\\udcaf Fixed Matches All Correct Scores,If You're Interested Call \\ud83d\\udcdeOr WhatsApp Us On \\ud83d\\udcf2+2349095386137.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1085,\"friends_count\":37,\"listed_count\":1,\"created_at\":\"Wed Nov 25 02:59:59 +0000 2020\",\"favourites_count\":1247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1931,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331432336127381504\\/1629374439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3628\":{\"id\":1282590760718733312,\"id_str\":\"1282590760718733312\",\"name\":\"OnlinePikin\",\"screen_name\":\"Online_Pikin\",\"location\":\"Nigeria\",\"description\":\"A niche blog telling stories on brands, causes, people & events from around the globe.\",\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\",\"display_url\":\"onlinepikin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Mon Jul 13 08:20:59 +0000 2020\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282590760718733312\\/1659910806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3629\":{\"id\":2172675353,\"id_str\":\"2172675353\",\"name\":\"Peter Obi PHC Office\",\"screen_name\":\"emekaohiagu\",\"location\":\"Rivers State \",\"description\":\"Movement For A Better Nigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":162,\"friends_count\":281,\"listed_count\":1,\"created_at\":\"Thu Nov 07 22:05:37 +0000 2013\",\"favourites_count\":367,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1121,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553514312215547905\\/ZNn38ajo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553514312215547905\\/ZNn38ajo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2172675353\\/1659221653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3630\":{\"id\":3058698981,\"id_str\":\"3058698981\",\"name\":\"wilsonchinonso\",\"screen_name\":\"wilson_chnns\",\"location\":\"Imo State Nigeria\",\"description\":\"Black and Spanish\",\"url\":\"https:\\/\\/t.co\\/9MvZ4d9cz2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9MvZ4d9cz2\",\"expanded_url\":\"http:\\/\\/wilsonchnns.com\",\"display_url\":\"wilsonchnns.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":28,\"friends_count\":265,\"listed_count\":0,\"created_at\":\"Tue Feb 24 11:53:43 +0000 2015\",\"favourites_count\":134,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":365,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1098262718551855104\\/W3j9s9PH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1098262718551855104\\/W3j9s9PH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3631\":{\"id\":1479853537454694400,\"id_str\":\"1479853537454694400\",\"name\":\"Jennifer T\",\"screen_name\":\"JeniT71\",\"location\":\"Deep South\",\"description\":\"Alabama girl, weather nerd, coffee junkie& aspiring writer! RTR! AMERICA \\ud83c\\uddfa\\ud83c\\uddf8!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":105,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Sat Jan 08 16:33:01 +0000 2022\",\"favourites_count\":675,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":349,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542193001040171013\\/OoezUbz6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542193001040171013\\/OoezUbz6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1479853537454694400\\/1656522744\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3632\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3633\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3634\":{\"id\":272100746,\"id_str\":\"272100746\",\"name\":\"CHI-Exclusive\",\"screen_name\":\"chiexclusivehub\",\"location\":\"Nigeria\",\"description\":\"Website Designer \\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83d\\udcbb | Realtor| Blogger| eShop Manager (@ExclusiveShops) \\ud83d\\udecd|For Web Designs whatsapp me through d-web or mail matthias@chiexclusive.com\",\"url\":\"https:\\/\\/t.co\\/BRmxlKRSam\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BRmxlKRSam\",\"expanded_url\":\"https:\\/\\/chiexclusive.com\",\"display_url\":\"chiexclusive.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11461,\"friends_count\":8242,\"listed_count\":2,\"created_at\":\"Fri Mar 25 20:52:02 +0000 2011\",\"favourites_count\":2012,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7628,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351483555562532866\\/ikCmeYTq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351483555562532866\\/ikCmeYTq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/272100746\\/1620384027\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3635\":{\"id\":721794211,\"id_str\":\"721794211\",\"name\":\"Henri Kouam\",\"screen_name\":\"HenriKouam\",\"location\":\"Yaounde, Cameroon\",\"description\":\"I am an econ enthusiast and Fellow in Economics at a Cameroon-based think thank. I dabble in machine learning and build algorithms for econometrics.\",\"url\":\"https:\\/\\/t.co\\/Z4D1NS21aP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z4D1NS21aP\",\"expanded_url\":\"https:\\/\\/www.researchgate.net\\/profile\\/Henri_Kouam\",\"display_url\":\"researchgate.net\\/profile\\/Henri_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":188,\"friends_count\":504,\"listed_count\":3,\"created_at\":\"Sat Jul 28 08:36:44 +0000 2012\",\"favourites_count\":3013,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1388339421968281603\\/5tmX3Hk3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1388339421968281603\\/5tmX3Hk3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/721794211\\/1450108016\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3636\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3637\":{\"id\":1099915012037099521,\"id_str\":\"1099915012037099521\",\"name\":\"Nigeria Infohub & News PR\",\"screen_name\":\"notice_com_ng\",\"location\":\"Lagos, Nigeria\",\"description\":\"we will bring you sparkling latest news, latest information,update,music download,video download https:\\/\\/t.co\\/aIHLCI5dXA\\nNigeria's Prosperity, peace and unity a\",\"url\":\"https:\\/\\/t.co\\/jm0uqsKVUH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jm0uqsKVUH\",\"expanded_url\":\"https:\\/\\/www.notice.com.ng\",\"display_url\":\"notice.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aIHLCI5dXA\",\"expanded_url\":\"http:\\/\\/notice.com.ng\",\"display_url\":\"notice.com.ng\",\"indices\":[97,120]}]}},\"protected\":false,\"followers_count\":4023,\"friends_count\":4708,\"listed_count\":3,\"created_at\":\"Mon Feb 25 06:12:29 +0000 2019\",\"favourites_count\":16849,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":143367,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490031576037703684\\/D3FHmGEg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490031576037703684\\/D3FHmGEg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1099915012037099521\\/1616245718\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3638\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3639\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3640\":{\"id\":3352737683,\"id_str\":\"3352737683\",\"name\":\"All Round News\",\"screen_name\":\"AllRoundNewsNG\",\"location\":\"Nigeria\",\"description\":\"All About News\",\"url\":\"http:\\/\\/t.co\\/MyAMvf3YcQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MyAMvf3YcQ\",\"expanded_url\":\"http:\\/\\/AllRoundNews.NG\",\"display_url\":\"AllRoundNews.NG\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":430,\"friends_count\":1,\"listed_count\":4,\"created_at\":\"Wed Jul 01 02:44:19 +0000 2015\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77875,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/617559745583382528\\/bmUnciYA_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/617559745583382528\\/bmUnciYA_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3352737683\\/1436084513\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3641\":{\"id\":1491175165551591425,\"id_str\":\"1491175165551591425\",\"name\":\"Tessy Patrick\",\"screen_name\":\"Patricktessy_\",\"location\":\"Edo, Nigeria\",\"description\":\"Scorpius lady\\/fashion designer | Fantastic singer|7D Affiliate marketer\\/ I will show you how to make 7digits in affiliate marketing\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":127,\"friends_count\":273,\"listed_count\":0,\"created_at\":\"Tue Feb 08 22:21:57 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1494884557505585152\\/M85w5AtO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1494884557505585152\\/M85w5AtO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3642\":{\"id\":430723686,\"id_str\":\"430723686\",\"name\":\"Green Hive\",\"screen_name\":\"Greenhive5\",\"location\":\"uganda\",\"description\":\"HOTELIER\",\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/bukirwaeducationfund\",\"display_url\":\"facebook.com\\/bukirwaeducati\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":108,\"friends_count\":474,\"listed_count\":0,\"created_at\":\"Wed Dec 07 14:05:20 +0000 2011\",\"favourites_count\":783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/430723686\\/1618904971\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3643\":{\"id\":430723686,\"id_str\":\"430723686\",\"name\":\"Green Hive\",\"screen_name\":\"Greenhive5\",\"location\":\"uganda\",\"description\":\"HOTELIER\",\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hbMma4fQBK\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/bukirwaeducationfund\",\"display_url\":\"facebook.com\\/bukirwaeducati\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":108,\"friends_count\":474,\"listed_count\":0,\"created_at\":\"Wed Dec 07 14:05:20 +0000 2011\",\"favourites_count\":783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2194,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508890375208980480\\/GNYi2JVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/430723686\\/1618904971\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3644\":{\"id\":1258092074622160897,\"id_str\":\"1258092074622160897\",\"name\":\"FEMI AFRICA SP\",\"screen_name\":\"femiafricaNG\",\"location\":\"lagos \",\"description\":\"Herbalist son\\ud83d\\udc80\\u2620\\ufe0f | comedian\",\"url\":\"https:\\/\\/t.co\\/r6WJvutq7p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/r6WJvutq7p\",\"expanded_url\":\"http:\\/\\/www.femiafrica.com\",\"display_url\":\"femiafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2723,\"friends_count\":141,\"listed_count\":1,\"created_at\":\"Wed May 06 17:52:01 +0000 2020\",\"favourites_count\":192,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":347,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556041057929920512\\/CkHVVEJ1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556041057929920512\\/CkHVVEJ1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1258092074622160897\\/1657584205\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3645\":{\"id\":162934876,\"id_str\":\"162934876\",\"name\":\"Silvado \\u2b07\\ufe0f\",\"screen_name\":\"countrybouy1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Filmmaker \\ud83c\\udfac\\ud83d\\udcfd\\nCypto maniac\\nNFT Creator\\n\\nFilm And TV:\\nAssistant Director \\nScript Supervisor\\nScript Editor\",\"url\":\"https:\\/\\/t.co\\/9Q8Ax6JsYm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Q8Ax6JsYm\",\"expanded_url\":\"https:\\/\\/rarible.com\\/token\\/0xc9154424B823b10579895cCBE442d41b9Abd96Ed:8228893423091918802435039797288\",\"display_url\":\"rarible.com\\/token\\/0xc91544\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":269,\"friends_count\":502,\"listed_count\":2,\"created_at\":\"Mon Jul 05 03:12:41 +0000 2010\",\"favourites_count\":189,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2416,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544262424836116481\\/VQWWa6XE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544262424836116481\\/VQWWa6XE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/162934876\\/1649688232\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3646\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3647\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3648\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3649\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3650\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3651\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3652\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3653\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3654\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3655\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3656\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3657\":{\"id\":892298735115522048,\"id_str\":\"892298735115522048\",\"name\":\"Timi Isaac\",\"screen_name\":\"Gracious_Song\",\"location\":\"Nigeria\",\"description\":\"I provide some of the best solutions to issues, even if they seem entertaining.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":91,\"listed_count\":0,\"created_at\":\"Tue Aug 01 08:19:31 +0000 2017\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":89,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1355045868118962176\\/3kGGoqNi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1355045868118962176\\/3kGGoqNi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/892298735115522048\\/1601540172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3658\":{\"id\":960542806933729281,\"id_str\":\"960542806933729281\",\"name\":\"Ad\\u00e1j\\u00e0\\ud83e\\udd77\",\"screen_name\":\"AdajaMusic\",\"location\":\"Lagos, Nigeria\",\"description\":\"Welcome to the world of wonders \\ud83d\\udda4. Singer Songwriter Winner #Bigdreamsnigeriatvshow\",\"url\":\"https:\\/\\/t.co\\/TPHdKsCrGr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TPHdKsCrGr\",\"expanded_url\":\"https:\\/\\/spinnup.link\\/504529-adaja-sounds-of\",\"display_url\":\"spinnup.link\\/504529-adaja-s\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":395,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Mon Feb 05 15:57:05 +0000 2018\",\"favourites_count\":17558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":739,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1448404628161409029\\/sVE-Lslh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1448404628161409029\\/sVE-Lslh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/960542806933729281\\/1658484917\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3659\":{\"id\":1223212461010096129,\"id_str\":\"1223212461010096129\",\"name\":\"Clinton_Snowbird\",\"screen_name\":\"ClintonSnowbird\",\"location\":\"Abuja, Nigeria\",\"description\":\"#footballinmyDNA \\ud83e\\uddec || Africa & Black history \\ud83d\\udccc Red Devil \\ud83d\\udd34. Vibes || cruise\\ud83d\\ude0e I had fun once\\u2014it was horrible. 6\\u20193ft strong \\ud83d\\ude0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3134,\"friends_count\":3033,\"listed_count\":0,\"created_at\":\"Fri Jan 31 11:52:46 +0000 2020\",\"favourites_count\":8773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546438057183907840\\/KREogTZI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546438057183907840\\/KREogTZI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1223212461010096129\\/1654726474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3660\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3661\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3662\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3663\":{\"id\":833544452614533124,\"id_str\":\"833544452614533124\",\"name\":\"Judeanarmz\",\"screen_name\":\"Jude_anarmz\",\"location\":\"Lagos, Nigeria\",\"description\":\"OXFORDPROPS MULTISERVICES ELITES LTD.\\nSubsidary Managing Director \\n\\nInvestment Manager | Smart Entrepreneur || The Oxford Green Farms Group\\u25aaTOGFG\\u25aaAgrolyfe \\ud83c\\udf31\",\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":781,\"listed_count\":1,\"created_at\":\"Mon Feb 20 05:10:58 +0000 2017\",\"favourites_count\":887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2919,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833544452614533124\\/1659562338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3664\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3665\":{\"id\":135947998,\"id_str\":\"135947998\",\"name\":\"Obruchev\",\"screen_name\":\"phlanky\",\"location\":\"Lagos, Nigeria\",\"description\":\"Marine Engineer || Activist For The Both Genders || Against Any Form Of Abuse ||Love Over Religion.\\nfollow @africanuniformsingles on IG for military dating\",\"url\":\"https:\\/\\/t.co\\/hBg50I3Hx9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hBg50I3Hx9\",\"expanded_url\":\"http:\\/\\/www.africanunformsingles.com\",\"display_url\":\"africanunformsingles.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":692,\"friends_count\":3386,\"listed_count\":0,\"created_at\":\"Thu Apr 22 16:27:30 +0000 2010\",\"favourites_count\":2797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3930,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531951941227581440\\/BD09CRjY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531951941227581440\\/BD09CRjY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/135947998\\/1653246377\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3666\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3667\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3668\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3669\":{\"id\":318945033,\"id_str\":\"318945033\",\"name\":\"JAYDO KINHO\",\"screen_name\":\"Jaydokinhotweet\",\"location\":\"Nigeria\",\"description\":\"Singer | Songwriter | Model | Actor \\n Email:jaydokinho@gmail.com | +2348060400535\",\"url\":\"https:\\/\\/t.co\\/oMJSSlncTW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oMJSSlncTW\",\"expanded_url\":\"https:\\/\\/music.youtube.com\\/watch?v=Z6V3Ecq3qz4&feature=share\",\"display_url\":\"music.youtube.com\\/watch?v=Z6V3Ec\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":761,\"friends_count\":1262,\"listed_count\":1,\"created_at\":\"Fri Jun 17 09:30:36 +0000 2011\",\"favourites_count\":853,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2683,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521272159540289536\\/Ef7rH9e8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521272159540289536\\/Ef7rH9e8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/318945033\\/1656898974\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3670\":{\"id\":1250296116865724419,\"id_str\":\"1250296116865724419\",\"name\":\"Lagos Metropolitan\",\"screen_name\":\"LagMetropolitan\",\"location\":\"Lagos, Nigeria\",\"description\":\"We aim to be the most authoritative newspaper reporting the Lagos Metropolis. We just want to report everyday people doing extraordinary things.\",\"url\":\"https:\\/\\/t.co\\/m0xrEqsUIg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/m0xrEqsUIg\",\"expanded_url\":\"https:\\/\\/www.lagosmetropolitan.com\",\"display_url\":\"lagosmetropolitan.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":160,\"friends_count\":258,\"listed_count\":0,\"created_at\":\"Wed Apr 15 05:33:43 +0000 2020\",\"favourites_count\":152,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2753,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1284937686562865152\\/FgPIa_Wc_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1284937686562865152\\/FgPIa_Wc_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1250296116865724419\\/1595187990\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3671\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3672\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3673\":{\"id\":1319373245053886464,\"id_str\":\"1319373245053886464\",\"name\":\"Alexwills consolidated\",\"screen_name\":\"AAlexan63671061\",\"location\":\"Benin-City, Nigeria\",\"description\":\"am good at what i do no matter how hard\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":272,\"listed_count\":0,\"created_at\":\"Thu Oct 22 20:21:33 +0000 2020\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319373245053886464\\/1654848237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3674\":{\"id\":725816690542518273,\"id_str\":\"725816690542518273\",\"name\":\"Urwah Adam Suleiman\",\"screen_name\":\"adam_urwah\",\"location\":\"Kaduna, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":289,\"listed_count\":0,\"created_at\":\"Thu Apr 28 22:39:18 +0000 2016\",\"favourites_count\":9895,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":584,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/998358582193078274\\/FQMWLfeJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/998358582193078274\\/FQMWLfeJ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3675\":{\"id\":1395760548915068933,\"id_str\":\"1395760548915068933\",\"name\":\"APOSTLE GODWIN OCHIJE MICHAEL\",\"screen_name\":\"GodwinOchije\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"An Apostle of Christ to the nation's of the earth..\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":37,\"listed_count\":0,\"created_at\":\"Fri May 21 15:17:50 +0000 2021\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3676\":{\"id\":1517815043844358145,\"id_str\":\"1517815043844358145\",\"name\":\"DY WORDS\",\"screen_name\":\"Adedayo_AJ\",\"location\":\"Lagos, Nigeria\",\"description\":\"Focusing on:\\n\\u2022HUMAN DEVELOPMENT\\u2022BUSINESS OPPORTUNITIES\\u2022RELATIONSHIP SELF-DISCOVERY\\u2022REAL-LIFE EXPERIENCES\\nGROWTH\\u2022FINDING PURPOSE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":240,\"listed_count\":0,\"created_at\":\"Sat Apr 23 10:38:54 +0000 2022\",\"favourites_count\":1445,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":379,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517815043844358145\\/1650711890\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3677\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3678\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3679\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3680\":{\"id\":1375008658246008833,\"id_str\":\"1375008658246008833\",\"name\":\"Ability\",\"screen_name\":\"ability_etuk\",\"location\":\"lekki\",\"description\":\"Digital marketer|SEO Specialist|Graphic designer| music lover\\ud83c\\udfb8\\ud83c\\udfb8\\ud83c\\udfb6\\n\\ud83d\\ude0bno mind the bio\\ud83e\\udd2aI like enjoyment too\",\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"expanded_url\":\"http:\\/\\/www.rapigrowth.com.ng\",\"display_url\":\"rapigrowth.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Thu Mar 25 08:56:39 +0000 2021\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375008658246008833\\/1659134272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3681\":{\"id\":1481668045881982990,\"id_str\":\"1481668045881982990\",\"name\":\"Nigeria voice\",\"screen_name\":\"9jariavoice\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Thu Jan 13 16:42:53 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3682\":{\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"name\":\"Elite Star Foundation\",\"screen_name\":\"NGOELITESTAR\",\"location\":\"Nigeria\",\"description\":\"Ensuring lifelong learning opportunities for all and reducing all forms of inequalities and violence against children.\",\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"expanded_url\":\"https:\\/\\/www.elitestarfoundation.org\",\"display_url\":\"elitestarfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":492,\"listed_count\":0,\"created_at\":\"Sat Nov 20 04:48:29 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461919316400648194\\/1637384456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3683\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3684\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3685\":{\"id\":902666778618331136,\"id_str\":\"902666778618331136\",\"name\":\"Pest Terminators\",\"screen_name\":\"terminatorsng\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigeria\\u2019s 1st choice licensed Pest Control Service Company in Lagos with many years of operational experience in integrated pest management and control.\",\"url\":\"https:\\/\\/t.co\\/zosJJLBj7m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zosJJLBj7m\",\"expanded_url\":\"https:\\/\\/pest-terminators.com\\/\",\"display_url\":\"pest-terminators.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":50,\"friends_count\":173,\"listed_count\":3,\"created_at\":\"Tue Aug 29 22:58:25 +0000 2017\",\"favourites_count\":354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/902671752563707907\\/m_FGjELU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/902671752563707907\\/m_FGjELU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/902666778618331136\\/1622454207\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3686\":{\"id\":1010923185804541953,\"id_str\":\"1010923185804541953\",\"name\":\"Odenigbo1 ndi anambra\",\"screen_name\":\"feranmicubano\",\"location\":\"Lagos\",\"description\":\"auto spare-part dealer\\/marriage counsellor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":448,\"friends_count\":1176,\"listed_count\":0,\"created_at\":\"Sun Jun 24 16:30:44 +0000 2018\",\"favourites_count\":1602,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010923185804541953\\/1656847465\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3687\":{\"id\":311120818,\"id_str\":\"311120818\",\"name\":\"Left Coast Librarian \\ud83c\\udf32\",\"screen_name\":\"LeftCoastMLIS\",\"location\":\"Pacific Northwest\",\"description\":\"MLIS, @SJSU \\ud83d\\udcda MA, Int\\u2019l Human Rights, @josefkorbel \\ud83c\\uddfa\\ud83c\\uddf3 True crime obsessive \\ud83d\\udd0e Space & aviation geek \\u2708\\ufe0f Tabletop gamer \\ud83c\\udfb2 Ally \\ud83c\\udff3\\ufe0f\\u200d\\ud83c\\udf08\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":3127,\"listed_count\":9,\"created_at\":\"Sat Jun 04 22:54:20 +0000 2011\",\"favourites_count\":11341,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1369,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1497166624960376833\\/opldLcf5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1497166624960376833\\/opldLcf5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/311120818\\/1656784566\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3688\":{\"id\":2841969340,\"id_str\":\"2841969340\",\"name\":\"Charleson Otubu\",\"screen_name\":\"IAMCharleson\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Enterpreneur, SlayChat Founder, Content Creator, imarketer, Web Develper, FullStack Developer, JavaScript, HTML, CSS, JAVA, C++, PHP, PYTHON,\",\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/hellocharleson\",\"display_url\":\"linkedin.com\\/in\\/hellocharle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8750,\"friends_count\":870,\"listed_count\":24,\"created_at\":\"Thu Oct 23 14:33:23 +0000 2014\",\"favourites_count\":190,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":250,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2841969340\\/1595895798\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3689\":{\"id\":2841969340,\"id_str\":\"2841969340\",\"name\":\"Charleson Otubu\",\"screen_name\":\"IAMCharleson\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Enterpreneur, SlayChat Founder, Content Creator, imarketer, Web Develper, FullStack Developer, JavaScript, HTML, CSS, JAVA, C++, PHP, PYTHON,\",\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JC6nIGWsBK\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/hellocharleson\",\"display_url\":\"linkedin.com\\/in\\/hellocharle\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8750,\"friends_count\":870,\"listed_count\":24,\"created_at\":\"Thu Oct 23 14:33:23 +0000 2014\",\"favourites_count\":190,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":250,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527928014402723841\\/R454Ktdq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2841969340\\/1595895798\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3690\":{\"id\":1010923185804541953,\"id_str\":\"1010923185804541953\",\"name\":\"Odenigbo1 ndi anambra\",\"screen_name\":\"feranmicubano\",\"location\":\"Lagos\",\"description\":\"auto spare-part dealer\\/marriage counsellor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":448,\"friends_count\":1176,\"listed_count\":0,\"created_at\":\"Sun Jun 24 16:30:44 +0000 2018\",\"favourites_count\":1602,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538874383598501888\\/1uo7_-xz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010923185804541953\\/1656847465\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3691\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3692\":{\"id\":1510942253191249925,\"id_str\":\"1510942253191249925\",\"name\":\"Olukorede Joy\",\"screen_name\":\"JoyOlukorede\",\"location\":\"Akure, Ondo State\",\"description\":\"Official Campus Ambassador at International MUN\\u00b6Industrial Chemist (in View)\\u00b6Data Analytics enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":213,\"listed_count\":0,\"created_at\":\"Mon Apr 04 11:28:29 +0000 2022\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510942253191249925\\/1658619740\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3693\":{\"id\":1338167900490838018,\"id_str\":\"1338167900490838018\",\"name\":\"pioneer \\u03c0\\u03c0\\ud83d\\udc93\",\"screen_name\":\"gamar_imam\",\"location\":\"Lagos, Nigeria\",\"description\":\"web developer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":384,\"listed_count\":1,\"created_at\":\"Sun Dec 13 17:04:35 +0000 2020\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1338167900490838018\\/1659712689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3694\":{\"id\":510963054,\"id_str\":\"510963054\",\"name\":\"Johnny Ojobasi\",\"screen_name\":\"JohnnyOjobasi\",\"location\":\"Lagos, Nigeria\",\"description\":\"Life makes no sense without the creator\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Thu Mar 01 22:33:44 +0000 2012\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/510963054\\/1435077945\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3695\":{\"id\":1500134877089435648,\"id_str\":\"1500134877089435648\",\"name\":\"PETER OBI'S BABY\",\"screen_name\":\"Stingray1o1\",\"location\":\"Lekki, Nigeria\",\"description\":\"send a dm strictly for business \\npromotions only...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1562,\"friends_count\":321,\"listed_count\":0,\"created_at\":\"Sat Mar 05 15:43:31 +0000 2022\",\"favourites_count\":32298,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12624,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543256509408313344\\/k08jjuKG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543256509408313344\\/k08jjuKG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1500134877089435648\\/1646983324\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3696\":{\"id\":510963054,\"id_str\":\"510963054\",\"name\":\"Johnny Ojobasi\",\"screen_name\":\"JohnnyOjobasi\",\"location\":\"Lagos, Nigeria\",\"description\":\"Life makes no sense without the creator\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Thu Mar 01 22:33:44 +0000 2012\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/613387570425278464\\/FCxYSyXn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/510963054\\/1435077945\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3697\":{\"id\":978009861324763136,\"id_str\":\"978009861324763136\",\"name\":\"Affectionate_Beau\",\"screen_name\":\"Aff_Beau\",\"location\":\"Nigeria\",\"description\":\"NO!!! I don't mind being special, isn't that what we all want?\\ud83e\\udd14\",\"url\":\"https:\\/\\/t.co\\/109TTtKJJu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/109TTtKJJu\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/affectionate__beau\",\"display_url\":\"instagram.com\\/affectionate__\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 25 20:44:56 +0000 2018\",\"favourites_count\":600,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":540,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528743185345916928\\/Zu0mDdW4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528743185345916928\\/Zu0mDdW4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/978009861324763136\\/1642884083\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3698\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3699\":{\"id\":22252383,\"id_str\":\"22252383\",\"name\":\"#Judy Votes Blue \\ud83c\\uddfa\\ud83c\\uddf8\",\"screen_name\":\"gsojudy\",\"location\":\"VA\",\"description\":\"Horse crazy. USAF retiree\\/27 years. Foreign Service 14yrs. TNBC & HER2+ BC #FuckBreastCancer. #Resister Everyone counts or nobody counts!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4395,\"friends_count\":4958,\"listed_count\":3,\"created_at\":\"Sat Feb 28 12:56:35 +0000 2009\",\"favourites_count\":80508,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":42661,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542793737469927425\\/1xBzkJuu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542793737469927425\\/1xBzkJuu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22252383\\/1636062317\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3700\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3701\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3702\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3703\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3704\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3705\":{\"id\":915539787293118465,\"id_str\":\"915539787293118465\",\"name\":\"Princess of Ara\",\"screen_name\":\"princess_ara__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pretty & S\\u20acXy queen | Wikipedia | FUN lover | full of vibes | kiss me through the phone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Wed Oct 04 11:31:09 +0000 2017\",\"favourites_count\":284,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519930318450565121\\/FLeuyXsp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/915539787293118465\\/1645008424\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3706\":{\"id\":1342358888331567105,\"id_str\":\"1342358888331567105\",\"name\":\"\\ud83c\\udde8 \\ud83c\\uddf7 \\ud83c\\udde6 \\ud83c\\udde8 \\ud83c\\uddf0 \\ud83c\\uddf1 \\ud83c\\uddf4 \\ud83c\\udde6 \\ud83c\\udde9 \\ud83c\\uddea \\ud83c\\udde9 \\ud83c\\uddf9 \\ud83c\\uddfb\",\"screen_name\":\"shollykhay\",\"location\":\"Lagos, Nigeria\",\"description\":\"posting fun contents from TikTok Instagram @crackloaded_tv please engage my tweets that\\u2019s all I have please Sportybet zone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1010,\"friends_count\":3316,\"listed_count\":0,\"created_at\":\"Fri Dec 25 06:38:40 +0000 2020\",\"favourites_count\":4096,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":891,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342358888331567105\\/1611173243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3707\":{\"id\":1342358888331567105,\"id_str\":\"1342358888331567105\",\"name\":\"\\ud83c\\udde8 \\ud83c\\uddf7 \\ud83c\\udde6 \\ud83c\\udde8 \\ud83c\\uddf0 \\ud83c\\uddf1 \\ud83c\\uddf4 \\ud83c\\udde6 \\ud83c\\udde9 \\ud83c\\uddea \\ud83c\\udde9 \\ud83c\\uddf9 \\ud83c\\uddfb\",\"screen_name\":\"shollykhay\",\"location\":\"Lagos, Nigeria\",\"description\":\"posting fun contents from TikTok Instagram @crackloaded_tv please engage my tweets that\\u2019s all I have please Sportybet zone\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1010,\"friends_count\":3316,\"listed_count\":0,\"created_at\":\"Fri Dec 25 06:38:40 +0000 2020\",\"favourites_count\":4096,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":891,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400103129761386497\\/q-vTMKM__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342358888331567105\\/1611173243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3708\":{\"id\":1363859738,\"id_str\":\"1363859738\",\"name\":\"Ethereal BADNE$$\",\"screen_name\":\"FunJumbo\",\"location\":\"lagos\",\"description\":\"P R O P H E T A \\ud80c\\udef9 \\ud80c\\udc80 \\ud80c\\udd43\",\"url\":\"https:\\/\\/t.co\\/vVec4wzqlt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vVec4wzqlt\",\"expanded_url\":\"https:\\/\\/badnedollardollar.trac.co\\/badnedollardollarmandem\",\"display_url\":\"badnedollardollar.trac.co\\/badnedollardol\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2320,\"friends_count\":2248,\"listed_count\":1,\"created_at\":\"Fri Apr 19 07:56:58 +0000 2013\",\"favourites_count\":2635,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19785,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435138998767398913\\/l7kmURqT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435138998767398913\\/l7kmURqT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363859738\\/1604479340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3709\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3710\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3711\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3712\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3713\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3714\":{\"id\":900647718590320640,\"id_str\":\"900647718590320640\",\"name\":\"Adedamola\",\"screen_name\":\"tomidearoso\",\"location\":\"Abuja\",\"description\":\"Zaphnathpaaneah| Writer| Geologist| \\u05d9\\u05b0\\u05d4\\u05d5\\u05bc\\u05d3\\u05b8\\u05d4|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6980,\"friends_count\":6543,\"listed_count\":2,\"created_at\":\"Thu Aug 24 09:15:24 +0000 2017\",\"favourites_count\":69572,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542178723977482241\\/CFH8yuqN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542178723977482241\\/CFH8yuqN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/900647718590320640\\/1646359596\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3715\":{\"id\":1954402777,\"id_str\":\"1954402777\",\"name\":\"TheCable\",\"screen_name\":\"thecableng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's independent online newspaper\",\"url\":\"https:\\/\\/t.co\\/8BVA5oEStE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BVA5oEStE\",\"expanded_url\":\"http:\\/\\/www.thecable.ng\",\"display_url\":\"thecable.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":977717,\"friends_count\":4374,\"listed_count\":846,\"created_at\":\"Fri Oct 11 15:01:36 +0000 2013\",\"favourites_count\":3093,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":217605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485955811918684163\\/Zd2E7nxF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485955811918684163\\/Zd2E7nxF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1954402777\\/1655235212\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3716\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3717\":{\"id\":2482037701,\"id_str\":\"2482037701\",\"name\":\"Abiola Akodu\",\"screen_name\":\"The_man_abiola\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your step-daddy| ARCHITECT | Creative designer \\ud83d\\udc69\\u200d\\ud83c\\udfa8 | NOTION DESIGNS | CONTACT ME\\u260e\\ufe0f: +2347019503019 | E-mail \\ud83d\\udcec: akoduabiola2@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":132,\"friends_count\":226,\"listed_count\":0,\"created_at\":\"Wed May 07 12:34:29 +0000 2014\",\"favourites_count\":2591,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2482037701\\/1655583774\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3718\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2657,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2062,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3719\":{\"id\":1214830119484833792,\"id_str\":\"1214830119484833792\",\"name\":\"Fwc Token\",\"screen_name\":\"Innersecret3\",\"location\":\"Lagos, Nigeria\",\"description\":\"Am very focus & I stand by what I believe in, I set my goals and work hard towards it, I depend on myself and my only obligation is to my family & close friends\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":368,\"friends_count\":1014,\"listed_count\":3,\"created_at\":\"Wed Jan 08 08:44:38 +0000 2020\",\"favourites_count\":4217,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512021573997318147\\/nNkWsfzP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512021573997318147\\/nNkWsfzP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1214830119484833792\\/1649329063\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3720\":{\"id\":971333517778014208,\"id_str\":\"971333517778014208\",\"name\":\"CUPID AUTOS NG\",\"screen_name\":\"CupidAutosNG\",\"location\":\"LAGOS,NIGERIA\",\"description\":\"WELCOME TO CUPID AUTOS NG\\ud83e\\udd1dAUTOMOBILE DEALER\\u2728 INSTAGRAM:Cupid_AUTOS.NG\\/MANCHESTER UNITED FC. \\/RELIABLE BENZ PLUG\\ud83d\\udd0c WE SELL\\/WE BUY\\/WE PRE-ORDER \\ud83d\\udcf207085957744\",\"url\":\"https:\\/\\/t.co\\/egecHBjqtk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/egecHBjqtk\",\"expanded_url\":\"http:\\/\\/Wa.me\\/+2347085957744\",\"display_url\":\"Wa.me\\/+2347085957744\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3763,\"friends_count\":3244,\"listed_count\":3,\"created_at\":\"Wed Mar 07 10:35:31 +0000 2018\",\"favourites_count\":26997,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":37081,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482398059522842634\\/cqzLIy_Y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482398059522842634\\/cqzLIy_Y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/971333517778014208\\/1642266214\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3721\":{\"id\":958489440560779265,\"id_str\":\"958489440560779265\",\"name\":\"AdewaleMubarack\",\"screen_name\":\"AdewaleMubarack\",\"location\":\"Abuja, Nigeria\",\"description\":\"Hi, remember it is possible if you try. I am Adewale and with love to you, always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":238,\"friends_count\":1502,\"listed_count\":0,\"created_at\":\"Tue Jan 30 23:57:45 +0000 2018\",\"favourites_count\":4186,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549849761305530370\\/SdA_N87W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549849761305530370\\/SdA_N87W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/958489440560779265\\/1658353112\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3722\":{\"id\":1534518690527461379,\"id_str\":\"1534518690527461379\",\"name\":\"Viviannwodo_\",\"screen_name\":\"Viviannwodo_\",\"location\":\"Enugu, Nigeria\",\"description\":\"\\ud83d\\udc9e Pro Hairstylist\\/ B.ED in French\\n\\ud83d\\udc9eRealist \\n\\ud83d\\udc9eBi - lingual \\ud83c\\udde8\\ud83c\\uddf5\\ud83c\\uddf3\\ud83c\\uddec\\n\\ud83d\\udc9eGod first \\ud83e\\udd70\\n\\ud83d\\udea9 Stay away from me if you're not intentional\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Wed Jun 08 12:53:43 +0000 2022\",\"favourites_count\":377,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552249947923382273\\/qO4DXPV7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552249947923382273\\/qO4DXPV7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534518690527461379\\/1654757514\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3723\":{\"id\":1338167900490838018,\"id_str\":\"1338167900490838018\",\"name\":\"pioneer \\u03c0\\u03c0\\ud83d\\udc93\",\"screen_name\":\"gamar_imam\",\"location\":\"Lagos, Nigeria\",\"description\":\"web developer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":384,\"listed_count\":1,\"created_at\":\"Sun Dec 13 17:04:35 +0000 2020\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1338167900490838018\\/1659712689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3724\":{\"id\":1507797681938341892,\"id_str\":\"1507797681938341892\",\"name\":\"Simeon Ayendi\",\"screen_name\":\"ayendi_simeon\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Blogger and Financial Analyst\",\"url\":\"https:\\/\\/t.co\\/GbP3uRQl5f\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GbP3uRQl5f\",\"expanded_url\":\"http:\\/\\/www.konsize.xyz\",\"display_url\":\"konsize.xyz\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":158,\"listed_count\":0,\"created_at\":\"Sat Mar 26 19:13:07 +0000 2022\",\"favourites_count\":465,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":96,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545707891755286529\\/G04ZX8TB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545707891755286529\\/G04ZX8TB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507797681938341892\\/1659198031\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3725\":{\"id\":25868966,\"id_str\":\"25868966\",\"name\":\"Chakams\",\"screen_name\":\"chakams\",\"location\":\"nigeria\",\"description\":\"https:\\/\\/t.co\\/nJkBKmGLYa. Fatherhood...& Beyonce\",\"url\":\"https:\\/\\/t.co\\/02whuwMHPN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/02whuwMHPN\",\"expanded_url\":\"http:\\/\\/newsancenow.wordpress.com\",\"display_url\":\"newsancenow.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nJkBKmGLYa\",\"expanded_url\":\"http:\\/\\/News.Music.Sport.Tech\",\"display_url\":\"News.Music.Sport.Tech\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":1015,\"friends_count\":960,\"listed_count\":54,\"created_at\":\"Sun Mar 22 19:56:46 +0000 2009\",\"favourites_count\":915,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117112,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1288863437360160771\\/F2yHcPgK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1288863437360160771\\/F2yHcPgK_normal.jpg\",\"profile_link_color\":\"9D582E\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3726\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3727\":{\"id\":1512828788,\"id_str\":\"1512828788\",\"name\":\"\\ud83c\\udf1fFaith\",\"screen_name\":\"faithluseno\",\"location\":\"Ke\",\"description\":\"LIVE TRUTH \\/ LIVE RIGHT \\/ LIVE GODLY\\/GOODLY\",\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/mishiefinthetemple\",\"display_url\":\"youtube.com\\/user\\/mishiefin\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5212,\"friends_count\":5543,\"listed_count\":9,\"created_at\":\"Thu Jun 13 08:58:42 +0000 2013\",\"favourites_count\":9146,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1512828788\\/1657043375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3728\":{\"id\":835211810,\"id_str\":\"835211810\",\"name\":\"StopBadLeadership\\u2712\\ud83d\\udce7\",\"screen_name\":\"SaveThePeoplle\",\"location\":\"Abuja, Nigeria\",\"description\":\"Injustice is a threat to peace, coexistence and development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":464,\"listed_count\":2,\"created_at\":\"Thu Sep 20 09:52:19 +0000 2012\",\"favourites_count\":3499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/835211810\\/1632594200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3729\":{\"id\":1150749854144110592,\"id_str\":\"1150749854144110592\",\"name\":\"Anna Chizoba\",\"screen_name\":\"safareerealty\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"Real Estate Consultant\\/investment advisor. Dm for rentals, lease, buying, selling. Lover of beautiful structures, Turn on your notification.\",\"url\":\"https:\\/\\/t.co\\/2s0hA75jAY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2s0hA75jAY\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/safareerealty\",\"display_url\":\"instagram.com\\/safareerealty\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":176,\"friends_count\":184,\"listed_count\":0,\"created_at\":\"Mon Jul 15 12:51:59 +0000 2019\",\"favourites_count\":1856,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":620,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551650895921831936\\/3YFO-YuE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551650895921831936\\/3YFO-YuE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1150749854144110592\\/1657588783\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3730\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3731\":{\"id\":1468528632301817861,\"id_str\":\"1468528632301817861\",\"name\":\"Son of the Soil\",\"screen_name\":\"Ennys_Abbey\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am a Digital marketer & Graphic designer, a social commentator, an agent of change. #Branding #Politics #Leadership #Crypto #PiNetwork\",\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348140434651?text=i+want+more+information\",\"display_url\":\"wa.me\\/2348140434651?\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":399,\"listed_count\":8,\"created_at\":\"Wed Dec 08 10:31:39 +0000 2021\",\"favourites_count\":398,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468528632301817861\\/1658149317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3732\":{\"id\":1482356556813545473,\"id_str\":\"1482356556813545473\",\"name\":\"Nigeria youths for Peter Obi\",\"screen_name\":\"peterobimandate\",\"location\":\"Abuja, Nigeria\",\"description\":\"Everything Peter Obi\\/\\/Update Peter Obi...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237,\"friends_count\":225,\"listed_count\":3,\"created_at\":\"Sat Jan 15 14:18:54 +0000 2022\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482356556813545473\\/1659438195\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3733\":{\"id\":1491725022964105217,\"id_str\":\"1491725022964105217\",\"name\":\"Muyiwa Owen\",\"screen_name\":\"muyiwaowen\",\"location\":\"Nigeria\",\"description\":\"Wordpress website designer\\nPHP and Front-end developer\",\"url\":\"https:\\/\\/t.co\\/ByabPtyakR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ByabPtyakR\",\"expanded_url\":\"http:\\/\\/webpadi.com\",\"display_url\":\"webpadi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3521,\"friends_count\":13,\"listed_count\":2,\"created_at\":\"Thu Feb 10 10:45:47 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":731,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540947105698693122\\/G-0lhGk3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540947105698693122\\/G-0lhGk3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491725022964105217\\/1659410719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3734\":{\"id\":1481480998252646402,\"id_str\":\"1481480998252646402\",\"name\":\"Sunmola Abigail Oluwaferanmi\",\"screen_name\":\"SUPalivezobo\",\"location\":\"Lagos, Nigeria\",\"description\":\"physiotherapy student, University of Lagos\\/\\/Violinist\\/\\/A fashion designer\\/\\/Ardent lover of God\\/\\/social media volunteer @updgroup\\/\\/No 1 Zobo vendor @SUPaliveZobo\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Thu Jan 13 04:20:03 +0000 2022\",\"favourites_count\":40,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549644043499479042\\/dd4YcxHv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549644043499479042\\/dd4YcxHv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481480998252646402\\/1658298947\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3735\":{\"id\":1449752541378629634,\"id_str\":\"1449752541378629634\",\"name\":\"Crypto empire\",\"screen_name\":\"Cryptoempire19\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your number 1 Crypto information Plug.\\n\\nDisclaimer: My tweet is not an investment advice. DYOR, Start ur Crypto journey here\\nhttps:\\/\\/t.co\\/tp4vM3kIUL\",\"url\":\"https:\\/\\/t.co\\/B6dwb3jEPv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B6dwb3jEPv\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/aemilabravo\",\"display_url\":\"linktr.ee\\/aemilabravo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tp4vM3kIUL\",\"expanded_url\":\"https:\\/\\/amzn.to\\/3yGY2wg\",\"display_url\":\"amzn.to\\/3yGY2wg\",\"indices\":[126,149]}]}},\"protected\":false,\"followers_count\":47,\"friends_count\":160,\"listed_count\":11,\"created_at\":\"Sun Oct 17 15:02:14 +0000 2021\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":746,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475753622193512451\\/98L1hUYR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475753622193512451\\/98L1hUYR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3736\":{\"id\":1109235758701924354,\"id_str\":\"1109235758701924354\",\"name\":\"Kaduna Phones & Cars PLUG.\",\"screen_name\":\"Phone_Stores\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Phones and cars Dealer , \\u260e\\ufe0f Or WhatsApp 07032655719\\/ 08033110080\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8366,\"friends_count\":8359,\"listed_count\":6,\"created_at\":\"Fri Mar 22 23:29:48 +0000 2019\",\"favourites_count\":158375,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33371,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481505324624400386\\/byywnq6J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481505324624400386\\/byywnq6J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1109235758701924354\\/1618277573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3737\":{\"id\":1507072848157974530,\"id_str\":\"1507072848157974530\",\"name\":\"CityHunter Majestys\",\"screen_name\":\"CityHunterMaje1\",\"location\":\"Nigeria\",\"description\":\"COMEDIAN\",\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/majestysComedy\",\"display_url\":\"youtube.com\\/c\\/majestysCome\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 24 19:12:57 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507072848157974530\\/1649238032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3738\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3739\":{\"id\":943112178,\"id_str\":\"943112178\",\"name\":\"Nditah Sam \\ud83e\\udd80 #OBIdient\",\"screen_name\":\"nditah_sammy\",\"location\":\"Nigeria\",\"description\":\"CTO @ PMT | #AWSCommunityBuilder #PrismaAmbassad\\nSeek Truth, Be Kind! Tweets are mine.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":2249,\"listed_count\":4,\"created_at\":\"Mon Nov 12 09:03:53 +0000 2012\",\"favourites_count\":4708,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2234,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428023396244262912\\/T69NAMml_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428023396244262912\\/T69NAMml_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/943112178\\/1623483322\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3740\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3741\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3742\":{\"id\":433620593,\"id_str\":\"433620593\",\"name\":\"F.Fayankinnu&Co\",\"screen_name\":\"ffcproperties\",\"location\":\"Abuja\",\"description\":\"Estate Surveyors and Valuers, Property Consultants, Property Managers.\\nWe do:Valuation, Agency,(sales & lease), property management & more\",\"url\":\"https:\\/\\/t.co\\/XGOCfY9yO5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XGOCfY9yO5\",\"expanded_url\":\"https:\\/\\/ffayankinnu-co-estate-surveyors.business.site\",\"display_url\":\"\\u2026nnu-co-estate-surveyors.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":171,\"friends_count\":408,\"listed_count\":0,\"created_at\":\"Sat Dec 10 20:05:02 +0000 2011\",\"favourites_count\":122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554226105703403520\\/lSJFQnuK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554226105703403520\\/lSJFQnuK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/433620593\\/1601753715\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3743\":{\"id\":1347582459790192640,\"id_str\":\"1347582459790192640\",\"name\":\"Bo\\u00ef Flex\\ud83c\\udf1e\",\"screen_name\":\"BoiFlex_\",\"location\":\"Lagos\",\"description\":\"Bo\\u00ef Flexing to d\\u00e2h \\ud83c\\udf0d\\nlyrically xycho \\ud83e\\udd76\\ud83c\\udfb6 ll strongly believe I'm gonna take over \\ud83d\\udcaa\",\"url\":\"https:\\/\\/t.co\\/VoReNIeC4V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VoReNIeC4V\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/invites\\/contact\\/?i=15a6b79wvvpv7&utm_content=me8vbyz\",\"display_url\":\"instagram.com\\/invites\\/contac\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":438,\"friends_count\":182,\"listed_count\":0,\"created_at\":\"Fri Jan 08 16:36:20 +0000 2021\",\"favourites_count\":2865,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":264,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524351934039273473\\/DfwjltVK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524351934039273473\\/DfwjltVK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1347582459790192640\\/1652268894\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3744\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3745\":{\"id\":994199758406287361,\"id_str\":\"994199758406287361\",\"name\":\"DEXIT ARMY\\ud83d\\udcb9(MR DEXIT)\",\"screen_name\":\"Bigwig430\",\"location\":\"Nigeria\",\"description\":\"A Crypto trader and Investor, BLOCKCHAIN enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":609,\"friends_count\":831,\"listed_count\":6,\"created_at\":\"Wed May 09 12:57:48 +0000 2018\",\"favourites_count\":16010,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461387979017048072\\/HjkCAWBb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461387979017048072\\/HjkCAWBb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/994199758406287361\\/1649685977\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3746\":{\"id\":931326091,\"id_str\":\"931326091\",\"name\":\"Dr Opiyansky\",\"screen_name\":\"Opiyansky\",\"location\":\"Abuja\",\"description\":\"A Nigerian Patriot who loves to make friends and help people.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":62,\"friends_count\":247,\"listed_count\":0,\"created_at\":\"Wed Nov 07 05:38:10 +0000 2012\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487311163780218884\\/EP6lJaRR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487311163780218884\\/EP6lJaRR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/931326091\\/1643436539\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3747\":{\"id\":140880504,\"id_str\":\"140880504\",\"name\":\"IG:Real_McWIN\\u2122\\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\udde7\\ud83c\\uddef\",\"screen_name\":\"MasterMinderz\",\"location\":\"Lagos To Cape Town \",\"description\":\"Born Without Silver Spoon Working Hard To Get Golden Spoon.\\u2663La Madrid \\u2663Sales Specialist \\ud83d\\udc5c \\u2663 WizkidFC\\u2663 Hodophile\\u2708 \\u2663Brand Influencer\\u2663 #Obidient \\u2663Tech Geek \\ud83e\\udd13\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1996,\"friends_count\":703,\"listed_count\":11,\"created_at\":\"Thu May 06 16:07:59 +0000 2010\",\"favourites_count\":617,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551036400245637122\\/4_jjnJFu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551036400245637122\\/4_jjnJFu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/140880504\\/1508057803\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3748\":{\"id\":1549747236451631105,\"id_str\":\"1549747236451631105\",\"name\":\"Opta Punter\",\"screen_name\":\"OptaPunter\",\"location\":\"Somewhere in Nigeria\",\"description\":\"Opta Punter | football lover \\u26bd| \\u2022 #CR7 \\ud83d\\udc10| Arsenal\\ud83c\\udf88| Sport business \\ud83e\\ude99| sporty bet \\ud83d\\udd34 bet9ja \\ud83d\\udcb5 | adventure \\ud83d\\udeeb\\ud83c\\udfd6\\ufe0f\\ud83c\\udfdd\\ufe0f\\ud83c\\udf10\",\"url\":\"https:\\/\\/t.co\\/zbHTHXtlL4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zbHTHXtlL4\",\"expanded_url\":\"https:\\/\\/t.me\\/+LlS_o_0JOUxkYTlk\",\"display_url\":\"t.me\\/+LlS_o_0JOUxkY\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":57,\"listed_count\":0,\"created_at\":\"Wed Jul 20 13:25:26 +0000 2022\",\"favourites_count\":250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":64,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549832668329771010\\/kASyuuMe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549832668329771010\\/kASyuuMe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549747236451631105\\/1658343876\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3749\":{\"id\":1332786054546513922,\"id_str\":\"1332786054546513922\",\"name\":\"Yaasir\\u00a9\",\"screen_name\":\"Yaaseir\",\"location\":\"Nigeria\",\"description\":\"Follower Of Sheikh Ibrahim Zakzaky (H). I share news about Islamic movement & Sheikh Zakzaky (H) as well as sharing the victim's account of #ZariaMassacre. \\ud83d\\udcf7\\ud83d\\udcdd\",\"url\":\"https:\\/\\/t.co\\/PNDm7fujjg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PNDm7fujjg\",\"expanded_url\":\"http:\\/\\/www.imnig.org\",\"display_url\":\"imnig.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1538,\"friends_count\":1425,\"listed_count\":3,\"created_at\":\"Sat Nov 28 20:39:45 +0000 2020\",\"favourites_count\":2621,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4681,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530563089225207808\\/sHM4s_Gr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530563089225207808\\/sHM4s_Gr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1332786054546513922\\/1655234868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3750\":{\"id\":2965962406,\"id_str\":\"2965962406\",\"name\":\"kinny Rhymez RGM\",\"screen_name\":\"kinny_kinnygh\",\"location\":\"Ghana\",\"description\":\"Am kinny Rhymez a music producer, Beat maker and a musician. \\nCall or chat this number when you need beat or to book me +233240324720\\/brcityganster@gmail.com\",\"url\":\"https:\\/\\/t.co\\/UXhzNoGWyH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UXhzNoGWyH\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCd31tQcoXP2w4J833wxLABQ\",\"display_url\":\"youtube.com\\/channel\\/UCd31t\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":627,\"friends_count\":1572,\"listed_count\":1,\"created_at\":\"Wed Jan 07 12:40:38 +0000 2015\",\"favourites_count\":306,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":499,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1400512323840847874\\/7jyIYQCY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1400512323840847874\\/7jyIYQCY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2965962406\\/1622743135\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3751\":{\"id\":356370832,\"id_str\":\"356370832\",\"name\":\"PASTOR ELVIS O. ASORO\",\"screen_name\":\"elvisasoro\",\"location\":\"LAGOS , NIGERIA \",\"description\":\"MINISTER OF THE GOSPEL OF JESUS CHRIST AND WRITER. LEAD PASTOR, RESTORATION POWER OF GOD MINISTRY INTERNATIONAL, TRIUMPHANT. LAG. NIGERIA. I AM A WORLD CHANGER!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":178,\"listed_count\":4,\"created_at\":\"Tue Aug 16 19:09:18 +0000 2011\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/356370832\\/1450964262\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3752\":{\"id\":1491728260002156546,\"id_str\":\"1491728260002156546\",\"name\":\"Darlington\",\"screen_name\":\"Darling41595671\",\"location\":\"Abuja, Nigeria\",\"description\":\"Enjoy every day like is your last day , travel to new places\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Thu Feb 10 10:58:45 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491728785561071617\\/S_JjQB2P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491728785561071617\\/S_JjQB2P_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3753\":{\"id\":1553132452750802944,\"id_str\":\"1553132452750802944\",\"name\":\"Sammy Crowd\",\"screen_name\":\"CrowdSammy\",\"location\":\"nigeria\",\"description\":\"Hello, Samuel is my name, Am from West Africa. If you need to raise a serious fund because you have a serious business or problem? Kindly contact me!!\",\"url\":\"https:\\/\\/t.co\\/OKqWfBRHJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OKqWfBRHJX\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/sammy_crowd\",\"display_url\":\"fiverr.com\\/sammy_crowd\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Fri Jul 29 21:37:04 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553133079715274759\\/adPuD39Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553133079715274759\\/adPuD39Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553132452750802944\\/1659130860\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3754\":{\"id\":737928274203004928,\"id_str\":\"737928274203004928\",\"name\":\"Timora Inyang\",\"screen_name\":\"timora_inyang\",\"location\":\"Uyo, Akwa Ibom State, Nigeria\",\"description\":\"Crypto Enthusiast\\/Influencer \\nContent Creator | Community & Social Media Manager | @unboundfinance\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1643,\"friends_count\":2119,\"listed_count\":8,\"created_at\":\"Wed Jun 01 08:46:25 +0000 2016\",\"favourites_count\":8703,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2591,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488733296620183560\\/ClEsytGm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488733296620183560\\/ClEsytGm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/737928274203004928\\/1568934371\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3755\":{\"id\":3084028211,\"id_str\":\"3084028211\",\"name\":\"Lilian anazodo\",\"screen_name\":\"lilymatyr\",\"location\":\"Benin-City, Nigeria\",\"description\":\"\\ud83c\\udf39last born\\ud83c\\udf39| aquarius\\u2652\\ufe0f |digital enterprenuer| Goal getter\\ud83d\\udcb0\\ud83d\\udcb0\",\"url\":\"https:\\/\\/t.co\\/ufTf8unVQU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ufTf8unVQU\",\"expanded_url\":\"http:\\/\\/www.businesstelegraph.co.uk\",\"display_url\":\"businesstelegraph.co.uk\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":421,\"friends_count\":358,\"listed_count\":0,\"created_at\":\"Tue Mar 10 13:40:15 +0000 2015\",\"favourites_count\":772,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":431,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538458797139800064\\/G3YqfbuT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538458797139800064\\/G3YqfbuT_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3756\":{\"id\":1485540922666500097,\"id_str\":\"1485540922666500097\",\"name\":\"Tripplepanda_\",\"screen_name\":\"tripplepanda\",\"location\":\"\",\"description\":\"Follow on Instagram @tripplepanda_ Subscribe to my YouTube @Tripplepanda_comedy \\ud83d\\udccaCrypto trader \\ud83e\\ude7aMedical Student \\ud83d\\ude0e6\\u20194ft\",\"url\":\"https:\\/\\/t.co\\/tSBHFnASf9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tSBHFnASf9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCO3iBRei3GEwlJFy4KIP-dg\",\"display_url\":\"youtube.com\\/channel\\/UCO3iB\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":605,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Mon Jan 24 09:12:40 +0000 2022\",\"favourites_count\":369,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1507457627667763252\\/heLNIWns_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1507457627667763252\\/heLNIWns_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485540922666500097\\/1643020353\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3757\":{\"id\":1399943458920402949,\"id_str\":\"1399943458920402949\",\"name\":\"Nigerians for peace and justice\",\"screen_name\":\"NFPJNig\",\"location\":\"Nigeria \",\"description\":\"Mobilising Civic Action to Counter Hate Speech and Violent Extremism both Online and Offline. Unity and Security? Vote Peter Obi for 9ja President #PeterObi2023\",\"url\":\"https:\\/\\/t.co\\/PsTqTr9Q2M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PsTqTr9Q2M\",\"expanded_url\":\"https:\\/\\/www.end-violence.org\\/members\\/african-cultural-awareness-norway\",\"display_url\":\"end-violence.org\\/members\\/africa\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1715,\"friends_count\":3039,\"listed_count\":1,\"created_at\":\"Wed Jun 02 04:19:06 +0000 2021\",\"favourites_count\":1871,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4963,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536555310600822784\\/9KoxG7-7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536555310600822784\\/9KoxG7-7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399943458920402949\\/1659890608\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3758\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3759\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3760\":{\"id\":908861707363209216,\"id_str\":\"908861707363209216\",\"name\":\"Brandor X Inc.\",\"screen_name\":\"brandorxinc\",\"location\":\"Nigeria\",\"description\":\"Full Service Brand Consulting Agency \\ud83c\\udfaf Strategy | Visual Design | Brand Development\\/Management | Marketing & Promotions | Content | Brand Audit\\/Optimisation\",\"url\":\"https:\\/\\/t.co\\/Xpd0oCJ5vK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Xpd0oCJ5vK\",\"expanded_url\":\"http:\\/\\/www.brandorxinc.com\",\"display_url\":\"brandorxinc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":92,\"friends_count\":12,\"listed_count\":3,\"created_at\":\"Sat Sep 16 01:14:51 +0000 2017\",\"favourites_count\":409,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554986321931902978\\/E5G0dMLO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554986321931902978\\/E5G0dMLO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/908861707363209216\\/1659573693\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3761\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3762\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3763\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3764\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3765\":{\"id\":1126018021288480768,\"id_str\":\"1126018021288480768\",\"name\":\"Skillerdo superstar\",\"screen_name\":\"skillerdo\",\"location\":\"Lekki\",\"description\":\"I'm de man skillerdo Bae\\ud83c\\udf7e\\\" romantical i sing for yo..\\\"pose for de picture\\\"\\ud83d\\udcf8....@ https:\\/\\/t.co\\/N8Kq1ZLCJp\\nWhatsapp\\/Call me on ma +2348164705278\",\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed May 08 06:56:31 +0000 2019\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3766\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3767\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3768\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3769\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3770\":{\"id\":756445926735114240,\"id_str\":\"756445926735114240\",\"name\":\"Emmanuel SObio\\ud83c\\uddf7\\ud83c\\uddfa\",\"screen_name\":\"sobioemma\",\"location\":\"Nigeria\",\"description\":\"NFTs, Crypto, Digital Books.\",\"url\":\"https:\\/\\/t.co\\/FYYEoTIQ0V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FYYEoTIQ0V\",\"expanded_url\":\"http:\\/\\/bobbysobio.gumroad.com\",\"display_url\":\"bobbysobio.gumroad.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":488,\"listed_count\":6,\"created_at\":\"Fri Jul 22 11:08:57 +0000 2016\",\"favourites_count\":19156,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7869,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1446683983929085956\\/q1f_2e4w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1446683983929085956\\/q1f_2e4w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/756445926735114240\\/1633793106\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3771\":{\"id\":1489258822484914178,\"id_str\":\"1489258822484914178\",\"name\":\"Ayomide Gold\",\"screen_name\":\"Ayomidegolds15\",\"location\":\"Lagos, Nigeria\",\"description\":\"Public Figure\",\"url\":\"https:\\/\\/t.co\\/kJ1hn7Trs5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kJ1hn7Trs5\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC19-ZT4h3aJYKy1k4ZHU6fw\",\"display_url\":\"youtube.com\\/channel\\/UC19-Z\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25,\"friends_count\":241,\"listed_count\":0,\"created_at\":\"Thu Feb 03 15:26:01 +0000 2022\",\"favourites_count\":119,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489259007227273219\\/ysIZNH7F_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489259007227273219\\/ysIZNH7F_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489258822484914178\\/1643902114\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3772\":{\"id\":1483159936012062723,\"id_str\":\"1483159936012062723\",\"name\":\"Bright Obodoma\",\"screen_name\":\"BObodoma\",\"location\":\"university of Nigeria nsukka\",\"description\":\"enjoy solving problems\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Mon Jan 17 19:31:23 +0000 2022\",\"favourites_count\":131,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":108,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492280874641068036\\/rH_BxV9G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492280874641068036\\/rH_BxV9G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483159936012062723\\/1644617665\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3773\":{\"id\":1487352150,\"id_str\":\"1487352150\",\"name\":\"Ether\\u26a1\\ufe0f\",\"screen_name\":\"EtherKavalle\",\"location\":\"Calabar, Nigeria\",\"description\":\"Conscious||Aware ||Entrepreneur ||Writer ||FreeThinker ||Empathic || #NFT #Crypto #Metaverse Nerd #Bnb #Bitcoin #BTC #Cryptocurrency\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":411,\"friends_count\":1581,\"listed_count\":4,\"created_at\":\"Thu Jun 06 09:59:11 +0000 2013\",\"favourites_count\":1595,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8480,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551388483855564800\\/nVKLDHqR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551388483855564800\\/nVKLDHqR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487352150\\/1656604068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3774\":{\"id\":70808549,\"id_str\":\"70808549\",\"name\":\"Phillip Ikuvbogie\",\"screen_name\":\"truliewezt\",\"location\":\"Lagos, Nigeria\",\"description\":\"Writer | Developer\",\"url\":\"https:\\/\\/t.co\\/LwUSHRb1x7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LwUSHRb1x7\",\"expanded_url\":\"http:\\/\\/growthblueprint.org\",\"display_url\":\"growthblueprint.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":545,\"listed_count\":0,\"created_at\":\"Tue Sep 01 22:41:29 +0000 2009\",\"favourites_count\":2474,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":245,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/892740138773688320\\/vpHEdrtT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/892740138773688320\\/vpHEdrtT_normal.jpg\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3775\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3776\":{\"id\":987433921292926976,\"id_str\":\"987433921292926976\",\"name\":\"esKaper_kek\\ud83d\\udca6\",\"screen_name\":\"KofiEkyirKwakoh\",\"location\":\"Ghana\",\"description\":\"fairness & justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":306,\"listed_count\":1,\"created_at\":\"Fri Apr 20 20:52:47 +0000 2018\",\"favourites_count\":1975,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1406659108242067459\\/9vRa_zcP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1406659108242067459\\/9vRa_zcP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/987433921292926976\\/1646643379\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3777\":{\"id\":1541712126166941696,\"id_str\":\"1541712126166941696\",\"name\":\"Concerned Nigerians 4 Peter Obi\",\"screen_name\":\"CN4PO\",\"location\":\"Abuja\",\"description\":\"Official Page of Concerned Nigerians for Peter Obi support (CNPO)\",\"url\":\"https:\\/\\/t.co\\/bttwwxHdjL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bttwwxHdjL\",\"expanded_url\":\"https:\\/\\/concernednigeria4obi.com\",\"display_url\":\"concernednigeria4obi.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Tue Jun 28 09:18:04 +0000 2022\",\"favourites_count\":19,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545428832592748544\\/vbi5AmHb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545428832592748544\\/vbi5AmHb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541712126166941696\\/1656408321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3778\":{\"id\":1357229682882707457,\"id_str\":\"1357229682882707457\",\"name\":\"Invincible \\u2764\\ufe0f\\ud83d\\udd4a\",\"screen_name\":\"InvincibleHighD\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udca6 investigative journalist\\u2022 Nigerian activist \\u2022Entrepreneur\\ud83d\\udcb0 \\u2022IML Student\\ud83d\\udc68\\u200d\\ud83d\\udcbb \\u2022\\ud83d\\udc68\\u200d\\ud83c\\udf93\\ud83d\\udc68\\u200d\\ud83c\\udf93 #God make me to be special \\u270c\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":685,\"listed_count\":0,\"created_at\":\"Thu Feb 04 07:29:22 +0000 2021\",\"favourites_count\":1099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":229,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1357229682882707457\\/1629735616\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3779\":{\"id\":390649656,\"id_str\":\"390649656\",\"name\":\"Nosa Blog\",\"screen_name\":\"nosablog\",\"location\":\"Lagos, Nigeria\",\"description\":\"24\\/7News\\ud83d\\udc25 celebrity gossip\\ud83d\\udc12 stories\\ud83d\\udc27 brand influencer \\ud83e\\udd85 Content writer\",\"url\":\"https:\\/\\/t.co\\/Q88cLi34r7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Q88cLi34r7\",\"expanded_url\":\"http:\\/\\/www.nosablog.com\",\"display_url\":\"nosablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2182,\"friends_count\":2494,\"listed_count\":4,\"created_at\":\"Fri Oct 14 09:35:21 +0000 2011\",\"favourites_count\":2583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":86256,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488539583684005899\\/vP3jNjVV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488539583684005899\\/vP3jNjVV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/390649656\\/1643730468\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3780\":{\"id\":1446142602026258436,\"id_str\":\"1446142602026258436\",\"name\":\"Nwachukwu David Chukwudumebi\",\"screen_name\":\"exponentnwachae\",\"location\":\"Lagos, Nigeria\",\"description\":\"50BG\\ud83c\\udf1f777K followers\\ud83d\\udc65, 7 figurer \\ud83d\\udc49https:\\/\\/t.co\\/JKPfVBX418 || Crypto King \\ud83d\\udc51https:\\/\\/t.co\\/urzBowm423 || Social Media booster https:\\/\\/t.co\\/vWnarDKS0K web 1 https\",\"url\":\"https:\\/\\/t.co\\/bFytXB5Cbj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bFytXB5Cbj\",\"expanded_url\":\"https:\\/\\/cb.run\\/qQG4\",\"display_url\":\"cb.run\\/qQG4\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JKPfVBX418\",\"expanded_url\":\"http:\\/\\/cb.run\\/6HND\",\"display_url\":\"cb.run\\/6HND\",\"indices\":[33,56]},{\"url\":\"https:\\/\\/t.co\\/urzBowm423\",\"expanded_url\":\"http:\\/\\/cb.run\\/nX4v\",\"display_url\":\"cb.run\\/nX4v\",\"indices\":[73,96]},{\"url\":\"https:\\/\\/t.co\\/vWnarDKS0K\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3zGBKrO\",\"display_url\":\"bit.ly\\/3zGBKrO\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":1722,\"friends_count\":4981,\"listed_count\":3,\"created_at\":\"Thu Oct 07 15:58:35 +0000 2021\",\"favourites_count\":8053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546015570268766209\\/qciS8Nyr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546015570268766209\\/qciS8Nyr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1446142602026258436\\/1650826483\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3781\":{\"id\":1162770983884918786,\"id_str\":\"1162770983884918786\",\"name\":\"Favour-laugh\",\"screen_name\":\"FavourLaugh\",\"location\":\"Benin-City, Nigeria\",\"description\":\"God first ,never look down on any man \\ud83e\\udd85\\ud83e\\udd85\\ud83e\\udd85\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":82,\"listed_count\":0,\"created_at\":\"Sat Aug 17 17:00:00 +0000 2019\",\"favourites_count\":486,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":313,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517614857704677377\\/JZTLtYzH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517614857704677377\\/JZTLtYzH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3782\":{\"id\":1105648627,\"id_str\":\"1105648627\",\"name\":\"CHIDEX OBANI \\ud83d\\udca5\\ud83d\\udca5\\ud83d\\udca5\",\"screen_name\":\"chidexobani\",\"location\":\"Lagos, Nigeria\",\"description\":\"UngunKnownMen, Music Artiste,\\nComedian, Dancer, \\n @manutd fan\\nI AM SWAG\",\"url\":\"https:\\/\\/t.co\\/9whjCNy6pd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9whjCNy6pd\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/ng\\/album\\/blood-of-jesus-single\\/1528790745\",\"display_url\":\"music.apple.com\\/ng\\/album\\/blood\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":535,\"friends_count\":802,\"listed_count\":2,\"created_at\":\"Sun Jan 20 07:38:51 +0000 2013\",\"favourites_count\":3616,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4247,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501155029641838596\\/_jPYbW2B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501155029641838596\\/_jPYbW2B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1105648627\\/1616417938\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3783\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2910,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3784\":{\"id\":1380609695602376704,\"id_str\":\"1380609695602376704\",\"name\":\"SammyGray\",\"screen_name\":\"SammyGrayE3\",\"location\":\"Nigeria\",\"description\":\"influencer, Crypto enthusiast, Graphic designer, Community manager.\\nlet's talk about crypto\\ud83d\\ude0a\\n\\n#DeFi #Metaverse, #NFT\\n$paw #Paw\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":96,\"friends_count\":651,\"listed_count\":2,\"created_at\":\"Fri Apr 09 19:53:19 +0000 2021\",\"favourites_count\":1042,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1638,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514641160261845000\\/nBOn5Yne_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514641160261845000\\/nBOn5Yne_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1380609695602376704\\/1649953568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3785\":{\"id\":1519705607472881666,\"id_str\":\"1519705607472881666\",\"name\":\"Andrew Kunz\",\"screen_name\":\"AndrewKunz7\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Thu Apr 28 15:50:43 +0000 2022\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519706516122742785\\/-Fo-mEbQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519706516122742785\\/-Fo-mEbQ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3786\":{\"id\":1517222071415279616,\"id_str\":\"1517222071415279616\",\"name\":\"Kevinice\",\"screen_name\":\"Kevinice0\",\"location\":\"\",\"description\":\"Kevin Ezekiel is a Nigerian based rapper and singer popularly known as KEVINICE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Thu Apr 21 19:21:57 +0000 2022\",\"favourites_count\":72,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":23,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524829371596427264\\/sqbMOxkz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524829371596427264\\/sqbMOxkz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3787\":{\"id\":4403164115,\"id_str\":\"4403164115\",\"name\":\"\\ud835\\udd6e\\ud835\\udd8d\\ud835\\udd9a\\ud835\\udd90\\ud835\\udd9c\\ud835\\udd9a\\ud835\\udd8a\\ud835\\udd87\\ud835\\udd9a\\ud835\\udd90\\ud835\\udd86\\ud83d\\udc05\\ud83d\\udd57\",\"screen_name\":\"Zeus_el_Savage\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":153,\"friends_count\":438,\"listed_count\":0,\"created_at\":\"Mon Dec 07 08:59:57 +0000 2015\",\"favourites_count\":5145,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4183,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536411238984556548\\/3Wluw_jX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536411238984556548\\/3Wluw_jX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4403164115\\/1655293431\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3788\":{\"id\":829298967456407553,\"id_str\":\"829298967456407553\",\"name\":\"OmoHalleluyah\",\"screen_name\":\"oye_goke\",\"location\":\"Oyo, Nigeria\",\"description\":\"Leo \\u264c\\ufe0f Unpredictable \\ud83d\\ude43 On a Different diet \\ud83d\\ude0e Manchester United... I FoLLow BaCk ASAP\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":209,\"friends_count\":343,\"listed_count\":0,\"created_at\":\"Wed Feb 08 12:00:56 +0000 2017\",\"favourites_count\":1800,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1270990407426551810\\/3g-0VkP9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1270990407426551810\\/3g-0VkP9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829298967456407553\\/1659650719\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3789\":{\"id\":1483533768875024390,\"id_str\":\"1483533768875024390\",\"name\":\"Abdulmanaf\",\"screen_name\":\"RealAbdulmanaf\",\"location\":\"Nigeria\",\"description\":\"Public Figure || Digital Engineer || NFT spy || Crypto Enthusiasts || Pioneer\",\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/s7sjp4S4Fb\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/RealAbdulmanaf\",\"display_url\":\"facebook.com\\/RealAbdulmanaf\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":173,\"listed_count\":30,\"created_at\":\"Tue Jan 18 20:16:53 +0000 2022\",\"favourites_count\":1404,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491184381653917699\\/eA_n-_aF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483533768875024390\\/1644361307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3790\":{\"id\":880726510734389248,\"id_str\":\"880726510734389248\",\"name\":\"Herald_digital\",\"screen_name\":\"herald_digitals\",\"location\":\"Lagos, Nigeria\",\"description\":\"A creative &design company that transforms individual & organization for the digital economy.\\n#branding|#logodesign|#webdesign|#animation etc etc\\n+2348067658996\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":704,\"listed_count\":2,\"created_at\":\"Fri Jun 30 09:55:38 +0000 2017\",\"favourites_count\":501,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011427953573890\\/NllQyvRr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011427953573890\\/NllQyvRr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880726510734389248\\/1656166269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3791\":{\"id\":1468528632301817861,\"id_str\":\"1468528632301817861\",\"name\":\"Son of the Soil\",\"screen_name\":\"Ennys_Abbey\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am a Digital marketer & Graphic designer, a social commentator, an agent of change. #Branding #Politics #Leadership #Crypto #PiNetwork\",\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348140434651?text=i+want+more+information\",\"display_url\":\"wa.me\\/2348140434651?\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":399,\"listed_count\":8,\"created_at\":\"Wed Dec 08 10:31:39 +0000 2021\",\"favourites_count\":398,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468528632301817861\\/1658149317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3792\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3793\":{\"id\":1315945693861875712,\"id_str\":\"1315945693861875712\",\"name\":\"iNeed2pee\",\"screen_name\":\"AlwaysWorried__\",\"location\":\"Lagos, Nigeria\",\"description\":\"Obidient Youth ||\\ud83c\\uddf3\\ud83c\\uddec Bayern FC- MGM, Mane, Gnabry,Muller #MiaSanMia || Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":898,\"friends_count\":1512,\"listed_count\":3,\"created_at\":\"Tue Oct 13 09:21:30 +0000 2020\",\"favourites_count\":236,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":801,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554097629205827584\\/5SdR_KO6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554097629205827584\\/5SdR_KO6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1315945693861875712\\/1658939547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3794\":{\"id\":2731185005,\"id_str\":\"2731185005\",\"name\":\"Cyptopreacher\",\"screen_name\":\"Rumerule\",\"location\":\"Lagos, Nigeria\",\"description\":\"Blockchain& Fintech Writer|| #Bitcoin lover||Founder CPBA\\/\\/ Co-Founder ThinkCrypto\\/\\/Digital-Market analyst @Channelstv\\/\\/ https:\\/\\/t.co\\/ClkOl0jpum\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ClkOl0jpum\",\"expanded_url\":\"http:\\/\\/t.me\\/thecryptopreac\",\"display_url\":\"t.me\\/thecryptopreac\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":1550,\"friends_count\":1239,\"listed_count\":15,\"created_at\":\"Fri Aug 01 23:16:19 +0000 2014\",\"favourites_count\":6569,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4653,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2731185005\\/1642407607\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3795\":{\"id\":1357229682882707457,\"id_str\":\"1357229682882707457\",\"name\":\"Invincible \\u2764\\ufe0f\\ud83d\\udd4a\",\"screen_name\":\"InvincibleHighD\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udca6 investigative journalist\\u2022 Nigerian activist \\u2022Entrepreneur\\ud83d\\udcb0 \\u2022IML Student\\ud83d\\udc68\\u200d\\ud83d\\udcbb \\u2022\\ud83d\\udc68\\u200d\\ud83c\\udf93\\ud83d\\udc68\\u200d\\ud83c\\udf93 #God make me to be special \\u270c\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":685,\"listed_count\":0,\"created_at\":\"Thu Feb 04 07:29:22 +0000 2021\",\"favourites_count\":1099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":229,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1357229840315858944\\/a_cqozjp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1357229682882707457\\/1629735616\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3796\":{\"id\":1112132117876670464,\"id_str\":\"1112132117876670464\",\"name\":\"Dimples\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Twenty_naira\",\"location\":\"Nigeria\",\"description\":\"I'm an administrator with managerial techniques.\\nI'm proud to be an African.\\nHausa empire\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":310,\"listed_count\":0,\"created_at\":\"Sat Mar 30 23:18:54 +0000 2019\",\"favourites_count\":10379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484127262610006018\\/4_VgaYRF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484127262610006018\\/4_VgaYRF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1112132117876670464\\/1650041610\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3797\":{\"id\":1261537373915090944,\"id_str\":\"1261537373915090944\",\"name\":\"\\ud83c\\udfa1\\u2620Ogboju Ode ninu igbo Irumole \\ud83d\\udca5\\u2693\",\"screen_name\":\"ElderMakana\",\"location\":\"Lagos, Nigeria\",\"description\":\"#likeMind \\n#FootballLover\\n#Blackpool fan \\u26bd\\ufe0f {The Seasiders}\\n#Business analyst\\n#Sales and Marketing Specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":688,\"friends_count\":775,\"listed_count\":0,\"created_at\":\"Sat May 16 06:02:28 +0000 2020\",\"favourites_count\":1206,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515795825535995918\\/15_yRNDE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515795825535995918\\/15_yRNDE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261537373915090944\\/1650229034\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3798\":{\"id\":1517815043844358145,\"id_str\":\"1517815043844358145\",\"name\":\"DY WORDS\",\"screen_name\":\"Adedayo_AJ\",\"location\":\"Lagos, Nigeria\",\"description\":\"Focusing on:\\n\\u2022HUMAN DEVELOPMENT\\u2022BUSINESS OPPORTUNITIES\\u2022RELATIONSHIP SELF-DISCOVERY\\u2022REAL-LIFE EXPERIENCES\\nGROWTH\\u2022FINDING PURPOSE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":240,\"listed_count\":0,\"created_at\":\"Sat Apr 23 10:38:54 +0000 2022\",\"favourites_count\":1445,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":379,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536255666368745472\\/Tj35Ot9f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517815043844358145\\/1650711890\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3799\":{\"id\":1301589823338278912,\"id_str\":\"1301589823338278912\",\"name\":\"trender_sam\",\"screen_name\":\"trender_sam\",\"location\":\"Nigeria\",\"description\":\"omo, sha I just dey!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Thu Sep 03 18:36:31 +0000 2020\",\"favourites_count\":436,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1308750802316656641\\/UQfXieMV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1308750802316656641\\/UQfXieMV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301589823338278912\\/1620834167\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3800\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3801\":{\"id\":1252284507270643713,\"id_str\":\"1252284507270643713\",\"name\":\"Ordinary Alhaji\",\"screen_name\":\"Humanity_First5\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Humanitarian\\ud83d\\ude4c Alutarian\\u270a\\ud83c\\udffdResearcher\\u270d\\ufe0f Thinker\\ud83d\\ude47\\ud83c\\udffd\\u200d\\u2642\\ufe0fPolitical Scientist\\ud83d\\udcdaConscienstist\\ud83e\\udd26Motivator\\ud83d\\udcaa Volunteer \\ud83d\\udc6b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":552,\"friends_count\":411,\"listed_count\":0,\"created_at\":\"Mon Apr 20 17:14:51 +0000 2020\",\"favourites_count\":402,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":137,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505131996321927170\\/ON9ZzcvU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505131996321927170\\/ON9ZzcvU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1252284507270643713\\/1647686406\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3802\":{\"id\":1077638887,\"id_str\":\"1077638887\",\"name\":\"ArizonaLFC\",\"screen_name\":\"ayodejiarizona\",\"location\":\"Lagos Nigeria \",\"description\":\"I'm not a perfect gentleman proudly #Humanitarian #LFCFamily #YNWA #Sagittarius #TeamChange #GoodLife #EndBadgoveranceinNigeria Follow me and I will follow back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1648,\"friends_count\":2709,\"listed_count\":5,\"created_at\":\"Thu Jan 10 20:37:45 +0000 2013\",\"favourites_count\":9972,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6978,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503119739442417666\\/tl-e9hvO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503119739442417666\\/tl-e9hvO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1077638887\\/1593708882\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3803\":{\"id\":837919024600199168,\"id_str\":\"837919024600199168\",\"name\":\"Amb E.O.A\",\"screen_name\":\"EOAlakpodia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Crypto Investor, Real Estate Developer, Information scientist, Politics and involve actively in changing life\\u2019s through Giving\",\"url\":\"https:\\/\\/t.co\\/JMlsDtuxLc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JMlsDtuxLc\",\"expanded_url\":\"http:\\/\\/oaf.com.ng\",\"display_url\":\"oaf.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":41,\"friends_count\":248,\"listed_count\":9,\"created_at\":\"Sat Mar 04 06:53:58 +0000 2017\",\"favourites_count\":466,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":304,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1494256359063306242\\/WxqH0UZo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1494256359063306242\\/WxqH0UZo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/837919024600199168\\/1659891183\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3804\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3805\":{\"id\":1484552005519646724,\"id_str\":\"1484552005519646724\",\"name\":\"LEADER OF TOMORROW\",\"screen_name\":\"werey_mecho\",\"location\":\"Lagos, Nigeria\",\"description\":\"SKILLED ENOUGH \\ud83e\\ude9b TO TAKE IT APART \\ud83d\\udd29 ENOUGH TO PUT IT BACK IN PLACE \\ud83d\\udcaf SMART ENOUGH TO HIDE THE EXTRA PARTS \\ud83e\\uddf0 WHEN I\\u2019M DONE \\ud83c\\udd97\\ud83d\\udee0 #mechanicalengineering\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":339,\"friends_count\":351,\"listed_count\":0,\"created_at\":\"Fri Jan 21 15:42:44 +0000 2022\",\"favourites_count\":648,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498893064550637572\\/ZWayNme3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498893064550637572\\/ZWayNme3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484552005519646724\\/1646198940\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3806\":{\"id\":28535468,\"id_str\":\"28535468\",\"name\":\"#Biafra is our homeland\",\"screen_name\":\"Children_light1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am an avid supporter of Biafra freedom struggle led by our reverend leader Onyendu Mazi Nnamdi Kanu, the only man who defeated Nige(ria) cabals and caliphate.\",\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"expanded_url\":\"http:\\/\\/www.ipobusa.org\",\"display_url\":\"ipobusa.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":580,\"friends_count\":2136,\"listed_count\":0,\"created_at\":\"Fri Apr 03 10:03:40 +0000 2009\",\"favourites_count\":66761,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51686,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/28535468\\/1647688738\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3807\":{\"id\":28535468,\"id_str\":\"28535468\",\"name\":\"#Biafra is our homeland\",\"screen_name\":\"Children_light1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am an avid supporter of Biafra freedom struggle led by our reverend leader Onyendu Mazi Nnamdi Kanu, the only man who defeated Nige(ria) cabals and caliphate.\",\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4gjONSkoQQ\",\"expanded_url\":\"http:\\/\\/www.ipobusa.org\",\"display_url\":\"ipobusa.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":580,\"friends_count\":2136,\"listed_count\":0,\"created_at\":\"Fri Apr 03 10:03:40 +0000 2009\",\"favourites_count\":66761,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51686,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480448159100944385\\/C64N37D6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/28535468\\/1647688738\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3808\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3809\":{\"id\":852806747160956929,\"id_str\":\"852806747160956929\",\"name\":\"Thomas Grace\",\"screen_name\":\"GraceoxfordAgt\",\"location\":\"Egbeda, Nigeria\",\"description\":\"I'm a Realtor, A Real Estate Consultant and above all Chartered accountant. @oxfordgroupng\\nemail:grace.thomas@oxfordintgroup.com \\nWhatsApp: +2348134008387\",\"url\":\"https:\\/\\/t.co\\/M4HtqUojHt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M4HtqUojHt\",\"expanded_url\":\"http:\\/\\/www.oxfordgroupafrica.com\",\"display_url\":\"oxfordgroupafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":91,\"listed_count\":0,\"created_at\":\"Fri Apr 14 08:52:27 +0000 2017\",\"favourites_count\":1618,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493695783803232259\\/TjAHz0OV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493695783803232259\\/TjAHz0OV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/852806747160956929\\/1657150703\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3810\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3811\":{\"id\":1468528632301817861,\"id_str\":\"1468528632301817861\",\"name\":\"Son of the Soil\",\"screen_name\":\"Ennys_Abbey\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am a Digital marketer & Graphic designer, a social commentator, an agent of change. #Branding #Politics #Leadership #Crypto #PiNetwork\",\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6khahwlm44\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348140434651?text=i+want+more+information\",\"display_url\":\"wa.me\\/2348140434651?\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":399,\"listed_count\":8,\"created_at\":\"Wed Dec 08 10:31:39 +0000 2021\",\"favourites_count\":398,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555311547366445063\\/ibwfKPiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468528632301817861\\/1658149317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3812\":{\"id\":1227037499765202947,\"id_str\":\"1227037499765202947\",\"name\":\"Raywonders Art\",\"screen_name\":\"RaywondersA\",\"location\":\"Edo, Nigeria\",\"description\":\"Hi, am Raymond, a Medical student and also a Digital Painter. I love reading, Painting and making new friends\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":566,\"friends_count\":574,\"listed_count\":0,\"created_at\":\"Tue Feb 11 01:12:07 +0000 2020\",\"favourites_count\":2464,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":981,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1306299941829120000\\/xSTQDWV1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1306299941829120000\\/xSTQDWV1_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3813\":{\"id\":1356313741684518912,\"id_str\":\"1356313741684518912\",\"name\":\"Dennis Micah\",\"screen_name\":\"Deni_kuddz\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"NIGERIAN \\ud83c\\uddf3\\ud83c\\uddec\\n ||Geologist \\ud83d\\udee0\\ud83d\\udd28\\n||Manchester united \\u26bd\\ud83d\\udd34\\ud83d\\udd34\\n || LEO \\u264c\\n||Web developer\\n||ASTROW\\ud83c\\udf0dRLD\\ud83d\\ude80\\ud83d\\ude80\\n|| Lab scientist\\n||Virtual Assistant\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1320,\"friends_count\":1733,\"listed_count\":2,\"created_at\":\"Mon Feb 01 18:49:58 +0000 2021\",\"favourites_count\":5776,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1381,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536030228455227393\\/dKqrGgcZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536030228455227393\\/dKqrGgcZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356313741684518912\\/1638756142\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3814\":{\"id\":1440939006783492100,\"id_str\":\"1440939006783492100\",\"name\":\"NE POINT\",\"screen_name\":\"ne__point\",\"location\":\"Assam\",\"description\":\"Reach for Resurgence\",\"url\":\"https:\\/\\/t.co\\/7OLCp4KSqV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7OLCp4KSqV\",\"expanded_url\":\"http:\\/\\/nepoint.in\",\"display_url\":\"nepoint.in\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":289,\"friends_count\":260,\"listed_count\":1,\"created_at\":\"Thu Sep 23 07:20:20 +0000 2021\",\"favourites_count\":117,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":189,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1440995954790780931\\/d26NKvaJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1440995954790780931\\/d26NKvaJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1440939006783492100\\/1632400653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3815\":{\"id\":1302372543307882499,\"id_str\":\"1302372543307882499\",\"name\":\"kinqbrizy\",\"screen_name\":\"kinqbrizy1\",\"location\":\"Nigeria\",\"description\":\"I AM A DEMIGOD \\ud83d\\udc7d Bookings: \\ud83d\\udce7 Okoliep909@gmail.com \\u260e\\ufe0f 09035229540 WANT YOU OUT NOW!! \\ud83d\\udc47\",\"url\":\"https:\\/\\/t.co\\/WXl5yr37si\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WXl5yr37si\",\"expanded_url\":\"https:\\/\\/streamlink.to\\/iykeman-Kinqbrizy-want-you\",\"display_url\":\"streamlink.to\\/iykeman-Kinqbr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1063,\"friends_count\":936,\"listed_count\":0,\"created_at\":\"Sat Sep 05 22:26:43 +0000 2020\",\"favourites_count\":11210,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1986,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491761085728403458\\/td8JFaHc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491761085728403458\\/td8JFaHc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302372543307882499\\/1599345448\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3816\":{\"id\":1368603054342299652,\"id_str\":\"1368603054342299652\",\"name\":\"Chuks\",\"screen_name\":\"Chuks238_\",\"location\":\"\",\"description\":\"I am the most friendly being that ever lives\\ud83d\\ude0d\\ud83e\\udd38\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1248,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 07 16:43:20 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1368603054342299652\\/1652602455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3817\":{\"id\":1273527985681969153,\"id_str\":\"1273527985681969153\",\"name\":\"kingkizito7\",\"screen_name\":\"OruOnyedikachi\",\"location\":\"Abakaliki\",\"description\":\"crypto is the future\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":758,\"listed_count\":8,\"created_at\":\"Thu Jun 18 08:08:40 +0000 2020\",\"favourites_count\":7412,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520003293472337920\\/tcqgwTAk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520003293472337920\\/tcqgwTAk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1273527985681969153\\/1656361234\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3818\":{\"id\":1247316623985344512,\"id_str\":\"1247316623985344512\",\"name\":\"wapcodehubsite\\u26a1 \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddfa\\ud83c\\uddf8\\u2694\\ufe0f\",\"screen_name\":\"wapcodehubsite\",\"location\":\"Owerri, Nigeria\",\"description\":\"blogger\\ud83c\\udf10 Promotion\\nCall or Whatsapp \\ud83d\\udc49 0903 905 8619,\\nIG @wapcodeonline_com\\nPromotion marketing advertising business selling products audios videos\",\"url\":\"https:\\/\\/t.co\\/5a49cTD95C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5a49cTD95C\",\"expanded_url\":\"http:\\/\\/naijawapcode.wordpress.com\",\"display_url\":\"naijawapcode.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1111,\"friends_count\":3710,\"listed_count\":0,\"created_at\":\"Tue Apr 07 00:14:17 +0000 2020\",\"favourites_count\":8730,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6542,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553654643733012481\\/AHvlqSjQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553654643733012481\\/AHvlqSjQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1247316623985344512\\/1613480079\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3819\":{\"id\":3332599954,\"id_str\":\"3332599954\",\"name\":\"Johnpaul Chukwuemeri\",\"screen_name\":\"johnpaulez16\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Dealer on all kinds of food condiments and general goods.\\n\\nHoly Spirit is my great provider\\n#We are @messi #NFT || #BTC || #ETH || #CRYPTO || #TRADER #COLLECTOR\",\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"expanded_url\":\"https:\\/\\/www.binance.me\\/en\\/activity\\/referral\\/offers\\/claim?ref=CPA_00EP5D3DYW\",\"display_url\":\"binance.me\\/en\\/activity\\/re\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":246,\"friends_count\":1306,\"listed_count\":15,\"created_at\":\"Thu Jun 18 12:33:33 +0000 2015\",\"favourites_count\":5527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1518,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3332599954\\/1455231986\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3820\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3821\":{\"id\":1220433994866663426,\"id_str\":\"1220433994866663426\",\"name\":\"correct shoes plug.\",\"screen_name\":\"krafti101\",\"location\":\"\",\"description\":\"i dey sell better shoes, slides, snickers,boots, crocs and lots more even hand made...just keeping checking my tweets.\\u270c\\u270c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":395,\"friends_count\":896,\"listed_count\":0,\"created_at\":\"Thu Jan 23 19:52:04 +0000 2020\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511939031688519684\\/GQTdnwK6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511939031688519684\\/GQTdnwK6_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3822\":{\"id\":2397267640,\"id_str\":\"2397267640\",\"name\":\"FOOD IS MY HOBBY\",\"screen_name\":\"theonlinecook\",\"location\":\"Lagos, Nigeria\",\"description\":\"My Recipes = Happy thoughts \\ud83d\\udcad\\nRead more here \\nhttps:\\/\\/t.co\\/h21a3jOGRc (Omoge Jumie Olounje Herself)\",\"url\":\"https:\\/\\/t.co\\/actzKJbnXw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/actzKJbnXw\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCIKTcWDngWURSNMxG3xFF4A\",\"display_url\":\"youtube.com\\/channel\\/UCIKTc\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h21a3jOGRc\",\"expanded_url\":\"https:\\/\\/www.theonlinecook.com\",\"display_url\":\"theonlinecook.com\",\"indices\":[46,69]}]}},\"protected\":false,\"followers_count\":502,\"friends_count\":360,\"listed_count\":3,\"created_at\":\"Sun Mar 09 17:11:22 +0000 2014\",\"favourites_count\":843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2759,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525054758498729984\\/HafA3XDx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525054758498729984\\/HafA3XDx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2397267640\\/1642775375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3823\":{\"id\":1260199733571858433,\"id_str\":\"1260199733571858433\",\"name\":\"JTK\",\"screen_name\":\"iam_Jokerthekid\",\"location\":\"Lagos, Nigeria\",\"description\":\"Comedian ||\\nContent creator || Memer \\ud83e\\udd23\\n#WizkidFc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":882,\"friends_count\":2549,\"listed_count\":0,\"created_at\":\"Tue May 12 13:27:52 +0000 2020\",\"favourites_count\":9665,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":977,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503406463854723073\\/yfMRqmPH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503406463854723073\\/yfMRqmPH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1260199733571858433\\/1647275178\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3824\":{\"id\":1464965613261053955,\"id_str\":\"1464965613261053955\",\"name\":\"Adeyyy\",\"screen_name\":\"247_adeyyy\",\"location\":\"Ibadan, Nigeria\",\"description\":\"\\u2022\\ud83c\\uddf3\\ud83c\\uddec\\u2022\\nFreelancer || High on Self Development & Productivity || Picasso Art Lover \\ud83c\\udfa8 || Music Lover || UiTE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":375,\"listed_count\":0,\"created_at\":\"Sun Nov 28 14:33:34 +0000 2021\",\"favourites_count\":235,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549307512431820801\\/EqV7lREQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549307512431820801\\/EqV7lREQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1464965613261053955\\/1658235497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3825\":{\"id\":1492802410850435072,\"id_str\":\"1492802410850435072\",\"name\":\"Samuel Emmanuel\",\"screen_name\":\"SamuelE65506504\",\"location\":\"\",\"description\":\"Emmaco metal work\\ndeals on all kinds of designers Gate, Hand Rails, tank stand & other house hold martials\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":353,\"listed_count\":0,\"created_at\":\"Sun Feb 13 10:07:15 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1029,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492802410850435072\\/1659466990\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3826\":{\"id\":1492802410850435072,\"id_str\":\"1492802410850435072\",\"name\":\"Samuel Emmanuel\",\"screen_name\":\"SamuelE65506504\",\"location\":\"\",\"description\":\"Emmaco metal work\\ndeals on all kinds of designers Gate, Hand Rails, tank stand & other house hold martials\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":353,\"listed_count\":0,\"created_at\":\"Sun Feb 13 10:07:15 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1029,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493943041899565061\\/FuwieJH5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492802410850435072\\/1659466990\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3827\":{\"id\":3346705613,\"id_str\":\"3346705613\",\"name\":\"Source D\",\"screen_name\":\"Sourced2018\",\"location\":\"Lagos, Nigeria\",\"description\":\"Exploring opportunities.\\nActing and script writing.\\nPlaying chess.\\nOpen minded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Fri Jun 26 17:01:37 +0000 2015\",\"favourites_count\":492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1236,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1371209991831625733\\/B5P24jYZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1371209991831625733\\/B5P24jYZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3346705613\\/1655656915\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3828\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3829\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3830\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2934,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3831\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3832\":{\"id\":1519297062021566466,\"id_str\":\"1519297062021566466\",\"name\":\"Mimi_Ligera\",\"screen_name\":\"Mimi_Ligera\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Actress\\ud83d\\udc97\\ud83d\\udc97\\nOAP @spiceradioNg\\n\\ud83c\\udfb6 lover\\n\\u264d baby\\nNo 1, Ibadan Shortlet Plug( ShortletsByMisi)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":51,\"friends_count\":125,\"listed_count\":0,\"created_at\":\"Wed Apr 27 12:47:28 +0000 2022\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519305585405091841\\/ttHkkQYj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519305585405091841\\/ttHkkQYj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519297062021566466\\/1651065653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3833\":{\"id\":1375008658246008833,\"id_str\":\"1375008658246008833\",\"name\":\"Ability\",\"screen_name\":\"ability_etuk\",\"location\":\"lekki\",\"description\":\"Digital marketer|SEO Specialist|Graphic designer| music lover\\ud83c\\udfb8\\ud83c\\udfb8\\ud83c\\udfb6\\n\\ud83d\\ude0bno mind the bio\\ud83e\\udd2aI like enjoyment too\",\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"expanded_url\":\"http:\\/\\/www.rapigrowth.com.ng\",\"display_url\":\"rapigrowth.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Thu Mar 25 08:56:39 +0000 2021\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375008658246008833\\/1659134272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3834\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3835\":{\"id\":271349890,\"id_str\":\"271349890\",\"name\":\"Omuwa Godswill\\ud83c\\uddf3\\ud83c\\uddec[A.V.A.T.A.R]\",\"screen_name\":\"Intel_Avatar\",\"location\":\"Nigeria\",\"description\":\"A Lover Of Jesus Christ, Scientist, Social Media Manager and Influencer. Special Assistant to Edo State Governor (MEDIA)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":579,\"friends_count\":1010,\"listed_count\":3,\"created_at\":\"Thu Mar 24 09:59:48 +0000 2011\",\"favourites_count\":1733,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/271349890\\/1650137083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3836\":{\"id\":1518523561929023489,\"id_str\":\"1518523561929023489\",\"name\":\"Edo Independent Commission Organization\",\"screen_name\":\"eicoofficial1\",\"location\":\"Edo, Nigeria\",\"description\":\"Bring the government and the people one step closer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":28,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Mon Apr 25 09:33:43 +0000 2022\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":62,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518620899141984256\\/0G0HoY3w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518620899141984256\\/0G0HoY3w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1518523561929023489\\/1650902449\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3837\":{\"id\":37175025,\"id_str\":\"37175025\",\"name\":\"InfoStride News\",\"screen_name\":\"TheInfoStride\",\"location\":\"Lagos, Nigeria\",\"description\":\"The latest breaking news, Nigerian news, world news and top stories on business, celebrity, entertainment, politics, sports, technology, and more.\",\"url\":\"https:\\/\\/t.co\\/JeHHLetgVh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JeHHLetgVh\",\"expanded_url\":\"https:\\/\\/www.theinfostride.com\",\"display_url\":\"theinfostride.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6495,\"friends_count\":482,\"listed_count\":0,\"created_at\":\"Sat May 02 10:15:58 +0000 2009\",\"favourites_count\":1970,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":229577,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1399097946155765762\\/AKWm-Cly_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1399097946155765762\\/AKWm-Cly_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/37175025\\/1622405920\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3838\":{\"id\":1552607096679682048,\"id_str\":\"1552607096679682048\",\"name\":\"NELSON ICT SERVICES GEMBU\",\"screen_name\":\"nisgembu\",\"location\":\"Gembu\",\"description\":\"Working to Achieve the Global SDG in Tech, Agriculture and Charity\",\"url\":\"https:\\/\\/t.co\\/1vNJPkBzKn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vNJPkBzKn\",\"expanded_url\":\"https:\\/\\/nelsonict.org.ng\",\"display_url\":\"nelsonict.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4129,\"friends_count\":160,\"listed_count\":1,\"created_at\":\"Thu Jul 28 10:49:35 +0000 2022\",\"favourites_count\":462,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552607194876624896\\/TJL_pRpT_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552607194876624896\\/TJL_pRpT_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552607096679682048\\/1659183969\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3839\":{\"id\":1316749139787550721,\"id_str\":\"1316749139787550721\",\"name\":\"MusicWormCity\",\"screen_name\":\"musicwormcity\",\"location\":\"Lagos\",\"description\":\"Music Lives Here.\\n\\nhttps:\\/\\/t.co\\/APQJBZrZh9\",\"url\":\"https:\\/\\/t.co\\/APQJBZrZh9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/APQJBZrZh9\",\"expanded_url\":\"http:\\/\\/Musicwormcity.com\",\"display_url\":\"Musicwormcity.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/APQJBZrZh9\",\"expanded_url\":\"http:\\/\\/Musicwormcity.com\",\"display_url\":\"Musicwormcity.com\",\"indices\":[19,42]}]}},\"protected\":false,\"followers_count\":371,\"friends_count\":319,\"listed_count\":0,\"created_at\":\"Thu Oct 15 14:34:50 +0000 2020\",\"favourites_count\":726,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316749522199027712\\/m0DSynwz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316749522199027712\\/m0DSynwz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316749139787550721\\/1603714062\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3840\":{\"id\":1322083981890904065,\"id_str\":\"1322083981890904065\",\"name\":\"Fatima\",\"screen_name\":\"Ftm_Zahra10\",\"location\":\"Nigeria\",\"description\":\"You don\\u2019t know your future.\\nBut you know Allah, so Trust Allah, because Allah has control over your future.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4871,\"friends_count\":4952,\"listed_count\":1,\"created_at\":\"Fri Oct 30 07:52:49 +0000 2020\",\"favourites_count\":6908,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16263,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499101703232229381\\/4rq2tvFq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499101703232229381\\/4rq2tvFq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1322083981890904065\\/1634976383\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3841\":{\"id\":1000797269757759488,\"id_str\":\"1000797269757759488\",\"name\":\"Benco\",\"screen_name\":\"Am_Benco\",\"location\":\"Nigeria\",\"description\":\"Comedian\\/MC\\/Actor\\nThe toothbrush guy \\ud83c\\uddf3\\ud83c\\uddec\\n\\n\\ud83d\\udce9 uzochukwubernard@gmail.com\",\"url\":\"https:\\/\\/t.co\\/oFy4RXQBTw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oFy4RXQBTw\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCBUjeIAtu9OrCMXszhLg8ew\",\"display_url\":\"youtube.com\\/channel\\/UCBUje\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Sun May 27 17:53:57 +0000 2018\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548976040084738048\\/Brc3mKC4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548976040084738048\\/Brc3mKC4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1000797269757759488\\/1658139791\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3842\":{\"id\":1533420684642328576,\"id_str\":\"1533420684642328576\",\"name\":\"Emmanuel Otakhor\",\"screen_name\":\"OtakhorEmmanuel\",\"location\":\"Lagos\",\"description\":\"Cool dude\\/Photographer\\/Actor\\/Artist manager\\/Good vibe\\/Banker\\/Arsenal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":139,\"listed_count\":0,\"created_at\":\"Sun Jun 05 12:09:29 +0000 2022\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1533420684642328576\\/1659525553\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3843\":{\"id\":1048668469099732992,\"id_str\":\"1048668469099732992\",\"name\":\"Abija Wara Bi Ekun\",\"screen_name\":\"merceylordrahl\",\"location\":\"\",\"description\":\"Lyf is too Short, Smile wen U still hav Teeth \\ud83d\\ude01\\ud83d\\ude01 A Chess Lover and Player. BTW, i Sell Poison. U can taste for its Potency.. \\ud83d\\ude1a\\ud83d\\ude1a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":499,\"friends_count\":334,\"listed_count\":0,\"created_at\":\"Sat Oct 06 20:17:01 +0000 2018\",\"favourites_count\":8244,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3844\":{\"id\":1048668469099732992,\"id_str\":\"1048668469099732992\",\"name\":\"Abija Wara Bi Ekun\",\"screen_name\":\"merceylordrahl\",\"location\":\"\",\"description\":\"Lyf is too Short, Smile wen U still hav Teeth \\ud83d\\ude01\\ud83d\\ude01 A Chess Lover and Player. BTW, i Sell Poison. U can taste for its Potency.. \\ud83d\\ude1a\\ud83d\\ude1a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":499,\"friends_count\":334,\"listed_count\":0,\"created_at\":\"Sat Oct 06 20:17:01 +0000 2018\",\"favourites_count\":8244,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4524,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498563487743807497\\/iPZ3l0qj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3845\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3846\":{\"id\":1547267093736919040,\"id_str\":\"1547267093736919040\",\"name\":\"Treasuregodwin7\",\"screen_name\":\"Treasuregodwi7\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m here to make you laugh. follow me on instagram, YouTube and tiktok @Treasuregodwin7\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":319,\"listed_count\":0,\"created_at\":\"Wed Jul 13 17:10:16 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547268125783203841\\/fQw-ZgbJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547268125783203841\\/fQw-ZgbJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547267093736919040\\/1657751470\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3847\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3848\":{\"id\":1279448672183476224,\"id_str\":\"1279448672183476224\",\"name\":\"bryanonly\",\"screen_name\":\"Lifeofecstasy1\",\"location\":\"Nigeria\",\"description\":\"BigBabyBriiiii\",\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpEnaosSS2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCJArK1XB6fd9ApW_SZpfNJg\",\"display_url\":\"youtube.com\\/channel\\/UCJArK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 04 16:15:21 +0000 2020\",\"favourites_count\":1542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":330,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550936606642675713\\/PeoMmmZ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1279448672183476224\\/1658607153\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3849\":{\"id\":1275503716624470017,\"id_str\":\"1275503716624470017\",\"name\":\"Tammi Bee\",\"screen_name\":\"TammiBee1\",\"location\":\"Bonny, Nigeria\",\"description\":\"i'm Tammi Bee\\n A\\n\\n|Spoken Word Artist|\\n|Content Creator|\\n|Environmentalist|\\n|Poet|\\n|Youtuber|\\n|Influencer|\\n\\nkindly follow me on\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\nIG: @tam_mi_bee\",\"url\":\"https:\\/\\/t.co\\/TmFsxosuWd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TmFsxosuWd\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/watch?v=dogPfORqNmQ&t=2s\",\"display_url\":\"m.youtube.com\\/watch?v=dogPfO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":94,\"listed_count\":1,\"created_at\":\"Tue Jun 23 18:59:39 +0000 2020\",\"favourites_count\":401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":100,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519208029924823040\\/yK7Vnqcj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519208029924823040\\/yK7Vnqcj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1275503716624470017\\/1642182204\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3850\":{\"id\":1316756810603417600,\"id_str\":\"1316756810603417600\",\"name\":\"Abdulbasit Onaade\",\"screen_name\":\"AbdulbasitOnaa2\",\"location\":\"Delta, Nigeria\",\"description\":\"Marketer | with a passion for exploration | and a commitment to personal and professional growth. Click the link below to connect.\",\"url\":\"https:\\/\\/t.co\\/3gvgtoJeIb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3gvgtoJeIb\",\"expanded_url\":\"http:\\/\\/dhamyaffiliate.blogspot.com\",\"display_url\":\"dhamyaffiliate.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118,\"friends_count\":750,\"listed_count\":0,\"created_at\":\"Thu Oct 15 15:04:56 +0000 2020\",\"favourites_count\":1259,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":773,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504840632971444256\\/axMDgYPR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504840632971444256\\/axMDgYPR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316756810603417600\\/1648848422\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3851\":{\"id\":1514625073105285128,\"id_str\":\"1514625073105285128\",\"name\":\"\\ud83d\\udc51 Duke of Imo \\ud83d\\udc51 \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Andredicksonn\",\"location\":\"Ogun, Nigeria\",\"description\":\"Advocate: Good Governance \\u2696\\ufe0f | G-Equality | Malnutrition | SCD | \\ud83d\\udcad provoker | Author \\u270d\\ufe0f Political Animal Nigeria \\ud83c\\uddf3\\ud83c\\uddec | Agropreneur | Chronically Humanitarian\",\"url\":\"https:\\/\\/t.co\\/29mE6jXsrG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/29mE6jXsrG\",\"expanded_url\":\"http:\\/\\/www.andredicksonn.com\",\"display_url\":\"andredicksonn.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":399,\"friends_count\":413,\"listed_count\":0,\"created_at\":\"Thu Apr 14 15:22:33 +0000 2022\",\"favourites_count\":648,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555234037983223817\\/awqZUfPV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555234037983223817\\/awqZUfPV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514625073105285128\\/1659641856\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3852\":{\"id\":2881941982,\"id_str\":\"2881941982\",\"name\":\"The Rockdweller \\ud83d\\udc51\\ud83d\\udd25\\ud83d\\udc51\\ud83d\\udcc8\\ud83d\\udcc8\\ud83d\\udcc8\",\"screen_name\":\"The_Rockdweller\",\"location\":\"New Nigeria \",\"description\":\"I am the only Rockdweller you will ever meet in your life. I quit writing for Forex. By 2031 I would have raised 40 millionaires($) through Fx trading .\",\"url\":\"https:\\/\\/t.co\\/uZz7WrSFO5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uZz7WrSFO5\",\"expanded_url\":\"http:\\/\\/therockdweller.com\",\"display_url\":\"therockdweller.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":434,\"friends_count\":1037,\"listed_count\":13,\"created_at\":\"Mon Nov 17 23:47:20 +0000 2014\",\"favourites_count\":810,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1347796283143155714\\/JmUvGpYW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1347796283143155714\\/JmUvGpYW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2881941982\\/1642051992\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3853\":{\"id\":896196087748407297,\"id_str\":\"896196087748407297\",\"name\":\"Officialdjspace\",\"screen_name\":\"officialdjspace\",\"location\":\"Lagos Nigeria \",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Sat Aug 12 02:26:12 +0000 2017\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":56,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/896196087748407297\\/1609241573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3854\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3855\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3856\":{\"id\":1422828006758834178,\"id_str\":\"1422828006758834178\",\"name\":\"Billiboy\",\"screen_name\":\"Itsdbabafatbili\",\"location\":\"Nigeria\",\"description\":\"Award winning singer \\nI lost my old account please follow up here\",\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6VmFPU6tlh\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/itsdbabafatbili\\/playlist\\/do-am-by-billiboy\",\"display_url\":\"audiomack.com\\/itsdbabafatbil\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Wed Aug 04 07:53:44 +0000 2021\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516002973494747136\\/XrCIhKdC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1422828006758834178\\/1650278248\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3857\":{\"id\":829042549708951552,\"id_str\":\"829042549708951552\",\"name\":\"Brian Podcast\",\"screen_name\":\"brian_naija\",\"location\":\"Nigeria\",\"description\":\"latest news and updates, and podcast shows on NA WE OWN podcast...\",\"url\":\"https:\\/\\/t.co\\/WZQo7N6y89\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WZQo7N6y89\",\"expanded_url\":\"https:\\/\\/anchor.fm\\/benson-christian\\/episodes\\/Say-no-to-depression-e9vhvr\",\"display_url\":\"anchor.fm\\/benson-christi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89,\"friends_count\":85,\"listed_count\":0,\"created_at\":\"Tue Feb 07 19:02:01 +0000 2017\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":241,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1047449493438976000\\/W-uftmFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1047449493438976000\\/W-uftmFA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/829042549708951552\\/1578441219\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3858\":{\"id\":1554909435281170434,\"id_str\":\"1554909435281170434\",\"name\":\"Mazi Of Igbo Land\",\"screen_name\":\"Mazi127025\",\"location\":\"Awka, Anambra, Nigeria\",\"description\":\"I'm Music\\ud83c\\udfba\\ud83c\\udfb6 | I'm Art |l A graphic designer |l A trumpeter | a Website Designer...\",\"url\":\"https:\\/\\/t.co\\/SYnV5dLodS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SYnV5dLodS\",\"expanded_url\":\"https:\\/\\/t.me\\/MaziGrafix\",\"display_url\":\"t.me\\/MaziGrafix\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":194,\"listed_count\":0,\"created_at\":\"Wed Aug 03 19:18:23 +0000 2022\",\"favourites_count\":123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":49,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554909937809203200\\/VLFOG_KZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554909937809203200\\/VLFOG_KZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554909435281170434\\/1659680492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3859\":{\"id\":1548764256845369349,\"id_str\":\"1548764256845369349\",\"name\":\"Enyte Investment Limited\",\"screen_name\":\"EnyteInvestment\",\"location\":\"Lagos \",\"description\":\"Enyte Investment\\nRealEstate\\nRealEstate Consultant. \\nEperienced management team.\\n Exceptional services. \\n08137441449\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":146,\"listed_count\":0,\"created_at\":\"Sun Jul 17 20:20:40 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548765197137068032\\/Q0P_Lvf4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548765197137068032\\/Q0P_Lvf4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1548764256845369349\\/1659718573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3860\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3861\":{\"id\":1507072848157974530,\"id_str\":\"1507072848157974530\",\"name\":\"CityHunter Majestys\",\"screen_name\":\"CityHunterMaje1\",\"location\":\"Nigeria\",\"description\":\"COMEDIAN\",\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/36Pxs2JEaX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/c\\/majestysComedy\",\"display_url\":\"youtube.com\\/c\\/majestysCome\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 24 19:12:57 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511639988416430085\\/PdPCZGoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507072848157974530\\/1649238032\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3862\":{\"id\":1233118105158766592,\"id_str\":\"1233118105158766592\",\"name\":\"Akanbi Elijah\",\"screen_name\":\"OgundipeElijah2\",\"location\":\"Lagos, Nigeria\",\"description\":\"@ Ej Concepts\\nDm for your,Corporate Branding, gift items and prints, authentic jerseys with customization (Manchester United \\ud83d\\udc9e\\ud83d\\udcaa)... your needs our want\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":320,\"friends_count\":1841,\"listed_count\":0,\"created_at\":\"Thu Feb 27 19:54:26 +0000 2020\",\"favourites_count\":1323,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":593,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1358080347242713088\\/viz8WAVz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1358080347242713088\\/viz8WAVz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1233118105158766592\\/1591829244\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3863\":{\"id\":537681495,\"id_str\":\"537681495\",\"name\":\"Samuel Adebayo Abodunrin\",\"screen_name\":\"wf_impact\",\"location\":\"Nigeria\",\"description\":\"Content Creator| Writer| Presenter|Producer| Social Analyst| Volunteer|Public Speaker| Compere| Sports Analyst| Scriptwriter\",\"url\":\"https:\\/\\/t.co\\/70py7GpFu2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/70py7GpFu2\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/abodunrin3\",\"display_url\":\"facebook.com\\/abodunrin3\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1029,\"friends_count\":949,\"listed_count\":1,\"created_at\":\"Mon Mar 26 21:57:49 +0000 2012\",\"favourites_count\":2807,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1307398558845415424\\/Jx_iE9p__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1307398558845415424\\/Jx_iE9p__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/537681495\\/1600693965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3864\":{\"id\":4703680090,\"id_str\":\"4703680090\",\"name\":\"Ade Autos\\ud83d\\udd29\\ud83d\\udd27\\ud83e\\uddf0\\ud83d\\udd28\\u2699\\ufe0f\\ud83e\\ude9b\",\"screen_name\":\"petrouz2\",\"location\":\"Lagos, Nigeria\",\"description\":\"Want to Buy or Sell Car\\ud83d\\ude97? \\nWant to Repair or Buy Diesel Generator ( 15kva to 1000kva).? I remain your Humble Plug \\ud83d\\udd0c 08164718666 For quick Response\",\"url\":\"https:\\/\\/t.co\\/xv5Ql7RU1b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xv5Ql7RU1b\",\"expanded_url\":\"https:\\/\\/opensea.io\\/accounts\\/0xfd37c46c62c2c4899691cd048b190e62b6ac51d2\",\"display_url\":\"opensea.io\\/accounts\\/0xfd3\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":610,\"friends_count\":1876,\"listed_count\":3,\"created_at\":\"Mon Jan 04 09:43:02 +0000 2016\",\"favourites_count\":15138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1459888831365271561\\/trVeuRgV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1459888831365271561\\/trVeuRgV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4703680090\\/1644476201\",\"profile_link_color\":\"FAB81E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3865\":{\"id\":4089368481,\"id_str\":\"4089368481\",\"name\":\"abayomi gbeleyi\",\"screen_name\":\"GbeleyiAbayomi\",\"location\":\"ajah lagos\",\"description\":\"stunch Chelsea supporter die hard blue, media man and a believer of the one Nigeria project. Chelsea are champions of Europe again\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":506,\"friends_count\":2309,\"listed_count\":3,\"created_at\":\"Sun Nov 01 11:10:09 +0000 2015\",\"favourites_count\":28638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46879,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1398942886457131011\\/A_Vi6LAO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1398942886457131011\\/A_Vi6LAO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4089368481\\/1599260583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3866\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3867\":{\"id\":285106640,\"id_str\":\"285106640\",\"name\":\"Tayo Moses Omojesu It'sWl\",\"screen_name\":\"OMOJESUCFR\",\"location\":\"Abuja\",\"description\":\"\\ud83d\\udd31ACTOR\\n\\ud83d\\udd31COMEDIAN \\n\\ud83d\\udd31CONTENT CREATOR\\n\\ud83d\\udd31ENTERTAINER\\n\\ud83d\\udd31ROMANS 9:15-16\\ud83d\\ude4f\\n\\ud83d\\ude49Follow FB,IG@OMOJESUCFR For HILARIOUS COMEDY SKITS\\ud83d\\udc4dPLS SUBSCRIBE TO MY YOUTUBE\",\"url\":\"https:\\/\\/t.co\\/FqkIFn75OR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FqkIFn75OR\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCgiklYEkNn5DTSIY921GGOA\\/videos\",\"display_url\":\"m.youtube.com\\/channel\\/UCgikl\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":178,\"friends_count\":216,\"listed_count\":2,\"created_at\":\"Wed Apr 20 14:55:43 +0000 2011\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10885,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481650953111494664\\/XNEpjc-g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481650953111494664\\/XNEpjc-g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/285106640\\/1584709317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3868\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3869\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3870\":{\"id\":743793578447634432,\"id_str\":\"743793578447634432\",\"name\":\"@iam_tusure\",\"screen_name\":\"Iam_tusure\",\"location\":\"Lagos\",\"description\":\"Singer, Songwriter, Producer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Fri Jun 17 13:13:02 +0000 2016\",\"favourites_count\":324,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533865294749368321\\/TC53A_vq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533865294749368321\\/TC53A_vq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743793578447634432\\/1654536964\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3871\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3872\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3873\":{\"id\":1318566938667372544,\"id_str\":\"1318566938667372544\",\"name\":\"whatsapp Celebrity \\ud83d\\ude0a\",\"screen_name\":\"Degreat046\",\"location\":\"Asaba\",\"description\":\"A Biochemist trying to make a living. A programmer trying to coexist.A tech lover trying to survive. Egg seller. MD @degreat_soft_cut IG me. I\\u2019m Mr Degreat.\",\"url\":\"https:\\/\\/t.co\\/7mWIwdWdbm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7mWIwdWdbm\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/6OLZB2JWXV4GA1\",\"display_url\":\"wa.me\\/message\\/6OLZB2\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":182,\"friends_count\":344,\"listed_count\":4,\"created_at\":\"Tue Oct 20 14:57:41 +0000 2020\",\"favourites_count\":3635,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1160,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1388585846585057284\\/xfyKq0Iw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1388585846585057284\\/xfyKq0Iw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1318566938667372544\\/1607207388\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3874\":{\"id\":1547297863759273985,\"id_str\":\"1547297863759273985\",\"name\":\"memetopia\",\"screen_name\":\"memetopiaz\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\ude04\\ud83d\\ude04\\ud83d\\ude04 \\ud83d\\udca5 Follow me for funny memes daily \\ud83d\\udca5\\ud83d\\ude04\\ud83d\\ude04\\ud83d\\ude04 \\n- @memetopiaz\\n- #Memes\\n- #memetopiaz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Wed Jul 13 19:12:29 +0000 2022\",\"favourites_count\":228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547317967943245824\\/t5OhpAis_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547317967943245824\\/t5OhpAis_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547297863759273985\\/1657912736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3875\":{\"id\":1320735272,\"id_str\":\"1320735272\",\"name\":\"I_am_ODINAKA \\ud83e\\udd42\",\"screen_name\":\"I_am_odinaka\",\"location\":\"Anambra, Nigeria\",\"description\":\"Believe in Yourself & Just do it.\\u270a I'm a Lover of TENNIS\\ud83c\\udfd3. B.eng-Petroleum Engineer\\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83c\\udf93 Aquarius- February 18 \\ud83d\\udc86\\ud83c\\udffb\\u200d\\u2642\\ufe0f.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":267,\"friends_count\":380,\"listed_count\":0,\"created_at\":\"Mon Apr 01 16:56:24 +0000 2013\",\"favourites_count\":7679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1855,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451242521863106570\\/KN3GMwsA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451242521863106570\\/KN3GMwsA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320735272\\/1589894863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3876\":{\"id\":1532162283262050304,\"id_str\":\"1532162283262050304\",\"name\":\"kingsxchange\",\"screen_name\":\"kings_xchange\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified vendor for cryptocurrencies and e-funds \\ud83c\\uddf3\\ud83c\\uddec #crypto lover follow up for crypto updates DM if you got questions on crypto and blockchain\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":119,\"listed_count\":2,\"created_at\":\"Thu Jun 02 00:49:16 +0000 2022\",\"favourites_count\":4630,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":302,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553867510021341186\\/E3eK-SYo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553867510021341186\\/E3eK-SYo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1532162283262050304\\/1655970221\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3877\":{\"id\":1312812289603637248,\"id_str\":\"1312812289603637248\",\"name\":\"Noel Emmanuel\",\"screen_name\":\"UcheJS\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udc64 UI\\/UX Designer\\/Frontend web developer. Tweets about tech, startups and innovation\",\"url\":\"https:\\/\\/t.co\\/8GQVYbNFtq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8GQVYbNFtq\",\"expanded_url\":\"https:\\/\\/www.figma.com\\/@UcheJs\",\"display_url\":\"figma.com\\/@UcheJs\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":227,\"friends_count\":216,\"listed_count\":2,\"created_at\":\"Sun Oct 04 17:50:35 +0000 2020\",\"favourites_count\":7027,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2852,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554577708889300995\\/oktKWO19_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554577708889300995\\/oktKWO19_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312812289603637248\\/1659133419\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3878\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3879\":{\"id\":1043977338940256257,\"id_str\":\"1043977338940256257\",\"name\":\"LiteTv media\",\"screen_name\":\"LiteTvmedia\",\"location\":\"Ogun, Nigeria\",\"description\":\"Get the latest news , around the world, entertainment, sport,memes etc... all social media @ https:\\/\\/t.co\\/qBdaX6UgWj\",\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[94,117]}]}},\"protected\":false,\"followers_count\":158,\"friends_count\":481,\"listed_count\":0,\"created_at\":\"Sun Sep 23 21:36:08 +0000 2018\",\"favourites_count\":507,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":370,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1043977338940256257\\/1653595312\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3880\":{\"id\":955505347724267520,\"id_str\":\"955505347724267520\",\"name\":\"Brief\",\"screen_name\":\"BriefNig\",\"location\":\"Nigeria\",\"description\":\"Facts first. \\nNews|Business|Politics|Technology\",\"url\":\"https:\\/\\/t.co\\/tPEAfFCNPi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tPEAfFCNPi\",\"expanded_url\":\"Http:\\/\\/Brief.ng\",\"display_url\":\"Brief.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":520,\"friends_count\":840,\"listed_count\":1,\"created_at\":\"Mon Jan 22 18:20:02 +0000 2018\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538961548672221184\\/98NTaMXm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538961548672221184\\/98NTaMXm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/955505347724267520\\/1655370944\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3881\":{\"id\":701628614,\"id_str\":\"701628614\",\"name\":\"KING SOLOMON (SOJGraphX)\",\"screen_name\":\"sojisanni\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a Freelance Graphic Designer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":235,\"friends_count\":753,\"listed_count\":0,\"created_at\":\"Tue Jul 17 19:28:03 +0000 2012\",\"favourites_count\":671,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555003463184048134\\/NXJYRbsS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555003463184048134\\/NXJYRbsS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/701628614\\/1557644720\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3882\":{\"id\":1531241418102038528,\"id_str\":\"1531241418102038528\",\"name\":\"G4naijaTV\",\"screen_name\":\"G4naijaTV\",\"location\":\"Lagos, Nigeria\",\"description\":\"FOLLOW for updates\",\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"expanded_url\":\"http:\\/\\/www.g4naija.com\",\"display_url\":\"g4naija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":94,\"listed_count\":0,\"created_at\":\"Mon May 30 11:49:52 +0000 2022\",\"favourites_count\":162,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":423,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531241418102038528\\/1656355346\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3883\":{\"id\":1531241418102038528,\"id_str\":\"1531241418102038528\",\"name\":\"G4naijaTV\",\"screen_name\":\"G4naijaTV\",\"location\":\"Lagos, Nigeria\",\"description\":\"FOLLOW for updates\",\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x5NL94VOKD\",\"expanded_url\":\"http:\\/\\/www.g4naija.com\",\"display_url\":\"g4naija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":94,\"listed_count\":0,\"created_at\":\"Mon May 30 11:49:52 +0000 2022\",\"favourites_count\":162,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":423,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543740833278615552\\/qRgtNgqC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531241418102038528\\/1656355346\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3884\":{\"id\":1357350970326417412,\"id_str\":\"1357350970326417412\",\"name\":\"modest \\ud83e\\uddd5\\ud83c\\udffbrocker\\ud83d\\udc5f\",\"screen_name\":\"QueenExclusive2\",\"location\":\"Ibadan\",\"description\":\"Am a fashionista \\ud83d\\ude18A modest rocker\\ud83d\\ude0d\\ud83d\\udc95A food scientist \\u2764\\ufe0fpeople call me Queen \\ud83d\\udc78 QEf\\ud83d\\udcaa\\ud83c\\udffbyour modest is our priority\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":50,\"listed_count\":0,\"created_at\":\"Thu Feb 04 15:31:22 +0000 2021\",\"favourites_count\":228,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":91,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1387897728865275910\\/xGuzEDxD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1387897728865275910\\/xGuzEDxD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1357350970326417412\\/1619735580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3885\":{\"id\":1292980797616672773,\"id_str\":\"1292980797616672773\",\"name\":\"OOVII\",\"screen_name\":\"Heisoovii\",\"location\":\"Lagos Nigeria\",\"description\":\"\\u201cICON\\u201d\\ud83c\\udf1fNot glued to a Genre I rap and I sing! \\ud83c\\uddf3\\ud83c\\uddec \\u2653\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/obGzWNTHOF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/obGzWNTHOF\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Oovii\",\"display_url\":\"linktr.ee\\/Oovii\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":153,\"friends_count\":416,\"listed_count\":0,\"created_at\":\"Tue Aug 11 00:27:22 +0000 2020\",\"favourites_count\":2461,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":671,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522947702522191872\\/BXj9Fsp2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522947702522191872\\/BXj9Fsp2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1292980797616672773\\/1638567839\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3886\":{\"id\":1551528148944265217,\"id_str\":\"1551528148944265217\",\"name\":\"Nana_kwaaku_Bonsam\",\"screen_name\":\"NanakwaakuBonsa\",\"location\":\"Ghana\",\"description\":\"Instagram @nana_kwaaku_bonsam.\\nFacebook \\n@Bonsam Nana\\nWhatsApp : +233275158571. \\nhttps:\\/\\/t.co\\/GgJynOEOQX \\nNana kwaku Bonsam official.\",\"url\":\"https:\\/\\/t.co\\/AaKZcc0UQ4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AaKZcc0UQ4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCLCXG1QtYGsF6sHhWkn6grQ\",\"display_url\":\"youtube.com\\/channel\\/UCLCXG\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GgJynOEOQX\",\"expanded_url\":\"http:\\/\\/Youtube.com\",\"display_url\":\"Youtube.com\",\"indices\":[81,104]}]}},\"protected\":false,\"followers_count\":14,\"friends_count\":126,\"listed_count\":0,\"created_at\":\"Mon Jul 25 11:22:22 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551528515228651521\\/tWQQJqS1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551528515228651521\\/tWQQJqS1_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3887\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3888\":{\"id\":1505807068950900737,\"id_str\":\"1505807068950900737\",\"name\":\"\\u23f2\\ufe0fMaazi.Ogbu Okwuson\\ud83c\\udf08\",\"screen_name\":\"OOkwuson\",\"location\":\"Biafra\",\"description\":\"E-commerce specialist\\nThe present and future is written in the past\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":303,\"friends_count\":319,\"listed_count\":0,\"created_at\":\"Mon Mar 21 07:22:49 +0000 2022\",\"favourites_count\":2637,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2699,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516715025846710274\\/hOYlMYIU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516715025846710274\\/hOYlMYIU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1505807068950900737\\/1655046600\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3889\":{\"id\":1250469929473708033,\"id_str\":\"1250469929473708033\",\"name\":\"Maryamoqueen\",\"screen_name\":\"maryamoqueenie\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Muslimah \\ud83e\\uddd5\\ud83c\\udffb|Queen||Food Scientist \\ud83d\\udc69\\u200d\\ud83d\\udd2c |Food journalist |Fashion designer \\u2702\\ufe0f|CEO: QEF|madii student |OgunKopa| introvert|Foodie| pray for me when am gone \\ud83e\\udd7a\",\"url\":\"https:\\/\\/t.co\\/eHMnAYDiqY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eHMnAYDiqY\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/maryam.yusuf.16503\",\"display_url\":\"facebook.com\\/maryam.yusuf.1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":737,\"friends_count\":883,\"listed_count\":0,\"created_at\":\"Wed Apr 15 17:04:13 +0000 2020\",\"favourites_count\":10410,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3398,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1387898563422826496\\/4G2JBOag_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1387898563422826496\\/4G2JBOag_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1250469929473708033\\/1596829125\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3890\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3891\":{\"id\":860058080117223424,\"id_str\":\"860058080117223424\",\"name\":\"Seun kazeem\",\"screen_name\":\"Realseunkazeem\",\"location\":\"Ibadan, Nigeria\",\"description\":\"An Entrepreneur\\ud83e\\udd11\\ud83e\\udd11\\ud83e\\udd11 Director @ateaseauto, CEO of @Puremindgraphix, lead volunteer in #helpforcitizeninitiave and #feedthepoorinitiative. Business always!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Thu May 04 09:06:40 +0000 2017\",\"favourites_count\":514,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":295,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540334470758268929\\/mjmQ7Z8t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540334470758268929\\/mjmQ7Z8t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/860058080117223424\\/1656079626\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3892\":{\"id\":1538852053145030658,\"id_str\":\"1538852053145030658\",\"name\":\"At Ease Auto & Energies\",\"screen_name\":\"ateaseauto\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Your No.1 Oil & Gas with Auto Dealer Company\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Mon Jun 20 11:51:56 +0000 2022\",\"favourites_count\":198,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543182137326714885\\/y7CjyUdc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543182137326714885\\/y7CjyUdc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538852053145030658\\/1655902319\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3893\":{\"id\":1355475092063531014,\"id_str\":\"1355475092063531014\",\"name\":\"edublogs.ng\",\"screen_name\":\"edublogsng\",\"location\":\"Nigeria\",\"description\":\"This is the Official Twitter handle of https:\\/\\/t.co\\/hD3cUZnzvM\\nWhatsApp - https:\\/\\/t.co\\/nfi1H2ukLP\",\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"expanded_url\":\"https:\\/\\/edublogs.com.ng\\/\",\"display_url\":\"edublogs.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hD3cUZnzvM\",\"expanded_url\":\"https:\\/\\/edublogs.com.ng\\/\",\"display_url\":\"edublogs.com.ng\",\"indices\":[39,62]},{\"url\":\"https:\\/\\/t.co\\/nfi1H2ukLP\",\"expanded_url\":\"https:\\/\\/wa.me\\/2349092463561\",\"display_url\":\"wa.me\\/2349092463561\",\"indices\":[74,97]}]}},\"protected\":false,\"followers_count\":192,\"friends_count\":158,\"listed_count\":2,\"created_at\":\"Sat Jan 30 11:17:17 +0000 2021\",\"favourites_count\":265,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523563936817328128\\/RPAA9Zrm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523563936817328128\\/RPAA9Zrm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355475092063531014\\/1652080964\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3894\":{\"id\":2969294343,\"id_str\":\"2969294343\",\"name\":\"Disturbing_Art_Official\",\"screen_name\":\"egodfred31\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Graphics_Designer#Expert_In_Desktop_Publishing#Artist#Musician(GetAffordableCartoon Animation@09093869126)followme on instagram @ElijahGodfred.Fb@ElijahGodfred\",\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"expanded_url\":\"http:\\/\\/t.me\\/DisturbingArt\",\"display_url\":\"t.me\\/DisturbingArt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":340,\"friends_count\":94,\"listed_count\":2,\"created_at\":\"Fri Jan 09 07:20:21 +0000 2015\",\"favourites_count\":371,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1295,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2969294343\\/1656591540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3895\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3896\":{\"id\":1349809076809715712,\"id_str\":\"1349809076809715712\",\"name\":\"Oboh Francis Nkemakolam\",\"screen_name\":\"ObohNkemakolam\",\"location\":\"Rivers, Nigeria\",\"description\":\"A social scientist.\\nWhat God cannot do does not exist #NSPPD. #Tonyecole2023 #endasuustrikeforever #BAT2023 #APC #endsars #Nigeria #OneNigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":138,\"friends_count\":340,\"listed_count\":0,\"created_at\":\"Thu Jan 14 20:04:34 +0000 2021\",\"favourites_count\":17248,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20386,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556068256888360960\\/wDlORP52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556068256888360960\\/wDlORP52_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1349809076809715712\\/1658929213\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3897\":{\"id\":306263453,\"id_str\":\"306263453\",\"name\":\"John Onyemechi\",\"screen_name\":\"JohnChudosky\",\"location\":\"Ikeja Lagos\",\"description\":\"Digital Marketing and Digital Real Estate Marketing Consultant. Call\\/Whatsapp 07033522246 for enquiries.\",\"url\":\"https:\\/\\/t.co\\/7J0ZChsJh3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7J0ZChsJh3\",\"expanded_url\":\"http:\\/\\/www.digibyteservices.com\",\"display_url\":\"digibyteservices.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":870,\"listed_count\":14,\"created_at\":\"Fri May 27 15:35:19 +0000 2011\",\"favourites_count\":156,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1858,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/652559106033717249\\/jx7tr225_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/652559106033717249\\/jx7tr225_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3898\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2934,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3899\":{\"id\":1396874924,\"id_str\":\"1396874924\",\"name\":\"Timanam\",\"screen_name\":\"EmmaAlfredDGC\",\"location\":\"cross river state\",\"description\":\"Teacher, Sports producer, Social Media Manager, Voiceover artist, writer, commentator, MC and Audio editor, Reporter for Newsdotafrica\",\"url\":\"https:\\/\\/t.co\\/UaVRzJtB14\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UaVRzJtB14\",\"expanded_url\":\"http:\\/\\/infonaija.com.ng\",\"display_url\":\"infonaija.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1234,\"friends_count\":1286,\"listed_count\":0,\"created_at\":\"Thu May 02 10:44:36 +0000 2013\",\"favourites_count\":15683,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515949342254788612\\/1ZS6AOzg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515949342254788612\\/1ZS6AOzg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396874924\\/1602676892\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3900\":{\"id\":1401458033704669186,\"id_str\":\"1401458033704669186\",\"name\":\"Dofaham\",\"screen_name\":\"mahafoD_7\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\udf41 A Chelsea Stan and Fan. IFB ASAP!\",\"url\":\"https:\\/\\/t.co\\/zzKdn387BB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zzKdn387BB\",\"expanded_url\":\"http:\\/\\/www.gmail.com\\/dofaham@gmail.com\",\"display_url\":\"gmail.com\\/dofaham@gmail.\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":41,\"friends_count\":80,\"listed_count\":6,\"created_at\":\"Sun Jun 06 08:37:10 +0000 2021\",\"favourites_count\":4213,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2593,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545953062572933122\\/k2HHqz4U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545953062572933122\\/k2HHqz4U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1401458033704669186\\/1655134954\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3901\":{\"id\":1542086957227974657,\"id_str\":\"1542086957227974657\",\"name\":\"Sunshinemporium\",\"screen_name\":\"sunshinemporium\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Home of all your luxury jewelleries and accessories\\/ wristwatches\\/necklace\\/ belts\\/cufflinks\\/jewellery set for him &her .etc \\/ best quality and affordable\\ud83d\\ude9b\\ud83d\\ude9a\",\"url\":\"https:\\/\\/t.co\\/v4fFEUIqrZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/v4fFEUIqrZ\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348079860544\\/\",\"display_url\":\"wa.me\\/2348079860544\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":195,\"listed_count\":0,\"created_at\":\"Wed Jun 29 10:06:08 +0000 2022\",\"favourites_count\":3803,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":686,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542090971487371267\\/WASA6qh__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542090971487371267\\/WASA6qh__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1542086957227974657\\/1656498148\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3902\":{\"id\":861929040130830336,\"id_str\":\"861929040130830336\",\"name\":\"SmartMix \\ud83c\\udfb9\\ud83d\\udcb0\",\"screen_name\":\"Smartmix02\",\"location\":\"Lagos, Nigeria\",\"description\":\"Record producer \\ud83c\\udfb6, Audio engineer \\ud83d\\udd0a professional guitarist \\ud83c\\udfb8\\ud83c\\udfbc , sound design engineer\\ud83c\\udfb9.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":706,\"listed_count\":2,\"created_at\":\"Tue May 09 13:01:11 +0000 2017\",\"favourites_count\":371,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":273,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1431940072274898949\\/yFDczUAb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1431940072274898949\\/yFDczUAb_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3903\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3904\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3905\":{\"id\":1254094696265252865,\"id_str\":\"1254094696265252865\",\"name\":\"badmossamuel\",\"screen_name\":\"BadmosSamuel\",\"location\":\"Lagos, Nigeria\",\"description\":\"Father& Poppy\\n\\/\\/ Founder & President \\n@shalompraiseteam\\n \\/\\/ Preacher of the Gospel \\/\\/ God lover\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":133,\"listed_count\":0,\"created_at\":\"Sat Apr 25 17:08:43 +0000 2020\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":292,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1393916838292115460\\/YsTtZoXr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1393916838292115460\\/YsTtZoXr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3906\":{\"id\":854041219156070400,\"id_str\":\"854041219156070400\",\"name\":\"GistHub\",\"screen_name\":\"GistHubNaija\",\"location\":\"Nigeria\",\"description\":\"JUICY GIST\\/EXCLUSIVE CONTENT\\/ NEWS ON THE GO!\\nlet's feed your eyes with today's happenings, follow us for instant follow back.\\nRight here we just love gist!\",\"url\":\"https:\\/\\/t.co\\/MQ9XkH2fx9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MQ9XkH2fx9\",\"expanded_url\":\"http:\\/\\/gisthubnaija.com\",\"display_url\":\"gisthubnaija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Mon Apr 17 18:37:48 +0000 2017\",\"favourites_count\":647,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12618,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/854054720004124672\\/s0QnMIHp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/854054720004124672\\/s0QnMIHp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3907\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3908\":{\"id\":965369032277884928,\"id_str\":\"965369032277884928\",\"name\":\"Onyishi Francis\",\"screen_name\":\"FrancisOnyishi\",\"location\":\"Abuja\",\"description\":\"Enthusiastic\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":98,\"friends_count\":91,\"listed_count\":1,\"created_at\":\"Sun Feb 18 23:34:47 +0000 2018\",\"favourites_count\":1551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516000319326638083\\/CNENOUxS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965369032277884928\\/1650277677\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3909\":{\"id\":1152619362978816000,\"id_str\":\"1152619362978816000\",\"name\":\"99 _qudus\",\"screen_name\":\"99_qudus\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcb2crypto currency \\ud83d\\udcb2 Never expect to get help from others. learn to get through life alone. Get up and fight !!\",\"url\":\"https:\\/\\/t.co\\/3hcpVbSVPS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3hcpVbSVPS\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/99qudus\\/\",\"display_url\":\"instagram.com\\/99qudus\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3080,\"friends_count\":3046,\"listed_count\":8,\"created_at\":\"Sat Jul 20 16:40:45 +0000 2019\",\"favourites_count\":3665,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":719,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549702841710907399\\/m32KJKrY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549702841710907399\\/m32KJKrY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1152619362978816000\\/1658312936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3910\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3911\":{\"id\":1043977338940256257,\"id_str\":\"1043977338940256257\",\"name\":\"LiteTv media\",\"screen_name\":\"LiteTvmedia\",\"location\":\"Ogun, Nigeria\",\"description\":\"Get the latest news , around the world, entertainment, sport,memes etc... all social media @ https:\\/\\/t.co\\/qBdaX6UgWj\",\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qBdaX6UgWj\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/LiteTvmedia\",\"display_url\":\"linktr.ee\\/LiteTvmedia\",\"indices\":[94,117]}]}},\"protected\":false,\"followers_count\":158,\"friends_count\":481,\"listed_count\":0,\"created_at\":\"Sun Sep 23 21:36:08 +0000 2018\",\"favourites_count\":507,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":370,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1451354444730355712\\/-t0B7idP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1043977338940256257\\/1653595312\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3912\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3913\":{\"id\":2780170263,\"id_str\":\"2780170263\",\"name\":\"Abandajakobjustman\",\"screen_name\":\"Djustman007\",\"location\":\"Calabar, Nigeria\",\"description\":\"A 1st Order Philosopher, Researcher, Life Coach and Counselor. Neo Humanist and Neo\\/Derepresentationist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11835,\"friends_count\":13063,\"listed_count\":11,\"created_at\":\"Mon Sep 22 11:41:11 +0000 2014\",\"favourites_count\":166818,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12249,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1161481634157383681\\/zm6vFgBU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1161481634157383681\\/zm6vFgBU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2780170263\\/1565754018\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3914\":{\"id\":1406164685116805120,\"id_str\":\"1406164685116805120\",\"name\":\"Tuplex\",\"screen_name\":\"Tuplex50\",\"location\":\"Wuse zone 1, Abuja \",\"description\":\"I am a civil engineer with alot of experience in designs #CONSTRUCTION #DESIGN #Architecture #Civilengineering #Lagos #Abuja #Calabar #Structuralengineering\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":306,\"friends_count\":343,\"listed_count\":2,\"created_at\":\"Sat Jun 19 08:19:41 +0000 2021\",\"favourites_count\":2587,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1700,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544402085835415553\\/0bSrItgr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544402085835415553\\/0bSrItgr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1406164685116805120\\/1624229544\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3915\":{\"id\":162011098,\"id_str\":\"162011098\",\"name\":\"Constantine N. M.\",\"screen_name\":\"constantine_N_M\",\"location\":\"Douala- Cameroon\",\"description\":\"Data Scientist - Master Research Student - Machine Learning and Deep Learning with Python, R. Hadoop Big Data and Spark Developer. Corporate Trainer - https:\\/\\/t\",\"url\":\"https:\\/\\/t.co\\/5slsIcnMmf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5slsIcnMmf\",\"expanded_url\":\"https:\\/\\/www.cmmediagroupe.com\",\"display_url\":\"cmmediagroupe.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":805,\"friends_count\":2819,\"listed_count\":13,\"created_at\":\"Fri Jul 02 11:08:24 +0000 2010\",\"favourites_count\":593,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4927,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/799311836285980672\\/TnlNvmwd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/799311836285980672\\/TnlNvmwd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/162011098\\/1394020554\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3916\":{\"id\":1249672282764697602,\"id_str\":\"1249672282764697602\",\"name\":\"\\ud83d\\udd31\\u269c\\ufe0f\\u2728Abdullateef Mikail\\u2728\\ud83d\\udd31\\u269c\\ufe0f\",\"screen_name\":\"AmbassadorDKing\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Agriculturalists| Business Entrepreneur |Ready For Business|Self Confident|Policaly Oriented|Laycon\\u2019s Fanatics|Entertaining|Sports Lover|Human Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":305,\"listed_count\":0,\"created_at\":\"Mon Apr 13 12:14:43 +0000 2020\",\"favourites_count\":204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2886,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1249672282764697602\\/1601240623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3917\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2910,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3918\":{\"id\":1519261928404787200,\"id_str\":\"1519261928404787200\",\"name\":\"Olu baba\",\"screen_name\":\"Olubabaoshole\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m the water that has no enemy, for all your challenges and spiritual problems call me for solutions +2348067718912.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed Apr 27 10:27:49 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519262187554058241\\/xhID2Ob__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519262187554058241\\/xhID2Ob__normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3919\":{\"id\":1227326200428797955,\"id_str\":\"1227326200428797955\",\"name\":\"Don current\",\"screen_name\":\"Doncurrent1\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Do not for once give up on happiness \\u263a\\u2728\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":189,\"friends_count\":799,\"listed_count\":3,\"created_at\":\"Tue Feb 11 20:19:21 +0000 2020\",\"favourites_count\":2040,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2087,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539526667336658944\\/BNyKP1Vp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539526667336658944\\/BNyKP1Vp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1227326200428797955\\/1655987898\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3920\":{\"id\":1157629744827043841,\"id_str\":\"1157629744827043841\",\"name\":\"Ay\\u1ecd\\u0300b\\u00e1mi\",\"screen_name\":\"theayobami_\",\"location\":\"Lagos\",\"description\":\"No Way Down\",\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/theayobami_\",\"display_url\":\"linktr.ee\\/theayobami_\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":492,\"friends_count\":198,\"listed_count\":0,\"created_at\":\"Sat Aug 03 12:30:13 +0000 2019\",\"favourites_count\":1077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":915,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1157629744827043841\\/1658829676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3921\":{\"id\":1313468269198807040,\"id_str\":\"1313468269198807040\",\"name\":\"CryptoHub\",\"screen_name\":\"DeCryptoHub\",\"location\":\"Blockchain\",\"description\":\"Your true guide to better trading! #Bitcoin \\n\\nOfficial crypto trade signals channel for https:\\/\\/t.co\\/9JuLbJFEX4 @daba_school\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9JuLbJFEX4\",\"expanded_url\":\"http:\\/\\/daba.school\",\"display_url\":\"daba.school\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":18237,\"friends_count\":16,\"listed_count\":89,\"created_at\":\"Tue Oct 06 13:17:19 +0000 2020\",\"favourites_count\":563,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":859,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1313469107933769728\\/8J4xYfTu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1313469107933769728\\/8J4xYfTu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1313468269198807040\\/1601991364\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3922\":{\"id\":1312313816462524416,\"id_str\":\"1312313816462524416\",\"name\":\"PeMerc Limited\",\"screen_name\":\"pemercltd\",\"location\":\"Lagos, Nigeria\",\"description\":\"PeMerc is a Household name for affordable and durable Laptops, Phones and\\u00a0 Accessories for all Levels and Classes of People.\",\"url\":\"https:\\/\\/t.co\\/NZlGXA234K\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NZlGXA234K\",\"expanded_url\":\"http:\\/\\/www.pemerc.com\",\"display_url\":\"pemerc.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3775,\"friends_count\":3631,\"listed_count\":3,\"created_at\":\"Sat Oct 03 08:50:00 +0000 2020\",\"favourites_count\":1893,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1312314076521992192\\/FeFssxnb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1312314076521992192\\/FeFssxnb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312313816462524416\\/1601715287\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3923\":{\"id\":1282590760718733312,\"id_str\":\"1282590760718733312\",\"name\":\"OnlinePikin\",\"screen_name\":\"Online_Pikin\",\"location\":\"Nigeria\",\"description\":\"A niche blog telling stories on brands, causes, people & events from around the globe.\",\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RbC3souq57\",\"expanded_url\":\"https:\\/\\/onlinepikin.com\",\"display_url\":\"onlinepikin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":52,\"listed_count\":0,\"created_at\":\"Mon Jul 13 08:20:59 +0000 2020\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1473374939164160000\\/Oz_OakCn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282590760718733312\\/1659910806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3924\":{\"id\":2789415037,\"id_str\":\"2789415037\",\"name\":\"Abubakar Kabir Enitan\",\"screen_name\":\"Kbtopmost1808\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"\\ud83d\\udcd2Objective Minded\\ud83d\\udd8b\\ufe0f\\n \\ud83c\\udf93Accountant \\ud83d\\udc54\\n \\ud83c\\uddf3\\ud83c\\uddec A believer in Nigeria Dream.\\ud83c\\uddf3\\ud83c\\uddec\\n \\ud83d\\ude4fProudly Ogun State Indigene\\ud83d\\ude4f\\n #ABUSITE | \\u2665\\ufe0fOko Rofiah\\u2665\\ufe0f|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":282,\"friends_count\":917,\"listed_count\":0,\"created_at\":\"Thu Sep 04 08:12:25 +0000 2014\",\"favourites_count\":11636,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4571,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533405995682172928\\/Zb4i4-ry_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533405995682172928\\/Zb4i4-ry_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2789415037\\/1545041150\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3925\":{\"id\":3053955908,\"id_str\":\"3053955908\",\"name\":\"Emmanuel Ifeanyichukwu Joseph\",\"screen_name\":\"emmaijoseph\",\"location\":\"Nigeria\",\"description\":\"A website Developer, Graphic Designer, Video Editor with @ozoneicttech \\nContent Creator & author with @olearnzone\\n#emmaijoseph\\n#programmer\\n#business\\n#developer\",\"url\":\"https:\\/\\/t.co\\/2JqzhdtDE5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2JqzhdtDE5\",\"expanded_url\":\"http:\\/\\/olearnzone.com.ng\\/author\\/ije\",\"display_url\":\"olearnzone.com.ng\\/author\\/ije\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":287,\"friends_count\":2671,\"listed_count\":0,\"created_at\":\"Sun Mar 01 23:01:08 +0000 2015\",\"favourites_count\":208,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484790360228384770\\/Ef9yr1hW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484790360228384770\\/Ef9yr1hW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3053955908\\/1650222889\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3926\":{\"id\":1553726345041137666,\"id_str\":\"1553726345041137666\",\"name\":\"1202_Scents\",\"screen_name\":\"1202_Scents\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Online perfume store Everything fragrance \\ud83c\\udf38 Authentic perfumes,designer oil,body mists,scented candles and diffusers.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":148,\"listed_count\":0,\"created_at\":\"Sun Jul 31 12:57:00 +0000 2022\",\"favourites_count\":545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":110,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554405684422344705\\/FfVIvadH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554405684422344705\\/FfVIvadH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553726345041137666\\/1659434210\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3927\":{\"id\":1565364198,\"id_str\":\"1565364198\",\"name\":\"princesskayinma1\",\"screen_name\":\"kayinmakarma\",\"location\":\"Lagos, Nigeria\",\"description\":\"miss simplicity\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Wed Jul 03 10:06:42 +0000 2013\",\"favourites_count\":565,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553000589210034182\\/M4chBwoz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553000589210034182\\/M4chBwoz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3928\":{\"id\":1249672282764697602,\"id_str\":\"1249672282764697602\",\"name\":\"\\ud83d\\udd31\\u269c\\ufe0f\\u2728Abdullateef Mikail\\u2728\\ud83d\\udd31\\u269c\\ufe0f\",\"screen_name\":\"AmbassadorDKing\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Agriculturalists| Business Entrepreneur |Ready For Business|Self Confident|Policaly Oriented|Laycon\\u2019s Fanatics|Entertaining|Sports Lover|Human Activist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71,\"friends_count\":305,\"listed_count\":0,\"created_at\":\"Mon Apr 13 12:14:43 +0000 2020\",\"favourites_count\":204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2886,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1310324253510766592\\/vWCvZfFr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1249672282764697602\\/1601240623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3929\":{\"id\":383958667,\"id_str\":\"383958667\",\"name\":\"\\ud835\\udc4e\\ud835\\udc5f\\ud835\\udc4e\\ud835\\udc58\\ud835\\udc62\\ud835\\udc5b\\ud835\\udc5f\\ud835\\udc56\\ud835\\udc5b_\\ud835\\udc60\\ud835\\udc61\\ud835\\udc52\\ud835\\udc5d\\u210e\\ud835\\udc56\\ud835\\udc52\\ud83d\\ude43de.OBIdient\",\"screen_name\":\"gasberryparie\",\"location\":\"Ibadan, Nigeria\",\"description\":\"imperfect creature God's lover caring son aspiring father incoming billionaire\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":148,\"friends_count\":579,\"listed_count\":0,\"created_at\":\"Sun Oct 02 20:25:44 +0000 2011\",\"favourites_count\":2728,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5347,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535905950581809152\\/_Un8Lb9N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535905950581809152\\/_Un8Lb9N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/383958667\\/1606301251\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3930\":{\"id\":1043423721338413057,\"id_str\":\"1043423721338413057\",\"name\":\"LAGOS HALAL DIGITAL MARKETING AGENCY\",\"screen_name\":\"J4PMARKETERS\",\"location\":\"Lagos, Nigeria\",\"description\":\"Lagos Number 1 Halal Digital Marketing Agency.\\nDM to get quote and know more.\\nWhatsApp: https:\\/\\/t.co\\/KmncOn88w0\",\"url\":\"https:\\/\\/t.co\\/0bCb6gbpID\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0bCb6gbpID\",\"expanded_url\":\"https:\\/\\/j4pmarketers.com\",\"display_url\":\"j4pmarketers.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KmncOn88w0\",\"expanded_url\":\"https:\\/\\/wa.me\\/2347038631350\",\"display_url\":\"wa.me\\/2347038631350\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":153,\"friends_count\":379,\"listed_count\":2,\"created_at\":\"Sat Sep 22 08:56:15 +0000 2018\",\"favourites_count\":262,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545350174977007618\\/iIr97o7E_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545350174977007618\\/iIr97o7E_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1043423721338413057\\/1657275167\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3931\":{\"id\":366542977,\"id_str\":\"366542977\",\"name\":\"DJ BORSH OF THE BUJ\",\"screen_name\":\"Dj_borsh\",\"location\":\"Abuja, Nigeria\",\"description\":\"PRO DJ Official DJ @coolfmabuja || Bookings -@gmail.com || Events || Music promotions (Radio) 08037511961 (apple,spotify,audiomack ) || DM open for business\",\"url\":\"https:\\/\\/t.co\\/bvPu25Jo3z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bvPu25Jo3z\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/dj_borsh\",\"display_url\":\"linktr.ee\\/dj_borsh\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6874,\"friends_count\":6660,\"listed_count\":6,\"created_at\":\"Fri Sep 02 11:06:10 +0000 2011\",\"favourites_count\":40363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":45920,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1444696333965742091\\/XjEod9-l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1444696333965742091\\/XjEod9-l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/366542977\\/1550914762\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3932\":{\"id\":2583496138,\"id_str\":\"2583496138\",\"name\":\"ProtonOracle\\u269b\\ufe0f\\u269b\\ufe0f\",\"screen_name\":\"Drexxofficiall\",\"location\":\"Lagos Nigeria\",\"description\":\"Artist .for booking call +https:\\/\\/t.co\\/0OE3wLqHWP @drexxofficial@gmail.com.protonarmy,Proton self claimed African \\u269b\\ufe0f Ambassador \\u269b\\ufe0f$XPR $Loan NFT expert\",\"url\":\"https:\\/\\/t.co\\/rcSwOOaM1g\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rcSwOOaM1g\",\"expanded_url\":\"https:\\/\\/indfy.me\\/drexx-confession\",\"display_url\":\"indfy.me\\/drexx-confessi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0OE3wLqHWP\",\"expanded_url\":\"http:\\/\\/2348067639766.email\",\"display_url\":\"2348067639766.email\",\"indices\":[26,49]}]}},\"protected\":false,\"followers_count\":1249,\"friends_count\":4985,\"listed_count\":5,\"created_at\":\"Thu Jun 05 03:43:40 +0000 2014\",\"favourites_count\":15575,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7874,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546226710701654016\\/JOcaOux0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546226710701654016\\/JOcaOux0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2583496138\\/1571177300\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3933\":{\"id\":1396142465900367874,\"id_str\":\"1396142465900367874\",\"name\":\"Angel Network News\",\"screen_name\":\"angelnetnews\",\"location\":\"Awka, Nigeria\",\"description\":\"Journalism is the Freedom of the People |\\nDownload ANN App today\\ud83d\\udcf1 https:\\/\\/t.co\\/h4aVNCCbFk\",\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"expanded_url\":\"http:\\/\\/www.angelnetworknews.com\",\"display_url\":\"angelnetworknews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h4aVNCCbFk\",\"expanded_url\":\"https:\\/\\/angelnetworknews.com\\/mobile-apps\\/\",\"display_url\":\"angelnetworknews.com\\/mobile-apps\\/\",\"indices\":[66,89]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":83,\"listed_count\":0,\"created_at\":\"Sat May 22 16:34:50 +0000 2021\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396142465900367874\\/1657392226\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3934\":{\"id\":880015105135607808,\"id_str\":\"880015105135607808\",\"name\":\"Zeeter Oliver\",\"screen_name\":\"OliverZeeter\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec Afrofusion Songstress of Abuja \\n. \\n\\nInstagram\\n\\n- @zeeteroliver \\n\\nMy Music \\n- \\n\\nhttps:\\/\\/t.co\\/nccSFc5qkp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nccSFc5qkp\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Zeeteroliver\",\"display_url\":\"linktr.ee\\/Zeeteroliver\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":326,\"friends_count\":1050,\"listed_count\":1,\"created_at\":\"Wed Jun 28 10:48:45 +0000 2017\",\"favourites_count\":904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":784,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880015105135607808\\/1659766982\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3935\":{\"id\":1502314843625435138,\"id_str\":\"1502314843625435138\",\"name\":\"Milliator \\ud83d\\udc69\\u200d\\ud83c\\udf73\\ud83e\\udd5e\\u26bd\\ufe0f\\ud83c\\udfad\",\"screen_name\":\"Milli_ator\",\"location\":\"Lagos, Nigeria\",\"description\":\"EVERYWHERE YOU GO\\ud83d\\udd04\\n~THESPIAN \\ud83c\\udfad\\n~CHEF\\ud83d\\udc69\\u200d\\ud83c\\udf73\\n~KITCHEN EXPERT\\ud83e\\udd5e\\n~FOOTBALL LOVER\\u26bd\\ufe0f\\n~MONEY LOVER\\ud83d\\udcb5\\n\\u2935\\ufe0f\\nDM open for reasonable conversations only \\ud83d\\ude11\",\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"expanded_url\":\"http:\\/\\/www.naijabet.com\\/reg\\/af\\/301064\",\"display_url\":\"naijabet.com\\/reg\\/af\\/301064\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":479,\"friends_count\":654,\"listed_count\":0,\"created_at\":\"Fri Mar 11 16:06:03 +0000 2022\",\"favourites_count\":12000,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7868,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502314843625435138\\/1659354254\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3936\":{\"id\":1489567028134694912,\"id_str\":\"1489567028134694912\",\"name\":\"North East Gateway (M Barua)\",\"screen_name\":\"northgateway2\",\"location\":\"Assam\",\"description\":\"Voice of North East..Gate way of India\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":323,\"friends_count\":231,\"listed_count\":0,\"created_at\":\"Fri Feb 04 11:50:40 +0000 2022\",\"favourites_count\":3336,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3395,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489567256980094985\\/foPqEUMD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489567256980094985\\/foPqEUMD_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3937\":{\"id\":1208046199409979392,\"id_str\":\"1208046199409979392\",\"name\":\"Osehobo\",\"screen_name\":\"DonOsehobo\",\"location\":\"Benin-City, Nigeria\",\"description\":\"#Publicist\\n#Blogger\\n#Contentdeveloper \\n#JournalismResearcher\",\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"expanded_url\":\"http:\\/\\/www.agbakablog.com\",\"display_url\":\"agbakablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":931,\"friends_count\":2787,\"listed_count\":0,\"created_at\":\"Fri Dec 20 15:27:29 +0000 2019\",\"favourites_count\":2412,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5754,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1208046199409979392\\/1656251324\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3938\":{\"id\":1452049831195815941,\"id_str\":\"1452049831195815941\",\"name\":\"Oscar Azolibe\",\"screen_name\":\"OAzolibe\",\"location\":\"Nigeria\",\"description\":\"Digital Creator (Going Viral Tonight)\",\"url\":\"https:\\/\\/t.co\\/kljsePsTsX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kljsePsTsX\",\"expanded_url\":\"http:\\/\\/www.oscarblog.online\",\"display_url\":\"oscarblog.online\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":23,\"listed_count\":0,\"created_at\":\"Sat Oct 23 23:10:56 +0000 2021\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522124094409486336\\/PWFgkJvS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522124094409486336\\/PWFgkJvS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3939\":{\"id\":103711724,\"id_str\":\"103711724\",\"name\":\"Sewen Lad \\ud83c\\udf10\",\"screen_name\":\"LadSewen\",\"location\":\"Nigeria\",\"description\":\"Photographer, Psych expert, Strategic Thinker, Actor & VoiceOver artist, NFT enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":317,\"friends_count\":582,\"listed_count\":3,\"created_at\":\"Mon Jan 11 00:52:39 +0000 2010\",\"favourites_count\":1293,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1449,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508912847329411083\\/v-hBEJxi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508912847329411083\\/v-hBEJxi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/103711724\\/1657750350\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3940\":{\"id\":1502296508561076228,\"id_str\":\"1502296508561076228\",\"name\":\"Ghost\",\"screen_name\":\"K_h_a_l_i_f\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf39\\ud83d\\ude4f\\ud83c\\udf39\\ud83e\\udd0c\\ud83c\\udf39\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\nfor more good content \\n\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\\u2b07\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/Fxod4Kti8y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fxod4Kti8y\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCE_EzAq_s-1-8RkoIsvVGjQ\",\"display_url\":\"youtube.com\\/channel\\/UCE_Ez\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1060,\"friends_count\":2803,\"listed_count\":1,\"created_at\":\"Fri Mar 11 14:53:23 +0000 2022\",\"favourites_count\":411,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":98,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554892941331660801\\/W2BP-YbL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554892941331660801\\/W2BP-YbL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502296508561076228\\/1648993901\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3941\":{\"id\":999243488,\"id_str\":\"999243488\",\"name\":\"YINQAH_GE\\ud83d\\udc8e\",\"screen_name\":\"olayinkaige\",\"location\":\"abuja\",\"description\":\"When the street are jungle there can only be one king\",\"url\":\"https:\\/\\/t.co\\/apqEWyTEq9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/apqEWyTEq9\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/olayinka-ige-107a9b83\",\"display_url\":\"linkedin.com\\/in\\/olayinka-ig\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":462,\"listed_count\":0,\"created_at\":\"Sun Dec 09 13:02:30 +0000 2012\",\"favourites_count\":268,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":983,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458170461827129344\\/G0RbTMIf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458170461827129344\\/G0RbTMIf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/999243488\\/1424367031\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3942\":{\"id\":1326176068164870144,\"id_str\":\"1326176068164870144\",\"name\":\"opeyemi afolabi\",\"screen_name\":\"OpeyemiArinola5\",\"location\":\"Lagos, Nigeria\",\"description\":\"a health advocate\\/educator\\/student\\nfounder of my health matters\",\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"expanded_url\":\"http:\\/\\/myhealthmatterstoday.wordpress.com\",\"display_url\":\"myhealthmatterstoday.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Tue Nov 10 14:53:36 +0000 2020\",\"favourites_count\":558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1326176068164870144\\/1659470260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3943\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3944\":{\"id\":780335830317600768,\"id_str\":\"780335830317600768\",\"name\":\"Tega Billi\",\"screen_name\":\"tegabilli\",\"location\":\"Warri, Nigeria\",\"description\":\"We cannot change the world until we change ourselves\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Mon Sep 26 09:18:54 +0000 2016\",\"favourites_count\":8674,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1381338586579079169\\/ldhdmNqd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1381338586579079169\\/ldhdmNqd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/780335830317600768\\/1604677754\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3945\":{\"id\":1488448259022635014,\"id_str\":\"1488448259022635014\",\"name\":\"Andre\",\"screen_name\":\"andre_design1\",\"location\":\"Lagos, Nigeria\",\"description\":\"In a world of endless possibilities we help you create an eye grabbing designs that helps you get to your ideal client, for booking:andrechristianofficial@gmail\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":369,\"listed_count\":0,\"created_at\":\"Tue Feb 01 09:45:17 +0000 2022\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":62,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529212159728697344\\/duDxePed_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529212159728697344\\/duDxePed_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1488448259022635014\\/1658340159\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3946\":{\"id\":1245884934889377792,\"id_str\":\"1245884934889377792\",\"name\":\"Infactng\",\"screen_name\":\"infactng\",\"location\":\"Abuja, Nigeria\",\"description\":\"Investigations, Long Form Narrative Journalism.\",\"url\":\"https:\\/\\/t.co\\/EJP8BVaMUr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EJP8BVaMUr\",\"expanded_url\":\"http:\\/\\/www.infactng.com\",\"display_url\":\"infactng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":28,\"friends_count\":54,\"listed_count\":0,\"created_at\":\"Fri Apr 03 01:25:22 +0000 2020\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":629,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1352945880622657536\\/7RlzRQ8a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1352945880622657536\\/7RlzRQ8a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1245884934889377792\\/1611402382\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3947\":{\"id\":1101456316130828288,\"id_str\":\"1101456316130828288\",\"name\":\"AbikeOnibata\",\"screen_name\":\"mydeviria\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your Stock Shoes Plug\\ud83d\\udd0c\\n\\nMules|Heels|Sneakers&Sandals\\n\\ud83d\\udc61\\ud83d\\udc60\\ud83e\\udd7e\\ud83d\\udc5f\\ud83d\\udc5e\\n\\nMrs O\\ud83d\\udc8d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":578,\"friends_count\":947,\"listed_count\":1,\"created_at\":\"Fri Mar 01 12:17:04 +0000 2019\",\"favourites_count\":2214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1101456316130828288\\/1659471517\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3948\":{\"id\":1526991568749617159,\"id_str\":\"1526991568749617159\",\"name\":\"Peter Obi's errand boy\\u26aa\",\"screen_name\":\"Nwakaibeya001\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":80,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed May 18 18:22:37 +0000 2022\",\"favourites_count\":1316,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":492,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535874958332682240\\/s-zYdYwZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535874958332682240\\/s-zYdYwZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526991568749617159\\/1652898824\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3949\":{\"id\":1312739299750744070,\"id_str\":\"1312739299750744070\",\"name\":\"Echezque Hub\",\"screen_name\":\"EchezqueH\",\"location\":\"Enugu, Nigeria\",\"description\":\"Business\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":64,\"listed_count\":2,\"created_at\":\"Sun Oct 04 13:00:54 +0000 2020\",\"favourites_count\":58,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521778769777856513\\/Txk-O4Cf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521778769777856513\\/Txk-O4Cf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1312739299750744070\\/1651655437\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3950\":{\"id\":1335505373399306240,\"id_str\":\"1335505373399306240\",\"name\":\"Revenes\",\"screen_name\":\"RevenesNigeria\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are all about consumer tech products.\\nWe sell, We blog, We review and We share love along the way. \\ud83d\\udda4\\ud83e\\udd0d\\nJoin Us!!\\n+234 810 034 5260\\n#revenesnigeria\",\"url\":\"https:\\/\\/t.co\\/NHT3wDsrxx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NHT3wDsrxx\",\"expanded_url\":\"https:\\/\\/www.revenes.com\\/social-page\\/\",\"display_url\":\"revenes.com\\/social-page\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":261,\"friends_count\":66,\"listed_count\":1,\"created_at\":\"Sun Dec 06 08:44:41 +0000 2020\",\"favourites_count\":2897,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1279,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520819982296354818\\/vyRL2vNh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520819982296354818\\/vyRL2vNh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1335505373399306240\\/1655139372\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3951\":{\"id\":1014049065997422592,\"id_str\":\"1014049065997422592\",\"name\":\"NIGERIAN\",\"screen_name\":\"CjKrisEze\",\"location\":\"Lagos\",\"description\":\"Integrity Respect and rule of law\",\"url\":\"https:\\/\\/t.co\\/dT1axvvWIH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dT1axvvWIH\",\"expanded_url\":\"http:\\/\\/www.kristinroofing.com.ng\",\"display_url\":\"kristinroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":1149,\"listed_count\":0,\"created_at\":\"Tue Jul 03 07:31:52 +0000 2018\",\"favourites_count\":9357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2579,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1185517868663877633\\/bGVqXAH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1185517868663877633\\/bGVqXAH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1014049065997422592\\/1571484478\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3952\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3953\":{\"id\":943589629340549120,\"id_str\":\"943589629340549120\",\"name\":\"Noble sunny\",\"screen_name\":\"Noble_asun\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":236,\"listed_count\":0,\"created_at\":\"Wed Dec 20 21:11:13 +0000 2017\",\"favourites_count\":63,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":762,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1369383434192359424\\/5GwTavYk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1369383434192359424\\/5GwTavYk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/943589629340549120\\/1615321437\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3954\":{\"id\":962513296665477120,\"id_str\":\"962513296665477120\",\"name\":\"Praise Ogunade\",\"screen_name\":\"OgunadePraise\",\"location\":\"Lagos, Nigeria\",\"description\":\"I Am Addicted To D Presence of God.I Carry His Presence With Me Every Where I Go.I Have A Passion...To Learn At His Presence, I Am A Misfit Elsewhere.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":79,\"listed_count\":1,\"created_at\":\"Sun Feb 11 02:27:07 +0000 2018\",\"favourites_count\":231,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":798,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377001248067555331\\/vQLqhaMC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377001248067555331\\/vQLqhaMC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/962513296665477120\\/1518560200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3955\":{\"id\":1382325349107830792,\"id_str\":\"1382325349107830792\",\"name\":\"gobarta_\",\"screen_name\":\"gobarta_\",\"location\":\"Nigeria\",\"description\":\"A safe space to trade and Barter. Trade smartly, stay happy. To download app, click on https:\\/\\/t.co\\/TCAu2rxr34\",\"url\":\"https:\\/\\/t.co\\/7UxZUdRazF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7UxZUdRazF\",\"expanded_url\":\"http:\\/\\/www.gobarta.com\",\"display_url\":\"gobarta.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TCAu2rxr34\",\"expanded_url\":\"https:\\/\\/play.google.com\\/store\\/apps\\/details?id=com.gobarter.barter_ui\",\"display_url\":\"play.google.com\\/store\\/apps\\/det\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":5,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Wed Apr 14 13:30:42 +0000 2021\",\"favourites_count\":179,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1382325590934556672\\/xtSIvAbQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1382325590934556672\\/xtSIvAbQ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3956\":{\"id\":1535870920174080002,\"id_str\":\"1535870920174080002\",\"name\":\"Ikemefuna\",\"screen_name\":\"Ezedinachukwu\",\"location\":\"Ado Ekiti, Nigeria\",\"description\":\"Life is Dgreatest Teacher Dmore u live D more u Learn so Invest more in Human Humility pays more adopt it:Real Estate,Solar,Cctv Installation\\/Training\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde6\\ud83c\\uddea\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":353,\"listed_count\":0,\"created_at\":\"Sun Jun 12 06:26:04 +0000 2022\",\"favourites_count\":10112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1571,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535871220444549126\\/AVmDepCA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535871220444549126\\/AVmDepCA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535870920174080002\\/1655158423\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3957\":{\"id\":1267849824151515136,\"id_str\":\"1267849824151515136\",\"name\":\"BHG Media\",\"screen_name\":\"bhginfodesk\",\"location\":\"Calabar \",\"description\":\"News Blog And Media Broadcast\",\"url\":\"https:\\/\\/t.co\\/EtqqAEASnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EtqqAEASnm\",\"expanded_url\":\"https:\\/\\/bhginfodesks.com\",\"display_url\":\"bhginfodesks.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":200,\"listed_count\":0,\"created_at\":\"Tue Jun 02 16:07:47 +0000 2020\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1507,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1348956218828709890\\/N_sRvdIQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1348956218828709890\\/N_sRvdIQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1267849824151515136\\/1610448578\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3958\":{\"id\":228383551,\"id_str\":\"228383551\",\"name\":\"A.Olalekan \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Maworry22\",\"location\":\"Lagos\",\"description\":\"Brand Reporter| Social Media Analyst|Author #Muisng| Wordpress Advocate| Tech Enthusiast| Content Writer| Copywriter| 02 Academy Alumni\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":959,\"friends_count\":2066,\"listed_count\":2,\"created_at\":\"Sun Dec 19 15:21:05 +0000 2010\",\"favourites_count\":1250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/999216394381111296\\/2oBCGa4Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/999216394381111296\\/2oBCGa4Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/228383551\\/1451471534\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3959\":{\"id\":1395444137609019403,\"id_str\":\"1395444137609019403\",\"name\":\"DemetersLawFirm #DivorceNigeria\",\"screen_name\":\"DemetersF\",\"location\":\"Nigeria\",\"description\":\"Everything You Need To Know About Marriage, Divorce & Custody in Nigeria\",\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/MzAgams\",\"display_url\":\"linktr.ee\\/MzAgams\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Thu May 20 18:21:13 +0000 2021\",\"favourites_count\":153,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1395444137609019403\\/1656532889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3960\":{\"id\":55308144,\"id_str\":\"55308144\",\"name\":\"Peter Obi's Minister of Power\",\"screen_name\":\"RealPOOkeke\",\"location\":\"Nigeria\",\"description\":\"Shadow Minister of Power|Global Energy Efficiency & Sustainability Advocate | Power Engineer| Social Commentator|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":548,\"friends_count\":1163,\"listed_count\":8,\"created_at\":\"Thu Jul 09 17:56:14 +0000 2009\",\"favourites_count\":229,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/55308144\\/1655442076\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3961\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3962\":{\"id\":4407242247,\"id_str\":\"4407242247\",\"name\":\"Liqourlion \\ud83e\\udd81Groovy\\u2763\\ufe0fBeauty\\u2693\\ufe0f\\u2763\\ufe0f\",\"screen_name\":\"holarjuhmoker\",\"location\":\"Lagos\",\"description\":\"\\ud83c\\udf61\\ud83d\\udcb5 Liqourlion\\ud83e\\udd81, Groovy\\u2763\\ufe0fBeauty\\u2763\\ufe0fBryan\\u2763\\ufe0fphyna \\u2763\\ufe0fAdekunle\\u2763\\ufe0f\\u2026 You drag any of my babies I Drag you like I pass my Neighbour generator\\u2692\\u2694\\ufe0f\\ud83d\\udd2a\\ud83e\\ude93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":247,\"friends_count\":110,\"listed_count\":0,\"created_at\":\"Mon Dec 07 18:05:57 +0000 2015\",\"favourites_count\":2845,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554919610117492736\\/p8fvKtUs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554919610117492736\\/p8fvKtUs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4407242247\\/1659556711\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3963\":{\"id\":1094632463589146624,\"id_str\":\"1094632463589146624\",\"name\":\"Great Crypto Mind\",\"screen_name\":\"crypto_palaver\",\"location\":\"Abeokuta\",\"description\":\"Respect for people irrespective of race and colour. Lover of anything good. Eschews violence.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Sun Feb 10 16:21:31 +0000 2019\",\"favourites_count\":640,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1094638767971938304\\/ZoC77cpk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1094638767971938304\\/ZoC77cpk_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3964\":{\"id\":2876181225,\"id_str\":\"2876181225\",\"name\":\"zubenna\",\"screen_name\":\"zubboke42\",\"location\":\"Porthacourt,Nigeria \",\"description\":\"Keep pushing never give up ,You can\\u2019t be unlucky for a year.|Port harcourt boy Original|IG:- @ zubenna\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":62,\"listed_count\":0,\"created_at\":\"Fri Nov 14 09:27:22 +0000 2014\",\"favourites_count\":338,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":158,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540968034168442887\\/kh15iri1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2876181225\\/1653251845\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3965\":{\"id\":1532374245195530241,\"id_str\":\"1532374245195530241\",\"name\":\"Jhonex Real Estate and Agent\",\"screen_name\":\"JHONEXEMPIRE\",\"location\":\"Lagos, Nigeria\",\"description\":\"Real Estate Consultant! Customers satisfaction is our major priority WhatsApp or call \\u260e\\ufe0f 08078560055 09025686700\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":505,\"listed_count\":0,\"created_at\":\"Thu Jun 02 14:51:19 +0000 2022\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":133,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532394917435256834\\/wFALcRQB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532394917435256834\\/wFALcRQB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1532374245195530241\\/1654187119\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3966\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3967\":{\"id\":1551827209865814016,\"id_str\":\"1551827209865814016\",\"name\":\"George Tracy\",\"screen_name\":\"yur_tee\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udccdYouTuber | Fashion |Lifestyle | Vlog\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/JWV9EprYqs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JWV9EprYqs\",\"expanded_url\":\"https:\\/\\/youtu.be\\/Urp8nd9aOME\",\"display_url\":\"youtu.be\\/Urp8nd9aOME\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Tue Jul 26 07:10:30 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551827445443182593\\/cIB56vJ__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551827445443182593\\/cIB56vJ__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551827209865814016\\/1658820212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3968\":{\"id\":1504520696822652933,\"id_str\":\"1504520696822652933\",\"name\":\"Spacemall\",\"screen_name\":\"spacemallio\",\"location\":\"Nigeria\",\"description\":\"providing you virtual store to manage your business, customers, staffs, sales & share receipt. publish your product online & metaverse in 1 click.\",\"url\":\"https:\\/\\/t.co\\/OsSOrKzD2w\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsSOrKzD2w\",\"expanded_url\":\"https:\\/\\/www.spacemall.io\",\"display_url\":\"spacemall.io\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":3,\"listed_count\":1,\"created_at\":\"Thu Mar 17 18:11:21 +0000 2022\",\"favourites_count\":22,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524401095208050690\\/JUwzGEXm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524401095208050690\\/JUwzGEXm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1504520696822652933\\/1652289482\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3969\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3970\":{\"id\":1496492388910571532,\"id_str\":\"1496492388910571532\",\"name\":\"bgrconnect\",\"screen_name\":\"bgrconnect\",\"location\":\"Lekki, Nigeria\",\"description\":\"Banksome Global Resources delivers high quality & energy sufficient buildings and exceptional projection management services on our construction projects.\",\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"expanded_url\":\"http:\\/\\/www.banksomegroup.com\",\"display_url\":\"banksomegroup.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Wed Feb 23 14:34:17 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3971\":{\"id\":1173633660316213248,\"id_str\":\"1173633660316213248\",\"name\":\"Maurice Udedike\",\"screen_name\":\"dunuotubelu\",\"location\":\"Lagos, Nigeria\",\"description\":\"like exploring\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":670,\"friends_count\":1332,\"listed_count\":0,\"created_at\":\"Mon Sep 16 16:24:35 +0000 2019\",\"favourites_count\":17560,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3972\":{\"id\":1177737732384329729,\"id_str\":\"1177737732384329729\",\"name\":\"BETO BLINKS\",\"screen_name\":\"99blinks1\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Sprinkling kindness everywhere\\u2019s I go, \\ud83e\\udda7wise tweets INSTAGRAM @99Blinks\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":384,\"listed_count\":3,\"created_at\":\"Sat Sep 28 00:12:22 +0000 2019\",\"favourites_count\":1330,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":619,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530423720325656578\\/t0VY8dU__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530423720325656578\\/t0VY8dU__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1177737732384329729\\/1653716434\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3973\":{\"id\":2943707103,\"id_str\":\"2943707103\",\"name\":\"Anietie Hanson\",\"screen_name\":\"iamaniehanson\",\"location\":\"Port-Harcourt, Nigeria\",\"description\":\"QHSE Advisor and Trainer| Life Coach| Author| Gospel Teacher\\n\\nHelping individuals to strategically think and develop themselves towards their great life vision\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":175,\"listed_count\":0,\"created_at\":\"Sat Dec 27 12:49:17 +0000 2014\",\"favourites_count\":90,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":127,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550897855208071169\\/XMLBLZ2B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550897855208071169\\/XMLBLZ2B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2943707103\\/1657739522\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3974\":{\"id\":1316387563167518720,\"id_str\":\"1316387563167518720\",\"name\":\"BeholdHomes\",\"screen_name\":\"Behold_Homes\",\"location\":\"Lekki, Nigeria\",\"description\":\"A real estate company from Nigeria focused on building and selling luxury homes and estates in the country. \\ud83c\\udfe0\\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/rce5Y5bXoY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rce5Y5bXoY\",\"expanded_url\":\"http:\\/\\/beholdhomesproperty.com\",\"display_url\":\"beholdhomesproperty.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1091,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Wed Oct 14 14:37:22 +0000 2020\",\"favourites_count\":126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":222,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316387711926837249\\/zl0siVup_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316387711926837249\\/zl0siVup_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316387563167518720\\/1602686474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3975\":{\"id\":1182786500045561856,\"id_str\":\"1182786500045561856\",\"name\":\"Samuel Reginald Annobil\",\"screen_name\":\"ReginaldAnnobil\",\"location\":\"Ghana\",\"description\":\"God first | Frontend Dev | Volunteer | Teacher | Tech_stuff | Learner | iWrite\",\"url\":\"https:\\/\\/t.co\\/I2BNwEUUgZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/I2BNwEUUgZ\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/samuel-reginald-annobil\",\"display_url\":\"linkedin.com\\/in\\/samuel-regi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":169,\"friends_count\":220,\"listed_count\":0,\"created_at\":\"Fri Oct 11 22:34:27 +0000 2019\",\"favourites_count\":9601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1014,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480562810602106883\\/UpNszT_U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480562810602106883\\/UpNszT_U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1182786500045561856\\/1657197269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3976\":{\"id\":1239254891694088192,\"id_str\":\"1239254891694088192\",\"name\":\"GoodwillHeritageFoundation\",\"screen_name\":\"GoodwillHF\",\"location\":\"Apata, Ibadan \",\"description\":\"GoodWill Heritage Foundation (GWHF) is a Nonprofit Organization.\",\"url\":\"https:\\/\\/t.co\\/KJ6yLqpFXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KJ6yLqpFXo\",\"expanded_url\":\"https:\\/\\/goodwillheritage.org\",\"display_url\":\"goodwillheritage.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Sun Mar 15 18:19:46 +0000 2020\",\"favourites_count\":23,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1240184589164961792\\/Szsi4dX7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1240184589164961792\\/Szsi4dX7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239254891694088192\\/1613583034\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3977\":{\"id\":1226286909560938498,\"id_str\":\"1226286909560938498\",\"name\":\"Bargain Fortress\",\"screen_name\":\"BargainFortress\",\"location\":\"Nigeria\",\"description\":\"Bringing you the best bargain deals from the West ... Don't blink \\ud83d\\ude09 #bargainhunter Handler: @donzama\",\"url\":\"https:\\/\\/t.co\\/dEwbECLa49\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dEwbECLa49\",\"expanded_url\":\"https:\\/\\/bargainfortress.company.site\\/\",\"display_url\":\"bargainfortress.company.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Sat Feb 08 23:29:38 +0000 2020\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":329,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1383663032975302661\\/KpKHj9iZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1383663032975302661\\/KpKHj9iZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1226286909560938498\\/1583785212\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3978\":{\"id\":1940444742,\"id_str\":\"1940444742\",\"name\":\"Papi Designer\",\"screen_name\":\"Rukegetrich09\",\"location\":\"Abuja, Nigeria\",\"description\":\"UI\\/UX Designer \\u25c7 Agriprenuer \\u2667 Tech Explorer.\",\"url\":\"https:\\/\\/t.co\\/NvjrC8ktD3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NvjrC8ktD3\",\"expanded_url\":\"https:\\/\\/www.behance.net\\/rukevweovwigho\",\"display_url\":\"behance.net\\/rukevweovwigho\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":832,\"friends_count\":517,\"listed_count\":0,\"created_at\":\"Sun Oct 06 10:08:43 +0000 2013\",\"favourites_count\":3444,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553727915241644032\\/LXQkyVq5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553727915241644032\\/LXQkyVq5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1940444742\\/1586845469\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3979\":{\"id\":1517581269927874562,\"id_str\":\"1517581269927874562\",\"name\":\"Myabove\",\"screen_name\":\"welcometoabove\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udfc6 NO \\ud83e\\udd47 TOP Deriv Exchanger\\n\\ud83c\\udfc6 Deriv, LiteForex, Hfx Affiliate & Partner\\n\\ud83d\\udcb0 Crypto Exchange\\n\\ud83d\\udcb0 Skrill Exchange\\n\\ud83d\\udcb0 Perfect money Exchange\",\"url\":\"https:\\/\\/t.co\\/VUyvP3PUgj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VUyvP3PUgj\",\"expanded_url\":\"http:\\/\\/www.myabove.ng\",\"display_url\":\"myabove.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":8,\"listed_count\":0,\"created_at\":\"Fri Apr 22 19:09:24 +0000 2022\",\"favourites_count\":136,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":126,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517582402868109312\\/zA-h_cVj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517582402868109312\\/zA-h_cVj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517581269927874562\\/1650964903\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3980\":{\"id\":1210101988601540608,\"id_str\":\"1210101988601540608\",\"name\":\"MOO CREATIVE STUDIOS\",\"screen_name\":\"MOOCREATIVESTU1\",\"location\":\"Lagos Nigeria\",\"description\":\"We Create and Tell Stories Around The World\",\"url\":\"https:\\/\\/t.co\\/lqZmm2kkaZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lqZmm2kkaZ\",\"expanded_url\":\"http:\\/\\/www.moocreativestudios.com\",\"display_url\":\"moocreativestudios.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Thu Dec 26 07:36:23 +0000 2019\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1210103630151507968\\/-cEXE9I2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1210103630151507968\\/-cEXE9I2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1210101988601540608\\/1577347260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3981\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3982\":{\"id\":1554874725498855424,\"id_str\":\"1554874725498855424\",\"name\":\"Zig Properties\",\"screen_name\":\"Zigproperties\",\"location\":\"Keffi, Nigeria\",\"description\":\"Zig Properties is positioned as a go to company for Agricultural purpose lands and other properties in Nasarawa and Abuja\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":45,\"listed_count\":0,\"created_at\":\"Wed Aug 03 17:00:09 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554878043214192641\\/p4IqPn-L_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554878043214192641\\/p4IqPn-L_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554874725498855424\\/1659546920\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3983\":{\"id\":2230801162,\"id_str\":\"2230801162\",\"name\":\"paschal\\u2026\",\"screen_name\":\"rocafela77\",\"location\":\"Lagos nigeria\",\"description\":\"06:06,dob 5.6height :::::::;young nigerian entrepreneur : crypto currency xpert and programmer :explorer :traveler pure breed genius (pure vibez) free spirited\",\"url\":\"https:\\/\\/t.co\\/z1MsZdTatt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/z1MsZdTatt\",\"expanded_url\":\"http:\\/\\/www.idgaf.com\",\"display_url\":\"idgaf.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1398,\"friends_count\":1479,\"listed_count\":2,\"created_at\":\"Tue Dec 17 22:35:53 +0000 2013\",\"favourites_count\":11280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1459,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555579399596023809\\/KCRQcT74_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555579399596023809\\/KCRQcT74_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2230801162\\/1658880285\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3984\":{\"id\":1081165750948237312,\"id_str\":\"1081165750948237312\",\"name\":\"flamzyofthegoodlife \\ud83e\\udda5\",\"screen_name\":\"NnamaniPrince1\",\"location\":\"Enugu, Nigeria\",\"description\":\"NEVER GO AGAINST THE FAMILY\\ud83e\\udd1e\\ud83c\\udffe\\u267f\\ufe0f\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":691,\"friends_count\":769,\"listed_count\":27,\"created_at\":\"Fri Jan 04 12:29:36 +0000 2019\",\"favourites_count\":1164,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":810,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532398905467588609\\/CzluRRZO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532398905467588609\\/CzluRRZO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1081165750948237312\\/1659602229\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3985\":{\"id\":1497558761904484356,\"id_str\":\"1497558761904484356\",\"name\":\"RHEYBOR\",\"screen_name\":\"de_easygreen\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hip-hop Monster\\ud83d\\udcaa\\n\\nafro beast \\n\\nfor booking\\/enquiries 07046582783\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":92,\"listed_count\":0,\"created_at\":\"Sat Feb 26 13:07:09 +0000 2022\",\"favourites_count\":414,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":71,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1497559376978231300\\/oyw7Ub7K_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1497559376978231300\\/oyw7Ub7K_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3986\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3987\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3988\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3989\":{\"id\":181674569,\"id_str\":\"181674569\",\"name\":\"PROLIFIC EDWIN\",\"screen_name\":\"Prolific_Edwin\",\"location\":\"NIGERIA\",\"description\":\"I am an outstanding entrepreneur who plays by uncommon set of rules. The only thing that can keep down is...................GRAVITY\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":832,\"listed_count\":3,\"created_at\":\"Sun Aug 22 20:00:10 +0000 2010\",\"favourites_count\":95,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555226206894755841\\/Lp6X9p3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/181674569\\/1453470846\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3990\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3991\":{\"id\":1146510084538884098,\"id_str\":\"1146510084538884098\",\"name\":\"ZamEkpere\\ud83d\\ude4f\",\"screen_name\":\"ChinazaJessica4\",\"location\":\"Awka, Nigeria\",\"description\":\"Techie \\ud83d\\udc69\\u200d\\ud83d\\udcbb Enthusiast(Frontend dev). html || css || JavaScript || React JS\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":694,\"listed_count\":0,\"created_at\":\"Wed Jul 03 20:04:40 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":159,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490658706010300419\\/XMvQXO9s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490658706010300419\\/XMvQXO9s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1146510084538884098\\/1644235707\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3992\":{\"id\":1077871486306783232,\"id_str\":\"1077871486306783232\",\"name\":\"Bright Agbons\",\"screen_name\":\"bright_agbons\",\"location\":\"Nigeria\",\"description\":\"URBANE\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":254,\"friends_count\":965,\"listed_count\":0,\"created_at\":\"Wed Dec 26 10:19:22 +0000 2018\",\"favourites_count\":4978,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2321,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483186904313040901\\/Nk-Xh8OL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483186904313040901\\/Nk-Xh8OL_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3993\":{\"id\":81361737,\"id_str\":\"81361737\",\"name\":\"Dennis Peter\",\"screen_name\":\"denys_peter\",\"location\":\"Lagos\",\"description\":\"A Quality and Safety Professional, with a specialty in Real Estate, Property Management and Marketing.\",\"url\":\"https:\\/\\/t.co\\/Db8DC1CErO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Db8DC1CErO\",\"expanded_url\":\"http:\\/\\/www.safehouseproperties.blogspot.com\",\"display_url\":\"safehouseproperties.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":250,\"friends_count\":587,\"listed_count\":3,\"created_at\":\"Sat Oct 10 14:08:20 +0000 2009\",\"favourites_count\":1595,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1028943959987552256\\/U0OSv9uP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1028943959987552256\\/U0OSv9uP_normal.jpg\",\"profile_link_color\":\"1EB300\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3994\":{\"id\":1496896114422910976,\"id_str\":\"1496896114422910976\",\"name\":\"Vidan\",\"screen_name\":\"vidantv\",\"location\":\"Nigeria\",\"description\":\"Media personality\",\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"expanded_url\":\"https:\\/\\/m.me\\/Vistavid?fbclid=IwAR2GeMKUOyTZ7k5mLRnikdX9Bp4XZy39rsNY28RWzE5-xltW-MDslU1c08Q\",\"display_url\":\"m.me\\/Vistavid?fbcli\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Feb 24 17:14:06 +0000 2022\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496896114422910976\\/1656066107\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3995\":{\"id\":1541348118188494854,\"id_str\":\"1541348118188494854\",\"name\":\"Chuviedecorolowu\",\"screen_name\":\"Chuvidecorolowu\",\"location\":\"Lagos, Nigeria\",\"description\":\"We offer service on interior decorations ranging from floors and it\\u2019s accessories to wall decorations like wallpapers and panels to ceilings !\",\"url\":\"https:\\/\\/t.co\\/lNHTXZYfNt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lNHTXZYfNt\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/chuviedecor_olowu\",\"display_url\":\"linktr.ee\\/chuviedecor_ol\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":234,\"listed_count\":0,\"created_at\":\"Mon Jun 27 09:10:14 +0000 2022\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541349340127576066\\/tkOl2ZCr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541349340127576066\\/tkOl2ZCr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1541348118188494854\\/1656321306\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3996\":{\"id\":271349890,\"id_str\":\"271349890\",\"name\":\"Omuwa Godswill\\ud83c\\uddf3\\ud83c\\uddec[A.V.A.T.A.R]\",\"screen_name\":\"Intel_Avatar\",\"location\":\"Nigeria\",\"description\":\"A Lover Of Jesus Christ, Scientist, Social Media Manager and Influencer. Special Assistant to Edo State Governor (MEDIA)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":579,\"friends_count\":1010,\"listed_count\":3,\"created_at\":\"Thu Mar 24 09:59:48 +0000 2011\",\"favourites_count\":1733,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519315567840317445\\/n1lbc5rk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/271349890\\/1650137083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3997\":{\"id\":1522548511522312199,\"id_str\":\"1522548511522312199\",\"name\":\"Socialbrandcity\",\"screen_name\":\"socialbrandcity\",\"location\":\"Nigeria\",\"description\":\"Socialbrandcity\\n\\ud83d\\ude9bConnect with your audience\\n\\ud83d\\udef8Manage your handles & Make sales \\n\\ud83c\\udf86Digital Biz consult.\\n#webdesign #logo #pagemanager\\n08033454426\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Fri May 06 12:07:37 +0000 2022\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":164,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522548737939226627\\/4fucmdND_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522548737939226627\\/4fucmdND_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522548511522312199\\/1651857713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3998\":{\"id\":1481529455801737217,\"id_str\":\"1481529455801737217\",\"name\":\"energy_machinecfr\",\"screen_name\":\"Christoph7Onoja\",\"location\":\"Abuja, Nigeria\",\"description\":\"Prolific master of ceremony!! hypeman!! Comedian!! Dataanalysisexpert!! statistician cannabis enthusiasts \\ud83c\\udf43\\ud83c\\udf43\\ud83c\\udf43\\ud83c\\udf43the herb has all the answers tweet me by 420\",\"url\":\"https:\\/\\/t.co\\/q9rOjPrcEW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q9rOjPrcEW\",\"expanded_url\":\"http:\\/\\/www.dnmtmusic.com\",\"display_url\":\"dnmtmusic.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":110,\"friends_count\":392,\"listed_count\":10,\"created_at\":\"Thu Jan 13 07:32:18 +0000 2022\",\"favourites_count\":94,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537970207175495683\\/y1nyk3zg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537970207175495683\\/y1nyk3zg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481529455801737217\\/1642085726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"3999\":{\"id\":1269357840,\"id_str\":\"1269357840\",\"name\":\"Alawiye Motivation\",\"screen_name\":\"NURUDEENSALMON\",\"location\":\"lagos,Nigeria\",\"description\":\"Writer, speaker, program facilitator, educational consultant. \\n(I am a Volunteer for Humanity)\",\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"expanded_url\":\"http:\\/\\/alawiyeweb.blogspot.com\",\"display_url\":\"alawiyeweb.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":189,\"listed_count\":1,\"created_at\":\"Fri Mar 15 10:17:31 +0000 2013\",\"favourites_count\":773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1096,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269357840\\/1654454936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4000\":{\"id\":1519105800450551808,\"id_str\":\"1519105800450551808\",\"name\":\"Gidexart\",\"screen_name\":\"Timmy_cruise1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Fine artist \\ud83c\\udfa8\\nturn on post notification\\ud83e\\udd7a\\u2665\\ufe0f\\ud83e\\udd1d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":328,\"friends_count\":1201,\"listed_count\":0,\"created_at\":\"Wed Apr 27 00:07:16 +0000 2022\",\"favourites_count\":1348,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":498,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554902166640500736\\/PJHGgn5N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554902166640500736\\/PJHGgn5N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519105800450551808\\/1651020007\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4001\":{\"id\":957886177817890816,\"id_str\":\"957886177817890816\",\"name\":\"Ayodele Paul\",\"screen_name\":\"classicpee_paul\",\"location\":\"osun state\",\"description\":\"Believer\\/Entrepreneur\\/\\nManaging Director at PAUL'S(An Adire clothing based Brand) Man-u Fan\\nFine young Boy\\n\\nThis smile \\u263ais essential, always shine that teeth\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":269,\"listed_count\":0,\"created_at\":\"Mon Jan 29 08:00:36 +0000 2018\",\"favourites_count\":389,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498963583157391360\\/41i04J86_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498963583157391360\\/41i04J86_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/957886177817890816\\/1646215742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4002\":{\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"name\":\"AsabariConsultativeCouncil\",\"screen_name\":\"Asabari_CC\",\"location\":\"Saki, Nigeria\",\"description\":\"Official Twitter handle, Asabari Consultative Council, Saki Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Sat Feb 17 04:38:51 +0000 2018\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":794,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4003\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4004\":{\"id\":1004130608233185280,\"id_str\":\"1004130608233185280\",\"name\":\"Capt Austine\\u00a5\\u00a5\",\"screen_name\":\"austine_captain\",\"location\":\"Nigeria\",\"description\":\"do something different to receive something different \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udfc6\\ud83d\\ude4f\\u2796\",\"url\":\"https:\\/\\/t.co\\/BORxzrATMD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BORxzrATMD\",\"expanded_url\":\"http:\\/\\/loading.com\",\"display_url\":\"loading.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":294,\"friends_count\":1355,\"listed_count\":1,\"created_at\":\"Tue Jun 05 22:39:27 +0000 2018\",\"favourites_count\":1199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1260,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541505831526612998\\/3cI1rY8s_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541505831526612998\\/3cI1rY8s_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1004130608233185280\\/1654771525\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4005\":{\"id\":2799780153,\"id_str\":\"2799780153\",\"name\":\"Starry Gold Academy\",\"screen_name\":\"Starry_Gold\",\"location\":\"Lagos, Nigeria\",\"description\":\"We Make Learning Easier With Our Comprehensive Video Lectures\\/Tutorials For ICAN, CIS, CITN, ATSWA, WAEC JAMB, Post UTME, Junior WAEC And Other Exams\",\"url\":\"https:\\/\\/t.co\\/yZxGoRL0u3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yZxGoRL0u3\",\"expanded_url\":\"http:\\/\\/starrygoldacademy.com\",\"display_url\":\"starrygoldacademy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":103,\"listed_count\":1,\"created_at\":\"Thu Oct 02 12:33:58 +0000 2014\",\"favourites_count\":182,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1567,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1110464575894372352\\/08OKD3-M_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1110464575894372352\\/08OKD3-M_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2799780153\\/1649316123\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4006\":{\"id\":1096361679573696514,\"id_str\":\"1096361679573696514\",\"name\":\"Caridad Charity Foundation\",\"screen_name\":\"caridad_charity\",\"location\":\"Nigeria\",\"description\":\"Caridad Charity Foundation, rebuilding Women&Girl Personality, SocialEco thru, Empowerment, Education,Health & Climate Action info@caridadcharityfoundation.org\",\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"expanded_url\":\"http:\\/\\/www.caridadcharityfoundation.org\",\"display_url\":\"caridadcharityfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Fri Feb 15 10:52:48 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1096361679573696514\\/1606838455\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4007\":{\"id\":934312788176097280,\"id_str\":\"934312788176097280\",\"name\":\"Richie\\ud83d\\uddef\",\"screen_name\":\"Tomilee2002\",\"location\":\"Nigeria\",\"description\":\"Farmer and Consultant. Wizkid Fc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":335,\"friends_count\":2938,\"listed_count\":14,\"created_at\":\"Sat Nov 25 06:48:22 +0000 2017\",\"favourites_count\":1285,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2509,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534170677120536576\\/pzedf0SK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534170677120536576\\/pzedf0SK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/934312788176097280\\/1518545269\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4008\":{\"id\":290664223,\"id_str\":\"290664223\",\"name\":\"Alex Agbo\",\"screen_name\":\"AlexAgbo23\",\"location\":\"Nigeria\",\"description\":\"Researcher | Tech | Enugu Rangers | Manchester United | Bullshit Detector | Boxing | Not Woke | Retweets are to encourage engagement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1295,\"friends_count\":998,\"listed_count\":1,\"created_at\":\"Sat Apr 30 17:39:30 +0000 2011\",\"favourites_count\":12984,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22315,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537543419727331331\\/uB55bkR0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537543419727331331\\/uB55bkR0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/290664223\\/1539174638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4009\":{\"id\":2456657931,\"id_str\":\"2456657931\",\"name\":\"Ogunlade Abiola Aremu\",\"screen_name\":\"OgunladeAbiola1\",\"location\":\"Nigeria\",\"description\":\"Promoting creativity to the maximum | Critic of bad governance | Blogger | Unapologetically, a Christian | Lover of sports| #ObidientlYusful\",\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCUBL1qgBRBpQROJrliXuwLA\",\"display_url\":\"youtube.com\\/channel\\/UCUBL1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1258,\"friends_count\":146,\"listed_count\":3,\"created_at\":\"Thu Apr 03 06:35:21 +0000 2014\",\"favourites_count\":1885,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3452,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2456657931\\/1646759743\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4010\":{\"id\":1208455455799951363,\"id_str\":\"1208455455799951363\",\"name\":\"Bernard Twise\",\"screen_name\":\"BernardTwise\",\"location\":\"Nigeria\",\"description\":\"I am an up coming musician..... from 9ja\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":260,\"friends_count\":948,\"listed_count\":0,\"created_at\":\"Sat Dec 21 18:33:52 +0000 2019\",\"favourites_count\":6882,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":840,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511763029716783105\\/6VhGmfTM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511763029716783105\\/6VhGmfTM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1208455455799951363\\/1637743082\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4011\":{\"id\":1472152760397307906,\"id_str\":\"1472152760397307906\",\"name\":\"Supreme_Continental\",\"screen_name\":\"SupremeContine1\",\"location\":\"Ilora, Oyo state. Ibadan\",\"description\":\"\\ud83d\\udc95A new Dimension of Luxury & Relaxation \\ud83d\\udc95\\nFor booking and reservation\\ud83d\\udc47\\n\\ud83d\\udcde09155578002\\n\\ud83d\\udcbb https:\\/\\/t.co\\/w5ZdX2elaX\\nWhatsApp: 09155578002\",\"url\":\"https:\\/\\/t.co\\/N2yMyIQ1IL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N2yMyIQ1IL\",\"expanded_url\":\"http:\\/\\/www.supremecontinentalhotel.com\",\"display_url\":\"supremecontinentalhotel.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w5ZdX2elaX\",\"expanded_url\":\"https:\\/\\/www.supremecontinentalhotel.com\\/\",\"display_url\":\"supremecontinentalhotel.com\",\"indices\":[86,109]}]}},\"protected\":false,\"followers_count\":48,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Sat Dec 18 10:32:45 +0000 2021\",\"favourites_count\":183,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":176,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1472153863998390273\\/lyhOayCg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1472153863998390273\\/lyhOayCg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1472152760397307906\\/1639828029\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4012\":{\"id\":1017100479325720576,\"id_str\":\"1017100479325720576\",\"name\":\"KosereNaijaMedia\\ud83d\\udce1\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Koserenaija1\",\"location\":\"Lagos, Nigeria\",\"description\":\"#MEDIA \\/ #MusicPromotions #wizkid #Davido \\nNo.1 African Portal for | Music | Entertainment & News Updates, all in both #English & #French Languages.\",\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"expanded_url\":\"http:\\/\\/koserenaija.com\",\"display_url\":\"koserenaija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1238,\"friends_count\":2279,\"listed_count\":0,\"created_at\":\"Wed Jul 11 17:37:05 +0000 2018\",\"favourites_count\":15812,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4053,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1017100479325720576\\/1540997135\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4013\":{\"id\":1489300352054792192,\"id_str\":\"1489300352054792192\",\"name\":\"AJOKEADEOMOBABAE\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\",\"screen_name\":\"NafisatAkanni\",\"location\":\"Ibadan Nigeria\",\"description\":\"lovely to be with, result oriented and prefers productivity\\ud83d\\ude01\\ud83d\\ude01\\ud83d\\ude01\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":86,\"listed_count\":0,\"created_at\":\"Thu Feb 03 18:11:10 +0000 2022\",\"favourites_count\":127,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489300445139021835\\/eU7Vvt78_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489300445139021835\\/eU7Vvt78_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489300352054792192\\/1645589146\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4014\":{\"id\":4919721857,\"id_str\":\"4919721857\",\"name\":\"@burnsen burna\\ud83e\\udd8d\",\"screen_name\":\"adisamiowon\",\"location\":\"Lagos\",\"description\":\"cool\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":900,\"friends_count\":711,\"listed_count\":0,\"created_at\":\"Tue Feb 16 15:21:17 +0000 2016\",\"favourites_count\":1638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1233610975502315520\\/4QZcKVFH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1233610975502315520\\/4QZcKVFH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4015\":{\"id\":871789905982173185,\"id_str\":\"871789905982173185\",\"name\":\"Gold\",\"screen_name\":\"GoldOnyemekara\",\"location\":\"Lagos, Nigeria\",\"description\":\"designer, crocheter, everything crochet, crochetsh0p04@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":100,\"listed_count\":0,\"created_at\":\"Mon Jun 05 18:04:45 +0000 2017\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503306723146309632\\/gmNoxdmI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503306723146309632\\/gmNoxdmI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/871789905982173185\\/1659605532\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4016\":{\"id\":1059991200,\"id_str\":\"1059991200\",\"name\":\"Yor\\u00f9b\\u00e1 Demon 001 \\ud83d\\udcbf\",\"screen_name\":\"therealsojidan\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigerian, Farmer, Leadership coach, Political Analyst, Musician, and some people's daddy!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":429,\"friends_count\":165,\"listed_count\":1,\"created_at\":\"Fri Jan 04 09:30:45 +0000 2013\",\"favourites_count\":5357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3421,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1416871146704809988\\/RSsqPQJR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1416871146704809988\\/RSsqPQJR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1059991200\\/1602433144\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4017\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4018\":{\"id\":1485371737697144835,\"id_str\":\"1485371737697144835\",\"name\":\"Nzubechi Akpu\\ud83d\\udcaa#PeterObi2023\",\"screen_name\":\"NzubechiAkpu\",\"location\":\"Lagos, Nigeria\",\"description\":\"An interior decorator with swag.\\nWhat I give you is the best quality @ the best affordable price. Let's do business.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":96,\"listed_count\":0,\"created_at\":\"Sun Jan 23 22:00:08 +0000 2022\",\"favourites_count\":200,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533455397729845248\\/Mbdn7rmh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533455397729845248\\/Mbdn7rmh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1485371737697144835\\/1643036834\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4019\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4020\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4021\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4022\":{\"id\":1100468667815477248,\"id_str\":\"1100468667815477248\",\"name\":\"daps :)\",\"screen_name\":\"beatsbydaps\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"expanded_url\":\"https:\\/\\/mainstack.me\\/daps\",\"display_url\":\"mainstack.me\\/daps\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":274,\"friends_count\":434,\"listed_count\":2,\"created_at\":\"Tue Feb 26 18:52:30 +0000 2019\",\"favourites_count\":4493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100468667815477248\\/1655589645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4023\":{\"id\":784318248342818816,\"id_str\":\"784318248342818816\",\"name\":\"Ocymichael\",\"screen_name\":\"Ocymichael2\",\"location\":\"Lagos\",\"description\":\"Am Ocy Dun Michael born in lagos breeds in Imo and Abia, am a comedian\\/musician, this account is for comedy\\/news, thanks https:\\/\\/t.co\\/triF03VRo9\",\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5BId7lO7aV\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/OCY-DUN-Comedy-Studio-332084777678542\\/\",\"display_url\":\"facebook.com\\/OCY-DUN-Comedy\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/triF03VRo9\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCy_wGytS8V\",\"display_url\":\"youtube.com\\/channel\\/UCy_wG\\u2026\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":448,\"friends_count\":423,\"listed_count\":1,\"created_at\":\"Fri Oct 07 09:03:37 +0000 2016\",\"favourites_count\":2450,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2346,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261569877103579138\\/eu136_Z2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/784318248342818816\\/1591268979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4024\":{\"id\":1282702180693221376,\"id_str\":\"1282702180693221376\",\"name\":\"CEO Africa\",\"screen_name\":\"CEOAfricanewss\",\"location\":\"Ibadan, Nigeria \",\"description\":\"Africa leading online media organisation that breaks news, Create documentaries, Online TV, Event coverage, Entrepreneurship etc. Download: https:\\/\\/t.co\\/ML9PjG6964\",\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"expanded_url\":\"http:\\/\\/www.ceoafrica.com\",\"display_url\":\"ceoafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ML9PjG6964\",\"expanded_url\":\"http:\\/\\/rb.gy\\/ms81ds\",\"display_url\":\"rb.gy\\/ms81ds\",\"indices\":[140,163]}]}},\"protected\":false,\"followers_count\":2193,\"friends_count\":2262,\"listed_count\":8,\"created_at\":\"Mon Jul 13 15:43:57 +0000 2020\",\"favourites_count\":1203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282702180693221376\\/1594810003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4025\":{\"id\":713724138830110720,\"id_str\":\"713724138830110720\",\"name\":\"SOFO BA\\ud83d\\udd25\",\"screen_name\":\"mike_jnr_gh\",\"location\":\"Ghana\",\"description\":\"I am worth more than billion dollars \\ud83d\\udcb5\\ud83d\\udcb8\\n.\\nI'm a whole vibe charley\\ud83d\\udcaf\\ud83d\\udd25\\n| ig - @mike_jnr_gh |\\n| fb - @mike_jnr_gh |\",\"url\":\"https:\\/\\/t.co\\/z2usvYrLhK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/z2usvYrLhK\",\"expanded_url\":\"https:\\/\\/youtu.be\\/5EpP8YdYIRc\",\"display_url\":\"youtu.be\\/5EpP8YdYIRc\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":92,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sat Mar 26 13:47:49 +0000 2016\",\"favourites_count\":1910,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1356,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485423072710696960\\/CoZC_ZJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485423072710696960\\/CoZC_ZJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/713724138830110720\\/1642198209\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4026\":{\"id\":191985235,\"id_str\":\"191985235\",\"name\":\"Ashinze\",\"screen_name\":\"TwittMe_Ash\",\"location\":\"In Nigeria\",\"description\":\"Movie Freak! #TheWalkingDead fan\\nI love the #MCU \\ud83d\\ude0d\\ud83d\\ude0d\\nI love DC\\nI love NG \\ud83c\\uddf3\\ud83c\\uddec\\nVFD 1009447152\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":354,\"friends_count\":1508,\"listed_count\":2,\"created_at\":\"Fri Sep 17 21:50:01 +0000 2010\",\"favourites_count\":913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2795,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"15E81F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418991753797984263\\/SpUYwH29_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418991753797984263\\/SpUYwH29_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/191985235\\/1645780003\",\"profile_link_color\":\"00B348\",\"profile_sidebar_border_color\":\"30D413\",\"profile_sidebar_fill_color\":\"2CD627\",\"profile_text_color\":\"92E812\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4027\":{\"id\":1282702180693221376,\"id_str\":\"1282702180693221376\",\"name\":\"CEO Africa\",\"screen_name\":\"CEOAfricanewss\",\"location\":\"Ibadan, Nigeria \",\"description\":\"Africa leading online media organisation that breaks news, Create documentaries, Online TV, Event coverage, Entrepreneurship etc. Download: https:\\/\\/t.co\\/ML9PjG6964\",\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"expanded_url\":\"http:\\/\\/www.ceoafrica.com\",\"display_url\":\"ceoafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ML9PjG6964\",\"expanded_url\":\"http:\\/\\/rb.gy\\/ms81ds\",\"display_url\":\"rb.gy\\/ms81ds\",\"indices\":[140,163]}]}},\"protected\":false,\"followers_count\":2193,\"friends_count\":2262,\"listed_count\":8,\"created_at\":\"Mon Jul 13 15:43:57 +0000 2020\",\"favourites_count\":1203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282702180693221376\\/1594810003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4028\":{\"id\":1536996023037476864,\"id_str\":\"1536996023037476864\",\"name\":\"FiliiMagna\",\"screen_name\":\"filiimagna\",\"location\":\"Lagos, Nigeria\",\"description\":\"Premium Consultancy Company Specializing in Travel Documentation||Visa Application||Emigration Advisory For Expatriates||Corporate Travel Service #travel\",\"url\":\"https:\\/\\/t.co\\/lKnCZuCCKj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lKnCZuCCKj\",\"expanded_url\":\"http:\\/\\/www.filiimagna.com\",\"display_url\":\"filiimagna.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Wed Jun 15 08:57:04 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536996376592121856\\/d_htOkcu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536996376592121856\\/d_htOkcu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536996023037476864\\/1655285870\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4029\":{\"id\":1053641940665856000,\"id_str\":\"1053641940665856000\",\"name\":\"Peculiar Hype\\ud83d\\udd4a\\ufe0f\",\"screen_name\":\"PeculiarHype\",\"location\":\"Nigeria\",\"description\":\"Online Promoter | Song(s) Distribution On streaming Platforms and Trend\\ud83d\\udcf1| Artiste AnR\\n\\nDM for Business Conversations Only\\nThank You.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2457,\"friends_count\":2576,\"listed_count\":2,\"created_at\":\"Sat Oct 20 13:39:49 +0000 2018\",\"favourites_count\":15777,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521841576653242368\\/6NCwlrbg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521841576653242368\\/6NCwlrbg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1053641940665856000\\/1654427953\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4030\":{\"id\":981524792548515840,\"id_str\":\"981524792548515840\",\"name\":\"kenneth\",\"screen_name\":\"kendaroza2\",\"location\":\"Lagos, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":144,\"listed_count\":0,\"created_at\":\"Wed Apr 04 13:32:01 +0000 2018\",\"favourites_count\":667,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":352,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553479039381389316\\/0IxYzsCe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553479039381389316\\/0IxYzsCe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/981524792548515840\\/1602777162\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4031\":{\"id\":35684345,\"id_str\":\"35684345\",\"name\":\"Toff T\",\"screen_name\":\"detoff\",\"location\":\"Lagos, Nigeria\",\"description\":\"De Toffest\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2204,\"friends_count\":2036,\"listed_count\":14,\"created_at\":\"Mon Apr 27 05:58:36 +0000 2009\",\"favourites_count\":59181,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29689,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1320492264565649411\\/-7XUWJD5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1320492264565649411\\/-7XUWJD5_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4032\":{\"id\":1282702180693221376,\"id_str\":\"1282702180693221376\",\"name\":\"CEO Africa\",\"screen_name\":\"CEOAfricanewss\",\"location\":\"Ibadan, Nigeria \",\"description\":\"Africa leading online media organisation that breaks news, Create documentaries, Online TV, Event coverage, Entrepreneurship etc. Download: https:\\/\\/t.co\\/ML9PjG6964\",\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqXvnU22By\",\"expanded_url\":\"http:\\/\\/www.ceoafrica.com\",\"display_url\":\"ceoafrica.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ML9PjG6964\",\"expanded_url\":\"http:\\/\\/rb.gy\\/ms81ds\",\"display_url\":\"rb.gy\\/ms81ds\",\"indices\":[140,163]}]}},\"protected\":false,\"followers_count\":2193,\"friends_count\":2262,\"listed_count\":8,\"created_at\":\"Mon Jul 13 15:43:57 +0000 2020\",\"favourites_count\":1203,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1282702498210500608\\/Ctm3n1fO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282702180693221376\\/1594810003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4033\":{\"id\":1531631522889060353,\"id_str\":\"1531631522889060353\",\"name\":\"Lamar Fund$\",\"screen_name\":\"LamarFund\",\"location\":\"Nigeria\",\"description\":\"World BoY\\u2b50\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/0JHHwvQJnK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0JHHwvQJnK\",\"expanded_url\":\"https:\\/\\/youtu.be\\/hdXP_OnSD9k\",\"display_url\":\"youtu.be\\/hdXP_OnSD9k\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue May 31 13:39:55 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555106656383651841\\/y8gNthtX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555106656383651841\\/y8gNthtX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531631522889060353\\/1659601547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4034\":{\"id\":2503628037,\"id_str\":\"2503628037\",\"name\":\"Professor toplexnice\",\"screen_name\":\"PToplexnice\",\"location\":\"Akure Nigeria\",\"description\":\"An easy going guy so single and mingle be physician and technical intelligent is sure ability is hope wisdom is God doing\\n#lfc Liverpool fans for life\\n#cruise\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":212,\"listed_count\":1,\"created_at\":\"Wed Apr 23 09:10:05 +0000 2014\",\"favourites_count\":606,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/515362324182732800\\/gRR8MAy-_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/515362324182732800\\/gRR8MAy-_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2503628037\\/1411707012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4035\":{\"id\":4180250493,\"id_str\":\"4180250493\",\"name\":\"Awah U. Daniel\",\"screen_name\":\"afcdaniels\",\"location\":\"Lagos, Nigeria \",\"description\":\"@Arsenal supporter || An entrepreneur || @peterobi for president || @ugobeststores - business page. 08083913154\\/09091328045\",\"url\":\"https:\\/\\/t.co\\/IldFYpia3I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/IldFYpia3I\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/reel\\/Cdq94kTjCpJ\\/?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/reel\\/Cdq94kTjC\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1757,\"friends_count\":515,\"listed_count\":5,\"created_at\":\"Fri Nov 13 17:32:44 +0000 2015\",\"favourites_count\":151514,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554167552233902081\\/wgWLSFi3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554167552233902081\\/wgWLSFi3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4180250493\\/1657654396\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4036\":{\"id\":992335702368161793,\"id_str\":\"992335702368161793\",\"name\":\"Lovelyn Chilaka\",\"screen_name\":\"lovelynchilaka\",\"location\":\"Lagos, Nigeria\",\"description\":\"Customer Service Pro\\/Business Entrepreneur\\/Online Fashion wholesales n retail Seller\\/Social Change Agent\\/ Volunteering\\/\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":219,\"listed_count\":0,\"created_at\":\"Fri May 04 09:30:42 +0000 2018\",\"favourites_count\":63,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/998094514303586305\\/vKE-43mC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/998094514303586305\\/vKE-43mC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/992335702368161793\\/1605779290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4037\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4038\":{\"id\":437092964,\"id_str\":\"437092964\",\"name\":\"\\ud83e\\udd34\\ud83c\\udffb\",\"screen_name\":\"DDadalekan\",\"location\":\"Nigeria\",\"description\":\"#Icon Royalty \\ud83d\\udc51, Brand influencer, Entertainer\\ud83d\\udc68\\u200d\\ud83c\\udfa4. https:\\/\\/t.co\\/zvFQjsuA6s #bitcoin #crypto #doge #trx\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zvFQjsuA6s\",\"expanded_url\":\"http:\\/\\/gate.io\",\"display_url\":\"gate.io\",\"indices\":[51,74]}]}},\"protected\":false,\"followers_count\":1962,\"friends_count\":4159,\"listed_count\":7,\"created_at\":\"Thu Dec 15 00:33:18 +0000 2011\",\"favourites_count\":2417,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8451,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme6\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1346799782392696832\\/y1j0GovH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1346799782392696832\\/y1j0GovH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/437092964\\/1609937267\",\"profile_link_color\":\"94D487\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4039\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4040\":{\"id\":1481679108094496773,\"id_str\":\"1481679108094496773\",\"name\":\"DBFK\",\"screen_name\":\"DaniboyF\",\"location\":\"Abuja\",\"description\":\"Singer\\/Song writer\\/Movie Actor\\/Writer\\/ full entertainment\\/ a Lover of God and Humanity.\\ud83d\\udcb0\\ud83d\\udcb0\\ud83c\\udd92\\ud83d\\ude0e\\ud83e\\udd11\\ud83e\\udd11\",\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8BhlCXrixv\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCdRYOk1kCmV4Ox92ToHa4lg\",\"display_url\":\"youtube.com\\/channel\\/UCdRYO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":78,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:26:59 +0000 2022\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":627,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540694932960079872\\/CzlX1OQA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481679108094496773\\/1642164487\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4041\":{\"id\":1535881025670508544,\"id_str\":\"1535881025670508544\",\"name\":\"Isha_souvenir\",\"screen_name\":\"Isha_Souvenir\",\"location\":\"Lagos, Nigeria\",\"description\":\"party\\/corporate gift\\ud83c\\udf81 | branding | Nationwide delivery \\ud83d\\ude9a IG: https:\\/\\/t.co\\/TZ2eSDkpsT Contact: +234 803 377 2577\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TZ2eSDkpsT\",\"expanded_url\":\"https:\\/\\/instagram.com\\/ishasouvenir?igshid=\",\"display_url\":\"instagram.com\\/ishasouvenir?i\\u2026\",\"indices\":[61,84]}]}},\"protected\":false,\"followers_count\":198,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Sun Jun 12 07:06:25 +0000 2022\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535887667367403521\\/GPuhhN8A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535887667367403521\\/GPuhhN8A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535881025670508544\\/1655019198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4042\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4043\":{\"id\":1175103486838681601,\"id_str\":\"1175103486838681601\",\"name\":\"SAT TOWN BOY\\ud83e\\udd4f\",\"screen_name\":\"BadBoiEmi\",\"location\":\"Nigeria\",\"description\":\"artists\\/Footballer\\/ OND & Bsc in Business administration \\ud83c\\udf93 Be Nice to people & don\\u2019t Rush Life \\u270c\\ud83c\\udffb\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3258,\"friends_count\":3078,\"listed_count\":0,\"created_at\":\"Fri Sep 20 17:45:03 +0000 2019\",\"favourites_count\":4034,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4437,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547483559140679682\\/zE1fpey7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547483559140679682\\/zE1fpey7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1175103486838681601\\/1644059387\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4044\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4045\":{\"id\":2367244171,\"id_str\":\"2367244171\",\"name\":\"Oluwagbenga Osunlaja\",\"screen_name\":\"Iamlifted001\",\"location\":\"nigeria\",\"description\":\"Auditor| Corporate event host| Public speaker trainee| Content writer| self development expert.\",\"url\":\"https:\\/\\/t.co\\/XPlCj9Ttvh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XPlCj9Ttvh\",\"expanded_url\":\"http:\\/\\/liftedpen.blogspot.com\",\"display_url\":\"liftedpen.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":107,\"friends_count\":819,\"listed_count\":0,\"created_at\":\"Sat Mar 01 15:41:45 +0000 2014\",\"favourites_count\":21035,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521376105864876034\\/qUSiU-ro_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521376105864876034\\/qUSiU-ro_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2367244171\\/1600827404\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4046\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4047\":{\"id\":770789905601531904,\"id_str\":\"770789905601531904\",\"name\":\"Abdullah\",\"screen_name\":\"xminister0\",\"location\":\"Minna, Nigeria\",\"description\":\"\\ud83d\\udcceThe world is just like a sinking boat only the real will float\\/ Synthetic indices\\/ NFT and more\\n#TrustTheProcess \\n@NFTbyNATURE\",\"url\":\"https:\\/\\/t.co\\/dHb3gSUDzu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dHb3gSUDzu\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/untitled-collection-285367071\",\"display_url\":\"opensea.io\\/collection\\/unt\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":113,\"listed_count\":5,\"created_at\":\"Wed Aug 31 01:06:49 +0000 2016\",\"favourites_count\":962,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":263,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534559969969942528\\/upMSxvYd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534559969969942528\\/upMSxvYd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/770789905601531904\\/1585488076\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4048\":{\"id\":1511760262386302980,\"id_str\":\"1511760262386302980\",\"name\":\"Committed Soul Women Health Advocacy Africa Initi\",\"screen_name\":\"officialcoswohi\",\"location\":\"Nigeria\",\"description\":\"To see a Nigeria where vulnerable and Disadvantage Women Have access to human rights and Healthcare Services Without bias\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Wed Apr 06 17:38:40 +0000 2022\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552605050706468865\\/fiSgdGME_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552605050706468865\\/fiSgdGME_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1511760262386302980\\/1659004868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4049\":{\"id\":1534615043442098176,\"id_str\":\"1534615043442098176\",\"name\":\"Tish, D Dude with bikes \\ud83c\\udfcd\",\"screen_name\":\"superridedude\",\"location\":\"Lagos, Nigeria\",\"description\":\"Promoting Africa's biking culture.\\nfeel free to support this page via sending tips. #RUBBERSIDEDOWN\",\"url\":\"https:\\/\\/t.co\\/qQoUVIlixa\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qQoUVIlixa\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348133937874\",\"display_url\":\"wa.me\\/2348133937874\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":100,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Wed Jun 08 19:15:26 +0000 2022\",\"favourites_count\":261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534615423810998280\\/AW3CRqvI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534615423810998280\\/AW3CRqvI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534615043442098176\\/1654804318\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4050\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4051\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4052\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4053\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4054\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4055\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4056\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4057\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4058\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4059\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4060\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4061\":{\"id\":1509446119314661376,\"id_str\":\"1509446119314661376\",\"name\":\"PR.NG Firm\",\"screen_name\":\"PRFirmNG\",\"location\":\"Nigeria\",\"description\":\"PR Firm PR Agency Put your business out here in Nigeria . Be first . Strategy specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":66,\"listed_count\":0,\"created_at\":\"Thu Mar 31 08:23:08 +0000 2022\",\"favourites_count\":1089,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":683,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535718455856463873\\/-9TqM6Fu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535718455856463873\\/-9TqM6Fu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4062\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4063\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4064\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4065\":{\"id\":1520422661519818752,\"id_str\":\"1520422661519818752\",\"name\":\"Ugochukwu\",\"screen_name\":\"ugo247_unpre\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u00c9z\\u00ecgbo \\u0144wa \\u00e1f\\u1ecd\\u0300 IGBO with the simplest of taste, I'm satisfied with the best. A Realist, free-thinker. A 'Civil Engr' solving\\/providing solution. PEACEFUL\\ud83d\\udda4\\ud83c\\udf40\\ud83c\\udf0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Sat Apr 30 15:22:12 +0000 2022\",\"favourites_count\":1913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":776,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555070348600791040\\/s5jxbSch_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555070348600791040\\/s5jxbSch_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520422661519818752\\/1656239308\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4066\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4067\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4068\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4069\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4070\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4071\":{\"id\":1554735303033851909,\"id_str\":\"1554735303033851909\",\"name\":\"Judith chibuzor\",\"screen_name\":\"judith_chibuzor\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83e\\udd8b\\ud835\\udc60\\u210e\\ud835\\udc52'\\ud835\\udc60 \\ud835\\udc50\\ud835\\udc5c\\ud835\\udc5c\\ud835\\udc59\\ud83e\\udd8b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":67,\"listed_count\":0,\"created_at\":\"Wed Aug 03 07:46:24 +0000 2022\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4072\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4073\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4074\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4075\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4076\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4077\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4078\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4079\":{\"id\":290929222,\"id_str\":\"290929222\",\"name\":\"Kelly Steveo\",\"screen_name\":\"kellysteveo\",\"location\":\"Nigeria\",\"description\":\"|International Education Promoter|(INTL|EDU|TOUR|BUSINESS CONSULTANT @ StudyAbroadConceptz&Tourz)\\n|Volunteer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1988,\"friends_count\":4993,\"listed_count\":10,\"created_at\":\"Sun May 01 05:44:48 +0000 2011\",\"favourites_count\":14361,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8778,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521434183176007680\\/_am-Tv2l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521434183176007680\\/_am-Tv2l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/290929222\\/1544103089\",\"profile_link_color\":\"B40B43\",\"profile_sidebar_border_color\":\"CC3366\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4080\":{\"id\":1539343942969335809,\"id_str\":\"1539343942969335809\",\"name\":\"omoniyi layo\",\"screen_name\":\"debirexx\",\"location\":\"Abuja\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Tue Jun 21 20:26:27 +0000 2022\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539343942969335809\\/1656059959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4081\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4082\":{\"id\":254571955,\"id_str\":\"254571955\",\"name\":\"Emmanuel Testament\\ud83d\\udc99\",\"screen_name\":\"Youngtestament1\",\"location\":\"Lagos\",\"description\":\"Information Tech. ||University Of Ghana Alumni ||Real Estate||Programmer||Graphics_Designer||ZUC||Legon_Alumni#Team_Chelsea||PUC||#NWA\",\"url\":\"https:\\/\\/t.co\\/D0jtlHYY7R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D0jtlHYY7R\",\"expanded_url\":\"http:\\/\\/www.testamentg.blogspot.com\",\"display_url\":\"testamentg.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1037,\"friends_count\":1490,\"listed_count\":0,\"created_at\":\"Sat Feb 19 15:10:39 +0000 2011\",\"favourites_count\":5515,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527715582082224128\\/05spet1l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527715582082224128\\/05spet1l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/254571955\\/1622394820\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4083\":{\"id\":1012988264,\"id_str\":\"1012988264\",\"name\":\"Creative Daniel\",\"screen_name\":\"DrealUzor\",\"location\":\"Benin-City, Nigeria\",\"description\":\"Creative Designer | Brand strategist | Son of God.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":267,\"friends_count\":274,\"listed_count\":4,\"created_at\":\"Sat Dec 15 11:11:40 +0000 2012\",\"favourites_count\":357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1590,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487610095655694343\\/PUMN__Tz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487610095655694343\\/PUMN__Tz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1012988264\\/1643508425\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4084\":{\"id\":1395444137609019403,\"id_str\":\"1395444137609019403\",\"name\":\"DemetersLawFirm #DivorceNigeria\",\"screen_name\":\"DemetersF\",\"location\":\"Nigeria\",\"description\":\"Everything You Need To Know About Marriage, Divorce & Custody in Nigeria\",\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bMepLa18LY\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/MzAgams\",\"display_url\":\"linktr.ee\\/MzAgams\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Thu May 20 18:21:13 +0000 2021\",\"favourites_count\":153,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":186,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542236992381095938\\/Vd-xfJw0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1395444137609019403\\/1656532889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4085\":{\"id\":194562831,\"id_str\":\"194562831\",\"name\":\"Adetokunbo| the Export Expert\",\"screen_name\":\"tokiadewoyin\",\"location\":\"Lagos, Nigeria\",\"description\":\"Beloved |Export Consultant |Agro commodity Exporter|Certified International Trade Finance professional(CITF)|Export journalism|Fortress20commodities\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/nHP36mqrmm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nHP36mqrmm\",\"expanded_url\":\"https:\\/\\/fortress20commodities.com\\/\",\"display_url\":\"fortress20commodities.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":271,\"listed_count\":0,\"created_at\":\"Fri Sep 24 13:00:47 +0000 2010\",\"favourites_count\":592,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503694061709971463\\/sqLTfpcu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503694061709971463\\/sqLTfpcu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4086\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4087\":{\"id\":1536393679480532993,\"id_str\":\"1536393679480532993\",\"name\":\"Flares\",\"screen_name\":\"theFlareabove\",\"location\":\"Nigeria\",\"description\":\"Arts, nature, objects and their beauty. \\ud83d\\ude0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Mon Jun 13 17:03:02 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536393906744700930\\/Ppf5RBpZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536393906744700930\\/Ppf5RBpZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536393679480532993\\/1655141144\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4088\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4089\":{\"id\":1554735303033851909,\"id_str\":\"1554735303033851909\",\"name\":\"Judith chibuzor\",\"screen_name\":\"judith_chibuzor\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83e\\udd8b\\ud835\\udc60\\u210e\\ud835\\udc52'\\ud835\\udc60 \\ud835\\udc50\\ud835\\udc5c\\ud835\\udc5c\\ud835\\udc59\\ud83e\\udd8b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":67,\"listed_count\":0,\"created_at\":\"Wed Aug 03 07:46:24 +0000 2022\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":61,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555457577877651456\\/LBXJFk4T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4090\":{\"id\":262305138,\"id_str\":\"262305138\",\"name\":\"Numero Uno\",\"screen_name\":\"uno_fini\",\"location\":\"Nigeria\",\"description\":\"Music Producer | Architect |\\u25a0| \\nIG- uno_fini |\\u25a0|\\nE-mail\\ud83d\\udce7- unofini5@gmail.com\\nMobile\\ud83d\\udcf1- 2348056266310\\nTribeTreeLife\",\"url\":\"https:\\/\\/t.co\\/HenkzSQlMO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HenkzSQlMO\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/unofini\",\"display_url\":\"linktr.ee\\/unofini\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":661,\"friends_count\":727,\"listed_count\":4,\"created_at\":\"Mon Mar 07 20:01:57 +0000 2011\",\"favourites_count\":12263,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3817,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFF04D\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421247446206791683\\/miEUZVKA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421247446206791683\\/miEUZVKA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/262305138\\/1593654596\",\"profile_link_color\":\"0099CC\",\"profile_sidebar_border_color\":\"FFF8AD\",\"profile_sidebar_fill_color\":\"F6FFD1\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4091\":{\"id\":1546480005965914112,\"id_str\":\"1546480005965914112\",\"name\":\"advertidehawk\",\"screen_name\":\"advertidehawk01\",\"location\":\"Lagos, Nigeria\",\"description\":\"Am a professional in digital marketing specialized in affiliate marketing, affiliate link promotion.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Mon Jul 11 13:02:50 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547867825749929984\\/uwvJ4IEp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547867825749929984\\/uwvJ4IEp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546480005965914112\\/1659521489\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4092\":{\"id\":1242756631823351810,\"id_str\":\"1242756631823351810\",\"name\":\"Hamzat Ibraheem\",\"screen_name\":\"HHolard\",\"location\":\"Lagos, Nigeria\",\"description\":\"Agricultural and Biosystems Engineering student, Unilorin.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":296,\"friends_count\":870,\"listed_count\":1,\"created_at\":\"Wed Mar 25 10:14:27 +0000 2020\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":396,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1506342159389233154\\/oS6Y-Xsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1506342159389233154\\/oS6Y-Xsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1242756631823351810\\/1587427188\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4093\":{\"id\":1489375105641766916,\"id_str\":\"1489375105641766916\",\"name\":\"GodyGold \\u2122\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"godygold01\",\"location\":\"kogi state\",\"description\":\"#upcomingcomedian \\ud83d\\ude0b\\n#Eventplanner\\ud83c\\udf39\\n#Shoemaker\\ud83e\\udd29\\n#Taaoma\\u2764\\ufe0f\\n#TaoomAdviser\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2091,\"friends_count\":4527,\"listed_count\":1,\"created_at\":\"Thu Feb 03 23:08:18 +0000 2022\",\"favourites_count\":13098,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1686,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547236571954483204\\/I36tdeq7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547236571954483204\\/I36tdeq7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1489375105641766916\\/1658721080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4094\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4095\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4096\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4097\":{\"id\":43851649,\"id_str\":\"43851649\",\"name\":\"Chinedu Hardy Nwadike\",\"screen_name\":\"hardynwa\",\"location\":\"Owerri, Nigeria\",\"description\":\"AUTHOR | BLOGGER | WEB\\/GRAPHIC DESIGNER | @Otowngist @ChildInkAfrica| MTG. @IamFloxyFlora @JanexMara | +2348038704454 | #LFC #TeamJesus #IamIgnotic\",\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"expanded_url\":\"http:\\/\\/otowngist.com\",\"display_url\":\"otowngist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2743,\"friends_count\":1332,\"listed_count\":26,\"created_at\":\"Mon Jun 01 08:04:36 +0000 2009\",\"favourites_count\":909,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82930,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43851649\\/1572299435\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4098\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4099\":{\"id\":385859703,\"id_str\":\"385859703\",\"name\":\"Ganiyu agbolahan sheriff (G.A.S)\",\"screen_name\":\"Sherealph4real\",\"location\":\"lagos nigeria\",\"description\":\"A father and husband,a clearing and forwarding agent, ardent @Chelsea supporter\\nan advocate for good governance\",\"url\":\"https:\\/\\/t.co\\/ArZJFpMxqs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ArZJFpMxqs\",\"expanded_url\":\"http:\\/\\/sherealph.com\",\"display_url\":\"sherealph.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":231,\"friends_count\":652,\"listed_count\":0,\"created_at\":\"Thu Oct 06 08:04:08 +0000 2011\",\"favourites_count\":4577,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1313591696928788482\\/WhVzV0by_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1313591696928788482\\/WhVzV0by_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/385859703\\/1603472676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4100\":{\"id\":43851649,\"id_str\":\"43851649\",\"name\":\"Chinedu Hardy Nwadike\",\"screen_name\":\"hardynwa\",\"location\":\"Owerri, Nigeria\",\"description\":\"AUTHOR | BLOGGER | WEB\\/GRAPHIC DESIGNER | @Otowngist @ChildInkAfrica| MTG. @IamFloxyFlora @JanexMara | +2348038704454 | #LFC #TeamJesus #IamIgnotic\",\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oXaFRFihBg\",\"expanded_url\":\"http:\\/\\/otowngist.com\",\"display_url\":\"otowngist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2743,\"friends_count\":1332,\"listed_count\":26,\"created_at\":\"Mon Jun 01 08:04:36 +0000 2009\",\"favourites_count\":909,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82930,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485035273037795328\\/6pohUDHv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43851649\\/1572299435\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4101\":{\"id\":1384148845949448192,\"id_str\":\"1384148845949448192\",\"name\":\"Friendlilycoach: Business English\",\"screen_name\":\"friendlilycoach\",\"location\":\"Ikeja Lagos, Nigeria\",\"description\":\"Business English coach for business owners \\nI help busy business owners improve their\\nbusiness English skills\\nto get more business deals\\n\\ud83d\\ude80Work with me\\n DM 1:1\",\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/friendlilycoach\",\"display_url\":\"linktr.ee\\/friendlilycoach\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":195,\"friends_count\":181,\"listed_count\":0,\"created_at\":\"Mon Apr 19 14:16:29 +0000 2021\",\"favourites_count\":14936,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":506,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384148845949448192\\/1656706699\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4102\":{\"id\":3101767727,\"id_str\":\"3101767727\",\"name\":\"Abastin\\ud83d\\udc5fthe\\ud83e\\udd7eshoe\\ud83d\\udc5eplug\",\"screen_name\":\"abastinfooties\",\"location\":\"lagos \",\"description\":\"Certified shoemaker, physician (electronics), salaff \\u0627\\u0644\\u062d\\u0645\\u062f\\u0644\\u0644\\u0647, CHEIF EXECUTIVE OFFICER OF https:\\/\\/t.co\\/KS99H4dBZ8 (ABASTIN FOOTIES)\",\"url\":\"https:\\/\\/t.co\\/YjGxbKBveU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YjGxbKBveU\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348123699393\",\"display_url\":\"wa.me\\/c\\/2348123699393\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KS99H4dBZ8\",\"expanded_url\":\"http:\\/\\/ABASTIN.NG\",\"display_url\":\"ABASTIN.NG\",\"indices\":[90,113]}]}},\"protected\":false,\"followers_count\":165,\"friends_count\":162,\"listed_count\":0,\"created_at\":\"Sat Mar 21 12:48:50 +0000 2015\",\"favourites_count\":3592,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1522,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1399288715298672641\\/SNs84R0S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1399288715298672641\\/SNs84R0S_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3101767727\\/1571852080\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4103\":{\"id\":1384148845949448192,\"id_str\":\"1384148845949448192\",\"name\":\"Friendlilycoach: Business English\",\"screen_name\":\"friendlilycoach\",\"location\":\"Ikeja Lagos, Nigeria\",\"description\":\"Business English coach for business owners \\nI help busy business owners improve their\\nbusiness English skills\\nto get more business deals\\n\\ud83d\\ude80Work with me\\n DM 1:1\",\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/friendlilycoach\",\"display_url\":\"linktr.ee\\/friendlilycoach\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":195,\"friends_count\":181,\"listed_count\":0,\"created_at\":\"Mon Apr 19 14:16:29 +0000 2021\",\"favourites_count\":14936,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":506,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384148845949448192\\/1656706699\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4104\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4105\":{\"id\":1536809855368974339,\"id_str\":\"1536809855368974339\",\"name\":\"Abdul Foodies\",\"screen_name\":\"AbdulFoodies\",\"location\":\"Jos, Nigeria \",\"description\":\"Foodstuff vegetables and fruits wholesale and retail nation wide delivery\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jun 14 20:38:19 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":54,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536810746839027713\\/IEkBRweW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4106\":{\"id\":1384148845949448192,\"id_str\":\"1384148845949448192\",\"name\":\"Friendlilycoach: Business English\",\"screen_name\":\"friendlilycoach\",\"location\":\"Ikeja Lagos, Nigeria\",\"description\":\"Business English coach for business owners \\nI help busy business owners improve their\\nbusiness English skills\\nto get more business deals\\n\\ud83d\\ude80Work with me\\n DM 1:1\",\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beXsn4Y3cK\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/friendlilycoach\",\"display_url\":\"linktr.ee\\/friendlilycoach\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":195,\"friends_count\":181,\"listed_count\":0,\"created_at\":\"Mon Apr 19 14:16:29 +0000 2021\",\"favourites_count\":14936,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":506,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1435268276716597251\\/-SiDUq9r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1384148845949448192\\/1656706699\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4107\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4108\":{\"id\":4767118182,\"id_str\":\"4767118182\",\"name\":\"EKO OF CALABAR\",\"screen_name\":\"DjEko_1\",\"location\":\"VGM_HQ\",\"description\":\"Artist @Vgmrecords1 |Event Planner| Creative Thinker |DJ| Land Surveyor #TheSauce Out In All Digital Platforms email: Emperorotu16@gmail.com\",\"url\":\"https:\\/\\/t.co\\/1uRvimNEiG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1uRvimNEiG\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/eko-126\\/song\\/eko\",\"display_url\":\"audiomack.com\\/eko-126\\/song\\/e\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9801,\"friends_count\":9397,\"listed_count\":2,\"created_at\":\"Sat Jan 16 07:17:13 +0000 2016\",\"favourites_count\":60078,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7978,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522861313877286913\\/rfSdfhAg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522861313877286913\\/rfSdfhAg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4767118182\\/1569369452\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4109\":{\"id\":1493449741266472962,\"id_str\":\"1493449741266472962\",\"name\":\"ABASIFREKE\",\"screen_name\":\"akanscript_\",\"location\":\"Nigeria\",\"description\":\"Content is all I do. I see it in everything.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":24,\"listed_count\":0,\"created_at\":\"Tue Feb 15 04:59:13 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540038757654593536\\/d-9YHpkB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540038757654593536\\/d-9YHpkB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1493449741266472962\\/1656008841\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4110\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4111\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4112\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4113\":{\"id\":1514607566357073927,\"id_str\":\"1514607566357073927\",\"name\":\"Net_makanaki_comics\",\"screen_name\":\"NetMakanaki\",\"location\":\"Nigeria\",\"description\":\"The Handky Man\\ud83e\\udde3\\ud83d\\ude05\",\"url\":\"https:\\/\\/t.co\\/xtHeJzBSUA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xtHeJzBSUA\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC2u6AlHfaDDKeAe_lKM8sow\",\"display_url\":\"youtube.com\\/channel\\/UC2u6A\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":510,\"listed_count\":0,\"created_at\":\"Thu Apr 14 14:12:54 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523437056172736512\\/VK5VOAoP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523437056172736512\\/VK5VOAoP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514607566357073927\\/1652051073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4114\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4115\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4116\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4117\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4118\":{\"id\":244023438,\"id_str\":\"244023438\",\"name\":\"MIKE\",\"screen_name\":\"wengermike\",\"location\":\"lagos\",\"description\":\"media consultant #photography #videographer #graphic artist #still & motion editing\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Fri Jan 28 10:04:20 +0000 2011\",\"favourites_count\":551,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":333,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"3B94D9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1178122471276531712\\/dxzlVlat_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1178122471276531712\\/dxzlVlat_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/244023438\\/1602082992\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4119\":{\"id\":1524995178305671169,\"id_str\":\"1524995178305671169\",\"name\":\"M-zord Auto Republic\",\"screen_name\":\"m_zordAutorep\",\"location\":\"Nigeria\",\"description\":\"I welcome you if you are an Automotive lovers, name any cars you love and let us tell you something amazing about it. \\nIf you are not a car lover, you will be!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":206,\"listed_count\":0,\"created_at\":\"Fri May 13 06:09:34 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547132961564270592\\/TRHB31QX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547132961564270592\\/TRHB31QX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1524995178305671169\\/1652515185\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4120\":{\"id\":1510942253191249925,\"id_str\":\"1510942253191249925\",\"name\":\"Olukorede Joy\",\"screen_name\":\"JoyOlukorede\",\"location\":\"Akure, Ondo State\",\"description\":\"Official Campus Ambassador at International MUN\\u00b6Industrial Chemist (in View)\\u00b6Data Analytics enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":213,\"listed_count\":0,\"created_at\":\"Mon Apr 04 11:28:29 +0000 2022\",\"favourites_count\":251,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":88,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514610724575739904\\/hk58ewdP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510942253191249925\\/1658619740\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4121\":{\"id\":1552970733948747776,\"id_str\":\"1552970733948747776\",\"name\":\"OLAMIDE\\ud83e\\udd70\\ud83e\\udd0d\\u270c\\ufe0f\",\"screen_name\":\"i_amwordsmith\",\"location\":\"Lagos, Nigeria\",\"description\":\"Don't know what you will like to believe so just ask the questions please \\u270c\\ufe0f\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Fri Jul 29 10:54:57 +0000 2022\",\"favourites_count\":50,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":33,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553000617085386753\\/N5ZnQ-uC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553000617085386753\\/N5ZnQ-uC_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4122\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4123\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4124\":{\"id\":1511365623175069708,\"id_str\":\"1511365623175069708\",\"name\":\"Faithfynphotography\",\"screen_name\":\"Faithfynphotog2\",\"location\":\"\",\"description\":\"Faithfynphotography is a photography studio based in Edo state Nigeria we specialize in general event such as wedding, birthdays, studio sessions etc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":143,\"listed_count\":0,\"created_at\":\"Tue Apr 05 15:30:33 +0000 2022\",\"favourites_count\":154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":135,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511365860774006786\\/xtt-hOF4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511365860774006786\\/xtt-hOF4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1511365623175069708\\/1649174068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4125\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4126\":{\"id\":77688101,\"id_str\":\"77688101\",\"name\":\"Omar Kaj\",\"screen_name\":\"Andalusio\",\"location\":\"Lagos, Nigeria\",\"description\":\"Writer\\/graphic & website designer. I make apps (@omarkajsoftware). Author of 'Maria the Vampire Princess' & 'Hiroshi and the Neon Ninjas.' Nigerian & Lebanese.\",\"url\":\"https:\\/\\/t.co\\/E4BD1RjneP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E4BD1RjneP\",\"expanded_url\":\"https:\\/\\/www.omarkaj.com.ng\",\"display_url\":\"omarkaj.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641,\"friends_count\":2149,\"listed_count\":68,\"created_at\":\"Sun Sep 27 07:42:06 +0000 2009\",\"favourites_count\":12353,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504443423348117507\\/M1pXdgRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504443423348117507\\/M1pXdgRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/77688101\\/1647522256\",\"profile_link_color\":\"333333\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4127\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4128\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4129\":{\"id\":1458001472503926787,\"id_str\":\"1458001472503926787\",\"name\":\"Aja Peace\",\"screen_name\":\"ajapeace1\",\"location\":\"Nigeria\",\"description\":\"A prestigious, crypto enthusiast , always ready to impact.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1031,\"friends_count\":551,\"listed_count\":50,\"created_at\":\"Tue Nov 09 09:21:19 +0000 2021\",\"favourites_count\":22921,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1085,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4130\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4131\":{\"id\":1372115429766877184,\"id_str\":\"1372115429766877184\",\"name\":\"Robert Kingin'\",\"screen_name\":\"RobertAshu_\",\"location\":\"Nigeria\",\"description\":\"A learning business Entrepreneur, Creative, I Counsel, I Motivate, I Teach. Co-founder Barber's Closet https:\\/\\/t.co\\/VU6LBxDlT5\",\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100063973153033\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VU6LBxDlT5\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/profile.php?id=100063973153033\",\"display_url\":\"facebook.com\\/profile.php?id\\u2026\",\"indices\":[103,126]}]}},\"protected\":false,\"followers_count\":13,\"friends_count\":80,\"listed_count\":0,\"created_at\":\"Wed Mar 17 09:20:02 +0000 2021\",\"favourites_count\":123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552230869192015872\\/FrTqRW90_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552230869192015872\\/FrTqRW90_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372115429766877184\\/1653247358\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4132\":{\"id\":1204733699146833920,\"id_str\":\"1204733699146833920\",\"name\":\"Stark\\ud83d\\udc3a\\ud83d\\udc3a\",\"screen_name\":\"daniang_james\",\"location\":\"Jos, Nigeria\",\"description\":\"Architect, Interior Designer, 3d Visualization lover, Software freek\\ud83d\\ude02\\nChef \\ud83e\\udd62\\ud83e\\udd62\\nMinimalist Spender \\ud83e\\udd2a\\nEntrepreneur\\ud83d\\udcb0\\nReader\\nPhycology Enthusiast\",\"url\":\"https:\\/\\/t.co\\/zfNKjxYTHb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zfNKjxYTHb\",\"expanded_url\":\"http:\\/\\/www.behance.net\\/JAMARKWA\",\"display_url\":\"behance.net\\/JAMARKWA\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":173,\"friends_count\":315,\"listed_count\":2,\"created_at\":\"Wed Dec 11 12:04:44 +0000 2019\",\"favourites_count\":345,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":139,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551307297514733569\\/26qVCWoZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551307297514733569\\/26qVCWoZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1204733699146833920\\/1659396737\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4133\":{\"id\":1953982476,\"id_str\":\"1953982476\",\"name\":\"Omotayo David Ogunmakinde\",\"screen_name\":\"bigdavidofficia\",\"location\":\"Lagos, Nigeria\",\"description\":\"Creative Writer\\nSongwriter\\/Singer\\nPoet | Quote writer\",\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BlYQg2xoTe\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/XCD6CFA6FKBON1\",\"display_url\":\"wa.me\\/message\\/XCD6CF\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":190,\"friends_count\":2437,\"listed_count\":0,\"created_at\":\"Fri Oct 11 11:56:56 +0000 2013\",\"favourites_count\":5245,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3851,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538820085334392832\\/Jw5IfHuY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1953982476\\/1585925843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4134\":{\"id\":1017734190979256321,\"id_str\":\"1017734190979256321\",\"name\":\"Emerald\\u263a\",\"screen_name\":\"OdunolaOgundar1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am Emerald and sociologist.\\nI am a content writer, digital marketer, web designer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":206,\"listed_count\":4,\"created_at\":\"Fri Jul 13 11:35:14 +0000 2018\",\"favourites_count\":257,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":83,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1382756411772395529\\/lmcpHfrz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1382756411772395529\\/lmcpHfrz_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4135\":{\"id\":3240190498,\"id_str\":\"3240190498\",\"name\":\"Ekemini Sunday\",\"screen_name\":\"maverick_kemmy\",\"location\":\"Akwa Ibom, Nigeria\",\"description\":\"3D and Visual Effect Artist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":106,\"friends_count\":195,\"listed_count\":2,\"created_at\":\"Thu May 07 08:32:44 +0000 2015\",\"favourites_count\":1806,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1741,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518883080219598854\\/8NqIBOfb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518883080219598854\\/8NqIBOfb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3240190498\\/1597600012\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4136\":{\"id\":1017100479325720576,\"id_str\":\"1017100479325720576\",\"name\":\"KosereNaijaMedia\\ud83d\\udce1\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Koserenaija1\",\"location\":\"Lagos, Nigeria\",\"description\":\"#MEDIA \\/ #MusicPromotions #wizkid #Davido \\nNo.1 African Portal for | Music | Entertainment & News Updates, all in both #English & #French Languages.\",\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pBy5O9nzVz\",\"expanded_url\":\"http:\\/\\/koserenaija.com\",\"display_url\":\"koserenaija.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1238,\"friends_count\":2279,\"listed_count\":0,\"created_at\":\"Wed Jul 11 17:37:05 +0000 2018\",\"favourites_count\":15812,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4053,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322096814716260353\\/uObpD1LP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1017100479325720576\\/1540997135\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4137\":{\"id\":1538268358268837888,\"id_str\":\"1538268358268837888\",\"name\":\"Tea hexperrt\",\"screen_name\":\"THexperrt\",\"location\":\"Nigeria\",\"description\":\"Hey, I am TIJANI, a Digital Marketer skilled in Influencer marketing, social media marketing and Affiliate marketing. I am here to help contact if you need me.\",\"url\":\"https:\\/\\/t.co\\/1HeeMHPXPU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1HeeMHPXPU\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/teahexperrt\",\"display_url\":\"linktr.ee\\/teahexperrt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":106,\"listed_count\":0,\"created_at\":\"Sat Jun 18 21:12:28 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538276859707793408\\/TAbLPnEu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538276859707793408\\/TAbLPnEu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538268358268837888\\/1655588760\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4138\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4139\":{\"id\":1538706995489804289,\"id_str\":\"1538706995489804289\",\"name\":\"king ayomide anchor\",\"screen_name\":\"betubaba__\",\"location\":\"Ibadan, Nigeria\",\"description\":\"the shaderoom of talent don\\u2019t call me a blogger I am an entertainer Advt strictly to email praisrayomide92@gmail.com follow me on instagram @ayomideanchor\",\"url\":\"https:\\/\\/t.co\\/C0v8JS35dV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/C0v8JS35dV\",\"expanded_url\":\"https:\\/\\/ayomideanchor.blogspot.com\\/2022\\/07\\/bobrisky.html\",\"display_url\":\"ayomideanchor.blogspot.com\\/2022\\/07\\/bobris\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":37,\"listed_count\":0,\"created_at\":\"Mon Jun 20 02:15:34 +0000 2022\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551001772495458305\\/FXpol5HM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551001772495458305\\/FXpol5HM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1538706995489804289\\/1655692633\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4140\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4141\":{\"id\":1491187775915364358,\"id_str\":\"1491187775915364358\",\"name\":\"EnyinnaVictorBlog #Obidatti2023\",\"screen_name\":\"Enyi_VictorBlog\",\"location\":\"Nigeria\",\"description\":\"#Activist |#Blogger |#Christain |#CivilEngineer |#Enterprenuer |#Farmer |#GraphicsDesigner |#Politician |#Rotaractor | #Writerslift | C.E.O #enyinnavictorblog\",\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uWbzjOYYBA\",\"expanded_url\":\"http:\\/\\/www.enyinnavictorblog.blogspot.com\",\"display_url\":\"enyinnavictorblog.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2474,\"friends_count\":4876,\"listed_count\":5,\"created_at\":\"Tue Feb 08 23:11:17 +0000 2022\",\"favourites_count\":4101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3843,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512164739266273290\\/RXVHNlyH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1491187775915364358\\/1655662356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4142\":{\"id\":1004038924983992320,\"id_str\":\"1004038924983992320\",\"name\":\"@Lizzie_Rowland\",\"screen_name\":\"LizzieRowland8\",\"location\":\"Lagos, Nigeria\",\"description\":\"Lover of God and Music. Creative Writer. Mass Communicator. I'm a darling\\ud83d\\ude0a\\ud83d\\ude0a\\ud83d\\ude0a\\/\\/ Entrepreneur\\/\\/IG business page: @d_thriftcorna \\/\\/ FB biz page: d_thriftcorna\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":116,\"listed_count\":0,\"created_at\":\"Tue Jun 05 16:35:08 +0000 2018\",\"favourites_count\":29,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1094346075421458434\\/S5y-ign-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1094346075421458434\\/S5y-ign-_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4143\":{\"id\":1519444188055670790,\"id_str\":\"1519444188055670790\",\"name\":\"Awana A gana\",\"screen_name\":\"awana_a_gana\",\"location\":\"Borno, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":101,\"listed_count\":0,\"created_at\":\"Wed Apr 27 22:31:58 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522302271639404545\\/JrnfoKQ0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522302271639404545\\/JrnfoKQ0_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4144\":{\"id\":2479822689,\"id_str\":\"2479822689\",\"name\":\"Adekola Abiodun\",\"screen_name\":\"nobleabey\",\"location\":\"Abuja, Nigeria\",\"description\":\"Interest in Finance, Big data, Data Analytics & Predictive Machine Learning\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":101,\"friends_count\":871,\"listed_count\":2,\"created_at\":\"Sat Apr 12 21:13:14 +0000 2014\",\"favourites_count\":1421,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515792914441453578\\/lOuPAMxa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515792914441453578\\/lOuPAMxa_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4145\":{\"id\":1524282286388170753,\"id_str\":\"1524282286388170753\",\"name\":\"Stevebluzz_official\",\"screen_name\":\"Stevebluzz__\",\"location\":\"Nigeria\",\"description\":\"Artiste\\nMusic is the oil I rub on my soul.\\nStevebluzz@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":96,\"listed_count\":0,\"created_at\":\"Wed May 11 06:57:06 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524282904565669888\\/WRi8p317_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524282904565669888\\/WRi8p317_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4146\":{\"id\":1164632120784039936,\"id_str\":\"1164632120784039936\",\"name\":\"Just Event Online Publication\",\"screen_name\":\"justeventsonlin\",\"location\":\"Nigeria\",\"description\":\"news, media publication, and events publication, former account @justeventonline\",\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"expanded_url\":\"http:\\/\\/justeventonline.com\",\"display_url\":\"justeventonline.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1215,\"friends_count\":68,\"listed_count\":1,\"created_at\":\"Thu Aug 22 20:15:36 +0000 2019\",\"favourites_count\":36,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1164632120784039936\\/1612162614\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4147\":{\"id\":356144107,\"id_str\":\"356144107\",\"name\":\"Officialsugargarcia\",\"screen_name\":\"9ja_poet_singer\",\"location\":\"Ikorodu\",\"description\":\"song machine\\ud83c\\udfb5\\nrecording act\\ud83c\\udfa4\\nsongwriter\\ud83d\\udcdd\\npoet,author\\ud83d\\udcda\\nnon religious being\\ud83d\\udd26\\ntop radio 90.9 NTR S24 winner\\ud83e\\udd47\\nArsenal\\u26bd\\nhttps:\\/\\/t.co\\/4JFMsYjy9w\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4JFMsYjy9w\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/owolabi-quadri-1\",\"display_url\":\"audiomack.com\\/owolabi-quadri\\u2026\",\"indices\":[115,138]}]}},\"protected\":false,\"followers_count\":116,\"friends_count\":307,\"listed_count\":2,\"created_at\":\"Tue Aug 16 12:10:11 +0000 2011\",\"favourites_count\":291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4148\":{\"id\":835211810,\"id_str\":\"835211810\",\"name\":\"StopBadLeadership\\u2712\\ud83d\\udce7\",\"screen_name\":\"SaveThePeoplle\",\"location\":\"Abuja, Nigeria\",\"description\":\"Injustice is a threat to peace, coexistence and development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":464,\"listed_count\":2,\"created_at\":\"Thu Sep 20 09:52:19 +0000 2012\",\"favourites_count\":3499,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537117936212758528\\/MqmVczrQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/835211810\\/1632594200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4149\":{\"id\":352999659,\"id_str\":\"352999659\",\"name\":\"Emmanuel Okwor\",\"screen_name\":\"raymotors2019\",\"location\":\"Abia, Nigeria\",\"description\":\"A voice for the voiceless, social and political analyst, Writer, Thinker, Entrepreneur. Man of the people\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":174,\"friends_count\":499,\"listed_count\":0,\"created_at\":\"Thu Aug 11 11:54:56 +0000 2011\",\"favourites_count\":291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":657,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317447250998628353\\/UAcBl_tx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317447250998628353\\/UAcBl_tx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/352999659\\/1602938633\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4150\":{\"id\":1419998103772573698,\"id_str\":\"1419998103772573698\",\"name\":\"EGBO BLESSING\",\"screen_name\":\"EGBOBLESSING17\",\"location\":\"Nigeria\",\"description\":\"blessingmmesomachi@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 27 12:28:59 +0000 2021\",\"favourites_count\":22,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1419998453019643929\\/1Gy2IwZ2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1419998453019643929\\/1Gy2IwZ2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1419998103772573698\\/1652357758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4151\":{\"id\":902404597326766080,\"id_str\":\"902404597326766080\",\"name\":\"1mic De Rabbi\",\"screen_name\":\"officialonemic\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":205,\"friends_count\":475,\"listed_count\":0,\"created_at\":\"Tue Aug 29 05:36:36 +0000 2017\",\"favourites_count\":206,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":600,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1328925022300286976\\/vqZFXovA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1328925022300286976\\/vqZFXovA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/902404597326766080\\/1506661084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4152\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4153\":{\"id\":1391078083789197314,\"id_str\":\"1391078083789197314\",\"name\":\"JUST FOCUZ\",\"screen_name\":\"Oceanfocuz\",\"location\":\"Nigeria\",\"description\":\"Freelancer\\/\\/Fashionista\\/\\/Rotaractor\",\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/s2\\/32f940b784\",\"display_url\":\"fiverr.com\\/s2\\/32f940b784\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":200,\"listed_count\":2,\"created_at\":\"Sat May 08 17:11:12 +0000 2021\",\"favourites_count\":495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4154\":{\"id\":1391078083789197314,\"id_str\":\"1391078083789197314\",\"name\":\"JUST FOCUZ\",\"screen_name\":\"Oceanfocuz\",\"location\":\"Nigeria\",\"description\":\"Freelancer\\/\\/Fashionista\\/\\/Rotaractor\",\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/97mKmRuy0t\",\"expanded_url\":\"https:\\/\\/www.fiverr.com\\/s2\\/32f940b784\",\"display_url\":\"fiverr.com\\/s2\\/32f940b784\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":200,\"listed_count\":2,\"created_at\":\"Sat May 08 17:11:12 +0000 2021\",\"favourites_count\":495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":201,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553894959648067588\\/7lbepl1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4155\":{\"id\":1319373245053886464,\"id_str\":\"1319373245053886464\",\"name\":\"Alexwills consolidated\",\"screen_name\":\"AAlexan63671061\",\"location\":\"Benin-City, Nigeria\",\"description\":\"am good at what i do no matter how hard\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":272,\"listed_count\":0,\"created_at\":\"Thu Oct 22 20:21:33 +0000 2020\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319382250165800961\\/4wKwdrj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319373245053886464\\/1654848237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4156\":{\"id\":842401415981105152,\"id_str\":\"842401415981105152\",\"name\":\"JERAB WORLD\",\"screen_name\":\"JerryKatician01\",\"location\":\"Benue, Nigeria\",\"description\":\"Microbiologist.\\nEvent Organizer with JERABVOICE-MEDIA\\nConvener of KEPAawards\\/Miss Kwande Pageant.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":103,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Thu Mar 16 15:45:23 +0000 2017\",\"favourites_count\":3130,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":690,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395747325465800706\\/M-KIDhI4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395747325465800706\\/M-KIDhI4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842401415981105152\\/1602686767\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4157\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4158\":{\"id\":833544452614533124,\"id_str\":\"833544452614533124\",\"name\":\"Judeanarmz\",\"screen_name\":\"Jude_anarmz\",\"location\":\"Lagos, Nigeria\",\"description\":\"OXFORDPROPS MULTISERVICES ELITES LTD.\\nSubsidary Managing Director \\n\\nInvestment Manager | Smart Entrepreneur || The Oxford Green Farms Group\\u25aaTOGFG\\u25aaAgrolyfe \\ud83c\\udf31\",\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":781,\"listed_count\":1,\"created_at\":\"Mon Feb 20 05:10:58 +0000 2017\",\"favourites_count\":887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2919,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833544452614533124\\/1659562338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4159\":{\"id\":833544452614533124,\"id_str\":\"833544452614533124\",\"name\":\"Judeanarmz\",\"screen_name\":\"Jude_anarmz\",\"location\":\"Lagos, Nigeria\",\"description\":\"OXFORDPROPS MULTISERVICES ELITES LTD.\\nSubsidary Managing Director \\n\\nInvestment Manager | Smart Entrepreneur || The Oxford Green Farms Group\\u25aaTOGFG\\u25aaAgrolyfe \\ud83c\\udf31\",\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pwiXIo9WWk\",\"expanded_url\":\"https:\\/\\/app.agrolyfe.farm\\/register?code=CUSM6313884\",\"display_url\":\"app.agrolyfe.farm\\/register?code=\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":781,\"listed_count\":1,\"created_at\":\"Mon Feb 20 05:10:58 +0000 2017\",\"favourites_count\":887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2919,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542935494673240064\\/ygZoAgBO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833544452614533124\\/1659562338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4160\":{\"id\":257007133,\"id_str\":\"257007133\",\"name\":\"TJ Saheed 'Wale\",\"screen_name\":\"TJSaheed\",\"location\":\"Abuja\",\"description\":\"I practice self-pampering\\ud83d\\ude00; @ngxgrp Swing, Trend and Position Trader \\ud83d\\udcc8\\ud83d\\udcc9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1739,\"friends_count\":1409,\"listed_count\":4,\"created_at\":\"Thu Feb 24 14:37:41 +0000 2011\",\"favourites_count\":715,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1182024139231678464\\/Ev4934J0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1182024139231678464\\/Ev4934J0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/257007133\\/1570651556\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4161\":{\"id\":1497621902617100299,\"id_str\":\"1497621902617100299\",\"name\":\"CHB\",\"screen_name\":\"Bulky305\",\"location\":\"Lagos, Nigeria\",\"description\":\"Interior\\/Decor\\/Home\\/Office\\/Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Sat Feb 26 17:17:55 +0000 2022\",\"favourites_count\":738,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554055929389260800\\/-8x9tNwP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554055929389260800\\/-8x9tNwP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4162\":{\"id\":827379676251246592,\"id_str\":\"827379676251246592\",\"name\":\"Otobong Inieke\",\"screen_name\":\"devinieke\",\"location\":\"Niger Delta\",\"description\":\"Web developer. Indie Researcher. I promise i am not battery operated. See evidence at https:\\/\\/t.co\\/kqw2uglr79\",\"url\":\"https:\\/\\/t.co\\/eFVrxSVUd8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eFVrxSVUd8\",\"expanded_url\":\"https:\\/\\/devinieke.com.ng\\/\",\"display_url\":\"devinieke.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kqw2uglr79\",\"expanded_url\":\"http:\\/\\/devinieke.com.ng\",\"display_url\":\"devinieke.com.ng\",\"indices\":[86,109]}]}},\"protected\":false,\"followers_count\":61,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Feb 03 04:54:21 +0000 2017\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":223,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550302608023232513\\/qHIZjxd2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550302608023232513\\/qHIZjxd2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/827379676251246592\\/1564493213\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4163\":{\"id\":1368603054342299652,\"id_str\":\"1368603054342299652\",\"name\":\"Chuks\",\"screen_name\":\"Chuks238_\",\"location\":\"\",\"description\":\"I am the most friendly being that ever lives\\ud83d\\ude0d\\ud83e\\udd38\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1248,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 07 16:43:20 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1368603054342299652\\/1652602455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4164\":{\"id\":1212703241164619776,\"id_str\":\"1212703241164619776\",\"name\":\"Green Savannah Diplomatic Cable\",\"screen_name\":\"savannah_cable\",\"location\":\"Abuja, Nigeria\",\"description\":\"Green Savannah Diplomatic Cable Limited, Publishers of Green Savannah Diplomatic Cable, a weekly online international magazine in Nigeria.\",\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yrAhj564ly\",\"expanded_url\":\"http:\\/\\/greensavannahdiplomaticcable.com\",\"display_url\":\"greensavannahdiplomaticcable.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":135,\"friends_count\":825,\"listed_count\":1,\"created_at\":\"Thu Jan 02 11:53:45 +0000 2020\",\"favourites_count\":112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":648,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1212703945509998592\\/IgzC_Q8b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212703241164619776\\/1577966529\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4165\":{\"id\":1121045969309773825,\"id_str\":\"1121045969309773825\",\"name\":\"NaijaRealityNews\",\"screen_name\":\"NaijaRealityNe1\",\"location\":\"Nigeria\",\"description\":\"News\\/\\/ Political updates\\/\\/ Entertainment\\/\\/\",\"url\":\"https:\\/\\/t.co\\/MX1HeKE6wv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MX1HeKE6wv\",\"expanded_url\":\"http:\\/\\/www.naijarealitynews.com\",\"display_url\":\"naijarealitynews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":186,\"friends_count\":178,\"listed_count\":3,\"created_at\":\"Wed Apr 24 13:39:21 +0000 2019\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1209958268296142848\\/H-rbfCaM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1209958268296142848\\/H-rbfCaM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1121045969309773825\\/1577311504\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4166\":{\"id\":1447468045153222658,\"id_str\":\"1447468045153222658\",\"name\":\"The Kampala Report\",\"screen_name\":\"KampalaReport\",\"location\":\"Uganda\",\"description\":\"https:\\/\\/t.co\\/3rgSeCcrSm. Uganda\\u2019s premier publishing and news and information platform.\",\"url\":\"https:\\/\\/t.co\\/c0IBiHnygH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c0IBiHnygH\",\"expanded_url\":\"http:\\/\\/thekampalareport.com\",\"display_url\":\"thekampalareport.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3rgSeCcrSm\",\"expanded_url\":\"http:\\/\\/theKampalaReport.com\",\"display_url\":\"theKampalaReport.com\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":973,\"friends_count\":390,\"listed_count\":4,\"created_at\":\"Mon Oct 11 07:44:27 +0000 2021\",\"favourites_count\":1172,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460131443141758979\\/APqiw-aD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460131443141758979\\/APqiw-aD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1447468045153222658\\/1636957440\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4167\":{\"id\":1554372786826760193,\"id_str\":\"1554372786826760193\",\"name\":\"Eyo Nelly Comedian\",\"screen_name\":\"EyoNelly1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Am easy to understand, jovial, easy to forgive and forget, I don\\u2019t have time for hatred, and I love some one progress.\",\"url\":\"https:\\/\\/t.co\\/9QDVmnf9vp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9QDVmnf9vp\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCegw683ccsmbgwae6uMaSww\",\"display_url\":\"youtube.com\\/channel\\/UCegw6\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":197,\"friends_count\":653,\"listed_count\":0,\"created_at\":\"Tue Aug 02 07:45:53 +0000 2022\",\"favourites_count\":50,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554381644576038912\\/2rpf7V77_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554381644576038912\\/2rpf7V77_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554372786826760193\\/1659429580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4168\":{\"id\":1091772044751052800,\"id_str\":\"1091772044751052800\",\"name\":\"cleeptv\",\"screen_name\":\"Cleeptvng\",\"location\":\"Lagos, Nigeria\",\"description\":\"The only online television with definite difference #cleeptvng #redcarpettv #pageanttv\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Sat Feb 02 18:55:14 +0000 2019\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1091772044751052800\\/1649018856\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4169\":{\"id\":1307802721,\"id_str\":\"1307802721\",\"name\":\"Bankole Oluwatobi Emmanuel\",\"screen_name\":\"tobilobaphotog\",\"location\":\"Nigeria\",\"description\":\"A Portrait | Wedding | Event Photographer.\\nContacts: 07030243091, 07082726271\\nEmail: tobiloba42graphy@gmail.com\",\"url\":\"https:\\/\\/t.co\\/HSKHhkOjpw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HSKHhkOjpw\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2347030243091\",\"display_url\":\"wa.me\\/c\\/2347030243091\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":692,\"friends_count\":989,\"listed_count\":0,\"created_at\":\"Wed Mar 27 15:29:26 +0000 2013\",\"favourites_count\":1528,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2242,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375453870323863553\\/a8tKACye_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375453870323863553\\/a8tKACye_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1307802721\\/1413736833\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4170\":{\"id\":1554592378744356865,\"id_str\":\"1554592378744356865\",\"name\":\"Kosywilson\",\"screen_name\":\"Kosywilson2\",\"location\":\"\",\"description\":\"CRYPTO ENTHUSIAST\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Tue Aug 02 22:18:16 +0000 2022\",\"favourites_count\":7,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554596037569953798\\/87mzmM_p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554596037569953798\\/87mzmM_p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554592378744356865\\/1659558199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4171\":{\"id\":498698704,\"id_str\":\"498698704\",\"name\":\"Ellem Kuti\",\"screen_name\":\"kutithedirector\",\"location\":\"Lagos, Nigeria\",\"description\":\"Visual Artist | Product Designe | Video Editor & Creator | Legal Officer\",\"url\":\"https:\\/\\/t.co\\/4vNQzghZTe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4vNQzghZTe\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCl1SKJl82kWr4Vus2roo2iA\",\"display_url\":\"youtube.com\\/channel\\/UCl1SK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":77,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Tue Feb 21 10:00:51 +0000 2012\",\"favourites_count\":132,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":97,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547365999250399232\\/iuKSQJKM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547365999250399232\\/iuKSQJKM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/498698704\\/1586771460\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4172\":{\"id\":1154377936440635393,\"id_str\":\"1154377936440635393\",\"name\":\"SUG D GENERAL \\ud83c\\udfa4\",\"screen_name\":\"SUG_D_GENERAL\",\"location\":\"Agbor, Nigeria\",\"description\":\"IGS 08\\/09| Unical Alumnus| 2016\\/2017 SUG Director of Socials| Event Host\\/Comp\\u00e8re| OAP & Pidgin News Presenter @Sleek FM| \\u2709 daniel.egwu1@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":338,\"friends_count\":324,\"listed_count\":0,\"created_at\":\"Thu Jul 25 13:08:42 +0000 2019\",\"favourites_count\":3958,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1753,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1350011510618263558\\/AcrI7Qn5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1350011510618263558\\/AcrI7Qn5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1154377936440635393\\/1609461363\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4173\":{\"id\":1126018021288480768,\"id_str\":\"1126018021288480768\",\"name\":\"Skillerdo superstar\",\"screen_name\":\"skillerdo\",\"location\":\"Lekki\",\"description\":\"I'm de man skillerdo Bae\\ud83c\\udf7e\\\" romantical i sing for yo..\\\"pose for de picture\\\"\\ud83d\\udcf8....@ https:\\/\\/t.co\\/N8Kq1ZLCJp\\nWhatsapp\\/Call me on ma +2348164705278\",\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed May 08 06:56:31 +0000 2019\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4174\":{\"id\":1003459379734220807,\"id_str\":\"1003459379734220807\",\"name\":\"Daniel Ahamba\",\"screen_name\":\"DanielNkem8\",\"location\":\"Lagos, Nigeria\",\"description\":\"Teens Coach | Music Minister | Polymer Engineer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1154,\"friends_count\":1870,\"listed_count\":6,\"created_at\":\"Mon Jun 04 02:12:14 +0000 2018\",\"favourites_count\":8480,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10739,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460765587915907077\\/hD6jfHcr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460765587915907077\\/hD6jfHcr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1003459379734220807\\/1531927717\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4175\":{\"id\":626591530,\"id_str\":\"626591530\",\"name\":\"Elon Musk \\ud83d\\udc99\",\"screen_name\":\"montero4emirate\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm an I.T Officer n a Server Admin. I sell n install all kinds of security gadgets:CCTVs,THURAYAs,Car Trackers,Access Control Systems,SPY Cams. +234-8061588654\",\"url\":\"https:\\/\\/t.co\\/O6fR3e8CYl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O6fR3e8CYl\",\"expanded_url\":\"http:\\/\\/www.monterotech.blogspot.com\",\"display_url\":\"monterotech.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3987,\"friends_count\":4881,\"listed_count\":0,\"created_at\":\"Wed Jul 04 16:31:18 +0000 2012\",\"favourites_count\":45919,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4415,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547625021241102336\\/HwvChi4B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547625021241102336\\/HwvChi4B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/626591530\\/1526381597\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4176\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4177\":{\"id\":1377892142304141313,\"id_str\":\"1377892142304141313\",\"name\":\"Ibadan Properties\",\"screen_name\":\"IbadanPropertis\",\"location\":\"Ibadan, Nigeria\",\"description\":\"call & WhatsApp:- 08025006103\",\"url\":\"https:\\/\\/t.co\\/vcqK6f3KoO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vcqK6f3KoO\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/UBEPK6KYOKPJG1\",\"display_url\":\"wa.me\\/message\\/UBEPK6\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":222,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Fri Apr 02 07:54:34 +0000 2021\",\"favourites_count\":111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377899835907579904\\/xK-ZOuTt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377899835907579904\\/xK-ZOuTt_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4178\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4179\":{\"id\":1455045298150125569,\"id_str\":\"1455045298150125569\",\"name\":\"First Touch Information News \\ud83d\\uddde\\ufe0f\\ud83d\\udcf0\",\"screen_name\":\"firsttouch_info\",\"location\":\"Abuja, Nigeria\",\"description\":\"Independent Media, #freelancer \\n#News #Information, #Educative post, #Gist, #Politics, #sports #worldnews, #music, #jams etc #firsttouchinfonews@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nDNboiJl8I\",\"expanded_url\":\"http:\\/\\/firsttouchinfo.blogspot.com\",\"display_url\":\"firsttouchinfo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Mon Nov 01 05:33:38 +0000 2021\",\"favourites_count\":712,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2934,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455045546255790085\\/lE20BDp6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1455045298150125569\\/1635747651\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4180\":{\"id\":1545322791960035331,\"id_str\":\"1545322791960035331\",\"name\":\"Davilisco\",\"screen_name\":\"davilisco\",\"location\":\"Nigeria\",\"description\":\"Song writer,lisco vibes \\ud83d\\udd25 my vibes beyond what you see,actor,dancer,entertainer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":53,\"listed_count\":0,\"created_at\":\"Fri Jul 08 08:24:20 +0000 2022\",\"favourites_count\":243,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545325361583505409\\/7XpVjGCI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545325361583505409\\/7XpVjGCI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4181\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4182\":{\"id\":1268945157757505543,\"id_str\":\"1268945157757505543\",\"name\":\"Dkenzie\",\"screen_name\":\"AmDkenzie\",\"location\":\"Lagos, Nigeria\",\"description\":\"A Musician, Content Creator, An Engineer\\/Entrepreneur and my Love For Kids and the Vulnerable is Second to known.\",\"url\":\"https:\\/\\/t.co\\/hy0QTlTq2R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hy0QTlTq2R\",\"expanded_url\":\"https:\\/\\/youtu.be\\/BxkfJXvYxek\",\"display_url\":\"youtu.be\\/BxkfJXvYxek\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Fri Jun 05 16:38:25 +0000 2020\",\"favourites_count\":318,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555142061602611200\\/07s2isKp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555142061602611200\\/07s2isKp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268945157757505543\\/1659609747\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4183\":{\"id\":1091772044751052800,\"id_str\":\"1091772044751052800\",\"name\":\"cleeptv\",\"screen_name\":\"Cleeptvng\",\"location\":\"Lagos, Nigeria\",\"description\":\"The only online television with definite difference #cleeptvng #redcarpettv #pageanttv\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Sat Feb 02 18:55:14 +0000 2019\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":50,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510718920558366728\\/2kP6C-nH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1091772044751052800\\/1649018856\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4184\":{\"id\":1169153319903879168,\"id_str\":\"1169153319903879168\",\"name\":\"Disezeal\",\"screen_name\":\"ZealDise\",\"location\":\"Lagos, Nigeria\",\"description\":\"performing artist l rapper l singer\\/song writer l SIGN TO P.M ESCAPADE RECORD https:\\/\\/t.co\\/humtaCTEta watch my video dise zeal ft erigga\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/humtaCTEta\",\"expanded_url\":\"https:\\/\\/youtu.be\\/RI7XUS-_890\",\"display_url\":\"youtu.be\\/RI7XUS-_890\",\"indices\":[78,101]}]}},\"protected\":false,\"followers_count\":192,\"friends_count\":1653,\"listed_count\":1,\"created_at\":\"Wed Sep 04 07:40:59 +0000 2019\",\"favourites_count\":280,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":225,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555579810335842304\\/9v9iVuwI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555579810335842304\\/9v9iVuwI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4185\":{\"id\":1482716035530768385,\"id_str\":\"1482716035530768385\",\"name\":\"Apostle Joseph Udoh\",\"screen_name\":\"ApostleJoeUdoh\",\"location\":\"Akwa ibom State, Nigeria\",\"description\":\"\\u2764FOLLOW ME for more Posts on your Health, Religious POSTS, Marriages, relationship etc. When there's good Health, Life is sweet\\ud83d\\udc4c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Sun Jan 16 14:07:33 +0000 2022\",\"favourites_count\":39,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":34,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550740250045173762\\/4YgoJ0eK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550740250045173762\\/4YgoJ0eK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482716035530768385\\/1658477504\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4186\":{\"id\":1482662666992766979,\"id_str\":\"1482662666992766979\",\"name\":\"tahir lawal\",\"screen_name\":\"huameeyr_\",\"location\":\"Nigeria\",\"description\":\"Consumer Hotline:+65-31290538 support@wikifx.com +234-706 777 7762; +61-449895363 Telegram:+60-103342306 Whatsapp:+852-6613 1970; +44-7517747077\",\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eVE6P6nIot\",\"expanded_url\":\"https:\\/\\/www.wikifx.com\\/en\\/\",\"display_url\":\"wikifx.com\\/en\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":250,\"listed_count\":0,\"created_at\":\"Sun Jan 16 10:35:22 +0000 2022\",\"favourites_count\":147,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536792720030806018\\/MH46_y6W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482662666992766979\\/1642330199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4187\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4188\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4189\":{\"id\":1021863700838469633,\"id_str\":\"1021863700838469633\",\"name\":\"Hizbuzz\",\"screen_name\":\"xo_luxury_store\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified cloth dealer \\ud83d\\udd0c\\ud83c\\udf3c. We deal with all kind of clothes\\ud83d\\udc55, shoes\\ud83d\\udc5f\\ud83d\\udc5e, boxers, bags\\ud83c\\udf92, trousers, sun shade glasses\\ud83d\\udc53 Chelsea fc\\ud83d\\udc99 @mateokovacic8 fan\",\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348138512629\",\"display_url\":\"wa.me\\/+2348138512629\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":1160,\"listed_count\":0,\"created_at\":\"Tue Jul 24 21:04:26 +0000 2018\",\"favourites_count\":40839,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33102,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1021863700838469633\\/1603448863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4190\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4812,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4191\":{\"id\":1282343050149232640,\"id_str\":\"1282343050149232640\",\"name\":\"Timotee\",\"screen_name\":\"iam_timotee\",\"location\":\"Abuja, Nigeria\",\"description\":\"https:\\/\\/t.co\\/31B8RvQ4RS\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/31B8RvQ4RS\",\"expanded_url\":\"https:\\/\\/ffm.to\\/afro-urban\",\"display_url\":\"ffm.to\\/afro-urban\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":402,\"friends_count\":427,\"listed_count\":0,\"created_at\":\"Sun Jul 12 15:56:39 +0000 2020\",\"favourites_count\":3447,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":657,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533919079366639616\\/yfzh0eMy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533919079366639616\\/yfzh0eMy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282343050149232640\\/1654971643\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4192\":{\"id\":1546236824464629760,\"id_str\":\"1546236824464629760\",\"name\":\"Emeka okoye\",\"screen_name\":\"Ezeego_of_igbo\",\"location\":\"Lagos Nigeria \",\"description\":\"Humble Guy\\nBUSINESS MAN CEO NEOPERFECT NIG ENTERPRISE.(RC :3595181) CEO @neoperfect_merchandise_ on IG.\\nOld accounts blocked pls follow I will follow back.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":121,\"friends_count\":475,\"listed_count\":0,\"created_at\":\"Sun Jul 10 20:56:15 +0000 2022\",\"favourites_count\":70,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546236824464629760\\/1657486858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4193\":{\"id\":403033229,\"id_str\":\"403033229\",\"name\":\"TBC, CSC.\",\"screen_name\":\"Adedayomichaels\",\"location\":\"lagos\",\"description\":\"I am an International Emissary, A Global Citizen \\ud83d\\udcbc \\/Author. (First Class, Na Beans) \\/WeddingEmcee\\ud83e\\udd70\\/ CorporateEvent Host\\ud83c\\udfa4! @fcbarcelona\\ud83d\\ude0d\\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\uddec\\ud83c\\udde7\",\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/U9LPWnGeuK\",\"expanded_url\":\"https:\\/\\/aheadly.co\\/yes\",\"display_url\":\"aheadly.co\\/yes\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":1190,\"listed_count\":0,\"created_at\":\"Tue Nov 01 22:45:10 +0000 2011\",\"favourites_count\":3194,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3899,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548064352724365320\\/dQ8m8WIX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/403033229\\/1614815397\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4194\":{\"id\":1497847909068517377,\"id_str\":\"1497847909068517377\",\"name\":\"Ikenna Ugwu\",\"screen_name\":\"pastppl\",\"location\":\"Nigeria\",\"description\":\"Let\\u2019s go back #history\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Sun Feb 27 08:16:16 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508031684670853123\\/2FJv410X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508031684670853123\\/2FJv410X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497847909068517377\\/1648377791\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4195\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4196\":{\"id\":1317965393735143424,\"id_str\":\"1317965393735143424\",\"name\":\"Arma\",\"screen_name\":\"arma_lakes\",\"location\":\"Yorkshire and The Humber, Engl\",\"description\":\"Football Journalist \\u26bd\\nAspirations to Make A Change.\\nNobel Prize \\ud83e\\udd47\\n\\nConnect with me via https:\\/\\/t.co\\/YPNiJoIgnj\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YPNiJoIgnj\",\"expanded_url\":\"http:\\/\\/wa.link\\/mgufe3\",\"display_url\":\"wa.link\\/mgufe3\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":37,\"friends_count\":138,\"listed_count\":4,\"created_at\":\"Sun Oct 18 23:07:19 +0000 2020\",\"favourites_count\":1477,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2282,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491385938471178246\\/NtRQHIjR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491385938471178246\\/NtRQHIjR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317965393735143424\\/1644786447\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4197\":{\"id\":1547286170920521730,\"id_str\":\"1547286170920521730\",\"name\":\"Racheal Samuel\",\"screen_name\":\"feracouture_ng\",\"location\":\"Ibadan, Nigeria\",\"description\":\"A business administrator turned fashion designer | I cut to fit. IG: @feracouture.ng contact: 08107527169\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":19,\"listed_count\":0,\"created_at\":\"Wed Jul 13 18:26:23 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553665989786615808\\/Omo7s5ti_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553665989786615808\\/Omo7s5ti_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1547286170920521730\\/1659258532\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4198\":{\"id\":479754411,\"id_str\":\"479754411\",\"name\":\"Chidimma&Chidiebere\",\"screen_name\":\"Aneke_Twins\",\"location\":\"Nigeria\",\"description\":\"About Us: Prod,Actors, CEO Greenville production int'l Ltd, https:\\/\\/t.co\\/wKR7Bmm02h Our Blog: https:\\/\\/t.co\\/DjOlxl33Tb Our Fan Page: https:\\/\\/t.co\\/opXqRQZgUH 08036129789\",\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"expanded_url\":\"http:\\/\\/greenvilleproductions.com\",\"display_url\":\"greenvilleproductions.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wKR7Bmm02h\",\"expanded_url\":\"http:\\/\\/bit.ly\\/OdEnWv\",\"display_url\":\"bit.ly\\/OdEnWv\",\"indices\":[60,83]},{\"url\":\"https:\\/\\/t.co\\/DjOlxl33Tb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/U2eefG\",\"display_url\":\"bit.ly\\/U2eefG\",\"indices\":[94,117]},{\"url\":\"https:\\/\\/t.co\\/opXqRQZgUH\",\"expanded_url\":\"http:\\/\\/on.fb.me\\/OdEZv7\",\"display_url\":\"on.fb.me\\/OdEZv7\",\"indices\":[132,155]}]}},\"protected\":false,\"followers_count\":6050,\"friends_count\":369,\"listed_count\":26,\"created_at\":\"Tue Jan 31 18:43:22 +0000 2012\",\"favourites_count\":2238,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9419,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/479754411\\/1619194743\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4199\":{\"id\":1544321553575428100,\"id_str\":\"1544321553575428100\",\"name\":\"Folks\",\"screen_name\":\"folks_room\",\"location\":\"Lagos, Nigeria\",\"description\":\"Asserting for Truth, Fairness and Justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Jul 05 14:05:58 +0000 2022\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544321553575428100\\/1659510356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4200\":{\"id\":3187033583,\"id_str\":\"3187033583\",\"name\":\"Obet Of Africa\",\"screen_name\":\"obetobetta\",\"location\":\"Lagos\",\"description\":\"A political Scientist and Educationist\",\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/_obet_jr\\/\",\"display_url\":\"instagram.com\\/_obet_jr\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Mon Apr 20 12:32:05 +0000 2015\",\"favourites_count\":446,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3187033583\\/1644142736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4201\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4202\":{\"id\":3964976607,\"id_str\":\"3964976607\",\"name\":\"D.MAN\",\"screen_name\":\"d_semigrapher\",\"location\":\"Otta, Nigeria\",\"description\":\"PHOTOGRAPHER \\nand a chelsea fan\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Thu Oct 15 12:13:34 +0000 2015\",\"favourites_count\":1074,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":762,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554804969575964672\\/RrDBPyWu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554804969575964672\\/RrDBPyWu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3964976607\\/1629332843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4203\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4204\":{\"id\":1234385178635706369,\"id_str\":\"1234385178635706369\",\"name\":\"Oloyede Grace \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Oloyede_Grace1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Mechanical\\/Aircraft Engineer. Prince Charming. @Chevron I Stance for Humanity. @RachelAnkomahRL @Afrisensation @MulungiKhloe @Maymunarhmimii\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3163,\"friends_count\":4003,\"listed_count\":0,\"created_at\":\"Mon Mar 02 07:49:30 +0000 2020\",\"favourites_count\":7729,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523300031134158851\\/Ir8oYDQK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1234385178635706369\\/1653326759\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4205\":{\"id\":1516345896333631489,\"id_str\":\"1516345896333631489\",\"name\":\"Gospel vibes\",\"screen_name\":\"Yorbvibechurch\",\"location\":\"Lagos, Nigeria\",\"description\":\"The Gospel to the world\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":421,\"friends_count\":107,\"listed_count\":1,\"created_at\":\"Tue Apr 19 09:20:21 +0000 2022\",\"favourites_count\":524,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549369740367372290\\/XgkcdEbD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549369740367372290\\/XgkcdEbD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1516345896333631489\\/1650399395\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4206\":{\"id\":1010812634659217408,\"id_str\":\"1010812634659217408\",\"name\":\"Mc Primate\",\"screen_name\":\"primatekomedy\",\"location\":\"Nigeria\",\"description\":\"It's bro Primate comedy ...it's a new account because the old account got hacked\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":198,\"friends_count\":306,\"listed_count\":0,\"created_at\":\"Sun Jun 24 09:11:26 +0000 2018\",\"favourites_count\":472,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":245,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1010814276456669185\\/nGtamYU9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1010814276456669185\\/nGtamYU9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1010812634659217408\\/1531464559\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4207\":{\"id\":1255811134344626176,\"id_str\":\"1255811134344626176\",\"name\":\"o\\u2019wunmi\\u2728\\ud83d\\udd3a\",\"screen_name\":\"Abike0991\",\"location\":\"Lagos, Nigeria\",\"description\":\"Dental surgeon assistant \\ud83d\\udc69\\ud83c\\udffd\\u200d\\u2695\\ufe0fI sell new and uk used phones \\ud83d\\udcf1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":597,\"friends_count\":581,\"listed_count\":2,\"created_at\":\"Thu Apr 30 10:48:47 +0000 2020\",\"favourites_count\":4669,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":927,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1335302272226643973\\/bbHknqr4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1335302272226643973\\/bbHknqr4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1255811134344626176\\/1607195846\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4208\":{\"id\":954291493753294848,\"id_str\":\"954291493753294848\",\"name\":\"Niniola \\u2665\\ufe0f\\ud83d\\udd4a\\ufe0f\",\"screen_name\":\"RotninS_JR\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"Fashion Brand||Men's Clothing||Hit the follow button let's be mutuals\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1358,\"friends_count\":1349,\"listed_count\":0,\"created_at\":\"Fri Jan 19 09:56:36 +0000 2018\",\"favourites_count\":8578,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555982434222612481\\/f10-s51b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555982434222612481\\/f10-s51b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/954291493753294848\\/1659810094\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4209\":{\"id\":1492278910398210049,\"id_str\":\"1492278910398210049\",\"name\":\"Obidient\",\"screen_name\":\"Sharon_sleey\",\"location\":\"Abuja, Nigeria\",\"description\":\"Video editor \\ud83d\\udcbb Makeup artist\\ud83d\\udc84 Drone pilot\\u270c\\ufe0f Graphic designer \\ud83d\\udc4dHit me up if you got any deal\\ud83d\\ude05\\ud83e\\udd2a\\ud83d\\udc44\",\"url\":\"https:\\/\\/t.co\\/gJKlIAIBzF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gJKlIAIBzF\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCadzdvqobeZrWQyAE7BhydQ\",\"display_url\":\"youtube.com\\/channel\\/UCadzd\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Fri Feb 11 23:26:50 +0000 2022\",\"favourites_count\":78,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":68,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552035261021929472\\/Lr-eD2LI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552035261021929472\\/Lr-eD2LI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492278910398210049\\/1644622600\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4210\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4211\":{\"id\":3143103863,\"id_str\":\"3143103863\",\"name\":\"Bcars Autos\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udde7(legit man)\",\"screen_name\":\"OLAMIBODEREHAN\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your car \\ud83d\\udd0c.. Brand new.. Foreign use.. Local used.. Of all kind. \\ud83d\\udcde08024592965..Manchester United fan.. Obedient&Yusful..Nigeria \\ud83c\\uddf3\\ud83c\\uddec & Uk \\ud83c\\uddec\\ud83c\\udde7 future citizen\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":914,\"friends_count\":1851,\"listed_count\":0,\"created_at\":\"Tue Apr 07 08:22:00 +0000 2015\",\"favourites_count\":804,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505110436022259714\\/AdiuQJc2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505110436022259714\\/AdiuQJc2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3143103863\\/1615931438\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4212\":{\"id\":1139934332527763456,\"id_str\":\"1139934332527763456\",\"name\":\"Adedamola Omo Awujo\\ud83d\\udc83\\ud83d\\udc83\",\"screen_name\":\"damola_awujo\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a law student\\ud83d\\udc69\\u200d\\u2696\\ufe0f.\\nI'm a light, always shining bright \\u2728.\\nI'm a Smiling queen \\ud83d\\ude00.\\nI'm a problem solver.\\nI'm a baby girl for life \\ud83e\\udd17\\ud83d\\udc83\\ud83d\\udc83\\ud83d\\udc83\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1422,\"friends_count\":1101,\"listed_count\":0,\"created_at\":\"Sat Jun 15 16:34:58 +0000 2019\",\"favourites_count\":1163,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":404,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547284691899875332\\/mJ15l2L3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547284691899875332\\/mJ15l2L3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1139934332527763456\\/1602015339\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4213\":{\"id\":895557285136801794,\"id_str\":\"895557285136801794\",\"name\":\"Ibhadojemu Lucky Emmanuel\",\"screen_name\":\"thegeminifire\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud835\\udc13\\ud835\\udc21\\ud835\\udc1e \\ud835\\udc1e\\ud835\\udc26\\ud835\\udc29\\ud835\\udc32\\ud835\\udc2b\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc27 \\ud835\\udc1e\\ud835\\udc27\\ud835\\udc2d\\ud835\\udc22\\ud835\\udc2d\\ud835\\udc32 \\u2600\\ufe0f\\ud83c\\udf16\\u2728\\ud83d\\udd25\\ud83d\\udc7c\\n\\nI serve the God of @temsbaby\",\"url\":\"https:\\/\\/t.co\\/vmFrbMtPHS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vmFrbMtPHS\",\"expanded_url\":\"http:\\/\\/linktr.ee\\/IbhadojemuLuckyEmmanuel\",\"display_url\":\"linktr.ee\\/IbhadojemuLuck\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":321,\"friends_count\":627,\"listed_count\":1,\"created_at\":\"Thu Aug 10 08:07:50 +0000 2017\",\"favourites_count\":3079,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481975218256195586\\/L7CdRxbl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481975218256195586\\/L7CdRxbl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/895557285136801794\\/1658631570\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4214\":{\"id\":224317583,\"id_str\":\"224317583\",\"name\":\"Adebayo Tosin Emmanuel\",\"screen_name\":\"adebayotosin80\",\"location\":\"Ibadan Oyo State, Nigeria\",\"description\":\"A Christian.\\nA Missionary.\\nA Mathematician.\\nMillennium Fellows Class of 2020.\\nAn SDGs Advocate.\\nNigerian Youths SDGs Oyo State Champion.\\nYALI Network member\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":679,\"friends_count\":5004,\"listed_count\":0,\"created_at\":\"Wed Dec 08 18:01:16 +0000 2010\",\"favourites_count\":6887,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287547670211563523\\/3gXub2jY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287547670211563523\\/3gXub2jY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/224317583\\/1595810260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4215\":{\"id\":1519781504230080516,\"id_str\":\"1519781504230080516\",\"name\":\"B.u.b.e\",\"screen_name\":\"BubesTreat_3\",\"location\":\"Enugu, Nigeria\",\"description\":\"Foodie \\ud83c\\udf72.\\nChelsea \\ud83d\\udc99\\ud83d\\udc99 fan.\\nMovie lover \\u2728.\\nFun 2 be with.\\nTrouble maker\\ud83d\\ude02\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":127,\"listed_count\":0,\"created_at\":\"Thu Apr 28 20:52:29 +0000 2022\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527670199331307521\\/Iu0UUOnB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527670199331307521\\/Iu0UUOnB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519781504230080516\\/1653059933\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4216\":{\"id\":1338167900490838018,\"id_str\":\"1338167900490838018\",\"name\":\"pioneer \\u03c0\\u03c0\\ud83d\\udc93\",\"screen_name\":\"gamar_imam\",\"location\":\"Lagos, Nigeria\",\"description\":\"web developer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36,\"friends_count\":384,\"listed_count\":1,\"created_at\":\"Sun Dec 13 17:04:35 +0000 2020\",\"favourites_count\":197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555573881116794884\\/g5q_ntNo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1338167900490838018\\/1659712689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4217\":{\"id\":816033100337737732,\"id_str\":\"816033100337737732\",\"name\":\"Paul\",\"screen_name\":\"DL_first_son\",\"location\":\"Benin-City, Nigeria\",\"description\":\"I Teach. I Plumb. I Promote. I read. I ask questions. I review books. I love Children\",\"url\":\"https:\\/\\/t.co\\/dfy15qPs0p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dfy15qPs0p\",\"expanded_url\":\"http:\\/\\/paulleads.blogspot.com\",\"display_url\":\"paulleads.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":292,\"friends_count\":606,\"listed_count\":0,\"created_at\":\"Mon Jan 02 21:27:07 +0000 2017\",\"favourites_count\":1983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541324386514485249\\/mfvnsnbT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541324386514485249\\/mfvnsnbT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/816033100337737732\\/1643483036\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4218\":{\"id\":276880233,\"id_str\":\"276880233\",\"name\":\"Kelvin C Egobudike \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Egobudike09\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83e\\udd82Scorpio | \\ud83d\\udcbbWeb designer | Product designer | Phones\\/laptops marketer | Female hair stylist. Also crazy about football, sexology, and fashion\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":555,\"friends_count\":473,\"listed_count\":4,\"created_at\":\"Mon Apr 04 08:18:50 +0000 2011\",\"favourites_count\":1200,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9879,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488428878058164225\\/y4J64TZh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488428878058164225\\/y4J64TZh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/276880233\\/1517826567\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4219\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4220\":{\"id\":2342721382,\"id_str\":\"2342721382\",\"name\":\"abubakar uthman olamilekan\",\"screen_name\":\"Lekzy_ola\",\"location\":\"LAGOS\",\"description\":\"Cool,calm and collected guy and i love football and good music.....A passionate arsenal fan and a jovial person.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":210,\"friends_count\":1460,\"listed_count\":0,\"created_at\":\"Fri Feb 14 07:42:56 +0000 2014\",\"favourites_count\":3379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7046,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545589221578231808\\/Wjk-AuJY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545589221578231808\\/Wjk-AuJY_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4221\":{\"id\":1019603005140815873,\"id_str\":\"1019603005140815873\",\"name\":\"DTG8\",\"screen_name\":\"danthegreyt\",\"location\":\"Lagos, Nigeria\",\"description\":\"Singer\\/Songwriter, Rapper,\\nGLI(Genius Level intellect)\\nwriter,\\nArt genius.\\n\\nStream LMLMN\\ud83d\\udc49\\ud83d\\udc49\\ud83d\\udc49https:\\/\\/t.co\\/lMHXsmDDdV\",\"url\":\"https:\\/\\/t.co\\/QuOjrCCgEt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QuOjrCCgEt\",\"expanded_url\":\"https:\\/\\/youtu.be\\/kE-AY_KnIW8\",\"display_url\":\"youtu.be\\/kE-AY_KnIW8\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lMHXsmDDdV\",\"expanded_url\":\"https:\\/\\/open.spotify.com\\/track\\/4re56ForQue19EuA2tOY5V?si=horyCb1IT\",\"display_url\":\"open.spotify.com\\/track\\/4re56For\\u2026\",\"indices\":[91,114]}]}},\"protected\":false,\"followers_count\":185,\"friends_count\":647,\"listed_count\":0,\"created_at\":\"Wed Jul 18 15:21:14 +0000 2018\",\"favourites_count\":703,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":740,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555349844742610947\\/HRC-qfvi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555349844742610947\\/HRC-qfvi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1019603005140815873\\/1657705457\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4222\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4223\":{\"id\":1204401344779628546,\"id_str\":\"1204401344779628546\",\"name\":\"Nnachi Gracious\",\"screen_name\":\"Nnachigraciouss\",\"location\":\"Enugu, Nigeria\",\"description\":\"The future is mine \\ud83c\\udf1e\\nShop at my store @scrupulousempir\\nTech\\ud83d\\udcbb\\nArsenal\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/jWqDYUQH4i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jWqDYUQH4i\",\"expanded_url\":\"https:\\/\\/youtu.be\\/SUPiVFgp8kA\",\"display_url\":\"youtu.be\\/SUPiVFgp8kA\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":953,\"friends_count\":1792,\"listed_count\":0,\"created_at\":\"Tue Dec 10 14:04:08 +0000 2019\",\"favourites_count\":4140,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":349,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527764141368389637\\/Y1qX2IH__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527764141368389637\\/Y1qX2IH__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1204401344779628546\\/1653082332\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4224\":{\"id\":3193956341,\"id_str\":\"3193956341\",\"name\":\"OBC of my Hood\\ud83c\\udf0d\\u2764\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"goziedbrightest\",\"location\":\"FCT Abuja, Nigeria\",\"description\":\"Data Engineer, Python Backend Developer, \\nCritical Analyst, Good Listener, Media Personnel, Entrepreneur, Sports Lover, Man Utd Oriented and a Good Hustler\\ud83d\\udca6\\ud83c\\udf37\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2834,\"friends_count\":2789,\"listed_count\":0,\"created_at\":\"Wed Apr 22 08:00:59 +0000 2015\",\"favourites_count\":50058,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1994,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1491465981549584393\\/TZy5h91__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1491465981549584393\\/TZy5h91__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3193956341\\/1611498587\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4225\":{\"id\":825452446730301440,\"id_str\":\"825452446730301440\",\"name\":\"Duke of Port Harcourt \\ud83e\\udd81\\ud83d\\udc51\",\"screen_name\":\"abiye_daniel\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":166,\"listed_count\":0,\"created_at\":\"Sat Jan 28 21:16:14 +0000 2017\",\"favourites_count\":1550,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":909,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548609926637010944\\/mnvoFM6B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548609926637010944\\/mnvoFM6B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/825452446730301440\\/1657749012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4226\":{\"id\":1519308945524809729,\"id_str\":\"1519308945524809729\",\"name\":\"Chibest Ojc\",\"screen_name\":\"chibestojc01\",\"location\":\"\",\"description\":\"The excuses we make could be the symptoms of laziness or procrastination, fear or imposter syndrome. And sometimes, we\\u2019re just plain tired.\",\"url\":\"https:\\/\\/t.co\\/nP94aU2KoD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nP94aU2KoD\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC6MI6onIMa7VY1JmC7DNLeg\",\"display_url\":\"youtube.com\\/channel\\/UC6MI6\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":148,\"listed_count\":0,\"created_at\":\"Wed Apr 27 13:34:41 +0000 2022\",\"favourites_count\":76,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548299659449212931\\/TgSgR1Ja_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548299659449212931\\/TgSgR1Ja_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519308945524809729\\/1652884957\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4227\":{\"id\":1161439794435710976,\"id_str\":\"1161439794435710976\",\"name\":\"Billionaire Nursepreneur\",\"screen_name\":\"MadukaChidera3\",\"location\":\"Nigeria\",\"description\":\"Nursepreneur || Co-founder of https:\\/\\/t.co\\/szuOhaOrD0 || Pan-African || Objective Deist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/szuOhaOrD0\",\"expanded_url\":\"http:\\/\\/www.eazyhealth.org\",\"display_url\":\"eazyhealth.org\",\"indices\":[30,53]}]}},\"protected\":false,\"followers_count\":333,\"friends_count\":320,\"listed_count\":4,\"created_at\":\"Wed Aug 14 00:50:00 +0000 2019\",\"favourites_count\":13709,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3590,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461896226090242052\\/i8J2yBkK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461896226090242052\\/i8J2yBkK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4228\":{\"id\":1243143199226544128,\"id_str\":\"1243143199226544128\",\"name\":\"callmebaba_t\",\"screen_name\":\"bigtomcruz001\",\"location\":\"Benin-City, Nigeria\",\"description\":\"peaceful life for me and the youth of Nigeria is my dream\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":169,\"listed_count\":0,\"created_at\":\"Thu Mar 26 11:50:35 +0000 2020\",\"favourites_count\":277,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1324709331728818178\\/lOSOHiu-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1324709331728818178\\/lOSOHiu-_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4229\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4230\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4231\":{\"id\":1481667747687940098,\"id_str\":\"1481667747687940098\",\"name\":\"Bennard Nancy\",\"screen_name\":\"iamnancy_koko\",\"location\":\"Lagos, Nigeria\",\"description\":\"Shudex Finest Artiste\\ud83e\\udd34\\ud83d\\udc9b\\ud83d\\udda4Brand Influencer And Actor \\ud83c\\udfad B.A In Theatre Arts \\ud83c\\udfad \\ud83d\\udcaf\\ud83c\\udf99\\u2728\",\"url\":\"https:\\/\\/t.co\\/agiANW8W50\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/agiANW8W50\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/ng\\/album\\/my-yunni-single\\/1604494302\",\"display_url\":\"music.apple.com\\/ng\\/album\\/my-yu\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":210,\"listed_count\":0,\"created_at\":\"Thu Jan 13 16:42:39 +0000 2022\",\"favourites_count\":62,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481668143277817857\\/mVXlTCiM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481668143277817857\\/mVXlTCiM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481667747687940098\\/1642092956\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4232\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4233\":{\"id\":1040032829491617792,\"id_str\":\"1040032829491617792\",\"name\":\"Midnyt Updates\",\"screen_name\":\"midnytupdates\",\"location\":\"Hohoe, Ghana\",\"description\":\"Space Host || Blogger || Personal Publicist || I Promote || Backup Account @AnipaManuel || \\ud83d\\udcafKeenyFrek|| Instagram: @midnytupdates https:\\/\\/t.co\\/g2w5Gjkg6k\",\"url\":\"https:\\/\\/t.co\\/jLIlViiWDd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jLIlViiWDd\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCh9aGZZU_NAEW_lWII0E0pQ\",\"display_url\":\"youtube.com\\/channel\\/UCh9aG\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/g2w5Gjkg6k\",\"expanded_url\":\"http:\\/\\/midnytupdates.com\",\"display_url\":\"midnytupdates.com\",\"indices\":[130,153]}]}},\"protected\":false,\"followers_count\":4447,\"friends_count\":5001,\"listed_count\":3,\"created_at\":\"Thu Sep 13 00:22:04 +0000 2018\",\"favourites_count\":52965,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26070,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519291189899546626\\/XtCS5w0r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519291189899546626\\/XtCS5w0r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1040032829491617792\\/1659459626\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4234\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4235\":{\"id\":1103448161568387072,\"id_str\":\"1103448161568387072\",\"name\":\"Champman043\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\udde7\\u2744\\ufe0f\\ud83d\\udcaf\",\"screen_name\":\"nworie_david\",\"location\":\"Lagos, Nigeria\",\"description\":\"COMEDIAN\\nContent creator \\nmeme\\ud83d\\ude09\\nlove adviser\\u2764\\ufe0f\\ud83d\\udcaf\",\"url\":\"https:\\/\\/t.co\\/YgjHPayWFl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YgjHPayWFl\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCeLnjft6YKjL_78oTFofGhA\",\"display_url\":\"youtube.com\\/channel\\/UCeLnj\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":585,\"listed_count\":0,\"created_at\":\"Thu Mar 07 00:11:57 +0000 2019\",\"favourites_count\":1339,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":338,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530558606105530369\\/9isHWErS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530558606105530369\\/9isHWErS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1103448161568387072\\/1653735335\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4236\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6920,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4237\":{\"id\":1119170467728904193,\"id_str\":\"1119170467728904193\",\"name\":\"2dotsmarket\",\"screen_name\":\"2dotsmarket\",\"location\":\"Nigeria\",\"description\":\"Official handle of https:\\/\\/t.co\\/2LV5I0kqeg | Nigerian online marketplace | Buy and Sell Everything in Nigeria\\nhttps:\\/\\/t.co\\/VsMiApD24z\",\"url\":\"https:\\/\\/t.co\\/lZx8zo8V0D\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lZx8zo8V0D\",\"expanded_url\":\"http:\\/\\/www.2dotsmarket.com\",\"display_url\":\"2dotsmarket.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2LV5I0kqeg\",\"expanded_url\":\"http:\\/\\/2dotsmarket.com\",\"display_url\":\"2dotsmarket.com\",\"indices\":[19,42]},{\"url\":\"https:\\/\\/t.co\\/VsMiApD24z\",\"expanded_url\":\"http:\\/\\/tinyurl.com\\/9rhfpdru\",\"display_url\":\"tinyurl.com\\/9rhfpdru\",\"indices\":[110,133]}]}},\"protected\":false,\"followers_count\":4134,\"friends_count\":352,\"listed_count\":0,\"created_at\":\"Fri Apr 19 09:26:47 +0000 2019\",\"favourites_count\":689,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1796,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1436694104415645708\\/GfIZn9Vm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1436694104415645708\\/GfIZn9Vm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1119170467728904193\\/1631369544\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4238\":{\"id\":447447050,\"id_str\":\"447447050\",\"name\":\"Daddyz\",\"screen_name\":\"daddyz33m\",\"location\":\"Nigeria\",\"description\":\"General Analysts |jerseys |Graphic Designer |Branding |Product description writer|Photography| 1000929594 VFB\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1112,\"friends_count\":1295,\"listed_count\":0,\"created_at\":\"Mon Dec 26 22:23:03 +0000 2011\",\"favourites_count\":6775,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7246,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554008315277070337\\/B4UrNp5S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554008315277070337\\/B4UrNp5S_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/447447050\\/1604530303\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4239\":{\"id\":1482630150617452553,\"id_str\":\"1482630150617452553\",\"name\":\"Mastrozamani\\ud83d\\ude08\",\"screen_name\":\"Mastrozamani\",\"location\":\"Lagos, Nigeria\",\"description\":\"30BG\\/ Cristiano Ronaldo \\ud83d\\udc10\\/ Good music || Davido \\ud83d\\udc10|| Michael Marabou fans \\ud83c\\udded\\ud83c\\uddf9 ||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":764,\"friends_count\":1207,\"listed_count\":8,\"created_at\":\"Sun Jan 16 08:25:59 +0000 2022\",\"favourites_count\":1568,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1210,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482630150617452553\\/1659092088\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4240\":{\"id\":1224097788352520192,\"id_str\":\"1224097788352520192\",\"name\":\"VERT \\ud83c\\udf08\",\"screen_name\":\"hisvert\",\"location\":\"Nigeria\",\"description\":\"AfroBeat in my Blood \\ud83d\\udc9a\\ud83e\\udd0d\\ud83d\\udc9a\",\"url\":\"https:\\/\\/t.co\\/3sB1XKXaFO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3sB1XKXaFO\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UC4YuP6JA9g1kk6vWvd32ljQ\",\"display_url\":\"m.youtube.com\\/channel\\/UC4YuP\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":240,\"friends_count\":601,\"listed_count\":1,\"created_at\":\"Sun Feb 02 22:31:04 +0000 2020\",\"favourites_count\":1197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":846,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495366991057670144\\/ahXLYyOi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495366991057670144\\/ahXLYyOi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224097788352520192\\/1580683429\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4241\":{\"id\":1081355548442984448,\"id_str\":\"1081355548442984448\",\"name\":\"King Tunde\",\"screen_name\":\"KingTunde4\",\"location\":\"Ibadan, Nigeria\",\"description\":\"I am greater than wat people thinks\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":307,\"listed_count\":0,\"created_at\":\"Sat Jan 05 01:03:48 +0000 2019\",\"favourites_count\":53,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":80,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1440499181412503557\\/wRHtwMaV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1440499181412503557\\/wRHtwMaV_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4242\":{\"id\":1358179329289682944,\"id_str\":\"1358179329289682944\",\"name\":\"Mr. Grade\",\"screen_name\":\"MrGrade3\",\"location\":\"Abuja, Nigeria\",\"description\":\"A Chef\\ud83e\\uddd1\\u200d\\ud83c\\udf73. Software Developer \\ud83e\\uddd1\\u200d\\ud83d\\udcbb The world is yours!!!\",\"url\":\"https:\\/\\/t.co\\/Plv2QKyLiU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Plv2QKyLiU\",\"expanded_url\":\"http:\\/\\/comingSoon.com\",\"display_url\":\"comingSoon.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":218,\"listed_count\":1,\"created_at\":\"Sat Feb 06 22:23:00 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":49,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493542566721200130\\/8cOOk_h8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493542566721200130\\/8cOOk_h8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358179329289682944\\/1644923272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4243\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4244\":{\"id\":1502202594512494593,\"id_str\":\"1502202594512494593\",\"name\":\"Ariwhite\",\"screen_name\":\"jasper_nwankwo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Chef and a forex trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":82,\"friends_count\":662,\"listed_count\":0,\"created_at\":\"Fri Mar 11 08:40:32 +0000 2022\",\"favourites_count\":762,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":858,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502202989267894274\\/kqYdj7UG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502202989267894274\\/kqYdj7UG_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4245\":{\"id\":1013031987093884930,\"id_str\":\"1013031987093884930\",\"name\":\"Olajide I.O\",\"screen_name\":\"OlajideIO1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Video and Film Editing I Cameraman I Digital marketing I PR I Graphics Design I olajidemediaarts@gmail.com\",\"url\":\"https:\\/\\/t.co\\/i561eZINkM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/i561eZINkM\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCEWh5NwXXIKvB6v-fYXwvew\\/\",\"display_url\":\"m.youtube.com\\/channel\\/UCEWh5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":162,\"friends_count\":248,\"listed_count\":0,\"created_at\":\"Sat Jun 30 12:10:21 +0000 2018\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353237670063984640\\/_iE59FmG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353237670063984640\\/_iE59FmG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1013031987093884930\\/1611472040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4246\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4247\":{\"id\":1554418899743117312,\"id_str\":\"1554418899743117312\",\"name\":\"\\u264c\\ufe0f\\ud83c\\udf51\",\"screen_name\":\"blunt_b1tch\",\"location\":\"Lagos, Nigeria\",\"description\":\"Blunt and Beautiful\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Tue Aug 02 10:48:50 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554418981326528518\\/poXjuvUw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554418981326528518\\/poXjuvUw_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4248\":{\"id\":384263249,\"id_str\":\"384263249\",\"name\":\"Jude_NFT.algo\",\"screen_name\":\"JohnAshafa\",\"location\":\"Abuja\",\"description\":\"Twitter Degen || Discord: @Ashafa#4627 || Crypto Enthusiast || Community manager @SOULMETAVERSE || Community moderator with @Gpshrine, @MoonActive\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":894,\"listed_count\":1,\"created_at\":\"Mon Oct 03 11:19:23 +0000 2011\",\"favourites_count\":2946,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2702,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547889326977007619\\/57AwTbiT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547889326977007619\\/57AwTbiT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/384263249\\/1656182492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4249\":{\"id\":720076095618461696,\"id_str\":\"720076095618461696\",\"name\":\"Osinuga\",\"screen_name\":\"Ay_adeyinka\",\"location\":\"Ogunstate Nigeria\",\"description\":\"Animal Nutritionist | Liverpool fan | Interested in Exportation business\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":332,\"friends_count\":725,\"listed_count\":0,\"created_at\":\"Wed Apr 13 02:28:14 +0000 2016\",\"favourites_count\":6031,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":490,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481188697571610627\\/Nv2957EI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481188697571610627\\/Nv2957EI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4250\":{\"id\":1465805871078912003,\"id_str\":\"1465805871078912003\",\"name\":\"Akotu Josep\",\"screen_name\":\"AkotuJosep\",\"location\":\"Lagos, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":385,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Tue Nov 30 22:12:19 +0000 2021\",\"favourites_count\":138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":109,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465808261429571585\\/VDreMtgb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465808261429571585\\/VDreMtgb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1465805871078912003\\/1638310924\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4251\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4252\":{\"id\":1544321553575428100,\"id_str\":\"1544321553575428100\",\"name\":\"Folks\",\"screen_name\":\"folks_room\",\"location\":\"Lagos, Nigeria\",\"description\":\"Asserting for Truth, Fairness and Justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Jul 05 14:05:58 +0000 2022\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544321553575428100\\/1659510356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4253\":{\"id\":1544321553575428100,\"id_str\":\"1544321553575428100\",\"name\":\"Folks\",\"screen_name\":\"folks_room\",\"location\":\"Lagos, Nigeria\",\"description\":\"Asserting for Truth, Fairness and Justice\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Jul 05 14:05:58 +0000 2022\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550448747225796612\\/LgyjiFzK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544321553575428100\\/1659510356\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4254\":{\"id\":2453490388,\"id_str\":\"2453490388\",\"name\":\"Themistocles\",\"screen_name\":\"Fidelisjur\",\"location\":\"Benin\",\"description\":\"We are all recycled \\u267b\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":164,\"listed_count\":1,\"created_at\":\"Tue Apr 01 22:48:46 +0000 2014\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":469,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536206530873380865\\/dNhQxjab_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536206530873380865\\/dNhQxjab_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2453490388\\/1655095164\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4255\":{\"id\":1319021529288609795,\"id_str\":\"1319021529288609795\",\"name\":\"Henry Saliu\",\"screen_name\":\"henry_saliu\",\"location\":\"Nigeria\",\"description\":\"Bishop @pfministry President @IPSF Author: Purpose for Existence, Determine to prevail and Challenges in the Modern-day ministry and how to overcome.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Wed Oct 21 21:04:46 +0000 2020\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532302752495374336\\/uelgZDT5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532302752495374336\\/uelgZDT5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319021529288609795\\/1654163392\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4256\":{\"id\":373937459,\"id_str\":\"373937459\",\"name\":\"\\u2018Wale\",\"screen_name\":\"olawuyiolawale\",\"location\":\"Nigeria\",\"description\":\"Certified Marketer || PR || Digital Influencer || Editor || Graphics Designer || AgriTech || DUFMA https:\\/\\/t.co\\/eiGhCBcsUy\",\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"expanded_url\":\"http:\\/\\/www.olainfinitee.blogspot.com\",\"display_url\":\"olainfinitee.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eiGhCBcsUy\",\"expanded_url\":\"http:\\/\\/www.olainfinitee.blogspot.com\",\"display_url\":\"olainfinitee.blogspot.com\",\"indices\":[100,123]}]}},\"protected\":false,\"followers_count\":843,\"friends_count\":729,\"listed_count\":18,\"created_at\":\"Thu Sep 15 12:40:28 +0000 2011\",\"favourites_count\":2794,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9634,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479502319003869184\\/4P553Fho_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479502319003869184\\/4P553Fho_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373937459\\/1641575818\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4257\":{\"id\":2255973064,\"id_str\":\"2255973064\",\"name\":\"Adebayo sunday\",\"screen_name\":\"Hagiazo01\",\"location\":\"Lagos, Nigeria\",\"description\":\"Freelance Writer | Blogger | Poet | Life Coach | Mentor | Freelance Investor\",\"url\":\"https:\\/\\/t.co\\/vulzkfODcO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vulzkfODcO\",\"expanded_url\":\"https:\\/\\/sawndei.wordpress.com\",\"display_url\":\"sawndei.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87,\"friends_count\":645,\"listed_count\":0,\"created_at\":\"Wed Jan 01 09:34:38 +0000 2014\",\"favourites_count\":2083,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":689,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1019614815461965827\\/lh62p3Gb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1019614815461965827\\/lh62p3Gb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2255973064\\/1498834482\",\"profile_link_color\":\"91D2FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4258\":{\"id\":857494373902286848,\"id_str\":\"857494373902286848\",\"name\":\"Tiki Taka Del Argentino\",\"screen_name\":\"el_incredibilis\",\"location\":\"Lagos, Nigeria\",\"description\":\"#LM7 | #PeterObi4President\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":852,\"friends_count\":885,\"listed_count\":5,\"created_at\":\"Thu Apr 27 07:19:25 +0000 2017\",\"favourites_count\":55329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13257,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536429290933346306\\/SL5ym7qg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536429290933346306\\/SL5ym7qg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/857494373902286848\\/1638272991\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4259\":{\"id\":1476009362711793668,\"id_str\":\"1476009362711793668\",\"name\":\"Xamhani 504\",\"screen_name\":\"Xamhani5\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/pRN57PHWap\\nFly The Freestyle is Out now on YouTube \\ud83d\\udd25\\n\\n\\ud83d\\udcde+233 262 719 588 \\/ +233 558 436 293\\n @Dan22Jac\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pRN57PHWap\",\"expanded_url\":\"http:\\/\\/youtu.be\\/End_AVx_hx4\",\"display_url\":\"youtu.be\\/End_AVx_hx4\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":156,\"friends_count\":172,\"listed_count\":0,\"created_at\":\"Wed Dec 29 01:57:59 +0000 2021\",\"favourites_count\":3716,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":446,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4260\":{\"id\":1502633410128498696,\"id_str\":\"1502633410128498696\",\"name\":\"Afro-Gene \\uf8ff\",\"screen_name\":\"Kuiry999\",\"location\":\"Lagos, Nigeria\",\"description\":\"Been Through Alotta Shit I Just Put That Pain Into Verses..\\ud83c\\udfa7\\ud83d\\udcdd 21st.Century.Sound\\ud83c\\udfb5 \\u271e \\ud83d\\udd2bStay Woke Y\\u2019all\\ud83d\\ude08 #AFROGENE\\ud83e\\uddec SHAMAYA OUT NOW\",\"url\":\"https:\\/\\/t.co\\/38tHb8ESIt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/38tHb8ESIt\",\"expanded_url\":\"http:\\/\\/Fanlink.to\\/shamaya\",\"display_url\":\"Fanlink.to\\/shamaya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":74,\"listed_count\":1,\"created_at\":\"Sat Mar 12 13:11:45 +0000 2022\",\"favourites_count\":1738,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":280,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502633726135750659\\/4FzsjpDq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502633726135750659\\/4FzsjpDq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502633410128498696\\/1647096815\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4261\":{\"id\":294077079,\"id_str\":\"294077079\",\"name\":\"Sportivation Media\",\"screen_name\":\"Sportivation1\",\"location\":\"LAGOS,NIGERIA\",\"description\":\"Sports Journalist, Sports OAP @ Rainbow FM, Dream Stars Ladies Media Officer. CEO @ Sportivation Media\",\"url\":\"https:\\/\\/t.co\\/Fqwiyd3UPP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fqwiyd3UPP\",\"expanded_url\":\"http:\\/\\/www.sportivation.com.ng\",\"display_url\":\"sportivation.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1459,\"friends_count\":3998,\"listed_count\":6,\"created_at\":\"Fri May 06 13:56:43 +0000 2011\",\"favourites_count\":2721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537564873168760832\\/fGscI2vT_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537564873168760832\\/fGscI2vT_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/294077079\\/1637681879\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4262\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4263\":{\"id\":870393110748180480,\"id_str\":\"870393110748180480\",\"name\":\"Temitope Mohammed\",\"screen_name\":\"cccfirmer\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist\\/GIS Analyst\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":181,\"friends_count\":1611,\"listed_count\":0,\"created_at\":\"Thu Jun 01 21:34:23 +0000 2017\",\"favourites_count\":9492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870393110748180480\\/1496401116\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4264\":{\"id\":1520736474093830144,\"id_str\":\"1520736474093830144\",\"name\":\"CODE-BREAKER\\ud83c\\udfae\",\"screen_name\":\"Dazai_Mill\",\"location\":\"Lagos, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Sun May 01 12:06:52 +0000 2022\",\"favourites_count\":87,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":87,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554862599006822408\\/5_tq9WZj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554862599006822408\\/5_tq9WZj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520736474093830144\\/1658571359\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4265\":{\"id\":1476009362711793668,\"id_str\":\"1476009362711793668\",\"name\":\"Xamhani 504\",\"screen_name\":\"Xamhani5\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/pRN57PHWap\\nFly The Freestyle is Out now on YouTube \\ud83d\\udd25\\n\\n\\ud83d\\udcde+233 262 719 588 \\/ +233 558 436 293\\n @Dan22Jac\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pRN57PHWap\",\"expanded_url\":\"http:\\/\\/youtu.be\\/End_AVx_hx4\",\"display_url\":\"youtu.be\\/End_AVx_hx4\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":156,\"friends_count\":172,\"listed_count\":0,\"created_at\":\"Wed Dec 29 01:57:59 +0000 2021\",\"favourites_count\":3716,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":446,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515118124873437186\\/dx0pci4q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4266\":{\"id\":1003629257858469890,\"id_str\":\"1003629257858469890\",\"name\":\"Naturetee\",\"screen_name\":\"OLUWASHEYNOR\",\"location\":\"Lagos, Nigeria\",\"description\":\"professional Trouble maker\\/\\/ just savage\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":144,\"listed_count\":0,\"created_at\":\"Mon Jun 04 13:27:16 +0000 2018\",\"favourites_count\":209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":433,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527325028714676225\\/LeEUPSRC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527325028714676225\\/LeEUPSRC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1003629257858469890\\/1655051272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4267\":{\"id\":870393110748180480,\"id_str\":\"870393110748180480\",\"name\":\"Temitope Mohammed\",\"screen_name\":\"cccfirmer\",\"location\":\"Lagos, Nigeria\",\"description\":\"Geologist\\/GIS Analyst\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":181,\"friends_count\":1611,\"listed_count\":0,\"created_at\":\"Thu Jun 01 21:34:23 +0000 2017\",\"favourites_count\":9492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":982,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/870595506417922049\\/RmvkinSX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870393110748180480\\/1496401116\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4268\":{\"id\":1362987368152764417,\"id_str\":\"1362987368152764417\",\"name\":\"Eman\",\"screen_name\":\"Funyonz2\",\"location\":\"nonya\",\"description\":\"Youtuber | Artist | Editor (for fun) Officially Quit Roblox | 15+\",\"url\":\"https:\\/\\/t.co\\/tmigyX2FJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tmigyX2FJX\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCnA6Go4T77X-Vl6p09q9xvQ\",\"display_url\":\"youtube.com\\/channel\\/UCnA6G\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":72,\"listed_count\":0,\"created_at\":\"Sat Feb 20 04:49:51 +0000 2021\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":258,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555217179003555841\\/NohR5Rwg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555217179003555841\\/NohR5Rwg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1362987368152764417\\/1638024523\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4269\":{\"id\":1031832165347147776,\"id_str\":\"1031832165347147776\",\"name\":\"Ifunanya Fredrick Orji Micheal\",\"screen_name\":\"IfunanyaFred\",\"location\":\"ikeja Lagos Nigeria \",\"description\":\"Graphic designer and internet profile manager\\n\\nand \\nCreator of: \\n1. Afrizunkz nfts\\n2. Brown Skin Ladies nfts\\n3. Classic Gentz nfts\\n4. stylish ladies nfts\",\"url\":\"https:\\/\\/t.co\\/2EtAFlQB5H\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2EtAFlQB5H\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Fredrickoj\",\"display_url\":\"linktr.ee\\/Fredrickoj\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":152,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Aug 21 09:15:33 +0000 2018\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":202,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554075617511055360\\/nxzIPjbZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554075617511055360\\/nxzIPjbZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1031832165347147776\\/1642711663\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4270\":{\"id\":4859584672,\"id_str\":\"4859584672\",\"name\":\"taiwoakinsanya\",\"screen_name\":\"taiwosharpakin\",\"location\":\"Lagos, Nigeria\",\"description\":\"Christ and God Learner# Prosthetist and Orthotist. StartUp Founder @Dynalimb Technologies. 3D Technology Enthusiast. Healthcare.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":165,\"friends_count\":239,\"listed_count\":1,\"created_at\":\"Fri Jan 29 08:28:13 +0000 2016\",\"favourites_count\":3168,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":619,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549736057666772992\\/AaA9lI31_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549736057666772992\\/AaA9lI31_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4859584672\\/1647144243\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4271\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4272\":{\"id\":1217802725569843201,\"id_str\":\"1217802725569843201\",\"name\":\"Mr Ntul\",\"screen_name\":\"xandadgr8\",\"location\":\"Federal Capital Territory\",\"description\":\"Talk to me about Realestate Recording\\/Performing Artist\\/ Chorister Webdesigner\\u25aaInstagram-@ixanda_ \\u25aa#CBK #DMG_Nation #klevzEnt\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":183,\"friends_count\":220,\"listed_count\":2,\"created_at\":\"Thu Jan 16 13:36:33 +0000 2020\",\"favourites_count\":1155,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1390608845102321666\\/9lS_lEwu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1390608845102321666\\/9lS_lEwu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1217802725569843201\\/1581065998\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4273\":{\"id\":1100112365096501248,\"id_str\":\"1100112365096501248\",\"name\":\"MrEverythingLife\",\"screen_name\":\"mreverything247\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"I Entertain\\u2022\\nCampus ambassador\\n(Busidea Career Solution)\\u2022\\nYouTube page link:\\nhttps:\\/\\/t.co\\/si3ntlhrkm\\n|Petroleum Chemist|\\n|Actor| |Comedian| |videographer|\",\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[77,100]}]}},\"protected\":false,\"followers_count\":41,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Mon Feb 25 19:16:41 +0000 2019\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100112365096501248\\/1619811321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4274\":{\"id\":1100112365096501248,\"id_str\":\"1100112365096501248\",\"name\":\"MrEverythingLife\",\"screen_name\":\"mreverything247\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"I Entertain\\u2022\\nCampus ambassador\\n(Busidea Career Solution)\\u2022\\nYouTube page link:\\nhttps:\\/\\/t.co\\/si3ntlhrkm\\n|Petroleum Chemist|\\n|Actor| |Comedian| |videographer|\",\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/si3ntlhrkm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/gM-DJGcxEws\",\"display_url\":\"youtu.be\\/gM-DJGcxEws\",\"indices\":[77,100]}]}},\"protected\":false,\"followers_count\":41,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Mon Feb 25 19:16:41 +0000 2019\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":605,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1305938985907351558\\/XSP4tcRe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100112365096501248\\/1619811321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4275\":{\"id\":360288406,\"id_str\":\"360288406\",\"name\":\"L.E Ombs\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"LeoOmbs\",\"location\":\"Nasarawa, Nigeria\",\"description\":\"Geek\\ud83d\\udcbb ||\\nFun lover ||\\nDream Chaser ||\\nYouth Advocate ||\\nAnalyst & Activist || \\nA @ConcernedNG ||\\n#NasarawaTwitterHangOut\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":201,\"friends_count\":178,\"listed_count\":0,\"created_at\":\"Tue Aug 23 00:09:17 +0000 2011\",\"favourites_count\":1077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2734,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1463301735766765568\\/2RHe-sDd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1463301735766765568\\/2RHe-sDd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/360288406\\/1599325289\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4276\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69185,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4277\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69185,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4278\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69185,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4279\":{\"id\":1478103434033348612,\"id_str\":\"1478103434033348612\",\"name\":\"Golden\",\"screen_name\":\"golden001_\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udcaf realest \\nVirgo \\u264d\\nChelsea fan \\ud83d\\udc99\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":364,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Mon Jan 03 20:39:20 +0000 2022\",\"favourites_count\":69185,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554236077535371265\\/oVhZl-0I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478103434033348612\\/1658114132\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4280\":{\"id\":796420847233855489,\"id_str\":\"796420847233855489\",\"name\":\"archermedia\",\"screen_name\":\"Ivyarcher75\",\"location\":\"Benin-City, Nigeria\",\"description\":\"targeted entertainment\",\"url\":\"https:\\/\\/t.co\\/ebZE32irSO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ebZE32irSO\",\"expanded_url\":\"https:\\/\\/archermedia.com.ng\",\"display_url\":\"archermedia.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":289,\"friends_count\":949,\"listed_count\":1,\"created_at\":\"Wed Nov 09 18:35:01 +0000 2016\",\"favourites_count\":3158,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1042,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367075731457662976\\/aKrKosnl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367075731457662976\\/aKrKosnl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/796420847233855489\\/1596125653\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4281\":{\"id\":1549729519623442432,\"id_str\":\"1549729519623442432\",\"name\":\"cyrillle Bahmou\",\"screen_name\":\"cyrillle_b\",\"location\":\"Lagos Nigeria\",\"description\":\"Speaker , Business growth Expect, I help BIZ OWNERS GROW THEMSELVES , their BUSINESS & their PROFITS.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Wed Jul 20 12:15:29 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555454268102119430\\/IbYP5jLq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555454268102119430\\/IbYP5jLq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549729519623442432\\/1658481345\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4282\":{\"id\":1496896114422910976,\"id_str\":\"1496896114422910976\",\"name\":\"Vidan\",\"screen_name\":\"vidantv\",\"location\":\"Nigeria\",\"description\":\"Media personality\",\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mpTVJqS9U8\",\"expanded_url\":\"https:\\/\\/m.me\\/Vistavid?fbclid=IwAR2GeMKUOyTZ7k5mLRnikdX9Bp4XZy39rsNY28RWzE5-xltW-MDslU1c08Q\",\"display_url\":\"m.me\\/Vistavid?fbcli\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Feb 24 17:14:06 +0000 2022\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":175,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542186182683119618\\/aWNdlj6N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496896114422910976\\/1656066107\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4283\":{\"id\":910994864598323200,\"id_str\":\"910994864598323200\",\"name\":\"YoungTee \\ud83d\\udc7b\",\"screen_name\":\"itx_YoungTee\",\"location\":\"Lagos, Nigeria\",\"description\":\"Vibe killer\\ud83e\\udd76|BahdBoy|Lover of Music|Wizkid FC|Manchester United \\ud83d\\udd34|LION HEART \\ud83e\\udd0d#YoungTee.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91,\"friends_count\":667,\"listed_count\":0,\"created_at\":\"Thu Sep 21 22:31:16 +0000 2017\",\"favourites_count\":967,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545804145202003969\\/j2v7cxr6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545804145202003969\\/j2v7cxr6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/910994864598323200\\/1657383414\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4284\":{\"id\":920245545909792775,\"id_str\":\"920245545909792775\",\"name\":\"Jennifer Bertilla Amuche, EJINKEONYE\",\"screen_name\":\"Casa_berti\",\"location\":\"Lagos, Nigeria\",\"description\":\"Social Entrepreneur- Organizational Leadership and Business Strategist \\n#followforfollow\",\"url\":\"https:\\/\\/t.co\\/RVuLM3ahDd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RVuLM3ahDd\",\"expanded_url\":\"https:\\/\\/recardosbertie.business.site\",\"display_url\":\"recardosbertie.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":258,\"friends_count\":285,\"listed_count\":0,\"created_at\":\"Tue Oct 17 11:10:10 +0000 2017\",\"favourites_count\":952,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":302,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548354778534555648\\/R5cFex86_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548354778534555648\\/R5cFex86_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/920245545909792775\\/1642167135\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4285\":{\"id\":1736141245,\"id_str\":\"1736141245\",\"name\":\"CERTIFIED MC\",\"screen_name\":\"iamadeflow\",\"location\":\"Lagos, Nigeria\",\"description\":\"Stand Up Comedian | MC | Content Creator\\nLive| Laugh| Love \\ud83d\\ude4c\\n\\n For bookings \\ud83d\\udce9 adeflowcomedian@gmail.com \\n@iamadeflow on all platforms\",\"url\":\"https:\\/\\/t.co\\/f6f3HvLJuE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f6f3HvLJuE\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UClCOi_Iho6c_r-p0DdmaPeQ\",\"display_url\":\"youtube.com\\/channel\\/UClCOi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1662,\"friends_count\":1322,\"listed_count\":3,\"created_at\":\"Fri Sep 06 18:18:51 +0000 2013\",\"favourites_count\":74334,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24993,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505259224376483848\\/6ZYp2sv7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505259224376483848\\/6ZYp2sv7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1736141245\\/1651239030\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4286\":{\"id\":1920361520,\"id_str\":\"1920361520\",\"name\":\"Abuja Finder\\u2019s\",\"screen_name\":\"AbujaFinders\",\"location\":\"Abuja, Nigeria\",\"description\":\"Let\\u2019s Get You Your New Home. List Your Properties With Us. More Properties Posted On IG - @Abujafinders & WhatsApp Status \\ud83d\\udc49 https:\\/\\/t.co\\/HGcRzX5H5O\",\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gthVl2ojXo\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/abujafinders\",\"display_url\":\"instagram.com\\/abujafinders\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HGcRzX5H5O\",\"expanded_url\":\"https:\\/\\/wa.me\\/23408032845314?text=\",\"display_url\":\"wa.me\\/23408032845314\\u2026\",\"indices\":[124,147]}]}},\"protected\":false,\"followers_count\":1096,\"friends_count\":648,\"listed_count\":0,\"created_at\":\"Mon Sep 30 15:03:00 +0000 2013\",\"favourites_count\":471,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530703449477758977\\/k_rmG7wp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1920361520\\/1653783436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4287\":{\"id\":3431581827,\"id_str\":\"3431581827\",\"name\":\"magjizzy\",\"screen_name\":\"magojazzy\",\"location\":\"Nigeria\",\"description\":\"Butterfield Entertainment Boss \\nartist on my label stain and Facebee holla at magjizzyezekiel@gmail.com for bookings\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1009,\"friends_count\":2625,\"listed_count\":3,\"created_at\":\"Wed Aug 19 15:32:11 +0000 2015\",\"favourites_count\":1892,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2248,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1054389615556288512\\/SiPqpXKO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1054389615556288512\\/SiPqpXKO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3431581827\\/1619692396\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4288\":{\"id\":1075403418481631233,\"id_str\":\"1075403418481631233\",\"name\":\"King Edrah \\ud83d\\udc51\",\"screen_name\":\"King_Edrah\",\"location\":\"Calabar, Nigeria\",\"description\":\"CEO @Geogem_Contrs | Civil Engineer | Project Manager | Consultant | Politician | Entrepreneur | Motivational Speaker \\/ Content creator |\",\"url\":\"https:\\/\\/t.co\\/Fd5JpkG2sA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fd5JpkG2sA\",\"expanded_url\":\"http:\\/\\/instagram.com\\/geogemcontractors\",\"display_url\":\"instagram.com\\/geogemcontract\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":819,\"friends_count\":969,\"listed_count\":0,\"created_at\":\"Wed Dec 19 14:52:09 +0000 2018\",\"favourites_count\":1069,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1082,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549044799675797511\\/p4F58Wpj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549044799675797511\\/p4F58Wpj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1075403418481631233\\/1614295979\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4289\":{\"id\":1103207615037931520,\"id_str\":\"1103207615037931520\",\"name\":\"Jay Chopa\\ud83d\\udfe3\\ud83d\\udc9c\",\"screen_name\":\"Jay_Chopa\",\"location\":\"Lagos, Nigeria\",\"description\":\"am a rapper\\/singer and song writer.. \\nFor booking, contact HYB ENTERTAINMENT +234 703 117 5865 \\/ +2348102660507\",\"url\":\"https:\\/\\/t.co\\/9MHf9pzj68\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9MHf9pzj68\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/song\\/nicholaschiebuka1998\\/maria\",\"display_url\":\"audiomack.com\\/song\\/nicholasc\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":1660,\"listed_count\":0,\"created_at\":\"Wed Mar 06 08:16:06 +0000 2019\",\"favourites_count\":27623,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5507,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495395684601806852\\/d8qG6thk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495395684601806852\\/d8qG6thk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1103207615037931520\\/1606324262\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4290\":{\"id\":1258315949838602241,\"id_str\":\"1258315949838602241\",\"name\":\"Jobblasts Nigeria\",\"screen_name\":\"jobblasts_ng\",\"location\":\"Ikeja, Lagos, Nigeria\",\"description\":\"Recruiter\\nJob search by Jobblasts.\\nNigeria No 1 job plug \\ud83d\\udd0c\\nGetting you closer to your dream job...\\nDownload app on playstore: Jobblasts\",\"url\":\"https:\\/\\/t.co\\/zc1z3ULQZG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zc1z3ULQZG\",\"expanded_url\":\"http:\\/\\/www.jobblasts.com\",\"display_url\":\"jobblasts.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":231,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Thu May 07 09:02:07 +0000 2020\",\"favourites_count\":20,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1258321829174882304\\/9QI33JvF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1258321829174882304\\/9QI33JvF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1258315949838602241\\/1588843172\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4291\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4292\":{\"id\":1342889742501896192,\"id_str\":\"1342889742501896192\",\"name\":\"Official Wiseking\",\"screen_name\":\"WiseKingoffici1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Super star wise king unsign Artist, for Booking,09055186154, Email wisebaba25@gmail.com @davido @Olamide @emoney @Rihanna @wisekingoffici1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":350,\"friends_count\":2157,\"listed_count\":1,\"created_at\":\"Sat Dec 26 17:47:40 +0000 2020\",\"favourites_count\":945,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342889742501896192\\/1655718497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4293\":{\"id\":1525406010118135810,\"id_str\":\"1525406010118135810\",\"name\":\"eptv\",\"screen_name\":\"eptv11\",\"location\":\"Lagos, Nigeria\",\"description\":\"EPTV digital news channel gives up-to-date information on happenings across the globe, with top-notch news editors and verifiable sources of information.\",\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CQxb9LRBnm\",\"expanded_url\":\"https:\\/\\/www.eptv.ng\",\"display_url\":\"eptv.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":622,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sat May 14 09:22:19 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":441,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525407202600681474\\/lqWgoU58_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4294\":{\"id\":1549024483192840193,\"id_str\":\"1549024483192840193\",\"name\":\"ValuCares\",\"screen_name\":\"CaresValu\",\"location\":\"Lagos,Nigeria\",\"description\":\"Valucares is an online\\/real time healthcare provider. We provide quality and affordable healthcare services to our customers.\",\"url\":\"https:\\/\\/t.co\\/nW6kBiOo2P\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nW6kBiOo2P\",\"expanded_url\":\"http:\\/\\/www.valucares.com\",\"display_url\":\"valucares.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":23,\"listed_count\":0,\"created_at\":\"Mon Jul 18 13:33:43 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549034497152352258\\/HNuVLgOa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549034497152352258\\/HNuVLgOa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549024483192840193\\/1658153878\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4295\":{\"id\":16176729,\"id_str\":\"16176729\",\"name\":\"listen very carefully, I shall say this only once\\u2026\",\"screen_name\":\"MixedPie\",\"location\":\"m a r s \",\"description\":\"Son of an im m i g r ant \\u24d8 $erif\\u00a9 \\nForbes self made billionaire 2025. The whole town's laughing at me,yes they are. EllaMai #SZA \\n\\nJhen\\u00e9 Aiko-Jenevieve #STORMZY\",\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tBTlErtMqu\",\"expanded_url\":\"http:\\/\\/www.linkedin.com\\/in\\/serifkurtdaylar\",\"display_url\":\"linkedin.com\\/in\\/serifkurtda\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":649,\"friends_count\":984,\"listed_count\":27,\"created_at\":\"Mon Sep 08 01:25:51 +0000 2008\",\"favourites_count\":23566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29434,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"121111\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546990732719833094\\/c8p64QfP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16176729\\/1659697854\",\"profile_link_color\":\"363639\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F5F2ED\",\"profile_text_color\":\"D15858\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4296\":{\"id\":1467730838980812803,\"id_str\":\"1467730838980812803\",\"name\":\"IBBULTALKATIVE \\ud83d\\udeb4\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\udca8\",\"screen_name\":\"ibbultalkative\",\"location\":\"Lapai, Nigeria\",\"description\":\"Welcome to IBBUL TALKATIVE \\u270c\\ud83c\\udffd\\ud83d\\ude1c we rep:\\ud83d\\udc9aIbrahim Badamasi Babangida University, Lapai\\ud83d\\udc9a Enjoy unlimited MEMES, Campus gists.\\ud83d\\udd25 Entertainment\\ud83c\\udfacetc....\",\"url\":\"https:\\/\\/t.co\\/xZctnqIQpL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xZctnqIQpL\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348084957775\",\"display_url\":\"wa.me\\/+2348084957775\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":329,\"friends_count\":275,\"listed_count\":0,\"created_at\":\"Mon Dec 06 05:41:28 +0000 2021\",\"favourites_count\":3689,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":464,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528416959599153153\\/Zhcau9rm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528416959599153153\\/Zhcau9rm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1467730838980812803\\/1646385998\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4297\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4298\":{\"id\":826748906411274241,\"id_str\":\"826748906411274241\",\"name\":\"Bloodybeats 4:44 d EP\",\"screen_name\":\"officialUgoo\",\"location\":\"LAGOS NIGERIA\",\"description\":\"I PRODUCE, MIX, MASTER, AND I DROPPED MY FIRST PROJECT ON THE LINK BELOW\",\"url\":\"https:\\/\\/t.co\\/ILGAv2EeNn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ILGAv2EeNn\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/bloodybeats\\/444-2\",\"display_url\":\"distrokid.com\\/hyperfollow\\/bl\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":344,\"listed_count\":1,\"created_at\":\"Wed Feb 01 11:07:54 +0000 2017\",\"favourites_count\":20400,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2108,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548446247207333895\\/5iz6rvbn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548446247207333895\\/5iz6rvbn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/826748906411274241\\/1658013342\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4299\":{\"id\":1492383309195886600,\"id_str\":\"1492383309195886600\",\"name\":\"Marvis Rudy\",\"screen_name\":\"officiall_26\",\"location\":\"Edo, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":103,\"listed_count\":0,\"created_at\":\"Sat Feb 12 06:21:44 +0000 2022\",\"favourites_count\":123,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530579898561187840\\/3sCjGV_W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530579898561187840\\/3sCjGV_W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1492383309195886600\\/1653079872\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4300\":{\"id\":1550871033892282371,\"id_str\":\"1550871033892282371\",\"name\":\"maggie james\",\"screen_name\":\"magret_james2\",\"location\":\"\",\"description\":\"Sugar mum\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Sat Jul 23 15:51:01 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_normal.png\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4301\":{\"id\":1094859184259108865,\"id_str\":\"1094859184259108865\",\"name\":\"winner vibes\",\"screen_name\":\"elchazag\",\"location\":\"heaven\",\"description\":\"\\u2022Raison D'\\u00eatre\\n\\u2022God's idea|\\nRap-Poe | Freelance Photographer | Creative Design\",\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/elchazag\",\"display_url\":\"audiomack.com\\/elchazag\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Mon Feb 11 07:22:25 +0000 2019\",\"favourites_count\":3721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1926,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1094859184259108865\\/1601837949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4302\":{\"id\":1094859184259108865,\"id_str\":\"1094859184259108865\",\"name\":\"winner vibes\",\"screen_name\":\"elchazag\",\"location\":\"heaven\",\"description\":\"\\u2022Raison D'\\u00eatre\\n\\u2022God's idea|\\nRap-Poe | Freelance Photographer | Creative Design\",\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YCgxmFrt9N\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/elchazag\",\"display_url\":\"audiomack.com\\/elchazag\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Mon Feb 11 07:22:25 +0000 2019\",\"favourites_count\":3721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1926,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138315575713794\\/94ixwQFi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1094859184259108865\\/1601837949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4303\":{\"id\":920979309308858368,\"id_str\":\"920979309308858368\",\"name\":\"Sir_Werry \\ud83c\\udf1f\",\"screen_name\":\"sir_werry\",\"location\":\"Lagos, Nigeria\",\"description\":\"I\\u2019m licensed to my sounds |Rapper Toni license| For sponsorship and enquires : 07014958065 NATURALLY OUT ON ALL PLATFORMS\",\"url\":\"https:\\/\\/t.co\\/ZfBq3CyCyP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZfBq3CyCyP\",\"expanded_url\":\"https:\\/\\/distrokid.com\\/hyperfollow\\/sirwerry\\/naturally\",\"display_url\":\"distrokid.com\\/hyperfollow\\/si\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":884,\"listed_count\":2,\"created_at\":\"Thu Oct 19 11:45:53 +0000 2017\",\"favourites_count\":2796,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3493,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532270288569831424\\/R2f7BmJO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532270288569831424\\/R2f7BmJO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/920979309308858368\\/1647819581\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4304\":{\"id\":1396173475212107776,\"id_str\":\"1396173475212107776\",\"name\":\"Bright Sunday Omotola\",\"screen_name\":\"BSO1905\",\"location\":\"Lagos, Nigeria\",\"description\":\"Godly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":126,\"friends_count\":227,\"listed_count\":0,\"created_at\":\"Sat May 22 18:38:12 +0000 2021\",\"favourites_count\":58719,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":620,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555180485889900544\\/-j3nKF6U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555180485889900544\\/-j3nKF6U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396173475212107776\\/1621946398\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4305\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4306\":{\"id\":1435400676545372163,\"id_str\":\"1435400676545372163\",\"name\":\"jamie\",\"screen_name\":\"oneilj386\",\"location\":\"Enugu, Nigeria\",\"description\":\"life goes on\\n#30BG \\n@davido\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed Sep 08 00:32:58 +0000 2021\",\"favourites_count\":315,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1435400676545372163\\/1652824732\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4307\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4308\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4309\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4310\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4311\":{\"id\":1517744833808510977,\"id_str\":\"1517744833808510977\",\"name\":\"Western Post Nigeria\",\"screen_name\":\"westernpost_ng\",\"location\":\"Nigeria\",\"description\":\"Western Post is the authority for news and information across the South Western states of Nigeria including Kogi, Kwara, Edo and Delta States.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64288,\"friends_count\":35,\"listed_count\":11,\"created_at\":\"Sat Apr 23 05:59:33 +0000 2022\",\"favourites_count\":4812,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4478,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554062033649389568\\/OVkSmn4X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554062033649389568\\/OVkSmn4X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1517744833808510977\\/1659352695\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4312\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4313\":{\"id\":1418711929,\"id_str\":\"1418711929\",\"name\":\"Bobojay TV\",\"screen_name\":\"bobojaytv\",\"location\":\"Nigeria\",\"description\":\"Latest breaking news from Nigeria, Foreign including politics, business, sports, entertainment, gist etc. Help @bobojaytv reach 10k Followers. #retweet posts\\ud83d\\udcbb\",\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWqK3wlp7s\",\"expanded_url\":\"http:\\/\\/www.bobojaytv.com\",\"display_url\":\"bobojaytv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1611,\"friends_count\":1129,\"listed_count\":16,\"created_at\":\"Fri May 10 17:49:39 +0000 2013\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55075,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"641B08\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544754141859307521\\/g-YyYPNb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1418711929\\/1646046663\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4314\":{\"id\":1459025683,\"id_str\":\"1459025683\",\"name\":\"ALAYE\\ud83c\\udc04\\ufe0f\",\"screen_name\":\"sappzee\",\"location\":\"Nigeria\",\"description\":\"STRAIGHT UP THEEP OUT NOW \\u2757\\ufe0f\\u2757\\ufe0f\\u2757\\ufe0f #familybusiness\",\"url\":\"https:\\/\\/t.co\\/9Qwz3WrT9F\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Qwz3WrT9F\",\"expanded_url\":\"https:\\/\\/www.hitztunez.net\\/sappzee-returns-with-new-music-outside-listen\\/\",\"display_url\":\"hitztunez.net\\/sappzee-return\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1025,\"friends_count\":350,\"listed_count\":2,\"created_at\":\"Sun May 26 07:22:34 +0000 2013\",\"favourites_count\":127845,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10442,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549284342425423873\\/_rjpWenG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549284342425423873\\/_rjpWenG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1459025683\\/1644074695\",\"profile_link_color\":\"0A0099\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4315\":{\"id\":835449742670839808,\"id_str\":\"835449742670839808\",\"name\":\"Lawrence Ezekiel\",\"screen_name\":\"KafeEazy\",\"location\":\"Nigeria\",\"description\":\"Business Consultant\\nBusiness Tips\\nBusiness Optimization\\nDigital Marketing\",\"url\":\"https:\\/\\/t.co\\/nOi9ft1hGb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nOi9ft1hGb\",\"expanded_url\":\"https:\\/\\/www.btcs.love\\/invite\\/277ob\",\"display_url\":\"btcs.love\\/invite\\/277ob\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Sat Feb 25 11:21:55 +0000 2017\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":413,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/987766670952484864\\/c1KkmqGS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/987766670952484864\\/c1KkmqGS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4316\":{\"id\":1537696600046329856,\"id_str\":\"1537696600046329856\",\"name\":\"Matt Ovie\",\"screen_name\":\"ovie_matt\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"An engineering student \\ud83d\\udc68\\u200d\\ud83d\\udd27\\ud83c\\udf93 from PTI UNIVERSITY Also deal with gift cards redeemed of all types just inbox me. for better rate\",\"url\":\"https:\\/\\/t.co\\/bkLo3ERaw9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bkLo3ERaw9\",\"expanded_url\":\"http:\\/\\/instagram.com\\/matt_ovie\",\"display_url\":\"instagram.com\\/matt_ovie\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":257,\"friends_count\":426,\"listed_count\":0,\"created_at\":\"Fri Jun 17 07:20:35 +0000 2022\",\"favourites_count\":726,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554062993071251457\\/XfC1GkaV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554062993071251457\\/XfC1GkaV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537696600046329856\\/1657397199\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4317\":{\"id\":1356251183980142596,\"id_str\":\"1356251183980142596\",\"name\":\"Rentic\",\"screen_name\":\"myrentic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Accommodations: (shortlets, roommates, flatmates, co-working spaces & more).\\n#Experiences: (Tours, massages, getaways, boat rides & more).\",\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"expanded_url\":\"https:\\/\\/rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Mon Feb 01 14:41:11 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356251183980142596\\/1612290624\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4318\":{\"id\":1278287668938448899,\"id_str\":\"1278287668938448899\",\"name\":\"Stevie \\u2642\\ufe0f\",\"screen_name\":\"StEvIe_Alo\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm an ARTIST \\ud83c\\udfa8 @alo_stevie on I.g\\nI'm a PHOTOGRAPHER \\ud83d\\udcf8\\n@halography_ on Instagram\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":263,\"friends_count\":321,\"listed_count\":0,\"created_at\":\"Wed Jul 01 11:21:56 +0000 2020\",\"favourites_count\":15429,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6685,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1278287668938448899\\/1646841113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4319\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4320\":{\"id\":736506943,\"id_str\":\"736506943\",\"name\":\"SUPER_STAR\",\"screen_name\":\"koki_officiall\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Business Consultant - Affiliate Marketer - Freelancer - Musician - Engineer\\n( Creative Marketer )\\nReady for any new challenge \\/\\/ 08092503360\",\"url\":\"https:\\/\\/t.co\\/ZDr63aoiOq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZDr63aoiOq\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~0178f34a36029df671?s=1017484851352698974\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1534,\"friends_count\":2567,\"listed_count\":0,\"created_at\":\"Sat Aug 04 10:28:46 +0000 2012\",\"favourites_count\":3448,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1863,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540723852891697157\\/bnQLWOJD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540723852891697157\\/bnQLWOJD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/736506943\\/1620212451\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4321\":{\"id\":1277803354316509184,\"id_str\":\"1277803354316509184\",\"name\":\"Anderson\",\"screen_name\":\"anderson_alozie\",\"location\":\"Lagos, Nigeria\",\"description\":\"Proudly Catholic|| Administrator|| UX designer|| Vibes|| Lover of Art and nature. Dm to know more\\ud83d\\ude0a||OAU||GGMU\\u2764\\ufe0f||I LOVE GIRLS \\ud83d\\udc9d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1286,\"friends_count\":1305,\"listed_count\":0,\"created_at\":\"Tue Jun 30 03:17:25 +0000 2020\",\"favourites_count\":1264,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1713,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536947460773396481\\/UqRSm1MN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536947460773396481\\/UqRSm1MN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1277803354316509184\\/1655271868\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4322\":{\"id\":1063757650691858432,\"id_str\":\"1063757650691858432\",\"name\":\"Aliyu Abdullahi Gunigi\",\"screen_name\":\"abubillaal\",\"location\":\"Kaduna Nigeria \",\"description\":\"Sociologist, Egalitarian, Multi-cultured Human, Revolutionary, Anti Makeup, Advocate Of Natural Beauty, Promoter Of Social Justice And Equitable Society.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":348,\"friends_count\":130,\"listed_count\":0,\"created_at\":\"Sat Nov 17 11:36:02 +0000 2018\",\"favourites_count\":4705,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6936,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551691742872829953\\/YgZHhnYa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551691742872829953\\/YgZHhnYa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1063757650691858432\\/1542459492\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4323\":{\"id\":925179498,\"id_str\":\"925179498\",\"name\":\"Fasinu Emmanuel\",\"screen_name\":\"fashemmy2010\",\"location\":\"Lagos Nigeria\",\"description\":\"Quality Analyst\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":461,\"friends_count\":702,\"listed_count\":1,\"created_at\":\"Sun Nov 04 11:42:03 +0000 2012\",\"favourites_count\":1226,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1120,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1446021039952220163\\/zY9SRpxc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1446021039952220163\\/zY9SRpxc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/925179498\\/1643742241\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4324\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4325\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4326\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4327\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4328\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4329\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4330\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4331\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4332\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4333\":{\"id\":834103951712718853,\"id_str\":\"834103951712718853\",\"name\":\"Paul A Elijah\",\"screen_name\":\"PaulElijah16\",\"location\":\"Nigeria\",\"description\":\"A Pastor, A Teacher, An Entrepreneur, A Media Personnel.\\nA Light to My Generation.\",\"url\":\"https:\\/\\/t.co\\/WsjqhCg2pC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WsjqhCg2pC\",\"expanded_url\":\"https:\\/\\/wa.me\\/qr\\/4CGQQG74CMXUJ1\",\"display_url\":\"wa.me\\/qr\\/4CGQQG74CMX\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":147,\"friends_count\":1503,\"listed_count\":3,\"created_at\":\"Tue Feb 21 18:14:13 +0000 2017\",\"favourites_count\":907,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":878,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555309677751242757\\/JBEY5IUg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555309677751242757\\/JBEY5IUg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/834103951712718853\\/1659649674\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4334\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4335\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4336\":{\"id\":3935905942,\"id_str\":\"3935905942\",\"name\":\"Tosh Michaels \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"ToshSports\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Broadcast Journalist | Commentator | OAP @Diamond887fm Ilorin | Actor | Event Host | Email: jamesvic336@gmail.com.\",\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9qZCel5J23\",\"expanded_url\":\"http:\\/\\/www.owosports.com.ng\",\"display_url\":\"owosports.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":433,\"friends_count\":996,\"listed_count\":3,\"created_at\":\"Mon Oct 12 09:24:48 +0000 2015\",\"favourites_count\":4199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1948,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1475588520614014980\\/I8y-_vmP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3935905942\\/1640642689\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4337\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4338\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4339\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4340\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4341\":{\"id\":1125678858471116801,\"id_str\":\"1125678858471116801\",\"name\":\"Abiola Oyewo\",\"screen_name\":\"kennyshoes1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kenny shoes\",\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iPrEpoNIC5\",\"expanded_url\":\"http:\\/\\/www.kennyshoes.com\",\"display_url\":\"kennyshoes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":117,\"listed_count\":5,\"created_at\":\"Tue May 07 08:28:48 +0000 2019\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2842,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370295189571579911\\/bkX6QxNn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4342\":{\"id\":798250776,\"id_str\":\"798250776\",\"name\":\"HEDREES\",\"screen_name\":\"AmooOlawale1\",\"location\":\"Nigeria\",\"description\":\"I seek refuge in u Allah against sheytan d accuse.\",\"url\":\"http:\\/\\/t.co\\/fQkuzH1lzh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fQkuzH1lzh\",\"expanded_url\":\"http:\\/\\/http.amooolawaleidris.com\",\"display_url\":\"http.amooolawaleidris.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":109,\"friends_count\":284,\"listed_count\":0,\"created_at\":\"Sun Sep 02 13:20:38 +0000 2012\",\"favourites_count\":971,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2861,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/788004857852624897\\/bblq84cW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/788004857852624897\\/bblq84cW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/798250776\\/1389339938\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4343\":{\"id\":1473679113961496585,\"id_str\":\"1473679113961496585\",\"name\":\"SALAWU OLUWATOBI\",\"screen_name\":\"tobinson10\",\"location\":\"Lagos, Nigeria\",\"description\":\"TeeGirl-that what they call me. I love Crypto, Tech, Sports, Vibes, Partying, politics (no b 9ja own) - e no de sweet.. and Vawulense (\\ud83e\\udd17 U know if u know)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":198,\"friends_count\":1093,\"listed_count\":5,\"created_at\":\"Wed Dec 22 15:38:09 +0000 2021\",\"favourites_count\":5774,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3115,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552053831973933056\\/ZP_oM5Wa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552053831973933056\\/ZP_oM5Wa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1473679113961496585\\/1644153961\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4344\":{\"id\":1514871863905816577,\"id_str\":\"1514871863905816577\",\"name\":\"FlyHezix\",\"screen_name\":\"flyhezix\",\"location\":\"Nigeria\",\"description\":\"\\ud83d\\udd38Chartered Flight \\ud83d\\udd38Leasing \\ud83d\\udd38Helicopter Shuttle Service \\ud83d\\udd38Aircraft sales Contact:- +2348140491420\",\"url\":\"https:\\/\\/t.co\\/MYVovcJwdF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MYVovcJwdF\",\"expanded_url\":\"http:\\/\\/flyhezix.weebly.com\",\"display_url\":\"flyhezix.weebly.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Fri Apr 15 07:43:06 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538739669122310144\\/Akzhv8PA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538739669122310144\\/Akzhv8PA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514871863905816577\\/1650009810\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4345\":{\"id\":1527952716298964992,\"id_str\":\"1527952716298964992\",\"name\":\"Blaq_Pearlz\",\"screen_name\":\"pearlz_blaq\",\"location\":\"Lagos, Nigeria\",\"description\":\"Afrobeat is where music is, and where it will remain, Music is what i do, its part of me\",\"url\":\"https:\\/\\/t.co\\/fUP0BC0eKk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fUP0BC0eKk\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC4DIhjRfMR3h4FrPlabZuYg\",\"display_url\":\"youtube.com\\/channel\\/UC4DIh\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":139,\"friends_count\":493,\"listed_count\":0,\"created_at\":\"Sat May 21 10:01:50 +0000 2022\",\"favourites_count\":2411,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":353,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550601206757822471\\/hXMyovof_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550601206757822471\\/hXMyovof_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1527952716298964992\\/1658527111\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4346\":{\"id\":786174321706332161,\"id_str\":\"786174321706332161\",\"name\":\"Star P Ankeli\",\"screen_name\":\"AnkeliTips\",\"location\":\"Nigeria\",\"description\":\"Music producer,Singer\\/Songwriter\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":833,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Oct 12 11:58:59 +0000 2016\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538076716073107456\\/rFBCbGRy_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786174321706332161\\/1648028579\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4347\":{\"id\":1252744966176202753,\"id_str\":\"1252744966176202753\",\"name\":\"TonyMoor\",\"screen_name\":\"MoorTony\",\"location\":\"Lagos\",\"description\":\"property consultant, Digital marketing professional, investment expert.A great friend,A man of God.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":36,\"listed_count\":0,\"created_at\":\"Tue Apr 21 23:44:32 +0000 2020\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":156,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1394223136158126082\\/uGaArb3p_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1394223136158126082\\/uGaArb3p_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1252744966176202753\\/1652452446\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4348\":{\"id\":1478815961482412034,\"id_str\":\"1478815961482412034\",\"name\":\"Clinton Ikart\",\"screen_name\":\"ikart_clinton\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Ceo Clindice Music Limited ,\\nMusic business Consultant, Artiste Manager , Politician.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":335,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Wed Jan 05 19:49:51 +0000 2022\",\"favourites_count\":27250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":138,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1515054668396834827\\/i7CWvFYu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1515054668396834827\\/i7CWvFYu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1478815961482412034\\/1653546265\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4349\":{\"id\":1256962330505641986,\"id_str\":\"1256962330505641986\",\"name\":\"HopVicProduction\\u26a1\\ufe0f\\ud83e\\udd41\\ud83d\\udd25\",\"screen_name\":\"hopvicbeat\",\"location\":\"Lagos, Nigeria\",\"description\":\"Music Production, Mixing and Mastering, music Production training, Beats, Jingle, Artist Branding, Online, Radio Promo.\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":\"https:\\/\\/t.co\\/VbTgqWTYKN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VbTgqWTYKN\",\"expanded_url\":\"https:\\/\\/youtu.be\\/xD24RTykUoc\",\"display_url\":\"youtu.be\\/xD24RTykUoc\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":104,\"listed_count\":0,\"created_at\":\"Sun May 03 15:02:39 +0000 2020\",\"favourites_count\":39,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":221,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1334854201533476865\\/sanFh_Vp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1334854201533476865\\/sanFh_Vp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1256962330505641986\\/1607089050\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4350\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4351\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4352\":{\"id\":2613972650,\"id_str\":\"2613972650\",\"name\":\"BBNaija2022\",\"screen_name\":\"BBNaija_2022\",\"location\":\"Nigeria\",\"description\":\"Get all the latest Big Brother Naija 2022 Updates. This\\u2019s a fan page of BBNaija Subscribe to our YouTube Channel for Live Streams Link below\\u2935\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hIQCdJRBVS\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCWzUib8-3eG5Yw-enuoKBtg\",\"display_url\":\"youtube.com\\/channel\\/UCWzUi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":13,\"listed_count\":4,\"created_at\":\"Wed Jul 09 18:07:39 +0000 2014\",\"favourites_count\":622,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2738,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551199152968765440\\/bJpsNaaf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2613972650\\/1652963380\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4353\":{\"id\":3153103287,\"id_str\":\"3153103287\",\"name\":\"Dat-Kogi-Boii\",\"screen_name\":\"BelloIlias\",\"location\":\"Kogi, Nigeria\",\"description\":\"Marketer and Team Leader at @UltimateBakery \\nBusiness Minded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":365,\"friends_count\":412,\"listed_count\":1,\"created_at\":\"Fri Apr 10 01:16:11 +0000 2015\",\"favourites_count\":770,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1630,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370642062115282948\\/fjSWX5_X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370642062115282948\\/fjSWX5_X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3153103287\\/1636874474\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4354\":{\"id\":55308144,\"id_str\":\"55308144\",\"name\":\"Peter Obi's Minister of Power\",\"screen_name\":\"RealPOOkeke\",\"location\":\"Nigeria\",\"description\":\"Shadow Minister of Power|Global Energy Efficiency & Sustainability Advocate | Power Engineer| Social Commentator|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":548,\"friends_count\":1163,\"listed_count\":8,\"created_at\":\"Thu Jul 09 17:56:14 +0000 2009\",\"favourites_count\":229,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2557,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549008497739808769\\/S_rC6eKJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/55308144\\/1655442076\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4355\":{\"id\":1047917881718185985,\"id_str\":\"1047917881718185985\",\"name\":\"Succiano\",\"screen_name\":\"SuccianoM\",\"location\":\"Lagos \",\"description\":\"Public Speaker \\ud83c\\udfa4 Stress Management Enthusiast \\ud83d\\udde3\\ufe0f\\nHelping young undergraduates find their purpose without stress \\ud83d\\udcaa\\ud83d\\udcaa\\ud83d\\udcaa\\n\\ud83d\\udccdLead Gen\\ud83d\\udccdContent Curation\",\"url\":\"https:\\/\\/t.co\\/XxQQ8JWJZj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XxQQ8JWJZj\",\"expanded_url\":\"http:\\/\\/successrobert.com\\/killdepression\",\"display_url\":\"successrobert.com\\/killdepression\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":93,\"listed_count\":0,\"created_at\":\"Thu Oct 04 18:34:27 +0000 2018\",\"favourites_count\":114,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":114,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1402316536719740932\\/sBDx-at__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1402316536719740932\\/sBDx-at__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1047917881718185985\\/1619368806\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4356\":{\"id\":1509188070201036807,\"id_str\":\"1509188070201036807\",\"name\":\"Chronicare\",\"screen_name\":\"Chronicareng\",\"location\":\"Lagos, Nigeria\",\"description\":\"Integrated Diabetes Management Centre\",\"url\":\"https:\\/\\/t.co\\/LCPNpkgCtL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LCPNpkgCtL\",\"expanded_url\":\"http:\\/\\/www.chronicare.org\",\"display_url\":\"chronicare.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Wed Mar 30 15:18:25 +0000 2022\",\"favourites_count\":173,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544669520442363904\\/ij2tVJe6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544669520442363904\\/ij2tVJe6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509188070201036807\\/1648654910\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4357\":{\"id\":1203403060766269441,\"id_str\":\"1203403060766269441\",\"name\":\"DonJazzy Out Now \\ud83d\\ude0e\",\"screen_name\":\"DejavuDmj\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Donjazzy out Now on Audiomack \\ud83d\\ude4f\\u2665\\ufe0f\\ud83d\\udd25\",\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fYxcyeaGey\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/dejavudmj\\/song\\/donjazz\",\"display_url\":\"audiomack.com\\/dejavudmj\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":912,\"friends_count\":4636,\"listed_count\":1,\"created_at\":\"Sat Dec 07 19:57:47 +0000 2019\",\"favourites_count\":29304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":63565,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554817209884614656\\/Bsu3Fofw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1203403060766269441\\/1658487713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4358\":{\"id\":2885459335,\"id_str\":\"2885459335\",\"name\":\"Database World\",\"screen_name\":\"Sir_Money_gh\",\"location\":\"ghana\",\"description\":\"Database activist \\nemail benhast21@gmail.com\\nIG @sir_money_ #Database #oracle #PowerBI\\n@oracle @mssqlserver\",\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x9gXYXlJL2\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCjqrnmLvpmpU4nIFjOYPUGQ\",\"display_url\":\"youtube.com\\/channel\\/UCjqrn\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":328,\"friends_count\":269,\"listed_count\":1,\"created_at\":\"Fri Oct 31 16:29:15 +0000 2014\",\"favourites_count\":6043,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7020,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1478431025739018241\\/OwAm0e5b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2885459335\\/1641320456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4359\":{\"id\":1435400676545372163,\"id_str\":\"1435400676545372163\",\"name\":\"jamie\",\"screen_name\":\"oneilj386\",\"location\":\"Enugu, Nigeria\",\"description\":\"life goes on\\n#30BG \\n@davido\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":26,\"listed_count\":0,\"created_at\":\"Wed Sep 08 00:32:58 +0000 2021\",\"favourites_count\":315,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":317,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526683427466104832\\/i0BtndF6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1435400676545372163\\/1652824732\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4360\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64921,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4361\":{\"id\":1241988294797377544,\"id_str\":\"1241988294797377544\",\"name\":\"Obi.ajulu\\ud83d\\udc9d\",\"screen_name\":\"_Obi_ajulu\",\"location\":\"Enugu, Nigeria\",\"description\":\"Dealers on all kinds of sports kits \\nDe'patricks sports and wears\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Mon Mar 23 07:21:13 +0000 2020\",\"favourites_count\":16833,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":654,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1345029240421494785\\/4o-Yft74_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1345029240421494785\\/4o-Yft74_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1241988294797377544\\/1609515237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4362\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64921,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4363\":{\"id\":1264500846869372931,\"id_str\":\"1264500846869372931\",\"name\":\"My News NE\",\"screen_name\":\"MyNewsNE\",\"location\":\"Assam\",\"description\":\"MyNewsNE a dedicated multi-lingual media house from North Eastern India.\",\"url\":\"https:\\/\\/t.co\\/JiiJfTLfTy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JiiJfTLfTy\",\"expanded_url\":\"http:\\/\\/mynewsne.com\\/\",\"display_url\":\"mynewsne.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":35,\"listed_count\":2,\"created_at\":\"Sun May 24 10:18:41 +0000 2020\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5196,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1402919400034881544\\/h_UIbDXx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1402919400034881544\\/h_UIbDXx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1264500846869372931\\/1592134743\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4364\":{\"id\":1205938170094903296,\"id_str\":\"1205938170094903296\",\"name\":\"C'MON LET'S DISCUSS THIS \\ud83d\\udcac\",\"screen_name\":\"Naijamatterblog\",\"location\":\"Lagos, Nigeria\",\"description\":\"BASICALLY;\\nI READ \\ud83d\\udcd6 \\nI WRITE \\u270d\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":324,\"friends_count\":28,\"listed_count\":8,\"created_at\":\"Sat Dec 14 19:51:00 +0000 2019\",\"favourites_count\":633,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":684,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1254532220888518656\\/IZyTEwrV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1254532220888518656\\/IZyTEwrV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1205938170094903296\\/1622793350\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4365\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4366\":{\"id\":1072585382972284928,\"id_str\":\"1072585382972284928\",\"name\":\"AprokoRepublic \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"aprokorepublic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Entertainment Blog ||Music, Video Business Promoter ||For steady update Turn Notification..Submit Content:Call\\/Whatsapp:07062811394, \\ud83d\\udce9aprokorepublic@gmail.com\",\"url\":\"https:\\/\\/t.co\\/Ka7dgfZb3a\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ka7dgfZb3a\",\"expanded_url\":\"https:\\/\\/aprokorepublic.com.ng\",\"display_url\":\"aprokorepublic.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2913,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Tue Dec 11 20:14:17 +0000 2018\",\"favourites_count\":31129,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11806,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534158502356303872\\/lHPD2lXc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534158502356303872\\/lHPD2lXc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1072585382972284928\\/1654622951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4367\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64921,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4368\":{\"id\":1481683902238535682,\"id_str\":\"1481683902238535682\",\"name\":\"Memzydavid\\ud83d\\udcb0\",\"screen_name\":\"Ememsef\",\"location\":\"Nigeria\",\"description\":\"A Food Scientists, Writer, Social Media manager and Moderator, Liverpool fans\\ud83d\\udc96\\ud83e\\udd17.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":854,\"friends_count\":774,\"listed_count\":0,\"created_at\":\"Thu Jan 13 17:46:10 +0000 2022\",\"favourites_count\":1316,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":918,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552256871020597251\\/a0SpQ0ll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552256871020597251\\/a0SpQ0ll_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481683902238535682\\/1654625948\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4369\":{\"id\":1331432336127381504,\"id_str\":\"1331432336127381504\",\"name\":\"William Iwu\",\"screen_name\":\"betsmasterspro\",\"location\":\"Jos, Nigeria\",\"description\":\"Welcome To Betsmasterpro matches,We Offer \\ud83d\\udcaf Fixed Matches All Correct Scores,If You're Interested Call \\ud83d\\udcdeOr WhatsApp Us On \\ud83d\\udcf2+2349095386137.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1085,\"friends_count\":37,\"listed_count\":1,\"created_at\":\"Wed Nov 25 02:59:59 +0000 2020\",\"favourites_count\":1247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1931,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1428325820855115776\\/cxGXbNXB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331432336127381504\\/1629374439\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4370\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64921,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4371\":{\"id\":553943682,\"id_str\":\"553943682\",\"name\":\"The Quest Times\",\"screen_name\":\"thequesttimes\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigeria's most credible news website\",\"url\":\"https:\\/\\/t.co\\/YkKBpEFlz3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YkKBpEFlz3\",\"expanded_url\":\"http:\\/\\/thequesttimes.com\",\"display_url\":\"thequesttimes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34015,\"friends_count\":12859,\"listed_count\":35,\"created_at\":\"Sat Apr 14 21:52:37 +0000 2012\",\"favourites_count\":24631,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":49569,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530998775031930886\\/qa2beBd4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530998775031930886\\/qa2beBd4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/553943682\\/1653853640\",\"profile_link_color\":\"F58EA8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4372\":{\"id\":2787083009,\"id_str\":\"2787083009\",\"name\":\"Bible Wonderland NG\",\"screen_name\":\"BibleWonderLand\",\"location\":\"Surulere, Lagos, Nigeria\",\"description\":\"Nigeria's largest provider of Christian books and Church supplies. \\nWe're available at 08105682169, 08105682168. \\nEmail us at info@biblewonderlandng.com\",\"url\":\"https:\\/\\/t.co\\/gXvQszFK9R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gXvQszFK9R\",\"expanded_url\":\"http:\\/\\/www.biblewonderlandng.com\",\"display_url\":\"biblewonderlandng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1193,\"friends_count\":291,\"listed_count\":1,\"created_at\":\"Sat Sep 27 12:50:05 +0000 2014\",\"favourites_count\":774,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2214,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"3266CC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/747360541958615042\\/h7AR6azg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/747360541958615042\\/h7AR6azg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2787083009\\/1535170817\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4373\":{\"id\":4342153529,\"id_str\":\"4342153529\",\"name\":\"Mma\",\"screen_name\":\"obi_Jules\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"Massage Therapist | Radio Presenter | Voice Over Artist | Editor | Mobile Masseuse | CEO ZenSpa.\",\"url\":\"https:\\/\\/t.co\\/Z9kOxLxbCr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z9kOxLxbCr\",\"expanded_url\":\"http:\\/\\/www.julesempire.ng\",\"display_url\":\"julesempire.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":650,\"friends_count\":561,\"listed_count\":0,\"created_at\":\"Tue Dec 01 17:53:46 +0000 2015\",\"favourites_count\":4397,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":463,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1502996225519464453\\/APpE70Sl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1502996225519464453\\/APpE70Sl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4342153529\\/1542738004\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4374\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64921,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4375\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64921,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4376\":{\"id\":929978055497519104,\"id_str\":\"929978055497519104\",\"name\":\"Almost_Rich\",\"screen_name\":\"MOlorunkalu\",\"location\":\"Lagos Nigeria \",\"description\":\"NOT yOuR kInDa GuY|| Everything WIZKID IG: @meek_carti_\",\"url\":\"https:\\/\\/t.co\\/fB19NONknP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fB19NONknP\",\"expanded_url\":\"http:\\/\\/www.notjustok.me\",\"display_url\":\"notjustok.me\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":396,\"friends_count\":1348,\"listed_count\":1,\"created_at\":\"Mon Nov 13 07:43:41 +0000 2017\",\"favourites_count\":160,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1849,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1363133282490155015\\/PnBLb6K4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1363133282490155015\\/PnBLb6K4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/929978055497519104\\/1581489158\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4377\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4812,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4378\":{\"id\":1254048209036550144,\"id_str\":\"1254048209036550144\",\"name\":\"pharez_sdb\",\"screen_name\":\"SilverstoneDC\",\"location\":\"\",\"description\":\"Tomorrow is Now\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":887,\"listed_count\":0,\"created_at\":\"Sat Apr 25 14:03:06 +0000 2020\",\"favourites_count\":721,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":183,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542508429851275264\\/sHQOec5J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542508429851275264\\/sHQOec5J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1254048209036550144\\/1654456552\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4379\":{\"id\":610702056,\"id_str\":\"610702056\",\"name\":\"GoldMyneTV\",\"screen_name\":\"GoldmyneTV\",\"location\":\"Lagos Nigeria\",\"description\":\"Goldmyne Creates Epic Content\",\"url\":\"https:\\/\\/t.co\\/iZTe27r9oX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iZTe27r9oX\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/goldmynetv\",\"display_url\":\"youtube.com\\/goldmynetv\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52374,\"friends_count\":9789,\"listed_count\":93,\"created_at\":\"Sun Jun 17 08:12:14 +0000 2012\",\"favourites_count\":1473,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":128190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540985176544739329\\/nkYKqfot_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540985176544739329\\/nkYKqfot_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/610702056\\/1526374907\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4380\":{\"id\":950297148624646144,\"id_str\":\"950297148624646144\",\"name\":\"Association for Fertility and Reproductive Health\",\"screen_name\":\"AFRHNig\",\"location\":\"Lagos, Nigeria\",\"description\":\"AFRH is a registered body whose main aim is to promote interest in, and understanding of, reproductive biology and medicine.\",\"url\":\"https:\\/\\/t.co\\/FJiFFszU9x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FJiFFszU9x\",\"expanded_url\":\"http:\\/\\/www.afrhnigeria.org\",\"display_url\":\"afrhnigeria.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":58,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Mon Jan 08 09:24:30 +0000 2018\",\"favourites_count\":13,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":134,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525074281453039622\\/0nyap8zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525074281453039622\\/0nyap8zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/950297148624646144\\/1652708068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4381\":{\"id\":765183391377592320,\"id_str\":\"765183391377592320\",\"name\":\"Fran\\u00e7ois Kahn\\ud83e\\udde4\\ud83e\\udde4\\u26bd\\ufe0f\",\"screen_name\":\"KasoaOliverKahn\",\"location\":\"Ghana \",\"description\":\"Bayern Munich -Ghana Fan Rep \\u2665\\ufe0f| Football Analyst | Bilingual | Wild Life enthusiast \\ud83d\\udc08\\u200d\\u2b1b\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":780,\"friends_count\":766,\"listed_count\":0,\"created_at\":\"Mon Aug 15 13:48:32 +0000 2016\",\"favourites_count\":5592,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":652,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1444112157365387269\\/YKC8C40V_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1444112157365387269\\/YKC8C40V_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/765183391377592320\\/1633305513\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4382\":{\"id\":1297264385367433217,\"id_str\":\"1297264385367433217\",\"name\":\"Baale_Of_Barcelona\",\"screen_name\":\"iamdannylaurels\",\"location\":\"Lagos, Nigeria\",\"description\":\"Content creator.\\nSport Analyst\\n proudly ladokite\\ud83d\\ude43\\nNo 1 Barcelona fan..\\nActivist\\nAmbassador for peace \\ud83d\\udd4a\\ufe0f and unity in Nigeria...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":596,\"friends_count\":666,\"listed_count\":0,\"created_at\":\"Sat Aug 22 20:08:38 +0000 2020\",\"favourites_count\":694,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":578,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546954940739981312\\/eqVB7NtM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546954940739981312\\/eqVB7NtM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1297264385367433217\\/1611335809\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4383\":{\"id\":1546236824464629760,\"id_str\":\"1546236824464629760\",\"name\":\"Emeka okoye\",\"screen_name\":\"Ezeego_of_igbo\",\"location\":\"Lagos Nigeria \",\"description\":\"Humble Guy\\nBUSINESS MAN CEO NEOPERFECT NIG ENTERPRISE.(RC :3595181) CEO @neoperfect_merchandise_ on IG.\\nOld accounts blocked pls follow I will follow back.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":121,\"friends_count\":475,\"listed_count\":0,\"created_at\":\"Sun Jul 10 20:56:15 +0000 2022\",\"favourites_count\":70,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":36,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549138913897455616\\/FX4zm8f7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546236824464629760\\/1657486858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4384\":{\"id\":1316640380151046144,\"id_str\":\"1316640380151046144\",\"name\":\"Oluwaloni_eefa\",\"screen_name\":\"oluwanonieefa\",\"location\":\"Lagos, Nigeria\",\"description\":\"I WANT ATTENTION \\nI'M AN ARTIST \\nSong writer\\nsinger \\nrapper\\n@oluwaloni_eefa on ig \\n\\ud83e\\udde1\\u2b50\\nASABADBOY \\nI'MJUSTABREASTLOVER\\ud83e\\udde1\\n#fan know as #eefans\",\"url\":\"https:\\/\\/t.co\\/HokMftJ4lZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HokMftJ4lZ\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/oluwaloni_eefa\",\"display_url\":\"audiomack.com\\/oluwaloni_eefa\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":152,\"listed_count\":0,\"created_at\":\"Thu Oct 15 07:21:59 +0000 2020\",\"favourites_count\":242,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1474700412875907078\\/7dSBXmaV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1474700412875907078\\/7dSBXmaV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1316640380151046144\\/1641064340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4385\":{\"id\":375314790,\"id_str\":\"375314790\",\"name\":\"ojarx\",\"screen_name\":\"Ojarikreclement\",\"location\":\"Lagos, Nigeria\",\"description\":\"Product Guy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Sat Sep 17 22:21:15 +0000 2011\",\"favourites_count\":461,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":293,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541526786974126081\\/89DcYkuI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541526786974126081\\/89DcYkuI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/375314790\\/1656363942\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4386\":{\"id\":1228289508,\"id_str\":\"1228289508\",\"name\":\"Daily Times Nigeria\",\"screen_name\":\"DailyTimesNGR\",\"location\":\"Lagos, Nigeria\",\"description\":\"Founded in 1926, Daily Times Digital is the foremost news and information agency in Nigeria. It seeks to offer factual and timely news to it's audience.\",\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dABt6E9rSj\",\"expanded_url\":\"http:\\/\\/www.dailytimesng.com\",\"display_url\":\"dailytimesng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64921,\"friends_count\":16313,\"listed_count\":157,\"created_at\":\"Thu Feb 28 20:16:41 +0000 2013\",\"favourites_count\":177,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":194803,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0E0D02\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417800002144030720\\/LXIpweaL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1228289508\\/1613991371\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0311A2\",\"profile_text_color\":\"39BD91\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4387\":{\"id\":1520357760,\"id_str\":\"1520357760\",\"name\":\"Comrade Akpos\",\"screen_name\":\"Iam_Gpphilipson\",\"location\":\"Lagos, Nigeria\",\"description\":\"Looking forward for 2023 Nigeria Election, Vote Peter Obi\\nNigeria to the moon \\ud83d\\udcc8\\nif you Banter me, Peace isn't an Option.\\n\\n#Bitcoin \\n#Ethereum\\n#Bnb\\n#XRp\\n#Zen\",\"url\":\"https:\\/\\/t.co\\/PkDjpFVoM6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PkDjpFVoM6\",\"expanded_url\":\"http:\\/\\/myamibo.blogspot.com\",\"display_url\":\"myamibo.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1349,\"friends_count\":3787,\"listed_count\":8,\"created_at\":\"Sat Jun 15 20:41:15 +0000 2013\",\"favourites_count\":12842,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15601,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541720304761929728\\/aSpURyrx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541720304761929728\\/aSpURyrx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520357760\\/1655019580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4388\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4812,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4389\":{\"id\":1505679898324656131,\"id_str\":\"1505679898324656131\",\"name\":\"CAMPUS GIST TV \\ud83d\\udcfa\",\"screen_name\":\"Splendidprince0\",\"location\":\"Anambra, Nigeria\",\"description\":\"Your sure plug on all campus gist and Gossips in Naija and more Follow us on whatsapp 09031931285 For all your campus stories and gist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1145,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Sun Mar 20 22:58:04 +0000 2022\",\"favourites_count\":3137,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505685096778588163\\/vESOXnW2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505685096778588163\\/vESOXnW2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1505679898324656131\\/1651148817\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4390\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4391\":{\"id\":1312749556816322560,\"id_str\":\"1312749556816322560\",\"name\":\"Fasasi Jnr\",\"screen_name\":\"1880Tgold\",\"location\":\"Lagos, Nigeria\",\"description\":\"One of the best ways to broaden your horizon about life and increase your chances is by investing in yourself. https:\\/\\/t.co\\/58RmodNPYp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/58RmodNPYp\",\"expanded_url\":\"https:\\/\\/payhip.com\\/WEBOKI?af=af62e74a689695a\",\"display_url\":\"payhip.com\\/WEBOKI?af=af62\\u2026\",\"indices\":[111,134]}]}},\"protected\":false,\"followers_count\":65,\"friends_count\":156,\"listed_count\":0,\"created_at\":\"Sun Oct 04 13:41:34 +0000 2020\",\"favourites_count\":168,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":300,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1312758413986869250\\/RNPhdHrk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1312758413986869250\\/RNPhdHrk_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4392\":{\"id\":967901732591292416,\"id_str\":\"967901732591292416\",\"name\":\"\\u0623\\u0646\\u0627 \\u062d\\u0644\\u064a\\u0641\\u0629\\ud83d\\ude0e\\ud83c\\uddf7\\ud83c\\uddfa\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Fagman01\",\"location\":\"Nigeria\",\"description\":\"investor khalifar \\u263a\\ufe0f\\ud83d\\udc94\\ud83d\\udcaf\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf7\\ud83c\\uddfa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":164,\"listed_count\":3,\"created_at\":\"Sun Feb 25 23:18:50 +0000 2018\",\"favourites_count\":2649,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":182,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527357872136343556\\/t21Eo-vi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527357872136343556\\/t21Eo-vi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/967901732591292416\\/1637146612\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4393\":{\"id\":1339568078410178560,\"id_str\":\"1339568078410178560\",\"name\":\"Francis Umendiego\",\"screen_name\":\"doziego\",\"location\":\"Abuja, Nigeria\",\"description\":\"Ph.D In View || Governance-Policy Researcher || Program Management Specialist || Friedrich Ebert Stiftung OMYV 2022 Fellow || @UN #SDGs 2030\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":329,\"friends_count\":2807,\"listed_count\":4,\"created_at\":\"Thu Dec 17 13:48:25 +0000 2020\",\"favourites_count\":8709,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2388,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551873046134267905\\/-E1UKgJS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551873046134267905\\/-E1UKgJS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1339568078410178560\\/1659312182\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4394\":{\"id\":1550114284276830213,\"id_str\":\"1550114284276830213\",\"name\":\"Slimtalker\",\"screen_name\":\"Slimtalker2\",\"location\":\"Nigeria\",\"description\":\"bookings :kinikadaniel123@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Thu Jul 21 13:43:50 +0000 2022\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551155235187556354\\/U8mdZnnl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551155235187556354\\/U8mdZnnl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550114284276830213\\/1658411644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4395\":{\"id\":1235237327439568896,\"id_str\":\"1235237327439568896\",\"name\":\"omoleye victor\",\"screen_name\":\"omoleye_victor\",\"location\":\"Nigeria\",\"description\":\"Digital marketer|| book promoter || graphics designer|| store promoter || social media manager||photographer||\",\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/omoleyevictor\",\"display_url\":\"fiverr.com\\/omoleyevictor\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":836,\"listed_count\":0,\"created_at\":\"Wed Mar 04 16:15:21 +0000 2020\",\"favourites_count\":89,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235237327439568896\\/1658497278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4396\":{\"id\":1399979771770122242,\"id_str\":\"1399979771770122242\",\"name\":\"vintagebraidedwigs\",\"screen_name\":\"vintagebraidwig\",\"location\":\"Nigeria\",\"description\":\"Our business is proudly black owned \\u270a\\ud83c\\udfffand our wigs are made specially for you with love \\ud83d\\udc95and care\\ud83e\\udd70. IG\\/FB\\/TK: @vintagebraidedwigs \\ud83c\\udf0d\\ud83d\\udce6\",\"url\":\"https:\\/\\/t.co\\/o6b52ckSlC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o6b52ckSlC\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/VintageHairs\",\"display_url\":\"linktr.ee\\/VintageHairs\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":58,\"listed_count\":0,\"created_at\":\"Wed Jun 02 06:42:56 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":133,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1464242654435282949\\/v9VjS9ad_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1464242654435282949\\/v9VjS9ad_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1399979771770122242\\/1637937644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4397\":{\"id\":1235237327439568896,\"id_str\":\"1235237327439568896\",\"name\":\"omoleye victor\",\"screen_name\":\"omoleye_victor\",\"location\":\"Nigeria\",\"description\":\"Digital marketer|| book promoter || graphics designer|| store promoter || social media manager||photographer||\",\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KWttarfxOR\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/omoleyevictor\",\"display_url\":\"fiverr.com\\/omoleyevictor\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":836,\"listed_count\":0,\"created_at\":\"Wed Mar 04 16:15:21 +0000 2020\",\"favourites_count\":89,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509938321983684610\\/C1uhdLJt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1235237327439568896\\/1658497278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4398\":{\"id\":1469988138982547458,\"id_str\":\"1469988138982547458\",\"name\":\"world_wide\",\"screen_name\":\"w_w_accessories\",\"location\":\"Lagos, Nigeria\",\"description\":\"Home of car interior decor\\n\\ud83d\\ude97\\ud83d\\udefb\\ud83d\\ude98\\ud83d\\ude96\\nshop 49 D3 Aspmda lagos.\\n\\nOur name is WORLD-WIDE.\\n\\nlet's be ur choice for all car accessories \\ud83e\\udd85\\ud83c\\udf10\\n\\n#caraccessories\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11,\"friends_count\":54,\"listed_count\":3,\"created_at\":\"Sun Dec 12 11:11:07 +0000 2021\",\"favourites_count\":119,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":89,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555668500563345408\\/40mOliMP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555668500563345408\\/40mOliMP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1469988138982547458\\/1658226306\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4399\":{\"id\":1550922414,\"id_str\":\"1550922414\",\"name\":\"UnityRadioFMTV\",\"screen_name\":\"UnityRadioFMTV\",\"location\":\"Jos, Nigeria\",\"description\":\"We are 'The Voice of Reason' || Email: info@unityfmtv.com.ng || unityradio_fm@yahoo.com || Cell:+234 (0) 7051810942 || RT\\u2260 Endorsement\\n#FollowBack...\",\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sOFtmw4ctQ\",\"expanded_url\":\"http:\\/\\/unityfmtv.com.ng\",\"display_url\":\"unityfmtv.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6514,\"friends_count\":516,\"listed_count\":16,\"created_at\":\"Thu Jun 27 16:03:35 +0000 2013\",\"favourites_count\":3247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13818,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547936816887525376\\/YPHCqwXt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550922414\\/1527162996\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4400\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4401\":{\"id\":602839866,\"id_str\":\"602839866\",\"name\":\"Ali Aiyes\",\"screen_name\":\"AliAiyes\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":36,\"listed_count\":2,\"created_at\":\"Fri Jun 08 13:28:23 +0000 2012\",\"favourites_count\":12,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":310,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1351809954286546945\\/kCjc4w1D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1351809954286546945\\/kCjc4w1D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/602839866\\/1611131632\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4402\":{\"id\":1375465426260480004,\"id_str\":\"1375465426260480004\",\"name\":\"Glory | Glowhubdesign | GD\",\"screen_name\":\"globlog3\",\"location\":\"Nigeria\",\"description\":\"I'm a Graphic designer, I will visualize and communicate your message simply and incredibly.\",\"url\":\"https:\\/\\/t.co\\/iYC5asLAUh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iYC5asLAUh\",\"expanded_url\":\"http:\\/\\/www.glowhubgraphics.blogspot.com\",\"display_url\":\"glowhubgraphics.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":12,\"listed_count\":0,\"created_at\":\"Fri Mar 26 15:11:43 +0000 2021\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542963720644698112\\/2yDlyVq-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542963720644698112\\/2yDlyVq-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375465426260480004\\/1659208235\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4403\":{\"id\":993141172938989570,\"id_str\":\"993141172938989570\",\"name\":\"Mr. Izi\",\"screen_name\":\"_Mr_Izi1\",\"location\":\"Nigeria\",\"description\":\"Devoted $ Dedicated to $Marvin #MarvinInu of @Marvin_Inu only\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":104,\"friends_count\":105,\"listed_count\":0,\"created_at\":\"Sun May 06 14:51:22 +0000 2018\",\"favourites_count\":929,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519615281148145665\\/zMEpm3_T_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4404\":{\"id\":822024954246000640,\"id_str\":\"822024954246000640\",\"name\":\"M-Jeezy\",\"screen_name\":\"NwonualaHope\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Geologist, Entrepreneur.\\n\\nMasculine Energy\\/ALPHA\\nHuman right activist\\/An activist for good governance.\\n\\nFully Obi-dient\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Thu Jan 19 10:16:36 +0000 2017\",\"favourites_count\":8576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4405\":{\"id\":1021863700838469633,\"id_str\":\"1021863700838469633\",\"name\":\"Hizbuzz\",\"screen_name\":\"xo_luxury_store\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified cloth dealer \\ud83d\\udd0c\\ud83c\\udf3c. We deal with all kind of clothes\\ud83d\\udc55, shoes\\ud83d\\udc5f\\ud83d\\udc5e, boxers, bags\\ud83c\\udf92, trousers, sun shade glasses\\ud83d\\udc53 Chelsea fc\\ud83d\\udc99 @mateokovacic8 fan\",\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348138512629\",\"display_url\":\"wa.me\\/+2348138512629\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":1160,\"listed_count\":0,\"created_at\":\"Tue Jul 24 21:04:26 +0000 2018\",\"favourites_count\":40839,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33102,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1021863700838469633\\/1603448863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4406\":{\"id\":865322296050950144,\"id_str\":\"865322296050950144\",\"name\":\"Jay Dee Akaa\",\"screen_name\":\"jay_dee_akaa\",\"location\":\"FCT Abuja, Nigeria\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"\\ud83d\\udcfbRadio Presenter\\/Producer, DJ\\/Music Promoter, Corporate MC, Red Carpet Host. \\nFor Radio Interview\\/Song Promo\\/Adverts \\ud83d\\udc4907087033250, Instagram: jay_dee_akaa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2051,\"friends_count\":1643,\"listed_count\":0,\"created_at\":\"Thu May 18 21:44:47 +0000 2017\",\"favourites_count\":63615,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520705100397916165\\/SkaVMkTw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865322296050950144\\/1652079426\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4407\":{\"id\":1527244489454243843,\"id_str\":\"1527244489454243843\",\"name\":\"lumyboy\",\"screen_name\":\"lumy01609368\",\"location\":\"\",\"description\":\"content creator \\/influencer\\nMeet my house girl \\ud83d\\ude0a\\ni:g:@lumyboy\\ntiktok:@itslumyboy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Thu May 19 11:07:32 +0000 2022\",\"favourites_count\":24,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527266700994961409\\/Nv1KwrfB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527266700994961409\\/Nv1KwrfB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1527244489454243843\\/1652963947\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4408\":{\"id\":3639778217,\"id_str\":\"3639778217\",\"name\":\"LarrieOluksCreative\",\"screen_name\":\"larrieoluks\",\"location\":\"Lagos,Nigeria\",\"description\":\"Cinematographer||Photographer||Creative Director.\\n\\u2022Weddings \\u2022Portraits \\u2022Documentary {\\ud83d\\udcf8\\ud83c\\udfa5}\\nArsenalFC fan\\u2764\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":247,\"friends_count\":223,\"listed_count\":3,\"created_at\":\"Sun Sep 13 07:28:32 +0000 2015\",\"favourites_count\":2364,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2063,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554040336187625472\\/wOLhecvX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554040336187625472\\/wOLhecvX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3639778217\\/1616082002\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4409\":{\"id\":1160690442725466112,\"id_str\":\"1160690442725466112\",\"name\":\"Emmanuel Max\",\"screen_name\":\"emmanul_max\",\"location\":\"Nigeria\",\"description\":\"Everyday Vibez \\nlet's be for Real \\ud83d\\ude0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":247,\"friends_count\":290,\"listed_count\":0,\"created_at\":\"Sun Aug 11 23:12:20 +0000 2019\",\"favourites_count\":2760,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":185,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482195175225057282\\/xc1dbFuD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482195175225057282\\/xc1dbFuD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1160690442725466112\\/1590059591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4410\":{\"id\":776462429668642817,\"id_str\":\"776462429668642817\",\"name\":\"makuachukwu Momegha\",\"screen_name\":\"makuachukwuMom1\",\"location\":\"Anambra, Nigeria\",\"description\":\"I'm Meek|| Discipline || Honest ||\\nCrypto Enthusiast || Stock Enthusiast || Pi Network Enthusiast || Pi Network Ambassador .\\nFootball Enthusiast @chelseafc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":64,\"friends_count\":490,\"listed_count\":10,\"created_at\":\"Thu Sep 15 16:47:24 +0000 2016\",\"favourites_count\":2439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2287,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548653840874061825\\/e7ytSmuM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548653840874061825\\/e7ytSmuM_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4411\":{\"id\":2280011326,\"id_str\":\"2280011326\",\"name\":\"Enoch Nwokike\",\"screen_name\":\"MarsSolar__\",\"location\":\"Nigeria\",\"description\":\"Solar Energy Oriented\\n Dealer\\nStreet Lights\\nSolar Panel\\nBattery \\nInverter\\nRechargeables\\nfor business contact:\\nmarssolarandelectric@gmail.com 08146406709\",\"url\":\"https:\\/\\/t.co\\/f5QoD0dDEA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f5QoD0dDEA\",\"expanded_url\":\"http:\\/\\/enochnwokike.9.facebook.com\",\"display_url\":\"enochnwokike.9.facebook.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":60,\"listed_count\":0,\"created_at\":\"Mon Jan 13 21:37:59 +0000 2014\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":167,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517440926930583561\\/MEq7vb4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517440926930583561\\/MEq7vb4D_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2280011326\\/1650621083\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4412\":{\"id\":1372108355867656203,\"id_str\":\"1372108355867656203\",\"name\":\"NICERT GROUP\",\"screen_name\":\"NicertGroup\",\"location\":\"\",\"description\":\"We help agro-exporters get certification for international standards & regulations that are required for accessing international lucrative and premium markets.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed Mar 17 08:55:17 +0000 2021\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":163,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1372109612934180864\\/NRhbCjNK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1372108355867656203\\/1617100794\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4413\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4414\":{\"id\":1460584214563364874,\"id_str\":\"1460584214563364874\",\"name\":\"Christian Uchenna\",\"screen_name\":\"Christi07919961\",\"location\":\"Niger, Nigeria\",\"description\":\"Music minister\\ud83c\\udf99\\ufe0fpastor\\ud83c\\udfa4Entrepreneur\\ud83c\\udf49 Agriculturist\\ud83c\\udf4d Fun to be with\\ud83d\\ude00 Unapologetically a Christian\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":266,\"listed_count\":5,\"created_at\":\"Tue Nov 16 12:23:55 +0000 2021\",\"favourites_count\":559,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":437,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460584417433374721\\/zfvm-Ynf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460584417433374721\\/zfvm-Ynf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4415\":{\"id\":171890315,\"id_str\":\"171890315\",\"name\":\"Martins Obaseki\",\"screen_name\":\"M_Obaseki\",\"location\":\"Uyo, Nigeria\",\"description\":\"Data Freak | Finance \\ud83d\\udcb0 | Engineer \\ud83d\\udc68\\ud83c\\udffe\\u200d\\ud83d\\udd27| Tech lover\\ud83d\\udcbb #EndSARS \\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/N2OrpMszdi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N2OrpMszdi\",\"expanded_url\":\"https:\\/\\/martinsobaseki.netlify.app\\/\",\"display_url\":\"martinsobaseki.netlify.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":717,\"friends_count\":1775,\"listed_count\":7,\"created_at\":\"Wed Jul 28 12:26:43 +0000 2010\",\"favourites_count\":3357,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15046,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540363749839835136\\/OIXsG-o__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540363749839835136\\/OIXsG-o__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/171890315\\/1624824361\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4416\":{\"id\":1120285676325326848,\"id_str\":\"1120285676325326848\",\"name\":\"Asopalace Properties\",\"screen_name\":\"aso_palace\",\"location\":\"Nigeria\",\"description\":\"Asopalace Nigeria Limited \\/Registered\\/ Land & Real Estate Markerter\\/ C.A.C No. 1027771.Other services: House Short-let\\/Rent\\/Construction\\/Development 07043373145\",\"url\":\"https:\\/\\/t.co\\/9HWmB3pFC6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9HWmB3pFC6\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/CS27OKURRNP4I1\",\"display_url\":\"wa.me\\/message\\/CS27OK\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Mon Apr 22 11:18:13 +0000 2019\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":33,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549428501282947074\\/juAXtFsi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549428501282947074\\/juAXtFsi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120285676325326848\\/1658247515\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4417\":{\"id\":808974325474852864,\"id_str\":\"808974325474852864\",\"name\":\"sheiscatherine___\",\"screen_name\":\"katy_kenzy\",\"location\":\"Kaduna \",\"description\":\"personality is What counts. Be you!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":21,\"listed_count\":0,\"created_at\":\"Wed Dec 14 09:58:04 +0000 2016\",\"favourites_count\":1847,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":301,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1332802379784335365\\/3eK3P3bO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1332802379784335365\\/3eK3P3bO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/808974325474852864\\/1606599975\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4418\":{\"id\":230109458,\"id_str\":\"230109458\",\"name\":\"hify\\u2122\",\"screen_name\":\"hify_2\",\"location\":\"Lagos, Nigeria\",\"description\":\"above the cloud...\\nMEMBER OF LEO CLUB\\n\\n#teamchelsea,\\n#teamBIG5ive...\\nIG: @hify_2\\n#Sagittarius\",\"url\":\"https:\\/\\/t.co\\/mfwsOjHL13\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mfwsOjHL13\",\"expanded_url\":\"http:\\/\\/hifyme.wordpress.com\",\"display_url\":\"hifyme.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":487,\"friends_count\":652,\"listed_count\":0,\"created_at\":\"Fri Dec 24 08:56:42 +0000 2010\",\"favourites_count\":12633,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16896,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ABB8C2\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme3\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509577241524584464\\/A9JhrGJP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509577241524584464\\/A9JhrGJP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/230109458\\/1640725032\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4419\":{\"id\":987897642,\"id_str\":\"987897642\",\"name\":\"Victor Alex\",\"screen_name\":\"victordeyforyou\",\"location\":\"Nigeria\",\"description\":\"I\\u2019m a massive fan of Jose Mourinho and Cristiano Ronaldo that sums up everything you need to know about me. tweetabout mou and Ronaldo you will get my attention\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2312,\"friends_count\":3095,\"listed_count\":12,\"created_at\":\"Tue Dec 04 03:01:52 +0000 2012\",\"favourites_count\":21077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26516,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554725449787482112\\/YcnBFZa2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554725449787482112\\/YcnBFZa2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/987897642\\/1659510418\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4420\":{\"id\":932398437831774208,\"id_str\":\"932398437831774208\",\"name\":\"uncleolatv\",\"screen_name\":\"uncle3olafood\",\"location\":\"Lagos, Nigeria\",\"description\":\"Actor\\nyou can subscribe to my YouTube CHANNEL \\nhttps:\\/\\/t.co\\/PoaTv0EzyZ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PoaTv0EzyZ\",\"expanded_url\":\"http:\\/\\/youtube.com\\/uncleolatv\",\"display_url\":\"youtube.com\\/uncleolatv\",\"indices\":[47,70]}]}},\"protected\":false,\"followers_count\":226,\"friends_count\":948,\"listed_count\":0,\"created_at\":\"Mon Nov 20 00:01:25 +0000 2017\",\"favourites_count\":317,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546692679463059456\\/T2LaESTV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546692679463059456\\/T2LaESTV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932398437831774208\\/1652871729\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4421\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4422\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4423\":{\"id\":1087257244306231296,\"id_str\":\"1087257244306231296\",\"name\":\"Breeze Okoye\",\"screen_name\":\"breeze_okoye\",\"location\":\"Anambra, Nigeria\",\"description\":\"CHELSEA FC \\ud83d\\udc99\\ud83d\\udc99Ronaldo all day \\u2764\\ufe0f\\u2764\\ufe0f lover of African culture and also a karid entity \\ud83d\\udc49\\ud83c\\udffe\\ud83d\\udc48\\ud83c\\udffe lover of Peter OBi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":612,\"friends_count\":624,\"listed_count\":0,\"created_at\":\"Mon Jan 21 07:55:02 +0000 2019\",\"favourites_count\":78598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":644,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509089524411998212\\/Xiy9xCw1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509089524411998212\\/Xiy9xCw1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1087257244306231296\\/1551721042\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4424\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4425\":{\"id\":770821664250757124,\"id_str\":\"770821664250757124\",\"name\":\"Godswill Asuquo\",\"screen_name\":\"Gafexian_Zone\",\"location\":\"Nigeria\",\"description\":\"Pencil and biro Artist | Graphic designer | Architect | Chelsea FC | Lover of classical music | Deo ac veritati\",\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/gafexianzone\",\"display_url\":\"facebook.com\\/gafexianzone\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":591,\"listed_count\":0,\"created_at\":\"Wed Aug 31 03:13:00 +0000 2016\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4426\":{\"id\":1193618822726590464,\"id_str\":\"1193618822726590464\",\"name\":\"Ch\\u00e1mila J\",\"screen_name\":\"Queen_Chamila\",\"location\":\"Lagos, Nigeria\",\"description\":\"QUEEN\\ud83d\\udc51\\ud83c\\udfdd\\ufe0f|| Art lover||Aspiring model||Nature Photography||#WID||#Maraverse\",\"url\":\"https:\\/\\/t.co\\/zkwc61r5JA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zkwc61r5JA\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/queen_chamila\\/\",\"display_url\":\"instagram.com\\/queen_chamila\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":238,\"listed_count\":0,\"created_at\":\"Sun Nov 10 19:58:15 +0000 2019\",\"favourites_count\":262,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":87,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549043912525975561\\/QyHkDTmk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549043912525975561\\/QyHkDTmk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1193618822726590464\\/1658155984\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4427\":{\"id\":1337900128980639744,\"id_str\":\"1337900128980639744\",\"name\":\"Jbankz\",\"screen_name\":\"meetJbankz\",\"location\":\"Nigeria\",\"description\":\"|| Musician || Song Writer ||\\nThe New EP,\\n#ELEVATE\\n\\\"now out on all music streaming platforms\",\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"expanded_url\":\"https:\\/\\/orcd.co\\/jbankz-elevate\",\"display_url\":\"orcd.co\\/jbankz-elevate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":2276,\"listed_count\":1,\"created_at\":\"Sat Dec 12 23:20:37 +0000 2020\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337900128980639744\\/1616501762\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4428\":{\"id\":501666079,\"id_str\":\"501666079\",\"name\":\"lastofmykind \\ud83d\\udd1e\",\"screen_name\":\"Ugondabai\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2651 \\nE. S. S. E. N. T. R. I. C\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":574,\"friends_count\":332,\"listed_count\":3,\"created_at\":\"Fri Feb 24 10:55:22 +0000 2012\",\"favourites_count\":33273,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484676772843204610\\/bpKeolpA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484676772843204610\\/bpKeolpA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/501666079\\/1659705148\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4429\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6920,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4430\":{\"id\":1211809838243565570,\"id_str\":\"1211809838243565570\",\"name\":\"Wisdom Udo\",\"screen_name\":\"Wisdom_udoson\",\"location\":\"Lagos, Nigeria\",\"description\":\"Journalist \\ud83d\\udcccPR&Tech Enthusiast\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":69,\"listed_count\":0,\"created_at\":\"Tue Dec 31 00:42:54 +0000 2019\",\"favourites_count\":152,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":113,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316692101120303104\\/oEN4Avdz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316692101120303104\\/oEN4Avdz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1211809838243565570\\/1602758949\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4431\":{\"id\":964720776405508098,\"id_str\":\"964720776405508098\",\"name\":\"AsabariConsultativeCouncil\",\"screen_name\":\"Asabari_CC\",\"location\":\"Saki, Nigeria\",\"description\":\"Official Twitter handle, Asabari Consultative Council, Saki Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Sat Feb 17 04:38:51 +0000 2018\",\"favourites_count\":627,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":794,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/964722109141471232\\/9idv3Ito_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4432\":{\"id\":1361392900769255428,\"id_str\":\"1361392900769255428\",\"name\":\"CityScoopNews Gh\",\"screen_name\":\"Cityscoopgh\",\"location\":\"Ghana\",\"description\":\"welcome to City Scoop News Gh. we bring you the best of news across the world. please subscribe to our YouTube channel for more content. Thank you \\ud83d\\ude4f\",\"url\":\"https:\\/\\/t.co\\/up0JbkvYwm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/up0JbkvYwm\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCVS3zzLqmHwpw3S0Fa5_glQ\",\"display_url\":\"youtube.com\\/channel\\/UCVS3z\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":282,\"friends_count\":265,\"listed_count\":0,\"created_at\":\"Mon Feb 15 19:12:52 +0000 2021\",\"favourites_count\":1081,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":289,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527719586329673731\\/kHNTXKt__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527719586329673731\\/kHNTXKt__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1361392900769255428\\/1653312336\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4433\":{\"id\":272182927,\"id_str\":\"272182927\",\"name\":\"EMMATRILLION!!!, IF U NO BELIEVE REST.\",\"screen_name\":\"gifshizzle\",\"location\":\"Abuja\",\"description\":\"Data specialist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":562,\"friends_count\":695,\"listed_count\":0,\"created_at\":\"Sat Mar 26 00:36:10 +0000 2011\",\"favourites_count\":4337,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15895,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550961072819027968\\/E2QaFE8J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550961072819027968\\/E2QaFE8J_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4434\":{\"id\":1310558404117696512,\"id_str\":\"1310558404117696512\",\"name\":\"offkid\",\"screen_name\":\"offkidayo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Skul na scam crooner\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":102,\"listed_count\":0,\"created_at\":\"Mon Sep 28 12:34:21 +0000 2020\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":429,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488631623180595213\\/tNAnH9Bx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488631623180595213\\/tNAnH9Bx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1310558404117696512\\/1643752412\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4435\":{\"id\":1695778105,\"id_str\":\"1695778105\",\"name\":\"Tinubufrontier\",\"screen_name\":\"Tinubufrontier\",\"location\":\"NIGERIA\",\"description\":\"Towards The Actualization Of The Presidential Mandate Of Asiwaju Bola Ahmed Tinubu ll Retweet not an endorsement!!\",\"url\":\"https:\\/\\/t.co\\/1eDZ4240o3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1eDZ4240o3\",\"expanded_url\":\"http:\\/\\/www.apcyouthfrontierng.com\",\"display_url\":\"apcyouthfrontierng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27332,\"friends_count\":2457,\"listed_count\":39,\"created_at\":\"Sat Aug 24 06:46:06 +0000 2013\",\"favourites_count\":72875,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":59129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/474939940741332993\\/NwvxFiMZ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/474939940741332993\\/NwvxFiMZ_normal.jpeg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4436\":{\"id\":939476737628524544,\"id_str\":\"939476737628524544\",\"name\":\"#BBNAIJA #BreakingNews\",\"screen_name\":\"nnheadlines\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your source for entertainment news, politics, celebrities, sports, celeb news, #BreakingNews For adverts & promotions \\ud83d\\udc47info@nigeriannewsheadlines.com\",\"url\":\"https:\\/\\/t.co\\/zWLnfUrBAQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zWLnfUrBAQ\",\"expanded_url\":\"https:\\/\\/nigeriannewsheadlines.com\",\"display_url\":\"nigeriannewsheadlines.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2943,\"friends_count\":4765,\"listed_count\":8,\"created_at\":\"Sat Dec 09 12:48:03 +0000 2017\",\"favourites_count\":22570,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":109575,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524322272688889858\\/lQ5LsU5r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524322272688889858\\/lQ5LsU5r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/939476737628524544\\/1652450071\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4437\":{\"id\":1388772825905963011,\"id_str\":\"1388772825905963011\",\"name\":\"Black Diamond BLD\",\"screen_name\":\"BlackdiamondBLD\",\"location\":\"Nigeria\",\"description\":\"BLACKDIAMOND(BLD) just launched on pancakeswap 0xa49a87f02bc830fb3c4a8afd56d977171ec12553 let\\u2019s make it the next big thing join us https:\\/\\/t.co\\/klJjtKb7LZ\",\"url\":\"https:\\/\\/t.co\\/fOkSAL4v2p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fOkSAL4v2p\",\"expanded_url\":\"https:\\/\\/bldtoken.com\",\"display_url\":\"bldtoken.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/klJjtKb7LZ\",\"expanded_url\":\"https:\\/\\/t.me\\/BlackDiamondBLD\",\"display_url\":\"t.me\\/BlackDiamondBLD\",\"indices\":[131,154]}]}},\"protected\":false,\"followers_count\":344,\"friends_count\":409,\"listed_count\":25,\"created_at\":\"Sun May 02 08:30:31 +0000 2021\",\"favourites_count\":701,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":768,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1417063910511947779\\/uRh-1VaQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1417063910511947779\\/uRh-1VaQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1388772825905963011\\/1626689340\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4438\":{\"id\":956552583170142209,\"id_str\":\"956552583170142209\",\"name\":\"Jessy\",\"screen_name\":\"lastborn_jess\",\"location\":\"Lagos, Nigeria\",\"description\":\"Lover of good food\\ud83d\\ude0b and vibes\\/\\/MAN U\\u2763\\ufe0f\\/\\/NoStressZone\\/\\/Customer Service Executive\\/\\/Event Planner\\/\\/Lastborn\\/\\/IG:@sheisjessy \\/\\/VB: 1011896287\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":799,\"friends_count\":797,\"listed_count\":0,\"created_at\":\"Thu Jan 25 15:41:22 +0000 2018\",\"favourites_count\":11595,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1506750658157948929\\/WBcbf5YI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1506750658157948929\\/WBcbf5YI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/956552583170142209\\/1609541837\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4439\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4440\":{\"id\":1021863700838469633,\"id_str\":\"1021863700838469633\",\"name\":\"Hizbuzz\",\"screen_name\":\"xo_luxury_store\",\"location\":\"Lagos, Nigeria\",\"description\":\"Verified cloth dealer \\ud83d\\udd0c\\ud83c\\udf3c. We deal with all kind of clothes\\ud83d\\udc55, shoes\\ud83d\\udc5f\\ud83d\\udc5e, boxers, bags\\ud83c\\udf92, trousers, sun shade glasses\\ud83d\\udc53 Chelsea fc\\ud83d\\udc99 @mateokovacic8 fan\",\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FS6plZQy2A\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2348138512629\",\"display_url\":\"wa.me\\/+2348138512629\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":1160,\"listed_count\":0,\"created_at\":\"Tue Jul 24 21:04:26 +0000 2018\",\"favourites_count\":40839,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33102,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319585408955650048\\/vh-ZV3hM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1021863700838469633\\/1603448863\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4441\":{\"id\":1553286102538133511,\"id_str\":\"1553286102538133511\",\"name\":\"Swag\",\"screen_name\":\"Uma_zum\",\"location\":\"\",\"description\":\"Oneness\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Sat Jul 30 07:47:39 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":31,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553286446794031104\\/3GPiZxGE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553286446794031104\\/3GPiZxGE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553286102538133511\\/1659517814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4442\":{\"id\":700941667,\"id_str\":\"700941667\",\"name\":\"brandpower\",\"screen_name\":\"brandpowerng\",\"location\":\"Nigeria\",\"description\":\"The magazine that serves as an authentic platform for ideas, views, news on\\nbrand-critical issues\\ntopical national issues and\\nglobal developments\",\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NFj2BbLJF7\",\"expanded_url\":\"https:\\/\\/brandpowerng.com\\/\",\"display_url\":\"brandpowerng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":373,\"listed_count\":2,\"created_at\":\"Tue Jul 17 12:09:29 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480901180897124360\\/7zWmip9y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/700941667\\/1641909328\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4443\":{\"id\":1481189314226798593,\"id_str\":\"1481189314226798593\",\"name\":\"Priceless\",\"screen_name\":\"Priceless002\",\"location\":\"Lagos, Nigeria\",\"description\":\"Fun to be with and very naughty \\ud83d\\udc49\\ud83d\\udc4c\\ud83d\\udca6 \\ud83d\\ude1c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":80,\"friends_count\":108,\"listed_count\":8,\"created_at\":\"Wed Jan 12 09:00:50 +0000 2022\",\"favourites_count\":628,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":162,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553347102331256834\\/wFrE14uJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553347102331256834\\/wFrE14uJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481189314226798593\\/1642068548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4444\":{\"id\":1278287668938448899,\"id_str\":\"1278287668938448899\",\"name\":\"Stevie \\u2642\\ufe0f\",\"screen_name\":\"StEvIe_Alo\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm an ARTIST \\ud83c\\udfa8 @alo_stevie on I.g\\nI'm a PHOTOGRAPHER \\ud83d\\udcf8\\n@halography_ on Instagram\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":263,\"friends_count\":321,\"listed_count\":0,\"created_at\":\"Wed Jul 01 11:21:56 +0000 2020\",\"favourites_count\":15429,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6685,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540825044544274437\\/Bacp-jn0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1278287668938448899\\/1646841113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4445\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2659,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2062,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4446\":{\"id\":3187033583,\"id_str\":\"3187033583\",\"name\":\"Obet Of Africa\",\"screen_name\":\"obetobetta\",\"location\":\"Lagos\",\"description\":\"A political Scientist and Educationist\",\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/boSLxE9UOP\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/_obet_jr\\/\",\"display_url\":\"instagram.com\\/_obet_jr\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Mon Apr 20 12:32:05 +0000 2015\",\"favourites_count\":446,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":496,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1521525942300155909\\/xpD7914a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3187033583\\/1644142736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4447\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4448\":{\"id\":1157629744827043841,\"id_str\":\"1157629744827043841\",\"name\":\"Ay\\u1ecd\\u0300b\\u00e1mi\",\"screen_name\":\"theayobami_\",\"location\":\"Lagos\",\"description\":\"No Way Down\",\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/17DHebr0hq\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/theayobami_\",\"display_url\":\"linktr.ee\\/theayobami_\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":492,\"friends_count\":198,\"listed_count\":0,\"created_at\":\"Sat Aug 03 12:30:13 +0000 2019\",\"favourites_count\":1077,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":915,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1317552070057132038\\/4OhMPDzw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1157629744827043841\\/1658829676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4449\":{\"id\":810000148277301248,\"id_str\":\"810000148277301248\",\"name\":\"Tipcy J. . .\",\"screen_name\":\"Tipcy_Jaej\",\"location\":\"Nigeria\",\"description\":\"Beats by Jay\\n\\nPlease stream IF EP\\nhttps:\\/\\/t.co\\/VhEu1zNXuA\\n \\nhttps:\\/\\/t.co\\/U8J44H57AN\",\"url\":\"https:\\/\\/t.co\\/WsZ6sELp8v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WsZ6sELp8v\",\"expanded_url\":\"https:\\/\\/soundcloud.com\\/user-505499138\",\"display_url\":\"soundcloud.com\\/user-505499138\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VhEu1zNXuA\",\"expanded_url\":\"https:\\/\\/youtube.com\\/playlist?list=OLAK5uy_mhpJvdLKGLwgjZl5wO_9CQfmFL8qldJ3s\",\"display_url\":\"youtube.com\\/playlist?list=\\u2026\",\"indices\":[34,57]},{\"url\":\"https:\\/\\/t.co\\/U8J44H57AN\",\"expanded_url\":\"http:\\/\\/tipcyjaej.fanlink.to\\/gM7W\",\"display_url\":\"tipcyjaej.fanlink.to\\/gM7W\",\"indices\":[60,83]}]}},\"protected\":false,\"followers_count\":1018,\"friends_count\":1009,\"listed_count\":1,\"created_at\":\"Sat Dec 17 05:54:19 +0000 2016\",\"favourites_count\":24385,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20912,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1485490254509400066\\/UfbWR00O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1485490254509400066\\/UfbWR00O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/810000148277301248\\/1643003533\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4450\":{\"id\":1517237838210904065,\"id_str\":\"1517237838210904065\",\"name\":\"ANIK\\u00a3\\ud83e\\udd70\\u2665\\ufe0f\",\"screen_name\":\"Anike_olofada\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":158,\"listed_count\":0,\"created_at\":\"Thu Apr 21 20:24:54 +0000 2022\",\"favourites_count\":474,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517241409308348418\\/60s1x9yp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517241409308348418\\/60s1x9yp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4451\":{\"id\":4249227737,\"id_str\":\"4249227737\",\"name\":\"Richman onuche\",\"screen_name\":\"Richmanonuche1\",\"location\":\"Abuja\",\"description\":\"A man with few words.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":248,\"listed_count\":2,\"created_at\":\"Sun Nov 22 11:32:25 +0000 2015\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":187,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1198941396612370432\\/D82WMyrU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1198941396612370432\\/D82WMyrU_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4452\":{\"id\":1167538860,\"id_str\":\"1167538860\",\"name\":\"\\ud835\\udc04\\ud835\\udc26\\ud835\\udc29\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2f\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2c\",\"screen_name\":\"Emperor_vibes0\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec\\ud835\\udc16\\ud835\\udc21\\ud835\\udc1a\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc2f\\ud835\\udc1e\\ud835\\udc2b \\ud835\\udc32\\ud835\\udc28\\ud835\\udc2e \\ud835\\udc1d\\ud835\\udc28, \\ud835\\udc00\\ud835\\udc22\\ud835\\udc26 \\ud835\\udc07\\ud835\\udc08\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\ud83d\\udcab \\ud83d\\ude02 \\ud835\\udc15\\ud835\\udc22\\ud835\\udc1b\\ud835\\udc1e\\ud835\\udc2b\\ud835\\udc22\\ud835\\udc1a\\ud835\\udc27\\u2728\\ud83c\\udf43 \\ud835\\udc0f\\ud835\\udc1a\\ud835\\udc2c\\ud835\\udc2d\\ud835\\udc28\\ud835\\udc2b \\ud835\\udc2d\\ud835\\udc21\\ud835\\udc1e\\ud835\\udc28 \\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":223,\"friends_count\":156,\"listed_count\":0,\"created_at\":\"Mon Feb 11 01:59:56 +0000 2013\",\"favourites_count\":352,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543185917371973634\\/bLyp2_dg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167538860\\/1659127987\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4453\":{\"id\":1946861028,\"id_str\":\"1946861028\",\"name\":\"Truelover\",\"screen_name\":\"Sun_xit\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"let's play along \\ud83c\\udfd6\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":200,\"listed_count\":0,\"created_at\":\"Tue Oct 08 13:20:26 +0000 2013\",\"favourites_count\":359,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":375,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1374423466271600646\\/SCsnrslE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1374423466271600646\\/SCsnrslE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1946861028\\/1616646082\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4454\":{\"id\":4834659045,\"id_str\":\"4834659045\",\"name\":\"IT NEWS NIGERIA\",\"screen_name\":\"itnewsnigeria1\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT NEWS NIGERIA is a digital news platform promoting businesses, innovation, Fintechs, and start-ups. \\nThe future is online...\",\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"expanded_url\":\"https:\\/\\/www.itnewsnigeria.ng\",\"display_url\":\"itnewsnigeria.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1001,\"friends_count\":4713,\"listed_count\":5,\"created_at\":\"Fri Jan 22 09:39:04 +0000 2016\",\"favourites_count\":830,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4834659045\\/1489702799\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4455\":{\"id\":1356251183980142596,\"id_str\":\"1356251183980142596\",\"name\":\"Rentic\",\"screen_name\":\"myrentic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Accommodations: (shortlets, roommates, flatmates, co-working spaces & more).\\n#Experiences: (Tours, massages, getaways, boat rides & more).\",\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"expanded_url\":\"https:\\/\\/rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Mon Feb 01 14:41:11 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356251183980142596\\/1612290624\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4456\":{\"id\":1262762986235498496,\"id_str\":\"1262762986235498496\",\"name\":\"Justin Ekwueme 1 of Enugu\",\"screen_name\":\"_BigJustin_\",\"location\":\"Enugu, Nigeria\",\"description\":\"Social media Marketing || Brand Strategy || Jesus is the way || Outsider \\ud83e\\udd8d|| Bilingual \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddee\\ud83c\\uddf9 Co-founder @_creatorsmedia Editor @enugu_gram\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":271,\"friends_count\":635,\"listed_count\":0,\"created_at\":\"Tue May 19 15:12:22 +0000 2020\",\"favourites_count\":6291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1623,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546962396639596546\\/iCkOVUfz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546962396639596546\\/iCkOVUfz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1262762986235498496\\/1649675308\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4457\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4458\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4459\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4460\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4461\":{\"id\":1534961510799265805,\"id_str\":\"1534961510799265805\",\"name\":\"AUTHORISED GADGETS\",\"screen_name\":\"TAG_authorised\",\"location\":\"Ikeja, Nigeria\",\"description\":\"iBUY- iSELL -iSWAP - I\\u2019myour PLUG \\ud83d\\udd0c-NATIONWIDE DELIVERY \\ud83d\\ude9a \\ud83d\\udce6 NO1GADGETPLUG. Instagram: TAG_pc\\u2026WhatsApp link below \\ud83d\\udc47\\ud83c\\udffd\",\"url\":\"https:\\/\\/t.co\\/sJ9EXB1dWU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sJ9EXB1dWU\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/7UAYELNBXLIOO1\",\"display_url\":\"wa.me\\/message\\/7UAYEL\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":278,\"friends_count\":112,\"listed_count\":0,\"created_at\":\"Thu Jun 09 18:12:11 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":104,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544979138494304256\\/FDTfOk1Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544979138494304256\\/FDTfOk1Z_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4462\":{\"id\":4874105633,\"id_str\":\"4874105633\",\"name\":\"Morzit Services Ltd\",\"screen_name\":\"morzitservices\",\"location\":\"Lagos, Nigeria\",\"description\":\"We sell, repair and service Hospital equipments anywhere in Africa. #LIMS #HIMS #Tpaas https:\\/\\/t.co\\/44Cr5teuQh\\n\\nservices@morzit.com\",\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ESn6CAO8CL\",\"expanded_url\":\"http:\\/\\/www.morzit.com\",\"display_url\":\"morzit.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/44Cr5teuQh\",\"expanded_url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=2348084745350\",\"display_url\":\"api.whatsapp.com\\/send?phone=234\\u2026\",\"indices\":[88,111]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Feb 03 14:59:02 +0000 2016\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":708,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1423176956590399498\\/miXBSxPL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4874105633\\/1493839046\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4463\":{\"id\":853674103324246017,\"id_str\":\"853674103324246017\",\"name\":\"Lucasdusky\",\"screen_name\":\"LukeKyauta\",\"location\":\"Nigeria,Abuja\",\"description\":\"Skit maker, and Content creator, Graphic Designer,\",\"url\":\"https:\\/\\/t.co\\/mLp4YBsi4S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mLp4YBsi4S\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCX2sTToCRFfs0KCyWZtYUhg\",\"display_url\":\"youtube.com\\/channel\\/UCX2sT\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":232,\"friends_count\":228,\"listed_count\":0,\"created_at\":\"Sun Apr 16 18:19:01 +0000 2017\",\"favourites_count\":1797,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482395328154423296\\/A09iQKo7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482395328154423296\\/A09iQKo7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/853674103324246017\\/1642265629\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4464\":{\"id\":862421804547289094,\"id_str\":\"862421804547289094\",\"name\":\"twelvebeatz_producer\",\"screen_name\":\"12_beatz\",\"location\":\"Lagos, Nigeria\",\"description\":\"i am a producer and i love meeting people, and i want to introduce African music to the world\\ninstagram - twelvebeatz_producer\\n\\nbookings - josephtoyosi2014@gmai\",\"url\":\"https:\\/\\/t.co\\/dmPuqQ2mf0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dmPuqQ2mf0\",\"expanded_url\":\"https:\\/\\/soundcloud.com\\/joseph-toyosi\\/12beatz-x-sade-sade-mi-mr-eazi-x-sarkodie-x-runtown-type-beat-2\",\"display_url\":\"soundcloud.com\\/joseph-toyosi\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":319,\"friends_count\":1264,\"listed_count\":0,\"created_at\":\"Wed May 10 21:39:16 +0000 2017\",\"favourites_count\":616,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1766,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526829244097122305\\/v80ep0YC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526829244097122305\\/v80ep0YC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/862421804547289094\\/1568135180\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4465\":{\"id\":1507395243880202241,\"id_str\":\"1507395243880202241\",\"name\":\"Daniel Orakwue\",\"screen_name\":\"daniel_orakwue\",\"location\":\"Lagos, Nigeria\",\"description\":\"Sales & Marketing (My journey). I recommend digital products that are guaranteed to help you financially. My pinned tweet will change your life; read through!\",\"url\":\"https:\\/\\/t.co\\/DAfk8D9tBi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DAfk8D9tBi\",\"expanded_url\":\"https:\\/\\/tinyurl.com\\/msc8ttwx\",\"display_url\":\"tinyurl.com\\/msc8ttwx\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":306,\"listed_count\":0,\"created_at\":\"Fri Mar 25 16:33:50 +0000 2022\",\"favourites_count\":5212,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":866,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517647344799559682\\/FCZWXMVG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517647344799559682\\/FCZWXMVG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1507395243880202241\\/1648227338\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4466\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4467\":{\"id\":1390622632832376833,\"id_str\":\"1390622632832376833\",\"name\":\"AmandaMalls\",\"screen_name\":\"amanda_malls\",\"location\":\"Port Harcourt\",\"description\":\"E-commerce mall for all your basic needs.\\nLocated in the heart of Port Harcourt, Online shopping made easy\\n#Shopnow\",\"url\":\"https:\\/\\/t.co\\/ncGDpjx4Of\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ncGDpjx4Of\",\"expanded_url\":\"http:\\/\\/www.amandamalls.com\",\"display_url\":\"amandamalls.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Fri May 07 11:01:00 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554448243278467073\\/ZUkeuYJn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554448243278467073\\/ZUkeuYJn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1390622632832376833\\/1621848100\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4468\":{\"id\":1484059968512868352,\"id_str\":\"1484059968512868352\",\"name\":\"SUCDRI NIG LTD\",\"screen_name\":\"sucdri\",\"location\":\"Ogun State\",\"description\":\"SDNL is an IT firm. We specialize in domain & web hosting services, website & mobile app development as well as graphics design and capacity building.\",\"url\":\"https:\\/\\/t.co\\/VkI5qQ5aFw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VkI5qQ5aFw\",\"expanded_url\":\"https:\\/\\/sdnl.com.ng\",\"display_url\":\"sdnl.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Thu Jan 20 07:07:54 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1484061469931192322\\/isBW9x30_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1484061469931192322\\/isBW9x30_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484059968512868352\\/1642682945\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4469\":{\"id\":899378243576483842,\"id_str\":\"899378243576483842\",\"name\":\"Funny_king122\",\"screen_name\":\"Aji__bade\",\"location\":\"Osun, Nigeria\",\"description\":\"Pure and applied chemistry, LAUTECH\\niDesign|| aFFiliate marketer|| Man Utd fan|| pure chemist|| Clickfunnel expert||\\u270c\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":216,\"listed_count\":0,\"created_at\":\"Sun Aug 20 21:10:57 +0000 2017\",\"favourites_count\":719,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481531135188426752\\/RBPJtqmW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481531135188426752\\/RBPJtqmW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/899378243576483842\\/1642059523\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4470\":{\"id\":1553476310311247875,\"id_str\":\"1553476310311247875\",\"name\":\"Monalis-ng\",\"screen_name\":\"MonalisNg\",\"location\":\"Uyo, Nigeria\",\"description\":\"Lifestyle, Beauty & fashion\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Sat Jul 30 20:23:36 +0000 2022\",\"favourites_count\":10,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553484886098542592\\/PAdOoGGh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553484886098542592\\/PAdOoGGh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553476310311247875\\/1659214701\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4471\":{\"id\":1198015707277152258,\"id_str\":\"1198015707277152258\",\"name\":\"Patson Luxury Homes!!!\",\"screen_name\":\"MrJayPappy1\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Port Harcourt Realtor, Business Dev, Interior Deco.. Chelsea FC fan ... Good music stan. trying to grow my 4th account so FB too, 3 suspended\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2293,\"friends_count\":2390,\"listed_count\":1,\"created_at\":\"Fri Nov 22 23:10:17 +0000 2019\",\"favourites_count\":4754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4536,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1198015707277152258\\/1655451393\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4472\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4473\":{\"id\":999980858986680320,\"id_str\":\"999980858986680320\",\"name\":\"prince aso\",\"screen_name\":\"Princeaso_\",\"location\":\"Lagos , Nigeria\",\"description\":\"Musician\\/comedian \\/ Content creator\\/ Graphics Designer\\/ Business Tycoon.\\nFor Booking: princeasomusic@gmail.com\\nInstagram @princeaso_\",\"url\":\"https:\\/\\/t.co\\/AMD1Qmt4GY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AMD1Qmt4GY\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/princeaso\\/song\\/pray-for-nigeria\",\"display_url\":\"audiomack.com\\/princeaso\\/song\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":976,\"friends_count\":1878,\"listed_count\":9,\"created_at\":\"Fri May 25 11:49:50 +0000 2018\",\"favourites_count\":11916,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493632902176854025\\/VEZzqYWf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493632902176854025\\/VEZzqYWf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/999980858986680320\\/1629286768\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4474\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4475\":{\"id\":1519874014084308992,\"id_str\":\"1519874014084308992\",\"name\":\"Movie Hack\",\"screen_name\":\"Movie__Hack\",\"location\":\"Ghana\",\"description\":\"Everything about Movies\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":212,\"friends_count\":39,\"listed_count\":0,\"created_at\":\"Fri Apr 29 03:01:03 +0000 2022\",\"favourites_count\":199,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":169,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519876228035055616\\/v1peeJtK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519876228035055616\\/v1peeJtK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1519874014084308992\\/1651201797\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4476\":{\"id\":1524304915308466176,\"id_str\":\"1524304915308466176\",\"name\":\"Obi Chidiebere\",\"screen_name\":\"Chidi_Africa\",\"location\":\"Nigeria\",\"description\":\"I am Afrikan that Love Afrikaans \\ud83c\\uddff\\ud83c\\uddfc\\ud83c\\uddff\\ud83c\\uddf2\\ud83c\\uddfa\\ud83c\\uddec\\ud83c\\uddf9\\ud83c\\uddf3\\ud83c\\uddf9\\ud83c\\uddec\\ud83c\\uddf9\\ud83c\\uddff\\ud83c\\uddf8\\ud83c\\udde9\\ud83c\\uddf8\\ud83c\\uddf8\\ud83c\\uddff\\ud83c\\udde6\\ud83c\\uddf8\\ud83c\\uddf4\\ud83c\\uddf8\\ud83c\\udde8\\ud83c\\uddf8\\ud83c\\uddf3\\ud83c\\uddf8\\ud83c\\uddf9\\ud83c\\uddf7\\ud83c\\uddfc\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddea\\ud83c\\uddf3\\ud83c\\udde6 \\ud83c\\uddf2\\ud83c\\uddff\\ud83c\\uddf2\\ud83c\\udde6 \\ud83c\\uddf2\\ud83c\\uddfa\\ud83c\\uddf2\\ud83c\\uddf7\\ud83c\\uddf2\\ud83c\\uddf1\\ud83c\\uddf2\\ud83c\\uddfc\\ud83c\\uddf2\\ud83c\\uddec\\ud83c\\uddf1\\ud83c\\uddfe\\ud83c\\uddf1\\ud83c\\uddf7\\ud83c\\uddf1\\ud83c\\uddf8\\ud83c\\uddf0\\ud83c\\uddea\\ud83c\\uddec\\ud83c\\uddfc\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddec\\ud83c\\uddf2\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":149,\"listed_count\":0,\"created_at\":\"Wed May 11 08:26:44 +0000 2022\",\"favourites_count\":841,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":827,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544954440049909760\\/WrSZg87Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544954440049909760\\/WrSZg87Q_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4477\":{\"id\":1315605826279813121,\"id_str\":\"1315605826279813121\",\"name\":\"CSR REPORTERS\",\"screen_name\":\"CsrReporters\",\"location\":\"Lagos, Nigeria\",\"description\":\"Nigeria's No.1 CSR&S publication. \\n\\nWe analyse, review and report all CSR and Sustainability acts of organizations and well-meaning individuals across Africa.\",\"url\":\"https:\\/\\/t.co\\/G4CUZCx8vC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/G4CUZCx8vC\",\"expanded_url\":\"http:\\/\\/www.csrreporters.com\",\"display_url\":\"csrreporters.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":186,\"listed_count\":0,\"created_at\":\"Mon Oct 12 10:51:07 +0000 2020\",\"favourites_count\":67,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1629,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544986892353019904\\/hu868jJz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544986892353019904\\/hu868jJz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1315605826279813121\\/1657188520\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4478\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4479\":{\"id\":1544831266029182977,\"id_str\":\"1544831266029182977\",\"name\":\"thequeenhelenbrand\",\"screen_name\":\"thequeenhelen1\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Affordable ||Classy||Stylish prices\\ud83d\\udc9c\\ud83e\\udd0d\\ud83d\\udc9c\\ud83e\\udd0dmade to wear and with love\\ud83d\\ude48\\ud83e\\udd0d\",\"url\":\"https:\\/\\/t.co\\/ISVeusRYvO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ISVeusRYvO\",\"expanded_url\":\"https:\\/\\/thequeenhelenbrand.bumpa.shop\",\"display_url\":\"thequeenhelenbrand.bumpa.shop\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":51,\"listed_count\":0,\"created_at\":\"Wed Jul 06 23:51:03 +0000 2022\",\"favourites_count\":113,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":106,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544832356674052098\\/yh7SjRaI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544832356674052098\\/yh7SjRaI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544831266029182977\\/1659624547\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4480\":{\"id\":1522893464458997762,\"id_str\":\"1522893464458997762\",\"name\":\"BAMJ TV\\ud83d\\udcfa\",\"screen_name\":\"bamj_tv\",\"location\":\"Nigeria\",\"description\":\"~~Entertainment~\\n~Content creator~\\n~Funny memes ~\\n~Football~ \\nFollow us on\\nIG: @Bamj_Tv\\nFB:@Bamj Tv\\nTikTok:@bamj_tv\\nSend Hi to use on WhatsApp 09131256531\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":239,\"listed_count\":0,\"created_at\":\"Sat May 07 10:58:15 +0000 2022\",\"favourites_count\":457,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":209,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550585986509307909\\/f1ZCgWxF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550585986509307909\\/f1ZCgWxF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522893464458997762\\/1654611904\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4481\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4482\":{\"id\":1469882952490401796,\"id_str\":\"1469882952490401796\",\"name\":\"Sunday U.\",\"screen_name\":\"Evereztt\",\"location\":\"\",\"description\":\"UI\\/UX Designer | Brand Identity Designer \\n\\n.\\n.\\n\\n . \\ud83d\\udce9\\u260e\\ufe0f+2349034640238\",\"url\":\"https:\\/\\/t.co\\/VtAFgqQr6Z\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VtAFgqQr6Z\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~01c2f5b3859c10dff8\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57,\"friends_count\":76,\"listed_count\":1,\"created_at\":\"Sun Dec 12 04:13:10 +0000 2021\",\"favourites_count\":723,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554761367760019457\\/VTCJGnel_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554761367760019457\\/VTCJGnel_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1469882952490401796\\/1659524491\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4483\":{\"id\":1498183392214532097,\"id_str\":\"1498183392214532097\",\"name\":\"Bari700\",\"screen_name\":\"Bari7007\",\"location\":\"Abuja, Nigeria \",\"description\":\"A Sports Animal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Mon Feb 28 06:29:10 +0000 2022\",\"favourites_count\":9373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498183392214532097\\/1646030690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4484\":{\"id\":1310421467696422912,\"id_str\":\"1310421467696422912\",\"name\":\"Chuks.Copn\",\"screen_name\":\"ChuksCopn\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hardships often prepare ordinary people for an extraordinary destiny.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":250,\"listed_count\":0,\"created_at\":\"Mon Sep 28 03:30:27 +0000 2020\",\"favourites_count\":897,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535914305966702593\\/ndwcGHjg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535914305966702593\\/ndwcGHjg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1310421467696422912\\/1655025602\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4485\":{\"id\":1428008881,\"id_str\":\"1428008881\",\"name\":\"Adoga Michael Oyi\",\"screen_name\":\"AdogaMikeOyi\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Marketer| Biochemist | Blogger| Peace Maker| Social Media Influencer| Policy Analyst| Die-hard @ChelseaFC supporter\",\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"expanded_url\":\"https:\\/\\/www.theeaglesvoice.com\",\"display_url\":\"theeaglesvoice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1204,\"friends_count\":1621,\"listed_count\":1,\"created_at\":\"Tue May 14 14:24:33 +0000 2013\",\"favourites_count\":12327,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1428008881\\/1617307325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4486\":{\"id\":1428008881,\"id_str\":\"1428008881\",\"name\":\"Adoga Michael Oyi\",\"screen_name\":\"AdogaMikeOyi\",\"location\":\"Abuja, Nigeria\",\"description\":\"Digital Marketer| Biochemist | Blogger| Peace Maker| Social Media Influencer| Policy Analyst| Die-hard @ChelseaFC supporter\",\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n2b0b0ULrD\",\"expanded_url\":\"https:\\/\\/www.theeaglesvoice.com\",\"display_url\":\"theeaglesvoice.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1204,\"friends_count\":1621,\"listed_count\":1,\"created_at\":\"Tue May 14 14:24:33 +0000 2013\",\"favourites_count\":12327,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7074,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1421012027108102144\\/Lsrf5YGx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1428008881\\/1617307325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4487\":{\"id\":1514295106349805571,\"id_str\":\"1514295106349805571\",\"name\":\"Phyna\",\"screen_name\":\"Phicoco1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Thespian, interior designer, skincare therapist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:31:32 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541382547430588416\\/x0g-dkmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541382547430588416\\/x0g-dkmp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4488\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4489\":{\"id\":1498183392214532097,\"id_str\":\"1498183392214532097\",\"name\":\"Bari700\",\"screen_name\":\"Bari7007\",\"location\":\"Abuja, Nigeria \",\"description\":\"A Sports Animal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":371,\"listed_count\":0,\"created_at\":\"Mon Feb 28 06:29:10 +0000 2022\",\"favourites_count\":9373,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9562,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537326214628655104\\/-mG3aB1P_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498183392214532097\\/1646030690\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4490\":{\"id\":1537548195332513792,\"id_str\":\"1537548195332513792\",\"name\":\"Emmanuel Abuhson\",\"screen_name\":\"emmanuelabuhson\",\"location\":\"Kogi, Nigeria\",\"description\":\"Diffusion of Innovation Strategist, Media Facilitator and Agroprenuer with over a decade work experience in Agribusiness and Business Development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Thu Jun 16 21:30:42 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537548195332513792\\/1655475965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4491\":{\"id\":1501907565248143365,\"id_str\":\"1501907565248143365\",\"name\":\"Stephen T. Quartzz\",\"screen_name\":\"StephenQuartzz\",\"location\":\"Nigeria\",\"description\":\"\\ud83e\\udd70\\ud83c\\udf89\\ud83d\\udcaf\\ud83d\\udcda\\ud83e\\udd2f\",\"url\":\"https:\\/\\/t.co\\/n3K6zq6Omg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n3K6zq6Omg\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~01ae9dcb069921269f\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":155,\"friends_count\":190,\"listed_count\":0,\"created_at\":\"Thu Mar 10 13:08:11 +0000 2022\",\"favourites_count\":6139,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":192,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536544799305699328\\/eq_OYirX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536544799305699328\\/eq_OYirX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501907565248143365\\/1646919175\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4492\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4493\":{\"id\":2217165422,\"id_str\":\"2217165422\",\"name\":\"John's_lay couture\\ud83d\\udc8e\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"Johnslaycouture\",\"location\":\"Nigeria\",\"description\":\"First Born. \\nResponsibility's plenty... NATION WIDE DELIVERY AVAILABLE \\ud83d\\udcaf\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":843,\"friends_count\":706,\"listed_count\":0,\"created_at\":\"Wed Nov 27 04:39:34 +0000 2013\",\"favourites_count\":36562,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8042,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554570006582755333\\/WARZuayF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554570006582755333\\/WARZuayF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2217165422\\/1653996203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4494\":{\"id\":1490461671256645632,\"id_str\":\"1490461671256645632\",\"name\":\"Maazi Nelly\\ud83d\\ude0d\",\"screen_name\":\"EdwinNelly5\",\"location\":\"Gwarimpa, Abuja. \",\"description\":\"Wait a minute....... Okay I'm just staying focus. A young Doc. from the East\\ud83d\\udc93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":464,\"listed_count\":0,\"created_at\":\"Sun Feb 06 23:05:51 +0000 2022\",\"favourites_count\":2839,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":372,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539079992394620928\\/l9JnzJnz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539079992394620928\\/l9JnzJnz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490461671256645632\\/1659520455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4495\":{\"id\":1498420205554483204,\"id_str\":\"1498420205554483204\",\"name\":\"Mr Myke M\\ud83d\\udc99\",\"screen_name\":\"mrmyke_1\",\"location\":\"Aba, Nigeria\",\"description\":\"crypto king\\n\\nI sell South African Somerset wine and we create perfume #fragrance .\",\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"expanded_url\":\"http:\\/\\/athena-stores.business.site\",\"display_url\":\"athena-stores.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Mon Feb 28 22:10:13 +0000 2022\",\"favourites_count\":137,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498420205554483204\\/1646392456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4496\":{\"id\":1317768210419245056,\"id_str\":\"1317768210419245056\",\"name\":\"Koliwill\",\"screen_name\":\"Koliwill1\",\"location\":\"Lekki, Nigeria\",\"description\":\"#TheCough my up coming EP\",\"url\":\"https:\\/\\/t.co\\/83bq0z1J0D\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/83bq0z1J0D\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC5oYraA7TeP4qwAGao5wETQ\",\"display_url\":\"youtube.com\\/channel\\/UC5oYr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Sun Oct 18 10:03:39 +0000 2020\",\"favourites_count\":1498,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":602,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554484142477385728\\/iZMSKvdU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554484142477385728\\/iZMSKvdU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317768210419245056\\/1659463685\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4497\":{\"id\":1273869568541437953,\"id_str\":\"1273869568541437953\",\"name\":\"ms_lateefa\",\"screen_name\":\"tees_essentials\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":49,\"listed_count\":0,\"created_at\":\"Fri Jun 19 06:46:13 +0000 2020\",\"favourites_count\":104,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1327560471248056329\\/wnGeWdn0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1327560471248056329\\/wnGeWdn0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1273869568541437953\\/1612873033\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4498\":{\"id\":1269357840,\"id_str\":\"1269357840\",\"name\":\"Alawiye Motivation\",\"screen_name\":\"NURUDEENSALMON\",\"location\":\"lagos,Nigeria\",\"description\":\"Writer, speaker, program facilitator, educational consultant. \\n(I am a Volunteer for Humanity)\",\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bzXInNhQq1\",\"expanded_url\":\"http:\\/\\/alawiyeweb.blogspot.com\",\"display_url\":\"alawiyeweb.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":75,\"friends_count\":189,\"listed_count\":1,\"created_at\":\"Fri Mar 15 10:17:31 +0000 2013\",\"favourites_count\":773,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1096,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492769369155375106\\/S0buMvIS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269357840\\/1654454936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4499\":{\"id\":1044856596185186306,\"id_str\":\"1044856596185186306\",\"name\":\"Defi_CMSK\",\"screen_name\":\"CmskEmmanuel\",\"location\":\"Nigeria\",\"description\":\"Priest | Technical Analyst | Crypto enthusiast | Man United fan\\ud83d\\udd34\\ud83d\\udd34 | All Tech related | Crypto Ambassador | visual content Developer\",\"url\":\"https:\\/\\/t.co\\/5yjRJx2m6i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5yjRJx2m6i\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/Cmskphotography\",\"display_url\":\"facebook.com\\/Cmskphotography\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":129,\"friends_count\":365,\"listed_count\":5,\"created_at\":\"Wed Sep 26 07:49:59 +0000 2018\",\"favourites_count\":370,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":238,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555791018938830849\\/DYYS5CT1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555791018938830849\\/DYYS5CT1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1044856596185186306\\/1659658462\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4500\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4501\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4502\":{\"id\":1005630848,\"id_str\":\"1005630848\",\"name\":\"#NewNigeria\",\"screen_name\":\"truth_propagate\",\"location\":\"Maiduguri, Nigeria\",\"description\":\"Nigerian Youth for #RevolutionNigeria #2023Elections #GoodGovernance #NigeriaReform #YouthDemocracy #YouthInPower #GreatNigeria #ICT4Youth2023 #YouthRights\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":191,\"listed_count\":0,\"created_at\":\"Wed Dec 12 05:17:28 +0000 2012\",\"favourites_count\":310,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1436,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530424620389646337\\/eJdh713G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530424620389646337\\/eJdh713G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1005630848\\/1603582237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4503\":{\"id\":1027089048135983104,\"id_str\":\"1027089048135983104\",\"name\":\"Benita Ani\",\"screen_name\":\"benita_ani\",\"location\":\"Nigeria\",\"description\":\"Insurer,\\nBiz:benny's silkykola\\nSend a dm if u need Gorontular\\/sillykola\\nAugust 1st\\ud83c\\udf82\\nStudied @unijos\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":165,\"friends_count\":227,\"listed_count\":0,\"created_at\":\"Wed Aug 08 07:08:06 +0000 2018\",\"favourites_count\":799,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":283,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1340172413133328384\\/GtQCp0Zj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1340172413133328384\\/GtQCp0Zj_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4504\":{\"id\":2969294343,\"id_str\":\"2969294343\",\"name\":\"Disturbing_Art_Official\",\"screen_name\":\"egodfred31\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Graphics_Designer#Expert_In_Desktop_Publishing#Artist#Musician(GetAffordableCartoon Animation@09093869126)followme on instagram @ElijahGodfred.Fb@ElijahGodfred\",\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EpumuQ1faM\",\"expanded_url\":\"http:\\/\\/t.me\\/DisturbingArt\",\"display_url\":\"t.me\\/DisturbingArt\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":340,\"friends_count\":94,\"listed_count\":2,\"created_at\":\"Fri Jan 09 07:20:21 +0000 2015\",\"favourites_count\":371,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1295,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542482836808163333\\/3rVE345t_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2969294343\\/1656591540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4505\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4506\":{\"id\":990733765860347904,\"id_str\":\"990733765860347904\",\"name\":\"Susan Bukola Akande\",\"screen_name\":\"akande_susan_b\",\"location\":\"Ilorin, Nigeria\",\"description\":\"Jesus Christ Addict.\\nRoyalty.\\nWorld Shaker.\\n#MinisterForSoupAffairs\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":83,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Sun Apr 29 23:25:11 +0000 2018\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":123,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/990768964363055104\\/Do3dzrIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/990768964363055104\\/Do3dzrIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/990733765860347904\\/1659526585\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4507\":{\"id\":446395044,\"id_str\":\"446395044\",\"name\":\"K2\",\"screen_name\":\"k2bydway\",\"location\":\"Lagos state\",\"description\":\"Independent Recording Artist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":124,\"friends_count\":1005,\"listed_count\":0,\"created_at\":\"Sun Dec 25 17:30:26 +0000 2011\",\"favourites_count\":500,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554955996015083523\\/DRSu8RXs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/446395044\\/1659375735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4508\":{\"id\":1238410343195574273,\"id_str\":\"1238410343195574273\",\"name\":\"John Mozizy\",\"screen_name\":\"JohnMozizy\",\"location\":\"Benin-City, Nigeria\",\"description\":\"@Afro-pop music \\nupcoming artist\\nlooking 4 a record label deal follow I follow back\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":262,\"friends_count\":161,\"listed_count\":0,\"created_at\":\"Fri Mar 13 10:24:09 +0000 2020\",\"favourites_count\":1691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512883056541114371\\/88MhwONI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238410343195574273\\/1584633355\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4509\":{\"id\":287750449,\"id_str\":\"287750449\",\"name\":\"Ibanga Isine\",\"screen_name\":\"Ibykul\",\"location\":\"Abuja-Nigeria\",\"description\":\"Multiple-award winning investigative journalist, teacher, activist. CNN MultiChoice African Journalist Award, 2015. Wole Soyinka Investigative Reporter 2019.\",\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"expanded_url\":\"http:\\/\\/guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2894,\"friends_count\":882,\"listed_count\":19,\"created_at\":\"Mon Apr 25 16:18:12 +0000 2011\",\"favourites_count\":494,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2492,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4510\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4511\":{\"id\":287750449,\"id_str\":\"287750449\",\"name\":\"Ibanga Isine\",\"screen_name\":\"Ibykul\",\"location\":\"Abuja-Nigeria\",\"description\":\"Multiple-award winning investigative journalist, teacher, activist. CNN MultiChoice African Journalist Award, 2015. Wole Soyinka Investigative Reporter 2019.\",\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JrWf94h02U\",\"expanded_url\":\"http:\\/\\/guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2894,\"friends_count\":882,\"listed_count\":19,\"created_at\":\"Mon Apr 25 16:18:12 +0000 2011\",\"favourites_count\":494,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2492,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553361326906417153\\/KSx5SAyo_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4512\":{\"id\":1208046199409979392,\"id_str\":\"1208046199409979392\",\"name\":\"Osehobo\",\"screen_name\":\"DonOsehobo\",\"location\":\"Benin-City, Nigeria\",\"description\":\"#Publicist\\n#Blogger\\n#Contentdeveloper \\n#JournalismResearcher\",\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3v92D2pSib\",\"expanded_url\":\"http:\\/\\/www.agbakablog.com\",\"display_url\":\"agbakablog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":931,\"friends_count\":2787,\"listed_count\":0,\"created_at\":\"Fri Dec 20 15:27:29 +0000 2019\",\"favourites_count\":2412,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5754,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322935238025187328\\/vxvDooth_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1208046199409979392\\/1656251324\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4513\":{\"id\":1549638837877575680,\"id_str\":\"1549638837877575680\",\"name\":\"Ema Bms\",\"screen_name\":\"opuwari66\",\"location\":\"Nigeria\",\"description\":\"Affiliate Marketer|Business Coach| I teach people how to make 6 figures monthly| YouTuber| Realtor | Web Designer| Graphics Designer|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":5,\"listed_count\":0,\"created_at\":\"Wed Jul 20 06:14:43 +0000 2022\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554033899143139328\\/6KMBvQM3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554033899143139328\\/6KMBvQM3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549638837877575680\\/1659344320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4514\":{\"id\":1352619967649357824,\"id_str\":\"1352619967649357824\",\"name\":\"Adedayo Adesuyi\",\"screen_name\":\"AdesuyiAdedayo\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Administrator | Tech Enthusiast | \\u271d\\ufe0f | MUFC\\ud83d\\udc4a\\ud83d\\udd34\\ud83d\\udc79\\u26bd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":653,\"friends_count\":649,\"listed_count\":0,\"created_at\":\"Fri Jan 22 14:12:08 +0000 2021\",\"favourites_count\":50818,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8950,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548014767024906240\\/0_-6ELqN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548014767024906240\\/0_-6ELqN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1352619967649357824\\/1657911341\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4515\":{\"id\":93659333,\"id_str\":\"93659333\",\"name\":\"Weyacrypto\\ud83d\\udc8e\",\"screen_name\":\"Onyenaweya88\",\"location\":\"\",\"description\":\"I teach about achieving financial freedom via Cryptocurrency and Affiliate marketing.\\nA Proud Father and POS Aggregator.\\n@opay_ng & @banklyng\",\"url\":\"https:\\/\\/t.co\\/zXmcNl9Tjv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zXmcNl9Tjv\",\"expanded_url\":\"https:\\/\\/wa.link\\/b0ayoo\",\"display_url\":\"wa.link\\/b0ayoo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":689,\"friends_count\":1449,\"listed_count\":8,\"created_at\":\"Mon Nov 30 16:10:00 +0000 2009\",\"favourites_count\":8435,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6623,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541019350806691840\\/1jwTVex3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541019350806691840\\/1jwTVex3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/93659333\\/1657437835\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4516\":{\"id\":1091485351175163904,\"id_str\":\"1091485351175163904\",\"name\":\"Babalola Samuel\",\"screen_name\":\"mrwopaa\",\"location\":\"Lagos, Nigeria\",\"description\":\"Entertainer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Fri Feb 01 23:56:01 +0000 2019\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550546696186257408\\/b_hpjGmX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550546696186257408\\/b_hpjGmX_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4517\":{\"id\":4493503761,\"id_str\":\"4493503761\",\"name\":\"Ariemu Ogaga, arpa\",\"screen_name\":\"ariemu_ogaga\",\"location\":\"Abuja\",\"description\":\"Brilliant Journalist\\/Researcher\\/Advertiser\\/Salesperson\",\"url\":\"https:\\/\\/t.co\\/8GQhIx78iQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8GQhIx78iQ\",\"expanded_url\":\"https:\\/\\/nigeriannewsdirect.com\\/?s=Ogaga+ariemu\",\"display_url\":\"nigeriannewsdirect.com\\/?s=Ogaga+ariemu\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":156,\"friends_count\":364,\"listed_count\":0,\"created_at\":\"Tue Dec 15 16:01:32 +0000 2015\",\"favourites_count\":542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1396947190820573185\\/ujBt-cFO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1396947190820573185\\/ujBt-cFO_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4518\":{\"id\":1225167464549507075,\"id_str\":\"1225167464549507075\",\"name\":\"F.S.o.A\",\"screen_name\":\"arynzeee\",\"location\":\"Nigeria\",\"description\":\"First Son of ADOLPH \\ud83c\\udfc5\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":405,\"listed_count\":0,\"created_at\":\"Wed Feb 05 21:23:22 +0000 2020\",\"favourites_count\":1939,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":480,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550198190699315200\\/c6kn_fRm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550198190699315200\\/c6kn_fRm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1225167464549507075\\/1657498452\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4519\":{\"id\":1301247566496006149,\"id_str\":\"1301247566496006149\",\"name\":\"Butabu Kwifor\",\"screen_name\":\"butabukwifor\",\"location\":\"Cameroon\",\"description\":\"Foundation of the DEFENCE in Mankon. Ambazonia liberation forces Bamenda Ambazonia. #Block_by_Block\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Sep 02 19:59:45 +0000 2020\",\"favourites_count\":77,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1366,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527970614950125573\\/sDVTU6mg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1301247566496006149\\/1653620283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4520\":{\"id\":1354535299255328769,\"id_str\":\"1354535299255328769\",\"name\":\"Chinagorom Ohanu\",\"screen_name\":\"Djackyz\",\"location\":\"\",\"description\":\"Believe in your dreams and put Baba God first \\ud83e\\udd70\\ud83e\\udd70\\ud83d\\ude0d\\ud83d\\ude0d...one \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":132,\"listed_count\":0,\"created_at\":\"Wed Jan 27 21:03:03 +0000 2021\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488424923215314949\\/77qtnVuU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488424923215314949\\/77qtnVuU_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4521\":{\"id\":1261941616979382273,\"id_str\":\"1261941616979382273\",\"name\":\"Epitome Stores\",\"screen_name\":\"EpitomeStores\",\"location\":\"Nigeria\",\"description\":\"Epitome Stores .. It's all about you.\\nWe sell cloths & shoes for all genders, ages & specific edibles like Honey.\\nCall: +2348062412774.\\n#EpitomeStores\",\"url\":\"https:\\/\\/t.co\\/MhUZg49zd1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MhUZg49zd1\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCX234CH6IqtT4xn_8_R3gpA\",\"display_url\":\"youtube.com\\/channel\\/UCX234\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":117,\"friends_count\":79,\"listed_count\":1,\"created_at\":\"Sun May 17 08:49:50 +0000 2020\",\"favourites_count\":7024,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6833,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1293916811508035585\\/hDGyRyfn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1293916811508035585\\/hDGyRyfn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261941616979382273\\/1597328847\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4522\":{\"id\":3494609536,\"id_str\":\"3494609536\",\"name\":\"hotjist\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\\u1160\",\"screen_name\":\"hotjist\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hottest News as it breaks\",\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AS0FH88lwF\",\"expanded_url\":\"http:\\/\\/www.hotjist.com\",\"display_url\":\"hotjist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7342,\"friends_count\":7025,\"listed_count\":3,\"created_at\":\"Sun Aug 30 20:27:58 +0000 2015\",\"favourites_count\":38053,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24097,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1479110740644487178\\/M7-loBLw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3494609536\\/1551164674\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4523\":{\"id\":257664999,\"id_str\":\"257664999\",\"name\":\"Trillionaire mindset \\ud83c\\uddfa\\ud83c\\uddf8\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"TerryOladapo\",\"location\":\"Lagos, Nigeria\",\"description\":\"*Accountant * philosopher * Entrepreneur * Peace ambassador * E-learner * Music lover * Virgo * Dream big coz Nothing is impossible. Email:cyboug08@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4143,\"friends_count\":4842,\"listed_count\":1,\"created_at\":\"Fri Feb 25 22:41:52 +0000 2011\",\"favourites_count\":19495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3751,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1457525499333337091\\/PA7YD9lU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1457525499333337091\\/PA7YD9lU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/257664999\\/1587316459\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4524\":{\"id\":1546817892573921281,\"id_str\":\"1546817892573921281\",\"name\":\"Your Data & Airtime Plug \\ud83d\\udd0c\",\"screen_name\":\"Jara_Connect\",\"location\":\"Abuja\",\"description\":\"Get the best deals on;\\n\\u2022Airtime & Data \\n\\u2022TV subscription\\n\\u2022Electricity bills payment\\n\\u2022Airtime to cash\\n\\nAt https:\\/\\/t.co\\/UW7WXqAs6a\",\"url\":\"https:\\/\\/t.co\\/WFTmvTjGTV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WFTmvTjGTV\",\"expanded_url\":\"http:\\/\\/Jaraconnect.com\",\"display_url\":\"Jaraconnect.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW7WXqAs6a\",\"expanded_url\":\"http:\\/\\/jaraconnect.com\",\"display_url\":\"jaraconnect.com\",\"indices\":[105,128]}]}},\"protected\":false,\"followers_count\":34,\"friends_count\":42,\"listed_count\":0,\"created_at\":\"Tue Jul 12 11:25:32 +0000 2022\",\"favourites_count\":224,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546824254800502787\\/Qi7Ccqqj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546824254800502787\\/Qi7Ccqqj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546817892573921281\\/1659257455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4525\":{\"id\":1542100268015312896,\"id_str\":\"1542100268015312896\",\"name\":\"Bereal Brand\",\"screen_name\":\"bereal_akpan\",\"location\":\"Nigeria\",\"description\":\"\\ud83e\\udd32GODS OWN\\ud83e\\udd32Your focus determines your future\",\"url\":\"https:\\/\\/t.co\\/aVYlS9jcHO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aVYlS9jcHO\",\"expanded_url\":\"http:\\/\\/africdailyupdates.blogspot.com\",\"display_url\":\"africdailyupdates.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":49,\"friends_count\":206,\"listed_count\":0,\"created_at\":\"Wed Jun 29 10:59:34 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554749790973460480\\/LAu4WMzu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554749790973460480\\/LAu4WMzu_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4526\":{\"id\":1482630150617452553,\"id_str\":\"1482630150617452553\",\"name\":\"Mastrozamani\\ud83d\\ude08\",\"screen_name\":\"Mastrozamani\",\"location\":\"Lagos, Nigeria\",\"description\":\"30BG\\/ Cristiano Ronaldo \\ud83d\\udc10\\/ Good music || Davido \\ud83d\\udc10|| Michael Marabou fans \\ud83c\\udded\\ud83c\\uddf9 ||\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":764,\"friends_count\":1207,\"listed_count\":8,\"created_at\":\"Sun Jan 16 08:25:59 +0000 2022\",\"favourites_count\":1568,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1210,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552971121032667136\\/fqEKgJkP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482630150617452553\\/1659092088\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4527\":{\"id\":1520583680972005377,\"id_str\":\"1520583680972005377\",\"name\":\"\\u1d42\\u1d52\\u207f\\u1d48\\u1d49\\u02b3 Q\\u1d52\\u1d58\\u1d57\\u1d49\\u02e2\",\"screen_name\":\"wonderqoute\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2022\\u00b4\\u00af`\\u2022. \\ud83c\\udf80 \\ud835\\udc3f\\ud835\\udc52\\ud835\\udcc9 \\ud835\\udc40\\ud835\\udcce \\ud835\\udcac\\ud835\\udcca\\u2741\\ud835\\udcc9\\ud835\\udc52 \\ud835\\udc45\\ud835\\udc52\\ud835\\udcbb\\ud835\\udcc7\\ud835\\udc52\\ud835\\udcc8\\ud835\\udcbd \\ud835\\udcce\\ud83d\\udc9e\\ud835\\udcca. \\ud83c\\udf80 .\\u2022`\\u00af\\u00b4\\u2022\",\"url\":\"https:\\/\\/t.co\\/gDrqEv8OC9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gDrqEv8OC9\",\"expanded_url\":\"https:\\/\\/vm.tiktok.com\\/ZMNSRWQSG\\/\",\"display_url\":\"vm.tiktok.com\\/ZMNSRWQSG\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Sun May 01 01:59:58 +0000 2022\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543567573287043073\\/_GiTvU5__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543567573287043073\\/_GiTvU5__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520583680972005377\\/1659471352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4528\":{\"id\":1544786612801896453,\"id_str\":\"1544786612801896453\",\"name\":\"Fiwasewa\",\"screen_name\":\"Fiwasewaaa\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Seamstress | Beddings Vendor | Vintage shirts | Interiors \\ud83d\\udd0c | Adorable | Passionate | Committed | Fashion lover \\ud83d\\udccc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Wed Jul 06 20:53:42 +0000 2022\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545171616207933441\\/JApqi2le_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545171616207933441\\/JApqi2le_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544786612801896453\\/1657141499\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4529\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4530\":{\"id\":242984841,\"id_str\":\"242984841\",\"name\":\"Izzitalk\",\"screen_name\":\"izzitalk\",\"location\":\"Nigeria\",\"description\":\"We must be United, that's the only way to massively win.\",\"url\":\"https:\\/\\/t.co\\/pBd8pZ5zUm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pBd8pZ5zUm\",\"expanded_url\":\"https:\\/\\/youtu.be\\/ikoTYrO-Y1M\",\"display_url\":\"youtu.be\\/ikoTYrO-Y1M\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":736,\"friends_count\":3582,\"listed_count\":8,\"created_at\":\"Wed Jan 26 01:37:08 +0000 2011\",\"favourites_count\":2254,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9525,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555938779558445057\\/ZiuIEb01_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555938779558445057\\/ZiuIEb01_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/242984841\\/1659799650\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4531\":{\"id\":1553705771090808834,\"id_str\":\"1553705771090808834\",\"name\":\"VICKYCARE FOUNDATION\",\"screen_name\":\"VICKYCARE1\",\"location\":\"ABUJA, NIGERIA\",\"description\":\"Our aim is reaching out to less privileged children, women, the girl child and the disabled, for the most valid expression of love is giving.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":22,\"listed_count\":0,\"created_at\":\"Sun Jul 31 11:35:29 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553706287489335299\\/LXgJ8OQ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553706287489335299\\/LXgJ8OQ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553705771090808834\\/1659267603\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4532\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4533\":{\"id\":1509148638009831429,\"id_str\":\"1509148638009831429\",\"name\":\"Audacia Prime Realty\",\"screen_name\":\"audacia_prime_\",\"location\":\"Lagos, Nigeria\",\"description\":\"We offer unmatched real estate solutions and help people invest in properties in strategic locations with as low as 250K.\",\"url\":\"https:\\/\\/t.co\\/9ttVuFu1Iq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9ttVuFu1Iq\",\"expanded_url\":\"http:\\/\\/audaciaprime.com\",\"display_url\":\"audaciaprime.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Wed Mar 30 12:41:07 +0000 2022\",\"favourites_count\":91,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":157,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509218671524261898\\/jBS4Mr5a_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509218671524261898\\/jBS4Mr5a_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509148638009831429\\/1648840834\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4534\":{\"id\":1269378128868265984,\"id_str\":\"1269378128868265984\",\"name\":\"Jerry of Lagos\",\"screen_name\":\"EfeJerry1\",\"location\":\"Lagos, Nigeria\",\"description\":\"A very simple guy who just want to love God everyday\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Sat Jun 06 21:18:41 +0000 2020\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1269378530028199941\\/7t5EAB75_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1269378530028199941\\/7t5EAB75_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269378128868265984\\/1598462364\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4535\":{\"id\":822024954246000640,\"id_str\":\"822024954246000640\",\"name\":\"M-Jeezy\",\"screen_name\":\"NwonualaHope\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Geologist, Entrepreneur.\\n\\nMasculine Energy\\/ALPHA\\nHuman right activist\\/An activist for good governance.\\n\\nFully Obi-dient\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":133,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Thu Jan 19 10:16:36 +0000 2017\",\"favourites_count\":8576,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549038896381677570\\/yprVgqFA_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4536\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4537\":{\"id\":1483240375435341824,\"id_str\":\"1483240375435341824\",\"name\":\"Daniel Chukwuebuka Udechukwu\",\"screen_name\":\"SweetMusicMan27\",\"location\":\"Nigeria\",\"description\":\"Just that man seeking Love and God Caring but sometimes I just want to Sing and drive all night long.\\ud83e\\udd2f\\ud83e\\udd2f\\ud83e\\udd2f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":117,\"listed_count\":0,\"created_at\":\"Tue Jan 18 00:50:56 +0000 2022\",\"favourites_count\":156,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":402,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483240621540315140\\/jJ83Tx53_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483240621540315140\\/jJ83Tx53_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483240375435341824\\/1643908583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4538\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4539\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4540\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4541\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4542\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4543\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4544\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4545\":{\"id\":1337355254288015360,\"id_str\":\"1337355254288015360\",\"name\":\"OjaNig\",\"screen_name\":\"Oja_Nig01\",\"location\":\"Lagos, Nigeria\",\"description\":\"We are one of the biggest E-commerce website in Nigeria, we offer affordable Brand new and london used products with fast and cheap delivery. #shopwithpride\",\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GOMXpH4LFn\",\"expanded_url\":\"https:\\/\\/www.ojanig.com\",\"display_url\":\"ojanig.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":232,\"listed_count\":1,\"created_at\":\"Fri Dec 11 11:15:36 +0000 2020\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1337365321196441601\\/07TambEZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337355254288015360\\/1607687716\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4546\":{\"id\":3999803356,\"id_str\":\"3999803356\",\"name\":\"NectarBeautyHub\",\"screen_name\":\"NectarBeautyHub\",\"location\":\"5 Layi Yusuf Cres, Lekki ph 1\",\"description\":\"Wholesalers of Beauty\\/Body\\/Spa Products, as well as Salon\\/Spa Furniture. Info\\/Order: 08024242639\",\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fRiCWqocuk\",\"expanded_url\":\"http:\\/\\/www.nectarbeautyhub.com\",\"display_url\":\"nectarbeautyhub.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":283,\"friends_count\":805,\"listed_count\":8,\"created_at\":\"Tue Oct 20 05:25:03 +0000 2015\",\"favourites_count\":379,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1830,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1053794590145286144\\/xRDpzq8w_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3999803356\\/1544091864\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4547\":{\"id\":3185125111,\"id_str\":\"3185125111\",\"name\":\"Camera Sniiper \\ud83d\\udcf8\",\"screen_name\":\"FredTizzle\",\"location\":\"Lagos\",\"description\":\"PHOTOGRAPHER \\/ CINEMATOGRAPHER \\ud83d\\udcf8. Do whatever floats your boat as long as it doesn\\u2019t sink mine\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1065,\"friends_count\":1122,\"listed_count\":1,\"created_at\":\"Mon May 04 11:31:39 +0000 2015\",\"favourites_count\":19303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5373,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554747747194048512\\/RY2jL64U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554747747194048512\\/RY2jL64U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3185125111\\/1610746439\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4548\":{\"id\":2878666641,\"id_str\":\"2878666641\",\"name\":\"Emmanuel Atser \\ud83d\\udc99\\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\udf13\\ud83d\\ude80\",\"screen_name\":\"emmanuel_atser\",\"location\":\"Abuja, Nigeria\",\"description\":\"Makurdi,Benue,Nigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2521,\"friends_count\":3869,\"listed_count\":3,\"created_at\":\"Sat Nov 15 22:30:43 +0000 2014\",\"favourites_count\":11614,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16049,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322158480321634304\\/vw12EHLn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322158480321634304\\/vw12EHLn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2878666641\\/1568936199\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4549\":{\"id\":461902032,\"id_str\":\"461902032\",\"name\":\"OLUWATOBILOBA\",\"screen_name\":\"tobzyeasy\",\"location\":\"Nigeria\",\"description\":\"Just try and always believe in yourself\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":539,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Thu Jan 12 10:02:25 +0000 2012\",\"favourites_count\":5838,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11780,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1314850400621789186\\/U3e0dz9Y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1314850400621789186\\/U3e0dz9Y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/461902032\\/1406714591\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4550\":{\"id\":1545418862845476864,\"id_str\":\"1545418862845476864\",\"name\":\"Solid Mineral Sorcerer\",\"screen_name\":\"MineralSorcerer\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"My sole aim is to source for any type of Solid Minerals (Commercial quantities), Purchase\\/Lease of mining sites and Exploration.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Fri Jul 08 14:46:03 +0000 2022\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":14,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545419865447604226\\/YJbs8VnI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545419865447604226\\/YJbs8VnI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4551\":{\"id\":2943682546,\"id_str\":\"2943682546\",\"name\":\"EKUND\\u00c0Y\\u00d2 (Social Disruptor)\",\"screen_name\":\"wagbayiikay\",\"location\":\"lagos \",\"description\":\"\\u201c I have need to be all on fire, for I have mountains of ice about me to melt.\\u201d\",\"url\":\"https:\\/\\/t.co\\/V18p41pYPL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V18p41pYPL\",\"expanded_url\":\"http:\\/\\/Hansamlink.com\\/work.in.progress\",\"display_url\":\"Hansamlink.com\\/work.in.progre\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":230,\"friends_count\":943,\"listed_count\":0,\"created_at\":\"Sat Dec 27 11:26:13 +0000 2014\",\"favourites_count\":790,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":995,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538249946708824064\\/zi3vmpqr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538249946708824064\\/zi3vmpqr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2943682546\\/1655582369\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4552\":{\"id\":305454038,\"id_str\":\"305454038\",\"name\":\"Ojongs\",\"screen_name\":\"Ojongs1\",\"location\":\"Nigeria\",\"description\":\"System Engineer\\/\\/Cybersecurity Specialist\\/\\/UI Designer\\/\\/IoT\\/\\/Web developer\\/\\/Digital Marketing Manager\\/\\/Laptop Sure Plug\\ud83d\\udd0c\\ud83d\\udd0c\\ud83d\\udd0c\",\"url\":\"https:\\/\\/t.co\\/qvKvlMJYgF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qvKvlMJYgF\",\"expanded_url\":\"http:\\/\\/ojongs.blogspot.com\",\"display_url\":\"ojongs.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":459,\"friends_count\":1647,\"listed_count\":0,\"created_at\":\"Thu May 26 07:33:05 +0000 2011\",\"favourites_count\":805,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2209,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546930272762986496\\/ZqbakvwU_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546930272762986496\\/ZqbakvwU_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/305454038\\/1552515311\",\"profile_link_color\":\"23CAEB\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4553\":{\"id\":855447441964924930,\"id_str\":\"855447441964924930\",\"name\":\"Victor I.Bajju\",\"screen_name\":\"Victorbajju_30\",\"location\":\"Abuja, Nigeria\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/jfT5oFaJqI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jfT5oFaJqI\",\"expanded_url\":\"http:\\/\\/www.Rainbowconceptpaintingltd.com\",\"display_url\":\"Rainbowconceptpaintingltd.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":570,\"friends_count\":654,\"listed_count\":0,\"created_at\":\"Fri Apr 21 15:45:38 +0000 2017\",\"favourites_count\":8149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1454,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556162311148257280\\/GdQacD58_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556162311148257280\\/GdQacD58_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/855447441964924930\\/1658306853\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4554\":{\"id\":2328234917,\"id_str\":\"2328234917\",\"name\":\"Prince Adetunde.A.F. Adedamola\",\"screen_name\":\"Man4all_Season\",\"location\":\"Lagos, Nigeria\",\"description\":\"Master in Sociology *Criminologist* crusader for social change* Humanitarian*Rotarian, Muslim.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4632,\"friends_count\":4607,\"listed_count\":0,\"created_at\":\"Thu Feb 06 14:49:46 +0000 2014\",\"favourites_count\":97726,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":49591,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1429547266172362752\\/fxPYtBCt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1429547266172362752\\/fxPYtBCt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2328234917\\/1612742394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4555\":{\"id\":1356251183980142596,\"id_str\":\"1356251183980142596\",\"name\":\"Rentic\",\"screen_name\":\"myrentic\",\"location\":\"Lagos, Nigeria\",\"description\":\"#Accommodations: (shortlets, roommates, flatmates, co-working spaces & more).\\n#Experiences: (Tours, massages, getaways, boat rides & more).\",\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4H8yM4R6N9\",\"expanded_url\":\"https:\\/\\/rentic.app\",\"display_url\":\"rentic.app\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":48,\"friends_count\":47,\"listed_count\":0,\"created_at\":\"Mon Feb 01 14:41:11 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":207,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375756131474235394\\/n3sDj0y7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1356251183980142596\\/1612290624\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4556\":{\"id\":1211037919118409729,\"id_str\":\"1211037919118409729\",\"name\":\"The Last Airbender\",\"screen_name\":\"Mclioon\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"sociologist\\ud83d\\udcd2 Mc \\/event planner\\ud83c\\udf39Taurus\\u2649\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/peO2Tjt69h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/peO2Tjt69h\",\"expanded_url\":\"https:\\/\\/instagram.com\\/mclioon?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/mclioon?igshid\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":253,\"friends_count\":82,\"listed_count\":0,\"created_at\":\"Sat Dec 28 21:35:30 +0000 2019\",\"favourites_count\":159,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":213,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554190678653124611\\/LUTC0Snb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554190678653124611\\/LUTC0Snb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1211037919118409729\\/1601071789\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4557\":{\"id\":3194490489,\"id_str\":\"3194490489\",\"name\":\"Trouv\\u00e9\",\"screen_name\":\"trouve_ng\",\"location\":\"Nigeria\",\"description\":\"Tell us what you want, we will find it and connect you for free.\\nThat simple.\\nReach us on WhatsApp @ https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348088939403\",\"display_url\":\"wa.me\\/2348088939403\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gpp8Zrbb5x\",\"expanded_url\":\"https:\\/\\/wa.me\\/2348088939403\",\"display_url\":\"wa.me\\/2348088939403\",\"indices\":[101,124]}]}},\"protected\":false,\"followers_count\":381,\"friends_count\":379,\"listed_count\":0,\"created_at\":\"Wed Apr 22 11:48:32 +0000 2015\",\"favourites_count\":237,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":350,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1364127139621203968\\/w41HpyS4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1364127139621203968\\/w41HpyS4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3194490489\\/1614068232\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4558\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4559\":{\"id\":211586223,\"id_str\":\"211586223\",\"name\":\"Kelvs\",\"screen_name\":\"kelvinalohan\",\"location\":\"Abuja, Nigeria.\",\"description\":\"Sometimes blur is needed to see everything else clearly. \\n#FaithfulGod\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1626,\"friends_count\":3982,\"listed_count\":4,\"created_at\":\"Wed Nov 03 17:41:39 +0000 2010\",\"favourites_count\":2984,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3488,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1319694544829636609\\/dL6VDvka_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1319694544829636609\\/dL6VDvka_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/211586223\\/1415561983\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4560\":{\"id\":2540367001,\"id_str\":\"2540367001\",\"name\":\"Emmanuel Amakiri\",\"screen_name\":\"Makiri_manuel\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Versatile Entrepreneur. Radical Biochemist.\\ud83d\\ude0e\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":208,\"listed_count\":0,\"created_at\":\"Sun Jun 01 21:55:40 +0000 2014\",\"favourites_count\":420,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":195,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554404176993681409\\/g60XSxV1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554404176993681409\\/g60XSxV1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2540367001\\/1659433832\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"78C0A8\",\"profile_text_color\":\"5E412F\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4561\":{\"id\":1554452432117276673,\"id_str\":\"1554452432117276673\",\"name\":\"Adighije Regan\",\"screen_name\":\"__osinachi__\",\"location\":\"Umuahia, Nigeria\",\"description\":\"Content writer|Poet|everything beautiful| @manutd fan\\nGGMU!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":16,\"listed_count\":0,\"created_at\":\"Tue Aug 02 13:02:14 +0000 2022\",\"favourites_count\":442,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554733257052266498\\/2VJ5Ea8f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554733257052266498\\/2VJ5Ea8f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554452432117276673\\/1659512311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4562\":{\"id\":1385591842733953025,\"id_str\":\"1385591842733953025\",\"name\":\"DJ SANOS\",\"screen_name\":\"GeorgeEneje\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Entertainment Lover | Music Producer | Beat Maker | Amateur Photographer | Amateur Film Maker | Communication & Media Studies\",\"url\":\"https:\\/\\/t.co\\/XNPotoYIkP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XNPotoYIkP\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/weird-daredevilnft\",\"display_url\":\"opensea.io\\/collection\\/wei\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":613,\"friends_count\":457,\"listed_count\":25,\"created_at\":\"Fri Apr 23 13:50:27 +0000 2021\",\"favourites_count\":377,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532624853479698432\\/TOg1e8dt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532624853479698432\\/TOg1e8dt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1385591842733953025\\/1648373830\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4563\":{\"id\":1508810016366772228,\"id_str\":\"1508810016366772228\",\"name\":\"Shortlet lagos\",\"screen_name\":\"ShortletLagosng\",\"location\":\"Lagos, Nigeria\",\"description\":\"Service apartments in Lagos Nigeria.. Listing|| Bookings|| Regular stay|| House parties|| Movie\\/video shoots|| TV Commercials. call\\/watshapp +2348137623065\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Tue Mar 29 14:15:41 +0000 2022\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508871505853169669\\/lCmNiMxC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508871505853169669\\/lCmNiMxC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1508810016366772228\\/1648577986\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4564\":{\"id\":1229291322047111173,\"id_str\":\"1229291322047111173\",\"name\":\"Stancity\",\"screen_name\":\"Stancity3\",\"location\":\"Abuja\",\"description\":\"The Earth is ours to Plough and Not to Plunder!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":84,\"listed_count\":0,\"created_at\":\"Mon Feb 17 06:28:10 +0000 2020\",\"favourites_count\":2498,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":816,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530470919776440323\\/u-Tos2Ws_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530470919776440323\\/u-Tos2Ws_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1229291322047111173\\/1659465084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4565\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4566\":{\"id\":1482286953806630912,\"id_str\":\"1482286953806630912\",\"name\":\"Hon Gaya\",\"screen_name\":\"MrGaya23\",\"location\":\"Nigeria\",\"description\":\"The legacy builder's, peace builder and Compassionate\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":577,\"listed_count\":0,\"created_at\":\"Sat Jan 15 09:42:31 +0000 2022\",\"favourites_count\":2693,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539507668062285825\\/qyh_sPNu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482286953806630912\\/1653148630\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4567\":{\"id\":1078454444029825025,\"id_str\":\"1078454444029825025\",\"name\":\"N_ssey\",\"screen_name\":\"Nsikanekanemm\",\"location\":\"Uyo, Nigeria\",\"description\":\"Email: Nsikanuekanem@gmail.com IG: @Nsikanekanemm Actor, Content Creator, YouTuber\\ud83e\\udd17\",\"url\":\"https:\\/\\/t.co\\/Go1BvVJdWM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Go1BvVJdWM\",\"expanded_url\":\"https:\\/\\/nsikanekanem.disha.page\",\"display_url\":\"nsikanekanem.disha.page\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":352,\"friends_count\":657,\"listed_count\":1,\"created_at\":\"Fri Dec 28 00:55:50 +0000 2018\",\"favourites_count\":1783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":553,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1528076568802754562\\/_gXplSUR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1528076568802754562\\/_gXplSUR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1078454444029825025\\/1551844157\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4568\":{\"id\":1537458387067314177,\"id_str\":\"1537458387067314177\",\"name\":\"Class Suites Hotel & Apartments\",\"screen_name\":\"classsuitehotel\",\"location\":\"Nigeria\",\"description\":\"Hotel & Apartments; Your home away from home \\ud83c\\udfe1\",\"url\":\"https:\\/\\/t.co\\/nLFlO8nWwM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nLFlO8nWwM\",\"expanded_url\":\"https:\\/\\/classsuite.com\\/\",\"display_url\":\"classsuite.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Thu Jun 16 15:34:24 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":55,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537458639589588993\\/2f6WP4T4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537458639589588993\\/2f6WP4T4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537458387067314177\\/1655394235\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4569\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4570\":{\"id\":1499465796975841292,\"id_str\":\"1499465796975841292\",\"name\":\"KING RICKKY\",\"screen_name\":\"Kingrickky23\",\"location\":\"Lagos, Nigeria\",\"description\":\"Rickky la cooler yo\\ud83d\\udc51\\ud83d\\ude07\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":504,\"friends_count\":490,\"listed_count\":0,\"created_at\":\"Thu Mar 03 19:24:56 +0000 2022\",\"favourites_count\":1440,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1149,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549327077278715904\\/c60ZaKFS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549327077278715904\\/c60ZaKFS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4571\":{\"id\":743528576541200384,\"id_str\":\"743528576541200384\",\"name\":\"Julius d Just\",\"screen_name\":\"JobayeResources\",\"location\":\"lagos\",\"description\":\"I m a great guy, found by God mercy and strengthen by God grace. I am on a journey 2 heavenly but destined 2 water the earth as take each step. #Blessed2Bless\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":745,\"listed_count\":10,\"created_at\":\"Thu Jun 16 19:40:01 +0000 2016\",\"favourites_count\":58,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":442,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535750098931654658\\/yPnvVULJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535750098931654658\\/yPnvVULJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/743528576541200384\\/1654986331\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4572\":{\"id\":1133738286470565888,\"id_str\":\"1133738286470565888\",\"name\":\"Limosiris\",\"screen_name\":\"Limosiris1\",\"location\":\"Nigeria\",\"description\":\"We provide premium logistics and transportation services delivered to your finger tips \\ud83c\\udf0d\\ud83d\\udcab\\ud83d\\udcf2\\ud83d\\ude97\\ud83d\\udca8 #limosiris\",\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CMfLdtgo7W\",\"expanded_url\":\"http:\\/\\/www.limosiris.com\",\"display_url\":\"limosiris.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Wed May 29 14:14:06 +0000 2019\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1133738691615166464\\/ZfdJGYXL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1133738286470565888\\/1564573742\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4573\":{\"id\":880015105135607808,\"id_str\":\"880015105135607808\",\"name\":\"Zeeter Oliver\",\"screen_name\":\"OliverZeeter\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec Afrofusion Songstress of Abuja \\n. \\n\\nInstagram\\n\\n- @zeeteroliver \\n\\nMy Music \\n- \\n\\nhttps:\\/\\/t.co\\/nccSFc5qkp\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nccSFc5qkp\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Zeeteroliver\",\"display_url\":\"linktr.ee\\/Zeeteroliver\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":326,\"friends_count\":1050,\"listed_count\":1,\"created_at\":\"Wed Jun 28 10:48:45 +0000 2017\",\"favourites_count\":904,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":784,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550040067862937600\\/t-x8P3WD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/880015105135607808\\/1659766982\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4574\":{\"id\":1331195103080312835,\"id_str\":\"1331195103080312835\",\"name\":\"6FIVE EMPIRE\",\"screen_name\":\"6fiveEmpire\",\"location\":\"Anambra, Nigeria\",\"description\":\"Entertainment, Media, building design, Construction and education #COMPANY\\nWe love to help people think differently so they can have financial freedom.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":159,\"listed_count\":1,\"created_at\":\"Tue Nov 24 11:18:42 +0000 2020\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1331199094019264515\\/W6F3j__2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1331199094019264515\\/W6F3j__2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1331195103080312835\\/1659885072\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4575\":{\"id\":1549522280354664448,\"id_str\":\"1549522280354664448\",\"name\":\"Maximumjoyfoundation\",\"screen_name\":\"Maximumjoy_FD\",\"location\":\"Ghana\",\"description\":\"Maximum Joy Foundation is an \\nNGO that provides counselling and vocational training for underprivileged teenage single mothers and unearthing young talents\",\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nMGIgRrZTQ\",\"expanded_url\":\"http:\\/\\/maximumjoyfoundation.org\",\"display_url\":\"maximumjoyfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":73,\"listed_count\":0,\"created_at\":\"Tue Jul 19 22:31:46 +0000 2022\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":85,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549806849360273409\\/JRNTF8SH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1549522280354664448\\/1658337967\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4576\":{\"id\":324184276,\"id_str\":\"324184276\",\"name\":\"Ayodele ti idi ile Ogunsusi\",\"screen_name\":\"officialOSYB\",\"location\":\"Nigeria\",\"description\":\"O.A.P, #87MediaCo #JesusBoy #FakeAccents. Compere | Music Producer |Copy Writer |Songwriter |Singer |Voice Actor. Bookings 07032700419.\",\"url\":\"https:\\/\\/t.co\\/VOFxhyszqh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VOFxhyszqh\",\"expanded_url\":\"https:\\/\\/youtu.be\\/-V7j8TcY9MQ\",\"display_url\":\"youtu.be\\/-V7j8TcY9MQ\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1089,\"friends_count\":1035,\"listed_count\":8,\"created_at\":\"Sun Jun 26 04:34:08 +0000 2011\",\"favourites_count\":6566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17140,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481599727774969862\\/-hHI30lB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481599727774969862\\/-hHI30lB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/324184276\\/1653840453\",\"profile_link_color\":\"19CF86\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4577\":{\"id\":1498420205554483204,\"id_str\":\"1498420205554483204\",\"name\":\"Mr Myke M\\ud83d\\udc99\",\"screen_name\":\"mrmyke_1\",\"location\":\"Aba, Nigeria\",\"description\":\"crypto king\\n\\nI sell South African Somerset wine and we create perfume #fragrance .\",\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BdvQ7JS91v\",\"expanded_url\":\"http:\\/\\/athena-stores.business.site\",\"display_url\":\"athena-stores.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":81,\"listed_count\":0,\"created_at\":\"Mon Feb 28 22:10:13 +0000 2022\",\"favourites_count\":137,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":181,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551652680078180353\\/CX13ZyD0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498420205554483204\\/1646392456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4578\":{\"id\":226166695,\"id_str\":\"226166695\",\"name\":\"Eze Am\\u1ee5 na Eke \\u26aa\",\"screen_name\":\"Jugo_kc\",\"location\":\"Lagos, Nigeria\",\"description\":\"A writer, an entertainer, A real Estate Agent. Catholic. Masculinist!!. The author of Love is just amazing, On https:\\/\\/t.co\\/fU4lVSvyuC\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fU4lVSvyuC\",\"expanded_url\":\"http:\\/\\/Amazon.com\",\"display_url\":\"Amazon.com\",\"indices\":[111,134]}]}},\"protected\":false,\"followers_count\":1130,\"friends_count\":1107,\"listed_count\":0,\"created_at\":\"Mon Dec 13 13:56:08 +0000 2010\",\"favourites_count\":217127,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":27628,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536264299324252160\\/w9LNxgJP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536264299324252160\\/w9LNxgJP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/226166695\\/1653151824\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4579\":{\"id\":1023194384890777601,\"id_str\":\"1023194384890777601\",\"name\":\"Investogist\",\"screen_name\":\"investogist\",\"location\":\"Nigeria\",\"description\":\"Business, Economy, Investments, Finance, Entrepreneurship news website.\\n\\nInquiries - info@investogist.com\\nFacebook\\/Instagram\\/LinkedIn - Investogist\",\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tTsRNQ5V93\",\"expanded_url\":\"http:\\/\\/www.investogist.com\",\"display_url\":\"investogist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":158,\"friends_count\":73,\"listed_count\":3,\"created_at\":\"Sat Jul 28 13:12:06 +0000 2018\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1023195838779191297\\/a4SuzCH6_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1023194384890777601\\/1588683059\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4580\":{\"id\":1100468667815477248,\"id_str\":\"1100468667815477248\",\"name\":\"daps :)\",\"screen_name\":\"beatsbydaps\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5ilsgNjJON\",\"expanded_url\":\"https:\\/\\/mainstack.me\\/daps\",\"display_url\":\"mainstack.me\\/daps\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":274,\"friends_count\":434,\"listed_count\":2,\"created_at\":\"Tue Feb 26 18:52:30 +0000 2019\",\"favourites_count\":4493,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333341698865426432\\/-hdAuI3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1100468667815477248\\/1655589645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4581\":{\"id\":1296726719425130497,\"id_str\":\"1296726719425130497\",\"name\":\"Igwe Richard\",\"screen_name\":\"IgweRichard8\",\"location\":\"Nigeria\",\"description\":\"simplicity is my nature, I love equity, justice and fairness, I hate discrimination.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":116,\"listed_count\":1,\"created_at\":\"Fri Aug 21 08:32:21 +0000 2020\",\"favourites_count\":1112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":240,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549999638811377664\\/LxVl3_Ae_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549999638811377664\\/LxVl3_Ae_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1296726719425130497\\/1659511479\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4582\":{\"id\":268106672,\"id_str\":\"268106672\",\"name\":\"chuzzello\",\"screen_name\":\"chuzzy247\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pharmacist|||Entrepreneur|||Public Affairs Analyst|||\\u00b6\\u2122\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":223,\"friends_count\":224,\"listed_count\":0,\"created_at\":\"Fri Mar 18 04:34:36 +0000 2011\",\"favourites_count\":12313,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3831,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554566795360714752\\/cJdpiNLf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554566795360714752\\/cJdpiNLf_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4583\":{\"id\":1513140523346931718,\"id_str\":\"1513140523346931718\",\"name\":\"Your Excellency\",\"screen_name\":\"yenkwin\",\"location\":\"Nigeria\",\"description\":\"Graphics Designer | Official tweets are assigned GN, else it's just for fun.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":103,\"listed_count\":0,\"created_at\":\"Sun Apr 10 13:03:32 +0000 2022\",\"favourites_count\":1354,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513142405469507597\\/03vqdYwp_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4584\":{\"id\":783378050,\"id_str\":\"783378050\",\"name\":\"It's Kyng Babe\",\"screen_name\":\"Iamkyngizy\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud83d\\udc10First African rapper to mint his Music as NFT - NFhttps:\\/\\/opensea.io\\/Kyng-izynI Bookings : Izzythegreen@gmail.com\",\"url\":\"https:\\/\\/t.co\\/6haTwnmdxK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6haTwnmdxK\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/sure4me\",\"display_url\":\"fanlink.to\\/sure4me\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":374,\"friends_count\":1188,\"listed_count\":0,\"created_at\":\"Sun Aug 26 23:20:14 +0000 2012\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1649,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1503321908254806017\\/OFfacZ-d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1503321908254806017\\/OFfacZ-d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783378050\\/1659381261\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4585\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4586\":{\"id\":333373252,\"id_str\":\"333373252\",\"name\":\"Gbenga Adene\",\"screen_name\":\"GbengaAdene\",\"location\":\"Nigeria\",\"description\":\"Architect @gbengaadene Public Speaker @contacthowga1 and a Consultant. Ondo State Youth of the Year 2019 || JCI Top Ten Youths in Nigeria 2020\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1173,\"friends_count\":99,\"listed_count\":1,\"created_at\":\"Mon Jul 11 12:50:49 +0000 2011\",\"favourites_count\":2521,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4917,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395708244190957568\\/gB8Gq6oM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395708244190957568\\/gB8Gq6oM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/333373252\\/1525846402\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4587\":{\"id\":1501236907954610185,\"id_str\":\"1501236907954610185\",\"name\":\"Tariq Properties Limited\",\"screen_name\":\"tariqproperties\",\"location\":\"Nigeria\",\"description\":\"Real Estate Broker| Consultant |Development\\ud83d\\udccdVGC- Ikoyi \\ud83c\\udfe0Sales \\ud83c\\udfe0Rents \\ud83c\\udfe0Land\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":15,\"listed_count\":0,\"created_at\":\"Tue Mar 08 16:43:37 +0000 2022\",\"favourites_count\":64,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":82,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501237447732170755\\/q5EGbjnc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501237447732170755\\/q5EGbjnc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501236907954610185\\/1646758022\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4588\":{\"id\":1552563432960000000,\"id_str\":\"1552563432960000000\",\"name\":\"Brymstone\\ud83e\\udd85\\ud83d\\udda4\\ud83c\\udf0a\",\"screen_name\":\"brymstone001\",\"location\":\"Lagos, Nigeria\",\"description\":\"Aquarius King \\u2652\\ufe0f || Innovative || progressive || and || shamelessly revolutionary ||\\ud83e\\udd17\\ud83d\\udcaf I stan @wizkidayo for life\\ud83e\\udd85\\ud83d\\udda4\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":219,\"listed_count\":0,\"created_at\":\"Thu Jul 28 07:55:58 +0000 2022\",\"favourites_count\":154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":164,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552563579722801153\\/y-WywhUz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552563579722801153\\/y-WywhUz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1552563432960000000\\/1659278534\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4589\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4590\":{\"id\":2180916851,\"id_str\":\"2180916851\",\"name\":\"KING OF THE STREET \\u270d\\ufe0f\",\"screen_name\":\"Mc_Highness\",\"location\":\"Nigeria\",\"description\":\"News and Media Company\",\"url\":\"https:\\/\\/t.co\\/dnRLuXpMcS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dnRLuXpMcS\",\"expanded_url\":\"http:\\/\\/www.naijarealitynews.com\",\"display_url\":\"naijarealitynews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":948,\"friends_count\":2894,\"listed_count\":5,\"created_at\":\"Thu Nov 14 17:14:25 +0000 2013\",\"favourites_count\":940,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4998,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367825090117853187\\/tgdrXgmm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367825090117853187\\/tgdrXgmm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2180916851\\/1652413249\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4591\":{\"id\":1320431678,\"id_str\":\"1320431678\",\"name\":\"Igbuku christian mamus\",\"screen_name\":\"SirIgbuku\",\"location\":\"Nigeria\",\"description\":\"Am a certified librarian,a businessman also a politician, in all Christ is my priority\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":244,\"friends_count\":332,\"listed_count\":1,\"created_at\":\"Mon Apr 01 14:14:37 +0000 2013\",\"favourites_count\":115,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":344,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551277807082291200\\/5ztE_JOC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551277807082291200\\/5ztE_JOC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320431678\\/1642064501\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4592\":{\"id\":1496492388910571532,\"id_str\":\"1496492388910571532\",\"name\":\"bgrconnect\",\"screen_name\":\"bgrconnect\",\"location\":\"Lekki, Nigeria\",\"description\":\"Banksome Global Resources delivers high quality & energy sufficient buildings and exceptional projection management services on our construction projects.\",\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UAR1971Mcu\",\"expanded_url\":\"http:\\/\\/www.banksomegroup.com\",\"display_url\":\"banksomegroup.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Wed Feb 23 14:34:17 +0000 2022\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496517937632616453\\/PQzspiFW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4593\":{\"id\":1375008658246008833,\"id_str\":\"1375008658246008833\",\"name\":\"Ability\",\"screen_name\":\"ability_etuk\",\"location\":\"lekki\",\"description\":\"Digital marketer|SEO Specialist|Graphic designer| music lover\\ud83c\\udfb8\\ud83c\\udfb8\\ud83c\\udfb6\\n\\ud83d\\ude0bno mind the bio\\ud83e\\udd2aI like enjoyment too\",\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ATGE7g1HNK\",\"expanded_url\":\"http:\\/\\/www.rapigrowth.com.ng\",\"display_url\":\"rapigrowth.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":87,\"listed_count\":0,\"created_at\":\"Thu Mar 25 08:56:39 +0000 2021\",\"favourites_count\":88,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553147825722105856\\/Nq1348De_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1375008658246008833\\/1659134272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4594\":{\"id\":2409715205,\"id_str\":\"2409715205\",\"name\":\"Odipkreations\",\"screen_name\":\"odipkreations\",\"location\":\"Abuja\",\"description\":\"You can get the best when u trust us to give u the best. This is odip kreation where ur dreams abt cakes become a reality. Pin:2BB356AA. Call 08064077401\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88,\"friends_count\":168,\"listed_count\":0,\"created_at\":\"Fri Mar 14 09:12:08 +0000 2014\",\"favourites_count\":332,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":520,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1259999982071005187\\/L8mqai9g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1259999982071005187\\/L8mqai9g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2409715205\\/1478247326\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4595\":{\"id\":250545055,\"id_str\":\"250545055\",\"name\":\"NaijaBet.com\",\"screen_name\":\"NaijaBet\",\"location\":\"Nigeria\",\"description\":\"NaijaBet the choice platform of Nigeria's sophisticated gamers. Fastest Payout in Nigeria 0 - 12hrs!\\n\\nNa matter wey no concern us, we wan dey put mouth now!\",\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/UW9oJ2TCOB\",\"expanded_url\":\"https:\\/\\/NaijaBet.com\",\"display_url\":\"NaijaBet.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24271,\"friends_count\":4947,\"listed_count\":32,\"created_at\":\"Fri Feb 11 09:16:04 +0000 2011\",\"favourites_count\":3679,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38438,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1213109922789052417\\/fJivhlmp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/250545055\\/1653891517\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4596\":{\"id\":1060922787425120256,\"id_str\":\"1060922787425120256\",\"name\":\"Beejayspecial_comedy\",\"screen_name\":\"BEEJAYSPECIAL_C\",\"location\":\"Osun\",\"description\":\"I\\u2019m a student of Federal university of technology minna Niger state ( Mathematics education ) ACTOR | COMEDIAN | EDITOR #support your boi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":359,\"listed_count\":0,\"created_at\":\"Fri Nov 09 15:51:18 +0000 2018\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":214,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455286420348702721\\/rRCsl7vj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455286420348702721\\/rRCsl7vj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1060922787425120256\\/1655450952\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4597\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4598\":{\"id\":1282445934065057792,\"id_str\":\"1282445934065057792\",\"name\":\"soulflows fyneface\",\"screen_name\":\"soulflows_F\",\"location\":\"Nigeria\",\"description\":\"Husband| TV Host|Coach| political Analyst|word in 60 seconds|voice over artist|\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1468,\"friends_count\":1444,\"listed_count\":0,\"created_at\":\"Sun Jul 12 22:45:21 +0000 2020\",\"favourites_count\":14051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":417,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551313383143661570\\/tUC9N3Q4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282445934065057792\\/1594594508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4599\":{\"id\":927116579116118016,\"id_str\":\"927116579116118016\",\"name\":\"dubizSenju\",\"screen_name\":\"dubiz_senju\",\"location\":\"Nigeria \",\"description\":\"my name is dubem Victor \\nI'm a digital comic artist. \\nI'm the author of the webcomic:Dream\\nI also make digital portraits and posters,\\nI take commissions\",\"url\":\"https:\\/\\/t.co\\/11ZVKTYAi4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/11ZVKTYAi4\",\"expanded_url\":\"http:\\/\\/www.dreamseries.webcomic.ws\",\"display_url\":\"dreamseries.webcomic.ws\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":90,\"friends_count\":238,\"listed_count\":1,\"created_at\":\"Sun Nov 05 10:13:12 +0000 2017\",\"favourites_count\":151,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529451360638361603\\/1LOk23J7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529451360638361603\\/1LOk23J7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/927116579116118016\\/1589452669\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4600\":{\"id\":1154339523800834048,\"id_str\":\"1154339523800834048\",\"name\":\"MIMI NATION\",\"screen_name\":\"Mimi_Nation22\",\"location\":\"Abuja, Nigeria\",\"description\":\"A visual artist, I paint with gold and silver. Listed NFT's for sale to invest in my art and community.\\n\\nPlease collect my Arts via the link below. Thanks\",\"url\":\"https:\\/\\/t.co\\/mBshyztJ1T\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mBshyztJ1T\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/mimi-nation-collection\",\"display_url\":\"opensea.io\\/collection\\/mim\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":119,\"listed_count\":0,\"created_at\":\"Thu Jul 25 10:36:03 +0000 2019\",\"favourites_count\":210,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":155,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534137134730338304\\/dIP_rZcK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534137134730338304\\/dIP_rZcK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1154339523800834048\\/1654601771\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4601\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4602\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4603\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4604\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4605\":{\"id\":1284899700571856896,\"id_str\":\"1284899700571856896\",\"name\":\"Efizzy White\\u26a1\",\"screen_name\":\"efizzywhite01\",\"location\":\"Kogi, Nigeria\",\"description\":\"The things that make me different \\u2764\\ufe0fare the things that make me who I am \\ud83d\\udcaa\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1vpVkhgUq4\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1gSUy2K0C4yYjzmmh9XuGg\",\"display_url\":\"youtube.com\\/channel\\/UC1gSU\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1143,\"friends_count\":4034,\"listed_count\":0,\"created_at\":\"Sun Jul 19 17:17:53 +0000 2020\",\"favourites_count\":691,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":226,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556040458421342211\\/1vSemTIA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284899700571856896\\/1659823864\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4606\":{\"id\":1136514277160960000,\"id_str\":\"1136514277160960000\",\"name\":\"Savage Lord\\ud83d\\udda4\\ud83d\\udc9b\",\"screen_name\":\"EtzlordA\",\"location\":\"Lagos, Nigeria\",\"description\":\"Pr || Graphic Artist || Brand Influencer || Web Designer!\\ud83d\\uddb1\\nNo bad vibe. \\ud83d\\udc95\\n\\ud83c\\udf8a Sagittarius \\ud83c\\udf8a\\nIg: @etzlord_savage \\nChat\\ud83e\\udd4f: https:\\/\\/t.co\\/Ujf1UJtPDi\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ujf1UJtPDi\",\"expanded_url\":\"https:\\/\\/wa.me\\/DM\",\"display_url\":\"wa.me\\/DM\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":489,\"friends_count\":681,\"listed_count\":0,\"created_at\":\"Thu Jun 06 06:04:53 +0000 2019\",\"favourites_count\":8566,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2893,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1404620576728178688\\/4n5DGtue_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1404620576728178688\\/4n5DGtue_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4607\":{\"id\":621221632,\"id_str\":\"621221632\",\"name\":\"sojex\",\"screen_name\":\"BabatundeSoji\",\"location\":\"Ifo ogun state Nigeria\",\"description\":\"Crop production and Animal science consultant\\/ Soil scientist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259,\"friends_count\":1073,\"listed_count\":0,\"created_at\":\"Thu Jun 28 18:49:33 +0000 2012\",\"favourites_count\":2985,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532838920546820096\\/v3Igpb-k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532838920546820096\\/v3Igpb-k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4608\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4609\":{\"id\":769255514,\"id_str\":\"769255514\",\"name\":\"KRAZY_BANKER COMEDY\",\"screen_name\":\"krazy_bankr\",\"location\":\"LAGOS\",\"description\":\"ALL INVOLVED\",\"url\":\"https:\\/\\/t.co\\/FPcqVsoffp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FPcqVsoffp\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCCKz5deQyvmVySCdHl5PkIg\",\"display_url\":\"youtube.com\\/channel\\/UCCKz5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Mon Aug 20 10:18:47 +0000 2012\",\"favourites_count\":170,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":100,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550642793848135680\\/Md4Re7hl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550642793848135680\\/Md4Re7hl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/769255514\\/1658537038\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4610\":{\"id\":960046854,\"id_str\":\"960046854\",\"name\":\"onos\",\"screen_name\":\"Onos_bee\",\"location\":\"lagos\",\"description\":\"3D artist| VFX| Man utd Fan\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":26,\"friends_count\":71,\"listed_count\":0,\"created_at\":\"Tue Nov 20 08:54:23 +0000 2012\",\"favourites_count\":94,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":203,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1376942537596932097\\/yzreRkoO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1376942537596932097\\/yzreRkoO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/960046854\\/1656350386\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4611\":{\"id\":1173633660316213248,\"id_str\":\"1173633660316213248\",\"name\":\"Maurice Udedike\",\"screen_name\":\"dunuotubelu\",\"location\":\"Lagos, Nigeria\",\"description\":\"like exploring\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":670,\"friends_count\":1332,\"listed_count\":0,\"created_at\":\"Mon Sep 16 16:24:35 +0000 2019\",\"favourites_count\":17560,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15288,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375739445144662017\\/pFrS8QON_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4612\":{\"id\":1342889742501896192,\"id_str\":\"1342889742501896192\",\"name\":\"Official Wiseking\",\"screen_name\":\"WiseKingoffici1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Super star wise king unsign Artist, for Booking,09055186154, Email wisebaba25@gmail.com @davido @Olamide @emoney @Rihanna @wisekingoffici1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":350,\"friends_count\":2157,\"listed_count\":1,\"created_at\":\"Sat Dec 26 17:47:40 +0000 2020\",\"favourites_count\":945,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":956,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540123728041988098\\/DpOvjZ1d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1342889742501896192\\/1655718497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4613\":{\"id\":841787565669814272,\"id_str\":\"841787565669814272\",\"name\":\"No 1 Kitchen And Household Store\",\"screen_name\":\"Highkay_Store\",\"location\":\"Ogun, Nigeria\",\"description\":\"\\ud83d\\udcaf Online Store\\nE - Commerce\\nMini Importation\\nProcurement Agent\\nDigital Marketing\\nFarmer (Plantation)\",\"url\":\"https:\\/\\/t.co\\/WM7f5j9KtM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WM7f5j9KtM\",\"expanded_url\":\"http:\\/\\/www.highkaystore.website\",\"display_url\":\"highkaystore.website\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6903,\"friends_count\":6274,\"listed_count\":2,\"created_at\":\"Tue Mar 14 23:06:10 +0000 2017\",\"favourites_count\":132755,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":90901,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482615880982880258\\/Icz6A_sZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482615880982880258\\/Icz6A_sZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/841787565669814272\\/1642317761\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4614\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4615\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4616\":{\"id\":1313189080549728257,\"id_str\":\"1313189080549728257\",\"name\":\"iammfon_\",\"screen_name\":\"brownsonmfon5\",\"location\":\"Abuja, Nigeria\",\"description\":\"Comedian\\nNo 1 Akwa Ibom Boy\\/Calabar\\/\\nBooking\\/Advert\\/\\nSend a Dm\\ud83d\\udce9\\nbrownsonmfon5@gmail.com\",\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jt7XX5PkZJ\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC-Xb_39aeQInPhxIkBVwpYg\",\"display_url\":\"youtube.com\\/channel\\/UC-Xb_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":212,\"listed_count\":0,\"created_at\":\"Mon Oct 05 18:48:02 +0000 2020\",\"favourites_count\":219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":190,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554709247891488770\\/LRPctv52_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4617\":{\"id\":721409786,\"id_str\":\"721409786\",\"name\":\"Kindy\",\"screen_name\":\"raphaelkindy\",\"location\":\"Nigeria\",\"description\":\"A tech lover\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":813,\"listed_count\":2,\"created_at\":\"Sat Jul 28 03:33:50 +0000 2012\",\"favourites_count\":1443,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550701008698892288\\/LOJ5oi3n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550701008698892288\\/LOJ5oi3n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/721409786\\/1646459272\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4618\":{\"id\":881482790415609856,\"id_str\":\"881482790415609856\",\"name\":\"Humanaidng\",\"screen_name\":\"humanaidng\",\"location\":\"Abuja, Nigeria\",\"description\":\"We are professionals committed to promoting child education, health and empowering mothers for sustainable child care.\",\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZTVUmJCBft\",\"expanded_url\":\"http:\\/\\/www.humanaid.org.ng\",\"display_url\":\"humanaid.org.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":6,\"listed_count\":0,\"created_at\":\"Sun Jul 02 12:00:49 +0000 2017\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1142308654655389697\\/erQr9gLL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/881482790415609856\\/1561182580\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4619\":{\"id\":921181314400661504,\"id_str\":\"921181314400661504\",\"name\":\"ONOGWU Muhammed\",\"screen_name\":\"Galacticus_O\",\"location\":\"Lokoja, Nigeria\",\"description\":\"Technologist, Journalist, Chief Press Secretary to @OfficialGYBKogi\",\"url\":\"https:\\/\\/t.co\\/TQgtwSqZ62\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TQgtwSqZ62\",\"expanded_url\":\"http:\\/\\/www.kogistate.gov.ng\",\"display_url\":\"kogistate.gov.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9667,\"friends_count\":1415,\"listed_count\":14,\"created_at\":\"Fri Oct 20 01:08:34 +0000 2017\",\"favourites_count\":2891,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1940,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538590533899243520\\/eFQreVIo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538590533899243520\\/eFQreVIo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/921181314400661504\\/1655824853\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4620\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4621\":{\"id\":1573449217,\"id_str\":\"1573449217\",\"name\":\"Ben diamond\",\"screen_name\":\"Llyodben56\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"that nice guy\",\"url\":\"https:\\/\\/t.co\\/WgrLPO3PgL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WgrLPO3PgL\",\"expanded_url\":\"http:\\/\\/Facebook.com\\/llyodben\",\"display_url\":\"Facebook.com\\/llyodben\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":245,\"listed_count\":1,\"created_at\":\"Sat Jul 06 18:52:48 +0000 2013\",\"favourites_count\":802,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1342165822568075266\\/zuLRVzRV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1342165822568075266\\/zuLRVzRV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1573449217\\/1373146068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4622\":{\"id\":1531909791735500800,\"id_str\":\"1531909791735500800\",\"name\":\"Fleming Airunugba\",\"screen_name\":\"Voiceof_Fleming\",\"location\":\"Kaduna, Nigeria\",\"description\":\"Web3 Degen | Pro Copywriter\\/Podcaster for Blockchain, Crypto, NFT, & Metaverse Projects | Host, Blockchain Central Podcast on Spotify & Apple podcast.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":329,\"listed_count\":1,\"created_at\":\"Wed Jun 01 08:05:47 +0000 2022\",\"favourites_count\":47,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":84,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531910366686584833\\/LEzWsJLb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1531909791735500800\\/1654456667\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4623\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4624\":{\"id\":1537878267587227649,\"id_str\":\"1537878267587227649\",\"name\":\"This_is_gabrieltv\",\"screen_name\":\"gabriel1tv\",\"location\":\"Nigeria\",\"description\":\"\\ud83c\\uddf3\\ud83c\\uddec v \\ud83d\\ude02a \\ud83d\\ude02w \\ud83d\\ude02u \\ud83d\\ude02l \\ud83d\\ude02e \\ud83d\\ude02n \\ud83d\\ude02c \\ud83d\\ude02e \\ud83c\\uddf3\\ud83c\\uddec\",\"url\":\"https:\\/\\/t.co\\/PEK959NwkO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PEK959NwkO\",\"expanded_url\":\"https:\\/\\/gabriel1tv.blogspot.com\\/\",\"display_url\":\"gabriel1tv.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":14,\"friends_count\":43,\"listed_count\":1,\"created_at\":\"Fri Jun 17 19:22:36 +0000 2022\",\"favourites_count\":253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":98,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537879830699462658\\/m4IIceuI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537879830699462658\\/m4IIceuI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537878267587227649\\/1655495903\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4625\":{\"id\":1396333284,\"id_str\":\"1396333284\",\"name\":\"ABCORNERSTONE\",\"screen_name\":\"Fatheraby\",\"location\":\"Osogbo\",\"description\":\"Vocalcare\\/ Choir Capacity Coach with Singing Students (Individuals&Groups) in 4Continents also a Music Minister\\/ Women Empowerment Advocate\\/ SmartMen Forum Host\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":883,\"friends_count\":422,\"listed_count\":2,\"created_at\":\"Thu May 02 05:47:21 +0000 2013\",\"favourites_count\":960,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3587,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523681026949660673\\/WCBZxACd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396333284\\/1645251645\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4626\":{\"id\":245215938,\"id_str\":\"245215938\",\"name\":\"Ugoala Justice Uche\",\"screen_name\":\"just_urch\",\"location\":\"Nigeria\",\"description\":\"We make the Best Peanuts\\/\\n\\n IG: @greatfoodsng\\n\\nJust about anyone can be Financially Independent\",\"url\":\"https:\\/\\/t.co\\/3mhDtNxR2q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3mhDtNxR2q\",\"expanded_url\":\"https:\\/\\/ucheugoala.blogspot.com.ng\\/\",\"display_url\":\"ucheugoala.blogspot.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":536,\"friends_count\":2035,\"listed_count\":3,\"created_at\":\"Mon Jan 31 04:34:34 +0000 2011\",\"favourites_count\":8563,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10444,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1290009597147742210\\/N51YwzAa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1290009597147742210\\/N51YwzAa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/245215938\\/1621753201\",\"profile_link_color\":\"FF691F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4627\":{\"id\":1016809643157458946,\"id_str\":\"1016809643157458946\",\"name\":\"Lloyd Manasseh E. Agbonlahor\\ud83d\\udc41\\ufe0f\\u200d\\ud83d\\udde8\\ufe0f\",\"screen_name\":\"Lloyd_Manasseh\",\"location\":\"Abuja, Nigeria\",\"description\":\"\\u2206 Head of Mission - The GreenLabel Africa\\n\\u2206 Special Youth Envoy - New Africa-France Summit\\n\\u2206 Refugees, IDPs, Returnees & Stateless Persons Advocate\",\"url\":\"https:\\/\\/t.co\\/7p3YBMcuJX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7p3YBMcuJX\",\"expanded_url\":\"http:\\/\\/Thegreenlabelafrica.org\",\"display_url\":\"Thegreenlabelafrica.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1008,\"friends_count\":334,\"listed_count\":0,\"created_at\":\"Tue Jul 10 22:21:25 +0000 2018\",\"favourites_count\":5577,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1519,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551598324561727490\\/BFCpc2Pk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551598324561727490\\/BFCpc2Pk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1016809643157458946\\/1578265720\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4628\":{\"id\":1439122349962399751,\"id_str\":\"1439122349962399751\",\"name\":\"Soumya\",\"screen_name\":\"subtle_soumya\",\"location\":\"Assam\",\"description\":\"Just a random guy with some mixed opinions \\ud83d\\ude10\\ud83c\\udf42\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Sat Sep 18 07:01:29 +0000 2021\",\"favourites_count\":86,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460455741521686532\\/TyyXVhEc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460455741521686532\\/TyyXVhEc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1439122349962399751\\/1631948939\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4629\":{\"id\":1546596557239328769,\"id_str\":\"1546596557239328769\",\"name\":\"Oyeseeker\\ud83d\\udc99\",\"screen_name\":\"OyeseekerSamuel\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12,\"friends_count\":299,\"listed_count\":0,\"created_at\":\"Mon Jul 11 20:46:24 +0000 2022\",\"favourites_count\":205,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546596792938233859\\/YcEuSiOt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546596792938233859\\/YcEuSiOt_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4630\":{\"id\":1439122349962399751,\"id_str\":\"1439122349962399751\",\"name\":\"Soumya\",\"screen_name\":\"subtle_soumya\",\"location\":\"Assam\",\"description\":\"Just a random guy with some mixed opinions \\ud83d\\ude10\\ud83c\\udf42\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Sat Sep 18 07:01:29 +0000 2021\",\"favourites_count\":86,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1460455741521686532\\/TyyXVhEc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1460455741521686532\\/TyyXVhEc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1439122349962399751\\/1631948939\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4631\":{\"id\":1482356556813545473,\"id_str\":\"1482356556813545473\",\"name\":\"Nigeria youths for Peter Obi\",\"screen_name\":\"peterobimandate\",\"location\":\"Abuja, Nigeria\",\"description\":\"Everything Peter Obi\\/\\/Update Peter Obi...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237,\"friends_count\":225,\"listed_count\":3,\"created_at\":\"Sat Jan 15 14:18:54 +0000 2022\",\"favourites_count\":301,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":286,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555456179433869312\\/ibqhDc6e_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1482356556813545473\\/1659438195\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4632\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4633\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4634\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4635\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4636\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4637\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4638\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4639\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4640\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4641\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4642\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4643\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4644\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4645\":{\"id\":1542230669337698305,\"id_str\":\"1542230669337698305\",\"name\":\"Abraham Ojehomome Airunugba \\ud83e\\udd8d\\ud83e\\udd8d\\ud83e\\udd8d\\ud83e\\udd8d\",\"screen_name\":\"abraham_airs\",\"location\":\"Lagos, Nigeria\",\"description\":\"Introvert.#Hope #Kindness #Love #Physiologist. #CriticalThinking.#Wellness.A @Globalcitizen #ClimateJustice.#BiomassEnergy.#Food @Afrofusion @Burnaboy Jugs.A \\ud83d\\udc8e\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":285,\"friends_count\":1346,\"listed_count\":0,\"created_at\":\"Wed Jun 29 19:37:25 +0000 2022\",\"favourites_count\":678,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":745,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555800490113470466\\/p8VdpKMN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555800490113470466\\/p8VdpKMN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1542230669337698305\\/1656657085\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4646\":{\"id\":1533776242494816256,\"id_str\":\"1533776242494816256\",\"name\":\"Faiese\",\"screen_name\":\"Wright_tweet\",\"location\":\"Lagos, Nigeria\",\"description\":\"Intelligent, creative, loves good things and God fearing\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Mon Jun 06 11:43:36 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534118859153854464\\/PwAZYr9L_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534118859153854464\\/PwAZYr9L_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4647\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4648\":{\"id\":927909864004902912,\"id_str\":\"927909864004902912\",\"name\":\"Chioma Nweze\",\"screen_name\":\"ChristabelNwez1\",\"location\":\"Nigeria\",\"description\":\"Am a passionate Actor & Model.Always giving it my best https:\\/\\/t.co\\/X50GYo1RPC can email me @ christabelnweze@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X50GYo1RPC\",\"expanded_url\":\"http:\\/\\/shot.You\",\"display_url\":\"shot.You\",\"indices\":[55,78]}]}},\"protected\":false,\"followers_count\":2,\"friends_count\":33,\"listed_count\":0,\"created_at\":\"Tue Nov 07 14:45:26 +0000 2017\",\"favourites_count\":184,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":51,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1261231368304017410\\/edEduZ44_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1261231368304017410\\/edEduZ44_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4649\":{\"id\":1487177731905400837,\"id_str\":\"1487177731905400837\",\"name\":\"Daniel TemiTope Oluwarado\",\"screen_name\":\"DOluwarado\",\"location\":\"Nigeria\",\"description\":\"I am a plumber\\ud83d\\ude01\\ud83d\\udc68\\u200d\\ud83d\\udd27\\ud83d\\udc51\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":41,\"friends_count\":99,\"listed_count\":0,\"created_at\":\"Fri Jan 28 21:36:31 +0000 2022\",\"favourites_count\":12399,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":105,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1495788804057276417\\/qPPCrly2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1495788804057276417\\/qPPCrly2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487177731905400837\\/1645458941\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4650\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4651\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4652\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4653\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4654\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4655\":{\"id\":1544222356515717120,\"id_str\":\"1544222356515717120\",\"name\":\"Real_Akintola Kiks\",\"screen_name\":\"daniel_kikiowo\",\"location\":\"Lagos.\",\"description\":\"I tweet about Life, Money, humans, Clothes,Music, fashion, Football, and Sales.\\n\\nIG : Kikispecialz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":55,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Tue Jul 05 07:32:00 +0000 2022\",\"favourites_count\":5024,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545097360338046977\\/E_jpFDls_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545097360338046977\\/E_jpFDls_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1544222356515717120\\/1657214858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4656\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4657\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4658\":{\"id\":1539879975586861057,\"id_str\":\"1539879975586861057\",\"name\":\"Noah Danjuma\",\"screen_name\":\"NoahDanjuma4\",\"location\":\"Abuja, Nigeria\",\"description\":\"Social media ifluencer|Trader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":189,\"listed_count\":0,\"created_at\":\"Thu Jun 23 07:56:34 +0000 2022\",\"favourites_count\":157,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":154,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539880708168196096\\/RgbPRWrJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539879975586861057\\/1655972588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4659\":{\"id\":1490616678253801475,\"id_str\":\"1490616678253801475\",\"name\":\"I'm Kwesi\",\"screen_name\":\"Imkwesi_\",\"location\":\"Ghana\",\"description\":\"Enjoy my stressfree contents here\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":562,\"listed_count\":0,\"created_at\":\"Mon Feb 07 09:21:43 +0000 2022\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490616678253801475\\/1656956475\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4660\":{\"id\":1488673106373791749,\"id_str\":\"1488673106373791749\",\"name\":\"Ecomfavmichael\",\"screen_name\":\"olojo_michael\",\"location\":\"Lagos, Nigeria\",\"description\":\"I am Michael, a digital marketer and website developer. From social media marketing to email marketing, Shopify marketing, I have always render quality services\",\"url\":\"https:\\/\\/t.co\\/KL5g4Dt32i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KL5g4Dt32i\",\"expanded_url\":\"https:\\/\\/61f9233093b20.site123.me\\/\",\"display_url\":\"61f9233093b20.site123.me\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":192,\"listed_count\":0,\"created_at\":\"Wed Feb 02 00:38:55 +0000 2022\",\"favourites_count\":332,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":44,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542276548895686657\\/9cjT49B5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542276548895686657\\/9cjT49B5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1488673106373791749\\/1656542357\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4661\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4662\":{\"id\":1206482529181749248,\"id_str\":\"1206482529181749248\",\"name\":\"Houseofmolecules\",\"screen_name\":\"Houseofmolecule\",\"location\":\"Lagos, Nigeria\",\"description\":\"PR| Web Designer| Brand Influencer| Car Dealer\",\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"expanded_url\":\"http:\\/\\/www.houseofmolecules.com.ng\",\"display_url\":\"houseofmolecules.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":533,\"friends_count\":552,\"listed_count\":0,\"created_at\":\"Mon Dec 16 07:53:57 +0000 2019\",\"favourites_count\":688,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":400,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4663\":{\"id\":1042067054440919040,\"id_str\":\"1042067054440919040\",\"name\":\"Ochicanado_\",\"screen_name\":\"ochicanado\",\"location\":\"Lagos, Nigeria\",\"description\":\"TALENT DISCOVERER\\n* Music Promoter\\n* Branding \\n* TVHost \\n* P.R.O @Bea_mediaNLTD\\n* Etalk @Fnktvchannel #ochicanadotalent #beamedianetworkltd #Fnktv\",\"url\":\"https:\\/\\/t.co\\/HJhaQGVBVz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HJhaQGVBVz\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCjas9-gIZQEpmgJUAo-c_Vw\",\"display_url\":\"youtube.com\\/channel\\/UCjas9\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":721,\"friends_count\":672,\"listed_count\":3,\"created_at\":\"Tue Sep 18 15:05:21 +0000 2018\",\"favourites_count\":88045,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20336,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1304458545484697600\\/aK16crbu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1304458545484697600\\/aK16crbu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1042067054440919040\\/1579668143\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4664\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4665\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4666\":{\"id\":356370832,\"id_str\":\"356370832\",\"name\":\"PASTOR ELVIS O. ASORO\",\"screen_name\":\"elvisasoro\",\"location\":\"LAGOS , NIGERIA \",\"description\":\"MINISTER OF THE GOSPEL OF JESUS CHRIST AND WRITER. LEAD PASTOR, RESTORATION POWER OF GOD MINISTRY INTERNATIONAL, TRIUMPHANT. LAG. NIGERIA. I AM A WORLD CHANGER!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":175,\"friends_count\":178,\"listed_count\":4,\"created_at\":\"Tue Aug 16 19:09:18 +0000 2011\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3737,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme15\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1116801378914119680\\/VEuluFoA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/356370832\\/1450964262\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"A8C7F7\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4667\":{\"id\":2444062768,\"id_str\":\"2444062768\",\"name\":\"Ochoche David\",\"screen_name\":\"ochocheijeleche\",\"location\":\"Lagos, Nigeria\",\"description\":\"Ochoche David is a blogger, digital marketer and the founder of https:\\/\\/t.co\\/XAG1uY8piz and https:\\/\\/t.co\\/McyteMxGd5 He love helping people.\",\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GhVbmTzqcr\",\"expanded_url\":\"http:\\/\\/FingaCare.com\\/\",\"display_url\":\"FingaCare.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XAG1uY8piz\",\"expanded_url\":\"http:\\/\\/fingacare.com\",\"display_url\":\"fingacare.com\",\"indices\":[64,87]},{\"url\":\"https:\\/\\/t.co\\/McyteMxGd5\",\"expanded_url\":\"http:\\/\\/trippleinternet.com\",\"display_url\":\"trippleinternet.com\",\"indices\":[92,115]}]}},\"protected\":false,\"followers_count\":427,\"friends_count\":1022,\"listed_count\":6,\"created_at\":\"Sat Mar 29 08:44:50 +0000 2014\",\"favourites_count\":468,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1448,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529800347694338048\\/Pv5lvM7G_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2444062768\\/1642173749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4668\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4669\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4670\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4671\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4672\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4673\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4674\":{\"id\":1130686728,\"id_str\":\"1130686728\",\"name\":\"KinG_Emmy\\u00ae\\ud83d\\udd4a\\ufe0f\",\"screen_name\":\"realemmysky\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2022\\u2022Father - Husband - Family Man - Businessman - Chelsea FC - Wizkid FC - Lover of football & Music\\u2022\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":284,\"friends_count\":1109,\"listed_count\":1,\"created_at\":\"Tue Jan 29 10:46:11 +0000 2013\",\"favourites_count\":619,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1763,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555781909338267648\\/KYb0H0m3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555781909338267648\\/KYb0H0m3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1130686728\\/1659707309\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4675\":{\"id\":516450674,\"id_str\":\"516450674\",\"name\":\"Moses Kaketo\",\"screen_name\":\"mkaketo\",\"location\":\"Uganda\",\"description\":\"Circulation and distribution expert,Journalist, Marketer, Farmer, Teacher. Writer at Newz Post https:\\/\\/t.co\\/Pwkue3WOYk\",\"url\":\"https:\\/\\/t.co\\/wtGE5sC5b6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wtGE5sC5b6\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/pub\\/moses-kaketo\\/31\\/b5b\\/437\",\"display_url\":\"linkedin.com\\/pub\\/moses-kake\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Pwkue3WOYk\",\"expanded_url\":\"http:\\/\\/www.newz.ug\",\"display_url\":\"newz.ug\",\"indices\":[95,118]}]}},\"protected\":false,\"followers_count\":503,\"friends_count\":268,\"listed_count\":60,\"created_at\":\"Tue Mar 06 11:43:30 +0000 2012\",\"favourites_count\":744,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6974,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/821594492042170368\\/tsNJs3n5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/821594492042170368\\/tsNJs3n5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/516450674\\/1484718328\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4676\":{\"id\":1251231182353772546,\"id_str\":\"1251231182353772546\",\"name\":\"enricea\",\"screen_name\":\"Op2033\",\"location\":\"Uganda, Nigeria\",\"description\":\"don't mind your back let life follow\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":0,\"created_at\":\"Fri Apr 17 19:29:07 +0000 2020\",\"favourites_count\":305,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":991,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1267101419548684288\\/JQPBcEjr_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4677\":{\"id\":1518447687850508290,\"id_str\":\"1518447687850508290\",\"name\":\"Adeyemi Toluwalase\",\"screen_name\":\"i_love_buterfly\",\"location\":\"Lagos, Nigeria\",\"description\":\"I love photography. It's what i do for a living\\ud83c\\udf80\\ud83d\\udcf7. \\ni make memories\\n@boy_director is my mentor\\nI love art\\nI love butterflies\\ud83d\\ude0a\\ninstagram@am_butterfly_shot_it\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Mon Apr 25 04:32:22 +0000 2022\",\"favourites_count\":547,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1518447687850508290\\/1656815290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4678\":{\"id\":1518447687850508290,\"id_str\":\"1518447687850508290\",\"name\":\"Adeyemi Toluwalase\",\"screen_name\":\"i_love_buterfly\",\"location\":\"Lagos, Nigeria\",\"description\":\"I love photography. It's what i do for a living\\ud83c\\udf80\\ud83d\\udcf7. \\ni make memories\\n@boy_director is my mentor\\nI love art\\nI love butterflies\\ud83d\\ude0a\\ninstagram@am_butterfly_shot_it\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":35,\"friends_count\":131,\"listed_count\":0,\"created_at\":\"Mon Apr 25 04:32:22 +0000 2022\",\"favourites_count\":547,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":261,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543421479244660737\\/jIeAI60n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1518447687850508290\\/1656815290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4679\":{\"id\":1468663399013883907,\"id_str\":\"1468663399013883907\",\"name\":\"Eu_Gene\\ud83d\\uddff\\ud83c\\udde8\\ud83c\\udde6\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"eugene_iwunze\",\"location\":\"Lagos, Nigeria\",\"description\":\"If not God\\ud83e\\udd0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":37,\"friends_count\":76,\"listed_count\":0,\"created_at\":\"Wed Dec 08 19:28:04 +0000 2021\",\"favourites_count\":225,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522889237783359488\\/6kXCtDSO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522889237783359488\\/6kXCtDSO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468663399013883907\\/1651920062\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4680\":{\"id\":1423396129048309762,\"id_str\":\"1423396129048309762\",\"name\":\"LITSPYCH0\\ud83c\\udf15\\ud83c\\udf19\\u2728\",\"screen_name\":\"lit_spych0\",\"location\":\"Abuja, Nigeria\",\"description\":\"#forbesminded\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":147,\"listed_count\":0,\"created_at\":\"Thu Aug 05 21:31:14 +0000 2021\",\"favourites_count\":3336,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":162,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535691055554781185\\/Xw5hMDWA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535691055554781185\\/Xw5hMDWA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1423396129048309762\\/1648634086\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4681\":{\"id\":1351679985510187009,\"id_str\":\"1351679985510187009\",\"name\":\"Nyperri\",\"screen_name\":\"9yperri\",\"location\":\"Lagos, Nigeria\",\"description\":\"NYPERRI. artist. song writer. stage magician..... momentum Gang leader.\\nenquires info:@ 9yperri@ https:\\/\\/t.co\\/D34NhjJ9Xz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D34NhjJ9Xz\",\"expanded_url\":\"http:\\/\\/Gmail.com\",\"display_url\":\"Gmail.com\",\"indices\":[97,120]}]}},\"protected\":false,\"followers_count\":273,\"friends_count\":662,\"listed_count\":0,\"created_at\":\"Tue Jan 19 23:56:59 +0000 2021\",\"favourites_count\":972,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":153,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1379741796029304838\\/PIRPgGAb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1379741796029304838\\/PIRPgGAb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1351679985510187009\\/1613395418\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4682\":{\"id\":4106649551,\"id_str\":\"4106649551\",\"name\":\"imongan frei\",\"screen_name\":\"i_amFrei\",\"location\":\"lagos, Nigeria\",\"description\":\"Working, chocolate in color. fun to be wit..straight forward in Human. Play football nd badminton. Eat a lot cos I luv cooking\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":262,\"listed_count\":0,\"created_at\":\"Tue Nov 03 19:24:52 +0000 2015\",\"favourites_count\":193,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":307,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519818136526147584\\/_ric6_CL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519818136526147584\\/_ric6_CL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4106649551\\/1538875138\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4683\":{\"id\":949369120574844928,\"id_str\":\"949369120574844928\",\"name\":\"Matahari Organic Farms-Organisch Boerderijen\",\"screen_name\":\"Anthromarmalade\",\"location\":\"Porto Novo, BENIN\",\"description\":\"Journalism, Anthropologist, Organic Agriculture, Contemporary Art. \\nAutour des reves menaces par les fauves, on entretient le feu.\\n-Christiane Taubira-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":425,\"friends_count\":1187,\"listed_count\":7,\"created_at\":\"Fri Jan 05 19:56:51 +0000 2018\",\"favourites_count\":26799,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1149975271807868928\\/scYpHXq8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1149975271807868928\\/scYpHXq8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/949369120574844928\\/1613308090\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4684\":{\"id\":1527266123741265921,\"id_str\":\"1527266123741265921\",\"name\":\"SimmyMoses\",\"screen_name\":\"seemeon79\",\"location\":\"Akwa Ibom, Nigeria\",\"description\":\"Be nice to me\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":141,\"listed_count\":0,\"created_at\":\"Thu May 19 12:33:29 +0000 2022\",\"favourites_count\":247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534431929478565888\\/Yxd3zFea_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534431929478565888\\/Yxd3zFea_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4685\":{\"id\":1374863782992871428,\"id_str\":\"1374863782992871428\",\"name\":\"zuby blaq\\ud83d\\udcc8\\ud83d\\udcb0\",\"screen_name\":\"zubyblaq4\",\"location\":\"Nigeria\",\"description\":\"Music artist \\ud83c\\udfb6\\ud83c\\udfb6\\ud83c\\udfb6\\ud83c\\udfbc #NFT Lover ,crypto believer,NON FUNGIBLE HUMAN\\ud83d\\udcaf\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":81,\"friends_count\":604,\"listed_count\":23,\"created_at\":\"Wed Mar 24 23:21:04 +0000 2021\",\"favourites_count\":421,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1000,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529705702880591873\\/y2cN69Ww_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529705702880591873\\/y2cN69Ww_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1374863782992871428\\/1643658919\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4686\":{\"id\":1170042564688437255,\"id_str\":\"1170042564688437255\",\"name\":\"V for Vawulence\\ud83d\\uddef\",\"screen_name\":\"Ychizway\",\"location\":\"EPISODIC ESTATE\",\"description\":\"official IG account @ychizway\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":90,\"listed_count\":0,\"created_at\":\"Fri Sep 06 18:34:47 +0000 2019\",\"favourites_count\":6420,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1188,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554622227693330433\\/rC9dJa8k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554622227693330433\\/rC9dJa8k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1170042564688437255\\/1659485809\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4687\":{\"id\":593836622,\"id_str\":\"593836622\",\"name\":\"SHEFFY B\",\"screen_name\":\"sheffy_b\",\"location\":\"lagos\",\"description\":\"official account of a recording\\/performing hip hop artist.for booking and enquiries contact olajideseun83@yahoo.com,olajideseun101@gmail.com,08134061338\",\"url\":\"https:\\/\\/t.co\\/Zq2E68JCW1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Zq2E68JCW1\",\"expanded_url\":\"http:\\/\\/goo.gl\\/aCHDpB\",\"display_url\":\"goo.gl\\/aCHDpB\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":619,\"listed_count\":1,\"created_at\":\"Tue May 29 16:21:39 +0000 2012\",\"favourites_count\":676,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1148,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534470887633784833\\/1HXgnwdp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534470887633784833\\/1HXgnwdp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/593836622\\/1655346304\",\"profile_link_color\":\"E81C4F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4688\":{\"id\":798491414753579008,\"id_str\":\"798491414753579008\",\"name\":\"israelpaulonyah\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\udde6\",\"screen_name\":\"israelpaulonyah\",\"location\":\"lagos nigeria\",\"description\":\"I keep balling hard. I know am gonna get there\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":565,\"friends_count\":2721,\"listed_count\":1,\"created_at\":\"Tue Nov 15 11:42:43 +0000 2016\",\"favourites_count\":13618,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/823235368254316545\\/yUX-YI84_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/823235368254316545\\/yUX-YI84_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/798491414753579008\\/1537463320\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4689\":{\"id\":348513392,\"id_str\":\"348513392\",\"name\":\"serendipity\",\"screen_name\":\"tundeflo\",\"location\":\"Lagos, Nigeria\",\"description\":\"inspirational speaker, teacher, writer and personal financial planner\",\"url\":\"https:\\/\\/t.co\\/xuIEFFatDs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xuIEFFatDs\",\"expanded_url\":\"http:\\/\\/www.tundeofhope.com\",\"display_url\":\"tundeofhope.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":160,\"friends_count\":220,\"listed_count\":2,\"created_at\":\"Thu Aug 04 15:15:24 +0000 2011\",\"favourites_count\":994,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2353,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1154005068338909184\\/ZdDSmEhK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1154005068338909184\\/ZdDSmEhK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/348513392\\/1384270344\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4690\":{\"id\":1395760548915068933,\"id_str\":\"1395760548915068933\",\"name\":\"APOSTLE GODWIN OCHIJE MICHAEL\",\"screen_name\":\"GodwinOchije\",\"location\":\"Federal Capital Territory, Nig\",\"description\":\"An Apostle of Christ to the nation's of the earth..\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":37,\"listed_count\":0,\"created_at\":\"Fri May 21 15:17:50 +0000 2021\",\"favourites_count\":25,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545137227394605056\\/OxJpAA9k_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4691\":{\"id\":4834659045,\"id_str\":\"4834659045\",\"name\":\"IT NEWS NIGERIA\",\"screen_name\":\"itnewsnigeria1\",\"location\":\"Lagos, Nigeria\",\"description\":\"IT NEWS NIGERIA is a digital news platform promoting businesses, innovation, Fintechs, and start-ups. \\nThe future is online...\",\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tlME28yo6M\",\"expanded_url\":\"https:\\/\\/www.itnewsnigeria.ng\",\"display_url\":\"itnewsnigeria.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1001,\"friends_count\":4713,\"listed_count\":5,\"created_at\":\"Fri Jan 22 09:39:04 +0000 2016\",\"favourites_count\":830,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3468,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1217409244603043841\\/G3Irn5vs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4834659045\\/1489702799\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4692\":{\"id\":1553580006978224128,\"id_str\":\"1553580006978224128\",\"name\":\"Raymond Digital\",\"screen_name\":\"RaymondDigital2\",\"location\":\"Nigeria\",\"description\":\"Hello, I am a Web\\/E-commerce Developer and Author, I offer quality gigs for Etsy, Shopify, Wix, Redbubble, Amazon, Wattpad. I look forward to working with you\",\"url\":\"https:\\/\\/t.co\\/Ms3tOCdH9s\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ms3tOCdH9s\",\"expanded_url\":\"http:\\/\\/www.fiverr.com\\/raymonddigital\",\"display_url\":\"fiverr.com\\/raymonddigital\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":140,\"listed_count\":0,\"created_at\":\"Sun Jul 31 03:15:42 +0000 2022\",\"favourites_count\":15,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553586679516127232\\/FVPdCgQc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553586679516127232\\/FVPdCgQc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553580006978224128\\/1659238909\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4693\":{\"id\":770821664250757124,\"id_str\":\"770821664250757124\",\"name\":\"Godswill Asuquo\",\"screen_name\":\"Gafexian_Zone\",\"location\":\"Nigeria\",\"description\":\"Pencil and biro Artist | Graphic designer | Architect | Chelsea FC | Lover of classical music | Deo ac veritati\",\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WaHFjH1UFP\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/gafexianzone\",\"display_url\":\"facebook.com\\/gafexianzone\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":61,\"friends_count\":591,\"listed_count\":0,\"created_at\":\"Wed Aug 31 03:13:00 +0000 2016\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":107,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553767823981395969\\/PeZfmi4D_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4694\":{\"id\":946298234804285440,\"id_str\":\"946298234804285440\",\"name\":\"KellyWhyte\",\"screen_name\":\"KellyWhyte18\",\"location\":\"Lagos, Nigeria\",\"description\":\"Model Love fashion ChopLifeGang Instagram @kellywhyte16 Tiktok @kellywhyte8\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":866,\"friends_count\":886,\"listed_count\":0,\"created_at\":\"Thu Dec 28 08:34:15 +0000 2017\",\"favourites_count\":19762,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2464,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496768973031026689\\/4uY5VeUv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496768973031026689\\/4uY5VeUv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/946298234804285440\\/1631347438\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4695\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4696\":{\"id\":2471440877,\"id_str\":\"2471440877\",\"name\":\"UrbanDistrictng\",\"screen_name\":\"Urbandistrictng\",\"location\":\"33A, Moore Road, Yaba. \",\"description\":\"Gastropub, Vendor for Festivals, Caterers \\nand chill out spot\",\"url\":\"https:\\/\\/t.co\\/PkZtYQgitR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PkZtYQgitR\",\"expanded_url\":\"https:\\/\\/goo.gl\\/maps\\/7mzVqnvgxhH2\",\"display_url\":\"goo.gl\\/maps\\/7mzVqnvgx\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":148,\"friends_count\":159,\"listed_count\":0,\"created_at\":\"Wed Apr 09 10:57:44 +0000 2014\",\"favourites_count\":30,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/642680099263877120\\/fbXrggQ0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/642680099263877120\\/fbXrggQ0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2471440877\\/1442061819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4697\":{\"id\":307931586,\"id_str\":\"307931586\",\"name\":\"Lawrence Ehilegbu\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"lawehilegbu\",\"location\":\"Lagos, Nigeria\",\"description\":\"Entrepreneur & SME Facilitator. Content Creator. Baby Diaper Dealer.\\nOBIdient Nigerian!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":876,\"friends_count\":625,\"listed_count\":16,\"created_at\":\"Mon May 30 14:58:42 +0000 2011\",\"favourites_count\":20073,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":15064,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544070096938835977\\/5Bhn-TfA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544070096938835977\\/5Bhn-TfA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/307931586\\/1658378382\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4698\":{\"id\":1126018021288480768,\"id_str\":\"1126018021288480768\",\"name\":\"Skillerdo superstar\",\"screen_name\":\"skillerdo\",\"location\":\"Lekki\",\"description\":\"I'm de man skillerdo Bae\\ud83c\\udf7e\\\" romantical i sing for yo..\\\"pose for de picture\\\"\\ud83d\\udcf8....@ https:\\/\\/t.co\\/N8Kq1ZLCJp\\nWhatsapp\\/Call me on ma +2348164705278\",\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/N8Kq1ZLCJp\",\"expanded_url\":\"http:\\/\\/www.reverbnation.com\\/ceekayskillerdo\",\"display_url\":\"reverbnation.com\\/ceekayskillerdo\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":45,\"friends_count\":59,\"listed_count\":0,\"created_at\":\"Wed May 08 06:56:31 +0000 2019\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":401,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553841946992562176\\/Xkk2GUOK_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4699\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4700\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4701\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4702\":{\"id\":1548028783768190976,\"id_str\":\"1548028783768190976\",\"name\":\"Therealcasey\",\"screen_name\":\"therealcasey40\",\"location\":\"Victoria Island, Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":70,\"listed_count\":0,\"created_at\":\"Fri Jul 15 19:36:54 +0000 2022\",\"favourites_count\":127,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":117,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548028948604338177\\/tIUKJeow_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548028948604338177\\/tIUKJeow_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1548028783768190976\\/1658740527\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4703\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4704\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4705\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4706\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4707\":{\"id\":1546440944207151106,\"id_str\":\"1546440944207151106\",\"name\":\"Os Steve\",\"screen_name\":\"OsStevegivethem\",\"location\":\"Nigeria\",\"description\":\"Nigerian Music Artist, rapper, influencer.\\nbookings @ossteve123@gmail.com\\nor WhatsApp @ 234 - 08135683140\",\"url\":\"https:\\/\\/t.co\\/hRGeysqlj5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hRGeysqlj5\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/os-steve\\/song\\/19407190\",\"display_url\":\"audiomack.com\\/os-steve\\/song\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Mon Jul 11 10:28:04 +0000 2022\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546441184830279680\\/c22EMg88_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546441184830279680\\/c22EMg88_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4708\":{\"id\":1236383363444981760,\"id_str\":\"1236383363444981760\",\"name\":\"Readone\",\"screen_name\":\"Readone_001\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"so simple and easy going....\",\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nfmtspBPRS\",\"expanded_url\":\"http:\\/\\/nil.com\",\"display_url\":\"nil.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":215,\"listed_count\":0,\"created_at\":\"Sat Mar 07 20:09:19 +0000 2020\",\"favourites_count\":626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":357,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236384099562029061\\/uHvAQ1KP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4709\":{\"id\":1554220246986268674,\"id_str\":\"1554220246986268674\",\"name\":\"Legit Gadgets\",\"screen_name\":\"legit_gadgets\",\"location\":\"Minna, Nigeria\",\"description\":\"Nationwide delivery iPhone, Samsung, MacBook. I buy, I sell, I swap \\ud83d\\udcf1\\ud83d\\udcbb Higher quality at affordable rates \\ud83d\\udcb0\\ud83e\\udd11 chat or call \\u260e\\ufe0f 08037798175 for business \\ud83e\\udd1d\\ud83d\\ude47\\ud83c\\udffd\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":52,\"friends_count\":268,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:39:26 +0000 2022\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554221748932993025\\/6azwBNsd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554220246986268674\\/1659391311\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4710\":{\"id\":588966961,\"id_str\":\"588966961\",\"name\":\"Kapital FM Abuja 92.9\",\"screen_name\":\"kapital929\",\"location\":\"Abuja, Nigeria\",\"description\":\"Official Twitter handle of 92.9 KapitalFM Abuja, The Station that Rocks! Follow us for interesting and informative tweets. IG: kapital929\",\"url\":\"https:\\/\\/t.co\\/FtTU9YFiKL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/FtTU9YFiKL\",\"expanded_url\":\"http:\\/\\/www.kapital929.fm\",\"display_url\":\"kapital929.fm\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5295,\"friends_count\":340,\"listed_count\":46,\"created_at\":\"Thu May 24 08:50:15 +0000 2012\",\"favourites_count\":912,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":43101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/643490743785529344\\/nft4-pKN_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/643490743785529344\\/nft4-pKN_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/588966961\\/1602486140\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4711\":{\"id\":1282943999393894402,\"id_str\":\"1282943999393894402\",\"name\":\"Teacher Chike\",\"screen_name\":\"teacherchike1\",\"location\":\"Abuja, Nigeria\",\"description\":\"Biology Teacher ||\\nMotivational Speaker ||\\nContent Creator ||\\nTeens Coach || \\nChildren Evangelist ||\\nAmazon KDP Publisher\",\"url\":\"https:\\/\\/t.co\\/kMStY8t2JQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kMStY8t2JQ\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/channel\\/UCvA-qOZYQgCVlLaHOcmcQsw\",\"display_url\":\"m.youtube.com\\/channel\\/UCvA-q\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":199,\"friends_count\":88,\"listed_count\":0,\"created_at\":\"Tue Jul 14 07:44:34 +0000 2020\",\"favourites_count\":290,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":715,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1289408100152348673\\/78WDrL-g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1289408100152348673\\/78WDrL-g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282943999393894402\\/1657570252\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4712\":{\"id\":1188467539388571648,\"id_str\":\"1188467539388571648\",\"name\":\"Anya_Nyako\\u2606\",\"screen_name\":\"Anya_Nyako2505\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Jeremiah 29:11 \\nSCD (Sickle Cell Disease) Survivor \\ud83d\\udcaa\\ud83c\\udfff\\nSCD Advocate.\\nWomen are no longer meant to sit still and look pretty - We are meant to lead empires...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3045,\"friends_count\":4407,\"listed_count\":5,\"created_at\":\"Sun Oct 27 14:48:57 +0000 2019\",\"favourites_count\":47035,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73348,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1188467539388571648\\/1655657592\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4713\":{\"id\":1500182314218934276,\"id_str\":\"1500182314218934276\",\"name\":\"Louis Prinzy\",\"screen_name\":\"louis_prinzy\",\"location\":\"Port Harcourt \",\"description\":\"TurnLifeEazI\",\"url\":\"https:\\/\\/t.co\\/bJrmVAXuV5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bJrmVAXuV5\",\"expanded_url\":\"https:\\/\\/whatsapp.com\\/dl\\/\",\"display_url\":\"whatsapp.com\\/dl\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":35,\"listed_count\":1,\"created_at\":\"Sat Mar 05 18:52:21 +0000 2022\",\"favourites_count\":65,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":125,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1500182699348267016\\/P7eGSOiJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1500182699348267016\\/P7eGSOiJ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4714\":{\"id\":1363675202224275456,\"id_str\":\"1363675202224275456\",\"name\":\"Goodboy OSH\",\"screen_name\":\"continentalkid_\",\"location\":\"Abuja, Nigeria\",\"description\":\"continental\\ud83c\\udf0d| music promoter| NFT artist \\n\\nEntertainment industry Freak\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":112,\"friends_count\":216,\"listed_count\":0,\"created_at\":\"Mon Feb 22 02:21:47 +0000 2021\",\"favourites_count\":2154,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1602,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546844981750546435\\/0oIuFuh9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546844981750546435\\/0oIuFuh9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1363675202224275456\\/1657547508\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4715\":{\"id\":1261182154786115588,\"id_str\":\"1261182154786115588\",\"name\":\"sirvee\",\"screen_name\":\"Sirvee101\",\"location\":\"Lagos, Nigeria\",\"description\":\"just been my self\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":84,\"friends_count\":312,\"listed_count\":0,\"created_at\":\"Fri May 15 06:30:55 +0000 2020\",\"favourites_count\":1854,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":575,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1430207459210186761\\/wkjpeB3g_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1430207459210186761\\/wkjpeB3g_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1261182154786115588\\/1629823004\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4716\":{\"id\":135608407,\"id_str\":\"135608407\",\"name\":\"Chuks E\",\"screen_name\":\"Chukyz360\",\"location\":\"Nigeria\",\"description\":\"Science and tech enthusiast. Ambivert. Sapiosexual. Pragmatic. Business oriented. Good sense of humour. Arsenal & Real Madrid fan. Pure cruise! #obidient\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":715,\"friends_count\":823,\"listed_count\":0,\"created_at\":\"Wed Apr 21 19:58:52 +0000 2010\",\"favourites_count\":22783,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3279,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545366405868134400\\/NSPSGYw4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545366405868134400\\/NSPSGYw4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4717\":{\"id\":1224193611182505985,\"id_str\":\"1224193611182505985\",\"name\":\"Lifestylegist\",\"screen_name\":\"Lifestylegist1\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Lifestylegist is dedicated to informing, entertaining, educating and inspiring vitality.\",\"url\":\"https:\\/\\/t.co\\/nsPK8KPqmn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nsPK8KPqmn\",\"expanded_url\":\"http:\\/\\/www.lifestylegist.com\",\"display_url\":\"lifestylegist.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":286,\"friends_count\":387,\"listed_count\":0,\"created_at\":\"Mon Feb 03 04:51:31 +0000 2020\",\"favourites_count\":2632,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1156,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1228995284585328640\\/3bAKXWLl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1228995284585328640\\/3bAKXWLl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224193611182505985\\/1581850283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4718\":{\"id\":1138132116183683072,\"id_str\":\"1138132116183683072\",\"name\":\"Consider This\",\"screen_name\":\"ConsiderThis19\",\"location\":\"Pacific Northwest\",\"description\":\"Wherever you go, there you are\\u2026 I\\u2019ll follow if you\\u2019re funny or have common sense. \\ud83d\\ude02 TruthSocial \\ud83c\\udf89\\ud83c\\udf89 @WhyAskWhy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":257,\"friends_count\":2406,\"listed_count\":1,\"created_at\":\"Mon Jun 10 17:13:36 +0000 2019\",\"favourites_count\":54602,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":29543,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1433640774155923464\\/cCJxn9IV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1433640774155923464\\/cCJxn9IV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1138132116183683072\\/1638674558\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4719\":{\"id\":1246713292913094666,\"id_str\":\"1246713292913094666\",\"name\":\"ZillyBoy\",\"screen_name\":\"ZOrogho\",\"location\":\"Lagos, Nigeria\",\"description\":\"No bad energy\\u2757\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1072,\"friends_count\":179,\"listed_count\":1,\"created_at\":\"Sun Apr 05 08:16:35 +0000 2020\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554588062663016459\\/iDnYXl3v_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554588062663016459\\/iDnYXl3v_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1246713292913094666\\/1659477665\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4720\":{\"id\":2920376675,\"id_str\":\"2920376675\",\"name\":\"Mukhar Nura\",\"screen_name\":\"aboki_30BG\",\"location\":\"Nigeria\",\"description\":\"I unfollow if you don't follow back\\n\\n#30BG #WRBLO\\n\\nSpread Love not hate\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\n\\nI love Prophet Muhammad S.A.W \\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":456,\"friends_count\":808,\"listed_count\":10,\"created_at\":\"Sat Dec 13 21:41:42 +0000 2014\",\"favourites_count\":19786,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8022,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514259965678170116\\/Qa3B1izw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514259965678170116\\/Qa3B1izw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2920376675\\/1591986894\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4721\":{\"id\":1543530637575032832,\"id_str\":\"1543530637575032832\",\"name\":\"success city kennel,,,,,,\",\"screen_name\":\"alabedejoseph1\",\"location\":\"Jos, Nigeria\",\"description\":\"Dog breeder, pet lover, and general domestic animal consultant, contact: 08064781867\",\"url\":\"https:\\/\\/t.co\\/XtQL3R5lH0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XtQL3R5lH0\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/2EA6K43IU\",\"display_url\":\"wa.me\\/message\\/2EA6K4\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89,\"friends_count\":317,\"listed_count\":0,\"created_at\":\"Sun Jul 03 09:43:24 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543661451612667904\\/jkhubE_r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543661451612667904\\/jkhubE_r_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4722\":{\"id\":1491201918722613249,\"id_str\":\"1491201918722613249\",\"name\":\"bring more vawlens \\ud83d\\ude02\\ud83d\\udd25\",\"screen_name\":\"Justforupdate9\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":4,\"listed_count\":0,\"created_at\":\"Wed Feb 09 00:07:13 +0000 2022\",\"favourites_count\":304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":74,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553655293481033729\\/9b89mVRn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553655293481033729\\/9b89mVRn_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4723\":{\"id\":1354217911901151232,\"id_str\":\"1354217911901151232\",\"name\":\"The Giant Source\",\"screen_name\":\"giant_source\",\"location\":\"Zaria, Nigeria \",\"description\":\"An excellent blog! We publish factual resources that has to do with news, politics, sports, and entertainment.\",\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6FQdiOkJGz\",\"expanded_url\":\"https:\\/\\/thegiantsource.com\",\"display_url\":\"thegiantsource.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":114,\"friends_count\":235,\"listed_count\":0,\"created_at\":\"Wed Jan 27 00:01:45 +0000 2021\",\"favourites_count\":439,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1319,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1465602654004940800\\/7kED5pX__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1354217911901151232\\/1630619959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4724\":{\"id\":1014631112260378624,\"id_str\":\"1014631112260378624\",\"name\":\"AL\\u00b6GB\\u00b6\\u00b6\",\"screen_name\":\"thisisalagbaa\",\"location\":\"Lagos, Nigeria\",\"description\":\"A comedian|actor|Skit maker|Compere|editor. I make creative hilarious birthday shoutout videos. I ENTERTAIN!\",\"url\":\"https:\\/\\/t.co\\/cxTbeYmvxL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cxTbeYmvxL\",\"expanded_url\":\"https:\\/\\/youtu.be\\/ePSb5MhhPzA\",\"display_url\":\"youtu.be\\/ePSb5MhhPzA\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":986,\"friends_count\":1039,\"listed_count\":1,\"created_at\":\"Wed Jul 04 22:04:42 +0000 2018\",\"favourites_count\":3708,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2838,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1391369844201771013\\/PttmU-_l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1391369844201771013\\/PttmU-_l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1014631112260378624\\/1617055190\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4725\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4812,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4726\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4727\":{\"id\":1238439806390206466,\"id_str\":\"1238439806390206466\",\"name\":\"Ibrahim A. Adepoju\",\"screen_name\":\"IbrahimAAdepoju\",\"location\":\"Nigeria\",\"description\":\"Network Administrator | Project Engineering @ehealthafrica | Co-founder @senjugloballtd\\nCountries: \\ud83c\\uddf3\\ud83c\\uddec \\ud83c\\uddec\\ud83c\\udded \\ud83c\\uddea\\ud83c\\uddf9 \\ud83c\\uddec\\ud83c\\uddfc\",\"url\":\"https:\\/\\/t.co\\/nbiPBa7JLs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nbiPBa7JLs\",\"expanded_url\":\"https:\\/\\/ibrahimaadepoju.medium.com\\/\",\"display_url\":\"ibrahimaadepoju.medium.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95,\"friends_count\":93,\"listed_count\":1,\"created_at\":\"Fri Mar 13 12:20:58 +0000 2020\",\"favourites_count\":2790,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1837,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551332268299456514\\/GhRuUDQg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551332268299456514\\/GhRuUDQg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1238439806390206466\\/1658701421\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4728\":{\"id\":1539355009585913857,\"id_str\":\"1539355009585913857\",\"name\":\"Dr. GIJATI BKVARANGA\",\"screen_name\":\"DrGijati\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hello friend i am licenced medical doctor in field of male enhancememt, come to my office in Lagos and i help you become real man with huhe acessory, cash only.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Tue Jun 21 21:10:25 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539355009585913857\\/1656527997\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4729\":{\"id\":1539355009585913857,\"id_str\":\"1539355009585913857\",\"name\":\"Dr. GIJATI BKVARANGA\",\"screen_name\":\"DrGijati\",\"location\":\"Lagos, Nigeria\",\"description\":\"Hello friend i am licenced medical doctor in field of male enhancememt, come to my office in Lagos and i help you become real man with huhe acessory, cash only.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":7,\"listed_count\":0,\"created_at\":\"Tue Jun 21 21:10:25 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":147,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542215927307112452\\/lT1FaXam_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539355009585913857\\/1656527997\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4730\":{\"id\":2787183426,\"id_str\":\"2787183426\",\"name\":\"RUM-D (oke daniel ayodeji)\",\"screen_name\":\"rum_d4u\",\"location\":\"Lagos, Nigeria\",\"description\":\"Afro-pop singer for booking +2348103613403\",\"url\":\"https:\\/\\/t.co\\/mCUJT4hlxC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mCUJT4hlxC\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/rum-d\\/song\\/rum-d-lero\",\"display_url\":\"audiomack.com\\/rum-d\\/song\\/rum\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":59,\"friends_count\":124,\"listed_count\":0,\"created_at\":\"Wed Sep 03 03:48:47 +0000 2014\",\"favourites_count\":1068,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":743,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1426456366114250753\\/doLRJ5Q9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1426456366114250753\\/doLRJ5Q9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2787183426\\/1615256652\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4731\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4732\":{\"id\":1481918920101666819,\"id_str\":\"1481918920101666819\",\"name\":\"OMO IYA SAMUUUUU\\u2764\\ufe0f\\ud83e\\udec2\\ud83c\\udf1a\",\"screen_name\":\"_omoiya_samuuuu\",\"location\":\"Nigeria\",\"description\":\"DieHard Lover of @olamide\\ud83d\\udc9b BLUES4L\\ud83d\\udc99 @chelseafc Aquarius \\u2652\\ufe0f God | Mum | Family | Real Geez\\u2764\\ufe0f Music \\ud83c\\udfbc Lover +ArtistPR\\ud83d\\ude0e\",\"url\":\"https:\\/\\/t.co\\/DgyErYcRvX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DgyErYcRvX\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/us\\/album\\/zero-bars\\/1634470535?i=1634470536\",\"display_url\":\"music.apple.com\\/us\\/album\\/zero-\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":790,\"listed_count\":0,\"created_at\":\"Fri Jan 14 09:19:47 +0000 2022\",\"favourites_count\":1540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":428,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1481919069163077635\\/Gh0EFxVJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1481919069163077635\\/Gh0EFxVJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481918920101666819\\/1656367781\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4733\":{\"id\":1514720496205578253,\"id_str\":\"1514720496205578253\",\"name\":\"Saint-Joseph Joseph\",\"screen_name\":\"Jos1Saint\",\"location\":\"Lagos, Nigeria\",\"description\":\"Call_me_Chaplin \\ud83e\\udd1d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":50,\"friends_count\":117,\"listed_count\":1,\"created_at\":\"Thu Apr 14 21:41:35 +0000 2022\",\"favourites_count\":69,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":306,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529933460617543692\\/XdRQopIK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529933460617543692\\/XdRQopIK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1514720496205578253\\/1653599550\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4734\":{\"id\":2855900398,\"id_str\":\"2855900398\",\"name\":\"Ogunsola Samuel\",\"screen_name\":\"oladeji_ogunsh\",\"location\":\"Lagos, Nigeria. \",\"description\":\"Broadcast Journalist, News Editor, News Producer, Political Activist, Media Consultant, Chelsea FC, Sport Lover, Ibadan Boy !!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1521,\"friends_count\":1632,\"listed_count\":0,\"created_at\":\"Sun Nov 02 00:05:24 +0000 2014\",\"favourites_count\":19779,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4541,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535693471574630405\\/8KDkhZIx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535693471574630405\\/8KDkhZIx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2855900398\\/1612364779\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4735\":{\"id\":129630681,\"id_str\":\"129630681\",\"name\":\"BLACK LOVE\\ud83d\\udda4\\ud83d\\udda4\",\"screen_name\":\"iamogswagg\",\"location\":\"Nigeria\",\"description\":\"Recording artist..song writter..rapper...#independent artist....for bookings, studio sessions, content contact 08112864391\\nemail:- jessematthewsswagg@gmail.com\",\"url\":\"https:\\/\\/t.co\\/QEVR1kM85C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QEVR1kM85C\",\"expanded_url\":\"https:\\/\\/fanlink.to\\/STREAMDRILL\",\"display_url\":\"fanlink.to\\/STREAMDRILL\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1359,\"friends_count\":1958,\"listed_count\":1,\"created_at\":\"Sun Apr 04 23:23:09 +0000 2010\",\"favourites_count\":764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12220,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1449547393616199683\\/528gkjrn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1449547393616199683\\/528gkjrn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/129630681\\/1619557324\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4736\":{\"id\":1484672617051271171,\"id_str\":\"1484672617051271171\",\"name\":\"SAMMIE\\ud83d\\udc80\\ud83d\\udca6\",\"screen_name\":\"Sammie172002\",\"location\":\"Lagos, Nigeria\",\"description\":\"Dream is a basic right\\ud83d\\udd25\\nReal Madrid C.f.\\ud83d\\udca5\\nFrench Educator\\ud83d\\ude0a\\nI no send your papa\\ud83d\\udc80\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142,\"friends_count\":182,\"listed_count\":0,\"created_at\":\"Fri Jan 21 23:42:41 +0000 2022\",\"favourites_count\":1019,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1004,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550479502949720064\\/rIbMJurl_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550479502949720064\\/rIbMJurl_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484672617051271171\\/1642809155\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4737\":{\"id\":1269066021505302530,\"id_str\":\"1269066021505302530\",\"name\":\"JOBS & SCHOLARSHIPS HUB\\ud83c\\uddec\\ud83c\\udded\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"JobsHubGh\",\"location\":\"Ghana\",\"description\":\"We are dedicated to bringing you the most up-to-date information on job vacancies, scholarships, and important dates.\",\"url\":\"https:\\/\\/t.co\\/zxjs7zotXx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zxjs7zotXx\",\"expanded_url\":\"http:\\/\\/ghnewsbanq.com\",\"display_url\":\"ghnewsbanq.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2217,\"friends_count\":1889,\"listed_count\":0,\"created_at\":\"Sat Jun 06 00:38:29 +0000 2020\",\"favourites_count\":3820,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7405,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505382325474971651\\/vSUK3v0J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505382325474971651\\/vSUK3v0J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1269066021505302530\\/1647785975\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4738\":{\"id\":356144107,\"id_str\":\"356144107\",\"name\":\"Officialsugargarcia\",\"screen_name\":\"9ja_poet_singer\",\"location\":\"Ikorodu\",\"description\":\"song machine\\ud83c\\udfb5\\nrecording act\\ud83c\\udfa4\\nsongwriter\\ud83d\\udcdd\\npoet,author\\ud83d\\udcda\\nnon religious being\\ud83d\\udd26\\ntop radio 90.9 NTR S24 winner\\ud83e\\udd47\\nArsenal\\u26bd\\nhttps:\\/\\/t.co\\/4JFMsYjy9w\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4JFMsYjy9w\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/owolabi-quadri-1\",\"display_url\":\"audiomack.com\\/owolabi-quadri\\u2026\",\"indices\":[115,138]}]}},\"protected\":false,\"followers_count\":116,\"friends_count\":307,\"listed_count\":2,\"created_at\":\"Tue Aug 16 12:10:11 +0000 2011\",\"favourites_count\":291,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":470,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1234559747245924352\\/Ph50_T-7_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4739\":{\"id\":870327427347750912,\"id_str\":\"870327427347750912\",\"name\":\"Daniella Amba\",\"screen_name\":\"Danley_codes\",\"location\":\"Nigeria \",\"description\":\"|MPDS Certified| |Data Science| \\n| Machine Learning | |Artificial intelligence||Consultant| |Co-founder:@analysthub| \\n Co-founder:@TADInitiative|\\ud83d\\udc9e\",\"url\":\"https:\\/\\/t.co\\/SFnyvo737B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SFnyvo737B\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/daniella-mkpandiok-60247010a\",\"display_url\":\"linkedin.com\\/in\\/daniella-mk\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":171,\"friends_count\":557,\"listed_count\":2,\"created_at\":\"Thu Jun 01 17:13:23 +0000 2017\",\"favourites_count\":940,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":574,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509172834442129410\\/ulpeLBhs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509172834442129410\\/ulpeLBhs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870327427347750912\\/1590828518\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4740\":{\"id\":1135892779995996160,\"id_str\":\"1135892779995996160\",\"name\":\"Ugwuanyi Michael\",\"screen_name\":\"Centre4A\",\"location\":\"Enugu, Nigeria\",\"description\":\"I love music ,I am a writer and blogger https:\\/\\/t.co\\/oM0r6lgHDa \\n entrepreneur and fan of @PeterObi @iamdrsid @YusufDatiAhmed\\n @Renoomokri\",\"url\":\"https:\\/\\/t.co\\/TqCMu70cuK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TqCMu70cuK\",\"expanded_url\":\"https:\\/\\/newtecgist.blogspot.com\",\"display_url\":\"newtecgist.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oM0r6lgHDa\",\"expanded_url\":\"https:\\/\\/sportsleagueudpate.blogspot.com\",\"display_url\":\"sportsleagueudpate.blogspot.com\",\"indices\":[42,65]}]}},\"protected\":false,\"followers_count\":84,\"friends_count\":1422,\"listed_count\":2,\"created_at\":\"Tue Jun 04 12:55:17 +0000 2019\",\"favourites_count\":1049,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1597,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519703624640827393\\/Bz-NB8YP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519703624640827393\\/Bz-NB8YP_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1135892779995996160\\/1588425267\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4741\":{\"id\":1267395685881708545,\"id_str\":\"1267395685881708545\",\"name\":\"Sub_sidy\",\"screen_name\":\"sub_sidy1\",\"location\":\"Nigeria\",\"description\":\"Emcee||Comedian||Actor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192,\"friends_count\":481,\"listed_count\":0,\"created_at\":\"Mon Jun 01 10:01:27 +0000 2020\",\"favourites_count\":6553,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555319202571030528\\/GnKaK-GQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555319202571030528\\/GnKaK-GQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1267395685881708545\\/1592259893\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4742\":{\"id\":1069708695972519938,\"id_str\":\"1069708695972519938\",\"name\":\"Top photographer in Ibadan\",\"screen_name\":\"arike_imagery\",\"location\":\"Bodija estate, Ibadan\",\"description\":\"Quality images only! https:\\/\\/t.co\\/tkyIRLVqAu Agricultural Economist\\ud83d\\udcb8\\ud83d\\udcb9 University of Ibadan \\ud83c\\udf93\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tkyIRLVqAu\",\"expanded_url\":\"http:\\/\\/instagram.com\\/arike_imagery\",\"display_url\":\"instagram.com\\/arike_imagery\",\"indices\":[21,44]}]}},\"protected\":false,\"followers_count\":757,\"friends_count\":1307,\"listed_count\":0,\"created_at\":\"Mon Dec 03 21:43:22 +0000 2018\",\"favourites_count\":304,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":281,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512456453050839044\\/6nEQwxqZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512456453050839044\\/6nEQwxqZ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4743\":{\"id\":1163102265953136640,\"id_str\":\"1163102265953136640\",\"name\":\"Mimi\",\"screen_name\":\"Dota_of_a_King\",\"location\":\"Rivers, Nigeria\",\"description\":\"The one God loves\\ud83d\\ude0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":24,\"friends_count\":27,\"listed_count\":0,\"created_at\":\"Sun Aug 18 14:56:17 +0000 2019\",\"favourites_count\":1017,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":892,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551975856653967366\\/MsQDj0LF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551975856653967366\\/MsQDj0LF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1163102265953136640\\/1604651858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4744\":{\"id\":146687201,\"id_str\":\"146687201\",\"name\":\"Captain EDET\",\"screen_name\":\"captain_edet\",\"location\":\"Lagos, Nigeria\",\"description\":\"Only God Inspires... TweetGuru, Comedian, Publicist, Whatsapp: 07037443852 #ComedyCruise #FunnyEmpire IG: captainedet25 Facebook: captainedetDlaffCommanda\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":890,\"friends_count\":1254,\"listed_count\":3,\"created_at\":\"Sat May 22 02:48:26 +0000 2010\",\"favourites_count\":4615,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3461,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1367057404052070400\\/dY1jzzEb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1367057404052070400\\/dY1jzzEb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/146687201\\/1559175464\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4745\":{\"id\":1224801474607288327,\"id_str\":\"1224801474607288327\",\"name\":\"AbUtEcH\\ud83e\\udd0c\",\"screen_name\":\"AbUtEcH_bRo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Web Developer, Software Engineer #python #django, Graphic Designer, Content Creator & Digital Marketer. CEO: @abubtechnology_h https:\\/\\/t.co\\/TudfbJ6VM0\",\"url\":\"https:\\/\\/t.co\\/eA01XZupBA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eA01XZupBA\",\"expanded_url\":\"https:\\/\\/abutech.disha.page\\/\",\"display_url\":\"abutech.disha.page\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TudfbJ6VM0\",\"expanded_url\":\"https:\\/\\/adh.com.ng\",\"display_url\":\"adh.com.ng\",\"indices\":[127,150]}]}},\"protected\":false,\"followers_count\":101,\"friends_count\":384,\"listed_count\":2,\"created_at\":\"Tue Feb 04 21:06:55 +0000 2020\",\"favourites_count\":247,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":718,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548104258339291136\\/0GFNjYBh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548104258339291136\\/0GFNjYBh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224801474607288327\\/1659485321\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4746\":{\"id\":1368603054342299652,\"id_str\":\"1368603054342299652\",\"name\":\"Chuks\",\"screen_name\":\"Chuks238_\",\"location\":\"\",\"description\":\"I am the most friendly being that ever lives\\ud83d\\ude0d\\ud83e\\udd38\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1248,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Sun Mar 07 16:43:20 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":67,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553842107911229443\\/OqTWHq8U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1368603054342299652\\/1652602455\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4747\":{\"id\":632213198,\"id_str\":\"632213198\",\"name\":\"okarotor onome \\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\",\"screen_name\":\"officialonoski\",\"location\":\"Lagos Nigeria\",\"description\":\"Introvert,extrovert,dual charcterized,trendy,classic and love life.Have atter disdane for peeps who brag about what they never had clue of.\",\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"expanded_url\":\"http:\\/\\/www.okarotor.wordpress.com\",\"display_url\":\"okarotor.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":380,\"friends_count\":1740,\"listed_count\":0,\"created_at\":\"Tue Jul 10 18:41:43 +0000 2012\",\"favourites_count\":7487,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/632213198\\/1623137282\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4748\":{\"id\":632213198,\"id_str\":\"632213198\",\"name\":\"okarotor onome \\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\\ud83d\\ude0d\",\"screen_name\":\"officialonoski\",\"location\":\"Lagos Nigeria\",\"description\":\"Introvert,extrovert,dual charcterized,trendy,classic and love life.Have atter disdane for peeps who brag about what they never had clue of.\",\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/BMKfsHqTcI\",\"expanded_url\":\"http:\\/\\/www.okarotor.wordpress.com\",\"display_url\":\"okarotor.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":380,\"friends_count\":1740,\"listed_count\":0,\"created_at\":\"Tue Jul 10 18:41:43 +0000 2012\",\"favourites_count\":7487,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505968340036116487\\/dq1XcIkZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/632213198\\/1623137282\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4749\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4750\":{\"id\":1452768120792354819,\"id_str\":\"1452768120792354819\",\"name\":\"K Tevi\",\"screen_name\":\"kayode_tevi\",\"location\":\"Lagos, Nigeria\",\"description\":\"#CR7\\ud83d\\udc10 #MUFC\",\"url\":\"https:\\/\\/t.co\\/vL9Tid7dkC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vL9Tid7dkC\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/invites\\/contact\\/?i=169iavwj54b2i&utm_content=l3zt9pz\",\"display_url\":\"instagram.com\\/invites\\/contac\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1024,\"friends_count\":1105,\"listed_count\":3,\"created_at\":\"Mon Oct 25 22:44:53 +0000 2021\",\"favourites_count\":7085,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5576,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556231066846904320\\/dbdm-XwL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556231066846904320\\/dbdm-XwL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1452768120792354819\\/1659869385\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4751\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4752\":{\"id\":225229971,\"id_str\":\"225229971\",\"name\":\"Ayodele David Dasaolu\",\"screen_name\":\"Topmostnigga\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"Love having fun.Crypto Enthusiast #teammanunited#teamcapricorn #sol #Polkadot #Polygon\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":153,\"friends_count\":465,\"listed_count\":2,\"created_at\":\"Sat Dec 11 01:43:49 +0000 2010\",\"favourites_count\":517,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2923,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556185328850960384\\/bDZ_Drcp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556185328850960384\\/bDZ_Drcp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/225229971\\/1570990814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4753\":{\"id\":226126659,\"id_str\":\"226126659\",\"name\":\"George Basara 4Peter Obi\",\"screen_name\":\"PBplusOilAndGas\",\"location\":\"Nigeria\",\"description\":\"Peter Obi Live Radio\",\"url\":\"https:\\/\\/t.co\\/gFTYNGUKDQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gFTYNGUKDQ\",\"expanded_url\":\"http:\\/\\/www.pbplusoilandgas.com\",\"display_url\":\"pbplusoilandgas.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4168,\"friends_count\":2984,\"listed_count\":64,\"created_at\":\"Mon Dec 13 11:28:19 +0000 2010\",\"favourites_count\":75,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":298857,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552749219475324929\\/zGoh16Ic_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552749219475324929\\/zGoh16Ic_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/226126659\\/1410980190\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4754\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4755\":{\"id\":207920369,\"id_str\":\"207920369\",\"name\":\"OGHALE\",\"screen_name\":\"Oghalegreatness\",\"location\":\"Lagos,Nigeria\",\"description\":\"I don't seek for attention but I get it. I'm just a lady with big dreams. I enjoy being natural,I'm just me. #Teamnomakeup\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":161,\"friends_count\":301,\"listed_count\":0,\"created_at\":\"Tue Oct 26 09:08:52 +0000 2010\",\"favourites_count\":734,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3365,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489320760091025408\\/j94IBvOZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/207920369\\/1448980315\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4756\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4757\":{\"id\":1355647431367667717,\"id_str\":\"1355647431367667717\",\"name\":\"Hon. Gbesh of Unilorin \\ud83c\\udf3c\",\"screen_name\":\"HGbesh\",\"location\":\"Lagos, Nigeria\",\"description\":\"NAPHSS PRO ELECT, Unilorin chapter | Comedian | Content creator | Entertainer | Lover of football | Lover of cruise and vawulence | Education \\nIG:@hon_gbesh\",\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TvbNOeCNe1\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC7hKRiL7GXzWJox9XPUH21g\",\"display_url\":\"youtube.com\\/channel\\/UC7hKR\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":233,\"friends_count\":376,\"listed_count\":0,\"created_at\":\"Sat Jan 30 22:42:04 +0000 2021\",\"favourites_count\":321,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":184,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550696290253684736\\/yXfSynjM_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1355647431367667717\\/1658981548\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4758\":{\"id\":1464377308823932929,\"id_str\":\"1464377308823932929\",\"name\":\"Camillus Chinonso\",\"screen_name\":\"CamillusChinon1\",\"location\":\"\",\"description\":\"Trade ur crypto coins with me\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":122,\"listed_count\":2,\"created_at\":\"Fri Nov 26 23:35:49 +0000 2021\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":23,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554570725104680961\\/PHHebpkH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554570725104680961\\/PHHebpkH_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4759\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4760\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4761\":{\"id\":1554224918220480526,\"id_str\":\"1554224918220480526\",\"name\":\"Amaz Global Empire\",\"screen_name\":\"Amaz_Global\",\"location\":\"Lagos, Nigeria\",\"description\":\"Welcome to Amaz Global Collections where we deal on all kinds of Men and Female wears including Men and Female Sandals,Palms,Shoes and Snickers\",\"url\":\"https:\\/\\/t.co\\/5hYqrBNXKr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5hYqrBNXKr\",\"expanded_url\":\"https:\\/\\/chat.whatsapp.com\\/HEepeTkvJcOIhOupVG3GY9\",\"display_url\":\"chat.whatsapp.com\\/HEepeTkvJcOIhO\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Mon Aug 01 21:58:20 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554225321490137092\\/M_AGGp9Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554225321490137092\\/M_AGGp9Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554224918220480526\\/1659473210\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4762\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4763\":{\"id\":1081965733947547648,\"id_str\":\"1081965733947547648\",\"name\":\"Erioluwa Popoola\",\"screen_name\":\"erioluu\",\"location\":\"Ibadan, Nigeria\",\"description\":\"Theatre Director | Actor | Writer | Voice over artist | Art Enthusiast | Ofaraw best in doing plenty things |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128,\"friends_count\":216,\"listed_count\":0,\"created_at\":\"Sun Jan 06 17:28:27 +0000 2019\",\"favourites_count\":202,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547184392103133184\\/DRri33-S_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547184392103133184\\/DRri33-S_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4764\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4765\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4766\":{\"id\":519695366,\"id_str\":\"519695366\",\"name\":\"Izuchukwu Ahuchaogu\",\"screen_name\":\"Ahuchaoguizu\",\"location\":\"Nigeria\",\"description\":\"I am unpredictable and focused.\",\"url\":\"https:\\/\\/t.co\\/B0ftBp4wPh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/B0ftBp4wPh\",\"expanded_url\":\"http:\\/\\/cityrovers.net\",\"display_url\":\"cityrovers.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":405,\"friends_count\":1602,\"listed_count\":2,\"created_at\":\"Fri Mar 09 18:10:43 +0000 2012\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2453,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536743634606997506\\/7NIY13zQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536743634606997506\\/7NIY13zQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/519695366\\/1448237335\",\"profile_link_color\":\"9266CC\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4767\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4768\":{\"id\":244433750,\"id_str\":\"244433750\",\"name\":\"klymate$\",\"screen_name\":\"Klymates\",\"location\":\"Ho, Ghana\",\"description\":\"#FreedomFighter #father #writter #php #programer #hacker #HackingTheMindOfGod #peaceLoving #crazyAtTimes #Anon #CyberSecurityExpert #untweeter #SystemsAdmin\",\"url\":\"https:\\/\\/t.co\\/F4lqSaMkjh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/F4lqSaMkjh\",\"expanded_url\":\"http:\\/\\/jahrod.com\",\"display_url\":\"jahrod.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":546,\"friends_count\":5001,\"listed_count\":6,\"created_at\":\"Sat Jan 29 08:55:03 +0000 2011\",\"favourites_count\":3150,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3993,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1432840564194557958\\/Lrswiln8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1432840564194557958\\/Lrswiln8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/244433750\\/1634878616\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4769\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2659,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2062,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4770\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4771\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4772\":{\"id\":344006533,\"id_str\":\"344006533\",\"name\":\"Plus E\",\"screen_name\":\"pluse_official\",\"location\":\"lagos NG\",\"description\":\"Plus_E A Super Multi Talented Artist\\/Music_Produce\\/Songwriter for bookings emekamusic8@gmail.com stream my new single \\u201cMedicine\\u201d links \\ud83d\\udc47\\ud83c\\udffe\",\"url\":\"https:\\/\\/t.co\\/T88yJaw97b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/T88yJaw97b\",\"expanded_url\":\"https:\\/\\/hyperfollow.com\\/PlusE?fbclid=IwAR1QrsqHkpbo1z98OUSFNhYgHikJcUd_j1j8t9m8XqNubCsomsooaItQj8s\",\"display_url\":\"hyperfollow.com\\/PlusE?fbclid=I\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":478,\"friends_count\":485,\"listed_count\":2,\"created_at\":\"Thu Jul 28 12:04:12 +0000 2011\",\"favourites_count\":2556,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1390,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549357339945443330\\/pKinY7nh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549357339945443330\\/pKinY7nh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/344006533\\/1658317760\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4773\":{\"id\":1481791683616546817,\"id_str\":\"1481791683616546817\",\"name\":\"Macdavvis\",\"screen_name\":\"Macdavvis1\",\"location\":\"\",\"description\":\"6Ft1 Photographer || Freelance | Portraits | Nfts |\\n(and fun stuff \\ud83d\\ude04)\\n Decorative Frames (Frame consultant)\\n\\nCheck out my link below for my Nft Collections \\u2b07\\u2b07\\u2b07\",\"url\":\"https:\\/\\/t.co\\/GPUGXePWeN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GPUGXePWeN\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/Macdavvis\",\"display_url\":\"linktr.ee\\/Macdavvis\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":327,\"friends_count\":496,\"listed_count\":1,\"created_at\":\"Fri Jan 14 00:54:13 +0000 2022\",\"favourites_count\":2055,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1504,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511790321146998789\\/Hqzx_xF2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511790321146998789\\/Hqzx_xF2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481791683616546817\\/1655141567\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4774\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4775\":{\"id\":1318116642170306561,\"id_str\":\"1318116642170306561\",\"name\":\"@pha\\ud83d\\ude0a\",\"screen_name\":\"Godsphavour\",\"location\":\"Akwa ibom\",\"description\":\"Digital marketer |Content Writer| Blockchain Enthusiast| French \\ud83d\\udd04 English Translator| A baby\\ud83d\\ude43\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":428,\"friends_count\":434,\"listed_count\":0,\"created_at\":\"Mon Oct 19 09:08:10 +0000 2020\",\"favourites_count\":3626,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1218,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520143221149605888\\/oiJ6weYi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520143221149605888\\/oiJ6weYi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1318116642170306561\\/1656167011\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4776\":{\"id\":1150419928559828992,\"id_str\":\"1150419928559828992\",\"name\":\"carboncleaners.ng\",\"screen_name\":\"enginecarboncl3\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"We restore engines by getting rid of carbon buildup...also offer free diagnostics for your regular and heavy duty vehicles and machinery...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":38,\"listed_count\":1,\"created_at\":\"Sun Jul 14 15:00:59 +0000 2019\",\"favourites_count\":386,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":71,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1150420216469475330\\/WYKX2BXP_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1150420216469475330\\/WYKX2BXP_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4777\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4778\":{\"id\":1101456316130828288,\"id_str\":\"1101456316130828288\",\"name\":\"AbikeOnibata\",\"screen_name\":\"mydeviria\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your Stock Shoes Plug\\ud83d\\udd0c\\n\\nMules|Heels|Sneakers&Sandals\\n\\ud83d\\udc61\\ud83d\\udc60\\ud83e\\udd7e\\ud83d\\udc5f\\ud83d\\udc5e\\n\\nMrs O\\ud83d\\udc8d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":578,\"friends_count\":947,\"listed_count\":1,\"created_at\":\"Fri Mar 01 12:17:04 +0000 2019\",\"favourites_count\":2214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1312,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554562144292802560\\/O2KJo1by_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1101456316130828288\\/1659471517\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4779\":{\"id\":1282724522257534977,\"id_str\":\"1282724522257534977\",\"name\":\"Tee\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddec\\ud83c\\udde7\",\"screen_name\":\"CousinTeee\",\"location\":\"Lagos\",\"description\":\"30BG\\ud83d\\udcb0 Family\\u2022 Football\\u2022 Food\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":519,\"friends_count\":523,\"listed_count\":0,\"created_at\":\"Mon Jul 13 17:12:31 +0000 2020\",\"favourites_count\":11272,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9108,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547907402808172544\\/RmJPLPHc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547907402808172544\\/RmJPLPHc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282724522257534977\\/1657723075\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4780\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4781\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4782\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4783\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4784\":{\"id\":1486452820672925700,\"id_str\":\"1486452820672925700\",\"name\":\"Morris Hills\",\"screen_name\":\"morrishills_\",\"location\":\"Nigeria\",\"description\":\"Rapper \\ud83c\\uddf3\\ud83c\\uddec\\n\\nI'm here to make FRIENDS,FANS & FAMILY \\ud83d\\udc68\\ud83d\\udc69\\ud83d\\udc66\",\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/22TZZ9AcAk\",\"expanded_url\":\"https:\\/\\/musics.link\\/40313TkeAG\",\"display_url\":\"musics.link\\/40313TkeAG\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":617,\"friends_count\":2142,\"listed_count\":1,\"created_at\":\"Wed Jan 26 21:36:13 +0000 2022\",\"favourites_count\":555,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552171736363421696\\/I0TUIBMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486452820672925700\\/1647701683\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4785\":{\"id\":1284531896853110784,\"id_str\":\"1284531896853110784\",\"name\":\"Peter-Cephas Olufunde\",\"screen_name\":\"cephas_arts\",\"location\":\"Nigeria\",\"description\":\"\\u2022 A SELF-TAUGHT CHARCOAL HYPERREALIST\\n\\u2022 A LEAD GUITARIST\\n\\u2022 ENGLISH STUDIES, OAU\\n\\u2022 1999, NIGERIA\\n\\nPlease check out all drawings on my IG page\\ud83d\\udc47\\ud83e\\udd29\",\"url\":\"https:\\/\\/t.co\\/4TlKcgF0jE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4TlKcgF0jE\",\"expanded_url\":\"https:\\/\\/instagram.com\\/cephas_arts?igshid=1tj2wjfnmc20t\",\"display_url\":\"instagram.com\\/cephas_arts?ig\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":346,\"friends_count\":4,\"listed_count\":2,\"created_at\":\"Sat Jul 18 16:54:29 +0000 2020\",\"favourites_count\":713,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1493101611765407747\\/0kRyRl-Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1493101611765407747\\/0kRyRl-Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1284531896853110784\\/1659339808\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4786\":{\"id\":1520023443923689474,\"id_str\":\"1520023443923689474\",\"name\":\"Awixy's blog\",\"screen_name\":\"Awixy2\",\"location\":\"Nigeria\",\"description\":\"News and media,\\nInformation technology\\npersonal blog\",\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jBAXUDe7X8\",\"expanded_url\":\"http:\\/\\/www.awixy.net\",\"display_url\":\"awixy.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":29,\"listed_count\":0,\"created_at\":\"Fri Apr 29 12:53:38 +0000 2022\",\"favourites_count\":5,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1531217754728058889\\/mFVspwPw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520023443923689474\\/1653905735\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4787\":{\"id\":936872343992979456,\"id_str\":\"936872343992979456\",\"name\":\"Oluwat'Obidient\",\"screen_name\":\"FadoroTobi\",\"location\":\"Lagos, Nigeria\",\"description\":\"A believer. A realtor with integrity. I love to help the marginalized (when given the chance) to the best of my ability. An orphan with a difference\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":314,\"friends_count\":586,\"listed_count\":0,\"created_at\":\"Sat Dec 02 08:19:07 +0000 2017\",\"favourites_count\":8232,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5118,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548941614453850114\\/pIj0PIop_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548941614453850114\\/pIj0PIop_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/936872343992979456\\/1655016730\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4788\":{\"id\":2746552630,\"id_str\":\"2746552630\",\"name\":\"Duke of Okeho\",\"screen_name\":\"Ade_omo_Giwa\",\"location\":\"Space\",\"description\":\"\\ud83d\\udc9420-10-202 \\n\\nfix Naija Oh lord\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":753,\"friends_count\":856,\"listed_count\":1,\"created_at\":\"Mon Aug 18 17:11:10 +0000 2014\",\"favourites_count\":9533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3609,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1509520399960182787\\/-kvzgTRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1509520399960182787\\/-kvzgTRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2746552630\\/1573423781\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4789\":{\"id\":1458001472503926787,\"id_str\":\"1458001472503926787\",\"name\":\"Aja Peace\",\"screen_name\":\"ajapeace1\",\"location\":\"Nigeria\",\"description\":\"A prestigious, crypto enthusiast , always ready to impact.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1031,\"friends_count\":551,\"listed_count\":50,\"created_at\":\"Tue Nov 09 09:21:19 +0000 2021\",\"favourites_count\":22921,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1085,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524778385725071362\\/_b3beYWS_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4790\":{\"id\":410118173,\"id_str\":\"410118173\",\"name\":\"James Agbaje\",\"screen_name\":\"james_agbaje01\",\"location\":\"NIGERIA\",\"description\":\"I am passionate about helping #jobseekers land their dream job. \\n\\nEvery one deserves to be happy, everyone deserves a dream job.\",\"url\":\"https:\\/\\/t.co\\/myFm8RgBJr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/myFm8RgBJr\",\"expanded_url\":\"https:\\/\\/www.nennetworks.com\",\"display_url\":\"nennetworks.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":306,\"listed_count\":2,\"created_at\":\"Fri Nov 11 17:22:24 +0000 2011\",\"favourites_count\":1033,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1375002369205886980\\/-PLsgp8N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1375002369205886980\\/-PLsgp8N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/410118173\\/1517448510\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4791\":{\"id\":255492846,\"id_str\":\"255492846\",\"name\":\"I. K. E. N. N. A.\",\"screen_name\":\"Gbachis\",\"location\":\"Lagos, Nigeria\",\"description\":\"Automotive | Industrials | Transmission Oils |QCQA | iDesign Chelseafc\\n\\nhenryiyke2410@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1015,\"friends_count\":1415,\"listed_count\":3,\"created_at\":\"Mon Feb 21 13:43:37 +0000 2011\",\"favourites_count\":9851,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4497,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556020566322290689\\/hkzSmixz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556020566322290689\\/hkzSmixz_normal.jpg\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4792\":{\"id\":1423753564657229827,\"id_str\":\"1423753564657229827\",\"name\":\"chin\",\"screen_name\":\"Longdenjr1\",\"location\":\"Jos, Nigeria\",\"description\":\"pulling through \\ud83e\\udd85\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":79,\"friends_count\":163,\"listed_count\":1,\"created_at\":\"Fri Aug 06 21:11:29 +0000 2021\",\"favourites_count\":1402,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":101,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1517439432722456578\\/tynrinUI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1517439432722456578\\/tynrinUI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4793\":{\"id\":1510226099984388101,\"id_str\":\"1510226099984388101\",\"name\":\"Funkeye Dickson\",\"screen_name\":\"DicksonFunkeye\",\"location\":\"Warri, Nigeria\",\"description\":\"humble ijaw girl, fashion designer,\\ud83d\\udc57\\ud83d\\udc5a, IT personnel , traveller, lover of God , accountant, entrepreneur\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":101,\"friends_count\":157,\"listed_count\":0,\"created_at\":\"Sat Apr 02 12:02:27 +0000 2022\",\"favourites_count\":53,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":90,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510228372617670659\\/3iLbCk9u_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510228372617670659\\/3iLbCk9u_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1510226099984388101\\/1648901489\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4794\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4795\":{\"id\":1481703042915446796,\"id_str\":\"1481703042915446796\",\"name\":\"Best brain entertainment\",\"screen_name\":\"AdelabuOladele\",\"location\":\"Lagos\",\"description\":\"I'm a comedian,Inspirational speaker, actor,great thinker,mc,fighter of truth and justice. https:\\/\\/t.co\\/djvA72pz48\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/djvA72pz48\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCm_HcMd66VO8sDQm7_cqo1g\",\"display_url\":\"youtube.com\\/channel\\/UCm_Hc\\u2026\",\"indices\":[91,114]}]}},\"protected\":false,\"followers_count\":155,\"friends_count\":182,\"listed_count\":0,\"created_at\":\"Thu Jan 13 19:06:33 +0000 2022\",\"favourites_count\":43,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1482593226049654784\\/e557-yz5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1482593226049654784\\/e557-yz5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1481703042915446796\\/1642312724\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4796\":{\"id\":1550155179424731142,\"id_str\":\"1550155179424731142\",\"name\":\"VideosWhatever\",\"screen_name\":\"Videosnwhatever\",\"location\":\"Nigeria\",\"description\":\"Fun Videos and Entertainment\",\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RdcMV60wzs\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCEoVWFnfQEB3NDGB2XiE_2A\",\"display_url\":\"youtube.com\\/channel\\/UCEoVW\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":56,\"listed_count\":0,\"created_at\":\"Thu Jul 21 16:26:24 +0000 2022\",\"favourites_count\":38,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":30,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550155430885834759\\/pqR6glOz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550155179424731142\\/1658427348\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4797\":{\"id\":1463252595787636752,\"id_str\":\"1463252595787636752\",\"name\":\"Otaku\",\"screen_name\":\"Otaku_konnect\",\"location\":\"\",\"description\":\"NO. 1 Plug for everything anime in Nigeria \\ud83c\\udf0a\\ud83c\\udf0a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142,\"friends_count\":43,\"listed_count\":0,\"created_at\":\"Tue Nov 23 21:06:34 +0000 2021\",\"favourites_count\":52,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":94,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1463252852743319556\\/VlbbBldG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1463252852743319556\\/VlbbBldG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1463252595787636752\\/1658923901\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4798\":{\"id\":1487000964691341320,\"id_str\":\"1487000964691341320\",\"name\":\"The Benjamin Feyijimi\",\"screen_name\":\"thebenfeyijimi\",\"location\":\"Ibadan, Nigeria\",\"description\":\"President, 9ja&i initiative| O.A.P|Singer| Educationist| Author| Public Speaker\\n\\n#Nigeria&I\\n\\n#AdvocateForAbetterNigeria\\n\\nhttp:\\/\\/www.thebenjaminfeyijimiinitiativ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":177,\"friends_count\":570,\"listed_count\":0,\"created_at\":\"Fri Jan 28 09:54:21 +0000 2022\",\"favourites_count\":335,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":150,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487359066984927238\\/AMAuAdlZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487359066984927238\\/AMAuAdlZ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487000964691341320\\/1643617436\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4799\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4812,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4800\":{\"id\":291561619,\"id_str\":\"291561619\",\"name\":\"Lamar ofd buj\",\"screen_name\":\"lamar_ralph\",\"location\":\"Nigeria\",\"description\":\"Entrepreneur \\u2022 Accountant\\u2022 CoFounder Gawerex Tech Ltd. \\u2022. #PeterObi4President\",\"url\":\"https:\\/\\/t.co\\/RHCaTyUmSI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RHCaTyUmSI\",\"expanded_url\":\"http:\\/\\/smartron.com.ng\",\"display_url\":\"smartron.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4222,\"friends_count\":3588,\"listed_count\":10,\"created_at\":\"Mon May 02 07:00:29 +0000 2011\",\"favourites_count\":38588,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52759,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544641249495351302\\/0ogYkhVk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544641249495351302\\/0ogYkhVk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/291561619\\/1657106254\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4801\":{\"id\":1326176068164870144,\"id_str\":\"1326176068164870144\",\"name\":\"opeyemi afolabi\",\"screen_name\":\"OpeyemiArinola5\",\"location\":\"Lagos, Nigeria\",\"description\":\"a health advocate\\/educator\\/student\\nfounder of my health matters\",\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1S8dpWTt65\",\"expanded_url\":\"http:\\/\\/myhealthmatterstoday.wordpress.com\",\"display_url\":\"myhealthmatterstoday.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60,\"friends_count\":296,\"listed_count\":0,\"created_at\":\"Tue Nov 10 14:53:36 +0000 2020\",\"favourites_count\":558,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":145,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1330810168096022528\\/lRhSwXK1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1326176068164870144\\/1659470260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4802\":{\"id\":1337900128980639744,\"id_str\":\"1337900128980639744\",\"name\":\"Jbankz\",\"screen_name\":\"meetJbankz\",\"location\":\"Nigeria\",\"description\":\"|| Musician || Song Writer ||\\nThe New EP,\\n#ELEVATE\\n\\\"now out on all music streaming platforms\",\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S9JZrl4Ig1\",\"expanded_url\":\"https:\\/\\/orcd.co\\/jbankz-elevate\",\"display_url\":\"orcd.co\\/jbankz-elevate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":255,\"friends_count\":2276,\"listed_count\":1,\"created_at\":\"Sat Dec 12 23:20:37 +0000 2020\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1377227423926849543\\/IJHt_V2O_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1337900128980639744\\/1616501762\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4803\":{\"id\":1320448177921761280,\"id_str\":\"1320448177921761280\",\"name\":\"Hun Cho DC\",\"screen_name\":\"ChoWurld\",\"location\":\"Nigeria\",\"description\":\"Son Of God\\ud83c\\udfc6\\ud83e\\udd85\\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":13,\"listed_count\":0,\"created_at\":\"Sun Oct 25 19:32:47 +0000 2020\",\"favourites_count\":135,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":31,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1492440849002737668\\/mii3VYlD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1492440849002737668\\/mii3VYlD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320448177921761280\\/1603655084\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4804\":{\"id\":1485203694773755906,\"id_str\":\"1485203694773755906\",\"name\":\"Idowu\",\"screen_name\":\"nobleman_0\",\"location\":\"Ilorin, Nigeria\",\"description\":\"b*d laugher \\ud83d\\ude02 | Liverpool fan | music \\ud83c\\udfb6 | Fav. pet CAT \\ud83d\\udc08| interested in woman | Gamer \\ud83c\\udfae\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38,\"friends_count\":542,\"listed_count\":2,\"created_at\":\"Sun Jan 23 10:52:26 +0000 2022\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":26,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554152295792840706\\/0RTlYaV4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554152295792840706\\/0RTlYaV4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4805\":{\"id\":500988165,\"id_str\":\"500988165\",\"name\":\"YUNG SKIZZY\",\"screen_name\":\"promphizy\",\"location\":\"Nigeria\",\"description\":\"NEW EP ON THE WAY SOON!!!\\n\\n#HEARTBREAKONAWEEKEND\",\"url\":\"https:\\/\\/t.co\\/XO7f7IWAfn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XO7f7IWAfn\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/promphizy\",\"display_url\":\"audiomack.com\\/promphizy\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1575,\"friends_count\":684,\"listed_count\":4,\"created_at\":\"Thu Feb 23 17:39:43 +0000 2012\",\"favourites_count\":105,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7740,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552640576918638592\\/Hhn0BnQX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552640576918638592\\/Hhn0BnQX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/500988165\\/1657405307\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4806\":{\"id\":1541944237457117184,\"id_str\":\"1541944237457117184\",\"name\":\"Matthew Adewusi\",\"screen_name\":\"MatthewAdewusi1\",\"location\":\"Ibadan, Nigeria.\",\"description\":\"Hello, I'm matthew, a Digital and Network Marketer.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Wed Jun 29 00:39:20 +0000 2022\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":77,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541944370202648579\\/-j9k0EIF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541944370202648579\\/-j9k0EIF_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4807\":{\"id\":1254055027,\"id_str\":\"1254055027\",\"name\":\"Segun_thebook\",\"screen_name\":\"SSnetwoork\",\"location\":\"Lagos\",\"description\":\"Co-founder BusyBuddies. Journalist\\/Broadcaster\\/Writer #teamArsenal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4261,\"friends_count\":469,\"listed_count\":27,\"created_at\":\"Sat Mar 09 10:41:06 +0000 2013\",\"favourites_count\":63048,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":110631,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1514932593829068805\\/SwUQ1fxo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1514932593829068805\\/SwUQ1fxo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1254055027\\/1626886843\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4808\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4812,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4809\":{\"id\":1533420684642328576,\"id_str\":\"1533420684642328576\",\"name\":\"Emmanuel Otakhor\",\"screen_name\":\"OtakhorEmmanuel\",\"location\":\"Lagos\",\"description\":\"Cool dude\\/Photographer\\/Actor\\/Artist manager\\/Good vibe\\/Banker\\/Arsenal\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27,\"friends_count\":139,\"listed_count\":0,\"created_at\":\"Sun Jun 05 12:09:29 +0000 2022\",\"favourites_count\":750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534808561703964672\\/5ztsD_uY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1533420684642328576\\/1659525553\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4810\":{\"id\":1263817439776837634,\"id_str\":\"1263817439776837634\",\"name\":\"Azal's thoughts\",\"screen_name\":\"me_azal\",\"location\":\"Lagos, Nigeria\",\"description\":\"#endsars #endswat #endpolicebrutality and let's have peace\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":85,\"friends_count\":132,\"listed_count\":0,\"created_at\":\"Fri May 22 13:02:23 +0000 2020\",\"favourites_count\":268,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":119,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1347919901617487875\\/G3Q8nsZF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1347919901617487875\\/G3Q8nsZF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1263817439776837634\\/1597074103\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4811\":{\"id\":1360278712277749765,\"id_str\":\"1360278712277749765\",\"name\":\"Davano\",\"screen_name\":\"davanooo\",\"location\":\"Lagos, Nigeria\",\"description\":\"Technophile\\ud83d\\udcf1| Blaugrana\\ud83d\\udc99\\u2764\\ufe0f| Melophile\\ud83c\\udfa7| Working towards your DREAM makes it a GOAL\\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3316,\"friends_count\":3222,\"listed_count\":0,\"created_at\":\"Fri Feb 12 17:25:07 +0000 2021\",\"favourites_count\":44369,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":950,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1532832448567975936\\/oCxoRgSD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1532832448567975936\\/oCxoRgSD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1360278712277749765\\/1654208131\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4812\":{\"id\":865513506765799424,\"id_str\":\"865513506765799424\",\"name\":\"Overhplus Properties\",\"screen_name\":\"overhplus\",\"location\":\"Lekki, Nigeria\",\"description\":\"We Sell , Rent , Lease , Manage and Develop Properties.. We are Offer the best Real Estate deals.\",\"url\":\"https:\\/\\/t.co\\/zrljDtmqS6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zrljDtmqS6\",\"expanded_url\":\"http:\\/\\/www.overhplusproperties.com\",\"display_url\":\"overhplusproperties.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118,\"friends_count\":230,\"listed_count\":1,\"created_at\":\"Fri May 19 10:24:35 +0000 2017\",\"favourites_count\":2477,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1104,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1335122960231899137\\/1-vvKNxz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1335122960231899137\\/1-vvKNxz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/865513506765799424\\/1658843912\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4813\":{\"id\":378926080,\"id_str\":\"378926080\",\"name\":\"Matthew E U\",\"screen_name\":\"EbaseMatthew\",\"location\":\"Lekki lagos Nigeria\",\"description\":\"Leadership Without Empathy Is Brutality!\\n\\ud83d\\udc48\\nTreat People With Respect \\ud83d\\ude42\\nPlease \\ud83d\\ude4f Follow Back\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4221,\"friends_count\":4812,\"listed_count\":6,\"created_at\":\"Sat Sep 24 02:07:03 +0000 2011\",\"favourites_count\":4548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17658,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540421968499019776\\/OWw4OZN7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/378926080\\/1656065184\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4814\":{\"id\":1468496381308719108,\"id_str\":\"1468496381308719108\",\"name\":\"Teewithdspice\",\"screen_name\":\"realgurltee\",\"location\":\"Nigeria\",\"description\":\"Just a girl still working on herself \\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Wed Dec 08 08:23:34 +0000 2021\",\"favourites_count\":207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468496381308719108\\/1659468568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4815\":{\"id\":1539343942969335809,\"id_str\":\"1539343942969335809\",\"name\":\"omoniyi layo\",\"screen_name\":\"debirexx\",\"location\":\"Abuja\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Tue Jun 21 20:26:27 +0000 2022\",\"favourites_count\":97,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":47,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539865389450117120\\/8T2i8QJF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539343942969335809\\/1656059959\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4816\":{\"id\":1461919316400648194,\"id_str\":\"1461919316400648194\",\"name\":\"Elite Star Foundation\",\"screen_name\":\"NGOELITESTAR\",\"location\":\"Nigeria\",\"description\":\"Ensuring lifelong learning opportunities for all and reducing all forms of inequalities and violence against children.\",\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/imeLcHgitH\",\"expanded_url\":\"https:\\/\\/www.elitestarfoundation.org\",\"display_url\":\"elitestarfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":157,\"friends_count\":492,\"listed_count\":0,\"created_at\":\"Sat Nov 20 04:48:29 +0000 2021\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":13,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1461922475613331461\\/xaV4ib7w_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1461919316400648194\\/1637384456\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4817\":{\"id\":1145737649644343298,\"id_str\":\"1145737649644343298\",\"name\":\"OLUWATOBILOBA \\ud83d\\udc99\\u270c\",\"screen_name\":\"OmobulejoTobi\",\"location\":\"Lagos, Nigeria\",\"description\":\"@Chelseafc \\ud83d\\udc99 \\/\\/ WITH GOD ALL THINGS ARE POSSIBLE\\/\\/ \\u2764\\ufe0f DM for Cheap PROMO\\/Ads Gbengantobiloba@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12781,\"friends_count\":12097,\"listed_count\":5,\"created_at\":\"Mon Jul 01 16:55:17 +0000 2019\",\"favourites_count\":95319,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":21949,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1452182004376772608\\/lRcESL2__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1452182004376772608\\/lRcESL2__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1145737649644343298\\/1657732287\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4818\":{\"id\":1468496381308719108,\"id_str\":\"1468496381308719108\",\"name\":\"Teewithdspice\",\"screen_name\":\"realgurltee\",\"location\":\"Nigeria\",\"description\":\"Just a girl still working on herself \\ud83e\\udd70\\ud83e\\udd70\\ud83e\\udd70\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8,\"friends_count\":17,\"listed_count\":0,\"created_at\":\"Wed Dec 08 08:23:34 +0000 2021\",\"favourites_count\":207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":12,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555509047746600961\\/2ZKzG75C_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1468496381308719108\\/1659468568\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4819\":{\"id\":718354373286490113,\"id_str\":\"718354373286490113\",\"name\":\"Dcod\",\"screen_name\":\"ClemzyDcod\",\"location\":\"Nigeria\",\"description\":\"Code Anything \\ud83d\\udd25\\nRap Style.\\nFor bookings: dcod1@yahoo.com\\nEnquiries: 08051041414\",\"url\":\"https:\\/\\/t.co\\/xEvidsNkDz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xEvidsNkDz\",\"expanded_url\":\"https:\\/\\/clemzydcod.fanlink.to\\/garri\",\"display_url\":\"clemzydcod.fanlink.to\\/garri\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":177,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Fri Apr 08 08:26:43 +0000 2016\",\"favourites_count\":2881,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":700,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1454036467366432772\\/Q4ylkl_k_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1454036467366432772\\/Q4ylkl_k_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/718354373286490113\\/1587369137\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4820\":{\"id\":811714976,\"id_str\":\"811714976\",\"name\":\"Abrak_1981\",\"screen_name\":\"keep_itreal81\",\"location\":\"lagos \",\"description\":\"Keen to learn\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":207,\"listed_count\":0,\"created_at\":\"Sat Sep 08 21:15:56 +0000 2012\",\"favourites_count\":227,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":432,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554374851594444802\\/UKGMmjGZ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554374851594444802\\/UKGMmjGZ_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4821\":{\"id\":727930445007093760,\"id_str\":\"727930445007093760\",\"name\":\"Boakye\",\"screen_name\":\"Ur_Provost_COS\",\"location\":\"Ghana\",\"description\":\"An Environmental enthusiast, socialist and an activist.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":106,\"listed_count\":0,\"created_at\":\"Wed May 04 18:38:37 +0000 2016\",\"favourites_count\":608,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":327,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538824347749691394\\/C_Fzqhne_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538824347749691394\\/C_Fzqhne_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/727930445007093760\\/1637308069\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4822\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4823\":{\"id\":1539887806046150656,\"id_str\":\"1539887806046150656\",\"name\":\"Enerous Rose\",\"screen_name\":\"EnerousR\",\"location\":\"Maitakama, Nigeria\",\"description\":\"Business|Politics\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":97,\"friends_count\":202,\"listed_count\":0,\"created_at\":\"Thu Jun 23 08:27:33 +0000 2022\",\"favourites_count\":331,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":228,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539888354170474498\\/F0GuG5of_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539887806046150656\\/1655973403\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4824\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4825\":{\"id\":4304359282,\"id_str\":\"4304359282\",\"name\":\"Bright Jacobs\",\"screen_name\":\"bajoboru\",\"location\":\"Warri\",\"description\":\"Civil Engineer. Project Manager. MNSE. MNICE @bajconsults Group\\nIFB & only unfollow if U unfollow\",\"url\":\"https:\\/\\/t.co\\/fGYWV4mDaF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fGYWV4mDaF\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/bajconcepts\",\"display_url\":\"facebook.com\\/bajconcepts\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1027,\"friends_count\":1244,\"listed_count\":1,\"created_at\":\"Sat Nov 28 06:26:12 +0000 2015\",\"favourites_count\":1698,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1072531993412493313\\/VlOF_8dc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1072531993412493313\\/VlOF_8dc_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4826\":{\"id\":1523062194166022145,\"id_str\":\"1523062194166022145\",\"name\":\"\\ud835\\udc12\\ud835\\udc21\\ud835\\udc22\\ud835\\udc27\\ud835\\udc1a\\ud835\\udc31\\ud83e\\udd76\",\"screen_name\":\"shinax_drolls\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\ud835\\udc08\\ud835\\udc0c\\ud835\\udc04\\ud835\\udc0b\\ud835\\udc04\\ud83d\\udc7b\\n\\ud83c\\udde9\\u200a\\ud83c\\uddf7\\u200a\\ud83c\\uddf4\\u200a\\ud83c\\uddf1\\u200a\\ud83c\\uddf1\\u200a\\ud83e\\udd21\\n\\ud83e\\udd76 \\ud835\\udc13\\ud835\\udc21\\ud835\\udc1e \\ud835\\udc06\\ud835\\udc25\\ud835\\udc1a\\ud835\\udc2c\\ud835\\udc2c \\ud835\\udc0c\\ud835\\udc1a\\ud835\\udc27\\ud83e\\udd7d\\n\\ud83e\\udd76 \\ud835\\udc02\\ud835\\udc28\\ud835\\udc27\\ud835\\udc2d\\ud835\\udc1e\\ud835\\udc27\\ud835\\udc2d \\ud835\\udc02\\ud835\\udc2b\\ud835\\udc1e\\ud835\\udc1a\\ud835\\udc2d\\ud835\\udc28\\ud835\\udc2b\\ud83e\\udd76\\n\\ud835\\udc16\\ud835\\udc1e\\ud835\\udc25\\ud835\\udc1c\\ud835\\udc28\\ud835\\udc26\\ud835\\udc1e \\ud835\\udc2d\\ud835\\udc28 \\ud835\\udc12\\ud835\\udc21\\ud835\\udc22\\ud835\\udc27\\ud835\\udc1a\\ud835\\udc31 \\ud835\\udc16\\ud835\\udc28\\ud835\\udc2b\\ud835\\udc25\\ud835\\udc1d\\ud83c\\udf0d\",\"url\":\"https:\\/\\/t.co\\/0YQatPu3Cz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0YQatPu3Cz\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCnZT8WC60mrPN0VoSdTf7gw\",\"display_url\":\"youtube.com\\/channel\\/UCnZT8\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":66,\"listed_count\":0,\"created_at\":\"Sat May 07 22:09:03 +0000 2022\",\"favourites_count\":125,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555519014788554753\\/KE02tirj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555519014788554753\\/KE02tirj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1523062194166022145\\/1658091713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4827\":{\"id\":965162806344634368,\"id_str\":\"965162806344634368\",\"name\":\"Prince of Peace\",\"screen_name\":\"KabirOduola\",\"location\":\"Nigeria\",\"description\":\"Am a lover of peaceful coexistence, religion, geographic, tongue, or colorations don't affect my decision in friendship.\\nRespect, Love and Peace is all I cared\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":567,\"friends_count\":657,\"listed_count\":4,\"created_at\":\"Sun Feb 18 09:55:19 +0000 2018\",\"favourites_count\":41201,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":23505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541462139579277314\\/OpZB6Z3z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541462139579277314\\/OpZB6Z3z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/965162806344634368\\/1519583230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4828\":{\"id\":1444605007567990790,\"id_str\":\"1444605007567990790\",\"name\":\"Dr. Mercy Nelson\",\"screen_name\":\"samadnadia60\",\"location\":\"Ondo, Nigeria\",\"description\":\"Doctor|Social Influencers\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":94,\"friends_count\":135,\"listed_count\":0,\"created_at\":\"Sun Oct 03 10:08:15 +0000 2021\",\"favourites_count\":391,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":285,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540805552657375234\\/lPN_mP-r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1444605007567990790\\/1656191644\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4829\":{\"id\":275190072,\"id_str\":\"275190072\",\"name\":\"dis OBI-dient delegate \\ud83d\\ude02 \\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"akomscopy\",\"location\":\"Lagos, Nigeria\",\"description\":\"YORUBA SPACE HOST\\ud83c\\udf99\\ufe0f\\ud83d\\udc4c\\ud83c\\udf77\\nC.o.o @everythingplast on Twitter\\nBsc. public admin \\ndeals in plastic furnitures & household\\n (member APCNYL Media team)\",\"url\":\"https:\\/\\/t.co\\/iLli7PDGqa\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iLli7PDGqa\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/akomolafe-isaac-87484b147\",\"display_url\":\"linkedin.com\\/in\\/akomolafe-i\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5614,\"friends_count\":4121,\"listed_count\":12,\"created_at\":\"Thu Mar 31 20:12:06 +0000 2011\",\"favourites_count\":97179,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":133389,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554874513296343042\\/4HzVo0VL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554874513296343042\\/4HzVo0VL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/275190072\\/1646055319\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4830\":{\"id\":850631795242659840,\"id_str\":\"850631795242659840\",\"name\":\"S\\u00d8S\\u00c4\\u00c5 \\u264e\\ud83d\\udccc\",\"screen_name\":\"Hope_wisdom2\",\"location\":\"Ondo, Nigeria\",\"description\":\"Man utd\\ud83d\\udd34||YBNL Mafia\\ud83d\\udccc||Cristiano Ronaldo\\ud83c\\udf3b||#WebDesigner\\ud83d\\udcbb||#Ninjawarriorsfc\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1055,\"friends_count\":760,\"listed_count\":11,\"created_at\":\"Sat Apr 08 08:49:58 +0000 2017\",\"favourites_count\":71583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10362,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1386343306473390080\\/MLHUqsqn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/850631795242659840\\/1599216203\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4831\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4832\":{\"id\":464680113,\"id_str\":\"464680113\",\"name\":\"\\u2014\\u2014-\\u2014Wuzi is supporting Peter Obi for President\\u2014\\u2014\\u2014\\u2014\",\"screen_name\":\"dawuzi\",\"location\":\"Lagos, Nigeria\",\"description\":\"software dev extraordinaire in the making. $M naire in the making. Loving dad & husband in the making. Working on removing all (in the making) u read. #bitcoin\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":843,\"friends_count\":785,\"listed_count\":19,\"created_at\":\"Sun Jan 15 14:20:15 +0000 2012\",\"favourites_count\":14809,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28446,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1362892094088638465\\/tfheVbrI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1362892094088638465\\/tfheVbrI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/464680113\\/1652999739\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4833\":{\"id\":1309543038151200775,\"id_str\":\"1309543038151200775\",\"name\":\"Divine Autos\",\"screen_name\":\"SenatorJoseph4\",\"location\":\"\",\"description\":\"Proud Dad, Lover of God,Automobile Dealer, Sales, Purchase and maintenance, Positive vibes always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":313,\"friends_count\":486,\"listed_count\":1,\"created_at\":\"Fri Sep 25 17:19:36 +0000 2020\",\"favourites_count\":6051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1921,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1309543038151200775\\/1658871374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4834\":{\"id\":3485859021,\"id_str\":\"3485859021\",\"name\":\"Shawty\\u2019s prof\",\"screen_name\":\"ahmerdrufae\",\"location\":\"Nigeria\",\"description\":\"Biochemist \\/\\/Owner: Asb mixed bag and Asb_carsgalore \\/\\/Baller\\/\\/Believer\\/\\/\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5635,\"friends_count\":3661,\"listed_count\":0,\"created_at\":\"Sun Aug 30 01:08:24 +0000 2015\",\"favourites_count\":73134,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":22682,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533280609367359491\\/Rg3nkfFW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533280609367359491\\/Rg3nkfFW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3485859021\\/1617223073\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4835\":{\"id\":2587232163,\"id_str\":\"2587232163\",\"name\":\"Ityclety\",\"screen_name\":\"Itycletylove\",\"location\":\"Akwa Ibom, Nigeria\",\"description\":\"Impossibility Lies Within The State Of The Mind\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":351,\"friends_count\":758,\"listed_count\":0,\"created_at\":\"Fri Jun 06 15:07:48 +0000 2014\",\"favourites_count\":7483,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545061080455696386\\/moBpJi_W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545061080455696386\\/moBpJi_W_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4836\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4837\":{\"id\":2285686874,\"id_str\":\"2285686874\",\"name\":\"ChoosePeace\",\"screen_name\":\"IssahTuaha\",\"location\":\"Ghana\",\"description\":\"Founder & Director of @asfitnetwork \\u2022Teacher \\u2022Interfaith Activist \\u2022Ambassador of @GlobPeaceIndex \\u2022Traveller \\u2022SDGs Advocate\",\"url\":\"https:\\/\\/t.co\\/SPeXjSjOQ9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SPeXjSjOQ9\",\"expanded_url\":\"https:\\/\\/asfitnetwork.org\\/the-executive-director\\/\",\"display_url\":\"asfitnetwork.org\\/the-executive-\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":251,\"friends_count\":526,\"listed_count\":3,\"created_at\":\"Fri Jan 10 21:52:16 +0000 2014\",\"favourites_count\":3129,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2869,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1203458467740172288\\/qwU7VKPr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1203458467740172288\\/qwU7VKPr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2285686874\\/1639395536\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4838\":{\"id\":2717216135,\"id_str\":\"2717216135\",\"name\":\"Mentie of Delta\\ud83d\\udc70\\u200d\\u2640\\ufe0f\\u2764\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"mentie_pride\",\"location\":\"Lagos, Nigeria\",\"description\":\"An Accountant\\/\\/ An Aries \\u2648\\ufe0f\\/\\/ A lover of God\\/\\/ free minded\\/\\/ football lover \\u26bd\\ufe0f\\/\\/ A #Model\\ud83d\\udc78\\/\\/ #menties_pride \\/\\/ #April7th\\/\\/ Female Alpha\\ud83e\\udddc\\u200d\\u2640\\ufe0f\\/\\/ @arsenal\",\"url\":\"https:\\/\\/t.co\\/wJiHsMtNIq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wJiHsMtNIq\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/menties_pride\",\"display_url\":\"instagram.com\\/menties_pride\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2543,\"friends_count\":2075,\"listed_count\":1,\"created_at\":\"Fri Jul 18 23:15:30 +0000 2014\",\"favourites_count\":6191,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553475734882193409\\/c2DWE0aA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553475734882193409\\/c2DWE0aA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2717216135\\/1631616583\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4839\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4840\":{\"id\":1522897900950503425,\"id_str\":\"1522897900950503425\",\"name\":\"KING OF NORTH\\ud83d\\udc51\\ud83c\\udf93\",\"screen_name\":\"ibrahim_IbbJnr8\",\"location\":\"Abuja Nigeria\",\"description\":\"\\ud83d\\udc93if you love \\u054f\\u0585\\u028d\\u04bd\\u0585\\u0572\\u04bd\\u263a, pray for them. Pray for their peace. \\ud83d\\ude05Pray for \\u0535\\u0570\\u04bdir\\u2764 growth. Pray for their success. Pray for their happiness.\\u2764\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70,\"friends_count\":302,\"listed_count\":0,\"created_at\":\"Sat May 07 11:16:17 +0000 2022\",\"favourites_count\":3052,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3862,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534299728548069376\\/70OZAcMj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534299728548069376\\/70OZAcMj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522897900950503425\\/1654434468\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4841\":{\"id\":1309543038151200775,\"id_str\":\"1309543038151200775\",\"name\":\"Divine Autos\",\"screen_name\":\"SenatorJoseph4\",\"location\":\"\",\"description\":\"Proud Dad, Lover of God,Automobile Dealer, Sales, Purchase and maintenance, Positive vibes always.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":313,\"friends_count\":486,\"listed_count\":1,\"created_at\":\"Fri Sep 25 17:19:36 +0000 2020\",\"favourites_count\":6051,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1921,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1316516319248949248\\/8whjLTBC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1309543038151200775\\/1658871374\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4842\":{\"id\":896196087748407297,\"id_str\":\"896196087748407297\",\"name\":\"Officialdjspace\",\"screen_name\":\"officialdjspace\",\"location\":\"Lagos Nigeria \",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18,\"friends_count\":32,\"listed_count\":0,\"created_at\":\"Sat Aug 12 02:26:12 +0000 2017\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":56,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1343882367732244482\\/qIO5tr2A_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/896196087748407297\\/1609241573\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4843\":{\"id\":842751123098406912,\"id_str\":\"842751123098406912\",\"name\":\"Code\\ud83c\\udfd0\",\"screen_name\":\"OfokansiH\",\"location\":\"Nigeria\",\"description\":\"Civil Engineer \\/Blogger \\/very good in architectural and structural design \\n\\nIf you unfollow, I will definitely return the favour \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":2155,\"listed_count\":1,\"created_at\":\"Fri Mar 17 14:55:00 +0000 2017\",\"favourites_count\":2102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8531,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842751123098406912\\/1656930981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4844\":{\"id\":842751123098406912,\"id_str\":\"842751123098406912\",\"name\":\"Code\\ud83c\\udfd0\",\"screen_name\":\"OfokansiH\",\"location\":\"Nigeria\",\"description\":\"Civil Engineer \\/Blogger \\/very good in architectural and structural design \\n\\nIf you unfollow, I will definitely return the favour \\u2764\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":939,\"friends_count\":2155,\"listed_count\":1,\"created_at\":\"Fri Mar 17 14:55:00 +0000 2017\",\"favourites_count\":2102,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":8531,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1510263884233510923\\/uYl72XMa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/842751123098406912\\/1656930981\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4845\":{\"id\":1512828788,\"id_str\":\"1512828788\",\"name\":\"\\ud83c\\udf1fFaith\",\"screen_name\":\"faithluseno\",\"location\":\"Ke\",\"description\":\"LIVE TRUTH \\/ LIVE RIGHT \\/ LIVE GODLY\\/GOODLY\",\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ht0dnpKuZq\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/mishiefinthetemple\",\"display_url\":\"youtube.com\\/user\\/mishiefin\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5212,\"friends_count\":5543,\"listed_count\":9,\"created_at\":\"Thu Jun 13 08:58:42 +0000 2013\",\"favourites_count\":9146,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6324,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544377968314785801\\/QXtkOzJh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1512828788\\/1657043375\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4846\":{\"id\":889548207121989632,\"id_str\":\"889548207121989632\",\"name\":\"Tizzie\",\"screen_name\":\"tizzieofficial\",\"location\":\"\",\"description\":\"Rep BIGWIZ and Messi \\u2665\\ufe0f\\ud83e\\udd85\\ud83d\\udda4. A Professional Barber. Unilorite. Lover of Music and football. YouTubehttps:\\/\\/youtube.com\\/channel\\/UCyfA3o-KcOmsCXxxKIPLP1AU1\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":654,\"friends_count\":1124,\"listed_count\":0,\"created_at\":\"Mon Jul 24 18:09:54 +0000 2017\",\"favourites_count\":97643,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":939,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1405602991449718794\\/4Epc1eH4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889548207121989632\\/1651779013\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4847\":{\"id\":1291869860356595712,\"id_str\":\"1291869860356595712\",\"name\":\"Tmiles\",\"screen_name\":\"tmilesfootwear\",\"location\":\"Ibadan, Nigeria\",\"description\":\"A self owned brand that deals in all kind of leather shoes..\\nWe bring beauty to your feet when you rock our product..\\n07061820852 calls and WhatsApp.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34,\"friends_count\":77,\"listed_count\":0,\"created_at\":\"Fri Aug 07 22:52:48 +0000 2020\",\"favourites_count\":8583,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":408,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526318473869152257\\/viT8grUd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526318473869152257\\/viT8grUd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1291869860356595712\\/1642631054\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4848\":{\"id\":209792558,\"id_str\":\"209792558\",\"name\":\"Cameron Lewis\",\"screen_name\":\"yoURDATAisyours\",\"location\":\"Pacific Northwest\",\"description\":\"Executive in Technology + Primary industries | Husband to Dr. Hasler-Lewis | Proud Dad 3 GR8 Adults | Flyfisher | \\ud83d\\udeb2 | You are what you eat | #Resistance\",\"url\":\"https:\\/\\/t.co\\/98k6vQ1Y2C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/98k6vQ1Y2C\",\"expanded_url\":\"http:\\/\\/olivinolife.com\\/\",\"display_url\":\"olivinolife.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3713,\"friends_count\":3676,\"listed_count\":1028,\"created_at\":\"Fri Oct 29 23:06:57 +0000 2010\",\"favourites_count\":3542,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":65171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"4A913C\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1117888672106336257\\/8eR_iPgT_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1117888672106336257\\/8eR_iPgT_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/209792558\\/1583904178\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"352B21\",\"profile_text_color\":\"C2AF99\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4849\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4850\":{\"id\":1288060497334591490,\"id_str\":\"1288060497334591490\",\"name\":\"son of the south\",\"screen_name\":\"official_pizz\",\"location\":\"Lagos, Nigeria\",\"description\":\"What makes me special is seeing you smile\",\"url\":\"https:\\/\\/t.co\\/wpSlFpFJWm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wpSlFpFJWm\",\"expanded_url\":\"http:\\/\\/instagram.com\\/officialpizz\",\"display_url\":\"instagram.com\\/officialpizz\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":871,\"friends_count\":790,\"listed_count\":0,\"created_at\":\"Tue Jul 28 10:35:47 +0000 2020\",\"favourites_count\":2369,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1124,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529040812369223685\\/_yWpnZZA_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529040812369223685\\/_yWpnZZA_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1288060497334591490\\/1616147831\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4851\":{\"id\":1535514328589385729,\"id_str\":\"1535514328589385729\",\"name\":\"Queenmercy \\ud83d\\udc51\",\"screen_name\":\"MercyOlakunle2\",\"location\":\"Ado Ekiti, Nigeria\",\"description\":\"Yah it\\u2019s queen mercy follow me I flb \\ud83d\\udcaf\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":133,\"listed_count\":0,\"created_at\":\"Sat Jun 11 06:49:10 +0000 2022\",\"favourites_count\":66,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537084632352579585\\/gGq371Ll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537084632352579585\\/gGq371Ll_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1535514328589385729\\/1655790325\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4852\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4853\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4854\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4855\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4856\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4857\":{\"id\":479754411,\"id_str\":\"479754411\",\"name\":\"Chidimma&Chidiebere\",\"screen_name\":\"Aneke_Twins\",\"location\":\"Nigeria\",\"description\":\"About Us: Prod,Actors, CEO Greenville production int'l Ltd, https:\\/\\/t.co\\/wKR7Bmm02h Our Blog: https:\\/\\/t.co\\/DjOlxl33Tb Our Fan Page: https:\\/\\/t.co\\/opXqRQZgUH 08036129789\",\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vbpFnzKbfX\",\"expanded_url\":\"http:\\/\\/greenvilleproductions.com\",\"display_url\":\"greenvilleproductions.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wKR7Bmm02h\",\"expanded_url\":\"http:\\/\\/bit.ly\\/OdEnWv\",\"display_url\":\"bit.ly\\/OdEnWv\",\"indices\":[60,83]},{\"url\":\"https:\\/\\/t.co\\/DjOlxl33Tb\",\"expanded_url\":\"http:\\/\\/bit.ly\\/U2eefG\",\"display_url\":\"bit.ly\\/U2eefG\",\"indices\":[94,117]},{\"url\":\"https:\\/\\/t.co\\/opXqRQZgUH\",\"expanded_url\":\"http:\\/\\/on.fb.me\\/OdEZv7\",\"display_url\":\"on.fb.me\\/OdEZv7\",\"indices\":[132,155]}]}},\"protected\":false,\"followers_count\":6050,\"friends_count\":369,\"listed_count\":26,\"created_at\":\"Tue Jan 31 18:43:22 +0000 2012\",\"favourites_count\":2238,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9419,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1385700980554088451\\/TJOmA3_Z_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/479754411\\/1619194743\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4858\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4859\":{\"id\":817531158,\"id_str\":\"817531158\",\"name\":\"adebanjo micheal\",\"screen_name\":\"mickkycutz\",\"location\":\"Obalende\",\"description\":\"Mickky-Cutz makes perfect size and rebrand you \\ud83d\\udc4d\\ud83c\\udffb\",\"url\":\"https:\\/\\/t.co\\/LQ4W9PgoV7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LQ4W9PgoV7\",\"expanded_url\":\"http:\\/\\/Mickkycutz.com\",\"display_url\":\"Mickkycutz.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":291,\"friends_count\":854,\"listed_count\":0,\"created_at\":\"Tue Sep 11 14:30:16 +0000 2012\",\"favourites_count\":2990,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1083,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1245308995599990784\\/ZFlBd5Bm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1245308995599990784\\/ZFlBd5Bm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/817531158\\/1582035826\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4860\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4861\":{\"id\":1058495583206412288,\"id_str\":\"1058495583206412288\",\"name\":\"Favorite_Talkative\\u270c\\ufe0f\",\"screen_name\":\"Princes37396148\",\"location\":\"Lagos, Nigeria\",\"description\":\"political sociologist\\nlover of Christ \\u2764\\ufe0f\\nfriendly \\ud83d\\udc9c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Fri Nov 02 23:06:27 +0000 2018\",\"favourites_count\":781,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":81,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554537898657173504\\/RiGK6uuD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554537898657173504\\/RiGK6uuD_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4862\":{\"id\":92769204,\"id_str\":\"92769204\",\"name\":\"Gbestile Lance Armstrong \\ud83e\\udd33\\ud83c\\udffe\\ud83c\\udfa5\\ud83d\\udeb2\",\"screen_name\":\"kwazibruce\",\"location\":\"Ghana\",\"description\":\"Social Media Manager | Digital Journalist | Knowledge Worker | Alumnus @McKinsey Forward Africa Programme 2021; @UNESCO #MILclicker RTs\\u2260endorsement\",\"url\":\"https:\\/\\/t.co\\/bfuFtVDRXt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bfuFtVDRXt\",\"expanded_url\":\"https:\\/\\/kwasibruce.medium.com\\/\",\"display_url\":\"kwasibruce.medium.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1886,\"friends_count\":400,\"listed_count\":90,\"created_at\":\"Thu Nov 26 14:56:20 +0000 2009\",\"favourites_count\":7702,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":52743,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1441738092558258184\\/eud0CF42_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1441738092558258184\\/eud0CF42_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/92769204\\/1488502792\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4863\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4864\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4865\":{\"id\":1536942410592399360,\"id_str\":\"1536942410592399360\",\"name\":\"bolireloaded\",\"screen_name\":\"bolireloaded\",\"location\":\"Akure, Nigeria\",\"description\":\"We aim to become your first option when you think of consuming Roasted Plantain (Boli). We deliver to anywhere in Akure\",\"url\":\"https:\\/\\/t.co\\/ulwxB05N1i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ulwxB05N1i\",\"expanded_url\":\"http:\\/\\/wa.me\\/2347048780019\",\"display_url\":\"wa.me\\/2347048780019\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Jun 15 05:23:34 +0000 2022\",\"favourites_count\":42,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":39,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536942604612472833\\/eq5j1GdF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536942604612472833\\/eq5j1GdF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1536942410592399360\\/1655315567\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4866\":{\"id\":845155740046131200,\"id_str\":\"845155740046131200\",\"name\":\"BEST HOME-TUTORS\",\"screen_name\":\"besthometutors1\",\"location\":\"Lagos, Nigeria\",\"description\":\"Best Home-Tutors is an education content creator.https:\\/\\/t.co\\/E9nRyHsaLb https:\\/\\/t.co\\/pJhLhbB4FB\",\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eKtMOspXhA\",\"expanded_url\":\"https:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/E9nRyHsaLb\",\"expanded_url\":\"http:\\/\\/www.ilovebesthometutors.com\",\"display_url\":\"ilovebesthometutors.com\",\"indices\":[49,72]},{\"url\":\"https:\\/\\/t.co\\/pJhLhbB4FB\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UC1pTMp9HTEXRGEECsRlaAgg\",\"display_url\":\"youtube.com\\/channel\\/UC1pTM\\u2026\",\"indices\":[73,96]}]}},\"protected\":false,\"followers_count\":1331,\"friends_count\":3992,\"listed_count\":0,\"created_at\":\"Fri Mar 24 06:10:05 +0000 2017\",\"favourites_count\":1834,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4471,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1283185535515856898\\/zS4LeN2R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/845155740046131200\\/1594770245\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4867\":{\"id\":1501329714,\"id_str\":\"1501329714\",\"name\":\"DM_Cruz\",\"screen_name\":\"DavidmmhdMomoh\",\"location\":\"Lagos, Nigeria\",\"description\":\"Artist\\n\\nfollow me on IG @iam_dmcruz\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9,\"friends_count\":153,\"listed_count\":3,\"created_at\":\"Tue Jun 11 09:59:50 +0000 2013\",\"favourites_count\":72,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":39,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538846616765050881\\/vQZhzUWe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538846616765050881\\/vQZhzUWe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501329714\\/1449522658\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4868\":{\"id\":1188467539388571648,\"id_str\":\"1188467539388571648\",\"name\":\"Anya_Nyako\\u2606\",\"screen_name\":\"Anya_Nyako2505\",\"location\":\"Nigeria\\ud83c\\uddf3\\ud83c\\uddec\",\"description\":\"Jeremiah 29:11 \\nSCD (Sickle Cell Disease) Survivor \\ud83d\\udcaa\\ud83c\\udfff\\nSCD Advocate.\\nWomen are no longer meant to sit still and look pretty - We are meant to lead empires...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3045,\"friends_count\":4407,\"listed_count\":5,\"created_at\":\"Sun Oct 27 14:48:57 +0000 2019\",\"favourites_count\":47035,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":73348,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538570974295097344\\/NwWxTz0j_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1188467539388571648\\/1655657592\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4869\":{\"id\":1371869056316358656,\"id_str\":\"1371869056316358656\",\"name\":\"CHAMPAGNE BABY\",\"screen_name\":\"OgGreatCampbel1\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm the Greatest Pop Star from Africa to the world\\n24 OUT NOW WORLDWIDE !!!!\",\"url\":\"https:\\/\\/t.co\\/SPpJYf03eW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SPpJYf03eW\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/ng\\/album\\/24-ep\\/1631115875\",\"display_url\":\"music.apple.com\\/ng\\/album\\/24-ep\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46,\"friends_count\":164,\"listed_count\":0,\"created_at\":\"Tue Mar 16 17:01:01 +0000 2021\",\"favourites_count\":286,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":185,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540281198865522689\\/39XsMUAn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540281198865522689\\/39XsMUAn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1371869056316358656\\/1655166871\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4870\":{\"id\":4794711408,\"id_str\":\"4794711408\",\"name\":\"John From JokosHQ\",\"screen_name\":\"johnfromjokoshq\",\"location\":\"Edo, Nigeria\",\"description\":\"Personal Finance Blog - #MakeMoney | #SideHustles | #Insurance | #Loans - https:\\/\\/t.co\\/Caxti45Z1M\",\"url\":\"https:\\/\\/t.co\\/NluJplod3b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NluJplod3b\",\"expanded_url\":\"https:\\/\\/jokoshq.com\",\"display_url\":\"jokoshq.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Caxti45Z1M\",\"expanded_url\":\"http:\\/\\/jokoshq.com\",\"display_url\":\"jokoshq.com\",\"indices\":[74,97]}]}},\"protected\":false,\"followers_count\":507,\"friends_count\":1247,\"listed_count\":65,\"created_at\":\"Thu Jan 21 20:19:29 +0000 2016\",\"favourites_count\":294,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7392,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504416607430488064\\/JCBFE8sV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504416607430488064\\/JCBFE8sV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4794711408\\/1647515859\",\"profile_link_color\":\"2A3950\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4871\":{\"id\":1188868044447240194,\"id_str\":\"1188868044447240194\",\"name\":\"Selahmeditate\",\"screen_name\":\"selahmeditate\",\"location\":\"Lagos, Nigeria\",\"description\":\"My mission is to challenge you to think and take actions that will lead to your success in all areas of your life.\\n\\ud83d\\udcda Read Daily\\n\\ud83e\\uddf5 Your Mind is your Limit\",\"url\":\"https:\\/\\/t.co\\/gxxcdOQbqB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gxxcdOQbqB\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/SelahMeditate\",\"display_url\":\"youtube.com\\/SelahMeditate\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":55,\"listed_count\":0,\"created_at\":\"Mon Oct 28 17:20:19 +0000 2019\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":418,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1188871021987799040\\/t9nhAPFF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1188871021987799040\\/t9nhAPFF_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4872\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4873\":{\"id\":374020433,\"id_str\":\"374020433\",\"name\":\"\\ud83d\\ude1dTolani Sukurat\\ud83d\\ude1a\",\"screen_name\":\"malltallerny\",\"location\":\"Nigeria\",\"description\":\"Winona \\ud83e\\udd13 Fc Barcelona fan,\\nFashion Designer\\/Stylist \\ud83e\\udde5\\ud83d\\udc57 \\n(i own my stuff\\u270c) IG: @lani_piece\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2209,\"friends_count\":1322,\"listed_count\":0,\"created_at\":\"Thu Sep 15 15:31:56 +0000 2011\",\"favourites_count\":5779,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":44670,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530613961523138560\\/S03GORaw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530613961523138560\\/S03GORaw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/374020433\\/1614345540\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4874\":{\"id\":3503954355,\"id_str\":\"3503954355\",\"name\":\"Qs_Umar_Faruq_Ajibola\",\"screen_name\":\"OluwasanjoFaruq\",\"location\":\"Oyo, Nigeria\",\"description\":\"A Muslim\\ud83d\\udc7d\\ud83d\\udc7dA Chelsea Fan\\ud83d\\udc7d\\ud83d\\udc7dA quantity surveyor\\ud83d\\udc7d\\ud83d\\udc7d A project Manager \\ud83d\\udea7 General contractor \\ud83d\\udc77\\ud83c\\udffdA realtors \\ud83c\\udfe0\\ud83c\\udfed\\ud83c\\udfe3\\ud83c\\udfec\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":166,\"friends_count\":834,\"listed_count\":1,\"created_at\":\"Mon Aug 31 17:35:29 +0000 2015\",\"favourites_count\":2707,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1532,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550210316860014592\\/rOmunENd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550210316860014592\\/rOmunENd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3503954355\\/1605075334\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4875\":{\"id\":1551487234783821825,\"id_str\":\"1551487234783821825\",\"name\":\"Ayodele Oluwagbemi\",\"screen_name\":\"AyodeleOluwagb\",\"location\":\"Nigeria\",\"description\":\"Nigeria Digital Marketer, Content Editor, Investigator, Journalist @mobilePUNCH\",\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/27hqqoVt4q\",\"expanded_url\":\"https:\\/\\/punchng.com\\/author\\/oayodele\\/\",\"display_url\":\"punchng.com\\/author\\/oayodel\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon Jul 25 08:39:35 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554531618450178052\\/6p6Fn_4N_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551487234783821825\\/1659723200\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4876\":{\"id\":1048586980915863552,\"id_str\":\"1048586980915863552\",\"name\":\"PERFECT\",\"screen_name\":\"PHChurchgirl\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Writter and Model\\n\\nvolunteer @myEmyWealth\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47,\"friends_count\":350,\"listed_count\":1,\"created_at\":\"Sat Oct 06 14:53:12 +0000 2018\",\"favourites_count\":330,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":100,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1488196904223715338\\/6_I-ba9l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1488196904223715338\\/6_I-ba9l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1048586980915863552\\/1651668549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4877\":{\"id\":870403786547875842,\"id_str\":\"870403786547875842\",\"name\":\"Kossy Okonkwo\",\"screen_name\":\"kosisochukw_\",\"location\":\"Lagos, Nigeria\",\"description\":\"Kossy is a tech enthusiast, i breathe tech. I\\u2019m a product designer, a digital marketer, business developer, creative thinker, business woman and God\\u2019s princess\",\"url\":\"https:\\/\\/t.co\\/nSxJcMojUl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nSxJcMojUl\",\"expanded_url\":\"http:\\/\\/www.kossies.com\",\"display_url\":\"kossies.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":262,\"listed_count\":0,\"created_at\":\"Thu Jun 01 22:16:48 +0000 2017\",\"favourites_count\":86,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":156,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1459208381051424769\\/hKLzAvzw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1459208381051424769\\/hKLzAvzw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/870403786547875842\\/1636549237\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4878\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4879\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4880\":{\"id\":3906701060,\"id_str\":\"3906701060\",\"name\":\"Oluomo mko\",\"screen_name\":\"OluomoMko\",\"location\":\"Nigeria\",\"description\":\"I follow back almost instantly\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1559,\"friends_count\":3010,\"listed_count\":1,\"created_at\":\"Thu Oct 15 21:14:08 +0000 2015\",\"favourites_count\":3545,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3606,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545538963502469127\\/zsI9CCoc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3906701060\\/1657563895\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4881\":{\"id\":1247580496411996162,\"id_str\":\"1247580496411996162\",\"name\":\"Nighties & lounge wears\",\"screen_name\":\"organic_sis\",\"location\":\"Lagos, Nigeria\",\"description\":\"I sell beautiful nighties and lounge wears at affordable https:\\/\\/t.co\\/7HUENsQrIW can reach me via WhatsApp: https:\\/\\/t.co\\/1IY4nlmMKl\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7HUENsQrIW\",\"expanded_url\":\"http:\\/\\/prices.You\",\"display_url\":\"prices.You\",\"indices\":[57,80]},{\"url\":\"https:\\/\\/t.co\\/1IY4nlmMKl\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/N6DGZYI5A5JMN1\",\"display_url\":\"wa.me\\/message\\/N6DGZY\\u2026\",\"indices\":[108,131]}]}},\"protected\":false,\"followers_count\":149,\"friends_count\":243,\"listed_count\":1,\"created_at\":\"Tue Apr 07 17:42:34 +0000 2020\",\"favourites_count\":862,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1352286998627831815\\/LDW-cryf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1352286998627831815\\/LDW-cryf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1247580496411996162\\/1611070361\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4882\":{\"id\":889107902,\"id_str\":\"889107902\",\"name\":\"iexclusivenews\",\"screen_name\":\"iexclusivenews\",\"location\":\"Lagos Nigeria\",\"description\":\"Objectives and fairness\",\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2h8iWG8is9\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6171,\"friends_count\":5519,\"listed_count\":4,\"created_at\":\"Thu Oct 18 15:30:59 +0000 2012\",\"favourites_count\":66711,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":82001,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1455077954807992327\\/YRA89elO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/889107902\\/1605084051\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4883\":{\"id\":1319242347020996608,\"id_str\":\"1319242347020996608\",\"name\":\"\\ud835\\udc0f\\ud835\\udc11\\ud835\\udc04\\ud835\\udc02\\ud835\\udc08\\ud835\\udc0e\\ud835\\udc14\\ud835\\udc12 \\ud835\\udc0e\\ud835\\udc05 \\ud835\\udc0f\\ud835\\udc0e\\ud835\\udc11\\ud835\\udc13\\ud835\\udc07\\ud835\\udc00\\ud835\\udc11\\ud835\\udc02\\ud835\\udc0e\\ud835\\udc14\\ud835\\udc11\\ud835\\udc13\",\"screen_name\":\"PreciousP001\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"\\ud835\\udc01\\ud835\\udc22\\ud835\\udc28\\ud835\\udc1c\\ud835\\udc21\\ud835\\udc1e\\ud835\\udc26\\ud835\\udc22\\ud835\\udc2c\\ud835\\udc2d \\n\\ud835\\udc00\\ud835\\udc02\\ud835\\udc13\\ud835\\udc08\\ud835\\udc15\\ud835\\udc08\\ud835\\udc12\\ud835\\udc13\\n\\ud835\\udc0d\\ud835\\udc08\\ud835\\udc06\\ud835\\udc04\\ud835\\udc11\\ud835\\udc08\\ud835\\udc00\\ud835\\udc0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":515,\"listed_count\":0,\"created_at\":\"Thu Oct 22 11:41:27 +0000 2020\",\"favourites_count\":1027,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":282,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552388729339273219\\/yRekNB3o_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552388729339273219\\/yRekNB3o_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1319242347020996608\\/1658953402\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4884\":{\"id\":1399387146704855045,\"id_str\":\"1399387146704855045\",\"name\":\"Otaru of Lekki. \\ud83c\\udf1e\",\"screen_name\":\"kenneth51428693\",\"location\":\"Lagos, Nigeria\",\"description\":\"CEO Okhumode Logistics and Founder https:\\/\\/t.co\\/TzKoAmUqXK\",\"url\":\"https:\\/\\/t.co\\/940uFcGOc9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/940uFcGOc9\",\"expanded_url\":\"https:\\/\\/okhumodelogistics.bumpa.shop\\/\",\"display_url\":\"okhumodelogistics.bumpa.shop\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TzKoAmUqXK\",\"expanded_url\":\"http:\\/\\/Stationeries.com\",\"display_url\":\"Stationeries.com\",\"indices\":[35,58]}]}},\"protected\":false,\"followers_count\":21,\"friends_count\":213,\"listed_count\":0,\"created_at\":\"Mon May 31 15:28:09 +0000 2021\",\"favourites_count\":374,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":206,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552336355665092615\\/x_mYh6pV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552336355665092615\\/x_mYh6pV_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4885\":{\"id\":1485746484599529477,\"id_str\":\"1485746484599529477\",\"name\":\"SHIELD\",\"screen_name\":\"edeh_ogbodo\",\"location\":\"Nigeria\",\"description\":\"Yahweh First | A blogger | A Free Thinker | A Learner | System Engineer | TD | Content Producer\",\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rgkNdB6jkw\",\"expanded_url\":\"http:\\/\\/iexclusivenews.com.ng\",\"display_url\":\"iexclusivenews.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":225,\"friends_count\":241,\"listed_count\":2,\"created_at\":\"Mon Jan 24 22:49:53 +0000 2022\",\"favourites_count\":2101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2826,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547357459597205510\\/L-nFGd4A_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4886\":{\"id\":63752099,\"id_str\":\"63752099\",\"name\":\"Adegbite Adeyinka\",\"screen_name\":\"CodedlyCoded\",\"location\":\"Lagos ,Nigeria\",\"description\":\"I'm who I am.\\n#ex-ARS,#God lover.\\nTimes Magazine Person of the year 2006.\\n#Amateur Singer, Guitarist, #Political Juggernault and #tech + #crypto enthusiast.\",\"url\":\"http:\\/\\/t.co\\/N3M3syU2o6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/N3M3syU2o6\",\"expanded_url\":\"http:\\/\\/Facebook.com\\/cohded\",\"display_url\":\"Facebook.com\\/cohded\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":488,\"friends_count\":2492,\"listed_count\":6,\"created_at\":\"Fri Aug 07 15:35:35 +0000 2009\",\"favourites_count\":12706,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6667,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1403636436054671361\\/3qXFARMz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1403636436054671361\\/3qXFARMz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/63752099\\/1603054964\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4887\":{\"id\":1283782049694973954,\"id_str\":\"1283782049694973954\",\"name\":\"Precious Jemeni Chinonso\",\"screen_name\":\"Young_X391\",\"location\":\"Watchman\",\"description\":\"HI, I'M PRECIOUS JEMENI, A VIDEO CREATOR ALWAYS AVAILABLE FOR ANY BUSINESS.\\n WHATSAPP NUMBER\\n \\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\ud83d\\udc47\\n 09057645411\",\"url\":\"https:\\/\\/t.co\\/au8BZF19pk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/au8BZF19pk\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/CHINONSOLONDONUSEDPHONES\\/\",\"display_url\":\"facebook.com\\/CHINONSOLONDON\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":441,\"friends_count\":1353,\"listed_count\":0,\"created_at\":\"Thu Jul 16 15:14:40 +0000 2020\",\"favourites_count\":214,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":53,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545126836031700992\\/a98HUXLz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545126836031700992\\/a98HUXLz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1283782049694973954\\/1655858962\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4888\":{\"id\":1020746307231780864,\"id_str\":\"1020746307231780864\",\"name\":\"Betty's Hairven\\ud83d\\udc9a\\ud83d\\udc7c\\ud83d\\udc70\\ud83d\\udcab\",\"screen_name\":\"bettyshairven\",\"location\":\"Ibadan\\/Lagos Nigeria\",\"description\":\"\\u2666\\ufe0fBridal Hairstylist\\u2666\\ufe0fWig-Maker \\u2666\\ufe0fFrontal install&Customization \\u2666\\ufe0fPro-Wig Revamp \\u2666\\ufe0fSales of Human hair Extension. IG;@bettyshairven\\u2666\\ufe0fhttps:\\/\\/t.co\\/yZ5mXFVrhh\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yZ5mXFVrhh\",\"expanded_url\":\"http:\\/\\/wa.me\\/2348131372299\",\"display_url\":\"wa.me\\/2348131372299\",\"indices\":[133,156]}]}},\"protected\":false,\"followers_count\":143,\"friends_count\":151,\"listed_count\":0,\"created_at\":\"Sat Jul 21 19:04:18 +0000 2018\",\"favourites_count\":620,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554507812276936705\\/0vo9UYxp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554507812276936705\\/0vo9UYxp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1020746307231780864\\/1659458526\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4889\":{\"id\":1483468168656048134,\"id_str\":\"1483468168656048134\",\"name\":\"@graciaofficial\\ud83e\\udd8b\",\"screen_name\":\"graciaofficia11\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"\\ud83d\\udcaffun Vet doc in process \\ud83d\\ude09\\u2764\\ufe0f\\ud83d\\udcaf follow me I will follow back instantly \\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Tue Jan 18 15:56:04 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483468168656048134\\/1643450822\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4890\":{\"id\":2731185005,\"id_str\":\"2731185005\",\"name\":\"Cyptopreacher\",\"screen_name\":\"Rumerule\",\"location\":\"Lagos, Nigeria\",\"description\":\"Blockchain& Fintech Writer|| #Bitcoin lover||Founder CPBA\\/\\/ Co-Founder ThinkCrypto\\/\\/Digital-Market analyst @Channelstv\\/\\/ https:\\/\\/t.co\\/ClkOl0jpum\\u2026\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ClkOl0jpum\",\"expanded_url\":\"http:\\/\\/t.me\\/thecryptopreac\",\"display_url\":\"t.me\\/thecryptopreac\",\"indices\":[121,144]}]}},\"protected\":false,\"followers_count\":1550,\"friends_count\":1239,\"listed_count\":15,\"created_at\":\"Fri Aug 01 23:16:19 +0000 2014\",\"favourites_count\":6569,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4653,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1403049577121452032\\/apEIXo9d_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2731185005\\/1642407607\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4891\":{\"id\":1483468168656048134,\"id_str\":\"1483468168656048134\",\"name\":\"@graciaofficial\\ud83e\\udd8b\",\"screen_name\":\"graciaofficia11\",\"location\":\"Ogbomosho, Nigeria\",\"description\":\"\\ud83d\\udcaffun Vet doc in process \\ud83d\\ude09\\u2764\\ufe0f\\ud83d\\udcaf follow me I will follow back instantly \\ud83d\\ude0c\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":256,\"friends_count\":256,\"listed_count\":0,\"created_at\":\"Tue Jan 18 15:56:04 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":171,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483468402584952834\\/h0XfDWB8_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1483468168656048134\\/1643450822\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4892\":{\"id\":1496679506756739073,\"id_str\":\"1496679506756739073\",\"name\":\"MOE\",\"screen_name\":\"Tomiprano\",\"location\":\"Lagos, Nigeria\",\"description\":\"Minstrel |Linguist\\ud83d\\udcd6 |Gift curator \\ud83c\\udf81 |Social Media Manager\\u25fb\\ufe0fInterior Designer \\ud83e\\udeb4 |Estate Manager \\ud83c\\udfe1 |Stylist \\ud83e\\udd7b|YouTuber \\ud83d\\udcf9|Photographer| Coffee \\u2615\\ufe0f\\u2764\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/Aodkr8Sa6B\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Aodkr8Sa6B\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/tomiprano\",\"display_url\":\"linktr.ee\\/tomiprano\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":20,\"listed_count\":1,\"created_at\":\"Thu Feb 24 02:53:09 +0000 2022\",\"favourites_count\":98,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":75,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1496679906389934083\\/4ejy4cAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1496679906389934083\\/4ejy4cAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496679506756739073\\/1645671802\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4893\":{\"id\":1110786005106348032,\"id_str\":\"1110786005106348032\",\"name\":\"trylips\",\"screen_name\":\"trylips\",\"location\":\"Lagos, Nigeria\",\"description\":\"Prankster \\u2022|\\u2022Comedian|\\u2022Influencer\\u2022|\\u2022Skit Maker.. SPREAD MY LOVE\\u2764\\ufe0f.. |follow me on IG https:\\/\\/t.co\\/rHuQ9B5P2E\",\"url\":\"https:\\/\\/t.co\\/l1r6p5HISG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/l1r6p5HISG\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCDTq_NmkDeoQYEvPIKKsZ_A\",\"display_url\":\"youtube.com\\/channel\\/UCDTq_\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rHuQ9B5P2E\",\"expanded_url\":\"https:\\/\\/instagram.com\\/trylips\",\"display_url\":\"instagram.com\\/trylips\",\"indices\":[85,108]}]}},\"protected\":false,\"followers_count\":4451,\"friends_count\":2756,\"listed_count\":0,\"created_at\":\"Wed Mar 27 06:09:55 +0000 2019\",\"favourites_count\":23219,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1469,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550764883834175492\\/ViQNXvVt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550764883834175492\\/ViQNXvVt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1110786005106348032\\/1642279628\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4894\":{\"id\":134425558,\"id_str\":\"134425558\",\"name\":\"Muhammad Zubairu, PhD\",\"screen_name\":\"mzubairu\",\"location\":\"Abuja - Nigeria\",\"description\":\"Je suis qui je suis. Je dis la v\\u00e9rit\\u00e9, m\\u00eame si \\u00e7a allait me co\\u00fbter ma vie. Gaskiya tafi kobo!............\",\"url\":\"https:\\/\\/t.co\\/Ik78KtBWHY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ik78KtBWHY\",\"expanded_url\":\"http:\\/\\/nigcomsat.gov.ng\",\"display_url\":\"nigcomsat.gov.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":179,\"friends_count\":1388,\"listed_count\":0,\"created_at\":\"Sun Apr 18 11:18:44 +0000 2010\",\"favourites_count\":126,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1081124945218994177\\/LKqidrXj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1081124945218994177\\/LKqidrXj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/134425558\\/1581239965\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4895\":{\"id\":1159375453049819136,\"id_str\":\"1159375453049819136\",\"name\":\"9jalatest.com\\ud83c\\uddf3\\ud83c\\uddec\",\"screen_name\":\"9jalatesttv\",\"location\":\"Enugu, Nigeria\",\"description\":\"We are https:\\/\\/t.co\\/1rIgngLYVb Home of Entertainment We promote Quality Entertainment works to millions of Audience.\",\"url\":\"https:\\/\\/t.co\\/qFhr47YfCo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/qFhr47YfCo\",\"expanded_url\":\"http:\\/\\/www.9jalatest.com\",\"display_url\":\"9jalatest.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1rIgngLYVb\",\"expanded_url\":\"http:\\/\\/9jalatest.com\",\"display_url\":\"9jalatest.com\",\"indices\":[7,30]}]}},\"protected\":false,\"followers_count\":417,\"friends_count\":571,\"listed_count\":1,\"created_at\":\"Thu Aug 08 08:07:02 +0000 2019\",\"favourites_count\":3492,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2639,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524157266563325952\\/NbO0xR5b_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524157266563325952\\/NbO0xR5b_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1159375453049819136\\/1612178330\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4896\":{\"id\":869903364,\"id_str\":\"869903364\",\"name\":\"SHERUBAWON \\ud83d\\udc99\\ud83e\\udd85\",\"screen_name\":\"lamzyondbeat\",\"location\":\"Lagos\",\"description\":\"GISTLOVERS CLASSCAPTIAN\\u2026Follow @lamzyondbeatzblog on Instagram DM FOR ADS\\u2026BRAND AMB 4 : @wulespecial @everything_5pounds_equivalent @bodiedbymaryan\",\"url\":\"https:\\/\\/t.co\\/j96onxBRDS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/j96onxBRDS\",\"expanded_url\":\"https:\\/\\/lamzyondbeat.streamlink.to\\/DiamondEp\",\"display_url\":\"lamzyondbeat.streamlink.to\\/DiamondEp\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":449,\"friends_count\":93,\"listed_count\":2,\"created_at\":\"Tue Oct 09 13:40:23 +0000 2012\",\"favourites_count\":1185,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2888,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1394791623586951170\\/IDB3QKnw_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1394791623586951170\\/IDB3QKnw_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/869903364\\/1592880259\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4897\":{\"id\":1486578326437302277,\"id_str\":\"1486578326437302277\",\"name\":\"Sprout Analtyics And IT Solutions\",\"screen_name\":\"sproutaits\",\"location\":\"Ikorodu, Lagos\",\"description\":\"RC: 3534735|| Interactive ICT Classes || Software development || Business development || Data Analytics || #Certified\",\"url\":\"https:\\/\\/t.co\\/GavEuLIS21\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/GavEuLIS21\",\"expanded_url\":\"http:\\/\\/sproutaits.com\",\"display_url\":\"sproutaits.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Thu Jan 27 05:54:44 +0000 2022\",\"favourites_count\":93,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1486578606428110854\\/AasUoEKg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1486578606428110854\\/AasUoEKg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1486578326437302277\\/1643263607\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4898\":{\"id\":1497891403527032833,\"id_str\":\"1497891403527032833\",\"name\":\"Pi Network Africa\",\"screen_name\":\"CryptoExxpert24\",\"location\":\"Nigeria\",\"description\":\"Investing has the best results when you learn from nature.The Decentralization of Finance is really good for humanity.\\n\\n#Mail : Cryptoexxpert24@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sun Feb 27 11:08:52 +0000 2022\",\"favourites_count\":41,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":165,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1548613471511666689\\/sywtnAJx_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1497891403527032833\\/1659275230\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4899\":{\"id\":1106460109616701440,\"id_str\":\"1106460109616701440\",\"name\":\"MBA INVESTMENT NIGERIA LIMITED\",\"screen_name\":\"mba_phone_store\",\"location\":\"Ahmadu bello way kaduna state \",\"description\":\"DEALERS OF SMARTPHONES BOTH BRAND NEW AND SMART USED WE SELL WE BUY WE SWAP FOR ENQUIRIES DM\\/CALL 07032655719 OFFICE ADD:AFF 13 BACAB PLAZA AHMADU BELLO WAY KAD\",\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"expanded_url\":\"http:\\/\\/www.mbainvestment.com\",\"display_url\":\"mbainvestment.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19782,\"friends_count\":4176,\"listed_count\":14,\"created_at\":\"Fri Mar 15 07:40:21 +0000 2019\",\"favourites_count\":20983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106460109616701440\\/1577378394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4900\":{\"id\":1239717417359683587,\"id_str\":\"1239717417359683587\",\"name\":\"Daniel Gbenda\",\"screen_name\":\"danielgbenda\",\"location\":\"Makurdi, Nigeria\",\"description\":\"Gospel artist|Law Student|Farmer\",\"url\":\"https:\\/\\/t.co\\/kuQt4WAnjh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kuQt4WAnjh\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/DanielGbenda\",\"display_url\":\"linktr.ee\\/DanielGbenda\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":929,\"friends_count\":157,\"listed_count\":0,\"created_at\":\"Tue Mar 17 00:57:58 +0000 2020\",\"favourites_count\":19981,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1040,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1498630895611387906\\/beplIjip_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1498630895611387906\\/beplIjip_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239717417359683587\\/1655148498\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4901\":{\"id\":1106460109616701440,\"id_str\":\"1106460109616701440\",\"name\":\"MBA INVESTMENT NIGERIA LIMITED\",\"screen_name\":\"mba_phone_store\",\"location\":\"Ahmadu bello way kaduna state \",\"description\":\"DEALERS OF SMARTPHONES BOTH BRAND NEW AND SMART USED WE SELL WE BUY WE SWAP FOR ENQUIRIES DM\\/CALL 07032655719 OFFICE ADD:AFF 13 BACAB PLAZA AHMADU BELLO WAY KAD\",\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/P8hTbGFrsD\",\"expanded_url\":\"http:\\/\\/www.mbainvestment.com\",\"display_url\":\"mbainvestment.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19782,\"friends_count\":4176,\"listed_count\":14,\"created_at\":\"Fri Mar 15 07:40:21 +0000 2019\",\"favourites_count\":20983,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1536084041774022659\\/KRTtRpTC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106460109616701440\\/1577378394\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4902\":{\"id\":1551248834138972161,\"id_str\":\"1551248834138972161\",\"name\":\"Okeey_m\",\"screen_name\":\"okeey_m\",\"location\":\"\",\"description\":\"Lawyer, Keyboardist, Actor, Script writer, Motivational speaker, Public Speaker, Artist and a lover of Jesus \\ud83e\\udd0d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22,\"friends_count\":61,\"listed_count\":0,\"created_at\":\"Sun Jul 24 16:52:08 +0000 2022\",\"favourites_count\":67,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":28,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551249053719175170\\/e0OOn7Wq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551249053719175170\\/e0OOn7Wq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1551248834138972161\\/1659461570\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4903\":{\"id\":1154077700438601729,\"id_str\":\"1154077700438601729\",\"name\":\"Sneakers.NG\",\"screen_name\":\"uglyyorubadboy\",\"location\":\"Lagos, Nigeria\",\"description\":\"Looking dapper is good business | shoes \\ud83d\\udc5e \\ud83d\\udc5f and jerseys . We offer you the best service | SNEAKERS PLUG \\ud83d\\udd0c| \\ud83d\\udc99\\u2764\\ufe0f CULER| IG:@My_SneakersNG | Aspiring DA\",\"url\":\"https:\\/\\/t.co\\/WzQIpRWs3M\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WzQIpRWs3M\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/RIOIOAV4XGDUM1\",\"display_url\":\"wa.me\\/message\\/RIOIOA\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6168,\"friends_count\":5779,\"listed_count\":2,\"created_at\":\"Wed Jul 24 17:15:40 +0000 2019\",\"favourites_count\":62752,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":38873,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529001253702979584\\/Ivh4ZtUd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529001253702979584\\/Ivh4ZtUd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1154077700438601729\\/1653377282\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4904\":{\"id\":1280138882751827968,\"id_str\":\"1280138882751827968\",\"name\":\"SNEH J\",\"screen_name\":\"AnthonySneh\",\"location\":\"Lagos, Nigeria\",\"description\":\"FILM MAKER\\ud83c\\udfad\\ud83c\\udfad\\ud83c\\udde8\\ud83c\\uddf5\\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf3\\ud83c\\uddff\\ud83c\\uddfa\\ud83c\\uddf2\\ud83c\\uddf9\\ud83c\\uddfb ARTIST\\ud83c\\udfa4\\ud83c\\udfb5\\ud83c\\udfbc,DANCE COACH \\ud83d\\udd7a\\ud83d\\udd7a\\nAND FILM DIRECTOR \\ud83c\\udfac\\ud83c\\udf9e\\ufe0f\\ud83c\\udfa5\\ud83d\\udcfd\\ufe0f\\ud83d\\udcf8 BTS MAKER\",\"url\":\"https:\\/\\/t.co\\/ZHsxOxCJii\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZHsxOxCJii\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/sneh-j\",\"display_url\":\"audiomack.com\\/sneh-j\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":254,\"friends_count\":437,\"listed_count\":0,\"created_at\":\"Mon Jul 06 13:58:13 +0000 2020\",\"favourites_count\":5913,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2320,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553655993959153664\\/_l26d6YF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553655993959153664\\/_l26d6YF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1280138882751827968\\/1645093956\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4905\":{\"id\":848038824789856256,\"id_str\":\"848038824789856256\",\"name\":\"Daniel Dozie\",\"screen_name\":\"niel_astrildz\",\"location\":\"Lagos, Nigeria\",\"description\":\"An Enthusiast\",\"url\":\"https:\\/\\/t.co\\/bO2p61sfac\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bO2p61sfac\",\"expanded_url\":\"https:\\/\\/daniel-dozie.dev\",\"display_url\":\"daniel-dozie.dev\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":63,\"listed_count\":0,\"created_at\":\"Sat Apr 01 05:06:26 +0000 2017\",\"favourites_count\":50,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":173,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546265293894422529\\/IR-lPV9j_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546265293894422529\\/IR-lPV9j_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4906\":{\"id\":235263973,\"id_str\":\"235263973\",\"name\":\"Starfield Montessori\",\"screen_name\":\"StarfieldMS\",\"location\":\"Lagos, Nigeria\",\"description\":\"The official Twitter profile of Starfield Montessori School, Lekki.\",\"url\":\"https:\\/\\/t.co\\/eodhcjomjd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/eodhcjomjd\",\"expanded_url\":\"https:\\/\\/www.starfieldmontessorischool.com\\/schedule-a-tour\",\"display_url\":\"starfieldmontessorischool.com\\/schedule-a-tour\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99,\"friends_count\":22,\"listed_count\":1,\"created_at\":\"Fri Jan 07 19:19:50 +0000 2011\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":144,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1547940499683627009\\/OZaAYjfH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1547940499683627009\\/OZaAYjfH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/235263973\\/1428069198\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4907\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4908\":{\"id\":281642857,\"id_str\":\"281642857\",\"name\":\"Nimot Adetola Sulaimon\",\"screen_name\":\"NaijaTalkative_\",\"location\":\"Lagos\",\"description\":\"Muslim\\/\\/B.A English and International Studies\\/\\/PRfluencer\\/\\/Correspondent @pmnewsnigeria \\/\\/Vendor Relations Manager @loveweddingsng \\u2709\\ufe0f nimetua@gmail.com\",\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"expanded_url\":\"http:\\/\\/pmnewsnigeria.com\",\"display_url\":\"pmnewsnigeria.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":465,\"friends_count\":918,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:42:18 +0000 2011\",\"favourites_count\":586,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/281642857\\/1569838198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4909\":{\"id\":752521951348985856,\"id_str\":\"752521951348985856\",\"name\":\"Ol\\u00e1t\\u00fand\\u00e9 Ol\\u00f3\\u00f3r\\u00f2 (\\u00c0are On\\u00edged\\u00fa) \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\uddf1\\ud83c\\uddf7\",\"screen_name\":\"TundeOloro\",\"location\":\"Lagos, Nigeria\",\"description\":\"Remnant tribe of hyper-creative minority || If content is King then I'm the king's Maker. I curate, research, edit, Visualize and promote Content for a living\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":123,\"friends_count\":471,\"listed_count\":0,\"created_at\":\"Mon Jul 11 15:16:29 +0000 2016\",\"favourites_count\":598,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1530067535072219136\\/beZJL35J_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1530067535072219136\\/beZJL35J_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/752521951348985856\\/1659118582\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4910\":{\"id\":1553455382168834051,\"id_str\":\"1553455382168834051\",\"name\":\"Creative Primez\",\"screen_name\":\"Creativeprimez\",\"location\":\"Lagos, Nigeria\",\"description\":\"\\u2666\\ufe0fMusic Cover Art \\u2666\\ufe0fBranding Logo \\u2666\\ufe0fCreative Designs , (postal-handbill) You Imagine , We create COLLABORATION ( Place order Now )\\ud83d\\udd3d\",\"url\":\"https:\\/\\/t.co\\/avJwGy3VUJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/avJwGy3VUJ\",\"expanded_url\":\"https:\\/\\/instagram.com\\/creativeprimez?igshid=YmMyMTA2M2Y=\",\"display_url\":\"instagram.com\\/creativeprimez\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Sat Jul 30 19:00:21 +0000 2022\",\"favourites_count\":14,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":43,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553850896395780097\\/M8nPIHYe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553850896395780097\\/M8nPIHYe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553455382168834051\\/1659301912\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4911\":{\"id\":1471642299641778176,\"id_str\":\"1471642299641778176\",\"name\":\"INI\",\"screen_name\":\"blackman_ini\",\"location\":\"Nigeria\",\"description\":\"Nigerian designer\\ud83c\\uddf3\\ud83c\\uddec\\nFootwear designer\\ud83d\\udc4c\\ud83c\\udffd\\nProduct designer\\ud83d\\udc4c\\ud83c\\udffd\\nInstagram: https:\\/\\/t.co\\/ApIi9QiheJ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ApIi9QiheJ\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/i.am.dice\",\"display_url\":\"instagram.com\\/i.am.dice\",\"indices\":[70,93]}]}},\"protected\":false,\"followers_count\":98,\"friends_count\":121,\"listed_count\":0,\"created_at\":\"Fri Dec 17 00:44:15 +0000 2021\",\"favourites_count\":149,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":66,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534834784769396736\\/QrWUevo4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534834784769396736\\/QrWUevo4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1471642299641778176\\/1654720795\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4912\":{\"id\":1167791790864441351,\"id_str\":\"1167791790864441351\",\"name\":\"PeterObi stan\",\"screen_name\":\"amSirkings\",\"location\":\"Anambra, Nigeria\",\"description\":\"Philosopher. \\n\\nsirkings300@gmail.com\",\"url\":\"https:\\/\\/t.co\\/nCeFAFDg0d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nCeFAFDg0d\",\"expanded_url\":\"http:\\/\\/komback.com\",\"display_url\":\"komback.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":300,\"friends_count\":1095,\"listed_count\":0,\"created_at\":\"Sat Aug 31 13:30:56 +0000 2019\",\"favourites_count\":3292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2284,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535951366329360386\\/bzgexWKu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535951366329360386\\/bzgexWKu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1167791790864441351\\/1592875122\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4913\":{\"id\":556990334,\"id_str\":\"556990334\",\"name\":\"DAVID\",\"screen_name\":\"dadadavidob\",\"location\":\"Lagos\",\"description\":\"I am all about a detribalised Nigeria.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":795,\"friends_count\":791,\"listed_count\":2,\"created_at\":\"Wed Apr 18 16:02:36 +0000 2012\",\"favourites_count\":846,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3346,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539859335333003264\\/YB44Pzc4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539859335333003264\\/YB44Pzc4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/556990334\\/1421523260\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4914\":{\"id\":1236311190126673920,\"id_str\":\"1236311190126673920\",\"name\":\"ikeh\\ud80c\\udcf5\",\"screen_name\":\"_I_K_E_H_\",\"location\":\"Lagos, Nigeria\",\"description\":\"Welcome\\ud83e\\udd1d\\ud83c\\udffd....\\n\\n\\u2022 Influential ranter \\u2022 I serve blunt tweets(TRUTH) \\u2022\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2115,\"friends_count\":1256,\"listed_count\":1,\"created_at\":\"Sat Mar 07 15:22:28 +0000 2020\",\"favourites_count\":5048,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2325,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1369627139616694278\\/2c8Peud7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1369627139616694278\\/2c8Peud7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1236311190126673920\\/1588323497\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4915\":{\"id\":1096361679573696514,\"id_str\":\"1096361679573696514\",\"name\":\"Caridad Charity Foundation\",\"screen_name\":\"caridad_charity\",\"location\":\"Nigeria\",\"description\":\"Caridad Charity Foundation, rebuilding Women&Girl Personality, SocialEco thru, Empowerment, Education,Health & Climate Action info@caridadcharityfoundation.org\",\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/teV9Dd64j1\",\"expanded_url\":\"http:\\/\\/www.caridadcharityfoundation.org\",\"display_url\":\"caridadcharityfoundation.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21,\"friends_count\":97,\"listed_count\":0,\"created_at\":\"Fri Feb 15 10:52:48 +0000 2019\",\"favourites_count\":350,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":180,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1333802965958737925\\/G55NRVN3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1096361679573696514\\/1606838455\",\"profile_link_color\":\"1B95E0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4916\":{\"id\":1083738576284803075,\"id_str\":\"1083738576284803075\",\"name\":\"NAIJAVILLE\\ud83e\\udd85 (Nwaeri JohnPaul)\",\"screen_name\":\"NAIJAVILLE1\",\"location\":\"Ikeja, Nigeria\",\"description\":\"\\ud83d\\udc3cA platform for all gists,topics and news around.\\n\\ud83d\\udc18VFDbank1007409068 Nwaeri JP.\\n\\ud83d\\udc30-IG:https:\\/\\/t.co\\/kGxqJCUqvQ\\n\\u2b50Quidax:Qnaijaville.MAVIN FAMILY.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kGxqJCUqvQ\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/naijavi1le__\",\"display_url\":\"instagram.com\\/naijavi1le__\",\"indices\":[85,108]}]}},\"protected\":false,\"followers_count\":242,\"friends_count\":1254,\"listed_count\":0,\"created_at\":\"Fri Jan 11 14:53:06 +0000 2019\",\"favourites_count\":6122,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8208,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550975408107134979\\/OOq8-ibq_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550975408107134979\\/OOq8-ibq_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1083738576284803075\\/1650647833\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4917\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4918\":{\"id\":3291302559,\"id_str\":\"3291302559\",\"name\":\"Suleiman\",\"screen_name\":\"Yasuke1000\",\"location\":\"Nigeria\",\"description\":\"Male\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":68,\"friends_count\":583,\"listed_count\":2,\"created_at\":\"Wed May 20 13:57:09 +0000 2015\",\"favourites_count\":561,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":778,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511321637165178883\\/GZUEnbla_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511321637165178883\\/GZUEnbla_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3291302559\\/1570264040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4919\":{\"id\":512052306,\"id_str\":\"512052306\",\"name\":\"williams umeh\",\"screen_name\":\"WilliamsUmeh\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a graphic designer (and lead designer at Soft Touch by Will), tech enthusiast and a Hospitality expert.\",\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"expanded_url\":\"http:\\/\\/soft-touch-by-will.business.site\\/\",\"display_url\":\"soft-touch-by-will.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":94,\"listed_count\":1,\"created_at\":\"Fri Mar 02 15:10:38 +0000 2012\",\"favourites_count\":754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":216,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/512052306\\/1649729778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4920\":{\"id\":1125140365563060224,\"id_str\":\"1125140365563060224\",\"name\":\"Tosan Ceniplug\",\"screen_name\":\"stallionlori\",\"location\":\"Lekki, Nigeria\",\"description\":\"\\ud83c\\udff8 Founder VGC Badminton club \\ud83d\\udd0c Ceniplug \\ud83e\\udde0 @padupafrica Chaperon Tfrizil clothing co\\ud83c\\udfa5Film Distributor \\ud83d\\udcda\\ud83d\\udd8bPolitician \\u26a0\\ufe0fCaution Party Events \\ud83d\\udd1dSportainment \\ud83d\\udddd\",\"url\":\"https:\\/\\/t.co\\/o3MbSTcZat\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/o3MbSTcZat\",\"expanded_url\":\"http:\\/\\/www.mmm360.blogspot.com\",\"display_url\":\"mmm360.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1058,\"friends_count\":1147,\"listed_count\":0,\"created_at\":\"Sun May 05 20:49:02 +0000 2019\",\"favourites_count\":9197,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4116,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1494605934517268480\\/iZ7lJVll_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1494605934517268480\\/iZ7lJVll_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125140365563060224\\/1652724150\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4921\":{\"id\":1155047862369214464,\"id_str\":\"1155047862369214464\",\"name\":\"Emperor P\",\"screen_name\":\"posh_emperor\",\"location\":\"Ogun, Nigeria\",\"description\":\"Certified Economist\\ud83d\\udcafQualified Computer Engineer\\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83d\\udcbb Ember Member \\ud83c\\udf89 IntrovertedGangster\\ud83d\\udc7d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":8,\"listed_count\":0,\"created_at\":\"Sat Jul 27 09:30:44 +0000 2019\",\"favourites_count\":84,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":231,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1523220903718440961\\/X7yHzuht_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1523220903718440961\\/X7yHzuht_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1155047862369214464\\/1595241180\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4922\":{\"id\":281642857,\"id_str\":\"281642857\",\"name\":\"Nimot Adetola Sulaimon\",\"screen_name\":\"NaijaTalkative_\",\"location\":\"Lagos\",\"description\":\"Muslim\\/\\/B.A English and International Studies\\/\\/PRfluencer\\/\\/Correspondent @pmnewsnigeria \\/\\/Vendor Relations Manager @loveweddingsng \\u2709\\ufe0f nimetua@gmail.com\",\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LlzGU1Dii5\",\"expanded_url\":\"http:\\/\\/pmnewsnigeria.com\",\"display_url\":\"pmnewsnigeria.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":465,\"friends_count\":918,\"listed_count\":0,\"created_at\":\"Wed Apr 13 17:42:18 +0000 2011\",\"favourites_count\":586,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489846875184410625\\/S4H881Cg_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/281642857\\/1569838198\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4923\":{\"id\":1550926146870689792,\"id_str\":\"1550926146870689792\",\"name\":\"Ageless\",\"screen_name\":\"WumiAnu\",\"location\":\"Lagos, Nigeria\",\"description\":\"Content creator,Brand influencer ,Serial entrepreneur ,Media girl-TV, Red carpet host Speaker(My message is Jesus) Bookings:anuoluwapoadewumib@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":176,\"listed_count\":0,\"created_at\":\"Sat Jul 23 19:30:16 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550930125302206466\\/2yaRJbMD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550930125302206466\\/2yaRJbMD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1550926146870689792\\/1658605543\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4924\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6186,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234658,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303315,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4925\":{\"id\":1302347011413377024,\"id_str\":\"1302347011413377024\",\"name\":\"Israel Osinachi Kelvin\",\"screen_name\":\"osinachi_kelvin\",\"location\":\"Nigeria\",\"description\":\"Minister, Writer, Public Speaker, Son, Christian.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":359,\"friends_count\":327,\"listed_count\":1,\"created_at\":\"Sat Sep 05 20:45:22 +0000 2020\",\"favourites_count\":1107,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1205,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551572083406143488\\/vV4TLwrz_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551572083406143488\\/vV4TLwrz_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1302347011413377024\\/1658758540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4926\":{\"id\":512052306,\"id_str\":\"512052306\",\"name\":\"williams umeh\",\"screen_name\":\"WilliamsUmeh\",\"location\":\"Lagos, Nigeria\",\"description\":\"I'm a graphic designer (and lead designer at Soft Touch by Will), tech enthusiast and a Hospitality expert.\",\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KVED8UJcrz\",\"expanded_url\":\"http:\\/\\/soft-touch-by-will.business.site\\/\",\"display_url\":\"soft-touch-by-will.business.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":31,\"friends_count\":94,\"listed_count\":1,\"created_at\":\"Fri Mar 02 15:10:38 +0000 2012\",\"favourites_count\":754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":216,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1513702512146198532\\/1dZ50QsD_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/512052306\\/1649729778\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4927\":{\"id\":2941848286,\"id_str\":\"2941848286\",\"name\":\"Hanteywhite \\ud83c\\uddf3\\ud83c\\uddec #YNWA\",\"screen_name\":\"Dat_Oronboy\",\"location\":\"Nigeria\",\"description\":\"An educationist \\/ laughing gas \\ud83d\\ude02\\/ fast learner\\/ die hard Liverpool supporter #ynwa\\u2764 \\/ church boy\\n\\ud83d\\udce8: anteemmanuel5@gmail.com\\n IG:@dat_oronboy Abeg app:oronboy\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3549,\"friends_count\":2964,\"listed_count\":0,\"created_at\":\"Fri Dec 26 06:30:27 +0000 2014\",\"favourites_count\":3678,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":16852,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1489141834286833665\\/NrKAhcM4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1489141834286833665\\/NrKAhcM4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2941848286\\/1603257054\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4928\":{\"id\":1549426585425551360,\"id_str\":\"1549426585425551360\",\"name\":\"LAGOS EYE NEWS\",\"screen_name\":\"LAGOSEYENEWS\",\"location\":\"Lagos, Nigeria\",\"description\":\"... Source of Reliable News \\ud83c\\uddf3\\ud83c\\uddec\\n\\nEmail: Lagoseyenews@gmail.com\\n\\nLAGOS EYE MEDIA is on \\ud83d\\udcfb https:\\/\\/t.co\\/h2u0pRT5zu\",\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SnDEiZRn9V\",\"expanded_url\":\"http:\\/\\/www.lagoseyenews.wordpress.com\",\"display_url\":\"lagoseyenews.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h2u0pRT5zu\",\"expanded_url\":\"https:\\/\\/mixlr.com\\/lagos-eye-media\",\"display_url\":\"mixlr.com\\/lagos-eye-media\",\"indices\":[87,110]}]}},\"protected\":false,\"followers_count\":11,\"friends_count\":34,\"listed_count\":0,\"created_at\":\"Tue Jul 19 16:11:12 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":424,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549426757203369987\\/d2rQzwRW_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4929\":{\"id\":1394274549080891393,\"id_str\":\"1394274549080891393\",\"name\":\"Rega\",\"screen_name\":\"Rega_jpg\",\"location\":\"Uganda, Nigeria\",\"description\":\"Hypocrite hu ji | selective outrage only | no one's ally | biased | Rt's are not endorsement | \\u092e\\u0930\\u093e\\u0920\\u0940 \\ud83d\\udea9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":129,\"listed_count\":0,\"created_at\":\"Mon May 17 12:52:20 +0000 2021\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1394274549080891393\\/1635602283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4930\":{\"id\":1109827616809340928,\"id_str\":\"1109827616809340928\",\"name\":\"THEBLACKHEADBONNETGUY\",\"screen_name\":\"RankingSmoothy\",\"location\":\"Lagos, Nigeria\",\"description\":\"INOFITSHOUTINOWANSHOUT.....\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":632,\"friends_count\":1497,\"listed_count\":4,\"created_at\":\"Sun Mar 24 14:41:38 +0000 2019\",\"favourites_count\":4557,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":601,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551864621430104066\\/l8JOCeMr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551864621430104066\\/l8JOCeMr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1109827616809340928\\/1657879814\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4931\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4932\":{\"id\":1268444082621288448,\"id_str\":\"1268444082621288448\",\"name\":\"OBI-dent baby girl\",\"screen_name\":\"ezinnediato\",\"location\":\"Lagos, Nigeria\",\"description\":\"God\\u2019s baby girl \\u270a\\ud83c\\udffd psalms 23:1 A proud OBI-dient girl\",\"url\":\"https:\\/\\/t.co\\/xTaL5mIhFG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xTaL5mIhFG\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCvAv3pkUSBwNN42CeTxqsiA\",\"display_url\":\"youtube.com\\/channel\\/UCvAv3\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":127,\"friends_count\":82,\"listed_count\":1,\"created_at\":\"Thu Jun 04 07:27:03 +0000 2020\",\"favourites_count\":1265,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":999,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550365237794193412\\/PBgb5mkp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550365237794193412\\/PBgb5mkp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1268444082621288448\\/1591532283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4933\":{\"id\":1522975092359184385,\"id_str\":\"1522975092359184385\",\"name\":\"\\ud83d\\udd1eSURE WINNING \\u26bd FIXED MATCH PLATFORM \\ud83d\\udcb0\",\"screen_name\":\"sure_odds11\",\"location\":\"Lagos, Nigeria\",\"description\":\"We specialize in sales of fixed match 100% sure matches available at affordable prices message our admin for more info\",\"url\":\"https:\\/\\/t.co\\/yu6BZKw2KU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yu6BZKw2KU\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ZFMEO5UIWEVKH1\",\"display_url\":\"wa.me\\/message\\/ZFMEO5\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3757,\"friends_count\":4967,\"listed_count\":0,\"created_at\":\"Sat May 07 16:22:29 +0000 2022\",\"favourites_count\":50207,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15220,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535507534227841024\\/fnOmr-2Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535507534227841024\\/fnOmr-2Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1522975092359184385\\/1653246758\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4934\":{\"id\":1259953433924308994,\"id_str\":\"1259953433924308994\",\"name\":\"Dreamyryder Digital Coach Creator\",\"screen_name\":\"Ryder07575428\",\"location\":\"United States\",\"description\":\"Home of digital life\\nHow a digital \\/ Affiliate marketer, I help promo companies brand and social media. \\nAs a Digital Coach I really appreciate my work.\",\"url\":\"https:\\/\\/t.co\\/HhOS5iyxMH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HhOS5iyxMH\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/kingsley-pius-935a561ab\",\"display_url\":\"linkedin.com\\/in\\/kingsley-pi\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":152,\"listed_count\":1,\"created_at\":\"Mon May 11 21:08:16 +0000 2020\",\"favourites_count\":504,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":373,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551820235577106434\\/JFDQrOCJ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551820235577106434\\/JFDQrOCJ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1259953433924308994\\/1658817749\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4935\":{\"id\":2330665138,\"id_str\":\"2330665138\",\"name\":\"chaegame king\",\"screen_name\":\"KingChaegame\",\"location\":\"NIGERIA\",\"description\":\"\\\"If you are living in the past, you don't have a future.\\\" Join me on my enquiry into life. \\n#LFC\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":217,\"friends_count\":1032,\"listed_count\":1,\"created_at\":\"Fri Feb 07 19:28:59 +0000 2014\",\"favourites_count\":15811,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11010,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518768980529455104\\/MTJefD1F_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518768980529455104\\/MTJefD1F_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2330665138\\/1523771862\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4936\":{\"id\":1537548195332513792,\"id_str\":\"1537548195332513792\",\"name\":\"Emmanuel Abuhson\",\"screen_name\":\"emmanuelabuhson\",\"location\":\"Kogi, Nigeria\",\"description\":\"Diffusion of Innovation Strategist, Media Facilitator and Agroprenuer with over a decade work experience in Agribusiness and Business Development.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":9,\"listed_count\":0,\"created_at\":\"Thu Jun 16 21:30:42 +0000 2022\",\"favourites_count\":27,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":48,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537548641623220226\\/ffkijxj5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537548195332513792\\/1655475965\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4937\":{\"id\":1285768301159813123,\"id_str\":\"1285768301159813123\",\"name\":\"hodlzilla AKA \\ud83c\\udf36\\ud83c\\udf64\\ud83c\\udf2e\",\"screen_name\":\"Hodlzilla\",\"location\":\"OK\",\"description\":\"\\u2022 AKA @spicyshrimptaco \\u2022 async.artist \\u2022 retail banker gone degenerate \\u2022 President of the @BuffaloBookClub \\u2022 @lostboyNFT #4618 \\u2022 HNS: z8x\",\"url\":\"https:\\/\\/t.co\\/WLRF8MCTAy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WLRF8MCTAy\",\"expanded_url\":\"http:\\/\\/hns.to\\/spicyshrimptaco\",\"display_url\":\"hns.to\\/spicyshrimptaco\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202,\"friends_count\":1389,\"listed_count\":11,\"created_at\":\"Wed Jul 22 02:47:18 +0000 2020\",\"favourites_count\":456,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2017,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554506627591593986\\/biHE0J9H_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554506627591593986\\/biHE0J9H_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1285768301159813123\\/1659891963\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4938\":{\"id\":1346741244534337537,\"id_str\":\"1346741244534337537\",\"name\":\"Boprinhomes\",\"screen_name\":\"boprinhomes\",\"location\":\"Lekki, Nigeria\",\"description\":\"residential properties \\ncommercial properties\\nlands\\nshortlet apartment \\n07038995709\\n\\nboprinhomes@gmail.com\",\"url\":\"https:\\/\\/t.co\\/sqJhonO4WX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sqJhonO4WX\",\"expanded_url\":\"https:\\/\\/boprinhomes.estateagentsng.com\\/\",\"display_url\":\"boprinhomes.estateagentsng.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":105,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Jan 06 08:52:11 +0000 2021\",\"favourites_count\":51,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":389,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1507475130884276228\\/jqQgg6ZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1507475130884276228\\/jqQgg6ZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346741244534337537\\/1648245485\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4939\":{\"id\":1490616678253801475,\"id_str\":\"1490616678253801475\",\"name\":\"I'm Kwesi\",\"screen_name\":\"Imkwesi_\",\"location\":\"Ghana\",\"description\":\"Enjoy my stressfree contents here\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":194,\"friends_count\":562,\"listed_count\":0,\"created_at\":\"Mon Feb 07 09:21:43 +0000 2022\",\"favourites_count\":292,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544013342301458434\\/gsmzxm31_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490616678253801475\\/1656956475\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4940\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6186,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234658,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303315,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4941\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6186,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234658,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303315,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4942\":{\"id\":1124947501935730688,\"id_str\":\"1124947501935730688\",\"name\":\"#ImranRoofing & Properties\\ud83c\\udfe0\",\"screen_name\":\"imran_services\",\"location\":\"Lagos, Nigeria\",\"description\":\"C.E.O Imranroofing & Properties\\n&\\n DataStack NG!\\nTo Make Enquires on Any Different type of Roofing Sheet Call\\/Whatsapp 08085310359\",\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QZlE8TSToD\",\"expanded_url\":\"https:\\/\\/imranroofing.com.ng\\/\",\"display_url\":\"imranroofing.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2910,\"friends_count\":1891,\"listed_count\":2,\"created_at\":\"Sun May 05 08:02:39 +0000 2019\",\"favourites_count\":37261,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":25881,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1476078716845441025\\/fwnnZHt0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1124947501935730688\\/1576091549\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4943\":{\"id\":1502314843625435138,\"id_str\":\"1502314843625435138\",\"name\":\"Milliator \\ud83d\\udc69\\u200d\\ud83c\\udf73\\ud83e\\udd5e\\u26bd\\ufe0f\\ud83c\\udfad\",\"screen_name\":\"Milli_ator\",\"location\":\"Lagos, Nigeria\",\"description\":\"EVERYWHERE YOU GO\\ud83d\\udd04\\n~THESPIAN \\ud83c\\udfad\\n~CHEF\\ud83d\\udc69\\u200d\\ud83c\\udf73\\n~KITCHEN EXPERT\\ud83e\\udd5e\\n~FOOTBALL LOVER\\u26bd\\ufe0f\\n~MONEY LOVER\\ud83d\\udcb5\\n\\u2935\\ufe0f\\nDM open for reasonable conversations only \\ud83d\\ude11\",\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Ng75rwAEjC\",\"expanded_url\":\"http:\\/\\/www.naijabet.com\\/reg\\/af\\/301064\",\"display_url\":\"naijabet.com\\/reg\\/af\\/301064\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":479,\"friends_count\":654,\"listed_count\":0,\"created_at\":\"Fri Mar 11 16:06:03 +0000 2022\",\"favourites_count\":12000,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7868,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554070407971586048\\/awJ0_GBX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1502314843625435138\\/1659354254\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4944\":{\"id\":1496974507394973698,\"id_str\":\"1496974507394973698\",\"name\":\"frayobliss\",\"screen_name\":\"isbliss_5\",\"location\":\"Lagos, Nigeria\",\"description\":\"welcome to my world.\\nibliss the thrillar.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":237,\"listed_count\":1,\"created_at\":\"Thu Feb 24 22:25:25 +0000 2022\",\"favourites_count\":1138,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":505,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1522229885904773122\\/0GEQI2WW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496974507394973698\\/1651762861\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4945\":{\"id\":1383713110867865607,\"id_str\":\"1383713110867865607\",\"name\":\"NC Miki\",\"screen_name\":\"Chukzmiki\",\"location\":\"Abeokuta, Nigeria\",\"description\":\"Co-Founder Gamez Planet and Echoes In Crypto. Astarter Ambassador!\\nCo-Founder the Royal Challenge\",\"url\":\"https:\\/\\/t.co\\/KruJFRFTg7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KruJFRFTg7\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UC4dzQJHqd4O5nM5nRC39xHQ\",\"display_url\":\"youtube.com\\/channel\\/UC4dzQ\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":124,\"listed_count\":6,\"created_at\":\"Sun Apr 18 09:25:43 +0000 2021\",\"favourites_count\":1346,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1538298338461745152\\/FzbItlot_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1538298338461745152\\/FzbItlot_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1383713110867865607\\/1659614407\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4946\":{\"id\":1546766387821133824,\"id_str\":\"1546766387821133824\",\"name\":\"OBIdient YouTube Tv\",\"screen_name\":\"ObidientYoutube\",\"location\":\"Abuja, Nigeria\",\"description\":\"YouTube Channel Dedicated to PETER OBI adherents ( #obidients ) and Anti P.O\\u2019s\\u2026.Welcome Nigerians\",\"url\":\"https:\\/\\/t.co\\/D9II4oZzEY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/D9II4oZzEY\",\"expanded_url\":\"http:\\/\\/myurls.co\\/obidientyoutubetv\",\"display_url\":\"myurls.co\\/obidientyoutub\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":29,\"friends_count\":72,\"listed_count\":0,\"created_at\":\"Tue Jul 12 08:00:43 +0000 2022\",\"favourites_count\":44,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":132,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546766871462117379\\/PIjek6Ix_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546766871462117379\\/PIjek6Ix_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1546766387821133824\\/1657615063\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4947\":{\"id\":1394274549080891393,\"id_str\":\"1394274549080891393\",\"name\":\"Rega\",\"screen_name\":\"Rega_jpg\",\"location\":\"Uganda, Nigeria\",\"description\":\"Hypocrite hu ji | selective outrage only | no one's ally | biased | Rt's are not endorsement | \\u092e\\u0930\\u093e\\u0920\\u0940 \\ud83d\\udea9\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":129,\"listed_count\":0,\"created_at\":\"Mon May 17 12:52:20 +0000 2021\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":716,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1407446197531406337\\/abm--GGb_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1394274549080891393\\/1635602283\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4948\":{\"id\":30563247,\"id_str\":\"30563247\",\"name\":\"Ebirim Anozie\",\"screen_name\":\"AnozieEbirim\",\"location\":\"Nigeria\",\"description\":\"Human. Atheist. Cardiologist. Chess player. Fan of star wars, Lord of the rings, Survivor, Pink Floyd, the poem Howl, and Isaac Asimov's Foundation trilogy.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":294,\"friends_count\":1754,\"listed_count\":5,\"created_at\":\"Sun Apr 12 00:42:33 +0000 2009\",\"favourites_count\":7022,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545464082907766784\\/7_2quJXs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545464082907766784\\/7_2quJXs_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4949\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4950\":{\"id\":1645736004,\"id_str\":\"1645736004\",\"name\":\"Mawunya\",\"screen_name\":\"Mawunya_\",\"location\":\"Ghana\",\"description\":\"Social Activist. Blogger. Marketer. Founder, @News247gh, @kamlinks_ kelvinmawunyaashong@gmail.com. Rts \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kY5Z3BdbDP\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/mawunya\",\"display_url\":\"linktr.ee\\/mawunya\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23506,\"friends_count\":6186,\"listed_count\":17,\"created_at\":\"Sun Aug 04 17:51:16 +0000 2013\",\"favourites_count\":234658,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":303315,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550531076648538114\\/Jar_SPZK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1645736004\\/1633553218\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4951\":{\"id\":1206993464677801984,\"id_str\":\"1206993464677801984\",\"name\":\"SEAN\\u2019s_APPAREL\\u00ae\\ufe0f\",\"screen_name\":\"ChaunceySean1\",\"location\":\"Lagos,Nigeria \",\"description\":\"Your Number 1 ONLINE STREET WEARS\\/JERSEY PLUG\\ud83d\\udd0c .Don\\u2019t Doubt QUALITY\\u203c\\ufe0f#FootballTwitter.PLANET EARTH\\ud83c\\udf0eDELIVERY \\ud83d\\ude9a\",\"url\":\"https:\\/\\/t.co\\/CVPueWIPAe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CVPueWIPAe\",\"expanded_url\":\"http:\\/\\/wa.me\\/+2349018681172\",\"display_url\":\"wa.me\\/+2349018681172\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":141,\"friends_count\":1058,\"listed_count\":2,\"created_at\":\"Tue Dec 17 17:44:31 +0000 2019\",\"favourites_count\":6454,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2777,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1413964525876006916\\/zfpE26_7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1413964525876006916\\/zfpE26_7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1206993464677801984\\/1621005306\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4952\":{\"id\":833792125003243522,\"id_str\":\"833792125003243522\",\"name\":\"TheCitizen\",\"screen_name\":\"Alex_Obe10\",\"location\":\"Lagos\",\"description\":\"|Public Affairs Analyst|SDG Advocate|PDP| Arsenal #startups #DataAnalyst #ANSO Scholar \\ud83c\\uddf3\\ud83c\\uddec\\ud83c\\udde8\\ud83c\\uddf3\",\"url\":\"https:\\/\\/t.co\\/4XlqbRVJam\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4XlqbRVJam\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/alex-obeten-555b61184\",\"display_url\":\"linkedin.com\\/in\\/alex-obeten\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2533,\"friends_count\":3340,\"listed_count\":3,\"created_at\":\"Mon Feb 20 21:35:08 +0000 2017\",\"favourites_count\":41495,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15640,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1322583536113778690\\/Igj9F_p3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1322583536113778690\\/Igj9F_p3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/833792125003243522\\/1658920638\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4953\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4954\":{\"id\":1274200177348313094,\"id_str\":\"1274200177348313094\",\"name\":\"Arinze Okoye\",\"screen_name\":\"rinxe_\",\"location\":\"Abuja, Nigeria\",\"description\":\"Just a salesperson. Bring that item, let me help you sell it. #obedient\",\"url\":\"https:\\/\\/t.co\\/81Z10ARFGV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/81Z10ARFGV\",\"expanded_url\":\"https:\\/\\/chupez.com\",\"display_url\":\"chupez.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2675,\"friends_count\":2972,\"listed_count\":0,\"created_at\":\"Sat Jun 20 04:39:52 +0000 2020\",\"favourites_count\":20019,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3269,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543571416012017665\\/PN8EdDPp_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543571416012017665\\/PN8EdDPp_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1274200177348313094\\/1657128960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4955\":{\"id\":1539665465651478531,\"id_str\":\"1539665465651478531\",\"name\":\"Spiff\",\"screen_name\":\"Atomic379\",\"location\":\"Lagos, Nigeria\",\"description\":\"GOD NEVER FAILS \\u271d\\ufe0f\\n:Lit G \\ud83e\\udd18\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":66,\"friends_count\":210,\"listed_count\":0,\"created_at\":\"Wed Jun 22 17:44:00 +0000 2022\",\"favourites_count\":437,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":134,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541041584837369856\\/XnxGngm0_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541041584837369856\\/XnxGngm0_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1539665465651478531\\/1656264925\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4956\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4957\":{\"id\":1554262437997707264,\"id_str\":\"1554262437997707264\",\"name\":\"Kingsley Wealth\",\"screen_name\":\"ezekingwealth\",\"location\":\"Lagos, Nigeria\",\"description\":\"There's nothing more precious in life than FREEDOM.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Tue Aug 02 00:27:30 +0000 2022\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554264940466380800\\/oeyiizbI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554264940466380800\\/oeyiizbI_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4958\":{\"id\":932333908154355717,\"id_str\":\"932333908154355717\",\"name\":\"Videos You Missed \\ud83d\\ude02\",\"screen_name\":\"Videos_u_missed\",\"location\":\"Nigeria\",\"description\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TWDgCVyAZg\",\"expanded_url\":\"https:\\/\\/oyosm.com\\/Videos_u_missed\",\"display_url\":\"oyosm.com\\/Videos_u_missed\",\"indices\":[0,23]}]}},\"protected\":false,\"followers_count\":115,\"friends_count\":18,\"listed_count\":1,\"created_at\":\"Sun Nov 19 19:45:00 +0000 2017\",\"favourites_count\":1401,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":393,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551511417337118720\\/En6cx6Ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/932333908154355717\\/1658744430\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4959\":{\"id\":1431593977304788998,\"id_str\":\"1431593977304788998\",\"name\":\"Badman Stoney\",\"screen_name\":\"Badman__Stoney\",\"location\":\"Nigeria\",\"description\":\"\\ud83e\\udd85 INNATE TALENT \\u2764\\ufe0f\\u200d\\ud83d\\udd25\\ud83e\\uddde\\u200d\\u2642\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/VOye1vhtxZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VOye1vhtxZ\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/badman_stoney\",\"display_url\":\"instagram.com\\/badman_stoney\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":25,\"listed_count\":0,\"created_at\":\"Sat Aug 28 12:26:31 +0000 2021\",\"favourites_count\":652,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":647,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539950559511330817\\/_iCWPpNi_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539950559511330817\\/_iCWPpNi_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1431593977304788998\\/1645922408\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4960\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4961\":{\"id\":1487783608651821057,\"id_str\":\"1487783608651821057\",\"name\":\"olamzy_richie\",\"screen_name\":\"nonstopdancer55\",\"location\":\"surulere\",\"description\":\"FM ACCT DISABLED 15k followers \\ud83c\\udf0d\\u2728\\nDancer-Comedian-Prankstar \\ud83d\\udd7a \\nSIR pinky \\ud83e\\udd70\\u2665\\nLet move 1k followers \\u2728\\u2665\\ufe0f\",\"url\":\"https:\\/\\/t.co\\/n8vJeUfIZq\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/n8vJeUfIZq\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCYFUficdOCFcHee47zu4cIg\",\"display_url\":\"youtube.com\\/channel\\/UCYFUf\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":71,\"listed_count\":0,\"created_at\":\"Sun Jan 30 13:44:47 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554495526556631043\\/m4Q3b49y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554495526556631043\\/m4Q3b49y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1487783608651821057\\/1659455588\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4962\":{\"id\":1259605817613058049,\"id_str\":\"1259605817613058049\",\"name\":\"Dr Yusuf Datti Ahmed-PhD\",\"screen_name\":\"Dav_nation777\",\"location\":\"Nigeria\",\"description\":\"Labour party Vice president Candidate \\u270d\\ufe0f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":95,\"friends_count\":244,\"listed_count\":0,\"created_at\":\"Sun May 10 22:06:57 +0000 2020\",\"favourites_count\":27260,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":412,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1259609058153246723\\/4Fw8zdOt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1259609058153246723\\/4Fw8zdOt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1259605817613058049\\/1589153623\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4963\":{\"id\":1554488869902585857,\"id_str\":\"1554488869902585857\",\"name\":\"Proscrow\",\"screen_name\":\"realproscrow\",\"location\":\"Nigeria\",\"description\":\"Proscrow is a company with aim of facilitating Real Estate sales, purchase and rental.\",\"url\":\"https:\\/\\/t.co\\/VgMuoiV2Qv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VgMuoiV2Qv\",\"expanded_url\":\"http:\\/\\/proscrow.co\",\"display_url\":\"proscrow.co\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Tue Aug 02 15:27:06 +0000 2022\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554490284955811842\\/c5UlxuXH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554490284955811842\\/c5UlxuXH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1554488869902585857\\/1659454341\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4964\":{\"id\":1516387378021244937,\"id_str\":\"1516387378021244937\",\"name\":\"Cucumber TV\",\"screen_name\":\"CucumberTV1\",\"location\":\"Lagos, Nigeria\",\"description\":\"A content creator, Mc, Comedian & skit maker\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":20,\"friends_count\":62,\"listed_count\":0,\"created_at\":\"Tue Apr 19 12:05:23 +0000 2022\",\"favourites_count\":367,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":150,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516387832541106182\\/9-0Sc-m4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516387832541106182\\/9-0Sc-m4_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4965\":{\"id\":2267049964,\"id_str\":\"2267049964\",\"name\":\"Ardo Fulbe\\ud83d\\udc51\",\"screen_name\":\"usmandamani\",\"location\":\"Minna\",\"description\":\"Pullo Gainaako (Heardsman) \\nProudly Fulani\\ud83d\\udc04\\nMicrobiologist \\ud83d\\udd2c\\nUDUS Alumni \\ud83c\\udf93\\nMan United \\u26bd\\nFootball+Tennis \\ud83c\\udfd3\\n4th June \\ud83c\\udf82\\nVegetarian\\ud83c\\udf3f\\nTea\\u2615\\nAlways think death!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1305,\"friends_count\":1220,\"listed_count\":3,\"created_at\":\"Tue Jan 07 14:52:20 +0000 2014\",\"favourites_count\":75405,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8479,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1487348377444573187\\/QrUeAZ51_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1487348377444573187\\/QrUeAZ51_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2267049964\\/1571669100\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4966\":{\"id\":1499078894409949189,\"id_str\":\"1499078894409949189\",\"name\":\"Say No \\u274c To RACISM\\/WAR\",\"screen_name\":\"SayNoToRACISMW1\",\"location\":\"Nigeria\",\"description\":\"RACISM is a public health crisis\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":76,\"friends_count\":204,\"listed_count\":0,\"created_at\":\"Wed Mar 02 17:48:47 +0000 2022\",\"favourites_count\":258,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":328,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1499081971867480064\\/MnJVyTQR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1499078894409949189\\/1646244040\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4967\":{\"id\":1387101620555685888,\"id_str\":\"1387101620555685888\",\"name\":\"Grizzly Dan\",\"screen_name\":\"dan_nyeche\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Stop surviving and start Living. \\u26a0\\ufe0f\\ud83d\\uded0 Always DYOR. NFA | #Btc | #Tether |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":56,\"friends_count\":89,\"listed_count\":7,\"created_at\":\"Tue Apr 27 17:50:24 +0000 2021\",\"favourites_count\":1866,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":199,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1395505869853536257\\/c4xvOrPd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387101620555685888\\/1658484935\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4968\":{\"id\":1534904566520725505,\"id_str\":\"1534904566520725505\",\"name\":\"JUJU\",\"screen_name\":\"_usejuju\",\"location\":\"Lagos, Nigeria\",\"description\":\"Never Visit Your Bank Branch Again. \\n\\nFirst-rate Financial Solutions Provider for Small Businesses.\",\"url\":\"https:\\/\\/t.co\\/Jrxkr9ajd8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jrxkr9ajd8\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/usejuju\",\"display_url\":\"linktr.ee\\/usejuju\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19,\"friends_count\":0,\"listed_count\":0,\"created_at\":\"Thu Jun 09 14:25:53 +0000 2022\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":32,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542070778497212416\\/LkrPgy6Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542070778497212416\\/LkrPgy6Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534904566520725505\\/1656518369\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4969\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4970\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2071,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5339,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4971\":{\"id\":2456657931,\"id_str\":\"2456657931\",\"name\":\"Ogunlade Abiola Aremu\",\"screen_name\":\"OgunladeAbiola1\",\"location\":\"Nigeria\",\"description\":\"Promoting creativity to the maximum | Critic of bad governance | Blogger | Unapologetically, a Christian | Lover of sports| #ObidientlYusful\",\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7W1n9r6I38\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCUBL1qgBRBpQROJrliXuwLA\",\"display_url\":\"youtube.com\\/channel\\/UCUBL1\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1258,\"friends_count\":146,\"listed_count\":3,\"created_at\":\"Thu Apr 03 06:35:21 +0000 2014\",\"favourites_count\":1885,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3452,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1501245273917599751\\/ZcXa-djS_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2456657931\\/1646759743\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4972\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4973\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4974\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2071,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5339,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4975\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4976\":{\"id\":1346883945682632707,\"id_str\":\"1346883945682632707\",\"name\":\"Young Activist\",\"screen_name\":\"FatimaM86772400\",\"location\":\"Nigeria\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":267,\"listed_count\":0,\"created_at\":\"Wed Jan 06 18:20:29 +0000 2021\",\"favourites_count\":12302,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":15047,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1353662689055272960\\/l-s8cZRI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1346883945682632707\\/1657542713\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4977\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2071,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5339,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4978\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4979\":{\"id\":192895128,\"id_str\":\"192895128\",\"name\":\"Gabriel Ntoka\",\"screen_name\":\"Gabntoka\",\"location\":\"Lagos, Nigeria\",\"description\":\"Political Scientist | Journalist | Communications\\/PR Professional| Content Development Specialist | @Manutd fan | Lover of all things good.\",\"url\":\"https:\\/\\/t.co\\/fXsR1llGzQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fXsR1llGzQ\",\"expanded_url\":\"http:\\/\\/www.gntoka.wordpress.com\",\"display_url\":\"gntoka.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":361,\"friends_count\":498,\"listed_count\":10,\"created_at\":\"Mon Sep 20 13:08:02 +0000 2010\",\"favourites_count\":1112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":40084,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/779739764094369792\\/e4SzLcbe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/779739764094369792\\/e4SzLcbe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/192895128\\/1474739417\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4980\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2071,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5339,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4981\":{\"id\":1553470684059271169,\"id_str\":\"1553470684059271169\",\"name\":\"Stephanie\",\"screen_name\":\"StephanieAOT\",\"location\":\"Abuja, Nigeria\",\"description\":\"A girl\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Sat Jul 30 20:01:15 +0000 2022\",\"favourites_count\":9,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553486528403365888\\/2q7vnzSC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553486528403365888\\/2q7vnzSC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1553470684059271169\\/1659214936\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4982\":{\"id\":48009546,\"id_str\":\"48009546\",\"name\":\"Lecturer\\u2122\\u00a9\",\"screen_name\":\"emoruwa\",\"location\":\"lagos,Nigeria\",\"description\":\"An IATA certified travel consultant, a minister of God and someone who loves to live\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1381,\"friends_count\":2005,\"listed_count\":2,\"created_at\":\"Wed Jun 17 16:07:38 +0000 2009\",\"favourites_count\":2111,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6546,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1535184198755041281\\/i6L0LK6Q_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1535184198755041281\\/i6L0LK6Q_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48009546\\/1552492933\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4983\":{\"id\":1396142465900367874,\"id_str\":\"1396142465900367874\",\"name\":\"Angel Network News\",\"screen_name\":\"angelnetnews\",\"location\":\"Awka, Nigeria\",\"description\":\"Journalism is the Freedom of the People |\\nDownload ANN App today\\ud83d\\udcf1 https:\\/\\/t.co\\/h4aVNCCbFk\",\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4X4mDwwOXo\",\"expanded_url\":\"http:\\/\\/www.angelnetworknews.com\",\"display_url\":\"angelnetworknews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h4aVNCCbFk\",\"expanded_url\":\"https:\\/\\/angelnetworknews.com\\/mobile-apps\\/\",\"display_url\":\"angelnetworknews.com\\/mobile-apps\\/\",\"indices\":[66,89]}]}},\"protected\":false,\"followers_count\":91,\"friends_count\":83,\"listed_count\":0,\"created_at\":\"Sat May 22 16:34:50 +0000 2021\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":8848,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1396149655193354242\\/V3Yai4kI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1396142465900367874\\/1657392226\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4984\":{\"id\":1064869621206065152,\"id_str\":\"1064869621206065152\",\"name\":\"Digi-Man\",\"screen_name\":\"edigitmarketng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's #1 #Digital_Marketing company\\n\\nWe offer #digitalmarketing, Nigerians Email & #GSM #Databases, #web #designing, #graphics, #Logo, #SEO, #Branding\",\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"expanded_url\":\"https:\\/\\/digitalmarket.com.ng\",\"display_url\":\"digitalmarket.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Tue Nov 20 13:14:36 +0000 2018\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1064869621206065152\\/1642910003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4985\":{\"id\":1358478405654749186,\"id_str\":\"1358478405654749186\",\"name\":\"News247gh.com\",\"screen_name\":\"News247gh\",\"location\":\"Ghana\",\"description\":\"https:\\/\\/t.co\\/gv5Xlq9wmy, a 24\\/7 news portal. Email: news247gh@gmail.com. WhatsApp:https:\\/\\/t.co\\/oXCwHlTTzK\",\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hUqMmUcCE7\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCsJQriy9zPgcFRgBB-AlVrA\",\"display_url\":\"youtube.com\\/channel\\/UCsJQr\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gv5Xlq9wmy\",\"expanded_url\":\"http:\\/\\/news247gh.com\",\"display_url\":\"news247gh.com\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/oXCwHlTTzK\",\"expanded_url\":\"https:\\/\\/wa.me\\/message\\/ELPBQWWN2KFJB1\",\"display_url\":\"wa.me\\/message\\/ELPBQW\\u2026\",\"indices\":[82,105]}]}},\"protected\":false,\"followers_count\":7389,\"friends_count\":1,\"listed_count\":8,\"created_at\":\"Sun Feb 07 18:11:24 +0000 2021\",\"favourites_count\":2071,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5339,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550587449344147458\\/Yn68-Vm4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1358478405654749186\\/1639104726\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4986\":{\"id\":1064869621206065152,\"id_str\":\"1064869621206065152\",\"name\":\"Digi-Man\",\"screen_name\":\"edigitmarketng\",\"location\":\"Nigeria\",\"description\":\"Nigeria's #1 #Digital_Marketing company\\n\\nWe offer #digitalmarketing, Nigerians Email & #GSM #Databases, #web #designing, #graphics, #Logo, #SEO, #Branding\",\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/X3c29VUjUG\",\"expanded_url\":\"https:\\/\\/digitalmarket.com.ng\",\"display_url\":\"digitalmarket.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Tue Nov 20 13:14:36 +0000 2018\",\"favourites_count\":103,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1287519024964874241\\/myNdrYzn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1064869621206065152\\/1642910003\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4987\":{\"id\":786984526278979584,\"id_str\":\"786984526278979584\",\"name\":\"Freeworldmaster \\ud83c\\udf1d\",\"screen_name\":\"freeworldmaster\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Social media influencer\\ud83c\\udf1d \\n\\nLiverpool fc \\ud83c\\udf1d\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3038,\"friends_count\":3291,\"listed_count\":0,\"created_at\":\"Fri Oct 14 17:38:27 +0000 2016\",\"favourites_count\":36037,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12799,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1541497682040168448\\/JCLj3i2I_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1541497682040168448\\/JCLj3i2I_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786984526278979584\\/1602994115\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4988\":{\"id\":901621302,\"id_str\":\"901621302\",\"name\":\"\\ud835\\udd7b\\ud835\\udd86\\ud835\\udd88\\ud835\\udd8e\\ud835\\udd8b\\ud835\\udd8e\\ud835\\udd98\\ud835\\udd99\\ud83d\\udc09\",\"screen_name\":\"yusufrfy\",\"location\":\"Lagos, Nigeria\",\"description\":\"#NCS special OPS,#Pacifist , Pro #BRICS\",\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/SIpskBvO6e\",\"expanded_url\":\"https:\\/\\/Pacifistrfy.code.com\",\"display_url\":\"Pacifistrfy.code.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":382,\"listed_count\":11,\"created_at\":\"Wed Oct 24 11:09:12 +0000 2012\",\"favourites_count\":6099,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13374,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554970221714227200\\/UmwSq0Pm_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/901621302\\/1658100352\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4989\":{\"id\":1484150022614695938,\"id_str\":\"1484150022614695938\",\"name\":\"Superfmph\",\"screen_name\":\"superfm933\",\"location\":\"Port Harcourt, Rivers State.\",\"description\":\"Super FM is a family and urban talk sustain station located in Rivers state to transmit commercially viable, relevant and strategic programs\\/shows that inform,\",\"url\":\"https:\\/\\/t.co\\/3s3kcnef0w\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3s3kcnef0w\",\"expanded_url\":\"http:\\/\\/superfm.online\\/ph\",\"display_url\":\"superfm.online\\/ph\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":550,\"friends_count\":154,\"listed_count\":0,\"created_at\":\"Thu Jan 20 13:07:59 +0000 2022\",\"favourites_count\":766,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1089,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1551832328787435521\\/X5zXtxh3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1551832328787435521\\/X5zXtxh3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1484150022614695938\\/1658820635\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4990\":{\"id\":1164632120784039936,\"id_str\":\"1164632120784039936\",\"name\":\"Just Event Online Publication\",\"screen_name\":\"justeventsonlin\",\"location\":\"Nigeria\",\"description\":\"news, media publication, and events publication, former account @justeventonline\",\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/M1rkdk0AQ3\",\"expanded_url\":\"http:\\/\\/justeventonline.com\",\"display_url\":\"justeventonline.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1215,\"friends_count\":68,\"listed_count\":1,\"created_at\":\"Thu Aug 22 20:15:36 +0000 2019\",\"favourites_count\":36,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":17146,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1164632430705369089\\/KbSR9ldr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1164632120784039936\\/1612162614\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4991\":{\"id\":2629907452,\"id_str\":\"2629907452\",\"name\":\"Obi Bamidele Samuel\",\"screen_name\":\"Samdel_bams80\",\"location\":\"Lagos, Nigeria\",\"description\":\"show promoter, CEO of SAMDEL entertainment and promotions, Head of marketing and promotion Supernova creations\",\"url\":\"https:\\/\\/t.co\\/aS3nO4PMhh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aS3nO4PMhh\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/samdel.obi\",\"display_url\":\"facebook.com\\/samdel.obi\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2058,\"friends_count\":2403,\"listed_count\":4,\"created_at\":\"Sun Jun 22 00:13:16 +0000 2014\",\"favourites_count\":6856,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6025,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1539979401626112001\\/JGx4yc4f_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1539979401626112001\\/JGx4yc4f_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2629907452\\/1443795019\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4992\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4993\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4994\":{\"id\":259914358,\"id_str\":\"259914358\",\"name\":\"Duru Akudo. I.\",\"screen_name\":\"kudylata\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":69,\"friends_count\":419,\"listed_count\":0,\"created_at\":\"Wed Mar 02 21:16:06 +0000 2011\",\"favourites_count\":680,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1933,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1236724898527051777\\/kfsh88lc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/259914358\\/1470174951\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4995\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4996\":{\"id\":1237133081452187648,\"id_str\":\"1237133081452187648\",\"name\":\"Temitope Ajila\\ud83c\\udf3b\",\"screen_name\":\"Temitope_7\",\"location\":\"Akure, Nigeria \",\"description\":\"Tech| Web Design| NFT | e-mail: nelsontemitope5@gmail.com, LinkedIn https:\\/\\/t.co\\/3RJPCQ27Gh\",\"url\":\"https:\\/\\/t.co\\/VLmfQ6uvkU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VLmfQ6uvkU\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/untitled-collection-270350931\",\"display_url\":\"opensea.io\\/collection\\/unt\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3RJPCQ27Gh\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/in\\/temitope-ajila-2880a2191\",\"display_url\":\"linkedin.com\\/in\\/temitope-aj\\u2026\",\"indices\":[68,91]}]}},\"protected\":false,\"followers_count\":469,\"friends_count\":79,\"listed_count\":5,\"created_at\":\"Mon Mar 09 21:48:28 +0000 2020\",\"favourites_count\":49380,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7061,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555979677507919872\\/cTdYX0q__normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555979677507919872\\/cTdYX0q__normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1237133081452187648\\/1649037399\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4997\":{\"id\":1198015707277152258,\"id_str\":\"1198015707277152258\",\"name\":\"Patson Luxury Homes!!!\",\"screen_name\":\"MrJayPappy1\",\"location\":\"Port Harcourt, Nigeria\",\"description\":\"Port Harcourt Realtor, Business Dev, Interior Deco.. Chelsea FC fan ... Good music stan. trying to grow my 4th account so FB too, 3 suspended\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2293,\"friends_count\":2390,\"listed_count\":1,\"created_at\":\"Fri Nov 22 23:10:17 +0000 2019\",\"favourites_count\":4754,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4536,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533197305591091200\\/MGjwFYmW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1198015707277152258\\/1655451393\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4998\":{\"id\":773160289,\"id_str\":\"773160289\",\"name\":\"Reconcept\",\"screen_name\":\"reconceptl\",\"location\":\"Enugu, Nigeria\",\"description\":\"Author and blog writer|| Mindset coach Taking you on a journey of creating your desired life and becoming a part of the society.\",\"url\":\"https:\\/\\/t.co\\/bKNLeTJMM4\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bKNLeTJMM4\",\"expanded_url\":\"http:\\/\\/medium.com\\/@reconcept\",\"display_url\":\"medium.com\\/@reconcept\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":137,\"listed_count\":0,\"created_at\":\"Wed Aug 22 08:14:03 +0000 2012\",\"favourites_count\":289,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":275,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1543703329087393793\\/r83C50Y-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1543703329087393793\\/r83C50Y-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/773160289\\/1656882541\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"4999\":{\"id\":187204088,\"id_str\":\"187204088\",\"name\":\"Jedi Skywalker\",\"screen_name\":\"irosky007\",\"location\":\"ABUJA\",\"description\":\"Political Analyst, Promoter of truth and justice. (Tell it as it is).\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1646,\"friends_count\":602,\"listed_count\":13,\"created_at\":\"Sun Sep 05 15:28:00 +0000 2010\",\"favourites_count\":362,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":37514,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1325779580653858816\\/T4e8o1qs_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1325779580653858816\\/T4e8o1qs_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/187204088\\/1563857471\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}},\"geo\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":null,\"16\":null,\"17\":null,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":null,\"31\":null,\"32\":null,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":null,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":null,\"64\":null,\"65\":null,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":null,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":null,\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":null,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":null,\"112\":null,\"113\":null,\"114\":null,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":null,\"127\":null,\"128\":null,\"129\":null,\"130\":null,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":null,\"153\":null,\"154\":null,\"155\":null,\"156\":null,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":null,\"164\":null,\"165\":null,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":null,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":null,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":null,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":null,\"295\":null,\"296\":null,\"297\":null,\"298\":null,\"299\":null,\"300\":null,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":null,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":null,\"354\":null,\"355\":null,\"356\":null,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":null,\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":null,\"380\":null,\"381\":null,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":null,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":null,\"424\":null,\"425\":null,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":null,\"453\":null,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":null,\"475\":null,\"476\":null,\"477\":null,\"478\":null,\"479\":null,\"480\":null,\"481\":null,\"482\":null,\"483\":null,\"484\":null,\"485\":null,\"486\":null,\"487\":null,\"488\":null,\"489\":null,\"490\":null,\"491\":null,\"492\":null,\"493\":null,\"494\":null,\"495\":null,\"496\":null,\"497\":null,\"498\":null,\"499\":null,\"500\":null,\"501\":null,\"502\":null,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":null,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":null,\"524\":null,\"525\":null,\"526\":null,\"527\":null,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":null,\"535\":null,\"536\":null,\"537\":null,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":null,\"544\":null,\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":null,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":null,\"581\":null,\"582\":null,\"583\":null,\"584\":null,\"585\":null,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":null,\"598\":null,\"599\":null,\"600\":null,\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":null,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":null,\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":null,\"669\":null,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":null,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":null,\"692\":null,\"693\":null,\"694\":null,\"695\":null,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":null,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":null,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":null,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":null,\"766\":null,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":null,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":null,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":null,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":null,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":null,\"900\":null,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":null,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":null,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":null,\"957\":null,\"958\":null,\"959\":null,\"960\":null,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":null,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":null,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":null,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":null,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":null,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":null,\"1084\":null,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":null,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":null,\"1097\":null,\"1098\":null,\"1099\":null,\"1100\":null,\"1101\":null,\"1102\":null,\"1103\":null,\"1104\":null,\"1105\":null,\"1106\":null,\"1107\":null,\"1108\":null,\"1109\":null,\"1110\":null,\"1111\":null,\"1112\":null,\"1113\":null,\"1114\":null,\"1115\":null,\"1116\":null,\"1117\":null,\"1118\":null,\"1119\":null,\"1120\":null,\"1121\":null,\"1122\":null,\"1123\":null,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":null,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":null,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":null,\"1211\":null,\"1212\":null,\"1213\":null,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":null,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":null,\"1239\":null,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":null,\"1246\":null,\"1247\":null,\"1248\":null,\"1249\":null,\"1250\":null,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":null,\"1258\":null,\"1259\":null,\"1260\":null,\"1261\":null,\"1262\":null,\"1263\":null,\"1264\":null,\"1265\":null,\"1266\":null,\"1267\":null,\"1268\":null,\"1269\":null,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":null,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":null,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":null,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":null,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":null,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":null,\"1464\":null,\"1465\":null,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":null,\"1477\":null,\"1478\":null,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":null,\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":null,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":null,\"1508\":null,\"1509\":null,\"1510\":null,\"1511\":null,\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":null,\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":null,\"1526\":null,\"1527\":null,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":null,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":null,\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":null,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":null,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":null,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":null,\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":null,\"1751\":null,\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":null,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":null,\"1785\":null,\"1786\":null,\"1787\":null,\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":null,\"1798\":null,\"1799\":null,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":null,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":null,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":null,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":null,\"1917\":null,\"1918\":null,\"1919\":null,\"1920\":null,\"1921\":null,\"1922\":null,\"1923\":null,\"1924\":null,\"1925\":null,\"1926\":null,\"1927\":null,\"1928\":null,\"1929\":null,\"1930\":null,\"1931\":null,\"1932\":null,\"1933\":null,\"1934\":null,\"1935\":null,\"1936\":null,\"1937\":null,\"1938\":null,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":null,\"1945\":null,\"1946\":null,\"1947\":null,\"1948\":null,\"1949\":null,\"1950\":null,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":null,\"1957\":null,\"1958\":null,\"1959\":null,\"1960\":null,\"1961\":null,\"1962\":null,\"1963\":null,\"1964\":null,\"1965\":null,\"1966\":null,\"1967\":null,\"1968\":null,\"1969\":null,\"1970\":null,\"1971\":null,\"1972\":null,\"1973\":null,\"1974\":null,\"1975\":null,\"1976\":null,\"1977\":null,\"1978\":null,\"1979\":null,\"1980\":null,\"1981\":null,\"1982\":null,\"1983\":null,\"1984\":null,\"1985\":null,\"1986\":null,\"1987\":null,\"1988\":null,\"1989\":null,\"1990\":null,\"1991\":null,\"1992\":null,\"1993\":null,\"1994\":null,\"1995\":null,\"1996\":null,\"1997\":null,\"1998\":null,\"1999\":null,\"2000\":null,\"2001\":null,\"2002\":null,\"2003\":null,\"2004\":null,\"2005\":null,\"2006\":null,\"2007\":null,\"2008\":null,\"2009\":null,\"2010\":null,\"2011\":null,\"2012\":null,\"2013\":null,\"2014\":null,\"2015\":null,\"2016\":null,\"2017\":null,\"2018\":null,\"2019\":null,\"2020\":null,\"2021\":null,\"2022\":null,\"2023\":null,\"2024\":null,\"2025\":null,\"2026\":null,\"2027\":null,\"2028\":null,\"2029\":null,\"2030\":null,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":null,\"2035\":null,\"2036\":null,\"2037\":null,\"2038\":null,\"2039\":null,\"2040\":null,\"2041\":null,\"2042\":null,\"2043\":null,\"2044\":null,\"2045\":null,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":null,\"2050\":null,\"2051\":null,\"2052\":null,\"2053\":null,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":null,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":null,\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":null,\"2097\":null,\"2098\":null,\"2099\":null,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":null,\"2106\":null,\"2107\":null,\"2108\":null,\"2109\":null,\"2110\":null,\"2111\":null,\"2112\":null,\"2113\":null,\"2114\":null,\"2115\":null,\"2116\":null,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":null,\"2123\":null,\"2124\":null,\"2125\":null,\"2126\":null,\"2127\":null,\"2128\":null,\"2129\":null,\"2130\":null,\"2131\":null,\"2132\":null,\"2133\":null,\"2134\":null,\"2135\":null,\"2136\":null,\"2137\":null,\"2138\":null,\"2139\":null,\"2140\":null,\"2141\":null,\"2142\":null,\"2143\":null,\"2144\":null,\"2145\":null,\"2146\":null,\"2147\":null,\"2148\":null,\"2149\":null,\"2150\":null,\"2151\":null,\"2152\":null,\"2153\":null,\"2154\":null,\"2155\":null,\"2156\":null,\"2157\":null,\"2158\":null,\"2159\":null,\"2160\":null,\"2161\":null,\"2162\":null,\"2163\":null,\"2164\":null,\"2165\":null,\"2166\":null,\"2167\":null,\"2168\":null,\"2169\":null,\"2170\":null,\"2171\":null,\"2172\":null,\"2173\":null,\"2174\":null,\"2175\":null,\"2176\":null,\"2177\":null,\"2178\":null,\"2179\":null,\"2180\":null,\"2181\":null,\"2182\":null,\"2183\":null,\"2184\":null,\"2185\":null,\"2186\":null,\"2187\":null,\"2188\":null,\"2189\":null,\"2190\":null,\"2191\":null,\"2192\":null,\"2193\":null,\"2194\":null,\"2195\":null,\"2196\":null,\"2197\":null,\"2198\":null,\"2199\":null,\"2200\":null,\"2201\":null,\"2202\":null,\"2203\":null,\"2204\":null,\"2205\":null,\"2206\":null,\"2207\":null,\"2208\":null,\"2209\":null,\"2210\":null,\"2211\":null,\"2212\":null,\"2213\":null,\"2214\":null,\"2215\":null,\"2216\":null,\"2217\":null,\"2218\":null,\"2219\":null,\"2220\":null,\"2221\":null,\"2222\":null,\"2223\":null,\"2224\":null,\"2225\":null,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":null,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":null,\"2239\":null,\"2240\":null,\"2241\":null,\"2242\":null,\"2243\":null,\"2244\":null,\"2245\":null,\"2246\":null,\"2247\":null,\"2248\":null,\"2249\":null,\"2250\":null,\"2251\":null,\"2252\":null,\"2253\":null,\"2254\":null,\"2255\":null,\"2256\":null,\"2257\":null,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":null,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":null,\"2269\":null,\"2270\":null,\"2271\":null,\"2272\":null,\"2273\":null,\"2274\":null,\"2275\":null,\"2276\":null,\"2277\":null,\"2278\":null,\"2279\":null,\"2280\":null,\"2281\":null,\"2282\":null,\"2283\":null,\"2284\":null,\"2285\":null,\"2286\":null,\"2287\":null,\"2288\":null,\"2289\":null,\"2290\":null,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":null,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":null,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":null,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":null,\"2323\":null,\"2324\":null,\"2325\":null,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":null,\"2337\":null,\"2338\":null,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":null,\"2343\":null,\"2344\":null,\"2345\":null,\"2346\":null,\"2347\":null,\"2348\":null,\"2349\":null,\"2350\":null,\"2351\":null,\"2352\":null,\"2353\":null,\"2354\":null,\"2355\":null,\"2356\":null,\"2357\":null,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":null,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":null,\"2411\":null,\"2412\":null,\"2413\":null,\"2414\":null,\"2415\":null,\"2416\":null,\"2417\":null,\"2418\":null,\"2419\":null,\"2420\":null,\"2421\":null,\"2422\":null,\"2423\":null,\"2424\":null,\"2425\":null,\"2426\":null,\"2427\":null,\"2428\":null,\"2429\":null,\"2430\":null,\"2431\":null,\"2432\":null,\"2433\":null,\"2434\":null,\"2435\":null,\"2436\":null,\"2437\":null,\"2438\":null,\"2439\":null,\"2440\":null,\"2441\":null,\"2442\":null,\"2443\":null,\"2444\":null,\"2445\":null,\"2446\":null,\"2447\":null,\"2448\":null,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":null,\"2455\":null,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":null,\"2464\":null,\"2465\":null,\"2466\":null,\"2467\":null,\"2468\":null,\"2469\":null,\"2470\":null,\"2471\":null,\"2472\":null,\"2473\":null,\"2474\":null,\"2475\":null,\"2476\":null,\"2477\":null,\"2478\":null,\"2479\":null,\"2480\":null,\"2481\":null,\"2482\":null,\"2483\":null,\"2484\":null,\"2485\":null,\"2486\":null,\"2487\":null,\"2488\":null,\"2489\":null,\"2490\":null,\"2491\":null,\"2492\":null,\"2493\":null,\"2494\":null,\"2495\":null,\"2496\":null,\"2497\":null,\"2498\":null,\"2499\":null,\"2500\":null,\"2501\":null,\"2502\":null,\"2503\":null,\"2504\":null,\"2505\":null,\"2506\":null,\"2507\":null,\"2508\":null,\"2509\":null,\"2510\":null,\"2511\":null,\"2512\":null,\"2513\":null,\"2514\":null,\"2515\":null,\"2516\":null,\"2517\":null,\"2518\":null,\"2519\":null,\"2520\":null,\"2521\":null,\"2522\":null,\"2523\":null,\"2524\":null,\"2525\":null,\"2526\":null,\"2527\":null,\"2528\":null,\"2529\":null,\"2530\":null,\"2531\":null,\"2532\":null,\"2533\":null,\"2534\":null,\"2535\":null,\"2536\":null,\"2537\":null,\"2538\":null,\"2539\":null,\"2540\":null,\"2541\":null,\"2542\":null,\"2543\":null,\"2544\":null,\"2545\":null,\"2546\":null,\"2547\":null,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":null,\"2553\":null,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":null,\"2559\":null,\"2560\":null,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":null,\"2566\":null,\"2567\":null,\"2568\":null,\"2569\":null,\"2570\":null,\"2571\":null,\"2572\":null,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":null,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":null,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":null,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":null,\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":null,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":null,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":null,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":null,\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":null,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":null,\"2749\":null,\"2750\":null,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":null,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":null,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":null,\"2839\":null,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":null,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":null,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":null,\"2906\":null,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":null,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":null,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":null,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":null,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":null,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":null,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":null,\"3060\":null,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":null,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":null,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":null,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":null,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":null,\"3100\":null,\"3101\":null,\"3102\":null,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":null,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":null,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":null,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":null,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":null,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":null,\"3175\":null,\"3176\":null,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":null,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":null,\"3191\":null,\"3192\":null,\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":null,\"3245\":null,\"3246\":null,\"3247\":null,\"3248\":null,\"3249\":null,\"3250\":null,\"3251\":null,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":null,\"3259\":null,\"3260\":null,\"3261\":null,\"3262\":null,\"3263\":null,\"3264\":null,\"3265\":null,\"3266\":null,\"3267\":null,\"3268\":null,\"3269\":null,\"3270\":null,\"3271\":null,\"3272\":null,\"3273\":null,\"3274\":null,\"3275\":null,\"3276\":null,\"3277\":null,\"3278\":null,\"3279\":null,\"3280\":null,\"3281\":null,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":null,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":null,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":null,\"3326\":null,\"3327\":null,\"3328\":null,\"3329\":null,\"3330\":null,\"3331\":null,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":null,\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":null,\"3401\":null,\"3402\":null,\"3403\":null,\"3404\":null,\"3405\":null,\"3406\":null,\"3407\":null,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":null,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":null,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":null,\"3561\":null,\"3562\":null,\"3563\":null,\"3564\":null,\"3565\":null,\"3566\":null,\"3567\":null,\"3568\":null,\"3569\":null,\"3570\":null,\"3571\":null,\"3572\":null,\"3573\":null,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":null,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":null,\"3591\":null,\"3592\":null,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":null,\"3625\":null,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":null,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":null,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":null,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":null,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":null,\"3717\":null,\"3718\":null,\"3719\":null,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":null,\"3730\":null,\"3731\":null,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":null,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":null,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":null,\"3765\":null,\"3766\":null,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":null,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":null,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":null,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":null,\"3886\":null,\"3887\":null,\"3888\":null,\"3889\":null,\"3890\":null,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":null,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":null,\"3941\":null,\"3942\":null,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":null,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":null,\"3963\":null,\"3964\":null,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":null,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":null,\"4031\":null,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":null,\"4051\":null,\"4052\":null,\"4053\":null,\"4054\":null,\"4055\":null,\"4056\":null,\"4057\":null,\"4058\":null,\"4059\":null,\"4060\":null,\"4061\":null,\"4062\":null,\"4063\":null,\"4064\":null,\"4065\":null,\"4066\":null,\"4067\":null,\"4068\":null,\"4069\":null,\"4070\":null,\"4071\":null,\"4072\":null,\"4073\":null,\"4074\":null,\"4075\":null,\"4076\":null,\"4077\":null,\"4078\":null,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":null,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":null,\"4103\":null,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":null,\"4111\":null,\"4112\":null,\"4113\":null,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":null,\"4120\":null,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":null,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":null,\"4154\":null,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":null,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":null,\"4170\":null,\"4171\":null,\"4172\":null,\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":null,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":null,\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":null,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":null,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":null,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":null,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":null,\"4323\":null,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":null,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":null,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":null,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":null,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":null,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":null,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":null,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":null,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":null,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":null,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":null,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":null,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":null,\"4618\":null,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":null,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":null,\"4633\":null,\"4634\":null,\"4635\":null,\"4636\":null,\"4637\":null,\"4638\":null,\"4639\":null,\"4640\":null,\"4641\":null,\"4642\":null,\"4643\":null,\"4644\":null,\"4645\":null,\"4646\":null,\"4647\":null,\"4648\":null,\"4649\":null,\"4650\":null,\"4651\":null,\"4652\":null,\"4653\":null,\"4654\":null,\"4655\":null,\"4656\":null,\"4657\":null,\"4658\":null,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":null,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":null,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":null,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":null,\"4748\":null,\"4749\":null,\"4750\":null,\"4751\":null,\"4752\":null,\"4753\":null,\"4754\":null,\"4755\":null,\"4756\":null,\"4757\":null,\"4758\":null,\"4759\":null,\"4760\":null,\"4761\":null,\"4762\":null,\"4763\":null,\"4764\":null,\"4765\":null,\"4766\":null,\"4767\":null,\"4768\":null,\"4769\":null,\"4770\":null,\"4771\":null,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":null,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":null,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":null,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":null,\"4941\":null,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":null,\"4949\":null,\"4950\":null,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":null,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":null,\"4975\":null,\"4976\":null,\"4977\":null,\"4978\":null,\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":null,\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":null,\"4993\":null,\"4994\":null,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"coordinates\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":null,\"16\":null,\"17\":null,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":null,\"31\":null,\"32\":null,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":null,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":null,\"64\":null,\"65\":null,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":null,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":null,\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":null,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":null,\"112\":null,\"113\":null,\"114\":null,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":null,\"127\":null,\"128\":null,\"129\":null,\"130\":null,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":null,\"153\":null,\"154\":null,\"155\":null,\"156\":null,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":null,\"164\":null,\"165\":null,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":null,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":null,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":null,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":null,\"295\":null,\"296\":null,\"297\":null,\"298\":null,\"299\":null,\"300\":null,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":null,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":null,\"354\":null,\"355\":null,\"356\":null,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":null,\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":null,\"380\":null,\"381\":null,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":null,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":null,\"424\":null,\"425\":null,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":null,\"453\":null,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":null,\"475\":null,\"476\":null,\"477\":null,\"478\":null,\"479\":null,\"480\":null,\"481\":null,\"482\":null,\"483\":null,\"484\":null,\"485\":null,\"486\":null,\"487\":null,\"488\":null,\"489\":null,\"490\":null,\"491\":null,\"492\":null,\"493\":null,\"494\":null,\"495\":null,\"496\":null,\"497\":null,\"498\":null,\"499\":null,\"500\":null,\"501\":null,\"502\":null,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":null,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":null,\"524\":null,\"525\":null,\"526\":null,\"527\":null,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":null,\"535\":null,\"536\":null,\"537\":null,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":null,\"544\":null,\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":null,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":null,\"581\":null,\"582\":null,\"583\":null,\"584\":null,\"585\":null,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":null,\"598\":null,\"599\":null,\"600\":null,\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":null,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":null,\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":null,\"669\":null,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":null,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":null,\"692\":null,\"693\":null,\"694\":null,\"695\":null,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":null,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":null,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":null,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":null,\"766\":null,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":null,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":null,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":null,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":null,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":null,\"900\":null,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":null,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":null,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":null,\"957\":null,\"958\":null,\"959\":null,\"960\":null,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":null,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":null,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":null,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":null,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":null,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":null,\"1084\":null,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":null,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":null,\"1097\":null,\"1098\":null,\"1099\":null,\"1100\":null,\"1101\":null,\"1102\":null,\"1103\":null,\"1104\":null,\"1105\":null,\"1106\":null,\"1107\":null,\"1108\":null,\"1109\":null,\"1110\":null,\"1111\":null,\"1112\":null,\"1113\":null,\"1114\":null,\"1115\":null,\"1116\":null,\"1117\":null,\"1118\":null,\"1119\":null,\"1120\":null,\"1121\":null,\"1122\":null,\"1123\":null,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":null,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":null,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":null,\"1211\":null,\"1212\":null,\"1213\":null,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":null,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":null,\"1239\":null,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":null,\"1246\":null,\"1247\":null,\"1248\":null,\"1249\":null,\"1250\":null,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":null,\"1258\":null,\"1259\":null,\"1260\":null,\"1261\":null,\"1262\":null,\"1263\":null,\"1264\":null,\"1265\":null,\"1266\":null,\"1267\":null,\"1268\":null,\"1269\":null,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":null,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":null,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":null,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":null,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":null,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":null,\"1464\":null,\"1465\":null,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":null,\"1477\":null,\"1478\":null,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":null,\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":null,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":null,\"1508\":null,\"1509\":null,\"1510\":null,\"1511\":null,\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":null,\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":null,\"1526\":null,\"1527\":null,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":null,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":null,\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":null,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":null,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":null,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":null,\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":null,\"1751\":null,\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":null,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":null,\"1785\":null,\"1786\":null,\"1787\":null,\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":null,\"1798\":null,\"1799\":null,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":null,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":null,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":null,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":null,\"1917\":null,\"1918\":null,\"1919\":null,\"1920\":null,\"1921\":null,\"1922\":null,\"1923\":null,\"1924\":null,\"1925\":null,\"1926\":null,\"1927\":null,\"1928\":null,\"1929\":null,\"1930\":null,\"1931\":null,\"1932\":null,\"1933\":null,\"1934\":null,\"1935\":null,\"1936\":null,\"1937\":null,\"1938\":null,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":null,\"1945\":null,\"1946\":null,\"1947\":null,\"1948\":null,\"1949\":null,\"1950\":null,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":null,\"1957\":null,\"1958\":null,\"1959\":null,\"1960\":null,\"1961\":null,\"1962\":null,\"1963\":null,\"1964\":null,\"1965\":null,\"1966\":null,\"1967\":null,\"1968\":null,\"1969\":null,\"1970\":null,\"1971\":null,\"1972\":null,\"1973\":null,\"1974\":null,\"1975\":null,\"1976\":null,\"1977\":null,\"1978\":null,\"1979\":null,\"1980\":null,\"1981\":null,\"1982\":null,\"1983\":null,\"1984\":null,\"1985\":null,\"1986\":null,\"1987\":null,\"1988\":null,\"1989\":null,\"1990\":null,\"1991\":null,\"1992\":null,\"1993\":null,\"1994\":null,\"1995\":null,\"1996\":null,\"1997\":null,\"1998\":null,\"1999\":null,\"2000\":null,\"2001\":null,\"2002\":null,\"2003\":null,\"2004\":null,\"2005\":null,\"2006\":null,\"2007\":null,\"2008\":null,\"2009\":null,\"2010\":null,\"2011\":null,\"2012\":null,\"2013\":null,\"2014\":null,\"2015\":null,\"2016\":null,\"2017\":null,\"2018\":null,\"2019\":null,\"2020\":null,\"2021\":null,\"2022\":null,\"2023\":null,\"2024\":null,\"2025\":null,\"2026\":null,\"2027\":null,\"2028\":null,\"2029\":null,\"2030\":null,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":null,\"2035\":null,\"2036\":null,\"2037\":null,\"2038\":null,\"2039\":null,\"2040\":null,\"2041\":null,\"2042\":null,\"2043\":null,\"2044\":null,\"2045\":null,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":null,\"2050\":null,\"2051\":null,\"2052\":null,\"2053\":null,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":null,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":null,\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":null,\"2097\":null,\"2098\":null,\"2099\":null,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":null,\"2106\":null,\"2107\":null,\"2108\":null,\"2109\":null,\"2110\":null,\"2111\":null,\"2112\":null,\"2113\":null,\"2114\":null,\"2115\":null,\"2116\":null,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":null,\"2123\":null,\"2124\":null,\"2125\":null,\"2126\":null,\"2127\":null,\"2128\":null,\"2129\":null,\"2130\":null,\"2131\":null,\"2132\":null,\"2133\":null,\"2134\":null,\"2135\":null,\"2136\":null,\"2137\":null,\"2138\":null,\"2139\":null,\"2140\":null,\"2141\":null,\"2142\":null,\"2143\":null,\"2144\":null,\"2145\":null,\"2146\":null,\"2147\":null,\"2148\":null,\"2149\":null,\"2150\":null,\"2151\":null,\"2152\":null,\"2153\":null,\"2154\":null,\"2155\":null,\"2156\":null,\"2157\":null,\"2158\":null,\"2159\":null,\"2160\":null,\"2161\":null,\"2162\":null,\"2163\":null,\"2164\":null,\"2165\":null,\"2166\":null,\"2167\":null,\"2168\":null,\"2169\":null,\"2170\":null,\"2171\":null,\"2172\":null,\"2173\":null,\"2174\":null,\"2175\":null,\"2176\":null,\"2177\":null,\"2178\":null,\"2179\":null,\"2180\":null,\"2181\":null,\"2182\":null,\"2183\":null,\"2184\":null,\"2185\":null,\"2186\":null,\"2187\":null,\"2188\":null,\"2189\":null,\"2190\":null,\"2191\":null,\"2192\":null,\"2193\":null,\"2194\":null,\"2195\":null,\"2196\":null,\"2197\":null,\"2198\":null,\"2199\":null,\"2200\":null,\"2201\":null,\"2202\":null,\"2203\":null,\"2204\":null,\"2205\":null,\"2206\":null,\"2207\":null,\"2208\":null,\"2209\":null,\"2210\":null,\"2211\":null,\"2212\":null,\"2213\":null,\"2214\":null,\"2215\":null,\"2216\":null,\"2217\":null,\"2218\":null,\"2219\":null,\"2220\":null,\"2221\":null,\"2222\":null,\"2223\":null,\"2224\":null,\"2225\":null,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":null,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":null,\"2239\":null,\"2240\":null,\"2241\":null,\"2242\":null,\"2243\":null,\"2244\":null,\"2245\":null,\"2246\":null,\"2247\":null,\"2248\":null,\"2249\":null,\"2250\":null,\"2251\":null,\"2252\":null,\"2253\":null,\"2254\":null,\"2255\":null,\"2256\":null,\"2257\":null,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":null,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":null,\"2269\":null,\"2270\":null,\"2271\":null,\"2272\":null,\"2273\":null,\"2274\":null,\"2275\":null,\"2276\":null,\"2277\":null,\"2278\":null,\"2279\":null,\"2280\":null,\"2281\":null,\"2282\":null,\"2283\":null,\"2284\":null,\"2285\":null,\"2286\":null,\"2287\":null,\"2288\":null,\"2289\":null,\"2290\":null,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":null,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":null,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":null,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":null,\"2323\":null,\"2324\":null,\"2325\":null,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":null,\"2337\":null,\"2338\":null,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":null,\"2343\":null,\"2344\":null,\"2345\":null,\"2346\":null,\"2347\":null,\"2348\":null,\"2349\":null,\"2350\":null,\"2351\":null,\"2352\":null,\"2353\":null,\"2354\":null,\"2355\":null,\"2356\":null,\"2357\":null,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":null,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":null,\"2411\":null,\"2412\":null,\"2413\":null,\"2414\":null,\"2415\":null,\"2416\":null,\"2417\":null,\"2418\":null,\"2419\":null,\"2420\":null,\"2421\":null,\"2422\":null,\"2423\":null,\"2424\":null,\"2425\":null,\"2426\":null,\"2427\":null,\"2428\":null,\"2429\":null,\"2430\":null,\"2431\":null,\"2432\":null,\"2433\":null,\"2434\":null,\"2435\":null,\"2436\":null,\"2437\":null,\"2438\":null,\"2439\":null,\"2440\":null,\"2441\":null,\"2442\":null,\"2443\":null,\"2444\":null,\"2445\":null,\"2446\":null,\"2447\":null,\"2448\":null,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":null,\"2455\":null,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":null,\"2464\":null,\"2465\":null,\"2466\":null,\"2467\":null,\"2468\":null,\"2469\":null,\"2470\":null,\"2471\":null,\"2472\":null,\"2473\":null,\"2474\":null,\"2475\":null,\"2476\":null,\"2477\":null,\"2478\":null,\"2479\":null,\"2480\":null,\"2481\":null,\"2482\":null,\"2483\":null,\"2484\":null,\"2485\":null,\"2486\":null,\"2487\":null,\"2488\":null,\"2489\":null,\"2490\":null,\"2491\":null,\"2492\":null,\"2493\":null,\"2494\":null,\"2495\":null,\"2496\":null,\"2497\":null,\"2498\":null,\"2499\":null,\"2500\":null,\"2501\":null,\"2502\":null,\"2503\":null,\"2504\":null,\"2505\":null,\"2506\":null,\"2507\":null,\"2508\":null,\"2509\":null,\"2510\":null,\"2511\":null,\"2512\":null,\"2513\":null,\"2514\":null,\"2515\":null,\"2516\":null,\"2517\":null,\"2518\":null,\"2519\":null,\"2520\":null,\"2521\":null,\"2522\":null,\"2523\":null,\"2524\":null,\"2525\":null,\"2526\":null,\"2527\":null,\"2528\":null,\"2529\":null,\"2530\":null,\"2531\":null,\"2532\":null,\"2533\":null,\"2534\":null,\"2535\":null,\"2536\":null,\"2537\":null,\"2538\":null,\"2539\":null,\"2540\":null,\"2541\":null,\"2542\":null,\"2543\":null,\"2544\":null,\"2545\":null,\"2546\":null,\"2547\":null,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":null,\"2553\":null,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":null,\"2559\":null,\"2560\":null,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":null,\"2566\":null,\"2567\":null,\"2568\":null,\"2569\":null,\"2570\":null,\"2571\":null,\"2572\":null,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":null,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":null,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":null,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":null,\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":null,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":null,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":null,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":null,\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":null,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":null,\"2749\":null,\"2750\":null,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":null,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":null,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":null,\"2839\":null,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":null,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":null,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":null,\"2906\":null,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":null,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":null,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":null,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":null,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":null,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":null,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":null,\"3060\":null,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":null,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":null,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":null,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":null,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":null,\"3100\":null,\"3101\":null,\"3102\":null,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":null,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":null,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":null,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":null,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":null,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":null,\"3175\":null,\"3176\":null,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":null,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":null,\"3191\":null,\"3192\":null,\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":null,\"3245\":null,\"3246\":null,\"3247\":null,\"3248\":null,\"3249\":null,\"3250\":null,\"3251\":null,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":null,\"3259\":null,\"3260\":null,\"3261\":null,\"3262\":null,\"3263\":null,\"3264\":null,\"3265\":null,\"3266\":null,\"3267\":null,\"3268\":null,\"3269\":null,\"3270\":null,\"3271\":null,\"3272\":null,\"3273\":null,\"3274\":null,\"3275\":null,\"3276\":null,\"3277\":null,\"3278\":null,\"3279\":null,\"3280\":null,\"3281\":null,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":null,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":null,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":null,\"3326\":null,\"3327\":null,\"3328\":null,\"3329\":null,\"3330\":null,\"3331\":null,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":null,\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":null,\"3401\":null,\"3402\":null,\"3403\":null,\"3404\":null,\"3405\":null,\"3406\":null,\"3407\":null,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":null,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":null,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":null,\"3561\":null,\"3562\":null,\"3563\":null,\"3564\":null,\"3565\":null,\"3566\":null,\"3567\":null,\"3568\":null,\"3569\":null,\"3570\":null,\"3571\":null,\"3572\":null,\"3573\":null,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":null,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":null,\"3591\":null,\"3592\":null,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":null,\"3625\":null,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":null,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":null,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":null,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":null,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":null,\"3717\":null,\"3718\":null,\"3719\":null,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":null,\"3730\":null,\"3731\":null,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":null,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":null,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":null,\"3765\":null,\"3766\":null,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":null,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":null,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":null,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":null,\"3886\":null,\"3887\":null,\"3888\":null,\"3889\":null,\"3890\":null,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":null,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":null,\"3941\":null,\"3942\":null,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":null,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":null,\"3963\":null,\"3964\":null,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":null,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":null,\"4031\":null,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":null,\"4051\":null,\"4052\":null,\"4053\":null,\"4054\":null,\"4055\":null,\"4056\":null,\"4057\":null,\"4058\":null,\"4059\":null,\"4060\":null,\"4061\":null,\"4062\":null,\"4063\":null,\"4064\":null,\"4065\":null,\"4066\":null,\"4067\":null,\"4068\":null,\"4069\":null,\"4070\":null,\"4071\":null,\"4072\":null,\"4073\":null,\"4074\":null,\"4075\":null,\"4076\":null,\"4077\":null,\"4078\":null,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":null,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":null,\"4103\":null,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":null,\"4111\":null,\"4112\":null,\"4113\":null,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":null,\"4120\":null,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":null,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":null,\"4154\":null,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":null,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":null,\"4170\":null,\"4171\":null,\"4172\":null,\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":null,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":null,\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":null,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":null,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":null,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":null,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":null,\"4323\":null,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":null,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":null,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":null,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":null,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":null,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":null,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":null,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":null,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":null,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":null,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":null,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":null,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":null,\"4618\":null,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":null,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":null,\"4633\":null,\"4634\":null,\"4635\":null,\"4636\":null,\"4637\":null,\"4638\":null,\"4639\":null,\"4640\":null,\"4641\":null,\"4642\":null,\"4643\":null,\"4644\":null,\"4645\":null,\"4646\":null,\"4647\":null,\"4648\":null,\"4649\":null,\"4650\":null,\"4651\":null,\"4652\":null,\"4653\":null,\"4654\":null,\"4655\":null,\"4656\":null,\"4657\":null,\"4658\":null,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":null,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":null,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":null,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":null,\"4748\":null,\"4749\":null,\"4750\":null,\"4751\":null,\"4752\":null,\"4753\":null,\"4754\":null,\"4755\":null,\"4756\":null,\"4757\":null,\"4758\":null,\"4759\":null,\"4760\":null,\"4761\":null,\"4762\":null,\"4763\":null,\"4764\":null,\"4765\":null,\"4766\":null,\"4767\":null,\"4768\":null,\"4769\":null,\"4770\":null,\"4771\":null,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":null,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":null,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":null,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":null,\"4941\":null,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":null,\"4949\":null,\"4950\":null,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":null,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":null,\"4975\":null,\"4976\":null,\"4977\":null,\"4978\":null,\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":null,\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":null,\"4993\":null,\"4994\":null,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"place\":{\"0\":null,\"1\":null,\"2\":null,\"3\":{\"id\":\"d73762e172ac7c37\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/d73762e172ac7c37.json\",\"place_type\":\"country\",\"name\":\"Algeria\",\"full_name\":\"Algeria\",\"country_code\":\"DZ\",\"country\":\"Algeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-8.670788,18.9444411],[11.9993345,18.9444411],[11.9993345,37.089897],[-8.670788,37.089897]]]},\"attributes\":{}},\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":null,\"13\":null,\"14\":{\"id\":\"a0583a9994e6bf1b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/a0583a9994e6bf1b.json\",\"place_type\":\"country\",\"name\":\"Malawi\",\"full_name\":\"Malawi\",\"country_code\":\"MW\",\"country\":\"Malawi\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[32.6718934,-17.1276504],[35.92038,-17.1276504],[35.92038,-9.3670837],[32.6718934,-9.3670837]]]},\"attributes\":{}},\"15\":null,\"16\":null,\"17\":null,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":null,\"31\":null,\"32\":null,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":null,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":null,\"64\":{\"id\":\"00ccf9f124e558ee\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ccf9f124e558ee.json\",\"place_type\":\"city\",\"name\":\"Gboko\",\"full_name\":\"Gboko, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.9705568,7.2969495],[9.0285666,7.2969495],[9.0285666,7.360567],[8.9705568,7.360567]]]},\"attributes\":{}},\"65\":null,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":{\"id\":\"01ac327903b9ad94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ac327903b9ad94.json\",\"place_type\":\"admin\",\"name\":\"Central\",\"full_name\":\"Central, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-2.2033576,5.0318184],[-0.3913921,5.0318184],[-0.3913921,6.3125794],[-2.2033576,6.3125794]]]},\"attributes\":{}},\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"78\":null,\"79\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"80\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"81\":null,\"82\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":null,\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":null,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"112\":null,\"113\":null,\"114\":null,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":{\"id\":\"07d9f52288885000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9f52288885000.json\",\"place_type\":\"poi\",\"name\":\"Tema community 4\",\"full_name\":\"Tema community 4\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0109230337,5.6525038518],[-0.0109230337,5.6525038518],[-0.0109230337,5.6525038518],[-0.0109230337,5.6525038518]]]},\"attributes\":{}},\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":null,\"127\":null,\"128\":null,\"129\":null,\"130\":null,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":{\"id\":\"00ace66c41e736ad\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ace66c41e736ad.json\",\"place_type\":\"city\",\"name\":\"Mubi\",\"full_name\":\"Mubi, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.2439137,10.2447234],[13.2993253,10.2447234],[13.2993253,10.2929267],[13.2439137,10.2929267]]]},\"attributes\":{}},\"138\":null,\"139\":{\"id\":\"00ace66c41e736ad\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ace66c41e736ad.json\",\"place_type\":\"city\",\"name\":\"Mubi\",\"full_name\":\"Mubi, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.2439137,10.2447234],[13.2993253,10.2447234],[13.2993253,10.2929267],[13.2439137,10.2929267]]]},\"attributes\":{}},\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":null,\"153\":null,\"154\":null,\"155\":{\"id\":\"01e98f2222fb0fa9\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01e98f2222fb0fa9.json\",\"place_type\":\"admin\",\"name\":\"Enugu\",\"full_name\":\"Enugu, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9337906,5.9218314],[7.8801954,5.9218314],[7.8801954,7.1119359],[6.9337906,7.1119359]]]},\"attributes\":{}},\"156\":null,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":null,\"164\":null,\"165\":null,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":{\"id\":\"00b1231d2214913c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00b1231d2214913c.json\",\"place_type\":\"city\",\"name\":\"Abeokuta\",\"full_name\":\"Abeokuta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2713206,7.0996682],[3.4335622,7.0996682],[3.4335622,7.209188],[3.2713206,7.209188]]]},\"attributes\":{}},\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":{\"id\":\"07d9eaaf22087000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9eaaf22087000.json\",\"place_type\":\"poi\",\"name\":\"Portharcourt\",\"full_name\":\"Portharcourt\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.0098018507,4.8144314198],[7.0098018507,4.8144314198],[7.0098018507,4.8144314198],[7.0098018507,4.8144314198]]]},\"attributes\":{}},\"187\":null,\"188\":null,\"189\":null,\"190\":{\"id\":\"59b27337f38d658b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/59b27337f38d658b.json\",\"place_type\":\"country\",\"name\":\"Nigeria\",\"full_name\":\"Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,4.1974055],[14.6777951,4.1974055],[14.6777951,13.8881151],[2.6654364,13.8881151]]]},\"attributes\":{}},\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"206\":null,\"207\":null,\"208\":null,\"209\":null,\"210\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"211\":null,\"212\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"224\":null,\"225\":null,\"226\":{\"id\":\"006268ad653506e5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006268ad653506e5.json\",\"place_type\":\"admin\",\"name\":\"Osun\",\"full_name\":\"Osun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.0274778,6.9780072],[5.0845742,6.9780072],[5.0845742,8.1110107],[4.0274778,8.1110107]]]},\"attributes\":{}},\"227\":{\"id\":\"07d9ef664f088001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9ef664f088001.json\",\"place_type\":\"poi\",\"name\":\"Owerri Imo state\",\"full_name\":\"Owerri Imo state\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.0192177071,5.5005635949],[7.0192177071,5.5005635949],[7.0192177071,5.5005635949],[7.0192177071,5.5005635949]]]},\"attributes\":{}},\"228\":{\"id\":\"01d904b74c275f34\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01d904b74c275f34.json\",\"place_type\":\"admin\",\"name\":\"Imo\",\"full_name\":\"Imo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6269298,5.2050072],[7.432044,5.2050072],[7.432044,5.9431837],[6.6269298,5.9431837]]]},\"attributes\":{}},\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":{\"id\":\"015274df00e95310\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/015274df00e95310.json\",\"place_type\":\"city\",\"name\":\"Gembu\",\"full_name\":\"Gembu, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[11.2394142,6.7066989],[11.2629223,6.7066989],[11.2629223,6.7301545],[11.2394142,6.7301545]]]},\"attributes\":{}},\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"248\":null,\"249\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":null,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"288\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"289\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":null,\"295\":null,\"296\":null,\"297\":null,\"298\":null,\"299\":null,\"300\":null,\"301\":null,\"302\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"326\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"342\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"343\":{\"id\":\"098210fae5940000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/098210fae5940000.json\",\"place_type\":\"poi\",\"name\":\"West Hill Mall\",\"full_name\":\"West Hill Mall\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3560076,5.6667219],[-0.3560076,5.6667219],[-0.3560076,5.6667219],[-0.3560076,5.6667219]]]},\"attributes\":{}},\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":{\"id\":\"005dbe7e6949db42\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005dbe7e6949db42.json\",\"place_type\":\"city\",\"name\":\"Benin-City\",\"full_name\":\"Benin-City, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.5532952,6.2445092],[5.7292806,6.2445092],[5.7292806,6.4254003],[5.5532952,6.4254003]]]},\"attributes\":{}},\"352\":null,\"353\":null,\"354\":null,\"355\":null,\"356\":null,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"363\":null,\"364\":null,\"365\":null,\"366\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"367\":null,\"368\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"369\":null,\"370\":null,\"371\":null,\"372\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"373\":null,\"374\":null,\"375\":null,\"376\":null,\"377\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"378\":null,\"379\":null,\"380\":null,\"381\":null,\"382\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"383\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"384\":null,\"385\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":null,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"422\":null,\"423\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"424\":null,\"425\":{\"id\":\"00c769811539c617\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00c769811539c617.json\",\"place_type\":\"admin\",\"name\":\"Edo\",\"full_name\":\"Edo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.0086055,5.7411889],[6.7194358,5.7411889],[6.7194358,7.5964485],[5.0086055,7.5964485]]]},\"attributes\":{}},\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":{\"id\":\"0097ec862c79a257\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0097ec862c79a257.json\",\"place_type\":\"admin\",\"name\":\"Oyo\",\"full_name\":\"Oyo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6953821,7.0555476],[4.5753821,7.0555476],[4.5753821,9.1962975],[2.6953821,9.1962975]]]},\"attributes\":{}},\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":{\"id\":\"00dfa50d5c526a40\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00dfa50d5c526a40.json\",\"place_type\":\"city\",\"name\":\"Owerri\",\"full_name\":\"Owerri, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9820783,5.4522716],[7.0775981,5.4522716],[7.0775981,5.5448138],[6.9820783,5.5448138]]]},\"attributes\":{}},\"453\":null,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":null,\"475\":null,\"476\":null,\"477\":null,\"478\":null,\"479\":null,\"480\":null,\"481\":null,\"482\":null,\"483\":null,\"484\":null,\"485\":null,\"486\":null,\"487\":null,\"488\":null,\"489\":null,\"490\":null,\"491\":null,\"492\":null,\"493\":null,\"494\":null,\"495\":null,\"496\":null,\"497\":null,\"498\":null,\"499\":null,\"500\":null,\"501\":null,\"502\":null,\"503\":null,\"504\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"505\":null,\"506\":null,\"507\":null,\"508\":null,\"509\":null,\"510\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":null,\"524\":null,\"525\":null,\"526\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"527\":null,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":{\"id\":\"0180b3ce4727c856\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0180b3ce4727c856.json\",\"place_type\":\"admin\",\"name\":\"Delta\",\"full_name\":\"Delta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.0200801,5.010849],[6.7684611,5.010849],[6.7684611,6.5020675],[5.0200801,6.5020675]]]},\"attributes\":{}},\"533\":null,\"534\":null,\"535\":null,\"536\":null,\"537\":null,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"543\":null,\"544\":null,\"545\":null,\"546\":null,\"547\":null,\"548\":{\"id\":\"005dbe7e6949db42\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005dbe7e6949db42.json\",\"place_type\":\"city\",\"name\":\"Benin-City\",\"full_name\":\"Benin-City, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.5532952,6.2445092],[5.7292806,6.2445092],[5.7292806,6.4254003],[5.5532952,6.4254003]]]},\"attributes\":{}},\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":null,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":null,\"581\":null,\"582\":null,\"583\":null,\"584\":null,\"585\":null,\"586\":null,\"587\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":{\"id\":\"01e272024ddb6128\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01e272024ddb6128.json\",\"place_type\":\"city\",\"name\":\"Oshogbo\",\"full_name\":\"Oshogbo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.473474,7.7240979],[4.6143238,7.7240979],[4.6143238,7.8499733],[4.473474,7.8499733]]]},\"attributes\":{}},\"598\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"599\":null,\"600\":null,\"601\":null,\"602\":null,\"603\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"636\":{\"id\":\"00578fa8439c228a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00578fa8439c228a.json\",\"place_type\":\"admin\",\"name\":\"Ogun\",\"full_name\":\"Ogun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,6.287653],[4.6189619,6.287653],[4.6189619,7.9763149],[2.6654364,7.9763149]]]},\"attributes\":{}},\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"642\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":null,\"654\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":null,\"669\":null,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":{\"id\":\"00611f1548c7bdef\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00611f1548c7bdef.json\",\"place_type\":\"city\",\"name\":\"Kano\",\"full_name\":\"Kano, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.4475987,11.9296331],[8.6073347,11.9296331],[8.6073347,12.0803669],[8.4475987,12.0803669]]]},\"attributes\":{}},\"675\":null,\"676\":null,\"677\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":null,\"692\":{\"id\":\"07d9f69359087000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9f69359087000.json\",\"place_type\":\"poi\",\"name\":\"Pokuase\",\"full_name\":\"Pokuase\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.287651429,5.6931278825],[-0.287651429,5.6931278825],[-0.287651429,5.6931278825],[-0.287651429,5.6931278825]]]},\"attributes\":{}},\"693\":null,\"694\":null,\"695\":null,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"711\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":{\"id\":\"07d9cff9e8487002\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9cff9e8487002.json\",\"place_type\":\"poi\",\"name\":\"Ajah\",\"full_name\":\"Ajah\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.568776863,6.469078621],[3.568776863,6.469078621],[3.568776863,6.469078621],[3.568776863,6.469078621]]]},\"attributes\":{}},\"718\":null,\"719\":null,\"720\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":{\"id\":\"005c6f3641f95852\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005c6f3641f95852.json\",\"place_type\":\"city\",\"name\":\"Calabar\",\"full_name\":\"Calabar, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.3075007,4.9112081],[8.372645,4.9112081],[8.372645,5.0414683],[8.3075007,5.0414683]]]},\"attributes\":{}},\"727\":null,\"728\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":null,\"739\":{\"id\":\"07d9e7884f082000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9e7884f082000.json\",\"place_type\":\"poi\",\"name\":\"Iyana Church Bus Stop\",\"full_name\":\"Iyana Church Bus Stop\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.974318622,7.4219184722],[3.974318622,7.4219184722],[3.974318622,7.4219184722],[3.974318622,7.4219184722]]]},\"attributes\":{}},\"740\":{\"id\":\"000763a81141ab85\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/000763a81141ab85.json\",\"place_type\":\"city\",\"name\":\"Maiduguri\",\"full_name\":\"Maiduguri, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.0432909,11.7826542],[13.2550301,11.7826542],[13.2550301,11.9164327],[13.0432909,11.9164327]]]},\"attributes\":{}},\"741\":{\"id\":\"07d9d6d6aa081000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d6d6aa081000.json\",\"place_type\":\"poi\",\"name\":\"Maiduguri\",\"full_name\":\"Maiduguri\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.1398488781,11.8334024998],[13.1398488781,11.8334024998],[13.1398488781,11.8334024998],[13.1398488781,11.8334024998]]]},\"attributes\":{}},\"742\":null,\"743\":null,\"744\":null,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":null,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"765\":null,\"766\":null,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":null,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":null,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"854\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"855\":null,\"856\":null,\"857\":null,\"858\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"859\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":null,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":{\"id\":\"0054df80408965f1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0054df80408965f1.json\",\"place_type\":\"city\",\"name\":\"Eket\",\"full_name\":\"Eket, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.9136547,4.6265583],[7.9719914,4.6265583],[7.9719914,4.6763909],[7.9136547,4.6763909]]]},\"attributes\":{}},\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":null,\"900\":null,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"907\":null,\"908\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"909\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"910\":null,\"911\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"912\":null,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":null,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":{\"id\":\"00575f683380afab\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00575f683380afab.json\",\"place_type\":\"city\",\"name\":\"Lokoja\",\"full_name\":\"Lokoja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6912736,7.7396574],[6.7500381,7.7396574],[6.7500381,7.826825],[6.6912736,7.826825]]]},\"attributes\":{}},\"945\":null,\"946\":null,\"947\":null,\"948\":{\"id\":\"07d9f14273c83000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9f14273c83000.json\",\"place_type\":\"poi\",\"name\":\"Water works\",\"full_name\":\"Water works\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.0969522575,6.3285018491],[8.0969522575,6.3285018491],[8.0969522575,6.3285018491],[8.0969522575,6.3285018491]]]},\"attributes\":{}},\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":null,\"957\":null,\"958\":null,\"959\":null,\"960\":null,\"961\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"962\":null,\"963\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":{\"id\":\"005dbe7e6949db42\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005dbe7e6949db42.json\",\"place_type\":\"city\",\"name\":\"Benin-City\",\"full_name\":\"Benin-City, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.5532952,6.2445092],[5.7292806,6.2445092],[5.7292806,6.4254003],[5.5532952,6.4254003]]]},\"attributes\":{}},\"969\":null,\"970\":null,\"971\":{\"id\":\"01307b1160a66303\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01307b1160a66303.json\",\"place_type\":\"city\",\"name\":\"Aba\",\"full_name\":\"Aba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3116751,5.0587562],[7.4055676,5.0587562],[7.4055676,5.1656501],[7.3116751,5.1656501]]]},\"attributes\":{}},\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":{\"id\":\"0085c4a6640325a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0085c4a6640325a8.json\",\"place_type\":\"city\",\"name\":\"Oyarifa\",\"full_name\":\"Oyarifa, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.2508272,5.6545401],[-0.1145835,5.6545401],[-0.1145835,5.7836066],[-0.2508272,5.7836066]]]},\"attributes\":{}},\"983\":{\"id\":\"00dc60216ef0611c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00dc60216ef0611c.json\",\"place_type\":\"city\",\"name\":\"Abak\",\"full_name\":\"Abak, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.7804956,4.9727511],[7.7930856,4.9727511],[7.7930856,4.986331],[7.7804956,4.986331]]]},\"attributes\":{}},\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":null,\"994\":null,\"995\":null,\"996\":null,\"997\":{\"id\":\"0180b3ce4727c856\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0180b3ce4727c856.json\",\"place_type\":\"admin\",\"name\":\"Delta\",\"full_name\":\"Delta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.0200801,5.010849],[6.7684611,5.010849],[6.7684611,6.5020675],[5.0200801,6.5020675]]]},\"attributes\":{}},\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":{\"id\":\"111114596294d001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/111114596294d001.json\",\"place_type\":\"poi\",\"name\":\"Hotel Ibis\",\"full_name\":\"Hotel Ibis\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3298121779,6.5509937297],[3.3298121779,6.5509937297],[3.3298121779,6.5509937297],[3.3298121779,6.5509937297]]]},\"attributes\":{}},\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":null,\"1024\":{\"id\":\"0085c4a6640325a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0085c4a6640325a8.json\",\"place_type\":\"city\",\"name\":\"Oyarifa\",\"full_name\":\"Oyarifa, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.2508272,5.6545401],[-0.1145835,5.6545401],[-0.1145835,5.7836066],[-0.2508272,5.7836066]]]},\"attributes\":{}},\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1036\":null,\"1037\":null,\"1038\":null,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":null,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":null,\"1084\":null,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":null,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":{\"id\":\"0056091e32b465d6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0056091e32b465d6.json\",\"place_type\":\"city\",\"name\":\"Alagbado\",\"full_name\":\"Alagbado, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2629101,6.6393308],[3.4075005,6.6393308],[3.4075005,6.740074],[3.2629101,6.740074]]]},\"attributes\":{}},\"1095\":null,\"1096\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1097\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1098\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1099\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1100\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1101\":null,\"1102\":null,\"1103\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1104\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1105\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1106\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1107\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1108\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1109\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1110\":null,\"1111\":null,\"1112\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1113\":null,\"1114\":null,\"1115\":null,\"1116\":null,\"1117\":null,\"1118\":null,\"1119\":null,\"1120\":null,\"1121\":null,\"1122\":null,\"1123\":null,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":{\"id\":\"00f07cbc58740986\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00f07cbc58740986.json\",\"place_type\":\"city\",\"name\":\"Goaso\",\"full_name\":\"Goaso, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-2.5294895,6.7904681],[-2.5076281,6.7904681],[-2.5076281,6.8117239],[-2.5294895,6.8117239]]]},\"attributes\":{}},\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":{\"id\":\"0008cb6457ff0b55\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0008cb6457ff0b55.json\",\"place_type\":\"city\",\"name\":\"Port Harcourt\",\"full_name\":\"Port Harcourt, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9380658,4.7337699],[7.1244854,4.7337699],[7.1244854,4.9154902],[6.9380658,4.9154902]]]},\"attributes\":{}},\"1158\":{\"id\":\"004eba9d6293467f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/004eba9d6293467f.json\",\"place_type\":\"admin\",\"name\":\"Plateau\",\"full_name\":\"Plateau, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.5544183,8.3456921],[10.6795862,8.3456921],[10.6795862,10.3924791],[8.5544183,10.3924791]]]},\"attributes\":{}},\"1159\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":{\"id\":\"00ccf9f124e558ee\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ccf9f124e558ee.json\",\"place_type\":\"city\",\"name\":\"Gboko\",\"full_name\":\"Gboko, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.9705568,7.2969495],[9.0285666,7.2969495],[9.0285666,7.360567],[8.9705568,7.360567]]]},\"attributes\":{}},\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"1171\":null,\"1172\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1173\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":null,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":{\"id\":\"012d63e97ff5a7b5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/012d63e97ff5a7b5.json\",\"place_type\":\"city\",\"name\":\"Jos\",\"full_name\":\"Jos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.8337107,9.8581086],[8.9389277,9.8581086],[8.9389277,9.9674885],[8.8337107,9.9674885]]]},\"attributes\":{}},\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":null,\"1211\":null,\"1212\":null,\"1213\":null,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":null,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":null,\"1239\":null,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":null,\"1246\":{\"id\":\"00578fa8439c228a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00578fa8439c228a.json\",\"place_type\":\"admin\",\"name\":\"Ogun\",\"full_name\":\"Ogun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,6.287653],[4.6189619,6.287653],[4.6189619,7.9763149],[2.6654364,7.9763149]]]},\"attributes\":{}},\"1247\":null,\"1248\":null,\"1249\":null,\"1250\":null,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":{\"id\":\"01e98f2222fb0fa9\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01e98f2222fb0fa9.json\",\"place_type\":\"admin\",\"name\":\"Enugu\",\"full_name\":\"Enugu, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9337906,5.9218314],[7.8801954,5.9218314],[7.8801954,7.1119359],[6.9337906,7.1119359]]]},\"attributes\":{}},\"1257\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1258\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1259\":null,\"1260\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1261\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"1262\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1263\":null,\"1264\":null,\"1265\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1266\":null,\"1267\":null,\"1268\":null,\"1269\":null,\"1270\":null,\"1271\":{\"id\":\"005c6f3641f95852\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005c6f3641f95852.json\",\"place_type\":\"city\",\"name\":\"Calabar\",\"full_name\":\"Calabar, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.3075007,4.9112081],[8.372645,4.9112081],[8.372645,5.0414683],[8.3075007,5.0414683]]]},\"attributes\":{}},\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":{\"id\":\"01824b7f48a8b0fc\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01824b7f48a8b0fc.json\",\"place_type\":\"city\",\"name\":\"Oke-Iho\",\"full_name\":\"Oke-Iho, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3361653,8.0128553],[3.3668683,8.0128553],[3.3668683,8.0447799],[3.3361653,8.0447799]]]},\"attributes\":{}},\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1297\":null,\"1298\":null,\"1299\":null,\"1300\":null,\"1301\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1302\":null,\"1303\":null,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":null,\"1336\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"1342\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1353\":null,\"1354\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1355\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":{\"id\":\"07d9f37130484001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9f37130484001.json\",\"place_type\":\"poi\",\"name\":\"Third Mainland Bridge\",\"full_name\":\"Third Mainland Bridge\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3946466446,6.4855487192],[3.3946466446,6.4855487192],[3.3946466446,6.4855487192],[3.3946466446,6.4855487192]]]},\"attributes\":{}},\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":{\"id\":\"1e228be254cad957\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1e228be254cad957.json\",\"place_type\":\"country\",\"name\":\"Sierra Leone\",\"full_name\":\"Sierra Leone\",\"country_code\":\"SL\",\"country\":\"Sierra Leone\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-13.4307965,6.7938865],[-10.2747536,6.7938865],[-10.2747536,10.0002944],[-13.4307965,10.0002944]]]},\"attributes\":{}},\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":{\"id\":\"009b4bcc18019797\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/009b4bcc18019797.json\",\"place_type\":\"city\",\"name\":\"Kumasi\",\"full_name\":\"Kumasi, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-1.710074,6.5962859],[-1.5143701,6.5962859],[-1.5143701,6.7909677],[-1.710074,6.7909677]]]},\"attributes\":{}},\"1404\":null,\"1405\":null,\"1406\":{\"id\":\"00e6e55734393bdb\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e6e55734393bdb.json\",\"place_type\":\"admin\",\"name\":\"Anambra\",\"full_name\":\"Anambra, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6356497,5.7092317],[7.3681931,5.7092317],[7.3681931,6.7805232],[6.6356497,6.7805232]]]},\"attributes\":{}},\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1412\":null,\"1413\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":null,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":null,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1456\":null,\"1457\":{\"id\":\"01546f6801ce58cd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01546f6801ce58cd.json\",\"place_type\":\"city\",\"name\":\"Uyo\",\"full_name\":\"Uyo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.8619108,4.9711142],[8.0037505,4.9711142],[8.0037505,5.0716486],[7.8619108,5.0716486]]]},\"attributes\":{}},\"1458\":null,\"1459\":{\"id\":\"00575f683380afab\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00575f683380afab.json\",\"place_type\":\"city\",\"name\":\"Lokoja\",\"full_name\":\"Lokoja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6912736,7.7396574],[6.7500381,7.7396574],[6.7500381,7.826825],[6.6912736,7.826825]]]},\"attributes\":{}},\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":null,\"1464\":{\"id\":\"7e0b3752623e1d72\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7e0b3752623e1d72.json\",\"place_type\":\"country\",\"name\":\"Ivory Coast\",\"full_name\":\"Ivory Coast\",\"country_code\":\"CI\",\"country\":\"Ivory Coast\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-8.6012434,4.3616546],[-2.4966316,4.3616546],[-2.4966316,10.7382464],[-8.6012434,10.7382464]]]},\"attributes\":{}},\"1465\":null,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":{\"id\":\"00b1231d2214913c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00b1231d2214913c.json\",\"place_type\":\"city\",\"name\":\"Abeokuta\",\"full_name\":\"Abeokuta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2713206,7.0996682],[3.4335622,7.0996682],[3.4335622,7.209188],[3.2713206,7.209188]]]},\"attributes\":{}},\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":null,\"1477\":null,\"1478\":null,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":{\"id\":\"07d9d80220886001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d80220886001.json\",\"place_type\":\"poi\",\"name\":\"Akure, Ondo State\",\"full_name\":\"Akure, Ondo State\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.3683439534,7.2588187514],[5.3683439534,7.2588187514],[5.3683439534,7.2588187514],[5.3683439534,7.2588187514]]]},\"attributes\":{}},\"1488\":null,\"1489\":null,\"1490\":null,\"1491\":{\"id\":\"07d9e86293081000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9e86293081000.json\",\"place_type\":\"poi\",\"name\":\"surulere\",\"full_name\":\"surulere\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.361788193,6.5169128233],[3.361788193,6.5169128233],[3.361788193,6.5169128233],[3.361788193,6.5169128233]]]},\"attributes\":{}},\"1492\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1493\":null,\"1494\":null,\"1495\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"1501\":null,\"1502\":null,\"1503\":null,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":null,\"1508\":null,\"1509\":null,\"1510\":null,\"1511\":null,\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":null,\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":null,\"1526\":null,\"1527\":null,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":null,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":null,\"1555\":null,\"1556\":{\"id\":\"001c0a9c3c005adf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/001c0a9c3c005adf.json\",\"place_type\":\"city\",\"name\":\"Ojo\",\"full_name\":\"Ojo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.1000926,6.4481668],[3.2378639,6.4481668],[3.2378639,6.5194214],[3.1000926,6.5194214]]]},\"attributes\":{}},\"1557\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":{\"id\":\"1e228be254cad957\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1e228be254cad957.json\",\"place_type\":\"country\",\"name\":\"Sierra Leone\",\"full_name\":\"Sierra Leone\",\"country_code\":\"SL\",\"country\":\"Sierra Leone\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-13.4307965,6.7938865],[-10.2747536,6.7938865],[-10.2747536,10.0002944],[-13.4307965,10.0002944]]]},\"attributes\":{}},\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":null,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":{\"id\":\"00611f1548c7bdef\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00611f1548c7bdef.json\",\"place_type\":\"city\",\"name\":\"Kano\",\"full_name\":\"Kano, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.4475987,11.9296331],[8.6073347,11.9296331],[8.6073347,12.0803669],[8.4475987,12.0803669]]]},\"attributes\":{}},\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":{\"id\":\"0008cb6457ff0b55\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0008cb6457ff0b55.json\",\"place_type\":\"city\",\"name\":\"Port Harcourt\",\"full_name\":\"Port Harcourt, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9380658,4.7337699],[7.1244854,4.7337699],[7.1244854,4.9154902],[6.9380658,4.9154902]]]},\"attributes\":{}},\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":null,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":{\"id\":\"004eba9d6293467f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/004eba9d6293467f.json\",\"place_type\":\"admin\",\"name\":\"Plateau\",\"full_name\":\"Plateau, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.5544183,8.3456921],[10.6795862,8.3456921],[10.6795862,10.3924791],[8.5544183,10.3924791]]]},\"attributes\":{}},\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":{\"id\":\"01c77f653250b5ec\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c77f653250b5ec.json\",\"place_type\":\"admin\",\"name\":\"Cross River\",\"full_name\":\"Cross River, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.8499134,4.5863546],[9.4826432,4.5863546],[9.4826432,6.9013702],[7.8499134,6.9013702]]]},\"attributes\":{}},\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":null,\"1742\":null,\"1743\":null,\"1744\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":null,\"1751\":{\"id\":\"01ac327903b9ad94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ac327903b9ad94.json\",\"place_type\":\"admin\",\"name\":\"Central\",\"full_name\":\"Central, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-2.2033576,5.0318184],[-0.3913921,5.0318184],[-0.3913921,6.3125794],[-2.2033576,6.3125794]]]},\"attributes\":{}},\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":null,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":{\"id\":\"00578fa8439c228a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00578fa8439c228a.json\",\"place_type\":\"admin\",\"name\":\"Ogun\",\"full_name\":\"Ogun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,6.287653],[4.6189619,6.287653],[4.6189619,7.9763149],[2.6654364,7.9763149]]]},\"attributes\":{}},\"1783\":null,\"1784\":null,\"1785\":null,\"1786\":null,\"1787\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"1798\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1799\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"1800\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"1801\":null,\"1802\":{\"id\":\"07d9e83083085000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9e83083085000.json\",\"place_type\":\"poi\",\"name\":\"Marina, Lagos\",\"full_name\":\"Marina, Lagos\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3876816726,6.4517800666],[3.3876816726,6.4517800666],[3.3876816726,6.4517800666],[3.3876816726,6.4517800666]]]},\"attributes\":{}},\"1803\":null,\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":{\"id\":\"0008cb6457ff0b55\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0008cb6457ff0b55.json\",\"place_type\":\"city\",\"name\":\"Port Harcourt\",\"full_name\":\"Port Harcourt, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9380658,4.7337699],[7.1244854,4.7337699],[7.1244854,4.9154902],[6.9380658,4.9154902]]]},\"attributes\":{}},\"1816\":null,\"1817\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":null,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":{\"id\":\"07d9d66d0a887001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d66d0a887001.json\",\"place_type\":\"poi\",\"name\":\"Laserino\",\"full_name\":\"Laserino\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.1854018302,5.636901301],[-0.1854018302,5.636901301],[-0.1854018302,5.636901301],[-0.1854018302,5.636901301]]]},\"attributes\":{}},\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":{\"id\":\"7e0b3752623e1d72\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7e0b3752623e1d72.json\",\"place_type\":\"country\",\"name\":\"Ivory Coast\",\"full_name\":\"Ivory Coast\",\"country_code\":\"CI\",\"country\":\"Ivory Coast\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-8.6012434,4.3616546],[-2.4966316,4.3616546],[-2.4966316,10.7382464],[-8.6012434,10.7382464]]]},\"attributes\":{}},\"1845\":{\"id\":\"018d4410153dc23b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/018d4410153dc23b.json\",\"place_type\":\"admin\",\"name\":\"Greater Accra\",\"full_name\":\"Greater Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.495283,5.4812804],[0.6719668,5.4812804],[0.6719668,6.1058921],[-0.495283,6.1058921]]]},\"attributes\":{}},\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":{\"id\":\"012d63e97ff5a7b5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/012d63e97ff5a7b5.json\",\"place_type\":\"city\",\"name\":\"Jos\",\"full_name\":\"Jos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.8337107,9.8581086],[8.9389277,9.8581086],[8.9389277,9.9674885],[8.8337107,9.9674885]]]},\"attributes\":{}},\"1856\":{\"id\":\"006268ad653506e5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006268ad653506e5.json\",\"place_type\":\"admin\",\"name\":\"Osun\",\"full_name\":\"Osun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.0274778,6.9780072],[5.0845742,6.9780072],[5.0845742,8.1110107],[4.0274778,8.1110107]]]},\"attributes\":{}},\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":{\"id\":\"7e0b3752623e1d72\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7e0b3752623e1d72.json\",\"place_type\":\"country\",\"name\":\"Ivory Coast\",\"full_name\":\"Ivory Coast\",\"country_code\":\"CI\",\"country\":\"Ivory Coast\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-8.6012434,4.3616546],[-2.4966316,4.3616546],[-2.4966316,10.7382464],[-8.6012434,10.7382464]]]},\"attributes\":{}},\"1873\":{\"id\":\"7e0b3752623e1d72\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7e0b3752623e1d72.json\",\"place_type\":\"country\",\"name\":\"Ivory Coast\",\"full_name\":\"Ivory Coast\",\"country_code\":\"CI\",\"country\":\"Ivory Coast\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-8.6012434,4.3616546],[-2.4966316,4.3616546],[-2.4966316,10.7382464],[-8.6012434,10.7382464]]]},\"attributes\":{}},\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"1879\":null,\"1880\":null,\"1881\":null,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":{\"id\":\"0008cb6457ff0b55\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0008cb6457ff0b55.json\",\"place_type\":\"city\",\"name\":\"Port Harcourt\",\"full_name\":\"Port Harcourt, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9380658,4.7337699],[7.1244854,4.7337699],[7.1244854,4.9154902],[6.9380658,4.9154902]]]},\"attributes\":{}},\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"1904\":null,\"1905\":null,\"1906\":{\"id\":\"01a4a1e153e55b20\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01a4a1e153e55b20.json\",\"place_type\":\"city\",\"name\":\"Tema\",\"full_name\":\"Tema, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.0817078,5.613502],[0.0437508,5.613502],[0.0437508,5.7925418],[-0.0817078,5.7925418]]]},\"attributes\":{}},\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":null,\"1917\":null,\"1918\":null,\"1919\":null,\"1920\":null,\"1921\":null,\"1922\":null,\"1923\":null,\"1924\":null,\"1925\":null,\"1926\":null,\"1927\":null,\"1928\":null,\"1929\":{\"id\":\"0008cb6457ff0b55\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0008cb6457ff0b55.json\",\"place_type\":\"city\",\"name\":\"Port Harcourt\",\"full_name\":\"Port Harcourt, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9380658,4.7337699],[7.1244854,4.7337699],[7.1244854,4.9154902],[6.9380658,4.9154902]]]},\"attributes\":{}},\"1930\":null,\"1931\":null,\"1932\":null,\"1933\":null,\"1934\":null,\"1935\":null,\"1936\":null,\"1937\":null,\"1938\":null,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":null,\"1945\":null,\"1946\":null,\"1947\":null,\"1948\":null,\"1949\":null,\"1950\":null,\"1951\":null,\"1952\":{\"id\":\"019634185ded88a2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/019634185ded88a2.json\",\"place_type\":\"city\",\"name\":\"Warri\",\"full_name\":\"Warri, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.6806783,5.4884005],[5.8810102,5.4884005],[5.8810102,5.6151183],[5.6806783,5.6151183]]]},\"attributes\":{}},\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":null,\"1957\":null,\"1958\":null,\"1959\":null,\"1960\":null,\"1961\":null,\"1962\":null,\"1963\":null,\"1964\":null,\"1965\":null,\"1966\":null,\"1967\":null,\"1968\":null,\"1969\":null,\"1970\":null,\"1971\":null,\"1972\":null,\"1973\":null,\"1974\":null,\"1975\":null,\"1976\":null,\"1977\":null,\"1978\":null,\"1979\":null,\"1980\":null,\"1981\":null,\"1982\":null,\"1983\":null,\"1984\":null,\"1985\":null,\"1986\":null,\"1987\":null,\"1988\":null,\"1989\":null,\"1990\":null,\"1991\":null,\"1992\":null,\"1993\":null,\"1994\":null,\"1995\":null,\"1996\":null,\"1997\":null,\"1998\":null,\"1999\":null,\"2000\":null,\"2001\":null,\"2002\":null,\"2003\":null,\"2004\":null,\"2005\":null,\"2006\":null,\"2007\":null,\"2008\":null,\"2009\":null,\"2010\":null,\"2011\":null,\"2012\":null,\"2013\":null,\"2014\":null,\"2015\":null,\"2016\":null,\"2017\":null,\"2018\":null,\"2019\":null,\"2020\":null,\"2021\":null,\"2022\":null,\"2023\":null,\"2024\":null,\"2025\":null,\"2026\":null,\"2027\":null,\"2028\":null,\"2029\":null,\"2030\":null,\"2031\":{\"id\":\"07d9d075e2485002\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d075e2485002.json\",\"place_type\":\"poi\",\"name\":\"Rees Hotel\",\"full_name\":\"Rees Hotel\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-1.6032910341,6.6790618217],[-1.6032910341,6.6790618217],[-1.6032910341,6.6790618217],[-1.6032910341,6.6790618217]]]},\"attributes\":{}},\"2032\":null,\"2033\":null,\"2034\":null,\"2035\":null,\"2036\":null,\"2037\":null,\"2038\":null,\"2039\":null,\"2040\":null,\"2041\":null,\"2042\":null,\"2043\":null,\"2044\":null,\"2045\":null,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":null,\"2050\":null,\"2051\":null,\"2052\":null,\"2053\":null,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":null,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":{\"id\":\"019634185ded88a2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/019634185ded88a2.json\",\"place_type\":\"city\",\"name\":\"Warri\",\"full_name\":\"Warri, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.6806783,5.4884005],[5.8810102,5.4884005],[5.8810102,5.6151183],[5.6806783,5.6151183]]]},\"attributes\":{}},\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":null,\"2097\":null,\"2098\":null,\"2099\":null,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"2105\":null,\"2106\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"2107\":null,\"2108\":null,\"2109\":null,\"2110\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"2111\":null,\"2112\":null,\"2113\":null,\"2114\":null,\"2115\":null,\"2116\":null,\"2117\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"2118\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"2119\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"2120\":null,\"2121\":null,\"2122\":null,\"2123\":null,\"2124\":null,\"2125\":null,\"2126\":null,\"2127\":null,\"2128\":null,\"2129\":null,\"2130\":null,\"2131\":null,\"2132\":null,\"2133\":null,\"2134\":null,\"2135\":null,\"2136\":null,\"2137\":null,\"2138\":null,\"2139\":null,\"2140\":null,\"2141\":null,\"2142\":null,\"2143\":null,\"2144\":null,\"2145\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"2146\":null,\"2147\":null,\"2148\":null,\"2149\":null,\"2150\":null,\"2151\":null,\"2152\":null,\"2153\":null,\"2154\":null,\"2155\":null,\"2156\":null,\"2157\":null,\"2158\":null,\"2159\":null,\"2160\":null,\"2161\":null,\"2162\":null,\"2163\":null,\"2164\":null,\"2165\":null,\"2166\":null,\"2167\":null,\"2168\":null,\"2169\":null,\"2170\":null,\"2171\":null,\"2172\":null,\"2173\":null,\"2174\":null,\"2175\":null,\"2176\":null,\"2177\":null,\"2178\":null,\"2179\":null,\"2180\":null,\"2181\":null,\"2182\":null,\"2183\":null,\"2184\":null,\"2185\":null,\"2186\":null,\"2187\":null,\"2188\":null,\"2189\":null,\"2190\":null,\"2191\":null,\"2192\":null,\"2193\":null,\"2194\":null,\"2195\":null,\"2196\":null,\"2197\":null,\"2198\":null,\"2199\":null,\"2200\":null,\"2201\":null,\"2202\":null,\"2203\":null,\"2204\":null,\"2205\":null,\"2206\":null,\"2207\":null,\"2208\":null,\"2209\":null,\"2210\":null,\"2211\":null,\"2212\":null,\"2213\":null,\"2214\":null,\"2215\":null,\"2216\":null,\"2217\":null,\"2218\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"2219\":null,\"2220\":null,\"2221\":null,\"2222\":null,\"2223\":null,\"2224\":null,\"2225\":null,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":null,\"2233\":null,\"2234\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"2235\":null,\"2236\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2237\":null,\"2238\":null,\"2239\":null,\"2240\":null,\"2241\":null,\"2242\":null,\"2243\":null,\"2244\":null,\"2245\":null,\"2246\":null,\"2247\":null,\"2248\":null,\"2249\":null,\"2250\":null,\"2251\":null,\"2252\":null,\"2253\":null,\"2254\":null,\"2255\":null,\"2256\":null,\"2257\":null,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":null,\"2264\":{\"id\":\"01d904b74c275f34\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01d904b74c275f34.json\",\"place_type\":\"admin\",\"name\":\"Imo\",\"full_name\":\"Imo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6269298,5.2050072],[7.432044,5.2050072],[7.432044,5.9431837],[6.6269298,5.9431837]]]},\"attributes\":{}},\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":null,\"2269\":null,\"2270\":null,\"2271\":null,\"2272\":null,\"2273\":null,\"2274\":null,\"2275\":null,\"2276\":null,\"2277\":null,\"2278\":null,\"2279\":null,\"2280\":null,\"2281\":null,\"2282\":null,\"2283\":null,\"2284\":null,\"2285\":null,\"2286\":null,\"2287\":null,\"2288\":null,\"2289\":null,\"2290\":null,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":{\"id\":\"012d63e97ff5a7b5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/012d63e97ff5a7b5.json\",\"place_type\":\"city\",\"name\":\"Jos\",\"full_name\":\"Jos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.8337107,9.8581086],[8.9389277,9.8581086],[8.9389277,9.9674885],[8.8337107,9.9674885]]]},\"attributes\":{}},\"2307\":null,\"2308\":null,\"2309\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"2310\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"2311\":null,\"2312\":null,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":null,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":null,\"2323\":null,\"2324\":null,\"2325\":null,\"2326\":null,\"2327\":null,\"2328\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"2334\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2335\":null,\"2336\":null,\"2337\":null,\"2338\":null,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":null,\"2343\":null,\"2344\":{\"id\":\"00f5f2437484530d\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00f5f2437484530d.json\",\"place_type\":\"city\",\"name\":\"Elele\",\"full_name\":\"Elele, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.8192725,5.0943503],[6.8263509,5.0943503],[6.8263509,5.1025619],[6.8192725,5.1025619]]]},\"attributes\":{}},\"2345\":null,\"2346\":null,\"2347\":null,\"2348\":null,\"2349\":null,\"2350\":null,\"2351\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"2352\":null,\"2353\":null,\"2354\":null,\"2355\":null,\"2356\":null,\"2357\":null,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":{\"id\":\"003e299707d0375b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/003e299707d0375b.json\",\"place_type\":\"city\",\"name\":\"Accra\",\"full_name\":\"Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.3470252,5.51713],[-0.0215619,5.51713],[-0.0215619,5.7292666],[-0.3470252,5.7292666]]]},\"attributes\":{}},\"2365\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":{\"id\":\"07d9efed16088000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9efed16088000.json\",\"place_type\":\"poi\",\"name\":\"FUTO\",\"full_name\":\"FUTO\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.0026595005,5.3846198107],[7.0026595005,5.3846198107],[7.0026595005,5.3846198107],[7.0026595005,5.3846198107]]]},\"attributes\":{}},\"2392\":null,\"2393\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":null,\"2398\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"2399\":null,\"2400\":null,\"2401\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"2402\":null,\"2403\":null,\"2404\":null,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":null,\"2411\":null,\"2412\":null,\"2413\":null,\"2414\":null,\"2415\":null,\"2416\":null,\"2417\":null,\"2418\":null,\"2419\":null,\"2420\":null,\"2421\":null,\"2422\":null,\"2423\":null,\"2424\":null,\"2425\":null,\"2426\":null,\"2427\":null,\"2428\":null,\"2429\":null,\"2430\":null,\"2431\":null,\"2432\":null,\"2433\":null,\"2434\":null,\"2435\":null,\"2436\":null,\"2437\":null,\"2438\":null,\"2439\":null,\"2440\":{\"id\":\"018d4410153dc23b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/018d4410153dc23b.json\",\"place_type\":\"admin\",\"name\":\"Greater Accra\",\"full_name\":\"Greater Accra, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-0.495283,5.4812804],[0.6719668,5.4812804],[0.6719668,6.1058921],[-0.495283,6.1058921]]]},\"attributes\":{}},\"2441\":null,\"2442\":null,\"2443\":null,\"2444\":null,\"2445\":null,\"2446\":null,\"2447\":null,\"2448\":null,\"2449\":{\"id\":\"07d9ec5ba7883000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9ec5ba7883000.json\",\"place_type\":\"poi\",\"name\":\"Lekki Gardens Phase III\",\"full_name\":\"Lekki Gardens Phase III\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.6056574784,6.4658208551],[3.6056574784,6.4658208551],[3.6056574784,6.4658208551],[3.6056574784,6.4658208551]]]},\"attributes\":{}},\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":null,\"2455\":null,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":{\"id\":\"009b4bcc18019797\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/009b4bcc18019797.json\",\"place_type\":\"city\",\"name\":\"Kumasi\",\"full_name\":\"Kumasi, Ghana\",\"country_code\":\"GH\",\"country\":\"Ghana\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-1.710074,6.5962859],[-1.5143701,6.5962859],[-1.5143701,6.7909677],[-1.710074,6.7909677]]]},\"attributes\":{}},\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":null,\"2464\":null,\"2465\":null,\"2466\":null,\"2467\":null,\"2468\":null,\"2469\":null,\"2470\":null,\"2471\":null,\"2472\":null,\"2473\":null,\"2474\":null,\"2475\":null,\"2476\":null,\"2477\":null,\"2478\":null,\"2479\":null,\"2480\":null,\"2481\":null,\"2482\":null,\"2483\":null,\"2484\":null,\"2485\":null,\"2486\":null,\"2487\":null,\"2488\":null,\"2489\":null,\"2490\":null,\"2491\":null,\"2492\":null,\"2493\":null,\"2494\":null,\"2495\":null,\"2496\":null,\"2497\":null,\"2498\":null,\"2499\":null,\"2500\":null,\"2501\":null,\"2502\":null,\"2503\":null,\"2504\":null,\"2505\":null,\"2506\":null,\"2507\":null,\"2508\":null,\"2509\":null,\"2510\":null,\"2511\":null,\"2512\":null,\"2513\":null,\"2514\":null,\"2515\":null,\"2516\":null,\"2517\":null,\"2518\":null,\"2519\":null,\"2520\":null,\"2521\":null,\"2522\":null,\"2523\":null,\"2524\":null,\"2525\":null,\"2526\":null,\"2527\":null,\"2528\":null,\"2529\":null,\"2530\":null,\"2531\":null,\"2532\":null,\"2533\":null,\"2534\":null,\"2535\":null,\"2536\":null,\"2537\":null,\"2538\":null,\"2539\":null,\"2540\":null,\"2541\":null,\"2542\":null,\"2543\":null,\"2544\":null,\"2545\":null,\"2546\":null,\"2547\":null,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":null,\"2553\":null,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":null,\"2559\":null,\"2560\":null,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":null,\"2566\":null,\"2567\":null,\"2568\":null,\"2569\":null,\"2570\":null,\"2571\":null,\"2572\":null,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":null,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":null,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":{\"id\":\"d98aef293ae7311d\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/d98aef293ae7311d.json\",\"place_type\":\"city\",\"name\":\"Kempton Park\",\"full_name\":\"Kempton Park, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.1581593,-26.1689943],[28.3280005,-26.1689943],[28.3280005,-26.0027295],[28.1581593,-26.0027295]]]},\"attributes\":{}},\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":{\"id\":\"0e587c59401d0a27\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0e587c59401d0a27.json\",\"place_type\":\"city\",\"name\":\"Pretoria\",\"full_name\":\"Pretoria, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.9483035,-25.9157727],[28.4198285,-25.9157727],[28.4198285,-25.5894376],[27.9483035,-25.5894376]]]},\"attributes\":{}},\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":{\"id\":\"0e587c59401d0a27\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0e587c59401d0a27.json\",\"place_type\":\"city\",\"name\":\"Pretoria\",\"full_name\":\"Pretoria, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.9483035,-25.9157727],[28.4198285,-25.9157727],[28.4198285,-25.5894376],[27.9483035,-25.5894376]]]},\"attributes\":{}},\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":{\"id\":\"6f5487bcf62ee988\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6f5487bcf62ee988.json\",\"place_type\":\"city\",\"name\":\"Amandebele A Lebelo\",\"full_name\":\"Amandebele A Lebelo, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.1428202,-25.3964991],[28.267551,-25.3964991],[28.267551,-25.3237053],[28.1428202,-25.3237053]]]},\"attributes\":{}},\"2649\":null,\"2650\":null,\"2651\":null,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":{\"id\":\"46c1b1ab24d7e11a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/46c1b1ab24d7e11a.json\",\"place_type\":\"city\",\"name\":\"Midrand\",\"full_name\":\"Midrand, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.0140761,-26.0572574],[28.1930256,-26.0572574],[28.1930256,-25.9195514],[28.0140761,-25.9195514]]]},\"attributes\":{}},\"2656\":null,\"2657\":{\"id\":\"6b23415ca0fabc6c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6b23415ca0fabc6c.json\",\"place_type\":\"city\",\"name\":\"Vosloorus\",\"full_name\":\"Vosloorus, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.1713026,-26.3867134],[28.2344359,-26.3867134],[28.2344359,-26.3236242],[28.1713026,-26.3236242]]]},\"attributes\":{}},\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":{\"id\":\"07d9f55d37084000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9f55d37084000.json\",\"place_type\":\"poi\",\"name\":\"Sunward Lifestyle Centre\",\"full_name\":\"Sunward Lifestyle Centre\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.270260728,-26.2588617569],[28.270260728,-26.2588617569],[28.270260728,-26.2588617569],[28.270260728,-26.2588617569]]]},\"attributes\":{}},\"2663\":{\"id\":\"4a1714afea001cb6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/4a1714afea001cb6.json\",\"place_type\":\"city\",\"name\":\"Seshego\",\"full_name\":\"Seshego, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[29.3385506,-23.8729968],[29.4117258,-23.8729968],[29.4117258,-23.8247528],[29.3385506,-23.8247528]]]},\"attributes\":{}},\"2664\":null,\"2665\":{\"id\":\"e564d30dc173d2a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e564d30dc173d2a8.json\",\"place_type\":\"city\",\"name\":\"Johannesburg\",\"full_name\":\"Johannesburg, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.7518557,-26.5126489],[28.1843404,-26.5126489],[28.1843404,-26.0396281],[27.7518557,-26.0396281]]]},\"attributes\":{}},\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":null,\"2684\":null,\"2685\":{\"id\":\"0e587c59401d0a27\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0e587c59401d0a27.json\",\"place_type\":\"city\",\"name\":\"Pretoria\",\"full_name\":\"Pretoria, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.9483035,-25.9157727],[28.4198285,-25.9157727],[28.4198285,-25.5894376],[27.9483035,-25.5894376]]]},\"attributes\":{}},\"2686\":{\"id\":\"0e587c59401d0a27\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0e587c59401d0a27.json\",\"place_type\":\"city\",\"name\":\"Pretoria\",\"full_name\":\"Pretoria, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.9483035,-25.9157727],[28.4198285,-25.9157727],[28.4198285,-25.5894376],[27.9483035,-25.5894376]]]},\"attributes\":{}},\"2687\":null,\"2688\":{\"id\":\"46c1b1ab24d7e11a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/46c1b1ab24d7e11a.json\",\"place_type\":\"city\",\"name\":\"Midrand\",\"full_name\":\"Midrand, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.0140761,-26.0572574],[28.1930256,-26.0572574],[28.1930256,-25.9195514],[28.0140761,-25.9195514]]]},\"attributes\":{}},\"2689\":{\"id\":\"46c1b1ab24d7e11a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/46c1b1ab24d7e11a.json\",\"place_type\":\"city\",\"name\":\"Midrand\",\"full_name\":\"Midrand, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.0140761,-26.0572574],[28.1930256,-26.0572574],[28.1930256,-25.9195514],[28.0140761,-25.9195514]]]},\"attributes\":{}},\"2690\":{\"id\":\"07d9dfca88888001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9dfca88888001.json\",\"place_type\":\"poi\",\"name\":\"Weskoppies Psychiatric Hospital\",\"full_name\":\"Weskoppies Psychiatric Hospital\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.1632122716,-25.7607826636],[28.1632122716,-25.7607826636],[28.1632122716,-25.7607826636],[28.1632122716,-25.7607826636]]]},\"attributes\":{}},\"2691\":{\"id\":\"46c1b1ab24d7e11a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/46c1b1ab24d7e11a.json\",\"place_type\":\"city\",\"name\":\"Midrand\",\"full_name\":\"Midrand, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.0140761,-26.0572574],[28.1930256,-26.0572574],[28.1930256,-25.9195514],[28.0140761,-25.9195514]]]},\"attributes\":{}},\"2692\":null,\"2693\":null,\"2694\":{\"id\":\"7efc470da463c9f0\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7efc470da463c9f0.json\",\"place_type\":\"city\",\"name\":\"Soweto\",\"full_name\":\"Soweto, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.7947598,-26.3054355],[27.9557837,-26.3054355],[27.9557837,-26.2074073],[27.7947598,-26.2074073]]]},\"attributes\":{}},\"2695\":null,\"2696\":null,\"2697\":{\"id\":\"e564d30dc173d2a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e564d30dc173d2a8.json\",\"place_type\":\"city\",\"name\":\"Johannesburg\",\"full_name\":\"Johannesburg, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.7518557,-26.5126489],[28.1843404,-26.5126489],[28.1843404,-26.0396281],[27.7518557,-26.0396281]]]},\"attributes\":{}},\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":null,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":{\"id\":\"e564d30dc173d2a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e564d30dc173d2a8.json\",\"place_type\":\"city\",\"name\":\"Johannesburg\",\"full_name\":\"Johannesburg, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.7518557,-26.5126489],[28.1843404,-26.5126489],[28.1843404,-26.0396281],[27.7518557,-26.0396281]]]},\"attributes\":{}},\"2709\":null,\"2710\":{\"id\":\"e564d30dc173d2a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e564d30dc173d2a8.json\",\"place_type\":\"city\",\"name\":\"Johannesburg\",\"full_name\":\"Johannesburg, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.7518557,-26.5126489],[28.1843404,-26.5126489],[28.1843404,-26.0396281],[27.7518557,-26.0396281]]]},\"attributes\":{}},\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":null,\"2717\":null,\"2718\":null,\"2719\":{\"id\":\"50b3deffa469c1b6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/50b3deffa469c1b6.json\",\"place_type\":\"city\",\"name\":\"Hammanskraal\",\"full_name\":\"Hammanskraal, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.26134,-25.4185684],[28.3157118,-25.4185684],[28.3157118,-25.3825535],[28.26134,-25.3825535]]]},\"attributes\":{}},\"2720\":null,\"2721\":{\"id\":\"cc95b56a28712044\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/cc95b56a28712044.json\",\"place_type\":\"city\",\"name\":\"Centurion\",\"full_name\":\"Centurion, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.0010585,-25.9448996],[28.2712217,-25.9448996],[28.2712217,-25.7768617],[28.0010585,-25.7768617]]]},\"attributes\":{}},\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":{\"id\":\"e564d30dc173d2a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e564d30dc173d2a8.json\",\"place_type\":\"city\",\"name\":\"Johannesburg\",\"full_name\":\"Johannesburg, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.7518557,-26.5126489],[28.1843404,-26.5126489],[28.1843404,-26.0396281],[27.7518557,-26.0396281]]]},\"attributes\":{}},\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":null,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":{\"id\":\"d0848b8367022de8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/d0848b8367022de8.json\",\"place_type\":\"city\",\"name\":\"Polokwane\",\"full_name\":\"Polokwane, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[29.3915768,-23.9976483],[29.5624256,-23.9976483],[29.5624256,-23.8348207],[29.3915768,-23.8348207]]]},\"attributes\":{}},\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":null,\"2749\":null,\"2750\":null,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":{\"id\":\"0e587c59401d0a27\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0e587c59401d0a27.json\",\"place_type\":\"city\",\"name\":\"Pretoria\",\"full_name\":\"Pretoria, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.9483035,-25.9157727],[28.4198285,-25.9157727],[28.4198285,-25.5894376],[27.9483035,-25.5894376]]]},\"attributes\":{}},\"2756\":null,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":{\"id\":\"07d9d2df32c83002\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d2df32c83002.json\",\"place_type\":\"poi\",\"name\":\"Ellis Park Stadium | Coca-Cola Park\",\"full_name\":\"Ellis Park Stadium | Coca-Cola Park\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.0605025422,-26.1971699316],[28.0605025422,-26.1971699316],[28.0605025422,-26.1971699316],[28.0605025422,-26.1971699316]]]},\"attributes\":{}},\"2790\":null,\"2791\":null,\"2792\":null,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":{\"id\":\"0e587c59401d0a27\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0e587c59401d0a27.json\",\"place_type\":\"city\",\"name\":\"Pretoria\",\"full_name\":\"Pretoria, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.9483035,-25.9157727],[28.4198285,-25.9157727],[28.4198285,-25.5894376],[27.9483035,-25.5894376]]]},\"attributes\":{}},\"2800\":{\"id\":\"0e587c59401d0a27\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0e587c59401d0a27.json\",\"place_type\":\"city\",\"name\":\"Pretoria\",\"full_name\":\"Pretoria, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.9483035,-25.9157727],[28.4198285,-25.9157727],[28.4198285,-25.5894376],[27.9483035,-25.5894376]]]},\"attributes\":{}},\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":null,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":{\"id\":\"f344308959b070f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/f344308959b070f6.json\",\"place_type\":\"city\",\"name\":\"Mohlakeng\",\"full_name\":\"Mohlakeng, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.685218,-26.247361],[27.7142113,-26.247361],[27.7142113,-26.2144967],[27.685218,-26.2144967]]]},\"attributes\":{}},\"2817\":null,\"2818\":null,\"2819\":{\"id\":\"f46102f64b68e431\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/f46102f64b68e431.json\",\"place_type\":\"city\",\"name\":\"Tembisa\",\"full_name\":\"Tembisa, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[28.1798618,-26.0358262],[28.2543163,-26.0358262],[28.2543163,-25.9592972],[28.1798618,-25.9592972]]]},\"attributes\":{}},\"2820\":null,\"2821\":null,\"2822\":{\"id\":\"e564d30dc173d2a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e564d30dc173d2a8.json\",\"place_type\":\"city\",\"name\":\"Johannesburg\",\"full_name\":\"Johannesburg, South Africa\",\"country_code\":\"ZA\",\"country\":\"South Africa\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[27.7518557,-26.5126489],[28.1843404,-26.5126489],[28.1843404,-26.0396281],[27.7518557,-26.0396281]]]},\"attributes\":{}},\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":null,\"2839\":null,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":null,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2876\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":null,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":{\"id\":\"00ace66c41e736ad\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ace66c41e736ad.json\",\"place_type\":\"city\",\"name\":\"Mubi\",\"full_name\":\"Mubi, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.2439137,10.2447234],[13.2993253,10.2447234],[13.2993253,10.2929267],[13.2439137,10.2929267]]]},\"attributes\":{}},\"2895\":null,\"2896\":{\"id\":\"00ace66c41e736ad\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ace66c41e736ad.json\",\"place_type\":\"city\",\"name\":\"Mubi\",\"full_name\":\"Mubi, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.2439137,10.2447234],[13.2993253,10.2447234],[13.2993253,10.2929267],[13.2439137,10.2929267]]]},\"attributes\":{}},\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":null,\"2906\":null,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":{\"id\":\"59b27337f38d658b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/59b27337f38d658b.json\",\"place_type\":\"country\",\"name\":\"Nigeria\",\"full_name\":\"Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,4.1974055],[14.6777951,4.1974055],[14.6777951,13.8881151],[2.6654364,13.8881151]]]},\"attributes\":{}},\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":null,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":null,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"2980\":null,\"2981\":null,\"2982\":null,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":{\"id\":\"0097ec862c79a257\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0097ec862c79a257.json\",\"place_type\":\"admin\",\"name\":\"Oyo\",\"full_name\":\"Oyo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6953821,7.0555476],[4.5753821,7.0555476],[4.5753821,9.1962975],[2.6953821,9.1962975]]]},\"attributes\":{}},\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3030\":null,\"3031\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":null,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":null,\"3060\":null,\"3061\":null,\"3062\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":{\"id\":\"01e272024ddb6128\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01e272024ddb6128.json\",\"place_type\":\"city\",\"name\":\"Oshogbo\",\"full_name\":\"Oshogbo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.473474,7.7240979],[4.6143238,7.7240979],[4.6143238,7.8499733],[4.473474,7.8499733]]]},\"attributes\":{}},\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":null,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":null,\"3089\":null,\"3090\":null,\"3091\":{\"id\":\"00611f1548c7bdef\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00611f1548c7bdef.json\",\"place_type\":\"city\",\"name\":\"Kano\",\"full_name\":\"Kano, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.4475987,11.9296331],[8.6073347,11.9296331],[8.6073347,12.0803669],[8.4475987,12.0803669]]]},\"attributes\":{}},\"3092\":null,\"3093\":null,\"3094\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":null,\"3100\":null,\"3101\":null,\"3102\":null,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":{\"id\":\"000763a81141ab85\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/000763a81141ab85.json\",\"place_type\":\"city\",\"name\":\"Maiduguri\",\"full_name\":\"Maiduguri, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.0432909,11.7826542],[13.2550301,11.7826542],[13.2550301,11.9164327],[13.0432909,11.9164327]]]},\"attributes\":{}},\"3117\":{\"id\":\"07d9d6d6aa081000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d6d6aa081000.json\",\"place_type\":\"poi\",\"name\":\"Maiduguri\",\"full_name\":\"Maiduguri\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.1398488781,11.8334024998],[13.1398488781,11.8334024998],[13.1398488781,11.8334024998],[13.1398488781,11.8334024998]]]},\"attributes\":{}},\"3118\":null,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":null,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"3143\":null,\"3144\":null,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":null,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":null,\"3175\":null,\"3176\":null,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":null,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":{\"id\":\"00575f683380afab\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00575f683380afab.json\",\"place_type\":\"city\",\"name\":\"Lokoja\",\"full_name\":\"Lokoja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6912736,7.7396574],[6.7500381,7.7396574],[6.7500381,7.826825],[6.6912736,7.826825]]]},\"attributes\":{}},\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":null,\"3191\":null,\"3192\":null,\"3193\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":null,\"3235\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":null,\"3245\":null,\"3246\":null,\"3247\":null,\"3248\":null,\"3249\":null,\"3250\":null,\"3251\":null,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3259\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3260\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3261\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3262\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3263\":null,\"3264\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3265\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3266\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3267\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3268\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3269\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3270\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3271\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3272\":null,\"3273\":null,\"3274\":null,\"3275\":null,\"3276\":null,\"3277\":null,\"3278\":null,\"3279\":null,\"3280\":null,\"3281\":null,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":null,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":{\"id\":\"004eba9d6293467f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/004eba9d6293467f.json\",\"place_type\":\"admin\",\"name\":\"Plateau\",\"full_name\":\"Plateau, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.5544183,8.3456921],[10.6795862,8.3456921],[10.6795862,10.3924791],[8.5544183,10.3924791]]]},\"attributes\":{}},\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":null,\"3311\":null,\"3312\":null,\"3313\":{\"id\":\"012d63e97ff5a7b5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/012d63e97ff5a7b5.json\",\"place_type\":\"city\",\"name\":\"Jos\",\"full_name\":\"Jos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.8337107,9.8581086],[8.9389277,9.8581086],[8.9389277,9.9674885],[8.8337107,9.9674885]]]},\"attributes\":{}},\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3326\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3327\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3328\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3329\":null,\"3330\":null,\"3331\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":{\"id\":\"01824b7f48a8b0fc\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01824b7f48a8b0fc.json\",\"place_type\":\"city\",\"name\":\"Oke-Iho\",\"full_name\":\"Oke-Iho, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3361653,8.0128553],[3.3668683,8.0128553],[3.3668683,8.0447799],[3.3361653,8.0447799]]]},\"attributes\":{}},\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":null,\"3347\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3348\":null,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"3361\":null,\"3362\":null,\"3363\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":{\"id\":\"1e228be254cad957\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1e228be254cad957.json\",\"place_type\":\"country\",\"name\":\"Sierra Leone\",\"full_name\":\"Sierra Leone\",\"country_code\":\"SL\",\"country\":\"Sierra Leone\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-13.4307965,6.7938865],[-10.2747536,6.7938865],[-10.2747536,10.0002944],[-13.4307965,10.0002944]]]},\"attributes\":{}},\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":null,\"3401\":{\"id\":\"00575f683380afab\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00575f683380afab.json\",\"place_type\":\"city\",\"name\":\"Lokoja\",\"full_name\":\"Lokoja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6912736,7.7396574],[6.7500381,7.7396574],[6.7500381,7.826825],[6.6912736,7.826825]]]},\"attributes\":{}},\"3402\":null,\"3403\":null,\"3404\":null,\"3405\":null,\"3406\":null,\"3407\":null,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":null,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":{\"id\":\"1e228be254cad957\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1e228be254cad957.json\",\"place_type\":\"country\",\"name\":\"Sierra Leone\",\"full_name\":\"Sierra Leone\",\"country_code\":\"SL\",\"country\":\"Sierra Leone\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-13.4307965,6.7938865],[-10.2747536,6.7938865],[-10.2747536,10.0002944],[-13.4307965,10.0002944]]]},\"attributes\":{}},\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":null,\"3456\":{\"id\":\"00611f1548c7bdef\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00611f1548c7bdef.json\",\"place_type\":\"city\",\"name\":\"Kano\",\"full_name\":\"Kano, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.4475987,11.9296331],[8.6073347,11.9296331],[8.6073347,12.0803669],[8.4475987,12.0803669]]]},\"attributes\":{}},\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":null,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":{\"id\":\"004eba9d6293467f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/004eba9d6293467f.json\",\"place_type\":\"admin\",\"name\":\"Plateau\",\"full_name\":\"Plateau, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.5544183,8.3456921],[10.6795862,8.3456921],[10.6795862,10.3924791],[8.5544183,10.3924791]]]},\"attributes\":{}},\"3481\":null,\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3492\":null,\"3493\":null,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":{\"id\":\"012d63e97ff5a7b5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/012d63e97ff5a7b5.json\",\"place_type\":\"city\",\"name\":\"Jos\",\"full_name\":\"Jos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.8337107,9.8581086],[8.9389277,9.8581086],[8.9389277,9.9674885],[8.8337107,9.9674885]]]},\"attributes\":{}},\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":null,\"3561\":null,\"3562\":null,\"3563\":null,\"3564\":null,\"3565\":null,\"3566\":null,\"3567\":null,\"3568\":null,\"3569\":null,\"3570\":null,\"3571\":null,\"3572\":null,\"3573\":null,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3582\":null,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":{\"id\":\"012d63e97ff5a7b5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/012d63e97ff5a7b5.json\",\"place_type\":\"city\",\"name\":\"Jos\",\"full_name\":\"Jos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.8337107,9.8581086],[8.9389277,9.8581086],[8.9389277,9.9674885],[8.8337107,9.9674885]]]},\"attributes\":{}},\"3591\":null,\"3592\":null,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3597\":null,\"3598\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":null,\"3625\":null,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":null,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":null,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":null,\"3675\":{\"id\":\"00ccf9f124e558ee\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ccf9f124e558ee.json\",\"place_type\":\"city\",\"name\":\"Gboko\",\"full_name\":\"Gboko, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.9705568,7.2969495],[9.0285666,7.2969495],[9.0285666,7.360567],[8.9705568,7.360567]]]},\"attributes\":{}},\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"3687\":null,\"3688\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3689\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3690\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":null,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"3717\":null,\"3718\":null,\"3719\":null,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":null,\"3730\":null,\"3731\":null,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":{\"id\":\"00ace66c41e736ad\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ace66c41e736ad.json\",\"place_type\":\"city\",\"name\":\"Mubi\",\"full_name\":\"Mubi, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.2439137,10.2447234],[13.2993253,10.2447234],[13.2993253,10.2929267],[13.2439137,10.2929267]]]},\"attributes\":{}},\"3739\":null,\"3740\":{\"id\":\"00ace66c41e736ad\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ace66c41e736ad.json\",\"place_type\":\"city\",\"name\":\"Mubi\",\"full_name\":\"Mubi, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.2439137,10.2447234],[13.2993253,10.2447234],[13.2993253,10.2929267],[13.2439137,10.2929267]]]},\"attributes\":{}},\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":null,\"3754\":null,\"3755\":null,\"3756\":{\"id\":\"01e98f2222fb0fa9\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01e98f2222fb0fa9.json\",\"place_type\":\"admin\",\"name\":\"Enugu\",\"full_name\":\"Enugu, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9337906,5.9218314],[7.8801954,5.9218314],[7.8801954,7.1119359],[6.9337906,7.1119359]]]},\"attributes\":{}},\"3757\":null,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":null,\"3765\":null,\"3766\":null,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":{\"id\":\"00b1231d2214913c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00b1231d2214913c.json\",\"place_type\":\"city\",\"name\":\"Abeokuta\",\"full_name\":\"Abeokuta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2713206,7.0996682],[3.4335622,7.0996682],[3.4335622,7.209188],[3.2713206,7.209188]]]},\"attributes\":{}},\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":{\"id\":\"07d9eaaf22087000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9eaaf22087000.json\",\"place_type\":\"poi\",\"name\":\"Portharcourt\",\"full_name\":\"Portharcourt\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.0098018507,4.8144314198],[7.0098018507,4.8144314198],[7.0098018507,4.8144314198],[7.0098018507,4.8144314198]]]},\"attributes\":{}},\"3787\":null,\"3788\":null,\"3789\":{\"id\":\"59b27337f38d658b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/59b27337f38d658b.json\",\"place_type\":\"country\",\"name\":\"Nigeria\",\"full_name\":\"Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,4.1974055],[14.6777951,4.1974055],[14.6777951,13.8881151],[2.6654364,13.8881151]]]},\"attributes\":{}},\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":null,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":null,\"3809\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"3822\":null,\"3823\":null,\"3824\":{\"id\":\"006268ad653506e5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006268ad653506e5.json\",\"place_type\":\"admin\",\"name\":\"Osun\",\"full_name\":\"Osun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.0274778,6.9780072],[5.0845742,6.9780072],[5.0845742,8.1110107],[4.0274778,8.1110107]]]},\"attributes\":{}},\"3825\":{\"id\":\"07d9ef664f088001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9ef664f088001.json\",\"place_type\":\"poi\",\"name\":\"Owerri Imo state\",\"full_name\":\"Owerri Imo state\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.0192177071,5.5005635949],[7.0192177071,5.5005635949],[7.0192177071,5.5005635949],[7.0192177071,5.5005635949]]]},\"attributes\":{}},\"3826\":{\"id\":\"01d904b74c275f34\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01d904b74c275f34.json\",\"place_type\":\"admin\",\"name\":\"Imo\",\"full_name\":\"Imo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6269298,5.2050072],[7.432044,5.2050072],[7.432044,5.9431837],[6.6269298,5.9431837]]]},\"attributes\":{}},\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":{\"id\":\"015274df00e95310\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/015274df00e95310.json\",\"place_type\":\"city\",\"name\":\"Gembu\",\"full_name\":\"Gembu, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[11.2394142,6.7066989],[11.2629223,6.7066989],[11.2629223,6.7301545],[11.2394142,6.7301545]]]},\"attributes\":{}},\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"3844\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":null,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":null,\"3886\":null,\"3887\":null,\"3888\":null,\"3889\":null,\"3890\":null,\"3891\":null,\"3892\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":{\"id\":\"006c6743642cb09c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/006c6743642cb09c.json\",\"place_type\":\"city\",\"name\":\"Kaduna\",\"full_name\":\"Kaduna, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3566227,10.4252617],[7.4880222,10.4252617],[7.4880222,10.5972283],[7.3566227,10.5972283]]]},\"attributes\":{}},\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":{\"id\":\"005dbe7e6949db42\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005dbe7e6949db42.json\",\"place_type\":\"city\",\"name\":\"Benin-City\",\"full_name\":\"Benin-City, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.5532952,6.2445092],[5.7292806,6.2445092],[5.7292806,6.4254003],[5.5532952,6.4254003]]]},\"attributes\":{}},\"3938\":null,\"3939\":null,\"3940\":null,\"3941\":null,\"3942\":null,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"3948\":null,\"3949\":null,\"3950\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"3951\":null,\"3952\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":null,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"3961\":null,\"3962\":null,\"3963\":null,\"3964\":null,\"3965\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"3966\":null,\"3967\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":null,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"4002\":null,\"4003\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4004\":{\"id\":\"00c769811539c617\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00c769811539c617.json\",\"place_type\":\"admin\",\"name\":\"Edo\",\"full_name\":\"Edo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.0086055,5.7411889],[6.7194358,5.7411889],[6.7194358,7.5964485],[5.0086055,7.5964485]]]},\"attributes\":{}},\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":{\"id\":\"0097ec862c79a257\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0097ec862c79a257.json\",\"place_type\":\"admin\",\"name\":\"Oyo\",\"full_name\":\"Oyo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6953821,7.0555476],[4.5753821,7.0555476],[4.5753821,9.1962975],[2.6953821,9.1962975]]]},\"attributes\":{}},\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":{\"id\":\"00dfa50d5c526a40\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00dfa50d5c526a40.json\",\"place_type\":\"city\",\"name\":\"Owerri\",\"full_name\":\"Owerri, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9820783,5.4522716],[7.0775981,5.4522716],[7.0775981,5.5448138],[6.9820783,5.5448138]]]},\"attributes\":{}},\"4031\":null,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":null,\"4051\":null,\"4052\":null,\"4053\":null,\"4054\":null,\"4055\":null,\"4056\":null,\"4057\":null,\"4058\":null,\"4059\":null,\"4060\":null,\"4061\":null,\"4062\":null,\"4063\":null,\"4064\":null,\"4065\":null,\"4066\":null,\"4067\":null,\"4068\":null,\"4069\":null,\"4070\":null,\"4071\":null,\"4072\":null,\"4073\":null,\"4074\":null,\"4075\":null,\"4076\":null,\"4077\":null,\"4078\":null,\"4079\":null,\"4080\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":null,\"4085\":null,\"4086\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"4103\":null,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":{\"id\":\"0180b3ce4727c856\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0180b3ce4727c856.json\",\"place_type\":\"admin\",\"name\":\"Delta\",\"full_name\":\"Delta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.0200801,5.010849],[6.7684611,5.010849],[6.7684611,6.5020675],[5.0200801,6.5020675]]]},\"attributes\":{}},\"4109\":null,\"4110\":null,\"4111\":null,\"4112\":null,\"4113\":null,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4119\":null,\"4120\":null,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":{\"id\":\"005dbe7e6949db42\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005dbe7e6949db42.json\",\"place_type\":\"city\",\"name\":\"Benin-City\",\"full_name\":\"Benin-City, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.5532952,6.2445092],[5.7292806,6.2445092],[5.7292806,6.4254003],[5.5532952,6.4254003]]]},\"attributes\":{}},\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":null,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":null,\"4154\":null,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":null,\"4159\":null,\"4160\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":{\"id\":\"01e272024ddb6128\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01e272024ddb6128.json\",\"place_type\":\"city\",\"name\":\"Oshogbo\",\"full_name\":\"Oshogbo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.473474,7.7240979],[4.6143238,7.7240979],[4.6143238,7.8499733],[4.473474,7.8499733]]]},\"attributes\":{}},\"4170\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4171\":null,\"4172\":null,\"4173\":null,\"4174\":null,\"4175\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4208\":{\"id\":\"00578fa8439c228a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00578fa8439c228a.json\",\"place_type\":\"admin\",\"name\":\"Ogun\",\"full_name\":\"Ogun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,6.287653],[4.6189619,6.287653],[4.6189619,7.9763149],[2.6654364,7.9763149]]]},\"attributes\":{}},\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4214\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":null,\"4226\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":null,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"4274\":{\"id\":\"01ed1f9a43bfb9bd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ed1f9a43bfb9bd.json\",\"place_type\":\"city\",\"name\":\"Victoria Island\",\"full_name\":\"Victoria Island, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.4023218,6.3962643],[3.6013694,6.3962643],[3.6013694,6.4867971],[3.4023218,6.4867971]]]},\"attributes\":{}},\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":{\"id\":\"07d9cff9e8487002\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9cff9e8487002.json\",\"place_type\":\"poi\",\"name\":\"Ajah\",\"full_name\":\"Ajah\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.568776863,6.469078621],[3.568776863,6.469078621],[3.568776863,6.469078621],[3.568776863,6.469078621]]]},\"attributes\":{}},\"4281\":null,\"4282\":null,\"4283\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":{\"id\":\"005c6f3641f95852\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005c6f3641f95852.json\",\"place_type\":\"city\",\"name\":\"Calabar\",\"full_name\":\"Calabar, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.3075007,4.9112081],[8.372645,4.9112081],[8.372645,5.0414683],[8.3075007,5.0414683]]]},\"attributes\":{}},\"4289\":null,\"4290\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":null,\"4300\":{\"id\":\"07d9e7884f082000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9e7884f082000.json\",\"place_type\":\"poi\",\"name\":\"Iyana Church Bus Stop\",\"full_name\":\"Iyana Church Bus Stop\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.974318622,7.4219184722],[3.974318622,7.4219184722],[3.974318622,7.4219184722],[3.974318622,7.4219184722]]]},\"attributes\":{}},\"4301\":{\"id\":\"000763a81141ab85\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/000763a81141ab85.json\",\"place_type\":\"city\",\"name\":\"Maiduguri\",\"full_name\":\"Maiduguri, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.0432909,11.7826542],[13.2550301,11.7826542],[13.2550301,11.9164327],[13.0432909,11.9164327]]]},\"attributes\":{}},\"4302\":{\"id\":\"07d9d6d6aa081000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d6d6aa081000.json\",\"place_type\":\"poi\",\"name\":\"Maiduguri\",\"full_name\":\"Maiduguri\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[13.1398488781,11.8334024998],[13.1398488781,11.8334024998],[13.1398488781,11.8334024998],[13.1398488781,11.8334024998]]]},\"attributes\":{}},\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":null,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4322\":null,\"4323\":null,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":null,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":null,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4408\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":null,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":{\"id\":\"0054df80408965f1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0054df80408965f1.json\",\"place_type\":\"city\",\"name\":\"Eket\",\"full_name\":\"Eket, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.9136547,4.6265583],[7.9719914,4.6265583],[7.9719914,4.6763909],[7.9136547,4.6763909]]]},\"attributes\":{}},\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":null,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4458\":null,\"4459\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4460\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4461\":null,\"4462\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4463\":null,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":null,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":{\"id\":\"00575f683380afab\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00575f683380afab.json\",\"place_type\":\"city\",\"name\":\"Lokoja\",\"full_name\":\"Lokoja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6912736,7.7396574],[6.7500381,7.7396574],[6.7500381,7.826825],[6.6912736,7.826825]]]},\"attributes\":{}},\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":{\"id\":\"07d9f14273c83000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9f14273c83000.json\",\"place_type\":\"poi\",\"name\":\"Water works\",\"full_name\":\"Water works\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.0969522575,6.3285018491],[8.0969522575,6.3285018491],[8.0969522575,6.3285018491],[8.0969522575,6.3285018491]]]},\"attributes\":{}},\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":null,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":{\"id\":\"005dbe7e6949db42\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005dbe7e6949db42.json\",\"place_type\":\"city\",\"name\":\"Benin-City\",\"full_name\":\"Benin-City, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.5532952,6.2445092],[5.7292806,6.2445092],[5.7292806,6.4254003],[5.5532952,6.4254003]]]},\"attributes\":{}},\"4513\":null,\"4514\":null,\"4515\":{\"id\":\"01307b1160a66303\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01307b1160a66303.json\",\"place_type\":\"city\",\"name\":\"Aba\",\"full_name\":\"Aba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3116751,5.0587562],[7.4055676,5.0587562],[7.4055676,5.1656501],[7.3116751,5.1656501]]]},\"attributes\":{}},\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":{\"id\":\"00dc60216ef0611c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00dc60216ef0611c.json\",\"place_type\":\"city\",\"name\":\"Abak\",\"full_name\":\"Abak, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.7804956,4.9727511],[7.7930856,4.9727511],[7.7930856,4.986331],[7.7804956,4.986331]]]},\"attributes\":{}},\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":null,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":{\"id\":\"0180b3ce4727c856\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0180b3ce4727c856.json\",\"place_type\":\"admin\",\"name\":\"Delta\",\"full_name\":\"Delta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.0200801,5.010849],[6.7684611,5.010849],[6.7684611,6.5020675],[5.0200801,6.5020675]]]},\"attributes\":{}},\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":{\"id\":\"016fb76c456d0e94\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/016fb76c456d0e94.json\",\"place_type\":\"city\",\"name\":\"Lekki\",\"full_name\":\"Lekki, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.086241,6.4118061],[4.0884533,6.4118061],[4.0884533,6.4133892],[4.086241,6.4133892]]]},\"attributes\":{}},\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":{\"id\":\"111114596294d001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/111114596294d001.json\",\"place_type\":\"poi\",\"name\":\"Hotel Ibis\",\"full_name\":\"Hotel Ibis\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3298121779,6.5509937297],[3.3298121779,6.5509937297],[3.3298121779,6.5509937297],[3.3298121779,6.5509937297]]]},\"attributes\":{}},\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":null,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4572\":null,\"4573\":null,\"4574\":null,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":null,\"4618\":null,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":null,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":{\"id\":\"0056091e32b465d6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0056091e32b465d6.json\",\"place_type\":\"city\",\"name\":\"Alagbado\",\"full_name\":\"Alagbado, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2629101,6.6393308],[3.4075005,6.6393308],[3.4075005,6.740074],[3.2629101,6.740074]]]},\"attributes\":{}},\"4630\":null,\"4631\":null,\"4632\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4633\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4634\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4635\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4636\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4637\":null,\"4638\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4639\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4640\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4641\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4642\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4643\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4644\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4645\":null,\"4646\":null,\"4647\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4648\":null,\"4649\":null,\"4650\":null,\"4651\":null,\"4652\":null,\"4653\":null,\"4654\":null,\"4655\":null,\"4656\":null,\"4657\":null,\"4658\":null,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":{\"id\":\"0008cb6457ff0b55\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0008cb6457ff0b55.json\",\"place_type\":\"city\",\"name\":\"Port Harcourt\",\"full_name\":\"Port Harcourt, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9380658,4.7337699],[7.1244854,4.7337699],[7.1244854,4.9154902],[6.9380658,4.9154902]]]},\"attributes\":{}},\"4686\":{\"id\":\"004eba9d6293467f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/004eba9d6293467f.json\",\"place_type\":\"admin\",\"name\":\"Plateau\",\"full_name\":\"Plateau, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.5544183,8.3456921],[10.6795862,8.3456921],[10.6795862,10.3924791],[8.5544183,10.3924791]]]},\"attributes\":{}},\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":{\"id\":\"00ccf9f124e558ee\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00ccf9f124e558ee.json\",\"place_type\":\"city\",\"name\":\"Gboko\",\"full_name\":\"Gboko, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.9705568,7.2969495],[9.0285666,7.2969495],[9.0285666,7.360567],[8.9705568,7.360567]]]},\"attributes\":{}},\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"4695\":null,\"4696\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4697\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":null,\"4719\":null,\"4720\":null,\"4721\":{\"id\":\"012d63e97ff5a7b5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/012d63e97ff5a7b5.json\",\"place_type\":\"city\",\"name\":\"Jos\",\"full_name\":\"Jos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.8337107,9.8581086],[8.9389277,9.8581086],[8.9389277,9.9674885],[8.8337107,9.9674885]]]},\"attributes\":{}},\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":null,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":{\"id\":\"0065f09a6666479e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0065f09a6666479e.json\",\"place_type\":\"city\",\"name\":\"Ibadan\",\"full_name\":\"Ibadan, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7770114,7.2991429],[4.0335816,7.2991429],[4.0335816,7.5590064],[3.7770114,7.5590064]]]},\"attributes\":{}},\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":null,\"4748\":null,\"4749\":null,\"4750\":null,\"4751\":null,\"4752\":{\"id\":\"00578fa8439c228a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00578fa8439c228a.json\",\"place_type\":\"admin\",\"name\":\"Ogun\",\"full_name\":\"Ogun, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.6654364,6.287653],[4.6189619,6.287653],[4.6189619,7.9763149],[2.6654364,7.9763149]]]},\"attributes\":{}},\"4753\":null,\"4754\":null,\"4755\":null,\"4756\":null,\"4757\":null,\"4758\":{\"id\":\"01e98f2222fb0fa9\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01e98f2222fb0fa9.json\",\"place_type\":\"admin\",\"name\":\"Enugu\",\"full_name\":\"Enugu, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.9337906,5.9218314],[7.8801954,5.9218314],[7.8801954,7.1119359],[6.9337906,7.1119359]]]},\"attributes\":{}},\"4759\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4760\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4761\":null,\"4762\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4763\":{\"id\":\"011a942e0a0e8fb2\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/011a942e0a0e8fb2.json\",\"place_type\":\"admin\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[2.7063037,6.3703877],[4.350022,6.3703877],[4.350022,6.6985461],[2.7063037,6.6985461]]]},\"attributes\":{}},\"4764\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4765\":null,\"4766\":null,\"4767\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4768\":null,\"4769\":null,\"4770\":null,\"4771\":null,\"4772\":null,\"4773\":{\"id\":\"005c6f3641f95852\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/005c6f3641f95852.json\",\"place_type\":\"city\",\"name\":\"Calabar\",\"full_name\":\"Calabar, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[8.3075007,4.9112081],[8.372645,4.9112081],[8.372645,5.0414683],[8.3075007,5.0414683]]]},\"attributes\":{}},\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":{\"id\":\"01824b7f48a8b0fc\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01824b7f48a8b0fc.json\",\"place_type\":\"city\",\"name\":\"Oke-Iho\",\"full_name\":\"Oke-Iho, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3361653,8.0128553],[3.3668683,8.0128553],[3.3668683,8.0447799],[3.3361653,8.0447799]]]},\"attributes\":{}},\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4798\":null,\"4799\":null,\"4800\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":{\"id\":\"00e55e2b4c491c5f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e55e2b4c491c5f.json\",\"place_type\":\"city\",\"name\":\"Abuja\",\"full_name\":\"Abuja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},\"attributes\":{}},\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":{\"id\":\"0106ea1f4ab5017c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/0106ea1f4ab5017c.json\",\"place_type\":\"city\",\"name\":\"Zuba\",\"full_name\":\"Zuba, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.2059141,9.0832821],[7.2279578,9.0832821],[7.2279578,9.1150673],[7.2059141,9.1150673]]]},\"attributes\":{}},\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":null,\"4829\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":{\"id\":\"01cba65c41c20b24\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01cba65c41c20b24.json\",\"place_type\":\"city\",\"name\":\"Ilorin\",\"full_name\":\"Ilorin, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[4.4752509,8.4145568],[4.6252965,8.4145568],[4.6252965,8.5453022],[4.4752509,8.5453022]]]},\"attributes\":{}},\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":{\"id\":\"07d9f37130484001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9f37130484001.json\",\"place_type\":\"poi\",\"name\":\"Third Mainland Bridge\",\"full_name\":\"Third Mainland Bridge\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.3946466446,6.4855487192],[3.3946466446,6.4855487192],[3.3946466446,6.4855487192],[3.3946466446,6.4855487192]]]},\"attributes\":{}},\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":{\"id\":\"00e6e55734393bdb\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00e6e55734393bdb.json\",\"place_type\":\"admin\",\"name\":\"Anambra\",\"full_name\":\"Anambra, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6356497,5.7092317],[7.3681931,5.7092317],[7.3681931,6.7805232],[6.6356497,6.7805232]]]},\"attributes\":{}},\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4893\":null,\"4894\":{\"id\":\"01c46739344ba9f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01c46739344ba9f6.json\",\"place_type\":\"admin\",\"name\":\"Federal Capital Territory\",\"full_name\":\"Federal Capital Territory, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.7786135,8.4504401],[7.7274781,8.4504401],[7.7274781,9.4345273],[6.7786135,9.4345273]]]},\"attributes\":{}},\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":null,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":null,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4933\":null,\"4934\":{\"id\":\"01546f6801ce58cd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01546f6801ce58cd.json\",\"place_type\":\"city\",\"name\":\"Uyo\",\"full_name\":\"Uyo, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[7.8619108,4.9711142],[8.0037505,4.9711142],[8.0037505,5.0716486],[7.8619108,5.0716486]]]},\"attributes\":{}},\"4935\":null,\"4936\":{\"id\":\"00575f683380afab\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00575f683380afab.json\",\"place_type\":\"city\",\"name\":\"Lokoja\",\"full_name\":\"Lokoja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.6912736,7.7396574],[6.7500381,7.7396574],[6.7500381,7.826825],[6.6912736,7.826825]]]},\"attributes\":{}},\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":null,\"4941\":null,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":{\"id\":\"00b1231d2214913c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00b1231d2214913c.json\",\"place_type\":\"city\",\"name\":\"Abeokuta\",\"full_name\":\"Abeokuta, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2713206,7.0996682],[3.4335622,7.0996682],[3.4335622,7.209188],[3.2713206,7.209188]]]},\"attributes\":{}},\"4946\":null,\"4947\":null,\"4948\":null,\"4949\":null,\"4950\":null,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":{\"id\":\"07d9d80220886001\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9d80220886001.json\",\"place_type\":\"poi\",\"name\":\"Akure, Ondo State\",\"full_name\":\"Akure, Ondo State\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[5.3683439534,7.2588187514],[5.3683439534,7.2588187514],[5.3683439534,7.2588187514],[5.3683439534,7.2588187514]]]},\"attributes\":{}},\"4960\":null,\"4961\":{\"id\":\"07d9e86293081000\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/07d9e86293081000.json\",\"place_type\":\"poi\",\"name\":\"surulere\",\"full_name\":\"surulere\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.361788193,6.5169128233],[3.361788193,6.5169128233],[3.361788193,6.5169128233],[3.361788193,6.5169128233]]]},\"attributes\":{}},\"4962\":null,\"4963\":null,\"4964\":{\"id\":\"00817d75276a95cf\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/00817d75276a95cf.json\",\"place_type\":\"city\",\"name\":\"Lagos\",\"full_name\":\"Lagos, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.2131467,6.4278856],[3.4640641,6.4278856],[3.4640641,6.5583389],[3.2131467,6.5583389]]]},\"attributes\":{}},\"4965\":null,\"4966\":null,\"4967\":{\"id\":\"01ca6d740243aa31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01ca6d740243aa31.json\",\"place_type\":\"admin\",\"name\":\"Rivers\",\"full_name\":\"Rivers, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[6.351687,4.3176116],[7.5957889,4.3176116],[7.5957889,5.7275834],[6.351687,5.7275834]]]},\"attributes\":{}},\"4968\":null,\"4969\":null,\"4970\":null,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":null,\"4975\":null,\"4976\":null,\"4977\":null,\"4978\":null,\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":null,\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":null,\"4993\":null,\"4994\":null,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"contributors\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":null,\"16\":null,\"17\":null,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":null,\"31\":null,\"32\":null,\"33\":null,\"34\":null,\"35\":null,\"36\":null,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":null,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":null,\"63\":null,\"64\":null,\"65\":null,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":null,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":null,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":null,\"88\":null,\"89\":null,\"90\":null,\"91\":null,\"92\":null,\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":null,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":null,\"112\":null,\"113\":null,\"114\":null,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":null,\"127\":null,\"128\":null,\"129\":null,\"130\":null,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":null,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":null,\"153\":null,\"154\":null,\"155\":null,\"156\":null,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":null,\"164\":null,\"165\":null,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":null,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":null,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":null,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":null,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":null,\"291\":null,\"292\":null,\"293\":null,\"294\":null,\"295\":null,\"296\":null,\"297\":null,\"298\":null,\"299\":null,\"300\":null,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":null,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":null,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":null,\"354\":null,\"355\":null,\"356\":null,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":null,\"374\":null,\"375\":null,\"376\":null,\"377\":null,\"378\":null,\"379\":null,\"380\":null,\"381\":null,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":null,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":null,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":null,\"424\":null,\"425\":null,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":null,\"453\":null,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":null,\"475\":null,\"476\":null,\"477\":null,\"478\":null,\"479\":null,\"480\":null,\"481\":null,\"482\":null,\"483\":null,\"484\":null,\"485\":null,\"486\":null,\"487\":null,\"488\":null,\"489\":null,\"490\":null,\"491\":null,\"492\":null,\"493\":null,\"494\":null,\"495\":null,\"496\":null,\"497\":null,\"498\":null,\"499\":null,\"500\":null,\"501\":null,\"502\":null,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":null,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":null,\"524\":null,\"525\":null,\"526\":null,\"527\":null,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":null,\"535\":null,\"536\":null,\"537\":null,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":null,\"544\":null,\"545\":null,\"546\":null,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":null,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":null,\"581\":null,\"582\":null,\"583\":null,\"584\":null,\"585\":null,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":null,\"598\":null,\"599\":null,\"600\":null,\"601\":null,\"602\":null,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":null,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":null,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":null,\"654\":null,\"655\":null,\"656\":null,\"657\":null,\"658\":null,\"659\":null,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":null,\"669\":null,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":null,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":null,\"692\":null,\"693\":null,\"694\":null,\"695\":null,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":null,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":null,\"711\":null,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":null,\"722\":null,\"723\":null,\"724\":null,\"725\":null,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":null,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":null,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":null,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":null,\"766\":null,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":null,\"836\":null,\"837\":null,\"838\":null,\"839\":null,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":null,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":null,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":null,\"874\":null,\"875\":null,\"876\":null,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":null,\"899\":null,\"900\":null,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":null,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":null,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":null,\"957\":null,\"958\":null,\"959\":null,\"960\":null,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":null,\"966\":null,\"967\":null,\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":null,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":null,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":null,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":null,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":null,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":null,\"1077\":null,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":null,\"1084\":null,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":null,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":null,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":null,\"1097\":null,\"1098\":null,\"1099\":null,\"1100\":null,\"1101\":null,\"1102\":null,\"1103\":null,\"1104\":null,\"1105\":null,\"1106\":null,\"1107\":null,\"1108\":null,\"1109\":null,\"1110\":null,\"1111\":null,\"1112\":null,\"1113\":null,\"1114\":null,\"1115\":null,\"1116\":null,\"1117\":null,\"1118\":null,\"1119\":null,\"1120\":null,\"1121\":null,\"1122\":null,\"1123\":null,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":null,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":null,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":null,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":null,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":null,\"1211\":null,\"1212\":null,\"1213\":null,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":null,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":null,\"1239\":null,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":null,\"1246\":null,\"1247\":null,\"1248\":null,\"1249\":null,\"1250\":null,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":null,\"1258\":null,\"1259\":null,\"1260\":null,\"1261\":null,\"1262\":null,\"1263\":null,\"1264\":null,\"1265\":null,\"1266\":null,\"1267\":null,\"1268\":null,\"1269\":null,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":null,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":null,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":null,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":null,\"1336\":null,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":null,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":null,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":null,\"1437\":null,\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":null,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":null,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":null,\"1464\":null,\"1465\":null,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":null,\"1477\":null,\"1478\":null,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":null,\"1490\":null,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":null,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":null,\"1508\":null,\"1509\":null,\"1510\":null,\"1511\":null,\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":null,\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":null,\"1526\":null,\"1527\":null,\"1528\":null,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":null,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":null,\"1555\":null,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":null,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":null,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":null,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":null,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":null,\"1677\":null,\"1678\":null,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":null,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":null,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":null,\"1739\":null,\"1740\":null,\"1741\":null,\"1742\":null,\"1743\":null,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":null,\"1751\":null,\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":null,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":null,\"1785\":null,\"1786\":null,\"1787\":null,\"1788\":null,\"1789\":null,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":null,\"1798\":null,\"1799\":null,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":null,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":null,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":null,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":null,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":null,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":null,\"1892\":null,\"1893\":null,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":null,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":null,\"1917\":null,\"1918\":null,\"1919\":null,\"1920\":null,\"1921\":null,\"1922\":null,\"1923\":null,\"1924\":null,\"1925\":null,\"1926\":null,\"1927\":null,\"1928\":null,\"1929\":null,\"1930\":null,\"1931\":null,\"1932\":null,\"1933\":null,\"1934\":null,\"1935\":null,\"1936\":null,\"1937\":null,\"1938\":null,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":null,\"1945\":null,\"1946\":null,\"1947\":null,\"1948\":null,\"1949\":null,\"1950\":null,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":null,\"1956\":null,\"1957\":null,\"1958\":null,\"1959\":null,\"1960\":null,\"1961\":null,\"1962\":null,\"1963\":null,\"1964\":null,\"1965\":null,\"1966\":null,\"1967\":null,\"1968\":null,\"1969\":null,\"1970\":null,\"1971\":null,\"1972\":null,\"1973\":null,\"1974\":null,\"1975\":null,\"1976\":null,\"1977\":null,\"1978\":null,\"1979\":null,\"1980\":null,\"1981\":null,\"1982\":null,\"1983\":null,\"1984\":null,\"1985\":null,\"1986\":null,\"1987\":null,\"1988\":null,\"1989\":null,\"1990\":null,\"1991\":null,\"1992\":null,\"1993\":null,\"1994\":null,\"1995\":null,\"1996\":null,\"1997\":null,\"1998\":null,\"1999\":null,\"2000\":null,\"2001\":null,\"2002\":null,\"2003\":null,\"2004\":null,\"2005\":null,\"2006\":null,\"2007\":null,\"2008\":null,\"2009\":null,\"2010\":null,\"2011\":null,\"2012\":null,\"2013\":null,\"2014\":null,\"2015\":null,\"2016\":null,\"2017\":null,\"2018\":null,\"2019\":null,\"2020\":null,\"2021\":null,\"2022\":null,\"2023\":null,\"2024\":null,\"2025\":null,\"2026\":null,\"2027\":null,\"2028\":null,\"2029\":null,\"2030\":null,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":null,\"2035\":null,\"2036\":null,\"2037\":null,\"2038\":null,\"2039\":null,\"2040\":null,\"2041\":null,\"2042\":null,\"2043\":null,\"2044\":null,\"2045\":null,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":null,\"2050\":null,\"2051\":null,\"2052\":null,\"2053\":null,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":null,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":null,\"2087\":null,\"2088\":null,\"2089\":null,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":null,\"2097\":null,\"2098\":null,\"2099\":null,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":null,\"2106\":null,\"2107\":null,\"2108\":null,\"2109\":null,\"2110\":null,\"2111\":null,\"2112\":null,\"2113\":null,\"2114\":null,\"2115\":null,\"2116\":null,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":null,\"2123\":null,\"2124\":null,\"2125\":null,\"2126\":null,\"2127\":null,\"2128\":null,\"2129\":null,\"2130\":null,\"2131\":null,\"2132\":null,\"2133\":null,\"2134\":null,\"2135\":null,\"2136\":null,\"2137\":null,\"2138\":null,\"2139\":null,\"2140\":null,\"2141\":null,\"2142\":null,\"2143\":null,\"2144\":null,\"2145\":null,\"2146\":null,\"2147\":null,\"2148\":null,\"2149\":null,\"2150\":null,\"2151\":null,\"2152\":null,\"2153\":null,\"2154\":null,\"2155\":null,\"2156\":null,\"2157\":null,\"2158\":null,\"2159\":null,\"2160\":null,\"2161\":null,\"2162\":null,\"2163\":null,\"2164\":null,\"2165\":null,\"2166\":null,\"2167\":null,\"2168\":null,\"2169\":null,\"2170\":null,\"2171\":null,\"2172\":null,\"2173\":null,\"2174\":null,\"2175\":null,\"2176\":null,\"2177\":null,\"2178\":null,\"2179\":null,\"2180\":null,\"2181\":null,\"2182\":null,\"2183\":null,\"2184\":null,\"2185\":null,\"2186\":null,\"2187\":null,\"2188\":null,\"2189\":null,\"2190\":null,\"2191\":null,\"2192\":null,\"2193\":null,\"2194\":null,\"2195\":null,\"2196\":null,\"2197\":null,\"2198\":null,\"2199\":null,\"2200\":null,\"2201\":null,\"2202\":null,\"2203\":null,\"2204\":null,\"2205\":null,\"2206\":null,\"2207\":null,\"2208\":null,\"2209\":null,\"2210\":null,\"2211\":null,\"2212\":null,\"2213\":null,\"2214\":null,\"2215\":null,\"2216\":null,\"2217\":null,\"2218\":null,\"2219\":null,\"2220\":null,\"2221\":null,\"2222\":null,\"2223\":null,\"2224\":null,\"2225\":null,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":null,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":null,\"2239\":null,\"2240\":null,\"2241\":null,\"2242\":null,\"2243\":null,\"2244\":null,\"2245\":null,\"2246\":null,\"2247\":null,\"2248\":null,\"2249\":null,\"2250\":null,\"2251\":null,\"2252\":null,\"2253\":null,\"2254\":null,\"2255\":null,\"2256\":null,\"2257\":null,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":null,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":null,\"2269\":null,\"2270\":null,\"2271\":null,\"2272\":null,\"2273\":null,\"2274\":null,\"2275\":null,\"2276\":null,\"2277\":null,\"2278\":null,\"2279\":null,\"2280\":null,\"2281\":null,\"2282\":null,\"2283\":null,\"2284\":null,\"2285\":null,\"2286\":null,\"2287\":null,\"2288\":null,\"2289\":null,\"2290\":null,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":null,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":null,\"2311\":null,\"2312\":null,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":null,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":null,\"2323\":null,\"2324\":null,\"2325\":null,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":null,\"2337\":null,\"2338\":null,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":null,\"2343\":null,\"2344\":null,\"2345\":null,\"2346\":null,\"2347\":null,\"2348\":null,\"2349\":null,\"2350\":null,\"2351\":null,\"2352\":null,\"2353\":null,\"2354\":null,\"2355\":null,\"2356\":null,\"2357\":null,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":null,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":null,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":null,\"2411\":null,\"2412\":null,\"2413\":null,\"2414\":null,\"2415\":null,\"2416\":null,\"2417\":null,\"2418\":null,\"2419\":null,\"2420\":null,\"2421\":null,\"2422\":null,\"2423\":null,\"2424\":null,\"2425\":null,\"2426\":null,\"2427\":null,\"2428\":null,\"2429\":null,\"2430\":null,\"2431\":null,\"2432\":null,\"2433\":null,\"2434\":null,\"2435\":null,\"2436\":null,\"2437\":null,\"2438\":null,\"2439\":null,\"2440\":null,\"2441\":null,\"2442\":null,\"2443\":null,\"2444\":null,\"2445\":null,\"2446\":null,\"2447\":null,\"2448\":null,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":null,\"2455\":null,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":null,\"2464\":null,\"2465\":null,\"2466\":null,\"2467\":null,\"2468\":null,\"2469\":null,\"2470\":null,\"2471\":null,\"2472\":null,\"2473\":null,\"2474\":null,\"2475\":null,\"2476\":null,\"2477\":null,\"2478\":null,\"2479\":null,\"2480\":null,\"2481\":null,\"2482\":null,\"2483\":null,\"2484\":null,\"2485\":null,\"2486\":null,\"2487\":null,\"2488\":null,\"2489\":null,\"2490\":null,\"2491\":null,\"2492\":null,\"2493\":null,\"2494\":null,\"2495\":null,\"2496\":null,\"2497\":null,\"2498\":null,\"2499\":null,\"2500\":null,\"2501\":null,\"2502\":null,\"2503\":null,\"2504\":null,\"2505\":null,\"2506\":null,\"2507\":null,\"2508\":null,\"2509\":null,\"2510\":null,\"2511\":null,\"2512\":null,\"2513\":null,\"2514\":null,\"2515\":null,\"2516\":null,\"2517\":null,\"2518\":null,\"2519\":null,\"2520\":null,\"2521\":null,\"2522\":null,\"2523\":null,\"2524\":null,\"2525\":null,\"2526\":null,\"2527\":null,\"2528\":null,\"2529\":null,\"2530\":null,\"2531\":null,\"2532\":null,\"2533\":null,\"2534\":null,\"2535\":null,\"2536\":null,\"2537\":null,\"2538\":null,\"2539\":null,\"2540\":null,\"2541\":null,\"2542\":null,\"2543\":null,\"2544\":null,\"2545\":null,\"2546\":null,\"2547\":null,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":null,\"2553\":null,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":null,\"2558\":null,\"2559\":null,\"2560\":null,\"2561\":null,\"2562\":null,\"2563\":null,\"2564\":null,\"2565\":null,\"2566\":null,\"2567\":null,\"2568\":null,\"2569\":null,\"2570\":null,\"2571\":null,\"2572\":null,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":null,\"2602\":null,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":null,\"2613\":null,\"2614\":null,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":null,\"2652\":null,\"2653\":null,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":null,\"2658\":null,\"2659\":null,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":null,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":null,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":null,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":null,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":null,\"2717\":null,\"2718\":null,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":null,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":null,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":null,\"2749\":null,\"2750\":null,\"2751\":null,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":null,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":null,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":null,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":null,\"2839\":null,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":null,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":null,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":null,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":null,\"2906\":null,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":null,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":null,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":null,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":null,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":null,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":null,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":null,\"3060\":null,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":null,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":null,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":null,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":null,\"3094\":null,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":null,\"3100\":null,\"3101\":null,\"3102\":null,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":null,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":null,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":null,\"3145\":null,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":null,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":null,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":null,\"3175\":null,\"3176\":null,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":null,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":null,\"3191\":null,\"3192\":null,\"3193\":null,\"3194\":null,\"3195\":null,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":null,\"3245\":null,\"3246\":null,\"3247\":null,\"3248\":null,\"3249\":null,\"3250\":null,\"3251\":null,\"3252\":null,\"3253\":null,\"3254\":null,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":null,\"3259\":null,\"3260\":null,\"3261\":null,\"3262\":null,\"3263\":null,\"3264\":null,\"3265\":null,\"3266\":null,\"3267\":null,\"3268\":null,\"3269\":null,\"3270\":null,\"3271\":null,\"3272\":null,\"3273\":null,\"3274\":null,\"3275\":null,\"3276\":null,\"3277\":null,\"3278\":null,\"3279\":null,\"3280\":null,\"3281\":null,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":null,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":null,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":null,\"3323\":null,\"3324\":null,\"3325\":null,\"3326\":null,\"3327\":null,\"3328\":null,\"3329\":null,\"3330\":null,\"3331\":null,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":null,\"3363\":null,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":null,\"3401\":null,\"3402\":null,\"3403\":null,\"3404\":null,\"3405\":null,\"3406\":null,\"3407\":null,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":null,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":null,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":null,\"3473\":null,\"3474\":null,\"3475\":null,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":null,\"3561\":null,\"3562\":null,\"3563\":null,\"3564\":null,\"3565\":null,\"3566\":null,\"3567\":null,\"3568\":null,\"3569\":null,\"3570\":null,\"3571\":null,\"3572\":null,\"3573\":null,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":null,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":null,\"3591\":null,\"3592\":null,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":null,\"3625\":null,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":null,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":null,\"3647\":null,\"3648\":null,\"3649\":null,\"3650\":null,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":null,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":null,\"3674\":null,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":null,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":null,\"3695\":null,\"3696\":null,\"3697\":null,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":null,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":null,\"3717\":null,\"3718\":null,\"3719\":null,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":null,\"3730\":null,\"3731\":null,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":null,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":null,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":null,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":null,\"3765\":null,\"3766\":null,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":null,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":null,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":null,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":null,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":null,\"3886\":null,\"3887\":null,\"3888\":null,\"3889\":null,\"3890\":null,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":null,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":null,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":null,\"3941\":null,\"3942\":null,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":null,\"3957\":null,\"3958\":null,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":null,\"3963\":null,\"3964\":null,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":null,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":null,\"4031\":null,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":null,\"4051\":null,\"4052\":null,\"4053\":null,\"4054\":null,\"4055\":null,\"4056\":null,\"4057\":null,\"4058\":null,\"4059\":null,\"4060\":null,\"4061\":null,\"4062\":null,\"4063\":null,\"4064\":null,\"4065\":null,\"4066\":null,\"4067\":null,\"4068\":null,\"4069\":null,\"4070\":null,\"4071\":null,\"4072\":null,\"4073\":null,\"4074\":null,\"4075\":null,\"4076\":null,\"4077\":null,\"4078\":null,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":null,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":null,\"4103\":null,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":null,\"4111\":null,\"4112\":null,\"4113\":null,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":null,\"4120\":null,\"4121\":null,\"4122\":null,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":null,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":null,\"4154\":null,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":null,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":null,\"4170\":null,\"4171\":null,\"4172\":null,\"4173\":null,\"4174\":null,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":null,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":null,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":null,\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":null,\"4237\":null,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":null,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":null,\"4274\":null,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":null,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":null,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":null,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":null,\"4323\":null,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":null,\"4390\":null,\"4391\":null,\"4392\":null,\"4393\":null,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":null,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":null,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":null,\"4427\":null,\"4428\":null,\"4429\":null,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":null,\"4451\":null,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":null,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":null,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":null,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":null,\"4510\":null,\"4511\":null,\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":null,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":null,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":null,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":null,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":null,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":null,\"4618\":null,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":null,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":null,\"4633\":null,\"4634\":null,\"4635\":null,\"4636\":null,\"4637\":null,\"4638\":null,\"4639\":null,\"4640\":null,\"4641\":null,\"4642\":null,\"4643\":null,\"4644\":null,\"4645\":null,\"4646\":null,\"4647\":null,\"4648\":null,\"4649\":null,\"4650\":null,\"4651\":null,\"4652\":null,\"4653\":null,\"4654\":null,\"4655\":null,\"4656\":null,\"4657\":null,\"4658\":null,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":null,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":null,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":null,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":null,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":null,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":null,\"4748\":null,\"4749\":null,\"4750\":null,\"4751\":null,\"4752\":null,\"4753\":null,\"4754\":null,\"4755\":null,\"4756\":null,\"4757\":null,\"4758\":null,\"4759\":null,\"4760\":null,\"4761\":null,\"4762\":null,\"4763\":null,\"4764\":null,\"4765\":null,\"4766\":null,\"4767\":null,\"4768\":null,\"4769\":null,\"4770\":null,\"4771\":null,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":null,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":null,\"4829\":null,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":null,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":null,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":null,\"4915\":null,\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":null,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":null,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":null,\"4941\":null,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":null,\"4949\":null,\"4950\":null,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":null,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":null,\"4975\":null,\"4976\":null,\"4977\":null,\"4978\":null,\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":null,\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":null,\"4993\":null,\"4994\":null,\"4995\":null,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"is_quote_status\":{\"0\":false,\"1\":false,\"2\":false,\"3\":false,\"4\":false,\"5\":false,\"6\":false,\"7\":false,\"8\":false,\"9\":false,\"10\":false,\"11\":false,\"12\":false,\"13\":false,\"14\":false,\"15\":false,\"16\":false,\"17\":false,\"18\":false,\"19\":false,\"20\":false,\"21\":false,\"22\":false,\"23\":false,\"24\":false,\"25\":false,\"26\":false,\"27\":false,\"28\":false,\"29\":false,\"30\":false,\"31\":false,\"32\":false,\"33\":true,\"34\":false,\"35\":false,\"36\":true,\"37\":false,\"38\":false,\"39\":false,\"40\":false,\"41\":false,\"42\":false,\"43\":false,\"44\":false,\"45\":false,\"46\":false,\"47\":false,\"48\":false,\"49\":false,\"50\":false,\"51\":false,\"52\":false,\"53\":false,\"54\":false,\"55\":false,\"56\":false,\"57\":false,\"58\":false,\"59\":false,\"60\":true,\"61\":true,\"62\":false,\"63\":false,\"64\":false,\"65\":false,\"66\":false,\"67\":false,\"68\":false,\"69\":false,\"70\":false,\"71\":false,\"72\":false,\"73\":false,\"74\":false,\"75\":true,\"76\":false,\"77\":false,\"78\":false,\"79\":false,\"80\":false,\"81\":false,\"82\":false,\"83\":false,\"84\":false,\"85\":false,\"86\":false,\"87\":true,\"88\":false,\"89\":true,\"90\":true,\"91\":false,\"92\":false,\"93\":false,\"94\":false,\"95\":false,\"96\":false,\"97\":false,\"98\":false,\"99\":false,\"100\":false,\"101\":false,\"102\":false,\"103\":false,\"104\":false,\"105\":false,\"106\":false,\"107\":false,\"108\":false,\"109\":false,\"110\":false,\"111\":false,\"112\":true,\"113\":true,\"114\":false,\"115\":false,\"116\":false,\"117\":false,\"118\":false,\"119\":false,\"120\":false,\"121\":false,\"122\":false,\"123\":false,\"124\":false,\"125\":false,\"126\":false,\"127\":false,\"128\":false,\"129\":false,\"130\":false,\"131\":false,\"132\":false,\"133\":false,\"134\":false,\"135\":false,\"136\":false,\"137\":false,\"138\":true,\"139\":false,\"140\":false,\"141\":false,\"142\":false,\"143\":false,\"144\":false,\"145\":false,\"146\":false,\"147\":false,\"148\":false,\"149\":false,\"150\":false,\"151\":false,\"152\":false,\"153\":false,\"154\":false,\"155\":false,\"156\":false,\"157\":false,\"158\":false,\"159\":false,\"160\":false,\"161\":false,\"162\":false,\"163\":false,\"164\":false,\"165\":false,\"166\":false,\"167\":false,\"168\":false,\"169\":false,\"170\":false,\"171\":false,\"172\":false,\"173\":false,\"174\":false,\"175\":true,\"176\":false,\"177\":false,\"178\":false,\"179\":false,\"180\":false,\"181\":false,\"182\":false,\"183\":false,\"184\":false,\"185\":false,\"186\":false,\"187\":false,\"188\":false,\"189\":false,\"190\":false,\"191\":false,\"192\":false,\"193\":false,\"194\":false,\"195\":false,\"196\":false,\"197\":false,\"198\":false,\"199\":false,\"200\":false,\"201\":false,\"202\":false,\"203\":false,\"204\":false,\"205\":false,\"206\":false,\"207\":false,\"208\":false,\"209\":false,\"210\":false,\"211\":false,\"212\":false,\"213\":false,\"214\":false,\"215\":false,\"216\":false,\"217\":false,\"218\":false,\"219\":false,\"220\":false,\"221\":true,\"222\":false,\"223\":false,\"224\":false,\"225\":false,\"226\":false,\"227\":false,\"228\":false,\"229\":false,\"230\":false,\"231\":false,\"232\":false,\"233\":false,\"234\":false,\"235\":false,\"236\":false,\"237\":false,\"238\":false,\"239\":false,\"240\":false,\"241\":false,\"242\":false,\"243\":false,\"244\":false,\"245\":false,\"246\":false,\"247\":false,\"248\":false,\"249\":false,\"250\":false,\"251\":false,\"252\":false,\"253\":false,\"254\":false,\"255\":false,\"256\":false,\"257\":false,\"258\":false,\"259\":false,\"260\":false,\"261\":false,\"262\":false,\"263\":false,\"264\":false,\"265\":false,\"266\":false,\"267\":false,\"268\":false,\"269\":false,\"270\":false,\"271\":false,\"272\":false,\"273\":false,\"274\":false,\"275\":false,\"276\":false,\"277\":false,\"278\":false,\"279\":false,\"280\":false,\"281\":false,\"282\":false,\"283\":false,\"284\":false,\"285\":false,\"286\":false,\"287\":false,\"288\":false,\"289\":false,\"290\":true,\"291\":false,\"292\":false,\"293\":false,\"294\":false,\"295\":false,\"296\":false,\"297\":false,\"298\":false,\"299\":false,\"300\":false,\"301\":false,\"302\":false,\"303\":false,\"304\":false,\"305\":false,\"306\":true,\"307\":false,\"308\":false,\"309\":false,\"310\":false,\"311\":false,\"312\":false,\"313\":false,\"314\":false,\"315\":false,\"316\":false,\"317\":false,\"318\":false,\"319\":false,\"320\":false,\"321\":false,\"322\":false,\"323\":false,\"324\":false,\"325\":false,\"326\":false,\"327\":false,\"328\":false,\"329\":false,\"330\":false,\"331\":false,\"332\":false,\"333\":false,\"334\":false,\"335\":false,\"336\":false,\"337\":false,\"338\":false,\"339\":false,\"340\":false,\"341\":false,\"342\":false,\"343\":false,\"344\":false,\"345\":false,\"346\":false,\"347\":false,\"348\":false,\"349\":false,\"350\":false,\"351\":false,\"352\":false,\"353\":false,\"354\":false,\"355\":false,\"356\":false,\"357\":false,\"358\":false,\"359\":false,\"360\":false,\"361\":false,\"362\":false,\"363\":false,\"364\":false,\"365\":false,\"366\":false,\"367\":false,\"368\":false,\"369\":false,\"370\":false,\"371\":false,\"372\":false,\"373\":false,\"374\":false,\"375\":true,\"376\":false,\"377\":false,\"378\":false,\"379\":false,\"380\":true,\"381\":false,\"382\":false,\"383\":false,\"384\":false,\"385\":false,\"386\":false,\"387\":false,\"388\":false,\"389\":true,\"390\":false,\"391\":false,\"392\":false,\"393\":false,\"394\":false,\"395\":false,\"396\":false,\"397\":false,\"398\":false,\"399\":false,\"400\":false,\"401\":false,\"402\":false,\"403\":false,\"404\":false,\"405\":false,\"406\":false,\"407\":false,\"408\":false,\"409\":false,\"410\":false,\"411\":false,\"412\":false,\"413\":false,\"414\":false,\"415\":false,\"416\":false,\"417\":false,\"418\":false,\"419\":false,\"420\":false,\"421\":false,\"422\":false,\"423\":false,\"424\":false,\"425\":false,\"426\":false,\"427\":false,\"428\":false,\"429\":false,\"430\":false,\"431\":false,\"432\":false,\"433\":false,\"434\":false,\"435\":false,\"436\":false,\"437\":false,\"438\":false,\"439\":false,\"440\":false,\"441\":false,\"442\":false,\"443\":false,\"444\":false,\"445\":false,\"446\":false,\"447\":false,\"448\":false,\"449\":false,\"450\":false,\"451\":false,\"452\":false,\"453\":false,\"454\":false,\"455\":false,\"456\":false,\"457\":false,\"458\":false,\"459\":false,\"460\":false,\"461\":false,\"462\":false,\"463\":false,\"464\":false,\"465\":false,\"466\":false,\"467\":false,\"468\":false,\"469\":false,\"470\":false,\"471\":false,\"472\":false,\"473\":false,\"474\":false,\"475\":false,\"476\":false,\"477\":false,\"478\":false,\"479\":false,\"480\":false,\"481\":false,\"482\":false,\"483\":false,\"484\":false,\"485\":false,\"486\":false,\"487\":false,\"488\":false,\"489\":false,\"490\":false,\"491\":false,\"492\":false,\"493\":false,\"494\":false,\"495\":false,\"496\":false,\"497\":false,\"498\":false,\"499\":false,\"500\":false,\"501\":false,\"502\":false,\"503\":false,\"504\":false,\"505\":false,\"506\":false,\"507\":false,\"508\":false,\"509\":false,\"510\":false,\"511\":false,\"512\":false,\"513\":false,\"514\":false,\"515\":false,\"516\":false,\"517\":false,\"518\":false,\"519\":false,\"520\":false,\"521\":false,\"522\":false,\"523\":false,\"524\":false,\"525\":false,\"526\":false,\"527\":false,\"528\":false,\"529\":false,\"530\":false,\"531\":false,\"532\":false,\"533\":false,\"534\":false,\"535\":false,\"536\":false,\"537\":false,\"538\":false,\"539\":false,\"540\":false,\"541\":false,\"542\":false,\"543\":false,\"544\":false,\"545\":false,\"546\":true,\"547\":false,\"548\":false,\"549\":false,\"550\":false,\"551\":false,\"552\":false,\"553\":false,\"554\":false,\"555\":false,\"556\":false,\"557\":false,\"558\":false,\"559\":false,\"560\":false,\"561\":false,\"562\":false,\"563\":false,\"564\":false,\"565\":false,\"566\":false,\"567\":false,\"568\":false,\"569\":false,\"570\":false,\"571\":false,\"572\":false,\"573\":false,\"574\":false,\"575\":false,\"576\":false,\"577\":false,\"578\":false,\"579\":false,\"580\":false,\"581\":false,\"582\":false,\"583\":false,\"584\":false,\"585\":false,\"586\":false,\"587\":false,\"588\":false,\"589\":false,\"590\":false,\"591\":false,\"592\":false,\"593\":false,\"594\":false,\"595\":false,\"596\":false,\"597\":false,\"598\":false,\"599\":false,\"600\":true,\"601\":false,\"602\":true,\"603\":false,\"604\":false,\"605\":false,\"606\":false,\"607\":false,\"608\":false,\"609\":false,\"610\":false,\"611\":false,\"612\":false,\"613\":false,\"614\":false,\"615\":false,\"616\":false,\"617\":false,\"618\":false,\"619\":false,\"620\":false,\"621\":false,\"622\":false,\"623\":false,\"624\":false,\"625\":false,\"626\":false,\"627\":false,\"628\":false,\"629\":false,\"630\":false,\"631\":false,\"632\":false,\"633\":false,\"634\":false,\"635\":true,\"636\":false,\"637\":false,\"638\":false,\"639\":false,\"640\":false,\"641\":false,\"642\":false,\"643\":false,\"644\":false,\"645\":false,\"646\":false,\"647\":false,\"648\":false,\"649\":false,\"650\":false,\"651\":false,\"652\":false,\"653\":false,\"654\":false,\"655\":false,\"656\":true,\"657\":false,\"658\":false,\"659\":true,\"660\":false,\"661\":false,\"662\":false,\"663\":false,\"664\":false,\"665\":false,\"666\":false,\"667\":false,\"668\":true,\"669\":false,\"670\":false,\"671\":false,\"672\":false,\"673\":false,\"674\":false,\"675\":false,\"676\":false,\"677\":false,\"678\":false,\"679\":false,\"680\":false,\"681\":false,\"682\":false,\"683\":false,\"684\":false,\"685\":false,\"686\":false,\"687\":false,\"688\":false,\"689\":false,\"690\":false,\"691\":false,\"692\":false,\"693\":false,\"694\":false,\"695\":false,\"696\":false,\"697\":false,\"698\":false,\"699\":false,\"700\":false,\"701\":false,\"702\":false,\"703\":false,\"704\":true,\"705\":false,\"706\":false,\"707\":false,\"708\":false,\"709\":false,\"710\":true,\"711\":true,\"712\":false,\"713\":false,\"714\":false,\"715\":false,\"716\":false,\"717\":false,\"718\":false,\"719\":false,\"720\":false,\"721\":true,\"722\":false,\"723\":false,\"724\":false,\"725\":true,\"726\":false,\"727\":false,\"728\":false,\"729\":false,\"730\":false,\"731\":false,\"732\":false,\"733\":false,\"734\":false,\"735\":false,\"736\":false,\"737\":false,\"738\":false,\"739\":false,\"740\":false,\"741\":false,\"742\":false,\"743\":false,\"744\":true,\"745\":false,\"746\":false,\"747\":false,\"748\":false,\"749\":false,\"750\":false,\"751\":false,\"752\":false,\"753\":false,\"754\":false,\"755\":false,\"756\":false,\"757\":false,\"758\":false,\"759\":false,\"760\":false,\"761\":false,\"762\":false,\"763\":false,\"764\":false,\"765\":false,\"766\":false,\"767\":false,\"768\":false,\"769\":false,\"770\":false,\"771\":false,\"772\":false,\"773\":false,\"774\":false,\"775\":false,\"776\":false,\"777\":false,\"778\":false,\"779\":false,\"780\":false,\"781\":false,\"782\":false,\"783\":false,\"784\":false,\"785\":false,\"786\":false,\"787\":false,\"788\":false,\"789\":false,\"790\":false,\"791\":false,\"792\":false,\"793\":false,\"794\":false,\"795\":false,\"796\":false,\"797\":false,\"798\":false,\"799\":false,\"800\":false,\"801\":false,\"802\":false,\"803\":false,\"804\":false,\"805\":false,\"806\":false,\"807\":false,\"808\":false,\"809\":false,\"810\":false,\"811\":false,\"812\":false,\"813\":false,\"814\":false,\"815\":false,\"816\":false,\"817\":false,\"818\":false,\"819\":false,\"820\":false,\"821\":false,\"822\":false,\"823\":false,\"824\":false,\"825\":false,\"826\":false,\"827\":false,\"828\":false,\"829\":false,\"830\":false,\"831\":false,\"832\":false,\"833\":false,\"834\":false,\"835\":true,\"836\":false,\"837\":false,\"838\":false,\"839\":true,\"840\":false,\"841\":false,\"842\":false,\"843\":false,\"844\":false,\"845\":false,\"846\":false,\"847\":false,\"848\":false,\"849\":false,\"850\":false,\"851\":false,\"852\":false,\"853\":false,\"854\":false,\"855\":false,\"856\":false,\"857\":false,\"858\":false,\"859\":false,\"860\":false,\"861\":false,\"862\":false,\"863\":false,\"864\":false,\"865\":false,\"866\":false,\"867\":false,\"868\":false,\"869\":false,\"870\":false,\"871\":false,\"872\":false,\"873\":false,\"874\":false,\"875\":false,\"876\":true,\"877\":false,\"878\":false,\"879\":false,\"880\":false,\"881\":false,\"882\":false,\"883\":false,\"884\":false,\"885\":false,\"886\":false,\"887\":false,\"888\":false,\"889\":false,\"890\":false,\"891\":false,\"892\":false,\"893\":false,\"894\":false,\"895\":false,\"896\":false,\"897\":false,\"898\":true,\"899\":false,\"900\":false,\"901\":false,\"902\":false,\"903\":false,\"904\":false,\"905\":false,\"906\":false,\"907\":false,\"908\":false,\"909\":false,\"910\":false,\"911\":false,\"912\":false,\"913\":false,\"914\":false,\"915\":false,\"916\":false,\"917\":false,\"918\":false,\"919\":false,\"920\":false,\"921\":false,\"922\":false,\"923\":false,\"924\":false,\"925\":false,\"926\":false,\"927\":false,\"928\":false,\"929\":false,\"930\":false,\"931\":false,\"932\":false,\"933\":false,\"934\":false,\"935\":false,\"936\":false,\"937\":false,\"938\":false,\"939\":false,\"940\":false,\"941\":false,\"942\":false,\"943\":false,\"944\":false,\"945\":false,\"946\":false,\"947\":false,\"948\":false,\"949\":false,\"950\":false,\"951\":false,\"952\":false,\"953\":false,\"954\":false,\"955\":false,\"956\":false,\"957\":false,\"958\":false,\"959\":false,\"960\":false,\"961\":false,\"962\":false,\"963\":false,\"964\":false,\"965\":true,\"966\":false,\"967\":true,\"968\":false,\"969\":false,\"970\":false,\"971\":false,\"972\":false,\"973\":false,\"974\":false,\"975\":false,\"976\":false,\"977\":false,\"978\":false,\"979\":false,\"980\":false,\"981\":false,\"982\":false,\"983\":false,\"984\":false,\"985\":false,\"986\":false,\"987\":false,\"988\":false,\"989\":false,\"990\":false,\"991\":false,\"992\":false,\"993\":false,\"994\":false,\"995\":false,\"996\":false,\"997\":false,\"998\":false,\"999\":false,\"1000\":false,\"1001\":false,\"1002\":false,\"1003\":false,\"1004\":false,\"1005\":false,\"1006\":false,\"1007\":false,\"1008\":false,\"1009\":false,\"1010\":false,\"1011\":false,\"1012\":false,\"1013\":false,\"1014\":true,\"1015\":false,\"1016\":false,\"1017\":false,\"1018\":false,\"1019\":false,\"1020\":false,\"1021\":false,\"1022\":false,\"1023\":false,\"1024\":false,\"1025\":false,\"1026\":false,\"1027\":false,\"1028\":false,\"1029\":false,\"1030\":false,\"1031\":false,\"1032\":false,\"1033\":false,\"1034\":false,\"1035\":false,\"1036\":false,\"1037\":false,\"1038\":false,\"1039\":false,\"1040\":false,\"1041\":false,\"1042\":false,\"1043\":false,\"1044\":true,\"1045\":false,\"1046\":false,\"1047\":false,\"1048\":false,\"1049\":false,\"1050\":false,\"1051\":false,\"1052\":false,\"1053\":false,\"1054\":false,\"1055\":false,\"1056\":false,\"1057\":false,\"1058\":false,\"1059\":false,\"1060\":false,\"1061\":false,\"1062\":false,\"1063\":false,\"1064\":false,\"1065\":false,\"1066\":false,\"1067\":false,\"1068\":false,\"1069\":false,\"1070\":false,\"1071\":true,\"1072\":true,\"1073\":false,\"1074\":false,\"1075\":false,\"1076\":true,\"1077\":false,\"1078\":false,\"1079\":false,\"1080\":false,\"1081\":false,\"1082\":false,\"1083\":false,\"1084\":false,\"1085\":false,\"1086\":false,\"1087\":false,\"1088\":false,\"1089\":false,\"1090\":false,\"1091\":false,\"1092\":true,\"1093\":false,\"1094\":false,\"1095\":false,\"1096\":false,\"1097\":false,\"1098\":false,\"1099\":false,\"1100\":false,\"1101\":false,\"1102\":false,\"1103\":false,\"1104\":false,\"1105\":false,\"1106\":false,\"1107\":false,\"1108\":false,\"1109\":false,\"1110\":false,\"1111\":false,\"1112\":false,\"1113\":false,\"1114\":false,\"1115\":false,\"1116\":false,\"1117\":false,\"1118\":false,\"1119\":false,\"1120\":false,\"1121\":false,\"1122\":false,\"1123\":false,\"1124\":false,\"1125\":false,\"1126\":false,\"1127\":false,\"1128\":false,\"1129\":false,\"1130\":true,\"1131\":false,\"1132\":false,\"1133\":false,\"1134\":false,\"1135\":false,\"1136\":false,\"1137\":false,\"1138\":false,\"1139\":false,\"1140\":false,\"1141\":false,\"1142\":false,\"1143\":false,\"1144\":false,\"1145\":false,\"1146\":false,\"1147\":false,\"1148\":false,\"1149\":false,\"1150\":false,\"1151\":false,\"1152\":false,\"1153\":false,\"1154\":false,\"1155\":false,\"1156\":false,\"1157\":false,\"1158\":false,\"1159\":false,\"1160\":false,\"1161\":false,\"1162\":false,\"1163\":false,\"1164\":false,\"1165\":false,\"1166\":false,\"1167\":false,\"1168\":false,\"1169\":false,\"1170\":false,\"1171\":false,\"1172\":false,\"1173\":false,\"1174\":false,\"1175\":false,\"1176\":false,\"1177\":false,\"1178\":false,\"1179\":false,\"1180\":false,\"1181\":false,\"1182\":false,\"1183\":false,\"1184\":false,\"1185\":false,\"1186\":false,\"1187\":false,\"1188\":false,\"1189\":false,\"1190\":true,\"1191\":false,\"1192\":false,\"1193\":false,\"1194\":false,\"1195\":false,\"1196\":false,\"1197\":false,\"1198\":false,\"1199\":false,\"1200\":false,\"1201\":false,\"1202\":false,\"1203\":false,\"1204\":false,\"1205\":false,\"1206\":false,\"1207\":false,\"1208\":false,\"1209\":false,\"1210\":false,\"1211\":false,\"1212\":false,\"1213\":false,\"1214\":false,\"1215\":false,\"1216\":false,\"1217\":false,\"1218\":false,\"1219\":false,\"1220\":false,\"1221\":false,\"1222\":false,\"1223\":false,\"1224\":false,\"1225\":false,\"1226\":false,\"1227\":false,\"1228\":false,\"1229\":false,\"1230\":false,\"1231\":false,\"1232\":false,\"1233\":false,\"1234\":false,\"1235\":false,\"1236\":false,\"1237\":false,\"1238\":false,\"1239\":false,\"1240\":false,\"1241\":false,\"1242\":false,\"1243\":false,\"1244\":false,\"1245\":false,\"1246\":false,\"1247\":false,\"1248\":false,\"1249\":false,\"1250\":false,\"1251\":false,\"1252\":false,\"1253\":false,\"1254\":false,\"1255\":false,\"1256\":false,\"1257\":false,\"1258\":false,\"1259\":false,\"1260\":false,\"1261\":false,\"1262\":false,\"1263\":false,\"1264\":false,\"1265\":false,\"1266\":false,\"1267\":false,\"1268\":false,\"1269\":false,\"1270\":false,\"1271\":false,\"1272\":false,\"1273\":true,\"1274\":false,\"1275\":false,\"1276\":false,\"1277\":false,\"1278\":false,\"1279\":false,\"1280\":false,\"1281\":false,\"1282\":false,\"1283\":false,\"1284\":false,\"1285\":false,\"1286\":false,\"1287\":false,\"1288\":false,\"1289\":false,\"1290\":false,\"1291\":false,\"1292\":false,\"1293\":false,\"1294\":false,\"1295\":false,\"1296\":false,\"1297\":false,\"1298\":false,\"1299\":false,\"1300\":false,\"1301\":false,\"1302\":false,\"1303\":false,\"1304\":false,\"1305\":false,\"1306\":false,\"1307\":false,\"1308\":false,\"1309\":false,\"1310\":false,\"1311\":false,\"1312\":false,\"1313\":false,\"1314\":false,\"1315\":false,\"1316\":false,\"1317\":false,\"1318\":false,\"1319\":false,\"1320\":false,\"1321\":false,\"1322\":false,\"1323\":false,\"1324\":false,\"1325\":false,\"1326\":false,\"1327\":false,\"1328\":false,\"1329\":false,\"1330\":false,\"1331\":false,\"1332\":false,\"1333\":false,\"1334\":false,\"1335\":false,\"1336\":true,\"1337\":false,\"1338\":false,\"1339\":false,\"1340\":false,\"1341\":true,\"1342\":false,\"1343\":false,\"1344\":false,\"1345\":false,\"1346\":false,\"1347\":false,\"1348\":false,\"1349\":false,\"1350\":false,\"1351\":false,\"1352\":false,\"1353\":false,\"1354\":false,\"1355\":true,\"1356\":false,\"1357\":false,\"1358\":false,\"1359\":false,\"1360\":false,\"1361\":false,\"1362\":false,\"1363\":false,\"1364\":false,\"1365\":false,\"1366\":false,\"1367\":false,\"1368\":false,\"1369\":false,\"1370\":false,\"1371\":false,\"1372\":false,\"1373\":false,\"1374\":false,\"1375\":false,\"1376\":false,\"1377\":false,\"1378\":false,\"1379\":false,\"1380\":false,\"1381\":false,\"1382\":false,\"1383\":false,\"1384\":false,\"1385\":false,\"1386\":false,\"1387\":false,\"1388\":false,\"1389\":false,\"1390\":false,\"1391\":false,\"1392\":false,\"1393\":false,\"1394\":false,\"1395\":false,\"1396\":false,\"1397\":false,\"1398\":false,\"1399\":false,\"1400\":false,\"1401\":false,\"1402\":false,\"1403\":false,\"1404\":false,\"1405\":false,\"1406\":false,\"1407\":false,\"1408\":false,\"1409\":false,\"1410\":false,\"1411\":false,\"1412\":false,\"1413\":false,\"1414\":false,\"1415\":false,\"1416\":false,\"1417\":false,\"1418\":false,\"1419\":false,\"1420\":false,\"1421\":false,\"1422\":false,\"1423\":false,\"1424\":false,\"1425\":false,\"1426\":false,\"1427\":false,\"1428\":false,\"1429\":false,\"1430\":false,\"1431\":false,\"1432\":false,\"1433\":false,\"1434\":false,\"1435\":false,\"1436\":false,\"1437\":false,\"1438\":true,\"1439\":false,\"1440\":false,\"1441\":false,\"1442\":false,\"1443\":false,\"1444\":false,\"1445\":false,\"1446\":false,\"1447\":false,\"1448\":false,\"1449\":false,\"1450\":false,\"1451\":false,\"1452\":false,\"1453\":false,\"1454\":false,\"1455\":false,\"1456\":false,\"1457\":false,\"1458\":false,\"1459\":false,\"1460\":false,\"1461\":false,\"1462\":false,\"1463\":false,\"1464\":false,\"1465\":false,\"1466\":false,\"1467\":false,\"1468\":false,\"1469\":false,\"1470\":false,\"1471\":false,\"1472\":false,\"1473\":false,\"1474\":false,\"1475\":false,\"1476\":false,\"1477\":false,\"1478\":false,\"1479\":false,\"1480\":false,\"1481\":false,\"1482\":false,\"1483\":false,\"1484\":false,\"1485\":false,\"1486\":false,\"1487\":false,\"1488\":false,\"1489\":true,\"1490\":true,\"1491\":false,\"1492\":false,\"1493\":false,\"1494\":false,\"1495\":false,\"1496\":false,\"1497\":false,\"1498\":true,\"1499\":false,\"1500\":false,\"1501\":false,\"1502\":false,\"1503\":false,\"1504\":false,\"1505\":false,\"1506\":false,\"1507\":false,\"1508\":false,\"1509\":false,\"1510\":false,\"1511\":false,\"1512\":false,\"1513\":false,\"1514\":false,\"1515\":false,\"1516\":false,\"1517\":false,\"1518\":false,\"1519\":false,\"1520\":false,\"1521\":false,\"1522\":false,\"1523\":false,\"1524\":false,\"1525\":false,\"1526\":false,\"1527\":false,\"1528\":true,\"1529\":false,\"1530\":false,\"1531\":false,\"1532\":false,\"1533\":false,\"1534\":false,\"1535\":false,\"1536\":false,\"1537\":false,\"1538\":false,\"1539\":false,\"1540\":false,\"1541\":false,\"1542\":false,\"1543\":false,\"1544\":false,\"1545\":false,\"1546\":false,\"1547\":false,\"1548\":false,\"1549\":false,\"1550\":false,\"1551\":false,\"1552\":false,\"1553\":false,\"1554\":false,\"1555\":true,\"1556\":false,\"1557\":false,\"1558\":false,\"1559\":false,\"1560\":false,\"1561\":false,\"1562\":false,\"1563\":false,\"1564\":false,\"1565\":false,\"1566\":false,\"1567\":false,\"1568\":true,\"1569\":false,\"1570\":false,\"1571\":false,\"1572\":false,\"1573\":false,\"1574\":false,\"1575\":false,\"1576\":false,\"1577\":true,\"1578\":false,\"1579\":false,\"1580\":false,\"1581\":false,\"1582\":false,\"1583\":false,\"1584\":false,\"1585\":false,\"1586\":false,\"1587\":false,\"1588\":false,\"1589\":false,\"1590\":false,\"1591\":false,\"1592\":false,\"1593\":false,\"1594\":false,\"1595\":false,\"1596\":false,\"1597\":false,\"1598\":false,\"1599\":false,\"1600\":true,\"1601\":false,\"1602\":false,\"1603\":false,\"1604\":false,\"1605\":false,\"1606\":false,\"1607\":false,\"1608\":false,\"1609\":false,\"1610\":false,\"1611\":false,\"1612\":false,\"1613\":false,\"1614\":false,\"1615\":false,\"1616\":false,\"1617\":false,\"1618\":false,\"1619\":false,\"1620\":false,\"1621\":false,\"1622\":false,\"1623\":false,\"1624\":false,\"1625\":false,\"1626\":false,\"1627\":false,\"1628\":false,\"1629\":false,\"1630\":false,\"1631\":false,\"1632\":false,\"1633\":false,\"1634\":false,\"1635\":false,\"1636\":false,\"1637\":false,\"1638\":false,\"1639\":false,\"1640\":false,\"1641\":false,\"1642\":false,\"1643\":false,\"1644\":false,\"1645\":false,\"1646\":false,\"1647\":false,\"1648\":false,\"1649\":false,\"1650\":false,\"1651\":false,\"1652\":false,\"1653\":false,\"1654\":false,\"1655\":false,\"1656\":false,\"1657\":false,\"1658\":false,\"1659\":false,\"1660\":false,\"1661\":false,\"1662\":false,\"1663\":false,\"1664\":false,\"1665\":false,\"1666\":false,\"1667\":false,\"1668\":false,\"1669\":false,\"1670\":false,\"1671\":false,\"1672\":false,\"1673\":false,\"1674\":false,\"1675\":false,\"1676\":true,\"1677\":false,\"1678\":true,\"1679\":false,\"1680\":false,\"1681\":false,\"1682\":false,\"1683\":false,\"1684\":false,\"1685\":false,\"1686\":false,\"1687\":false,\"1688\":false,\"1689\":false,\"1690\":false,\"1691\":false,\"1692\":false,\"1693\":true,\"1694\":false,\"1695\":false,\"1696\":false,\"1697\":false,\"1698\":false,\"1699\":false,\"1700\":false,\"1701\":false,\"1702\":false,\"1703\":false,\"1704\":false,\"1705\":false,\"1706\":false,\"1707\":false,\"1708\":false,\"1709\":false,\"1710\":false,\"1711\":false,\"1712\":false,\"1713\":false,\"1714\":false,\"1715\":false,\"1716\":false,\"1717\":false,\"1718\":false,\"1719\":false,\"1720\":false,\"1721\":false,\"1722\":false,\"1723\":false,\"1724\":false,\"1725\":false,\"1726\":false,\"1727\":false,\"1728\":false,\"1729\":false,\"1730\":false,\"1731\":false,\"1732\":false,\"1733\":false,\"1734\":false,\"1735\":false,\"1736\":false,\"1737\":false,\"1738\":true,\"1739\":false,\"1740\":false,\"1741\":false,\"1742\":false,\"1743\":true,\"1744\":false,\"1745\":false,\"1746\":false,\"1747\":false,\"1748\":false,\"1749\":false,\"1750\":false,\"1751\":false,\"1752\":false,\"1753\":false,\"1754\":false,\"1755\":false,\"1756\":false,\"1757\":false,\"1758\":false,\"1759\":false,\"1760\":false,\"1761\":false,\"1762\":false,\"1763\":false,\"1764\":false,\"1765\":false,\"1766\":false,\"1767\":false,\"1768\":false,\"1769\":false,\"1770\":false,\"1771\":false,\"1772\":false,\"1773\":false,\"1774\":false,\"1775\":false,\"1776\":false,\"1777\":false,\"1778\":false,\"1779\":false,\"1780\":false,\"1781\":false,\"1782\":false,\"1783\":false,\"1784\":false,\"1785\":false,\"1786\":false,\"1787\":false,\"1788\":false,\"1789\":true,\"1790\":false,\"1791\":false,\"1792\":false,\"1793\":false,\"1794\":false,\"1795\":false,\"1796\":false,\"1797\":false,\"1798\":false,\"1799\":false,\"1800\":false,\"1801\":false,\"1802\":false,\"1803\":false,\"1804\":false,\"1805\":false,\"1806\":false,\"1807\":false,\"1808\":false,\"1809\":true,\"1810\":false,\"1811\":false,\"1812\":false,\"1813\":false,\"1814\":false,\"1815\":false,\"1816\":false,\"1817\":false,\"1818\":true,\"1819\":false,\"1820\":false,\"1821\":false,\"1822\":false,\"1823\":false,\"1824\":false,\"1825\":false,\"1826\":false,\"1827\":false,\"1828\":false,\"1829\":false,\"1830\":false,\"1831\":false,\"1832\":false,\"1833\":false,\"1834\":false,\"1835\":false,\"1836\":false,\"1837\":false,\"1838\":false,\"1839\":false,\"1840\":false,\"1841\":false,\"1842\":false,\"1843\":false,\"1844\":false,\"1845\":false,\"1846\":false,\"1847\":false,\"1848\":false,\"1849\":false,\"1850\":true,\"1851\":false,\"1852\":false,\"1853\":false,\"1854\":false,\"1855\":false,\"1856\":false,\"1857\":false,\"1858\":false,\"1859\":false,\"1860\":false,\"1861\":false,\"1862\":false,\"1863\":false,\"1864\":false,\"1865\":false,\"1866\":false,\"1867\":false,\"1868\":false,\"1869\":false,\"1870\":false,\"1871\":false,\"1872\":false,\"1873\":false,\"1874\":false,\"1875\":false,\"1876\":false,\"1877\":false,\"1878\":false,\"1879\":false,\"1880\":false,\"1881\":false,\"1882\":false,\"1883\":false,\"1884\":false,\"1885\":false,\"1886\":true,\"1887\":false,\"1888\":true,\"1889\":false,\"1890\":true,\"1891\":false,\"1892\":false,\"1893\":true,\"1894\":false,\"1895\":false,\"1896\":false,\"1897\":false,\"1898\":false,\"1899\":false,\"1900\":false,\"1901\":false,\"1902\":false,\"1903\":false,\"1904\":false,\"1905\":false,\"1906\":false,\"1907\":false,\"1908\":false,\"1909\":true,\"1910\":false,\"1911\":false,\"1912\":false,\"1913\":false,\"1914\":false,\"1915\":false,\"1916\":false,\"1917\":false,\"1918\":false,\"1919\":false,\"1920\":false,\"1921\":false,\"1922\":false,\"1923\":false,\"1924\":false,\"1925\":false,\"1926\":true,\"1927\":false,\"1928\":false,\"1929\":false,\"1930\":false,\"1931\":false,\"1932\":false,\"1933\":false,\"1934\":false,\"1935\":false,\"1936\":false,\"1937\":false,\"1938\":false,\"1939\":false,\"1940\":false,\"1941\":false,\"1942\":false,\"1943\":false,\"1944\":false,\"1945\":false,\"1946\":false,\"1947\":false,\"1948\":false,\"1949\":false,\"1950\":false,\"1951\":false,\"1952\":false,\"1953\":false,\"1954\":false,\"1955\":true,\"1956\":false,\"1957\":false,\"1958\":false,\"1959\":false,\"1960\":false,\"1961\":false,\"1962\":false,\"1963\":false,\"1964\":false,\"1965\":false,\"1966\":false,\"1967\":false,\"1968\":false,\"1969\":false,\"1970\":false,\"1971\":false,\"1972\":false,\"1973\":false,\"1974\":false,\"1975\":false,\"1976\":false,\"1977\":false,\"1978\":false,\"1979\":false,\"1980\":false,\"1981\":false,\"1982\":false,\"1983\":false,\"1984\":false,\"1985\":false,\"1986\":false,\"1987\":false,\"1988\":false,\"1989\":false,\"1990\":false,\"1991\":false,\"1992\":false,\"1993\":false,\"1994\":false,\"1995\":false,\"1996\":false,\"1997\":false,\"1998\":false,\"1999\":false,\"2000\":false,\"2001\":false,\"2002\":false,\"2003\":false,\"2004\":false,\"2005\":false,\"2006\":false,\"2007\":false,\"2008\":false,\"2009\":false,\"2010\":false,\"2011\":false,\"2012\":false,\"2013\":false,\"2014\":false,\"2015\":false,\"2016\":false,\"2017\":false,\"2018\":false,\"2019\":false,\"2020\":false,\"2021\":false,\"2022\":false,\"2023\":false,\"2024\":false,\"2025\":false,\"2026\":false,\"2027\":false,\"2028\":false,\"2029\":false,\"2030\":false,\"2031\":false,\"2032\":false,\"2033\":false,\"2034\":false,\"2035\":false,\"2036\":false,\"2037\":false,\"2038\":false,\"2039\":false,\"2040\":false,\"2041\":false,\"2042\":false,\"2043\":false,\"2044\":false,\"2045\":false,\"2046\":false,\"2047\":false,\"2048\":false,\"2049\":false,\"2050\":false,\"2051\":false,\"2052\":false,\"2053\":false,\"2054\":false,\"2055\":false,\"2056\":false,\"2057\":false,\"2058\":false,\"2059\":false,\"2060\":false,\"2061\":false,\"2062\":false,\"2063\":false,\"2064\":false,\"2065\":false,\"2066\":false,\"2067\":false,\"2068\":false,\"2069\":false,\"2070\":false,\"2071\":false,\"2072\":false,\"2073\":false,\"2074\":false,\"2075\":false,\"2076\":false,\"2077\":false,\"2078\":false,\"2079\":false,\"2080\":false,\"2081\":false,\"2082\":false,\"2083\":false,\"2084\":false,\"2085\":false,\"2086\":false,\"2087\":false,\"2088\":false,\"2089\":true,\"2090\":false,\"2091\":false,\"2092\":false,\"2093\":false,\"2094\":false,\"2095\":false,\"2096\":false,\"2097\":false,\"2098\":false,\"2099\":false,\"2100\":false,\"2101\":false,\"2102\":false,\"2103\":false,\"2104\":false,\"2105\":false,\"2106\":false,\"2107\":false,\"2108\":false,\"2109\":false,\"2110\":false,\"2111\":false,\"2112\":false,\"2113\":false,\"2114\":false,\"2115\":false,\"2116\":false,\"2117\":false,\"2118\":false,\"2119\":false,\"2120\":false,\"2121\":false,\"2122\":false,\"2123\":false,\"2124\":false,\"2125\":false,\"2126\":false,\"2127\":false,\"2128\":false,\"2129\":false,\"2130\":false,\"2131\":false,\"2132\":false,\"2133\":false,\"2134\":false,\"2135\":false,\"2136\":false,\"2137\":false,\"2138\":false,\"2139\":false,\"2140\":false,\"2141\":false,\"2142\":false,\"2143\":false,\"2144\":false,\"2145\":false,\"2146\":false,\"2147\":false,\"2148\":false,\"2149\":false,\"2150\":false,\"2151\":false,\"2152\":false,\"2153\":false,\"2154\":false,\"2155\":false,\"2156\":false,\"2157\":false,\"2158\":false,\"2159\":false,\"2160\":false,\"2161\":false,\"2162\":false,\"2163\":false,\"2164\":false,\"2165\":false,\"2166\":false,\"2167\":false,\"2168\":false,\"2169\":false,\"2170\":false,\"2171\":false,\"2172\":false,\"2173\":false,\"2174\":false,\"2175\":false,\"2176\":false,\"2177\":false,\"2178\":false,\"2179\":false,\"2180\":false,\"2181\":false,\"2182\":false,\"2183\":false,\"2184\":false,\"2185\":false,\"2186\":false,\"2187\":false,\"2188\":false,\"2189\":false,\"2190\":false,\"2191\":false,\"2192\":false,\"2193\":false,\"2194\":false,\"2195\":false,\"2196\":false,\"2197\":false,\"2198\":false,\"2199\":false,\"2200\":false,\"2201\":false,\"2202\":false,\"2203\":false,\"2204\":false,\"2205\":false,\"2206\":false,\"2207\":false,\"2208\":false,\"2209\":false,\"2210\":false,\"2211\":false,\"2212\":false,\"2213\":false,\"2214\":false,\"2215\":false,\"2216\":false,\"2217\":false,\"2218\":false,\"2219\":false,\"2220\":false,\"2221\":false,\"2222\":false,\"2223\":false,\"2224\":false,\"2225\":false,\"2226\":false,\"2227\":false,\"2228\":false,\"2229\":false,\"2230\":false,\"2231\":false,\"2232\":false,\"2233\":false,\"2234\":false,\"2235\":false,\"2236\":false,\"2237\":false,\"2238\":false,\"2239\":false,\"2240\":false,\"2241\":false,\"2242\":false,\"2243\":false,\"2244\":false,\"2245\":false,\"2246\":false,\"2247\":false,\"2248\":false,\"2249\":false,\"2250\":false,\"2251\":false,\"2252\":false,\"2253\":false,\"2254\":false,\"2255\":false,\"2256\":false,\"2257\":false,\"2258\":false,\"2259\":false,\"2260\":false,\"2261\":false,\"2262\":false,\"2263\":false,\"2264\":false,\"2265\":false,\"2266\":false,\"2267\":false,\"2268\":false,\"2269\":false,\"2270\":false,\"2271\":false,\"2272\":false,\"2273\":false,\"2274\":false,\"2275\":false,\"2276\":false,\"2277\":false,\"2278\":false,\"2279\":false,\"2280\":false,\"2281\":false,\"2282\":false,\"2283\":false,\"2284\":false,\"2285\":false,\"2286\":false,\"2287\":false,\"2288\":false,\"2289\":false,\"2290\":false,\"2291\":false,\"2292\":false,\"2293\":false,\"2294\":false,\"2295\":false,\"2296\":false,\"2297\":false,\"2298\":false,\"2299\":false,\"2300\":false,\"2301\":false,\"2302\":false,\"2303\":false,\"2304\":false,\"2305\":false,\"2306\":false,\"2307\":false,\"2308\":false,\"2309\":false,\"2310\":true,\"2311\":false,\"2312\":false,\"2313\":false,\"2314\":false,\"2315\":false,\"2316\":false,\"2317\":false,\"2318\":false,\"2319\":false,\"2320\":false,\"2321\":false,\"2322\":false,\"2323\":false,\"2324\":false,\"2325\":false,\"2326\":false,\"2327\":false,\"2328\":false,\"2329\":false,\"2330\":false,\"2331\":false,\"2332\":false,\"2333\":false,\"2334\":false,\"2335\":false,\"2336\":false,\"2337\":false,\"2338\":false,\"2339\":false,\"2340\":false,\"2341\":false,\"2342\":false,\"2343\":false,\"2344\":false,\"2345\":false,\"2346\":false,\"2347\":false,\"2348\":false,\"2349\":false,\"2350\":false,\"2351\":false,\"2352\":false,\"2353\":false,\"2354\":false,\"2355\":false,\"2356\":false,\"2357\":false,\"2358\":false,\"2359\":false,\"2360\":false,\"2361\":false,\"2362\":false,\"2363\":false,\"2364\":false,\"2365\":false,\"2366\":false,\"2367\":false,\"2368\":false,\"2369\":false,\"2370\":false,\"2371\":false,\"2372\":false,\"2373\":false,\"2374\":false,\"2375\":false,\"2376\":false,\"2377\":false,\"2378\":false,\"2379\":false,\"2380\":true,\"2381\":false,\"2382\":false,\"2383\":false,\"2384\":false,\"2385\":false,\"2386\":false,\"2387\":false,\"2388\":false,\"2389\":false,\"2390\":false,\"2391\":false,\"2392\":false,\"2393\":false,\"2394\":false,\"2395\":true,\"2396\":false,\"2397\":false,\"2398\":false,\"2399\":false,\"2400\":false,\"2401\":false,\"2402\":false,\"2403\":false,\"2404\":false,\"2405\":false,\"2406\":false,\"2407\":false,\"2408\":false,\"2409\":false,\"2410\":false,\"2411\":false,\"2412\":false,\"2413\":false,\"2414\":false,\"2415\":false,\"2416\":false,\"2417\":false,\"2418\":false,\"2419\":false,\"2420\":false,\"2421\":false,\"2422\":false,\"2423\":false,\"2424\":false,\"2425\":false,\"2426\":false,\"2427\":false,\"2428\":false,\"2429\":false,\"2430\":false,\"2431\":false,\"2432\":false,\"2433\":false,\"2434\":false,\"2435\":false,\"2436\":false,\"2437\":false,\"2438\":false,\"2439\":false,\"2440\":false,\"2441\":false,\"2442\":false,\"2443\":false,\"2444\":false,\"2445\":false,\"2446\":false,\"2447\":false,\"2448\":false,\"2449\":false,\"2450\":false,\"2451\":false,\"2452\":false,\"2453\":false,\"2454\":false,\"2455\":false,\"2456\":false,\"2457\":false,\"2458\":false,\"2459\":false,\"2460\":false,\"2461\":false,\"2462\":false,\"2463\":false,\"2464\":false,\"2465\":false,\"2466\":false,\"2467\":false,\"2468\":false,\"2469\":false,\"2470\":false,\"2471\":false,\"2472\":false,\"2473\":false,\"2474\":false,\"2475\":false,\"2476\":false,\"2477\":false,\"2478\":false,\"2479\":false,\"2480\":false,\"2481\":false,\"2482\":false,\"2483\":false,\"2484\":false,\"2485\":false,\"2486\":false,\"2487\":false,\"2488\":false,\"2489\":false,\"2490\":false,\"2491\":false,\"2492\":false,\"2493\":false,\"2494\":false,\"2495\":false,\"2496\":false,\"2497\":false,\"2498\":false,\"2499\":false,\"2500\":false,\"2501\":false,\"2502\":false,\"2503\":false,\"2504\":false,\"2505\":false,\"2506\":false,\"2507\":false,\"2508\":false,\"2509\":false,\"2510\":false,\"2511\":false,\"2512\":false,\"2513\":false,\"2514\":false,\"2515\":false,\"2516\":false,\"2517\":false,\"2518\":false,\"2519\":false,\"2520\":false,\"2521\":false,\"2522\":false,\"2523\":false,\"2524\":false,\"2525\":false,\"2526\":false,\"2527\":false,\"2528\":false,\"2529\":false,\"2530\":false,\"2531\":false,\"2532\":false,\"2533\":false,\"2534\":false,\"2535\":true,\"2536\":false,\"2537\":false,\"2538\":false,\"2539\":false,\"2540\":false,\"2541\":false,\"2542\":false,\"2543\":false,\"2544\":false,\"2545\":false,\"2546\":false,\"2547\":false,\"2548\":false,\"2549\":false,\"2550\":false,\"2551\":false,\"2552\":true,\"2553\":true,\"2554\":true,\"2555\":true,\"2556\":false,\"2557\":false,\"2558\":true,\"2559\":true,\"2560\":true,\"2561\":false,\"2562\":true,\"2563\":false,\"2564\":false,\"2565\":true,\"2566\":true,\"2567\":true,\"2568\":true,\"2569\":true,\"2570\":true,\"2571\":true,\"2572\":true,\"2573\":false,\"2574\":false,\"2575\":false,\"2576\":false,\"2577\":false,\"2578\":false,\"2579\":false,\"2580\":false,\"2581\":false,\"2582\":false,\"2583\":false,\"2584\":false,\"2585\":false,\"2586\":false,\"2587\":false,\"2588\":false,\"2589\":false,\"2590\":false,\"2591\":false,\"2592\":false,\"2593\":false,\"2594\":false,\"2595\":false,\"2596\":false,\"2597\":false,\"2598\":true,\"2599\":true,\"2600\":false,\"2601\":false,\"2602\":true,\"2603\":false,\"2604\":false,\"2605\":false,\"2606\":false,\"2607\":false,\"2608\":false,\"2609\":false,\"2610\":false,\"2611\":false,\"2612\":true,\"2613\":true,\"2614\":true,\"2615\":false,\"2616\":false,\"2617\":false,\"2618\":false,\"2619\":false,\"2620\":false,\"2621\":false,\"2622\":false,\"2623\":false,\"2624\":false,\"2625\":false,\"2626\":false,\"2627\":false,\"2628\":false,\"2629\":false,\"2630\":false,\"2631\":false,\"2632\":false,\"2633\":false,\"2634\":false,\"2635\":false,\"2636\":false,\"2637\":false,\"2638\":false,\"2639\":false,\"2640\":false,\"2641\":false,\"2642\":false,\"2643\":false,\"2644\":false,\"2645\":false,\"2646\":false,\"2647\":false,\"2648\":false,\"2649\":false,\"2650\":false,\"2651\":false,\"2652\":false,\"2653\":true,\"2654\":false,\"2655\":false,\"2656\":false,\"2657\":false,\"2658\":false,\"2659\":true,\"2660\":false,\"2661\":false,\"2662\":false,\"2663\":false,\"2664\":false,\"2665\":false,\"2666\":false,\"2667\":false,\"2668\":false,\"2669\":false,\"2670\":false,\"2671\":false,\"2672\":false,\"2673\":false,\"2674\":false,\"2675\":false,\"2676\":false,\"2677\":false,\"2678\":false,\"2679\":false,\"2680\":false,\"2681\":false,\"2682\":false,\"2683\":false,\"2684\":false,\"2685\":false,\"2686\":false,\"2687\":true,\"2688\":false,\"2689\":false,\"2690\":false,\"2691\":false,\"2692\":false,\"2693\":false,\"2694\":false,\"2695\":false,\"2696\":false,\"2697\":false,\"2698\":false,\"2699\":false,\"2700\":false,\"2701\":false,\"2702\":false,\"2703\":false,\"2704\":false,\"2705\":false,\"2706\":false,\"2707\":false,\"2708\":false,\"2709\":false,\"2710\":false,\"2711\":false,\"2712\":false,\"2713\":false,\"2714\":false,\"2715\":false,\"2716\":false,\"2717\":false,\"2718\":true,\"2719\":false,\"2720\":false,\"2721\":false,\"2722\":false,\"2723\":true,\"2724\":false,\"2725\":false,\"2726\":false,\"2727\":false,\"2728\":false,\"2729\":false,\"2730\":false,\"2731\":false,\"2732\":false,\"2733\":false,\"2734\":false,\"2735\":false,\"2736\":false,\"2737\":false,\"2738\":false,\"2739\":false,\"2740\":false,\"2741\":false,\"2742\":false,\"2743\":false,\"2744\":false,\"2745\":false,\"2746\":false,\"2747\":false,\"2748\":false,\"2749\":false,\"2750\":false,\"2751\":true,\"2752\":false,\"2753\":false,\"2754\":false,\"2755\":false,\"2756\":false,\"2757\":false,\"2758\":false,\"2759\":false,\"2760\":false,\"2761\":false,\"2762\":false,\"2763\":false,\"2764\":false,\"2765\":false,\"2766\":false,\"2767\":false,\"2768\":false,\"2769\":false,\"2770\":false,\"2771\":false,\"2772\":false,\"2773\":false,\"2774\":false,\"2775\":false,\"2776\":false,\"2777\":false,\"2778\":false,\"2779\":false,\"2780\":false,\"2781\":true,\"2782\":false,\"2783\":false,\"2784\":false,\"2785\":false,\"2786\":false,\"2787\":false,\"2788\":false,\"2789\":false,\"2790\":false,\"2791\":false,\"2792\":false,\"2793\":false,\"2794\":false,\"2795\":false,\"2796\":false,\"2797\":false,\"2798\":false,\"2799\":false,\"2800\":false,\"2801\":false,\"2802\":false,\"2803\":false,\"2804\":false,\"2805\":false,\"2806\":false,\"2807\":false,\"2808\":false,\"2809\":true,\"2810\":false,\"2811\":false,\"2812\":false,\"2813\":false,\"2814\":false,\"2815\":false,\"2816\":false,\"2817\":false,\"2818\":false,\"2819\":false,\"2820\":false,\"2821\":false,\"2822\":false,\"2823\":false,\"2824\":false,\"2825\":false,\"2826\":false,\"2827\":false,\"2828\":false,\"2829\":false,\"2830\":false,\"2831\":false,\"2832\":false,\"2833\":false,\"2834\":false,\"2835\":false,\"2836\":false,\"2837\":false,\"2838\":false,\"2839\":false,\"2840\":false,\"2841\":false,\"2842\":false,\"2843\":false,\"2844\":false,\"2845\":false,\"2846\":false,\"2847\":false,\"2848\":false,\"2849\":false,\"2850\":false,\"2851\":false,\"2852\":false,\"2853\":false,\"2854\":false,\"2855\":false,\"2856\":false,\"2857\":false,\"2858\":false,\"2859\":false,\"2860\":false,\"2861\":false,\"2862\":false,\"2863\":false,\"2864\":false,\"2865\":false,\"2866\":false,\"2867\":false,\"2868\":false,\"2869\":false,\"2870\":false,\"2871\":false,\"2872\":false,\"2873\":false,\"2874\":false,\"2875\":false,\"2876\":false,\"2877\":false,\"2878\":false,\"2879\":true,\"2880\":false,\"2881\":false,\"2882\":false,\"2883\":false,\"2884\":false,\"2885\":false,\"2886\":false,\"2887\":false,\"2888\":false,\"2889\":false,\"2890\":false,\"2891\":false,\"2892\":false,\"2893\":false,\"2894\":false,\"2895\":true,\"2896\":false,\"2897\":false,\"2898\":false,\"2899\":false,\"2900\":false,\"2901\":false,\"2902\":false,\"2903\":false,\"2904\":false,\"2905\":false,\"2906\":false,\"2907\":false,\"2908\":false,\"2909\":false,\"2910\":false,\"2911\":false,\"2912\":false,\"2913\":false,\"2914\":false,\"2915\":false,\"2916\":false,\"2917\":false,\"2918\":false,\"2919\":false,\"2920\":false,\"2921\":false,\"2922\":false,\"2923\":false,\"2924\":false,\"2925\":false,\"2926\":false,\"2927\":false,\"2928\":false,\"2929\":false,\"2930\":false,\"2931\":false,\"2932\":false,\"2933\":false,\"2934\":false,\"2935\":false,\"2936\":false,\"2937\":false,\"2938\":false,\"2939\":false,\"2940\":false,\"2941\":false,\"2942\":false,\"2943\":false,\"2944\":false,\"2945\":false,\"2946\":false,\"2947\":false,\"2948\":false,\"2949\":false,\"2950\":false,\"2951\":false,\"2952\":false,\"2953\":false,\"2954\":false,\"2955\":false,\"2956\":false,\"2957\":false,\"2958\":false,\"2959\":false,\"2960\":false,\"2961\":false,\"2962\":false,\"2963\":false,\"2964\":false,\"2965\":false,\"2966\":false,\"2967\":false,\"2968\":false,\"2969\":false,\"2970\":false,\"2971\":false,\"2972\":false,\"2973\":false,\"2974\":false,\"2975\":false,\"2976\":false,\"2977\":false,\"2978\":false,\"2979\":false,\"2980\":false,\"2981\":false,\"2982\":false,\"2983\":false,\"2984\":false,\"2985\":false,\"2986\":false,\"2987\":false,\"2988\":false,\"2989\":false,\"2990\":false,\"2991\":false,\"2992\":false,\"2993\":false,\"2994\":false,\"2995\":false,\"2996\":false,\"2997\":false,\"2998\":false,\"2999\":false,\"3000\":false,\"3001\":false,\"3002\":false,\"3003\":false,\"3004\":false,\"3005\":false,\"3006\":false,\"3007\":false,\"3008\":false,\"3009\":false,\"3010\":false,\"3011\":false,\"3012\":false,\"3013\":false,\"3014\":false,\"3015\":false,\"3016\":false,\"3017\":false,\"3018\":false,\"3019\":false,\"3020\":false,\"3021\":false,\"3022\":false,\"3023\":false,\"3024\":false,\"3025\":false,\"3026\":false,\"3027\":false,\"3028\":false,\"3029\":false,\"3030\":false,\"3031\":false,\"3032\":false,\"3033\":false,\"3034\":false,\"3035\":false,\"3036\":false,\"3037\":false,\"3038\":false,\"3039\":false,\"3040\":false,\"3041\":false,\"3042\":false,\"3043\":false,\"3044\":false,\"3045\":false,\"3046\":false,\"3047\":false,\"3048\":false,\"3049\":false,\"3050\":false,\"3051\":false,\"3052\":false,\"3053\":false,\"3054\":false,\"3055\":false,\"3056\":false,\"3057\":false,\"3058\":false,\"3059\":false,\"3060\":false,\"3061\":false,\"3062\":false,\"3063\":false,\"3064\":false,\"3065\":false,\"3066\":false,\"3067\":false,\"3068\":false,\"3069\":false,\"3070\":false,\"3071\":false,\"3072\":false,\"3073\":false,\"3074\":false,\"3075\":false,\"3076\":false,\"3077\":false,\"3078\":false,\"3079\":false,\"3080\":false,\"3081\":false,\"3082\":false,\"3083\":false,\"3084\":false,\"3085\":false,\"3086\":false,\"3087\":false,\"3088\":false,\"3089\":false,\"3090\":false,\"3091\":false,\"3092\":false,\"3093\":true,\"3094\":false,\"3095\":false,\"3096\":false,\"3097\":false,\"3098\":false,\"3099\":false,\"3100\":false,\"3101\":false,\"3102\":false,\"3103\":false,\"3104\":false,\"3105\":false,\"3106\":false,\"3107\":false,\"3108\":false,\"3109\":false,\"3110\":false,\"3111\":false,\"3112\":false,\"3113\":false,\"3114\":false,\"3115\":false,\"3116\":false,\"3117\":false,\"3118\":true,\"3119\":false,\"3120\":false,\"3121\":false,\"3122\":false,\"3123\":false,\"3124\":false,\"3125\":false,\"3126\":false,\"3127\":false,\"3128\":false,\"3129\":false,\"3130\":false,\"3131\":false,\"3132\":false,\"3133\":false,\"3134\":false,\"3135\":false,\"3136\":false,\"3137\":false,\"3138\":false,\"3139\":false,\"3140\":false,\"3141\":false,\"3142\":false,\"3143\":false,\"3144\":false,\"3145\":true,\"3146\":false,\"3147\":false,\"3148\":false,\"3149\":false,\"3150\":false,\"3151\":false,\"3152\":false,\"3153\":false,\"3154\":false,\"3155\":false,\"3156\":false,\"3157\":false,\"3158\":false,\"3159\":false,\"3160\":false,\"3161\":false,\"3162\":false,\"3163\":false,\"3164\":false,\"3165\":false,\"3166\":false,\"3167\":false,\"3168\":false,\"3169\":false,\"3170\":false,\"3171\":false,\"3172\":false,\"3173\":false,\"3174\":false,\"3175\":false,\"3176\":false,\"3177\":false,\"3178\":false,\"3179\":false,\"3180\":false,\"3181\":false,\"3182\":false,\"3183\":false,\"3184\":false,\"3185\":false,\"3186\":false,\"3187\":false,\"3188\":false,\"3189\":false,\"3190\":false,\"3191\":false,\"3192\":false,\"3193\":false,\"3194\":true,\"3195\":true,\"3196\":false,\"3197\":false,\"3198\":false,\"3199\":false,\"3200\":false,\"3201\":false,\"3202\":false,\"3203\":false,\"3204\":false,\"3205\":false,\"3206\":false,\"3207\":false,\"3208\":false,\"3209\":false,\"3210\":false,\"3211\":false,\"3212\":false,\"3213\":false,\"3214\":false,\"3215\":false,\"3216\":false,\"3217\":false,\"3218\":false,\"3219\":false,\"3220\":false,\"3221\":false,\"3222\":false,\"3223\":false,\"3224\":false,\"3225\":false,\"3226\":false,\"3227\":false,\"3228\":false,\"3229\":false,\"3230\":false,\"3231\":false,\"3232\":false,\"3233\":false,\"3234\":false,\"3235\":false,\"3236\":false,\"3237\":false,\"3238\":false,\"3239\":false,\"3240\":false,\"3241\":false,\"3242\":false,\"3243\":false,\"3244\":false,\"3245\":false,\"3246\":false,\"3247\":false,\"3248\":false,\"3249\":false,\"3250\":false,\"3251\":false,\"3252\":false,\"3253\":false,\"3254\":true,\"3255\":false,\"3256\":false,\"3257\":false,\"3258\":false,\"3259\":false,\"3260\":false,\"3261\":false,\"3262\":false,\"3263\":false,\"3264\":false,\"3265\":false,\"3266\":false,\"3267\":false,\"3268\":false,\"3269\":false,\"3270\":false,\"3271\":false,\"3272\":false,\"3273\":false,\"3274\":false,\"3275\":false,\"3276\":false,\"3277\":false,\"3278\":false,\"3279\":false,\"3280\":false,\"3281\":false,\"3282\":false,\"3283\":false,\"3284\":false,\"3285\":false,\"3286\":false,\"3287\":false,\"3288\":false,\"3289\":false,\"3290\":false,\"3291\":false,\"3292\":false,\"3293\":false,\"3294\":false,\"3295\":false,\"3296\":false,\"3297\":false,\"3298\":false,\"3299\":false,\"3300\":false,\"3301\":false,\"3302\":false,\"3303\":false,\"3304\":false,\"3305\":false,\"3306\":false,\"3307\":false,\"3308\":true,\"3309\":false,\"3310\":false,\"3311\":false,\"3312\":false,\"3313\":false,\"3314\":false,\"3315\":false,\"3316\":false,\"3317\":false,\"3318\":false,\"3319\":false,\"3320\":false,\"3321\":false,\"3322\":true,\"3323\":false,\"3324\":false,\"3325\":false,\"3326\":false,\"3327\":false,\"3328\":false,\"3329\":false,\"3330\":false,\"3331\":false,\"3332\":false,\"3333\":false,\"3334\":false,\"3335\":false,\"3336\":false,\"3337\":false,\"3338\":false,\"3339\":false,\"3340\":false,\"3341\":false,\"3342\":false,\"3343\":false,\"3344\":false,\"3345\":false,\"3346\":false,\"3347\":false,\"3348\":false,\"3349\":false,\"3350\":false,\"3351\":false,\"3352\":false,\"3353\":false,\"3354\":false,\"3355\":false,\"3356\":false,\"3357\":false,\"3358\":false,\"3359\":false,\"3360\":false,\"3361\":false,\"3362\":false,\"3363\":true,\"3364\":false,\"3365\":false,\"3366\":false,\"3367\":true,\"3368\":false,\"3369\":false,\"3370\":false,\"3371\":false,\"3372\":false,\"3373\":false,\"3374\":false,\"3375\":false,\"3376\":false,\"3377\":false,\"3378\":false,\"3379\":false,\"3380\":false,\"3381\":false,\"3382\":false,\"3383\":false,\"3384\":false,\"3385\":false,\"3386\":false,\"3387\":false,\"3388\":false,\"3389\":false,\"3390\":false,\"3391\":false,\"3392\":false,\"3393\":false,\"3394\":false,\"3395\":false,\"3396\":false,\"3397\":false,\"3398\":false,\"3399\":false,\"3400\":false,\"3401\":false,\"3402\":false,\"3403\":false,\"3404\":false,\"3405\":false,\"3406\":false,\"3407\":false,\"3408\":false,\"3409\":false,\"3410\":false,\"3411\":false,\"3412\":false,\"3413\":false,\"3414\":false,\"3415\":false,\"3416\":true,\"3417\":false,\"3418\":false,\"3419\":false,\"3420\":false,\"3421\":false,\"3422\":false,\"3423\":false,\"3424\":false,\"3425\":false,\"3426\":false,\"3427\":false,\"3428\":false,\"3429\":false,\"3430\":false,\"3431\":false,\"3432\":false,\"3433\":false,\"3434\":false,\"3435\":false,\"3436\":false,\"3437\":true,\"3438\":false,\"3439\":false,\"3440\":false,\"3441\":false,\"3442\":false,\"3443\":false,\"3444\":false,\"3445\":false,\"3446\":false,\"3447\":false,\"3448\":false,\"3449\":false,\"3450\":false,\"3451\":false,\"3452\":false,\"3453\":false,\"3454\":false,\"3455\":false,\"3456\":false,\"3457\":false,\"3458\":false,\"3459\":false,\"3460\":false,\"3461\":false,\"3462\":false,\"3463\":false,\"3464\":false,\"3465\":false,\"3466\":false,\"3467\":false,\"3468\":false,\"3469\":false,\"3470\":false,\"3471\":false,\"3472\":true,\"3473\":false,\"3474\":false,\"3475\":false,\"3476\":false,\"3477\":false,\"3478\":false,\"3479\":false,\"3480\":false,\"3481\":false,\"3482\":false,\"3483\":false,\"3484\":false,\"3485\":false,\"3486\":false,\"3487\":false,\"3488\":false,\"3489\":false,\"3490\":false,\"3491\":false,\"3492\":false,\"3493\":false,\"3494\":false,\"3495\":false,\"3496\":false,\"3497\":false,\"3498\":true,\"3499\":false,\"3500\":false,\"3501\":false,\"3502\":false,\"3503\":false,\"3504\":false,\"3505\":false,\"3506\":false,\"3507\":false,\"3508\":false,\"3509\":false,\"3510\":false,\"3511\":false,\"3512\":false,\"3513\":false,\"3514\":false,\"3515\":false,\"3516\":false,\"3517\":false,\"3518\":false,\"3519\":false,\"3520\":false,\"3521\":true,\"3522\":false,\"3523\":true,\"3524\":false,\"3525\":false,\"3526\":false,\"3527\":false,\"3528\":false,\"3529\":false,\"3530\":false,\"3531\":false,\"3532\":false,\"3533\":true,\"3534\":false,\"3535\":false,\"3536\":false,\"3537\":false,\"3538\":false,\"3539\":false,\"3540\":false,\"3541\":false,\"3542\":false,\"3543\":false,\"3544\":false,\"3545\":false,\"3546\":false,\"3547\":false,\"3548\":false,\"3549\":false,\"3550\":false,\"3551\":false,\"3552\":false,\"3553\":false,\"3554\":false,\"3555\":false,\"3556\":false,\"3557\":false,\"3558\":false,\"3559\":false,\"3560\":false,\"3561\":false,\"3562\":false,\"3563\":false,\"3564\":false,\"3565\":false,\"3566\":false,\"3567\":false,\"3568\":false,\"3569\":false,\"3570\":false,\"3571\":false,\"3572\":false,\"3573\":false,\"3574\":false,\"3575\":false,\"3576\":false,\"3577\":false,\"3578\":false,\"3579\":false,\"3580\":false,\"3581\":false,\"3582\":false,\"3583\":false,\"3584\":false,\"3585\":false,\"3586\":false,\"3587\":false,\"3588\":false,\"3589\":false,\"3590\":false,\"3591\":false,\"3592\":false,\"3593\":false,\"3594\":false,\"3595\":false,\"3596\":false,\"3597\":false,\"3598\":false,\"3599\":false,\"3600\":false,\"3601\":false,\"3602\":false,\"3603\":false,\"3604\":false,\"3605\":false,\"3606\":false,\"3607\":false,\"3608\":false,\"3609\":false,\"3610\":false,\"3611\":false,\"3612\":false,\"3613\":false,\"3614\":false,\"3615\":false,\"3616\":false,\"3617\":false,\"3618\":false,\"3619\":false,\"3620\":false,\"3621\":false,\"3622\":false,\"3623\":false,\"3624\":false,\"3625\":false,\"3626\":false,\"3627\":false,\"3628\":false,\"3629\":false,\"3630\":false,\"3631\":false,\"3632\":false,\"3633\":false,\"3634\":false,\"3635\":true,\"3636\":false,\"3637\":false,\"3638\":false,\"3639\":false,\"3640\":false,\"3641\":false,\"3642\":false,\"3643\":false,\"3644\":false,\"3645\":false,\"3646\":false,\"3647\":true,\"3648\":false,\"3649\":false,\"3650\":true,\"3651\":false,\"3652\":false,\"3653\":false,\"3654\":false,\"3655\":false,\"3656\":false,\"3657\":false,\"3658\":false,\"3659\":false,\"3660\":false,\"3661\":false,\"3662\":false,\"3663\":false,\"3664\":false,\"3665\":false,\"3666\":false,\"3667\":false,\"3668\":false,\"3669\":false,\"3670\":false,\"3671\":true,\"3672\":true,\"3673\":false,\"3674\":false,\"3675\":false,\"3676\":false,\"3677\":false,\"3678\":false,\"3679\":false,\"3680\":false,\"3681\":false,\"3682\":false,\"3683\":false,\"3684\":true,\"3685\":false,\"3686\":false,\"3687\":false,\"3688\":false,\"3689\":false,\"3690\":false,\"3691\":false,\"3692\":false,\"3693\":false,\"3694\":true,\"3695\":false,\"3696\":true,\"3697\":true,\"3698\":false,\"3699\":false,\"3700\":false,\"3701\":false,\"3702\":false,\"3703\":false,\"3704\":false,\"3705\":false,\"3706\":false,\"3707\":false,\"3708\":false,\"3709\":false,\"3710\":false,\"3711\":false,\"3712\":false,\"3713\":false,\"3714\":false,\"3715\":false,\"3716\":false,\"3717\":true,\"3718\":true,\"3719\":false,\"3720\":false,\"3721\":false,\"3722\":false,\"3723\":false,\"3724\":false,\"3725\":false,\"3726\":false,\"3727\":false,\"3728\":false,\"3729\":false,\"3730\":false,\"3731\":false,\"3732\":false,\"3733\":false,\"3734\":false,\"3735\":false,\"3736\":false,\"3737\":false,\"3738\":false,\"3739\":true,\"3740\":false,\"3741\":false,\"3742\":false,\"3743\":false,\"3744\":false,\"3745\":false,\"3746\":false,\"3747\":false,\"3748\":false,\"3749\":false,\"3750\":false,\"3751\":false,\"3752\":false,\"3753\":false,\"3754\":false,\"3755\":false,\"3756\":false,\"3757\":false,\"3758\":false,\"3759\":false,\"3760\":false,\"3761\":false,\"3762\":false,\"3763\":false,\"3764\":false,\"3765\":false,\"3766\":false,\"3767\":false,\"3768\":false,\"3769\":false,\"3770\":false,\"3771\":false,\"3772\":false,\"3773\":false,\"3774\":false,\"3775\":false,\"3776\":true,\"3777\":false,\"3778\":false,\"3779\":false,\"3780\":false,\"3781\":false,\"3782\":false,\"3783\":false,\"3784\":false,\"3785\":false,\"3786\":false,\"3787\":false,\"3788\":false,\"3789\":false,\"3790\":false,\"3791\":false,\"3792\":false,\"3793\":false,\"3794\":false,\"3795\":false,\"3796\":false,\"3797\":false,\"3798\":false,\"3799\":false,\"3800\":false,\"3801\":false,\"3802\":false,\"3803\":false,\"3804\":false,\"3805\":false,\"3806\":false,\"3807\":false,\"3808\":false,\"3809\":false,\"3810\":false,\"3811\":false,\"3812\":false,\"3813\":false,\"3814\":false,\"3815\":false,\"3816\":false,\"3817\":false,\"3818\":false,\"3819\":true,\"3820\":false,\"3821\":false,\"3822\":false,\"3823\":false,\"3824\":false,\"3825\":false,\"3826\":false,\"3827\":false,\"3828\":false,\"3829\":false,\"3830\":false,\"3831\":false,\"3832\":false,\"3833\":false,\"3834\":false,\"3835\":false,\"3836\":false,\"3837\":false,\"3838\":false,\"3839\":false,\"3840\":false,\"3841\":false,\"3842\":false,\"3843\":false,\"3844\":false,\"3845\":false,\"3846\":false,\"3847\":false,\"3848\":false,\"3849\":false,\"3850\":false,\"3851\":false,\"3852\":false,\"3853\":false,\"3854\":false,\"3855\":false,\"3856\":false,\"3857\":false,\"3858\":false,\"3859\":false,\"3860\":false,\"3861\":false,\"3862\":false,\"3863\":false,\"3864\":false,\"3865\":false,\"3866\":false,\"3867\":false,\"3868\":false,\"3869\":false,\"3870\":false,\"3871\":false,\"3872\":false,\"3873\":false,\"3874\":false,\"3875\":false,\"3876\":false,\"3877\":false,\"3878\":false,\"3879\":false,\"3880\":false,\"3881\":true,\"3882\":false,\"3883\":false,\"3884\":false,\"3885\":false,\"3886\":false,\"3887\":false,\"3888\":false,\"3889\":false,\"3890\":false,\"3891\":false,\"3892\":false,\"3893\":false,\"3894\":false,\"3895\":false,\"3896\":true,\"3897\":false,\"3898\":false,\"3899\":false,\"3900\":false,\"3901\":false,\"3902\":false,\"3903\":false,\"3904\":false,\"3905\":false,\"3906\":false,\"3907\":false,\"3908\":false,\"3909\":false,\"3910\":false,\"3911\":false,\"3912\":false,\"3913\":false,\"3914\":false,\"3915\":false,\"3916\":false,\"3917\":false,\"3918\":false,\"3919\":false,\"3920\":false,\"3921\":false,\"3922\":false,\"3923\":false,\"3924\":false,\"3925\":false,\"3926\":false,\"3927\":false,\"3928\":false,\"3929\":false,\"3930\":false,\"3931\":false,\"3932\":false,\"3933\":false,\"3934\":false,\"3935\":false,\"3936\":false,\"3937\":false,\"3938\":false,\"3939\":false,\"3940\":false,\"3941\":false,\"3942\":false,\"3943\":false,\"3944\":false,\"3945\":false,\"3946\":false,\"3947\":false,\"3948\":false,\"3949\":false,\"3950\":false,\"3951\":false,\"3952\":false,\"3953\":false,\"3954\":false,\"3955\":false,\"3956\":false,\"3957\":false,\"3958\":true,\"3959\":false,\"3960\":false,\"3961\":false,\"3962\":false,\"3963\":true,\"3964\":false,\"3965\":false,\"3966\":false,\"3967\":false,\"3968\":false,\"3969\":false,\"3970\":false,\"3971\":true,\"3972\":false,\"3973\":false,\"3974\":false,\"3975\":false,\"3976\":false,\"3977\":false,\"3978\":false,\"3979\":false,\"3980\":false,\"3981\":false,\"3982\":false,\"3983\":false,\"3984\":false,\"3985\":false,\"3986\":false,\"3987\":false,\"3988\":false,\"3989\":false,\"3990\":false,\"3991\":false,\"3992\":false,\"3993\":false,\"3994\":false,\"3995\":false,\"3996\":false,\"3997\":false,\"3998\":false,\"3999\":false,\"4000\":false,\"4001\":false,\"4002\":false,\"4003\":false,\"4004\":false,\"4005\":false,\"4006\":false,\"4007\":false,\"4008\":false,\"4009\":false,\"4010\":false,\"4011\":false,\"4012\":false,\"4013\":false,\"4014\":false,\"4015\":false,\"4016\":false,\"4017\":false,\"4018\":false,\"4019\":false,\"4020\":false,\"4021\":false,\"4022\":false,\"4023\":false,\"4024\":false,\"4025\":false,\"4026\":false,\"4027\":false,\"4028\":false,\"4029\":false,\"4030\":false,\"4031\":false,\"4032\":false,\"4033\":false,\"4034\":false,\"4035\":false,\"4036\":false,\"4037\":false,\"4038\":false,\"4039\":false,\"4040\":false,\"4041\":false,\"4042\":false,\"4043\":false,\"4044\":false,\"4045\":false,\"4046\":false,\"4047\":false,\"4048\":false,\"4049\":false,\"4050\":false,\"4051\":false,\"4052\":false,\"4053\":false,\"4054\":false,\"4055\":false,\"4056\":false,\"4057\":false,\"4058\":false,\"4059\":false,\"4060\":false,\"4061\":false,\"4062\":false,\"4063\":false,\"4064\":false,\"4065\":false,\"4066\":false,\"4067\":false,\"4068\":false,\"4069\":false,\"4070\":false,\"4071\":false,\"4072\":false,\"4073\":false,\"4074\":false,\"4075\":false,\"4076\":false,\"4077\":false,\"4078\":false,\"4079\":false,\"4080\":false,\"4081\":false,\"4082\":false,\"4083\":false,\"4084\":false,\"4085\":false,\"4086\":false,\"4087\":false,\"4088\":false,\"4089\":false,\"4090\":false,\"4091\":false,\"4092\":false,\"4093\":false,\"4094\":false,\"4095\":false,\"4096\":false,\"4097\":false,\"4098\":false,\"4099\":false,\"4100\":false,\"4101\":false,\"4102\":false,\"4103\":false,\"4104\":false,\"4105\":false,\"4106\":false,\"4107\":false,\"4108\":false,\"4109\":false,\"4110\":false,\"4111\":false,\"4112\":false,\"4113\":false,\"4114\":false,\"4115\":false,\"4116\":false,\"4117\":false,\"4118\":false,\"4119\":false,\"4120\":false,\"4121\":false,\"4122\":true,\"4123\":false,\"4124\":false,\"4125\":false,\"4126\":false,\"4127\":false,\"4128\":false,\"4129\":false,\"4130\":false,\"4131\":false,\"4132\":false,\"4133\":false,\"4134\":false,\"4135\":false,\"4136\":false,\"4137\":false,\"4138\":false,\"4139\":false,\"4140\":false,\"4141\":false,\"4142\":false,\"4143\":false,\"4144\":false,\"4145\":false,\"4146\":false,\"4147\":false,\"4148\":false,\"4149\":false,\"4150\":false,\"4151\":false,\"4152\":false,\"4153\":false,\"4154\":false,\"4155\":false,\"4156\":false,\"4157\":false,\"4158\":false,\"4159\":false,\"4160\":false,\"4161\":false,\"4162\":false,\"4163\":false,\"4164\":false,\"4165\":false,\"4166\":false,\"4167\":false,\"4168\":false,\"4169\":false,\"4170\":false,\"4171\":false,\"4172\":true,\"4173\":false,\"4174\":true,\"4175\":false,\"4176\":false,\"4177\":false,\"4178\":false,\"4179\":false,\"4180\":false,\"4181\":false,\"4182\":false,\"4183\":false,\"4184\":false,\"4185\":false,\"4186\":false,\"4187\":false,\"4188\":false,\"4189\":false,\"4190\":false,\"4191\":false,\"4192\":false,\"4193\":false,\"4194\":false,\"4195\":false,\"4196\":false,\"4197\":false,\"4198\":false,\"4199\":false,\"4200\":false,\"4201\":false,\"4202\":false,\"4203\":false,\"4204\":false,\"4205\":false,\"4206\":false,\"4207\":true,\"4208\":false,\"4209\":false,\"4210\":false,\"4211\":false,\"4212\":false,\"4213\":false,\"4214\":false,\"4215\":false,\"4216\":false,\"4217\":false,\"4218\":false,\"4219\":false,\"4220\":false,\"4221\":false,\"4222\":false,\"4223\":false,\"4224\":false,\"4225\":false,\"4226\":false,\"4227\":false,\"4228\":true,\"4229\":true,\"4230\":false,\"4231\":false,\"4232\":false,\"4233\":false,\"4234\":false,\"4235\":false,\"4236\":true,\"4237\":false,\"4238\":false,\"4239\":false,\"4240\":false,\"4241\":false,\"4242\":false,\"4243\":false,\"4244\":false,\"4245\":false,\"4246\":false,\"4247\":false,\"4248\":false,\"4249\":false,\"4250\":false,\"4251\":false,\"4252\":false,\"4253\":false,\"4254\":false,\"4255\":false,\"4256\":false,\"4257\":false,\"4258\":false,\"4259\":false,\"4260\":false,\"4261\":false,\"4262\":false,\"4263\":false,\"4264\":false,\"4265\":false,\"4266\":false,\"4267\":true,\"4268\":false,\"4269\":false,\"4270\":false,\"4271\":false,\"4272\":false,\"4273\":true,\"4274\":true,\"4275\":false,\"4276\":false,\"4277\":false,\"4278\":false,\"4279\":false,\"4280\":false,\"4281\":false,\"4282\":false,\"4283\":false,\"4284\":true,\"4285\":false,\"4286\":false,\"4287\":false,\"4288\":false,\"4289\":false,\"4290\":false,\"4291\":false,\"4292\":false,\"4293\":false,\"4294\":false,\"4295\":false,\"4296\":false,\"4297\":false,\"4298\":false,\"4299\":false,\"4300\":false,\"4301\":false,\"4302\":false,\"4303\":false,\"4304\":false,\"4305\":false,\"4306\":false,\"4307\":false,\"4308\":false,\"4309\":false,\"4310\":false,\"4311\":false,\"4312\":false,\"4313\":false,\"4314\":false,\"4315\":false,\"4316\":false,\"4317\":false,\"4318\":false,\"4319\":false,\"4320\":false,\"4321\":false,\"4322\":false,\"4323\":false,\"4324\":false,\"4325\":false,\"4326\":false,\"4327\":false,\"4328\":false,\"4329\":false,\"4330\":false,\"4331\":false,\"4332\":false,\"4333\":false,\"4334\":false,\"4335\":false,\"4336\":false,\"4337\":false,\"4338\":false,\"4339\":false,\"4340\":false,\"4341\":false,\"4342\":false,\"4343\":false,\"4344\":false,\"4345\":false,\"4346\":false,\"4347\":false,\"4348\":false,\"4349\":false,\"4350\":false,\"4351\":false,\"4352\":false,\"4353\":false,\"4354\":false,\"4355\":false,\"4356\":false,\"4357\":false,\"4358\":false,\"4359\":false,\"4360\":false,\"4361\":false,\"4362\":false,\"4363\":false,\"4364\":false,\"4365\":false,\"4366\":false,\"4367\":false,\"4368\":false,\"4369\":false,\"4370\":false,\"4371\":false,\"4372\":false,\"4373\":false,\"4374\":false,\"4375\":false,\"4376\":false,\"4377\":false,\"4378\":false,\"4379\":false,\"4380\":false,\"4381\":false,\"4382\":false,\"4383\":false,\"4384\":false,\"4385\":false,\"4386\":false,\"4387\":false,\"4388\":false,\"4389\":true,\"4390\":false,\"4391\":false,\"4392\":false,\"4393\":true,\"4394\":false,\"4395\":false,\"4396\":false,\"4397\":false,\"4398\":false,\"4399\":false,\"4400\":false,\"4401\":false,\"4402\":false,\"4403\":false,\"4404\":false,\"4405\":false,\"4406\":false,\"4407\":false,\"4408\":false,\"4409\":false,\"4410\":false,\"4411\":false,\"4412\":false,\"4413\":false,\"4414\":false,\"4415\":false,\"4416\":false,\"4417\":false,\"4418\":false,\"4419\":false,\"4420\":false,\"4421\":false,\"4422\":false,\"4423\":false,\"4424\":false,\"4425\":false,\"4426\":false,\"4427\":false,\"4428\":false,\"4429\":true,\"4430\":false,\"4431\":false,\"4432\":false,\"4433\":false,\"4434\":false,\"4435\":false,\"4436\":false,\"4437\":false,\"4438\":false,\"4439\":false,\"4440\":false,\"4441\":false,\"4442\":false,\"4443\":false,\"4444\":false,\"4445\":false,\"4446\":false,\"4447\":false,\"4448\":false,\"4449\":false,\"4450\":true,\"4451\":false,\"4452\":false,\"4453\":false,\"4454\":false,\"4455\":false,\"4456\":false,\"4457\":false,\"4458\":false,\"4459\":false,\"4460\":false,\"4461\":false,\"4462\":false,\"4463\":false,\"4464\":false,\"4465\":false,\"4466\":false,\"4467\":false,\"4468\":false,\"4469\":false,\"4470\":false,\"4471\":false,\"4472\":false,\"4473\":false,\"4474\":false,\"4475\":false,\"4476\":false,\"4477\":false,\"4478\":false,\"4479\":false,\"4480\":false,\"4481\":false,\"4482\":false,\"4483\":false,\"4484\":false,\"4485\":false,\"4486\":false,\"4487\":false,\"4488\":false,\"4489\":false,\"4490\":false,\"4491\":false,\"4492\":false,\"4493\":false,\"4494\":false,\"4495\":false,\"4496\":false,\"4497\":false,\"4498\":false,\"4499\":false,\"4500\":false,\"4501\":false,\"4502\":false,\"4503\":false,\"4504\":false,\"4505\":false,\"4506\":false,\"4507\":false,\"4508\":false,\"4509\":true,\"4510\":false,\"4511\":true,\"4512\":false,\"4513\":false,\"4514\":false,\"4515\":false,\"4516\":false,\"4517\":false,\"4518\":false,\"4519\":false,\"4520\":false,\"4521\":false,\"4522\":false,\"4523\":false,\"4524\":false,\"4525\":false,\"4526\":false,\"4527\":false,\"4528\":false,\"4529\":false,\"4530\":false,\"4531\":false,\"4532\":false,\"4533\":false,\"4534\":false,\"4535\":false,\"4536\":false,\"4537\":false,\"4538\":false,\"4539\":false,\"4540\":false,\"4541\":false,\"4542\":false,\"4543\":false,\"4544\":false,\"4545\":false,\"4546\":false,\"4547\":false,\"4548\":false,\"4549\":false,\"4550\":false,\"4551\":false,\"4552\":false,\"4553\":false,\"4554\":false,\"4555\":false,\"4556\":false,\"4557\":false,\"4558\":false,\"4559\":false,\"4560\":false,\"4561\":false,\"4562\":false,\"4563\":false,\"4564\":false,\"4565\":false,\"4566\":false,\"4567\":false,\"4568\":false,\"4569\":false,\"4570\":false,\"4571\":false,\"4572\":false,\"4573\":false,\"4574\":false,\"4575\":false,\"4576\":false,\"4577\":false,\"4578\":false,\"4579\":false,\"4580\":false,\"4581\":false,\"4582\":false,\"4583\":false,\"4584\":false,\"4585\":false,\"4586\":false,\"4587\":false,\"4588\":false,\"4589\":false,\"4590\":false,\"4591\":false,\"4592\":false,\"4593\":false,\"4594\":false,\"4595\":false,\"4596\":false,\"4597\":false,\"4598\":false,\"4599\":false,\"4600\":false,\"4601\":false,\"4602\":false,\"4603\":false,\"4604\":false,\"4605\":false,\"4606\":true,\"4607\":true,\"4608\":false,\"4609\":false,\"4610\":false,\"4611\":true,\"4612\":false,\"4613\":false,\"4614\":false,\"4615\":false,\"4616\":false,\"4617\":false,\"4618\":false,\"4619\":false,\"4620\":false,\"4621\":false,\"4622\":false,\"4623\":false,\"4624\":false,\"4625\":false,\"4626\":true,\"4627\":false,\"4628\":false,\"4629\":false,\"4630\":false,\"4631\":false,\"4632\":false,\"4633\":false,\"4634\":false,\"4635\":false,\"4636\":false,\"4637\":false,\"4638\":false,\"4639\":false,\"4640\":false,\"4641\":false,\"4642\":false,\"4643\":false,\"4644\":false,\"4645\":false,\"4646\":false,\"4647\":false,\"4648\":false,\"4649\":false,\"4650\":false,\"4651\":false,\"4652\":false,\"4653\":false,\"4654\":false,\"4655\":false,\"4656\":false,\"4657\":false,\"4658\":false,\"4659\":false,\"4660\":false,\"4661\":false,\"4662\":false,\"4663\":true,\"4664\":false,\"4665\":false,\"4666\":false,\"4667\":false,\"4668\":false,\"4669\":false,\"4670\":false,\"4671\":false,\"4672\":false,\"4673\":false,\"4674\":false,\"4675\":false,\"4676\":false,\"4677\":false,\"4678\":false,\"4679\":false,\"4680\":false,\"4681\":false,\"4682\":false,\"4683\":false,\"4684\":false,\"4685\":false,\"4686\":false,\"4687\":false,\"4688\":false,\"4689\":false,\"4690\":false,\"4691\":false,\"4692\":false,\"4693\":false,\"4694\":false,\"4695\":false,\"4696\":false,\"4697\":false,\"4698\":false,\"4699\":false,\"4700\":false,\"4701\":false,\"4702\":false,\"4703\":false,\"4704\":false,\"4705\":false,\"4706\":false,\"4707\":false,\"4708\":false,\"4709\":false,\"4710\":false,\"4711\":false,\"4712\":false,\"4713\":false,\"4714\":true,\"4715\":false,\"4716\":false,\"4717\":false,\"4718\":false,\"4719\":false,\"4720\":false,\"4721\":false,\"4722\":false,\"4723\":false,\"4724\":false,\"4725\":false,\"4726\":false,\"4727\":false,\"4728\":false,\"4729\":false,\"4730\":false,\"4731\":false,\"4732\":false,\"4733\":false,\"4734\":false,\"4735\":false,\"4736\":false,\"4737\":false,\"4738\":false,\"4739\":false,\"4740\":false,\"4741\":false,\"4742\":false,\"4743\":false,\"4744\":false,\"4745\":false,\"4746\":false,\"4747\":false,\"4748\":false,\"4749\":false,\"4750\":false,\"4751\":false,\"4752\":false,\"4753\":false,\"4754\":false,\"4755\":false,\"4756\":false,\"4757\":false,\"4758\":false,\"4759\":false,\"4760\":false,\"4761\":false,\"4762\":false,\"4763\":false,\"4764\":false,\"4765\":false,\"4766\":false,\"4767\":false,\"4768\":false,\"4769\":false,\"4770\":false,\"4771\":false,\"4772\":false,\"4773\":false,\"4774\":false,\"4775\":true,\"4776\":false,\"4777\":false,\"4778\":false,\"4779\":false,\"4780\":false,\"4781\":false,\"4782\":false,\"4783\":false,\"4784\":false,\"4785\":false,\"4786\":false,\"4787\":false,\"4788\":false,\"4789\":false,\"4790\":false,\"4791\":false,\"4792\":false,\"4793\":false,\"4794\":false,\"4795\":false,\"4796\":false,\"4797\":false,\"4798\":false,\"4799\":false,\"4800\":false,\"4801\":false,\"4802\":false,\"4803\":false,\"4804\":false,\"4805\":false,\"4806\":false,\"4807\":false,\"4808\":false,\"4809\":false,\"4810\":false,\"4811\":false,\"4812\":false,\"4813\":false,\"4814\":false,\"4815\":false,\"4816\":false,\"4817\":false,\"4818\":false,\"4819\":false,\"4820\":false,\"4821\":false,\"4822\":false,\"4823\":false,\"4824\":false,\"4825\":false,\"4826\":false,\"4827\":false,\"4828\":false,\"4829\":true,\"4830\":false,\"4831\":false,\"4832\":false,\"4833\":true,\"4834\":false,\"4835\":false,\"4836\":false,\"4837\":false,\"4838\":false,\"4839\":false,\"4840\":false,\"4841\":true,\"4842\":false,\"4843\":false,\"4844\":false,\"4845\":false,\"4846\":false,\"4847\":false,\"4848\":false,\"4849\":false,\"4850\":false,\"4851\":false,\"4852\":false,\"4853\":false,\"4854\":false,\"4855\":false,\"4856\":false,\"4857\":false,\"4858\":false,\"4859\":false,\"4860\":false,\"4861\":false,\"4862\":false,\"4863\":false,\"4864\":false,\"4865\":false,\"4866\":false,\"4867\":false,\"4868\":false,\"4869\":false,\"4870\":false,\"4871\":false,\"4872\":false,\"4873\":false,\"4874\":false,\"4875\":false,\"4876\":false,\"4877\":false,\"4878\":false,\"4879\":false,\"4880\":false,\"4881\":false,\"4882\":false,\"4883\":false,\"4884\":false,\"4885\":false,\"4886\":false,\"4887\":false,\"4888\":false,\"4889\":false,\"4890\":false,\"4891\":false,\"4892\":false,\"4893\":false,\"4894\":false,\"4895\":false,\"4896\":false,\"4897\":false,\"4898\":false,\"4899\":false,\"4900\":false,\"4901\":false,\"4902\":false,\"4903\":false,\"4904\":false,\"4905\":false,\"4906\":false,\"4907\":false,\"4908\":false,\"4909\":false,\"4910\":false,\"4911\":false,\"4912\":false,\"4913\":false,\"4914\":false,\"4915\":false,\"4916\":true,\"4917\":false,\"4918\":false,\"4919\":false,\"4920\":false,\"4921\":false,\"4922\":false,\"4923\":false,\"4924\":false,\"4925\":false,\"4926\":false,\"4927\":false,\"4928\":false,\"4929\":false,\"4930\":false,\"4931\":false,\"4932\":false,\"4933\":false,\"4934\":false,\"4935\":false,\"4936\":false,\"4937\":false,\"4938\":false,\"4939\":false,\"4940\":false,\"4941\":false,\"4942\":false,\"4943\":false,\"4944\":false,\"4945\":false,\"4946\":false,\"4947\":false,\"4948\":false,\"4949\":false,\"4950\":false,\"4951\":false,\"4952\":false,\"4953\":false,\"4954\":false,\"4955\":false,\"4956\":false,\"4957\":false,\"4958\":false,\"4959\":false,\"4960\":false,\"4961\":false,\"4962\":false,\"4963\":false,\"4964\":false,\"4965\":false,\"4966\":false,\"4967\":false,\"4968\":false,\"4969\":false,\"4970\":false,\"4971\":false,\"4972\":false,\"4973\":false,\"4974\":false,\"4975\":false,\"4976\":false,\"4977\":false,\"4978\":false,\"4979\":false,\"4980\":false,\"4981\":false,\"4982\":false,\"4983\":false,\"4984\":false,\"4985\":false,\"4986\":false,\"4987\":false,\"4988\":false,\"4989\":false,\"4990\":false,\"4991\":false,\"4992\":false,\"4993\":false,\"4994\":false,\"4995\":true,\"4996\":false,\"4997\":false,\"4998\":false,\"4999\":false},\"retweet_count\":{\"0\":0,\"1\":0,\"2\":0,\"3\":0,\"4\":0,\"5\":1,\"6\":0,\"7\":0,\"8\":0,\"9\":0,\"10\":0,\"11\":0,\"12\":1,\"13\":0,\"14\":0,\"15\":0,\"16\":0,\"17\":0,\"18\":0,\"19\":2,\"20\":0,\"21\":5,\"22\":0,\"23\":0,\"24\":1,\"25\":0,\"26\":0,\"27\":1,\"28\":0,\"29\":0,\"30\":4,\"31\":0,\"32\":0,\"33\":2,\"34\":0,\"35\":1,\"36\":0,\"37\":0,\"38\":0,\"39\":0,\"40\":0,\"41\":0,\"42\":2,\"43\":0,\"44\":4,\"45\":91,\"46\":1,\"47\":1,\"48\":3,\"49\":2,\"50\":1,\"51\":0,\"52\":0,\"53\":0,\"54\":7,\"55\":0,\"56\":0,\"57\":0,\"58\":0,\"59\":0,\"60\":0,\"61\":1,\"62\":0,\"63\":0,\"64\":1,\"65\":0,\"66\":0,\"67\":0,\"68\":25,\"69\":0,\"70\":4,\"71\":1,\"72\":0,\"73\":0,\"74\":1,\"75\":0,\"76\":0,\"77\":0,\"78\":0,\"79\":10,\"80\":31,\"81\":0,\"82\":0,\"83\":0,\"84\":0,\"85\":0,\"86\":0,\"87\":0,\"88\":0,\"89\":0,\"90\":0,\"91\":0,\"92\":0,\"93\":0,\"94\":0,\"95\":0,\"96\":0,\"97\":0,\"98\":0,\"99\":0,\"100\":0,\"101\":0,\"102\":0,\"103\":0,\"104\":1,\"105\":0,\"106\":0,\"107\":0,\"108\":0,\"109\":1,\"110\":5,\"111\":0,\"112\":0,\"113\":0,\"114\":0,\"115\":11,\"116\":0,\"117\":0,\"118\":3,\"119\":6,\"120\":0,\"121\":0,\"122\":0,\"123\":0,\"124\":1,\"125\":0,\"126\":0,\"127\":0,\"128\":0,\"129\":0,\"130\":0,\"131\":5,\"132\":0,\"133\":0,\"134\":2,\"135\":2,\"136\":1,\"137\":0,\"138\":0,\"139\":0,\"140\":0,\"141\":0,\"142\":3,\"143\":0,\"144\":0,\"145\":0,\"146\":1,\"147\":0,\"148\":5,\"149\":0,\"150\":1,\"151\":0,\"152\":0,\"153\":0,\"154\":4,\"155\":0,\"156\":0,\"157\":5,\"158\":0,\"159\":0,\"160\":5,\"161\":10,\"162\":0,\"163\":3,\"164\":0,\"165\":3,\"166\":3,\"167\":4,\"168\":4,\"169\":0,\"170\":0,\"171\":0,\"172\":0,\"173\":0,\"174\":2,\"175\":0,\"176\":0,\"177\":0,\"178\":0,\"179\":3,\"180\":0,\"181\":0,\"182\":2,\"183\":0,\"184\":0,\"185\":0,\"186\":0,\"187\":33,\"188\":0,\"189\":0,\"190\":1,\"191\":0,\"192\":4,\"193\":0,\"194\":0,\"195\":5,\"196\":0,\"197\":0,\"198\":0,\"199\":0,\"200\":0,\"201\":0,\"202\":0,\"203\":0,\"204\":0,\"205\":2,\"206\":0,\"207\":0,\"208\":1,\"209\":1,\"210\":1,\"211\":0,\"212\":0,\"213\":0,\"214\":1,\"215\":0,\"216\":1,\"217\":10,\"218\":4,\"219\":0,\"220\":0,\"221\":0,\"222\":0,\"223\":4,\"224\":0,\"225\":9,\"226\":0,\"227\":0,\"228\":0,\"229\":1,\"230\":1,\"231\":1,\"232\":0,\"233\":1,\"234\":0,\"235\":0,\"236\":0,\"237\":0,\"238\":1,\"239\":1,\"240\":0,\"241\":1,\"242\":1,\"243\":2,\"244\":1,\"245\":0,\"246\":0,\"247\":0,\"248\":8,\"249\":0,\"250\":26,\"251\":0,\"252\":26,\"253\":9,\"254\":1,\"255\":0,\"256\":1,\"257\":0,\"258\":0,\"259\":0,\"260\":0,\"261\":0,\"262\":0,\"263\":0,\"264\":0,\"265\":0,\"266\":0,\"267\":2,\"268\":0,\"269\":1,\"270\":3,\"271\":0,\"272\":0,\"273\":0,\"274\":0,\"275\":0,\"276\":0,\"277\":0,\"278\":1,\"279\":0,\"280\":0,\"281\":0,\"282\":0,\"283\":0,\"284\":0,\"285\":0,\"286\":0,\"287\":0,\"288\":0,\"289\":0,\"290\":0,\"291\":0,\"292\":0,\"293\":0,\"294\":1,\"295\":34,\"296\":0,\"297\":0,\"298\":0,\"299\":2,\"300\":0,\"301\":0,\"302\":1,\"303\":3,\"304\":3,\"305\":0,\"306\":0,\"307\":0,\"308\":0,\"309\":0,\"310\":0,\"311\":0,\"312\":0,\"313\":2,\"314\":2,\"315\":0,\"316\":1,\"317\":3,\"318\":2,\"319\":0,\"320\":3,\"321\":0,\"322\":4,\"323\":2,\"324\":2,\"325\":4,\"326\":0,\"327\":0,\"328\":0,\"329\":0,\"330\":0,\"331\":5,\"332\":1,\"333\":5,\"334\":7,\"335\":0,\"336\":0,\"337\":0,\"338\":0,\"339\":1,\"340\":0,\"341\":0,\"342\":1,\"343\":3,\"344\":0,\"345\":0,\"346\":0,\"347\":1,\"348\":0,\"349\":0,\"350\":1,\"351\":1,\"352\":0,\"353\":0,\"354\":0,\"355\":0,\"356\":0,\"357\":0,\"358\":0,\"359\":1,\"360\":0,\"361\":0,\"362\":0,\"363\":0,\"364\":0,\"365\":0,\"366\":1,\"367\":0,\"368\":0,\"369\":0,\"370\":1,\"371\":0,\"372\":7,\"373\":0,\"374\":0,\"375\":0,\"376\":0,\"377\":1,\"378\":10,\"379\":0,\"380\":4,\"381\":0,\"382\":0,\"383\":0,\"384\":136,\"385\":0,\"386\":3,\"387\":0,\"388\":0,\"389\":0,\"390\":0,\"391\":0,\"392\":0,\"393\":0,\"394\":4,\"395\":1,\"396\":0,\"397\":0,\"398\":0,\"399\":2,\"400\":4,\"401\":0,\"402\":0,\"403\":0,\"404\":1,\"405\":0,\"406\":0,\"407\":0,\"408\":0,\"409\":0,\"410\":0,\"411\":0,\"412\":0,\"413\":0,\"414\":0,\"415\":0,\"416\":0,\"417\":1,\"418\":0,\"419\":0,\"420\":1,\"421\":0,\"422\":2,\"423\":0,\"424\":0,\"425\":0,\"426\":1,\"427\":0,\"428\":0,\"429\":15,\"430\":0,\"431\":0,\"432\":1,\"433\":1,\"434\":0,\"435\":0,\"436\":0,\"437\":0,\"438\":21,\"439\":4,\"440\":0,\"441\":0,\"442\":1,\"443\":0,\"444\":1,\"445\":1,\"446\":2,\"447\":0,\"448\":0,\"449\":0,\"450\":0,\"451\":25,\"452\":0,\"453\":0,\"454\":2,\"455\":0,\"456\":0,\"457\":0,\"458\":0,\"459\":3,\"460\":2,\"461\":4,\"462\":2,\"463\":4,\"464\":3,\"465\":1,\"466\":0,\"467\":0,\"468\":0,\"469\":2,\"470\":0,\"471\":0,\"472\":1,\"473\":1,\"474\":0,\"475\":0,\"476\":1,\"477\":0,\"478\":1,\"479\":0,\"480\":0,\"481\":0,\"482\":0,\"483\":0,\"484\":0,\"485\":5,\"486\":0,\"487\":0,\"488\":0,\"489\":0,\"490\":0,\"491\":0,\"492\":0,\"493\":0,\"494\":0,\"495\":0,\"496\":0,\"497\":0,\"498\":0,\"499\":0,\"500\":1,\"501\":0,\"502\":0,\"503\":1,\"504\":2,\"505\":2,\"506\":0,\"507\":0,\"508\":0,\"509\":0,\"510\":4,\"511\":0,\"512\":1,\"513\":0,\"514\":3,\"515\":0,\"516\":0,\"517\":0,\"518\":1,\"519\":0,\"520\":0,\"521\":0,\"522\":14,\"523\":0,\"524\":0,\"525\":0,\"526\":6,\"527\":0,\"528\":3,\"529\":0,\"530\":0,\"531\":1,\"532\":0,\"533\":0,\"534\":0,\"535\":1,\"536\":0,\"537\":0,\"538\":0,\"539\":0,\"540\":0,\"541\":0,\"542\":0,\"543\":0,\"544\":1,\"545\":0,\"546\":0,\"547\":2,\"548\":0,\"549\":7,\"550\":0,\"551\":0,\"552\":0,\"553\":1,\"554\":1,\"555\":0,\"556\":0,\"557\":1,\"558\":0,\"559\":0,\"560\":0,\"561\":0,\"562\":0,\"563\":24,\"564\":0,\"565\":2,\"566\":16,\"567\":0,\"568\":0,\"569\":0,\"570\":0,\"571\":1,\"572\":0,\"573\":0,\"574\":8,\"575\":0,\"576\":4,\"577\":0,\"578\":0,\"579\":1,\"580\":0,\"581\":0,\"582\":0,\"583\":0,\"584\":7,\"585\":0,\"586\":0,\"587\":3,\"588\":0,\"589\":0,\"590\":0,\"591\":4,\"592\":0,\"593\":0,\"594\":0,\"595\":1,\"596\":0,\"597\":0,\"598\":0,\"599\":1,\"600\":0,\"601\":0,\"602\":0,\"603\":0,\"604\":0,\"605\":2,\"606\":1,\"607\":0,\"608\":0,\"609\":1,\"610\":0,\"611\":0,\"612\":0,\"613\":1,\"614\":1,\"615\":0,\"616\":1,\"617\":0,\"618\":11,\"619\":0,\"620\":0,\"621\":0,\"622\":0,\"623\":1,\"624\":5,\"625\":0,\"626\":0,\"627\":4,\"628\":1,\"629\":21,\"630\":0,\"631\":14,\"632\":1,\"633\":0,\"634\":0,\"635\":0,\"636\":2,\"637\":0,\"638\":2,\"639\":0,\"640\":1,\"641\":0,\"642\":0,\"643\":0,\"644\":1,\"645\":3,\"646\":0,\"647\":0,\"648\":0,\"649\":1,\"650\":0,\"651\":1,\"652\":0,\"653\":1,\"654\":0,\"655\":0,\"656\":0,\"657\":0,\"658\":35,\"659\":0,\"660\":0,\"661\":0,\"662\":0,\"663\":4,\"664\":3,\"665\":0,\"666\":0,\"667\":0,\"668\":0,\"669\":0,\"670\":0,\"671\":1,\"672\":0,\"673\":1,\"674\":0,\"675\":0,\"676\":2,\"677\":0,\"678\":0,\"679\":0,\"680\":0,\"681\":0,\"682\":0,\"683\":0,\"684\":1,\"685\":0,\"686\":0,\"687\":0,\"688\":0,\"689\":0,\"690\":0,\"691\":0,\"692\":0,\"693\":0,\"694\":0,\"695\":0,\"696\":0,\"697\":8,\"698\":1,\"699\":0,\"700\":1,\"701\":0,\"702\":2,\"703\":0,\"704\":0,\"705\":0,\"706\":0,\"707\":3,\"708\":3,\"709\":1,\"710\":0,\"711\":0,\"712\":0,\"713\":0,\"714\":0,\"715\":0,\"716\":0,\"717\":0,\"718\":0,\"719\":0,\"720\":0,\"721\":1,\"722\":3,\"723\":3,\"724\":2,\"725\":0,\"726\":3,\"727\":5,\"728\":0,\"729\":0,\"730\":2,\"731\":0,\"732\":0,\"733\":0,\"734\":0,\"735\":1,\"736\":0,\"737\":2,\"738\":0,\"739\":0,\"740\":0,\"741\":0,\"742\":0,\"743\":0,\"744\":0,\"745\":0,\"746\":0,\"747\":0,\"748\":0,\"749\":0,\"750\":0,\"751\":0,\"752\":0,\"753\":0,\"754\":0,\"755\":0,\"756\":0,\"757\":0,\"758\":0,\"759\":0,\"760\":0,\"761\":0,\"762\":5,\"763\":0,\"764\":5,\"765\":7,\"766\":0,\"767\":0,\"768\":0,\"769\":0,\"770\":0,\"771\":0,\"772\":0,\"773\":0,\"774\":0,\"775\":0,\"776\":0,\"777\":0,\"778\":0,\"779\":0,\"780\":0,\"781\":0,\"782\":0,\"783\":0,\"784\":0,\"785\":0,\"786\":0,\"787\":0,\"788\":0,\"789\":0,\"790\":0,\"791\":0,\"792\":0,\"793\":1,\"794\":0,\"795\":0,\"796\":0,\"797\":0,\"798\":0,\"799\":2,\"800\":0,\"801\":0,\"802\":0,\"803\":3,\"804\":0,\"805\":0,\"806\":0,\"807\":0,\"808\":0,\"809\":0,\"810\":0,\"811\":1,\"812\":1,\"813\":0,\"814\":0,\"815\":1,\"816\":1,\"817\":0,\"818\":1,\"819\":0,\"820\":0,\"821\":0,\"822\":0,\"823\":0,\"824\":2,\"825\":1,\"826\":1,\"827\":0,\"828\":0,\"829\":0,\"830\":0,\"831\":0,\"832\":0,\"833\":1,\"834\":0,\"835\":0,\"836\":0,\"837\":0,\"838\":0,\"839\":0,\"840\":0,\"841\":0,\"842\":0,\"843\":0,\"844\":0,\"845\":0,\"846\":0,\"847\":0,\"848\":0,\"849\":41,\"850\":0,\"851\":0,\"852\":0,\"853\":3,\"854\":1,\"855\":0,\"856\":0,\"857\":0,\"858\":0,\"859\":4,\"860\":6,\"861\":0,\"862\":0,\"863\":0,\"864\":0,\"865\":0,\"866\":0,\"867\":0,\"868\":0,\"869\":0,\"870\":8,\"871\":0,\"872\":0,\"873\":0,\"874\":1,\"875\":0,\"876\":0,\"877\":0,\"878\":8,\"879\":0,\"880\":10,\"881\":0,\"882\":1,\"883\":0,\"884\":1,\"885\":0,\"886\":3,\"887\":1,\"888\":0,\"889\":0,\"890\":0,\"891\":1,\"892\":0,\"893\":0,\"894\":0,\"895\":3,\"896\":1,\"897\":3,\"898\":0,\"899\":0,\"900\":1,\"901\":0,\"902\":1,\"903\":0,\"904\":0,\"905\":3,\"906\":1,\"907\":1,\"908\":1,\"909\":1,\"910\":5,\"911\":1,\"912\":4,\"913\":0,\"914\":0,\"915\":0,\"916\":2,\"917\":5,\"918\":0,\"919\":2,\"920\":0,\"921\":0,\"922\":0,\"923\":0,\"924\":5,\"925\":1,\"926\":1,\"927\":0,\"928\":0,\"929\":0,\"930\":0,\"931\":2,\"932\":1,\"933\":3,\"934\":0,\"935\":0,\"936\":0,\"937\":0,\"938\":0,\"939\":20,\"940\":1,\"941\":0,\"942\":0,\"943\":0,\"944\":0,\"945\":0,\"946\":2,\"947\":3,\"948\":0,\"949\":0,\"950\":0,\"951\":0,\"952\":0,\"953\":0,\"954\":3,\"955\":2,\"956\":0,\"957\":0,\"958\":1,\"959\":0,\"960\":0,\"961\":1,\"962\":0,\"963\":0,\"964\":0,\"965\":4,\"966\":1,\"967\":1,\"968\":1,\"969\":0,\"970\":0,\"971\":1,\"972\":0,\"973\":0,\"974\":0,\"975\":0,\"976\":2,\"977\":0,\"978\":2,\"979\":0,\"980\":0,\"981\":1,\"982\":0,\"983\":0,\"984\":6,\"985\":0,\"986\":0,\"987\":0,\"988\":1,\"989\":0,\"990\":0,\"991\":0,\"992\":1,\"993\":0,\"994\":0,\"995\":0,\"996\":1,\"997\":0,\"998\":0,\"999\":0,\"1000\":0,\"1001\":0,\"1002\":0,\"1003\":0,\"1004\":0,\"1005\":0,\"1006\":1,\"1007\":0,\"1008\":1,\"1009\":1,\"1010\":0,\"1011\":1,\"1012\":0,\"1013\":1,\"1014\":0,\"1015\":1,\"1016\":0,\"1017\":1,\"1018\":0,\"1019\":9,\"1020\":3,\"1021\":1,\"1022\":0,\"1023\":0,\"1024\":9,\"1025\":0,\"1026\":0,\"1027\":0,\"1028\":3,\"1029\":0,\"1030\":1,\"1031\":0,\"1032\":0,\"1033\":0,\"1034\":0,\"1035\":3,\"1036\":0,\"1037\":1,\"1038\":2,\"1039\":0,\"1040\":2,\"1041\":0,\"1042\":0,\"1043\":1,\"1044\":2,\"1045\":0,\"1046\":0,\"1047\":0,\"1048\":0,\"1049\":0,\"1050\":15,\"1051\":4,\"1052\":0,\"1053\":0,\"1054\":2,\"1055\":0,\"1056\":1,\"1057\":0,\"1058\":0,\"1059\":1,\"1060\":2,\"1061\":4,\"1062\":0,\"1063\":0,\"1064\":0,\"1065\":2,\"1066\":0,\"1067\":0,\"1068\":0,\"1069\":0,\"1070\":0,\"1071\":0,\"1072\":0,\"1073\":1,\"1074\":0,\"1075\":0,\"1076\":0,\"1077\":0,\"1078\":1,\"1079\":87,\"1080\":1,\"1081\":5,\"1082\":0,\"1083\":0,\"1084\":0,\"1085\":1,\"1086\":3,\"1087\":2,\"1088\":0,\"1089\":1,\"1090\":0,\"1091\":1,\"1092\":0,\"1093\":0,\"1094\":0,\"1095\":4,\"1096\":0,\"1097\":0,\"1098\":0,\"1099\":0,\"1100\":0,\"1101\":0,\"1102\":25,\"1103\":0,\"1104\":0,\"1105\":0,\"1106\":0,\"1107\":0,\"1108\":0,\"1109\":0,\"1110\":0,\"1111\":0,\"1112\":0,\"1113\":0,\"1114\":0,\"1115\":0,\"1116\":0,\"1117\":0,\"1118\":0,\"1119\":0,\"1120\":0,\"1121\":0,\"1122\":0,\"1123\":0,\"1124\":1,\"1125\":0,\"1126\":1,\"1127\":0,\"1128\":43,\"1129\":3,\"1130\":0,\"1131\":2,\"1132\":0,\"1133\":0,\"1134\":0,\"1135\":0,\"1136\":0,\"1137\":4,\"1138\":1,\"1139\":2,\"1140\":0,\"1141\":3,\"1142\":0,\"1143\":0,\"1144\":0,\"1145\":0,\"1146\":0,\"1147\":0,\"1148\":0,\"1149\":0,\"1150\":0,\"1151\":0,\"1152\":0,\"1153\":0,\"1154\":0,\"1155\":0,\"1156\":0,\"1157\":3,\"1158\":0,\"1159\":0,\"1160\":0,\"1161\":0,\"1162\":1,\"1163\":0,\"1164\":3,\"1165\":0,\"1166\":0,\"1167\":0,\"1168\":3,\"1169\":0,\"1170\":0,\"1171\":2,\"1172\":1,\"1173\":0,\"1174\":1,\"1175\":0,\"1176\":0,\"1177\":0,\"1178\":0,\"1179\":10,\"1180\":0,\"1181\":0,\"1182\":1,\"1183\":0,\"1184\":1,\"1185\":1,\"1186\":0,\"1187\":2,\"1188\":0,\"1189\":0,\"1190\":1,\"1191\":0,\"1192\":0,\"1193\":1,\"1194\":0,\"1195\":0,\"1196\":0,\"1197\":0,\"1198\":1,\"1199\":0,\"1200\":1,\"1201\":4,\"1202\":4,\"1203\":5,\"1204\":0,\"1205\":0,\"1206\":0,\"1207\":0,\"1208\":0,\"1209\":4,\"1210\":0,\"1211\":0,\"1212\":0,\"1213\":0,\"1214\":0,\"1215\":1,\"1216\":0,\"1217\":1,\"1218\":0,\"1219\":0,\"1220\":0,\"1221\":0,\"1222\":0,\"1223\":0,\"1224\":4,\"1225\":0,\"1226\":0,\"1227\":1,\"1228\":0,\"1229\":2,\"1230\":1,\"1231\":0,\"1232\":1,\"1233\":1,\"1234\":1,\"1235\":1,\"1236\":1,\"1237\":1,\"1238\":0,\"1239\":0,\"1240\":1,\"1241\":0,\"1242\":1,\"1243\":1,\"1244\":0,\"1245\":0,\"1246\":1,\"1247\":0,\"1248\":0,\"1249\":0,\"1250\":0,\"1251\":0,\"1252\":1,\"1253\":1,\"1254\":1,\"1255\":1,\"1256\":0,\"1257\":0,\"1258\":0,\"1259\":0,\"1260\":1,\"1261\":2,\"1262\":0,\"1263\":7,\"1264\":0,\"1265\":1,\"1266\":0,\"1267\":0,\"1268\":1,\"1269\":2,\"1270\":1,\"1271\":4,\"1272\":1,\"1273\":1,\"1274\":0,\"1275\":0,\"1276\":0,\"1277\":0,\"1278\":0,\"1279\":0,\"1280\":4,\"1281\":1,\"1282\":0,\"1283\":0,\"1284\":460,\"1285\":1,\"1286\":0,\"1287\":8,\"1288\":0,\"1289\":0,\"1290\":0,\"1291\":0,\"1292\":0,\"1293\":0,\"1294\":0,\"1295\":0,\"1296\":9,\"1297\":0,\"1298\":0,\"1299\":2,\"1300\":4,\"1301\":0,\"1302\":0,\"1303\":1,\"1304\":0,\"1305\":0,\"1306\":0,\"1307\":0,\"1308\":1,\"1309\":0,\"1310\":19,\"1311\":0,\"1312\":0,\"1313\":0,\"1314\":0,\"1315\":0,\"1316\":0,\"1317\":2,\"1318\":2,\"1319\":0,\"1320\":1,\"1321\":9,\"1322\":0,\"1323\":0,\"1324\":1,\"1325\":0,\"1326\":0,\"1327\":0,\"1328\":0,\"1329\":0,\"1330\":7,\"1331\":0,\"1332\":0,\"1333\":0,\"1334\":0,\"1335\":12,\"1336\":0,\"1337\":3,\"1338\":0,\"1339\":7,\"1340\":0,\"1341\":0,\"1342\":2,\"1343\":3,\"1344\":5,\"1345\":0,\"1346\":1,\"1347\":2,\"1348\":1,\"1349\":1,\"1350\":1,\"1351\":0,\"1352\":1,\"1353\":0,\"1354\":4,\"1355\":0,\"1356\":0,\"1357\":0,\"1358\":0,\"1359\":7,\"1360\":1,\"1361\":0,\"1362\":0,\"1363\":26,\"1364\":0,\"1365\":0,\"1366\":0,\"1367\":0,\"1368\":0,\"1369\":0,\"1370\":0,\"1371\":0,\"1372\":0,\"1373\":2,\"1374\":0,\"1375\":0,\"1376\":0,\"1377\":1,\"1378\":0,\"1379\":0,\"1380\":0,\"1381\":0,\"1382\":0,\"1383\":0,\"1384\":0,\"1385\":1,\"1386\":1,\"1387\":275,\"1388\":0,\"1389\":0,\"1390\":0,\"1391\":1,\"1392\":1,\"1393\":0,\"1394\":1,\"1395\":0,\"1396\":0,\"1397\":1,\"1398\":0,\"1399\":1,\"1400\":1,\"1401\":0,\"1402\":0,\"1403\":0,\"1404\":1,\"1405\":0,\"1406\":0,\"1407\":1,\"1408\":0,\"1409\":1,\"1410\":1,\"1411\":0,\"1412\":0,\"1413\":0,\"1414\":0,\"1415\":0,\"1416\":0,\"1417\":4,\"1418\":4,\"1419\":6,\"1420\":4,\"1421\":0,\"1422\":0,\"1423\":0,\"1424\":0,\"1425\":0,\"1426\":1,\"1427\":8,\"1428\":0,\"1429\":1,\"1430\":0,\"1431\":0,\"1432\":6,\"1433\":2,\"1434\":22,\"1435\":4,\"1436\":0,\"1437\":1,\"1438\":0,\"1439\":0,\"1440\":0,\"1441\":0,\"1442\":0,\"1443\":0,\"1444\":0,\"1445\":0,\"1446\":0,\"1447\":0,\"1448\":0,\"1449\":0,\"1450\":0,\"1451\":0,\"1452\":2,\"1453\":0,\"1454\":9,\"1455\":0,\"1456\":1,\"1457\":1,\"1458\":0,\"1459\":1,\"1460\":0,\"1461\":0,\"1462\":0,\"1463\":0,\"1464\":1,\"1465\":0,\"1466\":0,\"1467\":5,\"1468\":1,\"1469\":0,\"1470\":0,\"1471\":1,\"1472\":0,\"1473\":0,\"1474\":0,\"1475\":0,\"1476\":0,\"1477\":0,\"1478\":0,\"1479\":0,\"1480\":0,\"1481\":0,\"1482\":2,\"1483\":0,\"1484\":0,\"1485\":0,\"1486\":0,\"1487\":0,\"1488\":0,\"1489\":0,\"1490\":0,\"1491\":0,\"1492\":2,\"1493\":0,\"1494\":0,\"1495\":0,\"1496\":1,\"1497\":0,\"1498\":0,\"1499\":0,\"1500\":0,\"1501\":1,\"1502\":5,\"1503\":0,\"1504\":1,\"1505\":5,\"1506\":0,\"1507\":0,\"1508\":4,\"1509\":0,\"1510\":0,\"1511\":3,\"1512\":0,\"1513\":1,\"1514\":0,\"1515\":0,\"1516\":0,\"1517\":0,\"1518\":0,\"1519\":0,\"1520\":0,\"1521\":0,\"1522\":3,\"1523\":1,\"1524\":0,\"1525\":1,\"1526\":3,\"1527\":0,\"1528\":0,\"1529\":1,\"1530\":0,\"1531\":0,\"1532\":0,\"1533\":0,\"1534\":5,\"1535\":0,\"1536\":0,\"1537\":7,\"1538\":0,\"1539\":0,\"1540\":0,\"1541\":7,\"1542\":1,\"1543\":0,\"1544\":0,\"1545\":0,\"1546\":1,\"1547\":29,\"1548\":1,\"1549\":0,\"1550\":26,\"1551\":1,\"1552\":9,\"1553\":0,\"1554\":0,\"1555\":1,\"1556\":0,\"1557\":1,\"1558\":0,\"1559\":1,\"1560\":0,\"1561\":3,\"1562\":1,\"1563\":0,\"1564\":45,\"1565\":0,\"1566\":0,\"1567\":1,\"1568\":0,\"1569\":0,\"1570\":0,\"1571\":0,\"1572\":0,\"1573\":2,\"1574\":0,\"1575\":1,\"1576\":0,\"1577\":1,\"1578\":0,\"1579\":0,\"1580\":23,\"1581\":2,\"1582\":25,\"1583\":0,\"1584\":0,\"1585\":5,\"1586\":0,\"1587\":1,\"1588\":2,\"1589\":0,\"1590\":18,\"1591\":1,\"1592\":0,\"1593\":1,\"1594\":0,\"1595\":1,\"1596\":0,\"1597\":0,\"1598\":10,\"1599\":138,\"1600\":1,\"1601\":2,\"1602\":2,\"1603\":0,\"1604\":2,\"1605\":0,\"1606\":0,\"1607\":1460,\"1608\":1,\"1609\":1,\"1610\":3,\"1611\":0,\"1612\":0,\"1613\":81,\"1614\":3,\"1615\":0,\"1616\":0,\"1617\":0,\"1618\":0,\"1619\":0,\"1620\":0,\"1621\":1,\"1622\":0,\"1623\":0,\"1624\":1,\"1625\":0,\"1626\":2,\"1627\":5,\"1628\":1,\"1629\":3,\"1630\":4,\"1631\":0,\"1632\":0,\"1633\":2,\"1634\":0,\"1635\":2,\"1636\":2,\"1637\":0,\"1638\":1,\"1639\":5,\"1640\":0,\"1641\":4,\"1642\":0,\"1643\":1,\"1644\":4,\"1645\":2,\"1646\":0,\"1647\":0,\"1648\":0,\"1649\":1,\"1650\":0,\"1651\":0,\"1652\":0,\"1653\":0,\"1654\":0,\"1655\":0,\"1656\":0,\"1657\":2,\"1658\":0,\"1659\":2,\"1660\":0,\"1661\":1,\"1662\":3,\"1663\":1,\"1664\":1,\"1665\":1,\"1666\":0,\"1667\":7,\"1668\":1,\"1669\":2,\"1670\":0,\"1671\":0,\"1672\":0,\"1673\":1,\"1674\":0,\"1675\":0,\"1676\":1,\"1677\":0,\"1678\":0,\"1679\":0,\"1680\":0,\"1681\":0,\"1682\":0,\"1683\":1,\"1684\":6,\"1685\":0,\"1686\":0,\"1687\":0,\"1688\":3,\"1689\":2,\"1690\":1,\"1691\":0,\"1692\":0,\"1693\":0,\"1694\":0,\"1695\":5,\"1696\":0,\"1697\":1,\"1698\":0,\"1699\":0,\"1700\":0,\"1701\":0,\"1702\":5,\"1703\":0,\"1704\":5,\"1705\":0,\"1706\":0,\"1707\":1,\"1708\":3,\"1709\":1,\"1710\":3,\"1711\":0,\"1712\":57,\"1713\":1,\"1714\":2,\"1715\":0,\"1716\":0,\"1717\":25,\"1718\":1,\"1719\":3,\"1720\":6,\"1721\":0,\"1722\":3,\"1723\":0,\"1724\":0,\"1725\":2,\"1726\":0,\"1727\":611,\"1728\":1,\"1729\":65,\"1730\":0,\"1731\":63,\"1732\":1,\"1733\":1,\"1734\":3,\"1735\":1,\"1736\":0,\"1737\":3,\"1738\":0,\"1739\":0,\"1740\":1,\"1741\":0,\"1742\":6,\"1743\":0,\"1744\":1,\"1745\":0,\"1746\":2,\"1747\":0,\"1748\":6,\"1749\":713,\"1750\":0,\"1751\":2,\"1752\":0,\"1753\":0,\"1754\":0,\"1755\":0,\"1756\":0,\"1757\":5,\"1758\":1,\"1759\":3,\"1760\":0,\"1761\":0,\"1762\":2,\"1763\":2,\"1764\":0,\"1765\":6,\"1766\":0,\"1767\":1,\"1768\":6,\"1769\":0,\"1770\":1,\"1771\":5,\"1772\":0,\"1773\":1,\"1774\":3,\"1775\":0,\"1776\":93,\"1777\":1,\"1778\":1,\"1779\":0,\"1780\":0,\"1781\":3,\"1782\":1,\"1783\":6,\"1784\":0,\"1785\":5,\"1786\":2,\"1787\":0,\"1788\":1,\"1789\":0,\"1790\":0,\"1791\":6,\"1792\":0,\"1793\":0,\"1794\":1,\"1795\":0,\"1796\":0,\"1797\":0,\"1798\":1,\"1799\":1,\"1800\":0,\"1801\":0,\"1802\":1,\"1803\":0,\"1804\":0,\"1805\":0,\"1806\":0,\"1807\":1,\"1808\":0,\"1809\":5,\"1810\":3,\"1811\":0,\"1812\":4,\"1813\":0,\"1814\":30,\"1815\":1,\"1816\":0,\"1817\":8,\"1818\":0,\"1819\":1,\"1820\":3,\"1821\":3,\"1822\":2,\"1823\":1,\"1824\":0,\"1825\":0,\"1826\":1,\"1827\":0,\"1828\":9,\"1829\":0,\"1830\":0,\"1831\":0,\"1832\":0,\"1833\":0,\"1834\":0,\"1835\":0,\"1836\":0,\"1837\":0,\"1838\":0,\"1839\":0,\"1840\":4,\"1841\":0,\"1842\":0,\"1843\":0,\"1844\":0,\"1845\":0,\"1846\":0,\"1847\":0,\"1848\":0,\"1849\":0,\"1850\":0,\"1851\":0,\"1852\":0,\"1853\":0,\"1854\":2,\"1855\":2,\"1856\":0,\"1857\":0,\"1858\":0,\"1859\":0,\"1860\":0,\"1861\":0,\"1862\":1,\"1863\":0,\"1864\":0,\"1865\":0,\"1866\":0,\"1867\":0,\"1868\":0,\"1869\":0,\"1870\":0,\"1871\":2,\"1872\":0,\"1873\":0,\"1874\":0,\"1875\":0,\"1876\":4,\"1877\":0,\"1878\":1,\"1879\":0,\"1880\":37,\"1881\":0,\"1882\":3,\"1883\":1,\"1884\":0,\"1885\":0,\"1886\":0,\"1887\":0,\"1888\":12,\"1889\":0,\"1890\":0,\"1891\":0,\"1892\":0,\"1893\":0,\"1894\":0,\"1895\":1,\"1896\":0,\"1897\":10,\"1898\":0,\"1899\":2,\"1900\":0,\"1901\":0,\"1902\":0,\"1903\":3,\"1904\":1,\"1905\":0,\"1906\":3,\"1907\":0,\"1908\":0,\"1909\":4,\"1910\":0,\"1911\":0,\"1912\":7,\"1913\":0,\"1914\":0,\"1915\":0,\"1916\":0,\"1917\":0,\"1918\":0,\"1919\":1,\"1920\":0,\"1921\":0,\"1922\":0,\"1923\":0,\"1924\":0,\"1925\":0,\"1926\":0,\"1927\":0,\"1928\":0,\"1929\":1,\"1930\":0,\"1931\":0,\"1932\":0,\"1933\":0,\"1934\":0,\"1935\":0,\"1936\":0,\"1937\":0,\"1938\":0,\"1939\":0,\"1940\":5,\"1941\":0,\"1942\":0,\"1943\":0,\"1944\":0,\"1945\":0,\"1946\":0,\"1947\":0,\"1948\":0,\"1949\":1,\"1950\":0,\"1951\":0,\"1952\":0,\"1953\":0,\"1954\":0,\"1955\":0,\"1956\":1,\"1957\":0,\"1958\":1,\"1959\":0,\"1960\":0,\"1961\":0,\"1962\":0,\"1963\":0,\"1964\":0,\"1965\":0,\"1966\":0,\"1967\":0,\"1968\":0,\"1969\":0,\"1970\":0,\"1971\":0,\"1972\":0,\"1973\":0,\"1974\":0,\"1975\":0,\"1976\":0,\"1977\":0,\"1978\":0,\"1979\":0,\"1980\":0,\"1981\":0,\"1982\":0,\"1983\":0,\"1984\":0,\"1985\":0,\"1986\":0,\"1987\":0,\"1988\":0,\"1989\":0,\"1990\":0,\"1991\":0,\"1992\":0,\"1993\":0,\"1994\":0,\"1995\":0,\"1996\":0,\"1997\":0,\"1998\":0,\"1999\":0,\"2000\":0,\"2001\":0,\"2002\":0,\"2003\":0,\"2004\":0,\"2005\":0,\"2006\":1,\"2007\":0,\"2008\":0,\"2009\":1,\"2010\":0,\"2011\":0,\"2012\":1,\"2013\":0,\"2014\":1,\"2015\":0,\"2016\":0,\"2017\":0,\"2018\":0,\"2019\":0,\"2020\":0,\"2021\":0,\"2022\":0,\"2023\":0,\"2024\":0,\"2025\":0,\"2026\":0,\"2027\":0,\"2028\":0,\"2029\":0,\"2030\":0,\"2031\":0,\"2032\":0,\"2033\":0,\"2034\":0,\"2035\":0,\"2036\":0,\"2037\":0,\"2038\":0,\"2039\":0,\"2040\":0,\"2041\":0,\"2042\":0,\"2043\":0,\"2044\":0,\"2045\":0,\"2046\":0,\"2047\":0,\"2048\":0,\"2049\":0,\"2050\":0,\"2051\":0,\"2052\":0,\"2053\":0,\"2054\":0,\"2055\":2,\"2056\":0,\"2057\":0,\"2058\":1,\"2059\":1,\"2060\":0,\"2061\":3,\"2062\":0,\"2063\":0,\"2064\":0,\"2065\":0,\"2066\":0,\"2067\":0,\"2068\":0,\"2069\":0,\"2070\":0,\"2071\":0,\"2072\":1,\"2073\":0,\"2074\":0,\"2075\":0,\"2076\":2,\"2077\":6,\"2078\":0,\"2079\":1,\"2080\":1,\"2081\":0,\"2082\":0,\"2083\":2,\"2084\":1,\"2085\":0,\"2086\":0,\"2087\":5,\"2088\":0,\"2089\":0,\"2090\":1,\"2091\":0,\"2092\":0,\"2093\":23,\"2094\":0,\"2095\":5,\"2096\":0,\"2097\":0,\"2098\":0,\"2099\":0,\"2100\":1,\"2101\":0,\"2102\":1,\"2103\":2,\"2104\":0,\"2105\":0,\"2106\":14,\"2107\":0,\"2108\":0,\"2109\":0,\"2110\":0,\"2111\":0,\"2112\":0,\"2113\":0,\"2114\":0,\"2115\":0,\"2116\":0,\"2117\":1,\"2118\":1,\"2119\":2,\"2120\":0,\"2121\":0,\"2122\":0,\"2123\":0,\"2124\":0,\"2125\":0,\"2126\":0,\"2127\":1,\"2128\":0,\"2129\":0,\"2130\":0,\"2131\":0,\"2132\":0,\"2133\":0,\"2134\":0,\"2135\":5,\"2136\":0,\"2137\":0,\"2138\":0,\"2139\":0,\"2140\":0,\"2141\":0,\"2142\":0,\"2143\":0,\"2144\":0,\"2145\":0,\"2146\":0,\"2147\":0,\"2148\":0,\"2149\":0,\"2150\":0,\"2151\":0,\"2152\":0,\"2153\":0,\"2154\":0,\"2155\":0,\"2156\":0,\"2157\":0,\"2158\":0,\"2159\":0,\"2160\":0,\"2161\":0,\"2162\":0,\"2163\":0,\"2164\":0,\"2165\":0,\"2166\":0,\"2167\":0,\"2168\":0,\"2169\":0,\"2170\":0,\"2171\":0,\"2172\":0,\"2173\":0,\"2174\":0,\"2175\":0,\"2176\":0,\"2177\":0,\"2178\":0,\"2179\":0,\"2180\":0,\"2181\":0,\"2182\":0,\"2183\":0,\"2184\":0,\"2185\":0,\"2186\":0,\"2187\":0,\"2188\":0,\"2189\":0,\"2190\":0,\"2191\":0,\"2192\":0,\"2193\":0,\"2194\":0,\"2195\":0,\"2196\":0,\"2197\":0,\"2198\":0,\"2199\":0,\"2200\":2,\"2201\":0,\"2202\":0,\"2203\":0,\"2204\":0,\"2205\":0,\"2206\":0,\"2207\":0,\"2208\":0,\"2209\":0,\"2210\":0,\"2211\":0,\"2212\":0,\"2213\":0,\"2214\":0,\"2215\":0,\"2216\":0,\"2217\":0,\"2218\":0,\"2219\":6,\"2220\":1,\"2221\":0,\"2222\":0,\"2223\":0,\"2224\":0,\"2225\":0,\"2226\":5,\"2227\":0,\"2228\":0,\"2229\":1,\"2230\":1,\"2231\":0,\"2232\":0,\"2233\":0,\"2234\":0,\"2235\":2,\"2236\":1,\"2237\":1,\"2238\":0,\"2239\":0,\"2240\":0,\"2241\":0,\"2242\":0,\"2243\":0,\"2244\":0,\"2245\":0,\"2246\":0,\"2247\":0,\"2248\":0,\"2249\":0,\"2250\":0,\"2251\":1,\"2252\":0,\"2253\":0,\"2254\":0,\"2255\":0,\"2256\":0,\"2257\":0,\"2258\":4,\"2259\":0,\"2260\":0,\"2261\":0,\"2262\":0,\"2263\":0,\"2264\":0,\"2265\":13,\"2266\":0,\"2267\":1,\"2268\":0,\"2269\":0,\"2270\":1,\"2271\":0,\"2272\":0,\"2273\":0,\"2274\":0,\"2275\":0,\"2276\":0,\"2277\":0,\"2278\":0,\"2279\":0,\"2280\":0,\"2281\":0,\"2282\":0,\"2283\":0,\"2284\":0,\"2285\":1,\"2286\":0,\"2287\":0,\"2288\":0,\"2289\":0,\"2290\":0,\"2291\":2,\"2292\":0,\"2293\":0,\"2294\":0,\"2295\":0,\"2296\":0,\"2297\":0,\"2298\":3,\"2299\":1,\"2300\":0,\"2301\":0,\"2302\":3,\"2303\":0,\"2304\":0,\"2305\":0,\"2306\":0,\"2307\":0,\"2308\":1,\"2309\":0,\"2310\":0,\"2311\":1,\"2312\":0,\"2313\":4,\"2314\":0,\"2315\":0,\"2316\":0,\"2317\":1,\"2318\":0,\"2319\":0,\"2320\":2,\"2321\":1,\"2322\":1,\"2323\":0,\"2324\":1,\"2325\":0,\"2326\":1,\"2327\":0,\"2328\":3,\"2329\":0,\"2330\":0,\"2331\":0,\"2332\":1,\"2333\":0,\"2334\":0,\"2335\":1,\"2336\":0,\"2337\":0,\"2338\":0,\"2339\":0,\"2340\":0,\"2341\":2,\"2342\":0,\"2343\":0,\"2344\":0,\"2345\":0,\"2346\":1,\"2347\":0,\"2348\":1,\"2349\":0,\"2350\":4,\"2351\":1,\"2352\":0,\"2353\":0,\"2354\":0,\"2355\":1,\"2356\":0,\"2357\":0,\"2358\":0,\"2359\":0,\"2360\":0,\"2361\":1,\"2362\":5,\"2363\":0,\"2364\":12,\"2365\":0,\"2366\":114,\"2367\":0,\"2368\":0,\"2369\":0,\"2370\":0,\"2371\":0,\"2372\":0,\"2373\":0,\"2374\":0,\"2375\":0,\"2376\":7,\"2377\":1,\"2378\":2,\"2379\":1,\"2380\":1,\"2381\":0,\"2382\":0,\"2383\":0,\"2384\":0,\"2385\":1,\"2386\":0,\"2387\":0,\"2388\":10,\"2389\":1,\"2390\":0,\"2391\":0,\"2392\":1,\"2393\":0,\"2394\":0,\"2395\":0,\"2396\":0,\"2397\":0,\"2398\":0,\"2399\":0,\"2400\":0,\"2401\":2,\"2402\":85,\"2403\":0,\"2404\":0,\"2405\":1,\"2406\":0,\"2407\":1,\"2408\":0,\"2409\":0,\"2410\":0,\"2411\":1,\"2412\":0,\"2413\":0,\"2414\":0,\"2415\":0,\"2416\":1,\"2417\":0,\"2418\":0,\"2419\":1,\"2420\":0,\"2421\":0,\"2422\":0,\"2423\":0,\"2424\":0,\"2425\":0,\"2426\":0,\"2427\":0,\"2428\":0,\"2429\":0,\"2430\":0,\"2431\":0,\"2432\":0,\"2433\":0,\"2434\":0,\"2435\":0,\"2436\":0,\"2437\":0,\"2438\":0,\"2439\":1,\"2440\":1,\"2441\":0,\"2442\":0,\"2443\":1,\"2444\":0,\"2445\":1,\"2446\":0,\"2447\":1,\"2448\":0,\"2449\":0,\"2450\":0,\"2451\":0,\"2452\":1,\"2453\":0,\"2454\":1,\"2455\":1,\"2456\":10,\"2457\":3,\"2458\":0,\"2459\":0,\"2460\":0,\"2461\":0,\"2462\":0,\"2463\":0,\"2464\":0,\"2465\":0,\"2466\":0,\"2467\":0,\"2468\":0,\"2469\":0,\"2470\":0,\"2471\":1,\"2472\":0,\"2473\":0,\"2474\":0,\"2475\":0,\"2476\":0,\"2477\":0,\"2478\":0,\"2479\":0,\"2480\":0,\"2481\":0,\"2482\":0,\"2483\":0,\"2484\":0,\"2485\":0,\"2486\":0,\"2487\":0,\"2488\":0,\"2489\":0,\"2490\":0,\"2491\":0,\"2492\":0,\"2493\":0,\"2494\":0,\"2495\":0,\"2496\":0,\"2497\":0,\"2498\":0,\"2499\":0,\"2500\":0,\"2501\":0,\"2502\":0,\"2503\":0,\"2504\":0,\"2505\":0,\"2506\":0,\"2507\":0,\"2508\":0,\"2509\":0,\"2510\":0,\"2511\":0,\"2512\":0,\"2513\":0,\"2514\":0,\"2515\":0,\"2516\":1,\"2517\":1,\"2518\":0,\"2519\":0,\"2520\":0,\"2521\":0,\"2522\":0,\"2523\":0,\"2524\":0,\"2525\":0,\"2526\":0,\"2527\":0,\"2528\":0,\"2529\":0,\"2530\":0,\"2531\":0,\"2532\":1,\"2533\":0,\"2534\":0,\"2535\":0,\"2536\":0,\"2537\":0,\"2538\":0,\"2539\":1,\"2540\":0,\"2541\":0,\"2542\":0,\"2543\":2,\"2544\":0,\"2545\":0,\"2546\":3,\"2547\":0,\"2548\":5,\"2549\":5,\"2550\":0,\"2551\":1,\"2552\":0,\"2553\":0,\"2554\":1,\"2555\":1,\"2556\":0,\"2557\":0,\"2558\":0,\"2559\":0,\"2560\":0,\"2561\":0,\"2562\":0,\"2563\":0,\"2564\":2,\"2565\":0,\"2566\":1,\"2567\":1,\"2568\":0,\"2569\":0,\"2570\":0,\"2571\":0,\"2572\":0,\"2573\":2,\"2574\":13,\"2575\":1,\"2576\":1,\"2577\":0,\"2578\":0,\"2579\":0,\"2580\":0,\"2581\":0,\"2582\":0,\"2583\":0,\"2584\":0,\"2585\":0,\"2586\":0,\"2587\":0,\"2588\":0,\"2589\":0,\"2590\":0,\"2591\":0,\"2592\":0,\"2593\":0,\"2594\":0,\"2595\":0,\"2596\":0,\"2597\":0,\"2598\":0,\"2599\":0,\"2600\":1,\"2601\":4,\"2602\":0,\"2603\":0,\"2604\":0,\"2605\":2,\"2606\":4,\"2607\":5,\"2608\":0,\"2609\":11,\"2610\":1,\"2611\":0,\"2612\":0,\"2613\":0,\"2614\":0,\"2615\":0,\"2616\":3,\"2617\":1,\"2618\":36,\"2619\":3,\"2620\":1,\"2621\":0,\"2622\":0,\"2623\":0,\"2624\":0,\"2625\":0,\"2626\":0,\"2627\":0,\"2628\":0,\"2629\":1,\"2630\":0,\"2631\":1,\"2632\":0,\"2633\":1,\"2634\":0,\"2635\":0,\"2636\":0,\"2637\":0,\"2638\":0,\"2639\":1,\"2640\":0,\"2641\":1,\"2642\":0,\"2643\":0,\"2644\":2,\"2645\":0,\"2646\":0,\"2647\":0,\"2648\":2,\"2649\":0,\"2650\":6,\"2651\":0,\"2652\":2,\"2653\":0,\"2654\":0,\"2655\":2,\"2656\":1,\"2657\":0,\"2658\":2,\"2659\":0,\"2660\":0,\"2661\":4,\"2662\":1,\"2663\":0,\"2664\":5,\"2665\":0,\"2666\":1,\"2667\":0,\"2668\":0,\"2669\":1,\"2670\":0,\"2671\":0,\"2672\":0,\"2673\":0,\"2674\":0,\"2675\":0,\"2676\":10,\"2677\":0,\"2678\":0,\"2679\":0,\"2680\":0,\"2681\":0,\"2682\":3,\"2683\":42,\"2684\":0,\"2685\":2,\"2686\":2,\"2687\":0,\"2688\":1,\"2689\":1,\"2690\":0,\"2691\":0,\"2692\":0,\"2693\":0,\"2694\":0,\"2695\":0,\"2696\":1,\"2697\":2,\"2698\":5,\"2699\":0,\"2700\":0,\"2701\":0,\"2702\":0,\"2703\":0,\"2704\":0,\"2705\":0,\"2706\":0,\"2707\":0,\"2708\":0,\"2709\":0,\"2710\":1,\"2711\":0,\"2712\":0,\"2713\":0,\"2714\":0,\"2715\":1,\"2716\":0,\"2717\":0,\"2718\":0,\"2719\":0,\"2720\":0,\"2721\":0,\"2722\":127,\"2723\":0,\"2724\":0,\"2725\":0,\"2726\":1,\"2727\":0,\"2728\":0,\"2729\":0,\"2730\":0,\"2731\":0,\"2732\":0,\"2733\":0,\"2734\":1,\"2735\":1,\"2736\":0,\"2737\":0,\"2738\":0,\"2739\":1,\"2740\":0,\"2741\":0,\"2742\":0,\"2743\":0,\"2744\":0,\"2745\":0,\"2746\":0,\"2747\":0,\"2748\":0,\"2749\":0,\"2750\":0,\"2751\":0,\"2752\":1,\"2753\":0,\"2754\":4,\"2755\":0,\"2756\":0,\"2757\":0,\"2758\":1,\"2759\":0,\"2760\":0,\"2761\":0,\"2762\":0,\"2763\":0,\"2764\":0,\"2765\":0,\"2766\":0,\"2767\":0,\"2768\":0,\"2769\":0,\"2770\":0,\"2771\":0,\"2772\":0,\"2773\":0,\"2774\":0,\"2775\":0,\"2776\":0,\"2777\":0,\"2778\":0,\"2779\":0,\"2780\":0,\"2781\":0,\"2782\":0,\"2783\":0,\"2784\":0,\"2785\":2,\"2786\":0,\"2787\":1,\"2788\":0,\"2789\":0,\"2790\":1,\"2791\":0,\"2792\":0,\"2793\":0,\"2794\":0,\"2795\":0,\"2796\":0,\"2797\":0,\"2798\":0,\"2799\":0,\"2800\":0,\"2801\":0,\"2802\":0,\"2803\":2,\"2804\":0,\"2805\":0,\"2806\":0,\"2807\":0,\"2808\":0,\"2809\":1,\"2810\":1,\"2811\":25,\"2812\":8,\"2813\":0,\"2814\":0,\"2815\":2,\"2816\":0,\"2817\":1,\"2818\":0,\"2819\":0,\"2820\":0,\"2821\":0,\"2822\":0,\"2823\":0,\"2824\":0,\"2825\":0,\"2826\":1,\"2827\":1,\"2828\":1,\"2829\":1,\"2830\":9,\"2831\":0,\"2832\":0,\"2833\":0,\"2834\":0,\"2835\":0,\"2836\":0,\"2837\":0,\"2838\":0,\"2839\":0,\"2840\":0,\"2841\":0,\"2842\":0,\"2843\":0,\"2844\":0,\"2845\":0,\"2846\":0,\"2847\":0,\"2848\":0,\"2849\":0,\"2850\":0,\"2851\":0,\"2852\":0,\"2853\":0,\"2854\":0,\"2855\":1,\"2856\":1,\"2857\":0,\"2858\":0,\"2859\":0,\"2860\":0,\"2861\":0,\"2862\":91,\"2863\":1,\"2864\":0,\"2865\":0,\"2866\":0,\"2867\":0,\"2868\":0,\"2869\":0,\"2870\":25,\"2871\":0,\"2872\":0,\"2873\":0,\"2874\":0,\"2875\":10,\"2876\":31,\"2877\":0,\"2878\":0,\"2879\":0,\"2880\":0,\"2881\":0,\"2882\":1,\"2883\":5,\"2884\":0,\"2885\":0,\"2886\":0,\"2887\":1,\"2888\":0,\"2889\":0,\"2890\":5,\"2891\":0,\"2892\":2,\"2893\":1,\"2894\":0,\"2895\":0,\"2896\":0,\"2897\":0,\"2898\":0,\"2899\":0,\"2900\":0,\"2901\":0,\"2902\":0,\"2903\":5,\"2904\":0,\"2905\":0,\"2906\":0,\"2907\":5,\"2908\":0,\"2909\":4,\"2910\":0,\"2911\":2,\"2912\":0,\"2913\":0,\"2914\":0,\"2915\":33,\"2916\":0,\"2917\":0,\"2918\":1,\"2919\":0,\"2920\":0,\"2921\":0,\"2922\":0,\"2923\":0,\"2924\":0,\"2925\":0,\"2926\":10,\"2927\":0,\"2928\":4,\"2929\":1,\"2930\":1,\"2931\":0,\"2932\":1,\"2933\":0,\"2934\":0,\"2935\":1,\"2936\":0,\"2937\":26,\"2938\":0,\"2939\":26,\"2940\":9,\"2941\":1,\"2942\":0,\"2943\":0,\"2944\":0,\"2945\":0,\"2946\":0,\"2947\":2,\"2948\":1,\"2949\":0,\"2950\":0,\"2951\":0,\"2952\":0,\"2953\":34,\"2954\":3,\"2955\":0,\"2956\":2,\"2957\":2,\"2958\":1,\"2959\":3,\"2960\":2,\"2961\":0,\"2962\":3,\"2963\":4,\"2964\":0,\"2965\":0,\"2966\":0,\"2967\":0,\"2968\":0,\"2969\":0,\"2970\":0,\"2971\":0,\"2972\":0,\"2973\":0,\"2974\":0,\"2975\":0,\"2976\":0,\"2977\":0,\"2978\":0,\"2979\":0,\"2980\":0,\"2981\":0,\"2982\":0,\"2983\":3,\"2984\":1,\"2985\":0,\"2986\":0,\"2987\":0,\"2988\":0,\"2989\":0,\"2990\":0,\"2991\":0,\"2992\":0,\"2993\":0,\"2994\":0,\"2995\":0,\"2996\":1,\"2997\":0,\"2998\":1,\"2999\":2,\"3000\":0,\"3001\":0,\"3002\":0,\"3003\":15,\"3004\":0,\"3005\":0,\"3006\":1,\"3007\":4,\"3008\":0,\"3009\":1,\"3010\":0,\"3011\":1,\"3012\":0,\"3013\":25,\"3014\":0,\"3015\":3,\"3016\":2,\"3017\":4,\"3018\":2,\"3019\":4,\"3020\":1,\"3021\":0,\"3022\":0,\"3023\":0,\"3024\":0,\"3025\":0,\"3026\":0,\"3027\":5,\"3028\":1,\"3029\":2,\"3030\":0,\"3031\":4,\"3032\":0,\"3033\":3,\"3034\":0,\"3035\":0,\"3036\":3,\"3037\":0,\"3038\":1,\"3039\":0,\"3040\":0,\"3041\":0,\"3042\":0,\"3043\":1,\"3044\":0,\"3045\":0,\"3046\":0,\"3047\":0,\"3048\":0,\"3049\":24,\"3050\":2,\"3051\":16,\"3052\":0,\"3053\":0,\"3054\":0,\"3055\":1,\"3056\":0,\"3057\":0,\"3058\":0,\"3059\":0,\"3060\":0,\"3061\":0,\"3062\":3,\"3063\":0,\"3064\":0,\"3065\":0,\"3066\":0,\"3067\":0,\"3068\":0,\"3069\":0,\"3070\":1,\"3071\":0,\"3072\":0,\"3073\":5,\"3074\":0,\"3075\":0,\"3076\":0,\"3077\":0,\"3078\":0,\"3079\":0,\"3080\":0,\"3081\":0,\"3082\":35,\"3083\":0,\"3084\":0,\"3085\":3,\"3086\":0,\"3087\":0,\"3088\":0,\"3089\":0,\"3090\":0,\"3091\":0,\"3092\":0,\"3093\":0,\"3094\":0,\"3095\":0,\"3096\":0,\"3097\":0,\"3098\":0,\"3099\":0,\"3100\":0,\"3101\":0,\"3102\":0,\"3103\":3,\"3104\":1,\"3105\":0,\"3106\":0,\"3107\":0,\"3108\":0,\"3109\":0,\"3110\":0,\"3111\":3,\"3112\":2,\"3113\":0,\"3114\":1,\"3115\":0,\"3116\":0,\"3117\":0,\"3118\":0,\"3119\":0,\"3120\":0,\"3121\":0,\"3122\":0,\"3123\":0,\"3124\":0,\"3125\":0,\"3126\":0,\"3127\":0,\"3128\":0,\"3129\":7,\"3130\":0,\"3131\":0,\"3132\":0,\"3133\":0,\"3134\":0,\"3135\":0,\"3136\":0,\"3137\":0,\"3138\":0,\"3139\":0,\"3140\":0,\"3141\":0,\"3142\":1,\"3143\":0,\"3144\":0,\"3145\":0,\"3146\":0,\"3147\":0,\"3148\":0,\"3149\":0,\"3150\":0,\"3151\":0,\"3152\":0,\"3153\":0,\"3154\":41,\"3155\":0,\"3156\":0,\"3157\":0,\"3158\":0,\"3159\":6,\"3160\":0,\"3161\":0,\"3162\":0,\"3163\":0,\"3164\":0,\"3165\":1,\"3166\":8,\"3167\":10,\"3168\":1,\"3169\":1,\"3170\":3,\"3171\":0,\"3172\":0,\"3173\":3,\"3174\":1,\"3175\":0,\"3176\":4,\"3177\":2,\"3178\":0,\"3179\":1,\"3180\":0,\"3181\":0,\"3182\":0,\"3183\":20,\"3184\":0,\"3185\":0,\"3186\":0,\"3187\":3,\"3188\":0,\"3189\":0,\"3190\":0,\"3191\":0,\"3192\":0,\"3193\":1,\"3194\":4,\"3195\":1,\"3196\":0,\"3197\":0,\"3198\":0,\"3199\":0,\"3200\":2,\"3201\":1,\"3202\":1,\"3203\":0,\"3204\":0,\"3205\":1,\"3206\":1,\"3207\":0,\"3208\":1,\"3209\":0,\"3210\":1,\"3211\":0,\"3212\":3,\"3213\":1,\"3214\":0,\"3215\":0,\"3216\":3,\"3217\":0,\"3218\":1,\"3219\":0,\"3220\":0,\"3221\":1,\"3222\":2,\"3223\":1,\"3224\":0,\"3225\":0,\"3226\":0,\"3227\":4,\"3228\":0,\"3229\":2,\"3230\":0,\"3231\":1,\"3232\":0,\"3233\":1,\"3234\":2,\"3235\":0,\"3236\":0,\"3237\":2,\"3238\":0,\"3239\":0,\"3240\":0,\"3241\":0,\"3242\":0,\"3243\":1,\"3244\":0,\"3245\":1,\"3246\":0,\"3247\":0,\"3248\":0,\"3249\":1,\"3250\":0,\"3251\":0,\"3252\":0,\"3253\":1,\"3254\":0,\"3255\":0,\"3256\":2,\"3257\":4,\"3258\":0,\"3259\":0,\"3260\":0,\"3261\":0,\"3262\":0,\"3263\":0,\"3264\":0,\"3265\":0,\"3266\":0,\"3267\":0,\"3268\":0,\"3269\":0,\"3270\":0,\"3271\":0,\"3272\":0,\"3273\":0,\"3274\":0,\"3275\":0,\"3276\":0,\"3277\":0,\"3278\":0,\"3279\":0,\"3280\":0,\"3281\":0,\"3282\":1,\"3283\":0,\"3284\":0,\"3285\":0,\"3286\":0,\"3287\":0,\"3288\":0,\"3289\":0,\"3290\":0,\"3291\":0,\"3292\":0,\"3293\":0,\"3294\":0,\"3295\":2,\"3296\":0,\"3297\":0,\"3298\":0,\"3299\":0,\"3300\":0,\"3301\":1,\"3302\":0,\"3303\":1,\"3304\":1,\"3305\":0,\"3306\":2,\"3307\":0,\"3308\":1,\"3309\":0,\"3310\":0,\"3311\":0,\"3312\":0,\"3313\":1,\"3314\":0,\"3315\":1,\"3316\":0,\"3317\":0,\"3318\":0,\"3319\":1,\"3320\":0,\"3321\":0,\"3322\":0,\"3323\":3,\"3324\":0,\"3325\":0,\"3326\":0,\"3327\":1,\"3328\":0,\"3329\":7,\"3330\":0,\"3331\":1,\"3332\":1,\"3333\":0,\"3334\":0,\"3335\":0,\"3336\":1,\"3337\":0,\"3338\":460,\"3339\":1,\"3340\":8,\"3341\":0,\"3342\":0,\"3343\":0,\"3344\":0,\"3345\":0,\"3346\":0,\"3347\":0,\"3348\":1,\"3349\":0,\"3350\":0,\"3351\":0,\"3352\":0,\"3353\":2,\"3354\":1,\"3355\":9,\"3356\":0,\"3357\":1,\"3358\":0,\"3359\":0,\"3360\":7,\"3361\":0,\"3362\":0,\"3363\":0,\"3364\":5,\"3365\":1,\"3366\":0,\"3367\":0,\"3368\":0,\"3369\":0,\"3370\":7,\"3371\":1,\"3372\":0,\"3373\":0,\"3374\":2,\"3375\":0,\"3376\":1,\"3377\":0,\"3378\":0,\"3379\":0,\"3380\":1,\"3381\":1,\"3382\":0,\"3383\":1,\"3384\":0,\"3385\":1,\"3386\":0,\"3387\":1,\"3388\":0,\"3389\":4,\"3390\":4,\"3391\":4,\"3392\":0,\"3393\":6,\"3394\":22,\"3395\":1,\"3396\":0,\"3397\":0,\"3398\":0,\"3399\":2,\"3400\":0,\"3401\":1,\"3402\":0,\"3403\":0,\"3404\":0,\"3405\":0,\"3406\":0,\"3407\":0,\"3408\":0,\"3409\":0,\"3410\":2,\"3411\":0,\"3412\":0,\"3413\":0,\"3414\":0,\"3415\":0,\"3416\":0,\"3417\":0,\"3418\":1,\"3419\":0,\"3420\":0,\"3421\":0,\"3422\":0,\"3423\":1,\"3424\":0,\"3425\":0,\"3426\":0,\"3427\":0,\"3428\":0,\"3429\":1,\"3430\":0,\"3431\":0,\"3432\":0,\"3433\":1,\"3434\":0,\"3435\":0,\"3436\":0,\"3437\":0,\"3438\":0,\"3439\":0,\"3440\":0,\"3441\":0,\"3442\":1,\"3443\":0,\"3444\":0,\"3445\":0,\"3446\":0,\"3447\":0,\"3448\":0,\"3449\":0,\"3450\":0,\"3451\":0,\"3452\":0,\"3453\":0,\"3454\":0,\"3455\":1,\"3456\":0,\"3457\":0,\"3458\":1,\"3459\":0,\"3460\":0,\"3461\":0,\"3462\":2,\"3463\":0,\"3464\":0,\"3465\":1,\"3466\":0,\"3467\":0,\"3468\":0,\"3469\":1,\"3470\":0,\"3471\":0,\"3472\":0,\"3473\":0,\"3474\":0,\"3475\":0,\"3476\":0,\"3477\":0,\"3478\":1,\"3479\":0,\"3480\":6,\"3481\":0,\"3482\":1,\"3483\":0,\"3484\":0,\"3485\":0,\"3486\":1,\"3487\":1,\"3488\":0,\"3489\":1,\"3490\":0,\"3491\":1,\"3492\":0,\"3493\":0,\"3494\":0,\"3495\":0,\"3496\":1,\"3497\":0,\"3498\":5,\"3499\":0,\"3500\":30,\"3501\":0,\"3502\":3,\"3503\":0,\"3504\":0,\"3505\":0,\"3506\":0,\"3507\":0,\"3508\":0,\"3509\":2,\"3510\":0,\"3511\":0,\"3512\":0,\"3513\":0,\"3514\":2,\"3515\":0,\"3516\":0,\"3517\":37,\"3518\":1,\"3519\":0,\"3520\":0,\"3521\":12,\"3522\":0,\"3523\":0,\"3524\":0,\"3525\":1,\"3526\":10,\"3527\":2,\"3528\":0,\"3529\":0,\"3530\":0,\"3531\":0,\"3532\":0,\"3533\":0,\"3534\":0,\"3535\":5,\"3536\":0,\"3537\":0,\"3538\":0,\"3539\":0,\"3540\":0,\"3541\":1,\"3542\":1,\"3543\":3,\"3544\":0,\"3545\":0,\"3546\":0,\"3547\":0,\"3548\":0,\"3549\":1,\"3550\":0,\"3551\":0,\"3552\":1,\"3553\":0,\"3554\":0,\"3555\":0,\"3556\":23,\"3557\":0,\"3558\":0,\"3559\":0,\"3560\":0,\"3561\":0,\"3562\":0,\"3563\":0,\"3564\":0,\"3565\":0,\"3566\":0,\"3567\":0,\"3568\":0,\"3569\":0,\"3570\":0,\"3571\":0,\"3572\":0,\"3573\":0,\"3574\":0,\"3575\":0,\"3576\":0,\"3577\":0,\"3578\":0,\"3579\":0,\"3580\":2,\"3581\":1,\"3582\":0,\"3583\":0,\"3584\":2,\"3585\":0,\"3586\":0,\"3587\":3,\"3588\":1,\"3589\":0,\"3590\":0,\"3591\":1,\"3592\":0,\"3593\":0,\"3594\":0,\"3595\":0,\"3596\":3,\"3597\":0,\"3598\":0,\"3599\":2,\"3600\":0,\"3601\":0,\"3602\":0,\"3603\":0,\"3604\":1,\"3605\":0,\"3606\":0,\"3607\":0,\"3608\":0,\"3609\":0,\"3610\":0,\"3611\":0,\"3612\":0,\"3613\":7,\"3614\":2,\"3615\":0,\"3616\":10,\"3617\":1,\"3618\":0,\"3619\":85,\"3620\":0,\"3621\":0,\"3622\":0,\"3623\":0,\"3624\":0,\"3625\":0,\"3626\":0,\"3627\":1,\"3628\":0,\"3629\":0,\"3630\":0,\"3631\":0,\"3632\":0,\"3633\":2,\"3634\":0,\"3635\":0,\"3636\":5,\"3637\":0,\"3638\":0,\"3639\":1,\"3640\":0,\"3641\":0,\"3642\":0,\"3643\":0,\"3644\":4,\"3645\":0,\"3646\":0,\"3647\":2,\"3648\":0,\"3649\":1,\"3650\":0,\"3651\":0,\"3652\":0,\"3653\":0,\"3654\":0,\"3655\":0,\"3656\":2,\"3657\":0,\"3658\":4,\"3659\":91,\"3660\":1,\"3661\":1,\"3662\":3,\"3663\":2,\"3664\":1,\"3665\":0,\"3666\":0,\"3667\":0,\"3668\":0,\"3669\":0,\"3670\":0,\"3671\":0,\"3672\":1,\"3673\":0,\"3674\":0,\"3675\":1,\"3676\":0,\"3677\":0,\"3678\":25,\"3679\":0,\"3680\":1,\"3681\":0,\"3682\":0,\"3683\":1,\"3684\":0,\"3685\":0,\"3686\":0,\"3687\":0,\"3688\":10,\"3689\":31,\"3690\":0,\"3691\":0,\"3692\":0,\"3693\":0,\"3694\":0,\"3695\":0,\"3696\":0,\"3697\":0,\"3698\":0,\"3699\":0,\"3700\":0,\"3701\":0,\"3702\":0,\"3703\":0,\"3704\":0,\"3705\":0,\"3706\":0,\"3707\":0,\"3708\":0,\"3709\":1,\"3710\":0,\"3711\":0,\"3712\":0,\"3713\":0,\"3714\":1,\"3715\":5,\"3716\":0,\"3717\":0,\"3718\":0,\"3719\":0,\"3720\":11,\"3721\":0,\"3722\":0,\"3723\":3,\"3724\":0,\"3725\":0,\"3726\":0,\"3727\":0,\"3728\":1,\"3729\":0,\"3730\":0,\"3731\":0,\"3732\":5,\"3733\":0,\"3734\":0,\"3735\":2,\"3736\":2,\"3737\":1,\"3738\":0,\"3739\":0,\"3740\":0,\"3741\":0,\"3742\":0,\"3743\":3,\"3744\":0,\"3745\":0,\"3746\":0,\"3747\":1,\"3748\":0,\"3749\":5,\"3750\":0,\"3751\":1,\"3752\":0,\"3753\":0,\"3754\":0,\"3755\":4,\"3756\":0,\"3757\":0,\"3758\":5,\"3759\":0,\"3760\":0,\"3761\":5,\"3762\":10,\"3763\":0,\"3764\":3,\"3765\":0,\"3766\":3,\"3767\":3,\"3768\":4,\"3769\":4,\"3770\":0,\"3771\":0,\"3772\":0,\"3773\":0,\"3774\":0,\"3775\":2,\"3776\":0,\"3777\":0,\"3778\":0,\"3779\":0,\"3780\":3,\"3781\":0,\"3782\":0,\"3783\":2,\"3784\":0,\"3785\":0,\"3786\":0,\"3787\":33,\"3788\":0,\"3789\":1,\"3790\":0,\"3791\":4,\"3792\":0,\"3793\":0,\"3794\":5,\"3795\":0,\"3796\":0,\"3797\":0,\"3798\":0,\"3799\":0,\"3800\":0,\"3801\":0,\"3802\":0,\"3803\":0,\"3804\":0,\"3805\":0,\"3806\":1,\"3807\":1,\"3808\":0,\"3809\":0,\"3810\":0,\"3811\":1,\"3812\":0,\"3813\":1,\"3814\":1,\"3815\":10,\"3816\":4,\"3817\":0,\"3818\":0,\"3819\":0,\"3820\":0,\"3821\":4,\"3822\":0,\"3823\":9,\"3824\":0,\"3825\":0,\"3826\":0,\"3827\":1,\"3828\":1,\"3829\":1,\"3830\":0,\"3831\":1,\"3832\":0,\"3833\":0,\"3834\":0,\"3835\":0,\"3836\":1,\"3837\":0,\"3838\":1,\"3839\":1,\"3840\":1,\"3841\":0,\"3842\":0,\"3843\":0,\"3844\":0,\"3845\":26,\"3846\":0,\"3847\":26,\"3848\":9,\"3849\":0,\"3850\":1,\"3851\":0,\"3852\":1,\"3853\":0,\"3854\":0,\"3855\":0,\"3856\":0,\"3857\":0,\"3858\":0,\"3859\":0,\"3860\":0,\"3861\":2,\"3862\":0,\"3863\":1,\"3864\":3,\"3865\":0,\"3866\":0,\"3867\":0,\"3868\":0,\"3869\":0,\"3870\":0,\"3871\":0,\"3872\":0,\"3873\":0,\"3874\":0,\"3875\":0,\"3876\":0,\"3877\":0,\"3878\":0,\"3879\":0,\"3880\":0,\"3881\":0,\"3882\":0,\"3883\":0,\"3884\":0,\"3885\":1,\"3886\":0,\"3887\":0,\"3888\":0,\"3889\":2,\"3890\":0,\"3891\":0,\"3892\":1,\"3893\":3,\"3894\":3,\"3895\":0,\"3896\":0,\"3897\":0,\"3898\":0,\"3899\":0,\"3900\":0,\"3901\":0,\"3902\":0,\"3903\":2,\"3904\":2,\"3905\":0,\"3906\":1,\"3907\":3,\"3908\":2,\"3909\":0,\"3910\":3,\"3911\":0,\"3912\":4,\"3913\":2,\"3914\":2,\"3915\":0,\"3916\":0,\"3917\":0,\"3918\":0,\"3919\":0,\"3920\":1,\"3921\":5,\"3922\":7,\"3923\":0,\"3924\":0,\"3925\":0,\"3926\":1,\"3927\":0,\"3928\":0,\"3929\":0,\"3930\":0,\"3931\":0,\"3932\":1,\"3933\":0,\"3934\":0,\"3935\":1,\"3936\":12,\"3937\":1,\"3938\":0,\"3939\":0,\"3940\":0,\"3941\":0,\"3942\":0,\"3943\":0,\"3944\":0,\"3945\":1,\"3946\":0,\"3947\":0,\"3948\":0,\"3949\":0,\"3950\":1,\"3951\":0,\"3952\":0,\"3953\":0,\"3954\":1,\"3955\":0,\"3956\":0,\"3957\":0,\"3958\":0,\"3959\":0,\"3960\":1,\"3961\":10,\"3962\":0,\"3963\":4,\"3964\":0,\"3965\":0,\"3966\":136,\"3967\":0,\"3968\":3,\"3969\":0,\"3970\":0,\"3971\":0,\"3972\":0,\"3973\":0,\"3974\":0,\"3975\":0,\"3976\":4,\"3977\":1,\"3978\":0,\"3979\":0,\"3980\":0,\"3981\":0,\"3982\":0,\"3983\":0,\"3984\":1,\"3985\":0,\"3986\":0,\"3987\":0,\"3988\":0,\"3989\":0,\"3990\":0,\"3991\":0,\"3992\":0,\"3993\":0,\"3994\":0,\"3995\":0,\"3996\":0,\"3997\":1,\"3998\":0,\"3999\":0,\"4000\":1,\"4001\":0,\"4002\":2,\"4003\":0,\"4004\":0,\"4005\":1,\"4006\":0,\"4007\":0,\"4008\":15,\"4009\":0,\"4010\":0,\"4011\":1,\"4012\":1,\"4013\":0,\"4014\":0,\"4015\":0,\"4016\":0,\"4017\":4,\"4018\":0,\"4019\":0,\"4020\":1,\"4021\":0,\"4022\":1,\"4023\":1,\"4024\":2,\"4025\":0,\"4026\":0,\"4027\":0,\"4028\":0,\"4029\":25,\"4030\":0,\"4031\":0,\"4032\":2,\"4033\":0,\"4034\":0,\"4035\":0,\"4036\":0,\"4037\":3,\"4038\":2,\"4039\":4,\"4040\":2,\"4041\":3,\"4042\":1,\"4043\":0,\"4044\":0,\"4045\":0,\"4046\":2,\"4047\":0,\"4048\":0,\"4049\":1,\"4050\":0,\"4051\":0,\"4052\":1,\"4053\":0,\"4054\":1,\"4055\":0,\"4056\":0,\"4057\":0,\"4058\":0,\"4059\":0,\"4060\":0,\"4061\":5,\"4062\":0,\"4063\":0,\"4064\":0,\"4065\":0,\"4066\":0,\"4067\":0,\"4068\":0,\"4069\":0,\"4070\":0,\"4071\":0,\"4072\":0,\"4073\":0,\"4074\":0,\"4075\":0,\"4076\":1,\"4077\":0,\"4078\":0,\"4079\":1,\"4080\":2,\"4081\":2,\"4082\":0,\"4083\":0,\"4084\":0,\"4085\":0,\"4086\":4,\"4087\":0,\"4088\":1,\"4089\":0,\"4090\":3,\"4091\":0,\"4092\":0,\"4093\":0,\"4094\":1,\"4095\":0,\"4096\":0,\"4097\":0,\"4098\":14,\"4099\":0,\"4100\":0,\"4101\":0,\"4102\":6,\"4103\":0,\"4104\":3,\"4105\":0,\"4106\":0,\"4107\":1,\"4108\":0,\"4109\":0,\"4110\":0,\"4111\":1,\"4112\":0,\"4113\":0,\"4114\":0,\"4115\":0,\"4116\":0,\"4117\":0,\"4118\":0,\"4119\":0,\"4120\":1,\"4121\":0,\"4122\":0,\"4123\":2,\"4124\":0,\"4125\":7,\"4126\":0,\"4127\":0,\"4128\":0,\"4129\":1,\"4130\":1,\"4131\":0,\"4132\":0,\"4133\":1,\"4134\":0,\"4135\":0,\"4136\":0,\"4137\":0,\"4138\":24,\"4139\":0,\"4140\":2,\"4141\":16,\"4142\":0,\"4143\":0,\"4144\":0,\"4145\":0,\"4146\":1,\"4147\":0,\"4148\":0,\"4149\":4,\"4150\":0,\"4151\":0,\"4152\":1,\"4153\":0,\"4154\":0,\"4155\":0,\"4156\":0,\"4157\":7,\"4158\":0,\"4159\":0,\"4160\":3,\"4161\":0,\"4162\":0,\"4163\":4,\"4164\":0,\"4165\":0,\"4166\":0,\"4167\":1,\"4168\":0,\"4169\":0,\"4170\":0,\"4171\":1,\"4172\":0,\"4173\":0,\"4174\":0,\"4175\":0,\"4176\":0,\"4177\":2,\"4178\":1,\"4179\":0,\"4180\":0,\"4181\":1,\"4182\":0,\"4183\":0,\"4184\":0,\"4185\":1,\"4186\":1,\"4187\":0,\"4188\":1,\"4189\":0,\"4190\":11,\"4191\":0,\"4192\":0,\"4193\":0,\"4194\":0,\"4195\":1,\"4196\":5,\"4197\":0,\"4198\":0,\"4199\":4,\"4200\":1,\"4201\":21,\"4202\":0,\"4203\":14,\"4204\":1,\"4205\":0,\"4206\":0,\"4207\":0,\"4208\":2,\"4209\":0,\"4210\":2,\"4211\":0,\"4212\":1,\"4213\":0,\"4214\":0,\"4215\":0,\"4216\":1,\"4217\":3,\"4218\":0,\"4219\":0,\"4220\":0,\"4221\":1,\"4222\":0,\"4223\":1,\"4224\":0,\"4225\":1,\"4226\":0,\"4227\":0,\"4228\":0,\"4229\":0,\"4230\":0,\"4231\":0,\"4232\":0,\"4233\":4,\"4234\":0,\"4235\":0,\"4236\":0,\"4237\":0,\"4238\":0,\"4239\":1,\"4240\":0,\"4241\":1,\"4242\":0,\"4243\":0,\"4244\":0,\"4245\":0,\"4246\":0,\"4247\":0,\"4248\":0,\"4249\":0,\"4250\":1,\"4251\":0,\"4252\":0,\"4253\":0,\"4254\":0,\"4255\":0,\"4256\":0,\"4257\":0,\"4258\":0,\"4259\":0,\"4260\":8,\"4261\":1,\"4262\":0,\"4263\":1,\"4264\":0,\"4265\":2,\"4266\":0,\"4267\":0,\"4268\":0,\"4269\":0,\"4270\":3,\"4271\":3,\"4272\":1,\"4273\":0,\"4274\":0,\"4275\":0,\"4276\":0,\"4277\":0,\"4278\":0,\"4279\":0,\"4280\":0,\"4281\":0,\"4282\":0,\"4283\":0,\"4284\":1,\"4285\":3,\"4286\":3,\"4287\":2,\"4288\":3,\"4289\":5,\"4290\":0,\"4291\":0,\"4292\":2,\"4293\":0,\"4294\":0,\"4295\":0,\"4296\":1,\"4297\":0,\"4298\":2,\"4299\":0,\"4300\":0,\"4301\":0,\"4302\":0,\"4303\":0,\"4304\":0,\"4305\":0,\"4306\":0,\"4307\":0,\"4308\":0,\"4309\":0,\"4310\":0,\"4311\":0,\"4312\":0,\"4313\":0,\"4314\":0,\"4315\":0,\"4316\":0,\"4317\":0,\"4318\":0,\"4319\":5,\"4320\":0,\"4321\":5,\"4322\":7,\"4323\":0,\"4324\":0,\"4325\":0,\"4326\":0,\"4327\":0,\"4328\":0,\"4329\":0,\"4330\":0,\"4331\":0,\"4332\":0,\"4333\":0,\"4334\":0,\"4335\":0,\"4336\":0,\"4337\":0,\"4338\":0,\"4339\":0,\"4340\":0,\"4341\":0,\"4342\":0,\"4343\":0,\"4344\":0,\"4345\":0,\"4346\":0,\"4347\":0,\"4348\":0,\"4349\":1,\"4350\":0,\"4351\":0,\"4352\":0,\"4353\":0,\"4354\":2,\"4355\":0,\"4356\":0,\"4357\":3,\"4358\":0,\"4359\":0,\"4360\":0,\"4361\":0,\"4362\":0,\"4363\":0,\"4364\":0,\"4365\":0,\"4366\":1,\"4367\":1,\"4368\":0,\"4369\":0,\"4370\":1,\"4371\":1,\"4372\":0,\"4373\":1,\"4374\":0,\"4375\":0,\"4376\":0,\"4377\":0,\"4378\":0,\"4379\":2,\"4380\":1,\"4381\":1,\"4382\":0,\"4383\":0,\"4384\":0,\"4385\":0,\"4386\":0,\"4387\":1,\"4388\":0,\"4389\":0,\"4390\":0,\"4391\":0,\"4392\":0,\"4393\":0,\"4394\":0,\"4395\":0,\"4396\":0,\"4397\":0,\"4398\":0,\"4399\":0,\"4400\":0,\"4401\":0,\"4402\":0,\"4403\":41,\"4404\":0,\"4405\":0,\"4406\":0,\"4407\":3,\"4408\":1,\"4409\":0,\"4410\":0,\"4411\":0,\"4412\":0,\"4413\":6,\"4414\":0,\"4415\":0,\"4416\":0,\"4417\":0,\"4418\":0,\"4419\":0,\"4420\":0,\"4421\":0,\"4422\":0,\"4423\":8,\"4424\":0,\"4425\":0,\"4426\":0,\"4427\":1,\"4428\":0,\"4429\":0,\"4430\":0,\"4431\":8,\"4432\":0,\"4433\":10,\"4434\":0,\"4435\":1,\"4436\":0,\"4437\":1,\"4438\":0,\"4439\":3,\"4440\":1,\"4441\":0,\"4442\":0,\"4443\":0,\"4444\":1,\"4445\":0,\"4446\":0,\"4447\":0,\"4448\":3,\"4449\":3,\"4450\":0,\"4451\":1,\"4452\":0,\"4453\":1,\"4454\":0,\"4455\":0,\"4456\":3,\"4457\":1,\"4458\":1,\"4459\":1,\"4460\":1,\"4461\":5,\"4462\":1,\"4463\":4,\"4464\":0,\"4465\":0,\"4466\":2,\"4467\":0,\"4468\":2,\"4469\":0,\"4470\":0,\"4471\":0,\"4472\":0,\"4473\":1,\"4474\":1,\"4475\":0,\"4476\":0,\"4477\":0,\"4478\":0,\"4479\":2,\"4480\":1,\"4481\":3,\"4482\":0,\"4483\":0,\"4484\":0,\"4485\":0,\"4486\":0,\"4487\":20,\"4488\":1,\"4489\":0,\"4490\":0,\"4491\":0,\"4492\":2,\"4493\":3,\"4494\":0,\"4495\":0,\"4496\":0,\"4497\":0,\"4498\":0,\"4499\":0,\"4500\":3,\"4501\":2,\"4502\":0,\"4503\":0,\"4504\":1,\"4505\":0,\"4506\":1,\"4507\":0,\"4508\":0,\"4509\":4,\"4510\":1,\"4511\":1,\"4512\":1,\"4513\":0,\"4514\":0,\"4515\":1,\"4516\":0,\"4517\":0,\"4518\":0,\"4519\":2,\"4520\":0,\"4521\":2,\"4522\":0,\"4523\":0,\"4524\":1,\"4525\":0,\"4526\":6,\"4527\":0,\"4528\":0,\"4529\":0,\"4530\":0,\"4531\":0,\"4532\":1,\"4533\":0,\"4534\":0,\"4535\":0,\"4536\":1,\"4537\":0,\"4538\":0,\"4539\":0,\"4540\":0,\"4541\":0,\"4542\":0,\"4543\":0,\"4544\":0,\"4545\":0,\"4546\":0,\"4547\":1,\"4548\":0,\"4549\":1,\"4550\":0,\"4551\":1,\"4552\":1,\"4553\":0,\"4554\":1,\"4555\":0,\"4556\":9,\"4557\":3,\"4558\":1,\"4559\":0,\"4560\":0,\"4561\":0,\"4562\":0,\"4563\":0,\"4564\":3,\"4565\":0,\"4566\":1,\"4567\":0,\"4568\":0,\"4569\":0,\"4570\":0,\"4571\":3,\"4572\":0,\"4573\":1,\"4574\":2,\"4575\":0,\"4576\":2,\"4577\":0,\"4578\":0,\"4579\":1,\"4580\":0,\"4581\":0,\"4582\":0,\"4583\":0,\"4584\":0,\"4585\":15,\"4586\":4,\"4587\":0,\"4588\":0,\"4589\":2,\"4590\":0,\"4591\":1,\"4592\":0,\"4593\":0,\"4594\":1,\"4595\":2,\"4596\":4,\"4597\":0,\"4598\":0,\"4599\":0,\"4600\":2,\"4601\":0,\"4602\":0,\"4603\":0,\"4604\":0,\"4605\":0,\"4606\":0,\"4607\":0,\"4608\":1,\"4609\":0,\"4610\":0,\"4611\":0,\"4612\":1,\"4613\":87,\"4614\":1,\"4615\":5,\"4616\":0,\"4617\":0,\"4618\":0,\"4619\":1,\"4620\":3,\"4621\":2,\"4622\":0,\"4623\":1,\"4624\":0,\"4625\":1,\"4626\":0,\"4627\":0,\"4628\":0,\"4629\":0,\"4630\":1,\"4631\":4,\"4632\":0,\"4633\":0,\"4634\":0,\"4635\":0,\"4636\":0,\"4637\":25,\"4638\":0,\"4639\":0,\"4640\":0,\"4641\":0,\"4642\":0,\"4643\":0,\"4644\":0,\"4645\":0,\"4646\":0,\"4647\":0,\"4648\":0,\"4649\":0,\"4650\":0,\"4651\":0,\"4652\":0,\"4653\":0,\"4654\":0,\"4655\":0,\"4656\":0,\"4657\":0,\"4658\":0,\"4659\":0,\"4660\":0,\"4661\":43,\"4662\":3,\"4663\":0,\"4664\":2,\"4665\":0,\"4666\":0,\"4667\":0,\"4668\":4,\"4669\":1,\"4670\":2,\"4671\":0,\"4672\":3,\"4673\":0,\"4674\":0,\"4675\":0,\"4676\":0,\"4677\":0,\"4678\":0,\"4679\":0,\"4680\":0,\"4681\":0,\"4682\":0,\"4683\":0,\"4684\":0,\"4685\":3,\"4686\":0,\"4687\":0,\"4688\":1,\"4689\":0,\"4690\":3,\"4691\":0,\"4692\":0,\"4693\":0,\"4694\":0,\"4695\":2,\"4696\":1,\"4697\":0,\"4698\":1,\"4699\":0,\"4700\":0,\"4701\":0,\"4702\":0,\"4703\":10,\"4704\":0,\"4705\":0,\"4706\":1,\"4707\":0,\"4708\":1,\"4709\":1,\"4710\":0,\"4711\":2,\"4712\":0,\"4713\":0,\"4714\":1,\"4715\":0,\"4716\":0,\"4717\":1,\"4718\":0,\"4719\":0,\"4720\":0,\"4721\":1,\"4722\":0,\"4723\":1,\"4724\":4,\"4725\":4,\"4726\":5,\"4727\":0,\"4728\":0,\"4729\":0,\"4730\":0,\"4731\":4,\"4732\":0,\"4733\":0,\"4734\":0,\"4735\":1,\"4736\":0,\"4737\":1,\"4738\":0,\"4739\":0,\"4740\":0,\"4741\":0,\"4742\":4,\"4743\":0,\"4744\":0,\"4745\":0,\"4746\":2,\"4747\":0,\"4748\":0,\"4749\":0,\"4750\":0,\"4751\":0,\"4752\":1,\"4753\":0,\"4754\":0,\"4755\":0,\"4756\":0,\"4757\":1,\"4758\":0,\"4759\":0,\"4760\":0,\"4761\":0,\"4762\":1,\"4763\":2,\"4764\":0,\"4765\":7,\"4766\":0,\"4767\":1,\"4768\":0,\"4769\":0,\"4770\":1,\"4771\":2,\"4772\":1,\"4773\":4,\"4774\":1,\"4775\":1,\"4776\":0,\"4777\":0,\"4778\":0,\"4779\":0,\"4780\":0,\"4781\":0,\"4782\":4,\"4783\":1,\"4784\":0,\"4785\":460,\"4786\":1,\"4787\":0,\"4788\":8,\"4789\":0,\"4790\":0,\"4791\":0,\"4792\":0,\"4793\":0,\"4794\":0,\"4795\":0,\"4796\":0,\"4797\":9,\"4798\":0,\"4799\":4,\"4800\":0,\"4801\":0,\"4802\":0,\"4803\":0,\"4804\":0,\"4805\":0,\"4806\":0,\"4807\":19,\"4808\":0,\"4809\":0,\"4810\":0,\"4811\":0,\"4812\":0,\"4813\":2,\"4814\":1,\"4815\":9,\"4816\":0,\"4817\":0,\"4818\":1,\"4819\":0,\"4820\":0,\"4821\":0,\"4822\":0,\"4823\":7,\"4824\":0,\"4825\":0,\"4826\":0,\"4827\":0,\"4828\":12,\"4829\":0,\"4830\":3,\"4831\":7,\"4832\":0,\"4833\":0,\"4834\":5,\"4835\":0,\"4836\":1,\"4837\":1,\"4838\":1,\"4839\":0,\"4840\":0,\"4841\":0,\"4842\":0,\"4843\":0,\"4844\":0,\"4845\":7,\"4846\":1,\"4847\":0,\"4848\":0,\"4849\":26,\"4850\":0,\"4851\":0,\"4852\":0,\"4853\":0,\"4854\":0,\"4855\":0,\"4856\":0,\"4857\":0,\"4858\":0,\"4859\":2,\"4860\":0,\"4861\":0,\"4862\":0,\"4863\":1,\"4864\":0,\"4865\":0,\"4866\":0,\"4867\":0,\"4868\":0,\"4869\":0,\"4870\":0,\"4871\":1,\"4872\":275,\"4873\":0,\"4874\":0,\"4875\":0,\"4876\":1,\"4877\":0,\"4878\":0,\"4879\":1,\"4880\":0,\"4881\":1,\"4882\":1,\"4883\":0,\"4884\":0,\"4885\":1,\"4886\":0,\"4887\":0,\"4888\":1,\"4889\":0,\"4890\":1,\"4891\":1,\"4892\":0,\"4893\":0,\"4894\":0,\"4895\":0,\"4896\":0,\"4897\":0,\"4898\":4,\"4899\":4,\"4900\":6,\"4901\":4,\"4902\":0,\"4903\":0,\"4904\":0,\"4905\":0,\"4906\":1,\"4907\":8,\"4908\":0,\"4909\":1,\"4910\":0,\"4911\":6,\"4912\":2,\"4913\":4,\"4914\":0,\"4915\":1,\"4916\":0,\"4917\":0,\"4918\":0,\"4919\":0,\"4920\":0,\"4921\":0,\"4922\":0,\"4923\":0,\"4924\":0,\"4925\":0,\"4926\":0,\"4927\":0,\"4928\":0,\"4929\":2,\"4930\":0,\"4931\":9,\"4932\":0,\"4933\":1,\"4934\":1,\"4935\":0,\"4936\":1,\"4937\":0,\"4938\":0,\"4939\":0,\"4940\":0,\"4941\":0,\"4942\":5,\"4943\":1,\"4944\":1,\"4945\":0,\"4946\":0,\"4947\":0,\"4948\":0,\"4949\":0,\"4950\":0,\"4951\":0,\"4952\":0,\"4953\":0,\"4954\":2,\"4955\":0,\"4956\":0,\"4957\":0,\"4958\":0,\"4959\":0,\"4960\":0,\"4961\":0,\"4962\":0,\"4963\":0,\"4964\":0,\"4965\":0,\"4966\":0,\"4967\":0,\"4968\":1,\"4969\":5,\"4970\":0,\"4971\":1,\"4972\":5,\"4973\":0,\"4974\":0,\"4975\":4,\"4976\":0,\"4977\":0,\"4978\":3,\"4979\":0,\"4980\":1,\"4981\":0,\"4982\":0,\"4983\":0,\"4984\":0,\"4985\":0,\"4986\":0,\"4987\":0,\"4988\":0,\"4989\":3,\"4990\":1,\"4991\":0,\"4992\":1,\"4993\":3,\"4994\":0,\"4995\":0,\"4996\":1,\"4997\":0,\"4998\":0,\"4999\":0},\"favorite_count\":{\"0\":0,\"1\":3,\"2\":2,\"3\":0,\"4\":2,\"5\":1,\"6\":0,\"7\":0,\"8\":0,\"9\":1,\"10\":0,\"11\":0,\"12\":2,\"13\":1,\"14\":0,\"15\":0,\"16\":1,\"17\":0,\"18\":2,\"19\":5,\"20\":4,\"21\":9,\"22\":1,\"23\":1,\"24\":3,\"25\":0,\"26\":1,\"27\":2,\"28\":1,\"29\":2,\"30\":4,\"31\":0,\"32\":0,\"33\":0,\"34\":0,\"35\":1,\"36\":1,\"37\":0,\"38\":0,\"39\":1,\"40\":0,\"41\":0,\"42\":6,\"43\":0,\"44\":4,\"45\":111,\"46\":2,\"47\":4,\"48\":9,\"49\":0,\"50\":5,\"51\":1,\"52\":0,\"53\":1,\"54\":8,\"55\":1,\"56\":0,\"57\":0,\"58\":0,\"59\":0,\"60\":1,\"61\":0,\"62\":0,\"63\":0,\"64\":1,\"65\":0,\"66\":2,\"67\":2,\"68\":25,\"69\":2,\"70\":10,\"71\":0,\"72\":1,\"73\":0,\"74\":2,\"75\":0,\"76\":2,\"77\":2,\"78\":0,\"79\":13,\"80\":20,\"81\":0,\"82\":1,\"83\":0,\"84\":1,\"85\":0,\"86\":1,\"87\":0,\"88\":0,\"89\":0,\"90\":1,\"91\":2,\"92\":0,\"93\":0,\"94\":1,\"95\":0,\"96\":0,\"97\":0,\"98\":0,\"99\":0,\"100\":0,\"101\":3,\"102\":3,\"103\":2,\"104\":5,\"105\":7,\"106\":9,\"107\":0,\"108\":0,\"109\":4,\"110\":15,\"111\":0,\"112\":0,\"113\":0,\"114\":0,\"115\":8,\"116\":1,\"117\":1,\"118\":5,\"119\":8,\"120\":0,\"121\":0,\"122\":0,\"123\":2,\"124\":1,\"125\":0,\"126\":0,\"127\":1,\"128\":1,\"129\":0,\"130\":4,\"131\":1,\"132\":2,\"133\":0,\"134\":1,\"135\":2,\"136\":1,\"137\":0,\"138\":2,\"139\":4,\"140\":0,\"141\":1,\"142\":3,\"143\":2,\"144\":3,\"145\":2,\"146\":2,\"147\":0,\"148\":23,\"149\":1,\"150\":0,\"151\":0,\"152\":0,\"153\":2,\"154\":4,\"155\":3,\"156\":1,\"157\":6,\"158\":0,\"159\":1,\"160\":4,\"161\":10,\"162\":0,\"163\":3,\"164\":0,\"165\":3,\"166\":3,\"167\":5,\"168\":2,\"169\":1,\"170\":1,\"171\":0,\"172\":2,\"173\":0,\"174\":1,\"175\":1,\"176\":2,\"177\":0,\"178\":0,\"179\":8,\"180\":1,\"181\":2,\"182\":7,\"183\":3,\"184\":1,\"185\":3,\"186\":0,\"187\":106,\"188\":0,\"189\":1,\"190\":10,\"191\":0,\"192\":16,\"193\":2,\"194\":2,\"195\":20,\"196\":3,\"197\":3,\"198\":1,\"199\":0,\"200\":7,\"201\":5,\"202\":4,\"203\":0,\"204\":2,\"205\":5,\"206\":0,\"207\":0,\"208\":1,\"209\":1,\"210\":3,\"211\":1,\"212\":5,\"213\":2,\"214\":4,\"215\":5,\"216\":3,\"217\":95,\"218\":4,\"219\":0,\"220\":3,\"221\":0,\"222\":1,\"223\":7,\"224\":1,\"225\":74,\"226\":2,\"227\":0,\"228\":0,\"229\":1,\"230\":1,\"231\":0,\"232\":1,\"233\":2,\"234\":2,\"235\":2,\"236\":2,\"237\":0,\"238\":2,\"239\":2,\"240\":0,\"241\":2,\"242\":102,\"243\":0,\"244\":12,\"245\":6,\"246\":2,\"247\":1,\"248\":12,\"249\":2,\"250\":268,\"251\":3,\"252\":524,\"253\":42,\"254\":1,\"255\":0,\"256\":1,\"257\":1,\"258\":2,\"259\":3,\"260\":2,\"261\":1,\"262\":2,\"263\":3,\"264\":1,\"265\":1,\"266\":1,\"267\":2,\"268\":1,\"269\":6,\"270\":2,\"271\":0,\"272\":0,\"273\":1,\"274\":0,\"275\":0,\"276\":5,\"277\":0,\"278\":1,\"279\":0,\"280\":1,\"281\":1,\"282\":0,\"283\":0,\"284\":1,\"285\":3,\"286\":2,\"287\":1,\"288\":5,\"289\":1,\"290\":2,\"291\":0,\"292\":1,\"293\":0,\"294\":1,\"295\":74,\"296\":0,\"297\":1,\"298\":2,\"299\":1,\"300\":1,\"301\":2,\"302\":2,\"303\":3,\"304\":2,\"305\":5,\"306\":0,\"307\":0,\"308\":1,\"309\":0,\"310\":0,\"311\":0,\"312\":2,\"313\":4,\"314\":3,\"315\":0,\"316\":2,\"317\":2,\"318\":4,\"319\":1,\"320\":2,\"321\":2,\"322\":8,\"323\":4,\"324\":4,\"325\":7,\"326\":0,\"327\":5,\"328\":0,\"329\":0,\"330\":1,\"331\":8,\"332\":5,\"333\":21,\"334\":15,\"335\":0,\"336\":1,\"337\":0,\"338\":2,\"339\":2,\"340\":4,\"341\":0,\"342\":7,\"343\":3,\"344\":0,\"345\":0,\"346\":6,\"347\":3,\"348\":1,\"349\":0,\"350\":0,\"351\":0,\"352\":2,\"353\":0,\"354\":1,\"355\":2,\"356\":1,\"357\":1,\"358\":0,\"359\":3,\"360\":1,\"361\":0,\"362\":0,\"363\":0,\"364\":0,\"365\":0,\"366\":5,\"367\":0,\"368\":0,\"369\":0,\"370\":2,\"371\":0,\"372\":55,\"373\":0,\"374\":0,\"375\":0,\"376\":0,\"377\":5,\"378\":13,\"379\":0,\"380\":7,\"381\":5,\"382\":0,\"383\":0,\"384\":529,\"385\":1,\"386\":8,\"387\":3,\"388\":0,\"389\":1,\"390\":0,\"391\":0,\"392\":2,\"393\":3,\"394\":7,\"395\":0,\"396\":3,\"397\":1,\"398\":3,\"399\":2,\"400\":28,\"401\":1,\"402\":1,\"403\":0,\"404\":14,\"405\":0,\"406\":0,\"407\":0,\"408\":1,\"409\":0,\"410\":1,\"411\":4,\"412\":0,\"413\":0,\"414\":0,\"415\":3,\"416\":0,\"417\":4,\"418\":1,\"419\":1,\"420\":1,\"421\":0,\"422\":0,\"423\":0,\"424\":0,\"425\":1,\"426\":3,\"427\":1,\"428\":2,\"429\":99,\"430\":2,\"431\":0,\"432\":2,\"433\":0,\"434\":1,\"435\":1,\"436\":0,\"437\":1,\"438\":98,\"439\":2,\"440\":0,\"441\":0,\"442\":1,\"443\":0,\"444\":1,\"445\":1,\"446\":5,\"447\":0,\"448\":1,\"449\":1,\"450\":1,\"451\":27,\"452\":1,\"453\":0,\"454\":4,\"455\":0,\"456\":4,\"457\":0,\"458\":1,\"459\":7,\"460\":2,\"461\":4,\"462\":5,\"463\":9,\"464\":0,\"465\":1,\"466\":2,\"467\":4,\"468\":2,\"469\":11,\"470\":1,\"471\":0,\"472\":4,\"473\":2,\"474\":0,\"475\":1,\"476\":1,\"477\":0,\"478\":1,\"479\":0,\"480\":0,\"481\":0,\"482\":0,\"483\":0,\"484\":0,\"485\":7,\"486\":0,\"487\":0,\"488\":0,\"489\":1,\"490\":0,\"491\":0,\"492\":0,\"493\":0,\"494\":0,\"495\":1,\"496\":0,\"497\":0,\"498\":0,\"499\":0,\"500\":0,\"501\":0,\"502\":0,\"503\":4,\"504\":3,\"505\":3,\"506\":4,\"507\":0,\"508\":0,\"509\":1,\"510\":5,\"511\":0,\"512\":2,\"513\":1,\"514\":3,\"515\":1,\"516\":0,\"517\":6,\"518\":1,\"519\":2,\"520\":2,\"521\":1,\"522\":17,\"523\":0,\"524\":0,\"525\":3,\"526\":4,\"527\":1,\"528\":3,\"529\":1,\"530\":5,\"531\":2,\"532\":1,\"533\":0,\"534\":0,\"535\":0,\"536\":0,\"537\":1,\"538\":0,\"539\":0,\"540\":0,\"541\":0,\"542\":2,\"543\":4,\"544\":1,\"545\":2,\"546\":0,\"547\":12,\"548\":4,\"549\":23,\"550\":0,\"551\":0,\"552\":0,\"553\":12,\"554\":2,\"555\":0,\"556\":0,\"557\":0,\"558\":1,\"559\":7,\"560\":0,\"561\":3,\"562\":0,\"563\":56,\"564\":1,\"565\":3,\"566\":49,\"567\":0,\"568\":0,\"569\":1,\"570\":0,\"571\":0,\"572\":4,\"573\":3,\"574\":8,\"575\":1,\"576\":5,\"577\":1,\"578\":0,\"579\":1,\"580\":1,\"581\":0,\"582\":0,\"583\":0,\"584\":7,\"585\":0,\"586\":0,\"587\":7,\"588\":0,\"589\":0,\"590\":0,\"591\":4,\"592\":0,\"593\":0,\"594\":1,\"595\":2,\"596\":0,\"597\":3,\"598\":2,\"599\":2,\"600\":1,\"601\":1,\"602\":0,\"603\":0,\"604\":0,\"605\":2,\"606\":1,\"607\":1,\"608\":0,\"609\":0,\"610\":0,\"611\":0,\"612\":4,\"613\":3,\"614\":3,\"615\":2,\"616\":1,\"617\":2,\"618\":43,\"619\":1,\"620\":1,\"621\":0,\"622\":1,\"623\":1,\"624\":18,\"625\":1,\"626\":4,\"627\":10,\"628\":2,\"629\":48,\"630\":0,\"631\":18,\"632\":3,\"633\":1,\"634\":1,\"635\":1,\"636\":4,\"637\":0,\"638\":2,\"639\":0,\"640\":9,\"641\":0,\"642\":0,\"643\":2,\"644\":1,\"645\":11,\"646\":0,\"647\":1,\"648\":5,\"649\":4,\"650\":0,\"651\":6,\"652\":2,\"653\":3,\"654\":2,\"655\":0,\"656\":2,\"657\":0,\"658\":43,\"659\":1,\"660\":1,\"661\":0,\"662\":1,\"663\":6,\"664\":7,\"665\":7,\"666\":0,\"667\":0,\"668\":1,\"669\":0,\"670\":0,\"671\":5,\"672\":2,\"673\":1,\"674\":0,\"675\":0,\"676\":3,\"677\":0,\"678\":0,\"679\":0,\"680\":1,\"681\":0,\"682\":3,\"683\":1,\"684\":1,\"685\":0,\"686\":4,\"687\":6,\"688\":0,\"689\":0,\"690\":1,\"691\":0,\"692\":1,\"693\":1,\"694\":1,\"695\":2,\"696\":1,\"697\":25,\"698\":0,\"699\":0,\"700\":1,\"701\":0,\"702\":7,\"703\":0,\"704\":0,\"705\":0,\"706\":1,\"707\":3,\"708\":3,\"709\":4,\"710\":0,\"711\":0,\"712\":0,\"713\":1,\"714\":0,\"715\":0,\"716\":0,\"717\":0,\"718\":1,\"719\":0,\"720\":2,\"721\":0,\"722\":3,\"723\":3,\"724\":4,\"725\":0,\"726\":6,\"727\":11,\"728\":0,\"729\":3,\"730\":2,\"731\":1,\"732\":0,\"733\":0,\"734\":1,\"735\":14,\"736\":4,\"737\":4,\"738\":5,\"739\":1,\"740\":7,\"741\":0,\"742\":0,\"743\":0,\"744\":0,\"745\":2,\"746\":0,\"747\":1,\"748\":2,\"749\":0,\"750\":2,\"751\":3,\"752\":2,\"753\":2,\"754\":1,\"755\":0,\"756\":1,\"757\":0,\"758\":1,\"759\":3,\"760\":4,\"761\":0,\"762\":9,\"763\":3,\"764\":9,\"765\":7,\"766\":0,\"767\":2,\"768\":1,\"769\":0,\"770\":0,\"771\":0,\"772\":0,\"773\":2,\"774\":0,\"775\":0,\"776\":0,\"777\":0,\"778\":0,\"779\":0,\"780\":1,\"781\":0,\"782\":0,\"783\":0,\"784\":0,\"785\":0,\"786\":1,\"787\":0,\"788\":0,\"789\":4,\"790\":11,\"791\":0,\"792\":4,\"793\":2,\"794\":1,\"795\":2,\"796\":1,\"797\":0,\"798\":3,\"799\":4,\"800\":0,\"801\":0,\"802\":0,\"803\":5,\"804\":0,\"805\":0,\"806\":0,\"807\":1,\"808\":2,\"809\":1,\"810\":1,\"811\":2,\"812\":2,\"813\":3,\"814\":2,\"815\":1,\"816\":2,\"817\":0,\"818\":2,\"819\":1,\"820\":0,\"821\":1,\"822\":2,\"823\":4,\"824\":20,\"825\":1,\"826\":4,\"827\":1,\"828\":1,\"829\":2,\"830\":1,\"831\":0,\"832\":1,\"833\":3,\"834\":6,\"835\":4,\"836\":6,\"837\":0,\"838\":2,\"839\":3,\"840\":1,\"841\":0,\"842\":1,\"843\":0,\"844\":0,\"845\":0,\"846\":4,\"847\":0,\"848\":1,\"849\":51,\"850\":0,\"851\":0,\"852\":4,\"853\":1,\"854\":3,\"855\":3,\"856\":1,\"857\":0,\"858\":1,\"859\":15,\"860\":7,\"861\":0,\"862\":0,\"863\":0,\"864\":1,\"865\":0,\"866\":0,\"867\":8,\"868\":0,\"869\":0,\"870\":22,\"871\":0,\"872\":0,\"873\":0,\"874\":2,\"875\":0,\"876\":3,\"877\":1,\"878\":4,\"879\":0,\"880\":4,\"881\":1,\"882\":2,\"883\":0,\"884\":3,\"885\":2,\"886\":7,\"887\":4,\"888\":1,\"889\":0,\"890\":2,\"891\":3,\"892\":0,\"893\":1,\"894\":1,\"895\":18,\"896\":7,\"897\":5,\"898\":1,\"899\":0,\"900\":0,\"901\":1,\"902\":1,\"903\":0,\"904\":0,\"905\":6,\"906\":1,\"907\":1,\"908\":2,\"909\":1,\"910\":12,\"911\":1,\"912\":26,\"913\":5,\"914\":0,\"915\":1,\"916\":2,\"917\":10,\"918\":0,\"919\":1,\"920\":1,\"921\":1,\"922\":4,\"923\":1,\"924\":9,\"925\":2,\"926\":4,\"927\":3,\"928\":0,\"929\":0,\"930\":0,\"931\":1,\"932\":4,\"933\":13,\"934\":2,\"935\":0,\"936\":1,\"937\":2,\"938\":3,\"939\":9,\"940\":4,\"941\":0,\"942\":1,\"943\":3,\"944\":2,\"945\":0,\"946\":19,\"947\":16,\"948\":2,\"949\":2,\"950\":0,\"951\":0,\"952\":0,\"953\":4,\"954\":6,\"955\":5,\"956\":0,\"957\":6,\"958\":2,\"959\":1,\"960\":1,\"961\":0,\"962\":1,\"963\":0,\"964\":0,\"965\":3,\"966\":4,\"967\":2,\"968\":1,\"969\":0,\"970\":0,\"971\":3,\"972\":1,\"973\":0,\"974\":4,\"975\":1,\"976\":7,\"977\":1,\"978\":2,\"979\":0,\"980\":0,\"981\":4,\"982\":1,\"983\":1,\"984\":27,\"985\":0,\"986\":3,\"987\":5,\"988\":0,\"989\":8,\"990\":3,\"991\":1,\"992\":3,\"993\":0,\"994\":2,\"995\":1,\"996\":1,\"997\":0,\"998\":0,\"999\":0,\"1000\":1,\"1001\":0,\"1002\":0,\"1003\":0,\"1004\":0,\"1005\":0,\"1006\":0,\"1007\":1,\"1008\":4,\"1009\":1,\"1010\":0,\"1011\":1,\"1012\":1,\"1013\":3,\"1014\":2,\"1015\":1,\"1016\":0,\"1017\":1,\"1018\":0,\"1019\":30,\"1020\":3,\"1021\":1,\"1022\":0,\"1023\":0,\"1024\":18,\"1025\":0,\"1026\":0,\"1027\":0,\"1028\":10,\"1029\":0,\"1030\":1,\"1031\":1,\"1032\":1,\"1033\":3,\"1034\":2,\"1035\":3,\"1036\":0,\"1037\":1,\"1038\":4,\"1039\":3,\"1040\":2,\"1041\":0,\"1042\":1,\"1043\":1,\"1044\":4,\"1045\":1,\"1046\":0,\"1047\":1,\"1048\":1,\"1049\":2,\"1050\":18,\"1051\":7,\"1052\":1,\"1053\":1,\"1054\":4,\"1055\":0,\"1056\":3,\"1057\":0,\"1058\":1,\"1059\":0,\"1060\":5,\"1061\":16,\"1062\":0,\"1063\":2,\"1064\":0,\"1065\":5,\"1066\":8,\"1067\":6,\"1068\":2,\"1069\":1,\"1070\":1,\"1071\":1,\"1072\":0,\"1073\":3,\"1074\":0,\"1075\":1,\"1076\":0,\"1077\":0,\"1078\":1,\"1079\":108,\"1080\":3,\"1081\":17,\"1082\":1,\"1083\":0,\"1084\":0,\"1085\":9,\"1086\":13,\"1087\":0,\"1088\":2,\"1089\":11,\"1090\":1,\"1091\":5,\"1092\":1,\"1093\":1,\"1094\":0,\"1095\":8,\"1096\":2,\"1097\":0,\"1098\":0,\"1099\":0,\"1100\":0,\"1101\":0,\"1102\":289,\"1103\":1,\"1104\":1,\"1105\":0,\"1106\":0,\"1107\":0,\"1108\":0,\"1109\":0,\"1110\":1,\"1111\":0,\"1112\":0,\"1113\":1,\"1114\":2,\"1115\":0,\"1116\":0,\"1117\":0,\"1118\":0,\"1119\":0,\"1120\":0,\"1121\":1,\"1122\":0,\"1123\":0,\"1124\":2,\"1125\":1,\"1126\":3,\"1127\":1,\"1128\":214,\"1129\":4,\"1130\":0,\"1131\":8,\"1132\":1,\"1133\":6,\"1134\":4,\"1135\":0,\"1136\":1,\"1137\":15,\"1138\":8,\"1139\":13,\"1140\":5,\"1141\":17,\"1142\":1,\"1143\":1,\"1144\":0,\"1145\":1,\"1146\":1,\"1147\":4,\"1148\":3,\"1149\":2,\"1150\":1,\"1151\":2,\"1152\":0,\"1153\":2,\"1154\":0,\"1155\":0,\"1156\":2,\"1157\":5,\"1158\":3,\"1159\":0,\"1160\":1,\"1161\":0,\"1162\":12,\"1163\":0,\"1164\":6,\"1165\":0,\"1166\":0,\"1167\":1,\"1168\":21,\"1169\":0,\"1170\":1,\"1171\":3,\"1172\":1,\"1173\":0,\"1174\":1,\"1175\":1,\"1176\":1,\"1177\":2,\"1178\":0,\"1179\":31,\"1180\":2,\"1181\":0,\"1182\":1,\"1183\":0,\"1184\":0,\"1185\":1,\"1186\":0,\"1187\":10,\"1188\":1,\"1189\":0,\"1190\":4,\"1191\":2,\"1192\":1,\"1193\":2,\"1194\":1,\"1195\":0,\"1196\":0,\"1197\":1,\"1198\":3,\"1199\":0,\"1200\":0,\"1201\":5,\"1202\":17,\"1203\":12,\"1204\":2,\"1205\":0,\"1206\":0,\"1207\":0,\"1208\":1,\"1209\":6,\"1210\":0,\"1211\":1,\"1212\":0,\"1213\":1,\"1214\":0,\"1215\":1,\"1216\":4,\"1217\":2,\"1218\":1,\"1219\":1,\"1220\":1,\"1221\":2,\"1222\":0,\"1223\":0,\"1224\":12,\"1225\":1,\"1226\":1,\"1227\":5,\"1228\":3,\"1229\":4,\"1230\":1,\"1231\":2,\"1232\":0,\"1233\":0,\"1234\":0,\"1235\":0,\"1236\":3,\"1237\":1,\"1238\":1,\"1239\":1,\"1240\":1,\"1241\":0,\"1242\":2,\"1243\":0,\"1244\":0,\"1245\":1,\"1246\":1,\"1247\":1,\"1248\":0,\"1249\":0,\"1250\":0,\"1251\":0,\"1252\":3,\"1253\":1,\"1254\":0,\"1255\":0,\"1256\":1,\"1257\":1,\"1258\":5,\"1259\":0,\"1260\":3,\"1261\":4,\"1262\":3,\"1263\":9,\"1264\":0,\"1265\":2,\"1266\":1,\"1267\":1,\"1268\":2,\"1269\":8,\"1270\":9,\"1271\":10,\"1272\":0,\"1273\":4,\"1274\":1,\"1275\":0,\"1276\":0,\"1277\":0,\"1278\":1,\"1279\":0,\"1280\":14,\"1281\":1,\"1282\":1,\"1283\":5,\"1284\":1265,\"1285\":0,\"1286\":3,\"1287\":13,\"1288\":10,\"1289\":0,\"1290\":1,\"1291\":0,\"1292\":3,\"1293\":0,\"1294\":2,\"1295\":1,\"1296\":14,\"1297\":14,\"1298\":2,\"1299\":13,\"1300\":6,\"1301\":0,\"1302\":0,\"1303\":0,\"1304\":0,\"1305\":7,\"1306\":0,\"1307\":1,\"1308\":9,\"1309\":1,\"1310\":94,\"1311\":2,\"1312\":3,\"1313\":0,\"1314\":0,\"1315\":4,\"1316\":0,\"1317\":2,\"1318\":0,\"1319\":3,\"1320\":5,\"1321\":12,\"1322\":1,\"1323\":2,\"1324\":5,\"1325\":0,\"1326\":2,\"1327\":2,\"1328\":5,\"1329\":1,\"1330\":7,\"1331\":0,\"1332\":0,\"1333\":1,\"1334\":4,\"1335\":23,\"1336\":2,\"1337\":2,\"1338\":1,\"1339\":26,\"1340\":0,\"1341\":0,\"1342\":4,\"1343\":4,\"1344\":9,\"1345\":1,\"1346\":4,\"1347\":4,\"1348\":1,\"1349\":2,\"1350\":5,\"1351\":0,\"1352\":8,\"1353\":0,\"1354\":6,\"1355\":0,\"1356\":1,\"1357\":0,\"1358\":0,\"1359\":2,\"1360\":4,\"1361\":1,\"1362\":0,\"1363\":33,\"1364\":1,\"1365\":2,\"1366\":0,\"1367\":0,\"1368\":0,\"1369\":0,\"1370\":0,\"1371\":1,\"1372\":0,\"1373\":7,\"1374\":0,\"1375\":0,\"1376\":0,\"1377\":0,\"1378\":2,\"1379\":0,\"1380\":0,\"1381\":0,\"1382\":0,\"1383\":1,\"1384\":0,\"1385\":1,\"1386\":2,\"1387\":1058,\"1388\":1,\"1389\":0,\"1390\":4,\"1391\":0,\"1392\":1,\"1393\":7,\"1394\":1,\"1395\":3,\"1396\":1,\"1397\":2,\"1398\":2,\"1399\":3,\"1400\":2,\"1401\":0,\"1402\":0,\"1403\":2,\"1404\":1,\"1405\":2,\"1406\":2,\"1407\":8,\"1408\":2,\"1409\":4,\"1410\":4,\"1411\":2,\"1412\":3,\"1413\":4,\"1414\":0,\"1415\":2,\"1416\":0,\"1417\":12,\"1418\":9,\"1419\":62,\"1420\":11,\"1421\":4,\"1422\":0,\"1423\":1,\"1424\":0,\"1425\":0,\"1426\":3,\"1427\":15,\"1428\":1,\"1429\":3,\"1430\":1,\"1431\":4,\"1432\":8,\"1433\":1,\"1434\":25,\"1435\":9,\"1436\":0,\"1437\":5,\"1438\":0,\"1439\":1,\"1440\":0,\"1441\":0,\"1442\":0,\"1443\":1,\"1444\":1,\"1445\":0,\"1446\":0,\"1447\":0,\"1448\":0,\"1449\":0,\"1450\":0,\"1451\":1,\"1452\":9,\"1453\":1,\"1454\":28,\"1455\":0,\"1456\":1,\"1457\":1,\"1458\":0,\"1459\":5,\"1460\":4,\"1461\":1,\"1462\":2,\"1463\":0,\"1464\":4,\"1465\":0,\"1466\":0,\"1467\":8,\"1468\":1,\"1469\":0,\"1470\":2,\"1471\":3,\"1472\":1,\"1473\":7,\"1474\":0,\"1475\":3,\"1476\":0,\"1477\":4,\"1478\":0,\"1479\":1,\"1480\":1,\"1481\":4,\"1482\":4,\"1483\":2,\"1484\":9,\"1485\":1,\"1486\":6,\"1487\":3,\"1488\":0,\"1489\":0,\"1490\":0,\"1491\":0,\"1492\":4,\"1493\":0,\"1494\":1,\"1495\":2,\"1496\":1,\"1497\":2,\"1498\":1,\"1499\":4,\"1500\":2,\"1501\":5,\"1502\":15,\"1503\":0,\"1504\":4,\"1505\":13,\"1506\":0,\"1507\":0,\"1508\":9,\"1509\":2,\"1510\":0,\"1511\":7,\"1512\":1,\"1513\":1,\"1514\":0,\"1515\":0,\"1516\":0,\"1517\":0,\"1518\":0,\"1519\":0,\"1520\":3,\"1521\":0,\"1522\":10,\"1523\":0,\"1524\":2,\"1525\":0,\"1526\":3,\"1527\":0,\"1528\":3,\"1529\":5,\"1530\":6,\"1531\":0,\"1532\":0,\"1533\":4,\"1534\":14,\"1535\":9,\"1536\":6,\"1537\":18,\"1538\":2,\"1539\":3,\"1540\":0,\"1541\":16,\"1542\":2,\"1543\":2,\"1544\":2,\"1545\":0,\"1546\":3,\"1547\":61,\"1548\":5,\"1549\":1,\"1550\":49,\"1551\":1,\"1552\":20,\"1553\":1,\"1554\":0,\"1555\":1,\"1556\":0,\"1557\":3,\"1558\":0,\"1559\":4,\"1560\":0,\"1561\":7,\"1562\":8,\"1563\":5,\"1564\":160,\"1565\":0,\"1566\":0,\"1567\":2,\"1568\":0,\"1569\":1,\"1570\":4,\"1571\":0,\"1572\":0,\"1573\":9,\"1574\":0,\"1575\":6,\"1576\":0,\"1577\":1,\"1578\":0,\"1579\":6,\"1580\":76,\"1581\":4,\"1582\":104,\"1583\":0,\"1584\":2,\"1585\":11,\"1586\":2,\"1587\":1,\"1588\":5,\"1589\":1,\"1590\":21,\"1591\":1,\"1592\":1,\"1593\":18,\"1594\":1,\"1595\":1,\"1596\":1,\"1597\":2,\"1598\":16,\"1599\":675,\"1600\":3,\"1601\":4,\"1602\":1,\"1603\":2,\"1604\":13,\"1605\":3,\"1606\":1,\"1607\":971,\"1608\":6,\"1609\":2,\"1610\":3,\"1611\":7,\"1612\":0,\"1613\":340,\"1614\":6,\"1615\":6,\"1616\":3,\"1617\":2,\"1618\":2,\"1619\":3,\"1620\":0,\"1621\":3,\"1622\":0,\"1623\":2,\"1624\":19,\"1625\":1,\"1626\":2,\"1627\":14,\"1628\":1,\"1629\":9,\"1630\":16,\"1631\":3,\"1632\":3,\"1633\":5,\"1634\":0,\"1635\":3,\"1636\":10,\"1637\":2,\"1638\":1,\"1639\":6,\"1640\":2,\"1641\":13,\"1642\":0,\"1643\":4,\"1644\":14,\"1645\":13,\"1646\":0,\"1647\":1,\"1648\":10,\"1649\":12,\"1650\":1,\"1651\":1,\"1652\":2,\"1653\":18,\"1654\":0,\"1655\":2,\"1656\":0,\"1657\":13,\"1658\":1,\"1659\":5,\"1660\":1,\"1661\":1,\"1662\":12,\"1663\":1,\"1664\":4,\"1665\":5,\"1666\":1,\"1667\":22,\"1668\":2,\"1669\":8,\"1670\":1,\"1671\":1,\"1672\":4,\"1673\":5,\"1674\":0,\"1675\":1,\"1676\":1,\"1677\":8,\"1678\":1,\"1679\":2,\"1680\":0,\"1681\":3,\"1682\":0,\"1683\":2,\"1684\":13,\"1685\":2,\"1686\":0,\"1687\":1,\"1688\":8,\"1689\":3,\"1690\":2,\"1691\":1,\"1692\":3,\"1693\":3,\"1694\":1,\"1695\":6,\"1696\":3,\"1697\":1,\"1698\":2,\"1699\":0,\"1700\":3,\"1701\":0,\"1702\":5,\"1703\":0,\"1704\":13,\"1705\":5,\"1706\":2,\"1707\":2,\"1708\":12,\"1709\":5,\"1710\":4,\"1711\":2,\"1712\":189,\"1713\":1,\"1714\":1,\"1715\":4,\"1716\":0,\"1717\":57,\"1718\":5,\"1719\":12,\"1720\":9,\"1721\":3,\"1722\":23,\"1723\":1,\"1724\":3,\"1725\":8,\"1726\":4,\"1727\":2502,\"1728\":2,\"1729\":285,\"1730\":0,\"1731\":224,\"1732\":3,\"1733\":2,\"1734\":9,\"1735\":0,\"1736\":0,\"1737\":11,\"1738\":2,\"1739\":2,\"1740\":2,\"1741\":0,\"1742\":8,\"1743\":0,\"1744\":2,\"1745\":2,\"1746\":8,\"1747\":0,\"1748\":9,\"1749\":2214,\"1750\":0,\"1751\":5,\"1752\":0,\"1753\":0,\"1754\":1,\"1755\":2,\"1756\":1,\"1757\":7,\"1758\":2,\"1759\":7,\"1760\":0,\"1761\":0,\"1762\":6,\"1763\":5,\"1764\":0,\"1765\":8,\"1766\":0,\"1767\":1,\"1768\":13,\"1769\":2,\"1770\":0,\"1771\":14,\"1772\":5,\"1773\":1,\"1774\":5,\"1775\":0,\"1776\":207,\"1777\":3,\"1778\":4,\"1779\":0,\"1780\":2,\"1781\":9,\"1782\":2,\"1783\":12,\"1784\":5,\"1785\":5,\"1786\":2,\"1787\":1,\"1788\":0,\"1789\":1,\"1790\":0,\"1791\":29,\"1792\":0,\"1793\":3,\"1794\":2,\"1795\":2,\"1796\":0,\"1797\":0,\"1798\":2,\"1799\":0,\"1800\":1,\"1801\":2,\"1802\":1,\"1803\":2,\"1804\":0,\"1805\":0,\"1806\":0,\"1807\":5,\"1808\":0,\"1809\":6,\"1810\":2,\"1811\":0,\"1812\":4,\"1813\":0,\"1814\":21,\"1815\":2,\"1816\":2,\"1817\":19,\"1818\":1,\"1819\":1,\"1820\":2,\"1821\":28,\"1822\":9,\"1823\":3,\"1824\":0,\"1825\":0,\"1826\":1,\"1827\":2,\"1828\":20,\"1829\":0,\"1830\":0,\"1831\":0,\"1832\":0,\"1833\":0,\"1834\":0,\"1835\":0,\"1836\":0,\"1837\":3,\"1838\":1,\"1839\":3,\"1840\":12,\"1841\":1,\"1842\":3,\"1843\":0,\"1844\":0,\"1845\":1,\"1846\":2,\"1847\":1,\"1848\":4,\"1849\":2,\"1850\":0,\"1851\":1,\"1852\":1,\"1853\":2,\"1854\":4,\"1855\":4,\"1856\":2,\"1857\":1,\"1858\":3,\"1859\":2,\"1860\":2,\"1861\":1,\"1862\":4,\"1863\":1,\"1864\":2,\"1865\":1,\"1866\":0,\"1867\":0,\"1868\":1,\"1869\":4,\"1870\":1,\"1871\":0,\"1872\":2,\"1873\":1,\"1874\":0,\"1875\":0,\"1876\":4,\"1877\":2,\"1878\":0,\"1879\":0,\"1880\":63,\"1881\":0,\"1882\":11,\"1883\":3,\"1884\":3,\"1885\":0,\"1886\":1,\"1887\":0,\"1888\":19,\"1889\":0,\"1890\":1,\"1891\":4,\"1892\":2,\"1893\":4,\"1894\":5,\"1895\":2,\"1896\":1,\"1897\":28,\"1898\":2,\"1899\":12,\"1900\":2,\"1901\":0,\"1902\":5,\"1903\":8,\"1904\":2,\"1905\":4,\"1906\":8,\"1907\":0,\"1908\":4,\"1909\":3,\"1910\":2,\"1911\":0,\"1912\":39,\"1913\":0,\"1914\":0,\"1915\":2,\"1916\":3,\"1917\":1,\"1918\":1,\"1919\":2,\"1920\":1,\"1921\":2,\"1922\":0,\"1923\":0,\"1924\":1,\"1925\":1,\"1926\":5,\"1927\":0,\"1928\":2,\"1929\":2,\"1930\":0,\"1931\":0,\"1932\":0,\"1933\":0,\"1934\":0,\"1935\":0,\"1936\":0,\"1937\":0,\"1938\":4,\"1939\":1,\"1940\":5,\"1941\":6,\"1942\":10,\"1943\":8,\"1944\":2,\"1945\":2,\"1946\":0,\"1947\":1,\"1948\":0,\"1949\":3,\"1950\":0,\"1951\":0,\"1952\":2,\"1953\":0,\"1954\":1,\"1955\":0,\"1956\":1,\"1957\":1,\"1958\":4,\"1959\":3,\"1960\":1,\"1961\":2,\"1962\":1,\"1963\":1,\"1964\":3,\"1965\":2,\"1966\":1,\"1967\":0,\"1968\":1,\"1969\":1,\"1970\":0,\"1971\":0,\"1972\":3,\"1973\":1,\"1974\":1,\"1975\":0,\"1976\":1,\"1977\":8,\"1978\":2,\"1979\":1,\"1980\":3,\"1981\":1,\"1982\":1,\"1983\":0,\"1984\":0,\"1985\":3,\"1986\":1,\"1987\":2,\"1988\":0,\"1989\":0,\"1990\":0,\"1991\":1,\"1992\":0,\"1993\":0,\"1994\":0,\"1995\":2,\"1996\":2,\"1997\":0,\"1998\":1,\"1999\":0,\"2000\":0,\"2001\":0,\"2002\":1,\"2003\":1,\"2004\":0,\"2005\":0,\"2006\":1,\"2007\":0,\"2008\":4,\"2009\":2,\"2010\":1,\"2011\":0,\"2012\":1,\"2013\":2,\"2014\":0,\"2015\":1,\"2016\":1,\"2017\":2,\"2018\":0,\"2019\":0,\"2020\":0,\"2021\":2,\"2022\":0,\"2023\":1,\"2024\":3,\"2025\":0,\"2026\":0,\"2027\":0,\"2028\":0,\"2029\":0,\"2030\":0,\"2031\":2,\"2032\":1,\"2033\":0,\"2034\":0,\"2035\":0,\"2036\":4,\"2037\":2,\"2038\":0,\"2039\":0,\"2040\":2,\"2041\":0,\"2042\":0,\"2043\":2,\"2044\":3,\"2045\":0,\"2046\":0,\"2047\":4,\"2048\":0,\"2049\":0,\"2050\":0,\"2051\":1,\"2052\":0,\"2053\":0,\"2054\":1,\"2055\":4,\"2056\":0,\"2057\":4,\"2058\":0,\"2059\":1,\"2060\":0,\"2061\":4,\"2062\":0,\"2063\":0,\"2064\":0,\"2065\":2,\"2066\":1,\"2067\":0,\"2068\":0,\"2069\":0,\"2070\":0,\"2071\":2,\"2072\":3,\"2073\":0,\"2074\":1,\"2075\":3,\"2076\":3,\"2077\":6,\"2078\":0,\"2079\":1,\"2080\":3,\"2081\":1,\"2082\":0,\"2083\":2,\"2084\":1,\"2085\":0,\"2086\":1,\"2087\":8,\"2088\":0,\"2089\":2,\"2090\":3,\"2091\":5,\"2092\":1,\"2093\":26,\"2094\":1,\"2095\":46,\"2096\":0,\"2097\":2,\"2098\":0,\"2099\":0,\"2100\":2,\"2101\":2,\"2102\":1,\"2103\":5,\"2104\":8,\"2105\":1,\"2106\":43,\"2107\":0,\"2108\":0,\"2109\":0,\"2110\":4,\"2111\":0,\"2112\":0,\"2113\":0,\"2114\":0,\"2115\":0,\"2116\":0,\"2117\":2,\"2118\":4,\"2119\":5,\"2120\":2,\"2121\":3,\"2122\":2,\"2123\":1,\"2124\":1,\"2125\":3,\"2126\":0,\"2127\":1,\"2128\":0,\"2129\":0,\"2130\":0,\"2131\":0,\"2132\":0,\"2133\":0,\"2134\":0,\"2135\":7,\"2136\":1,\"2137\":0,\"2138\":2,\"2139\":0,\"2140\":0,\"2141\":0,\"2142\":0,\"2143\":0,\"2144\":0,\"2145\":1,\"2146\":0,\"2147\":0,\"2148\":0,\"2149\":0,\"2150\":0,\"2151\":0,\"2152\":0,\"2153\":1,\"2154\":0,\"2155\":0,\"2156\":1,\"2157\":1,\"2158\":0,\"2159\":0,\"2160\":2,\"2161\":0,\"2162\":0,\"2163\":1,\"2164\":0,\"2165\":1,\"2166\":1,\"2167\":1,\"2168\":1,\"2169\":0,\"2170\":1,\"2171\":0,\"2172\":1,\"2173\":0,\"2174\":0,\"2175\":0,\"2176\":0,\"2177\":0,\"2178\":1,\"2179\":1,\"2180\":0,\"2181\":0,\"2182\":2,\"2183\":0,\"2184\":1,\"2185\":0,\"2186\":3,\"2187\":2,\"2188\":0,\"2189\":0,\"2190\":0,\"2191\":0,\"2192\":0,\"2193\":0,\"2194\":3,\"2195\":0,\"2196\":0,\"2197\":0,\"2198\":0,\"2199\":0,\"2200\":4,\"2201\":0,\"2202\":0,\"2203\":0,\"2204\":1,\"2205\":0,\"2206\":1,\"2207\":0,\"2208\":0,\"2209\":0,\"2210\":0,\"2211\":1,\"2212\":2,\"2213\":3,\"2214\":0,\"2215\":0,\"2216\":5,\"2217\":0,\"2218\":0,\"2219\":6,\"2220\":2,\"2221\":2,\"2222\":3,\"2223\":1,\"2224\":0,\"2225\":1,\"2226\":9,\"2227\":2,\"2228\":3,\"2229\":5,\"2230\":2,\"2231\":0,\"2232\":3,\"2233\":0,\"2234\":1,\"2235\":11,\"2236\":1,\"2237\":2,\"2238\":0,\"2239\":0,\"2240\":0,\"2241\":0,\"2242\":0,\"2243\":2,\"2244\":1,\"2245\":0,\"2246\":1,\"2247\":0,\"2248\":0,\"2249\":0,\"2250\":0,\"2251\":1,\"2252\":0,\"2253\":0,\"2254\":0,\"2255\":0,\"2256\":1,\"2257\":1,\"2258\":17,\"2259\":0,\"2260\":0,\"2261\":1,\"2262\":3,\"2263\":0,\"2264\":1,\"2265\":0,\"2266\":1,\"2267\":0,\"2268\":0,\"2269\":0,\"2270\":5,\"2271\":0,\"2272\":0,\"2273\":0,\"2274\":0,\"2275\":2,\"2276\":3,\"2277\":0,\"2278\":0,\"2279\":0,\"2280\":0,\"2281\":0,\"2282\":1,\"2283\":1,\"2284\":0,\"2285\":1,\"2286\":1,\"2287\":1,\"2288\":0,\"2289\":0,\"2290\":1,\"2291\":1,\"2292\":3,\"2293\":0,\"2294\":2,\"2295\":0,\"2296\":2,\"2297\":7,\"2298\":4,\"2299\":2,\"2300\":3,\"2301\":4,\"2302\":7,\"2303\":1,\"2304\":0,\"2305\":0,\"2306\":0,\"2307\":1,\"2308\":4,\"2309\":0,\"2310\":0,\"2311\":2,\"2312\":0,\"2313\":8,\"2314\":2,\"2315\":0,\"2316\":1,\"2317\":0,\"2318\":1,\"2319\":1,\"2320\":19,\"2321\":3,\"2322\":1,\"2323\":24,\"2324\":0,\"2325\":1,\"2326\":5,\"2327\":0,\"2328\":10,\"2329\":1,\"2330\":1,\"2331\":2,\"2332\":8,\"2333\":2,\"2334\":0,\"2335\":2,\"2336\":0,\"2337\":5,\"2338\":1,\"2339\":1,\"2340\":2,\"2341\":4,\"2342\":2,\"2343\":0,\"2344\":3,\"2345\":0,\"2346\":6,\"2347\":0,\"2348\":2,\"2349\":0,\"2350\":2,\"2351\":2,\"2352\":0,\"2353\":0,\"2354\":3,\"2355\":4,\"2356\":0,\"2357\":1,\"2358\":1,\"2359\":0,\"2360\":2,\"2361\":0,\"2362\":6,\"2363\":0,\"2364\":66,\"2365\":0,\"2366\":738,\"2367\":0,\"2368\":0,\"2369\":0,\"2370\":1,\"2371\":1,\"2372\":1,\"2373\":0,\"2374\":1,\"2375\":2,\"2376\":11,\"2377\":3,\"2378\":8,\"2379\":8,\"2380\":2,\"2381\":1,\"2382\":4,\"2383\":0,\"2384\":4,\"2385\":4,\"2386\":2,\"2387\":0,\"2388\":25,\"2389\":12,\"2390\":0,\"2391\":0,\"2392\":3,\"2393\":1,\"2394\":2,\"2395\":0,\"2396\":1,\"2397\":1,\"2398\":1,\"2399\":0,\"2400\":1,\"2401\":3,\"2402\":409,\"2403\":5,\"2404\":0,\"2405\":0,\"2406\":4,\"2407\":1,\"2408\":1,\"2409\":2,\"2410\":0,\"2411\":2,\"2412\":1,\"2413\":0,\"2414\":0,\"2415\":4,\"2416\":4,\"2417\":0,\"2418\":1,\"2419\":1,\"2420\":1,\"2421\":1,\"2422\":1,\"2423\":0,\"2424\":3,\"2425\":2,\"2426\":3,\"2427\":0,\"2428\":0,\"2429\":0,\"2430\":0,\"2431\":2,\"2432\":2,\"2433\":2,\"2434\":1,\"2435\":1,\"2436\":1,\"2437\":2,\"2438\":1,\"2439\":1,\"2440\":3,\"2441\":2,\"2442\":1,\"2443\":0,\"2444\":2,\"2445\":2,\"2446\":4,\"2447\":2,\"2448\":1,\"2449\":1,\"2450\":0,\"2451\":1,\"2452\":1,\"2453\":1,\"2454\":1,\"2455\":11,\"2456\":12,\"2457\":4,\"2458\":1,\"2459\":0,\"2460\":1,\"2461\":1,\"2462\":1,\"2463\":1,\"2464\":2,\"2465\":0,\"2466\":0,\"2467\":0,\"2468\":0,\"2469\":0,\"2470\":0,\"2471\":2,\"2472\":0,\"2473\":0,\"2474\":0,\"2475\":0,\"2476\":2,\"2477\":2,\"2478\":0,\"2479\":0,\"2480\":1,\"2481\":1,\"2482\":0,\"2483\":0,\"2484\":0,\"2485\":0,\"2486\":0,\"2487\":0,\"2488\":1,\"2489\":0,\"2490\":0,\"2491\":0,\"2492\":2,\"2493\":1,\"2494\":1,\"2495\":0,\"2496\":2,\"2497\":0,\"2498\":0,\"2499\":0,\"2500\":0,\"2501\":0,\"2502\":0,\"2503\":0,\"2504\":0,\"2505\":0,\"2506\":0,\"2507\":0,\"2508\":0,\"2509\":0,\"2510\":2,\"2511\":0,\"2512\":0,\"2513\":1,\"2514\":3,\"2515\":0,\"2516\":1,\"2517\":2,\"2518\":0,\"2519\":0,\"2520\":0,\"2521\":0,\"2522\":3,\"2523\":0,\"2524\":0,\"2525\":0,\"2526\":0,\"2527\":0,\"2528\":0,\"2529\":0,\"2530\":0,\"2531\":2,\"2532\":0,\"2533\":0,\"2534\":0,\"2535\":1,\"2536\":0,\"2537\":0,\"2538\":0,\"2539\":1,\"2540\":0,\"2541\":1,\"2542\":0,\"2543\":2,\"2544\":0,\"2545\":0,\"2546\":6,\"2547\":0,\"2548\":18,\"2549\":14,\"2550\":0,\"2551\":1,\"2552\":0,\"2553\":1,\"2554\":1,\"2555\":1,\"2556\":0,\"2557\":1,\"2558\":0,\"2559\":0,\"2560\":1,\"2561\":2,\"2562\":0,\"2563\":0,\"2564\":0,\"2565\":1,\"2566\":1,\"2567\":2,\"2568\":1,\"2569\":1,\"2570\":1,\"2571\":2,\"2572\":1,\"2573\":41,\"2574\":238,\"2575\":6,\"2576\":41,\"2577\":0,\"2578\":0,\"2579\":1,\"2580\":0,\"2581\":0,\"2582\":0,\"2583\":0,\"2584\":0,\"2585\":0,\"2586\":0,\"2587\":0,\"2588\":0,\"2589\":0,\"2590\":0,\"2591\":0,\"2592\":0,\"2593\":0,\"2594\":0,\"2595\":0,\"2596\":0,\"2597\":0,\"2598\":2,\"2599\":0,\"2600\":1,\"2601\":8,\"2602\":0,\"2603\":0,\"2604\":0,\"2605\":4,\"2606\":17,\"2607\":8,\"2608\":5,\"2609\":20,\"2610\":1,\"2611\":0,\"2612\":0,\"2613\":0,\"2614\":0,\"2615\":3,\"2616\":5,\"2617\":1,\"2618\":119,\"2619\":10,\"2620\":1,\"2621\":0,\"2622\":1,\"2623\":0,\"2624\":0,\"2625\":5,\"2626\":6,\"2627\":2,\"2628\":0,\"2629\":3,\"2630\":5,\"2631\":0,\"2632\":2,\"2633\":1,\"2634\":0,\"2635\":0,\"2636\":0,\"2637\":0,\"2638\":0,\"2639\":1,\"2640\":2,\"2641\":5,\"2642\":1,\"2643\":0,\"2644\":8,\"2645\":5,\"2646\":4,\"2647\":0,\"2648\":1,\"2649\":0,\"2650\":10,\"2651\":2,\"2652\":3,\"2653\":1,\"2654\":22,\"2655\":1,\"2656\":6,\"2657\":0,\"2658\":1,\"2659\":1,\"2660\":0,\"2661\":2,\"2662\":2,\"2663\":1,\"2664\":20,\"2665\":0,\"2666\":2,\"2667\":1,\"2668\":0,\"2669\":0,\"2670\":1,\"2671\":1,\"2672\":0,\"2673\":0,\"2674\":1,\"2675\":0,\"2676\":27,\"2677\":0,\"2678\":0,\"2679\":3,\"2680\":0,\"2681\":0,\"2682\":4,\"2683\":428,\"2684\":0,\"2685\":0,\"2686\":0,\"2687\":0,\"2688\":1,\"2689\":2,\"2690\":4,\"2691\":2,\"2692\":0,\"2693\":2,\"2694\":0,\"2695\":0,\"2696\":1,\"2697\":2,\"2698\":10,\"2699\":9,\"2700\":0,\"2701\":0,\"2702\":0,\"2703\":0,\"2704\":0,\"2705\":0,\"2706\":0,\"2707\":0,\"2708\":1,\"2709\":0,\"2710\":1,\"2711\":1,\"2712\":0,\"2713\":0,\"2714\":0,\"2715\":1,\"2716\":0,\"2717\":8,\"2718\":0,\"2719\":0,\"2720\":2,\"2721\":1,\"2722\":306,\"2723\":0,\"2724\":2,\"2725\":2,\"2726\":0,\"2727\":0,\"2728\":1,\"2729\":0,\"2730\":3,\"2731\":1,\"2732\":0,\"2733\":1,\"2734\":3,\"2735\":2,\"2736\":2,\"2737\":4,\"2738\":0,\"2739\":5,\"2740\":0,\"2741\":1,\"2742\":1,\"2743\":1,\"2744\":3,\"2745\":2,\"2746\":3,\"2747\":0,\"2748\":1,\"2749\":1,\"2750\":0,\"2751\":0,\"2752\":1,\"2753\":0,\"2754\":57,\"2755\":5,\"2756\":0,\"2757\":0,\"2758\":0,\"2759\":1,\"2760\":5,\"2761\":0,\"2762\":1,\"2763\":0,\"2764\":0,\"2765\":0,\"2766\":0,\"2767\":2,\"2768\":0,\"2769\":0,\"2770\":4,\"2771\":4,\"2772\":0,\"2773\":0,\"2774\":3,\"2775\":1,\"2776\":3,\"2777\":0,\"2778\":1,\"2779\":0,\"2780\":10,\"2781\":1,\"2782\":2,\"2783\":4,\"2784\":0,\"2785\":0,\"2786\":2,\"2787\":4,\"2788\":1,\"2789\":3,\"2790\":8,\"2791\":0,\"2792\":0,\"2793\":0,\"2794\":2,\"2795\":1,\"2796\":1,\"2797\":0,\"2798\":2,\"2799\":1,\"2800\":0,\"2801\":1,\"2802\":2,\"2803\":4,\"2804\":0,\"2805\":0,\"2806\":2,\"2807\":0,\"2808\":1,\"2809\":1,\"2810\":7,\"2811\":91,\"2812\":33,\"2813\":0,\"2814\":1,\"2815\":1,\"2816\":3,\"2817\":3,\"2818\":0,\"2819\":0,\"2820\":1,\"2821\":0,\"2822\":0,\"2823\":4,\"2824\":1,\"2825\":0,\"2826\":0,\"2827\":4,\"2828\":3,\"2829\":1,\"2830\":15,\"2831\":1,\"2832\":0,\"2833\":0,\"2834\":3,\"2835\":1,\"2836\":0,\"2837\":0,\"2838\":0,\"2839\":0,\"2840\":0,\"2841\":1,\"2842\":9,\"2843\":0,\"2844\":8,\"2845\":0,\"2846\":2,\"2847\":1,\"2848\":4,\"2849\":0,\"2850\":3,\"2851\":1,\"2852\":2,\"2853\":0,\"2854\":0,\"2855\":1,\"2856\":1,\"2857\":0,\"2858\":1,\"2859\":0,\"2860\":0,\"2861\":0,\"2862\":111,\"2863\":2,\"2864\":1,\"2865\":0,\"2866\":0,\"2867\":0,\"2868\":0,\"2869\":2,\"2870\":25,\"2871\":2,\"2872\":1,\"2873\":0,\"2874\":0,\"2875\":13,\"2876\":20,\"2877\":0,\"2878\":1,\"2879\":1,\"2880\":0,\"2881\":0,\"2882\":4,\"2883\":15,\"2884\":1,\"2885\":0,\"2886\":2,\"2887\":1,\"2888\":0,\"2889\":0,\"2890\":1,\"2891\":2,\"2892\":2,\"2893\":1,\"2894\":0,\"2895\":2,\"2896\":4,\"2897\":0,\"2898\":1,\"2899\":2,\"2900\":3,\"2901\":2,\"2902\":0,\"2903\":23,\"2904\":0,\"2905\":0,\"2906\":1,\"2907\":6,\"2908\":1,\"2909\":2,\"2910\":1,\"2911\":1,\"2912\":2,\"2913\":3,\"2914\":1,\"2915\":106,\"2916\":0,\"2917\":1,\"2918\":10,\"2919\":2,\"2920\":3,\"2921\":7,\"2922\":5,\"2923\":4,\"2924\":1,\"2925\":2,\"2926\":95,\"2927\":1,\"2928\":7,\"2929\":1,\"2930\":0,\"2931\":1,\"2932\":2,\"2933\":2,\"2934\":0,\"2935\":12,\"2936\":6,\"2937\":268,\"2938\":3,\"2939\":524,\"2940\":42,\"2941\":1,\"2942\":2,\"2943\":2,\"2944\":1,\"2945\":2,\"2946\":1,\"2947\":2,\"2948\":6,\"2949\":1,\"2950\":0,\"2951\":0,\"2952\":2,\"2953\":74,\"2954\":3,\"2955\":1,\"2956\":4,\"2957\":3,\"2958\":2,\"2959\":2,\"2960\":4,\"2961\":1,\"2962\":2,\"2963\":8,\"2964\":0,\"2965\":0,\"2966\":0,\"2967\":0,\"2968\":2,\"2969\":0,\"2970\":6,\"2971\":0,\"2972\":2,\"2973\":0,\"2974\":1,\"2975\":2,\"2976\":1,\"2977\":0,\"2978\":0,\"2979\":0,\"2980\":0,\"2981\":0,\"2982\":5,\"2983\":8,\"2984\":0,\"2985\":3,\"2986\":1,\"2987\":1,\"2988\":1,\"2989\":0,\"2990\":0,\"2991\":1,\"2992\":0,\"2993\":0,\"2994\":0,\"2995\":0,\"2996\":4,\"2997\":1,\"2998\":1,\"2999\":0,\"3000\":0,\"3001\":1,\"3002\":2,\"3003\":99,\"3004\":2,\"3005\":0,\"3006\":2,\"3007\":2,\"3008\":0,\"3009\":1,\"3010\":0,\"3011\":1,\"3012\":1,\"3013\":27,\"3014\":0,\"3015\":7,\"3016\":2,\"3017\":4,\"3018\":5,\"3019\":9,\"3020\":1,\"3021\":2,\"3022\":4,\"3023\":2,\"3024\":1,\"3025\":0,\"3026\":0,\"3027\":7,\"3028\":4,\"3029\":3,\"3030\":0,\"3031\":5,\"3032\":0,\"3033\":3,\"3034\":2,\"3035\":2,\"3036\":3,\"3037\":1,\"3038\":2,\"3039\":0,\"3040\":1,\"3041\":4,\"3042\":0,\"3043\":12,\"3044\":0,\"3045\":0,\"3046\":1,\"3047\":3,\"3048\":0,\"3049\":56,\"3050\":3,\"3051\":49,\"3052\":0,\"3053\":1,\"3054\":0,\"3055\":0,\"3056\":1,\"3057\":1,\"3058\":0,\"3059\":1,\"3060\":0,\"3061\":0,\"3062\":7,\"3063\":0,\"3064\":0,\"3065\":1,\"3066\":3,\"3067\":0,\"3068\":1,\"3069\":0,\"3070\":3,\"3071\":1,\"3072\":1,\"3073\":18,\"3074\":4,\"3075\":1,\"3076\":0,\"3077\":0,\"3078\":1,\"3079\":0,\"3080\":2,\"3081\":0,\"3082\":43,\"3083\":1,\"3084\":1,\"3085\":7,\"3086\":7,\"3087\":0,\"3088\":0,\"3089\":0,\"3090\":2,\"3091\":0,\"3092\":0,\"3093\":1,\"3094\":0,\"3095\":1,\"3096\":3,\"3097\":1,\"3098\":0,\"3099\":1,\"3100\":1,\"3101\":0,\"3102\":1,\"3103\":3,\"3104\":4,\"3105\":0,\"3106\":1,\"3107\":0,\"3108\":0,\"3109\":0,\"3110\":0,\"3111\":3,\"3112\":4,\"3113\":1,\"3114\":14,\"3115\":4,\"3116\":7,\"3117\":0,\"3118\":0,\"3119\":2,\"3120\":2,\"3121\":0,\"3122\":2,\"3123\":3,\"3124\":2,\"3125\":2,\"3126\":1,\"3127\":0,\"3128\":3,\"3129\":7,\"3130\":2,\"3131\":0,\"3132\":1,\"3133\":1,\"3134\":0,\"3135\":11,\"3136\":1,\"3137\":1,\"3138\":0,\"3139\":0,\"3140\":3,\"3141\":2,\"3142\":2,\"3143\":6,\"3144\":2,\"3145\":3,\"3146\":1,\"3147\":0,\"3148\":1,\"3149\":0,\"3150\":0,\"3151\":4,\"3152\":0,\"3153\":1,\"3154\":51,\"3155\":4,\"3156\":3,\"3157\":0,\"3158\":1,\"3159\":7,\"3160\":0,\"3161\":0,\"3162\":1,\"3163\":0,\"3164\":0,\"3165\":2,\"3166\":4,\"3167\":4,\"3168\":2,\"3169\":3,\"3170\":7,\"3171\":0,\"3172\":1,\"3173\":5,\"3174\":0,\"3175\":1,\"3176\":26,\"3177\":2,\"3178\":0,\"3179\":4,\"3180\":0,\"3181\":2,\"3182\":3,\"3183\":9,\"3184\":0,\"3185\":2,\"3186\":0,\"3187\":16,\"3188\":0,\"3189\":4,\"3190\":0,\"3191\":6,\"3192\":1,\"3193\":0,\"3194\":3,\"3195\":2,\"3196\":0,\"3197\":0,\"3198\":0,\"3199\":4,\"3200\":2,\"3201\":4,\"3202\":0,\"3203\":3,\"3204\":1,\"3205\":0,\"3206\":1,\"3207\":0,\"3208\":1,\"3209\":1,\"3210\":1,\"3211\":0,\"3212\":3,\"3213\":1,\"3214\":0,\"3215\":0,\"3216\":10,\"3217\":0,\"3218\":1,\"3219\":1,\"3220\":0,\"3221\":1,\"3222\":2,\"3223\":1,\"3224\":1,\"3225\":0,\"3226\":1,\"3227\":7,\"3228\":1,\"3229\":4,\"3230\":0,\"3231\":3,\"3232\":0,\"3233\":0,\"3234\":5,\"3235\":2,\"3236\":0,\"3237\":5,\"3238\":8,\"3239\":6,\"3240\":2,\"3241\":1,\"3242\":1,\"3243\":3,\"3244\":0,\"3245\":3,\"3246\":1,\"3247\":0,\"3248\":0,\"3249\":9,\"3250\":2,\"3251\":0,\"3252\":1,\"3253\":5,\"3254\":1,\"3255\":1,\"3256\":3,\"3257\":8,\"3258\":2,\"3259\":0,\"3260\":0,\"3261\":0,\"3262\":0,\"3263\":0,\"3264\":1,\"3265\":1,\"3266\":0,\"3267\":0,\"3268\":0,\"3269\":0,\"3270\":0,\"3271\":0,\"3272\":1,\"3273\":2,\"3274\":0,\"3275\":0,\"3276\":0,\"3277\":0,\"3278\":0,\"3279\":1,\"3280\":0,\"3281\":0,\"3282\":3,\"3283\":1,\"3284\":6,\"3285\":0,\"3286\":1,\"3287\":1,\"3288\":0,\"3289\":1,\"3290\":0,\"3291\":2,\"3292\":3,\"3293\":1,\"3294\":0,\"3295\":3,\"3296\":1,\"3297\":1,\"3298\":2,\"3299\":2,\"3300\":0,\"3301\":1,\"3302\":0,\"3303\":0,\"3304\":1,\"3305\":0,\"3306\":10,\"3307\":1,\"3308\":4,\"3309\":1,\"3310\":1,\"3311\":0,\"3312\":1,\"3313\":3,\"3314\":0,\"3315\":0,\"3316\":2,\"3317\":0,\"3318\":1,\"3319\":1,\"3320\":1,\"3321\":2,\"3322\":3,\"3323\":3,\"3324\":1,\"3325\":1,\"3326\":5,\"3327\":3,\"3328\":3,\"3329\":9,\"3330\":0,\"3331\":2,\"3332\":0,\"3333\":0,\"3334\":1,\"3335\":0,\"3336\":1,\"3337\":1,\"3338\":1265,\"3339\":0,\"3340\":13,\"3341\":10,\"3342\":0,\"3343\":0,\"3344\":0,\"3345\":1,\"3346\":2,\"3347\":0,\"3348\":0,\"3349\":0,\"3350\":7,\"3351\":0,\"3352\":1,\"3353\":0,\"3354\":5,\"3355\":12,\"3356\":1,\"3357\":5,\"3358\":0,\"3359\":1,\"3360\":7,\"3361\":0,\"3362\":4,\"3363\":0,\"3364\":9,\"3365\":1,\"3366\":0,\"3367\":0,\"3368\":0,\"3369\":0,\"3370\":2,\"3371\":4,\"3372\":0,\"3373\":1,\"3374\":7,\"3375\":0,\"3376\":2,\"3377\":1,\"3378\":0,\"3379\":4,\"3380\":0,\"3381\":1,\"3382\":1,\"3383\":2,\"3384\":2,\"3385\":1,\"3386\":2,\"3387\":4,\"3388\":4,\"3389\":12,\"3390\":9,\"3391\":11,\"3392\":4,\"3393\":8,\"3394\":25,\"3395\":5,\"3396\":0,\"3397\":0,\"3398\":0,\"3399\":9,\"3400\":0,\"3401\":5,\"3402\":0,\"3403\":1,\"3404\":0,\"3405\":0,\"3406\":3,\"3407\":0,\"3408\":4,\"3409\":4,\"3410\":4,\"3411\":9,\"3412\":6,\"3413\":0,\"3414\":1,\"3415\":2,\"3416\":1,\"3417\":4,\"3418\":4,\"3419\":2,\"3420\":0,\"3421\":0,\"3422\":0,\"3423\":0,\"3424\":0,\"3425\":3,\"3426\":2,\"3427\":2,\"3428\":0,\"3429\":1,\"3430\":1,\"3431\":0,\"3432\":0,\"3433\":4,\"3434\":0,\"3435\":5,\"3436\":0,\"3437\":0,\"3438\":1,\"3439\":4,\"3440\":0,\"3441\":0,\"3442\":6,\"3443\":0,\"3444\":0,\"3445\":1,\"3446\":0,\"3447\":1,\"3448\":0,\"3449\":3,\"3450\":7,\"3451\":0,\"3452\":6,\"3453\":2,\"3454\":0,\"3455\":19,\"3456\":1,\"3457\":2,\"3458\":1,\"3459\":1,\"3460\":1,\"3461\":2,\"3462\":13,\"3463\":1,\"3464\":1,\"3465\":4,\"3466\":1,\"3467\":4,\"3468\":2,\"3469\":2,\"3470\":1,\"3471\":3,\"3472\":3,\"3473\":1,\"3474\":3,\"3475\":0,\"3476\":5,\"3477\":2,\"3478\":1,\"3479\":4,\"3480\":9,\"3481\":1,\"3482\":0,\"3483\":0,\"3484\":0,\"3485\":2,\"3486\":0,\"3487\":1,\"3488\":0,\"3489\":3,\"3490\":0,\"3491\":2,\"3492\":2,\"3493\":2,\"3494\":0,\"3495\":0,\"3496\":5,\"3497\":0,\"3498\":6,\"3499\":0,\"3500\":21,\"3501\":2,\"3502\":28,\"3503\":0,\"3504\":0,\"3505\":1,\"3506\":0,\"3507\":2,\"3508\":1,\"3509\":4,\"3510\":1,\"3511\":1,\"3512\":2,\"3513\":4,\"3514\":0,\"3515\":0,\"3516\":0,\"3517\":63,\"3518\":3,\"3519\":3,\"3520\":0,\"3521\":19,\"3522\":0,\"3523\":1,\"3524\":5,\"3525\":2,\"3526\":28,\"3527\":12,\"3528\":4,\"3529\":2,\"3530\":6,\"3531\":0,\"3532\":0,\"3533\":5,\"3534\":0,\"3535\":5,\"3536\":0,\"3537\":0,\"3538\":2,\"3539\":0,\"3540\":0,\"3541\":0,\"3542\":1,\"3543\":4,\"3544\":0,\"3545\":0,\"3546\":2,\"3547\":1,\"3548\":2,\"3549\":3,\"3550\":0,\"3551\":0,\"3552\":1,\"3553\":0,\"3554\":0,\"3555\":1,\"3556\":26,\"3557\":1,\"3558\":2,\"3559\":1,\"3560\":0,\"3561\":0,\"3562\":0,\"3563\":0,\"3564\":0,\"3565\":0,\"3566\":0,\"3567\":0,\"3568\":0,\"3569\":2,\"3570\":1,\"3571\":0,\"3572\":0,\"3573\":0,\"3574\":5,\"3575\":3,\"3576\":2,\"3577\":3,\"3578\":0,\"3579\":0,\"3580\":11,\"3581\":1,\"3582\":0,\"3583\":1,\"3584\":1,\"3585\":3,\"3586\":2,\"3587\":4,\"3588\":2,\"3589\":1,\"3590\":0,\"3591\":4,\"3592\":0,\"3593\":1,\"3594\":1,\"3595\":0,\"3596\":10,\"3597\":2,\"3598\":0,\"3599\":4,\"3600\":0,\"3601\":1,\"3602\":0,\"3603\":2,\"3604\":0,\"3605\":0,\"3606\":0,\"3607\":1,\"3608\":1,\"3609\":1,\"3610\":0,\"3611\":1,\"3612\":2,\"3613\":11,\"3614\":8,\"3615\":0,\"3616\":25,\"3617\":3,\"3618\":1,\"3619\":409,\"3620\":2,\"3621\":1,\"3622\":1,\"3623\":0,\"3624\":0,\"3625\":0,\"3626\":2,\"3627\":6,\"3628\":0,\"3629\":0,\"3630\":1,\"3631\":0,\"3632\":2,\"3633\":5,\"3634\":4,\"3635\":0,\"3636\":9,\"3637\":1,\"3638\":1,\"3639\":3,\"3640\":0,\"3641\":1,\"3642\":1,\"3643\":2,\"3644\":4,\"3645\":0,\"3646\":0,\"3647\":0,\"3648\":0,\"3649\":1,\"3650\":1,\"3651\":0,\"3652\":0,\"3653\":1,\"3654\":0,\"3655\":0,\"3656\":6,\"3657\":0,\"3658\":4,\"3659\":111,\"3660\":2,\"3661\":4,\"3662\":9,\"3663\":0,\"3664\":5,\"3665\":0,\"3666\":1,\"3667\":0,\"3668\":0,\"3669\":0,\"3670\":0,\"3671\":1,\"3672\":0,\"3673\":0,\"3674\":0,\"3675\":1,\"3676\":2,\"3677\":2,\"3678\":25,\"3679\":2,\"3680\":0,\"3681\":1,\"3682\":0,\"3683\":2,\"3684\":0,\"3685\":2,\"3686\":2,\"3687\":0,\"3688\":13,\"3689\":20,\"3690\":1,\"3691\":0,\"3692\":1,\"3693\":0,\"3694\":0,\"3695\":0,\"3696\":0,\"3697\":1,\"3698\":2,\"3699\":0,\"3700\":0,\"3701\":0,\"3702\":0,\"3703\":0,\"3704\":0,\"3705\":0,\"3706\":3,\"3707\":3,\"3708\":2,\"3709\":5,\"3710\":7,\"3711\":9,\"3712\":0,\"3713\":0,\"3714\":4,\"3715\":15,\"3716\":0,\"3717\":0,\"3718\":0,\"3719\":0,\"3720\":8,\"3721\":1,\"3722\":1,\"3723\":5,\"3724\":0,\"3725\":0,\"3726\":0,\"3727\":2,\"3728\":1,\"3729\":1,\"3730\":0,\"3731\":4,\"3732\":1,\"3733\":2,\"3734\":0,\"3735\":1,\"3736\":2,\"3737\":1,\"3738\":0,\"3739\":2,\"3740\":4,\"3741\":0,\"3742\":1,\"3743\":3,\"3744\":2,\"3745\":3,\"3746\":2,\"3747\":2,\"3748\":0,\"3749\":23,\"3750\":1,\"3751\":0,\"3752\":0,\"3753\":0,\"3754\":2,\"3755\":4,\"3756\":3,\"3757\":1,\"3758\":6,\"3759\":0,\"3760\":1,\"3761\":4,\"3762\":10,\"3763\":0,\"3764\":3,\"3765\":0,\"3766\":3,\"3767\":3,\"3768\":5,\"3769\":2,\"3770\":1,\"3771\":1,\"3772\":0,\"3773\":2,\"3774\":0,\"3775\":1,\"3776\":1,\"3777\":2,\"3778\":0,\"3779\":0,\"3780\":8,\"3781\":1,\"3782\":2,\"3783\":7,\"3784\":3,\"3785\":1,\"3786\":0,\"3787\":106,\"3788\":0,\"3789\":10,\"3790\":0,\"3791\":16,\"3792\":2,\"3793\":2,\"3794\":20,\"3795\":3,\"3796\":3,\"3797\":1,\"3798\":0,\"3799\":7,\"3800\":5,\"3801\":4,\"3802\":0,\"3803\":2,\"3804\":0,\"3805\":0,\"3806\":1,\"3807\":1,\"3808\":1,\"3809\":5,\"3810\":2,\"3811\":4,\"3812\":5,\"3813\":3,\"3814\":1,\"3815\":95,\"3816\":4,\"3817\":0,\"3818\":3,\"3819\":0,\"3820\":1,\"3821\":7,\"3822\":1,\"3823\":74,\"3824\":2,\"3825\":0,\"3826\":0,\"3827\":1,\"3828\":1,\"3829\":0,\"3830\":1,\"3831\":2,\"3832\":2,\"3833\":2,\"3834\":2,\"3835\":0,\"3836\":2,\"3837\":0,\"3838\":2,\"3839\":102,\"3840\":12,\"3841\":6,\"3842\":2,\"3843\":1,\"3844\":2,\"3845\":268,\"3846\":3,\"3847\":524,\"3848\":42,\"3849\":1,\"3850\":1,\"3851\":0,\"3852\":1,\"3853\":1,\"3854\":3,\"3855\":2,\"3856\":1,\"3857\":2,\"3858\":3,\"3859\":1,\"3860\":1,\"3861\":2,\"3862\":1,\"3863\":6,\"3864\":2,\"3865\":0,\"3866\":0,\"3867\":1,\"3868\":0,\"3869\":0,\"3870\":5,\"3871\":0,\"3872\":0,\"3873\":1,\"3874\":0,\"3875\":1,\"3876\":0,\"3877\":0,\"3878\":1,\"3879\":3,\"3880\":2,\"3881\":2,\"3882\":0,\"3883\":1,\"3884\":0,\"3885\":1,\"3886\":0,\"3887\":1,\"3888\":2,\"3889\":1,\"3890\":1,\"3891\":2,\"3892\":2,\"3893\":3,\"3894\":2,\"3895\":5,\"3896\":0,\"3897\":0,\"3898\":1,\"3899\":0,\"3900\":0,\"3901\":0,\"3902\":2,\"3903\":4,\"3904\":3,\"3905\":0,\"3906\":2,\"3907\":2,\"3908\":4,\"3909\":1,\"3910\":2,\"3911\":2,\"3912\":8,\"3913\":4,\"3914\":4,\"3915\":0,\"3916\":0,\"3917\":5,\"3918\":0,\"3919\":1,\"3920\":5,\"3921\":21,\"3922\":15,\"3923\":0,\"3924\":0,\"3925\":2,\"3926\":2,\"3927\":4,\"3928\":0,\"3929\":0,\"3930\":0,\"3931\":6,\"3932\":3,\"3933\":1,\"3934\":0,\"3935\":0,\"3936\":69,\"3937\":0,\"3938\":2,\"3939\":0,\"3940\":1,\"3941\":2,\"3942\":1,\"3943\":1,\"3944\":0,\"3945\":3,\"3946\":0,\"3947\":0,\"3948\":0,\"3949\":0,\"3950\":5,\"3951\":0,\"3952\":0,\"3953\":0,\"3954\":2,\"3955\":0,\"3956\":0,\"3957\":0,\"3958\":0,\"3959\":0,\"3960\":5,\"3961\":13,\"3962\":0,\"3963\":7,\"3964\":5,\"3965\":0,\"3966\":529,\"3967\":1,\"3968\":8,\"3969\":3,\"3970\":0,\"3971\":1,\"3972\":0,\"3973\":0,\"3974\":2,\"3975\":3,\"3976\":7,\"3977\":0,\"3978\":3,\"3979\":1,\"3980\":3,\"3981\":1,\"3982\":1,\"3983\":0,\"3984\":14,\"3985\":0,\"3986\":0,\"3987\":0,\"3988\":1,\"3989\":0,\"3990\":1,\"3991\":4,\"3992\":0,\"3993\":0,\"3994\":0,\"3995\":3,\"3996\":0,\"3997\":4,\"3998\":1,\"3999\":1,\"4000\":1,\"4001\":0,\"4002\":0,\"4003\":0,\"4004\":1,\"4005\":3,\"4006\":1,\"4007\":2,\"4008\":99,\"4009\":2,\"4010\":0,\"4011\":2,\"4012\":0,\"4013\":1,\"4014\":1,\"4015\":0,\"4016\":1,\"4017\":2,\"4018\":0,\"4019\":0,\"4020\":1,\"4021\":0,\"4022\":1,\"4023\":1,\"4024\":5,\"4025\":0,\"4026\":1,\"4027\":1,\"4028\":1,\"4029\":27,\"4030\":1,\"4031\":0,\"4032\":4,\"4033\":0,\"4034\":4,\"4035\":0,\"4036\":1,\"4037\":7,\"4038\":2,\"4039\":4,\"4040\":5,\"4041\":0,\"4042\":1,\"4043\":2,\"4044\":4,\"4045\":2,\"4046\":11,\"4047\":1,\"4048\":0,\"4049\":4,\"4050\":0,\"4051\":1,\"4052\":1,\"4053\":0,\"4054\":1,\"4055\":0,\"4056\":0,\"4057\":0,\"4058\":0,\"4059\":0,\"4060\":0,\"4061\":7,\"4062\":0,\"4063\":0,\"4064\":0,\"4065\":1,\"4066\":0,\"4067\":0,\"4068\":0,\"4069\":0,\"4070\":0,\"4071\":1,\"4072\":0,\"4073\":0,\"4074\":0,\"4075\":0,\"4076\":0,\"4077\":0,\"4078\":0,\"4079\":4,\"4080\":3,\"4081\":3,\"4082\":4,\"4083\":0,\"4084\":0,\"4085\":1,\"4086\":5,\"4087\":0,\"4088\":2,\"4089\":1,\"4090\":3,\"4091\":1,\"4092\":0,\"4093\":6,\"4094\":1,\"4095\":2,\"4096\":2,\"4097\":1,\"4098\":17,\"4099\":0,\"4100\":0,\"4101\":3,\"4102\":4,\"4103\":1,\"4104\":3,\"4105\":1,\"4106\":5,\"4107\":2,\"4108\":1,\"4109\":0,\"4110\":0,\"4111\":0,\"4112\":0,\"4113\":1,\"4114\":0,\"4115\":0,\"4116\":0,\"4117\":0,\"4118\":2,\"4119\":4,\"4120\":1,\"4121\":2,\"4122\":0,\"4123\":12,\"4124\":4,\"4125\":23,\"4126\":0,\"4127\":0,\"4128\":0,\"4129\":12,\"4130\":2,\"4131\":0,\"4132\":0,\"4133\":0,\"4134\":1,\"4135\":7,\"4136\":0,\"4137\":3,\"4138\":56,\"4139\":1,\"4140\":3,\"4141\":49,\"4142\":0,\"4143\":0,\"4144\":1,\"4145\":0,\"4146\":0,\"4147\":3,\"4148\":1,\"4149\":5,\"4150\":1,\"4151\":0,\"4152\":1,\"4153\":1,\"4154\":0,\"4155\":0,\"4156\":0,\"4157\":7,\"4158\":0,\"4159\":0,\"4160\":7,\"4161\":0,\"4162\":0,\"4163\":4,\"4164\":0,\"4165\":0,\"4166\":1,\"4167\":2,\"4168\":0,\"4169\":3,\"4170\":2,\"4171\":2,\"4172\":1,\"4173\":1,\"4174\":0,\"4175\":0,\"4176\":0,\"4177\":2,\"4178\":1,\"4179\":1,\"4180\":0,\"4181\":0,\"4182\":0,\"4183\":0,\"4184\":4,\"4185\":3,\"4186\":3,\"4187\":2,\"4188\":1,\"4189\":2,\"4190\":43,\"4191\":1,\"4192\":1,\"4193\":0,\"4194\":1,\"4195\":1,\"4196\":18,\"4197\":1,\"4198\":4,\"4199\":10,\"4200\":2,\"4201\":48,\"4202\":0,\"4203\":18,\"4204\":3,\"4205\":1,\"4206\":1,\"4207\":1,\"4208\":4,\"4209\":0,\"4210\":2,\"4211\":0,\"4212\":9,\"4213\":0,\"4214\":0,\"4215\":2,\"4216\":1,\"4217\":11,\"4218\":0,\"4219\":1,\"4220\":5,\"4221\":4,\"4222\":0,\"4223\":6,\"4224\":2,\"4225\":3,\"4226\":2,\"4227\":0,\"4228\":2,\"4229\":1,\"4230\":1,\"4231\":0,\"4232\":1,\"4233\":6,\"4234\":7,\"4235\":0,\"4236\":1,\"4237\":0,\"4238\":0,\"4239\":5,\"4240\":2,\"4241\":1,\"4242\":0,\"4243\":0,\"4244\":0,\"4245\":0,\"4246\":1,\"4247\":0,\"4248\":3,\"4249\":1,\"4250\":1,\"4251\":0,\"4252\":4,\"4253\":6,\"4254\":0,\"4255\":1,\"4256\":0,\"4257\":1,\"4258\":2,\"4259\":1,\"4260\":25,\"4261\":0,\"4262\":0,\"4263\":1,\"4264\":0,\"4265\":7,\"4266\":0,\"4267\":0,\"4268\":0,\"4269\":1,\"4270\":3,\"4271\":3,\"4272\":4,\"4273\":0,\"4274\":0,\"4275\":0,\"4276\":1,\"4277\":0,\"4278\":0,\"4279\":0,\"4280\":0,\"4281\":1,\"4282\":0,\"4283\":2,\"4284\":0,\"4285\":3,\"4286\":3,\"4287\":4,\"4288\":6,\"4289\":11,\"4290\":0,\"4291\":3,\"4292\":2,\"4293\":0,\"4294\":0,\"4295\":1,\"4296\":14,\"4297\":4,\"4298\":4,\"4299\":5,\"4300\":1,\"4301\":7,\"4302\":0,\"4303\":0,\"4304\":0,\"4305\":2,\"4306\":0,\"4307\":1,\"4308\":2,\"4309\":0,\"4310\":2,\"4311\":3,\"4312\":2,\"4313\":2,\"4314\":1,\"4315\":0,\"4316\":3,\"4317\":4,\"4318\":0,\"4319\":9,\"4320\":3,\"4321\":9,\"4322\":7,\"4323\":0,\"4324\":2,\"4325\":1,\"4326\":0,\"4327\":0,\"4328\":0,\"4329\":0,\"4330\":0,\"4331\":0,\"4332\":0,\"4333\":0,\"4334\":0,\"4335\":0,\"4336\":1,\"4337\":0,\"4338\":0,\"4339\":0,\"4340\":0,\"4341\":0,\"4342\":1,\"4343\":0,\"4344\":0,\"4345\":4,\"4346\":11,\"4347\":0,\"4348\":4,\"4349\":2,\"4350\":1,\"4351\":1,\"4352\":0,\"4353\":3,\"4354\":4,\"4355\":0,\"4356\":0,\"4357\":5,\"4358\":0,\"4359\":0,\"4360\":0,\"4361\":1,\"4362\":2,\"4363\":0,\"4364\":1,\"4365\":1,\"4366\":2,\"4367\":2,\"4368\":3,\"4369\":2,\"4370\":1,\"4371\":2,\"4372\":0,\"4373\":2,\"4374\":1,\"4375\":0,\"4376\":1,\"4377\":2,\"4378\":4,\"4379\":20,\"4380\":1,\"4381\":4,\"4382\":1,\"4383\":2,\"4384\":1,\"4385\":0,\"4386\":1,\"4387\":3,\"4388\":6,\"4389\":4,\"4390\":6,\"4391\":0,\"4392\":2,\"4393\":3,\"4394\":1,\"4395\":0,\"4396\":1,\"4397\":0,\"4398\":0,\"4399\":0,\"4400\":4,\"4401\":0,\"4402\":1,\"4403\":51,\"4404\":0,\"4405\":0,\"4406\":4,\"4407\":1,\"4408\":3,\"4409\":3,\"4410\":1,\"4411\":0,\"4412\":1,\"4413\":7,\"4414\":0,\"4415\":0,\"4416\":0,\"4417\":1,\"4418\":0,\"4419\":0,\"4420\":8,\"4421\":0,\"4422\":0,\"4423\":22,\"4424\":0,\"4425\":0,\"4426\":0,\"4427\":2,\"4428\":0,\"4429\":3,\"4430\":1,\"4431\":4,\"4432\":0,\"4433\":4,\"4434\":1,\"4435\":2,\"4436\":0,\"4437\":3,\"4438\":2,\"4439\":7,\"4440\":4,\"4441\":1,\"4442\":0,\"4443\":2,\"4444\":3,\"4445\":0,\"4446\":1,\"4447\":1,\"4448\":18,\"4449\":5,\"4450\":1,\"4451\":0,\"4452\":1,\"4453\":1,\"4454\":0,\"4455\":0,\"4456\":6,\"4457\":1,\"4458\":1,\"4459\":2,\"4460\":1,\"4461\":12,\"4462\":1,\"4463\":26,\"4464\":0,\"4465\":1,\"4466\":2,\"4467\":0,\"4468\":1,\"4469\":1,\"4470\":1,\"4471\":4,\"4472\":1,\"4473\":2,\"4474\":4,\"4475\":3,\"4476\":0,\"4477\":0,\"4478\":0,\"4479\":1,\"4480\":4,\"4481\":13,\"4482\":2,\"4483\":0,\"4484\":1,\"4485\":2,\"4486\":3,\"4487\":9,\"4488\":4,\"4489\":0,\"4490\":2,\"4491\":0,\"4492\":19,\"4493\":16,\"4494\":2,\"4495\":2,\"4496\":0,\"4497\":0,\"4498\":0,\"4499\":4,\"4500\":6,\"4501\":5,\"4502\":0,\"4503\":6,\"4504\":2,\"4505\":1,\"4506\":0,\"4507\":1,\"4508\":0,\"4509\":3,\"4510\":4,\"4511\":2,\"4512\":1,\"4513\":0,\"4514\":0,\"4515\":3,\"4516\":1,\"4517\":0,\"4518\":4,\"4519\":7,\"4520\":1,\"4521\":2,\"4522\":0,\"4523\":0,\"4524\":4,\"4525\":1,\"4526\":27,\"4527\":0,\"4528\":5,\"4529\":7,\"4530\":3,\"4531\":1,\"4532\":3,\"4533\":0,\"4534\":2,\"4535\":0,\"4536\":1,\"4537\":0,\"4538\":0,\"4539\":0,\"4540\":1,\"4541\":0,\"4542\":0,\"4543\":0,\"4544\":0,\"4545\":0,\"4546\":1,\"4547\":4,\"4548\":0,\"4549\":1,\"4550\":1,\"4551\":3,\"4552\":1,\"4553\":0,\"4554\":1,\"4555\":0,\"4556\":30,\"4557\":3,\"4558\":1,\"4559\":0,\"4560\":0,\"4561\":0,\"4562\":0,\"4563\":0,\"4564\":10,\"4565\":0,\"4566\":1,\"4567\":1,\"4568\":1,\"4569\":3,\"4570\":2,\"4571\":3,\"4572\":0,\"4573\":1,\"4574\":4,\"4575\":3,\"4576\":2,\"4577\":0,\"4578\":1,\"4579\":1,\"4580\":1,\"4581\":0,\"4582\":1,\"4583\":1,\"4584\":2,\"4585\":18,\"4586\":7,\"4587\":1,\"4588\":1,\"4589\":4,\"4590\":0,\"4591\":3,\"4592\":0,\"4593\":1,\"4594\":0,\"4595\":5,\"4596\":16,\"4597\":0,\"4598\":2,\"4599\":0,\"4600\":5,\"4601\":8,\"4602\":6,\"4603\":2,\"4604\":1,\"4605\":1,\"4606\":1,\"4607\":0,\"4608\":3,\"4609\":0,\"4610\":1,\"4611\":0,\"4612\":1,\"4613\":108,\"4614\":3,\"4615\":17,\"4616\":1,\"4617\":0,\"4618\":0,\"4619\":9,\"4620\":13,\"4621\":0,\"4622\":2,\"4623\":11,\"4624\":1,\"4625\":5,\"4626\":1,\"4627\":1,\"4628\":2,\"4629\":0,\"4630\":3,\"4631\":8,\"4632\":2,\"4633\":0,\"4634\":0,\"4635\":0,\"4636\":0,\"4637\":289,\"4638\":1,\"4639\":1,\"4640\":0,\"4641\":0,\"4642\":0,\"4643\":0,\"4644\":0,\"4645\":1,\"4646\":0,\"4647\":0,\"4648\":1,\"4649\":2,\"4650\":0,\"4651\":0,\"4652\":0,\"4653\":0,\"4654\":0,\"4655\":0,\"4656\":1,\"4657\":0,\"4658\":0,\"4659\":1,\"4660\":1,\"4661\":214,\"4662\":4,\"4663\":0,\"4664\":8,\"4665\":1,\"4666\":0,\"4667\":1,\"4668\":15,\"4669\":8,\"4670\":13,\"4671\":5,\"4672\":16,\"4673\":1,\"4674\":1,\"4675\":0,\"4676\":1,\"4677\":3,\"4678\":2,\"4679\":1,\"4680\":0,\"4681\":2,\"4682\":0,\"4683\":0,\"4684\":2,\"4685\":5,\"4686\":3,\"4687\":1,\"4688\":12,\"4689\":0,\"4690\":6,\"4691\":0,\"4692\":1,\"4693\":0,\"4694\":1,\"4695\":3,\"4696\":1,\"4697\":0,\"4698\":1,\"4699\":1,\"4700\":1,\"4701\":2,\"4702\":0,\"4703\":31,\"4704\":2,\"4705\":0,\"4706\":1,\"4707\":0,\"4708\":0,\"4709\":1,\"4710\":0,\"4711\":10,\"4712\":1,\"4713\":0,\"4714\":4,\"4715\":2,\"4716\":1,\"4717\":2,\"4718\":1,\"4719\":0,\"4720\":0,\"4721\":3,\"4722\":0,\"4723\":0,\"4724\":5,\"4725\":17,\"4726\":12,\"4727\":2,\"4728\":0,\"4729\":0,\"4730\":1,\"4731\":6,\"4732\":1,\"4733\":0,\"4734\":1,\"4735\":1,\"4736\":4,\"4737\":2,\"4738\":1,\"4739\":1,\"4740\":1,\"4741\":2,\"4742\":12,\"4743\":1,\"4744\":1,\"4745\":3,\"4746\":4,\"4747\":2,\"4748\":1,\"4749\":1,\"4750\":0,\"4751\":1,\"4752\":1,\"4753\":1,\"4754\":0,\"4755\":0,\"4756\":0,\"4757\":3,\"4758\":1,\"4759\":1,\"4760\":5,\"4761\":0,\"4762\":3,\"4763\":4,\"4764\":3,\"4765\":9,\"4766\":0,\"4767\":2,\"4768\":1,\"4769\":1,\"4770\":2,\"4771\":8,\"4772\":9,\"4773\":10,\"4774\":0,\"4775\":4,\"4776\":1,\"4777\":0,\"4778\":0,\"4779\":0,\"4780\":1,\"4781\":0,\"4782\":14,\"4783\":1,\"4784\":1,\"4785\":1265,\"4786\":0,\"4787\":3,\"4788\":13,\"4789\":10,\"4790\":0,\"4791\":1,\"4792\":0,\"4793\":3,\"4794\":0,\"4795\":2,\"4796\":1,\"4797\":14,\"4798\":14,\"4799\":6,\"4800\":0,\"4801\":0,\"4802\":0,\"4803\":7,\"4804\":0,\"4805\":1,\"4806\":1,\"4807\":94,\"4808\":2,\"4809\":3,\"4810\":0,\"4811\":4,\"4812\":0,\"4813\":2,\"4814\":5,\"4815\":12,\"4816\":1,\"4817\":2,\"4818\":5,\"4819\":0,\"4820\":2,\"4821\":2,\"4822\":1,\"4823\":7,\"4824\":0,\"4825\":0,\"4826\":1,\"4827\":4,\"4828\":23,\"4829\":2,\"4830\":2,\"4831\":26,\"4832\":0,\"4833\":0,\"4834\":9,\"4835\":1,\"4836\":1,\"4837\":2,\"4838\":5,\"4839\":0,\"4840\":0,\"4841\":0,\"4842\":1,\"4843\":0,\"4844\":0,\"4845\":2,\"4846\":4,\"4847\":1,\"4848\":0,\"4849\":33,\"4850\":1,\"4851\":2,\"4852\":0,\"4853\":0,\"4854\":0,\"4855\":0,\"4856\":0,\"4857\":1,\"4858\":0,\"4859\":7,\"4860\":0,\"4861\":1,\"4862\":0,\"4863\":0,\"4864\":2,\"4865\":0,\"4866\":0,\"4867\":0,\"4868\":0,\"4869\":1,\"4870\":0,\"4871\":1,\"4872\":1058,\"4873\":1,\"4874\":0,\"4875\":4,\"4876\":1,\"4877\":7,\"4878\":1,\"4879\":2,\"4880\":2,\"4881\":3,\"4882\":2,\"4883\":0,\"4884\":0,\"4885\":1,\"4886\":2,\"4887\":2,\"4888\":8,\"4889\":2,\"4890\":4,\"4891\":4,\"4892\":2,\"4893\":3,\"4894\":4,\"4895\":0,\"4896\":2,\"4897\":0,\"4898\":12,\"4899\":9,\"4900\":62,\"4901\":11,\"4902\":4,\"4903\":0,\"4904\":1,\"4905\":0,\"4906\":3,\"4907\":15,\"4908\":1,\"4909\":3,\"4910\":1,\"4911\":8,\"4912\":1,\"4913\":9,\"4914\":0,\"4915\":5,\"4916\":0,\"4917\":1,\"4918\":0,\"4919\":0,\"4920\":0,\"4921\":1,\"4922\":1,\"4923\":0,\"4924\":0,\"4925\":0,\"4926\":0,\"4927\":0,\"4928\":1,\"4929\":9,\"4930\":1,\"4931\":28,\"4932\":0,\"4933\":1,\"4934\":1,\"4935\":0,\"4936\":5,\"4937\":4,\"4938\":1,\"4939\":2,\"4940\":0,\"4941\":0,\"4942\":8,\"4943\":1,\"4944\":3,\"4945\":1,\"4946\":0,\"4947\":3,\"4948\":0,\"4949\":4,\"4950\":0,\"4951\":1,\"4952\":1,\"4953\":4,\"4954\":4,\"4955\":2,\"4956\":9,\"4957\":1,\"4958\":6,\"4959\":3,\"4960\":0,\"4961\":0,\"4962\":0,\"4963\":1,\"4964\":2,\"4965\":2,\"4966\":4,\"4967\":2,\"4968\":5,\"4969\":15,\"4970\":0,\"4971\":4,\"4972\":13,\"4973\":0,\"4974\":0,\"4975\":9,\"4976\":2,\"4977\":0,\"4978\":7,\"4979\":1,\"4980\":1,\"4981\":0,\"4982\":0,\"4983\":0,\"4984\":0,\"4985\":0,\"4986\":0,\"4987\":3,\"4988\":0,\"4989\":10,\"4990\":0,\"4991\":2,\"4992\":0,\"4993\":3,\"4994\":0,\"4995\":3,\"4996\":5,\"4997\":6,\"4998\":0,\"4999\":0},\"favorited\":{\"0\":false,\"1\":false,\"2\":false,\"3\":false,\"4\":false,\"5\":false,\"6\":false,\"7\":false,\"8\":false,\"9\":false,\"10\":false,\"11\":false,\"12\":false,\"13\":false,\"14\":false,\"15\":false,\"16\":false,\"17\":false,\"18\":false,\"19\":false,\"20\":false,\"21\":false,\"22\":false,\"23\":false,\"24\":false,\"25\":false,\"26\":false,\"27\":false,\"28\":false,\"29\":false,\"30\":false,\"31\":false,\"32\":false,\"33\":false,\"34\":false,\"35\":false,\"36\":false,\"37\":false,\"38\":false,\"39\":false,\"40\":false,\"41\":false,\"42\":false,\"43\":false,\"44\":false,\"45\":false,\"46\":false,\"47\":false,\"48\":false,\"49\":false,\"50\":false,\"51\":false,\"52\":false,\"53\":false,\"54\":false,\"55\":false,\"56\":false,\"57\":false,\"58\":false,\"59\":false,\"60\":false,\"61\":false,\"62\":false,\"63\":false,\"64\":false,\"65\":false,\"66\":false,\"67\":false,\"68\":false,\"69\":false,\"70\":false,\"71\":false,\"72\":false,\"73\":false,\"74\":false,\"75\":false,\"76\":false,\"77\":false,\"78\":false,\"79\":false,\"80\":false,\"81\":false,\"82\":false,\"83\":false,\"84\":false,\"85\":false,\"86\":false,\"87\":false,\"88\":false,\"89\":false,\"90\":false,\"91\":false,\"92\":false,\"93\":false,\"94\":false,\"95\":false,\"96\":false,\"97\":false,\"98\":false,\"99\":false,\"100\":false,\"101\":false,\"102\":false,\"103\":false,\"104\":false,\"105\":false,\"106\":false,\"107\":false,\"108\":false,\"109\":false,\"110\":false,\"111\":false,\"112\":false,\"113\":false,\"114\":false,\"115\":false,\"116\":false,\"117\":false,\"118\":false,\"119\":false,\"120\":false,\"121\":false,\"122\":false,\"123\":false,\"124\":false,\"125\":false,\"126\":false,\"127\":false,\"128\":false,\"129\":false,\"130\":false,\"131\":false,\"132\":false,\"133\":false,\"134\":false,\"135\":false,\"136\":false,\"137\":false,\"138\":false,\"139\":false,\"140\":false,\"141\":false,\"142\":false,\"143\":false,\"144\":false,\"145\":false,\"146\":false,\"147\":false,\"148\":false,\"149\":false,\"150\":false,\"151\":false,\"152\":false,\"153\":false,\"154\":false,\"155\":false,\"156\":false,\"157\":false,\"158\":false,\"159\":false,\"160\":false,\"161\":false,\"162\":false,\"163\":false,\"164\":false,\"165\":false,\"166\":false,\"167\":false,\"168\":false,\"169\":false,\"170\":false,\"171\":false,\"172\":false,\"173\":false,\"174\":false,\"175\":false,\"176\":false,\"177\":false,\"178\":false,\"179\":false,\"180\":false,\"181\":false,\"182\":false,\"183\":false,\"184\":false,\"185\":false,\"186\":false,\"187\":false,\"188\":false,\"189\":false,\"190\":false,\"191\":false,\"192\":false,\"193\":false,\"194\":false,\"195\":false,\"196\":false,\"197\":false,\"198\":false,\"199\":false,\"200\":false,\"201\":false,\"202\":false,\"203\":false,\"204\":false,\"205\":false,\"206\":false,\"207\":false,\"208\":false,\"209\":false,\"210\":false,\"211\":false,\"212\":false,\"213\":false,\"214\":false,\"215\":false,\"216\":false,\"217\":false,\"218\":false,\"219\":false,\"220\":false,\"221\":false,\"222\":false,\"223\":false,\"224\":false,\"225\":false,\"226\":false,\"227\":false,\"228\":false,\"229\":false,\"230\":false,\"231\":false,\"232\":false,\"233\":false,\"234\":false,\"235\":false,\"236\":false,\"237\":false,\"238\":false,\"239\":false,\"240\":false,\"241\":false,\"242\":false,\"243\":false,\"244\":false,\"245\":false,\"246\":false,\"247\":false,\"248\":false,\"249\":false,\"250\":false,\"251\":false,\"252\":false,\"253\":false,\"254\":false,\"255\":false,\"256\":false,\"257\":false,\"258\":false,\"259\":false,\"260\":false,\"261\":false,\"262\":false,\"263\":false,\"264\":false,\"265\":false,\"266\":false,\"267\":false,\"268\":false,\"269\":false,\"270\":false,\"271\":false,\"272\":false,\"273\":false,\"274\":false,\"275\":false,\"276\":false,\"277\":false,\"278\":false,\"279\":false,\"280\":false,\"281\":false,\"282\":false,\"283\":false,\"284\":false,\"285\":false,\"286\":false,\"287\":false,\"288\":false,\"289\":false,\"290\":false,\"291\":false,\"292\":false,\"293\":false,\"294\":false,\"295\":false,\"296\":false,\"297\":false,\"298\":false,\"299\":false,\"300\":false,\"301\":false,\"302\":false,\"303\":false,\"304\":false,\"305\":false,\"306\":false,\"307\":false,\"308\":false,\"309\":false,\"310\":false,\"311\":false,\"312\":false,\"313\":false,\"314\":false,\"315\":false,\"316\":false,\"317\":false,\"318\":false,\"319\":false,\"320\":false,\"321\":false,\"322\":false,\"323\":false,\"324\":false,\"325\":false,\"326\":false,\"327\":false,\"328\":false,\"329\":false,\"330\":false,\"331\":false,\"332\":false,\"333\":false,\"334\":false,\"335\":false,\"336\":false,\"337\":false,\"338\":false,\"339\":false,\"340\":false,\"341\":false,\"342\":false,\"343\":false,\"344\":false,\"345\":false,\"346\":false,\"347\":false,\"348\":false,\"349\":false,\"350\":false,\"351\":false,\"352\":false,\"353\":false,\"354\":false,\"355\":false,\"356\":false,\"357\":false,\"358\":false,\"359\":false,\"360\":false,\"361\":false,\"362\":false,\"363\":false,\"364\":false,\"365\":false,\"366\":false,\"367\":false,\"368\":false,\"369\":false,\"370\":false,\"371\":false,\"372\":false,\"373\":false,\"374\":false,\"375\":false,\"376\":false,\"377\":false,\"378\":false,\"379\":false,\"380\":false,\"381\":false,\"382\":false,\"383\":false,\"384\":false,\"385\":false,\"386\":false,\"387\":false,\"388\":false,\"389\":false,\"390\":false,\"391\":false,\"392\":false,\"393\":false,\"394\":false,\"395\":false,\"396\":false,\"397\":false,\"398\":false,\"399\":false,\"400\":false,\"401\":false,\"402\":false,\"403\":false,\"404\":false,\"405\":false,\"406\":false,\"407\":false,\"408\":false,\"409\":false,\"410\":false,\"411\":false,\"412\":false,\"413\":false,\"414\":false,\"415\":false,\"416\":false,\"417\":false,\"418\":false,\"419\":false,\"420\":false,\"421\":false,\"422\":false,\"423\":false,\"424\":false,\"425\":false,\"426\":false,\"427\":false,\"428\":false,\"429\":false,\"430\":false,\"431\":false,\"432\":false,\"433\":false,\"434\":false,\"435\":false,\"436\":false,\"437\":false,\"438\":false,\"439\":false,\"440\":false,\"441\":false,\"442\":false,\"443\":false,\"444\":false,\"445\":false,\"446\":false,\"447\":false,\"448\":false,\"449\":false,\"450\":false,\"451\":false,\"452\":false,\"453\":false,\"454\":false,\"455\":false,\"456\":false,\"457\":false,\"458\":false,\"459\":false,\"460\":false,\"461\":false,\"462\":false,\"463\":false,\"464\":false,\"465\":false,\"466\":false,\"467\":false,\"468\":false,\"469\":false,\"470\":false,\"471\":false,\"472\":false,\"473\":false,\"474\":false,\"475\":false,\"476\":false,\"477\":false,\"478\":false,\"479\":false,\"480\":false,\"481\":false,\"482\":false,\"483\":false,\"484\":false,\"485\":false,\"486\":false,\"487\":false,\"488\":false,\"489\":false,\"490\":false,\"491\":false,\"492\":false,\"493\":false,\"494\":false,\"495\":false,\"496\":false,\"497\":false,\"498\":false,\"499\":false,\"500\":false,\"501\":false,\"502\":false,\"503\":false,\"504\":false,\"505\":false,\"506\":false,\"507\":false,\"508\":false,\"509\":false,\"510\":false,\"511\":false,\"512\":false,\"513\":false,\"514\":false,\"515\":false,\"516\":false,\"517\":false,\"518\":false,\"519\":false,\"520\":false,\"521\":false,\"522\":false,\"523\":false,\"524\":false,\"525\":false,\"526\":false,\"527\":false,\"528\":false,\"529\":false,\"530\":false,\"531\":false,\"532\":false,\"533\":false,\"534\":false,\"535\":false,\"536\":false,\"537\":false,\"538\":false,\"539\":false,\"540\":false,\"541\":false,\"542\":false,\"543\":false,\"544\":false,\"545\":false,\"546\":false,\"547\":false,\"548\":false,\"549\":false,\"550\":false,\"551\":false,\"552\":false,\"553\":false,\"554\":false,\"555\":false,\"556\":false,\"557\":false,\"558\":false,\"559\":false,\"560\":false,\"561\":false,\"562\":false,\"563\":false,\"564\":false,\"565\":false,\"566\":false,\"567\":false,\"568\":false,\"569\":false,\"570\":false,\"571\":false,\"572\":false,\"573\":false,\"574\":false,\"575\":false,\"576\":false,\"577\":false,\"578\":false,\"579\":false,\"580\":false,\"581\":false,\"582\":false,\"583\":false,\"584\":false,\"585\":false,\"586\":false,\"587\":false,\"588\":false,\"589\":false,\"590\":false,\"591\":false,\"592\":false,\"593\":false,\"594\":false,\"595\":false,\"596\":false,\"597\":false,\"598\":false,\"599\":false,\"600\":false,\"601\":false,\"602\":false,\"603\":false,\"604\":false,\"605\":false,\"606\":false,\"607\":false,\"608\":false,\"609\":false,\"610\":false,\"611\":false,\"612\":false,\"613\":false,\"614\":false,\"615\":false,\"616\":false,\"617\":false,\"618\":false,\"619\":false,\"620\":false,\"621\":false,\"622\":false,\"623\":false,\"624\":false,\"625\":false,\"626\":false,\"627\":false,\"628\":false,\"629\":false,\"630\":false,\"631\":false,\"632\":false,\"633\":false,\"634\":false,\"635\":false,\"636\":false,\"637\":false,\"638\":false,\"639\":false,\"640\":false,\"641\":false,\"642\":false,\"643\":false,\"644\":false,\"645\":false,\"646\":false,\"647\":false,\"648\":false,\"649\":false,\"650\":false,\"651\":false,\"652\":false,\"653\":false,\"654\":false,\"655\":false,\"656\":false,\"657\":false,\"658\":false,\"659\":false,\"660\":false,\"661\":false,\"662\":false,\"663\":false,\"664\":false,\"665\":false,\"666\":false,\"667\":false,\"668\":false,\"669\":false,\"670\":false,\"671\":false,\"672\":false,\"673\":false,\"674\":false,\"675\":false,\"676\":false,\"677\":false,\"678\":false,\"679\":false,\"680\":false,\"681\":false,\"682\":false,\"683\":false,\"684\":false,\"685\":false,\"686\":false,\"687\":false,\"688\":false,\"689\":false,\"690\":false,\"691\":false,\"692\":false,\"693\":false,\"694\":false,\"695\":false,\"696\":false,\"697\":false,\"698\":false,\"699\":false,\"700\":false,\"701\":false,\"702\":false,\"703\":false,\"704\":false,\"705\":false,\"706\":false,\"707\":false,\"708\":false,\"709\":false,\"710\":false,\"711\":false,\"712\":false,\"713\":false,\"714\":false,\"715\":false,\"716\":false,\"717\":false,\"718\":false,\"719\":false,\"720\":false,\"721\":false,\"722\":false,\"723\":false,\"724\":false,\"725\":false,\"726\":false,\"727\":false,\"728\":false,\"729\":false,\"730\":false,\"731\":false,\"732\":false,\"733\":false,\"734\":false,\"735\":false,\"736\":false,\"737\":false,\"738\":false,\"739\":false,\"740\":false,\"741\":false,\"742\":false,\"743\":false,\"744\":false,\"745\":false,\"746\":false,\"747\":false,\"748\":false,\"749\":false,\"750\":false,\"751\":false,\"752\":false,\"753\":false,\"754\":false,\"755\":false,\"756\":false,\"757\":false,\"758\":false,\"759\":false,\"760\":false,\"761\":false,\"762\":false,\"763\":false,\"764\":false,\"765\":false,\"766\":false,\"767\":false,\"768\":false,\"769\":false,\"770\":false,\"771\":false,\"772\":false,\"773\":false,\"774\":false,\"775\":false,\"776\":false,\"777\":false,\"778\":false,\"779\":false,\"780\":false,\"781\":false,\"782\":false,\"783\":false,\"784\":false,\"785\":false,\"786\":false,\"787\":false,\"788\":false,\"789\":false,\"790\":false,\"791\":false,\"792\":false,\"793\":false,\"794\":false,\"795\":false,\"796\":false,\"797\":false,\"798\":false,\"799\":false,\"800\":false,\"801\":false,\"802\":false,\"803\":false,\"804\":false,\"805\":false,\"806\":false,\"807\":false,\"808\":false,\"809\":false,\"810\":false,\"811\":false,\"812\":false,\"813\":false,\"814\":false,\"815\":false,\"816\":false,\"817\":false,\"818\":false,\"819\":false,\"820\":false,\"821\":false,\"822\":false,\"823\":false,\"824\":false,\"825\":false,\"826\":false,\"827\":false,\"828\":false,\"829\":false,\"830\":false,\"831\":false,\"832\":false,\"833\":false,\"834\":false,\"835\":false,\"836\":false,\"837\":false,\"838\":false,\"839\":false,\"840\":false,\"841\":false,\"842\":false,\"843\":false,\"844\":false,\"845\":false,\"846\":false,\"847\":false,\"848\":false,\"849\":false,\"850\":false,\"851\":false,\"852\":false,\"853\":false,\"854\":false,\"855\":false,\"856\":false,\"857\":false,\"858\":false,\"859\":false,\"860\":false,\"861\":false,\"862\":false,\"863\":false,\"864\":false,\"865\":false,\"866\":false,\"867\":false,\"868\":false,\"869\":false,\"870\":false,\"871\":false,\"872\":false,\"873\":false,\"874\":false,\"875\":false,\"876\":false,\"877\":false,\"878\":false,\"879\":false,\"880\":false,\"881\":false,\"882\":false,\"883\":false,\"884\":false,\"885\":false,\"886\":false,\"887\":false,\"888\":false,\"889\":false,\"890\":false,\"891\":false,\"892\":false,\"893\":false,\"894\":false,\"895\":false,\"896\":false,\"897\":false,\"898\":false,\"899\":false,\"900\":false,\"901\":false,\"902\":false,\"903\":false,\"904\":false,\"905\":false,\"906\":false,\"907\":false,\"908\":false,\"909\":false,\"910\":false,\"911\":false,\"912\":false,\"913\":false,\"914\":false,\"915\":false,\"916\":false,\"917\":false,\"918\":false,\"919\":false,\"920\":false,\"921\":false,\"922\":false,\"923\":false,\"924\":false,\"925\":false,\"926\":false,\"927\":false,\"928\":false,\"929\":false,\"930\":false,\"931\":false,\"932\":false,\"933\":false,\"934\":false,\"935\":false,\"936\":false,\"937\":false,\"938\":false,\"939\":false,\"940\":false,\"941\":false,\"942\":false,\"943\":false,\"944\":false,\"945\":false,\"946\":false,\"947\":false,\"948\":false,\"949\":false,\"950\":false,\"951\":false,\"952\":false,\"953\":false,\"954\":false,\"955\":false,\"956\":false,\"957\":false,\"958\":false,\"959\":false,\"960\":false,\"961\":false,\"962\":false,\"963\":false,\"964\":false,\"965\":false,\"966\":false,\"967\":false,\"968\":false,\"969\":false,\"970\":false,\"971\":false,\"972\":false,\"973\":false,\"974\":false,\"975\":false,\"976\":false,\"977\":false,\"978\":false,\"979\":false,\"980\":false,\"981\":false,\"982\":false,\"983\":false,\"984\":false,\"985\":false,\"986\":false,\"987\":false,\"988\":false,\"989\":false,\"990\":false,\"991\":false,\"992\":false,\"993\":false,\"994\":false,\"995\":false,\"996\":false,\"997\":false,\"998\":false,\"999\":false,\"1000\":false,\"1001\":false,\"1002\":false,\"1003\":false,\"1004\":false,\"1005\":false,\"1006\":false,\"1007\":false,\"1008\":false,\"1009\":false,\"1010\":false,\"1011\":false,\"1012\":false,\"1013\":false,\"1014\":false,\"1015\":false,\"1016\":false,\"1017\":false,\"1018\":false,\"1019\":false,\"1020\":false,\"1021\":false,\"1022\":false,\"1023\":false,\"1024\":false,\"1025\":false,\"1026\":false,\"1027\":false,\"1028\":false,\"1029\":false,\"1030\":false,\"1031\":false,\"1032\":false,\"1033\":false,\"1034\":false,\"1035\":false,\"1036\":false,\"1037\":false,\"1038\":false,\"1039\":false,\"1040\":false,\"1041\":false,\"1042\":false,\"1043\":false,\"1044\":false,\"1045\":false,\"1046\":false,\"1047\":false,\"1048\":false,\"1049\":false,\"1050\":false,\"1051\":false,\"1052\":false,\"1053\":false,\"1054\":false,\"1055\":false,\"1056\":false,\"1057\":false,\"1058\":false,\"1059\":false,\"1060\":false,\"1061\":false,\"1062\":false,\"1063\":false,\"1064\":false,\"1065\":false,\"1066\":false,\"1067\":false,\"1068\":false,\"1069\":false,\"1070\":false,\"1071\":false,\"1072\":false,\"1073\":false,\"1074\":false,\"1075\":false,\"1076\":false,\"1077\":false,\"1078\":false,\"1079\":false,\"1080\":false,\"1081\":false,\"1082\":false,\"1083\":false,\"1084\":false,\"1085\":false,\"1086\":false,\"1087\":false,\"1088\":false,\"1089\":false,\"1090\":false,\"1091\":false,\"1092\":false,\"1093\":false,\"1094\":false,\"1095\":false,\"1096\":false,\"1097\":false,\"1098\":false,\"1099\":false,\"1100\":false,\"1101\":false,\"1102\":false,\"1103\":false,\"1104\":false,\"1105\":false,\"1106\":false,\"1107\":false,\"1108\":false,\"1109\":false,\"1110\":false,\"1111\":false,\"1112\":false,\"1113\":false,\"1114\":false,\"1115\":false,\"1116\":false,\"1117\":false,\"1118\":false,\"1119\":false,\"1120\":false,\"1121\":false,\"1122\":false,\"1123\":false,\"1124\":false,\"1125\":false,\"1126\":false,\"1127\":false,\"1128\":false,\"1129\":false,\"1130\":false,\"1131\":false,\"1132\":false,\"1133\":false,\"1134\":false,\"1135\":false,\"1136\":false,\"1137\":false,\"1138\":false,\"1139\":false,\"1140\":false,\"1141\":false,\"1142\":false,\"1143\":false,\"1144\":false,\"1145\":false,\"1146\":false,\"1147\":false,\"1148\":false,\"1149\":false,\"1150\":false,\"1151\":false,\"1152\":false,\"1153\":false,\"1154\":false,\"1155\":false,\"1156\":false,\"1157\":false,\"1158\":false,\"1159\":false,\"1160\":false,\"1161\":false,\"1162\":false,\"1163\":false,\"1164\":false,\"1165\":false,\"1166\":false,\"1167\":false,\"1168\":false,\"1169\":false,\"1170\":false,\"1171\":false,\"1172\":false,\"1173\":false,\"1174\":false,\"1175\":false,\"1176\":false,\"1177\":false,\"1178\":false,\"1179\":false,\"1180\":false,\"1181\":false,\"1182\":false,\"1183\":false,\"1184\":false,\"1185\":false,\"1186\":false,\"1187\":false,\"1188\":false,\"1189\":false,\"1190\":false,\"1191\":false,\"1192\":false,\"1193\":false,\"1194\":false,\"1195\":false,\"1196\":false,\"1197\":false,\"1198\":false,\"1199\":false,\"1200\":false,\"1201\":false,\"1202\":false,\"1203\":false,\"1204\":false,\"1205\":false,\"1206\":false,\"1207\":false,\"1208\":false,\"1209\":false,\"1210\":false,\"1211\":false,\"1212\":false,\"1213\":false,\"1214\":false,\"1215\":false,\"1216\":false,\"1217\":false,\"1218\":false,\"1219\":false,\"1220\":false,\"1221\":false,\"1222\":false,\"1223\":false,\"1224\":false,\"1225\":false,\"1226\":false,\"1227\":false,\"1228\":false,\"1229\":false,\"1230\":false,\"1231\":false,\"1232\":false,\"1233\":false,\"1234\":false,\"1235\":false,\"1236\":false,\"1237\":false,\"1238\":false,\"1239\":false,\"1240\":false,\"1241\":false,\"1242\":false,\"1243\":false,\"1244\":false,\"1245\":false,\"1246\":false,\"1247\":false,\"1248\":false,\"1249\":false,\"1250\":false,\"1251\":false,\"1252\":false,\"1253\":false,\"1254\":false,\"1255\":false,\"1256\":false,\"1257\":false,\"1258\":false,\"1259\":false,\"1260\":false,\"1261\":false,\"1262\":false,\"1263\":false,\"1264\":false,\"1265\":false,\"1266\":false,\"1267\":false,\"1268\":false,\"1269\":false,\"1270\":false,\"1271\":false,\"1272\":false,\"1273\":false,\"1274\":false,\"1275\":false,\"1276\":false,\"1277\":false,\"1278\":false,\"1279\":false,\"1280\":false,\"1281\":false,\"1282\":false,\"1283\":false,\"1284\":false,\"1285\":false,\"1286\":false,\"1287\":false,\"1288\":false,\"1289\":false,\"1290\":false,\"1291\":false,\"1292\":false,\"1293\":false,\"1294\":false,\"1295\":false,\"1296\":false,\"1297\":false,\"1298\":false,\"1299\":false,\"1300\":false,\"1301\":false,\"1302\":false,\"1303\":false,\"1304\":false,\"1305\":false,\"1306\":false,\"1307\":false,\"1308\":false,\"1309\":false,\"1310\":false,\"1311\":false,\"1312\":false,\"1313\":false,\"1314\":false,\"1315\":false,\"1316\":false,\"1317\":false,\"1318\":false,\"1319\":false,\"1320\":false,\"1321\":false,\"1322\":false,\"1323\":false,\"1324\":false,\"1325\":false,\"1326\":false,\"1327\":false,\"1328\":false,\"1329\":false,\"1330\":false,\"1331\":false,\"1332\":false,\"1333\":false,\"1334\":false,\"1335\":false,\"1336\":false,\"1337\":false,\"1338\":false,\"1339\":false,\"1340\":false,\"1341\":false,\"1342\":false,\"1343\":false,\"1344\":false,\"1345\":false,\"1346\":false,\"1347\":false,\"1348\":false,\"1349\":false,\"1350\":false,\"1351\":false,\"1352\":false,\"1353\":false,\"1354\":false,\"1355\":false,\"1356\":false,\"1357\":false,\"1358\":false,\"1359\":false,\"1360\":false,\"1361\":false,\"1362\":false,\"1363\":false,\"1364\":false,\"1365\":false,\"1366\":false,\"1367\":false,\"1368\":false,\"1369\":false,\"1370\":false,\"1371\":false,\"1372\":false,\"1373\":false,\"1374\":false,\"1375\":false,\"1376\":false,\"1377\":false,\"1378\":false,\"1379\":false,\"1380\":false,\"1381\":false,\"1382\":false,\"1383\":false,\"1384\":false,\"1385\":false,\"1386\":false,\"1387\":false,\"1388\":false,\"1389\":false,\"1390\":false,\"1391\":false,\"1392\":false,\"1393\":false,\"1394\":false,\"1395\":false,\"1396\":false,\"1397\":false,\"1398\":false,\"1399\":false,\"1400\":false,\"1401\":false,\"1402\":false,\"1403\":false,\"1404\":false,\"1405\":false,\"1406\":false,\"1407\":false,\"1408\":false,\"1409\":false,\"1410\":false,\"1411\":false,\"1412\":false,\"1413\":false,\"1414\":false,\"1415\":false,\"1416\":false,\"1417\":false,\"1418\":false,\"1419\":false,\"1420\":false,\"1421\":false,\"1422\":false,\"1423\":false,\"1424\":false,\"1425\":false,\"1426\":false,\"1427\":false,\"1428\":false,\"1429\":false,\"1430\":false,\"1431\":false,\"1432\":false,\"1433\":false,\"1434\":false,\"1435\":false,\"1436\":false,\"1437\":false,\"1438\":false,\"1439\":false,\"1440\":false,\"1441\":false,\"1442\":false,\"1443\":false,\"1444\":false,\"1445\":false,\"1446\":false,\"1447\":false,\"1448\":false,\"1449\":false,\"1450\":false,\"1451\":false,\"1452\":false,\"1453\":false,\"1454\":false,\"1455\":false,\"1456\":false,\"1457\":false,\"1458\":false,\"1459\":false,\"1460\":false,\"1461\":false,\"1462\":false,\"1463\":false,\"1464\":false,\"1465\":false,\"1466\":false,\"1467\":false,\"1468\":false,\"1469\":false,\"1470\":false,\"1471\":false,\"1472\":false,\"1473\":false,\"1474\":false,\"1475\":false,\"1476\":false,\"1477\":false,\"1478\":false,\"1479\":false,\"1480\":false,\"1481\":false,\"1482\":false,\"1483\":false,\"1484\":false,\"1485\":false,\"1486\":false,\"1487\":false,\"1488\":false,\"1489\":false,\"1490\":false,\"1491\":false,\"1492\":false,\"1493\":false,\"1494\":false,\"1495\":false,\"1496\":false,\"1497\":false,\"1498\":false,\"1499\":false,\"1500\":false,\"1501\":false,\"1502\":false,\"1503\":false,\"1504\":false,\"1505\":false,\"1506\":false,\"1507\":false,\"1508\":false,\"1509\":false,\"1510\":false,\"1511\":false,\"1512\":false,\"1513\":false,\"1514\":false,\"1515\":false,\"1516\":false,\"1517\":false,\"1518\":false,\"1519\":false,\"1520\":false,\"1521\":false,\"1522\":false,\"1523\":false,\"1524\":false,\"1525\":false,\"1526\":false,\"1527\":false,\"1528\":false,\"1529\":false,\"1530\":false,\"1531\":false,\"1532\":false,\"1533\":false,\"1534\":false,\"1535\":false,\"1536\":false,\"1537\":false,\"1538\":false,\"1539\":false,\"1540\":false,\"1541\":false,\"1542\":false,\"1543\":false,\"1544\":false,\"1545\":false,\"1546\":false,\"1547\":false,\"1548\":false,\"1549\":false,\"1550\":false,\"1551\":false,\"1552\":false,\"1553\":false,\"1554\":false,\"1555\":false,\"1556\":false,\"1557\":false,\"1558\":false,\"1559\":false,\"1560\":false,\"1561\":false,\"1562\":false,\"1563\":false,\"1564\":false,\"1565\":false,\"1566\":false,\"1567\":false,\"1568\":false,\"1569\":false,\"1570\":false,\"1571\":false,\"1572\":false,\"1573\":false,\"1574\":false,\"1575\":false,\"1576\":false,\"1577\":false,\"1578\":false,\"1579\":false,\"1580\":false,\"1581\":false,\"1582\":false,\"1583\":false,\"1584\":false,\"1585\":false,\"1586\":false,\"1587\":false,\"1588\":false,\"1589\":false,\"1590\":false,\"1591\":false,\"1592\":false,\"1593\":false,\"1594\":false,\"1595\":false,\"1596\":false,\"1597\":false,\"1598\":false,\"1599\":false,\"1600\":false,\"1601\":false,\"1602\":false,\"1603\":false,\"1604\":false,\"1605\":false,\"1606\":false,\"1607\":false,\"1608\":false,\"1609\":false,\"1610\":false,\"1611\":false,\"1612\":false,\"1613\":false,\"1614\":false,\"1615\":false,\"1616\":false,\"1617\":false,\"1618\":false,\"1619\":false,\"1620\":false,\"1621\":false,\"1622\":false,\"1623\":false,\"1624\":false,\"1625\":false,\"1626\":false,\"1627\":false,\"1628\":false,\"1629\":false,\"1630\":false,\"1631\":false,\"1632\":false,\"1633\":false,\"1634\":false,\"1635\":false,\"1636\":false,\"1637\":false,\"1638\":false,\"1639\":false,\"1640\":false,\"1641\":false,\"1642\":false,\"1643\":false,\"1644\":false,\"1645\":false,\"1646\":false,\"1647\":false,\"1648\":false,\"1649\":false,\"1650\":false,\"1651\":false,\"1652\":false,\"1653\":false,\"1654\":false,\"1655\":false,\"1656\":false,\"1657\":false,\"1658\":false,\"1659\":false,\"1660\":false,\"1661\":false,\"1662\":false,\"1663\":false,\"1664\":false,\"1665\":false,\"1666\":false,\"1667\":false,\"1668\":false,\"1669\":false,\"1670\":false,\"1671\":false,\"1672\":false,\"1673\":false,\"1674\":false,\"1675\":false,\"1676\":false,\"1677\":false,\"1678\":false,\"1679\":false,\"1680\":false,\"1681\":false,\"1682\":false,\"1683\":false,\"1684\":false,\"1685\":false,\"1686\":false,\"1687\":false,\"1688\":false,\"1689\":false,\"1690\":false,\"1691\":false,\"1692\":false,\"1693\":false,\"1694\":false,\"1695\":false,\"1696\":false,\"1697\":false,\"1698\":false,\"1699\":false,\"1700\":false,\"1701\":false,\"1702\":false,\"1703\":false,\"1704\":false,\"1705\":false,\"1706\":false,\"1707\":false,\"1708\":false,\"1709\":false,\"1710\":false,\"1711\":false,\"1712\":false,\"1713\":false,\"1714\":false,\"1715\":false,\"1716\":false,\"1717\":false,\"1718\":false,\"1719\":false,\"1720\":false,\"1721\":false,\"1722\":false,\"1723\":false,\"1724\":false,\"1725\":false,\"1726\":false,\"1727\":false,\"1728\":false,\"1729\":false,\"1730\":false,\"1731\":false,\"1732\":false,\"1733\":false,\"1734\":false,\"1735\":false,\"1736\":false,\"1737\":false,\"1738\":false,\"1739\":false,\"1740\":false,\"1741\":false,\"1742\":false,\"1743\":false,\"1744\":false,\"1745\":false,\"1746\":false,\"1747\":false,\"1748\":false,\"1749\":false,\"1750\":false,\"1751\":false,\"1752\":false,\"1753\":false,\"1754\":false,\"1755\":false,\"1756\":false,\"1757\":false,\"1758\":false,\"1759\":false,\"1760\":false,\"1761\":false,\"1762\":false,\"1763\":false,\"1764\":false,\"1765\":false,\"1766\":false,\"1767\":false,\"1768\":false,\"1769\":false,\"1770\":false,\"1771\":false,\"1772\":false,\"1773\":false,\"1774\":false,\"1775\":false,\"1776\":false,\"1777\":false,\"1778\":false,\"1779\":false,\"1780\":false,\"1781\":false,\"1782\":false,\"1783\":false,\"1784\":false,\"1785\":false,\"1786\":false,\"1787\":false,\"1788\":false,\"1789\":false,\"1790\":false,\"1791\":false,\"1792\":false,\"1793\":false,\"1794\":false,\"1795\":false,\"1796\":false,\"1797\":false,\"1798\":false,\"1799\":false,\"1800\":false,\"1801\":false,\"1802\":false,\"1803\":false,\"1804\":false,\"1805\":false,\"1806\":false,\"1807\":false,\"1808\":false,\"1809\":false,\"1810\":false,\"1811\":false,\"1812\":false,\"1813\":false,\"1814\":false,\"1815\":false,\"1816\":false,\"1817\":false,\"1818\":false,\"1819\":false,\"1820\":false,\"1821\":false,\"1822\":false,\"1823\":false,\"1824\":false,\"1825\":false,\"1826\":false,\"1827\":false,\"1828\":false,\"1829\":false,\"1830\":false,\"1831\":false,\"1832\":false,\"1833\":false,\"1834\":false,\"1835\":false,\"1836\":false,\"1837\":false,\"1838\":false,\"1839\":false,\"1840\":false,\"1841\":false,\"1842\":false,\"1843\":false,\"1844\":false,\"1845\":false,\"1846\":false,\"1847\":false,\"1848\":false,\"1849\":false,\"1850\":false,\"1851\":false,\"1852\":false,\"1853\":false,\"1854\":false,\"1855\":false,\"1856\":false,\"1857\":false,\"1858\":false,\"1859\":false,\"1860\":false,\"1861\":false,\"1862\":false,\"1863\":false,\"1864\":false,\"1865\":false,\"1866\":false,\"1867\":false,\"1868\":false,\"1869\":false,\"1870\":false,\"1871\":false,\"1872\":false,\"1873\":false,\"1874\":false,\"1875\":false,\"1876\":false,\"1877\":false,\"1878\":false,\"1879\":false,\"1880\":false,\"1881\":false,\"1882\":false,\"1883\":false,\"1884\":false,\"1885\":false,\"1886\":false,\"1887\":false,\"1888\":false,\"1889\":false,\"1890\":false,\"1891\":false,\"1892\":false,\"1893\":false,\"1894\":false,\"1895\":false,\"1896\":false,\"1897\":false,\"1898\":false,\"1899\":false,\"1900\":false,\"1901\":false,\"1902\":false,\"1903\":false,\"1904\":false,\"1905\":false,\"1906\":false,\"1907\":false,\"1908\":false,\"1909\":false,\"1910\":false,\"1911\":false,\"1912\":false,\"1913\":false,\"1914\":false,\"1915\":false,\"1916\":false,\"1917\":false,\"1918\":false,\"1919\":false,\"1920\":false,\"1921\":false,\"1922\":false,\"1923\":false,\"1924\":false,\"1925\":false,\"1926\":false,\"1927\":false,\"1928\":false,\"1929\":false,\"1930\":false,\"1931\":false,\"1932\":false,\"1933\":false,\"1934\":false,\"1935\":false,\"1936\":false,\"1937\":false,\"1938\":false,\"1939\":false,\"1940\":false,\"1941\":false,\"1942\":false,\"1943\":false,\"1944\":false,\"1945\":false,\"1946\":false,\"1947\":false,\"1948\":false,\"1949\":false,\"1950\":false,\"1951\":false,\"1952\":false,\"1953\":false,\"1954\":false,\"1955\":false,\"1956\":false,\"1957\":false,\"1958\":false,\"1959\":false,\"1960\":false,\"1961\":false,\"1962\":false,\"1963\":false,\"1964\":false,\"1965\":false,\"1966\":false,\"1967\":false,\"1968\":false,\"1969\":false,\"1970\":false,\"1971\":false,\"1972\":false,\"1973\":false,\"1974\":false,\"1975\":false,\"1976\":false,\"1977\":false,\"1978\":false,\"1979\":false,\"1980\":false,\"1981\":false,\"1982\":false,\"1983\":false,\"1984\":false,\"1985\":false,\"1986\":false,\"1987\":false,\"1988\":false,\"1989\":false,\"1990\":false,\"1991\":false,\"1992\":false,\"1993\":false,\"1994\":false,\"1995\":false,\"1996\":false,\"1997\":false,\"1998\":false,\"1999\":false,\"2000\":false,\"2001\":false,\"2002\":false,\"2003\":false,\"2004\":false,\"2005\":false,\"2006\":false,\"2007\":false,\"2008\":false,\"2009\":false,\"2010\":false,\"2011\":false,\"2012\":false,\"2013\":false,\"2014\":false,\"2015\":false,\"2016\":false,\"2017\":false,\"2018\":false,\"2019\":false,\"2020\":false,\"2021\":false,\"2022\":false,\"2023\":false,\"2024\":false,\"2025\":false,\"2026\":false,\"2027\":false,\"2028\":false,\"2029\":false,\"2030\":false,\"2031\":false,\"2032\":false,\"2033\":false,\"2034\":false,\"2035\":false,\"2036\":false,\"2037\":false,\"2038\":false,\"2039\":false,\"2040\":false,\"2041\":false,\"2042\":false,\"2043\":false,\"2044\":false,\"2045\":false,\"2046\":false,\"2047\":false,\"2048\":false,\"2049\":false,\"2050\":false,\"2051\":false,\"2052\":false,\"2053\":false,\"2054\":false,\"2055\":false,\"2056\":false,\"2057\":false,\"2058\":false,\"2059\":false,\"2060\":false,\"2061\":false,\"2062\":false,\"2063\":false,\"2064\":false,\"2065\":false,\"2066\":false,\"2067\":false,\"2068\":false,\"2069\":false,\"2070\":false,\"2071\":false,\"2072\":false,\"2073\":false,\"2074\":false,\"2075\":false,\"2076\":false,\"2077\":false,\"2078\":false,\"2079\":false,\"2080\":false,\"2081\":false,\"2082\":false,\"2083\":false,\"2084\":false,\"2085\":false,\"2086\":false,\"2087\":false,\"2088\":false,\"2089\":false,\"2090\":false,\"2091\":false,\"2092\":false,\"2093\":false,\"2094\":false,\"2095\":false,\"2096\":false,\"2097\":false,\"2098\":false,\"2099\":false,\"2100\":false,\"2101\":false,\"2102\":false,\"2103\":false,\"2104\":false,\"2105\":false,\"2106\":false,\"2107\":false,\"2108\":false,\"2109\":false,\"2110\":false,\"2111\":false,\"2112\":false,\"2113\":false,\"2114\":false,\"2115\":false,\"2116\":false,\"2117\":false,\"2118\":false,\"2119\":false,\"2120\":false,\"2121\":false,\"2122\":false,\"2123\":false,\"2124\":false,\"2125\":false,\"2126\":false,\"2127\":false,\"2128\":false,\"2129\":false,\"2130\":false,\"2131\":false,\"2132\":false,\"2133\":false,\"2134\":false,\"2135\":false,\"2136\":false,\"2137\":false,\"2138\":false,\"2139\":false,\"2140\":false,\"2141\":false,\"2142\":false,\"2143\":false,\"2144\":false,\"2145\":false,\"2146\":false,\"2147\":false,\"2148\":false,\"2149\":false,\"2150\":false,\"2151\":false,\"2152\":false,\"2153\":false,\"2154\":false,\"2155\":false,\"2156\":false,\"2157\":false,\"2158\":false,\"2159\":false,\"2160\":false,\"2161\":false,\"2162\":false,\"2163\":false,\"2164\":false,\"2165\":false,\"2166\":false,\"2167\":false,\"2168\":false,\"2169\":false,\"2170\":false,\"2171\":false,\"2172\":false,\"2173\":false,\"2174\":false,\"2175\":false,\"2176\":false,\"2177\":false,\"2178\":false,\"2179\":false,\"2180\":false,\"2181\":false,\"2182\":false,\"2183\":false,\"2184\":false,\"2185\":false,\"2186\":false,\"2187\":false,\"2188\":false,\"2189\":false,\"2190\":false,\"2191\":false,\"2192\":false,\"2193\":false,\"2194\":false,\"2195\":false,\"2196\":false,\"2197\":false,\"2198\":false,\"2199\":false,\"2200\":false,\"2201\":false,\"2202\":false,\"2203\":false,\"2204\":false,\"2205\":false,\"2206\":false,\"2207\":false,\"2208\":false,\"2209\":false,\"2210\":false,\"2211\":false,\"2212\":false,\"2213\":false,\"2214\":false,\"2215\":false,\"2216\":false,\"2217\":false,\"2218\":false,\"2219\":false,\"2220\":false,\"2221\":false,\"2222\":false,\"2223\":false,\"2224\":false,\"2225\":false,\"2226\":false,\"2227\":false,\"2228\":false,\"2229\":false,\"2230\":false,\"2231\":false,\"2232\":false,\"2233\":false,\"2234\":false,\"2235\":false,\"2236\":false,\"2237\":false,\"2238\":false,\"2239\":false,\"2240\":false,\"2241\":false,\"2242\":false,\"2243\":false,\"2244\":false,\"2245\":false,\"2246\":false,\"2247\":false,\"2248\":false,\"2249\":false,\"2250\":false,\"2251\":false,\"2252\":false,\"2253\":false,\"2254\":false,\"2255\":false,\"2256\":false,\"2257\":false,\"2258\":false,\"2259\":false,\"2260\":false,\"2261\":false,\"2262\":false,\"2263\":false,\"2264\":false,\"2265\":false,\"2266\":false,\"2267\":false,\"2268\":false,\"2269\":false,\"2270\":false,\"2271\":false,\"2272\":false,\"2273\":false,\"2274\":false,\"2275\":false,\"2276\":false,\"2277\":false,\"2278\":false,\"2279\":false,\"2280\":false,\"2281\":false,\"2282\":false,\"2283\":false,\"2284\":false,\"2285\":false,\"2286\":false,\"2287\":false,\"2288\":false,\"2289\":false,\"2290\":false,\"2291\":false,\"2292\":false,\"2293\":false,\"2294\":false,\"2295\":false,\"2296\":false,\"2297\":false,\"2298\":false,\"2299\":false,\"2300\":false,\"2301\":false,\"2302\":false,\"2303\":false,\"2304\":false,\"2305\":false,\"2306\":false,\"2307\":false,\"2308\":false,\"2309\":false,\"2310\":false,\"2311\":false,\"2312\":false,\"2313\":false,\"2314\":false,\"2315\":false,\"2316\":false,\"2317\":false,\"2318\":false,\"2319\":false,\"2320\":false,\"2321\":false,\"2322\":false,\"2323\":false,\"2324\":false,\"2325\":false,\"2326\":false,\"2327\":false,\"2328\":false,\"2329\":false,\"2330\":false,\"2331\":false,\"2332\":false,\"2333\":false,\"2334\":false,\"2335\":false,\"2336\":false,\"2337\":false,\"2338\":false,\"2339\":false,\"2340\":false,\"2341\":false,\"2342\":false,\"2343\":false,\"2344\":false,\"2345\":false,\"2346\":false,\"2347\":false,\"2348\":false,\"2349\":false,\"2350\":false,\"2351\":false,\"2352\":false,\"2353\":false,\"2354\":false,\"2355\":false,\"2356\":false,\"2357\":false,\"2358\":false,\"2359\":false,\"2360\":false,\"2361\":false,\"2362\":false,\"2363\":false,\"2364\":false,\"2365\":false,\"2366\":false,\"2367\":false,\"2368\":false,\"2369\":false,\"2370\":false,\"2371\":false,\"2372\":false,\"2373\":false,\"2374\":false,\"2375\":false,\"2376\":false,\"2377\":false,\"2378\":false,\"2379\":false,\"2380\":false,\"2381\":false,\"2382\":false,\"2383\":false,\"2384\":false,\"2385\":false,\"2386\":false,\"2387\":false,\"2388\":false,\"2389\":false,\"2390\":false,\"2391\":false,\"2392\":false,\"2393\":false,\"2394\":false,\"2395\":false,\"2396\":false,\"2397\":false,\"2398\":false,\"2399\":false,\"2400\":false,\"2401\":false,\"2402\":false,\"2403\":false,\"2404\":false,\"2405\":false,\"2406\":false,\"2407\":false,\"2408\":false,\"2409\":false,\"2410\":false,\"2411\":false,\"2412\":false,\"2413\":false,\"2414\":false,\"2415\":false,\"2416\":false,\"2417\":false,\"2418\":false,\"2419\":false,\"2420\":false,\"2421\":false,\"2422\":false,\"2423\":false,\"2424\":false,\"2425\":false,\"2426\":false,\"2427\":false,\"2428\":false,\"2429\":false,\"2430\":false,\"2431\":false,\"2432\":false,\"2433\":false,\"2434\":false,\"2435\":false,\"2436\":false,\"2437\":false,\"2438\":false,\"2439\":false,\"2440\":false,\"2441\":false,\"2442\":false,\"2443\":false,\"2444\":false,\"2445\":false,\"2446\":false,\"2447\":false,\"2448\":false,\"2449\":false,\"2450\":false,\"2451\":false,\"2452\":false,\"2453\":false,\"2454\":false,\"2455\":false,\"2456\":false,\"2457\":false,\"2458\":false,\"2459\":false,\"2460\":false,\"2461\":false,\"2462\":false,\"2463\":false,\"2464\":false,\"2465\":false,\"2466\":false,\"2467\":false,\"2468\":false,\"2469\":false,\"2470\":false,\"2471\":false,\"2472\":false,\"2473\":false,\"2474\":false,\"2475\":false,\"2476\":false,\"2477\":false,\"2478\":false,\"2479\":false,\"2480\":false,\"2481\":false,\"2482\":false,\"2483\":false,\"2484\":false,\"2485\":false,\"2486\":false,\"2487\":false,\"2488\":false,\"2489\":false,\"2490\":false,\"2491\":false,\"2492\":false,\"2493\":false,\"2494\":false,\"2495\":false,\"2496\":false,\"2497\":false,\"2498\":false,\"2499\":false,\"2500\":false,\"2501\":false,\"2502\":false,\"2503\":false,\"2504\":false,\"2505\":false,\"2506\":false,\"2507\":false,\"2508\":false,\"2509\":false,\"2510\":false,\"2511\":false,\"2512\":false,\"2513\":false,\"2514\":false,\"2515\":false,\"2516\":false,\"2517\":false,\"2518\":false,\"2519\":false,\"2520\":false,\"2521\":false,\"2522\":false,\"2523\":false,\"2524\":false,\"2525\":false,\"2526\":false,\"2527\":false,\"2528\":false,\"2529\":false,\"2530\":false,\"2531\":false,\"2532\":false,\"2533\":false,\"2534\":false,\"2535\":false,\"2536\":false,\"2537\":false,\"2538\":false,\"2539\":false,\"2540\":false,\"2541\":false,\"2542\":false,\"2543\":false,\"2544\":false,\"2545\":false,\"2546\":false,\"2547\":false,\"2548\":false,\"2549\":false,\"2550\":false,\"2551\":false,\"2552\":false,\"2553\":false,\"2554\":false,\"2555\":false,\"2556\":false,\"2557\":false,\"2558\":false,\"2559\":false,\"2560\":false,\"2561\":false,\"2562\":false,\"2563\":false,\"2564\":false,\"2565\":false,\"2566\":false,\"2567\":false,\"2568\":false,\"2569\":false,\"2570\":false,\"2571\":false,\"2572\":false,\"2573\":false,\"2574\":false,\"2575\":false,\"2576\":false,\"2577\":false,\"2578\":false,\"2579\":false,\"2580\":false,\"2581\":false,\"2582\":false,\"2583\":false,\"2584\":false,\"2585\":false,\"2586\":false,\"2587\":false,\"2588\":false,\"2589\":false,\"2590\":false,\"2591\":false,\"2592\":false,\"2593\":false,\"2594\":false,\"2595\":false,\"2596\":false,\"2597\":false,\"2598\":false,\"2599\":false,\"2600\":false,\"2601\":false,\"2602\":false,\"2603\":false,\"2604\":false,\"2605\":false,\"2606\":false,\"2607\":false,\"2608\":false,\"2609\":false,\"2610\":false,\"2611\":false,\"2612\":false,\"2613\":false,\"2614\":false,\"2615\":false,\"2616\":false,\"2617\":false,\"2618\":false,\"2619\":false,\"2620\":false,\"2621\":false,\"2622\":false,\"2623\":false,\"2624\":false,\"2625\":false,\"2626\":false,\"2627\":false,\"2628\":false,\"2629\":false,\"2630\":false,\"2631\":false,\"2632\":false,\"2633\":false,\"2634\":false,\"2635\":false,\"2636\":false,\"2637\":false,\"2638\":false,\"2639\":false,\"2640\":false,\"2641\":false,\"2642\":false,\"2643\":false,\"2644\":false,\"2645\":false,\"2646\":false,\"2647\":false,\"2648\":false,\"2649\":false,\"2650\":false,\"2651\":false,\"2652\":false,\"2653\":false,\"2654\":false,\"2655\":false,\"2656\":false,\"2657\":false,\"2658\":false,\"2659\":false,\"2660\":false,\"2661\":false,\"2662\":false,\"2663\":false,\"2664\":false,\"2665\":false,\"2666\":false,\"2667\":false,\"2668\":false,\"2669\":false,\"2670\":false,\"2671\":false,\"2672\":false,\"2673\":false,\"2674\":false,\"2675\":false,\"2676\":false,\"2677\":false,\"2678\":false,\"2679\":false,\"2680\":false,\"2681\":false,\"2682\":false,\"2683\":false,\"2684\":false,\"2685\":false,\"2686\":false,\"2687\":false,\"2688\":false,\"2689\":false,\"2690\":false,\"2691\":false,\"2692\":false,\"2693\":false,\"2694\":false,\"2695\":false,\"2696\":false,\"2697\":false,\"2698\":false,\"2699\":false,\"2700\":false,\"2701\":false,\"2702\":false,\"2703\":false,\"2704\":false,\"2705\":false,\"2706\":false,\"2707\":false,\"2708\":false,\"2709\":false,\"2710\":false,\"2711\":false,\"2712\":false,\"2713\":false,\"2714\":false,\"2715\":false,\"2716\":false,\"2717\":false,\"2718\":false,\"2719\":false,\"2720\":false,\"2721\":false,\"2722\":false,\"2723\":false,\"2724\":false,\"2725\":false,\"2726\":false,\"2727\":false,\"2728\":false,\"2729\":false,\"2730\":false,\"2731\":false,\"2732\":false,\"2733\":false,\"2734\":false,\"2735\":false,\"2736\":false,\"2737\":false,\"2738\":false,\"2739\":false,\"2740\":false,\"2741\":false,\"2742\":false,\"2743\":false,\"2744\":false,\"2745\":false,\"2746\":false,\"2747\":false,\"2748\":false,\"2749\":false,\"2750\":false,\"2751\":false,\"2752\":false,\"2753\":false,\"2754\":false,\"2755\":false,\"2756\":false,\"2757\":false,\"2758\":false,\"2759\":false,\"2760\":false,\"2761\":false,\"2762\":false,\"2763\":false,\"2764\":false,\"2765\":false,\"2766\":false,\"2767\":false,\"2768\":false,\"2769\":false,\"2770\":false,\"2771\":false,\"2772\":false,\"2773\":false,\"2774\":false,\"2775\":false,\"2776\":false,\"2777\":false,\"2778\":false,\"2779\":false,\"2780\":false,\"2781\":false,\"2782\":false,\"2783\":false,\"2784\":false,\"2785\":false,\"2786\":false,\"2787\":false,\"2788\":false,\"2789\":false,\"2790\":false,\"2791\":false,\"2792\":false,\"2793\":false,\"2794\":false,\"2795\":false,\"2796\":false,\"2797\":false,\"2798\":false,\"2799\":false,\"2800\":false,\"2801\":false,\"2802\":false,\"2803\":false,\"2804\":false,\"2805\":false,\"2806\":false,\"2807\":false,\"2808\":false,\"2809\":false,\"2810\":false,\"2811\":false,\"2812\":false,\"2813\":false,\"2814\":false,\"2815\":false,\"2816\":false,\"2817\":false,\"2818\":false,\"2819\":false,\"2820\":false,\"2821\":false,\"2822\":false,\"2823\":false,\"2824\":false,\"2825\":false,\"2826\":false,\"2827\":false,\"2828\":false,\"2829\":false,\"2830\":false,\"2831\":false,\"2832\":false,\"2833\":false,\"2834\":false,\"2835\":false,\"2836\":false,\"2837\":false,\"2838\":false,\"2839\":false,\"2840\":false,\"2841\":false,\"2842\":false,\"2843\":false,\"2844\":false,\"2845\":false,\"2846\":false,\"2847\":false,\"2848\":false,\"2849\":false,\"2850\":false,\"2851\":false,\"2852\":false,\"2853\":false,\"2854\":false,\"2855\":false,\"2856\":false,\"2857\":false,\"2858\":false,\"2859\":false,\"2860\":false,\"2861\":false,\"2862\":false,\"2863\":false,\"2864\":false,\"2865\":false,\"2866\":false,\"2867\":false,\"2868\":false,\"2869\":false,\"2870\":false,\"2871\":false,\"2872\":false,\"2873\":false,\"2874\":false,\"2875\":false,\"2876\":false,\"2877\":false,\"2878\":false,\"2879\":false,\"2880\":false,\"2881\":false,\"2882\":false,\"2883\":false,\"2884\":false,\"2885\":false,\"2886\":false,\"2887\":false,\"2888\":false,\"2889\":false,\"2890\":false,\"2891\":false,\"2892\":false,\"2893\":false,\"2894\":false,\"2895\":false,\"2896\":false,\"2897\":false,\"2898\":false,\"2899\":false,\"2900\":false,\"2901\":false,\"2902\":false,\"2903\":false,\"2904\":false,\"2905\":false,\"2906\":false,\"2907\":false,\"2908\":false,\"2909\":false,\"2910\":false,\"2911\":false,\"2912\":false,\"2913\":false,\"2914\":false,\"2915\":false,\"2916\":false,\"2917\":false,\"2918\":false,\"2919\":false,\"2920\":false,\"2921\":false,\"2922\":false,\"2923\":false,\"2924\":false,\"2925\":false,\"2926\":false,\"2927\":false,\"2928\":false,\"2929\":false,\"2930\":false,\"2931\":false,\"2932\":false,\"2933\":false,\"2934\":false,\"2935\":false,\"2936\":false,\"2937\":false,\"2938\":false,\"2939\":false,\"2940\":false,\"2941\":false,\"2942\":false,\"2943\":false,\"2944\":false,\"2945\":false,\"2946\":false,\"2947\":false,\"2948\":false,\"2949\":false,\"2950\":false,\"2951\":false,\"2952\":false,\"2953\":false,\"2954\":false,\"2955\":false,\"2956\":false,\"2957\":false,\"2958\":false,\"2959\":false,\"2960\":false,\"2961\":false,\"2962\":false,\"2963\":false,\"2964\":false,\"2965\":false,\"2966\":false,\"2967\":false,\"2968\":false,\"2969\":false,\"2970\":false,\"2971\":false,\"2972\":false,\"2973\":false,\"2974\":false,\"2975\":false,\"2976\":false,\"2977\":false,\"2978\":false,\"2979\":false,\"2980\":false,\"2981\":false,\"2982\":false,\"2983\":false,\"2984\":false,\"2985\":false,\"2986\":false,\"2987\":false,\"2988\":false,\"2989\":false,\"2990\":false,\"2991\":false,\"2992\":false,\"2993\":false,\"2994\":false,\"2995\":false,\"2996\":false,\"2997\":false,\"2998\":false,\"2999\":false,\"3000\":false,\"3001\":false,\"3002\":false,\"3003\":false,\"3004\":false,\"3005\":false,\"3006\":false,\"3007\":false,\"3008\":false,\"3009\":false,\"3010\":false,\"3011\":false,\"3012\":false,\"3013\":false,\"3014\":false,\"3015\":false,\"3016\":false,\"3017\":false,\"3018\":false,\"3019\":false,\"3020\":false,\"3021\":false,\"3022\":false,\"3023\":false,\"3024\":false,\"3025\":false,\"3026\":false,\"3027\":false,\"3028\":false,\"3029\":false,\"3030\":false,\"3031\":false,\"3032\":false,\"3033\":false,\"3034\":false,\"3035\":false,\"3036\":false,\"3037\":false,\"3038\":false,\"3039\":false,\"3040\":false,\"3041\":false,\"3042\":false,\"3043\":false,\"3044\":false,\"3045\":false,\"3046\":false,\"3047\":false,\"3048\":false,\"3049\":false,\"3050\":false,\"3051\":false,\"3052\":false,\"3053\":false,\"3054\":false,\"3055\":false,\"3056\":false,\"3057\":false,\"3058\":false,\"3059\":false,\"3060\":false,\"3061\":false,\"3062\":false,\"3063\":false,\"3064\":false,\"3065\":false,\"3066\":false,\"3067\":false,\"3068\":false,\"3069\":false,\"3070\":false,\"3071\":false,\"3072\":false,\"3073\":false,\"3074\":false,\"3075\":false,\"3076\":false,\"3077\":false,\"3078\":false,\"3079\":false,\"3080\":false,\"3081\":false,\"3082\":false,\"3083\":false,\"3084\":false,\"3085\":false,\"3086\":false,\"3087\":false,\"3088\":false,\"3089\":false,\"3090\":false,\"3091\":false,\"3092\":false,\"3093\":false,\"3094\":false,\"3095\":false,\"3096\":false,\"3097\":false,\"3098\":false,\"3099\":false,\"3100\":false,\"3101\":false,\"3102\":false,\"3103\":false,\"3104\":false,\"3105\":false,\"3106\":false,\"3107\":false,\"3108\":false,\"3109\":false,\"3110\":false,\"3111\":false,\"3112\":false,\"3113\":false,\"3114\":false,\"3115\":false,\"3116\":false,\"3117\":false,\"3118\":false,\"3119\":false,\"3120\":false,\"3121\":false,\"3122\":false,\"3123\":false,\"3124\":false,\"3125\":false,\"3126\":false,\"3127\":false,\"3128\":false,\"3129\":false,\"3130\":false,\"3131\":false,\"3132\":false,\"3133\":false,\"3134\":false,\"3135\":false,\"3136\":false,\"3137\":false,\"3138\":false,\"3139\":false,\"3140\":false,\"3141\":false,\"3142\":false,\"3143\":false,\"3144\":false,\"3145\":false,\"3146\":false,\"3147\":false,\"3148\":false,\"3149\":false,\"3150\":false,\"3151\":false,\"3152\":false,\"3153\":false,\"3154\":false,\"3155\":false,\"3156\":false,\"3157\":false,\"3158\":false,\"3159\":false,\"3160\":false,\"3161\":false,\"3162\":false,\"3163\":false,\"3164\":false,\"3165\":false,\"3166\":false,\"3167\":false,\"3168\":false,\"3169\":false,\"3170\":false,\"3171\":false,\"3172\":false,\"3173\":false,\"3174\":false,\"3175\":false,\"3176\":false,\"3177\":false,\"3178\":false,\"3179\":false,\"3180\":false,\"3181\":false,\"3182\":false,\"3183\":false,\"3184\":false,\"3185\":false,\"3186\":false,\"3187\":false,\"3188\":false,\"3189\":false,\"3190\":false,\"3191\":false,\"3192\":false,\"3193\":false,\"3194\":false,\"3195\":false,\"3196\":false,\"3197\":false,\"3198\":false,\"3199\":false,\"3200\":false,\"3201\":false,\"3202\":false,\"3203\":false,\"3204\":false,\"3205\":false,\"3206\":false,\"3207\":false,\"3208\":false,\"3209\":false,\"3210\":false,\"3211\":false,\"3212\":false,\"3213\":false,\"3214\":false,\"3215\":false,\"3216\":false,\"3217\":false,\"3218\":false,\"3219\":false,\"3220\":false,\"3221\":false,\"3222\":false,\"3223\":false,\"3224\":false,\"3225\":false,\"3226\":false,\"3227\":false,\"3228\":false,\"3229\":false,\"3230\":false,\"3231\":false,\"3232\":false,\"3233\":false,\"3234\":false,\"3235\":false,\"3236\":false,\"3237\":false,\"3238\":false,\"3239\":false,\"3240\":false,\"3241\":false,\"3242\":false,\"3243\":false,\"3244\":false,\"3245\":false,\"3246\":false,\"3247\":false,\"3248\":false,\"3249\":false,\"3250\":false,\"3251\":false,\"3252\":false,\"3253\":false,\"3254\":false,\"3255\":false,\"3256\":false,\"3257\":false,\"3258\":false,\"3259\":false,\"3260\":false,\"3261\":false,\"3262\":false,\"3263\":false,\"3264\":false,\"3265\":false,\"3266\":false,\"3267\":false,\"3268\":false,\"3269\":false,\"3270\":false,\"3271\":false,\"3272\":false,\"3273\":false,\"3274\":false,\"3275\":false,\"3276\":false,\"3277\":false,\"3278\":false,\"3279\":false,\"3280\":false,\"3281\":false,\"3282\":false,\"3283\":false,\"3284\":false,\"3285\":false,\"3286\":false,\"3287\":false,\"3288\":false,\"3289\":false,\"3290\":false,\"3291\":false,\"3292\":false,\"3293\":false,\"3294\":false,\"3295\":false,\"3296\":false,\"3297\":false,\"3298\":false,\"3299\":false,\"3300\":false,\"3301\":false,\"3302\":false,\"3303\":false,\"3304\":false,\"3305\":false,\"3306\":false,\"3307\":false,\"3308\":false,\"3309\":false,\"3310\":false,\"3311\":false,\"3312\":false,\"3313\":false,\"3314\":false,\"3315\":false,\"3316\":false,\"3317\":false,\"3318\":false,\"3319\":false,\"3320\":false,\"3321\":false,\"3322\":false,\"3323\":false,\"3324\":false,\"3325\":false,\"3326\":false,\"3327\":false,\"3328\":false,\"3329\":false,\"3330\":false,\"3331\":false,\"3332\":false,\"3333\":false,\"3334\":false,\"3335\":false,\"3336\":false,\"3337\":false,\"3338\":false,\"3339\":false,\"3340\":false,\"3341\":false,\"3342\":false,\"3343\":false,\"3344\":false,\"3345\":false,\"3346\":false,\"3347\":false,\"3348\":false,\"3349\":false,\"3350\":false,\"3351\":false,\"3352\":false,\"3353\":false,\"3354\":false,\"3355\":false,\"3356\":false,\"3357\":false,\"3358\":false,\"3359\":false,\"3360\":false,\"3361\":false,\"3362\":false,\"3363\":false,\"3364\":false,\"3365\":false,\"3366\":false,\"3367\":false,\"3368\":false,\"3369\":false,\"3370\":false,\"3371\":false,\"3372\":false,\"3373\":false,\"3374\":false,\"3375\":false,\"3376\":false,\"3377\":false,\"3378\":false,\"3379\":false,\"3380\":false,\"3381\":false,\"3382\":false,\"3383\":false,\"3384\":false,\"3385\":false,\"3386\":false,\"3387\":false,\"3388\":false,\"3389\":false,\"3390\":false,\"3391\":false,\"3392\":false,\"3393\":false,\"3394\":false,\"3395\":false,\"3396\":false,\"3397\":false,\"3398\":false,\"3399\":false,\"3400\":false,\"3401\":false,\"3402\":false,\"3403\":false,\"3404\":false,\"3405\":false,\"3406\":false,\"3407\":false,\"3408\":false,\"3409\":false,\"3410\":false,\"3411\":false,\"3412\":false,\"3413\":false,\"3414\":false,\"3415\":false,\"3416\":false,\"3417\":false,\"3418\":false,\"3419\":false,\"3420\":false,\"3421\":false,\"3422\":false,\"3423\":false,\"3424\":false,\"3425\":false,\"3426\":false,\"3427\":false,\"3428\":false,\"3429\":false,\"3430\":false,\"3431\":false,\"3432\":false,\"3433\":false,\"3434\":false,\"3435\":false,\"3436\":false,\"3437\":false,\"3438\":false,\"3439\":false,\"3440\":false,\"3441\":false,\"3442\":false,\"3443\":false,\"3444\":false,\"3445\":false,\"3446\":false,\"3447\":false,\"3448\":false,\"3449\":false,\"3450\":false,\"3451\":false,\"3452\":false,\"3453\":false,\"3454\":false,\"3455\":false,\"3456\":false,\"3457\":false,\"3458\":false,\"3459\":false,\"3460\":false,\"3461\":false,\"3462\":false,\"3463\":false,\"3464\":false,\"3465\":false,\"3466\":false,\"3467\":false,\"3468\":false,\"3469\":false,\"3470\":false,\"3471\":false,\"3472\":false,\"3473\":false,\"3474\":false,\"3475\":false,\"3476\":false,\"3477\":false,\"3478\":false,\"3479\":false,\"3480\":false,\"3481\":false,\"3482\":false,\"3483\":false,\"3484\":false,\"3485\":false,\"3486\":false,\"3487\":false,\"3488\":false,\"3489\":false,\"3490\":false,\"3491\":false,\"3492\":false,\"3493\":false,\"3494\":false,\"3495\":false,\"3496\":false,\"3497\":false,\"3498\":false,\"3499\":false,\"3500\":false,\"3501\":false,\"3502\":false,\"3503\":false,\"3504\":false,\"3505\":false,\"3506\":false,\"3507\":false,\"3508\":false,\"3509\":false,\"3510\":false,\"3511\":false,\"3512\":false,\"3513\":false,\"3514\":false,\"3515\":false,\"3516\":false,\"3517\":false,\"3518\":false,\"3519\":false,\"3520\":false,\"3521\":false,\"3522\":false,\"3523\":false,\"3524\":false,\"3525\":false,\"3526\":false,\"3527\":false,\"3528\":false,\"3529\":false,\"3530\":false,\"3531\":false,\"3532\":false,\"3533\":false,\"3534\":false,\"3535\":false,\"3536\":false,\"3537\":false,\"3538\":false,\"3539\":false,\"3540\":false,\"3541\":false,\"3542\":false,\"3543\":false,\"3544\":false,\"3545\":false,\"3546\":false,\"3547\":false,\"3548\":false,\"3549\":false,\"3550\":false,\"3551\":false,\"3552\":false,\"3553\":false,\"3554\":false,\"3555\":false,\"3556\":false,\"3557\":false,\"3558\":false,\"3559\":false,\"3560\":false,\"3561\":false,\"3562\":false,\"3563\":false,\"3564\":false,\"3565\":false,\"3566\":false,\"3567\":false,\"3568\":false,\"3569\":false,\"3570\":false,\"3571\":false,\"3572\":false,\"3573\":false,\"3574\":false,\"3575\":false,\"3576\":false,\"3577\":false,\"3578\":false,\"3579\":false,\"3580\":false,\"3581\":false,\"3582\":false,\"3583\":false,\"3584\":false,\"3585\":false,\"3586\":false,\"3587\":false,\"3588\":false,\"3589\":false,\"3590\":false,\"3591\":false,\"3592\":false,\"3593\":false,\"3594\":false,\"3595\":false,\"3596\":false,\"3597\":false,\"3598\":false,\"3599\":false,\"3600\":false,\"3601\":false,\"3602\":false,\"3603\":false,\"3604\":false,\"3605\":false,\"3606\":false,\"3607\":false,\"3608\":false,\"3609\":false,\"3610\":false,\"3611\":false,\"3612\":false,\"3613\":false,\"3614\":false,\"3615\":false,\"3616\":false,\"3617\":false,\"3618\":false,\"3619\":false,\"3620\":false,\"3621\":false,\"3622\":false,\"3623\":false,\"3624\":false,\"3625\":false,\"3626\":false,\"3627\":false,\"3628\":false,\"3629\":false,\"3630\":false,\"3631\":false,\"3632\":false,\"3633\":false,\"3634\":false,\"3635\":false,\"3636\":false,\"3637\":false,\"3638\":false,\"3639\":false,\"3640\":false,\"3641\":false,\"3642\":false,\"3643\":false,\"3644\":false,\"3645\":false,\"3646\":false,\"3647\":false,\"3648\":false,\"3649\":false,\"3650\":false,\"3651\":false,\"3652\":false,\"3653\":false,\"3654\":false,\"3655\":false,\"3656\":false,\"3657\":false,\"3658\":false,\"3659\":false,\"3660\":false,\"3661\":false,\"3662\":false,\"3663\":false,\"3664\":false,\"3665\":false,\"3666\":false,\"3667\":false,\"3668\":false,\"3669\":false,\"3670\":false,\"3671\":false,\"3672\":false,\"3673\":false,\"3674\":false,\"3675\":false,\"3676\":false,\"3677\":false,\"3678\":false,\"3679\":false,\"3680\":false,\"3681\":false,\"3682\":false,\"3683\":false,\"3684\":false,\"3685\":false,\"3686\":false,\"3687\":false,\"3688\":false,\"3689\":false,\"3690\":false,\"3691\":false,\"3692\":false,\"3693\":false,\"3694\":false,\"3695\":false,\"3696\":false,\"3697\":false,\"3698\":false,\"3699\":false,\"3700\":false,\"3701\":false,\"3702\":false,\"3703\":false,\"3704\":false,\"3705\":false,\"3706\":false,\"3707\":false,\"3708\":false,\"3709\":false,\"3710\":false,\"3711\":false,\"3712\":false,\"3713\":false,\"3714\":false,\"3715\":false,\"3716\":false,\"3717\":false,\"3718\":false,\"3719\":false,\"3720\":false,\"3721\":false,\"3722\":false,\"3723\":false,\"3724\":false,\"3725\":false,\"3726\":false,\"3727\":false,\"3728\":false,\"3729\":false,\"3730\":false,\"3731\":false,\"3732\":false,\"3733\":false,\"3734\":false,\"3735\":false,\"3736\":false,\"3737\":false,\"3738\":false,\"3739\":false,\"3740\":false,\"3741\":false,\"3742\":false,\"3743\":false,\"3744\":false,\"3745\":false,\"3746\":false,\"3747\":false,\"3748\":false,\"3749\":false,\"3750\":false,\"3751\":false,\"3752\":false,\"3753\":false,\"3754\":false,\"3755\":false,\"3756\":false,\"3757\":false,\"3758\":false,\"3759\":false,\"3760\":false,\"3761\":false,\"3762\":false,\"3763\":false,\"3764\":false,\"3765\":false,\"3766\":false,\"3767\":false,\"3768\":false,\"3769\":false,\"3770\":false,\"3771\":false,\"3772\":false,\"3773\":false,\"3774\":false,\"3775\":false,\"3776\":false,\"3777\":false,\"3778\":false,\"3779\":false,\"3780\":false,\"3781\":false,\"3782\":false,\"3783\":false,\"3784\":false,\"3785\":false,\"3786\":false,\"3787\":false,\"3788\":false,\"3789\":false,\"3790\":false,\"3791\":false,\"3792\":false,\"3793\":false,\"3794\":false,\"3795\":false,\"3796\":false,\"3797\":false,\"3798\":false,\"3799\":false,\"3800\":false,\"3801\":false,\"3802\":false,\"3803\":false,\"3804\":false,\"3805\":false,\"3806\":false,\"3807\":false,\"3808\":false,\"3809\":false,\"3810\":false,\"3811\":false,\"3812\":false,\"3813\":false,\"3814\":false,\"3815\":false,\"3816\":false,\"3817\":false,\"3818\":false,\"3819\":false,\"3820\":false,\"3821\":false,\"3822\":false,\"3823\":false,\"3824\":false,\"3825\":false,\"3826\":false,\"3827\":false,\"3828\":false,\"3829\":false,\"3830\":false,\"3831\":false,\"3832\":false,\"3833\":false,\"3834\":false,\"3835\":false,\"3836\":false,\"3837\":false,\"3838\":false,\"3839\":false,\"3840\":false,\"3841\":false,\"3842\":false,\"3843\":false,\"3844\":false,\"3845\":false,\"3846\":false,\"3847\":false,\"3848\":false,\"3849\":false,\"3850\":false,\"3851\":false,\"3852\":false,\"3853\":false,\"3854\":false,\"3855\":false,\"3856\":false,\"3857\":false,\"3858\":false,\"3859\":false,\"3860\":false,\"3861\":false,\"3862\":false,\"3863\":false,\"3864\":false,\"3865\":false,\"3866\":false,\"3867\":false,\"3868\":false,\"3869\":false,\"3870\":false,\"3871\":false,\"3872\":false,\"3873\":false,\"3874\":false,\"3875\":false,\"3876\":false,\"3877\":false,\"3878\":false,\"3879\":false,\"3880\":false,\"3881\":false,\"3882\":false,\"3883\":false,\"3884\":false,\"3885\":false,\"3886\":false,\"3887\":false,\"3888\":false,\"3889\":false,\"3890\":false,\"3891\":false,\"3892\":false,\"3893\":false,\"3894\":false,\"3895\":false,\"3896\":false,\"3897\":false,\"3898\":false,\"3899\":false,\"3900\":false,\"3901\":false,\"3902\":false,\"3903\":false,\"3904\":false,\"3905\":false,\"3906\":false,\"3907\":false,\"3908\":false,\"3909\":false,\"3910\":false,\"3911\":false,\"3912\":false,\"3913\":false,\"3914\":false,\"3915\":false,\"3916\":false,\"3917\":false,\"3918\":false,\"3919\":false,\"3920\":false,\"3921\":false,\"3922\":false,\"3923\":false,\"3924\":false,\"3925\":false,\"3926\":false,\"3927\":false,\"3928\":false,\"3929\":false,\"3930\":false,\"3931\":false,\"3932\":false,\"3933\":false,\"3934\":false,\"3935\":false,\"3936\":false,\"3937\":false,\"3938\":false,\"3939\":false,\"3940\":false,\"3941\":false,\"3942\":false,\"3943\":false,\"3944\":false,\"3945\":false,\"3946\":false,\"3947\":false,\"3948\":false,\"3949\":false,\"3950\":false,\"3951\":false,\"3952\":false,\"3953\":false,\"3954\":false,\"3955\":false,\"3956\":false,\"3957\":false,\"3958\":false,\"3959\":false,\"3960\":false,\"3961\":false,\"3962\":false,\"3963\":false,\"3964\":false,\"3965\":false,\"3966\":false,\"3967\":false,\"3968\":false,\"3969\":false,\"3970\":false,\"3971\":false,\"3972\":false,\"3973\":false,\"3974\":false,\"3975\":false,\"3976\":false,\"3977\":false,\"3978\":false,\"3979\":false,\"3980\":false,\"3981\":false,\"3982\":false,\"3983\":false,\"3984\":false,\"3985\":false,\"3986\":false,\"3987\":false,\"3988\":false,\"3989\":false,\"3990\":false,\"3991\":false,\"3992\":false,\"3993\":false,\"3994\":false,\"3995\":false,\"3996\":false,\"3997\":false,\"3998\":false,\"3999\":false,\"4000\":false,\"4001\":false,\"4002\":false,\"4003\":false,\"4004\":false,\"4005\":false,\"4006\":false,\"4007\":false,\"4008\":false,\"4009\":false,\"4010\":false,\"4011\":false,\"4012\":false,\"4013\":false,\"4014\":false,\"4015\":false,\"4016\":false,\"4017\":false,\"4018\":false,\"4019\":false,\"4020\":false,\"4021\":false,\"4022\":false,\"4023\":false,\"4024\":false,\"4025\":false,\"4026\":false,\"4027\":false,\"4028\":false,\"4029\":false,\"4030\":false,\"4031\":false,\"4032\":false,\"4033\":false,\"4034\":false,\"4035\":false,\"4036\":false,\"4037\":false,\"4038\":false,\"4039\":false,\"4040\":false,\"4041\":false,\"4042\":false,\"4043\":false,\"4044\":false,\"4045\":false,\"4046\":false,\"4047\":false,\"4048\":false,\"4049\":false,\"4050\":false,\"4051\":false,\"4052\":false,\"4053\":false,\"4054\":false,\"4055\":false,\"4056\":false,\"4057\":false,\"4058\":false,\"4059\":false,\"4060\":false,\"4061\":false,\"4062\":false,\"4063\":false,\"4064\":false,\"4065\":false,\"4066\":false,\"4067\":false,\"4068\":false,\"4069\":false,\"4070\":false,\"4071\":false,\"4072\":false,\"4073\":false,\"4074\":false,\"4075\":false,\"4076\":false,\"4077\":false,\"4078\":false,\"4079\":false,\"4080\":false,\"4081\":false,\"4082\":false,\"4083\":false,\"4084\":false,\"4085\":false,\"4086\":false,\"4087\":false,\"4088\":false,\"4089\":false,\"4090\":false,\"4091\":false,\"4092\":false,\"4093\":false,\"4094\":false,\"4095\":false,\"4096\":false,\"4097\":false,\"4098\":false,\"4099\":false,\"4100\":false,\"4101\":false,\"4102\":false,\"4103\":false,\"4104\":false,\"4105\":false,\"4106\":false,\"4107\":false,\"4108\":false,\"4109\":false,\"4110\":false,\"4111\":false,\"4112\":false,\"4113\":false,\"4114\":false,\"4115\":false,\"4116\":false,\"4117\":false,\"4118\":false,\"4119\":false,\"4120\":false,\"4121\":false,\"4122\":false,\"4123\":false,\"4124\":false,\"4125\":false,\"4126\":false,\"4127\":false,\"4128\":false,\"4129\":false,\"4130\":false,\"4131\":false,\"4132\":false,\"4133\":false,\"4134\":false,\"4135\":false,\"4136\":false,\"4137\":false,\"4138\":false,\"4139\":false,\"4140\":false,\"4141\":false,\"4142\":false,\"4143\":false,\"4144\":false,\"4145\":false,\"4146\":false,\"4147\":false,\"4148\":false,\"4149\":false,\"4150\":false,\"4151\":false,\"4152\":false,\"4153\":false,\"4154\":false,\"4155\":false,\"4156\":false,\"4157\":false,\"4158\":false,\"4159\":false,\"4160\":false,\"4161\":false,\"4162\":false,\"4163\":false,\"4164\":false,\"4165\":false,\"4166\":false,\"4167\":false,\"4168\":false,\"4169\":false,\"4170\":false,\"4171\":false,\"4172\":false,\"4173\":false,\"4174\":false,\"4175\":false,\"4176\":false,\"4177\":false,\"4178\":false,\"4179\":false,\"4180\":false,\"4181\":false,\"4182\":false,\"4183\":false,\"4184\":false,\"4185\":false,\"4186\":false,\"4187\":false,\"4188\":false,\"4189\":false,\"4190\":false,\"4191\":false,\"4192\":false,\"4193\":false,\"4194\":false,\"4195\":false,\"4196\":false,\"4197\":false,\"4198\":false,\"4199\":false,\"4200\":false,\"4201\":false,\"4202\":false,\"4203\":false,\"4204\":false,\"4205\":false,\"4206\":false,\"4207\":false,\"4208\":false,\"4209\":false,\"4210\":false,\"4211\":false,\"4212\":false,\"4213\":false,\"4214\":false,\"4215\":false,\"4216\":false,\"4217\":false,\"4218\":false,\"4219\":false,\"4220\":false,\"4221\":false,\"4222\":false,\"4223\":false,\"4224\":false,\"4225\":false,\"4226\":false,\"4227\":false,\"4228\":false,\"4229\":false,\"4230\":false,\"4231\":false,\"4232\":false,\"4233\":false,\"4234\":false,\"4235\":false,\"4236\":false,\"4237\":false,\"4238\":false,\"4239\":false,\"4240\":false,\"4241\":false,\"4242\":false,\"4243\":false,\"4244\":false,\"4245\":false,\"4246\":false,\"4247\":false,\"4248\":false,\"4249\":false,\"4250\":false,\"4251\":false,\"4252\":false,\"4253\":false,\"4254\":false,\"4255\":false,\"4256\":false,\"4257\":false,\"4258\":false,\"4259\":false,\"4260\":false,\"4261\":false,\"4262\":false,\"4263\":false,\"4264\":false,\"4265\":false,\"4266\":false,\"4267\":false,\"4268\":false,\"4269\":false,\"4270\":false,\"4271\":false,\"4272\":false,\"4273\":false,\"4274\":false,\"4275\":false,\"4276\":false,\"4277\":false,\"4278\":false,\"4279\":false,\"4280\":false,\"4281\":false,\"4282\":false,\"4283\":false,\"4284\":false,\"4285\":false,\"4286\":false,\"4287\":false,\"4288\":false,\"4289\":false,\"4290\":false,\"4291\":false,\"4292\":false,\"4293\":false,\"4294\":false,\"4295\":false,\"4296\":false,\"4297\":false,\"4298\":false,\"4299\":false,\"4300\":false,\"4301\":false,\"4302\":false,\"4303\":false,\"4304\":false,\"4305\":false,\"4306\":false,\"4307\":false,\"4308\":false,\"4309\":false,\"4310\":false,\"4311\":false,\"4312\":false,\"4313\":false,\"4314\":false,\"4315\":false,\"4316\":false,\"4317\":false,\"4318\":false,\"4319\":false,\"4320\":false,\"4321\":false,\"4322\":false,\"4323\":false,\"4324\":false,\"4325\":false,\"4326\":false,\"4327\":false,\"4328\":false,\"4329\":false,\"4330\":false,\"4331\":false,\"4332\":false,\"4333\":false,\"4334\":false,\"4335\":false,\"4336\":false,\"4337\":false,\"4338\":false,\"4339\":false,\"4340\":false,\"4341\":false,\"4342\":false,\"4343\":false,\"4344\":false,\"4345\":false,\"4346\":false,\"4347\":false,\"4348\":false,\"4349\":false,\"4350\":false,\"4351\":false,\"4352\":false,\"4353\":false,\"4354\":false,\"4355\":false,\"4356\":false,\"4357\":false,\"4358\":false,\"4359\":false,\"4360\":false,\"4361\":false,\"4362\":false,\"4363\":false,\"4364\":false,\"4365\":false,\"4366\":false,\"4367\":false,\"4368\":false,\"4369\":false,\"4370\":false,\"4371\":false,\"4372\":false,\"4373\":false,\"4374\":false,\"4375\":false,\"4376\":false,\"4377\":false,\"4378\":false,\"4379\":false,\"4380\":false,\"4381\":false,\"4382\":false,\"4383\":false,\"4384\":false,\"4385\":false,\"4386\":false,\"4387\":false,\"4388\":false,\"4389\":false,\"4390\":false,\"4391\":false,\"4392\":false,\"4393\":false,\"4394\":false,\"4395\":false,\"4396\":false,\"4397\":false,\"4398\":false,\"4399\":false,\"4400\":false,\"4401\":false,\"4402\":false,\"4403\":false,\"4404\":false,\"4405\":false,\"4406\":false,\"4407\":false,\"4408\":false,\"4409\":false,\"4410\":false,\"4411\":false,\"4412\":false,\"4413\":false,\"4414\":false,\"4415\":false,\"4416\":false,\"4417\":false,\"4418\":false,\"4419\":false,\"4420\":false,\"4421\":false,\"4422\":false,\"4423\":false,\"4424\":false,\"4425\":false,\"4426\":false,\"4427\":false,\"4428\":false,\"4429\":false,\"4430\":false,\"4431\":false,\"4432\":false,\"4433\":false,\"4434\":false,\"4435\":false,\"4436\":false,\"4437\":false,\"4438\":false,\"4439\":false,\"4440\":false,\"4441\":false,\"4442\":false,\"4443\":false,\"4444\":false,\"4445\":false,\"4446\":false,\"4447\":false,\"4448\":false,\"4449\":false,\"4450\":false,\"4451\":false,\"4452\":false,\"4453\":false,\"4454\":false,\"4455\":false,\"4456\":false,\"4457\":false,\"4458\":false,\"4459\":false,\"4460\":false,\"4461\":false,\"4462\":false,\"4463\":false,\"4464\":false,\"4465\":false,\"4466\":false,\"4467\":false,\"4468\":false,\"4469\":false,\"4470\":false,\"4471\":false,\"4472\":false,\"4473\":false,\"4474\":false,\"4475\":false,\"4476\":false,\"4477\":false,\"4478\":false,\"4479\":false,\"4480\":false,\"4481\":false,\"4482\":false,\"4483\":false,\"4484\":false,\"4485\":false,\"4486\":false,\"4487\":false,\"4488\":false,\"4489\":false,\"4490\":false,\"4491\":false,\"4492\":false,\"4493\":false,\"4494\":false,\"4495\":false,\"4496\":false,\"4497\":false,\"4498\":false,\"4499\":false,\"4500\":false,\"4501\":false,\"4502\":false,\"4503\":false,\"4504\":false,\"4505\":false,\"4506\":false,\"4507\":false,\"4508\":false,\"4509\":false,\"4510\":false,\"4511\":false,\"4512\":false,\"4513\":false,\"4514\":false,\"4515\":false,\"4516\":false,\"4517\":false,\"4518\":false,\"4519\":false,\"4520\":false,\"4521\":false,\"4522\":false,\"4523\":false,\"4524\":false,\"4525\":false,\"4526\":false,\"4527\":false,\"4528\":false,\"4529\":false,\"4530\":false,\"4531\":false,\"4532\":false,\"4533\":false,\"4534\":false,\"4535\":false,\"4536\":false,\"4537\":false,\"4538\":false,\"4539\":false,\"4540\":false,\"4541\":false,\"4542\":false,\"4543\":false,\"4544\":false,\"4545\":false,\"4546\":false,\"4547\":false,\"4548\":false,\"4549\":false,\"4550\":false,\"4551\":false,\"4552\":false,\"4553\":false,\"4554\":false,\"4555\":false,\"4556\":false,\"4557\":false,\"4558\":false,\"4559\":false,\"4560\":false,\"4561\":false,\"4562\":false,\"4563\":false,\"4564\":false,\"4565\":false,\"4566\":false,\"4567\":false,\"4568\":false,\"4569\":false,\"4570\":false,\"4571\":false,\"4572\":false,\"4573\":false,\"4574\":false,\"4575\":false,\"4576\":false,\"4577\":false,\"4578\":false,\"4579\":false,\"4580\":false,\"4581\":false,\"4582\":false,\"4583\":false,\"4584\":false,\"4585\":false,\"4586\":false,\"4587\":false,\"4588\":false,\"4589\":false,\"4590\":false,\"4591\":false,\"4592\":false,\"4593\":false,\"4594\":false,\"4595\":false,\"4596\":false,\"4597\":false,\"4598\":false,\"4599\":false,\"4600\":false,\"4601\":false,\"4602\":false,\"4603\":false,\"4604\":false,\"4605\":false,\"4606\":false,\"4607\":false,\"4608\":false,\"4609\":false,\"4610\":false,\"4611\":false,\"4612\":false,\"4613\":false,\"4614\":false,\"4615\":false,\"4616\":false,\"4617\":false,\"4618\":false,\"4619\":false,\"4620\":false,\"4621\":false,\"4622\":false,\"4623\":false,\"4624\":false,\"4625\":false,\"4626\":false,\"4627\":false,\"4628\":false,\"4629\":false,\"4630\":false,\"4631\":false,\"4632\":false,\"4633\":false,\"4634\":false,\"4635\":false,\"4636\":false,\"4637\":false,\"4638\":false,\"4639\":false,\"4640\":false,\"4641\":false,\"4642\":false,\"4643\":false,\"4644\":false,\"4645\":false,\"4646\":false,\"4647\":false,\"4648\":false,\"4649\":false,\"4650\":false,\"4651\":false,\"4652\":false,\"4653\":false,\"4654\":false,\"4655\":false,\"4656\":false,\"4657\":false,\"4658\":false,\"4659\":false,\"4660\":false,\"4661\":false,\"4662\":false,\"4663\":false,\"4664\":false,\"4665\":false,\"4666\":false,\"4667\":false,\"4668\":false,\"4669\":false,\"4670\":false,\"4671\":false,\"4672\":false,\"4673\":false,\"4674\":false,\"4675\":false,\"4676\":false,\"4677\":false,\"4678\":false,\"4679\":false,\"4680\":false,\"4681\":false,\"4682\":false,\"4683\":false,\"4684\":false,\"4685\":false,\"4686\":false,\"4687\":false,\"4688\":false,\"4689\":false,\"4690\":false,\"4691\":false,\"4692\":false,\"4693\":false,\"4694\":false,\"4695\":false,\"4696\":false,\"4697\":false,\"4698\":false,\"4699\":false,\"4700\":false,\"4701\":false,\"4702\":false,\"4703\":false,\"4704\":false,\"4705\":false,\"4706\":false,\"4707\":false,\"4708\":false,\"4709\":false,\"4710\":false,\"4711\":false,\"4712\":false,\"4713\":false,\"4714\":false,\"4715\":false,\"4716\":false,\"4717\":false,\"4718\":false,\"4719\":false,\"4720\":false,\"4721\":false,\"4722\":false,\"4723\":false,\"4724\":false,\"4725\":false,\"4726\":false,\"4727\":false,\"4728\":false,\"4729\":false,\"4730\":false,\"4731\":false,\"4732\":false,\"4733\":false,\"4734\":false,\"4735\":false,\"4736\":false,\"4737\":false,\"4738\":false,\"4739\":false,\"4740\":false,\"4741\":false,\"4742\":false,\"4743\":false,\"4744\":false,\"4745\":false,\"4746\":false,\"4747\":false,\"4748\":false,\"4749\":false,\"4750\":false,\"4751\":false,\"4752\":false,\"4753\":false,\"4754\":false,\"4755\":false,\"4756\":false,\"4757\":false,\"4758\":false,\"4759\":false,\"4760\":false,\"4761\":false,\"4762\":false,\"4763\":false,\"4764\":false,\"4765\":false,\"4766\":false,\"4767\":false,\"4768\":false,\"4769\":false,\"4770\":false,\"4771\":false,\"4772\":false,\"4773\":false,\"4774\":false,\"4775\":false,\"4776\":false,\"4777\":false,\"4778\":false,\"4779\":false,\"4780\":false,\"4781\":false,\"4782\":false,\"4783\":false,\"4784\":false,\"4785\":false,\"4786\":false,\"4787\":false,\"4788\":false,\"4789\":false,\"4790\":false,\"4791\":false,\"4792\":false,\"4793\":false,\"4794\":false,\"4795\":false,\"4796\":false,\"4797\":false,\"4798\":false,\"4799\":false,\"4800\":false,\"4801\":false,\"4802\":false,\"4803\":false,\"4804\":false,\"4805\":false,\"4806\":false,\"4807\":false,\"4808\":false,\"4809\":false,\"4810\":false,\"4811\":false,\"4812\":false,\"4813\":false,\"4814\":false,\"4815\":false,\"4816\":false,\"4817\":false,\"4818\":false,\"4819\":false,\"4820\":false,\"4821\":false,\"4822\":false,\"4823\":false,\"4824\":false,\"4825\":false,\"4826\":false,\"4827\":false,\"4828\":false,\"4829\":false,\"4830\":false,\"4831\":false,\"4832\":false,\"4833\":false,\"4834\":false,\"4835\":false,\"4836\":false,\"4837\":false,\"4838\":false,\"4839\":false,\"4840\":false,\"4841\":false,\"4842\":false,\"4843\":false,\"4844\":false,\"4845\":false,\"4846\":false,\"4847\":false,\"4848\":false,\"4849\":false,\"4850\":false,\"4851\":false,\"4852\":false,\"4853\":false,\"4854\":false,\"4855\":false,\"4856\":false,\"4857\":false,\"4858\":false,\"4859\":false,\"4860\":false,\"4861\":false,\"4862\":false,\"4863\":false,\"4864\":false,\"4865\":false,\"4866\":false,\"4867\":false,\"4868\":false,\"4869\":false,\"4870\":false,\"4871\":false,\"4872\":false,\"4873\":false,\"4874\":false,\"4875\":false,\"4876\":false,\"4877\":false,\"4878\":false,\"4879\":false,\"4880\":false,\"4881\":false,\"4882\":false,\"4883\":false,\"4884\":false,\"4885\":false,\"4886\":false,\"4887\":false,\"4888\":false,\"4889\":false,\"4890\":false,\"4891\":false,\"4892\":false,\"4893\":false,\"4894\":false,\"4895\":false,\"4896\":false,\"4897\":false,\"4898\":false,\"4899\":false,\"4900\":false,\"4901\":false,\"4902\":false,\"4903\":false,\"4904\":false,\"4905\":false,\"4906\":false,\"4907\":false,\"4908\":false,\"4909\":false,\"4910\":false,\"4911\":false,\"4912\":false,\"4913\":false,\"4914\":false,\"4915\":false,\"4916\":false,\"4917\":false,\"4918\":false,\"4919\":false,\"4920\":false,\"4921\":false,\"4922\":false,\"4923\":false,\"4924\":false,\"4925\":false,\"4926\":false,\"4927\":false,\"4928\":false,\"4929\":false,\"4930\":false,\"4931\":false,\"4932\":false,\"4933\":false,\"4934\":false,\"4935\":false,\"4936\":false,\"4937\":false,\"4938\":false,\"4939\":false,\"4940\":false,\"4941\":false,\"4942\":false,\"4943\":false,\"4944\":false,\"4945\":false,\"4946\":false,\"4947\":false,\"4948\":false,\"4949\":false,\"4950\":false,\"4951\":false,\"4952\":false,\"4953\":false,\"4954\":false,\"4955\":false,\"4956\":false,\"4957\":false,\"4958\":false,\"4959\":false,\"4960\":false,\"4961\":false,\"4962\":false,\"4963\":false,\"4964\":false,\"4965\":false,\"4966\":false,\"4967\":false,\"4968\":false,\"4969\":false,\"4970\":false,\"4971\":false,\"4972\":false,\"4973\":false,\"4974\":false,\"4975\":false,\"4976\":false,\"4977\":false,\"4978\":false,\"4979\":false,\"4980\":false,\"4981\":false,\"4982\":false,\"4983\":false,\"4984\":false,\"4985\":false,\"4986\":false,\"4987\":false,\"4988\":false,\"4989\":false,\"4990\":false,\"4991\":false,\"4992\":false,\"4993\":false,\"4994\":false,\"4995\":false,\"4996\":false,\"4997\":false,\"4998\":false,\"4999\":false},\"retweeted\":{\"0\":false,\"1\":false,\"2\":false,\"3\":false,\"4\":false,\"5\":false,\"6\":false,\"7\":false,\"8\":false,\"9\":false,\"10\":false,\"11\":false,\"12\":false,\"13\":false,\"14\":false,\"15\":false,\"16\":false,\"17\":false,\"18\":false,\"19\":false,\"20\":false,\"21\":false,\"22\":false,\"23\":false,\"24\":false,\"25\":false,\"26\":false,\"27\":false,\"28\":false,\"29\":false,\"30\":false,\"31\":false,\"32\":false,\"33\":false,\"34\":false,\"35\":false,\"36\":false,\"37\":false,\"38\":false,\"39\":false,\"40\":false,\"41\":false,\"42\":false,\"43\":false,\"44\":false,\"45\":false,\"46\":false,\"47\":false,\"48\":false,\"49\":false,\"50\":false,\"51\":false,\"52\":false,\"53\":false,\"54\":false,\"55\":false,\"56\":false,\"57\":false,\"58\":false,\"59\":false,\"60\":false,\"61\":false,\"62\":false,\"63\":false,\"64\":false,\"65\":false,\"66\":false,\"67\":false,\"68\":false,\"69\":false,\"70\":false,\"71\":false,\"72\":false,\"73\":false,\"74\":false,\"75\":false,\"76\":false,\"77\":false,\"78\":false,\"79\":false,\"80\":false,\"81\":false,\"82\":false,\"83\":false,\"84\":false,\"85\":false,\"86\":false,\"87\":false,\"88\":false,\"89\":false,\"90\":false,\"91\":false,\"92\":false,\"93\":false,\"94\":false,\"95\":false,\"96\":false,\"97\":false,\"98\":false,\"99\":false,\"100\":false,\"101\":false,\"102\":false,\"103\":false,\"104\":false,\"105\":false,\"106\":false,\"107\":false,\"108\":false,\"109\":false,\"110\":false,\"111\":false,\"112\":false,\"113\":false,\"114\":false,\"115\":false,\"116\":false,\"117\":false,\"118\":false,\"119\":false,\"120\":false,\"121\":false,\"122\":false,\"123\":false,\"124\":false,\"125\":false,\"126\":false,\"127\":false,\"128\":false,\"129\":false,\"130\":false,\"131\":false,\"132\":false,\"133\":false,\"134\":false,\"135\":false,\"136\":false,\"137\":false,\"138\":false,\"139\":false,\"140\":false,\"141\":false,\"142\":false,\"143\":false,\"144\":false,\"145\":false,\"146\":false,\"147\":false,\"148\":false,\"149\":false,\"150\":false,\"151\":false,\"152\":false,\"153\":false,\"154\":false,\"155\":false,\"156\":false,\"157\":false,\"158\":false,\"159\":false,\"160\":false,\"161\":false,\"162\":false,\"163\":false,\"164\":false,\"165\":false,\"166\":false,\"167\":false,\"168\":false,\"169\":false,\"170\":false,\"171\":false,\"172\":false,\"173\":false,\"174\":false,\"175\":false,\"176\":false,\"177\":false,\"178\":false,\"179\":false,\"180\":false,\"181\":false,\"182\":false,\"183\":false,\"184\":false,\"185\":false,\"186\":false,\"187\":false,\"188\":false,\"189\":false,\"190\":false,\"191\":false,\"192\":false,\"193\":false,\"194\":false,\"195\":false,\"196\":false,\"197\":false,\"198\":false,\"199\":false,\"200\":false,\"201\":false,\"202\":false,\"203\":false,\"204\":false,\"205\":false,\"206\":false,\"207\":false,\"208\":false,\"209\":false,\"210\":false,\"211\":false,\"212\":false,\"213\":false,\"214\":false,\"215\":false,\"216\":false,\"217\":false,\"218\":false,\"219\":false,\"220\":false,\"221\":false,\"222\":false,\"223\":false,\"224\":false,\"225\":false,\"226\":false,\"227\":false,\"228\":false,\"229\":false,\"230\":false,\"231\":false,\"232\":false,\"233\":false,\"234\":false,\"235\":false,\"236\":false,\"237\":false,\"238\":false,\"239\":false,\"240\":false,\"241\":false,\"242\":false,\"243\":false,\"244\":false,\"245\":false,\"246\":false,\"247\":false,\"248\":false,\"249\":false,\"250\":false,\"251\":false,\"252\":false,\"253\":false,\"254\":false,\"255\":false,\"256\":false,\"257\":false,\"258\":false,\"259\":false,\"260\":false,\"261\":false,\"262\":false,\"263\":false,\"264\":false,\"265\":false,\"266\":false,\"267\":false,\"268\":false,\"269\":false,\"270\":false,\"271\":false,\"272\":false,\"273\":false,\"274\":false,\"275\":false,\"276\":false,\"277\":false,\"278\":false,\"279\":false,\"280\":false,\"281\":false,\"282\":false,\"283\":false,\"284\":false,\"285\":false,\"286\":false,\"287\":false,\"288\":false,\"289\":false,\"290\":false,\"291\":false,\"292\":false,\"293\":false,\"294\":false,\"295\":false,\"296\":false,\"297\":false,\"298\":false,\"299\":false,\"300\":false,\"301\":false,\"302\":false,\"303\":false,\"304\":false,\"305\":false,\"306\":false,\"307\":false,\"308\":false,\"309\":false,\"310\":false,\"311\":false,\"312\":false,\"313\":false,\"314\":false,\"315\":false,\"316\":false,\"317\":false,\"318\":false,\"319\":false,\"320\":false,\"321\":false,\"322\":false,\"323\":false,\"324\":false,\"325\":false,\"326\":false,\"327\":false,\"328\":false,\"329\":false,\"330\":false,\"331\":false,\"332\":false,\"333\":false,\"334\":false,\"335\":false,\"336\":false,\"337\":false,\"338\":false,\"339\":false,\"340\":false,\"341\":false,\"342\":false,\"343\":false,\"344\":false,\"345\":false,\"346\":false,\"347\":false,\"348\":false,\"349\":false,\"350\":false,\"351\":false,\"352\":false,\"353\":false,\"354\":false,\"355\":false,\"356\":false,\"357\":false,\"358\":false,\"359\":false,\"360\":false,\"361\":false,\"362\":false,\"363\":false,\"364\":false,\"365\":false,\"366\":false,\"367\":false,\"368\":false,\"369\":false,\"370\":false,\"371\":false,\"372\":false,\"373\":false,\"374\":false,\"375\":false,\"376\":false,\"377\":false,\"378\":false,\"379\":false,\"380\":false,\"381\":false,\"382\":false,\"383\":false,\"384\":false,\"385\":false,\"386\":false,\"387\":false,\"388\":false,\"389\":false,\"390\":false,\"391\":false,\"392\":false,\"393\":false,\"394\":false,\"395\":false,\"396\":false,\"397\":false,\"398\":false,\"399\":false,\"400\":false,\"401\":false,\"402\":false,\"403\":false,\"404\":false,\"405\":false,\"406\":false,\"407\":false,\"408\":false,\"409\":false,\"410\":false,\"411\":false,\"412\":false,\"413\":false,\"414\":false,\"415\":false,\"416\":false,\"417\":false,\"418\":false,\"419\":false,\"420\":false,\"421\":false,\"422\":false,\"423\":false,\"424\":false,\"425\":false,\"426\":false,\"427\":false,\"428\":false,\"429\":false,\"430\":false,\"431\":false,\"432\":false,\"433\":false,\"434\":false,\"435\":false,\"436\":false,\"437\":false,\"438\":false,\"439\":false,\"440\":false,\"441\":false,\"442\":false,\"443\":false,\"444\":false,\"445\":false,\"446\":false,\"447\":false,\"448\":false,\"449\":false,\"450\":false,\"451\":false,\"452\":false,\"453\":false,\"454\":false,\"455\":false,\"456\":false,\"457\":false,\"458\":false,\"459\":false,\"460\":false,\"461\":false,\"462\":false,\"463\":false,\"464\":false,\"465\":false,\"466\":false,\"467\":false,\"468\":false,\"469\":false,\"470\":false,\"471\":false,\"472\":false,\"473\":false,\"474\":false,\"475\":false,\"476\":false,\"477\":false,\"478\":false,\"479\":false,\"480\":false,\"481\":false,\"482\":false,\"483\":false,\"484\":false,\"485\":false,\"486\":false,\"487\":false,\"488\":false,\"489\":false,\"490\":false,\"491\":false,\"492\":false,\"493\":false,\"494\":false,\"495\":false,\"496\":false,\"497\":false,\"498\":false,\"499\":false,\"500\":false,\"501\":false,\"502\":false,\"503\":false,\"504\":false,\"505\":false,\"506\":false,\"507\":false,\"508\":false,\"509\":false,\"510\":false,\"511\":false,\"512\":false,\"513\":false,\"514\":false,\"515\":false,\"516\":false,\"517\":false,\"518\":false,\"519\":false,\"520\":false,\"521\":false,\"522\":false,\"523\":false,\"524\":false,\"525\":false,\"526\":false,\"527\":false,\"528\":false,\"529\":false,\"530\":false,\"531\":false,\"532\":false,\"533\":false,\"534\":false,\"535\":false,\"536\":false,\"537\":false,\"538\":false,\"539\":false,\"540\":false,\"541\":false,\"542\":false,\"543\":false,\"544\":false,\"545\":false,\"546\":false,\"547\":false,\"548\":false,\"549\":false,\"550\":false,\"551\":false,\"552\":false,\"553\":false,\"554\":false,\"555\":false,\"556\":false,\"557\":false,\"558\":false,\"559\":false,\"560\":false,\"561\":false,\"562\":false,\"563\":false,\"564\":false,\"565\":false,\"566\":false,\"567\":false,\"568\":false,\"569\":false,\"570\":false,\"571\":false,\"572\":false,\"573\":false,\"574\":false,\"575\":false,\"576\":false,\"577\":false,\"578\":false,\"579\":false,\"580\":false,\"581\":false,\"582\":false,\"583\":false,\"584\":false,\"585\":false,\"586\":false,\"587\":false,\"588\":false,\"589\":false,\"590\":false,\"591\":false,\"592\":false,\"593\":false,\"594\":false,\"595\":false,\"596\":false,\"597\":false,\"598\":false,\"599\":false,\"600\":false,\"601\":false,\"602\":false,\"603\":false,\"604\":false,\"605\":false,\"606\":false,\"607\":false,\"608\":false,\"609\":false,\"610\":false,\"611\":false,\"612\":false,\"613\":false,\"614\":false,\"615\":false,\"616\":false,\"617\":false,\"618\":false,\"619\":false,\"620\":false,\"621\":false,\"622\":false,\"623\":false,\"624\":false,\"625\":false,\"626\":false,\"627\":false,\"628\":false,\"629\":false,\"630\":false,\"631\":false,\"632\":false,\"633\":false,\"634\":false,\"635\":false,\"636\":false,\"637\":false,\"638\":false,\"639\":false,\"640\":false,\"641\":false,\"642\":false,\"643\":false,\"644\":false,\"645\":false,\"646\":false,\"647\":false,\"648\":false,\"649\":false,\"650\":false,\"651\":false,\"652\":false,\"653\":false,\"654\":false,\"655\":false,\"656\":false,\"657\":false,\"658\":false,\"659\":false,\"660\":false,\"661\":false,\"662\":false,\"663\":false,\"664\":false,\"665\":false,\"666\":false,\"667\":false,\"668\":false,\"669\":false,\"670\":false,\"671\":false,\"672\":false,\"673\":false,\"674\":false,\"675\":false,\"676\":false,\"677\":false,\"678\":false,\"679\":false,\"680\":false,\"681\":false,\"682\":false,\"683\":false,\"684\":false,\"685\":false,\"686\":false,\"687\":false,\"688\":false,\"689\":false,\"690\":false,\"691\":false,\"692\":false,\"693\":false,\"694\":false,\"695\":false,\"696\":false,\"697\":false,\"698\":false,\"699\":false,\"700\":false,\"701\":false,\"702\":false,\"703\":false,\"704\":false,\"705\":false,\"706\":false,\"707\":false,\"708\":false,\"709\":false,\"710\":false,\"711\":false,\"712\":false,\"713\":false,\"714\":false,\"715\":false,\"716\":false,\"717\":false,\"718\":false,\"719\":false,\"720\":false,\"721\":false,\"722\":false,\"723\":false,\"724\":false,\"725\":false,\"726\":false,\"727\":false,\"728\":false,\"729\":false,\"730\":false,\"731\":false,\"732\":false,\"733\":false,\"734\":false,\"735\":false,\"736\":false,\"737\":false,\"738\":false,\"739\":false,\"740\":false,\"741\":false,\"742\":false,\"743\":false,\"744\":false,\"745\":false,\"746\":false,\"747\":false,\"748\":false,\"749\":false,\"750\":false,\"751\":false,\"752\":false,\"753\":false,\"754\":false,\"755\":false,\"756\":false,\"757\":false,\"758\":false,\"759\":false,\"760\":false,\"761\":false,\"762\":false,\"763\":false,\"764\":false,\"765\":false,\"766\":false,\"767\":false,\"768\":false,\"769\":false,\"770\":false,\"771\":false,\"772\":false,\"773\":false,\"774\":false,\"775\":false,\"776\":false,\"777\":false,\"778\":false,\"779\":false,\"780\":false,\"781\":false,\"782\":false,\"783\":false,\"784\":false,\"785\":false,\"786\":false,\"787\":false,\"788\":false,\"789\":false,\"790\":false,\"791\":false,\"792\":false,\"793\":false,\"794\":false,\"795\":false,\"796\":false,\"797\":false,\"798\":false,\"799\":false,\"800\":false,\"801\":false,\"802\":false,\"803\":false,\"804\":false,\"805\":false,\"806\":false,\"807\":false,\"808\":false,\"809\":false,\"810\":false,\"811\":false,\"812\":false,\"813\":false,\"814\":false,\"815\":false,\"816\":false,\"817\":false,\"818\":false,\"819\":false,\"820\":false,\"821\":false,\"822\":false,\"823\":false,\"824\":false,\"825\":false,\"826\":false,\"827\":false,\"828\":false,\"829\":false,\"830\":false,\"831\":false,\"832\":false,\"833\":false,\"834\":false,\"835\":false,\"836\":false,\"837\":false,\"838\":false,\"839\":false,\"840\":false,\"841\":false,\"842\":false,\"843\":false,\"844\":false,\"845\":false,\"846\":false,\"847\":false,\"848\":false,\"849\":false,\"850\":false,\"851\":false,\"852\":false,\"853\":false,\"854\":false,\"855\":false,\"856\":false,\"857\":false,\"858\":false,\"859\":false,\"860\":false,\"861\":false,\"862\":false,\"863\":false,\"864\":false,\"865\":false,\"866\":false,\"867\":false,\"868\":false,\"869\":false,\"870\":false,\"871\":false,\"872\":false,\"873\":false,\"874\":false,\"875\":false,\"876\":false,\"877\":false,\"878\":false,\"879\":false,\"880\":false,\"881\":false,\"882\":false,\"883\":false,\"884\":false,\"885\":false,\"886\":false,\"887\":false,\"888\":false,\"889\":false,\"890\":false,\"891\":false,\"892\":false,\"893\":false,\"894\":false,\"895\":false,\"896\":false,\"897\":false,\"898\":false,\"899\":false,\"900\":false,\"901\":false,\"902\":false,\"903\":false,\"904\":false,\"905\":false,\"906\":false,\"907\":false,\"908\":false,\"909\":false,\"910\":false,\"911\":false,\"912\":false,\"913\":false,\"914\":false,\"915\":false,\"916\":false,\"917\":false,\"918\":false,\"919\":false,\"920\":false,\"921\":false,\"922\":false,\"923\":false,\"924\":false,\"925\":false,\"926\":false,\"927\":false,\"928\":false,\"929\":false,\"930\":false,\"931\":false,\"932\":false,\"933\":false,\"934\":false,\"935\":false,\"936\":false,\"937\":false,\"938\":false,\"939\":false,\"940\":false,\"941\":false,\"942\":false,\"943\":false,\"944\":false,\"945\":false,\"946\":false,\"947\":false,\"948\":false,\"949\":false,\"950\":false,\"951\":false,\"952\":false,\"953\":false,\"954\":false,\"955\":false,\"956\":false,\"957\":false,\"958\":false,\"959\":false,\"960\":false,\"961\":false,\"962\":false,\"963\":false,\"964\":false,\"965\":false,\"966\":false,\"967\":false,\"968\":false,\"969\":false,\"970\":false,\"971\":false,\"972\":false,\"973\":false,\"974\":false,\"975\":false,\"976\":false,\"977\":false,\"978\":false,\"979\":false,\"980\":false,\"981\":false,\"982\":false,\"983\":false,\"984\":false,\"985\":false,\"986\":false,\"987\":false,\"988\":false,\"989\":false,\"990\":false,\"991\":false,\"992\":false,\"993\":false,\"994\":false,\"995\":false,\"996\":false,\"997\":false,\"998\":false,\"999\":false,\"1000\":false,\"1001\":false,\"1002\":false,\"1003\":false,\"1004\":false,\"1005\":false,\"1006\":false,\"1007\":false,\"1008\":false,\"1009\":false,\"1010\":false,\"1011\":false,\"1012\":false,\"1013\":false,\"1014\":false,\"1015\":false,\"1016\":false,\"1017\":false,\"1018\":false,\"1019\":false,\"1020\":false,\"1021\":false,\"1022\":false,\"1023\":false,\"1024\":false,\"1025\":false,\"1026\":false,\"1027\":false,\"1028\":false,\"1029\":false,\"1030\":false,\"1031\":false,\"1032\":false,\"1033\":false,\"1034\":false,\"1035\":false,\"1036\":false,\"1037\":false,\"1038\":false,\"1039\":false,\"1040\":false,\"1041\":false,\"1042\":false,\"1043\":false,\"1044\":false,\"1045\":false,\"1046\":false,\"1047\":false,\"1048\":false,\"1049\":false,\"1050\":false,\"1051\":false,\"1052\":false,\"1053\":false,\"1054\":false,\"1055\":false,\"1056\":false,\"1057\":false,\"1058\":false,\"1059\":false,\"1060\":false,\"1061\":false,\"1062\":false,\"1063\":false,\"1064\":false,\"1065\":false,\"1066\":false,\"1067\":false,\"1068\":false,\"1069\":false,\"1070\":false,\"1071\":false,\"1072\":false,\"1073\":false,\"1074\":false,\"1075\":false,\"1076\":false,\"1077\":false,\"1078\":false,\"1079\":false,\"1080\":false,\"1081\":false,\"1082\":false,\"1083\":false,\"1084\":false,\"1085\":false,\"1086\":false,\"1087\":false,\"1088\":false,\"1089\":false,\"1090\":false,\"1091\":false,\"1092\":false,\"1093\":false,\"1094\":false,\"1095\":false,\"1096\":false,\"1097\":false,\"1098\":false,\"1099\":false,\"1100\":false,\"1101\":false,\"1102\":false,\"1103\":false,\"1104\":false,\"1105\":false,\"1106\":false,\"1107\":false,\"1108\":false,\"1109\":false,\"1110\":false,\"1111\":false,\"1112\":false,\"1113\":false,\"1114\":false,\"1115\":false,\"1116\":false,\"1117\":false,\"1118\":false,\"1119\":false,\"1120\":false,\"1121\":false,\"1122\":false,\"1123\":false,\"1124\":false,\"1125\":false,\"1126\":false,\"1127\":false,\"1128\":false,\"1129\":false,\"1130\":false,\"1131\":false,\"1132\":false,\"1133\":false,\"1134\":false,\"1135\":false,\"1136\":false,\"1137\":false,\"1138\":false,\"1139\":false,\"1140\":false,\"1141\":false,\"1142\":false,\"1143\":false,\"1144\":false,\"1145\":false,\"1146\":false,\"1147\":false,\"1148\":false,\"1149\":false,\"1150\":false,\"1151\":false,\"1152\":false,\"1153\":false,\"1154\":false,\"1155\":false,\"1156\":false,\"1157\":false,\"1158\":false,\"1159\":false,\"1160\":false,\"1161\":false,\"1162\":false,\"1163\":false,\"1164\":false,\"1165\":false,\"1166\":false,\"1167\":false,\"1168\":false,\"1169\":false,\"1170\":false,\"1171\":false,\"1172\":false,\"1173\":false,\"1174\":false,\"1175\":false,\"1176\":false,\"1177\":false,\"1178\":false,\"1179\":false,\"1180\":false,\"1181\":false,\"1182\":false,\"1183\":false,\"1184\":false,\"1185\":false,\"1186\":false,\"1187\":false,\"1188\":false,\"1189\":false,\"1190\":false,\"1191\":false,\"1192\":false,\"1193\":false,\"1194\":false,\"1195\":false,\"1196\":false,\"1197\":false,\"1198\":false,\"1199\":false,\"1200\":false,\"1201\":false,\"1202\":false,\"1203\":false,\"1204\":false,\"1205\":false,\"1206\":false,\"1207\":false,\"1208\":false,\"1209\":false,\"1210\":false,\"1211\":false,\"1212\":false,\"1213\":false,\"1214\":false,\"1215\":false,\"1216\":false,\"1217\":false,\"1218\":false,\"1219\":false,\"1220\":false,\"1221\":false,\"1222\":false,\"1223\":false,\"1224\":false,\"1225\":false,\"1226\":false,\"1227\":false,\"1228\":false,\"1229\":false,\"1230\":false,\"1231\":false,\"1232\":false,\"1233\":false,\"1234\":false,\"1235\":false,\"1236\":false,\"1237\":false,\"1238\":false,\"1239\":false,\"1240\":false,\"1241\":false,\"1242\":false,\"1243\":false,\"1244\":false,\"1245\":false,\"1246\":false,\"1247\":false,\"1248\":false,\"1249\":false,\"1250\":false,\"1251\":false,\"1252\":false,\"1253\":false,\"1254\":false,\"1255\":false,\"1256\":false,\"1257\":false,\"1258\":false,\"1259\":false,\"1260\":false,\"1261\":false,\"1262\":false,\"1263\":false,\"1264\":false,\"1265\":false,\"1266\":false,\"1267\":false,\"1268\":false,\"1269\":false,\"1270\":false,\"1271\":false,\"1272\":false,\"1273\":false,\"1274\":false,\"1275\":false,\"1276\":false,\"1277\":false,\"1278\":false,\"1279\":false,\"1280\":false,\"1281\":false,\"1282\":false,\"1283\":false,\"1284\":false,\"1285\":false,\"1286\":false,\"1287\":false,\"1288\":false,\"1289\":false,\"1290\":false,\"1291\":false,\"1292\":false,\"1293\":false,\"1294\":false,\"1295\":false,\"1296\":false,\"1297\":false,\"1298\":false,\"1299\":false,\"1300\":false,\"1301\":false,\"1302\":false,\"1303\":false,\"1304\":false,\"1305\":false,\"1306\":false,\"1307\":false,\"1308\":false,\"1309\":false,\"1310\":false,\"1311\":false,\"1312\":false,\"1313\":false,\"1314\":false,\"1315\":false,\"1316\":false,\"1317\":false,\"1318\":false,\"1319\":false,\"1320\":false,\"1321\":false,\"1322\":false,\"1323\":false,\"1324\":false,\"1325\":false,\"1326\":false,\"1327\":false,\"1328\":false,\"1329\":false,\"1330\":false,\"1331\":false,\"1332\":false,\"1333\":false,\"1334\":false,\"1335\":false,\"1336\":false,\"1337\":false,\"1338\":false,\"1339\":false,\"1340\":false,\"1341\":false,\"1342\":false,\"1343\":false,\"1344\":false,\"1345\":false,\"1346\":false,\"1347\":false,\"1348\":false,\"1349\":false,\"1350\":false,\"1351\":false,\"1352\":false,\"1353\":false,\"1354\":false,\"1355\":false,\"1356\":false,\"1357\":false,\"1358\":false,\"1359\":false,\"1360\":false,\"1361\":false,\"1362\":false,\"1363\":false,\"1364\":false,\"1365\":false,\"1366\":false,\"1367\":false,\"1368\":false,\"1369\":false,\"1370\":false,\"1371\":false,\"1372\":false,\"1373\":false,\"1374\":false,\"1375\":false,\"1376\":false,\"1377\":false,\"1378\":false,\"1379\":false,\"1380\":false,\"1381\":false,\"1382\":false,\"1383\":false,\"1384\":false,\"1385\":false,\"1386\":false,\"1387\":false,\"1388\":false,\"1389\":false,\"1390\":false,\"1391\":false,\"1392\":false,\"1393\":false,\"1394\":false,\"1395\":false,\"1396\":false,\"1397\":false,\"1398\":false,\"1399\":false,\"1400\":false,\"1401\":false,\"1402\":false,\"1403\":false,\"1404\":false,\"1405\":false,\"1406\":false,\"1407\":false,\"1408\":false,\"1409\":false,\"1410\":false,\"1411\":false,\"1412\":false,\"1413\":false,\"1414\":false,\"1415\":false,\"1416\":false,\"1417\":false,\"1418\":false,\"1419\":false,\"1420\":false,\"1421\":false,\"1422\":false,\"1423\":false,\"1424\":false,\"1425\":false,\"1426\":false,\"1427\":false,\"1428\":false,\"1429\":false,\"1430\":false,\"1431\":false,\"1432\":false,\"1433\":false,\"1434\":false,\"1435\":false,\"1436\":false,\"1437\":false,\"1438\":false,\"1439\":false,\"1440\":false,\"1441\":false,\"1442\":false,\"1443\":false,\"1444\":false,\"1445\":false,\"1446\":false,\"1447\":false,\"1448\":false,\"1449\":false,\"1450\":false,\"1451\":false,\"1452\":false,\"1453\":false,\"1454\":false,\"1455\":false,\"1456\":false,\"1457\":false,\"1458\":false,\"1459\":false,\"1460\":false,\"1461\":false,\"1462\":false,\"1463\":false,\"1464\":false,\"1465\":false,\"1466\":false,\"1467\":false,\"1468\":false,\"1469\":false,\"1470\":false,\"1471\":false,\"1472\":false,\"1473\":false,\"1474\":false,\"1475\":false,\"1476\":false,\"1477\":false,\"1478\":false,\"1479\":false,\"1480\":false,\"1481\":false,\"1482\":false,\"1483\":false,\"1484\":false,\"1485\":false,\"1486\":false,\"1487\":false,\"1488\":false,\"1489\":false,\"1490\":false,\"1491\":false,\"1492\":false,\"1493\":false,\"1494\":false,\"1495\":false,\"1496\":false,\"1497\":false,\"1498\":false,\"1499\":false,\"1500\":false,\"1501\":false,\"1502\":false,\"1503\":false,\"1504\":false,\"1505\":false,\"1506\":false,\"1507\":false,\"1508\":false,\"1509\":false,\"1510\":false,\"1511\":false,\"1512\":false,\"1513\":false,\"1514\":false,\"1515\":false,\"1516\":false,\"1517\":false,\"1518\":false,\"1519\":false,\"1520\":false,\"1521\":false,\"1522\":false,\"1523\":false,\"1524\":false,\"1525\":false,\"1526\":false,\"1527\":false,\"1528\":false,\"1529\":false,\"1530\":false,\"1531\":false,\"1532\":false,\"1533\":false,\"1534\":false,\"1535\":false,\"1536\":false,\"1537\":false,\"1538\":false,\"1539\":false,\"1540\":false,\"1541\":false,\"1542\":false,\"1543\":false,\"1544\":false,\"1545\":false,\"1546\":false,\"1547\":false,\"1548\":false,\"1549\":false,\"1550\":false,\"1551\":false,\"1552\":false,\"1553\":false,\"1554\":false,\"1555\":false,\"1556\":false,\"1557\":false,\"1558\":false,\"1559\":false,\"1560\":false,\"1561\":false,\"1562\":false,\"1563\":false,\"1564\":false,\"1565\":false,\"1566\":false,\"1567\":false,\"1568\":false,\"1569\":false,\"1570\":false,\"1571\":false,\"1572\":false,\"1573\":false,\"1574\":false,\"1575\":false,\"1576\":false,\"1577\":false,\"1578\":false,\"1579\":false,\"1580\":false,\"1581\":false,\"1582\":false,\"1583\":false,\"1584\":false,\"1585\":false,\"1586\":false,\"1587\":false,\"1588\":false,\"1589\":false,\"1590\":false,\"1591\":false,\"1592\":false,\"1593\":false,\"1594\":false,\"1595\":false,\"1596\":false,\"1597\":false,\"1598\":false,\"1599\":false,\"1600\":false,\"1601\":false,\"1602\":false,\"1603\":false,\"1604\":false,\"1605\":false,\"1606\":false,\"1607\":false,\"1608\":false,\"1609\":false,\"1610\":false,\"1611\":false,\"1612\":false,\"1613\":false,\"1614\":false,\"1615\":false,\"1616\":false,\"1617\":false,\"1618\":false,\"1619\":false,\"1620\":false,\"1621\":false,\"1622\":false,\"1623\":false,\"1624\":false,\"1625\":false,\"1626\":false,\"1627\":false,\"1628\":false,\"1629\":false,\"1630\":false,\"1631\":false,\"1632\":false,\"1633\":false,\"1634\":false,\"1635\":false,\"1636\":false,\"1637\":false,\"1638\":false,\"1639\":false,\"1640\":false,\"1641\":false,\"1642\":false,\"1643\":false,\"1644\":false,\"1645\":false,\"1646\":false,\"1647\":false,\"1648\":false,\"1649\":false,\"1650\":false,\"1651\":false,\"1652\":false,\"1653\":false,\"1654\":false,\"1655\":false,\"1656\":false,\"1657\":false,\"1658\":false,\"1659\":false,\"1660\":false,\"1661\":false,\"1662\":false,\"1663\":false,\"1664\":false,\"1665\":false,\"1666\":false,\"1667\":false,\"1668\":false,\"1669\":false,\"1670\":false,\"1671\":false,\"1672\":false,\"1673\":false,\"1674\":false,\"1675\":false,\"1676\":false,\"1677\":false,\"1678\":false,\"1679\":false,\"1680\":false,\"1681\":false,\"1682\":false,\"1683\":false,\"1684\":false,\"1685\":false,\"1686\":false,\"1687\":false,\"1688\":false,\"1689\":false,\"1690\":false,\"1691\":false,\"1692\":false,\"1693\":false,\"1694\":false,\"1695\":false,\"1696\":false,\"1697\":false,\"1698\":false,\"1699\":false,\"1700\":false,\"1701\":false,\"1702\":false,\"1703\":false,\"1704\":false,\"1705\":false,\"1706\":false,\"1707\":false,\"1708\":false,\"1709\":false,\"1710\":false,\"1711\":false,\"1712\":false,\"1713\":false,\"1714\":false,\"1715\":false,\"1716\":false,\"1717\":false,\"1718\":false,\"1719\":false,\"1720\":false,\"1721\":false,\"1722\":false,\"1723\":false,\"1724\":false,\"1725\":false,\"1726\":false,\"1727\":false,\"1728\":false,\"1729\":false,\"1730\":false,\"1731\":false,\"1732\":false,\"1733\":false,\"1734\":false,\"1735\":false,\"1736\":false,\"1737\":false,\"1738\":false,\"1739\":false,\"1740\":false,\"1741\":false,\"1742\":false,\"1743\":false,\"1744\":false,\"1745\":false,\"1746\":false,\"1747\":false,\"1748\":false,\"1749\":false,\"1750\":false,\"1751\":false,\"1752\":false,\"1753\":false,\"1754\":false,\"1755\":false,\"1756\":false,\"1757\":false,\"1758\":false,\"1759\":false,\"1760\":false,\"1761\":false,\"1762\":false,\"1763\":false,\"1764\":false,\"1765\":false,\"1766\":false,\"1767\":false,\"1768\":false,\"1769\":false,\"1770\":false,\"1771\":false,\"1772\":false,\"1773\":false,\"1774\":false,\"1775\":false,\"1776\":false,\"1777\":false,\"1778\":false,\"1779\":false,\"1780\":false,\"1781\":false,\"1782\":false,\"1783\":false,\"1784\":false,\"1785\":false,\"1786\":false,\"1787\":false,\"1788\":false,\"1789\":false,\"1790\":false,\"1791\":false,\"1792\":false,\"1793\":false,\"1794\":false,\"1795\":false,\"1796\":false,\"1797\":false,\"1798\":false,\"1799\":false,\"1800\":false,\"1801\":false,\"1802\":false,\"1803\":false,\"1804\":false,\"1805\":false,\"1806\":false,\"1807\":false,\"1808\":false,\"1809\":false,\"1810\":false,\"1811\":false,\"1812\":false,\"1813\":false,\"1814\":false,\"1815\":false,\"1816\":false,\"1817\":false,\"1818\":false,\"1819\":false,\"1820\":false,\"1821\":false,\"1822\":false,\"1823\":false,\"1824\":false,\"1825\":false,\"1826\":false,\"1827\":false,\"1828\":false,\"1829\":false,\"1830\":false,\"1831\":false,\"1832\":false,\"1833\":false,\"1834\":false,\"1835\":false,\"1836\":false,\"1837\":false,\"1838\":false,\"1839\":false,\"1840\":false,\"1841\":false,\"1842\":false,\"1843\":false,\"1844\":false,\"1845\":false,\"1846\":false,\"1847\":false,\"1848\":false,\"1849\":false,\"1850\":false,\"1851\":false,\"1852\":false,\"1853\":false,\"1854\":false,\"1855\":false,\"1856\":false,\"1857\":false,\"1858\":false,\"1859\":false,\"1860\":false,\"1861\":false,\"1862\":false,\"1863\":false,\"1864\":false,\"1865\":false,\"1866\":false,\"1867\":false,\"1868\":false,\"1869\":false,\"1870\":false,\"1871\":false,\"1872\":false,\"1873\":false,\"1874\":false,\"1875\":false,\"1876\":false,\"1877\":false,\"1878\":false,\"1879\":false,\"1880\":false,\"1881\":false,\"1882\":false,\"1883\":false,\"1884\":false,\"1885\":false,\"1886\":false,\"1887\":false,\"1888\":false,\"1889\":false,\"1890\":false,\"1891\":false,\"1892\":false,\"1893\":false,\"1894\":false,\"1895\":false,\"1896\":false,\"1897\":false,\"1898\":false,\"1899\":false,\"1900\":false,\"1901\":false,\"1902\":false,\"1903\":false,\"1904\":false,\"1905\":false,\"1906\":false,\"1907\":false,\"1908\":false,\"1909\":false,\"1910\":false,\"1911\":false,\"1912\":false,\"1913\":false,\"1914\":false,\"1915\":false,\"1916\":false,\"1917\":false,\"1918\":false,\"1919\":false,\"1920\":false,\"1921\":false,\"1922\":false,\"1923\":false,\"1924\":false,\"1925\":false,\"1926\":false,\"1927\":false,\"1928\":false,\"1929\":false,\"1930\":false,\"1931\":false,\"1932\":false,\"1933\":false,\"1934\":false,\"1935\":false,\"1936\":false,\"1937\":false,\"1938\":false,\"1939\":false,\"1940\":false,\"1941\":false,\"1942\":false,\"1943\":false,\"1944\":false,\"1945\":false,\"1946\":false,\"1947\":false,\"1948\":false,\"1949\":false,\"1950\":false,\"1951\":false,\"1952\":false,\"1953\":false,\"1954\":false,\"1955\":false,\"1956\":false,\"1957\":false,\"1958\":false,\"1959\":false,\"1960\":false,\"1961\":false,\"1962\":false,\"1963\":false,\"1964\":false,\"1965\":false,\"1966\":false,\"1967\":false,\"1968\":false,\"1969\":false,\"1970\":false,\"1971\":false,\"1972\":false,\"1973\":false,\"1974\":false,\"1975\":false,\"1976\":false,\"1977\":false,\"1978\":false,\"1979\":false,\"1980\":false,\"1981\":false,\"1982\":false,\"1983\":false,\"1984\":false,\"1985\":false,\"1986\":false,\"1987\":false,\"1988\":false,\"1989\":false,\"1990\":false,\"1991\":false,\"1992\":false,\"1993\":false,\"1994\":false,\"1995\":false,\"1996\":false,\"1997\":false,\"1998\":false,\"1999\":false,\"2000\":false,\"2001\":false,\"2002\":false,\"2003\":false,\"2004\":false,\"2005\":false,\"2006\":false,\"2007\":false,\"2008\":false,\"2009\":false,\"2010\":false,\"2011\":false,\"2012\":false,\"2013\":false,\"2014\":false,\"2015\":false,\"2016\":false,\"2017\":false,\"2018\":false,\"2019\":false,\"2020\":false,\"2021\":false,\"2022\":false,\"2023\":false,\"2024\":false,\"2025\":false,\"2026\":false,\"2027\":false,\"2028\":false,\"2029\":false,\"2030\":false,\"2031\":false,\"2032\":false,\"2033\":false,\"2034\":false,\"2035\":false,\"2036\":false,\"2037\":false,\"2038\":false,\"2039\":false,\"2040\":false,\"2041\":false,\"2042\":false,\"2043\":false,\"2044\":false,\"2045\":false,\"2046\":false,\"2047\":false,\"2048\":false,\"2049\":false,\"2050\":false,\"2051\":false,\"2052\":false,\"2053\":false,\"2054\":false,\"2055\":false,\"2056\":false,\"2057\":false,\"2058\":false,\"2059\":false,\"2060\":false,\"2061\":false,\"2062\":false,\"2063\":false,\"2064\":false,\"2065\":false,\"2066\":false,\"2067\":false,\"2068\":false,\"2069\":false,\"2070\":false,\"2071\":false,\"2072\":false,\"2073\":false,\"2074\":false,\"2075\":false,\"2076\":false,\"2077\":false,\"2078\":false,\"2079\":false,\"2080\":false,\"2081\":false,\"2082\":false,\"2083\":false,\"2084\":false,\"2085\":false,\"2086\":false,\"2087\":false,\"2088\":false,\"2089\":false,\"2090\":false,\"2091\":false,\"2092\":false,\"2093\":false,\"2094\":false,\"2095\":false,\"2096\":false,\"2097\":false,\"2098\":false,\"2099\":false,\"2100\":false,\"2101\":false,\"2102\":false,\"2103\":false,\"2104\":false,\"2105\":false,\"2106\":false,\"2107\":false,\"2108\":false,\"2109\":false,\"2110\":false,\"2111\":false,\"2112\":false,\"2113\":false,\"2114\":false,\"2115\":false,\"2116\":false,\"2117\":false,\"2118\":false,\"2119\":false,\"2120\":false,\"2121\":false,\"2122\":false,\"2123\":false,\"2124\":false,\"2125\":false,\"2126\":false,\"2127\":false,\"2128\":false,\"2129\":false,\"2130\":false,\"2131\":false,\"2132\":false,\"2133\":false,\"2134\":false,\"2135\":false,\"2136\":false,\"2137\":false,\"2138\":false,\"2139\":false,\"2140\":false,\"2141\":false,\"2142\":false,\"2143\":false,\"2144\":false,\"2145\":false,\"2146\":false,\"2147\":false,\"2148\":false,\"2149\":false,\"2150\":false,\"2151\":false,\"2152\":false,\"2153\":false,\"2154\":false,\"2155\":false,\"2156\":false,\"2157\":false,\"2158\":false,\"2159\":false,\"2160\":false,\"2161\":false,\"2162\":false,\"2163\":false,\"2164\":false,\"2165\":false,\"2166\":false,\"2167\":false,\"2168\":false,\"2169\":false,\"2170\":false,\"2171\":false,\"2172\":false,\"2173\":false,\"2174\":false,\"2175\":false,\"2176\":false,\"2177\":false,\"2178\":false,\"2179\":false,\"2180\":false,\"2181\":false,\"2182\":false,\"2183\":false,\"2184\":false,\"2185\":false,\"2186\":false,\"2187\":false,\"2188\":false,\"2189\":false,\"2190\":false,\"2191\":false,\"2192\":false,\"2193\":false,\"2194\":false,\"2195\":false,\"2196\":false,\"2197\":false,\"2198\":false,\"2199\":false,\"2200\":false,\"2201\":false,\"2202\":false,\"2203\":false,\"2204\":false,\"2205\":false,\"2206\":false,\"2207\":false,\"2208\":false,\"2209\":false,\"2210\":false,\"2211\":false,\"2212\":false,\"2213\":false,\"2214\":false,\"2215\":false,\"2216\":false,\"2217\":false,\"2218\":false,\"2219\":false,\"2220\":false,\"2221\":false,\"2222\":false,\"2223\":false,\"2224\":false,\"2225\":false,\"2226\":false,\"2227\":false,\"2228\":false,\"2229\":false,\"2230\":false,\"2231\":false,\"2232\":false,\"2233\":false,\"2234\":false,\"2235\":false,\"2236\":false,\"2237\":false,\"2238\":false,\"2239\":false,\"2240\":false,\"2241\":false,\"2242\":false,\"2243\":false,\"2244\":false,\"2245\":false,\"2246\":false,\"2247\":false,\"2248\":false,\"2249\":false,\"2250\":false,\"2251\":false,\"2252\":false,\"2253\":false,\"2254\":false,\"2255\":false,\"2256\":false,\"2257\":false,\"2258\":false,\"2259\":false,\"2260\":false,\"2261\":false,\"2262\":false,\"2263\":false,\"2264\":false,\"2265\":false,\"2266\":false,\"2267\":false,\"2268\":false,\"2269\":false,\"2270\":false,\"2271\":false,\"2272\":false,\"2273\":false,\"2274\":false,\"2275\":false,\"2276\":false,\"2277\":false,\"2278\":false,\"2279\":false,\"2280\":false,\"2281\":false,\"2282\":false,\"2283\":false,\"2284\":false,\"2285\":false,\"2286\":false,\"2287\":false,\"2288\":false,\"2289\":false,\"2290\":false,\"2291\":false,\"2292\":false,\"2293\":false,\"2294\":false,\"2295\":false,\"2296\":false,\"2297\":false,\"2298\":false,\"2299\":false,\"2300\":false,\"2301\":false,\"2302\":false,\"2303\":false,\"2304\":false,\"2305\":false,\"2306\":false,\"2307\":false,\"2308\":false,\"2309\":false,\"2310\":false,\"2311\":false,\"2312\":false,\"2313\":false,\"2314\":false,\"2315\":false,\"2316\":false,\"2317\":false,\"2318\":false,\"2319\":false,\"2320\":false,\"2321\":false,\"2322\":false,\"2323\":false,\"2324\":false,\"2325\":false,\"2326\":false,\"2327\":false,\"2328\":false,\"2329\":false,\"2330\":false,\"2331\":false,\"2332\":false,\"2333\":false,\"2334\":false,\"2335\":false,\"2336\":false,\"2337\":false,\"2338\":false,\"2339\":false,\"2340\":false,\"2341\":false,\"2342\":false,\"2343\":false,\"2344\":false,\"2345\":false,\"2346\":false,\"2347\":false,\"2348\":false,\"2349\":false,\"2350\":false,\"2351\":false,\"2352\":false,\"2353\":false,\"2354\":false,\"2355\":false,\"2356\":false,\"2357\":false,\"2358\":false,\"2359\":false,\"2360\":false,\"2361\":false,\"2362\":false,\"2363\":false,\"2364\":false,\"2365\":false,\"2366\":false,\"2367\":false,\"2368\":false,\"2369\":false,\"2370\":false,\"2371\":false,\"2372\":false,\"2373\":false,\"2374\":false,\"2375\":false,\"2376\":false,\"2377\":false,\"2378\":false,\"2379\":false,\"2380\":false,\"2381\":false,\"2382\":false,\"2383\":false,\"2384\":false,\"2385\":false,\"2386\":false,\"2387\":false,\"2388\":false,\"2389\":false,\"2390\":false,\"2391\":false,\"2392\":false,\"2393\":false,\"2394\":false,\"2395\":false,\"2396\":false,\"2397\":false,\"2398\":false,\"2399\":false,\"2400\":false,\"2401\":false,\"2402\":false,\"2403\":false,\"2404\":false,\"2405\":false,\"2406\":false,\"2407\":false,\"2408\":false,\"2409\":false,\"2410\":false,\"2411\":false,\"2412\":false,\"2413\":false,\"2414\":false,\"2415\":false,\"2416\":false,\"2417\":false,\"2418\":false,\"2419\":false,\"2420\":false,\"2421\":false,\"2422\":false,\"2423\":false,\"2424\":false,\"2425\":false,\"2426\":false,\"2427\":false,\"2428\":false,\"2429\":false,\"2430\":false,\"2431\":false,\"2432\":false,\"2433\":false,\"2434\":false,\"2435\":false,\"2436\":false,\"2437\":false,\"2438\":false,\"2439\":false,\"2440\":false,\"2441\":false,\"2442\":false,\"2443\":false,\"2444\":false,\"2445\":false,\"2446\":false,\"2447\":false,\"2448\":false,\"2449\":false,\"2450\":false,\"2451\":false,\"2452\":false,\"2453\":false,\"2454\":false,\"2455\":false,\"2456\":false,\"2457\":false,\"2458\":false,\"2459\":false,\"2460\":false,\"2461\":false,\"2462\":false,\"2463\":false,\"2464\":false,\"2465\":false,\"2466\":false,\"2467\":false,\"2468\":false,\"2469\":false,\"2470\":false,\"2471\":false,\"2472\":false,\"2473\":false,\"2474\":false,\"2475\":false,\"2476\":false,\"2477\":false,\"2478\":false,\"2479\":false,\"2480\":false,\"2481\":false,\"2482\":false,\"2483\":false,\"2484\":false,\"2485\":false,\"2486\":false,\"2487\":false,\"2488\":false,\"2489\":false,\"2490\":false,\"2491\":false,\"2492\":false,\"2493\":false,\"2494\":false,\"2495\":false,\"2496\":false,\"2497\":false,\"2498\":false,\"2499\":false,\"2500\":false,\"2501\":false,\"2502\":false,\"2503\":false,\"2504\":false,\"2505\":false,\"2506\":false,\"2507\":false,\"2508\":false,\"2509\":false,\"2510\":false,\"2511\":false,\"2512\":false,\"2513\":false,\"2514\":false,\"2515\":false,\"2516\":false,\"2517\":false,\"2518\":false,\"2519\":false,\"2520\":false,\"2521\":false,\"2522\":false,\"2523\":false,\"2524\":false,\"2525\":false,\"2526\":false,\"2527\":false,\"2528\":false,\"2529\":false,\"2530\":false,\"2531\":false,\"2532\":false,\"2533\":false,\"2534\":false,\"2535\":false,\"2536\":false,\"2537\":false,\"2538\":false,\"2539\":false,\"2540\":false,\"2541\":false,\"2542\":false,\"2543\":false,\"2544\":false,\"2545\":false,\"2546\":false,\"2547\":false,\"2548\":false,\"2549\":false,\"2550\":false,\"2551\":false,\"2552\":false,\"2553\":false,\"2554\":false,\"2555\":false,\"2556\":false,\"2557\":false,\"2558\":false,\"2559\":false,\"2560\":false,\"2561\":false,\"2562\":false,\"2563\":false,\"2564\":false,\"2565\":false,\"2566\":false,\"2567\":false,\"2568\":false,\"2569\":false,\"2570\":false,\"2571\":false,\"2572\":false,\"2573\":false,\"2574\":false,\"2575\":false,\"2576\":false,\"2577\":false,\"2578\":false,\"2579\":false,\"2580\":false,\"2581\":false,\"2582\":false,\"2583\":false,\"2584\":false,\"2585\":false,\"2586\":false,\"2587\":false,\"2588\":false,\"2589\":false,\"2590\":false,\"2591\":false,\"2592\":false,\"2593\":false,\"2594\":false,\"2595\":false,\"2596\":false,\"2597\":false,\"2598\":false,\"2599\":false,\"2600\":false,\"2601\":false,\"2602\":false,\"2603\":false,\"2604\":false,\"2605\":false,\"2606\":false,\"2607\":false,\"2608\":false,\"2609\":false,\"2610\":false,\"2611\":false,\"2612\":false,\"2613\":false,\"2614\":false,\"2615\":false,\"2616\":false,\"2617\":false,\"2618\":false,\"2619\":false,\"2620\":false,\"2621\":false,\"2622\":false,\"2623\":false,\"2624\":false,\"2625\":false,\"2626\":false,\"2627\":false,\"2628\":false,\"2629\":false,\"2630\":false,\"2631\":false,\"2632\":false,\"2633\":false,\"2634\":false,\"2635\":false,\"2636\":false,\"2637\":false,\"2638\":false,\"2639\":false,\"2640\":false,\"2641\":false,\"2642\":false,\"2643\":false,\"2644\":false,\"2645\":false,\"2646\":false,\"2647\":false,\"2648\":false,\"2649\":false,\"2650\":false,\"2651\":false,\"2652\":false,\"2653\":false,\"2654\":false,\"2655\":false,\"2656\":false,\"2657\":false,\"2658\":false,\"2659\":false,\"2660\":false,\"2661\":false,\"2662\":false,\"2663\":false,\"2664\":false,\"2665\":false,\"2666\":false,\"2667\":false,\"2668\":false,\"2669\":false,\"2670\":false,\"2671\":false,\"2672\":false,\"2673\":false,\"2674\":false,\"2675\":false,\"2676\":false,\"2677\":false,\"2678\":false,\"2679\":false,\"2680\":false,\"2681\":false,\"2682\":false,\"2683\":false,\"2684\":false,\"2685\":false,\"2686\":false,\"2687\":false,\"2688\":false,\"2689\":false,\"2690\":false,\"2691\":false,\"2692\":false,\"2693\":false,\"2694\":false,\"2695\":false,\"2696\":false,\"2697\":false,\"2698\":false,\"2699\":false,\"2700\":false,\"2701\":false,\"2702\":false,\"2703\":false,\"2704\":false,\"2705\":false,\"2706\":false,\"2707\":false,\"2708\":false,\"2709\":false,\"2710\":false,\"2711\":false,\"2712\":false,\"2713\":false,\"2714\":false,\"2715\":false,\"2716\":false,\"2717\":false,\"2718\":false,\"2719\":false,\"2720\":false,\"2721\":false,\"2722\":false,\"2723\":false,\"2724\":false,\"2725\":false,\"2726\":false,\"2727\":false,\"2728\":false,\"2729\":false,\"2730\":false,\"2731\":false,\"2732\":false,\"2733\":false,\"2734\":false,\"2735\":false,\"2736\":false,\"2737\":false,\"2738\":false,\"2739\":false,\"2740\":false,\"2741\":false,\"2742\":false,\"2743\":false,\"2744\":false,\"2745\":false,\"2746\":false,\"2747\":false,\"2748\":false,\"2749\":false,\"2750\":false,\"2751\":false,\"2752\":false,\"2753\":false,\"2754\":false,\"2755\":false,\"2756\":false,\"2757\":false,\"2758\":false,\"2759\":false,\"2760\":false,\"2761\":false,\"2762\":false,\"2763\":false,\"2764\":false,\"2765\":false,\"2766\":false,\"2767\":false,\"2768\":false,\"2769\":false,\"2770\":false,\"2771\":false,\"2772\":false,\"2773\":false,\"2774\":false,\"2775\":false,\"2776\":false,\"2777\":false,\"2778\":false,\"2779\":false,\"2780\":false,\"2781\":false,\"2782\":false,\"2783\":false,\"2784\":false,\"2785\":false,\"2786\":false,\"2787\":false,\"2788\":false,\"2789\":false,\"2790\":false,\"2791\":false,\"2792\":false,\"2793\":false,\"2794\":false,\"2795\":false,\"2796\":false,\"2797\":false,\"2798\":false,\"2799\":false,\"2800\":false,\"2801\":false,\"2802\":false,\"2803\":false,\"2804\":false,\"2805\":false,\"2806\":false,\"2807\":false,\"2808\":false,\"2809\":false,\"2810\":false,\"2811\":false,\"2812\":false,\"2813\":false,\"2814\":false,\"2815\":false,\"2816\":false,\"2817\":false,\"2818\":false,\"2819\":false,\"2820\":false,\"2821\":false,\"2822\":false,\"2823\":false,\"2824\":false,\"2825\":false,\"2826\":false,\"2827\":false,\"2828\":false,\"2829\":false,\"2830\":false,\"2831\":false,\"2832\":false,\"2833\":false,\"2834\":false,\"2835\":false,\"2836\":false,\"2837\":false,\"2838\":false,\"2839\":false,\"2840\":false,\"2841\":false,\"2842\":false,\"2843\":false,\"2844\":false,\"2845\":false,\"2846\":false,\"2847\":false,\"2848\":false,\"2849\":false,\"2850\":false,\"2851\":false,\"2852\":false,\"2853\":false,\"2854\":false,\"2855\":false,\"2856\":false,\"2857\":false,\"2858\":false,\"2859\":false,\"2860\":false,\"2861\":false,\"2862\":false,\"2863\":false,\"2864\":false,\"2865\":false,\"2866\":false,\"2867\":false,\"2868\":false,\"2869\":false,\"2870\":false,\"2871\":false,\"2872\":false,\"2873\":false,\"2874\":false,\"2875\":false,\"2876\":false,\"2877\":false,\"2878\":false,\"2879\":false,\"2880\":false,\"2881\":false,\"2882\":false,\"2883\":false,\"2884\":false,\"2885\":false,\"2886\":false,\"2887\":false,\"2888\":false,\"2889\":false,\"2890\":false,\"2891\":false,\"2892\":false,\"2893\":false,\"2894\":false,\"2895\":false,\"2896\":false,\"2897\":false,\"2898\":false,\"2899\":false,\"2900\":false,\"2901\":false,\"2902\":false,\"2903\":false,\"2904\":false,\"2905\":false,\"2906\":false,\"2907\":false,\"2908\":false,\"2909\":false,\"2910\":false,\"2911\":false,\"2912\":false,\"2913\":false,\"2914\":false,\"2915\":false,\"2916\":false,\"2917\":false,\"2918\":false,\"2919\":false,\"2920\":false,\"2921\":false,\"2922\":false,\"2923\":false,\"2924\":false,\"2925\":false,\"2926\":false,\"2927\":false,\"2928\":false,\"2929\":false,\"2930\":false,\"2931\":false,\"2932\":false,\"2933\":false,\"2934\":false,\"2935\":false,\"2936\":false,\"2937\":false,\"2938\":false,\"2939\":false,\"2940\":false,\"2941\":false,\"2942\":false,\"2943\":false,\"2944\":false,\"2945\":false,\"2946\":false,\"2947\":false,\"2948\":false,\"2949\":false,\"2950\":false,\"2951\":false,\"2952\":false,\"2953\":false,\"2954\":false,\"2955\":false,\"2956\":false,\"2957\":false,\"2958\":false,\"2959\":false,\"2960\":false,\"2961\":false,\"2962\":false,\"2963\":false,\"2964\":false,\"2965\":false,\"2966\":false,\"2967\":false,\"2968\":false,\"2969\":false,\"2970\":false,\"2971\":false,\"2972\":false,\"2973\":false,\"2974\":false,\"2975\":false,\"2976\":false,\"2977\":false,\"2978\":false,\"2979\":false,\"2980\":false,\"2981\":false,\"2982\":false,\"2983\":false,\"2984\":false,\"2985\":false,\"2986\":false,\"2987\":false,\"2988\":false,\"2989\":false,\"2990\":false,\"2991\":false,\"2992\":false,\"2993\":false,\"2994\":false,\"2995\":false,\"2996\":false,\"2997\":false,\"2998\":false,\"2999\":false,\"3000\":false,\"3001\":false,\"3002\":false,\"3003\":false,\"3004\":false,\"3005\":false,\"3006\":false,\"3007\":false,\"3008\":false,\"3009\":false,\"3010\":false,\"3011\":false,\"3012\":false,\"3013\":false,\"3014\":false,\"3015\":false,\"3016\":false,\"3017\":false,\"3018\":false,\"3019\":false,\"3020\":false,\"3021\":false,\"3022\":false,\"3023\":false,\"3024\":false,\"3025\":false,\"3026\":false,\"3027\":false,\"3028\":false,\"3029\":false,\"3030\":false,\"3031\":false,\"3032\":false,\"3033\":false,\"3034\":false,\"3035\":false,\"3036\":false,\"3037\":false,\"3038\":false,\"3039\":false,\"3040\":false,\"3041\":false,\"3042\":false,\"3043\":false,\"3044\":false,\"3045\":false,\"3046\":false,\"3047\":false,\"3048\":false,\"3049\":false,\"3050\":false,\"3051\":false,\"3052\":false,\"3053\":false,\"3054\":false,\"3055\":false,\"3056\":false,\"3057\":false,\"3058\":false,\"3059\":false,\"3060\":false,\"3061\":false,\"3062\":false,\"3063\":false,\"3064\":false,\"3065\":false,\"3066\":false,\"3067\":false,\"3068\":false,\"3069\":false,\"3070\":false,\"3071\":false,\"3072\":false,\"3073\":false,\"3074\":false,\"3075\":false,\"3076\":false,\"3077\":false,\"3078\":false,\"3079\":false,\"3080\":false,\"3081\":false,\"3082\":false,\"3083\":false,\"3084\":false,\"3085\":false,\"3086\":false,\"3087\":false,\"3088\":false,\"3089\":false,\"3090\":false,\"3091\":false,\"3092\":false,\"3093\":false,\"3094\":false,\"3095\":false,\"3096\":false,\"3097\":false,\"3098\":false,\"3099\":false,\"3100\":false,\"3101\":false,\"3102\":false,\"3103\":false,\"3104\":false,\"3105\":false,\"3106\":false,\"3107\":false,\"3108\":false,\"3109\":false,\"3110\":false,\"3111\":false,\"3112\":false,\"3113\":false,\"3114\":false,\"3115\":false,\"3116\":false,\"3117\":false,\"3118\":false,\"3119\":false,\"3120\":false,\"3121\":false,\"3122\":false,\"3123\":false,\"3124\":false,\"3125\":false,\"3126\":false,\"3127\":false,\"3128\":false,\"3129\":false,\"3130\":false,\"3131\":false,\"3132\":false,\"3133\":false,\"3134\":false,\"3135\":false,\"3136\":false,\"3137\":false,\"3138\":false,\"3139\":false,\"3140\":false,\"3141\":false,\"3142\":false,\"3143\":false,\"3144\":false,\"3145\":false,\"3146\":false,\"3147\":false,\"3148\":false,\"3149\":false,\"3150\":false,\"3151\":false,\"3152\":false,\"3153\":false,\"3154\":false,\"3155\":false,\"3156\":false,\"3157\":false,\"3158\":false,\"3159\":false,\"3160\":false,\"3161\":false,\"3162\":false,\"3163\":false,\"3164\":false,\"3165\":false,\"3166\":false,\"3167\":false,\"3168\":false,\"3169\":false,\"3170\":false,\"3171\":false,\"3172\":false,\"3173\":false,\"3174\":false,\"3175\":false,\"3176\":false,\"3177\":false,\"3178\":false,\"3179\":false,\"3180\":false,\"3181\":false,\"3182\":false,\"3183\":false,\"3184\":false,\"3185\":false,\"3186\":false,\"3187\":false,\"3188\":false,\"3189\":false,\"3190\":false,\"3191\":false,\"3192\":false,\"3193\":false,\"3194\":false,\"3195\":false,\"3196\":false,\"3197\":false,\"3198\":false,\"3199\":false,\"3200\":false,\"3201\":false,\"3202\":false,\"3203\":false,\"3204\":false,\"3205\":false,\"3206\":false,\"3207\":false,\"3208\":false,\"3209\":false,\"3210\":false,\"3211\":false,\"3212\":false,\"3213\":false,\"3214\":false,\"3215\":false,\"3216\":false,\"3217\":false,\"3218\":false,\"3219\":false,\"3220\":false,\"3221\":false,\"3222\":false,\"3223\":false,\"3224\":false,\"3225\":false,\"3226\":false,\"3227\":false,\"3228\":false,\"3229\":false,\"3230\":false,\"3231\":false,\"3232\":false,\"3233\":false,\"3234\":false,\"3235\":false,\"3236\":false,\"3237\":false,\"3238\":false,\"3239\":false,\"3240\":false,\"3241\":false,\"3242\":false,\"3243\":false,\"3244\":false,\"3245\":false,\"3246\":false,\"3247\":false,\"3248\":false,\"3249\":false,\"3250\":false,\"3251\":false,\"3252\":false,\"3253\":false,\"3254\":false,\"3255\":false,\"3256\":false,\"3257\":false,\"3258\":false,\"3259\":false,\"3260\":false,\"3261\":false,\"3262\":false,\"3263\":false,\"3264\":false,\"3265\":false,\"3266\":false,\"3267\":false,\"3268\":false,\"3269\":false,\"3270\":false,\"3271\":false,\"3272\":false,\"3273\":false,\"3274\":false,\"3275\":false,\"3276\":false,\"3277\":false,\"3278\":false,\"3279\":false,\"3280\":false,\"3281\":false,\"3282\":false,\"3283\":false,\"3284\":false,\"3285\":false,\"3286\":false,\"3287\":false,\"3288\":false,\"3289\":false,\"3290\":false,\"3291\":false,\"3292\":false,\"3293\":false,\"3294\":false,\"3295\":false,\"3296\":false,\"3297\":false,\"3298\":false,\"3299\":false,\"3300\":false,\"3301\":false,\"3302\":false,\"3303\":false,\"3304\":false,\"3305\":false,\"3306\":false,\"3307\":false,\"3308\":false,\"3309\":false,\"3310\":false,\"3311\":false,\"3312\":false,\"3313\":false,\"3314\":false,\"3315\":false,\"3316\":false,\"3317\":false,\"3318\":false,\"3319\":false,\"3320\":false,\"3321\":false,\"3322\":false,\"3323\":false,\"3324\":false,\"3325\":false,\"3326\":false,\"3327\":false,\"3328\":false,\"3329\":false,\"3330\":false,\"3331\":false,\"3332\":false,\"3333\":false,\"3334\":false,\"3335\":false,\"3336\":false,\"3337\":false,\"3338\":false,\"3339\":false,\"3340\":false,\"3341\":false,\"3342\":false,\"3343\":false,\"3344\":false,\"3345\":false,\"3346\":false,\"3347\":false,\"3348\":false,\"3349\":false,\"3350\":false,\"3351\":false,\"3352\":false,\"3353\":false,\"3354\":false,\"3355\":false,\"3356\":false,\"3357\":false,\"3358\":false,\"3359\":false,\"3360\":false,\"3361\":false,\"3362\":false,\"3363\":false,\"3364\":false,\"3365\":false,\"3366\":false,\"3367\":false,\"3368\":false,\"3369\":false,\"3370\":false,\"3371\":false,\"3372\":false,\"3373\":false,\"3374\":false,\"3375\":false,\"3376\":false,\"3377\":false,\"3378\":false,\"3379\":false,\"3380\":false,\"3381\":false,\"3382\":false,\"3383\":false,\"3384\":false,\"3385\":false,\"3386\":false,\"3387\":false,\"3388\":false,\"3389\":false,\"3390\":false,\"3391\":false,\"3392\":false,\"3393\":false,\"3394\":false,\"3395\":false,\"3396\":false,\"3397\":false,\"3398\":false,\"3399\":false,\"3400\":false,\"3401\":false,\"3402\":false,\"3403\":false,\"3404\":false,\"3405\":false,\"3406\":false,\"3407\":false,\"3408\":false,\"3409\":false,\"3410\":false,\"3411\":false,\"3412\":false,\"3413\":false,\"3414\":false,\"3415\":false,\"3416\":false,\"3417\":false,\"3418\":false,\"3419\":false,\"3420\":false,\"3421\":false,\"3422\":false,\"3423\":false,\"3424\":false,\"3425\":false,\"3426\":false,\"3427\":false,\"3428\":false,\"3429\":false,\"3430\":false,\"3431\":false,\"3432\":false,\"3433\":false,\"3434\":false,\"3435\":false,\"3436\":false,\"3437\":false,\"3438\":false,\"3439\":false,\"3440\":false,\"3441\":false,\"3442\":false,\"3443\":false,\"3444\":false,\"3445\":false,\"3446\":false,\"3447\":false,\"3448\":false,\"3449\":false,\"3450\":false,\"3451\":false,\"3452\":false,\"3453\":false,\"3454\":false,\"3455\":false,\"3456\":false,\"3457\":false,\"3458\":false,\"3459\":false,\"3460\":false,\"3461\":false,\"3462\":false,\"3463\":false,\"3464\":false,\"3465\":false,\"3466\":false,\"3467\":false,\"3468\":false,\"3469\":false,\"3470\":false,\"3471\":false,\"3472\":false,\"3473\":false,\"3474\":false,\"3475\":false,\"3476\":false,\"3477\":false,\"3478\":false,\"3479\":false,\"3480\":false,\"3481\":false,\"3482\":false,\"3483\":false,\"3484\":false,\"3485\":false,\"3486\":false,\"3487\":false,\"3488\":false,\"3489\":false,\"3490\":false,\"3491\":false,\"3492\":false,\"3493\":false,\"3494\":false,\"3495\":false,\"3496\":false,\"3497\":false,\"3498\":false,\"3499\":false,\"3500\":false,\"3501\":false,\"3502\":false,\"3503\":false,\"3504\":false,\"3505\":false,\"3506\":false,\"3507\":false,\"3508\":false,\"3509\":false,\"3510\":false,\"3511\":false,\"3512\":false,\"3513\":false,\"3514\":false,\"3515\":false,\"3516\":false,\"3517\":false,\"3518\":false,\"3519\":false,\"3520\":false,\"3521\":false,\"3522\":false,\"3523\":false,\"3524\":false,\"3525\":false,\"3526\":false,\"3527\":false,\"3528\":false,\"3529\":false,\"3530\":false,\"3531\":false,\"3532\":false,\"3533\":false,\"3534\":false,\"3535\":false,\"3536\":false,\"3537\":false,\"3538\":false,\"3539\":false,\"3540\":false,\"3541\":false,\"3542\":false,\"3543\":false,\"3544\":false,\"3545\":false,\"3546\":false,\"3547\":false,\"3548\":false,\"3549\":false,\"3550\":false,\"3551\":false,\"3552\":false,\"3553\":false,\"3554\":false,\"3555\":false,\"3556\":false,\"3557\":false,\"3558\":false,\"3559\":false,\"3560\":false,\"3561\":false,\"3562\":false,\"3563\":false,\"3564\":false,\"3565\":false,\"3566\":false,\"3567\":false,\"3568\":false,\"3569\":false,\"3570\":false,\"3571\":false,\"3572\":false,\"3573\":false,\"3574\":false,\"3575\":false,\"3576\":false,\"3577\":false,\"3578\":false,\"3579\":false,\"3580\":false,\"3581\":false,\"3582\":false,\"3583\":false,\"3584\":false,\"3585\":false,\"3586\":false,\"3587\":false,\"3588\":false,\"3589\":false,\"3590\":false,\"3591\":false,\"3592\":false,\"3593\":false,\"3594\":false,\"3595\":false,\"3596\":false,\"3597\":false,\"3598\":false,\"3599\":false,\"3600\":false,\"3601\":false,\"3602\":false,\"3603\":false,\"3604\":false,\"3605\":false,\"3606\":false,\"3607\":false,\"3608\":false,\"3609\":false,\"3610\":false,\"3611\":false,\"3612\":false,\"3613\":false,\"3614\":false,\"3615\":false,\"3616\":false,\"3617\":false,\"3618\":false,\"3619\":false,\"3620\":false,\"3621\":false,\"3622\":false,\"3623\":false,\"3624\":false,\"3625\":false,\"3626\":false,\"3627\":false,\"3628\":false,\"3629\":false,\"3630\":false,\"3631\":false,\"3632\":false,\"3633\":false,\"3634\":false,\"3635\":false,\"3636\":false,\"3637\":false,\"3638\":false,\"3639\":false,\"3640\":false,\"3641\":false,\"3642\":false,\"3643\":false,\"3644\":false,\"3645\":false,\"3646\":false,\"3647\":false,\"3648\":false,\"3649\":false,\"3650\":false,\"3651\":false,\"3652\":false,\"3653\":false,\"3654\":false,\"3655\":false,\"3656\":false,\"3657\":false,\"3658\":false,\"3659\":false,\"3660\":false,\"3661\":false,\"3662\":false,\"3663\":false,\"3664\":false,\"3665\":false,\"3666\":false,\"3667\":false,\"3668\":false,\"3669\":false,\"3670\":false,\"3671\":false,\"3672\":false,\"3673\":false,\"3674\":false,\"3675\":false,\"3676\":false,\"3677\":false,\"3678\":false,\"3679\":false,\"3680\":false,\"3681\":false,\"3682\":false,\"3683\":false,\"3684\":false,\"3685\":false,\"3686\":false,\"3687\":false,\"3688\":false,\"3689\":false,\"3690\":false,\"3691\":false,\"3692\":false,\"3693\":false,\"3694\":false,\"3695\":false,\"3696\":false,\"3697\":false,\"3698\":false,\"3699\":false,\"3700\":false,\"3701\":false,\"3702\":false,\"3703\":false,\"3704\":false,\"3705\":false,\"3706\":false,\"3707\":false,\"3708\":false,\"3709\":false,\"3710\":false,\"3711\":false,\"3712\":false,\"3713\":false,\"3714\":false,\"3715\":false,\"3716\":false,\"3717\":false,\"3718\":false,\"3719\":false,\"3720\":false,\"3721\":false,\"3722\":false,\"3723\":false,\"3724\":false,\"3725\":false,\"3726\":false,\"3727\":false,\"3728\":false,\"3729\":false,\"3730\":false,\"3731\":false,\"3732\":false,\"3733\":false,\"3734\":false,\"3735\":false,\"3736\":false,\"3737\":false,\"3738\":false,\"3739\":false,\"3740\":false,\"3741\":false,\"3742\":false,\"3743\":false,\"3744\":false,\"3745\":false,\"3746\":false,\"3747\":false,\"3748\":false,\"3749\":false,\"3750\":false,\"3751\":false,\"3752\":false,\"3753\":false,\"3754\":false,\"3755\":false,\"3756\":false,\"3757\":false,\"3758\":false,\"3759\":false,\"3760\":false,\"3761\":false,\"3762\":false,\"3763\":false,\"3764\":false,\"3765\":false,\"3766\":false,\"3767\":false,\"3768\":false,\"3769\":false,\"3770\":false,\"3771\":false,\"3772\":false,\"3773\":false,\"3774\":false,\"3775\":false,\"3776\":false,\"3777\":false,\"3778\":false,\"3779\":false,\"3780\":false,\"3781\":false,\"3782\":false,\"3783\":false,\"3784\":false,\"3785\":false,\"3786\":false,\"3787\":false,\"3788\":false,\"3789\":false,\"3790\":false,\"3791\":false,\"3792\":false,\"3793\":false,\"3794\":false,\"3795\":false,\"3796\":false,\"3797\":false,\"3798\":false,\"3799\":false,\"3800\":false,\"3801\":false,\"3802\":false,\"3803\":false,\"3804\":false,\"3805\":false,\"3806\":false,\"3807\":false,\"3808\":false,\"3809\":false,\"3810\":false,\"3811\":false,\"3812\":false,\"3813\":false,\"3814\":false,\"3815\":false,\"3816\":false,\"3817\":false,\"3818\":false,\"3819\":false,\"3820\":false,\"3821\":false,\"3822\":false,\"3823\":false,\"3824\":false,\"3825\":false,\"3826\":false,\"3827\":false,\"3828\":false,\"3829\":false,\"3830\":false,\"3831\":false,\"3832\":false,\"3833\":false,\"3834\":false,\"3835\":false,\"3836\":false,\"3837\":false,\"3838\":false,\"3839\":false,\"3840\":false,\"3841\":false,\"3842\":false,\"3843\":false,\"3844\":false,\"3845\":false,\"3846\":false,\"3847\":false,\"3848\":false,\"3849\":false,\"3850\":false,\"3851\":false,\"3852\":false,\"3853\":false,\"3854\":false,\"3855\":false,\"3856\":false,\"3857\":false,\"3858\":false,\"3859\":false,\"3860\":false,\"3861\":false,\"3862\":false,\"3863\":false,\"3864\":false,\"3865\":false,\"3866\":false,\"3867\":false,\"3868\":false,\"3869\":false,\"3870\":false,\"3871\":false,\"3872\":false,\"3873\":false,\"3874\":false,\"3875\":false,\"3876\":false,\"3877\":false,\"3878\":false,\"3879\":false,\"3880\":false,\"3881\":false,\"3882\":false,\"3883\":false,\"3884\":false,\"3885\":false,\"3886\":false,\"3887\":false,\"3888\":false,\"3889\":false,\"3890\":false,\"3891\":false,\"3892\":false,\"3893\":false,\"3894\":false,\"3895\":false,\"3896\":false,\"3897\":false,\"3898\":false,\"3899\":false,\"3900\":false,\"3901\":false,\"3902\":false,\"3903\":false,\"3904\":false,\"3905\":false,\"3906\":false,\"3907\":false,\"3908\":false,\"3909\":false,\"3910\":false,\"3911\":false,\"3912\":false,\"3913\":false,\"3914\":false,\"3915\":false,\"3916\":false,\"3917\":false,\"3918\":false,\"3919\":false,\"3920\":false,\"3921\":false,\"3922\":false,\"3923\":false,\"3924\":false,\"3925\":false,\"3926\":false,\"3927\":false,\"3928\":false,\"3929\":false,\"3930\":false,\"3931\":false,\"3932\":false,\"3933\":false,\"3934\":false,\"3935\":false,\"3936\":false,\"3937\":false,\"3938\":false,\"3939\":false,\"3940\":false,\"3941\":false,\"3942\":false,\"3943\":false,\"3944\":false,\"3945\":false,\"3946\":false,\"3947\":false,\"3948\":false,\"3949\":false,\"3950\":false,\"3951\":false,\"3952\":false,\"3953\":false,\"3954\":false,\"3955\":false,\"3956\":false,\"3957\":false,\"3958\":false,\"3959\":false,\"3960\":false,\"3961\":false,\"3962\":false,\"3963\":false,\"3964\":false,\"3965\":false,\"3966\":false,\"3967\":false,\"3968\":false,\"3969\":false,\"3970\":false,\"3971\":false,\"3972\":false,\"3973\":false,\"3974\":false,\"3975\":false,\"3976\":false,\"3977\":false,\"3978\":false,\"3979\":false,\"3980\":false,\"3981\":false,\"3982\":false,\"3983\":false,\"3984\":false,\"3985\":false,\"3986\":false,\"3987\":false,\"3988\":false,\"3989\":false,\"3990\":false,\"3991\":false,\"3992\":false,\"3993\":false,\"3994\":false,\"3995\":false,\"3996\":false,\"3997\":false,\"3998\":false,\"3999\":false,\"4000\":false,\"4001\":false,\"4002\":false,\"4003\":false,\"4004\":false,\"4005\":false,\"4006\":false,\"4007\":false,\"4008\":false,\"4009\":false,\"4010\":false,\"4011\":false,\"4012\":false,\"4013\":false,\"4014\":false,\"4015\":false,\"4016\":false,\"4017\":false,\"4018\":false,\"4019\":false,\"4020\":false,\"4021\":false,\"4022\":false,\"4023\":false,\"4024\":false,\"4025\":false,\"4026\":false,\"4027\":false,\"4028\":false,\"4029\":false,\"4030\":false,\"4031\":false,\"4032\":false,\"4033\":false,\"4034\":false,\"4035\":false,\"4036\":false,\"4037\":false,\"4038\":false,\"4039\":false,\"4040\":false,\"4041\":false,\"4042\":false,\"4043\":false,\"4044\":false,\"4045\":false,\"4046\":false,\"4047\":false,\"4048\":false,\"4049\":false,\"4050\":false,\"4051\":false,\"4052\":false,\"4053\":false,\"4054\":false,\"4055\":false,\"4056\":false,\"4057\":false,\"4058\":false,\"4059\":false,\"4060\":false,\"4061\":false,\"4062\":false,\"4063\":false,\"4064\":false,\"4065\":false,\"4066\":false,\"4067\":false,\"4068\":false,\"4069\":false,\"4070\":false,\"4071\":false,\"4072\":false,\"4073\":false,\"4074\":false,\"4075\":false,\"4076\":false,\"4077\":false,\"4078\":false,\"4079\":false,\"4080\":false,\"4081\":false,\"4082\":false,\"4083\":false,\"4084\":false,\"4085\":false,\"4086\":false,\"4087\":false,\"4088\":false,\"4089\":false,\"4090\":false,\"4091\":false,\"4092\":false,\"4093\":false,\"4094\":false,\"4095\":false,\"4096\":false,\"4097\":false,\"4098\":false,\"4099\":false,\"4100\":false,\"4101\":false,\"4102\":false,\"4103\":false,\"4104\":false,\"4105\":false,\"4106\":false,\"4107\":false,\"4108\":false,\"4109\":false,\"4110\":false,\"4111\":false,\"4112\":false,\"4113\":false,\"4114\":false,\"4115\":false,\"4116\":false,\"4117\":false,\"4118\":false,\"4119\":false,\"4120\":false,\"4121\":false,\"4122\":false,\"4123\":false,\"4124\":false,\"4125\":false,\"4126\":false,\"4127\":false,\"4128\":false,\"4129\":false,\"4130\":false,\"4131\":false,\"4132\":false,\"4133\":false,\"4134\":false,\"4135\":false,\"4136\":false,\"4137\":false,\"4138\":false,\"4139\":false,\"4140\":false,\"4141\":false,\"4142\":false,\"4143\":false,\"4144\":false,\"4145\":false,\"4146\":false,\"4147\":false,\"4148\":false,\"4149\":false,\"4150\":false,\"4151\":false,\"4152\":false,\"4153\":false,\"4154\":false,\"4155\":false,\"4156\":false,\"4157\":false,\"4158\":false,\"4159\":false,\"4160\":false,\"4161\":false,\"4162\":false,\"4163\":false,\"4164\":false,\"4165\":false,\"4166\":false,\"4167\":false,\"4168\":false,\"4169\":false,\"4170\":false,\"4171\":false,\"4172\":false,\"4173\":false,\"4174\":false,\"4175\":false,\"4176\":false,\"4177\":false,\"4178\":false,\"4179\":false,\"4180\":false,\"4181\":false,\"4182\":false,\"4183\":false,\"4184\":false,\"4185\":false,\"4186\":false,\"4187\":false,\"4188\":false,\"4189\":false,\"4190\":false,\"4191\":false,\"4192\":false,\"4193\":false,\"4194\":false,\"4195\":false,\"4196\":false,\"4197\":false,\"4198\":false,\"4199\":false,\"4200\":false,\"4201\":false,\"4202\":false,\"4203\":false,\"4204\":false,\"4205\":false,\"4206\":false,\"4207\":false,\"4208\":false,\"4209\":false,\"4210\":false,\"4211\":false,\"4212\":false,\"4213\":false,\"4214\":false,\"4215\":false,\"4216\":false,\"4217\":false,\"4218\":false,\"4219\":false,\"4220\":false,\"4221\":false,\"4222\":false,\"4223\":false,\"4224\":false,\"4225\":false,\"4226\":false,\"4227\":false,\"4228\":false,\"4229\":false,\"4230\":false,\"4231\":false,\"4232\":false,\"4233\":false,\"4234\":false,\"4235\":false,\"4236\":false,\"4237\":false,\"4238\":false,\"4239\":false,\"4240\":false,\"4241\":false,\"4242\":false,\"4243\":false,\"4244\":false,\"4245\":false,\"4246\":false,\"4247\":false,\"4248\":false,\"4249\":false,\"4250\":false,\"4251\":false,\"4252\":false,\"4253\":false,\"4254\":false,\"4255\":false,\"4256\":false,\"4257\":false,\"4258\":false,\"4259\":false,\"4260\":false,\"4261\":false,\"4262\":false,\"4263\":false,\"4264\":false,\"4265\":false,\"4266\":false,\"4267\":false,\"4268\":false,\"4269\":false,\"4270\":false,\"4271\":false,\"4272\":false,\"4273\":false,\"4274\":false,\"4275\":false,\"4276\":false,\"4277\":false,\"4278\":false,\"4279\":false,\"4280\":false,\"4281\":false,\"4282\":false,\"4283\":false,\"4284\":false,\"4285\":false,\"4286\":false,\"4287\":false,\"4288\":false,\"4289\":false,\"4290\":false,\"4291\":false,\"4292\":false,\"4293\":false,\"4294\":false,\"4295\":false,\"4296\":false,\"4297\":false,\"4298\":false,\"4299\":false,\"4300\":false,\"4301\":false,\"4302\":false,\"4303\":false,\"4304\":false,\"4305\":false,\"4306\":false,\"4307\":false,\"4308\":false,\"4309\":false,\"4310\":false,\"4311\":false,\"4312\":false,\"4313\":false,\"4314\":false,\"4315\":false,\"4316\":false,\"4317\":false,\"4318\":false,\"4319\":false,\"4320\":false,\"4321\":false,\"4322\":false,\"4323\":false,\"4324\":false,\"4325\":false,\"4326\":false,\"4327\":false,\"4328\":false,\"4329\":false,\"4330\":false,\"4331\":false,\"4332\":false,\"4333\":false,\"4334\":false,\"4335\":false,\"4336\":false,\"4337\":false,\"4338\":false,\"4339\":false,\"4340\":false,\"4341\":false,\"4342\":false,\"4343\":false,\"4344\":false,\"4345\":false,\"4346\":false,\"4347\":false,\"4348\":false,\"4349\":false,\"4350\":false,\"4351\":false,\"4352\":false,\"4353\":false,\"4354\":false,\"4355\":false,\"4356\":false,\"4357\":false,\"4358\":false,\"4359\":false,\"4360\":false,\"4361\":false,\"4362\":false,\"4363\":false,\"4364\":false,\"4365\":false,\"4366\":false,\"4367\":false,\"4368\":false,\"4369\":false,\"4370\":false,\"4371\":false,\"4372\":false,\"4373\":false,\"4374\":false,\"4375\":false,\"4376\":false,\"4377\":false,\"4378\":false,\"4379\":false,\"4380\":false,\"4381\":false,\"4382\":false,\"4383\":false,\"4384\":false,\"4385\":false,\"4386\":false,\"4387\":false,\"4388\":false,\"4389\":false,\"4390\":false,\"4391\":false,\"4392\":false,\"4393\":false,\"4394\":false,\"4395\":false,\"4396\":false,\"4397\":false,\"4398\":false,\"4399\":false,\"4400\":false,\"4401\":false,\"4402\":false,\"4403\":false,\"4404\":false,\"4405\":false,\"4406\":false,\"4407\":false,\"4408\":false,\"4409\":false,\"4410\":false,\"4411\":false,\"4412\":false,\"4413\":false,\"4414\":false,\"4415\":false,\"4416\":false,\"4417\":false,\"4418\":false,\"4419\":false,\"4420\":false,\"4421\":false,\"4422\":false,\"4423\":false,\"4424\":false,\"4425\":false,\"4426\":false,\"4427\":false,\"4428\":false,\"4429\":false,\"4430\":false,\"4431\":false,\"4432\":false,\"4433\":false,\"4434\":false,\"4435\":false,\"4436\":false,\"4437\":false,\"4438\":false,\"4439\":false,\"4440\":false,\"4441\":false,\"4442\":false,\"4443\":false,\"4444\":false,\"4445\":false,\"4446\":false,\"4447\":false,\"4448\":false,\"4449\":false,\"4450\":false,\"4451\":false,\"4452\":false,\"4453\":false,\"4454\":false,\"4455\":false,\"4456\":false,\"4457\":false,\"4458\":false,\"4459\":false,\"4460\":false,\"4461\":false,\"4462\":false,\"4463\":false,\"4464\":false,\"4465\":false,\"4466\":false,\"4467\":false,\"4468\":false,\"4469\":false,\"4470\":false,\"4471\":false,\"4472\":false,\"4473\":false,\"4474\":false,\"4475\":false,\"4476\":false,\"4477\":false,\"4478\":false,\"4479\":false,\"4480\":false,\"4481\":false,\"4482\":false,\"4483\":false,\"4484\":false,\"4485\":false,\"4486\":false,\"4487\":false,\"4488\":false,\"4489\":false,\"4490\":false,\"4491\":false,\"4492\":false,\"4493\":false,\"4494\":false,\"4495\":false,\"4496\":false,\"4497\":false,\"4498\":false,\"4499\":false,\"4500\":false,\"4501\":false,\"4502\":false,\"4503\":false,\"4504\":false,\"4505\":false,\"4506\":false,\"4507\":false,\"4508\":false,\"4509\":false,\"4510\":false,\"4511\":false,\"4512\":false,\"4513\":false,\"4514\":false,\"4515\":false,\"4516\":false,\"4517\":false,\"4518\":false,\"4519\":false,\"4520\":false,\"4521\":false,\"4522\":false,\"4523\":false,\"4524\":false,\"4525\":false,\"4526\":false,\"4527\":false,\"4528\":false,\"4529\":false,\"4530\":false,\"4531\":false,\"4532\":false,\"4533\":false,\"4534\":false,\"4535\":false,\"4536\":false,\"4537\":false,\"4538\":false,\"4539\":false,\"4540\":false,\"4541\":false,\"4542\":false,\"4543\":false,\"4544\":false,\"4545\":false,\"4546\":false,\"4547\":false,\"4548\":false,\"4549\":false,\"4550\":false,\"4551\":false,\"4552\":false,\"4553\":false,\"4554\":false,\"4555\":false,\"4556\":false,\"4557\":false,\"4558\":false,\"4559\":false,\"4560\":false,\"4561\":false,\"4562\":false,\"4563\":false,\"4564\":false,\"4565\":false,\"4566\":false,\"4567\":false,\"4568\":false,\"4569\":false,\"4570\":false,\"4571\":false,\"4572\":false,\"4573\":false,\"4574\":false,\"4575\":false,\"4576\":false,\"4577\":false,\"4578\":false,\"4579\":false,\"4580\":false,\"4581\":false,\"4582\":false,\"4583\":false,\"4584\":false,\"4585\":false,\"4586\":false,\"4587\":false,\"4588\":false,\"4589\":false,\"4590\":false,\"4591\":false,\"4592\":false,\"4593\":false,\"4594\":false,\"4595\":false,\"4596\":false,\"4597\":false,\"4598\":false,\"4599\":false,\"4600\":false,\"4601\":false,\"4602\":false,\"4603\":false,\"4604\":false,\"4605\":false,\"4606\":false,\"4607\":false,\"4608\":false,\"4609\":false,\"4610\":false,\"4611\":false,\"4612\":false,\"4613\":false,\"4614\":false,\"4615\":false,\"4616\":false,\"4617\":false,\"4618\":false,\"4619\":false,\"4620\":false,\"4621\":false,\"4622\":false,\"4623\":false,\"4624\":false,\"4625\":false,\"4626\":false,\"4627\":false,\"4628\":false,\"4629\":false,\"4630\":false,\"4631\":false,\"4632\":false,\"4633\":false,\"4634\":false,\"4635\":false,\"4636\":false,\"4637\":false,\"4638\":false,\"4639\":false,\"4640\":false,\"4641\":false,\"4642\":false,\"4643\":false,\"4644\":false,\"4645\":false,\"4646\":false,\"4647\":false,\"4648\":false,\"4649\":false,\"4650\":false,\"4651\":false,\"4652\":false,\"4653\":false,\"4654\":false,\"4655\":false,\"4656\":false,\"4657\":false,\"4658\":false,\"4659\":false,\"4660\":false,\"4661\":false,\"4662\":false,\"4663\":false,\"4664\":false,\"4665\":false,\"4666\":false,\"4667\":false,\"4668\":false,\"4669\":false,\"4670\":false,\"4671\":false,\"4672\":false,\"4673\":false,\"4674\":false,\"4675\":false,\"4676\":false,\"4677\":false,\"4678\":false,\"4679\":false,\"4680\":false,\"4681\":false,\"4682\":false,\"4683\":false,\"4684\":false,\"4685\":false,\"4686\":false,\"4687\":false,\"4688\":false,\"4689\":false,\"4690\":false,\"4691\":false,\"4692\":false,\"4693\":false,\"4694\":false,\"4695\":false,\"4696\":false,\"4697\":false,\"4698\":false,\"4699\":false,\"4700\":false,\"4701\":false,\"4702\":false,\"4703\":false,\"4704\":false,\"4705\":false,\"4706\":false,\"4707\":false,\"4708\":false,\"4709\":false,\"4710\":false,\"4711\":false,\"4712\":false,\"4713\":false,\"4714\":false,\"4715\":false,\"4716\":false,\"4717\":false,\"4718\":false,\"4719\":false,\"4720\":false,\"4721\":false,\"4722\":false,\"4723\":false,\"4724\":false,\"4725\":false,\"4726\":false,\"4727\":false,\"4728\":false,\"4729\":false,\"4730\":false,\"4731\":false,\"4732\":false,\"4733\":false,\"4734\":false,\"4735\":false,\"4736\":false,\"4737\":false,\"4738\":false,\"4739\":false,\"4740\":false,\"4741\":false,\"4742\":false,\"4743\":false,\"4744\":false,\"4745\":false,\"4746\":false,\"4747\":false,\"4748\":false,\"4749\":false,\"4750\":false,\"4751\":false,\"4752\":false,\"4753\":false,\"4754\":false,\"4755\":false,\"4756\":false,\"4757\":false,\"4758\":false,\"4759\":false,\"4760\":false,\"4761\":false,\"4762\":false,\"4763\":false,\"4764\":false,\"4765\":false,\"4766\":false,\"4767\":false,\"4768\":false,\"4769\":false,\"4770\":false,\"4771\":false,\"4772\":false,\"4773\":false,\"4774\":false,\"4775\":false,\"4776\":false,\"4777\":false,\"4778\":false,\"4779\":false,\"4780\":false,\"4781\":false,\"4782\":false,\"4783\":false,\"4784\":false,\"4785\":false,\"4786\":false,\"4787\":false,\"4788\":false,\"4789\":false,\"4790\":false,\"4791\":false,\"4792\":false,\"4793\":false,\"4794\":false,\"4795\":false,\"4796\":false,\"4797\":false,\"4798\":false,\"4799\":false,\"4800\":false,\"4801\":false,\"4802\":false,\"4803\":false,\"4804\":false,\"4805\":false,\"4806\":false,\"4807\":false,\"4808\":false,\"4809\":false,\"4810\":false,\"4811\":false,\"4812\":false,\"4813\":false,\"4814\":false,\"4815\":false,\"4816\":false,\"4817\":false,\"4818\":false,\"4819\":false,\"4820\":false,\"4821\":false,\"4822\":false,\"4823\":false,\"4824\":false,\"4825\":false,\"4826\":false,\"4827\":false,\"4828\":false,\"4829\":false,\"4830\":false,\"4831\":false,\"4832\":false,\"4833\":false,\"4834\":false,\"4835\":false,\"4836\":false,\"4837\":false,\"4838\":false,\"4839\":false,\"4840\":false,\"4841\":false,\"4842\":false,\"4843\":false,\"4844\":false,\"4845\":false,\"4846\":false,\"4847\":false,\"4848\":false,\"4849\":false,\"4850\":false,\"4851\":false,\"4852\":false,\"4853\":false,\"4854\":false,\"4855\":false,\"4856\":false,\"4857\":false,\"4858\":false,\"4859\":false,\"4860\":false,\"4861\":false,\"4862\":false,\"4863\":false,\"4864\":false,\"4865\":false,\"4866\":false,\"4867\":false,\"4868\":false,\"4869\":false,\"4870\":false,\"4871\":false,\"4872\":false,\"4873\":false,\"4874\":false,\"4875\":false,\"4876\":false,\"4877\":false,\"4878\":false,\"4879\":false,\"4880\":false,\"4881\":false,\"4882\":false,\"4883\":false,\"4884\":false,\"4885\":false,\"4886\":false,\"4887\":false,\"4888\":false,\"4889\":false,\"4890\":false,\"4891\":false,\"4892\":false,\"4893\":false,\"4894\":false,\"4895\":false,\"4896\":false,\"4897\":false,\"4898\":false,\"4899\":false,\"4900\":false,\"4901\":false,\"4902\":false,\"4903\":false,\"4904\":false,\"4905\":false,\"4906\":false,\"4907\":false,\"4908\":false,\"4909\":false,\"4910\":false,\"4911\":false,\"4912\":false,\"4913\":false,\"4914\":false,\"4915\":false,\"4916\":false,\"4917\":false,\"4918\":false,\"4919\":false,\"4920\":false,\"4921\":false,\"4922\":false,\"4923\":false,\"4924\":false,\"4925\":false,\"4926\":false,\"4927\":false,\"4928\":false,\"4929\":false,\"4930\":false,\"4931\":false,\"4932\":false,\"4933\":false,\"4934\":false,\"4935\":false,\"4936\":false,\"4937\":false,\"4938\":false,\"4939\":false,\"4940\":false,\"4941\":false,\"4942\":false,\"4943\":false,\"4944\":false,\"4945\":false,\"4946\":false,\"4947\":false,\"4948\":false,\"4949\":false,\"4950\":false,\"4951\":false,\"4952\":false,\"4953\":false,\"4954\":false,\"4955\":false,\"4956\":false,\"4957\":false,\"4958\":false,\"4959\":false,\"4960\":false,\"4961\":false,\"4962\":false,\"4963\":false,\"4964\":false,\"4965\":false,\"4966\":false,\"4967\":false,\"4968\":false,\"4969\":false,\"4970\":false,\"4971\":false,\"4972\":false,\"4973\":false,\"4974\":false,\"4975\":false,\"4976\":false,\"4977\":false,\"4978\":false,\"4979\":false,\"4980\":false,\"4981\":false,\"4982\":false,\"4983\":false,\"4984\":false,\"4985\":false,\"4986\":false,\"4987\":false,\"4988\":false,\"4989\":false,\"4990\":false,\"4991\":false,\"4992\":false,\"4993\":false,\"4994\":false,\"4995\":false,\"4996\":false,\"4997\":false,\"4998\":false,\"4999\":false},\"lang\":{\"0\":\"en\",\"1\":\"en\",\"2\":\"en\",\"3\":\"en\",\"4\":\"en\",\"5\":\"en\",\"6\":\"en\",\"7\":\"en\",\"8\":\"en\",\"9\":\"en\",\"10\":\"en\",\"11\":\"en\",\"12\":\"en\",\"13\":\"en\",\"14\":\"en\",\"15\":\"en\",\"16\":\"en\",\"17\":\"en\",\"18\":\"en\",\"19\":\"en\",\"20\":\"en\",\"21\":\"en\",\"22\":\"en\",\"23\":\"en\",\"24\":\"en\",\"25\":\"en\",\"26\":\"en\",\"27\":\"en\",\"28\":\"en\",\"29\":\"en\",\"30\":\"en\",\"31\":\"en\",\"32\":\"en\",\"33\":\"en\",\"34\":\"en\",\"35\":\"en\",\"36\":\"en\",\"37\":\"en\",\"38\":\"en\",\"39\":\"en\",\"40\":\"en\",\"41\":\"en\",\"42\":\"en\",\"43\":\"en\",\"44\":\"en\",\"45\":\"en\",\"46\":\"en\",\"47\":\"en\",\"48\":\"en\",\"49\":\"en\",\"50\":\"en\",\"51\":\"en\",\"52\":\"en\",\"53\":\"en\",\"54\":\"en\",\"55\":\"en\",\"56\":\"en\",\"57\":\"en\",\"58\":\"en\",\"59\":\"en\",\"60\":\"en\",\"61\":\"en\",\"62\":\"en\",\"63\":\"en\",\"64\":\"en\",\"65\":\"en\",\"66\":\"en\",\"67\":\"en\",\"68\":\"en\",\"69\":\"en\",\"70\":\"en\",\"71\":\"en\",\"72\":\"en\",\"73\":\"en\",\"74\":\"en\",\"75\":\"en\",\"76\":\"en\",\"77\":\"en\",\"78\":\"en\",\"79\":\"en\",\"80\":\"en\",\"81\":\"en\",\"82\":\"en\",\"83\":\"en\",\"84\":\"en\",\"85\":\"en\",\"86\":\"en\",\"87\":\"en\",\"88\":\"en\",\"89\":\"en\",\"90\":\"en\",\"91\":\"en\",\"92\":\"en\",\"93\":\"en\",\"94\":\"en\",\"95\":\"en\",\"96\":\"en\",\"97\":\"en\",\"98\":\"en\",\"99\":\"en\",\"100\":\"en\",\"101\":\"en\",\"102\":\"en\",\"103\":\"en\",\"104\":\"en\",\"105\":\"en\",\"106\":\"en\",\"107\":\"en\",\"108\":\"en\",\"109\":\"en\",\"110\":\"en\",\"111\":\"en\",\"112\":\"en\",\"113\":\"en\",\"114\":\"en\",\"115\":\"en\",\"116\":\"en\",\"117\":\"en\",\"118\":\"en\",\"119\":\"en\",\"120\":\"en\",\"121\":\"en\",\"122\":\"en\",\"123\":\"en\",\"124\":\"en\",\"125\":\"en\",\"126\":\"en\",\"127\":\"en\",\"128\":\"en\",\"129\":\"en\",\"130\":\"en\",\"131\":\"en\",\"132\":\"en\",\"133\":\"en\",\"134\":\"en\",\"135\":\"en\",\"136\":\"en\",\"137\":\"en\",\"138\":\"en\",\"139\":\"en\",\"140\":\"en\",\"141\":\"en\",\"142\":\"en\",\"143\":\"en\",\"144\":\"en\",\"145\":\"en\",\"146\":\"en\",\"147\":\"en\",\"148\":\"en\",\"149\":\"en\",\"150\":\"en\",\"151\":\"en\",\"152\":\"en\",\"153\":\"en\",\"154\":\"en\",\"155\":\"en\",\"156\":\"en\",\"157\":\"en\",\"158\":\"en\",\"159\":\"en\",\"160\":\"en\",\"161\":\"en\",\"162\":\"en\",\"163\":\"en\",\"164\":\"en\",\"165\":\"en\",\"166\":\"en\",\"167\":\"en\",\"168\":\"en\",\"169\":\"en\",\"170\":\"en\",\"171\":\"en\",\"172\":\"en\",\"173\":\"en\",\"174\":\"en\",\"175\":\"en\",\"176\":\"en\",\"177\":\"en\",\"178\":\"en\",\"179\":\"en\",\"180\":\"en\",\"181\":\"en\",\"182\":\"en\",\"183\":\"en\",\"184\":\"en\",\"185\":\"en\",\"186\":\"en\",\"187\":\"en\",\"188\":\"en\",\"189\":\"en\",\"190\":\"en\",\"191\":\"en\",\"192\":\"en\",\"193\":\"en\",\"194\":\"en\",\"195\":\"en\",\"196\":\"en\",\"197\":\"en\",\"198\":\"en\",\"199\":\"en\",\"200\":\"en\",\"201\":\"en\",\"202\":\"en\",\"203\":\"en\",\"204\":\"en\",\"205\":\"en\",\"206\":\"en\",\"207\":\"en\",\"208\":\"en\",\"209\":\"en\",\"210\":\"en\",\"211\":\"en\",\"212\":\"en\",\"213\":\"en\",\"214\":\"en\",\"215\":\"en\",\"216\":\"en\",\"217\":\"en\",\"218\":\"en\",\"219\":\"en\",\"220\":\"en\",\"221\":\"en\",\"222\":\"en\",\"223\":\"en\",\"224\":\"en\",\"225\":\"en\",\"226\":\"en\",\"227\":\"en\",\"228\":\"en\",\"229\":\"en\",\"230\":\"en\",\"231\":\"en\",\"232\":\"en\",\"233\":\"en\",\"234\":\"en\",\"235\":\"en\",\"236\":\"en\",\"237\":\"en\",\"238\":\"en\",\"239\":\"en\",\"240\":\"en\",\"241\":\"en\",\"242\":\"en\",\"243\":\"en\",\"244\":\"en\",\"245\":\"en\",\"246\":\"en\",\"247\":\"en\",\"248\":\"en\",\"249\":\"en\",\"250\":\"en\",\"251\":\"en\",\"252\":\"en\",\"253\":\"en\",\"254\":\"en\",\"255\":\"en\",\"256\":\"en\",\"257\":\"en\",\"258\":\"en\",\"259\":\"en\",\"260\":\"en\",\"261\":\"en\",\"262\":\"en\",\"263\":\"en\",\"264\":\"en\",\"265\":\"en\",\"266\":\"en\",\"267\":\"en\",\"268\":\"en\",\"269\":\"en\",\"270\":\"en\",\"271\":\"en\",\"272\":\"en\",\"273\":\"en\",\"274\":\"en\",\"275\":\"en\",\"276\":\"en\",\"277\":\"en\",\"278\":\"en\",\"279\":\"en\",\"280\":\"en\",\"281\":\"en\",\"282\":\"en\",\"283\":\"en\",\"284\":\"en\",\"285\":\"en\",\"286\":\"en\",\"287\":\"en\",\"288\":\"en\",\"289\":\"en\",\"290\":\"en\",\"291\":\"en\",\"292\":\"en\",\"293\":\"en\",\"294\":\"en\",\"295\":\"en\",\"296\":\"en\",\"297\":\"en\",\"298\":\"en\",\"299\":\"en\",\"300\":\"en\",\"301\":\"en\",\"302\":\"en\",\"303\":\"en\",\"304\":\"en\",\"305\":\"en\",\"306\":\"en\",\"307\":\"en\",\"308\":\"en\",\"309\":\"en\",\"310\":\"en\",\"311\":\"en\",\"312\":\"en\",\"313\":\"en\",\"314\":\"en\",\"315\":\"en\",\"316\":\"en\",\"317\":\"en\",\"318\":\"en\",\"319\":\"en\",\"320\":\"en\",\"321\":\"en\",\"322\":\"en\",\"323\":\"en\",\"324\":\"en\",\"325\":\"en\",\"326\":\"en\",\"327\":\"en\",\"328\":\"en\",\"329\":\"en\",\"330\":\"en\",\"331\":\"en\",\"332\":\"en\",\"333\":\"en\",\"334\":\"en\",\"335\":\"en\",\"336\":\"en\",\"337\":\"en\",\"338\":\"en\",\"339\":\"en\",\"340\":\"en\",\"341\":\"en\",\"342\":\"en\",\"343\":\"en\",\"344\":\"en\",\"345\":\"en\",\"346\":\"en\",\"347\":\"en\",\"348\":\"en\",\"349\":\"en\",\"350\":\"en\",\"351\":\"en\",\"352\":\"en\",\"353\":\"en\",\"354\":\"en\",\"355\":\"en\",\"356\":\"en\",\"357\":\"en\",\"358\":\"en\",\"359\":\"en\",\"360\":\"en\",\"361\":\"en\",\"362\":\"en\",\"363\":\"en\",\"364\":\"en\",\"365\":\"en\",\"366\":\"en\",\"367\":\"en\",\"368\":\"en\",\"369\":\"en\",\"370\":\"en\",\"371\":\"en\",\"372\":\"en\",\"373\":\"en\",\"374\":\"en\",\"375\":\"en\",\"376\":\"en\",\"377\":\"en\",\"378\":\"en\",\"379\":\"en\",\"380\":\"en\",\"381\":\"en\",\"382\":\"en\",\"383\":\"en\",\"384\":\"en\",\"385\":\"en\",\"386\":\"en\",\"387\":\"en\",\"388\":\"en\",\"389\":\"en\",\"390\":\"en\",\"391\":\"en\",\"392\":\"en\",\"393\":\"en\",\"394\":\"en\",\"395\":\"en\",\"396\":\"en\",\"397\":\"en\",\"398\":\"en\",\"399\":\"en\",\"400\":\"en\",\"401\":\"en\",\"402\":\"en\",\"403\":\"en\",\"404\":\"en\",\"405\":\"en\",\"406\":\"en\",\"407\":\"en\",\"408\":\"en\",\"409\":\"en\",\"410\":\"en\",\"411\":\"en\",\"412\":\"en\",\"413\":\"en\",\"414\":\"en\",\"415\":\"en\",\"416\":\"en\",\"417\":\"en\",\"418\":\"en\",\"419\":\"en\",\"420\":\"en\",\"421\":\"en\",\"422\":\"en\",\"423\":\"en\",\"424\":\"en\",\"425\":\"en\",\"426\":\"en\",\"427\":\"en\",\"428\":\"en\",\"429\":\"en\",\"430\":\"en\",\"431\":\"en\",\"432\":\"en\",\"433\":\"en\",\"434\":\"en\",\"435\":\"en\",\"436\":\"en\",\"437\":\"en\",\"438\":\"en\",\"439\":\"en\",\"440\":\"en\",\"441\":\"en\",\"442\":\"en\",\"443\":\"en\",\"444\":\"en\",\"445\":\"en\",\"446\":\"en\",\"447\":\"en\",\"448\":\"en\",\"449\":\"en\",\"450\":\"en\",\"451\":\"en\",\"452\":\"en\",\"453\":\"en\",\"454\":\"en\",\"455\":\"en\",\"456\":\"en\",\"457\":\"en\",\"458\":\"en\",\"459\":\"en\",\"460\":\"en\",\"461\":\"en\",\"462\":\"en\",\"463\":\"en\",\"464\":\"en\",\"465\":\"en\",\"466\":\"en\",\"467\":\"en\",\"468\":\"en\",\"469\":\"en\",\"470\":\"en\",\"471\":\"en\",\"472\":\"en\",\"473\":\"en\",\"474\":\"en\",\"475\":\"en\",\"476\":\"en\",\"477\":\"en\",\"478\":\"en\",\"479\":\"en\",\"480\":\"en\",\"481\":\"en\",\"482\":\"en\",\"483\":\"en\",\"484\":\"en\",\"485\":\"en\",\"486\":\"en\",\"487\":\"en\",\"488\":\"en\",\"489\":\"en\",\"490\":\"en\",\"491\":\"en\",\"492\":\"en\",\"493\":\"en\",\"494\":\"en\",\"495\":\"en\",\"496\":\"en\",\"497\":\"en\",\"498\":\"en\",\"499\":\"en\",\"500\":\"en\",\"501\":\"en\",\"502\":\"en\",\"503\":\"en\",\"504\":\"en\",\"505\":\"en\",\"506\":\"en\",\"507\":\"en\",\"508\":\"en\",\"509\":\"en\",\"510\":\"en\",\"511\":\"en\",\"512\":\"en\",\"513\":\"en\",\"514\":\"en\",\"515\":\"en\",\"516\":\"en\",\"517\":\"en\",\"518\":\"en\",\"519\":\"en\",\"520\":\"en\",\"521\":\"en\",\"522\":\"en\",\"523\":\"en\",\"524\":\"en\",\"525\":\"en\",\"526\":\"en\",\"527\":\"en\",\"528\":\"en\",\"529\":\"en\",\"530\":\"en\",\"531\":\"en\",\"532\":\"en\",\"533\":\"en\",\"534\":\"en\",\"535\":\"en\",\"536\":\"en\",\"537\":\"en\",\"538\":\"en\",\"539\":\"en\",\"540\":\"en\",\"541\":\"en\",\"542\":\"en\",\"543\":\"en\",\"544\":\"en\",\"545\":\"en\",\"546\":\"en\",\"547\":\"en\",\"548\":\"en\",\"549\":\"en\",\"550\":\"en\",\"551\":\"en\",\"552\":\"en\",\"553\":\"en\",\"554\":\"en\",\"555\":\"en\",\"556\":\"en\",\"557\":\"en\",\"558\":\"en\",\"559\":\"en\",\"560\":\"en\",\"561\":\"en\",\"562\":\"en\",\"563\":\"en\",\"564\":\"en\",\"565\":\"en\",\"566\":\"en\",\"567\":\"en\",\"568\":\"en\",\"569\":\"en\",\"570\":\"en\",\"571\":\"en\",\"572\":\"en\",\"573\":\"en\",\"574\":\"en\",\"575\":\"en\",\"576\":\"en\",\"577\":\"en\",\"578\":\"en\",\"579\":\"en\",\"580\":\"en\",\"581\":\"en\",\"582\":\"en\",\"583\":\"en\",\"584\":\"en\",\"585\":\"en\",\"586\":\"en\",\"587\":\"en\",\"588\":\"en\",\"589\":\"en\",\"590\":\"en\",\"591\":\"en\",\"592\":\"en\",\"593\":\"en\",\"594\":\"en\",\"595\":\"en\",\"596\":\"en\",\"597\":\"en\",\"598\":\"en\",\"599\":\"en\",\"600\":\"en\",\"601\":\"en\",\"602\":\"en\",\"603\":\"en\",\"604\":\"en\",\"605\":\"en\",\"606\":\"en\",\"607\":\"en\",\"608\":\"en\",\"609\":\"en\",\"610\":\"en\",\"611\":\"en\",\"612\":\"en\",\"613\":\"en\",\"614\":\"en\",\"615\":\"en\",\"616\":\"en\",\"617\":\"en\",\"618\":\"en\",\"619\":\"en\",\"620\":\"en\",\"621\":\"en\",\"622\":\"en\",\"623\":\"en\",\"624\":\"en\",\"625\":\"en\",\"626\":\"en\",\"627\":\"en\",\"628\":\"en\",\"629\":\"en\",\"630\":\"en\",\"631\":\"en\",\"632\":\"en\",\"633\":\"en\",\"634\":\"en\",\"635\":\"en\",\"636\":\"en\",\"637\":\"en\",\"638\":\"en\",\"639\":\"en\",\"640\":\"en\",\"641\":\"en\",\"642\":\"en\",\"643\":\"en\",\"644\":\"en\",\"645\":\"en\",\"646\":\"en\",\"647\":\"en\",\"648\":\"en\",\"649\":\"en\",\"650\":\"en\",\"651\":\"en\",\"652\":\"en\",\"653\":\"en\",\"654\":\"en\",\"655\":\"en\",\"656\":\"en\",\"657\":\"en\",\"658\":\"en\",\"659\":\"en\",\"660\":\"en\",\"661\":\"en\",\"662\":\"en\",\"663\":\"en\",\"664\":\"en\",\"665\":\"en\",\"666\":\"en\",\"667\":\"en\",\"668\":\"en\",\"669\":\"en\",\"670\":\"en\",\"671\":\"en\",\"672\":\"en\",\"673\":\"en\",\"674\":\"en\",\"675\":\"en\",\"676\":\"en\",\"677\":\"en\",\"678\":\"en\",\"679\":\"en\",\"680\":\"en\",\"681\":\"en\",\"682\":\"en\",\"683\":\"en\",\"684\":\"en\",\"685\":\"en\",\"686\":\"en\",\"687\":\"en\",\"688\":\"en\",\"689\":\"en\",\"690\":\"en\",\"691\":\"en\",\"692\":\"en\",\"693\":\"en\",\"694\":\"en\",\"695\":\"en\",\"696\":\"en\",\"697\":\"en\",\"698\":\"en\",\"699\":\"en\",\"700\":\"en\",\"701\":\"en\",\"702\":\"en\",\"703\":\"en\",\"704\":\"en\",\"705\":\"en\",\"706\":\"en\",\"707\":\"en\",\"708\":\"en\",\"709\":\"en\",\"710\":\"en\",\"711\":\"en\",\"712\":\"en\",\"713\":\"en\",\"714\":\"en\",\"715\":\"en\",\"716\":\"en\",\"717\":\"en\",\"718\":\"en\",\"719\":\"en\",\"720\":\"en\",\"721\":\"en\",\"722\":\"en\",\"723\":\"en\",\"724\":\"en\",\"725\":\"en\",\"726\":\"en\",\"727\":\"en\",\"728\":\"en\",\"729\":\"en\",\"730\":\"en\",\"731\":\"en\",\"732\":\"en\",\"733\":\"en\",\"734\":\"en\",\"735\":\"en\",\"736\":\"en\",\"737\":\"en\",\"738\":\"en\",\"739\":\"en\",\"740\":\"en\",\"741\":\"en\",\"742\":\"en\",\"743\":\"en\",\"744\":\"en\",\"745\":\"en\",\"746\":\"en\",\"747\":\"en\",\"748\":\"en\",\"749\":\"en\",\"750\":\"en\",\"751\":\"en\",\"752\":\"en\",\"753\":\"en\",\"754\":\"en\",\"755\":\"en\",\"756\":\"en\",\"757\":\"en\",\"758\":\"en\",\"759\":\"en\",\"760\":\"en\",\"761\":\"en\",\"762\":\"en\",\"763\":\"en\",\"764\":\"en\",\"765\":\"en\",\"766\":\"en\",\"767\":\"en\",\"768\":\"en\",\"769\":\"en\",\"770\":\"en\",\"771\":\"en\",\"772\":\"en\",\"773\":\"en\",\"774\":\"en\",\"775\":\"en\",\"776\":\"en\",\"777\":\"en\",\"778\":\"en\",\"779\":\"en\",\"780\":\"en\",\"781\":\"en\",\"782\":\"en\",\"783\":\"en\",\"784\":\"en\",\"785\":\"en\",\"786\":\"en\",\"787\":\"en\",\"788\":\"en\",\"789\":\"en\",\"790\":\"en\",\"791\":\"en\",\"792\":\"en\",\"793\":\"en\",\"794\":\"en\",\"795\":\"en\",\"796\":\"en\",\"797\":\"en\",\"798\":\"en\",\"799\":\"en\",\"800\":\"en\",\"801\":\"en\",\"802\":\"en\",\"803\":\"en\",\"804\":\"en\",\"805\":\"en\",\"806\":\"en\",\"807\":\"en\",\"808\":\"en\",\"809\":\"en\",\"810\":\"en\",\"811\":\"en\",\"812\":\"en\",\"813\":\"en\",\"814\":\"en\",\"815\":\"en\",\"816\":\"en\",\"817\":\"en\",\"818\":\"en\",\"819\":\"en\",\"820\":\"en\",\"821\":\"en\",\"822\":\"en\",\"823\":\"en\",\"824\":\"en\",\"825\":\"en\",\"826\":\"en\",\"827\":\"en\",\"828\":\"en\",\"829\":\"en\",\"830\":\"en\",\"831\":\"en\",\"832\":\"en\",\"833\":\"en\",\"834\":\"en\",\"835\":\"en\",\"836\":\"en\",\"837\":\"en\",\"838\":\"en\",\"839\":\"en\",\"840\":\"en\",\"841\":\"en\",\"842\":\"en\",\"843\":\"en\",\"844\":\"en\",\"845\":\"en\",\"846\":\"en\",\"847\":\"en\",\"848\":\"en\",\"849\":\"en\",\"850\":\"en\",\"851\":\"en\",\"852\":\"en\",\"853\":\"en\",\"854\":\"en\",\"855\":\"en\",\"856\":\"en\",\"857\":\"en\",\"858\":\"en\",\"859\":\"en\",\"860\":\"en\",\"861\":\"en\",\"862\":\"en\",\"863\":\"en\",\"864\":\"en\",\"865\":\"en\",\"866\":\"en\",\"867\":\"en\",\"868\":\"en\",\"869\":\"en\",\"870\":\"en\",\"871\":\"en\",\"872\":\"en\",\"873\":\"en\",\"874\":\"en\",\"875\":\"en\",\"876\":\"en\",\"877\":\"en\",\"878\":\"en\",\"879\":\"en\",\"880\":\"en\",\"881\":\"en\",\"882\":\"en\",\"883\":\"en\",\"884\":\"en\",\"885\":\"en\",\"886\":\"en\",\"887\":\"en\",\"888\":\"en\",\"889\":\"en\",\"890\":\"en\",\"891\":\"en\",\"892\":\"en\",\"893\":\"en\",\"894\":\"en\",\"895\":\"en\",\"896\":\"en\",\"897\":\"en\",\"898\":\"en\",\"899\":\"en\",\"900\":\"en\",\"901\":\"en\",\"902\":\"en\",\"903\":\"en\",\"904\":\"en\",\"905\":\"en\",\"906\":\"en\",\"907\":\"en\",\"908\":\"en\",\"909\":\"en\",\"910\":\"en\",\"911\":\"en\",\"912\":\"en\",\"913\":\"en\",\"914\":\"en\",\"915\":\"en\",\"916\":\"en\",\"917\":\"en\",\"918\":\"en\",\"919\":\"en\",\"920\":\"en\",\"921\":\"en\",\"922\":\"en\",\"923\":\"en\",\"924\":\"en\",\"925\":\"en\",\"926\":\"en\",\"927\":\"en\",\"928\":\"en\",\"929\":\"en\",\"930\":\"en\",\"931\":\"en\",\"932\":\"en\",\"933\":\"en\",\"934\":\"en\",\"935\":\"en\",\"936\":\"en\",\"937\":\"en\",\"938\":\"en\",\"939\":\"en\",\"940\":\"en\",\"941\":\"en\",\"942\":\"en\",\"943\":\"en\",\"944\":\"en\",\"945\":\"en\",\"946\":\"en\",\"947\":\"en\",\"948\":\"en\",\"949\":\"en\",\"950\":\"en\",\"951\":\"en\",\"952\":\"en\",\"953\":\"en\",\"954\":\"en\",\"955\":\"en\",\"956\":\"en\",\"957\":\"en\",\"958\":\"en\",\"959\":\"en\",\"960\":\"en\",\"961\":\"en\",\"962\":\"en\",\"963\":\"en\",\"964\":\"en\",\"965\":\"en\",\"966\":\"en\",\"967\":\"en\",\"968\":\"en\",\"969\":\"en\",\"970\":\"en\",\"971\":\"en\",\"972\":\"en\",\"973\":\"en\",\"974\":\"en\",\"975\":\"en\",\"976\":\"en\",\"977\":\"en\",\"978\":\"en\",\"979\":\"en\",\"980\":\"en\",\"981\":\"en\",\"982\":\"en\",\"983\":\"en\",\"984\":\"en\",\"985\":\"en\",\"986\":\"en\",\"987\":\"en\",\"988\":\"en\",\"989\":\"en\",\"990\":\"en\",\"991\":\"en\",\"992\":\"en\",\"993\":\"en\",\"994\":\"en\",\"995\":\"en\",\"996\":\"en\",\"997\":\"en\",\"998\":\"en\",\"999\":\"en\",\"1000\":\"en\",\"1001\":\"en\",\"1002\":\"en\",\"1003\":\"en\",\"1004\":\"en\",\"1005\":\"en\",\"1006\":\"en\",\"1007\":\"en\",\"1008\":\"en\",\"1009\":\"en\",\"1010\":\"en\",\"1011\":\"en\",\"1012\":\"en\",\"1013\":\"en\",\"1014\":\"en\",\"1015\":\"en\",\"1016\":\"en\",\"1017\":\"en\",\"1018\":\"en\",\"1019\":\"en\",\"1020\":\"en\",\"1021\":\"en\",\"1022\":\"en\",\"1023\":\"en\",\"1024\":\"en\",\"1025\":\"en\",\"1026\":\"en\",\"1027\":\"en\",\"1028\":\"en\",\"1029\":\"en\",\"1030\":\"en\",\"1031\":\"en\",\"1032\":\"en\",\"1033\":\"en\",\"1034\":\"en\",\"1035\":\"en\",\"1036\":\"en\",\"1037\":\"en\",\"1038\":\"en\",\"1039\":\"en\",\"1040\":\"en\",\"1041\":\"en\",\"1042\":\"en\",\"1043\":\"en\",\"1044\":\"en\",\"1045\":\"en\",\"1046\":\"en\",\"1047\":\"en\",\"1048\":\"en\",\"1049\":\"en\",\"1050\":\"en\",\"1051\":\"en\",\"1052\":\"en\",\"1053\":\"en\",\"1054\":\"en\",\"1055\":\"en\",\"1056\":\"en\",\"1057\":\"en\",\"1058\":\"en\",\"1059\":\"en\",\"1060\":\"en\",\"1061\":\"en\",\"1062\":\"en\",\"1063\":\"en\",\"1064\":\"en\",\"1065\":\"en\",\"1066\":\"en\",\"1067\":\"en\",\"1068\":\"en\",\"1069\":\"en\",\"1070\":\"en\",\"1071\":\"en\",\"1072\":\"en\",\"1073\":\"en\",\"1074\":\"en\",\"1075\":\"en\",\"1076\":\"en\",\"1077\":\"en\",\"1078\":\"en\",\"1079\":\"en\",\"1080\":\"en\",\"1081\":\"en\",\"1082\":\"en\",\"1083\":\"en\",\"1084\":\"en\",\"1085\":\"en\",\"1086\":\"en\",\"1087\":\"en\",\"1088\":\"en\",\"1089\":\"en\",\"1090\":\"en\",\"1091\":\"en\",\"1092\":\"en\",\"1093\":\"en\",\"1094\":\"en\",\"1095\":\"en\",\"1096\":\"en\",\"1097\":\"en\",\"1098\":\"en\",\"1099\":\"en\",\"1100\":\"en\",\"1101\":\"en\",\"1102\":\"en\",\"1103\":\"en\",\"1104\":\"en\",\"1105\":\"en\",\"1106\":\"en\",\"1107\":\"en\",\"1108\":\"en\",\"1109\":\"en\",\"1110\":\"en\",\"1111\":\"en\",\"1112\":\"en\",\"1113\":\"en\",\"1114\":\"en\",\"1115\":\"en\",\"1116\":\"en\",\"1117\":\"en\",\"1118\":\"en\",\"1119\":\"en\",\"1120\":\"en\",\"1121\":\"en\",\"1122\":\"en\",\"1123\":\"en\",\"1124\":\"en\",\"1125\":\"en\",\"1126\":\"en\",\"1127\":\"en\",\"1128\":\"en\",\"1129\":\"en\",\"1130\":\"en\",\"1131\":\"en\",\"1132\":\"en\",\"1133\":\"en\",\"1134\":\"en\",\"1135\":\"en\",\"1136\":\"en\",\"1137\":\"en\",\"1138\":\"en\",\"1139\":\"en\",\"1140\":\"en\",\"1141\":\"en\",\"1142\":\"en\",\"1143\":\"en\",\"1144\":\"en\",\"1145\":\"en\",\"1146\":\"en\",\"1147\":\"en\",\"1148\":\"en\",\"1149\":\"en\",\"1150\":\"en\",\"1151\":\"en\",\"1152\":\"en\",\"1153\":\"en\",\"1154\":\"en\",\"1155\":\"en\",\"1156\":\"en\",\"1157\":\"en\",\"1158\":\"en\",\"1159\":\"en\",\"1160\":\"en\",\"1161\":\"en\",\"1162\":\"en\",\"1163\":\"en\",\"1164\":\"en\",\"1165\":\"en\",\"1166\":\"en\",\"1167\":\"en\",\"1168\":\"en\",\"1169\":\"en\",\"1170\":\"en\",\"1171\":\"en\",\"1172\":\"en\",\"1173\":\"en\",\"1174\":\"en\",\"1175\":\"en\",\"1176\":\"en\",\"1177\":\"en\",\"1178\":\"en\",\"1179\":\"en\",\"1180\":\"en\",\"1181\":\"en\",\"1182\":\"en\",\"1183\":\"en\",\"1184\":\"en\",\"1185\":\"en\",\"1186\":\"en\",\"1187\":\"en\",\"1188\":\"en\",\"1189\":\"en\",\"1190\":\"en\",\"1191\":\"en\",\"1192\":\"en\",\"1193\":\"en\",\"1194\":\"en\",\"1195\":\"en\",\"1196\":\"en\",\"1197\":\"en\",\"1198\":\"en\",\"1199\":\"en\",\"1200\":\"en\",\"1201\":\"en\",\"1202\":\"en\",\"1203\":\"en\",\"1204\":\"en\",\"1205\":\"en\",\"1206\":\"en\",\"1207\":\"en\",\"1208\":\"en\",\"1209\":\"en\",\"1210\":\"en\",\"1211\":\"en\",\"1212\":\"en\",\"1213\":\"en\",\"1214\":\"en\",\"1215\":\"en\",\"1216\":\"en\",\"1217\":\"en\",\"1218\":\"en\",\"1219\":\"en\",\"1220\":\"en\",\"1221\":\"en\",\"1222\":\"en\",\"1223\":\"en\",\"1224\":\"en\",\"1225\":\"en\",\"1226\":\"en\",\"1227\":\"en\",\"1228\":\"en\",\"1229\":\"en\",\"1230\":\"en\",\"1231\":\"en\",\"1232\":\"en\",\"1233\":\"en\",\"1234\":\"en\",\"1235\":\"en\",\"1236\":\"en\",\"1237\":\"en\",\"1238\":\"en\",\"1239\":\"en\",\"1240\":\"en\",\"1241\":\"en\",\"1242\":\"en\",\"1243\":\"en\",\"1244\":\"en\",\"1245\":\"en\",\"1246\":\"en\",\"1247\":\"en\",\"1248\":\"en\",\"1249\":\"en\",\"1250\":\"en\",\"1251\":\"en\",\"1252\":\"en\",\"1253\":\"en\",\"1254\":\"en\",\"1255\":\"en\",\"1256\":\"en\",\"1257\":\"en\",\"1258\":\"en\",\"1259\":\"en\",\"1260\":\"en\",\"1261\":\"en\",\"1262\":\"en\",\"1263\":\"en\",\"1264\":\"en\",\"1265\":\"en\",\"1266\":\"en\",\"1267\":\"en\",\"1268\":\"en\",\"1269\":\"en\",\"1270\":\"en\",\"1271\":\"en\",\"1272\":\"en\",\"1273\":\"en\",\"1274\":\"en\",\"1275\":\"en\",\"1276\":\"en\",\"1277\":\"en\",\"1278\":\"en\",\"1279\":\"en\",\"1280\":\"en\",\"1281\":\"en\",\"1282\":\"en\",\"1283\":\"en\",\"1284\":\"en\",\"1285\":\"en\",\"1286\":\"en\",\"1287\":\"en\",\"1288\":\"en\",\"1289\":\"en\",\"1290\":\"en\",\"1291\":\"en\",\"1292\":\"en\",\"1293\":\"en\",\"1294\":\"en\",\"1295\":\"en\",\"1296\":\"en\",\"1297\":\"en\",\"1298\":\"en\",\"1299\":\"en\",\"1300\":\"en\",\"1301\":\"en\",\"1302\":\"en\",\"1303\":\"en\",\"1304\":\"en\",\"1305\":\"en\",\"1306\":\"en\",\"1307\":\"en\",\"1308\":\"en\",\"1309\":\"en\",\"1310\":\"en\",\"1311\":\"en\",\"1312\":\"en\",\"1313\":\"en\",\"1314\":\"en\",\"1315\":\"en\",\"1316\":\"en\",\"1317\":\"en\",\"1318\":\"en\",\"1319\":\"en\",\"1320\":\"en\",\"1321\":\"en\",\"1322\":\"en\",\"1323\":\"en\",\"1324\":\"en\",\"1325\":\"en\",\"1326\":\"en\",\"1327\":\"en\",\"1328\":\"en\",\"1329\":\"en\",\"1330\":\"en\",\"1331\":\"en\",\"1332\":\"en\",\"1333\":\"en\",\"1334\":\"en\",\"1335\":\"en\",\"1336\":\"en\",\"1337\":\"en\",\"1338\":\"en\",\"1339\":\"en\",\"1340\":\"en\",\"1341\":\"en\",\"1342\":\"en\",\"1343\":\"en\",\"1344\":\"en\",\"1345\":\"en\",\"1346\":\"en\",\"1347\":\"en\",\"1348\":\"en\",\"1349\":\"en\",\"1350\":\"en\",\"1351\":\"en\",\"1352\":\"en\",\"1353\":\"en\",\"1354\":\"en\",\"1355\":\"en\",\"1356\":\"en\",\"1357\":\"en\",\"1358\":\"en\",\"1359\":\"en\",\"1360\":\"en\",\"1361\":\"en\",\"1362\":\"en\",\"1363\":\"en\",\"1364\":\"en\",\"1365\":\"en\",\"1366\":\"en\",\"1367\":\"en\",\"1368\":\"en\",\"1369\":\"en\",\"1370\":\"en\",\"1371\":\"en\",\"1372\":\"en\",\"1373\":\"en\",\"1374\":\"en\",\"1375\":\"en\",\"1376\":\"en\",\"1377\":\"en\",\"1378\":\"en\",\"1379\":\"en\",\"1380\":\"en\",\"1381\":\"en\",\"1382\":\"en\",\"1383\":\"en\",\"1384\":\"en\",\"1385\":\"en\",\"1386\":\"en\",\"1387\":\"en\",\"1388\":\"en\",\"1389\":\"en\",\"1390\":\"en\",\"1391\":\"en\",\"1392\":\"en\",\"1393\":\"en\",\"1394\":\"en\",\"1395\":\"en\",\"1396\":\"en\",\"1397\":\"en\",\"1398\":\"en\",\"1399\":\"en\",\"1400\":\"en\",\"1401\":\"en\",\"1402\":\"en\",\"1403\":\"en\",\"1404\":\"en\",\"1405\":\"en\",\"1406\":\"en\",\"1407\":\"en\",\"1408\":\"en\",\"1409\":\"en\",\"1410\":\"en\",\"1411\":\"en\",\"1412\":\"en\",\"1413\":\"en\",\"1414\":\"en\",\"1415\":\"en\",\"1416\":\"en\",\"1417\":\"en\",\"1418\":\"en\",\"1419\":\"en\",\"1420\":\"en\",\"1421\":\"en\",\"1422\":\"en\",\"1423\":\"en\",\"1424\":\"en\",\"1425\":\"en\",\"1426\":\"en\",\"1427\":\"en\",\"1428\":\"en\",\"1429\":\"en\",\"1430\":\"en\",\"1431\":\"en\",\"1432\":\"en\",\"1433\":\"en\",\"1434\":\"en\",\"1435\":\"en\",\"1436\":\"en\",\"1437\":\"en\",\"1438\":\"en\",\"1439\":\"en\",\"1440\":\"en\",\"1441\":\"en\",\"1442\":\"en\",\"1443\":\"en\",\"1444\":\"en\",\"1445\":\"en\",\"1446\":\"en\",\"1447\":\"en\",\"1448\":\"en\",\"1449\":\"en\",\"1450\":\"en\",\"1451\":\"en\",\"1452\":\"en\",\"1453\":\"en\",\"1454\":\"en\",\"1455\":\"en\",\"1456\":\"en\",\"1457\":\"en\",\"1458\":\"en\",\"1459\":\"en\",\"1460\":\"en\",\"1461\":\"en\",\"1462\":\"en\",\"1463\":\"en\",\"1464\":\"en\",\"1465\":\"en\",\"1466\":\"en\",\"1467\":\"en\",\"1468\":\"en\",\"1469\":\"en\",\"1470\":\"en\",\"1471\":\"en\",\"1472\":\"en\",\"1473\":\"en\",\"1474\":\"en\",\"1475\":\"en\",\"1476\":\"en\",\"1477\":\"en\",\"1478\":\"en\",\"1479\":\"en\",\"1480\":\"en\",\"1481\":\"en\",\"1482\":\"en\",\"1483\":\"en\",\"1484\":\"en\",\"1485\":\"en\",\"1486\":\"en\",\"1487\":\"en\",\"1488\":\"en\",\"1489\":\"en\",\"1490\":\"en\",\"1491\":\"en\",\"1492\":\"en\",\"1493\":\"en\",\"1494\":\"en\",\"1495\":\"en\",\"1496\":\"en\",\"1497\":\"en\",\"1498\":\"en\",\"1499\":\"en\",\"1500\":\"en\",\"1501\":\"en\",\"1502\":\"en\",\"1503\":\"en\",\"1504\":\"en\",\"1505\":\"en\",\"1506\":\"en\",\"1507\":\"en\",\"1508\":\"en\",\"1509\":\"en\",\"1510\":\"en\",\"1511\":\"en\",\"1512\":\"en\",\"1513\":\"en\",\"1514\":\"en\",\"1515\":\"en\",\"1516\":\"en\",\"1517\":\"en\",\"1518\":\"en\",\"1519\":\"en\",\"1520\":\"en\",\"1521\":\"en\",\"1522\":\"en\",\"1523\":\"en\",\"1524\":\"en\",\"1525\":\"en\",\"1526\":\"en\",\"1527\":\"en\",\"1528\":\"en\",\"1529\":\"en\",\"1530\":\"en\",\"1531\":\"en\",\"1532\":\"en\",\"1533\":\"en\",\"1534\":\"en\",\"1535\":\"en\",\"1536\":\"en\",\"1537\":\"en\",\"1538\":\"en\",\"1539\":\"en\",\"1540\":\"en\",\"1541\":\"en\",\"1542\":\"en\",\"1543\":\"en\",\"1544\":\"en\",\"1545\":\"en\",\"1546\":\"en\",\"1547\":\"en\",\"1548\":\"en\",\"1549\":\"en\",\"1550\":\"en\",\"1551\":\"en\",\"1552\":\"en\",\"1553\":\"en\",\"1554\":\"en\",\"1555\":\"en\",\"1556\":\"en\",\"1557\":\"en\",\"1558\":\"en\",\"1559\":\"en\",\"1560\":\"en\",\"1561\":\"en\",\"1562\":\"en\",\"1563\":\"en\",\"1564\":\"en\",\"1565\":\"en\",\"1566\":\"en\",\"1567\":\"en\",\"1568\":\"en\",\"1569\":\"en\",\"1570\":\"en\",\"1571\":\"en\",\"1572\":\"en\",\"1573\":\"en\",\"1574\":\"en\",\"1575\":\"en\",\"1576\":\"en\",\"1577\":\"en\",\"1578\":\"en\",\"1579\":\"en\",\"1580\":\"en\",\"1581\":\"en\",\"1582\":\"en\",\"1583\":\"en\",\"1584\":\"en\",\"1585\":\"en\",\"1586\":\"en\",\"1587\":\"en\",\"1588\":\"en\",\"1589\":\"en\",\"1590\":\"en\",\"1591\":\"en\",\"1592\":\"en\",\"1593\":\"en\",\"1594\":\"en\",\"1595\":\"en\",\"1596\":\"en\",\"1597\":\"en\",\"1598\":\"en\",\"1599\":\"en\",\"1600\":\"en\",\"1601\":\"en\",\"1602\":\"en\",\"1603\":\"en\",\"1604\":\"en\",\"1605\":\"en\",\"1606\":\"en\",\"1607\":\"en\",\"1608\":\"en\",\"1609\":\"en\",\"1610\":\"en\",\"1611\":\"en\",\"1612\":\"en\",\"1613\":\"en\",\"1614\":\"en\",\"1615\":\"en\",\"1616\":\"en\",\"1617\":\"en\",\"1618\":\"en\",\"1619\":\"en\",\"1620\":\"en\",\"1621\":\"en\",\"1622\":\"en\",\"1623\":\"en\",\"1624\":\"en\",\"1625\":\"en\",\"1626\":\"en\",\"1627\":\"en\",\"1628\":\"en\",\"1629\":\"en\",\"1630\":\"en\",\"1631\":\"en\",\"1632\":\"en\",\"1633\":\"en\",\"1634\":\"en\",\"1635\":\"en\",\"1636\":\"en\",\"1637\":\"en\",\"1638\":\"en\",\"1639\":\"en\",\"1640\":\"en\",\"1641\":\"en\",\"1642\":\"en\",\"1643\":\"en\",\"1644\":\"en\",\"1645\":\"en\",\"1646\":\"en\",\"1647\":\"en\",\"1648\":\"en\",\"1649\":\"en\",\"1650\":\"en\",\"1651\":\"en\",\"1652\":\"en\",\"1653\":\"en\",\"1654\":\"en\",\"1655\":\"en\",\"1656\":\"en\",\"1657\":\"en\",\"1658\":\"en\",\"1659\":\"en\",\"1660\":\"en\",\"1661\":\"en\",\"1662\":\"en\",\"1663\":\"en\",\"1664\":\"en\",\"1665\":\"en\",\"1666\":\"en\",\"1667\":\"en\",\"1668\":\"en\",\"1669\":\"en\",\"1670\":\"en\",\"1671\":\"en\",\"1672\":\"en\",\"1673\":\"en\",\"1674\":\"en\",\"1675\":\"en\",\"1676\":\"en\",\"1677\":\"en\",\"1678\":\"en\",\"1679\":\"en\",\"1680\":\"en\",\"1681\":\"en\",\"1682\":\"en\",\"1683\":\"en\",\"1684\":\"en\",\"1685\":\"en\",\"1686\":\"en\",\"1687\":\"en\",\"1688\":\"en\",\"1689\":\"en\",\"1690\":\"en\",\"1691\":\"en\",\"1692\":\"en\",\"1693\":\"en\",\"1694\":\"en\",\"1695\":\"en\",\"1696\":\"en\",\"1697\":\"en\",\"1698\":\"en\",\"1699\":\"en\",\"1700\":\"en\",\"1701\":\"en\",\"1702\":\"en\",\"1703\":\"en\",\"1704\":\"en\",\"1705\":\"en\",\"1706\":\"en\",\"1707\":\"en\",\"1708\":\"en\",\"1709\":\"en\",\"1710\":\"en\",\"1711\":\"en\",\"1712\":\"en\",\"1713\":\"en\",\"1714\":\"en\",\"1715\":\"en\",\"1716\":\"en\",\"1717\":\"en\",\"1718\":\"en\",\"1719\":\"en\",\"1720\":\"en\",\"1721\":\"en\",\"1722\":\"en\",\"1723\":\"en\",\"1724\":\"en\",\"1725\":\"en\",\"1726\":\"en\",\"1727\":\"en\",\"1728\":\"en\",\"1729\":\"en\",\"1730\":\"en\",\"1731\":\"en\",\"1732\":\"en\",\"1733\":\"en\",\"1734\":\"en\",\"1735\":\"en\",\"1736\":\"en\",\"1737\":\"en\",\"1738\":\"en\",\"1739\":\"en\",\"1740\":\"en\",\"1741\":\"en\",\"1742\":\"en\",\"1743\":\"en\",\"1744\":\"en\",\"1745\":\"en\",\"1746\":\"en\",\"1747\":\"en\",\"1748\":\"en\",\"1749\":\"en\",\"1750\":\"en\",\"1751\":\"en\",\"1752\":\"en\",\"1753\":\"en\",\"1754\":\"en\",\"1755\":\"en\",\"1756\":\"en\",\"1757\":\"en\",\"1758\":\"en\",\"1759\":\"en\",\"1760\":\"en\",\"1761\":\"en\",\"1762\":\"en\",\"1763\":\"en\",\"1764\":\"en\",\"1765\":\"en\",\"1766\":\"en\",\"1767\":\"en\",\"1768\":\"en\",\"1769\":\"en\",\"1770\":\"en\",\"1771\":\"en\",\"1772\":\"en\",\"1773\":\"en\",\"1774\":\"en\",\"1775\":\"en\",\"1776\":\"en\",\"1777\":\"en\",\"1778\":\"en\",\"1779\":\"en\",\"1780\":\"en\",\"1781\":\"en\",\"1782\":\"en\",\"1783\":\"en\",\"1784\":\"en\",\"1785\":\"en\",\"1786\":\"en\",\"1787\":\"en\",\"1788\":\"en\",\"1789\":\"en\",\"1790\":\"en\",\"1791\":\"en\",\"1792\":\"en\",\"1793\":\"en\",\"1794\":\"en\",\"1795\":\"en\",\"1796\":\"en\",\"1797\":\"en\",\"1798\":\"en\",\"1799\":\"en\",\"1800\":\"en\",\"1801\":\"en\",\"1802\":\"en\",\"1803\":\"en\",\"1804\":\"en\",\"1805\":\"en\",\"1806\":\"en\",\"1807\":\"en\",\"1808\":\"en\",\"1809\":\"en\",\"1810\":\"en\",\"1811\":\"en\",\"1812\":\"en\",\"1813\":\"en\",\"1814\":\"en\",\"1815\":\"en\",\"1816\":\"en\",\"1817\":\"en\",\"1818\":\"en\",\"1819\":\"en\",\"1820\":\"en\",\"1821\":\"en\",\"1822\":\"en\",\"1823\":\"en\",\"1824\":\"en\",\"1825\":\"en\",\"1826\":\"en\",\"1827\":\"en\",\"1828\":\"en\",\"1829\":\"en\",\"1830\":\"en\",\"1831\":\"en\",\"1832\":\"en\",\"1833\":\"en\",\"1834\":\"en\",\"1835\":\"en\",\"1836\":\"en\",\"1837\":\"en\",\"1838\":\"en\",\"1839\":\"en\",\"1840\":\"en\",\"1841\":\"en\",\"1842\":\"en\",\"1843\":\"en\",\"1844\":\"en\",\"1845\":\"en\",\"1846\":\"en\",\"1847\":\"en\",\"1848\":\"en\",\"1849\":\"en\",\"1850\":\"en\",\"1851\":\"en\",\"1852\":\"en\",\"1853\":\"en\",\"1854\":\"en\",\"1855\":\"en\",\"1856\":\"en\",\"1857\":\"en\",\"1858\":\"en\",\"1859\":\"en\",\"1860\":\"en\",\"1861\":\"en\",\"1862\":\"en\",\"1863\":\"en\",\"1864\":\"en\",\"1865\":\"en\",\"1866\":\"en\",\"1867\":\"en\",\"1868\":\"en\",\"1869\":\"en\",\"1870\":\"en\",\"1871\":\"en\",\"1872\":\"en\",\"1873\":\"en\",\"1874\":\"en\",\"1875\":\"en\",\"1876\":\"en\",\"1877\":\"en\",\"1878\":\"en\",\"1879\":\"en\",\"1880\":\"en\",\"1881\":\"en\",\"1882\":\"en\",\"1883\":\"en\",\"1884\":\"en\",\"1885\":\"en\",\"1886\":\"en\",\"1887\":\"en\",\"1888\":\"en\",\"1889\":\"en\",\"1890\":\"en\",\"1891\":\"en\",\"1892\":\"en\",\"1893\":\"en\",\"1894\":\"en\",\"1895\":\"en\",\"1896\":\"en\",\"1897\":\"en\",\"1898\":\"en\",\"1899\":\"en\",\"1900\":\"en\",\"1901\":\"en\",\"1902\":\"en\",\"1903\":\"en\",\"1904\":\"en\",\"1905\":\"en\",\"1906\":\"en\",\"1907\":\"en\",\"1908\":\"en\",\"1909\":\"en\",\"1910\":\"en\",\"1911\":\"en\",\"1912\":\"en\",\"1913\":\"en\",\"1914\":\"en\",\"1915\":\"en\",\"1916\":\"en\",\"1917\":\"en\",\"1918\":\"en\",\"1919\":\"en\",\"1920\":\"en\",\"1921\":\"en\",\"1922\":\"en\",\"1923\":\"en\",\"1924\":\"en\",\"1925\":\"en\",\"1926\":\"en\",\"1927\":\"en\",\"1928\":\"en\",\"1929\":\"en\",\"1930\":\"en\",\"1931\":\"en\",\"1932\":\"en\",\"1933\":\"en\",\"1934\":\"en\",\"1935\":\"en\",\"1936\":\"en\",\"1937\":\"en\",\"1938\":\"en\",\"1939\":\"en\",\"1940\":\"en\",\"1941\":\"en\",\"1942\":\"en\",\"1943\":\"en\",\"1944\":\"en\",\"1945\":\"en\",\"1946\":\"en\",\"1947\":\"en\",\"1948\":\"en\",\"1949\":\"en\",\"1950\":\"en\",\"1951\":\"en\",\"1952\":\"en\",\"1953\":\"en\",\"1954\":\"en\",\"1955\":\"en\",\"1956\":\"en\",\"1957\":\"en\",\"1958\":\"en\",\"1959\":\"en\",\"1960\":\"en\",\"1961\":\"en\",\"1962\":\"en\",\"1963\":\"en\",\"1964\":\"en\",\"1965\":\"en\",\"1966\":\"en\",\"1967\":\"en\",\"1968\":\"en\",\"1969\":\"en\",\"1970\":\"en\",\"1971\":\"en\",\"1972\":\"en\",\"1973\":\"en\",\"1974\":\"en\",\"1975\":\"en\",\"1976\":\"en\",\"1977\":\"en\",\"1978\":\"en\",\"1979\":\"en\",\"1980\":\"en\",\"1981\":\"en\",\"1982\":\"en\",\"1983\":\"en\",\"1984\":\"en\",\"1985\":\"en\",\"1986\":\"en\",\"1987\":\"en\",\"1988\":\"en\",\"1989\":\"en\",\"1990\":\"en\",\"1991\":\"en\",\"1992\":\"en\",\"1993\":\"en\",\"1994\":\"en\",\"1995\":\"en\",\"1996\":\"en\",\"1997\":\"en\",\"1998\":\"en\",\"1999\":\"en\",\"2000\":\"en\",\"2001\":\"en\",\"2002\":\"en\",\"2003\":\"en\",\"2004\":\"en\",\"2005\":\"en\",\"2006\":\"en\",\"2007\":\"en\",\"2008\":\"en\",\"2009\":\"en\",\"2010\":\"en\",\"2011\":\"en\",\"2012\":\"en\",\"2013\":\"en\",\"2014\":\"en\",\"2015\":\"en\",\"2016\":\"en\",\"2017\":\"en\",\"2018\":\"en\",\"2019\":\"en\",\"2020\":\"en\",\"2021\":\"en\",\"2022\":\"en\",\"2023\":\"en\",\"2024\":\"en\",\"2025\":\"en\",\"2026\":\"en\",\"2027\":\"en\",\"2028\":\"en\",\"2029\":\"en\",\"2030\":\"en\",\"2031\":\"en\",\"2032\":\"en\",\"2033\":\"en\",\"2034\":\"en\",\"2035\":\"en\",\"2036\":\"en\",\"2037\":\"en\",\"2038\":\"en\",\"2039\":\"en\",\"2040\":\"en\",\"2041\":\"en\",\"2042\":\"en\",\"2043\":\"en\",\"2044\":\"en\",\"2045\":\"en\",\"2046\":\"en\",\"2047\":\"en\",\"2048\":\"en\",\"2049\":\"en\",\"2050\":\"en\",\"2051\":\"en\",\"2052\":\"en\",\"2053\":\"en\",\"2054\":\"en\",\"2055\":\"en\",\"2056\":\"en\",\"2057\":\"en\",\"2058\":\"en\",\"2059\":\"en\",\"2060\":\"en\",\"2061\":\"en\",\"2062\":\"en\",\"2063\":\"en\",\"2064\":\"en\",\"2065\":\"en\",\"2066\":\"en\",\"2067\":\"en\",\"2068\":\"en\",\"2069\":\"en\",\"2070\":\"en\",\"2071\":\"en\",\"2072\":\"en\",\"2073\":\"en\",\"2074\":\"en\",\"2075\":\"en\",\"2076\":\"en\",\"2077\":\"en\",\"2078\":\"en\",\"2079\":\"en\",\"2080\":\"en\",\"2081\":\"en\",\"2082\":\"en\",\"2083\":\"en\",\"2084\":\"en\",\"2085\":\"en\",\"2086\":\"en\",\"2087\":\"en\",\"2088\":\"en\",\"2089\":\"en\",\"2090\":\"en\",\"2091\":\"en\",\"2092\":\"en\",\"2093\":\"en\",\"2094\":\"en\",\"2095\":\"en\",\"2096\":\"en\",\"2097\":\"en\",\"2098\":\"en\",\"2099\":\"en\",\"2100\":\"en\",\"2101\":\"en\",\"2102\":\"en\",\"2103\":\"en\",\"2104\":\"en\",\"2105\":\"en\",\"2106\":\"en\",\"2107\":\"en\",\"2108\":\"en\",\"2109\":\"en\",\"2110\":\"en\",\"2111\":\"en\",\"2112\":\"en\",\"2113\":\"en\",\"2114\":\"en\",\"2115\":\"en\",\"2116\":\"en\",\"2117\":\"en\",\"2118\":\"en\",\"2119\":\"en\",\"2120\":\"en\",\"2121\":\"en\",\"2122\":\"en\",\"2123\":\"en\",\"2124\":\"en\",\"2125\":\"en\",\"2126\":\"en\",\"2127\":\"en\",\"2128\":\"en\",\"2129\":\"en\",\"2130\":\"en\",\"2131\":\"en\",\"2132\":\"en\",\"2133\":\"en\",\"2134\":\"en\",\"2135\":\"en\",\"2136\":\"en\",\"2137\":\"en\",\"2138\":\"en\",\"2139\":\"en\",\"2140\":\"en\",\"2141\":\"en\",\"2142\":\"en\",\"2143\":\"en\",\"2144\":\"en\",\"2145\":\"en\",\"2146\":\"en\",\"2147\":\"en\",\"2148\":\"en\",\"2149\":\"en\",\"2150\":\"en\",\"2151\":\"en\",\"2152\":\"en\",\"2153\":\"en\",\"2154\":\"en\",\"2155\":\"en\",\"2156\":\"en\",\"2157\":\"en\",\"2158\":\"en\",\"2159\":\"en\",\"2160\":\"en\",\"2161\":\"en\",\"2162\":\"en\",\"2163\":\"en\",\"2164\":\"en\",\"2165\":\"en\",\"2166\":\"en\",\"2167\":\"en\",\"2168\":\"en\",\"2169\":\"en\",\"2170\":\"en\",\"2171\":\"en\",\"2172\":\"en\",\"2173\":\"en\",\"2174\":\"en\",\"2175\":\"en\",\"2176\":\"en\",\"2177\":\"en\",\"2178\":\"en\",\"2179\":\"en\",\"2180\":\"en\",\"2181\":\"en\",\"2182\":\"en\",\"2183\":\"en\",\"2184\":\"en\",\"2185\":\"en\",\"2186\":\"en\",\"2187\":\"en\",\"2188\":\"en\",\"2189\":\"en\",\"2190\":\"en\",\"2191\":\"en\",\"2192\":\"en\",\"2193\":\"en\",\"2194\":\"en\",\"2195\":\"en\",\"2196\":\"en\",\"2197\":\"en\",\"2198\":\"en\",\"2199\":\"en\",\"2200\":\"en\",\"2201\":\"en\",\"2202\":\"en\",\"2203\":\"en\",\"2204\":\"en\",\"2205\":\"en\",\"2206\":\"en\",\"2207\":\"en\",\"2208\":\"en\",\"2209\":\"en\",\"2210\":\"en\",\"2211\":\"en\",\"2212\":\"en\",\"2213\":\"en\",\"2214\":\"en\",\"2215\":\"en\",\"2216\":\"en\",\"2217\":\"en\",\"2218\":\"en\",\"2219\":\"en\",\"2220\":\"en\",\"2221\":\"en\",\"2222\":\"en\",\"2223\":\"en\",\"2224\":\"en\",\"2225\":\"en\",\"2226\":\"en\",\"2227\":\"en\",\"2228\":\"en\",\"2229\":\"en\",\"2230\":\"en\",\"2231\":\"en\",\"2232\":\"en\",\"2233\":\"en\",\"2234\":\"en\",\"2235\":\"en\",\"2236\":\"en\",\"2237\":\"en\",\"2238\":\"en\",\"2239\":\"en\",\"2240\":\"en\",\"2241\":\"en\",\"2242\":\"en\",\"2243\":\"en\",\"2244\":\"en\",\"2245\":\"en\",\"2246\":\"en\",\"2247\":\"en\",\"2248\":\"en\",\"2249\":\"en\",\"2250\":\"en\",\"2251\":\"en\",\"2252\":\"en\",\"2253\":\"en\",\"2254\":\"en\",\"2255\":\"en\",\"2256\":\"en\",\"2257\":\"en\",\"2258\":\"en\",\"2259\":\"en\",\"2260\":\"en\",\"2261\":\"en\",\"2262\":\"en\",\"2263\":\"en\",\"2264\":\"en\",\"2265\":\"en\",\"2266\":\"en\",\"2267\":\"en\",\"2268\":\"en\",\"2269\":\"en\",\"2270\":\"en\",\"2271\":\"en\",\"2272\":\"en\",\"2273\":\"en\",\"2274\":\"en\",\"2275\":\"en\",\"2276\":\"en\",\"2277\":\"en\",\"2278\":\"en\",\"2279\":\"en\",\"2280\":\"en\",\"2281\":\"en\",\"2282\":\"en\",\"2283\":\"en\",\"2284\":\"en\",\"2285\":\"en\",\"2286\":\"en\",\"2287\":\"en\",\"2288\":\"en\",\"2289\":\"en\",\"2290\":\"en\",\"2291\":\"en\",\"2292\":\"en\",\"2293\":\"en\",\"2294\":\"en\",\"2295\":\"en\",\"2296\":\"en\",\"2297\":\"en\",\"2298\":\"en\",\"2299\":\"en\",\"2300\":\"en\",\"2301\":\"en\",\"2302\":\"en\",\"2303\":\"en\",\"2304\":\"en\",\"2305\":\"en\",\"2306\":\"en\",\"2307\":\"en\",\"2308\":\"en\",\"2309\":\"en\",\"2310\":\"en\",\"2311\":\"en\",\"2312\":\"en\",\"2313\":\"en\",\"2314\":\"en\",\"2315\":\"en\",\"2316\":\"en\",\"2317\":\"en\",\"2318\":\"en\",\"2319\":\"en\",\"2320\":\"en\",\"2321\":\"en\",\"2322\":\"en\",\"2323\":\"en\",\"2324\":\"en\",\"2325\":\"en\",\"2326\":\"en\",\"2327\":\"en\",\"2328\":\"en\",\"2329\":\"en\",\"2330\":\"en\",\"2331\":\"en\",\"2332\":\"en\",\"2333\":\"en\",\"2334\":\"en\",\"2335\":\"en\",\"2336\":\"en\",\"2337\":\"en\",\"2338\":\"en\",\"2339\":\"en\",\"2340\":\"en\",\"2341\":\"en\",\"2342\":\"en\",\"2343\":\"en\",\"2344\":\"en\",\"2345\":\"en\",\"2346\":\"en\",\"2347\":\"en\",\"2348\":\"en\",\"2349\":\"en\",\"2350\":\"en\",\"2351\":\"en\",\"2352\":\"en\",\"2353\":\"en\",\"2354\":\"en\",\"2355\":\"en\",\"2356\":\"en\",\"2357\":\"en\",\"2358\":\"en\",\"2359\":\"en\",\"2360\":\"en\",\"2361\":\"en\",\"2362\":\"en\",\"2363\":\"en\",\"2364\":\"en\",\"2365\":\"en\",\"2366\":\"en\",\"2367\":\"en\",\"2368\":\"en\",\"2369\":\"en\",\"2370\":\"en\",\"2371\":\"en\",\"2372\":\"en\",\"2373\":\"en\",\"2374\":\"en\",\"2375\":\"en\",\"2376\":\"en\",\"2377\":\"en\",\"2378\":\"en\",\"2379\":\"en\",\"2380\":\"en\",\"2381\":\"en\",\"2382\":\"en\",\"2383\":\"en\",\"2384\":\"en\",\"2385\":\"en\",\"2386\":\"en\",\"2387\":\"en\",\"2388\":\"en\",\"2389\":\"en\",\"2390\":\"en\",\"2391\":\"en\",\"2392\":\"en\",\"2393\":\"en\",\"2394\":\"en\",\"2395\":\"en\",\"2396\":\"en\",\"2397\":\"en\",\"2398\":\"en\",\"2399\":\"en\",\"2400\":\"en\",\"2401\":\"en\",\"2402\":\"en\",\"2403\":\"en\",\"2404\":\"en\",\"2405\":\"en\",\"2406\":\"en\",\"2407\":\"en\",\"2408\":\"en\",\"2409\":\"en\",\"2410\":\"en\",\"2411\":\"en\",\"2412\":\"en\",\"2413\":\"en\",\"2414\":\"en\",\"2415\":\"en\",\"2416\":\"en\",\"2417\":\"en\",\"2418\":\"en\",\"2419\":\"en\",\"2420\":\"en\",\"2421\":\"en\",\"2422\":\"en\",\"2423\":\"en\",\"2424\":\"en\",\"2425\":\"en\",\"2426\":\"en\",\"2427\":\"en\",\"2428\":\"en\",\"2429\":\"en\",\"2430\":\"en\",\"2431\":\"en\",\"2432\":\"en\",\"2433\":\"en\",\"2434\":\"en\",\"2435\":\"en\",\"2436\":\"en\",\"2437\":\"en\",\"2438\":\"en\",\"2439\":\"en\",\"2440\":\"en\",\"2441\":\"en\",\"2442\":\"en\",\"2443\":\"en\",\"2444\":\"en\",\"2445\":\"en\",\"2446\":\"en\",\"2447\":\"en\",\"2448\":\"en\",\"2449\":\"en\",\"2450\":\"en\",\"2451\":\"en\",\"2452\":\"en\",\"2453\":\"en\",\"2454\":\"en\",\"2455\":\"en\",\"2456\":\"en\",\"2457\":\"en\",\"2458\":\"en\",\"2459\":\"en\",\"2460\":\"en\",\"2461\":\"en\",\"2462\":\"en\",\"2463\":\"en\",\"2464\":\"en\",\"2465\":\"en\",\"2466\":\"en\",\"2467\":\"en\",\"2468\":\"en\",\"2469\":\"en\",\"2470\":\"en\",\"2471\":\"en\",\"2472\":\"en\",\"2473\":\"en\",\"2474\":\"en\",\"2475\":\"en\",\"2476\":\"en\",\"2477\":\"en\",\"2478\":\"en\",\"2479\":\"en\",\"2480\":\"en\",\"2481\":\"en\",\"2482\":\"en\",\"2483\":\"en\",\"2484\":\"en\",\"2485\":\"en\",\"2486\":\"en\",\"2487\":\"en\",\"2488\":\"en\",\"2489\":\"en\",\"2490\":\"en\",\"2491\":\"en\",\"2492\":\"en\",\"2493\":\"en\",\"2494\":\"en\",\"2495\":\"en\",\"2496\":\"en\",\"2497\":\"en\",\"2498\":\"en\",\"2499\":\"en\",\"2500\":\"en\",\"2501\":\"en\",\"2502\":\"en\",\"2503\":\"en\",\"2504\":\"en\",\"2505\":\"en\",\"2506\":\"en\",\"2507\":\"en\",\"2508\":\"en\",\"2509\":\"en\",\"2510\":\"en\",\"2511\":\"en\",\"2512\":\"en\",\"2513\":\"en\",\"2514\":\"en\",\"2515\":\"en\",\"2516\":\"en\",\"2517\":\"en\",\"2518\":\"en\",\"2519\":\"en\",\"2520\":\"en\",\"2521\":\"en\",\"2522\":\"en\",\"2523\":\"en\",\"2524\":\"en\",\"2525\":\"en\",\"2526\":\"en\",\"2527\":\"en\",\"2528\":\"en\",\"2529\":\"en\",\"2530\":\"en\",\"2531\":\"en\",\"2532\":\"en\",\"2533\":\"en\",\"2534\":\"en\",\"2535\":\"en\",\"2536\":\"en\",\"2537\":\"en\",\"2538\":\"en\",\"2539\":\"en\",\"2540\":\"en\",\"2541\":\"en\",\"2542\":\"en\",\"2543\":\"en\",\"2544\":\"en\",\"2545\":\"en\",\"2546\":\"en\",\"2547\":\"en\",\"2548\":\"en\",\"2549\":\"en\",\"2550\":\"en\",\"2551\":\"en\",\"2552\":\"en\",\"2553\":\"en\",\"2554\":\"en\",\"2555\":\"en\",\"2556\":\"en\",\"2557\":\"en\",\"2558\":\"en\",\"2559\":\"en\",\"2560\":\"en\",\"2561\":\"en\",\"2562\":\"en\",\"2563\":\"en\",\"2564\":\"en\",\"2565\":\"en\",\"2566\":\"en\",\"2567\":\"en\",\"2568\":\"en\",\"2569\":\"en\",\"2570\":\"en\",\"2571\":\"en\",\"2572\":\"en\",\"2573\":\"en\",\"2574\":\"en\",\"2575\":\"en\",\"2576\":\"en\",\"2577\":\"en\",\"2578\":\"en\",\"2579\":\"en\",\"2580\":\"en\",\"2581\":\"en\",\"2582\":\"en\",\"2583\":\"en\",\"2584\":\"en\",\"2585\":\"en\",\"2586\":\"en\",\"2587\":\"en\",\"2588\":\"en\",\"2589\":\"en\",\"2590\":\"en\",\"2591\":\"en\",\"2592\":\"en\",\"2593\":\"en\",\"2594\":\"en\",\"2595\":\"en\",\"2596\":\"en\",\"2597\":\"en\",\"2598\":\"en\",\"2599\":\"en\",\"2600\":\"en\",\"2601\":\"en\",\"2602\":\"en\",\"2603\":\"en\",\"2604\":\"en\",\"2605\":\"en\",\"2606\":\"en\",\"2607\":\"en\",\"2608\":\"en\",\"2609\":\"en\",\"2610\":\"en\",\"2611\":\"en\",\"2612\":\"en\",\"2613\":\"en\",\"2614\":\"en\",\"2615\":\"en\",\"2616\":\"en\",\"2617\":\"en\",\"2618\":\"en\",\"2619\":\"en\",\"2620\":\"en\",\"2621\":\"en\",\"2622\":\"en\",\"2623\":\"en\",\"2624\":\"en\",\"2625\":\"en\",\"2626\":\"en\",\"2627\":\"en\",\"2628\":\"en\",\"2629\":\"en\",\"2630\":\"en\",\"2631\":\"en\",\"2632\":\"en\",\"2633\":\"en\",\"2634\":\"en\",\"2635\":\"en\",\"2636\":\"en\",\"2637\":\"en\",\"2638\":\"en\",\"2639\":\"en\",\"2640\":\"en\",\"2641\":\"en\",\"2642\":\"en\",\"2643\":\"en\",\"2644\":\"en\",\"2645\":\"en\",\"2646\":\"en\",\"2647\":\"en\",\"2648\":\"en\",\"2649\":\"en\",\"2650\":\"en\",\"2651\":\"en\",\"2652\":\"en\",\"2653\":\"en\",\"2654\":\"en\",\"2655\":\"en\",\"2656\":\"en\",\"2657\":\"en\",\"2658\":\"en\",\"2659\":\"en\",\"2660\":\"en\",\"2661\":\"en\",\"2662\":\"en\",\"2663\":\"en\",\"2664\":\"en\",\"2665\":\"en\",\"2666\":\"en\",\"2667\":\"en\",\"2668\":\"en\",\"2669\":\"en\",\"2670\":\"en\",\"2671\":\"en\",\"2672\":\"en\",\"2673\":\"en\",\"2674\":\"en\",\"2675\":\"en\",\"2676\":\"en\",\"2677\":\"en\",\"2678\":\"en\",\"2679\":\"en\",\"2680\":\"en\",\"2681\":\"en\",\"2682\":\"en\",\"2683\":\"en\",\"2684\":\"en\",\"2685\":\"en\",\"2686\":\"en\",\"2687\":\"en\",\"2688\":\"en\",\"2689\":\"en\",\"2690\":\"en\",\"2691\":\"en\",\"2692\":\"en\",\"2693\":\"en\",\"2694\":\"en\",\"2695\":\"en\",\"2696\":\"en\",\"2697\":\"en\",\"2698\":\"en\",\"2699\":\"en\",\"2700\":\"en\",\"2701\":\"en\",\"2702\":\"en\",\"2703\":\"en\",\"2704\":\"en\",\"2705\":\"en\",\"2706\":\"en\",\"2707\":\"en\",\"2708\":\"en\",\"2709\":\"en\",\"2710\":\"en\",\"2711\":\"en\",\"2712\":\"en\",\"2713\":\"en\",\"2714\":\"en\",\"2715\":\"en\",\"2716\":\"en\",\"2717\":\"en\",\"2718\":\"en\",\"2719\":\"en\",\"2720\":\"en\",\"2721\":\"en\",\"2722\":\"en\",\"2723\":\"en\",\"2724\":\"en\",\"2725\":\"en\",\"2726\":\"en\",\"2727\":\"en\",\"2728\":\"en\",\"2729\":\"en\",\"2730\":\"en\",\"2731\":\"en\",\"2732\":\"en\",\"2733\":\"en\",\"2734\":\"en\",\"2735\":\"en\",\"2736\":\"en\",\"2737\":\"en\",\"2738\":\"en\",\"2739\":\"en\",\"2740\":\"en\",\"2741\":\"en\",\"2742\":\"en\",\"2743\":\"en\",\"2744\":\"en\",\"2745\":\"en\",\"2746\":\"en\",\"2747\":\"en\",\"2748\":\"en\",\"2749\":\"en\",\"2750\":\"en\",\"2751\":\"en\",\"2752\":\"en\",\"2753\":\"en\",\"2754\":\"en\",\"2755\":\"en\",\"2756\":\"en\",\"2757\":\"en\",\"2758\":\"en\",\"2759\":\"en\",\"2760\":\"en\",\"2761\":\"en\",\"2762\":\"en\",\"2763\":\"en\",\"2764\":\"en\",\"2765\":\"en\",\"2766\":\"en\",\"2767\":\"en\",\"2768\":\"en\",\"2769\":\"en\",\"2770\":\"en\",\"2771\":\"en\",\"2772\":\"en\",\"2773\":\"en\",\"2774\":\"en\",\"2775\":\"en\",\"2776\":\"en\",\"2777\":\"en\",\"2778\":\"en\",\"2779\":\"en\",\"2780\":\"en\",\"2781\":\"en\",\"2782\":\"en\",\"2783\":\"en\",\"2784\":\"en\",\"2785\":\"en\",\"2786\":\"en\",\"2787\":\"en\",\"2788\":\"en\",\"2789\":\"en\",\"2790\":\"en\",\"2791\":\"en\",\"2792\":\"en\",\"2793\":\"en\",\"2794\":\"en\",\"2795\":\"en\",\"2796\":\"en\",\"2797\":\"en\",\"2798\":\"en\",\"2799\":\"en\",\"2800\":\"en\",\"2801\":\"en\",\"2802\":\"en\",\"2803\":\"en\",\"2804\":\"en\",\"2805\":\"en\",\"2806\":\"en\",\"2807\":\"en\",\"2808\":\"en\",\"2809\":\"en\",\"2810\":\"en\",\"2811\":\"en\",\"2812\":\"en\",\"2813\":\"en\",\"2814\":\"en\",\"2815\":\"en\",\"2816\":\"en\",\"2817\":\"en\",\"2818\":\"en\",\"2819\":\"en\",\"2820\":\"en\",\"2821\":\"en\",\"2822\":\"en\",\"2823\":\"en\",\"2824\":\"en\",\"2825\":\"en\",\"2826\":\"en\",\"2827\":\"en\",\"2828\":\"en\",\"2829\":\"en\",\"2830\":\"en\",\"2831\":\"en\",\"2832\":\"en\",\"2833\":\"en\",\"2834\":\"en\",\"2835\":\"en\",\"2836\":\"en\",\"2837\":\"en\",\"2838\":\"en\",\"2839\":\"en\",\"2840\":\"en\",\"2841\":\"en\",\"2842\":\"en\",\"2843\":\"en\",\"2844\":\"en\",\"2845\":\"en\",\"2846\":\"en\",\"2847\":\"en\",\"2848\":\"en\",\"2849\":\"en\",\"2850\":\"en\",\"2851\":\"en\",\"2852\":\"en\",\"2853\":\"en\",\"2854\":\"en\",\"2855\":\"en\",\"2856\":\"en\",\"2857\":\"en\",\"2858\":\"en\",\"2859\":\"en\",\"2860\":\"en\",\"2861\":\"en\",\"2862\":\"en\",\"2863\":\"en\",\"2864\":\"en\",\"2865\":\"en\",\"2866\":\"en\",\"2867\":\"en\",\"2868\":\"en\",\"2869\":\"en\",\"2870\":\"en\",\"2871\":\"en\",\"2872\":\"en\",\"2873\":\"en\",\"2874\":\"en\",\"2875\":\"en\",\"2876\":\"en\",\"2877\":\"en\",\"2878\":\"en\",\"2879\":\"en\",\"2880\":\"en\",\"2881\":\"en\",\"2882\":\"en\",\"2883\":\"en\",\"2884\":\"en\",\"2885\":\"en\",\"2886\":\"en\",\"2887\":\"en\",\"2888\":\"en\",\"2889\":\"en\",\"2890\":\"en\",\"2891\":\"en\",\"2892\":\"en\",\"2893\":\"en\",\"2894\":\"en\",\"2895\":\"en\",\"2896\":\"en\",\"2897\":\"en\",\"2898\":\"en\",\"2899\":\"en\",\"2900\":\"en\",\"2901\":\"en\",\"2902\":\"en\",\"2903\":\"en\",\"2904\":\"en\",\"2905\":\"en\",\"2906\":\"en\",\"2907\":\"en\",\"2908\":\"en\",\"2909\":\"en\",\"2910\":\"en\",\"2911\":\"en\",\"2912\":\"en\",\"2913\":\"en\",\"2914\":\"en\",\"2915\":\"en\",\"2916\":\"en\",\"2917\":\"en\",\"2918\":\"en\",\"2919\":\"en\",\"2920\":\"en\",\"2921\":\"en\",\"2922\":\"en\",\"2923\":\"en\",\"2924\":\"en\",\"2925\":\"en\",\"2926\":\"en\",\"2927\":\"en\",\"2928\":\"en\",\"2929\":\"en\",\"2930\":\"en\",\"2931\":\"en\",\"2932\":\"en\",\"2933\":\"en\",\"2934\":\"en\",\"2935\":\"en\",\"2936\":\"en\",\"2937\":\"en\",\"2938\":\"en\",\"2939\":\"en\",\"2940\":\"en\",\"2941\":\"en\",\"2942\":\"en\",\"2943\":\"en\",\"2944\":\"en\",\"2945\":\"en\",\"2946\":\"en\",\"2947\":\"en\",\"2948\":\"en\",\"2949\":\"en\",\"2950\":\"en\",\"2951\":\"en\",\"2952\":\"en\",\"2953\":\"en\",\"2954\":\"en\",\"2955\":\"en\",\"2956\":\"en\",\"2957\":\"en\",\"2958\":\"en\",\"2959\":\"en\",\"2960\":\"en\",\"2961\":\"en\",\"2962\":\"en\",\"2963\":\"en\",\"2964\":\"en\",\"2965\":\"en\",\"2966\":\"en\",\"2967\":\"en\",\"2968\":\"en\",\"2969\":\"en\",\"2970\":\"en\",\"2971\":\"en\",\"2972\":\"en\",\"2973\":\"en\",\"2974\":\"en\",\"2975\":\"en\",\"2976\":\"en\",\"2977\":\"en\",\"2978\":\"en\",\"2979\":\"en\",\"2980\":\"en\",\"2981\":\"en\",\"2982\":\"en\",\"2983\":\"en\",\"2984\":\"en\",\"2985\":\"en\",\"2986\":\"en\",\"2987\":\"en\",\"2988\":\"en\",\"2989\":\"en\",\"2990\":\"en\",\"2991\":\"en\",\"2992\":\"en\",\"2993\":\"en\",\"2994\":\"en\",\"2995\":\"en\",\"2996\":\"en\",\"2997\":\"en\",\"2998\":\"en\",\"2999\":\"en\",\"3000\":\"en\",\"3001\":\"en\",\"3002\":\"en\",\"3003\":\"en\",\"3004\":\"en\",\"3005\":\"en\",\"3006\":\"en\",\"3007\":\"en\",\"3008\":\"en\",\"3009\":\"en\",\"3010\":\"en\",\"3011\":\"en\",\"3012\":\"en\",\"3013\":\"en\",\"3014\":\"en\",\"3015\":\"en\",\"3016\":\"en\",\"3017\":\"en\",\"3018\":\"en\",\"3019\":\"en\",\"3020\":\"en\",\"3021\":\"en\",\"3022\":\"en\",\"3023\":\"en\",\"3024\":\"en\",\"3025\":\"en\",\"3026\":\"en\",\"3027\":\"en\",\"3028\":\"en\",\"3029\":\"en\",\"3030\":\"en\",\"3031\":\"en\",\"3032\":\"en\",\"3033\":\"en\",\"3034\":\"en\",\"3035\":\"en\",\"3036\":\"en\",\"3037\":\"en\",\"3038\":\"en\",\"3039\":\"en\",\"3040\":\"en\",\"3041\":\"en\",\"3042\":\"en\",\"3043\":\"en\",\"3044\":\"en\",\"3045\":\"en\",\"3046\":\"en\",\"3047\":\"en\",\"3048\":\"en\",\"3049\":\"en\",\"3050\":\"en\",\"3051\":\"en\",\"3052\":\"en\",\"3053\":\"en\",\"3054\":\"en\",\"3055\":\"en\",\"3056\":\"en\",\"3057\":\"en\",\"3058\":\"en\",\"3059\":\"en\",\"3060\":\"en\",\"3061\":\"en\",\"3062\":\"en\",\"3063\":\"en\",\"3064\":\"en\",\"3065\":\"en\",\"3066\":\"en\",\"3067\":\"en\",\"3068\":\"en\",\"3069\":\"en\",\"3070\":\"en\",\"3071\":\"en\",\"3072\":\"en\",\"3073\":\"en\",\"3074\":\"en\",\"3075\":\"en\",\"3076\":\"en\",\"3077\":\"en\",\"3078\":\"en\",\"3079\":\"en\",\"3080\":\"en\",\"3081\":\"en\",\"3082\":\"en\",\"3083\":\"en\",\"3084\":\"en\",\"3085\":\"en\",\"3086\":\"en\",\"3087\":\"en\",\"3088\":\"en\",\"3089\":\"en\",\"3090\":\"en\",\"3091\":\"en\",\"3092\":\"en\",\"3093\":\"en\",\"3094\":\"en\",\"3095\":\"en\",\"3096\":\"en\",\"3097\":\"en\",\"3098\":\"en\",\"3099\":\"en\",\"3100\":\"en\",\"3101\":\"en\",\"3102\":\"en\",\"3103\":\"en\",\"3104\":\"en\",\"3105\":\"en\",\"3106\":\"en\",\"3107\":\"en\",\"3108\":\"en\",\"3109\":\"en\",\"3110\":\"en\",\"3111\":\"en\",\"3112\":\"en\",\"3113\":\"en\",\"3114\":\"en\",\"3115\":\"en\",\"3116\":\"en\",\"3117\":\"en\",\"3118\":\"en\",\"3119\":\"en\",\"3120\":\"en\",\"3121\":\"en\",\"3122\":\"en\",\"3123\":\"en\",\"3124\":\"en\",\"3125\":\"en\",\"3126\":\"en\",\"3127\":\"en\",\"3128\":\"en\",\"3129\":\"en\",\"3130\":\"en\",\"3131\":\"en\",\"3132\":\"en\",\"3133\":\"en\",\"3134\":\"en\",\"3135\":\"en\",\"3136\":\"en\",\"3137\":\"en\",\"3138\":\"en\",\"3139\":\"en\",\"3140\":\"en\",\"3141\":\"en\",\"3142\":\"en\",\"3143\":\"en\",\"3144\":\"en\",\"3145\":\"en\",\"3146\":\"en\",\"3147\":\"en\",\"3148\":\"en\",\"3149\":\"en\",\"3150\":\"en\",\"3151\":\"en\",\"3152\":\"en\",\"3153\":\"en\",\"3154\":\"en\",\"3155\":\"en\",\"3156\":\"en\",\"3157\":\"en\",\"3158\":\"en\",\"3159\":\"en\",\"3160\":\"en\",\"3161\":\"en\",\"3162\":\"en\",\"3163\":\"en\",\"3164\":\"en\",\"3165\":\"en\",\"3166\":\"en\",\"3167\":\"en\",\"3168\":\"en\",\"3169\":\"en\",\"3170\":\"en\",\"3171\":\"en\",\"3172\":\"en\",\"3173\":\"en\",\"3174\":\"en\",\"3175\":\"en\",\"3176\":\"en\",\"3177\":\"en\",\"3178\":\"en\",\"3179\":\"en\",\"3180\":\"en\",\"3181\":\"en\",\"3182\":\"en\",\"3183\":\"en\",\"3184\":\"en\",\"3185\":\"en\",\"3186\":\"en\",\"3187\":\"en\",\"3188\":\"en\",\"3189\":\"en\",\"3190\":\"en\",\"3191\":\"en\",\"3192\":\"en\",\"3193\":\"en\",\"3194\":\"en\",\"3195\":\"en\",\"3196\":\"en\",\"3197\":\"en\",\"3198\":\"en\",\"3199\":\"en\",\"3200\":\"en\",\"3201\":\"en\",\"3202\":\"en\",\"3203\":\"en\",\"3204\":\"en\",\"3205\":\"en\",\"3206\":\"en\",\"3207\":\"en\",\"3208\":\"en\",\"3209\":\"en\",\"3210\":\"en\",\"3211\":\"en\",\"3212\":\"en\",\"3213\":\"en\",\"3214\":\"en\",\"3215\":\"en\",\"3216\":\"en\",\"3217\":\"en\",\"3218\":\"en\",\"3219\":\"en\",\"3220\":\"en\",\"3221\":\"en\",\"3222\":\"en\",\"3223\":\"en\",\"3224\":\"en\",\"3225\":\"en\",\"3226\":\"en\",\"3227\":\"en\",\"3228\":\"en\",\"3229\":\"en\",\"3230\":\"en\",\"3231\":\"en\",\"3232\":\"en\",\"3233\":\"en\",\"3234\":\"en\",\"3235\":\"en\",\"3236\":\"en\",\"3237\":\"en\",\"3238\":\"en\",\"3239\":\"en\",\"3240\":\"en\",\"3241\":\"en\",\"3242\":\"en\",\"3243\":\"en\",\"3244\":\"en\",\"3245\":\"en\",\"3246\":\"en\",\"3247\":\"en\",\"3248\":\"en\",\"3249\":\"en\",\"3250\":\"en\",\"3251\":\"en\",\"3252\":\"en\",\"3253\":\"en\",\"3254\":\"en\",\"3255\":\"en\",\"3256\":\"en\",\"3257\":\"en\",\"3258\":\"en\",\"3259\":\"en\",\"3260\":\"en\",\"3261\":\"en\",\"3262\":\"en\",\"3263\":\"en\",\"3264\":\"en\",\"3265\":\"en\",\"3266\":\"en\",\"3267\":\"en\",\"3268\":\"en\",\"3269\":\"en\",\"3270\":\"en\",\"3271\":\"en\",\"3272\":\"en\",\"3273\":\"en\",\"3274\":\"en\",\"3275\":\"en\",\"3276\":\"en\",\"3277\":\"en\",\"3278\":\"en\",\"3279\":\"en\",\"3280\":\"en\",\"3281\":\"en\",\"3282\":\"en\",\"3283\":\"en\",\"3284\":\"en\",\"3285\":\"en\",\"3286\":\"en\",\"3287\":\"en\",\"3288\":\"en\",\"3289\":\"en\",\"3290\":\"en\",\"3291\":\"en\",\"3292\":\"en\",\"3293\":\"en\",\"3294\":\"en\",\"3295\":\"en\",\"3296\":\"en\",\"3297\":\"en\",\"3298\":\"en\",\"3299\":\"en\",\"3300\":\"en\",\"3301\":\"en\",\"3302\":\"en\",\"3303\":\"en\",\"3304\":\"en\",\"3305\":\"en\",\"3306\":\"en\",\"3307\":\"en\",\"3308\":\"en\",\"3309\":\"en\",\"3310\":\"en\",\"3311\":\"en\",\"3312\":\"en\",\"3313\":\"en\",\"3314\":\"en\",\"3315\":\"en\",\"3316\":\"en\",\"3317\":\"en\",\"3318\":\"en\",\"3319\":\"en\",\"3320\":\"en\",\"3321\":\"en\",\"3322\":\"en\",\"3323\":\"en\",\"3324\":\"en\",\"3325\":\"en\",\"3326\":\"en\",\"3327\":\"en\",\"3328\":\"en\",\"3329\":\"en\",\"3330\":\"en\",\"3331\":\"en\",\"3332\":\"en\",\"3333\":\"en\",\"3334\":\"en\",\"3335\":\"en\",\"3336\":\"en\",\"3337\":\"en\",\"3338\":\"en\",\"3339\":\"en\",\"3340\":\"en\",\"3341\":\"en\",\"3342\":\"en\",\"3343\":\"en\",\"3344\":\"en\",\"3345\":\"en\",\"3346\":\"en\",\"3347\":\"en\",\"3348\":\"en\",\"3349\":\"en\",\"3350\":\"en\",\"3351\":\"en\",\"3352\":\"en\",\"3353\":\"en\",\"3354\":\"en\",\"3355\":\"en\",\"3356\":\"en\",\"3357\":\"en\",\"3358\":\"en\",\"3359\":\"en\",\"3360\":\"en\",\"3361\":\"en\",\"3362\":\"en\",\"3363\":\"en\",\"3364\":\"en\",\"3365\":\"en\",\"3366\":\"en\",\"3367\":\"en\",\"3368\":\"en\",\"3369\":\"en\",\"3370\":\"en\",\"3371\":\"en\",\"3372\":\"en\",\"3373\":\"en\",\"3374\":\"en\",\"3375\":\"en\",\"3376\":\"en\",\"3377\":\"en\",\"3378\":\"en\",\"3379\":\"en\",\"3380\":\"en\",\"3381\":\"en\",\"3382\":\"en\",\"3383\":\"en\",\"3384\":\"en\",\"3385\":\"en\",\"3386\":\"en\",\"3387\":\"en\",\"3388\":\"en\",\"3389\":\"en\",\"3390\":\"en\",\"3391\":\"en\",\"3392\":\"en\",\"3393\":\"en\",\"3394\":\"en\",\"3395\":\"en\",\"3396\":\"en\",\"3397\":\"en\",\"3398\":\"en\",\"3399\":\"en\",\"3400\":\"en\",\"3401\":\"en\",\"3402\":\"en\",\"3403\":\"en\",\"3404\":\"en\",\"3405\":\"en\",\"3406\":\"en\",\"3407\":\"en\",\"3408\":\"en\",\"3409\":\"en\",\"3410\":\"en\",\"3411\":\"en\",\"3412\":\"en\",\"3413\":\"en\",\"3414\":\"en\",\"3415\":\"en\",\"3416\":\"en\",\"3417\":\"en\",\"3418\":\"en\",\"3419\":\"en\",\"3420\":\"en\",\"3421\":\"en\",\"3422\":\"en\",\"3423\":\"en\",\"3424\":\"en\",\"3425\":\"en\",\"3426\":\"en\",\"3427\":\"en\",\"3428\":\"en\",\"3429\":\"en\",\"3430\":\"en\",\"3431\":\"en\",\"3432\":\"en\",\"3433\":\"en\",\"3434\":\"en\",\"3435\":\"en\",\"3436\":\"en\",\"3437\":\"en\",\"3438\":\"en\",\"3439\":\"en\",\"3440\":\"en\",\"3441\":\"en\",\"3442\":\"en\",\"3443\":\"en\",\"3444\":\"en\",\"3445\":\"en\",\"3446\":\"en\",\"3447\":\"en\",\"3448\":\"en\",\"3449\":\"en\",\"3450\":\"en\",\"3451\":\"en\",\"3452\":\"en\",\"3453\":\"en\",\"3454\":\"en\",\"3455\":\"en\",\"3456\":\"en\",\"3457\":\"en\",\"3458\":\"en\",\"3459\":\"en\",\"3460\":\"en\",\"3461\":\"en\",\"3462\":\"en\",\"3463\":\"en\",\"3464\":\"en\",\"3465\":\"en\",\"3466\":\"en\",\"3467\":\"en\",\"3468\":\"en\",\"3469\":\"en\",\"3470\":\"en\",\"3471\":\"en\",\"3472\":\"en\",\"3473\":\"en\",\"3474\":\"en\",\"3475\":\"en\",\"3476\":\"en\",\"3477\":\"en\",\"3478\":\"en\",\"3479\":\"en\",\"3480\":\"en\",\"3481\":\"en\",\"3482\":\"en\",\"3483\":\"en\",\"3484\":\"en\",\"3485\":\"en\",\"3486\":\"en\",\"3487\":\"en\",\"3488\":\"en\",\"3489\":\"en\",\"3490\":\"en\",\"3491\":\"en\",\"3492\":\"en\",\"3493\":\"en\",\"3494\":\"en\",\"3495\":\"en\",\"3496\":\"en\",\"3497\":\"en\",\"3498\":\"en\",\"3499\":\"en\",\"3500\":\"en\",\"3501\":\"en\",\"3502\":\"en\",\"3503\":\"en\",\"3504\":\"en\",\"3505\":\"en\",\"3506\":\"en\",\"3507\":\"en\",\"3508\":\"en\",\"3509\":\"en\",\"3510\":\"en\",\"3511\":\"en\",\"3512\":\"en\",\"3513\":\"en\",\"3514\":\"en\",\"3515\":\"en\",\"3516\":\"en\",\"3517\":\"en\",\"3518\":\"en\",\"3519\":\"en\",\"3520\":\"en\",\"3521\":\"en\",\"3522\":\"en\",\"3523\":\"en\",\"3524\":\"en\",\"3525\":\"en\",\"3526\":\"en\",\"3527\":\"en\",\"3528\":\"en\",\"3529\":\"en\",\"3530\":\"en\",\"3531\":\"en\",\"3532\":\"en\",\"3533\":\"en\",\"3534\":\"en\",\"3535\":\"en\",\"3536\":\"en\",\"3537\":\"en\",\"3538\":\"en\",\"3539\":\"en\",\"3540\":\"en\",\"3541\":\"en\",\"3542\":\"en\",\"3543\":\"en\",\"3544\":\"en\",\"3545\":\"en\",\"3546\":\"en\",\"3547\":\"en\",\"3548\":\"en\",\"3549\":\"en\",\"3550\":\"en\",\"3551\":\"en\",\"3552\":\"en\",\"3553\":\"en\",\"3554\":\"en\",\"3555\":\"en\",\"3556\":\"en\",\"3557\":\"en\",\"3558\":\"en\",\"3559\":\"en\",\"3560\":\"en\",\"3561\":\"en\",\"3562\":\"en\",\"3563\":\"en\",\"3564\":\"en\",\"3565\":\"en\",\"3566\":\"en\",\"3567\":\"en\",\"3568\":\"en\",\"3569\":\"en\",\"3570\":\"en\",\"3571\":\"en\",\"3572\":\"en\",\"3573\":\"en\",\"3574\":\"en\",\"3575\":\"en\",\"3576\":\"en\",\"3577\":\"en\",\"3578\":\"en\",\"3579\":\"en\",\"3580\":\"en\",\"3581\":\"en\",\"3582\":\"en\",\"3583\":\"en\",\"3584\":\"en\",\"3585\":\"en\",\"3586\":\"en\",\"3587\":\"en\",\"3588\":\"en\",\"3589\":\"en\",\"3590\":\"en\",\"3591\":\"en\",\"3592\":\"en\",\"3593\":\"en\",\"3594\":\"en\",\"3595\":\"en\",\"3596\":\"en\",\"3597\":\"en\",\"3598\":\"en\",\"3599\":\"en\",\"3600\":\"en\",\"3601\":\"en\",\"3602\":\"en\",\"3603\":\"en\",\"3604\":\"en\",\"3605\":\"en\",\"3606\":\"en\",\"3607\":\"en\",\"3608\":\"en\",\"3609\":\"en\",\"3610\":\"en\",\"3611\":\"en\",\"3612\":\"en\",\"3613\":\"en\",\"3614\":\"en\",\"3615\":\"en\",\"3616\":\"en\",\"3617\":\"en\",\"3618\":\"en\",\"3619\":\"en\",\"3620\":\"en\",\"3621\":\"en\",\"3622\":\"en\",\"3623\":\"en\",\"3624\":\"en\",\"3625\":\"en\",\"3626\":\"en\",\"3627\":\"en\",\"3628\":\"en\",\"3629\":\"en\",\"3630\":\"en\",\"3631\":\"en\",\"3632\":\"en\",\"3633\":\"en\",\"3634\":\"en\",\"3635\":\"en\",\"3636\":\"en\",\"3637\":\"en\",\"3638\":\"en\",\"3639\":\"en\",\"3640\":\"en\",\"3641\":\"en\",\"3642\":\"en\",\"3643\":\"en\",\"3644\":\"en\",\"3645\":\"en\",\"3646\":\"en\",\"3647\":\"en\",\"3648\":\"en\",\"3649\":\"en\",\"3650\":\"en\",\"3651\":\"en\",\"3652\":\"en\",\"3653\":\"en\",\"3654\":\"en\",\"3655\":\"en\",\"3656\":\"en\",\"3657\":\"en\",\"3658\":\"en\",\"3659\":\"en\",\"3660\":\"en\",\"3661\":\"en\",\"3662\":\"en\",\"3663\":\"en\",\"3664\":\"en\",\"3665\":\"en\",\"3666\":\"en\",\"3667\":\"en\",\"3668\":\"en\",\"3669\":\"en\",\"3670\":\"en\",\"3671\":\"en\",\"3672\":\"en\",\"3673\":\"en\",\"3674\":\"en\",\"3675\":\"en\",\"3676\":\"en\",\"3677\":\"en\",\"3678\":\"en\",\"3679\":\"en\",\"3680\":\"en\",\"3681\":\"en\",\"3682\":\"en\",\"3683\":\"en\",\"3684\":\"en\",\"3685\":\"en\",\"3686\":\"en\",\"3687\":\"en\",\"3688\":\"en\",\"3689\":\"en\",\"3690\":\"en\",\"3691\":\"en\",\"3692\":\"en\",\"3693\":\"en\",\"3694\":\"en\",\"3695\":\"en\",\"3696\":\"en\",\"3697\":\"en\",\"3698\":\"en\",\"3699\":\"en\",\"3700\":\"en\",\"3701\":\"en\",\"3702\":\"en\",\"3703\":\"en\",\"3704\":\"en\",\"3705\":\"en\",\"3706\":\"en\",\"3707\":\"en\",\"3708\":\"en\",\"3709\":\"en\",\"3710\":\"en\",\"3711\":\"en\",\"3712\":\"en\",\"3713\":\"en\",\"3714\":\"en\",\"3715\":\"en\",\"3716\":\"en\",\"3717\":\"en\",\"3718\":\"en\",\"3719\":\"en\",\"3720\":\"en\",\"3721\":\"en\",\"3722\":\"en\",\"3723\":\"en\",\"3724\":\"en\",\"3725\":\"en\",\"3726\":\"en\",\"3727\":\"en\",\"3728\":\"en\",\"3729\":\"en\",\"3730\":\"en\",\"3731\":\"en\",\"3732\":\"en\",\"3733\":\"en\",\"3734\":\"en\",\"3735\":\"en\",\"3736\":\"en\",\"3737\":\"en\",\"3738\":\"en\",\"3739\":\"en\",\"3740\":\"en\",\"3741\":\"en\",\"3742\":\"en\",\"3743\":\"en\",\"3744\":\"en\",\"3745\":\"en\",\"3746\":\"en\",\"3747\":\"en\",\"3748\":\"en\",\"3749\":\"en\",\"3750\":\"en\",\"3751\":\"en\",\"3752\":\"en\",\"3753\":\"en\",\"3754\":\"en\",\"3755\":\"en\",\"3756\":\"en\",\"3757\":\"en\",\"3758\":\"en\",\"3759\":\"en\",\"3760\":\"en\",\"3761\":\"en\",\"3762\":\"en\",\"3763\":\"en\",\"3764\":\"en\",\"3765\":\"en\",\"3766\":\"en\",\"3767\":\"en\",\"3768\":\"en\",\"3769\":\"en\",\"3770\":\"en\",\"3771\":\"en\",\"3772\":\"en\",\"3773\":\"en\",\"3774\":\"en\",\"3775\":\"en\",\"3776\":\"en\",\"3777\":\"en\",\"3778\":\"en\",\"3779\":\"en\",\"3780\":\"en\",\"3781\":\"en\",\"3782\":\"en\",\"3783\":\"en\",\"3784\":\"en\",\"3785\":\"en\",\"3786\":\"en\",\"3787\":\"en\",\"3788\":\"en\",\"3789\":\"en\",\"3790\":\"en\",\"3791\":\"en\",\"3792\":\"en\",\"3793\":\"en\",\"3794\":\"en\",\"3795\":\"en\",\"3796\":\"en\",\"3797\":\"en\",\"3798\":\"en\",\"3799\":\"en\",\"3800\":\"en\",\"3801\":\"en\",\"3802\":\"en\",\"3803\":\"en\",\"3804\":\"en\",\"3805\":\"en\",\"3806\":\"en\",\"3807\":\"en\",\"3808\":\"en\",\"3809\":\"en\",\"3810\":\"en\",\"3811\":\"en\",\"3812\":\"en\",\"3813\":\"en\",\"3814\":\"en\",\"3815\":\"en\",\"3816\":\"en\",\"3817\":\"en\",\"3818\":\"en\",\"3819\":\"en\",\"3820\":\"en\",\"3821\":\"en\",\"3822\":\"en\",\"3823\":\"en\",\"3824\":\"en\",\"3825\":\"en\",\"3826\":\"en\",\"3827\":\"en\",\"3828\":\"en\",\"3829\":\"en\",\"3830\":\"en\",\"3831\":\"en\",\"3832\":\"en\",\"3833\":\"en\",\"3834\":\"en\",\"3835\":\"en\",\"3836\":\"en\",\"3837\":\"en\",\"3838\":\"en\",\"3839\":\"en\",\"3840\":\"en\",\"3841\":\"en\",\"3842\":\"en\",\"3843\":\"en\",\"3844\":\"en\",\"3845\":\"en\",\"3846\":\"en\",\"3847\":\"en\",\"3848\":\"en\",\"3849\":\"en\",\"3850\":\"en\",\"3851\":\"en\",\"3852\":\"en\",\"3853\":\"en\",\"3854\":\"en\",\"3855\":\"en\",\"3856\":\"en\",\"3857\":\"en\",\"3858\":\"en\",\"3859\":\"en\",\"3860\":\"en\",\"3861\":\"en\",\"3862\":\"en\",\"3863\":\"en\",\"3864\":\"en\",\"3865\":\"en\",\"3866\":\"en\",\"3867\":\"en\",\"3868\":\"en\",\"3869\":\"en\",\"3870\":\"en\",\"3871\":\"en\",\"3872\":\"en\",\"3873\":\"en\",\"3874\":\"en\",\"3875\":\"en\",\"3876\":\"en\",\"3877\":\"en\",\"3878\":\"en\",\"3879\":\"en\",\"3880\":\"en\",\"3881\":\"en\",\"3882\":\"en\",\"3883\":\"en\",\"3884\":\"en\",\"3885\":\"en\",\"3886\":\"en\",\"3887\":\"en\",\"3888\":\"en\",\"3889\":\"en\",\"3890\":\"en\",\"3891\":\"en\",\"3892\":\"en\",\"3893\":\"en\",\"3894\":\"en\",\"3895\":\"en\",\"3896\":\"en\",\"3897\":\"en\",\"3898\":\"en\",\"3899\":\"en\",\"3900\":\"en\",\"3901\":\"en\",\"3902\":\"en\",\"3903\":\"en\",\"3904\":\"en\",\"3905\":\"en\",\"3906\":\"en\",\"3907\":\"en\",\"3908\":\"en\",\"3909\":\"en\",\"3910\":\"en\",\"3911\":\"en\",\"3912\":\"en\",\"3913\":\"en\",\"3914\":\"en\",\"3915\":\"en\",\"3916\":\"en\",\"3917\":\"en\",\"3918\":\"en\",\"3919\":\"en\",\"3920\":\"en\",\"3921\":\"en\",\"3922\":\"en\",\"3923\":\"en\",\"3924\":\"en\",\"3925\":\"en\",\"3926\":\"en\",\"3927\":\"en\",\"3928\":\"en\",\"3929\":\"en\",\"3930\":\"en\",\"3931\":\"en\",\"3932\":\"en\",\"3933\":\"en\",\"3934\":\"en\",\"3935\":\"en\",\"3936\":\"en\",\"3937\":\"en\",\"3938\":\"en\",\"3939\":\"en\",\"3940\":\"en\",\"3941\":\"en\",\"3942\":\"en\",\"3943\":\"en\",\"3944\":\"en\",\"3945\":\"en\",\"3946\":\"en\",\"3947\":\"en\",\"3948\":\"en\",\"3949\":\"en\",\"3950\":\"en\",\"3951\":\"en\",\"3952\":\"en\",\"3953\":\"en\",\"3954\":\"en\",\"3955\":\"en\",\"3956\":\"en\",\"3957\":\"en\",\"3958\":\"en\",\"3959\":\"en\",\"3960\":\"en\",\"3961\":\"en\",\"3962\":\"en\",\"3963\":\"en\",\"3964\":\"en\",\"3965\":\"en\",\"3966\":\"en\",\"3967\":\"en\",\"3968\":\"en\",\"3969\":\"en\",\"3970\":\"en\",\"3971\":\"en\",\"3972\":\"en\",\"3973\":\"en\",\"3974\":\"en\",\"3975\":\"en\",\"3976\":\"en\",\"3977\":\"en\",\"3978\":\"en\",\"3979\":\"en\",\"3980\":\"en\",\"3981\":\"en\",\"3982\":\"en\",\"3983\":\"en\",\"3984\":\"en\",\"3985\":\"en\",\"3986\":\"en\",\"3987\":\"en\",\"3988\":\"en\",\"3989\":\"en\",\"3990\":\"en\",\"3991\":\"en\",\"3992\":\"en\",\"3993\":\"en\",\"3994\":\"en\",\"3995\":\"en\",\"3996\":\"en\",\"3997\":\"en\",\"3998\":\"en\",\"3999\":\"en\",\"4000\":\"en\",\"4001\":\"en\",\"4002\":\"en\",\"4003\":\"en\",\"4004\":\"en\",\"4005\":\"en\",\"4006\":\"en\",\"4007\":\"en\",\"4008\":\"en\",\"4009\":\"en\",\"4010\":\"en\",\"4011\":\"en\",\"4012\":\"en\",\"4013\":\"en\",\"4014\":\"en\",\"4015\":\"en\",\"4016\":\"en\",\"4017\":\"en\",\"4018\":\"en\",\"4019\":\"en\",\"4020\":\"en\",\"4021\":\"en\",\"4022\":\"en\",\"4023\":\"en\",\"4024\":\"en\",\"4025\":\"en\",\"4026\":\"en\",\"4027\":\"en\",\"4028\":\"en\",\"4029\":\"en\",\"4030\":\"en\",\"4031\":\"en\",\"4032\":\"en\",\"4033\":\"en\",\"4034\":\"en\",\"4035\":\"en\",\"4036\":\"en\",\"4037\":\"en\",\"4038\":\"en\",\"4039\":\"en\",\"4040\":\"en\",\"4041\":\"en\",\"4042\":\"en\",\"4043\":\"en\",\"4044\":\"en\",\"4045\":\"en\",\"4046\":\"en\",\"4047\":\"en\",\"4048\":\"en\",\"4049\":\"en\",\"4050\":\"en\",\"4051\":\"en\",\"4052\":\"en\",\"4053\":\"en\",\"4054\":\"en\",\"4055\":\"en\",\"4056\":\"en\",\"4057\":\"en\",\"4058\":\"en\",\"4059\":\"en\",\"4060\":\"en\",\"4061\":\"en\",\"4062\":\"en\",\"4063\":\"en\",\"4064\":\"en\",\"4065\":\"en\",\"4066\":\"en\",\"4067\":\"en\",\"4068\":\"en\",\"4069\":\"en\",\"4070\":\"en\",\"4071\":\"en\",\"4072\":\"en\",\"4073\":\"en\",\"4074\":\"en\",\"4075\":\"en\",\"4076\":\"en\",\"4077\":\"en\",\"4078\":\"en\",\"4079\":\"en\",\"4080\":\"en\",\"4081\":\"en\",\"4082\":\"en\",\"4083\":\"en\",\"4084\":\"en\",\"4085\":\"en\",\"4086\":\"en\",\"4087\":\"en\",\"4088\":\"en\",\"4089\":\"en\",\"4090\":\"en\",\"4091\":\"en\",\"4092\":\"en\",\"4093\":\"en\",\"4094\":\"en\",\"4095\":\"en\",\"4096\":\"en\",\"4097\":\"en\",\"4098\":\"en\",\"4099\":\"en\",\"4100\":\"en\",\"4101\":\"en\",\"4102\":\"en\",\"4103\":\"en\",\"4104\":\"en\",\"4105\":\"en\",\"4106\":\"en\",\"4107\":\"en\",\"4108\":\"en\",\"4109\":\"en\",\"4110\":\"en\",\"4111\":\"en\",\"4112\":\"en\",\"4113\":\"en\",\"4114\":\"en\",\"4115\":\"en\",\"4116\":\"en\",\"4117\":\"en\",\"4118\":\"en\",\"4119\":\"en\",\"4120\":\"en\",\"4121\":\"en\",\"4122\":\"en\",\"4123\":\"en\",\"4124\":\"en\",\"4125\":\"en\",\"4126\":\"en\",\"4127\":\"en\",\"4128\":\"en\",\"4129\":\"en\",\"4130\":\"en\",\"4131\":\"en\",\"4132\":\"en\",\"4133\":\"en\",\"4134\":\"en\",\"4135\":\"en\",\"4136\":\"en\",\"4137\":\"en\",\"4138\":\"en\",\"4139\":\"en\",\"4140\":\"en\",\"4141\":\"en\",\"4142\":\"en\",\"4143\":\"en\",\"4144\":\"en\",\"4145\":\"en\",\"4146\":\"en\",\"4147\":\"en\",\"4148\":\"en\",\"4149\":\"en\",\"4150\":\"en\",\"4151\":\"en\",\"4152\":\"en\",\"4153\":\"en\",\"4154\":\"en\",\"4155\":\"en\",\"4156\":\"en\",\"4157\":\"en\",\"4158\":\"en\",\"4159\":\"en\",\"4160\":\"en\",\"4161\":\"en\",\"4162\":\"en\",\"4163\":\"en\",\"4164\":\"en\",\"4165\":\"en\",\"4166\":\"en\",\"4167\":\"en\",\"4168\":\"en\",\"4169\":\"en\",\"4170\":\"en\",\"4171\":\"en\",\"4172\":\"en\",\"4173\":\"en\",\"4174\":\"en\",\"4175\":\"en\",\"4176\":\"en\",\"4177\":\"en\",\"4178\":\"en\",\"4179\":\"en\",\"4180\":\"en\",\"4181\":\"en\",\"4182\":\"en\",\"4183\":\"en\",\"4184\":\"en\",\"4185\":\"en\",\"4186\":\"en\",\"4187\":\"en\",\"4188\":\"en\",\"4189\":\"en\",\"4190\":\"en\",\"4191\":\"en\",\"4192\":\"en\",\"4193\":\"en\",\"4194\":\"en\",\"4195\":\"en\",\"4196\":\"en\",\"4197\":\"en\",\"4198\":\"en\",\"4199\":\"en\",\"4200\":\"en\",\"4201\":\"en\",\"4202\":\"en\",\"4203\":\"en\",\"4204\":\"en\",\"4205\":\"en\",\"4206\":\"en\",\"4207\":\"en\",\"4208\":\"en\",\"4209\":\"en\",\"4210\":\"en\",\"4211\":\"en\",\"4212\":\"en\",\"4213\":\"en\",\"4214\":\"en\",\"4215\":\"en\",\"4216\":\"en\",\"4217\":\"en\",\"4218\":\"en\",\"4219\":\"en\",\"4220\":\"en\",\"4221\":\"en\",\"4222\":\"en\",\"4223\":\"en\",\"4224\":\"en\",\"4225\":\"en\",\"4226\":\"en\",\"4227\":\"en\",\"4228\":\"en\",\"4229\":\"en\",\"4230\":\"en\",\"4231\":\"en\",\"4232\":\"en\",\"4233\":\"en\",\"4234\":\"en\",\"4235\":\"en\",\"4236\":\"en\",\"4237\":\"en\",\"4238\":\"en\",\"4239\":\"en\",\"4240\":\"en\",\"4241\":\"en\",\"4242\":\"en\",\"4243\":\"en\",\"4244\":\"en\",\"4245\":\"en\",\"4246\":\"en\",\"4247\":\"en\",\"4248\":\"en\",\"4249\":\"en\",\"4250\":\"en\",\"4251\":\"en\",\"4252\":\"en\",\"4253\":\"en\",\"4254\":\"en\",\"4255\":\"en\",\"4256\":\"en\",\"4257\":\"en\",\"4258\":\"en\",\"4259\":\"en\",\"4260\":\"en\",\"4261\":\"en\",\"4262\":\"en\",\"4263\":\"en\",\"4264\":\"en\",\"4265\":\"en\",\"4266\":\"en\",\"4267\":\"en\",\"4268\":\"en\",\"4269\":\"en\",\"4270\":\"en\",\"4271\":\"en\",\"4272\":\"en\",\"4273\":\"en\",\"4274\":\"en\",\"4275\":\"en\",\"4276\":\"en\",\"4277\":\"en\",\"4278\":\"en\",\"4279\":\"en\",\"4280\":\"en\",\"4281\":\"en\",\"4282\":\"en\",\"4283\":\"en\",\"4284\":\"en\",\"4285\":\"en\",\"4286\":\"en\",\"4287\":\"en\",\"4288\":\"en\",\"4289\":\"en\",\"4290\":\"en\",\"4291\":\"en\",\"4292\":\"en\",\"4293\":\"en\",\"4294\":\"en\",\"4295\":\"en\",\"4296\":\"en\",\"4297\":\"en\",\"4298\":\"en\",\"4299\":\"en\",\"4300\":\"en\",\"4301\":\"en\",\"4302\":\"en\",\"4303\":\"en\",\"4304\":\"en\",\"4305\":\"en\",\"4306\":\"en\",\"4307\":\"en\",\"4308\":\"en\",\"4309\":\"en\",\"4310\":\"en\",\"4311\":\"en\",\"4312\":\"en\",\"4313\":\"en\",\"4314\":\"en\",\"4315\":\"en\",\"4316\":\"en\",\"4317\":\"en\",\"4318\":\"en\",\"4319\":\"en\",\"4320\":\"en\",\"4321\":\"en\",\"4322\":\"en\",\"4323\":\"en\",\"4324\":\"en\",\"4325\":\"en\",\"4326\":\"en\",\"4327\":\"en\",\"4328\":\"en\",\"4329\":\"en\",\"4330\":\"en\",\"4331\":\"en\",\"4332\":\"en\",\"4333\":\"en\",\"4334\":\"en\",\"4335\":\"en\",\"4336\":\"en\",\"4337\":\"en\",\"4338\":\"en\",\"4339\":\"en\",\"4340\":\"en\",\"4341\":\"en\",\"4342\":\"en\",\"4343\":\"en\",\"4344\":\"en\",\"4345\":\"en\",\"4346\":\"en\",\"4347\":\"en\",\"4348\":\"en\",\"4349\":\"en\",\"4350\":\"en\",\"4351\":\"en\",\"4352\":\"en\",\"4353\":\"en\",\"4354\":\"en\",\"4355\":\"en\",\"4356\":\"en\",\"4357\":\"en\",\"4358\":\"en\",\"4359\":\"en\",\"4360\":\"en\",\"4361\":\"en\",\"4362\":\"en\",\"4363\":\"en\",\"4364\":\"en\",\"4365\":\"en\",\"4366\":\"en\",\"4367\":\"en\",\"4368\":\"en\",\"4369\":\"en\",\"4370\":\"en\",\"4371\":\"en\",\"4372\":\"en\",\"4373\":\"en\",\"4374\":\"en\",\"4375\":\"en\",\"4376\":\"en\",\"4377\":\"en\",\"4378\":\"en\",\"4379\":\"en\",\"4380\":\"en\",\"4381\":\"en\",\"4382\":\"en\",\"4383\":\"en\",\"4384\":\"en\",\"4385\":\"en\",\"4386\":\"en\",\"4387\":\"en\",\"4388\":\"en\",\"4389\":\"en\",\"4390\":\"en\",\"4391\":\"en\",\"4392\":\"en\",\"4393\":\"en\",\"4394\":\"en\",\"4395\":\"en\",\"4396\":\"en\",\"4397\":\"en\",\"4398\":\"en\",\"4399\":\"en\",\"4400\":\"en\",\"4401\":\"en\",\"4402\":\"en\",\"4403\":\"en\",\"4404\":\"en\",\"4405\":\"en\",\"4406\":\"en\",\"4407\":\"en\",\"4408\":\"en\",\"4409\":\"en\",\"4410\":\"en\",\"4411\":\"en\",\"4412\":\"en\",\"4413\":\"en\",\"4414\":\"en\",\"4415\":\"en\",\"4416\":\"en\",\"4417\":\"en\",\"4418\":\"en\",\"4419\":\"en\",\"4420\":\"en\",\"4421\":\"en\",\"4422\":\"en\",\"4423\":\"en\",\"4424\":\"en\",\"4425\":\"en\",\"4426\":\"en\",\"4427\":\"en\",\"4428\":\"en\",\"4429\":\"en\",\"4430\":\"en\",\"4431\":\"en\",\"4432\":\"en\",\"4433\":\"en\",\"4434\":\"en\",\"4435\":\"en\",\"4436\":\"en\",\"4437\":\"en\",\"4438\":\"en\",\"4439\":\"en\",\"4440\":\"en\",\"4441\":\"en\",\"4442\":\"en\",\"4443\":\"en\",\"4444\":\"en\",\"4445\":\"en\",\"4446\":\"en\",\"4447\":\"en\",\"4448\":\"en\",\"4449\":\"en\",\"4450\":\"en\",\"4451\":\"en\",\"4452\":\"en\",\"4453\":\"en\",\"4454\":\"en\",\"4455\":\"en\",\"4456\":\"en\",\"4457\":\"en\",\"4458\":\"en\",\"4459\":\"en\",\"4460\":\"en\",\"4461\":\"en\",\"4462\":\"en\",\"4463\":\"en\",\"4464\":\"en\",\"4465\":\"en\",\"4466\":\"en\",\"4467\":\"en\",\"4468\":\"en\",\"4469\":\"en\",\"4470\":\"en\",\"4471\":\"en\",\"4472\":\"en\",\"4473\":\"en\",\"4474\":\"en\",\"4475\":\"en\",\"4476\":\"en\",\"4477\":\"en\",\"4478\":\"en\",\"4479\":\"en\",\"4480\":\"en\",\"4481\":\"en\",\"4482\":\"en\",\"4483\":\"en\",\"4484\":\"en\",\"4485\":\"en\",\"4486\":\"en\",\"4487\":\"en\",\"4488\":\"en\",\"4489\":\"en\",\"4490\":\"en\",\"4491\":\"en\",\"4492\":\"en\",\"4493\":\"en\",\"4494\":\"en\",\"4495\":\"en\",\"4496\":\"en\",\"4497\":\"en\",\"4498\":\"en\",\"4499\":\"en\",\"4500\":\"en\",\"4501\":\"en\",\"4502\":\"en\",\"4503\":\"en\",\"4504\":\"en\",\"4505\":\"en\",\"4506\":\"en\",\"4507\":\"en\",\"4508\":\"en\",\"4509\":\"en\",\"4510\":\"en\",\"4511\":\"en\",\"4512\":\"en\",\"4513\":\"en\",\"4514\":\"en\",\"4515\":\"en\",\"4516\":\"en\",\"4517\":\"en\",\"4518\":\"en\",\"4519\":\"en\",\"4520\":\"en\",\"4521\":\"en\",\"4522\":\"en\",\"4523\":\"en\",\"4524\":\"en\",\"4525\":\"en\",\"4526\":\"en\",\"4527\":\"en\",\"4528\":\"en\",\"4529\":\"en\",\"4530\":\"en\",\"4531\":\"en\",\"4532\":\"en\",\"4533\":\"en\",\"4534\":\"en\",\"4535\":\"en\",\"4536\":\"en\",\"4537\":\"en\",\"4538\":\"en\",\"4539\":\"en\",\"4540\":\"en\",\"4541\":\"en\",\"4542\":\"en\",\"4543\":\"en\",\"4544\":\"en\",\"4545\":\"en\",\"4546\":\"en\",\"4547\":\"en\",\"4548\":\"en\",\"4549\":\"en\",\"4550\":\"en\",\"4551\":\"en\",\"4552\":\"en\",\"4553\":\"en\",\"4554\":\"en\",\"4555\":\"en\",\"4556\":\"en\",\"4557\":\"en\",\"4558\":\"en\",\"4559\":\"en\",\"4560\":\"en\",\"4561\":\"en\",\"4562\":\"en\",\"4563\":\"en\",\"4564\":\"en\",\"4565\":\"en\",\"4566\":\"en\",\"4567\":\"en\",\"4568\":\"en\",\"4569\":\"en\",\"4570\":\"en\",\"4571\":\"en\",\"4572\":\"en\",\"4573\":\"en\",\"4574\":\"en\",\"4575\":\"en\",\"4576\":\"en\",\"4577\":\"en\",\"4578\":\"en\",\"4579\":\"en\",\"4580\":\"en\",\"4581\":\"en\",\"4582\":\"en\",\"4583\":\"en\",\"4584\":\"en\",\"4585\":\"en\",\"4586\":\"en\",\"4587\":\"en\",\"4588\":\"en\",\"4589\":\"en\",\"4590\":\"en\",\"4591\":\"en\",\"4592\":\"en\",\"4593\":\"en\",\"4594\":\"en\",\"4595\":\"en\",\"4596\":\"en\",\"4597\":\"en\",\"4598\":\"en\",\"4599\":\"en\",\"4600\":\"en\",\"4601\":\"en\",\"4602\":\"en\",\"4603\":\"en\",\"4604\":\"en\",\"4605\":\"en\",\"4606\":\"en\",\"4607\":\"en\",\"4608\":\"en\",\"4609\":\"en\",\"4610\":\"en\",\"4611\":\"en\",\"4612\":\"en\",\"4613\":\"en\",\"4614\":\"en\",\"4615\":\"en\",\"4616\":\"en\",\"4617\":\"en\",\"4618\":\"en\",\"4619\":\"en\",\"4620\":\"en\",\"4621\":\"en\",\"4622\":\"en\",\"4623\":\"en\",\"4624\":\"en\",\"4625\":\"en\",\"4626\":\"en\",\"4627\":\"en\",\"4628\":\"en\",\"4629\":\"en\",\"4630\":\"en\",\"4631\":\"en\",\"4632\":\"en\",\"4633\":\"en\",\"4634\":\"en\",\"4635\":\"en\",\"4636\":\"en\",\"4637\":\"en\",\"4638\":\"en\",\"4639\":\"en\",\"4640\":\"en\",\"4641\":\"en\",\"4642\":\"en\",\"4643\":\"en\",\"4644\":\"en\",\"4645\":\"en\",\"4646\":\"en\",\"4647\":\"en\",\"4648\":\"en\",\"4649\":\"en\",\"4650\":\"en\",\"4651\":\"en\",\"4652\":\"en\",\"4653\":\"en\",\"4654\":\"en\",\"4655\":\"en\",\"4656\":\"en\",\"4657\":\"en\",\"4658\":\"en\",\"4659\":\"en\",\"4660\":\"en\",\"4661\":\"en\",\"4662\":\"en\",\"4663\":\"en\",\"4664\":\"en\",\"4665\":\"en\",\"4666\":\"en\",\"4667\":\"en\",\"4668\":\"en\",\"4669\":\"en\",\"4670\":\"en\",\"4671\":\"en\",\"4672\":\"en\",\"4673\":\"en\",\"4674\":\"en\",\"4675\":\"en\",\"4676\":\"en\",\"4677\":\"en\",\"4678\":\"en\",\"4679\":\"en\",\"4680\":\"en\",\"4681\":\"en\",\"4682\":\"en\",\"4683\":\"en\",\"4684\":\"en\",\"4685\":\"en\",\"4686\":\"en\",\"4687\":\"en\",\"4688\":\"en\",\"4689\":\"en\",\"4690\":\"en\",\"4691\":\"en\",\"4692\":\"en\",\"4693\":\"en\",\"4694\":\"en\",\"4695\":\"en\",\"4696\":\"en\",\"4697\":\"en\",\"4698\":\"en\",\"4699\":\"en\",\"4700\":\"en\",\"4701\":\"en\",\"4702\":\"en\",\"4703\":\"en\",\"4704\":\"en\",\"4705\":\"en\",\"4706\":\"en\",\"4707\":\"en\",\"4708\":\"en\",\"4709\":\"en\",\"4710\":\"en\",\"4711\":\"en\",\"4712\":\"en\",\"4713\":\"en\",\"4714\":\"en\",\"4715\":\"en\",\"4716\":\"en\",\"4717\":\"en\",\"4718\":\"en\",\"4719\":\"en\",\"4720\":\"en\",\"4721\":\"en\",\"4722\":\"en\",\"4723\":\"en\",\"4724\":\"en\",\"4725\":\"en\",\"4726\":\"en\",\"4727\":\"en\",\"4728\":\"en\",\"4729\":\"en\",\"4730\":\"en\",\"4731\":\"en\",\"4732\":\"en\",\"4733\":\"en\",\"4734\":\"en\",\"4735\":\"en\",\"4736\":\"en\",\"4737\":\"en\",\"4738\":\"en\",\"4739\":\"en\",\"4740\":\"en\",\"4741\":\"en\",\"4742\":\"en\",\"4743\":\"en\",\"4744\":\"en\",\"4745\":\"en\",\"4746\":\"en\",\"4747\":\"en\",\"4748\":\"en\",\"4749\":\"en\",\"4750\":\"en\",\"4751\":\"en\",\"4752\":\"en\",\"4753\":\"en\",\"4754\":\"en\",\"4755\":\"en\",\"4756\":\"en\",\"4757\":\"en\",\"4758\":\"en\",\"4759\":\"en\",\"4760\":\"en\",\"4761\":\"en\",\"4762\":\"en\",\"4763\":\"en\",\"4764\":\"en\",\"4765\":\"en\",\"4766\":\"en\",\"4767\":\"en\",\"4768\":\"en\",\"4769\":\"en\",\"4770\":\"en\",\"4771\":\"en\",\"4772\":\"en\",\"4773\":\"en\",\"4774\":\"en\",\"4775\":\"en\",\"4776\":\"en\",\"4777\":\"en\",\"4778\":\"en\",\"4779\":\"en\",\"4780\":\"en\",\"4781\":\"en\",\"4782\":\"en\",\"4783\":\"en\",\"4784\":\"en\",\"4785\":\"en\",\"4786\":\"en\",\"4787\":\"en\",\"4788\":\"en\",\"4789\":\"en\",\"4790\":\"en\",\"4791\":\"en\",\"4792\":\"en\",\"4793\":\"en\",\"4794\":\"en\",\"4795\":\"en\",\"4796\":\"en\",\"4797\":\"en\",\"4798\":\"en\",\"4799\":\"en\",\"4800\":\"en\",\"4801\":\"en\",\"4802\":\"en\",\"4803\":\"en\",\"4804\":\"en\",\"4805\":\"en\",\"4806\":\"en\",\"4807\":\"en\",\"4808\":\"en\",\"4809\":\"en\",\"4810\":\"en\",\"4811\":\"en\",\"4812\":\"en\",\"4813\":\"en\",\"4814\":\"en\",\"4815\":\"en\",\"4816\":\"en\",\"4817\":\"en\",\"4818\":\"en\",\"4819\":\"en\",\"4820\":\"en\",\"4821\":\"en\",\"4822\":\"en\",\"4823\":\"en\",\"4824\":\"en\",\"4825\":\"en\",\"4826\":\"en\",\"4827\":\"en\",\"4828\":\"en\",\"4829\":\"en\",\"4830\":\"en\",\"4831\":\"en\",\"4832\":\"en\",\"4833\":\"en\",\"4834\":\"en\",\"4835\":\"en\",\"4836\":\"en\",\"4837\":\"en\",\"4838\":\"en\",\"4839\":\"en\",\"4840\":\"en\",\"4841\":\"en\",\"4842\":\"en\",\"4843\":\"en\",\"4844\":\"en\",\"4845\":\"en\",\"4846\":\"en\",\"4847\":\"en\",\"4848\":\"en\",\"4849\":\"en\",\"4850\":\"en\",\"4851\":\"en\",\"4852\":\"en\",\"4853\":\"en\",\"4854\":\"en\",\"4855\":\"en\",\"4856\":\"en\",\"4857\":\"en\",\"4858\":\"en\",\"4859\":\"en\",\"4860\":\"en\",\"4861\":\"en\",\"4862\":\"en\",\"4863\":\"en\",\"4864\":\"en\",\"4865\":\"en\",\"4866\":\"en\",\"4867\":\"en\",\"4868\":\"en\",\"4869\":\"en\",\"4870\":\"en\",\"4871\":\"en\",\"4872\":\"en\",\"4873\":\"en\",\"4874\":\"en\",\"4875\":\"en\",\"4876\":\"en\",\"4877\":\"en\",\"4878\":\"en\",\"4879\":\"en\",\"4880\":\"en\",\"4881\":\"en\",\"4882\":\"en\",\"4883\":\"en\",\"4884\":\"en\",\"4885\":\"en\",\"4886\":\"en\",\"4887\":\"en\",\"4888\":\"en\",\"4889\":\"en\",\"4890\":\"en\",\"4891\":\"en\",\"4892\":\"en\",\"4893\":\"en\",\"4894\":\"en\",\"4895\":\"en\",\"4896\":\"en\",\"4897\":\"en\",\"4898\":\"en\",\"4899\":\"en\",\"4900\":\"en\",\"4901\":\"en\",\"4902\":\"en\",\"4903\":\"en\",\"4904\":\"en\",\"4905\":\"en\",\"4906\":\"en\",\"4907\":\"en\",\"4908\":\"en\",\"4909\":\"en\",\"4910\":\"en\",\"4911\":\"en\",\"4912\":\"en\",\"4913\":\"en\",\"4914\":\"en\",\"4915\":\"en\",\"4916\":\"en\",\"4917\":\"en\",\"4918\":\"en\",\"4919\":\"en\",\"4920\":\"en\",\"4921\":\"en\",\"4922\":\"en\",\"4923\":\"en\",\"4924\":\"en\",\"4925\":\"en\",\"4926\":\"en\",\"4927\":\"en\",\"4928\":\"en\",\"4929\":\"en\",\"4930\":\"en\",\"4931\":\"en\",\"4932\":\"en\",\"4933\":\"en\",\"4934\":\"en\",\"4935\":\"en\",\"4936\":\"en\",\"4937\":\"en\",\"4938\":\"en\",\"4939\":\"en\",\"4940\":\"en\",\"4941\":\"en\",\"4942\":\"en\",\"4943\":\"en\",\"4944\":\"en\",\"4945\":\"en\",\"4946\":\"en\",\"4947\":\"en\",\"4948\":\"en\",\"4949\":\"en\",\"4950\":\"en\",\"4951\":\"en\",\"4952\":\"en\",\"4953\":\"en\",\"4954\":\"en\",\"4955\":\"en\",\"4956\":\"en\",\"4957\":\"en\",\"4958\":\"en\",\"4959\":\"en\",\"4960\":\"en\",\"4961\":\"en\",\"4962\":\"en\",\"4963\":\"en\",\"4964\":\"en\",\"4965\":\"en\",\"4966\":\"en\",\"4967\":\"en\",\"4968\":\"en\",\"4969\":\"en\",\"4970\":\"en\",\"4971\":\"en\",\"4972\":\"en\",\"4973\":\"en\",\"4974\":\"en\",\"4975\":\"en\",\"4976\":\"en\",\"4977\":\"en\",\"4978\":\"en\",\"4979\":\"en\",\"4980\":\"en\",\"4981\":\"en\",\"4982\":\"en\",\"4983\":\"en\",\"4984\":\"en\",\"4985\":\"en\",\"4986\":\"en\",\"4987\":\"en\",\"4988\":\"en\",\"4989\":\"en\",\"4990\":\"en\",\"4991\":\"en\",\"4992\":\"en\",\"4993\":\"en\",\"4994\":\"en\",\"4995\":\"en\",\"4996\":\"en\",\"4997\":\"en\",\"4998\":\"en\",\"4999\":\"en\"},\"extended_entities\":{\"0\":null,\"1\":{\"media\":[{\"id\":1554487694776012800,\"id_str\":\"1554487694776012800\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmUobXEAAqadu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmUobXEAAqadu.png\",\"url\":\"https:\\/\\/t.co\\/m4CXfyZRS7\",\"display_url\":\"pic.twitter.com\\/m4CXfyZRS7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/toopsat\\/status\\/1554488368347680771\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":735,\"h\":468,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":433,\"resize\":\"fit\"},\"medium\":{\"w\":735,\"h\":468,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2\":{\"media\":[{\"id\":1554482776140906497,\"id_str\":\"1554482776140906497\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKh2VFXgAE7f0A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKh2VFXgAE7f0A.jpg\",\"url\":\"https:\\/\\/t.co\\/DuqDiSnWcd\",\"display_url\":\"pic.twitter.com\\/DuqDiSnWcd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NassimaLilEmy\\/status\\/1554482802502127621\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1365,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}},{\"id\":1554482800031563776,\"id_str\":\"1554482800031563776\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKh3uFWAAAELBJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKh3uFWAAAELBJ.jpg\",\"url\":\"https:\\/\\/t.co\\/DuqDiSnWcd\",\"display_url\":\"pic.twitter.com\\/DuqDiSnWcd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NassimaLilEmy\\/status\\/1554482802502127621\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":653,\"h\":884,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":653,\"h\":884,\"resize\":\"fit\"},\"small\":{\"w\":502,\"h\":680,\"resize\":\"fit\"}}}]},\"3\":{\"media\":[{\"id\":1554102566010732544,\"id_str\":\"1554102566010732544\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFIDL-XwAADgfe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFIDL-XwAADgfe.jpg\",\"url\":\"https:\\/\\/t.co\\/GtZeNL24rm\",\"display_url\":\"pic.twitter.com\\/GtZeNL24rm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/d_dhayae\\/status\\/1554102573635932160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":912,\"h\":912,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":912,\"h\":912,\"resize\":\"fit\"}}}]},\"4\":{\"media\":[{\"id\":1553833456853045256,\"id_str\":\"1553833456853045256\",\"indices\":[29,52],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBTS-PX0Agw7HT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBTS-PX0Agw7HT.jpg\",\"url\":\"https:\\/\\/t.co\\/tEDjzTlszu\",\"display_url\":\"pic.twitter.com\\/tEDjzTlszu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mohamme65404115\\/status\\/1553833459440910338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":598,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":542,\"resize\":\"fit\"}}}]},\"5\":{\"media\":[{\"id\":1553732681694941185,\"id_str\":\"1553732681694941185\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553732681694941185\\/pu\\/img\\/M-7LZyUI-HbNQ279.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553732681694941185\\/pu\\/img\\/M-7LZyUI-HbNQ279.jpg\",\"url\":\"https:\\/\\/t.co\\/406MoDCb4u\",\"display_url\":\"pic.twitter.com\\/406MoDCb4u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yacine_Kelala8\\/status\\/1553732806152536066\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":8428,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553732681694941185\\/pu\\/vid\\/640x360\\/BWbecDT9sNd_wdCR.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553732681694941185\\/pu\\/vid\\/480x270\\/z-Lz9vpRmtmy1CjK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553732681694941185\\/pu\\/pl\\/fmUL4h_AgYuZSB5G.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553732681694941185\\/pu\\/vid\\/1280x720\\/Lu6smFWJ8LRDrgS6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"6\":{\"media\":[{\"id\":1556157138329812992,\"id_str\":\"1556157138329812992\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZiUrCTWQAALlEV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZiUrCTWQAALlEV.jpg\",\"url\":\"https:\\/\\/t.co\\/p1MDqaftsm\",\"display_url\":\"pic.twitter.com\\/p1MDqaftsm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drax_africa\\/status\\/1556157165639016448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":801,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1367,\"resize\":\"fit\"}}}]},\"7\":{\"media\":[{\"id\":1555006199954919424,\"id_str\":\"1555006199954919424\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR95mvX0AAwgo0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR95mvX0AAwgo0.jpg\",\"url\":\"https:\\/\\/t.co\\/SjxicXQG2L\",\"display_url\":\"pic.twitter.com\\/SjxicXQG2L\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MukukaReal\\/status\\/1555006203310268417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1128,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":639,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1167,\"resize\":\"fit\"}}}]},\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":{\"media\":[{\"id\":1554182703003488256,\"id_str\":\"1554182703003488256\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGQ7xiUUAAf3UP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGQ7xiUUAAf3UP.jpg\",\"url\":\"https:\\/\\/t.co\\/E2LjgrjORE\",\"display_url\":\"pic.twitter.com\\/E2LjgrjORE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bIackdot\\/status\\/1554184385556926466\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":646,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":610,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":646,\"resize\":\"fit\"}}}]},\"13\":{\"media\":[{\"id\":1554116945754042369,\"id_str\":\"1554116945754042369\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFVIMsVsAEbhlY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFVIMsVsAEbhlY.jpg\",\"url\":\"https:\\/\\/t.co\\/2hK2izpvZf\",\"display_url\":\"pic.twitter.com\\/2hK2izpvZf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bIackdot\\/status\\/1554117425968254976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":709,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":709,\"resize\":\"fit\"}}}]},\"14\":null,\"15\":null,\"16\":null,\"17\":null,\"18\":{\"media\":[{\"id\":1556314135784472576,\"id_str\":\"1556314135784472576\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"url\":\"https:\\/\\/t.co\\/Fe9ayldxZS\",\"display_url\":\"pic.twitter.com\\/Fe9ayldxZS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556314427712061440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":32520,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/vid\\/480x270\\/arYrUYnirK59Qpz5.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/pl\\/fjWu8YEMnOSRghzk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/vid\\/1280x720\\/WsZEoYjMfCv-tbQj.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/vid\\/640x360\\/V8dPon_-BzvX4y0i.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"19\":{\"media\":[{\"id\":1556287723480436737,\"id_str\":\"1556287723480436737\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"url\":\"https:\\/\\/t.co\\/P5UbQYI0Yq\",\"display_url\":\"pic.twitter.com\\/P5UbQYI0Yq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556287756858540032\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,29],\"duration_millis\":17867,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556287723480436737\\/pu\\/vid\\/492x270\\/J6hWq1zm78fABPnf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556287723480436737\\/pu\\/pl\\/TD1iDC4VISKA7q1B.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556287723480436737\\/pu\\/vid\\/848x464\\/jFq1M0tBQ6_Ulv2U.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"20\":null,\"21\":{\"media\":[{\"id\":1556240947281031170,\"id_str\":\"1556240947281031170\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"url\":\"https:\\/\\/t.co\\/IRw2ftT9nz\",\"display_url\":\"pic.twitter.com\\/IRw2ftT9nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556240994328510465\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13953,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/vid\\/720x1280\\/di8sCF8j_lrTb8iz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/pl\\/7AfAaEyOZTxcU5EL.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/vid\\/480x852\\/JzesEsUiaNs2mH6e.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/vid\\/320x568\\/eatkR3SAwzfTdIzi.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"22\":null,\"23\":{\"media\":[{\"id\":1556223737019908096,\"id_str\":\"1556223737019908096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"url\":\"https:\\/\\/t.co\\/r7FkYFYnCe\",\"display_url\":\"pic.twitter.com\\/r7FkYFYnCe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556223742959058945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":332,\"resize\":\"fit\"}}}]},\"24\":{\"media\":[{\"id\":1556221695006212102,\"id_str\":\"1556221695006212102\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"url\":\"https:\\/\\/t.co\\/w5wrwDt9cT\",\"display_url\":\"pic.twitter.com\\/w5wrwDt9cT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556221742439616514\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":101493,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/pl\\/mmmKROll-2k5qyVy.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/vid\\/638x360\\/BhefBLY7Nd00S1kn.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/vid\\/852x480\\/auOETOBXA-Snrc7T.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/vid\\/478x270\\/BqOt4Q3XPVs8biiq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":{\"media\":[{\"id\":1556041994148929536,\"id_str\":\"1556041994148929536\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"url\":\"https:\\/\\/t.co\\/5e7StO4jfZ\",\"display_url\":\"pic.twitter.com\\/5e7StO4jfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femiafricaNG\\/status\\/1556042033915101184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"31\":null,\"32\":null,\"33\":null,\"34\":{\"media\":[{\"id\":1555992362622615553,\"id_str\":\"1555992362622615553\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"url\":\"https:\\/\\/t.co\\/DiKgxF4oTL\",\"display_url\":\"pic.twitter.com\\/DiKgxF4oTL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555992372194021376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":410,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":723,\"resize\":\"fit\"},\"large\":{\"w\":1279,\"h\":771,\"resize\":\"fit\"}}}]},\"35\":{\"media\":[{\"id\":1555984739168927748,\"id_str\":\"1555984739168927748\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"url\":\"https:\\/\\/t.co\\/Fh3oav9sPe\",\"display_url\":\"pic.twitter.com\\/Fh3oav9sPe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555984785004281857\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44996,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555984739168927748\\/pu\\/vid\\/270x480\\/D5cwK4vi0hz2pAST.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555984739168927748\\/pu\\/pl\\/K4QJdsLMs-ZPhAbE.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"36\":{\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0XdsYP\",\"display_url\":\"pic.twitter.com\\/fvGw0XdsYP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"source_status_id\":1555924699447582720,\"source_status_id_str\":\"1555924699447582720\",\"source_user_id\":746971014,\"source_user_id_str\":\"746971014\",\"video_info\":{\"aspect_ratio\":[149,90],\"duration_millis\":8920,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/596x360\\/70NGCSHI1pL3qdXF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/446x270\\/CucLz1-cBpkMl8dF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/1192x720\\/ytG6LXd2A2YEWlns.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/pl\\/Bbp0-06DtKYXAshW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"37\":{\"media\":[{\"id\":1555940231827832834,\"id_str\":\"1555940231827832834\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"url\":\"https:\\/\\/t.co\\/rPmfa5ojNK\",\"display_url\":\"pic.twitter.com\\/rPmfa5ojNK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555940250551259136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1067,\"resize\":\"fit\"}}}]},\"38\":{\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[149,90],\"duration_millis\":8920,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/596x360\\/70NGCSHI1pL3qdXF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/446x270\\/CucLz1-cBpkMl8dF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/1192x720\\/ytG6LXd2A2YEWlns.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/pl\\/Bbp0-06DtKYXAshW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"39\":{\"media\":[{\"id\":1555921612242767873,\"id_str\":\"1555921612242767873\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"url\":\"https:\\/\\/t.co\\/Jt6aduFcg8\",\"display_url\":\"pic.twitter.com\\/Jt6aduFcg8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555921613857492993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":420,\"resize\":\"fit\"}}}]},\"40\":{\"media\":[{\"id\":1555920653005402114,\"id_str\":\"1555920653005402114\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"url\":\"https:\\/\\/t.co\\/cpsTb251y5\",\"display_url\":\"pic.twitter.com\\/cpsTb251y5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555920654368575488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"41\":null,\"42\":{\"media\":[{\"id\":1555912584217235457,\"id_str\":\"1555912584217235457\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"url\":\"https:\\/\\/t.co\\/VDLfQwhCt5\",\"display_url\":\"pic.twitter.com\\/VDLfQwhCt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555912598461157377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}},{\"id\":1555912583978164225,\"id_str\":\"1555912583978164225\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe2QGWUIAEarxs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe2QGWUIAEarxs.jpg\",\"url\":\"https:\\/\\/t.co\\/VDLfQwhCt5\",\"display_url\":\"pic.twitter.com\\/VDLfQwhCt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555912598461157377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"43\":null,\"44\":{\"media\":[{\"id\":1555901574240681986,\"id_str\":\"1555901574240681986\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"url\":\"https:\\/\\/t.co\\/GdXquO0e9H\",\"display_url\":\"pic.twitter.com\\/GdXquO0e9H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdajaMusic\\/status\\/1555901917523591168\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":52040,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/vid\\/480x852\\/YmBPKH57x2eMUQvF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/vid\\/720x1280\\/mYhkNgpq0oAgPAdW.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/vid\\/320x568\\/lTiiaQyuK8Ryw_75.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/pl\\/MNGbP2xl0ArbNQ0p.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"45\":{\"media\":[{\"id\":1555886494941958146,\"id_str\":\"1555886494941958146\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"url\":\"https:\\/\\/t.co\\/7S8nXC3rt6\",\"display_url\":\"pic.twitter.com\\/7S8nXC3rt6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ClintonSnowbird\\/status\\/1555886548486443008\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,523],\"duration_millis\":8243,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/pl\\/U7Nlq9pmp-N41ilH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/480x566\\/Hdy5WpODUY9LOQrv.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/320x376\\/nuoXXYdDEjBhA7JM.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/720x850\\/WZbKKofBJSIPujPW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"46\":null,\"47\":{\"media\":[{\"id\":1555881626227601410,\"id_str\":\"1555881626227601410\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"url\":\"https:\\/\\/t.co\\/icicexbejC\",\"display_url\":\"pic.twitter.com\\/icicexbejC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555881643566854144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":679,\"h\":408,\"resize\":\"fit\"}}}]},\"48\":{\"media\":[{\"id\":1555864705419603968,\"id_str\":\"1555864705419603968\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"url\":\"https:\\/\\/t.co\\/fv4KP5uO0f\",\"display_url\":\"pic.twitter.com\\/fv4KP5uO0f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555864776286556160\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":860,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":860,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,24],\"duration_millis\":4605,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/vid\\/644x360\\/A6IMfq7h0zbUSYYE.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/vid\\/482x270\\/nezCpJdwTmAR3wol.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/vid\\/860x480\\/6hcNkx0rcgGRV-aW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/pl\\/UB0M1FCFtrwu6leH.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"49\":{\"media\":[{\"id\":1555859351558144000,\"id_str\":\"1555859351558144000\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"url\":\"https:\\/\\/t.co\\/M6OH6kpv3d\",\"display_url\":\"pic.twitter.com\\/M6OH6kpv3d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1555859377038524416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"50\":{\"media\":[{\"id\":1555856903145930753,\"id_str\":\"1555856903145930753\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}},{\"id\":1555856903150125057,\"id_str\":\"1555856903150125057\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDGaQAElUZ6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDGaQAElUZ6.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}},{\"id\":1555856903137554432,\"id_str\":\"1555856903137554432\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDDacAAFTND.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDDacAAFTND.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"51\":{\"media\":[{\"id\":1555833464087257090,\"id_str\":\"1555833464087257090\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZduStyWIAIxHZN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZduStyWIAIxHZN.jpg\",\"url\":\"https:\\/\\/t.co\\/s9I9YhCxlo\",\"display_url\":\"pic.twitter.com\\/s9I9YhCxlo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ArtsBaskets\\/status\\/1555833481262993409\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":676,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":711,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":711,\"resize\":\"fit\"}}},{\"id\":1555833464322129925,\"id_str\":\"1555833464322129925\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZduSuqWAAUJNsO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZduSuqWAAUJNsO.jpg\",\"url\":\"https:\\/\\/t.co\\/s9I9YhCxlo\",\"display_url\":\"pic.twitter.com\\/s9I9YhCxlo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ArtsBaskets\\/status\\/1555833481262993409\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":715,\"h\":953,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":715,\"h\":953,\"resize\":\"fit\"}}}]},\"52\":null,\"53\":{\"media\":[{\"id\":1555829798756392967,\"id_str\":\"1555829798756392967\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdq9XXXoAc48YQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdq9XXXoAc48YQ.jpg\",\"url\":\"https:\\/\\/t.co\\/ynx2fozb5i\",\"display_url\":\"pic.twitter.com\\/ynx2fozb5i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DjGalaxyGDD\\/status\\/1555829826132615168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1114,\"resize\":\"fit\"},\"small\":{\"w\":439,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1114,\"resize\":\"fit\"}}},{\"id\":1555829811217588226,\"id_str\":\"1555829811217588226\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdq-FyWYAIQTp1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdq-FyWYAIQTp1.jpg\",\"url\":\"https:\\/\\/t.co\\/ynx2fozb5i\",\"display_url\":\"pic.twitter.com\\/ynx2fozb5i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DjGalaxyGDD\\/status\\/1555829826132615168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"54\":{\"media\":[{\"id\":1555829366776553473,\"id_str\":\"1555829366776553473\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555829366776553473\\/pu\\/img\\/BtLEPGXGGihaIAVP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555829366776553473\\/pu\\/img\\/BtLEPGXGGihaIAVP.jpg\",\"url\":\"https:\\/\\/t.co\\/NCMJ0q5giu\",\"display_url\":\"pic.twitter.com\\/NCMJ0q5giu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Transfor108\\/status\\/1555829725901295617\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":688,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":688,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[539,344],\"duration_millis\":65450,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555829366776553473\\/pu\\/vid\\/564x360\\/mXZ6cJi8MRnGI_C_.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555829366776553473\\/pu\\/pl\\/3jf3t2y2oUV7AhEI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555829366776553473\\/pu\\/vid\\/1078x688\\/CxutLQY78MKGlj3e.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555829366776553473\\/pu\\/vid\\/422x270\\/iRsfmTvjBg8je6ye.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"55\":{\"media\":[{\"id\":1555828432784789509,\"id_str\":\"1555828432784789509\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"url\":\"https:\\/\\/t.co\\/RsGGLqKP4f\",\"display_url\":\"pic.twitter.com\\/RsGGLqKP4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555828561424121857\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/720x1280\\/FArb2YOXMGAxyUtk.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/pl\\/ryTgae2bVgNFrzNI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/480x852\\/fyNbuq0e_nwbh0ub.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/320x568\\/VfnDqmf-mi7dOIqU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"56\":null,\"57\":{\"media\":[{\"id\":1555765671199473664,\"id_str\":\"1555765671199473664\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"url\":\"https:\\/\\/t.co\\/lpzUJdfPzo\",\"display_url\":\"pic.twitter.com\\/lpzUJdfPzo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555765691919261696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":479,\"h\":320,\"resize\":\"fit\"}}}]},\"58\":null,\"59\":null,\"60\":null,\"61\":null,\"62\":{\"media\":[{\"id\":1555682381570383883,\"id_str\":\"1555682381570383883\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"url\":\"https:\\/\\/t.co\\/mHTArfiaQM\",\"display_url\":\"pic.twitter.com\\/mHTArfiaQM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1555682404433543188\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"63\":null,\"64\":{\"media\":[{\"id\":1555661528287830019,\"id_str\":\"1555661528287830019\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}},{\"id\":1555661530808590336,\"id_str\":\"1555661530808590336\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR64aWIAAxE1E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR64aWIAAxE1E.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":663,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":663,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":663,\"resize\":\"fit\"}}},{\"id\":1555661538354204672,\"id_str\":\"1555661538354204672\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR7UhXEAA8AXu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR7UhXEAA8AXu.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":600,\"resize\":\"fit\"}}},{\"id\":1555661541785145347,\"id_str\":\"1555661541785145347\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR7hTXEAMh9ur.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR7hTXEAMh9ur.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":600,\"resize\":\"fit\"}}}]},\"65\":null,\"66\":null,\"67\":{\"media\":[{\"id\":1555645859471171584,\"id_str\":\"1555645859471171584\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"url\":\"https:\\/\\/t.co\\/G0zzCuKFup\",\"display_url\":\"pic.twitter.com\\/G0zzCuKFup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645910100631559\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":2251,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/720x1280\\/9EFVYSsznqLRIZrD.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/480x852\\/RdJpHhA3AAsmut9G.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/pl\\/cq6PEq7Np2L82jnl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/320x568\\/I0Xa6YFp0YHdioK4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"68\":{\"media\":[{\"id\":1555645871194357764,\"id_str\":\"1555645871194357764\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"url\":\"https:\\/\\/t.co\\/RPgFeJQ0op\",\"display_url\":\"pic.twitter.com\\/RPgFeJQ0op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1555645888277762050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":641,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":581,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":641,\"resize\":\"fit\"}}}]},\"69\":{\"media\":[{\"id\":1555645149941825537,\"id_str\":\"1555645149941825537\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"url\":\"https:\\/\\/t.co\\/Cp9nEotCf4\",\"display_url\":\"pic.twitter.com\\/Cp9nEotCf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645152223543297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":561,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":594,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":594,\"resize\":\"fit\"}}}]},\"70\":{\"media\":[{\"id\":1555644855719714824,\"id_str\":\"1555644855719714824\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ3WYAgldVy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ3WYAgldVy.jpg\",\"url\":\"https:\\/\\/t.co\\/HSqyDHXoAt\",\"display_url\":\"pic.twitter.com\\/HSqyDHXoAt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfyaSeedorfina\\/status\\/1555644880520708097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555644855774285828,\"id_str\":\"1555644855774285828\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbCwREXEAQsQBm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbCwREXEAQsQBm.jpg\",\"url\":\"https:\\/\\/t.co\\/HSqyDHXoAt\",\"display_url\":\"pic.twitter.com\\/HSqyDHXoAt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfyaSeedorfina\\/status\\/1555644880520708097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555644855728078849,\"id_str\":\"1555644855728078849\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ5WAAEzcuq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ5WAAEzcuq.jpg\",\"url\":\"https:\\/\\/t.co\\/HSqyDHXoAt\",\"display_url\":\"pic.twitter.com\\/HSqyDHXoAt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfyaSeedorfina\\/status\\/1555644880520708097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1555644855723884546,\"id_str\":\"1555644855723884546\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ4WAAI4KCB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbCwQ4WAAI4KCB.jpg\",\"url\":\"https:\\/\\/t.co\\/HSqyDHXoAt\",\"display_url\":\"pic.twitter.com\\/HSqyDHXoAt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfyaSeedorfina\\/status\\/1555644880520708097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"71\":{\"media\":[{\"id\":1555644418329305088,\"id_str\":\"1555644418329305088\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"url\":\"https:\\/\\/t.co\\/bu6Z3O81kg\",\"display_url\":\"pic.twitter.com\\/bu6Z3O81kg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555644670729920514\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":15812,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/vid\\/640x360\\/9etv3VJUpoBej1XK.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/vid\\/480x270\\/oqJdkaxwzYfDdgAz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/pl\\/98ioLpidBsfQOruh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/vid\\/1280x720\\/xAFs2QKsWoGkTApE.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"72\":null,\"73\":{\"media\":[{\"id\":1555642257319018499,\"id_str\":\"1555642257319018499\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"url\":\"https:\\/\\/t.co\\/541B1PcgCb\",\"display_url\":\"pic.twitter.com\\/541B1PcgCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NGOELITESTAR\\/status\\/1555642259760205824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":985,\"h\":830,\"resize\":\"fit\"},\"medium\":{\"w\":985,\"h\":830,\"resize\":\"fit\"}}}]},\"74\":{\"media\":[{\"id\":1555642069292838912,\"id_str\":\"1555642069292838912\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"url\":\"https:\\/\\/t.co\\/WAEr6vJVGb\",\"display_url\":\"pic.twitter.com\\/WAEr6vJVGb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555642082022522881\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"}}}]},\"75\":null,\"76\":{\"media\":[{\"id\":1555631270008426496,\"id_str\":\"1555631270008426496\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"url\":\"https:\\/\\/t.co\\/dPuTvMfq4q\",\"display_url\":\"pic.twitter.com\\/dPuTvMfq4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/terminatorsng\\/status\\/1555631282817798144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"77\":{\"media\":[{\"id\":1555603828757725185,\"id_str\":\"1555603828757725185\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"url\":\"https:\\/\\/t.co\\/C2TDgF7Nrg\",\"display_url\":\"pic.twitter.com\\/C2TDgF7Nrg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555604087411974144\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45001,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/vid\\/320x568\\/CMZ2uQNcsX2RzcaK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/pl\\/GEG9yqtKmOCcgBQ0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/vid\\/720x1280\\/kZRrMPwoTUP6JAcJ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/vid\\/480x852\\/m6qk3kAZZ29yWa99.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"78\":null,\"79\":{\"media\":[{\"id\":1555599301182734336,\"id_str\":\"1555599301182734336\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"url\":\"https:\\/\\/t.co\\/PTk5Jmo7kY\",\"display_url\":\"pic.twitter.com\\/PTk5Jmo7kY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555599475577704449\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":11291,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/320x320\\/KD2WFS1-KrJ2WKB3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/pl\\/Ah97iK7MpQvYDm4W.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/720x720\\/wRT_-Fy6TboRR5A8.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/540x540\\/tkXcFN_I1dzprhOF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"80\":{\"media\":[{\"id\":1555598991483699200,\"id_str\":\"1555598991483699200\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"url\":\"https:\\/\\/t.co\\/6PzTwoecxo\",\"display_url\":\"pic.twitter.com\\/6PzTwoecxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555598994277023744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"81\":null,\"82\":{\"media\":[{\"id\":1555584673354584066,\"id_str\":\"1555584673354584066\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"url\":\"https:\\/\\/t.co\\/ohdatFGn7a\",\"display_url\":\"pic.twitter.com\\/ohdatFGn7a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555584754224873472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":5433,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/vid\\/480x852\\/fhjSzy0rC-XkKQvb.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/vid\\/320x568\\/iRqlayJhTLxeOIPA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/pl\\/YTsmYJNyB_cNE58M.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/vid\\/720x1280\\/1-vKR2fZsmTID0GR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"83\":null,\"84\":{\"media\":[{\"id\":1555578774695067649,\"id_str\":\"1555578774695067649\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"url\":\"https:\\/\\/t.co\\/49jpK5z2UX\",\"display_url\":\"pic.twitter.com\\/49jpK5z2UX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoyOlukorede\\/status\\/1555581535969050624\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}},{\"id\":1555581514699653120,\"id_str\":\"1555581514699653120\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaJJVLWQAA337d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaJJVLWQAA337d.jpg\",\"url\":\"https:\\/\\/t.co\\/49jpK5z2UX\",\"display_url\":\"pic.twitter.com\\/49jpK5z2UX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoyOlukorede\\/status\\/1555581535969050624\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":876,\"h\":1125,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":876,\"h\":1125,\"resize\":\"fit\"},\"small\":{\"w\":529,\"h\":680,\"resize\":\"fit\"}}}]},\"85\":{\"media\":[{\"id\":1555580717027016706,\"id_str\":\"1555580717027016706\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"url\":\"https:\\/\\/t.co\\/Okuj69KLRS\",\"display_url\":\"pic.twitter.com\\/Okuj69KLRS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555580719384215552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"86\":null,\"87\":{\"media\":[{\"id\":1555568379901235201,\"id_str\":\"1555568379901235201\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"url\":\"https:\\/\\/t.co\\/ehsicFJyep\",\"display_url\":\"pic.twitter.com\\/ehsicFJyep\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555568544460439552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"88\":{\"media\":[{\"id\":1555567677896364032,\"id_str\":\"1555567677896364032\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"url\":\"https:\\/\\/t.co\\/2TBY9tpG5s\",\"display_url\":\"pic.twitter.com\\/2TBY9tpG5s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stingray1o1\\/status\\/1555567685156708352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":424,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"}}}]},\"89\":{\"media\":[{\"id\":1555566226809753600,\"id_str\":\"1555566226809753600\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"url\":\"https:\\/\\/t.co\\/ODS0jH3UZK\",\"display_url\":\"pic.twitter.com\\/ODS0jH3UZK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555566301048889348\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"90\":null,\"91\":{\"media\":[{\"id\":1555556322917363712,\"id_str\":\"1555556322917363712\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"url\":\"https:\\/\\/t.co\\/t3aiIMBGzU\",\"display_url\":\"pic.twitter.com\\/t3aiIMBGzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555556372212695040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":70204,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/pl\\/t8jTKrzu0MBmFpcl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/vid\\/638x360\\/AcI_GWddnXH-Ufaa.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/vid\\/478x270\\/AoqSXe5rWBXsza-B.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/vid\\/852x480\\/_dRv-wSY8w2LkYpt.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"92\":{\"media\":[{\"id\":1555549455436374016,\"id_str\":\"1555549455436374016\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZr_PHWYAAYrY6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZr_PHWYAAYrY6.jpg\",\"url\":\"https:\\/\\/t.co\\/iOLLErI3Zk\",\"display_url\":\"pic.twitter.com\\/iOLLErI3Zk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/2jtFoster\\/status\\/1555549458250743809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"}}}]},\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":{\"media\":[{\"id\":1555534023228903425,\"id_str\":\"1555534023228903425\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"url\":\"https:\\/\\/t.co\\/FcFymJMhdH\",\"display_url\":\"pic.twitter.com\\/FcFymJMhdH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534034532540417\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZZd89qX0AEW5Aw.mp4\"}]}}]},\"102\":{\"media\":[{\"id\":1555533804319694848,\"id_str\":\"1555533804319694848\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"url\":\"https:\\/\\/t.co\\/E6XPmZ4pnd\",\"display_url\":\"pic.twitter.com\\/E6XPmZ4pnd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534015318335489\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21616,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/vid\\/720x1280\\/l_mUID7I7le3RIT4.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/vid\\/320x568\\/pSZOeumsW9ImgqJi.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/pl\\/wxih68Uh2iYpUDl6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/vid\\/480x852\\/Xeu2GADTX8fMaymm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"103\":{\"media\":[{\"id\":1555533294829281282,\"id_str\":\"1555533294829281282\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"url\":\"https:\\/\\/t.co\\/SNcjXSw4pD\",\"display_url\":\"pic.twitter.com\\/SNcjXSw4pD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FunJumbo\\/status\\/1555533331395186690\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/vid\\/480x852\\/uUfA3LjJmImq39W7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/vid\\/720x1280\\/7MqSgEijM1Gr-SP3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/pl\\/bFlDRGIWQ7Yt0ASp.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/vid\\/320x568\\/B6x71Yshh05R-gYS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"104\":{\"media\":[{\"id\":1555530474134839296,\"id_str\":\"1555530474134839296\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"url\":\"https:\\/\\/t.co\\/uqc3FNHJL9\",\"display_url\":\"pic.twitter.com\\/uqc3FNHJL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555530540459012096\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":289,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,17],\"duration_millis\":42133,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/pl\\/tLnV7LkZZOk5MtFd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/vid\\/1280x544\\/kqtQzOrwAjNc9eAa.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/vid\\/846x360\\/xnRiBrncHZFpPeEo.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/vid\\/634x270\\/Gy6ZryMp60jRfzXL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"105\":{\"media\":[{\"id\":1555528620726427648,\"id_str\":\"1555528620726427648\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"url\":\"https:\\/\\/t.co\\/ZIj4k14Ftz\",\"display_url\":\"pic.twitter.com\\/ZIj4k14Ftz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555528686379859970\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48274,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/vid\\/1280x720\\/z6KzSZgn0Fj_E1wx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/pl\\/8DE3ay4fwRYdH8K8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/vid\\/480x270\\/-MlpW5EuyM1BCV--.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/vid\\/640x360\\/VRDsdGgiit_kb880.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"106\":{\"media\":[{\"id\":1555527526252183553,\"id_str\":\"1555527526252183553\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"url\":\"https:\\/\\/t.co\\/IIOx4MDAOm\",\"display_url\":\"pic.twitter.com\\/IIOx4MDAOm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555527538163605504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"107\":null,\"108\":null,\"109\":{\"media\":[{\"id\":1555519327293657088,\"id_str\":\"1555519327293657088\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xqw6R7zay\",\"display_url\":\"pic.twitter.com\\/8Xqw6R7zay\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tomidearoso\\/status\\/1555519330288287746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"large\":{\"w\":594,\"h\":396,\"resize\":\"fit\"}}}]},\"110\":{\"media\":[{\"id\":1555507551046967296,\"id_str\":\"1555507551046967296\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"url\":\"https:\\/\\/t.co\\/k5tjgsoLCv\",\"display_url\":\"pic.twitter.com\\/k5tjgsoLCv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thecableng\\/status\\/1555507581048741889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"medium\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"111\":null,\"112\":null,\"113\":null,\"114\":null,\"115\":{\"media\":[{\"id\":1555484864312393729,\"id_str\":\"1555484864312393729\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}},{\"id\":1555484864350126080,\"id_str\":\"1555484864350126080\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPikWAAA-MNi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPikWAAA-MNi.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":749,\"h\":723,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":723,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":656,\"resize\":\"fit\"}}},{\"id\":1555484864312401920,\"id_str\":\"1555484864312401920\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWYAAZGZC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWYAAZGZC.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":740,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":740,\"resize\":\"fit\"}}},{\"id\":1555484864299802624,\"id_str\":\"1555484864299802624\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPiYWIAAT8k0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPiYWIAAT8k0.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":738,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":738,\"resize\":\"fit\"}}}]},\"116\":null,\"117\":null,\"118\":{\"media\":[{\"id\":1555483886708293632,\"id_str\":\"1555483886708293632\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"url\":\"https:\\/\\/t.co\\/6enx4qzLKR\",\"display_url\":\"pic.twitter.com\\/6enx4qzLKR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555484137737306113\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":139964,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/pl\\/4YltBtdaMfGn4ivk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/vid\\/576x1024\\/efK0kNR2loS3pOlg.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/vid\\/480x852\\/NBkuaEGMcUfo-oi0.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/vid\\/320x568\\/M-fIA3ibF7-RWNKy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"119\":{\"media\":[{\"id\":1555482314829856769,\"id_str\":\"1555482314829856769\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555482314829856769\\/pu\\/img\\/348hTQ5k6L5FY2Pa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555482314829856769\\/pu\\/img\\/348hTQ5k6L5FY2Pa.jpg\",\"url\":\"https:\\/\\/t.co\\/UeoFemMdYJ\",\"display_url\":\"pic.twitter.com\\/UeoFemMdYJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1555482458912595969\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":27514,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555482314829856769\\/pu\\/vid\\/320x604\\/rF7iVsHB9xNNC_dh.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555482314829856769\\/pu\\/pl\\/gCy8FUcYQ0HEp-WX.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555482314829856769\\/pu\\/vid\\/448x848\\/O3D3qFTj_2QzQfdD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"120\":null,\"121\":null,\"122\":null,\"123\":{\"media\":[{\"id\":1555166743181549575,\"id_str\":\"1555166743181549575\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"url\":\"https:\\/\\/t.co\\/0x9UZXqgs4\",\"display_url\":\"pic.twitter.com\\/0x9UZXqgs4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firamnews\\/status\\/1555166784336150528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"source_status_id\":1555166784336150528,\"source_status_id_str\":\"1555166784336150528\",\"source_user_id\":957288307179900930,\"source_user_id_str\":\"957288307179900930\",\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":65434,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555166743181549575\\/pu\\/pl\\/15OE6euJZfCsl53c.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555166743181549575\\/pu\\/vid\\/480x256\\/N1Q7HWwQLRwRaUij.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"124\":{\"media\":[{\"id\":1555467858410459136,\"id_str\":\"1555467858410459136\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"url\":\"https:\\/\\/t.co\\/SMudtOtjrp\",\"display_url\":\"pic.twitter.com\\/SMudtOtjrp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SaveThePeoplle\\/status\\/1555467862516666371\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"125\":{\"media\":[{\"id\":1555463480823644162,\"id_str\":\"1555463480823644162\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"url\":\"https:\\/\\/t.co\\/ux84VrdNeJ\",\"display_url\":\"pic.twitter.com\\/ux84VrdNeJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/conzummate\\/status\\/1555464376261672960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"126\":null,\"127\":{\"media\":[{\"id\":1555452005220597760,\"id_str\":\"1555452005220597760\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"url\":\"https:\\/\\/t.co\\/ZLI73IE4TU\",\"display_url\":\"pic.twitter.com\\/ZLI73IE4TU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/safareerealty\\/status\\/1555453386195177473\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":14051,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/pl\\/NZwfmk1_cEqEASIs.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/vid\\/704x1280\\/TMQ36d_ZydfLmWQX.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/vid\\/480x872\\/2V2-kUjU082D1NUs.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/vid\\/320x580\\/nz9mJILREEOLM5IV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"128\":{\"media\":[{\"id\":1555451079692877826,\"id_str\":\"1555451079692877826\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555451079692877826\\/pu\\/img\\/kXnkafIWeQUIBKBO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555451079692877826\\/pu\\/img\\/kXnkafIWeQUIBKBO.jpg\",\"url\":\"https:\\/\\/t.co\\/cavrx7ZAgt\",\"display_url\":\"pic.twitter.com\\/cavrx7ZAgt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1555451251588059136\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13920,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555451079692877826\\/pu\\/vid\\/320x568\\/G_nixPGNB2csuRVl.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555451079692877826\\/pu\\/vid\\/480x852\\/jtLanAtlUtJB2UkQ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555451079692877826\\/pu\\/vid\\/720x1280\\/SMB-j2fds96ZbeL0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555451079692877826\\/pu\\/pl\\/ChDjCs9eQx6SUvGZ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"129\":null,\"130\":null,\"131\":{\"media\":[{\"id\":1555439841231478787,\"id_str\":\"1555439841231478787\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"url\":\"https:\\/\\/t.co\\/MaKgKNoo2B\",\"display_url\":\"pic.twitter.com\\/MaKgKNoo2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1555440103807504385\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":131583,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/540x540\\/InHagepyANDZUk3S.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/720x720\\/PkSprm5bH1Aj5ZuB.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/320x320\\/JiNEGZRZA3gEyeDS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/pl\\/WN-v3LOzk9GGaQ5Y.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"132\":{\"media\":[{\"id\":1555432425475432449,\"id_str\":\"1555432425475432449\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"url\":\"https:\\/\\/t.co\\/MBGIPebu1u\",\"display_url\":\"pic.twitter.com\\/MBGIPebu1u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/muyiwaowen\\/status\\/1555432430298882049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"133\":{\"media\":[{\"id\":1555430868143034368,\"id_str\":\"1555430868143034368\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"url\":\"https:\\/\\/t.co\\/7aelyfUXh4\",\"display_url\":\"pic.twitter.com\\/7aelyfUXh4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SUPalivezobo\\/status\\/1555430906868994051\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":5312,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/vid\\/720x1280\\/7QtOUUpFixg72xeS.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/vid\\/480x852\\/05MBuW9kN_rqF1Rc.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/vid\\/320x568\\/Qm2JkorbWD-LAi13.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/pl\\/bBTVsC8OStQWOiTo.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"134\":null,\"135\":{\"media\":[{\"id\":1555429781474254848,\"id_str\":\"1555429781474254848\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"url\":\"https:\\/\\/t.co\\/aEzpnS8MzB\",\"display_url\":\"pic.twitter.com\\/aEzpnS8MzB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phone_Stores\\/status\\/1555429855797428224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6503,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/720x1280\\/7eZjhUupO4j5Lr3k.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/pl\\/658f3FGvvXZWXaG7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/480x852\\/wqzkSz7XIulXW_4P.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/320x568\\/a-d9_jR470LxlMYi.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"136\":{\"media\":[{\"id\":1555428357860458499,\"id_str\":\"1555428357860458499\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"url\":\"https:\\/\\/t.co\\/daV6xVvXdF\",\"display_url\":\"pic.twitter.com\\/daV6xVvXdF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555428458246848513\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":45009,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/540x540\\/_IZn5Au7zpSlaCBo.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/320x320\\/PiTUwD_PhvDnGvF8.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/720x720\\/RP0chz4f3x3aYt1X.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/pl\\/jqK6FPTePdj4kFMp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"137\":{\"media\":[{\"id\":1555427167911256067,\"id_str\":\"1555427167911256067\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"url\":\"https:\\/\\/t.co\\/YAElbkZ8X3\",\"display_url\":\"pic.twitter.com\\/YAElbkZ8X3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555427170872352768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":554,\"resize\":\"fit\"}}}]},\"138\":null,\"139\":{\"media\":[{\"id\":1555423884165382144,\"id_str\":\"1555423884165382144\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555423888192016384,\"id_str\":\"1555423888192016384\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yQrXkAAZFZR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yQrXkAAZFZR.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":614,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":650,\"resize\":\"fit\"}}},{\"id\":1555423891841077249,\"id_str\":\"1555423891841077249\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yeRX0AEG7_N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yeRX0AEG7_N.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":714,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":674,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":714,\"resize\":\"fit\"}}}]},\"140\":{\"media\":[{\"id\":1555420334974697472,\"id_str\":\"1555420334974697472\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"url\":\"https:\\/\\/t.co\\/0AcEwTwWsz\",\"display_url\":\"pic.twitter.com\\/0AcEwTwWsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555423133896695808\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":60033,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/320x568\\/dFHQr-nIX2b3r35U.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/720x1280\\/3jlG9bYIw5jf_fQs.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/480x852\\/-5cLvdS2gjf3Dkq-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/pl\\/PrK4JdHUfpBDxv_s.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"141\":{\"media\":[{\"id\":1555420509881487360,\"id_str\":\"1555420509881487360\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"url\":\"https:\\/\\/t.co\\/rpnWM9UjaN\",\"display_url\":\"pic.twitter.com\\/rpnWM9UjaN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ffcproperties\\/status\\/1555420559139393537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":30207,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/480x360\\/7nOiaKBJKisMpbkd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/pl\\/G3gGlchVazeky7By.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/640x480\\/RtxvNpBo1a7UHAwX.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/360x270\\/yhSYwOuyfxDWYIqM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"142\":{\"media\":[{\"id\":1555414162645422080,\"id_str\":\"1555414162645422080\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"url\":\"https:\\/\\/t.co\\/gp0PMGENjL\",\"display_url\":\"pic.twitter.com\\/gp0PMGENjL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BoiFlex_\\/status\\/1555414450961879040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":47111,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/vid\\/720x1280\\/OVelRPGggOXEfDJA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/pl\\/-32r-6Y_DUtB7Omu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/vid\\/480x852\\/R9zu-fjsXQPSYCDF.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/vid\\/320x568\\/iitiUeQdu8mdaBAT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"143\":{\"media\":[{\"id\":1555414321768943618,\"id_str\":\"1555414321768943618\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"url\":\"https:\\/\\/t.co\\/8APk6oYuGN\",\"display_url\":\"pic.twitter.com\\/8APk6oYuGN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555414324369391616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"}}}]},\"144\":null,\"145\":{\"media\":[{\"id\":1555407802868310016,\"id_str\":\"1555407802868310016\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"url\":\"https:\\/\\/t.co\\/kdtxBAi7ug\",\"display_url\":\"pic.twitter.com\\/kdtxBAi7ug\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opiyansky\\/status\\/1555407811441467393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":824,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":824,\"resize\":\"fit\"}}}]},\"146\":{\"media\":[{\"id\":1555407269889822720,\"id_str\":\"1555407269889822720\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"url\":\"https:\\/\\/t.co\\/hDA6NESMyP\",\"display_url\":\"pic.twitter.com\\/hDA6NESMyP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MasterMinderz\\/status\\/1555407272267976704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"small\":{\"w\":581,\"h\":680,\"resize\":\"fit\"}}}]},\"147\":null,\"148\":{\"media\":[{\"id\":1555403686330994690,\"id_str\":\"1555403686330994690\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"url\":\"https:\\/\\/t.co\\/zltNrcYkjY\",\"display_url\":\"pic.twitter.com\\/zltNrcYkjY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yaaseir\\/status\\/1555403943349714944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[427,240],\"duration_millis\":103120,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/pl\\/DM77wPyY71QN9zZr.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/640x360\\/WlrKyIqRjyDPbrWg.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/480x270\\/uuSSf9bQIJCPplkv.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/854x480\\/jRYPw6R7ayGsMpVX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"149\":null,\"150\":null,\"151\":{\"media\":[{\"id\":1555400976043220992,\"id_str\":\"1555400976043220992\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"url\":\"https:\\/\\/t.co\\/enFmEAy2gz\",\"display_url\":\"pic.twitter.com\\/enFmEAy2gz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Darling41595671\\/status\\/1555400982259179520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"152\":null,\"153\":{\"media\":[{\"id\":1555393247870164992,\"id_str\":\"1555393247870164992\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"url\":\"https:\\/\\/t.co\\/IxSU6u1XwJ\",\"display_url\":\"pic.twitter.com\\/IxSU6u1XwJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timora_inyang\\/status\\/1555393250051194880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"large\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"}}}]},\"154\":{\"media\":[{\"id\":1555391098150948865,\"id_str\":\"1555391098150948865\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"url\":\"https:\\/\\/t.co\\/VQmy6B6d5G\",\"display_url\":\"pic.twitter.com\\/VQmy6B6d5G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lilymatyr\\/status\\/1555391148688084992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":425,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[5,8],\"duration_millis\":25251,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/vid\\/480x768\\/TqTMi_xOeS6bGvIb.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/vid\\/320x512\\/MYlOiM9Gdm4YBRSf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/pl\\/pduMpJIxM0UkMYoO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/vid\\/720x1152\\/_aSVl0xntarsxNfw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"155\":null,\"156\":{\"media\":[{\"id\":1555375344168869892,\"id_str\":\"1555375344168869892\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"url\":\"https:\\/\\/t.co\\/NwtOsx7Z7p\",\"display_url\":\"pic.twitter.com\\/NwtOsx7Z7p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NFPJNig\\/status\\/1555375695559380994\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":75835,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/vid\\/352x640\\/-zCgdCv8w2bxoDwo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/pl\\/hnzkfzMt-UvUYY5J.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/vid\\/320x580\\/10Nq3pMKpc0VUmbr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"157\":{\"media\":[{\"id\":1555370210193989632,\"id_str\":\"1555370210193989632\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"url\":\"https:\\/\\/t.co\\/SK3JMA9FMG\",\"display_url\":\"pic.twitter.com\\/SK3JMA9FMG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1555370218377166853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"158\":null,\"159\":{\"media\":[{\"id\":1555363980968853504,\"id_str\":\"1555363980968853504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"url\":\"https:\\/\\/t.co\\/0NAHWhR8MZ\",\"display_url\":\"pic.twitter.com\\/0NAHWhR8MZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandorxinc\\/status\\/1555363998995988483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"160\":null,\"161\":null,\"162\":{\"media\":[{\"id\":1555351779956727809,\"id_str\":\"1555351779956727809\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"url\":\"https:\\/\\/t.co\\/j62UIGDzHd\",\"display_url\":\"pic.twitter.com\\/j62UIGDzHd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ochocheijeleche\\/status\\/1555351846230921216\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44975,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/vid\\/480x852\\/8-zEyBFPtFJSyr89.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/vid\\/576x1024\\/jZLXudc5UHv37dRM.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/vid\\/320x568\\/NhP7YR4p4gWx28yH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/pl\\/6zQO-kudyvIhnmFM.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"163\":null,\"164\":{\"media\":[{\"id\":1555351029113315331,\"id_str\":\"1555351029113315331\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"url\":\"https:\\/\\/t.co\\/R8GzyJsaar\",\"display_url\":\"pic.twitter.com\\/R8GzyJsaar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1555351032011571202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"small\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":424,\"h\":361,\"resize\":\"fit\"}}}]},\"165\":null,\"166\":null,\"167\":{\"media\":[{\"id\":1555346508429594626,\"id_str\":\"1555346508429594626\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"url\":\"https:\\/\\/t.co\\/Lwq6cEPuqR\",\"display_url\":\"pic.twitter.com\\/Lwq6cEPuqR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1555346514528051200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"168\":{\"media\":[{\"id\":1555341930967572482,\"id_str\":\"1555341930967572482\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"url\":\"https:\\/\\/t.co\\/2ueIR9txeq\",\"display_url\":\"pic.twitter.com\\/2ueIR9txeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555341970872090626\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":19890,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/vid\\/320x426\\/ygIH0-2eXvU6UPrH.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/vid\\/480x640\\/1otRuz8-olWv-KI1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/pl\\/DrFeFGUfWHyZdTJ_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"169\":{\"media\":[{\"id\":1555341318657802240,\"id_str\":\"1555341318657802240\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"url\":\"https:\\/\\/t.co\\/iAL0HSO7tQ\",\"display_url\":\"pic.twitter.com\\/iAL0HSO7tQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sobioemma\\/status\\/1555341323653242880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"170\":{\"media\":[{\"id\":1555339718589546498,\"id_str\":\"1555339718589546498\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555339718514065408,\"id_str\":\"1555339718514065408\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8MWQAA9dAD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8MWQAA9dAD.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555339718530826242,\"id_str\":\"1555339718530826242\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8QWAAI1ybp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8QWAAI1ybp.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555339718551916547,\"id_str\":\"1555339718551916547\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8VX0AMwoNR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8VX0AMwoNR.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":null,\"176\":{\"media\":[{\"id\":1555330350544461824,\"id_str\":\"1555330350544461824\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}},{\"id\":1555330350578126848,\"id_str\":\"1555330350578126848\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp6X0AAwHhb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp6X0AAwHhb.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555330350573920256,\"id_str\":\"1555330350573920256\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp5XoAAbQcE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp5XoAAbQcE.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"}}},{\"id\":1555330350552842241,\"id_str\":\"1555330350552842241\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp0WAAES6k9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp0WAAES6k9.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"}}}]},\"177\":null,\"178\":null,\"179\":{\"media\":[{\"id\":1555322810226163713,\"id_str\":\"1555322810226163713\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"url\":\"https:\\/\\/t.co\\/cEGxjhHBpI\",\"display_url\":\"pic.twitter.com\\/cEGxjhHBpI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/exponentnwachae\\/status\\/1555322974445641741\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27480,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/vid\\/720x1280\\/w0R9ImYe8Rt59ylu.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/vid\\/320x568\\/YH7HeDBXtSCAPNR0.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/vid\\/480x852\\/CoC_x8LJ1iL0Z2Sg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/pl\\/8HqmMsoTbaMdf0xz.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"180\":null,\"181\":null,\"182\":{\"media\":[{\"id\":1555318538319060994,\"id_str\":\"1555318538319060994\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"url\":\"https:\\/\\/t.co\\/G9GAtpSjXN\",\"display_url\":\"pic.twitter.com\\/G9GAtpSjXN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555318567473651713\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":352,\"h\":628,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[88,157],\"duration_millis\":13066,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555318538319060994\\/pu\\/vid\\/352x628\\/jWrTw1r_f1v3EhZR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555318538319060994\\/pu\\/pl\\/E_C3NWoNVPKcPp5q.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555318538319060994\\/pu\\/vid\\/320x570\\/o1CTu98f638L45yb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"183\":{\"media\":[{\"id\":1555317034237526017,\"id_str\":\"1555317034237526017\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"url\":\"https:\\/\\/t.co\\/ud1UpF6RVS\",\"display_url\":\"pic.twitter.com\\/ud1UpF6RVS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SammyGr96158056\\/status\\/1555317037097951233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"184\":{\"media\":[{\"id\":1555316793249599489,\"id_str\":\"1555316793249599489\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"url\":\"https:\\/\\/t.co\\/npACZaYBZJ\",\"display_url\":\"pic.twitter.com\\/npACZaYBZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndrewKunz7\\/status\\/1555316858437484544\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6366,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/pl\\/5h1qAlFO3Wjfszp0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/720x1280\\/_nlRLEJicH3OlrcD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/320x568\\/GgtYf3uTj4v65EvX.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/480x852\\/gYgRbDOdkaMdVX-F.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"185\":null,\"186\":{\"media\":[{\"id\":1555315028865212418,\"id_str\":\"1555315028865212418\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"url\":\"https:\\/\\/t.co\\/VHp1KIltN6\",\"display_url\":\"pic.twitter.com\\/VHp1KIltN6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kevinice0\\/status\\/1555315108515123205\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22698,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/vid\\/320x568\\/coB8SMBPBBx6f_HO.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/vid\\/540x960\\/6khBfuOjCv4Zt-3U.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/pl\\/sFL5kMKO-Y7sytYs.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/vid\\/480x852\\/9NFviVLcR_OEs2kS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"187\":{\"media\":[{\"id\":1555313890539573252,\"id_str\":\"1555313890539573252\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"url\":\"https:\\/\\/t.co\\/sGrgwMYnR0\",\"display_url\":\"pic.twitter.com\\/sGrgwMYnR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zeus_el_Savage\\/status\\/1555313928296665088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":202,\"h\":424,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[101,212],\"duration_millis\":33368,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555313890539573252\\/pu\\/vid\\/202x424\\/hYr7_qoEOBkKtY8C.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555313890539573252\\/pu\\/pl\\/0Xv18zIjulSRmEBn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"188\":null,\"189\":null,\"190\":{\"media\":[{\"id\":1555313075116449793,\"id_str\":\"1555313075116449793\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"url\":\"https:\\/\\/t.co\\/J5gc59nY80\",\"display_url\":\"pic.twitter.com\\/J5gc59nY80\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555313085501652992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":866,\"h\":1298,\"resize\":\"fit\"}}}]},\"191\":{\"media\":[{\"id\":1555310046082383875,\"id_str\":\"1555310046082383875\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"url\":\"https:\\/\\/t.co\\/yPQQwkGuw0\",\"display_url\":\"pic.twitter.com\\/yPQQwkGuw0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/herald_digitals\\/status\\/1555310059139354627\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"192\":{\"media\":[{\"id\":1555309780943650819,\"id_str\":\"1555309780943650819\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"url\":\"https:\\/\\/t.co\\/gbEdagmUIq\",\"display_url\":\"pic.twitter.com\\/gbEdagmUIq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555309799948034048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}},{\"id\":1555309791244869632,\"id_str\":\"1555309791244869632\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSA8bWYAAS1X1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSA8bWYAAS1X1.jpg\",\"url\":\"https:\\/\\/t.co\\/gbEdagmUIq\",\"display_url\":\"pic.twitter.com\\/gbEdagmUIq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555309799948034048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"193\":{\"media\":[{\"id\":1555308891436621826,\"id_str\":\"1555308891436621826\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"url\":\"https:\\/\\/t.co\\/pHWTp7I5mJ\",\"display_url\":\"pic.twitter.com\\/pHWTp7I5mJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555309544292630528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":30000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/pl\\/GHEnk6RQLac72-7X.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/576x1024\\/1FL8pLWfSJt69HEH.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/320x568\\/6AEfXFHEjZvEWKhF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/480x852\\/lxZBuuk9zRJ1JfP0.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"194\":{\"media\":[{\"id\":1555308819101663232,\"id_str\":\"1555308819101663232\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"url\":\"https:\\/\\/t.co\\/NuKqOdXZll\",\"display_url\":\"pic.twitter.com\\/NuKqOdXZll\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AlwaysWorried__\\/status\\/1555308825040879622\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":369,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":391,\"resize\":\"fit\"}}}]},\"195\":{\"media\":[{\"id\":1555307142520922112,\"id_str\":\"1555307142520922112\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"url\":\"https:\\/\\/t.co\\/2bK4aGnVAU\",\"display_url\":\"pic.twitter.com\\/2bK4aGnVAU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rumerule\\/status\\/1555307151958188036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"196\":null,\"197\":{\"media\":[{\"id\":1555303203847249921,\"id_str\":\"1555303203847249921\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"url\":\"https:\\/\\/t.co\\/cbSE372zmL\",\"display_url\":\"pic.twitter.com\\/cbSE372zmL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Twenty_naira\\/status\\/1555303207236255744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":414,\"resize\":\"fit\"}}}]},\"198\":null,\"199\":null,\"200\":{\"media\":[{\"id\":1555299449458622465,\"id_str\":\"1555299449458622465\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"url\":\"https:\\/\\/t.co\\/XmsWKco1NS\",\"display_url\":\"pic.twitter.com\\/XmsWKco1NS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trender_sam\\/status\\/1555299516613627904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,29],\"duration_millis\":9666,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/720x1044\\/7nFVI8KmnGYNP9DZ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/480x696\\/DwUdG5JPZxDj7Psg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/pl\\/FJFX0iTWZcmCKqxW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/320x464\\/G0juWsWiQpWtdy8L.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"201\":{\"media\":[{\"id\":1555297038035714048,\"id_str\":\"1555297038035714048\",\"indices\":[292,315],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/Na4Yekzzmu\",\"display_url\":\"pic.twitter.com\\/Na4Yekzzmu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555298493316665346\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":99433,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/480x852\\/GfMg0hknOsHbQ0Cs.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/pl\\/mjph1mkgOwWrNNOY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/320x568\\/1WSAo6vgb9sY1cYx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/720x1280\\/b58k3WlrkqqB3V_F.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"202\":null,\"203\":null,\"204\":{\"media\":[{\"id\":1555297198270816256,\"id_str\":\"1555297198270816256\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"url\":\"https:\\/\\/t.co\\/eUgJVcdOgP\",\"display_url\":\"pic.twitter.com\\/eUgJVcdOgP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EOAlakpodia\\/status\\/1555297218936115202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"205\":{\"media\":[{\"id\":1555296354246746113,\"id_str\":\"1555296354246746113\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWFyztWYAEe3aH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWFyztWYAEe3aH.jpg\",\"url\":\"https:\\/\\/t.co\\/VYuBdgVeCI\",\"display_url\":\"pic.twitter.com\\/VYuBdgVeCI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1555296356348084225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":841,\"h\":1056,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":841,\"h\":1056,\"resize\":\"fit\"}}}]},\"206\":null,\"207\":{\"media\":[{\"id\":1555293433522159617,\"id_str\":\"1555293433522159617\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"url\":\"https:\\/\\/t.co\\/YPAKeLtsly\",\"display_url\":\"pic.twitter.com\\/YPAKeLtsly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/werey_mecho\\/status\\/1555293488253747200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"}}}]},\"208\":null,\"209\":null,\"210\":{\"media\":[{\"id\":1555290276037525505,\"id_str\":\"1555290276037525505\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWARAnWAAE7Obk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWARAnWAAE7Obk.jpg\",\"url\":\"https:\\/\\/t.co\\/y0Ti6phRF5\",\"display_url\":\"pic.twitter.com\\/y0Ti6phRF5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1555290279619563520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":1536,\"resize\":\"fit\"}}}]},\"211\":{\"media\":[{\"id\":1555289978367889411,\"id_str\":\"1555289978367889411\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"url\":\"https:\\/\\/t.co\\/7rnj6pp7NE\",\"display_url\":\"pic.twitter.com\\/7rnj6pp7NE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555290140561625090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"212\":{\"media\":[{\"id\":1555289948055560192,\"id_str\":\"1555289948055560192\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"url\":\"https:\\/\\/t.co\\/Ws8Ki9CFt1\",\"display_url\":\"pic.twitter.com\\/Ws8Ki9CFt1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GraceoxfordAgt\\/status\\/1555289958906200064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":702,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":900,\"resize\":\"fit\"}}}]},\"213\":{\"media\":[{\"id\":1555288389473259522,\"id_str\":\"1555288389473259522\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"url\":\"https:\\/\\/t.co\\/48lu9wGaF4\",\"display_url\":\"pic.twitter.com\\/48lu9wGaF4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555289069831311363\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":92066,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/320x568\\/8r8urqOuTb7j2ugN.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/720x1280\\/RE3mO4JBFZo3ZQ0Y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/pl\\/g0wjBfinjLJ5L3IM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/480x852\\/pJncnxyRoVU31tHb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"214\":{\"media\":[{\"id\":1555288704796827653,\"id_str\":\"1555288704796827653\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}},{\"id\":1555288714317860873,\"id_str\":\"1555288714317860873\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-2GwXEAkyhlD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-2GwXEAkyhlD.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":404,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":404,\"resize\":\"fit\"}}},{\"id\":1555288719002853377,\"id_str\":\"1555288719002853377\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-2YNWYAEokcC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-2YNWYAEokcC.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"215\":{\"media\":[{\"id\":1555288001953013766,\"id_str\":\"1555288001953013766\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"url\":\"https:\\/\\/t.co\\/XvDzDntGau\",\"display_url\":\"pic.twitter.com\\/XvDzDntGau\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RaywondersA\\/status\\/1555288045670354950\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"216\":{\"media\":[{\"id\":1555287078228955137,\"id_str\":\"1555287078228955137\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"url\":\"https:\\/\\/t.co\\/wq0Y1ftS4q\",\"display_url\":\"pic.twitter.com\\/wq0Y1ftS4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Deni_kuddz\\/status\\/1555287099267551234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":702,\"resize\":\"fit\"},\"small\":{\"w\":465,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":702,\"resize\":\"fit\"}}}]},\"217\":{\"media\":[{\"id\":1555286117347459072,\"id_str\":\"1555286117347459072\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"url\":\"https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"display_url\":\"pic.twitter.com\\/Ie9UaQ7YBU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kinqbrizy1\\/status\\/1555286290148589571\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":54233,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/480x600\\/2yjFbGkea_xAosVJ.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/320x400\\/ebr-rUOfBYbUq6La.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/720x900\\/Qt0HgDnK3CJ_83hP.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/pl\\/IPGuaedar5KjzEzw.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"218\":{\"media\":[{\"id\":1555285317451644929,\"id_str\":\"1555285317451644929\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"url\":\"https:\\/\\/t.co\\/1M5P4K2WZ9\",\"display_url\":\"pic.twitter.com\\/1M5P4K2WZ9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1555285352222441474\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1121,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1884,\"h\":1760,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":635,\"resize\":\"fit\"}}}]},\"219\":null,\"220\":null,\"221\":null,\"222\":{\"media\":[{\"id\":1555279899912552448,\"id_str\":\"1555279899912552448\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/eggArJK1mA\",\"display_url\":\"pic.twitter.com\\/eggArJK1mA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555279982598946821\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":7990,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/320x568\\/3CAxOgR4Wtd-_nPV.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/720x1280\\/1vrIwn1w_FhPseUY.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/480x852\\/eEkPAaIgR73Q_-Lo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/pl\\/ho0OH2_SEHuj7lU7.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"223\":{\"media\":[{\"id\":1555279715027587080,\"id_str\":\"1555279715027587080\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1355,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279724187947010,\"id_str\":\"1555279724187947010\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qz6XEAI0Tu-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qz6XEAI0Tu-.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":1419,\"resize\":\"fit\"},\"medium\":{\"w\":912,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279732568096774,\"id_str\":\"1555279732568096774\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2rTIWAAYlsSb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2rTIWAAYlsSb.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":550,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1336,\"resize\":\"fit\"},\"medium\":{\"w\":970,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279741061570562,\"id_str\":\"1555279741061570562\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2ryxWIAIjs4W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2ryxWIAIjs4W.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":928,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":526,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1028,\"h\":1329,\"resize\":\"fit\"}}}]},\"224\":{\"media\":[{\"id\":1555278481705078786,\"id_str\":\"1555278481705078786\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"url\":\"https:\\/\\/t.co\\/5XQk1GZOUr\",\"display_url\":\"pic.twitter.com\\/5XQk1GZOUr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theonlinecook\\/status\\/1555278483777114112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"225\":{\"media\":[{\"id\":1555277880342581253,\"id_str\":\"1555277880342581253\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}},{\"id\":1555277890501107712,\"id_str\":\"1555277890501107712\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1AE5WYAA30uZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1AE5WYAA30uZ.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":654,\"h\":655,\"resize\":\"fit\"},\"small\":{\"w\":654,\"h\":655,\"resize\":\"fit\"},\"large\":{\"w\":654,\"h\":655,\"resize\":\"fit\"}}},{\"id\":1555277900357697537,\"id_str\":\"1555277900357697537\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1ApnWAAEoL-O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1ApnWAAEoL-O.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"226\":null,\"227\":{\"media\":[{\"id\":1555274994862755840,\"id_str\":\"1555274994862755840\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"url\":\"https:\\/\\/t.co\\/vDqCjp8ZKd\",\"display_url\":\"pic.twitter.com\\/vDqCjp8ZKd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555275017306472449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"228\":{\"media\":[{\"id\":1555274835256918017,\"id_str\":\"1555274835256918017\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"url\":\"https:\\/\\/t.co\\/mFSHpbLkRV\",\"display_url\":\"pic.twitter.com\\/mFSHpbLkRV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555274853632319489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"229\":{\"media\":[{\"id\":1555273952955699201,\"id_str\":\"1555273952955699201\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"url\":\"https:\\/\\/t.co\\/YEWbHC5Yma\",\"display_url\":\"pic.twitter.com\\/YEWbHC5Yma\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sourced2018\\/status\\/1555274388391579649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":64661,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555273952955699201\\/pu\\/pl\\/Zsb12RYnlO6OxxnF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555273952955699201\\/pu\\/vid\\/640x352\\/HsnYCw31-hkPtAaZ.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555273952955699201\\/pu\\/vid\\/490x270\\/WMDYXAlZanyuBw8a.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"230\":{\"media\":[{\"id\":1555274103359168513,\"id_str\":\"1555274103359168513\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"url\":\"https:\\/\\/t.co\\/XLJzMjNhun\",\"display_url\":\"pic.twitter.com\\/XLJzMjNhun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555274246074548227\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":37904,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/pl\\/e0qZWDZ73YPwgW9-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/480x270\\/b5f3W0110UvNl2Ts.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/640x360\\/wV71l8odAexeiRzx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/1280x720\\/B585NttRPIza2FyH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"231\":null,\"232\":null,\"233\":{\"media\":[{\"id\":1555272561373609984,\"id_str\":\"1555272561373609984\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"url\":\"https:\\/\\/t.co\\/A84bZqVB2K\",\"display_url\":\"pic.twitter.com\\/A84bZqVB2K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555272697474588673\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,283],\"duration_millis\":44981,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/480x848\\/jg-p-m9gEueooS2t.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/pl\\/_1Pl4nrxGO0DU3DD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/320x566\\/si4fG2J74VEZzfg-.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/640x1132\\/5mALZtxgsqSbUIhx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"234\":{\"media\":[{\"id\":1555271584092504065,\"id_str\":\"1555271584092504065\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"url\":\"https:\\/\\/t.co\\/Zm4XzZzg1A\",\"display_url\":\"pic.twitter.com\\/Zm4XzZzg1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Ligera\\/status\\/1555271731555848193\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":304,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,19],\"duration_millis\":44991,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555271584092504065\\/pu\\/vid\\/568x270\\/7DEv2JG7ZBu3DHor.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555271584092504065\\/pu\\/pl\\/3sSPoPnDOAjk4htm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555271584092504065\\/pu\\/vid\\/640x304\\/W5OoMkFnK39YcUdY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"235\":{\"media\":[{\"id\":1555270933937639426,\"id_str\":\"1555270933937639426\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"url\":\"https:\\/\\/t.co\\/p6XojkDsrJ\",\"display_url\":\"pic.twitter.com\\/p6XojkDsrJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555270969526308864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"236\":{\"media\":[{\"id\":1555270714822983680,\"id_str\":\"1555270714822983680\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}},{\"id\":1555270718039924738,\"id_str\":\"1555270718039924738\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuelZWIAIjOV9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuelZWIAIjOV9.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"237\":{\"media\":[{\"id\":1555270415982936065,\"id_str\":\"1555270415982936065\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}},{\"id\":1555270419166412800,\"id_str\":\"1555270419166412800\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNMAWQAAh8Jk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNMAWQAAh8Jk.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270421817196545,\"id_str\":\"1555270421817196545\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNV4WAAEp2S4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNV4WAAEp2S4.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270446513328128,\"id_str\":\"1555270446513328128\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuOx4XEAAp50M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuOx4XEAAp50M.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":564,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":564,\"resize\":\"fit\"}}}]},\"238\":{\"media\":[{\"id\":1555270114387410944,\"id_str\":\"1555270114387410944\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}},{\"id\":1555270121542803459,\"id_str\":\"1555270121542803459\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt73RWYAMMPnn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt73RWYAMMPnn.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270126169104386,\"id_str\":\"1555270126169104386\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt8IgWIAIy_Y_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt8IgWIAIy_Y_.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":555,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":524,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":555,\"resize\":\"fit\"}}},{\"id\":1555270136319426568,\"id_str\":\"1555270136319426568\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt8uUXwAgEizq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt8uUXwAgEizq.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}}]},\"239\":{\"media\":[{\"id\":1555269568368631808,\"id_str\":\"1555269568368631808\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555269568368631808\\/pu\\/img\\/YDoevHluiyZ2Urcp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555269568368631808\\/pu\\/img\\/YDoevHluiyZ2Urcp.jpg\",\"url\":\"https:\\/\\/t.co\\/FSywjczyav\",\"display_url\":\"pic.twitter.com\\/FSywjczyav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mensgang\\/status\\/1555269706269052931\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":35933,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555269568368631808\\/pu\\/pl\\/yfIU1m2S_A_ZcW8S.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555269568368631808\\/pu\\/vid\\/320x556\\/Vi6qWOPXdNwwH49s.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555269568368631808\\/pu\\/vid\\/368x640\\/HZUQJFA33rZAopDg.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"240\":null,\"241\":{\"media\":[{\"id\":1555264644540948482,\"id_str\":\"1555264644540948482\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"url\":\"https:\\/\\/t.co\\/Jathe02eyN\",\"display_url\":\"pic.twitter.com\\/Jathe02eyN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nisgembu\\/status\\/1555264649989324802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":562,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":531,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":562,\"resize\":\"fit\"}}}]},\"242\":{\"media\":[{\"id\":1555257196476305411,\"id_str\":\"1555257196476305411\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"url\":\"https:\\/\\/t.co\\/5MALG8kSIN\",\"display_url\":\"pic.twitter.com\\/5MALG8kSIN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/musicwormcity\\/status\\/1555257331738353667\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[45,68],\"duration_millis\":31803,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/vid\\/320x482\\/TC99AgDnDNzOppCN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/vid\\/480x724\\/SZRZfnPGIuIRiQYc.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/vid\\/720x1088\\/EfhzcYCRmfvYK2Ue.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/pl\\/0st9aLV65G5KjOa9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"243\":null,\"244\":{\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/RMj7g6MMC1\",\"display_url\":\"pic.twitter.com\\/RMj7g6MMC1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}},\"source_status_id\":1555248905692086274,\"source_status_id_str\":\"1555248905692086274\",\"source_user_id\":1279448672183476224,\"source_user_id_str\":\"1279448672183476224\"}]},\"245\":{\"media\":[{\"id\":1555253487654641667,\"id_str\":\"1555253487654641667\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"url\":\"https:\\/\\/t.co\\/vEn321p0T2\",\"display_url\":\"pic.twitter.com\\/vEn321p0T2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Am_Benco\\/status\\/1555253770518405123\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22433,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/320x568\\/vTu3sRTScuxTnMbA.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/480x852\\/mE6nmTmpHZ8JkLVf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/pl\\/dkjo1rJAjW-R3CV3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/576x1024\\/sww_OBtxcImcpR5X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":{\"media\":[{\"id\":1555250710274523136,\"id_str\":\"1555250710274523136\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"url\":\"https:\\/\\/t.co\\/EfUaut9kOK\",\"display_url\":\"pic.twitter.com\\/EfUaut9kOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555250716188581893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"251\":{\"media\":[{\"id\":1555250004314431489,\"id_str\":\"1555250004314431489\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"url\":\"https:\\/\\/t.co\\/kzmzAnO5vv\",\"display_url\":\"pic.twitter.com\\/kzmzAnO5vv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Treasuregodwi7\\/status\\/1555250097927110658\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":24666,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/720x1280\\/HjspE8oqIOK9GuKS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/pl\\/YPA359CFpJL9ssnt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/320x568\\/QDduE-XwTXjvf8TD.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/480x852\\/KQNKV1WAbHs3YLRW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"252\":{\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/cmaB04hQQc\",\"display_url\":\"pic.twitter.com\\/cmaB04hQQc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}}}]},\"253\":{\"media\":[{\"id\":1555247726476115968,\"id_str\":\"1555247726476115968\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"url\":\"https:\\/\\/t.co\\/UPSQQiIjql\",\"display_url\":\"pic.twitter.com\\/UPSQQiIjql\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555247814728470528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,5],\"duration_millis\":31858,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/648x360\\/rQNkjHuKbsyM268Q.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/1080x600\\/W0nQ4wa_mC9mUIZP.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/486x270\\/o3P6GT5uOIkzs909.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/pl\\/KWjaBWGlNingDWHa.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"254\":null,\"255\":{\"media\":[{\"id\":1555247350880391169,\"id_str\":\"1555247350880391169\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"url\":\"https:\\/\\/t.co\\/F4ipVGpGv7\",\"display_url\":\"pic.twitter.com\\/F4ipVGpGv7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andredicksonn\\/status\\/1555247359264784394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}}]},\"256\":null,\"257\":{\"media\":[{\"id\":1555245913861509120,\"id_str\":\"1555245913861509120\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"url\":\"https:\\/\\/t.co\\/HRaxg8lwmS\",\"display_url\":\"pic.twitter.com\\/HRaxg8lwmS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1555246099278995456\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":60533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/vid\\/320x568\\/pNaq-GWDGbyM9jSs.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/pl\\/vjbxk7hyI3ecduz3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/vid\\/720x1280\\/GprmT6i1PTrSmZ6B.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/vid\\/480x852\\/5pw3aWwG2VGSkOrX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"258\":{\"media\":[{\"id\":1555245840435912705,\"id_str\":\"1555245840435912705\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"url\":\"https:\\/\\/t.co\\/ifvkYa4wvx\",\"display_url\":\"pic.twitter.com\\/ifvkYa4wvx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SiR__DONY\\/status\\/1555245847591403520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":422,\"resize\":\"fit\"}}},{\"id\":1555245844638695426,\"id_str\":\"1555245844638695426\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVX2wwXgAIIV9L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVX2wwXgAIIV9L.jpg\",\"url\":\"https:\\/\\/t.co\\/ifvkYa4wvx\",\"display_url\":\"pic.twitter.com\\/ifvkYa4wvx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SiR__DONY\\/status\\/1555245847591403520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"small\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"medium\":{\"w\":415,\"h\":363,\"resize\":\"fit\"}}}]},\"259\":{\"media\":[{\"id\":1555245449409331201,\"id_str\":\"1555245449409331201\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"url\":\"https:\\/\\/t.co\\/fBWDJy3vow\",\"display_url\":\"pic.twitter.com\\/fBWDJy3vow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555245463124824069\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":1329,\"resize\":\"fit\"}}}]},\"260\":{\"media\":[{\"id\":1555241323099312129,\"id_str\":\"1555241323099312129\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"url\":\"https:\\/\\/t.co\\/DGoLBK68RJ\",\"display_url\":\"pic.twitter.com\\/DGoLBK68RJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1555241326807060480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":348,\"resize\":\"fit\"}}}]},\"261\":{\"media\":[{\"id\":1555240673586069506,\"id_str\":\"1555240673586069506\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"url\":\"https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"display_url\":\"pic.twitter.com\\/3Z0k3P5ZFq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555240679495929856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":351,\"h\":680,\"resize\":\"fit\"}}}]},\"262\":{\"media\":[{\"id\":1555238932593377281,\"id_str\":\"1555238932593377281\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"url\":\"https:\\/\\/t.co\\/1UsANAgJJV\",\"display_url\":\"pic.twitter.com\\/1UsANAgJJV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brian_naija\\/status\\/1555239078848765957\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/480x852\\/H4pI4edokPFxT-qd.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/720x1280\\/CZQhA_38milakOke.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/320x568\\/hjpSUVee0zzrINr7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/pl\\/aRbtDSyFAm14x8m_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"263\":{\"media\":[{\"id\":1555238885218832385,\"id_str\":\"1555238885218832385\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"url\":\"https:\\/\\/t.co\\/TjKUhKr0q4\",\"display_url\":\"pic.twitter.com\\/TjKUhKr0q4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mazi127025\\/status\\/1555238918651629571\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1444,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":846,\"h\":1200,\"resize\":\"fit\"}}}]},\"264\":{\"media\":[{\"id\":1555237661354385408,\"id_str\":\"1555237661354385408\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"url\":\"https:\\/\\/t.co\\/QRvVsLNQfS\",\"display_url\":\"pic.twitter.com\\/QRvVsLNQfS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnyteInvestment\\/status\\/1555237679377399809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"265\":{\"media\":[{\"id\":1555237487114584064,\"id_str\":\"1555237487114584064\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"url\":\"https:\\/\\/t.co\\/ii0ZYtyYog\",\"display_url\":\"pic.twitter.com\\/ii0ZYtyYog\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555237490612731906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}}]},\"266\":null,\"267\":{\"media\":[{\"id\":1555236063790104577,\"id_str\":\"1555236063790104577\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"url\":\"https:\\/\\/t.co\\/q3EnTanOHT\",\"display_url\":\"pic.twitter.com\\/q3EnTanOHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555236168366686208\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44993,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/540x540\\/B_BvFbJR-n-YLRy_.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/320x320\\/LTK5fm5nPmdSNqjd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/pl\\/uJ4hrdZPOTFR0lt4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/720x720\\/KnwB8Mrio_eD4VdQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"268\":null,\"269\":null,\"270\":{\"media\":[{\"id\":1555234395933507588,\"id_str\":\"1555234395933507588\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"}}},{\"id\":1555234404775198722,\"id_str\":\"1555234404775198722\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNc38XgAIPNwd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNc38XgAIPNwd.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1555234412605964296,\"id_str\":\"1555234412605964296\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNdVHXgAgGdTt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNdVHXgAgGdTt.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}},{\"id\":1555234420642168832,\"id_str\":\"1555234420642168832\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNdzDWQAA87VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNdzDWQAA87VV.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}}]},\"271\":null,\"272\":{\"media\":[{\"id\":1555231228764295169,\"id_str\":\"1555231228764295169\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"}}},{\"id\":1555231301673918464,\"id_str\":\"1555231301673918464\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKoP_XoAAPJuu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKoP_XoAAPJuu.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":646,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1026,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1026,\"resize\":\"fit\"}}},{\"id\":1555231371039281153,\"id_str\":\"1555231371039281153\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKsSZXEAEmdcj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKsSZXEAEmdcj.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1555231424327868418,\"id_str\":\"1555231424327868418\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKvY6WYAIRETF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKvY6WYAIRETF.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}}]},\"273\":{\"media\":[{\"id\":1555231241796042752,\"id_str\":\"1555231241796042752\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"url\":\"https:\\/\\/t.co\\/0VeX3MpLGa\",\"display_url\":\"pic.twitter.com\\/0VeX3MpLGa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OMOJESUCFR\\/status\\/1555231420993478661\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":870,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":563,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[29,24],\"duration_millis\":8200,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/434x360\\/ZBmT1jXdhIVkZixP.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/pl\\/ziIHcO3DUJyFvSwm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/326x270\\/Z7GHgpuk4fsRvtjl.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/870x720\\/tKfffWMEJvBFaAlZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"274\":{\"media\":[{\"id\":1555231185214885888,\"id_str\":\"1555231185214885888\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":643,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"}}},{\"id\":1555231218005835776,\"id_str\":\"1555231218005835776\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKjYTWAAA3Bps.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKjYTWAAA3Bps.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1555231272305303554,\"id_str\":\"1555231272305303554\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKmilWIAIN7eZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKmilWIAIN7eZ.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1070,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":674,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1070,\"resize\":\"fit\"}}},{\"id\":1555231365603500032,\"id_str\":\"1555231365603500032\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKr-JXoAA8jJh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKr-JXoAA8jJh.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"}}}]},\"275\":{\"media\":[{\"id\":1555231069720481792,\"id_str\":\"1555231069720481792\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}},{\"id\":1555231140700737536,\"id_str\":\"1555231140700737536\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKe4UX0AAxDzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKe4UX0AAxDzN.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":641,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"}}},{\"id\":1555231214029737984,\"id_str\":\"1555231214029737984\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKjJfXkAAlTp7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKjJfXkAAlTp7.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":638,\"resize\":\"fit\"}}},{\"id\":1555231272292827137,\"id_str\":\"1555231272292827137\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKmiiXwAEbqYj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKmiiXwAEbqYj.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}}]},\"276\":{\"media\":[{\"id\":1555230858944069632,\"id_str\":\"1555230858944069632\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"url\":\"https:\\/\\/t.co\\/zh5UqmwfBT\",\"display_url\":\"pic.twitter.com\\/zh5UqmwfBT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_tusure\\/status\\/1555231253607194624\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":98766,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/vid\\/720x1280\\/erKuLrwjCJWCdTNG.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/vid\\/320x568\\/fy34TEArcYbs_n4q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/pl\\/p4L7j01uj5pSxKKt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/vid\\/480x852\\/OU2Ra4j2dOhNgCWH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"277\":{\"media\":[{\"id\":1555231010064896000,\"id_str\":\"1555231010064896000\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}},{\"id\":1555231051718475777,\"id_str\":\"1555231051718475777\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKZs1WQAEkXLK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKZs1WQAEkXLK.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":641,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"}}},{\"id\":1555231061923225601,\"id_str\":\"1555231061923225601\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKaS2WYAEf2kW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKaS2WYAEf2kW.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":638,\"resize\":\"fit\"}}},{\"id\":1555231091220439045,\"id_str\":\"1555231091220439045\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKb__WYAULMkh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKb__WYAULMkh.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}}]},\"278\":{\"media\":[{\"id\":1555231060673323009,\"id_str\":\"1555231060673323009\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKaOMWYAECDC_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKaOMWYAECDC_.jpg\",\"url\":\"https:\\/\\/t.co\\/SqnyiqaVVv\",\"display_url\":\"pic.twitter.com\\/SqnyiqaVVv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PastorKelvin6\\/status\\/1555231080936099842\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"279\":null,\"280\":{\"media\":[{\"id\":1555229954048155649,\"id_str\":\"1555229954048155649\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"url\":\"https:\\/\\/t.co\\/HvUJEYPLT4\",\"display_url\":\"pic.twitter.com\\/HvUJEYPLT4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Degreat046\\/status\\/1555229961732194307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":496,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":987,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":987,\"resize\":\"fit\"}}}]},\"281\":null,\"282\":{\"media\":[{\"id\":1555228297512058882,\"id_str\":\"1555228297512058882\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"url\":\"https:\\/\\/t.co\\/xTV2UtbAoO\",\"display_url\":\"pic.twitter.com\\/xTV2UtbAoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kings_xchange\\/status\\/1555228303707017217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":535,\"resize\":\"fit\"}}}]},\"283\":null,\"284\":null,\"285\":{\"media\":[{\"id\":1555225367094362112,\"id_str\":\"1555225367094362112\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"url\":\"https:\\/\\/t.co\\/d7KWZW8o6P\",\"display_url\":\"pic.twitter.com\\/d7KWZW8o6P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555225412145405952\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":30036,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555225367094362112\\/pu\\/pl\\/TnJtIsLLShFbryHv.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555225367094362112\\/pu\\/vid\\/368x640\\/Y1EtOIrSsp49Txee.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555225367094362112\\/pu\\/vid\\/320x556\\/n9t8IfF4vPkJ1Ogz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"286\":{\"media\":[{\"id\":1555224387703513092,\"id_str\":\"1555224387703513092\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"url\":\"https:\\/\\/t.co\\/W1gUdkdJgc\",\"display_url\":\"pic.twitter.com\\/W1gUdkdJgc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BriefNig\\/status\\/1555224391016931329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"medium\":{\"w\":577,\"h\":428,\"resize\":\"fit\"}}}]},\"287\":{\"media\":[{\"id\":1555223948794777600,\"id_str\":\"1555223948794777600\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVD8QYX0AAUd5k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVD8QYX0AAUd5k.jpg\",\"url\":\"https:\\/\\/t.co\\/UvghxtWYEz\",\"display_url\":\"pic.twitter.com\\/UvghxtWYEz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinDelasi\\/status\\/1555223955497271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"288\":{\"media\":[{\"id\":1555223831496859648,\"id_str\":\"1555223831496859648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVD1baXoAAPEMW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVD1baXoAAPEMW.jpg\",\"url\":\"https:\\/\\/t.co\\/8Ztx1T4t1Z\",\"display_url\":\"pic.twitter.com\\/8Ztx1T4t1Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinDelasi\\/status\\/1555223839545630720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1033,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":585,\"resize\":\"fit\"},\"large\":{\"w\":1999,\"h\":1721,\"resize\":\"fit\"}}}]},\"289\":null,\"290\":null,\"291\":{\"media\":[{\"id\":1555220066597232641,\"id_str\":\"1555220066597232641\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"url\":\"https:\\/\\/t.co\\/jSCunSLu3Z\",\"display_url\":\"pic.twitter.com\\/jSCunSLu3Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220227746664448\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"},\"medium\":{\"w\":854,\"h\":474,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":474,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[427,237],\"duration_millis\":68992,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220066597232641\\/pu\\/vid\\/486x270\\/CFUQqQhyHvZVm-Un.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220066597232641\\/pu\\/pl\\/CcRV2D1Q20_OEqkd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220066597232641\\/pu\\/vid\\/854x474\\/ukRsCJ56A3ssXAXk.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"292\":{\"media\":[{\"id\":1555219299949764610,\"id_str\":\"1555219299949764610\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"url\":\"https:\\/\\/t.co\\/lScNEVABlX\",\"display_url\":\"pic.twitter.com\\/lScNEVABlX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220046305181696\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44962,\"variants\":[{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/vid\\/720x720\\/a2arcA6NXbScp6zo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/pl\\/k_sQgyE45b47Ijgn.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/vid\\/540x540\\/IJdx5TWO0E5Ngs6p.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/vid\\/320x320\\/ifX4PXoAHa6DiKO-.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"293\":null,\"294\":{\"media\":[{\"id\":1555219685959933952,\"id_str\":\"1555219685959933952\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"url\":\"https:\\/\\/t.co\\/9IwrKho6D7\",\"display_url\":\"pic.twitter.com\\/9IwrKho6D7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Heisoovii\\/status\\/1555219782856851458\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":98915,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219685959933952\\/pu\\/pl\\/c1YPWp7viN76kul_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219685959933952\\/pu\\/vid\\/480x848\\/QKmHvwGDdszcMo-s.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219685959933952\\/pu\\/vid\\/320x564\\/xx4N0UpnxjnvDCjQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"295\":{\"media\":[{\"id\":1555219206618103808,\"id_str\":\"1555219206618103808\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"url\":\"https:\\/\\/t.co\\/s1bj2Id58o\",\"display_url\":\"pic.twitter.com\\/s1bj2Id58o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fatima_shaaikh\\/status\\/1555219220975308802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":668,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":379,\"h\":680,\"resize\":\"fit\"}}}]},\"296\":null,\"297\":{\"media\":[{\"id\":1555218459960680453,\"id_str\":\"1555218459960680453\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"url\":\"https:\\/\\/t.co\\/RVZHJv4Dq9\",\"display_url\":\"pic.twitter.com\\/RVZHJv4Dq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218967303753729\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":73620,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/pl\\/pR4ytgh9-FwoXmVx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/vid\\/720x1280\\/Q8oV8xn7JHasLTvT.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/vid\\/320x568\\/3-bjzX8eElWKueyf.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/vid\\/480x852\\/wFZCB1GV84CoggpJ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"298\":null,\"299\":null,\"300\":{\"media\":[{\"id\":1555217157318971392,\"id_str\":\"1555217157318971392\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"url\":\"https:\\/\\/t.co\\/eP39dmYkk0\",\"display_url\":\"pic.twitter.com\\/eP39dmYkk0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218235380875266\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":73620,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/vid\\/480x852\\/uWzkNw2plIU91F6C.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/vid\\/320x568\\/loCWjKN1eR5TdD2l.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/vid\\/720x1280\\/8lemkPc2nmbFvW-Q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/pl\\/uHiFQdG1LIgVSNF2.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"301\":{\"media\":[{\"id\":1555215915213590528,\"id_str\":\"1555215915213590528\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"url\":\"https:\\/\\/t.co\\/IcB3qoU3yo\",\"display_url\":\"pic.twitter.com\\/IcB3qoU3yo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Realseunkazeem\\/status\\/1555215938898755585\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"302\":{\"media\":[{\"id\":1555213939134369792,\"id_str\":\"1555213939134369792\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"url\":\"https:\\/\\/t.co\\/zeEkduujDv\",\"display_url\":\"pic.twitter.com\\/zeEkduujDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ateaseauto\\/status\\/1555214019400810498\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"303\":{\"media\":[{\"id\":1555212987299946497,\"id_str\":\"1555212987299946497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"url\":\"https:\\/\\/t.co\\/2T16mzm66j\",\"display_url\":\"pic.twitter.com\\/2T16mzm66j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/edublogsng\\/status\\/1555213282570514433\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":45000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/640x360\\/x_NXsQ8iK4US-5pj.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/480x270\\/bLhkUhj9nzK-l_GR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/pl\\/dqzzSaQ_b-t6GjUm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/1280x720\\/mw1RIM4R48eTdCsy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"304\":{\"media\":[{\"id\":1555212991762669569,\"id_str\":\"1555212991762669569\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"url\":\"https:\\/\\/t.co\\/6jLeVt1HGi\",\"display_url\":\"pic.twitter.com\\/6jLeVt1HGi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1555213231454552069\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":15136,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/vid\\/320x426\\/dUUMkTixXd40YLsc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/pl\\/Oh_6-yQm3BfpzmhR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/vid\\/480x640\\/UzT2kwG9R8h71m-0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/vid\\/720x960\\/42x3pZsrXt4dC6Ev.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"305\":{\"media\":[{\"id\":1555212143154298880,\"id_str\":\"1555212143154298880\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"url\":\"https:\\/\\/t.co\\/0jgRDDdSbU\",\"display_url\":\"pic.twitter.com\\/0jgRDDdSbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555212380228960256\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,601],\"duration_millis\":60000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/pl\\/ghR5bQjid_koVVm1.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/vid\\/320x600\\/I8ifp_73Go82PFvH.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/vid\\/640x1202\\/ojbXG5-0Gtl3MzYa.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/vid\\/480x900\\/jkhfUslenmUGkb0i.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"306\":null,\"307\":{\"media\":[{\"id\":1555211349680087044,\"id_str\":\"1555211349680087044\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"url\":\"https:\\/\\/t.co\\/Yn4c3dWBGh\",\"display_url\":\"pic.twitter.com\\/Yn4c3dWBGh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnChudosky\\/status\\/1555211358597160961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"308\":{\"media\":[{\"id\":1555210948415307777,\"id_str\":\"1555210948415307777\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"url\":\"https:\\/\\/t.co\\/ttOTCeFsTr\",\"display_url\":\"pic.twitter.com\\/ttOTCeFsTr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1555210958066294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"309\":null,\"310\":null,\"311\":{\"media\":[{\"id\":1555204698088554496,\"id_str\":\"1555204698088554496\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"url\":\"https:\\/\\/t.co\\/SI0FBo6nXP\",\"display_url\":\"pic.twitter.com\\/SI0FBo6nXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sunshinemporium\\/status\\/1555204755034722304\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":14379,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555204698088554496\\/pu\\/pl\\/Q79tn1OlrBa3upwx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555204698088554496\\/pu\\/vid\\/320x564\\/yhOuf8Uvql5ePiXu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555204698088554496\\/pu\\/vid\\/480x848\\/_ubaFHvBeDVY4hS6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":{\"media\":[{\"id\":1555203508659490816,\"id_str\":\"1555203508659490816\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjge4pwSaL\",\"display_url\":\"pic.twitter.com\\/Qjge4pwSaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GistHubNaija\\/status\\/1555203587046887425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13867,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/720x1280\\/k-F63Ym3C_sN3LIK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/480x852\\/3WsVvLNzmsgirtbO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/320x568\\/WNfwsCEJhDNkTq7-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/pl\\/NkGr0e58zqw7mIF8.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"317\":null,\"318\":{\"media\":[{\"id\":1555203034082414594,\"id_str\":\"1555203034082414594\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"url\":\"https:\\/\\/t.co\\/LcDAYcTaY0\",\"display_url\":\"pic.twitter.com\\/LcDAYcTaY0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1555203105435836416\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44999,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/320x568\\/cjQEq3KHYPJGaVAN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/480x852\\/uP6ONgZ3O-vicyS1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/pl\\/Sy9CyVPQs1AS-uQD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/576x1024\\/xrWWXIEBHuLPeD6_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"319\":null,\"320\":null,\"321\":{\"media\":[{\"id\":1555201877087772674,\"id_str\":\"1555201877087772674\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"url\":\"https:\\/\\/t.co\\/0X1IN17Ti6\",\"display_url\":\"pic.twitter.com\\/0X1IN17Ti6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555201883526107141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":923,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":923,\"resize\":\"fit\"}}}]},\"322\":null,\"323\":{\"media\":[{\"id\":1555201370579427329,\"id_str\":\"1555201370579427329\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"url\":\"https:\\/\\/t.co\\/AGjMoC7ohM\",\"display_url\":\"pic.twitter.com\\/AGjMoC7ohM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djustman007\\/status\\/1555201393216131076\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}},{\"id\":1555201378561269763,\"id_str\":\"1555201378561269763\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvaftXoAM8Q1R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvaftXoAM8Q1R.jpg\",\"url\":\"https:\\/\\/t.co\\/AGjMoC7ohM\",\"display_url\":\"pic.twitter.com\\/AGjMoC7ohM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djustman007\\/status\\/1555201393216131076\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"324\":{\"media\":[{\"id\":1555200965430722563,\"id_str\":\"1555200965430722563\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"url\":\"https:\\/\\/t.co\\/yAwMxajutT\",\"display_url\":\"pic.twitter.com\\/yAwMxajutT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tuplex50\\/status\\/1555200972980371458\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":960,\"h\":561,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":397,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":561,\"resize\":\"fit\"}}}]},\"325\":null,\"326\":null,\"327\":{\"media\":[{\"id\":1555197239550791680,\"id_str\":\"1555197239550791680\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"url\":\"https:\\/\\/t.co\\/GLfJo7ie3U\",\"display_url\":\"pic.twitter.com\\/GLfJo7ie3U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555197297847328768\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20033,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/vid\\/480x852\\/ZixAAL-X2ntH1rTd.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/vid\\/576x1024\\/RIPMXKAXqWj3AbCz.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/vid\\/320x568\\/gndkb8WPZ8AvV9OX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/pl\\/HR_tmAKzvb1H00VF.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"328\":null,\"329\":{\"media\":[{\"id\":1555196687752335361,\"id_str\":\"1555196687752335361\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"url\":\"https:\\/\\/t.co\\/LonB0rDlm4\",\"display_url\":\"pic.twitter.com\\/LonB0rDlm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olubabaoshole\\/status\\/1555196763736342531\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":11326,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/pl\\/ZQYk6Ea5vrm4UUAq.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/320x320\\/GLNAtxH_lQjC_EqI.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/720x720\\/yXfIafvOQ4pP6bNJ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/540x540\\/vslPIHRhbNh_GeGx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"330\":null,\"331\":null,\"332\":{\"media\":[{\"id\":1555194081873100800,\"id_str\":\"1555194081873100800\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"url\":\"https:\\/\\/t.co\\/ywYK05ZX3w\",\"display_url\":\"pic.twitter.com\\/ywYK05ZX3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1555194091448811520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"333\":{\"media\":[{\"id\":1555193645665587200,\"id_str\":\"1555193645665587200\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1555193645669695491,\"id_str\":\"1555193645669695491\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcWQAM6oWI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcWQAM6oWI.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1555193645669748736,\"id_str\":\"1555193645669748736\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcXEAAzm-D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcXEAAzm-D.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"334\":{\"media\":[{\"id\":1555192097443037187,\"id_str\":\"1555192097443037187\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"url\":\"https:\\/\\/t.co\\/qRPNMgIwn5\",\"display_url\":\"pic.twitter.com\\/qRPNMgIwn5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pemercltd\\/status\\/1555192171078340608\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/vid\\/540x540\\/9BZ51Y-s9g5K6iDx.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/vid\\/320x320\\/XBu7KnV_bJEPsFQ6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/pl\\/aJCGTgxFtvYAyvpU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/vid\\/720x720\\/xTYQFvc0thgvxzGo.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"335\":null,\"336\":{\"media\":[{\"id\":1555191273857875968,\"id_str\":\"1555191273857875968\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUmOUwWAAAvLNQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUmOUwWAAAvLNQ.jpg\",\"url\":\"https:\\/\\/t.co\\/OjJXKjIxaW\",\"display_url\":\"pic.twitter.com\\/OjJXKjIxaW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/moldersgroup\\/status\\/1555191551189557253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1199,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2046,\"resize\":\"fit\"}}}]},\"337\":null,\"338\":{\"media\":[{\"id\":1555190711372365825,\"id_str\":\"1555190711372365825\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"url\":\"https:\\/\\/t.co\\/geJezowyMb\",\"display_url\":\"pic.twitter.com\\/geJezowyMb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmaijoseph\\/status\\/1555191096170479617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"339\":{\"media\":[{\"id\":1555189400874672130,\"id_str\":\"1555189400874672130\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"url\":\"https:\\/\\/t.co\\/Wj1lzHDUbI\",\"display_url\":\"pic.twitter.com\\/Wj1lzHDUbI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1202_Scents\\/status\\/1555189409909276680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"}}}]},\"340\":{\"media\":[{\"id\":1555189176026501120,\"id_str\":\"1555189176026501120\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"url\":\"https:\\/\\/t.co\\/X3b0pY8Jui\",\"display_url\":\"pic.twitter.com\\/X3b0pY8Jui\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayinmakarma\\/status\\/1555189182955503616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":487,\"resize\":\"fit\"},\"medium\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"}}}]},\"341\":null,\"342\":{\"media\":[{\"id\":1555186092831395840,\"id_str\":\"1555186092831395840\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555186092831395840\\/pu\\/img\\/vTYnUIk50oBFJ3Y9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555186092831395840\\/pu\\/img\\/vTYnUIk50oBFJ3Y9.jpg\",\"url\":\"https:\\/\\/t.co\\/8gHhmPcWNY\",\"display_url\":\"pic.twitter.com\\/8gHhmPcWNY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/matinodon1\\/status\\/1555186278202806276\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":39913,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555186092831395840\\/pu\\/pl\\/Gldd1nQf8L7wQovW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555186092831395840\\/pu\\/vid\\/320x600\\/ti_Ro6dC31AP8qNq.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555186092831395840\\/pu\\/vid\\/656x1232\\/LRPohVBuyinaf2v6.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555186092831395840\\/pu\\/vid\\/480x900\\/RvXIBZmPm-l37uCF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"343\":{\"media\":[{\"id\":1555185932877307907,\"id_str\":\"1555185932877307907\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUhXcDWIAMHB3m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUhXcDWIAMHB3m.jpg\",\"url\":\"https:\\/\\/t.co\\/KwJ1pfCXAO\",\"display_url\":\"pic.twitter.com\\/KwJ1pfCXAO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KofiDave77\\/status\\/1555185939084972032\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1125,\"h\":1129,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":678,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1125,\"h\":1129,\"resize\":\"fit\"}}}]},\"344\":null,\"345\":{\"media\":[{\"id\":1555184643934134276,\"id_str\":\"1555184643934134276\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"url\":\"https:\\/\\/t.co\\/XWcnYOEdSF\",\"display_url\":\"pic.twitter.com\\/XWcnYOEdSF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/J4PMARKETERS\\/status\\/1555184653732028418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":412,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"}}}]},\"346\":{\"media\":[{\"id\":1555183806751055874,\"id_str\":\"1555183806751055874\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"url\":\"https:\\/\\/t.co\\/wyrlRD1y4C\",\"display_url\":\"pic.twitter.com\\/wyrlRD1y4C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dj_borsh\\/status\\/1555184514900582401\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":59976,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/640x360\\/TJCJXwn7eTclPM0-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/pl\\/agxsbZkcMoja0vQu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/1280x720\\/sgNW-YKg90gjWX_w.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/480x270\\/bhesvUBaWIRT7GuL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"347\":{\"media\":[{\"id\":1555182811249840132,\"id_str\":\"1555182811249840132\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"url\":\"https:\\/\\/t.co\\/EbvZMC6t5w\",\"display_url\":\"pic.twitter.com\\/EbvZMC6t5w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Drexxofficiall\\/status\\/1555182895467315200\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":60008,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/pl\\/K7v5oygYfNZ6hxRh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/vid\\/480x270\\/TKEyewi2dg66rXk6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/vid\\/1280x720\\/LbzTx6u0zWHP1kOm.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/vid\\/640x360\\/6v1PXRRSvbnmuVvf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"348\":{\"media\":[{\"id\":1555181498965295106,\"id_str\":\"1555181498965295106\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"url\":\"https:\\/\\/t.co\\/cXf8ss8bW0\",\"display_url\":\"pic.twitter.com\\/cXf8ss8bW0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1555181501632942083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"},\"medium\":{\"w\":700,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":400,\"resize\":\"fit\"}}}]},\"349\":{\"media\":[{\"id\":1555180460329897992,\"id_str\":\"1555180460329897992\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1933,\"resize\":\"fit\"}}},{\"id\":1555180470563897345,\"id_str\":\"1555180470563897345\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcZfWWAAE1Q8M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcZfWWAAE1Q8M.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1934,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555180477581037570,\"id_str\":\"1555180477581037570\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcZ5fXEAINHOL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcZ5fXEAINHOL.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":548,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":871,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":871,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555180485512511489,\"id_str\":\"1555180485512511489\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcaXCXwAEcpRD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcaXCXwAEcpRD.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":859,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":859,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":570,\"h\":680,\"resize\":\"fit\"}}}]},\"350\":{\"media\":[{\"id\":1555180451605659649,\"id_str\":\"1555180451605659649\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"url\":\"https:\\/\\/t.co\\/kBSGuw5lAF\",\"display_url\":\"pic.twitter.com\\/kBSGuw5lAF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1555180458555613184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"351\":null,\"352\":null,\"353\":null,\"354\":{\"media\":[{\"id\":1555174887903432704,\"id_str\":\"1555174887903432704\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"url\":\"https:\\/\\/t.co\\/OwCNmTJy2S\",\"display_url\":\"pic.twitter.com\\/OwCNmTJy2S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/K_h_a_l_i_f\\/status\\/1555174968110878720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20400,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/480x852\\/ctpBUa_FwUb7L7h2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/320x568\\/4qW2KHQkM9CjdBks.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/pl\\/_esVImalS8-0k5YS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/576x1024\\/s67CHmmonXSHQHvl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"355\":null,\"356\":null,\"357\":{\"media\":[{\"id\":1555173183489277957,\"id_str\":\"1555173183489277957\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"url\":\"https:\\/\\/t.co\\/1k4n29zj8M\",\"display_url\":\"pic.twitter.com\\/1k4n29zj8M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555173247641161729\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":44939,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555173183489277957\\/pu\\/pl\\/EuTmueUSV1xArakt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555173183489277957\\/pu\\/vid\\/480x256\\/UzYfdMDiiejZtmBm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"358\":null,\"359\":{\"media\":[{\"id\":1555169769480982530,\"id_str\":\"1555169769480982530\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"url\":\"https:\\/\\/t.co\\/nqu1JUJBNW\",\"display_url\":\"pic.twitter.com\\/nqu1JUJBNW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/andre_design1\\/status\\/1555169785113182209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":547,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1646,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":965,\"h\":1200,\"resize\":\"fit\"}}}]},\"360\":null,\"361\":null,\"362\":{\"media\":[{\"id\":1555168270096941056,\"id_str\":\"1555168270096941056\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"url\":\"https:\\/\\/t.co\\/maVn9omPE3\",\"display_url\":\"pic.twitter.com\\/maVn9omPE3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1555168278548471814\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"363\":{\"media\":[{\"id\":1555167868895068165,\"id_str\":\"1555167868895068165\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"url\":\"https:\\/\\/t.co\\/U63Lw3koX1\",\"display_url\":\"pic.twitter.com\\/U63Lw3koX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nwakaibeya001\\/status\\/1555168058779525126\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":9389,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/vid\\/352x640\\/79oHSuLgCG7zzH2-.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/vid\\/320x580\\/u2hkbKoEA3S-uC8A.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/pl\\/PrzU_-_QXQ9ymZgl.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"364\":{\"media\":[{\"id\":1555167779841515523,\"id_str\":\"1555167779841515523\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"url\":\"https:\\/\\/t.co\\/JD9k0lRhKe\",\"display_url\":\"pic.twitter.com\\/JD9k0lRhKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EchezqueH\\/status\\/1555167787605233664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"365\":null,\"366\":{\"media\":[{\"id\":1555165843989970944,\"id_str\":\"1555165843989970944\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"url\":\"https:\\/\\/t.co\\/fUqpTBJqZB\",\"display_url\":\"pic.twitter.com\\/fUqpTBJqZB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RevenesNigeria\\/status\\/1555165846510751746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"367\":{\"media\":[{\"id\":1555165240739905538,\"id_str\":\"1555165240739905538\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"url\":\"https:\\/\\/t.co\\/aJyefnJaPq\",\"display_url\":\"pic.twitter.com\\/aJyefnJaPq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CjKrisEze\\/status\\/1555165337112530944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":44992,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555165240739905538\\/pu\\/vid\\/352x640\\/Cw-33MMYt8Bucbex.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555165240739905538\\/pu\\/vid\\/320x580\\/UWtASTDQAgmxQ4rY.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555165240739905538\\/pu\\/pl\\/79epuh1smybI-_oW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"368\":{\"media\":[{\"id\":1555165190198640640,\"id_str\":\"1555165190198640640\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"url\":\"https:\\/\\/t.co\\/Brr9ZnDADz\",\"display_url\":\"pic.twitter.com\\/Brr9ZnDADz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555165192924831744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":502,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":638,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":638,\"resize\":\"fit\"}}}]},\"369\":null,\"370\":{\"media\":[{\"id\":1555162706549800960,\"id_str\":\"1555162706549800960\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"url\":\"https:\\/\\/t.co\\/qazOjUwnZ7\",\"display_url\":\"pic.twitter.com\\/qazOjUwnZ7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunadePraise\\/status\\/1555162714733006849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555136742914531328,\"id_str\":\"1555136742914531328\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"url\":\"https:\\/\\/t.co\\/UhSpASo6FT\",\"display_url\":\"pic.twitter.com\\/UhSpASo6FT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Military_News4\\/status\\/1555137709621911552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1555137709621911552,\"source_status_id_str\":\"1555137709621911552\",\"source_user_id\":928852100619964417,\"source_user_id_str\":\"928852100619964417\"}]},\"371\":{\"media\":[{\"id\":1555161212412989443,\"id_str\":\"1555161212412989443\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"url\":\"https:\\/\\/t.co\\/C2HwqBfqlE\",\"display_url\":\"pic.twitter.com\\/C2HwqBfqlE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gobarta_\\/status\\/1555161230607777793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"372\":{\"media\":[{\"id\":1555160004008841216,\"id_str\":\"1555160004008841216\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUJyLfXkAAkUy4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUJyLfXkAAkUy4.jpg\",\"url\":\"https:\\/\\/t.co\\/rcqbW43LcE\",\"display_url\":\"pic.twitter.com\\/rcqbW43LcE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GIJShuttle\\/status\\/1555160016973209600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"373\":null,\"374\":{\"media\":[{\"id\":1555156322076827650,\"id_str\":\"1555156322076827650\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"url\":\"https:\\/\\/t.co\\/CN3kYOdU36\",\"display_url\":\"pic.twitter.com\\/CN3kYOdU36\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bhginfodesk\\/status\\/1555158033004724225\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":272,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,17],\"duration_millis\":38171,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555156322076827650\\/pu\\/pl\\/2EkGa62TQZ3kChNH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555156322076827650\\/pu\\/vid\\/640x272\\/ev0VEbtNZEZs9aYz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"375\":null,\"376\":{\"media\":[{\"id\":1555156992766902274,\"id_str\":\"1555156992766902274\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"url\":\"https:\\/\\/t.co\\/gliY1QIjih\",\"display_url\":\"pic.twitter.com\\/gliY1QIjih\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555157065131298817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"}}}]},\"377\":{\"media\":[{\"id\":1555156710142124035,\"id_str\":\"1555156710142124035\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"url\":\"https:\\/\\/t.co\\/yDtdwBf7Nr\",\"display_url\":\"pic.twitter.com\\/yDtdwBf7Nr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1555156719885492224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1147,\"resize\":\"fit\"}}}]},\"378\":{\"media\":[{\"id\":1555155409132212224,\"id_str\":\"1555155409132212224\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"url\":\"https:\\/\\/t.co\\/0XVPeJqRkf\",\"display_url\":\"pic.twitter.com\\/0XVPeJqRkf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555155450995556352\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48101,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555155409132212224\\/pu\\/pl\\/6FDcIHChqnrFN4Kw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555155409132212224\\/pu\\/vid\\/480x270\\/-7nlAhNDrSM1hlAy.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555155409132212224\\/pu\\/vid\\/640x360\\/pbIVG9P0fjBedF9k.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"379\":null,\"380\":null,\"381\":null,\"382\":{\"media\":[{\"id\":1555154158386397187,\"id_str\":\"1555154158386397187\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"url\":\"https:\\/\\/t.co\\/sdWjMuziSQ\",\"display_url\":\"pic.twitter.com\\/sdWjMuziSQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JHONEXEMPIRE\\/status\\/1555154282038657026\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":18833,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/pl\\/UlfYuKkr_TpLCpJO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/vid\\/720x1280\\/Mx0x6SwXPBgbDvK4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/vid\\/480x852\\/ihnO4lP2ooVEM-JE.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/vid\\/320x568\\/1bAKUo7PJq_FOaAI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"383\":null,\"384\":{\"media\":[{\"id\":1555153103313604609,\"id_str\":\"1555153103313604609\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"url\":\"https:\\/\\/t.co\\/JMx7Icb0oM\",\"display_url\":\"pic.twitter.com\\/JMx7Icb0oM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555153135496478720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,30],\"duration_millis\":21640,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/pl\\/qN-08nfsj9-BS6TU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/vid\\/320x564\\/AC50xsha3iNlW892.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/vid\\/544x960\\/vfcaRlLgtbVVxGBW.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/vid\\/480x846\\/GsISfJcJsF4Xxsom.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"385\":null,\"386\":{\"media\":[{\"id\":1555152665503563776,\"id_str\":\"1555152665503563776\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"url\":\"https:\\/\\/t.co\\/WOacyTORbz\",\"display_url\":\"pic.twitter.com\\/WOacyTORbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/spacemallio\\/status\\/1555152668116533248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"387\":{\"media\":[{\"id\":1555152598109663232,\"id_str\":\"1555152598109663232\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"url\":\"https:\\/\\/t.co\\/kGhTbqimX7\",\"display_url\":\"pic.twitter.com\\/kGhTbqimX7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555152605470662656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"medium\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"388\":{\"media\":[{\"id\":1555152109657546755,\"id_str\":\"1555152109657546755\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"url\":\"https:\\/\\/t.co\\/gtYI0jeg8Q\",\"display_url\":\"pic.twitter.com\\/gtYI0jeg8Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1555152122827751425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"}}}]},\"389\":null,\"390\":null,\"391\":null,\"392\":{\"media\":[{\"id\":1555150975874252801,\"id_str\":\"1555150975874252801\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6MLUjktPI\",\"display_url\":\"pic.twitter.com\\/Y6MLUjktPI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Behold_Homes\\/status\\/1555150978747432963\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"393\":{\"media\":[{\"id\":1555150593911656448,\"id_str\":\"1555150593911656448\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"url\":\"https:\\/\\/t.co\\/lHlF5DsSgw\",\"display_url\":\"pic.twitter.com\\/lHlF5DsSgw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ReginaldAnnobil\\/status\\/1555150597149433864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"large\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"small\":{\"w\":547,\"h\":434,\"resize\":\"fit\"}}}]},\"394\":{\"media\":[{\"id\":1555150224192147458,\"id_str\":\"1555150224192147458\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555150223571288069,\"id_str\":\"1555150223571288069\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA44hWAAUnEJJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA44hWAAUnEJJ.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1555150223550414850,\"id_str\":\"1555150223550414850\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA44cXgAI7JIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA44cXgAI7JIN.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}},{\"id\":1555150223537836032,\"id_str\":\"1555150223537836032\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA44ZXkAA8oIu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA44ZXkAA8oIu.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"395\":{\"media\":[{\"id\":1555149692396265473,\"id_str\":\"1555149692396265473\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"url\":\"https:\\/\\/t.co\\/k24n6sdcoO\",\"display_url\":\"pic.twitter.com\\/k24n6sdcoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BargainFortress\\/status\\/1555149702697476101\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":856,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"396\":{\"media\":[{\"id\":1555149362526830592,\"id_str\":\"1555149362526830592\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"url\":\"https:\\/\\/t.co\\/UWW30ahzr7\",\"display_url\":\"pic.twitter.com\\/UWW30ahzr7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rukegetrich09\\/status\\/1555149398035906561\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":224,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[25,14],\"duration_millis\":43934,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555149362526830592\\/pu\\/pl\\/8qbj8Ae1UhgB0Oid.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555149362526830592\\/pu\\/vid\\/400x224\\/hkAJqhc-84wXii98.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"397\":{\"media\":[{\"id\":1555148898599141376,\"id_str\":\"1555148898599141376\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"url\":\"https:\\/\\/t.co\\/vJ5ijjcRis\",\"display_url\":\"pic.twitter.com\\/vJ5ijjcRis\",\"expanded_url\":\"https:\\/\\/twitter.com\\/welcometoabove\\/status\\/1555148913782493185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"398\":{\"media\":[{\"id\":1555147588466262016,\"id_str\":\"1555147588466262016\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":863,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":489,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1473,\"resize\":\"fit\"}}},{\"id\":1555147667927453697,\"id_str\":\"1555147667927453697\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-kIAX0AEzdHT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-kIAX0AEzdHT.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1428,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":474,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":837,\"resize\":\"fit\"}}},{\"id\":1555147704514367491,\"id_str\":\"1555147704514367491\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-mQTX0AMYenK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-mQTX0AMYenK.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1462,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555147797086801920,\"id_str\":\"1555147797086801920\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-rpKXEAAeN2F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-rpKXEAAeN2F.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1998,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1171,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"399\":{\"media\":[{\"id\":1555146608542720007,\"id_str\":\"1555146608542720007\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555146608542720007\\/pu\\/img\\/u_FHQr5FqV_EOlti.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555146608542720007\\/pu\\/img\\/u_FHQr5FqV_EOlti.jpg\",\"url\":\"https:\\/\\/t.co\\/dHyQAsHk3y\",\"display_url\":\"pic.twitter.com\\/dHyQAsHk3y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1555147066300563456\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":15722,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555146608542720007\\/pu\\/vid\\/490x270\\/MrH-HRLSPJDsVuQP.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555146608542720007\\/pu\\/pl\\/Y7aU19UWhwsANRUK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555146608542720007\\/pu\\/vid\\/640x352\\/Nd9ERVOe2ByXR1Er.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"400\":{\"media\":[{\"id\":1555145645232635904,\"id_str\":\"1555145645232635904\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT8uY4WQAAXNBu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT8uY4WQAAXNBu.jpg\",\"url\":\"https:\\/\\/t.co\\/cNnNedVSHp\",\"display_url\":\"pic.twitter.com\\/cNnNedVSHp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OSSEI_OWUSU\\/status\\/1555145656502722561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":421,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"}}}]},\"401\":null,\"402\":{\"media\":[{\"id\":1555144210206031873,\"id_str\":\"1555144210206031873\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"url\":\"https:\\/\\/t.co\\/ZFgC36Ucpe\",\"display_url\":\"pic.twitter.com\\/ZFgC36Ucpe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zigproperties\\/status\\/1555144224714231809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"403\":null,\"404\":null,\"405\":{\"media\":[{\"id\":1555143217586241537,\"id_str\":\"1555143217586241537\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"url\":\"https:\\/\\/t.co\\/p3OU4EnjKl\",\"display_url\":\"pic.twitter.com\\/p3OU4EnjKl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/de_easygreen\\/status\\/1555143706495356930\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":681,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":726,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[363,640],\"duration_millis\":8196,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/vid\\/480x846\\/KRUPCKZhktL36-Lv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/pl\\/5fn2YaGU4jNi8Te9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/vid\\/320x564\\/c62aZVBMxETgdniG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/vid\\/720x1268\\/OfGBOWY4vL8UG8Gy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"406\":null,\"407\":null,\"408\":{\"media\":[{\"id\":1555140005584142337,\"id_str\":\"1555140005584142337\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"url\":\"https:\\/\\/t.co\\/GeyHHH3sFh\",\"display_url\":\"pic.twitter.com\\/GeyHHH3sFh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555140625653186560\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,20],\"duration_millis\":23234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/320x710\\/sUlGPjp9bwuR-xos.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/pl\\/CH6qJuyVsASmLuie.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/576x1280\\/tzfmyJpEiui5cdvo.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/480x1066\\/joS6LMvKOkfZVeBs.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"409\":null,\"410\":{\"media\":[{\"id\":1555139551198314496,\"id_str\":\"1555139551198314496\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"url\":\"https:\\/\\/t.co\\/CNv51CwZVQ\",\"display_url\":\"pic.twitter.com\\/CNv51CwZVQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1555139554767769602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"}}}]},\"411\":{\"media\":[{\"id\":1555139411502931968,\"id_str\":\"1555139411502931968\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"url\":\"https:\\/\\/t.co\\/ixkeriaLRu\",\"display_url\":\"pic.twitter.com\\/ixkeriaLRu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinazaJessica4\\/status\\/1555139435934654464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"412\":{\"media\":[{\"id\":1555138634113753088,\"id_str\":\"1555138634113753088\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"url\":\"https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"display_url\":\"pic.twitter.com\\/ZdoPAt0eNQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bright_agbons\\/status\\/1555139152135561218\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"medium\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"large\":{\"w\":224,\"h\":416,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[7,13],\"duration_millis\":30080,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138634113753088\\/pu\\/vid\\/224x416\\/w48B2529eINQ8WQw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138634113753088\\/pu\\/pl\\/KH8_zBIhrSC6604C.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"413\":{\"media\":[{\"id\":1555138821490089984,\"id_str\":\"1555138821490089984\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"url\":\"https:\\/\\/t.co\\/1hkrhZ6FGP\",\"display_url\":\"pic.twitter.com\\/1hkrhZ6FGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/denys_peter\\/status\\/1555138829111156736\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"414\":{\"media\":[{\"id\":1555138321642409985,\"id_str\":\"1555138321642409985\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"url\":\"https:\\/\\/t.co\\/FkCxF40SeP\",\"display_url\":\"pic.twitter.com\\/FkCxF40SeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1555138525649043457\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,127],\"duration_millis\":24680,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/720x1270\\/6B3KaqqkGRHYXJT5.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/320x564\\/wc-3U7pxnfgkrjSR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/pl\\/6eolJiy9St2nlZhx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/480x846\\/cOOcoUa5Lp0q-4jI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"415\":{\"media\":[{\"id\":1555137905655521282,\"id_str\":\"1555137905655521282\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"url\":\"https:\\/\\/t.co\\/qFRoP3l7x1\",\"display_url\":\"pic.twitter.com\\/qFRoP3l7x1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuvidecorolowu\\/status\\/1555138012203335680\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":40666,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/vid\\/320x568\\/fC8Yli7l6WWaHFBK.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/vid\\/720x1280\\/mZNd7RMZ0DsJ78CG.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/vid\\/480x852\\/oKSL0zs_Td8teggH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/pl\\/1x9T3mPxlEGLJgV9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"416\":{\"media\":[{\"id\":1555136504955125761,\"id_str\":\"1555136504955125761\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"url\":\"https:\\/\\/t.co\\/WeK9AczT9n\",\"display_url\":\"pic.twitter.com\\/WeK9AczT9n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555136512567697408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"417\":null,\"418\":{\"media\":[{\"id\":1555135449693392896,\"id_str\":\"1555135449693392896\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"url\":\"https:\\/\\/t.co\\/E8Qdn5xljL\",\"display_url\":\"pic.twitter.com\\/E8Qdn5xljL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Christoph7Onoja\\/status\\/1555135839843352576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":107527,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/1280x720\\/kZLKVK0G86bUBONu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/pl\\/fkOnzJrtBin9459j.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/640x360\\/y91a0rktjtgI-jIO.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/480x270\\/6A4NK6vyyTItGyTm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"419\":{\"media\":[{\"id\":1555135837016317956,\"id_str\":\"1555135837016317956\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"url\":\"https:\\/\\/t.co\\/30gXogxS1T\",\"display_url\":\"pic.twitter.com\\/30gXogxS1T\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1555135838857609217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":480,\"resize\":\"fit\"}}}]},\"420\":{\"media\":[{\"id\":1555134911127887872,\"id_str\":\"1555134911127887872\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134926458077185,\"id_str\":\"1555134926458077185\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy-eVWQAEOgpq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy-eVWQAEOgpq.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134941029171200,\"id_str\":\"1555134941029171200\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy_UnXgAAte84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy_UnXgAAte84.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134953800835073,\"id_str\":\"1555134953800835073\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTzAEMXoAEdZMI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTzAEMXoAEdZMI.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"421\":null,\"422\":null,\"423\":null,\"424\":{\"media\":[{\"id\":1555132227209789440,\"id_str\":\"1555132227209789440\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"url\":\"https:\\/\\/t.co\\/zduT6xE89u\",\"display_url\":\"pic.twitter.com\\/zduT6xE89u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CrystosD\\/status\\/1555132666793840641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"},\"medium\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"large\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"425\":null,\"426\":{\"media\":[{\"id\":1555129459480600576,\"id_str\":\"1555129459480600576\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"url\":\"https:\\/\\/t.co\\/ZBTWkZT89P\",\"display_url\":\"pic.twitter.com\\/ZBTWkZT89P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Starry_Gold\\/status\\/1555131195222069249\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"large\":{\"w\":604,\"h\":413,\"resize\":\"fit\"}}}]},\"427\":{\"media\":[{\"id\":1555130887028760576,\"id_str\":\"1555130887028760576\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"url\":\"https:\\/\\/t.co\\/I3KElydxVd\",\"display_url\":\"pic.twitter.com\\/I3KElydxVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1555130893794267138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}}]},\"428\":{\"media\":[{\"id\":1555129115388350464,\"id_str\":\"1555129115388350464\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555129135541911553,\"id_str\":\"1555129135541911553\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTttZfWAAEkFZx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTttZfWAAEkFZx.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":769,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":637,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":769,\"resize\":\"fit\"}}},{\"id\":1555129143930617856,\"id_str\":\"1555129143930617856\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtt4vXgAAPG_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtt4vXgAAPG_F.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"429\":null,\"430\":null,\"431\":{\"media\":[{\"id\":1555127653304238080,\"id_str\":\"1555127653304238080\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"url\":\"https:\\/\\/t.co\\/AzpwIvRGzg\",\"display_url\":\"pic.twitter.com\\/AzpwIvRGzg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BernardTwise\\/status\\/1555127655908970497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"},\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"}}}]},\"432\":{\"media\":[{\"id\":1555126804217843712,\"id_str\":\"1555126804217843712\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"url\":\"https:\\/\\/t.co\\/GkUDEs2ebr\",\"display_url\":\"pic.twitter.com\\/GkUDEs2ebr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SupremeContine1\\/status\\/1555126966491152384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":448,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":359,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":448,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,28],\"duration_millis\":31693,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/vid\\/510x270\\/sfBLHrtmMkpElxVd.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/vid\\/848x448\\/jwhGCltdMqrn_21i.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/pl\\/ihmjdIgM-oGthYfy.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"433\":{\"media\":[{\"id\":1555124245038080003,\"id_str\":\"1555124245038080003\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"url\":\"https:\\/\\/t.co\\/sGvJ9HSAsQ\",\"display_url\":\"pic.twitter.com\\/sGvJ9HSAsQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555124249051992066\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":673,\"resize\":\"fit\"}},\"source_status_id\":1555124249051992066,\"source_status_id_str\":\"1555124249051992066\",\"source_user_id\":1017100479325720576,\"source_user_id_str\":\"1017100479325720576\"}]},\"434\":{\"media\":[{\"id\":1555126387060637696,\"id_str\":\"1555126387060637696\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1555126387094208513,\"id_str\":\"1555126387094208513\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNauWQAEYs_u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNauWQAEYs_u.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1555126387085828096,\"id_str\":\"1555126387085828096\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNasWYAA7-2v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNasWYAA7-2v.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1555126387064832000,\"id_str\":\"1555126387064832000\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNanWAAA9k91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNanWAAA9k91.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"435\":null,\"436\":{\"media\":[{\"id\":1555126212351197184,\"id_str\":\"1555126212351197184\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555126212359557121,\"id_str\":\"1555126212359557121\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDPyXEAEq6Zz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDPyXEAEq6Zz.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1496,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":497,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":877,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555126212388872194,\"id_str\":\"1555126212388872194\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDP5WYAIQ8Lk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDP5WYAIQ8Lk.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"437\":null,\"438\":{\"media\":[{\"id\":1555123374799704065,\"id_str\":\"1555123374799704065\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555123374799704065\\/pu\\/img\\/RT1jGfJtuvmUWc5H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555123374799704065\\/pu\\/img\\/RT1jGfJtuvmUWc5H.jpg\",\"url\":\"https:\\/\\/t.co\\/wtcps5fqDU\",\"display_url\":\"pic.twitter.com\\/wtcps5fqDU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1555123728350158849\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":464,\"h\":848,\"resize\":\"fit\"},\"large\":{\"w\":464,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[29,53],\"duration_millis\":30000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555123374799704065\\/pu\\/vid\\/320x584\\/Nqukn-Vxfu85DYvF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555123374799704065\\/pu\\/vid\\/464x848\\/CEXQvStZ8n35wOmd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555123374799704065\\/pu\\/pl\\/UYnfwAoe2tOCK6xO.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"439\":{\"media\":[{\"id\":1555123015662424065,\"id_str\":\"1555123015662424065\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"url\":\"https:\\/\\/t.co\\/VjXGAOwrhN\",\"display_url\":\"pic.twitter.com\\/VjXGAOwrhN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1555123024881500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"440\":null,\"441\":{\"media\":[{\"id\":1555122389062750208,\"id_str\":\"1555122389062750208\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"url\":\"https:\\/\\/t.co\\/MICtAAyTx6\",\"display_url\":\"pic.twitter.com\\/MICtAAyTx6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555122411443478528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"442\":null,\"443\":{\"media\":[{\"id\":1555114382283218950,\"id_str\":\"1555114382283218950\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"url\":\"https:\\/\\/t.co\\/6FJESNlTb5\",\"display_url\":\"pic.twitter.com\\/6FJESNlTb5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555114494996660224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[136,213],\"duration_millis\":29272,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555114382283218950\\/pu\\/vid\\/272x426\\/bpNmn11GCcztYLIx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555114382283218950\\/pu\\/pl\\/F_WTQtn4TZCdNsIG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"444\":{\"media\":[{\"id\":1555108327671078912,\"id_str\":\"1555108327671078912\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"url\":\"https:\\/\\/t.co\\/o5Pmz3XLfc\",\"display_url\":\"pic.twitter.com\\/o5Pmz3XLfc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1555113873476313088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,23],\"duration_millis\":90223,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/vid\\/738x414\\/oMHvPVZim_K4pSBd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/vid\\/480x270\\/PGKHWnM_lUvNXCvd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/pl\\/QJP3KBW2AhrRxQnP.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"445\":{\"media\":[{\"id\":1555113249980522496,\"id_str\":\"1555113249980522496\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"url\":\"https:\\/\\/t.co\\/9CAwdKId3g\",\"display_url\":\"pic.twitter.com\\/9CAwdKId3g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1555113286785531905\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":613,\"resize\":\"fit\"}}}]},\"446\":{\"media\":[{\"id\":1555112501892743169,\"id_str\":\"1555112501892743169\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"url\":\"https:\\/\\/t.co\\/P2QH6zdN0t\",\"display_url\":\"pic.twitter.com\\/P2QH6zdN0t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555112511707533313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":354,\"resize\":\"fit\"}}}]},\"447\":null,\"448\":null,\"449\":{\"media\":[{\"id\":1555110627357736960,\"id_str\":\"1555110627357736960\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/z7XRdlIub1\",\"display_url\":\"pic.twitter.com\\/z7XRdlIub1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555110646349430789\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"medium\":{\"w\":299,\"h\":169,\"resize\":\"fit\"}}}]},\"450\":{\"media\":[{\"id\":1555109225285783552,\"id_str\":\"1555109225285783552\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"url\":\"https:\\/\\/t.co\\/OaqxnPnlHT\",\"display_url\":\"pic.twitter.com\\/OaqxnPnlHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/filiimagna\\/status\\/1555109230616649728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"large\":{\"w\":553,\"h\":505,\"resize\":\"fit\"}}}]},\"451\":{\"media\":[{\"id\":1555109039897546755,\"id_str\":\"1555109039897546755\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"url\":\"https:\\/\\/t.co\\/njEI0I4SGm\",\"display_url\":\"pic.twitter.com\\/njEI0I4SGm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PeculiarHype\\/status\\/1555109135024328704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":374,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":34865,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/pl\\/n7ZZq--0NU47maXS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/654x360\\/FCBD-oqpa_6zUZKy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/1280x704\\/LUK3ruI5nHHxoFUA.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/490x270\\/m-wslcr0pN9IZpxq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"452\":null,\"453\":null,\"454\":{\"media\":[{\"id\":1555107510788521986,\"id_str\":\"1555107510788521986\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"url\":\"https:\\/\\/t.co\\/V3L2YpfZBh\",\"display_url\":\"pic.twitter.com\\/V3L2YpfZBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555107530749218816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"small\":{\"w\":300,\"h\":224,\"resize\":\"fit\"}}}]},\"455\":{\"media\":[{\"id\":1555106120620036096,\"id_str\":\"1555106120620036096\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}},{\"id\":1555106120628330498,\"id_str\":\"1555106120628330498\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwQWYAISLzi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwQWYAISLzi.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"456\":{\"media\":[{\"id\":1555105899676590080,\"id_str\":\"1555105899676590080\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"url\":\"https:\\/\\/t.co\\/DwOAbXEW0R\",\"display_url\":\"pic.twitter.com\\/DwOAbXEW0R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PToplexnice\\/status\\/1555105959676100608\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9017,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/pl\\/WPsbLR_DAIdMeysw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/vid\\/480x852\\/_GPr9vi-vU6rvCzU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/vid\\/320x568\\/VpJj9dvSsWmD68E2.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/vid\\/720x1280\\/3NimNN1X9J1wkWE_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"457\":{\"media\":[{\"id\":1555105549313785856,\"id_str\":\"1555105549313785856\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"url\":\"https:\\/\\/t.co\\/S5AXrskrPQ\",\"display_url\":\"pic.twitter.com\\/S5AXrskrPQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/afcdaniels\\/status\\/1555105707715862528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":17646,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/vid\\/540x960\\/-nphBDPN_tmV_2-t.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/vid\\/480x852\\/FGiwkDINAsuWEyJS.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/vid\\/320x568\\/4fjZ6lT9h40yvT34.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/pl\\/xSEIX2WIWYR4hb7Z.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"458\":{\"media\":[{\"id\":1555105418266943489,\"id_str\":\"1555105418266943489\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"url\":\"https:\\/\\/t.co\\/232AciVFo1\",\"display_url\":\"pic.twitter.com\\/232AciVFo1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lovelynchilaka\\/status\\/1555105421039484929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":714,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":404,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1079,\"h\":1814,\"resize\":\"fit\"}}}]},\"459\":{\"media\":[{\"id\":1555104570979893249,\"id_str\":\"1555104570979893249\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"url\":\"https:\\/\\/t.co\\/LFmXT3mSmp\",\"display_url\":\"pic.twitter.com\\/LFmXT3mSmp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104574884683777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"460\":{\"media\":[{\"id\":1555104188203520001,\"id_str\":\"1555104188203520001\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"url\":\"https:\\/\\/t.co\\/adGWS5HU7U\",\"display_url\":\"pic.twitter.com\\/adGWS5HU7U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DDadalekan\\/status\\/1555104345552715776\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[6,11],\"duration_millis\":9710,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/pl\\/T19CseNdIB81e3JQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/320x586\\/og15ksPsORkKQfln.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/672x1232\\/PpR2LzqZXRAlN0Lv.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/480x880\\/qm4EDw9T4FFgh2r1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"461\":{\"media\":[{\"id\":1555104124575916032,\"id_str\":\"1555104124575916032\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"url\":\"https:\\/\\/t.co\\/mWBy6AU7IA\",\"display_url\":\"pic.twitter.com\\/mWBy6AU7IA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104127406989312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"462\":{\"media\":[{\"id\":1555103188058906624,\"id_str\":\"1555103188058906624\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"url\":\"https:\\/\\/t.co\\/SGhptaePzL\",\"display_url\":\"pic.twitter.com\\/SGhptaePzL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555103518092140545\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":27958,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/vid\\/368x640\\/6e0AI2wTUTU2273M.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/vid\\/320x556\\/CagGi-V17IpCxb8B.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/pl\\/S4nA8udU3fG51bqJ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"463\":null,\"464\":{\"media\":[{\"id\":1555102066581946369,\"id_str\":\"1555102066581946369\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1243,\"h\":1155,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1115,\"resize\":\"fit\"}}},{\"id\":1555102066577743872,\"id_str\":\"1555102066577743872\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFxvXoAASYRG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFxvXoAASYRG.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1181,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1141,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":647,\"resize\":\"fit\"}}},{\"id\":1555102066611310595,\"id_str\":\"1555102066611310595\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFx3X0AMWF5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFx3X0AMWF5b.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"465\":null,\"466\":null,\"467\":{\"media\":[{\"id\":1555100150342770688,\"id_str\":\"1555100150342770688\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"url\":\"https:\\/\\/t.co\\/gmCqDCXAtU\",\"display_url\":\"pic.twitter.com\\/gmCqDCXAtU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555100209516056576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":42769,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/480x270\\/yUo3urzBS784PDrQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/pl\\/F2Z2gU1--FJCJ5Og.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/640x360\\/X4MNhc9avgNGbiJI.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/1280x720\\/YyJf-0ZnjIqxcsnM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"468\":null,\"469\":{\"media\":[{\"id\":1555098067774636033,\"id_str\":\"1555098067774636033\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"url\":\"https:\\/\\/t.co\\/fq3guErmgy\",\"display_url\":\"pic.twitter.com\\/fq3guErmgy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555098095113089025\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":16575,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/pl\\/mjzKVR2BbzFUu7zg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/vid\\/848x480\\/KngKCvaB6joSfMOd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/vid\\/476x270\\/xlw7Vrm8rWqbNT7f.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/vid\\/636x360\\/bSXSg_EIdncRYIQl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"470\":{\"media\":[{\"id\":1555097733924618241,\"id_str\":\"1555097733924618241\",\"indices\":[49,72],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"url\":\"https:\\/\\/t.co\\/r19nkT6Hvz\",\"display_url\":\"pic.twitter.com\\/r19nkT6Hvz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xminister0\\/status\\/1555097790358904834\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":4574,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/320x568\\/A_I9XG06SrH5xh5E.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/pl\\/vgmsHz9kC5XaSZQA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/720x1280\\/b6pW3wLD6ZM1FGjN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/480x852\\/SDi-6TJsWr2ttCGI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"471\":null,\"472\":{\"media\":[{\"id\":1555096888986275841,\"id_str\":\"1555096888986275841\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"url\":\"https:\\/\\/t.co\\/mW0mCdPwZM\",\"display_url\":\"pic.twitter.com\\/mW0mCdPwZM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superridedude\\/status\\/1555096954962583552\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21467,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/vid\\/320x568\\/6x12Lx_ZL0UWnWjH.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/vid\\/480x852\\/jgFkuyWFWI3ojker.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/pl\\/EWpzNrXdB6UNOGzS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/vid\\/720x1280\\/ZjUecJHkFC3aVe90.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"473\":null,\"474\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"475\":{\"media\":[{\"id\":1555096059449311232,\"id_str\":\"1555096059449311232\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"url\":\"https:\\/\\/t.co\\/gYHpkxwPcE\",\"display_url\":\"pic.twitter.com\\/gYHpkxwPcE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555096065774436352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":683,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":683,\"resize\":\"fit\"}}}]},\"476\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"477\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"478\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"479\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"480\":null,\"481\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"482\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"483\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"484\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"485\":{\"media\":[{\"id\":1555094694941581317,\"id_str\":\"1555094694941581317\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"url\":\"https:\\/\\/t.co\\/GWdlCnhlVA\",\"display_url\":\"pic.twitter.com\\/GWdlCnhlVA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PRFirmNG\\/status\\/1555094753410170880\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/vid\\/320x564\\/8cXD-Xen7qRmjomc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/pl\\/Kx8p3FJ3MeGXLncJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/vid\\/480x848\\/cJ-updYIkNGuyA0V.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"486\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"487\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"488\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"489\":null,\"490\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"491\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"492\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"493\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"494\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"495\":null,\"496\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"497\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"498\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsSqtlV\",\"display_url\":\"pic.twitter.com\\/ivDJsSqtlV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"499\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[359,382],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"500\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"501\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"502\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"503\":{\"media\":[{\"id\":1555092895455125504,\"id_str\":\"1555092895455125504\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"url\":\"https:\\/\\/t.co\\/P4cWauuqsP\",\"display_url\":\"pic.twitter.com\\/P4cWauuqsP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kellysteveo\\/status\\/1555092899624325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"thumb\":{\"w\":122,\"h\":122,\"resize\":\"crop\"}}}]},\"504\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/IaOMul24J1\",\"display_url\":\"pic.twitter.com\\/IaOMul24J1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"505\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/f16Z7WzVXa\",\"display_url\":\"pic.twitter.com\\/f16Z7WzVXa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"506\":null,\"507\":null,\"508\":{\"media\":[{\"id\":1555084499490377728,\"id_str\":\"1555084499490377728\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555089939368448000,\"id_str\":\"1555089939368448000\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTKD4XXEAA6Ikl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTKD4XXEAA6Ikl.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"509\":{\"media\":[{\"id\":1555089600837738497,\"id_str\":\"1555089600837738497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"url\":\"https:\\/\\/t.co\\/x7WL4aotsa\",\"display_url\":\"pic.twitter.com\\/x7WL4aotsa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tokiadewoyin\\/status\\/1555089627396149250\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"}}}]},\"510\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/2nqfH7Fu77\",\"display_url\":\"pic.twitter.com\\/2nqfH7Fu77\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"511\":{\"media\":[{\"id\":1555089203746185216,\"id_str\":\"1555089203746185216\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"url\":\"https:\\/\\/t.co\\/xVic1GMEyb\",\"display_url\":\"pic.twitter.com\\/xVic1GMEyb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theFlareabove\\/status\\/1555089213820993540\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":706,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":706,\"resize\":\"fit\"}}}]},\"512\":{\"media\":[{\"id\":1555088295872405505,\"id_str\":\"1555088295872405505\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"url\":\"https:\\/\\/t.co\\/2nxIWDaKrM\",\"display_url\":\"pic.twitter.com\\/2nxIWDaKrM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555088313282957315\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}},{\"id\":1555088310544080896,\"id_str\":\"1555088310544080896\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTIlEhXoAAEwfR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTIlEhXoAAEwfR.jpg\",\"url\":\"https:\\/\\/t.co\\/2nxIWDaKrM\",\"display_url\":\"pic.twitter.com\\/2nxIWDaKrM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555088313282957315\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":716,\"h\":716,\"resize\":\"fit\"},\"medium\":{\"w\":716,\"h\":716,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"513\":null,\"514\":{\"media\":[{\"id\":1555086679995736064,\"id_str\":\"1555086679995736064\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/hkLJd20xwd\",\"display_url\":\"pic.twitter.com\\/hkLJd20xwd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uno_fini\\/status\\/1555086880462577664\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":5758,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/320x568\\/Ar1bKkx2sAvEDbax.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/720x1280\\/FtomvetSJ__wXQIy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/480x852\\/Yy01nDiU3w5j3jsy.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/pl\\/pY4mDOVF1vKOmUzm.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"515\":{\"media\":[{\"id\":1555086740574052352,\"id_str\":\"1555086740574052352\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"url\":\"https:\\/\\/t.co\\/J0Q2VTOlIU\",\"display_url\":\"pic.twitter.com\\/J0Q2VTOlIU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/advertidehawk01\\/status\\/1555086748367179778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":310,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":548,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":584,\"h\":1280,\"resize\":\"fit\"}}}]},\"516\":null,\"517\":{\"media\":[{\"id\":1555085766207971328,\"id_str\":\"1555085766207971328\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"url\":\"https:\\/\\/t.co\\/LL5EZHwqwo\",\"display_url\":\"pic.twitter.com\\/LL5EZHwqwo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/godygold01\\/status\\/1555085774076477441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":712,\"h\":859,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":859,\"resize\":\"fit\"}}}]},\"518\":null,\"519\":null,\"520\":null,\"521\":{\"media\":[{\"id\":1555084447371988992,\"id_str\":\"1555084447371988992\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"url\":\"https:\\/\\/t.co\\/8M1sLd7Yq1\",\"display_url\":\"pic.twitter.com\\/8M1sLd7Yq1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hardynwa\\/status\\/1555084450165407746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"small\":{\"w\":626,\"h\":417,\"resize\":\"fit\"}}}]},\"522\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"523\":null,\"524\":null,\"525\":null,\"526\":{\"media\":[{\"id\":1555081642665984000,\"id_str\":\"1555081642665984000\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":457,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":806,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1849,\"resize\":\"fit\"}}},{\"id\":1555081642674380802,\"id_str\":\"1555081642674380802\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg8xWYAIHUU9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg8xWYAIHUU9.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555081642703785984,\"id_str\":\"1555081642703785984\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg84XEAA6FzP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg84XEAA6FzP.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1011,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1011,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1555081643467096065,\"id_str\":\"1555081643467096065\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg_uWQAEvdjJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg_uWQAEvdjJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"527\":null,\"528\":{\"media\":[{\"id\":1555078073728598018,\"id_str\":\"1555078073728598018\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cs1HxMDA4O\",\"display_url\":\"pic.twitter.com\\/Cs1HxMDA4O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555078393535897600\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":25000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/320x568\\/1BoM0ZEFZIU_8PP3.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/480x852\\/6TINhL18aUxcleiu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/pl\\/x6onsurDIF9A5A_3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/720x1280\\/_iQ7VuJ8X3isHSOX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"529\":{\"media\":[{\"id\":1555078029604536320,\"id_str\":\"1555078029604536320\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"url\":\"https:\\/\\/t.co\\/ie1QIkk4Ul\",\"display_url\":\"pic.twitter.com\\/ie1QIkk4Ul\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1555078032158855169\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"}}}]},\"530\":null,\"531\":{\"media\":[{\"id\":1555076636365692934,\"id_str\":\"1555076636365692934\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"url\":\"https:\\/\\/t.co\\/A812edBOgl\",\"display_url\":\"pic.twitter.com\\/A812edBOgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1555076714312699904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":38845,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/320x568\\/lrjOyyvO_jRssGcn.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/480x852\\/_4Vwbm2A_AuH93Q8.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/720x1280\\/DzE7aeNURwst_Lbo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/pl\\/1tqo1_aP99e6pFgG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"532\":{\"media\":[{\"id\":1555075829624967173,\"id_str\":\"1555075829624967173\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"url\":\"https:\\/\\/t.co\\/ymqkzeEgXl\",\"display_url\":\"pic.twitter.com\\/ymqkzeEgXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DjEko_1\\/status\\/1555075883454664704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":6973,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/vid\\/656x1232\\/aZnKdFRm2dqUd5Fz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/pl\\/NQn2qPuXDHXM0hg_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/vid\\/320x600\\/FEL8tQGAciIb57gK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/vid\\/480x900\\/KalIlcaSCiLqoHKI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"533\":{\"media\":[{\"id\":1555074608088367107,\"id_str\":\"1555074608088367107\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"url\":\"https:\\/\\/t.co\\/nPzDVBq45i\",\"display_url\":\"pic.twitter.com\\/nPzDVBq45i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akanscript_\\/status\\/1555074729022717955\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":37568,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/1280x720\\/_WO8ouE3YRWq4r4q.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/480x270\\/C-CZk1iHwOiGnfoJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/pl\\/Jihm11O7zZBYXXf-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/640x360\\/daLqfOnLR32ZAovS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"534\":{\"media\":[{\"id\":1555073304528125957,\"id_str\":\"1555073304528125957\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"url\":\"https:\\/\\/t.co\\/8SUtRVlRBh\",\"display_url\":\"pic.twitter.com\\/8SUtRVlRBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bigdavidofficia\\/status\\/1555073319896076289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}}]},\"535\":null,\"536\":null,\"537\":{\"media\":[{\"id\":1555072895377965056,\"id_str\":\"1555072895377965056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"url\":\"https:\\/\\/t.co\\/0A2Y7575z3\",\"display_url\":\"pic.twitter.com\\/0A2Y7575z3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NetMakanaki\\/status\\/1555073073103118337\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":58933,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/480x852\\/8Y12eowYLA-uiU57.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/320x568\\/PbzsHWTDXNw_PXzv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/pl\\/StIcrBsxVBxJ2ZT4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/720x1280\\/53eCPr7fGm07SuOx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":{\"media\":[{\"id\":1555071758092353537,\"id_str\":\"1555071758092353537\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"url\":\"https:\\/\\/t.co\\/sqJJe9gm0r\",\"display_url\":\"pic.twitter.com\\/sqJJe9gm0r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/m_zordAutorep\\/status\\/1555071764933361665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"544\":null,\"545\":{\"media\":[{\"id\":1555069423693832194,\"id_str\":\"1555069423693832194\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"url\":\"https:\\/\\/t.co\\/TbGoJWGBu3\",\"display_url\":\"pic.twitter.com\\/TbGoJWGBu3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_amwordsmith\\/status\\/1555069433441402883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"546\":null,\"547\":{\"media\":[{\"id\":1555061924630786048,\"id_str\":\"1555061924630786048\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"url\":\"https:\\/\\/t.co\\/pvMPXhug9C\",\"display_url\":\"pic.twitter.com\\/pvMPXhug9C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555061972483588096\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[426,239],\"duration_millis\":26558,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555061924630786048\\/pu\\/vid\\/480x270\\/iFtoHUa-HPVIPSU3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555061924630786048\\/pu\\/pl\\/IPSYT2vIuOuAbvkz.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555061924630786048\\/pu\\/vid\\/852x478\\/iTl3iJyfnbZBlaXt.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"548\":{\"media\":[{\"id\":1555061315907080193,\"id_str\":\"1555061315907080193\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"}}},{\"id\":1555061315953106946,\"id_str\":\"1555061315953106946\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBx1WIAIq3BW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBx1WIAIq3BW.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"}}},{\"id\":1555061315928035330,\"id_str\":\"1555061315928035330\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxvXkAIyRuI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxvXkAIyRuI.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"}}},{\"id\":1555061315919552513,\"id_str\":\"1555061315919552513\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxtWIAESff_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxtWIAESff_.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"}}}]},\"549\":{\"media\":[{\"id\":1555055980148572160,\"id_str\":\"1555055980148572160\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"url\":\"https:\\/\\/t.co\\/7BptZ4Zon2\",\"display_url\":\"pic.twitter.com\\/7BptZ4Zon2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555056027233824768\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[426,239],\"duration_millis\":113832,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555055980148572160\\/pu\\/vid\\/480x270\\/qR7J_mOu2HLOlWnI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555055980148572160\\/pu\\/pl\\/MGepFSiZi_Jz_imS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555055980148572160\\/pu\\/vid\\/852x478\\/aDbV_HVDNw6f5QtX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"550\":{\"media\":[{\"id\":1554913411624042497,\"id_str\":\"1554913411624042497\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"url\":\"https:\\/\\/t.co\\/GlfdeTfWYC\",\"display_url\":\"pic.twitter.com\\/GlfdeTfWYC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andalusio\\/status\\/1555040833744691200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"551\":null,\"552\":{\"media\":[{\"id\":1555036286783832064,\"id_str\":\"1555036286783832064\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"url\":\"https:\\/\\/t.co\\/pgTYOBpEWl\",\"display_url\":\"pic.twitter.com\\/pgTYOBpEWl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555036308552253440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"}}}]},\"553\":{\"media\":[{\"id\":1555031704716427266,\"id_str\":\"1555031704716427266\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"url\":\"https:\\/\\/t.co\\/jd5z1wrXPL\",\"display_url\":\"pic.twitter.com\\/jd5z1wrXPL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1555031716372381696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"554\":null,\"555\":{\"media\":[{\"id\":1555020298747092992,\"id_str\":\"1555020298747092992\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"url\":\"https:\\/\\/t.co\\/0farobJifY\",\"display_url\":\"pic.twitter.com\\/0farobJifY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RobertAshu_\\/status\\/1555020307894878208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"556\":null,\"557\":null,\"558\":{\"media\":[{\"id\":1554635543782244352,\"id_str\":\"1554635543782244352\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"url\":\"https:\\/\\/t.co\\/k424DZXWBz\",\"display_url\":\"pic.twitter.com\\/k424DZXWBz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdunolaOgundar1\\/status\\/1555010634030383108\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":20300,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/vid\\/480x600\\/LwCh9NgYm4B3d6-f.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/vid\\/720x900\\/PdviVkG_EipqCsop.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/vid\\/320x400\\/hRWEHpUHJJ6ZEVIN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/pl\\/fAr3r8PNJu2JOJ0N.m3u8?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"559\":{\"media\":[{\"id\":1555010029417385985,\"id_str\":\"1555010029417385985\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555010041194971138,\"id_str\":\"1555010041194971138\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBZMeXgAI9xuV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBZMeXgAI9xuV.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555010049075978241,\"id_str\":\"1555010049075978241\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBZp1WIAEwQHn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBZp1WIAEwQHn.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555010056571215873,\"id_str\":\"1555010056571215873\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBaFwWYAEJyXn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBaFwWYAEJyXn.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"560\":{\"media\":[{\"id\":1555003755673837573,\"id_str\":\"1555003755673837573\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"url\":\"https:\\/\\/t.co\\/niaDffdl4p\",\"display_url\":\"pic.twitter.com\\/niaDffdl4p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555003770404306945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"large\":{\"w\":300,\"h\":297,\"resize\":\"fit\"}}}]},\"561\":{\"media\":[{\"id\":1554998383789621248,\"id_str\":\"1554998383789621248\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"url\":\"https:\\/\\/t.co\\/kTip6QKDfX\",\"display_url\":\"pic.twitter.com\\/kTip6QKDfX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/THexperrt\\/status\\/1554998401888141312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":712,\"h\":430,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":712,\"h\":430,\"resize\":\"fit\"}}}]},\"562\":null,\"563\":null,\"564\":{\"media\":[{\"id\":1554985164798918656,\"id_str\":\"1554985164798918656\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"url\":\"https:\\/\\/t.co\\/4HLIhejxeK\",\"display_url\":\"pic.twitter.com\\/4HLIhejxeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betubaba__\\/status\\/1554985257119760390\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":14585,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/pl\\/sskmIekVaTZY1MI_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/vid\\/320x568\\/Fi_TlB1pOyrlflaG.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/vid\\/480x852\\/_Db41xLjTTK6a4Xm.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/vid\\/720x1280\\/uF86TwXq4ocmqbMF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"565\":{\"media\":[{\"id\":1554984101656027136,\"id_str\":\"1554984101656027136\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"url\":\"https:\\/\\/t.co\\/j2WZpXricW\",\"display_url\":\"pic.twitter.com\\/j2WZpXricW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554984208589885441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"566\":{\"media\":[{\"id\":1554977848884183040,\"id_str\":\"1554977848884183040\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"url\":\"https:\\/\\/t.co\\/unVdsQqRLp\",\"display_url\":\"pic.twitter.com\\/unVdsQqRLp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Enyi_VictorBlog\\/status\\/1554977853988560896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"}}}]},\"567\":null,\"568\":{\"media\":[{\"id\":1554968648737034240,\"id_str\":\"1554968648737034240\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1AfxgSgqgn\",\"display_url\":\"pic.twitter.com\\/1AfxgSgqgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/awana_a_gana\\/status\\/1554968669574283264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"}}}]},\"569\":null,\"570\":null,\"571\":{\"media\":[{\"id\":1554964133153587200,\"id_str\":\"1554964133153587200\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"url\":\"https:\\/\\/t.co\\/Um1CyfI94W\",\"display_url\":\"pic.twitter.com\\/Um1CyfI94W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554964398757773312\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140013,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/pl\\/878D3MASYvIrR_5C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/vid\\/480x270\\/AkOenn4BUwE9HQua.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/vid\\/640x360\\/9Q05gGBDNXGxTYnF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"572\":{\"media\":[{\"id\":1554963908569583625,\"id_str\":\"1554963908569583625\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554963908569583625\\/pu\\/img\\/G7LvlgFP_nqMooA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554963908569583625\\/pu\\/img\\/G7LvlgFP_nqMooA2.jpg\",\"url\":\"https:\\/\\/t.co\\/kvLvW5vIhD\",\"display_url\":\"pic.twitter.com\\/kvLvW5vIhD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OtwoGh\\/status\\/1554964209598881792\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":23285,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554963908569583625\\/pu\\/pl\\/LZFTOO1ghfOq4WU4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554963908569583625\\/pu\\/vid\\/480x852\\/6YMDs3PcwzLGb9-c.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554963908569583625\\/pu\\/vid\\/720x1280\\/5qSyN4BxrmQ3o012.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554963908569583625\\/pu\\/vid\\/320x568\\/YrtU72HbclZpEg7V.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"573\":{\"media\":[{\"id\":1554963406406524929,\"id_str\":\"1554963406406524929\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"url\":\"https:\\/\\/t.co\\/6wVGkuCveM\",\"display_url\":\"pic.twitter.com\\/6wVGkuCveM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554963409325752321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":522,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"}}}]},\"574\":{\"media\":[{\"id\":1554955735884234757,\"id_str\":\"1554955735884234757\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554955735884234757\\/pu\\/img\\/ziABIZ7sEGh201pf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554955735884234757\\/pu\\/img\\/ziABIZ7sEGh201pf.jpg\",\"url\":\"https:\\/\\/t.co\\/eIhgXy20uR\",\"display_url\":\"pic.twitter.com\\/eIhgXy20uR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Swanskid_\\/status\\/1554956228828319744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[288,541],\"duration_millis\":31577,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554955735884234757\\/pu\\/vid\\/320x600\\/cZ9VNp-m2LnR8RDK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554955735884234757\\/pu\\/vid\\/480x900\\/MD2S2hJXGkUrK9-t.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554955735884234757\\/pu\\/vid\\/576x1082\\/bOXceUIWuivUKozJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554955735884234757\\/pu\\/pl\\/R9dS7qnEU8MlTFYp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"575\":null,\"576\":null,\"577\":null,\"578\":{\"media\":[{\"id\":1554954752739393538,\"id_str\":\"1554954752739393538\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"url\":\"https:\\/\\/t.co\\/9g4czDBj9I\",\"display_url\":\"pic.twitter.com\\/9g4czDBj9I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonemic\\/status\\/1554954769776656385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"small\":{\"w\":575,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"579\":null,\"580\":{\"media\":[{\"id\":1554953050497875968,\"id_str\":\"1554953050497875968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"url\":\"https:\\/\\/t.co\\/hL3D2W2oyh\",\"display_url\":\"pic.twitter.com\\/hL3D2W2oyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oceanfocuz\\/status\\/1554953058412527616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"}}}]},\"581\":null,\"582\":{\"media\":[{\"id\":1554952343812202496,\"id_str\":\"1554952343812202496\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"url\":\"https:\\/\\/t.co\\/LRNy2gV78s\",\"display_url\":\"pic.twitter.com\\/LRNy2gV78s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1554952346110775301\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":187,\"resize\":\"fit\"}}}]},\"583\":{\"media\":[{\"id\":1554951610316607495,\"id_str\":\"1554951610316607495\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"url\":\"https:\\/\\/t.co\\/rGiGx9nfeD\",\"display_url\":\"pic.twitter.com\\/rGiGx9nfeD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JerryKatician01\\/status\\/1554951856362819584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":49710,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/1280x720\\/ZlHr3m_PSkb0noAL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/pl\\/m1M2TjpvB2g6KdEi.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/640x360\\/hZrpucQ6xCDa0eh1.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/480x270\\/J0Ig_QSugt68hvNe.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"584\":null,\"585\":{\"media\":[{\"id\":1554947160952766465,\"id_str\":\"1554947160952766465\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"url\":\"https:\\/\\/t.co\\/oULUzjYdc0\",\"display_url\":\"pic.twitter.com\\/oULUzjYdc0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947171329376257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"medium\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"586\":{\"media\":[{\"id\":1554947112533692416,\"id_str\":\"1554947112533692416\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"url\":\"https:\\/\\/t.co\\/biyg4c2idH\",\"display_url\":\"pic.twitter.com\\/biyg4c2idH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947130447495172\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":495,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1484,\"resize\":\"fit\"}}}]},\"587\":{\"media\":[{\"id\":1554945877382397955,\"id_str\":\"1554945877382397955\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":451,\"resize\":\"fit\"}}},{\"id\":1554945877399277569,\"id_str\":\"1554945877399277569\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXtXkAE7ji9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXtXkAE7ji9.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":504,\"h\":290,\"resize\":\"fit\"},\"large\":{\"w\":504,\"h\":290,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":504,\"h\":290,\"resize\":\"fit\"}}}]},\"588\":{\"media\":[{\"id\":1554943954654830592,\"id_str\":\"1554943954654830592\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"url\":\"https:\\/\\/t.co\\/Tp3tQJz3KK\",\"display_url\":\"pic.twitter.com\\/Tp3tQJz3KK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bulky305\\/status\\/1554943957313912833\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"589\":null,\"590\":{\"media\":[{\"id\":1554936277077721088,\"id_str\":\"1554936277077721088\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554936277077721088\\/pu\\/img\\/_mOg-gFLlLSBOpNP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554936277077721088\\/pu\\/img\\/_mOg-gFLlLSBOpNP.jpg\",\"url\":\"https:\\/\\/t.co\\/NOjNbrnPYB\",\"display_url\":\"pic.twitter.com\\/NOjNbrnPYB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554936394639986690\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":83866,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554936277077721088\\/pu\\/vid\\/320x568\\/SS2s6i7KfQ6R9nij.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554936277077721088\\/pu\\/pl\\/tMZYgmqC5TAtUFcl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554936277077721088\\/pu\\/vid\\/720x1280\\/sl6bE7CFwGgjef_x.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554936277077721088\\/pu\\/vid\\/480x852\\/5iH40NhfGicJD2Rw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"591\":{\"media\":[{\"id\":1554935922902372353,\"id_str\":\"1554935922902372353\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"url\":\"https:\\/\\/t.co\\/yvGKPNEaxP\",\"display_url\":\"pic.twitter.com\\/yvGKPNEaxP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554935935300665344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1534,\"h\":1585,\"resize\":\"fit\"},\"medium\":{\"w\":1161,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"}}}]},\"592\":{\"media\":[{\"id\":1554931987034537985,\"id_str\":\"1554931987034537985\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"url\":\"https:\\/\\/t.co\\/5hephg70Dx\",\"display_url\":\"pic.twitter.com\\/5hephg70Dx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1554932017342578692\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"593\":{\"media\":[{\"id\":1554930793935405056,\"id_str\":\"1554930793935405056\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"url\":\"https:\\/\\/t.co\\/MqQNE0DluW\",\"display_url\":\"pic.twitter.com\\/MqQNE0DluW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaRealityNe1\\/status\\/1554930832753807365\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[122,213],\"duration_millis\":27958,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554930793935405056\\/pu\\/pl\\/DZXfR2bDZBuRKO8b.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554930793935405056\\/pu\\/vid\\/244x426\\/_wkBN1pFdVn2ioOO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"594\":null,\"595\":null,\"596\":{\"media\":[{\"id\":1554925765602467842,\"id_str\":\"1554925765602467842\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"url\":\"https:\\/\\/t.co\\/1RGXU28Mr5\",\"display_url\":\"pic.twitter.com\\/1RGXU28Mr5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Cleeptvng\\/status\\/1554925804731207680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1200,\"resize\":\"fit\"}}}]},\"597\":null,\"598\":null,\"599\":{\"media\":[{\"id\":1554925006005698560,\"id_str\":\"1554925006005698560\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"url\":\"https:\\/\\/t.co\\/x8ToWVOlaG\",\"display_url\":\"pic.twitter.com\\/x8ToWVOlaG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kutithedirector\\/status\\/1554925033604128768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"600\":null,\"601\":{\"media\":[{\"id\":1554922792512020480,\"id_str\":\"1554922792512020480\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"url\":\"https:\\/\\/t.co\\/Ny7cGtBNlr\",\"display_url\":\"pic.twitter.com\\/Ny7cGtBNlr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554922799667503106\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":439,\"resize\":\"fit\"},\"medium\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"}}}]},\"602\":null,\"603\":{\"media\":[{\"id\":1554921110038274048,\"id_str\":\"1554921110038274048\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"url\":\"https:\\/\\/t.co\\/UeFEo5kC0H\",\"display_url\":\"pic.twitter.com\\/UeFEo5kC0H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/montero4emirate\\/status\\/1554921120905760778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"small\":{\"w\":669,\"h\":680,\"resize\":\"fit\"}}}]},\"604\":{\"media\":[{\"id\":1554920433736114176,\"id_str\":\"1554920433736114176\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"url\":\"https:\\/\\/t.co\\/a58nuGIcuj\",\"display_url\":\"pic.twitter.com\\/a58nuGIcuj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554920465453535234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"605\":{\"media\":[{\"id\":1554920207226994694,\"id_str\":\"1554920207226994694\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554920216890572802,\"id_str\":\"1554920216890572802\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvsu3WAAImEan.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvsu3WAAImEan.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554920224444612611,\"id_str\":\"1554920224444612611\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvtLAXgAMBuRr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvtLAXgAMBuRr.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554920231662919680,\"id_str\":\"1554920231662919680\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvtl5WIAABStx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvtl5WIAABStx.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"606\":null,\"607\":{\"media\":[{\"id\":1554919511844945920,\"id_str\":\"1554919511844945920\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"url\":\"https:\\/\\/t.co\\/L5naFHzNv6\",\"display_url\":\"pic.twitter.com\\/L5naFHzNv6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1554919572913930240\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":10898,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/pl\\/PdwsoOWqMR_I8ZVY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/320x568\\/JkXngNVuJRBVgB9i.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/480x852\\/qtvlPMtGrOXFGJht.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/720x1278\\/aVi6eql7Wqp-sHXk.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"608\":null,\"609\":null,\"610\":{\"media\":[{\"id\":1554918084397469697,\"id_str\":\"1554918084397469697\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"url\":\"https:\\/\\/t.co\\/b0ZKsnRgJ6\",\"display_url\":\"pic.twitter.com\\/b0ZKsnRgJ6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AmDkenzie\\/status\\/1554918698191831044\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":52275,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554918084397469697\\/pu\\/vid\\/320x568\\/ij8F97T7Zs-hiUNM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554918084397469697\\/pu\\/pl\\/8UgmwR8oPBPW8PK0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554918084397469697\\/pu\\/vid\\/360x640\\/Dw0KidUcJfwBUfKx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"611\":null,\"612\":{\"media\":[{\"id\":1554917648793833475,\"id_str\":\"1554917648793833475\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"url\":\"https:\\/\\/t.co\\/2OrZy9A1BQ\",\"display_url\":\"pic.twitter.com\\/2OrZy9A1BQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZealDise\\/status\\/1554917658948255750\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"613\":{\"media\":[{\"id\":1554917340168462337,\"id_str\":\"1554917340168462337\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"url\":\"https:\\/\\/t.co\\/XTI7MngazT\",\"display_url\":\"pic.twitter.com\\/XTI7MngazT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostleJoeUdoh\\/status\\/1554917350310395911\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"}}}]},\"614\":{\"media\":[{\"id\":1554916928652730370,\"id_str\":\"1554916928652730370\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"url\":\"https:\\/\\/t.co\\/uNm3Dqi46R\",\"display_url\":\"pic.twitter.com\\/uNm3Dqi46R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1554916934776487936\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":336,\"resize\":\"fit\"}}}]},\"615\":{\"media\":[{\"id\":1554916828358610954,\"id_str\":\"1554916828358610954\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"url\":\"https:\\/\\/t.co\\/Ndvbo56Cix\",\"display_url\":\"pic.twitter.com\\/Ndvbo56Cix\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554916841855848448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554916839175618560,\"id_str\":\"1554916839175618560\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQsoH5WAAAY2ky.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQsoH5WAAAY2ky.jpg\",\"url\":\"https:\\/\\/t.co\\/Ndvbo56Cix\",\"display_url\":\"pic.twitter.com\\/Ndvbo56Cix\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554916841855848448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":470,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":663,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":663,\"h\":960,\"resize\":\"fit\"}}}]},\"616\":null,\"617\":{\"media\":[{\"id\":1554916078635171840,\"id_str\":\"1554916078635171840\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"}}},{\"id\":1554916078639353857,\"id_str\":\"1554916078639353857\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72rXkAEYYr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72rXkAEYYr6.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554916078622588929,\"id_str\":\"1554916078622588929\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72nXwAE3jMP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72nXwAE3jMP.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554916079184510978,\"id_str\":\"1554916079184510978\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr74tWAAI49gd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr74tWAAI49gd.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"618\":{\"media\":[{\"id\":1554914917198733312,\"id_str\":\"1554914917198733312\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"url\":\"https:\\/\\/t.co\\/jCOYntTTXc\",\"display_url\":\"pic.twitter.com\\/jCOYntTTXc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554914919761453056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":775,\"resize\":\"fit\"},\"small\":{\"w\":632,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":775,\"resize\":\"fit\"}}}]},\"619\":{\"media\":[{\"id\":1554914242037432320,\"id_str\":\"1554914242037432320\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"url\":\"https:\\/\\/t.co\\/60kyNTYdVC\",\"display_url\":\"pic.twitter.com\\/60kyNTYdVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_timotee\\/status\\/1554914363928100864\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":37600,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/320x568\\/rZjaXwg_nlFXyNe9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/480x852\\/pmgY91BKufPDxvNR.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/720x1280\\/_diQ5F79Cc1-qs2p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/pl\\/VZmyFjc0PgoN_2kD.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"620\":{\"media\":[{\"id\":1554914140996632577,\"id_str\":\"1554914140996632577\",\"indices\":[47,70],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"url\":\"https:\\/\\/t.co\\/yiNSoKgXQY\",\"display_url\":\"pic.twitter.com\\/yiNSoKgXQY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554914152052817920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"621\":null,\"622\":{\"media\":[{\"id\":1554913397401128963,\"id_str\":\"1554913397401128963\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"url\":\"https:\\/\\/t.co\\/FVS92zEuL3\",\"display_url\":\"pic.twitter.com\\/FVS92zEuL3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pastppl\\/status\\/1554913407270354947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"623\":null,\"624\":null,\"625\":{\"media\":[{\"id\":1554910690321858560,\"id_str\":\"1554910690321858560\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554910690367905794,\"id_str\":\"1554910690367905794\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCNzWIAIn_Dc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCNzWIAIn_Dc.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554910690393182210,\"id_str\":\"1554910690393182210\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCN5X0AIDxqr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCN5X0AIDxqr.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554910690380505089,\"id_str\":\"1554910690380505089\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCN2WYAEvok5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCN2WYAEvok5.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"626\":{\"media\":[{\"id\":1554910195821723648,\"id_str\":\"1554910195821723648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"url\":\"https:\\/\\/t.co\\/t83z7KgCZE\",\"display_url\":\"pic.twitter.com\\/t83z7KgCZE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554910206764765184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"}}}]},\"627\":{\"media\":[{\"id\":1554909512221573121,\"id_str\":\"1554909512221573121\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"url\":\"https:\\/\\/t.co\\/7oFsDeYTsH\",\"display_url\":\"pic.twitter.com\\/7oFsDeYTsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554909529577512960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"medium\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554909521507762176,\"id_str\":\"1554909521507762176\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQl-LdXwAAKMUK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQl-LdXwAAKMUK.jpg\",\"url\":\"https:\\/\\/t.co\\/7oFsDeYTsH\",\"display_url\":\"pic.twitter.com\\/7oFsDeYTsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554909529577512960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1001,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1001,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"}}}]},\"628\":{\"media\":[{\"id\":1554909342398300164,\"id_str\":\"1554909342398300164\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"url\":\"https:\\/\\/t.co\\/httCZHSxTe\",\"display_url\":\"pic.twitter.com\\/httCZHSxTe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554909353592860674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":655,\"resize\":\"fit\"}}}]},\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":{\"media\":[{\"id\":1554907611685871616,\"id_str\":\"1554907611685871616\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":922,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":862,\"resize\":\"fit\"}}},{\"id\":1554907611736186882,\"id_str\":\"1554907611736186882\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPBAWIAIm8bX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPBAWIAIm8bX.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":828,\"resize\":\"fit\"},\"large\":{\"w\":1284,\"h\":886,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":469,\"resize\":\"fit\"}}}]},\"635\":null,\"636\":null,\"637\":{\"media\":[{\"id\":1554905384854470660,\"id_str\":\"1554905384854470660\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"url\":\"https:\\/\\/t.co\\/jriEwqsvvJ\",\"display_url\":\"pic.twitter.com\\/jriEwqsvvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sharon_sleey\\/status\\/1554905444610703361\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/320x568\\/tZ8YE-2Ws9hyVsI0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/720x1280\\/daJb9NWiqPXNh4Y-.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/480x852\\/F59tgmXSi6rgB1E3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/pl\\/r0dJ6jG5UKixYEvQ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"638\":{\"media\":[{\"id\":1554905006779793413,\"id_str\":\"1554905006779793413\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"url\":\"https:\\/\\/t.co\\/sLgaVkZN1d\",\"display_url\":\"pic.twitter.com\\/sLgaVkZN1d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554905114531577859\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":59970,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905006779793413\\/pu\\/pl\\/w3a_E9S1nESIs6WK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905006779793413\\/pu\\/vid\\/320x564\\/btBAdf079Ng4Mo5h.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905006779793413\\/pu\\/vid\\/480x848\\/n2itCxP5sJS7GL99.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"639\":{\"media\":[{\"id\":1554904267558998017,\"id_str\":\"1554904267558998017\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"url\":\"https:\\/\\/t.co\\/c7Zb8bjK1h\",\"display_url\":\"pic.twitter.com\\/c7Zb8bjK1h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLAMIBODEREHAN\\/status\\/1554904346176929792\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":44953,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554904267558998017\\/pu\\/pl\\/cSiOMddQJsnTIczg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554904267558998017\\/pu\\/vid\\/480x848\\/emdF8Rxc4alERJ1y.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554904267558998017\\/pu\\/vid\\/320x564\\/natnGet7RQDo1W-H.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"640\":{\"media\":[{\"id\":1554904263742160896,\"id_str\":\"1554904263742160896\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1554904267592552448,\"id_str\":\"1554904267592552448\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhMXGX0AAGvvY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhMXGX0AAGvvY.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":958,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":958,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554904279298752514,\"id_str\":\"1554904279298752514\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhNCtWQAI6pdt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhNCtWQAI6pdt.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554904293341274112,\"id_str\":\"1554904293341274112\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhN3BWIAAintT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhN3BWIAAintT.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"641\":null,\"642\":null,\"643\":{\"media\":[{\"id\":1554903110451093506,\"id_str\":\"1554903110451093506\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"url\":\"https:\\/\\/t.co\\/JfkK4p5kHo\",\"display_url\":\"pic.twitter.com\\/JfkK4p5kHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BubesTreat_3\\/status\\/1554903129673666560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":421,\"resize\":\"fit\"}}}]},\"644\":{\"media\":[{\"id\":1554901434646265856,\"id_str\":\"1554901434646265856\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"url\":\"https:\\/\\/t.co\\/VjiXPWbX4f\",\"display_url\":\"pic.twitter.com\\/VjiXPWbX4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1554901550665015298\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":140012,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/vid\\/576x1024\\/Shan742lItwhM0iG.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/vid\\/480x852\\/CFbrFsA5qvoebkqS.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/vid\\/320x568\\/8qKQ1I7SpYGlr_8p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/pl\\/mNr_oHtzOvmaHv46.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"645\":{\"media\":[{\"id\":1554899220372529153,\"id_str\":\"1554899220372529153\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"url\":\"https:\\/\\/t.co\\/W1zrNyyBd4\",\"display_url\":\"pic.twitter.com\\/W1zrNyyBd4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DL_first_son\\/status\\/1554899262617653248\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":365,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[36,67],\"duration_millis\":7738,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/pl\\/BTCKcGXHFz530QFV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/vid\\/576x1072\\/BKa88eqNSvgFw2DK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/vid\\/480x892\\/O9hEUXDa0vABK6gB.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/vid\\/320x594\\/4l6UnWTghR11Tbwq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"646\":null,\"647\":{\"media\":[{\"id\":1554895396790476803,\"id_str\":\"1554895396790476803\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"url\":\"https:\\/\\/t.co\\/sSTeJQYgcQ\",\"display_url\":\"pic.twitter.com\\/sSTeJQYgcQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554895525392138241\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":44975,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554895396790476803\\/pu\\/pl\\/lotLHZfYw_bnySHi.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554895396790476803\\/pu\\/vid\\/480x256\\/tRmjjl5XsqOJTTij.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"648\":null,\"649\":{\"media\":[{\"id\":1554893024903282689,\"id_str\":\"1554893024903282689\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"url\":\"https:\\/\\/t.co\\/tA7oQLvgD9\",\"display_url\":\"pic.twitter.com\\/tA7oQLvgD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danthegreyt\\/status\\/1554895023048630272\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":688,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":688,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,40],\"duration_millis\":88000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/pl\\/s0IWWR_obPZvnM-A.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/vid\\/290x270\\/o7aSM4bNN-ckOVku.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/vid\\/688x640\\/CmTgErkKTIHHopBN.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/vid\\/386x360\\/OM96hsfj8GIkLkiS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"650\":{\"media\":[{\"id\":1554894576321761280,\"id_str\":\"1554894576321761280\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554894588279771136,\"id_str\":\"1554894588279771136\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYY82X0AA0foI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYY82X0AA0foI.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":575,\"resize\":\"fit\"}}},{\"id\":1554894596882239490,\"id_str\":\"1554894596882239490\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYZc5XEAISx9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYZc5XEAISx9d.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"}}},{\"id\":1554894606759755777,\"id_str\":\"1554894606759755777\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYaBsWAAE-bcC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYaBsWAAE-bcC.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":485,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":485,\"resize\":\"fit\"}}}]},\"651\":{\"media\":[{\"id\":1554894083633602561,\"id_str\":\"1554894083633602561\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"url\":\"https:\\/\\/t.co\\/4cLztckKId\",\"display_url\":\"pic.twitter.com\\/4cLztckKId\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nnachigraciouss\\/status\\/1554894090600325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"large\":{\"w\":450,\"h\":300,\"resize\":\"fit\"}}},{\"id\":1554894088247431169,\"id_str\":\"1554894088247431169\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQX72FX0AEuH0-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQX72FX0AEuH0-.jpg\",\"url\":\"https:\\/\\/t.co\\/4cLztckKId\",\"display_url\":\"pic.twitter.com\\/4cLztckKId\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nnachigraciouss\\/status\\/1554894090600325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"},\"large\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"}}}]},\"652\":{\"media\":[{\"id\":1554893825079926784,\"id_str\":\"1554893825079926784\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"url\":\"https:\\/\\/t.co\\/q13uXAXOhv\",\"display_url\":\"pic.twitter.com\\/q13uXAXOhv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/goziedbrightest\\/status\\/1554893836513599488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"653\":{\"media\":[{\"id\":1554892500804030470,\"id_str\":\"1554892500804030470\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"url\":\"https:\\/\\/t.co\\/48uTAiwxOg\",\"display_url\":\"pic.twitter.com\\/48uTAiwxOg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abiye_daniel\\/status\\/1554892872708669440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":575,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":612,\"h\":1278,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[34,71],\"duration_millis\":24540,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/vid\\/612x1278\\/WvUtvr2qikxDuiRs.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/vid\\/320x668\\/7cNHpq0S-NcYzdyf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/pl\\/t4fZIISW8RRxpm9a.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/vid\\/480x1002\\/D91WIEi3w_GuBri1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"654\":null,\"655\":null,\"656\":null,\"657\":{\"media\":[{\"id\":1554890358567337987,\"id_str\":\"1554890358567337987\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554890358567337987\\/pu\\/img\\/79zGVgPJcEaE39ou.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554890358567337987\\/pu\\/img\\/79zGVgPJcEaE39ou.jpg\",\"url\":\"https:\\/\\/t.co\\/xTBRxanutb\",\"display_url\":\"pic.twitter.com\\/xTBRxanutb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554890515123937280\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15134,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554890358567337987\\/pu\\/vid\\/720x1280\\/TSfLCIBUZtQMtbru.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554890358567337987\\/pu\\/pl\\/_INiBFyKbT_USpe6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554890358567337987\\/pu\\/vid\\/320x568\\/ESfS2lqHKldzbB7L.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554890358567337987\\/pu\\/vid\\/480x852\\/Iao32wStN70bfs0c.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"658\":{\"media\":[{\"id\":1554889568507379712,\"id_str\":\"1554889568507379712\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554889568456933376,\"id_str\":\"1554889568456933376\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWAAAx9XQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWAAAx9XQ.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554889568456949761,\"id_str\":\"1554889568456949761\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWQAEZwU-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWQAEZwU-.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"659\":null,\"660\":null,\"661\":{\"media\":[{\"id\":1554888205891141634,\"id_str\":\"1554888205891141634\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"url\":\"https:\\/\\/t.co\\/xC6K2kPOD5\",\"display_url\":\"pic.twitter.com\\/xC6K2kPOD5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamnancy_koko\\/status\\/1554888288187596801\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554888205891141634\\/pu\\/vid\\/320x580\\/g3WQiGMgz65yXKlm.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554888205891141634\\/pu\\/vid\\/352x640\\/hKlFj5NBCcFvkDgM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554888205891141634\\/pu\\/pl\\/tMOevH8mz1QONzS-.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"662\":null,\"663\":{\"media\":[{\"id\":1554887413008404480,\"id_str\":\"1554887413008404480\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"url\":\"https:\\/\\/t.co\\/Etcy2TXr2z\",\"display_url\":\"pic.twitter.com\\/Etcy2TXr2z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/midnytupdates\\/status\\/1554887434168573952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"}}}]},\"664\":{\"media\":[{\"id\":1554884709255102466,\"id_str\":\"1554884709255102466\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554884716783964161,\"id_str\":\"1554884716783964161\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPaWqXkAELwsM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPaWqXkAELwsM.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554884723935166464,\"id_str\":\"1554884723935166464\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPaxTWQAAjHW-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPaxTWQAAjHW-.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554884730864156672,\"id_str\":\"1554884730864156672\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPbLHWQAAU3Aw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPbLHWQAAU3Aw.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"665\":null,\"666\":{\"media\":[{\"id\":1554883391333535744,\"id_str\":\"1554883391333535744\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"url\":\"https:\\/\\/t.co\\/hYyok6F3by\",\"display_url\":\"pic.twitter.com\\/hYyok6F3by\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nworie_david\\/status\\/1554883393925554177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"667\":{\"media\":[{\"id\":1554883125972434947,\"id_str\":\"1554883125972434947\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"url\":\"https:\\/\\/t.co\\/MQc53z0gzG\",\"display_url\":\"pic.twitter.com\\/MQc53z0gzG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ppell524\\/status\\/1554883174987079681\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12463,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/pl\\/TuoiqSv3PcW6eJlI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/vid\\/320x568\\/xO7skImIZRwMpZHN.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/vid\\/720x1280\\/oSG_UelCgSGfx83t.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/vid\\/480x852\\/SwVxVJWUVAOoWmiu.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"668\":{\"media\":[{\"id\":1554883068745469959,\"id_str\":\"1554883068745469959\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"url\":\"https:\\/\\/t.co\\/tyAdCFsssb\",\"display_url\":\"pic.twitter.com\\/tyAdCFsssb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554883093852479491\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":552,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":1208,\"h\":556,\"resize\":\"fit\"}}}]},\"669\":null,\"670\":null,\"671\":{\"media\":[{\"id\":1554881398879789056,\"id_str\":\"1554881398879789056\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"url\":\"https:\\/\\/t.co\\/tspuOt2IEp\",\"display_url\":\"pic.twitter.com\\/tspuOt2IEp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554881430416723970\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10172,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/vid\\/480x852\\/sRgJVuHSkeEHPijQ.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/vid\\/320x568\\/ZrFqExBAzi8tmtoG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/vid\\/540x960\\/1XP8_0n_VrT94N0l.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/pl\\/vGTxaXJ-Tz-QvruF.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"672\":{\"media\":[{\"id\":1554881027591520260,\"id_str\":\"1554881027591520260\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"url\":\"https:\\/\\/t.co\\/NZ3ygeIhwq\",\"display_url\":\"pic.twitter.com\\/NZ3ygeIhwq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hisvert\\/status\\/1554881056008187904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":1663,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/vid\\/320x568\\/VEh-qxGyD2BdXXcV.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/vid\\/480x852\\/wmzGbbKj3egjutVD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/pl\\/LA2rJstw9whhn-ci.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"673\":null,\"674\":{\"media\":[{\"id\":1554879877056167942,\"id_str\":\"1554879877056167942\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"url\":\"https:\\/\\/t.co\\/1TfAEXCXbe\",\"display_url\":\"pic.twitter.com\\/1TfAEXCXbe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ind_Journos\\/status\\/1554879886778634243\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"675\":null,\"676\":null,\"677\":null,\"678\":{\"media\":[{\"id\":1554876192368607233,\"id_str\":\"1554876192368607233\",\"indices\":[63,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"url\":\"https:\\/\\/t.co\\/l9TrkZDPB3\",\"display_url\":\"pic.twitter.com\\/l9TrkZDPB3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jasper_nwankwo\\/status\\/1554876236282863616\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[122,213],\"duration_millis\":27958,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554876192368607233\\/pu\\/pl\\/oZQkUcEi0pROIcDH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554876192368607233\\/pu\\/vid\\/244x426\\/E6ipzynGRjfyBjjN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"679\":null,\"680\":null,\"681\":null,\"682\":{\"media\":[{\"id\":1554875107327238146,\"id_str\":\"1554875107327238146\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"url\":\"https:\\/\\/t.co\\/0abiCiufk2\",\"display_url\":\"pic.twitter.com\\/0abiCiufk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnAshafa\\/status\\/1554875116768608256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"683\":{\"media\":[{\"id\":1554875039073419270,\"id_str\":\"1554875039073419270\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"url\":\"https:\\/\\/t.co\\/Nz9c0LorqE\",\"display_url\":\"pic.twitter.com\\/Nz9c0LorqE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ay_adeyinka\\/status\\/1554875042147827712\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":586,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"}}}]},\"684\":{\"media\":[{\"id\":1554873912382705664,\"id_str\":\"1554873912382705664\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"url\":\"https:\\/\\/t.co\\/2NDXPRWunF\",\"display_url\":\"pic.twitter.com\\/2NDXPRWunF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AkotuJosep\\/status\\/1554873915180302344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":570,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"}}}]},\"685\":null,\"686\":{\"media\":[{\"id\":1554872529357078530,\"id_str\":\"1554872529357078530\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"url\":\"https:\\/\\/t.co\\/scYmhRCniz\",\"display_url\":\"pic.twitter.com\\/scYmhRCniz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872532582400001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":447,\"resize\":\"fit\"}}}]},\"687\":{\"media\":[{\"id\":1554872198287990785,\"id_str\":\"1554872198287990785\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"url\":\"https:\\/\\/t.co\\/ewQV3c6jLC\",\"display_url\":\"pic.twitter.com\\/ewQV3c6jLC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872252679815169\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":32266,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/vid\\/640x360\\/UU4RjWb3p6M_4_QR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/pl\\/qrgGdLXyY-4_kczs.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/vid\\/480x270\\/vx_PoqNnfBK-aGhy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/vid\\/1280x720\\/oyt4TllJon0d-OFr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"688\":{\"media\":[{\"id\":1554872065529872384,\"id_str\":\"1554872065529872384\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQD59EWAAA7I87.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQD59EWAAA7I87.jpg\",\"url\":\"https:\\/\\/t.co\\/izGrTYjyjz\",\"display_url\":\"pic.twitter.com\\/izGrTYjyjz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554872078981029889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"689\":null,\"690\":{\"media\":[{\"id\":1554869821082423302,\"id_str\":\"1554869821082423302\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"url\":\"https:\\/\\/t.co\\/fuKr5l8Xzy\",\"display_url\":\"pic.twitter.com\\/fuKr5l8Xzy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/henry_saliu\\/status\\/1554869975638474752\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":856,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":803,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,107],\"duration_millis\":45000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/1076x720\\/Stv9TpP5SfLL1NhT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/pl\\/KkuuX5FjD9PPTACN.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/538x360\\/TcU9v4AmnKHIPxCs.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/402x270\\/v1ZiI1jdRBdinUOA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"691\":null,\"692\":{\"media\":[{\"id\":1554868645792256005,\"id_str\":\"1554868645792256005\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQAy5jXEAUFSZ0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQAy5jXEAUFSZ0.jpg\",\"url\":\"https:\\/\\/t.co\\/JeHaRLhQQf\",\"display_url\":\"pic.twitter.com\\/JeHaRLhQQf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/belacqua419\\/status\\/1554868702105030657\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"693\":{\"media\":[{\"id\":1554868053199945732,\"id_str\":\"1554868053199945732\",\"indices\":[36,59],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQAQZ-WAAQvKOP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQAQZ-WAAQvKOP.jpg\",\"url\":\"https:\\/\\/t.co\\/s1IPlki5HP\",\"display_url\":\"pic.twitter.com\\/s1IPlki5HP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HumbleSoulGh\\/status\\/1554868104890548224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"694\":null,\"695\":null,\"696\":null,\"697\":{\"media\":[{\"id\":1554738998655983618,\"id_str\":\"1554738998655983618\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"url\":\"https:\\/\\/t.co\\/kuHBbuIPqq\",\"display_url\":\"pic.twitter.com\\/kuHBbuIPqq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DIRTY_TROLL_\\/status\\/1554739088699318274\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554739088699318274,\"source_status_id_str\":\"1554739088699318274\",\"source_user_id\":1383416665023516684,\"source_user_id_str\":\"1383416665023516684\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":29866,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/pl\\/GxsaKt96j75EQqE_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/vid\\/720x1280\\/btNzEgsfO8w0hFWW.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/vid\\/480x852\\/EEtiZ7VwRkOtiqJs.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/vid\\/320x568\\/-rcrRqv4i-_x3-56.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"698\":null,\"699\":{\"media\":[{\"id\":1554863381533921284,\"id_str\":\"1554863381533921284\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"url\":\"https:\\/\\/t.co\\/IpIJS16Q0a\",\"display_url\":\"pic.twitter.com\\/IpIJS16Q0a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554863391801577475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"700\":null,\"701\":{\"media\":[{\"id\":1554863071339991040,\"id_str\":\"1554863071339991040\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"url\":\"https:\\/\\/t.co\\/X0g1q2rmkP\",\"display_url\":\"pic.twitter.com\\/X0g1q2rmkP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dazai_Mill\\/status\\/1554863081024589824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"}}}]},\"702\":{\"media\":[{\"id\":1554862730775085060,\"id_str\":\"1554862730775085060\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"url\":\"https:\\/\\/t.co\\/kFuvOwtASi\",\"display_url\":\"pic.twitter.com\\/kFuvOwtASi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Xamhani5\\/status\\/1554862857627598849\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":20480,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/vid\\/476x270\\/oxwYC5GYqJEGse2-.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/vid\\/636x360\\/NnqsO0Py0vOvrwSq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/pl\\/K59qJwMy2SMR87PF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/vid\\/848x480\\/TNlqqeyqOlBku1sy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"703\":{\"media\":[{\"id\":1554859071911727105,\"id_str\":\"1554859071911727105\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"url\":\"https:\\/\\/t.co\\/HdEwRH6iPT\",\"display_url\":\"pic.twitter.com\\/HdEwRH6iPT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLUWASHEYNOR\\/status\\/1554862669466853387\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":44996,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554859071911727105\\/pu\\/vid\\/352x640\\/6vCFG-CFXkwepC-g.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554859071911727105\\/pu\\/vid\\/320x580\\/W6zG8gqCWhvD_bWI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554859071911727105\\/pu\\/pl\\/LFsQqFNfAvDZRaGp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"704\":null,\"705\":null,\"706\":null,\"707\":{\"media\":[{\"id\":1554860741462745088,\"id_str\":\"1554860741462745088\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"url\":\"https:\\/\\/t.co\\/bVQg5LLuqJ\",\"display_url\":\"pic.twitter.com\\/bVQg5LLuqJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/taiwosharpakin\\/status\\/1554860847461179392\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":8340,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/pl\\/yfNpmxIseeqUxY4Y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/vid\\/720x1280\\/W1y2OmFlXIiyY-c3.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/vid\\/320x568\\/G7duGC48krKN2aYA.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/vid\\/480x852\\/aTB48eF17SgMNnva.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"708\":{\"media\":[{\"id\":1554857936593338369,\"id_str\":\"1554857936593338369\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"url\":\"https:\\/\\/t.co\\/serqHvJW2C\",\"display_url\":\"pic.twitter.com\\/serqHvJW2C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554859470001475584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":1240,\"resize\":\"fit\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,620],\"duration_millis\":29306,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/pl\\/1B97_IzMpY9xYvMM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/480x670\\/mdxj7XUqBGNMxdGV.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/320x446\\/K94D15Q4SyxOQD9p.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/720x1006\\/8JJfwPE5zArf2fTU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"709\":{\"media\":[{\"id\":1554858363166593027,\"id_str\":\"1554858363166593027\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":452,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554858363158159360,\"id_str\":\"1554858363158159360\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXwWYAACRNG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXwWYAACRNG.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":682,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":682,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"}}}]},\"710\":{\"media\":[{\"id\":1554857654492741632,\"id_str\":\"1554857654492741632\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"url\":\"https:\\/\\/t.co\\/hXTkpuKOb9\",\"display_url\":\"pic.twitter.com\\/hXTkpuKOb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857741767802884\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10833,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/vid\\/320x568\\/3gJFjN1zlJWIQ6B7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/vid\\/576x1024\\/6L_2W4_qYpRL0EUt.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/vid\\/480x852\\/09k3lkwHPaP_iTwQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/pl\\/l6VogqSKh-IoFkDY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"711\":{\"media\":[{\"id\":1554857307246415872,\"id_str\":\"1554857307246415872\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"url\":\"https:\\/\\/t.co\\/M0Ay75iMpk\",\"display_url\":\"pic.twitter.com\\/M0Ay75iMpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857391572795395\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10833,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/vid\\/320x568\\/CJAmncId8JwEIni_.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/vid\\/576x1024\\/b83AsgSBU3DfSKxq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/pl\\/0jtOBE2b8v4tAtKV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/vid\\/480x852\\/FUfdl9gB5gS693Eq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":{\"media\":[{\"id\":1554854169730842624,\"id_str\":\"1554854169730842624\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"url\":\"https:\\/\\/t.co\\/QXoeE58mqd\",\"display_url\":\"pic.twitter.com\\/QXoeE58mqd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ivyarcher75\\/status\\/1554854317353586690\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":38867,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/vid\\/640x360\\/YXzREV6EyRkpWqxg.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/vid\\/1280x720\\/54zkgDrAD4RYhuYj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/pl\\/TGJjGoABTABYQAgQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/vid\\/480x270\\/zmJ0qGcB4rUtHQnU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"718\":{\"media\":[{\"id\":1554853575938940931,\"id_str\":\"1554853575938940931\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"url\":\"https:\\/\\/t.co\\/XaBB0uU303\",\"display_url\":\"pic.twitter.com\\/XaBB0uU303\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cyrillle_b\\/status\\/1554853584608673792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"719\":{\"media\":[{\"id\":1554851249660608512,\"id_str\":\"1554851249660608512\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"url\":\"https:\\/\\/t.co\\/SFtmooG4n4\",\"display_url\":\"pic.twitter.com\\/SFtmooG4n4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1554853500152336384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":31113,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/pl\\/6_YcVed8xLB0FuTU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/320x568\\/ljb2amPU7Z2KioYa.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/480x852\\/cmIylBrH0tZVRxkt.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/720x1280\\/JJq6y5iX_I9Y12Yv.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"720\":null,\"721\":null,\"722\":{\"media\":[{\"id\":1554851448164335616,\"id_str\":\"1554851448164335616\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"url\":\"https:\\/\\/t.co\\/DREK7qMgFy\",\"display_url\":\"pic.twitter.com\\/DREK7qMgFy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamadeflow\\/status\\/1554851525855526912\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":26586,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/vid\\/720x900\\/N9LP71fBGmgsORkf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/pl\\/tP1q4hEITh3IUmgb.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/vid\\/320x400\\/uGztT13hY2s-xOJM.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/vid\\/480x600\\/8lHdMRN6jqiai3lb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"723\":{\"media\":[{\"id\":1554850860961775625,\"id_str\":\"1554850860961775625\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"url\":\"https:\\/\\/t.co\\/cHw8nDiKoF\",\"display_url\":\"pic.twitter.com\\/cHw8nDiKoF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554850987222917128\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,616],\"duration_millis\":18343,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/320x444\\/5xerdQwnxeVmre6N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/720x1000\\/1QLE9cPkAAlkm5ZO.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/pl\\/e5t89xihaBpg0p20.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/480x666\\/Wra3w-ayFpiRtuf8.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"724\":{\"media\":[{\"id\":1554849122989101058,\"id_str\":\"1554849122989101058\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"url\":\"https:\\/\\/t.co\\/z92cabRhki\",\"display_url\":\"pic.twitter.com\\/z92cabRhki\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magojazzy\\/status\\/1554849169902297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"725\":null,\"726\":{\"media\":[{\"id\":1554847712171917312,\"id_str\":\"1554847712171917312\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"url\":\"https:\\/\\/t.co\\/cpMeY6l4qn\",\"display_url\":\"pic.twitter.com\\/cpMeY6l4qn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/King_Edrah\\/status\\/1554847720237588483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":485,\"resize\":\"fit\"}}}]},\"727\":{\"media\":[{\"id\":1554845222231855104,\"id_str\":\"1554845222231855104\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"url\":\"https:\\/\\/t.co\\/Vhy6XUmv6N\",\"display_url\":\"pic.twitter.com\\/Vhy6XUmv6N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jay_Chopa\\/status\\/1554847318733688835\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44933,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/vid\\/320x568\\/J94CqmysfJTlVzkp.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/pl\\/5GQ_GQUnRq3nDmRV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/vid\\/720x1280\\/4bM9MveimGQ5RtYK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/vid\\/480x852\\/GY9lTLnC6BEn8Kqb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"728\":{\"media\":[{\"id\":1554847143323750402,\"id_str\":\"1554847143323750402\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"url\":\"https:\\/\\/t.co\\/ERYYncJ91y\",\"display_url\":\"pic.twitter.com\\/ERYYncJ91y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobblasts_ng\\/status\\/1554847181386940416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"729\":{\"media\":[{\"id\":1554845900652134403,\"id_str\":\"1554845900652134403\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"url\":\"https:\\/\\/t.co\\/8rhcyAquDi\",\"display_url\":\"pic.twitter.com\\/8rhcyAquDi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554845904175259648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"730\":{\"media\":[{\"id\":1554845768808370183,\"id_str\":\"1554845768808370183\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"url\":\"https:\\/\\/t.co\\/lomyxzo19t\",\"display_url\":\"pic.twitter.com\\/lomyxzo19t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WiseKingoffici1\\/status\\/1554845844062470145\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":29976,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845768808370183\\/pu\\/vid\\/352x640\\/IN7ekfRcx4jhlk2E.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845768808370183\\/pu\\/vid\\/320x580\\/5CILSr-3MNIyvrJV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845768808370183\\/pu\\/pl\\/HYt7W_OQO7_-zMda.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"731\":{\"media\":[{\"id\":1554845195203710983,\"id_str\":\"1554845195203710983\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"url\":\"https:\\/\\/t.co\\/SOq1sp6GTV\",\"display_url\":\"pic.twitter.com\\/SOq1sp6GTV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itz_ikhali\\/status\\/1554845204703854592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"}}},{\"id\":1554845195203756032,\"id_str\":\"1554845195203756032\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXwAAnFEg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXwAAnFEg.jpg\",\"url\":\"https:\\/\\/t.co\\/SOq1sp6GTV\",\"display_url\":\"pic.twitter.com\\/SOq1sp6GTV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itz_ikhali\\/status\\/1554845204703854592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1029,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1029,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"}}}]},\"732\":null,\"733\":{\"media\":[{\"id\":1554843949231120384,\"id_str\":\"1554843949231120384\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"url\":\"https:\\/\\/t.co\\/U490y2rN72\",\"display_url\":\"pic.twitter.com\\/U490y2rN72\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CaresValu\\/status\\/1554844905943564290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1717,\"h\":1016,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":710,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":402,\"resize\":\"fit\"}}}]},\"734\":{\"media\":[{\"id\":1554843903404154880,\"id_str\":\"1554843903404154880\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"url\":\"https:\\/\\/t.co\\/COouUZAqTK\",\"display_url\":\"pic.twitter.com\\/COouUZAqTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MixedPie\\/status\\/1554843910261932034\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":278,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[249,139],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZPqSs-WIAAVgHH.mp4\"}]}}]},\"735\":{\"media\":[{\"id\":1554843508820905984,\"id_str\":\"1554843508820905984\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"url\":\"https:\\/\\/t.co\\/xYqiMXKCQi\",\"display_url\":\"pic.twitter.com\\/xYqiMXKCQi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibbultalkative\\/status\\/1554843537736351744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1122,\"h\":1497,\"resize\":\"fit\"}}}]},\"736\":null,\"737\":{\"media\":[{\"id\":1554840616395329538,\"id_str\":\"1554840616395329538\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"url\":\"https:\\/\\/t.co\\/HrGoPtUEdp\",\"display_url\":\"pic.twitter.com\\/HrGoPtUEdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialUgoo\\/status\\/1554840769541840897\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":23567,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840616395329538\\/pu\\/vid\\/480x848\\/vFZMnw9KXCdfp4hj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840616395329538\\/pu\\/pl\\/nYoIOoAjljPncmxR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840616395329538\\/pu\\/vid\\/320x564\\/ZChM2qqsasLYW1z4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"738\":{\"media\":[{\"id\":1554840585546121216,\"id_str\":\"1554840585546121216\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"url\":\"https:\\/\\/t.co\\/M52dtXFSPt\",\"display_url\":\"pic.twitter.com\\/M52dtXFSPt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officiall_26\\/status\\/1554840595432177666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}}]},\"739\":{\"media\":[{\"id\":1554839954383052801,\"id_str\":\"1554839954383052801\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"url\":\"https:\\/\\/t.co\\/Ed0hyzm5a0\",\"display_url\":\"pic.twitter.com\\/Ed0hyzm5a0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magret_james2\\/status\\/1554840044241911810\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":40086,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/pl\\/p3d-sAdMVHQ6GYGn.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/vid\\/480x852\\/S_djp3RE4afD-JTB.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/vid\\/720x1280\\/QXskfRYtsSQFXquU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/vid\\/320x568\\/igUiI-9dGnI5HI4S.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"740\":{\"media\":[{\"id\":1554839842743279618,\"id_str\":\"1554839842743279618\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554839865606504453,\"id_str\":\"1554839865606504453\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmnrAXgAUOpBN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmnrAXgAUOpBN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554839879481188353,\"id_str\":\"1554839879481188353\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmoesWYAEkRU0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmoesWYAEkRU0.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554839896103305216,\"id_str\":\"1554839896103305216\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmpcnXwAAaZiI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmpcnXwAAaZiI.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"741\":{\"media\":[{\"id\":1554839385920749569,\"id_str\":\"1554839385920749569\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554839402643394560,\"id_str\":\"1554839402643394560\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmMuVXEAAE0ZV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmMuVXEAAE0ZV.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554839419978383361,\"id_str\":\"1554839419978383361\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmNu6WAAEr5Jd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmNu6WAAEr5Jd.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554839438446010368,\"id_str\":\"1554839438446010368\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmOztXoAAMlTp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmOztXoAAMlTp.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"742\":{\"media\":[{\"id\":1554839111319506944,\"id_str\":\"1554839111319506944\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"url\":\"https:\\/\\/t.co\\/ziFs7wdpro\",\"display_url\":\"pic.twitter.com\\/ziFs7wdpro\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sir_werry\\/status\\/1554839139752652802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":805,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1235,\"resize\":\"fit\"},\"small\":{\"w\":456,\"h\":680,\"resize\":\"fit\"}}}]},\"743\":null,\"744\":null,\"745\":null,\"746\":{\"media\":[{\"id\":1554837753874944002,\"id_str\":\"1554837753874944002\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"url\":\"https:\\/\\/t.co\\/VPSRUhRh8v\",\"display_url\":\"pic.twitter.com\\/VPSRUhRh8v\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554838024537509889\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/vid\\/320x568\\/axp7Ol3d90ASMR4m.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/vid\\/540x960\\/PG9sbTy0h-ghQczk.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/vid\\/480x852\\/YF_WlTdRs8UUX9HO.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/pl\\/a6pmfoFPYQ4kOI-s.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"747\":{\"media\":[{\"id\":1554837535502716938,\"id_str\":\"1554837535502716938\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}},{\"id\":1554837541253050373,\"id_str\":\"1554837541253050373\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkgYHUcAUDqZ0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkgYHUcAUDqZ0.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}},{\"id\":1554837596156506113,\"id_str\":\"1554837596156506113\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkjkpUsAEguEs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkjkpUsAEguEs.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":677,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"}}},{\"id\":1554837652221730816,\"id_str\":\"1554837652221730816\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkm1gUIAAHrAU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkm1gUIAAHrAU.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"748\":null,\"749\":{\"media\":[{\"id\":1554836955468165121,\"id_str\":\"1554836955468165121\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"url\":\"https:\\/\\/t.co\\/X4VdFxKEE2\",\"display_url\":\"pic.twitter.com\\/X4VdFxKEE2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554836957687005186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":533,\"resize\":\"fit\"}}}]},\"750\":null,\"751\":null,\"752\":{\"media\":[{\"id\":1554835170859003904,\"id_str\":\"1554835170859003904\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"url\":\"https:\\/\\/t.co\\/XPenvRyXEc\",\"display_url\":\"pic.twitter.com\\/XPenvRyXEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554835221819731969\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,29],\"duration_millis\":37066,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/vid\\/492x270\\/lM19GMTW0x7kMt03.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/pl\\/QTHp54deWAkNZP-v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/vid\\/848x464\\/7lqbEAq3OnYMHgLA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"753\":{\"media\":[{\"id\":1554835161350492164,\"id_str\":\"1554835161350492164\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"url\":\"https:\\/\\/t.co\\/lbgqYYK7r6\",\"display_url\":\"pic.twitter.com\\/lbgqYYK7r6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554835162839465992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"754\":{\"media\":[{\"id\":1554835050029387782,\"id_str\":\"1554835050029387782\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"url\":\"https:\\/\\/t.co\\/AVYQjSFrmC\",\"display_url\":\"pic.twitter.com\\/AVYQjSFrmC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sappzee\\/status\\/1554835145458212865\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,2],\"duration_millis\":40505,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835050029387782\\/pu\\/pl\\/5LLR3CRMDo5jsCGf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835050029387782\\/pu\\/vid\\/320x640\\/YD67mueC4AMbv8sZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"755\":{\"media\":[{\"id\":1554835119990456320,\"id_str\":\"1554835119990456320\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"url\":\"https:\\/\\/t.co\\/MkpeC7yxpc\",\"display_url\":\"pic.twitter.com\\/MkpeC7yxpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KafeEazy\\/status\\/1554835123329064961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"},\"small\":{\"w\":449,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"}}}]},\"756\":{\"media\":[{\"id\":1554781291983298567,\"id_str\":\"1554781291983298567\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOxWPQWYAcX3k6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOxWPQWYAcX3k6.jpg\",\"url\":\"https:\\/\\/t.co\\/cMXki88fQe\",\"display_url\":\"pic.twitter.com\\/cMXki88fQe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554834472549244937\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":469,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":706,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":706,\"resize\":\"fit\"}}}]},\"757\":null,\"758\":{\"media\":[{\"id\":1554831359826284546,\"id_str\":\"1554831359826284546\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPe4kgVUAIn6dJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPe4kgVUAIn6dJ.jpg\",\"url\":\"https:\\/\\/t.co\\/oUEy7JsXqy\",\"display_url\":\"pic.twitter.com\\/oUEy7JsXqy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Obi_Binna\\/status\\/1554831369179516928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"759\":{\"media\":[{\"id\":1554831314158727171,\"id_str\":\"1554831314158727171\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"url\":\"https:\\/\\/t.co\\/EL3gICOawv\",\"display_url\":\"pic.twitter.com\\/EL3gICOawv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ovie_matt\\/status\\/1554831323415490560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"}}}]},\"760\":{\"media\":[{\"id\":1554830855607951364,\"id_str\":\"1554830855607951364\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"url\":\"https:\\/\\/t.co\\/MWfCcGsFBl\",\"display_url\":\"pic.twitter.com\\/MWfCcGsFBl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554830864189575175\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":{\"media\":[{\"id\":1554825216634675202,\"id_str\":\"1554825216634675202\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"url\":\"https:\\/\\/t.co\\/1GLM8ZiUMW\",\"display_url\":\"pic.twitter.com\\/1GLM8ZiUMW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abubillaal\\/status\\/1554825762682769413\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[270,193],\"duration_millis\":45001,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/376x270\\/dNDV32Xx_DI_JAdF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/1006x720\\/Ajo3bdAgI8WgH3RV.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/502x360\\/ZbeONbVUqM4ThY0Y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/pl\\/OyyGHwEQ9GCW8AyZ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"766\":null,\"767\":null,\"768\":{\"media\":[{\"id\":1554825360847486980,\"id_str\":\"1554825360847486980\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554825418313592840,\"id_str\":\"1554825418313592840\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZeupUcAgJi9J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZeupUcAgJi9J.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":677,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"}}},{\"id\":1554825443135537152,\"id_str\":\"1554825443135537152\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZgLHVQAAxJ_C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZgLHVQAAxJ_C.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554825511334866944,\"id_str\":\"1554825511334866944\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZkJLUcAADFnP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZkJLUcAADFnP.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1132,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1061,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":601,\"resize\":\"fit\"}}}]},\"769\":{\"media\":[{\"id\":1554825494058508289,\"id_str\":\"1554825494058508289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"}}},{\"id\":1554825497372020736,\"id_str\":\"1554825497372020736\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZjVKUUAABLDF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZjVKUUAABLDF.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}},{\"id\":1554825551432495104,\"id_str\":\"1554825551432495104\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZmejVsAAt-Kh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZmejVsAAt-Kh.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":709,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":709,\"resize\":\"fit\"}}},{\"id\":1554825573876187136,\"id_str\":\"1554825573876187136\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZnyKVQAACmW_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZnyKVQAACmW_.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"770\":{\"media\":[{\"id\":1554825262377811968,\"id_str\":\"1554825262377811968\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554825293700878336,\"id_str\":\"1554825293700878336\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZXebVUAAS_hJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZXebVUAAS_hJ.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554825323253878786,\"id_str\":\"1554825323253878786\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZZMhUUAIkf-P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZZMhUUAIkf-P.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554825341511749633,\"id_str\":\"1554825341511749633\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZaQiVUAEopOo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZaQiVUAEopOo.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"771\":{\"media\":[{\"id\":1554825186494427139,\"id_str\":\"1554825186494427139\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554825256203722752,\"id_str\":\"1554825256203722752\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVSvUIAAOd5t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVSvUIAAOd5t.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825262390341632,\"id_str\":\"1554825262390341632\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVpyUcAAK68K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVpyUcAAK68K.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825288944455681,\"id_str\":\"1554825288944455681\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZXMtUEAEFUCD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZXMtUEAEFUCD.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}}]},\"772\":{\"media\":[{\"id\":1554825064314417152,\"id_str\":\"1554825064314417152\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825074569490432,\"id_str\":\"1554825074569490432\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZKuGVsAAtri3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZKuGVsAAtri3.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825080244383749,\"id_str\":\"1554825080244383749\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZLDPVsAUBVMH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZLDPVsAUBVMH.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825086225375239,\"id_str\":\"1554825086225375239\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZLZhUYAcQGDD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZLZhUYAcQGDD.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}}]},\"773\":{\"media\":[{\"id\":1554824969112080385,\"id_str\":\"1554824969112080385\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZElPVUAERZz1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZElPVUAERZz1.jpg\",\"url\":\"https:\\/\\/t.co\\/aTBOgsEADr\",\"display_url\":\"pic.twitter.com\\/aTBOgsEADr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhyWorri\\/status\\/1554825025114345473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1061,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1810,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824969112080386,\"id_str\":\"1554824969112080386\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZElPVUAIgo50.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZElPVUAIgo50.jpg\",\"url\":\"https:\\/\\/t.co\\/aTBOgsEADr\",\"display_url\":\"pic.twitter.com\\/aTBOgsEADr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhyWorri\\/status\\/1554825025114345473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1364,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":799,\"h\":1200,\"resize\":\"fit\"}}}]},\"774\":{\"media\":[{\"id\":1554824914997104643,\"id_str\":\"1554824914997104643\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":527,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824921926184960,\"id_str\":\"1554824921926184960\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZB1dVsAAnUTi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZB1dVsAAnUTi.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":794,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824925453504514,\"id_str\":\"1554824925453504514\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZCCmUUAI0P3C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZCCmUUAI0P3C.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":944,\"h\":1156,\"resize\":\"fit\"},\"small\":{\"w\":555,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":944,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554824981455859712,\"id_str\":\"1554824981455859712\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZFTOUcAAYF3f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZFTOUcAAYF3f.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":769,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":769,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":484,\"h\":680,\"resize\":\"fit\"}}}]},\"775\":{\"media\":[{\"id\":1554824782532661254,\"id_str\":\"1554824782532661254\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554824804129157120,\"id_str\":\"1554824804129157120\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY6-oVsAAviLF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY6-oVsAAviLF.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554824850769735680,\"id_str\":\"1554824850769735680\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY9sYUcAAkReF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY9sYUcAAkReF.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1067,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1067,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1554824877369991169,\"id_str\":\"1554824877369991169\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY_PeUIAEHfDt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY_PeUIAEHfDt.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1038,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":654,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1038,\"h\":1080,\"resize\":\"fit\"}}}]},\"776\":{\"media\":[{\"id\":1554824708050132994,\"id_str\":\"1554824708050132994\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1554824799137849344,\"id_str\":\"1554824799137849344\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY6sCUYAAKDD5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY6sCUYAAKDD5.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1042,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1042,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":656,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824802572984321,\"id_str\":\"1554824802572984321\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY641UYAEeiNj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY641UYAEeiNj.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824849872171016,\"id_str\":\"1554824849872171016\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY9pCUsAgZ5ec.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY9pCUsAgZ5ec.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1231,\"h\":1165,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":644,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1136,\"resize\":\"fit\"}}}]},\"777\":null,\"778\":{\"media\":[{\"id\":1554824580723724289,\"id_str\":\"1554824580723724289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1554824630510108674,\"id_str\":\"1554824630510108674\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYw32VQAIGIwO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYw32VQAIGIwO.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824681982529537,\"id_str\":\"1554824681982529537\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYz3mUEAE4nA0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYz3mUEAE4nA0.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1231,\"h\":1165,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":644,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1136,\"resize\":\"fit\"}}},{\"id\":1554824756091727872,\"id_str\":\"1554824756091727872\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY4LrUsAAtWbE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY4LrUsAAtWbE.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"779\":{\"media\":[{\"id\":1554824485064192000,\"id_str\":\"1554824485064192000\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":615,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"}}},{\"id\":1554824580740444160,\"id_str\":\"1554824580740444160\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYt-cUcAAVWxg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYt-cUcAAVWxg.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1554824658637139971,\"id_str\":\"1554824658637139971\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYygoVsAMrXgH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYygoVsAMrXgH.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824682615975937,\"id_str\":\"1554824682615975937\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYz59VsAEBz1s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYz59VsAEBz1s.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1012,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1012,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":637,\"h\":680,\"resize\":\"fit\"}}}]},\"780\":null,\"781\":{\"media\":[{\"id\":1554824406114832386,\"id_str\":\"1554824406114832386\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824447177084931,\"id_str\":\"1554824447177084931\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYmM4VUAMGoHM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYmM4VUAMGoHM.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824461244805121,\"id_str\":\"1554824461244805121\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYnBSVsAEtwz8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYnBSVsAEtwz8.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824557176844294,\"id_str\":\"1554824557176844294\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYsmqUcAYArG-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYsmqUcAYArG-.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"782\":{\"media\":[{\"id\":1554824310216265728,\"id_str\":\"1554824310216265728\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":667,\"resize\":\"fit\"}}},{\"id\":1554824353753157632,\"id_str\":\"1554824353753157632\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYgw2VUAAHgbD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYgw2VUAAHgbD.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824369213280259,\"id_str\":\"1554824369213280259\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYhqcUEAM2Yu7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYhqcUEAM2Yu7.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":565,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554824387471110146,\"id_str\":\"1554824387471110146\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYiudUcAItEzW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYiudUcAItEzW.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1046,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":659,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1046,\"resize\":\"fit\"}}}]},\"783\":{\"media\":[{\"id\":1554824210907684867,\"id_str\":\"1554824210907684867\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824241073098757,\"id_str\":\"1554824241073098757\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYaNFUEAUL7BF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYaNFUEAUL7BF.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824291157348353,\"id_str\":\"1554824291157348353\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYdHqVEAEFpIm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYdHqVEAEFpIm.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824314163040256,\"id_str\":\"1554824314163040256\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYedXUEAAuTaQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYedXUEAAuTaQ.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"784\":{\"media\":[{\"id\":1554824123146125312,\"id_str\":\"1554824123146125312\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554824181262364677,\"id_str\":\"1554824181262364677\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYWuRUsAU8vID.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYWuRUsAU8vID.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554824227542339584,\"id_str\":\"1554824227542339584\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYZarVEAAqf9Y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYZarVEAAqf9Y.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824262552236035,\"id_str\":\"1554824262552236035\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYbdGVsAM0scF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYbdGVsAM0scF.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":565,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"}}}]},\"785\":{\"media\":[{\"id\":1554824058440626177,\"id_str\":\"1554824058440626177\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}},{\"id\":1554824081819570176,\"id_str\":\"1554824081819570176\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYQ70UEAA3mUT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYQ70UEAA3mUT.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824118838517761,\"id_str\":\"1554824118838517761\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYTFuUYAESmhv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYTFuUYAESmhv.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1160,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":616,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1088,\"resize\":\"fit\"}}},{\"id\":1554824185204994055,\"id_str\":\"1554824185204994055\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYW89UcAcIVZk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYW89UcAcIVZk.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}}]},\"786\":null,\"787\":{\"media\":[{\"id\":1554823196238442499,\"id_str\":\"1554823196238442499\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"url\":\"https:\\/\\/t.co\\/GNZfMrWyoH\",\"display_url\":\"pic.twitter.com\\/GNZfMrWyoH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobinson10\\/status\\/1554823249082605570\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30703,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/pl\\/sxXHllIXxKsrHfby.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/vid\\/640x640\\/nxIDAychlR9l3T7T.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/vid\\/320x320\\/pEYrtNhftndYmuNe.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/vid\\/540x540\\/OycSoKtD3Y01DoNJ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"788\":{\"media\":[{\"id\":1554823128924073984,\"id_str\":\"1554823128924073984\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"url\":\"https:\\/\\/t.co\\/uN0H1vPHWE\",\"display_url\":\"pic.twitter.com\\/uN0H1vPHWE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flyhezix\\/status\\/1554823137191010304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"789\":{\"media\":[{\"id\":1554822967028109313,\"id_str\":\"1554822967028109313\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"url\":\"https:\\/\\/t.co\\/dYbMkB0eWO\",\"display_url\":\"pic.twitter.com\\/dYbMkB0eWO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pearlz_blaq\\/status\\/1554822970660360192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":438,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":625,\"h\":970,\"resize\":\"fit\"},\"large\":{\"w\":625,\"h\":970,\"resize\":\"fit\"}}}]},\"790\":null,\"791\":{\"media\":[{\"id\":1554821460660629504,\"id_str\":\"1554821460660629504\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"url\":\"https:\\/\\/t.co\\/S9yDKiqfdh\",\"display_url\":\"pic.twitter.com\\/S9yDKiqfdh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoorTony\\/status\\/1554822673993068546\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"792\":null,\"793\":null,\"794\":{\"media\":[{\"id\":1554820649977143297,\"id_str\":\"1554820649977143297\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"url\":\"https:\\/\\/t.co\\/PLgY1dIXk6\",\"display_url\":\"pic.twitter.com\\/PLgY1dIXk6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820786933735425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":48732,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/480x852\\/eQfNIx8ufZgm5gGj.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/720x1280\\/ibZsVb5kjnoZtDmJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/pl\\/E7d2s_cLVjnNMnnc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/320x568\\/nP4t4s1nZpf2sKN_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"795\":null,\"796\":{\"media\":[{\"id\":1554820479541596162,\"id_str\":\"1554820479541596162\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"url\":\"https:\\/\\/t.co\\/TaQtXc29sS\",\"display_url\":\"pic.twitter.com\\/TaQtXc29sS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820709485928450\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":48732,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/pl\\/862f9crAq23TjLwj.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/320x568\\/Nf_s9EtWLFLoDpXG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/720x1280\\/4zmliLuNsuOeLjES.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/480x852\\/BEmNc3qlKMU_RLbY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"797\":{\"media\":[{\"id\":1554820524752179200,\"id_str\":\"1554820524752179200\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"url\":\"https:\\/\\/t.co\\/b6Klbwjbg0\",\"display_url\":\"pic.twitter.com\\/b6Klbwjbg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554820531186286592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":530,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":530,\"resize\":\"fit\"}}}]},\"798\":{\"media\":[{\"id\":1554820383890497540,\"id_str\":\"1554820383890497540\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"url\":\"https:\\/\\/t.co\\/YnkSN8AI7d\",\"display_url\":\"pic.twitter.com\\/YnkSN8AI7d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BelloIlias\\/status\\/1554820392237248512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"799\":{\"media\":[{\"id\":1554820340127338497,\"id_str\":\"1554820340127338497\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"url\":\"https:\\/\\/t.co\\/zKU1MjgFni\",\"display_url\":\"pic.twitter.com\\/zKU1MjgFni\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1554820342190948353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"large\":{\"w\":616,\"h\":498,\"resize\":\"fit\"}}}]},\"800\":null,\"801\":null,\"802\":{\"media\":[{\"id\":1554816408265039873,\"id_str\":\"1554816408265039873\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554816418671206402,\"id_str\":\"1554816418671206402\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRS4XXoAIJ8i7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRS4XXoAIJ8i7.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554816423213645826,\"id_str\":\"1554816423213645826\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRTJSXwAIKRlv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRTJSXwAIKRlv.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554816427063902208,\"id_str\":\"1554816427063902208\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRTXoWAAAiSki.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRTXoWAAAiSki.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"803\":{\"media\":[{\"id\":1554816265025462273,\"id_str\":\"1554816265025462273\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"url\":\"https:\\/\\/t.co\\/sYSZHcYIuU\",\"display_url\":\"pic.twitter.com\\/sYSZHcYIuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554816276471681024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"804\":null,\"805\":{\"media\":[{\"id\":1554815484083716096,\"id_str\":\"1554815484083716096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"url\":\"https:\\/\\/t.co\\/2hrwFNjoTy\",\"display_url\":\"pic.twitter.com\\/2hrwFNjoTy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554815491369324544\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"806\":{\"media\":[{\"id\":1554814985557123072,\"id_str\":\"1554814985557123072\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"url\":\"https:\\/\\/t.co\\/gibonV5QKp\",\"display_url\":\"pic.twitter.com\\/gibonV5QKp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554815003668135939\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"807\":{\"media\":[{\"id\":1554814611970560000,\"id_str\":\"1554814611970560000\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"url\":\"https:\\/\\/t.co\\/V1HrxtBzz9\",\"display_url\":\"pic.twitter.com\\/V1HrxtBzz9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Obi_ajulu\\/status\\/1554814620853993475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"808\":{\"media\":[{\"id\":1554814493322088450,\"id_str\":\"1554814493322088450\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"url\":\"https:\\/\\/t.co\\/hXgO9IeAYb\",\"display_url\":\"pic.twitter.com\\/hXgO9IeAYb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554814505036693506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}}}]},\"809\":{\"media\":[{\"id\":1554813734006161408,\"id_str\":\"1554813734006161408\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"url\":\"https:\\/\\/t.co\\/JioBYqDFhh\",\"display_url\":\"pic.twitter.com\\/JioBYqDFhh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Naijamatterblog\\/status\\/1554813907788877827\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":88788,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/pl\\/1Bnr26kr7PtweBKl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/vid\\/320x426\\/LcjX47LOTAq9IVEu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/vid\\/480x640\\/Qe4ItBrKi_KFAM56.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/vid\\/720x960\\/MG8WOGv0O2tUnaiV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"810\":{\"media\":[{\"id\":1554813716616691714,\"id_str\":\"1554813716616691714\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"url\":\"https:\\/\\/t.co\\/2Shx63fCq9\",\"display_url\":\"pic.twitter.com\\/2Shx63fCq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554813806672596994\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,601],\"duration_millis\":29333,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/vid\\/640x1202\\/OIAVDXbvW9Y5Y-BA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/pl\\/sPsIRBz9wnwHK5Nk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/vid\\/480x900\\/7XoHTjyVwg3IK4rC.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/vid\\/320x600\\/ehmIkwhPP_0OOUSb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"811\":{\"media\":[{\"id\":1554813660085755907,\"id_str\":\"1554813660085755907\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"url\":\"https:\\/\\/t.co\\/estdPqJOQ4\",\"display_url\":\"pic.twitter.com\\/estdPqJOQ4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aprokorepublic\\/status\\/1554813725508571137\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":856,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"medium\":{\"w\":856,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[107,60],\"duration_millis\":39032,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/vid\\/856x480\\/w8Pwxvag97ivksKn.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/vid\\/642x360\\/zeISTsnDb3BFkewF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/vid\\/480x270\\/303V_TCywWZDJw0v.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/pl\\/6QpdcllibxtCU6wT.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"812\":{\"media\":[{\"id\":1554813486064189442,\"id_str\":\"1554813486064189442\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"url\":\"https:\\/\\/t.co\\/n0O3V41onu\",\"display_url\":\"pic.twitter.com\\/n0O3V41onu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554813586194792448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"813\":{\"media\":[{\"id\":1554813279620440064,\"id_str\":\"1554813279620440064\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554813290718584834,\"id_str\":\"1554813290718584834\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcz1WYAIMEB0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcz1WYAIMEB0.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"814\":{\"media\":[{\"id\":1554813156626677760,\"id_str\":\"1554813156626677760\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":514,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554813163618672640,\"id_str\":\"1554813163618672640\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVaWXoAAkxbX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVaWXoAAkxbX.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554813171738857474,\"id_str\":\"1554813171738857474\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOV4mX0AI_hjg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOV4mX0AI_hjg.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":898,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":898,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"}}}]},\"815\":{\"media\":[{\"id\":1554812894998663169,\"id_str\":\"1554812894998663169\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"url\":\"https:\\/\\/t.co\\/8b4mXYiRXi\",\"display_url\":\"pic.twitter.com\\/8b4mXYiRXi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812936102838272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":473,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"816\":{\"media\":[{\"id\":1554812860714418178,\"id_str\":\"1554812860714418178\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"url\":\"https:\\/\\/t.co\\/eImPrKR2Vs\",\"display_url\":\"pic.twitter.com\\/eImPrKR2Vs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequesttimes\\/status\\/1554812868356349954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"817\":{\"media\":[{\"id\":1554812796168294401,\"id_str\":\"1554812796168294401\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"url\":\"https:\\/\\/t.co\\/LfYSxPZruW\",\"display_url\":\"pic.twitter.com\\/LfYSxPZruW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BibleWonderLand\\/status\\/1554812801448902656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"818\":{\"media\":[{\"id\":1554812704623366144,\"id_str\":\"1554812704623366144\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"url\":\"https:\\/\\/t.co\\/BWJR5IVhyG\",\"display_url\":\"pic.twitter.com\\/BWJR5IVhyG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obi_Jules\\/status\\/1554812726647611393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"819\":{\"media\":[{\"id\":1554812325546303490,\"id_str\":\"1554812325546303490\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"url\":\"https:\\/\\/t.co\\/8wVAc3JTrI\",\"display_url\":\"pic.twitter.com\\/8wVAc3JTrI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812455939092480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":399,\"resize\":\"fit\"}}}]},\"820\":{\"media\":[{\"id\":1554812082058678272,\"id_str\":\"1554812082058678272\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"url\":\"https:\\/\\/t.co\\/aFCQiipXKe\",\"display_url\":\"pic.twitter.com\\/aFCQiipXKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812098168754176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"821\":null,\"822\":{\"media\":[{\"id\":1554811869684187136,\"id_str\":\"1554811869684187136\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"url\":\"https:\\/\\/t.co\\/5gYFCbiciT\",\"display_url\":\"pic.twitter.com\\/5gYFCbiciT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554811872351866882\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"}}}]},\"823\":null,\"824\":{\"media\":[{\"id\":1554810869346979841,\"id_str\":\"1554810869346979841\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"url\":\"https:\\/\\/t.co\\/MTTKUFXeL5\",\"display_url\":\"pic.twitter.com\\/MTTKUFXeL5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldmyneTV\\/status\\/1554810881116078080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":341,\"resize\":\"fit\"}}},{\"id\":1554810869309120512,\"id_str\":\"1554810869309120512\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPMP3YWIAAK5Jr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPMP3YWIAAK5Jr.jpg\",\"url\":\"https:\\/\\/t.co\\/MTTKUFXeL5\",\"display_url\":\"pic.twitter.com\\/MTTKUFXeL5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldmyneTV\\/status\\/1554810881116078080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"825\":{\"media\":[{\"id\":1554809250807005184,\"id_str\":\"1554809250807005184\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"url\":\"https:\\/\\/t.co\\/dSvzH9zKm6\",\"display_url\":\"pic.twitter.com\\/dSvzH9zKm6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AFRHNig\\/status\\/1554810633786466306\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":29226,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/vid\\/960x540\\/zVrGGcAELd4aYydF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/vid\\/480x270\\/SNC3V8fSmH6Pk6GJ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/vid\\/640x360\\/BPkIU_1TSNlrYNSR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/pl\\/eaGfqS1s-XMImxZ-.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"826\":null,\"827\":null,\"828\":{\"media\":[{\"id\":1554807689947095040,\"id_str\":\"1554807689947095040\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"url\":\"https:\\/\\/t.co\\/c4YyJ55VCk\",\"display_url\":\"pic.twitter.com\\/c4YyJ55VCk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamdannylaurels\\/status\\/1554807692920766467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"829\":{\"media\":[{\"id\":1554807508396539907,\"id_str\":\"1554807508396539907\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"url\":\"https:\\/\\/t.co\\/ON0Rt9DZRR\",\"display_url\":\"pic.twitter.com\\/ON0Rt9DZRR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554807550247313408\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":9330,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807508396539907\\/pu\\/vid\\/448x848\\/RrAimtdPcFqsOWJE.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807508396539907\\/pu\\/pl\\/dsAotFhvaTNEzzjH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807508396539907\\/pu\\/vid\\/320x604\\/be4seH6Lhp5qg0gZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"830\":{\"media\":[{\"id\":1554807453371580416,\"id_str\":\"1554807453371580416\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"url\":\"https:\\/\\/t.co\\/gEEUK9uuNT\",\"display_url\":\"pic.twitter.com\\/gEEUK9uuNT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oluwanonieefa\\/status\\/1554807534371966981\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":10866,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807453371580416\\/pu\\/vid\\/320x564\\/aw8x8m3XmDbKDf4g.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807453371580416\\/pu\\/vid\\/480x848\\/WuljE3NRl_B-OLuT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807453371580416\\/pu\\/pl\\/rEd_uSsYFgi1dFYb.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"831\":null,\"832\":{\"media\":[{\"id\":1554806476836831233,\"id_str\":\"1554806476836831233\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"url\":\"https:\\/\\/t.co\\/VHF846Ucn9\",\"display_url\":\"pic.twitter.com\\/VHF846Ucn9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554806541835968512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"833\":{\"media\":[{\"id\":1554806422696873985,\"id_str\":\"1554806422696873985\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"url\":\"https:\\/\\/t.co\\/Rh4GEKiBzb\",\"display_url\":\"pic.twitter.com\\/Rh4GEKiBzb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_Gpphilipson\\/status\\/1554806450366681088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"834\":{\"media\":[{\"id\":1554806097223028736,\"id_str\":\"1554806097223028736\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"url\":\"https:\\/\\/t.co\\/zhcpeyoRtP\",\"display_url\":\"pic.twitter.com\\/zhcpeyoRtP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554806099894747138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"835\":null,\"836\":{\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11580,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/320x568\\/ZOQ-_UIIaGkU9o8N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/720x1280\\/8tBG1Zpu4V46u-8y.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/480x852\\/Lk8d_qAHDxCa5cZv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/pl\\/vIu2QsjZeRzHb8P0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"837\":{\"media\":[{\"id\":1554804189703847939,\"id_str\":\"1554804189703847939\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"url\":\"https:\\/\\/t.co\\/DbuVmtLuX0\",\"display_url\":\"pic.twitter.com\\/DbuVmtLuX0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1880Tgold\\/status\\/1554804475784740865\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44977,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/vid\\/320x568\\/XBp1CxDKJM-c8VDt.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/pl\\/qAUBVkY3xDeaxRj6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/vid\\/480x852\\/Vs8D5k6ehyscdGrv.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/vid\\/720x1280\\/aWcIZqyeBnMX7eQf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"838\":{\"media\":[{\"id\":1554804166379405312,\"id_str\":\"1554804166379405312\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"url\":\"https:\\/\\/t.co\\/DLkbtWYTnR\",\"display_url\":\"pic.twitter.com\\/DLkbtWYTnR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fagman01\\/status\\/1554804208410497028\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":64367,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804166379405312\\/pu\\/pl\\/vViQx9Z7fxEq9n8a.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804166379405312\\/pu\\/vid\\/480x270\\/MQE1_1rUnzNIKte1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"839\":null,\"840\":{\"media\":[{\"id\":1554801684659986434,\"id_str\":\"1554801684659986434\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"url\":\"https:\\/\\/t.co\\/9RTAmNicmh\",\"display_url\":\"pic.twitter.com\\/9RTAmNicmh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Slimtalker2\\/status\\/1554801857461207042\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":35100,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/720x1280\\/EVyzzYJFPmhZifBW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/pl\\/XQQbrgiuZJylLfgA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/320x568\\/l-VxUO56r9GkvvIB.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/480x852\\/SOZVc8ElWEq-woMF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"841\":{\"media\":[{\"id\":1554801195738439681,\"id_str\":\"1554801195738439681\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"url\":\"https:\\/\\/t.co\\/o6BiiEBYiS\",\"display_url\":\"pic.twitter.com\\/o6BiiEBYiS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554801255620530179\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":14366,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/640x360\\/R3CKMIfptNneM9QP.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/1280x720\\/h7GyWvQQihXvSB2-.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/480x270\\/kpB_plGZ8xzrhxXu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/pl\\/IZJgEXeo6AMVmit1.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"842\":{\"media\":[{\"id\":1554800794024697857,\"id_str\":\"1554800794024697857\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"url\":\"https:\\/\\/t.co\\/icrt1AKjYF\",\"display_url\":\"pic.twitter.com\\/icrt1AKjYF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vintagebraidwig\\/status\\/1554800801729724418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"}}}]},\"843\":{\"media\":[{\"id\":1554800216875966466,\"id_str\":\"1554800216875966466\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"url\":\"https:\\/\\/t.co\\/UZZgqgILDK\",\"display_url\":\"pic.twitter.com\\/UZZgqgILDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554800267329159170\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":20033,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/480x270\\/WMZcf3scSBoL46Q6.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/640x360\\/qThLdgVoaQNHtPAx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/1280x720\\/r3BwBLho7L-dj3Mz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/pl\\/WiS4PqMlx0SyKXQe.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"844\":{\"media\":[{\"id\":1554799794090016770,\"id_str\":\"1554799794090016770\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"url\":\"https:\\/\\/t.co\\/EW1947qUVk\",\"display_url\":\"pic.twitter.com\\/EW1947qUVk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gerard33720673\\/status\\/1554799845730390018\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":324,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[10,21],\"duration_millis\":23265,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554799794090016770\\/pu\\/vid\\/320x672\\/hWB0odTVY46kwgbx.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554799794090016770\\/pu\\/vid\\/480x1008\\/lvPkY8MQGE3ob6c9.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554799794090016770\\/pu\\/pl\\/GhOR96Q84aUYxBeI.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"845\":{\"media\":[{\"id\":1554798709073911809,\"id_str\":\"1554798709073911809\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"url\":\"https:\\/\\/t.co\\/LkMKDvqJve\",\"display_url\":\"pic.twitter.com\\/LkMKDvqJve\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1554798804939206656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"846\":{\"media\":[{\"id\":1554797955626024960,\"id_str\":\"1554797955626024960\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cGChk2NcVy\",\"display_url\":\"pic.twitter.com\\/cGChk2NcVy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554798185935261696\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":429,\"resize\":\"fit\"},\"large\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[571,360],\"duration_millis\":42780,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/428x270\\/-eniFpbHke4n_cy0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/1142x720\\/GgGpgjKFuObloY2n.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/570x360\\/7l42HpQMQqHkDD5f.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/pl\\/krZci46oqBKcEgeh.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"847\":null,\"848\":{\"media\":[{\"id\":1554797618454302743,\"id_str\":\"1554797618454302743\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554797643758538753,\"id_str\":\"1554797643758538753\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAOCXXkAEWbv1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAOCXXkAEWbv1.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"849\":{\"media\":[{\"id\":1554796946602299393,\"id_str\":\"1554796946602299393\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"url\":\"https:\\/\\/t.co\\/nSVh0YDIcv\",\"display_url\":\"pic.twitter.com\\/nSVh0YDIcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554796964734189569\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"850\":null,\"851\":{\"media\":[{\"id\":1554796541466009601,\"id_str\":\"1554796541466009601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554796541474398210,\"id_str\":\"1554796541474398210\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N4CWYAI7mNo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N4CWYAI7mNo.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554796541709262849,\"id_str\":\"1554796541709262849\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAElYWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAElYWF.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554796541709262848,\"id_str\":\"1554796541709262848\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAAdQT2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAAdQT2.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"852\":{\"media\":[{\"id\":1554796177798975488,\"id_str\":\"1554796177798975488\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"url\":\"https:\\/\\/t.co\\/rfTY04O9Pw\",\"display_url\":\"pic.twitter.com\\/rfTY04O9Pw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554796314440916992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59611,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/pl\\/rZakeotrYlqkC7yf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/480x852\\/gCpsFttjBpA-Wk1A.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/320x568\\/uM_fvZNwCW5R8hst.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/720x1280\\/C-_T38qhviwjpsKQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"853\":{\"media\":[{\"id\":1554795574276378624,\"id_str\":\"1554795574276378624\",\"indices\":[42,65],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"url\":\"https:\\/\\/t.co\\/pQkRLWUnmy\",\"display_url\":\"pic.twitter.com\\/pQkRLWUnmy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lumy01609368\\/status\\/1554796164574285829\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":33700,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/vid\\/480x852\\/7D1bdV_UcKmqtkxF.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/vid\\/320x568\\/QZH5_ciSd7kXtShH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/pl\\/IZ0Jbcf0mzFillLn.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/vid\\/576x1024\\/cjhEJln-PuOVMJ85.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"854\":{\"media\":[{\"id\":1554795275495133184,\"id_str\":\"1554795275495133184\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554795290355503105,\"id_str\":\"1554795290355503105\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-FDQXEAE2Zru.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-FDQXEAE2Zru.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554795304175734785,\"id_str\":\"1554795304175734785\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-F2vXEAEv25h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-F2vXEAEv25h.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"855\":{\"media\":[{\"id\":1554794709524090881,\"id_str\":\"1554794709524090881\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8La4uS2TFA\",\"display_url\":\"pic.twitter.com\\/8La4uS2TFA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanul_max\\/status\\/1554794720462766080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1031,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1445,\"resize\":\"fit\"},\"small\":{\"w\":584,\"h\":680,\"resize\":\"fit\"}}}]},\"856\":null,\"857\":{\"media\":[{\"id\":1554793885666344960,\"id_str\":\"1554793885666344960\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554793901256491009,\"id_str\":\"1554793901256491009\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO80MdWQAESQZ2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO80MdWQAESQZ2.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554793915160698881,\"id_str\":\"1554793915160698881\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO81AQXoAEt5yQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO81AQXoAEt5yQ.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}},{\"id\":1554793925273083905,\"id_str\":\"1554793925273083905\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO81l7WYAEdTOi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO81l7WYAEdTOi.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"858\":{\"media\":[{\"id\":1554793397369638913,\"id_str\":\"1554793397369638913\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"url\":\"https:\\/\\/t.co\\/S3lEOp6zY1\",\"display_url\":\"pic.twitter.com\\/S3lEOp6zY1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1554793400167272450\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"}}}]},\"859\":{\"media\":[{\"id\":1554792433883521025,\"id_str\":\"1554792433883521025\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554792433883521025\\/pu\\/img\\/1D0wxC4h62Wyolul.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554792433883521025\\/pu\\/img\\/1D0wxC4h62Wyolul.jpg\",\"url\":\"https:\\/\\/t.co\\/9AL6ZpIaGF\",\"display_url\":\"pic.twitter.com\\/9AL6ZpIaGF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554793282881847297\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":42027,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554792433883521025\\/pu\\/pl\\/_WN4j6C8BHNikRss.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554792433883521025\\/pu\\/vid\\/320x568\\/jTsKRYlUqJKYAvzp.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554792433883521025\\/pu\\/vid\\/720x1280\\/-p6zNo3yEdNRP_aC.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554792433883521025\\/pu\\/vid\\/480x852\\/B8Y1XzpCmSe0QjvO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"860\":{\"media\":[{\"id\":1554792927439855616,\"id_str\":\"1554792927439855616\",\"indices\":[294,317],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"url\":\"https:\\/\\/t.co\\/Vz160FKf2U\",\"display_url\":\"pic.twitter.com\\/Vz160FKf2U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554792947694112770\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"}}}]},\"861\":null,\"862\":null,\"863\":{\"media\":[{\"id\":1554790943148199937,\"id_str\":\"1554790943148199937\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554790953642299394,\"id_str\":\"1554790953642299394\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6InvXEAIiXKs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6InvXEAIiXKs.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554790957198999552,\"id_str\":\"1554790957198999552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6I0_WAAAybbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6I0_WAAAybbU.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"}}},{\"id\":1554790961238228993,\"id_str\":\"1554790961238228993\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6JECXwAEDXT0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6JECXwAEDXT0.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"}}}]},\"864\":{\"media\":[{\"id\":1554790640617226240,\"id_str\":\"1554790640617226240\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640604545025,\"id_str\":\"1554790640604545025\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlWAAEXSAQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlWAAEXSAQ.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640604647424,\"id_str\":\"1554790640604647424\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlXkAAZr8W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlXkAAZr8W.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640591986688,\"id_str\":\"1554790640591986688\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZiWYAAp6FB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZiWYAAp6FB.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1797,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"}}}]},\"865\":{\"media\":[{\"id\":1554790528708902913,\"id_str\":\"1554790528708902913\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"url\":\"https:\\/\\/t.co\\/zsA7jZ4Y9U\",\"display_url\":\"pic.twitter.com\\/zsA7jZ4Y9U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hify_2\\/status\\/1554790540369174529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":{\"media\":[{\"id\":1554789348444356610,\"id_str\":\"1554789348444356610\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"url\":\"https:\\/\\/t.co\\/mYK0GhyoiC\",\"display_url\":\"pic.twitter.com\\/mYK0GhyoiC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/breeze_okoye\\/status\\/1554789438236069888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":49340,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554789348444356610\\/pu\\/pl\\/8dCtusDFNm0RxLO8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554789348444356610\\/pu\\/vid\\/320x564\\/ccGEosfJCC7G_5qu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554789348444356610\\/pu\\/vid\\/480x848\\/av6tfmQfxRz8wHOM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"871\":null,\"872\":{\"media\":[{\"id\":1554788871627587585,\"id_str\":\"1554788871627587585\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"url\":\"https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"display_url\":\"pic.twitter.com\\/ZRsEBIH9Rb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554788988187283456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1163,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":659,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1984,\"h\":2048,\"resize\":\"fit\"}}}]},\"873\":null,\"874\":{\"media\":[{\"id\":1554788201600016387,\"id_str\":\"1554788201600016387\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"url\":\"https:\\/\\/t.co\\/qyHhxvm1w1\",\"display_url\":\"pic.twitter.com\\/qyHhxvm1w1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554788274752847874\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/320x568\\/bRWcE6WFZLHQDWRF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/pl\\/5Inde-7IVOC-dnHd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/576x1024\\/ACNK7S8Qbyw4-sqe.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/480x852\\/RYAcIjwcNioVTK7w.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"875\":{\"media\":[{\"id\":1554788030208249862,\"id_str\":\"1554788030208249862\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"url\":\"https:\\/\\/t.co\\/6Sm8j0zWgv\",\"display_url\":\"pic.twitter.com\\/6Sm8j0zWgv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ugondabai\\/status\\/1554788088794292230\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6833,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/vid\\/480x852\\/u8k7q6IKlEl4C-AK.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/vid\\/720x1280\\/BakGNm1Eiof7MxP_.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/pl\\/c5WB_tQzliuyPmCw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/vid\\/320x568\\/YFnZRxBfKygbGIHW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"876\":{\"media\":[{\"id\":1554786277551226881,\"id_str\":\"1554786277551226881\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"url\":\"https:\\/\\/t.co\\/LEK6lTXB14\",\"display_url\":\"pic.twitter.com\\/LEK6lTXB14\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554787860460494848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"877\":null,\"878\":null,\"879\":null,\"880\":{\"media\":[{\"id\":1554786935746560001,\"id_str\":\"1554786935746560001\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"url\":\"https:\\/\\/t.co\\/XnWs6XKBaB\",\"display_url\":\"pic.twitter.com\\/XnWs6XKBaB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gifshizzle\\/status\\/1554786948564353026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"small\":{\"w\":592,\"h\":680,\"resize\":\"fit\"}}}]},\"881\":null,\"882\":{\"media\":[{\"id\":1554785710649090048,\"id_str\":\"1554785710649090048\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"url\":\"https:\\/\\/t.co\\/Rb6M4G9bfV\",\"display_url\":\"pic.twitter.com\\/Rb6M4G9bfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tinubufrontier\\/status\\/1554785715841646592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"883\":null,\"884\":{\"media\":[{\"id\":1554785099077517314,\"id_str\":\"1554785099077517314\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"url\":\"https:\\/\\/t.co\\/2VAX1kKY7q\",\"display_url\":\"pic.twitter.com\\/2VAX1kKY7q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BlackdiamondBLD\\/status\\/1554785109202665476\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":433,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1241,\"h\":1949,\"resize\":\"fit\"}}}]},\"885\":{\"media\":[{\"id\":1554784568976211977,\"id_str\":\"1554784568976211977\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"url\":\"https:\\/\\/t.co\\/uMhwIVcM6q\",\"display_url\":\"pic.twitter.com\\/uMhwIVcM6q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lastborn_jess\\/status\\/1554784847402598401\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":400,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":45000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554784568976211977\\/pu\\/pl\\/xI4WVMS2yj_a2Z3A.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554784568976211977\\/pu\\/vid\\/320x400\\/GJgPjqIp5VtoFFr9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"886\":{\"media\":[{\"id\":1554784146966421507,\"id_str\":\"1554784146966421507\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"url\":\"https:\\/\\/t.co\\/E9xunsffM1\",\"display_url\":\"pic.twitter.com\\/E9xunsffM1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1554784157557051392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"887\":{\"media\":[{\"id\":1554782414433558529,\"id_str\":\"1554782414433558529\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554782415100469251,\"id_str\":\"1554782415100469251\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXnMWYAMvVDn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXnMWYAMvVDn.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554782415280914433,\"id_str\":\"1554782415280914433\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXn3XwAEcogG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXn3XwAEcogG.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"888\":{\"media\":[{\"id\":1554783590306701312,\"id_str\":\"1554783590306701312\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"url\":\"https:\\/\\/t.co\\/ncKzoU40Ie\",\"display_url\":\"pic.twitter.com\\/ncKzoU40Ie\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Uma_zum\\/status\\/1554783617787875334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":703,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1001,\"h\":1709,\"resize\":\"fit\"},\"small\":{\"w\":398,\"h\":680,\"resize\":\"fit\"}}}]},\"889\":null,\"890\":{\"media\":[{\"id\":1554783301650587649,\"id_str\":\"1554783301650587649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"url\":\"https:\\/\\/t.co\\/Flwl4VS17Y\",\"display_url\":\"pic.twitter.com\\/Flwl4VS17Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Priceless002\\/status\\/1554783305131753472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":622,\"resize\":\"fit\"}}}]},\"891\":{\"media\":[{\"id\":1554782545367240707,\"id_str\":\"1554782545367240707\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"url\":\"https:\\/\\/t.co\\/5H5czNmAdA\",\"display_url\":\"pic.twitter.com\\/5H5czNmAdA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StEvIe_Alo\\/status\\/1554782552447139840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"892\":{\"media\":[{\"id\":1554782302357667842,\"id_str\":\"1554782302357667842\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"url\":\"https:\\/\\/t.co\\/OBs0ZqYaLT\",\"display_url\":\"pic.twitter.com\\/OBs0ZqYaLT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554782489037742083\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":29866,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782302357667842\\/pu\\/vid\\/352x640\\/eP2Kg1NVlLmpING-.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782302357667842\\/pu\\/vid\\/320x580\\/NQnhrLvumpIT6UHW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782302357667842\\/pu\\/pl\\/HDuaZISmktSVnu7M.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"893\":{\"media\":[{\"id\":1554782092583641088,\"id_str\":\"1554782092583641088\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"url\":\"https:\\/\\/t.co\\/UMTv580EMA\",\"display_url\":\"pic.twitter.com\\/UMTv580EMA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554782100057899013\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":514,\"resize\":\"fit\"}}}]},\"894\":null,\"895\":{\"media\":[{\"id\":1554781809900195840,\"id_str\":\"1554781809900195840\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"url\":\"https:\\/\\/t.co\\/VgI8iwpoFf\",\"display_url\":\"pic.twitter.com\\/VgI8iwpoFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1554782000061583360\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45025,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/vid\\/480x852\\/-aIeimXlqGE0_C2L.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/pl\\/FAjozBarIZ_dtJ-W.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/vid\\/720x1280\\/US6hvoJ4RRcehHh2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/vid\\/320x568\\/bnbbT2mAuG040Msd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"896\":{\"media\":[{\"id\":1554778511885451265,\"id_str\":\"1554778511885451265\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOu0alXwAEjzL3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOu0alXwAEjzL3.jpg\",\"url\":\"https:\\/\\/t.co\\/aY5dPHwbQl\",\"display_url\":\"pic.twitter.com\\/aY5dPHwbQl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554781623891046400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"897\":{\"media\":[{\"id\":1554780632630403075,\"id_str\":\"1554780632630403075\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"url\":\"https:\\/\\/t.co\\/MrqMUbG8P6\",\"display_url\":\"pic.twitter.com\\/MrqMUbG8P6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tipcy_Jaej\\/status\\/1554781577946742785\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":333,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":626,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":587,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[313,640],\"duration_millis\":73866,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/626x1280\\/zlNMyHVsx9byXhhK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/pl\\/jFg0DwN-qHUaSwpk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/480x980\\/nqj1rAmBAljIF09M.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/320x654\\/G5869mcMyirKt9BT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"898\":null,\"899\":null,\"900\":{\"media\":[{\"id\":1554780148741939201,\"id_str\":\"1554780148741939201\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"url\":\"https:\\/\\/t.co\\/f2CdRuT9tm\",\"display_url\":\"pic.twitter.com\\/f2CdRuT9tm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Richmanonuche1\\/status\\/1554780161714917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":2048,\"resize\":\"fit\"}}}]},\"901\":{\"media\":[{\"id\":1554779811347939329,\"id_str\":\"1554779811347939329\",\"indices\":[40,63],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"url\":\"https:\\/\\/t.co\\/EhISr3PULD\",\"display_url\":\"pic.twitter.com\\/EhISr3PULD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1554779819296137217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1494,\"resize\":\"fit\"},\"medium\":{\"w\":904,\"h\":1200,\"resize\":\"fit\"}}}]},\"902\":null,\"903\":{\"media\":[{\"id\":1554777905548378112,\"id_str\":\"1554777905548378112\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"url\":\"https:\\/\\/t.co\\/P62lLRP3fo\",\"display_url\":\"pic.twitter.com\\/P62lLRP3fo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itnewsnigeria1\\/status\\/1554778707788795906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"large\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":514,\"resize\":\"fit\"}}}]},\"904\":{\"media\":[{\"id\":1554778637186072577,\"id_str\":\"1554778637186072577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"url\":\"https:\\/\\/t.co\\/HMeHrLovHg\",\"display_url\":\"pic.twitter.com\\/HMeHrLovHg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554778649164976129\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"905\":null,\"906\":{\"media\":[{\"id\":1554778202651910145,\"id_str\":\"1554778202651910145\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"url\":\"https:\\/\\/t.co\\/EiH8c1kCf0\",\"display_url\":\"pic.twitter.com\\/EiH8c1kCf0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778267999240193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"907\":{\"media\":[{\"id\":1554777988721410050,\"id_str\":\"1554777988721410050\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"url\":\"https:\\/\\/t.co\\/xCMNWCnUTt\",\"display_url\":\"pic.twitter.com\\/xCMNWCnUTt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778141675196417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"908\":{\"media\":[{\"id\":1554777735389761541,\"id_str\":\"1554777735389761541\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"url\":\"https:\\/\\/t.co\\/g2fU0tPcr9\",\"display_url\":\"pic.twitter.com\\/g2fU0tPcr9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778138995040256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"909\":{\"media\":[{\"id\":1554777988033613824,\"id_str\":\"1554777988033613824\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"url\":\"https:\\/\\/t.co\\/aBCGFemwUN\",\"display_url\":\"pic.twitter.com\\/aBCGFemwUN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778135379562496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"910\":{\"media\":[{\"id\":1554778096087310337,\"id_str\":\"1554778096087310337\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"url\":\"https:\\/\\/t.co\\/7Bz4WI63Tr\",\"display_url\":\"pic.twitter.com\\/7Bz4WI63Tr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TAG_authorised\\/status\\/1554778101862879242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":963,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":903,\"h\":1200,\"resize\":\"fit\"}}}]},\"911\":{\"media\":[{\"id\":1554777583732105217,\"id_str\":\"1554777583732105217\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"url\":\"https:\\/\\/t.co\\/BH4bmjuQyh\",\"display_url\":\"pic.twitter.com\\/BH4bmjuQyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778051082436608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"912\":{\"media\":[{\"id\":1554777430971351040,\"id_str\":\"1554777430971351040\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"url\":\"https:\\/\\/t.co\\/a4BmMkUray\",\"display_url\":\"pic.twitter.com\\/a4BmMkUray\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LukeKyauta\\/status\\/1554777567802040321\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[45,68],\"duration_millis\":59412,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/720x1088\\/C2XLQOhx1zlPRRnk.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/320x482\\/m3valIWcxQS9Bas3.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/480x724\\/BBKQWCeFX-h8Yi2c.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/pl\\/21UVrKTse9OytZI0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"913\":{\"media\":[{\"id\":1554776975105040384,\"id_str\":\"1554776975105040384\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOta9oXoAAwbv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOta9oXoAAwbv9.jpg\",\"url\":\"https:\\/\\/t.co\\/hmoegiq9xp\",\"display_url\":\"pic.twitter.com\\/hmoegiq9xp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554777563842633728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"914\":{\"media\":[{\"id\":1554776088911437824,\"id_str\":\"1554776088911437824\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"url\":\"https:\\/\\/t.co\\/p3ARF0hJXT\",\"display_url\":\"pic.twitter.com\\/p3ARF0hJXT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/12_beatz\\/status\\/1554777432208588801\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59983,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/vid\\/720x1280\\/0SAQmFQShw4ibIHs.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/vid\\/480x852\\/zuBfHiBg2mHWHSli.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/pl\\/UtgHCHjpZz1-Q1Sw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/vid\\/320x568\\/zSIHiA9xEKlx4Zlq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"915\":{\"media\":[{\"id\":1554777348091908096,\"id_str\":\"1554777348091908096\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"url\":\"https:\\/\\/t.co\\/oihYETkxg9\",\"display_url\":\"pic.twitter.com\\/oihYETkxg9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/daniel_orakwue\\/status\\/1554777354395951105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":575,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":609,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":609,\"resize\":\"fit\"}}}]},\"916\":null,\"917\":{\"media\":[{\"id\":1554776655788490753,\"id_str\":\"1554776655788490753\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776655788490753\\/pu\\/img\\/BmT8lOLqJe2GdUQi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776655788490753\\/pu\\/img\\/BmT8lOLqJe2GdUQi.jpg\",\"url\":\"https:\\/\\/t.co\\/VH50Y4pAYn\",\"display_url\":\"pic.twitter.com\\/VH50Y4pAYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554777235554435072\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[288,541],\"duration_millis\":31577,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776655788490753\\/pu\\/pl\\/ezVB7Ytv5Wtl_FmN.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776655788490753\\/pu\\/vid\\/320x600\\/54siYvn3n4QoD7mI.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776655788490753\\/pu\\/vid\\/576x1082\\/p72Msq8ieAYOAAU9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776655788490753\\/pu\\/vid\\/480x900\\/tc81xQFTdDrrAU9d.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"918\":{\"media\":[{\"id\":1554776151024877573,\"id_str\":\"1554776151024877573\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"url\":\"https:\\/\\/t.co\\/9wplK02TX4\",\"display_url\":\"pic.twitter.com\\/9wplK02TX4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amanda_malls\\/status\\/1554776611374989313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"919\":{\"media\":[{\"id\":1554776490138550272,\"id_str\":\"1554776490138550272\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"url\":\"https:\\/\\/t.co\\/GoCuemQe8s\",\"display_url\":\"pic.twitter.com\\/GoCuemQe8s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sucdri\\/status\\/1554776497801629696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"920\":null,\"921\":{\"media\":[{\"id\":1554775383412703232,\"id_str\":\"1554775383412703232\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"url\":\"https:\\/\\/t.co\\/eIFdhakjaV\",\"display_url\":\"pic.twitter.com\\/eIFdhakjaV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MonalisNg\\/status\\/1554775783595544576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30433,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/vid\\/540x540\\/bN0lw2sTdZEXMQmm.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/vid\\/320x320\\/Vx-Qp5Z5VDJNo2M3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/pl\\/pBl7rX6C3Og-pfIS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/vid\\/720x720\\/YJBEqijC1TRnJjz_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"922\":{\"media\":[{\"id\":1554775721872089088,\"id_str\":\"1554775721872089088\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"url\":\"https:\\/\\/t.co\\/RNIQwboUkK\",\"display_url\":\"pic.twitter.com\\/RNIQwboUkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554775733179916290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"small\":{\"w\":609,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554775730596286464,\"id_str\":\"1554775730596286464\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsSheXEAAN5ny.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsSheXEAAN5ny.jpg\",\"url\":\"https:\\/\\/t.co\\/RNIQwboUkK\",\"display_url\":\"pic.twitter.com\\/RNIQwboUkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554775733179916290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":663,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":669,\"resize\":\"fit\"}}}]},\"923\":{\"media\":[{\"id\":1554775508704976896,\"id_str\":\"1554775508704976896\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"url\":\"https:\\/\\/t.co\\/64cx3wVqvf\",\"display_url\":\"pic.twitter.com\\/64cx3wVqvf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554775658554920960\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":86086,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/pl\\/m1eVcE4Y-Yta1jjZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/vid\\/480x852\\/XMqDVDWE_TVFTuDX.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/vid\\/320x568\\/iHzSiOeyA7mU98-4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/vid\\/720x1280\\/S1qjDfia1ItqdCxF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"924\":{\"media\":[{\"id\":1554775191053557762,\"id_str\":\"1554775191053557762\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775191053557762\\/pu\\/img\\/bkLCn3FSMw3LF7j8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775191053557762\\/pu\\/img\\/bkLCn3FSMw3LF7j8.jpg\",\"url\":\"https:\\/\\/t.co\\/zSmQMCzoZO\",\"display_url\":\"pic.twitter.com\\/zSmQMCzoZO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554775538765529090\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[288,541],\"duration_millis\":31577,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775191053557762\\/pu\\/pl\\/WMe2TGLc3nUdLbOZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775191053557762\\/pu\\/vid\\/480x900\\/coBAm9Dk1sfMOG_M.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775191053557762\\/pu\\/vid\\/320x600\\/6gTWwr5v29ntIAFb.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775191053557762\\/pu\\/vid\\/576x1082\\/uYunm6HThGdzE-Hh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"925\":{\"media\":[{\"id\":1554775060853956611,\"id_str\":\"1554775060853956611\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"url\":\"https:\\/\\/t.co\\/v3DBR8PCOb\",\"display_url\":\"pic.twitter.com\\/v3DBR8PCOb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Princeaso_\\/status\\/1554775131767046144\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":36533,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/vid\\/576x1024\\/lzGgofbH88YihXuu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/vid\\/480x852\\/W8uVta7-uWWvXAqS.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/vid\\/320x568\\/1HlsDBbTo2uptbGa.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/pl\\/aoSggq5esQ0Ml4ZY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"926\":{\"media\":[{\"id\":1554774884340797440,\"id_str\":\"1554774884340797440\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"url\":\"https:\\/\\/t.co\\/gY9D4euHGU\",\"display_url\":\"pic.twitter.com\\/gY9D4euHGU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554775098518712320\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":75326,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/vid\\/1280x720\\/-_FxIqMc0w2Dv8Hp.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/vid\\/480x270\\/juPVSqeWDToFTV34.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/vid\\/640x360\\/w99Y0gY8an6U-kR8.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/pl\\/-N3ARLH88rjcaZzF.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"927\":{\"media\":[{\"id\":1554774691910504450,\"id_str\":\"1554774691910504450\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"url\":\"https:\\/\\/t.co\\/vNymkx9byA\",\"display_url\":\"pic.twitter.com\\/vNymkx9byA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Movie__Hack\\/status\\/1554774694976536576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":430,\"h\":680,\"resize\":\"fit\"}}}]},\"928\":{\"media\":[{\"id\":1554773993567166465,\"id_str\":\"1554773993567166465\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"url\":\"https:\\/\\/t.co\\/o97l2VTsqf\",\"display_url\":\"pic.twitter.com\\/o97l2VTsqf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chidi_Africa\\/status\\/1554773996087943168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":452,\"resize\":\"fit\"}}}]},\"929\":null,\"930\":null,\"931\":{\"media\":[{\"id\":1554773317906796545,\"id_str\":\"1554773317906796545\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"url\":\"https:\\/\\/t.co\\/5uMO3VBzLw\",\"display_url\":\"pic.twitter.com\\/5uMO3VBzLw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequeenhelen1\\/status\\/1554773340077817857\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}},{\"id\":1554773317944483840,\"id_str\":\"1554773317944483840\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqGFpWIAAufxY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqGFpWIAAufxY.jpg\",\"url\":\"https:\\/\\/t.co\\/5uMO3VBzLw\",\"display_url\":\"pic.twitter.com\\/5uMO3VBzLw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequeenhelen1\\/status\\/1554773340077817857\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"932\":{\"media\":[{\"id\":1554773004470652929,\"id_str\":\"1554773004470652929\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}},{\"id\":1554773014859882499,\"id_str\":\"1554773014859882499\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp0ckWIAMNoBq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp0ckWIAMNoBq.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}}]},\"933\":{\"media\":[{\"id\":1554772590178160640,\"id_str\":\"1554772590178160640\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"url\":\"https:\\/\\/t.co\\/N7nn8Fz6vq\",\"display_url\":\"pic.twitter.com\\/N7nn8Fz6vq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554772663498711040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"medium\":{\"w\":828,\"h\":440,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":440,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[207,110],\"duration_millis\":127030,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554772590178160640\\/pu\\/pl\\/PxTzM1LRk1BIOmnS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554772590178160640\\/pu\\/vid\\/828x440\\/ymD-Em2OST_Iwn7K.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554772590178160640\\/pu\\/vid\\/508x270\\/PHcrafzUDPMi5s4E.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"934\":{\"media\":[{\"id\":1554772621677498368,\"id_str\":\"1554772621677498368\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"url\":\"https:\\/\\/t.co\\/X86S5nOBSN\",\"display_url\":\"pic.twitter.com\\/X86S5nOBSN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Evereztt\\/status\\/1554772632880521218\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1449,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"}}}]},\"935\":null,\"936\":{\"media\":[{\"id\":1554772016070361088,\"id_str\":\"1554772016070361088\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"url\":\"https:\\/\\/t.co\\/IYplsoT20R\",\"display_url\":\"pic.twitter.com\\/IYplsoT20R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChuksCopn\\/status\\/1554772019346022407\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":573,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":849,\"resize\":\"fit\"}}}]},\"937\":{\"media\":[{\"id\":1554771128069005315,\"id_str\":\"1554771128069005315\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771138752008192,\"id_str\":\"1554771138752008192\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoHPhX0AAc8qd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoHPhX0AAc8qd.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554771147195142144,\"id_str\":\"1554771147195142144\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoHu-X0AAgkAI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoHu-X0AAgkAI.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771155843702784,\"id_str\":\"1554771155843702784\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoIPMWYAAo2WA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoIPMWYAAo2WA.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"938\":{\"media\":[{\"id\":1554771075552231427,\"id_str\":\"1554771075552231427\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771090743902209,\"id_str\":\"1554771090743902209\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoEcrWQAEsH80.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoEcrWQAEsH80.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554771104966778881,\"id_str\":\"1554771104966778881\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoFRqWIAEz8xa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoFRqWIAEz8xa.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771113535832064,\"id_str\":\"1554771113535832064\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoFxlXgAAyJQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoFxlXgAAyJQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"939\":{\"media\":[{\"id\":1554770968610017281,\"id_str\":\"1554770968610017281\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":800,\"resize\":\"fit\"}}},{\"id\":1554770971176869888,\"id_str\":\"1554770971176869888\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9fQWIAAYBQi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9fQWIAAYBQi.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":714,\"h\":714,\"resize\":\"fit\"},\"medium\":{\"w\":714,\"h\":714,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554770977330003968,\"id_str\":\"1554770977330003968\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn92LXgAAd4mp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn92LXgAAd4mp.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":682,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":644,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":682,\"resize\":\"fit\"}}},{\"id\":1554770983076118530,\"id_str\":\"1554770983076118530\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn-LlWQAIQJfJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn-LlWQAIQJfJ.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":671,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":634,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":671,\"resize\":\"fit\"}}}]},\"940\":{\"media\":[{\"id\":1554770257641779200,\"id_str\":\"1554770257641779200\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"url\":\"https:\\/\\/t.co\\/rZNuI5h5Ot\",\"display_url\":\"pic.twitter.com\\/rZNuI5h5Ot\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554770731585589248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"medium\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":496,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"941\":null,\"942\":null,\"943\":{\"media\":[{\"id\":1554764561340895233,\"id_str\":\"1554764561340895233\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiIYwXEAENi7v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiIYwXEAENi7v.jpg\",\"url\":\"https:\\/\\/t.co\\/0Vg5hcq12u\",\"display_url\":\"pic.twitter.com\\/0Vg5hcq12u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554769293211889666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"944\":{\"media\":[{\"id\":1554768625726328832,\"id_str\":\"1554768625726328832\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"url\":\"https:\\/\\/t.co\\/WrVic4OPRi\",\"display_url\":\"pic.twitter.com\\/WrVic4OPRi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554768633062215691\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"small\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"large\":{\"w\":648,\"h\":648,\"resize\":\"fit\"}}}]},\"945\":{\"media\":[{\"id\":1554768309056331776,\"id_str\":\"1554768309056331776\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"url\":\"https:\\/\\/t.co\\/opacZr7G7c\",\"display_url\":\"pic.twitter.com\\/opacZr7G7c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StephenQuartzz\\/status\\/1554768321983422464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"946\":{\"media\":[{\"id\":1554767751876468737,\"id_str\":\"1554767751876468737\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"url\":\"https:\\/\\/t.co\\/1c7AflzQAb\",\"display_url\":\"pic.twitter.com\\/1c7AflzQAb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554767858600513536\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":630,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":357,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":672,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,21],\"duration_millis\":45418,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/pl\\/-xMulUU3fY6B3KDI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/vid\\/1280x672\\/ySQOnO4u1I0cKUOA.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/vid\\/684x360\\/aOXmUct4HQfxHOUK.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/vid\\/514x270\\/VT2RJ276ApXwdUJZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"947\":{\"media\":[{\"id\":1554767399236341760,\"id_str\":\"1554767399236341760\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"large\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554767408103137281,\"id_str\":\"1554767408103137281\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOkuFxXoAEWMPV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOkuFxXoAEWMPV.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":360,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":360,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":360,\"h\":480,\"resize\":\"fit\"}}},{\"id\":1554767411148201984,\"id_str\":\"1554767411148201984\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOkuRHXoAAE4eb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOkuRHXoAAE4eb.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":736,\"h\":981,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":736,\"h\":981,\"resize\":\"fit\"}}}]},\"948\":{\"media\":[{\"id\":1554766290543427584,\"id_str\":\"1554766290543427584\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554766298642612226,\"id_str\":\"1554766298642612226\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtgtXgAIl1cf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtgtXgAIl1cf.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554766305445691393,\"id_str\":\"1554766305445691393\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjt6DWQAE4RiW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjt6DWQAE4RiW.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554766312240553984,\"id_str\":\"1554766312240553984\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjuTXXoAARt7O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjuTXXoAARt7O.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"949\":{\"media\":[{\"id\":1554766146477461509,\"id_str\":\"1554766146477461509\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":405,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":405,\"resize\":\"fit\"}}},{\"id\":1554766148897591297,\"id_str\":\"1554766148897591297\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjky3X0AE1er-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjky3X0AE1er-.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}},{\"id\":1554766151342870529,\"id_str\":\"1554766151342870529\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjk7-X0AEdQps.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjk7-X0AEdQps.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"950\":{\"media\":[{\"id\":1554765834270248962,\"id_str\":\"1554765834270248962\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"url\":\"https:\\/\\/t.co\\/tVKiTCZMPw\",\"display_url\":\"pic.twitter.com\\/tVKiTCZMPw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koliwill1\\/status\\/1554765853220036608\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":576,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":5033,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554765834270248962\\/pu\\/vid\\/576x576\\/_o4F7W8IAHZFhG4D.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554765834270248962\\/pu\\/vid\\/320x320\\/DRrkgAODux70U3zG.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554765834270248962\\/pu\\/pl\\/CX4LPUw1pM6xFEW9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"951\":null,\"952\":{\"media\":[{\"id\":1554765283188940800,\"id_str\":\"1554765283188940800\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"url\":\"https:\\/\\/t.co\\/6kGd3EkX1b\",\"display_url\":\"pic.twitter.com\\/6kGd3EkX1b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1554765285294542850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"large\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"medium\":{\"w\":346,\"h\":457,\"resize\":\"fit\"}}}]},\"953\":{\"media\":[{\"id\":1554764964535177216,\"id_str\":\"1554764964535177216\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"url\":\"https:\\/\\/t.co\\/UWvwP9LxNe\",\"display_url\":\"pic.twitter.com\\/UWvwP9LxNe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CmskEmmanuel\\/status\\/1554765082739056641\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13628,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/720x1280\\/WDb0Oht8XXvZnkTX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/pl\\/jqf-ZLQsSUIylsx-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/320x568\\/SSqiw-Z37GC1xKKi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/480x852\\/ms6JOswrfZT7Ao6o.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"954\":{\"media\":[{\"id\":1554764935460073473,\"id_str\":\"1554764935460073473\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"url\":\"https:\\/\\/t.co\\/CR7C9DFv93\",\"display_url\":\"pic.twitter.com\\/CR7C9DFv93\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764958662942720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":346,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,173],\"duration_millis\":28303,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764935460073473\\/pu\\/vid\\/640x346\\/lwzEMnfyV536x9Q2.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764935460073473\\/pu\\/vid\\/498x270\\/2M5Z-wHKNRhhllK9.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764935460073473\\/pu\\/pl\\/H5zThu9c6ib7AiAk.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"955\":{\"media\":[{\"id\":1554764251381657600,\"id_str\":\"1554764251381657600\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"url\":\"https:\\/\\/t.co\\/xCNhf8f5EP\",\"display_url\":\"pic.twitter.com\\/xCNhf8f5EP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764294016737280\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":334,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,167],\"duration_millis\":37800,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764251381657600\\/pu\\/pl\\/shnDjd61uoXONlkm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764251381657600\\/pu\\/vid\\/516x270\\/CbZbUiXJxGI968Zd.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764251381657600\\/pu\\/vid\\/640x334\\/-kQdKPawApk0GxuQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"956\":{\"media\":[{\"id\":1554763832123326464,\"id_str\":\"1554763832123326464\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554763842403663872,\"id_str\":\"1554763842403663872\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOheigXgAAV02V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOheigXgAAV02V.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":474,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":628,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":628,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554763850720968705,\"id_str\":\"1554763850720968705\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhfBfXgAEZtyI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhfBfXgAEZtyI.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1554763853686349824,\"id_str\":\"1554763853686349824\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhfMiXoAAUBCf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhfMiXoAAUBCf.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":619,\"h\":1252,\"resize\":\"fit\"},\"medium\":{\"w\":593,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":336,\"h\":680,\"resize\":\"fit\"}}}]},\"957\":{\"media\":[{\"id\":1554763035843108864,\"id_str\":\"1554763035843108864\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"url\":\"https:\\/\\/t.co\\/1PxDqmYaXY\",\"display_url\":\"pic.twitter.com\\/1PxDqmYaXY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/benita_ani\\/status\\/1554763044194058240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":969,\"h\":1200,\"resize\":\"fit\"}}}]},\"958\":{\"media\":[{\"id\":1554762200086200321,\"id_str\":\"1554762200086200321\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554762235926528000,\"id_str\":\"1554762235926528000\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgBB6XwAAEzYs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgBB6XwAAEzYs.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554762275537428480,\"id_str\":\"1554762275537428480\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgDVeWIAA7A2u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgDVeWIAA7A2u.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554762322702467072,\"id_str\":\"1554762322702467072\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgGFLXgAAe9kr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgGFLXgAAe9kr.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"}}}]},\"959\":{\"media\":[{\"id\":1554762267853352961,\"id_str\":\"1554762267853352961\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"url\":\"https:\\/\\/t.co\\/dg9cm1VN2l\",\"display_url\":\"pic.twitter.com\\/dg9cm1VN2l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554762305824378881\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":432,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[27,16],\"duration_millis\":34300,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554762267853352961\\/pu\\/vid\\/432x256\\/iifJEmC45A2YidY1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554762267853352961\\/pu\\/pl\\/VIGshKaMTnwfWLA0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"960\":null,\"961\":{\"media\":[{\"id\":1554761742458277888,\"id_str\":\"1554761742458277888\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZzXoicSwjA\",\"display_url\":\"pic.twitter.com\\/ZzXoicSwjA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akande_susan_b\\/status\\/1554761745159409664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"962\":{\"media\":[{\"id\":1554761507367518211,\"id_str\":\"1554761507367518211\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"url\":\"https:\\/\\/t.co\\/awt1ppOpID\",\"display_url\":\"pic.twitter.com\\/awt1ppOpID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554761554939322368\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":38800,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/vid\\/480x852\\/Y_2Bmaa8IrVAY4Gz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/pl\\/2NYxqE-E32C3-EPY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/vid\\/320x568\\/U4vHoS85FCOFNyH7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/vid\\/576x1024\\/2uHsHOd66TIeXD8f.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"963\":{\"media\":[{\"id\":1554758873453629441,\"id_str\":\"1554758873453629441\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758873453629441\\/pu\\/img\\/AqG_IfTCDBP8kjkk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758873453629441\\/pu\\/img\\/AqG_IfTCDBP8kjkk.jpg\",\"url\":\"https:\\/\\/t.co\\/w65YScUBCN\",\"display_url\":\"pic.twitter.com\\/w65YScUBCN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nickmills21\\/status\\/1554761100834521090\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":140000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758873453629441\\/pu\\/pl\\/qdjvGtusNVlUubok.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758873453629441\\/pu\\/vid\\/720x1280\\/VdjjBVLvHJgXxCkc.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758873453629441\\/pu\\/vid\\/320x568\\/KKNw9S2rCR5LPaBF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758873453629441\\/pu\\/vid\\/480x852\\/SlhnroksBAXk7wxB.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"964\":{\"media\":[{\"id\":1554760500709396480,\"id_str\":\"1554760500709396480\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"url\":\"https:\\/\\/t.co\\/NEgkLhxrKk\",\"display_url\":\"pic.twitter.com\\/NEgkLhxrKk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554760645769306112\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":85210,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/pl\\/ZW6SqAgU7TbiEqM6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/vid\\/720x1280\\/QNWPh_mhQXbueqrS.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/vid\\/480x852\\/VOKvdTwrFrLazSO5.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/vid\\/320x568\\/-AA3Vrr6YDIBLskK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"965\":null,\"966\":{\"media\":[{\"id\":1554760071694864385,\"id_str\":\"1554760071694864385\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"url\":\"https:\\/\\/t.co\\/5UnH7vNTLv\",\"display_url\":\"pic.twitter.com\\/5UnH7vNTLv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554760106612367360\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":1270,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":386,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[127,72],\"duration_millis\":10054,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/pl\\/MkrU01h3sCEsWvK8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/vid\\/1270x720\\/23q_uSFhpIKYpMjj.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/vid\\/634x360\\/TPv5G_Na_-3Y60n4.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/vid\\/476x270\\/PsaMiUXoWd8RGFU_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"967\":null,\"968\":null,\"969\":{\"media\":[{\"id\":1554758920064958466,\"id_str\":\"1554758920064958466\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"url\":\"https:\\/\\/t.co\\/2ZhUtWf8xb\",\"display_url\":\"pic.twitter.com\\/2ZhUtWf8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/opuwari66\\/status\\/1554758927639781377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"970\":{\"media\":[{\"id\":1554758636550983680,\"id_str\":\"1554758636550983680\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":961,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1405,\"resize\":\"fit\"}}},{\"id\":1554758650958340098,\"id_str\":\"1554758650958340098\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcwW3WYAINtMn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcwW3WYAINtMn.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1365,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"971\":null,\"972\":{\"media\":[{\"id\":1554758166637936640,\"id_str\":\"1554758166637936640\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"url\":\"https:\\/\\/t.co\\/jNjKO4A0JW\",\"display_url\":\"pic.twitter.com\\/jNjKO4A0JW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrwopaa\\/status\\/1554758300004237313\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27050,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/vid\\/720x1280\\/4YbY0ci7KrebhGVe.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/pl\\/r1-3SiykIg0J9dc9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/vid\\/320x568\\/6pmn_EoNA71Ko6VP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/vid\\/480x852\\/8Djb5Dy3LRMi7HOB.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"973\":{\"media\":[{\"id\":1554757310014263296,\"id_str\":\"1554757310014263296\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"url\":\"https:\\/\\/t.co\\/s8oGfNaHs6\",\"display_url\":\"pic.twitter.com\\/s8oGfNaHs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ariemu_ogaga\\/status\\/1554757312325246977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"medium\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"large\":{\"w\":225,\"h\":225,\"resize\":\"fit\"}}}]},\"974\":null,\"975\":null,\"976\":null,\"977\":{\"media\":[{\"id\":1554755190439428096,\"id_str\":\"1554755190439428096\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"url\":\"https:\\/\\/t.co\\/okJ4mPo0Zj\",\"display_url\":\"pic.twitter.com\\/okJ4mPo0Zj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djackyz\\/status\\/1554755756930568193\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":23798,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/vid\\/480x852\\/fq8vzHiL2bIIAuaD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/pl\\/WKuAKyPtihK4f8Ra.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/vid\\/320x568\\/CdaM5as8rKwQfM3x.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/vid\\/720x1280\\/YpxTbPrTtaQUnRj8.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"978\":null,\"979\":null,\"980\":{\"media\":[{\"id\":1554753224216920068,\"id_str\":\"1554753224216920068\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"url\":\"https:\\/\\/t.co\\/PyNUmil5YE\",\"display_url\":\"pic.twitter.com\\/PyNUmil5YE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerryOladapo\\/status\\/1554754395887247361\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":464,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,22],\"duration_millis\":30025,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753224216920068\\/pu\\/pl\\/1s8byb3vOcE30mgH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753224216920068\\/pu\\/vid\\/320x468\\/9rnEBTY2xcDSU2L2.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753224216920068\\/pu\\/vid\\/480x704\\/vxqmlvPKNUE5iVnK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"981\":{\"media\":[{\"id\":1554193160506580992,\"id_str\":\"1554193160506580992\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cync8O1w12\",\"display_url\":\"pic.twitter.com\\/Cync8O1w12\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jara_Connect\\/status\\/1554753949986525184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"982\":null,\"983\":{\"media\":[{\"id\":1554753120709877770,\"id_str\":\"1554753120709877770\",\"indices\":[29,52],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"url\":\"https:\\/\\/t.co\\/Q5tlxYu3Bj\",\"display_url\":\"pic.twitter.com\\/Q5tlxYu3Bj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bereal_akpan\\/status\\/1554753222811721728\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15021,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/vid\\/320x568\\/XS7WRYuyGt_OFt9T.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/pl\\/C1I7ZiL6ouNkIwOO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/vid\\/480x852\\/rLT3NJQdL8yze_hx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/vid\\/540x960\\/dKPFY7lQYCZw-a5U.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"984\":{\"media\":[{\"id\":1554752373578399745,\"id_str\":\"1554752373578399745\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"url\":\"https:\\/\\/t.co\\/DyHldauMMV\",\"display_url\":\"pic.twitter.com\\/DyHldauMMV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554752436572667904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":750,\"h\":398,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":398,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[375,199],\"duration_millis\":21441,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554752373578399745\\/pu\\/pl\\/gvhah431a0Gn28KT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554752373578399745\\/pu\\/vid\\/750x398\\/OTvjH7UCW4GNnqda.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554752373578399745\\/pu\\/vid\\/508x270\\/CxxFRoPxpp0F4cUM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"985\":{\"media\":[{\"id\":1554752227050491904,\"id_str\":\"1554752227050491904\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"url\":\"https:\\/\\/t.co\\/ovHXa0hzlB\",\"display_url\":\"pic.twitter.com\\/ovHXa0hzlB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wonderqoute\\/status\\/1554752228992368641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"986\":{\"media\":[{\"id\":1554750894931165184,\"id_str\":\"1554750894931165184\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOVs5aXwAA9UPU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOVs5aXwAA9UPU.jpg\",\"url\":\"https:\\/\\/t.co\\/A28ZFjx7fh\",\"display_url\":\"pic.twitter.com\\/A28ZFjx7fh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554750902178877440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":588,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":588,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":588,\"resize\":\"fit\"}}}]},\"987\":null,\"988\":null,\"989\":{\"media\":[{\"id\":1554750326871302144,\"id_str\":\"1554750326871302144\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"url\":\"https:\\/\\/t.co\\/FoQKyOEd9r\",\"display_url\":\"pic.twitter.com\\/FoQKyOEd9r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750398535110657\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":30041,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/pl\\/9tCdYLMahETBgj9B.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/vid\\/960x540\\/nI4w5ANjTrFJYe3J.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/vid\\/640x360\\/c5YF-Lr5I7t8ljEe.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/vid\\/480x270\\/tqlbmlSW1VKVVjtd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"990\":{\"media\":[{\"id\":1554749405697277953,\"id_str\":\"1554749405697277953\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"url\":\"https:\\/\\/t.co\\/L1J8YWRhY5\",\"display_url\":\"pic.twitter.com\\/L1J8YWRhY5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/izzitalk\\/status\\/1554750357292650496\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140033,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/480x270\\/fNDZwcYi-bz4p8Hr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/pl\\/IC1FcvniOpJoXNTZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/1280x720\\/g0qgr_tAH7C_WRkG.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/640x360\\/-bkuguUed3BpRCb_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"991\":null,\"992\":{\"media\":[{\"id\":1554749832274796545,\"id_str\":\"1554749832274796545\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/xABIkq4zud\",\"display_url\":\"pic.twitter.com\\/xABIkq4zud\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750035895545858\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":106322,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/vid\\/638x360\\/68N7yYgHqtL8g1Iv.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/vid\\/478x270\\/-8wYg-HGLcp2f5vC.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/pl\\/Si6IrW7LteT_hSbH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/vid\\/852x480\\/aaKYTgldgyXOFST7.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"993\":null,\"994\":{\"media\":[{\"id\":1554749811965960192,\"id_str\":\"1554749811965960192\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"url\":\"https:\\/\\/t.co\\/1jI8BGtAOK\",\"display_url\":\"pic.twitter.com\\/1jI8BGtAOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfeJerry1\\/status\\/1554749956875067392\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":456,\"h\":450,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[76,75],\"duration_millis\":45026,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749811965960192\\/pu\\/pl\\/2OL_knMBI6hmGiwM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749811965960192\\/pu\\/vid\\/272x270\\/c3kOjXlYJUIAl_Mb.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749811965960192\\/pu\\/vid\\/456x450\\/G1W1X61WEfkEF9-_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"995\":null,\"996\":{\"media\":[{\"id\":1554749286390308864,\"id_str\":\"1554749286390308864\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"url\":\"https:\\/\\/t.co\\/uWbWNr9sVl\",\"display_url\":\"pic.twitter.com\\/uWbWNr9sVl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554749294770413568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"}}}]},\"997\":{\"media\":[{\"id\":1554748770927222785,\"id_str\":\"1554748770927222785\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"url\":\"https:\\/\\/t.co\\/5FPEyppr3w\",\"display_url\":\"pic.twitter.com\\/5FPEyppr3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SweetMusicMan27\\/status\\/1554748781551288321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":null,\"1008\":{\"media\":[{\"id\":1554747204505636864,\"id_str\":\"1554747204505636864\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"url\":\"https:\\/\\/t.co\\/MElRLNOy44\",\"display_url\":\"pic.twitter.com\\/MElRLNOy44\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FredTizzle\\/status\\/1554747247434366977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":633,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1117,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554747204501491713,\"id_str\":\"1554747204501491713\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOSWFfX0AE3ee0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOSWFfX0AE3ee0.jpg\",\"url\":\"https:\\/\\/t.co\\/MElRLNOy44\",\"display_url\":\"pic.twitter.com\\/MElRLNOy44\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FredTizzle\\/status\\/1554747247434366977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":553,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1300,\"h\":1600,\"resize\":\"fit\"},\"medium\":{\"w\":975,\"h\":1200,\"resize\":\"fit\"}}}]},\"1009\":null,\"1010\":{\"media\":[{\"id\":1554745603615252480,\"id_str\":\"1554745603615252480\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"url\":\"https:\\/\\/t.co\\/tj6Iz3obts\",\"display_url\":\"pic.twitter.com\\/tj6Iz3obts\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuel_atser\\/status\\/1554745680635338754\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":45000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/848x480\\/3FYtWcFr6dCR2trZ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/636x360\\/o48bwH6vub60hXlp.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/pl\\/YT7ENWhLs0UMFsWX.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/476x270\\/85dGWxuqhVueVK-H.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1011\":{\"media\":[{\"id\":1554745383775096833,\"id_str\":\"1554745383775096833\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"url\":\"https:\\/\\/t.co\\/7y4Kb7qmrv\",\"display_url\":\"pic.twitter.com\\/7y4Kb7qmrv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobzyeasy\\/status\\/1554745475730968580\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":43835,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/pl\\/aOuhxsjkxDDrzB_9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/vid\\/320x564\\/sQ0lkg_XUGnWbVTC.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/vid\\/480x848\\/xNM51didkY4-QAqr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1012\":{\"media\":[{\"id\":1554745248693338112,\"id_str\":\"1554745248693338112\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"url\":\"https:\\/\\/t.co\\/tP7gEqnV9g\",\"display_url\":\"pic.twitter.com\\/tP7gEqnV9g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MineralSorcerer\\/status\\/1554745332243767296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,40],\"duration_millis\":23730,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745248693338112\\/pu\\/vid\\/272x640\\/IY9lRTWujHIqkS70.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745248693338112\\/pu\\/pl\\/3ZC0gUpmjpKBDeOE.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1013\":null,\"1014\":null,\"1015\":null,\"1016\":{\"media\":[{\"id\":1554743513115500544,\"id_str\":\"1554743513115500544\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"url\":\"https:\\/\\/t.co\\/PWYGApAmQx\",\"display_url\":\"pic.twitter.com\\/PWYGApAmQx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Victorbajju_30\\/status\\/1554743515757903873\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":660,\"resize\":\"fit\"}}}]},\"1017\":{\"media\":[{\"id\":1554743252850556929,\"id_str\":\"1554743252850556929\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}},{\"id\":1554743256046620672,\"id_str\":\"1554743256046620672\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwQWX0AArlxY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwQWX0AArlxY.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"}}},{\"id\":1554743263520768000,\"id_str\":\"1554743263520768000\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwsMWQAAdIdS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwsMWQAAdIdS.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}},{\"id\":1554743266578505730,\"id_str\":\"1554743266578505730\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOw3lXoAIRk1C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOw3lXoAIRk1C.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"}}}]},\"1018\":{\"media\":[{\"id\":1554741626064539649,\"id_str\":\"1554741626064539649\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"url\":\"https:\\/\\/t.co\\/2zQh46RCfU\",\"display_url\":\"pic.twitter.com\\/2zQh46RCfU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554741633626816513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"1019\":{\"media\":[{\"id\":1554739948124880896,\"id_str\":\"1554739948124880896\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"url\":\"https:\\/\\/t.co\\/A5RIiMeVU0\",\"display_url\":\"pic.twitter.com\\/A5RIiMeVU0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mclioon\\/status\\/1554740126550560773\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":110800,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/vid\\/480x852\\/9rRghc77YVikEFng.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/vid\\/720x1280\\/O_TilJ_Iy1q7W___.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/pl\\/GmlL_klvOkkekVP-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/vid\\/320x568\\/vc6THeYlQmWszbrD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1020\":{\"media\":[{\"id\":1554739912653643776,\"id_str\":\"1554739912653643776\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"url\":\"https:\\/\\/t.co\\/gWlbMkTYBc\",\"display_url\":\"pic.twitter.com\\/gWlbMkTYBc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trouve_ng\\/status\\/1554739926125760512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1021\":null,\"1022\":null,\"1023\":{\"media\":[{\"id\":1554738864350167041,\"id_str\":\"1554738864350167041\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554738864383823874,\"id_str\":\"1554738864383823874\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoIXkAIXy2K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoIXkAIXy2K.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554738864362856450,\"id_str\":\"1554738864362856450\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoDXoAIByCU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoDXoAIByCU.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":809,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":809,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554738864375431170,\"id_str\":\"1554738864375431170\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoGXgAIR3IY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoGXgAIR3IY.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"1024\":{\"media\":[{\"id\":1554738541938327552,\"id_str\":\"1554738541938327552\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKd27XwAAojnr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKd27XwAAojnr.jpg\",\"url\":\"https:\\/\\/t.co\\/IjwqYpiRBY\",\"display_url\":\"pic.twitter.com\\/IjwqYpiRBY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JadonDashery\\/status\\/1554738550238838786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"1025\":{\"media\":[{\"id\":1554737719577821184,\"id_str\":\"1554737719577821184\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"url\":\"https:\\/\\/t.co\\/2cCusH98nf\",\"display_url\":\"pic.twitter.com\\/2cCusH98nf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__osinachi__\\/status\\/1554737862293209089\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"1026\":null,\"1027\":{\"media\":[{\"id\":1554735959383674882,\"id_str\":\"1554735959383674882\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}},{\"id\":1554735959404691456,\"id_str\":\"1554735959404691456\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiPXwAAc2uB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiPXwAAc2uB.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}},{\"id\":1554735959417176067,\"id_str\":\"1554735959417176067\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiSWQAMYAmg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiSWQAMYAmg.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}},{\"id\":1554735959438229508,\"id_str\":\"1554735959438229508\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiXXgAQSmDw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiXXgAQSmDw.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"1028\":{\"media\":[{\"id\":1554735874017054722,\"id_str\":\"1554735874017054722\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"url\":\"https:\\/\\/t.co\\/05qgfyGbKI\",\"display_url\":\"pic.twitter.com\\/05qgfyGbKI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stancity3\\/status\\/1554735948960784384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554735874017054722\\/pu\\/vid\\/240x426\\/ue3i4WLgKO4M8aFV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554735874017054722\\/pu\\/pl\\/1zEDT5258Gsam96c.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1029\":{\"media\":[{\"id\":1554735937007112194,\"id_str\":\"1554735937007112194\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"url\":\"https:\\/\\/t.co\\/kwr5SYLOaz\",\"display_url\":\"pic.twitter.com\\/kwr5SYLOaz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554735947413176320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1030\":{\"media\":[{\"id\":1554735749492260865,\"id_str\":\"1554735749492260865\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"url\":\"https:\\/\\/t.co\\/B1ILEk1MbJ\",\"display_url\":\"pic.twitter.com\\/B1ILEk1MbJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554735759818620928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":971,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":971,\"resize\":\"fit\"}}}]},\"1031\":{\"media\":[{\"id\":1554735436928630784,\"id_str\":\"1554735436928630784\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"url\":\"https:\\/\\/t.co\\/cnV6ldQ2ua\",\"display_url\":\"pic.twitter.com\\/cnV6ldQ2ua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nsikanekanemm\\/status\\/1554735453118529537\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1032\":{\"media\":[{\"id\":1554735431408914432,\"id_str\":\"1554735431408914432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"url\":\"https:\\/\\/t.co\\/pOOwEAlBEc\",\"display_url\":\"pic.twitter.com\\/pOOwEAlBEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/classsuitehotel\\/status\\/1554735443136192512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"}}}]},\"1033\":{\"media\":[{\"id\":1554734807376076801,\"id_str\":\"1554734807376076801\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"url\":\"https:\\/\\/t.co\\/EUng3m4l60\",\"display_url\":\"pic.twitter.com\\/EUng3m4l60\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554734810131734530\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":551,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":553,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":553,\"resize\":\"fit\"}}}]},\"1034\":{\"media\":[{\"id\":1554734369297891328,\"id_str\":\"1554734369297891328\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"url\":\"https:\\/\\/t.co\\/pCuQbu6Ysx\",\"display_url\":\"pic.twitter.com\\/pCuQbu6Ysx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingrickky23\\/status\\/1554734371969662976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"small\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"large\":{\"w\":607,\"h\":595,\"resize\":\"fit\"}}}]},\"1035\":{\"media\":[{\"id\":1554734270551400448,\"id_str\":\"1554734270551400448\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"url\":\"https:\\/\\/t.co\\/R1s7OnW7dm\",\"display_url\":\"pic.twitter.com\\/R1s7OnW7dm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JobayeResources\\/status\\/1554734274032590850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1636,\"h\":2046,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1036\":{\"media\":[{\"id\":1554733300681478144,\"id_str\":\"1554733300681478144\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"url\":\"https:\\/\\/t.co\\/svknsySMh6\",\"display_url\":\"pic.twitter.com\\/svknsySMh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554733314564554752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1037\":{\"media\":[{\"id\":1554732684127117312,\"id_str\":\"1554732684127117312\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"url\":\"https:\\/\\/t.co\\/xRALFAqC3I\",\"display_url\":\"pic.twitter.com\\/xRALFAqC3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1554733053494403074\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22080,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/320x568\\/pTgW6J0xZcSpfKKi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/480x852\\/tt-pQtiUEFYnVS0b.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/576x1024\\/yyIKeyfGyDe06RuF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/pl\\/4mcO-pxYgsJ6zlEn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1038\":{\"media\":[{\"id\":1554731615561162752,\"id_str\":\"1554731615561162752\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"url\":\"https:\\/\\/t.co\\/DWwoN9Sc4V\",\"display_url\":\"pic.twitter.com\\/DWwoN9Sc4V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/6fiveEmpire\\/status\\/1554732574689443840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"1039\":{\"media\":[{\"id\":1554732320195809282,\"id_str\":\"1554732320195809282\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"url\":\"https:\\/\\/t.co\\/dzITwqWjp7\",\"display_url\":\"pic.twitter.com\\/dzITwqWjp7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554732329196740609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1040\":{\"media\":[{\"id\":1554731444085444610,\"id_str\":\"1554731444085444610\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"url\":\"https:\\/\\/t.co\\/bN4xCQw4No\",\"display_url\":\"pic.twitter.com\\/bN4xCQw4No\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialOSYB\\/status\\/1554731771115225088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[76,135],\"duration_millis\":110333,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/320x568\\/TK66VW9PsDXgWzWO.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/608x1080\\/xGa6PJ7wjMkTcpb7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/pl\\/0FUmToypRAVm6rjg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/480x852\\/ULBhUNLZVuUwJkZ9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1041\":{\"media\":[{\"id\":1554730166420733952,\"id_str\":\"1554730166420733952\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"url\":\"https:\\/\\/t.co\\/7FooxwIVkO\",\"display_url\":\"pic.twitter.com\\/7FooxwIVkO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554730661495410688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":28766,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554730166420733952\\/pu\\/vid\\/320x580\\/vQw0vmm09lv-1RP5.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554730166420733952\\/pu\\/pl\\/mbBI1oSnbkEsm5sc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554730166420733952\\/pu\\/vid\\/352x640\\/TIxR7vYmj-QV-b98.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1042\":{\"media\":[{\"id\":1554730198003843074,\"id_str\":\"1554730198003843074\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"url\":\"https:\\/\\/t.co\\/1VYFNTg3hP\",\"display_url\":\"pic.twitter.com\\/1VYFNTg3hP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jugo_kc\\/status\\/1554730211597586433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554730205708783616,\"id_str\":\"1554730205708783616\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOC4oDXkAAnw2o.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOC4oDXkAAnw2o.jpg\",\"url\":\"https:\\/\\/t.co\\/1VYFNTg3hP\",\"display_url\":\"pic.twitter.com\\/1VYFNTg3hP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jugo_kc\\/status\\/1554730211597586433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":717,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":717,\"resize\":\"fit\"}}}]},\"1043\":null,\"1044\":null,\"1045\":{\"media\":[{\"id\":1554728882691051521,\"id_str\":\"1554728882691051521\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"url\":\"https:\\/\\/t.co\\/bINlXjK7kw\",\"display_url\":\"pic.twitter.com\\/bINlXjK7kw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1554729093857435649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,23],\"duration_millis\":87620,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/pl\\/9-Z5GflkBCayakME.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/vid\\/480x270\\/fgAeZEC-ryT1bbiP.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/vid\\/738x414\\/qHJ_oZoV08I_zexI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1046\":{\"media\":[{\"id\":1554728955416088577,\"id_str\":\"1554728955416088577\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"url\":\"https:\\/\\/t.co\\/dPgOSI5xlD\",\"display_url\":\"pic.twitter.com\\/dPgOSI5xlD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IgweRichard8\\/status\\/1554728958880612353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":693,\"resize\":\"fit\"}}}]},\"1047\":null,\"1048\":{\"media\":[{\"id\":1554726832318054400,\"id_str\":\"1554726832318054400\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"url\":\"https:\\/\\/t.co\\/00jFWrl2SL\",\"display_url\":\"pic.twitter.com\\/00jFWrl2SL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554726841772023808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1049\":{\"media\":[{\"id\":1554726372932833280,\"id_str\":\"1554726372932833280\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"url\":\"https:\\/\\/t.co\\/GCVr1rxFO5\",\"display_url\":\"pic.twitter.com\\/GCVr1rxFO5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iamkyngizy\\/status\\/1554726590654959616\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":979,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1044,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":555,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,261],\"duration_millis\":41000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/vid\\/440x360\\/79whMjYVOETnvyiU.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/vid\\/882x720\\/Abhgi_Yd4fKB0Xr0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/pl\\/XDTn5jgH-Pj1ud1v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/vid\\/330x270\\/z2iaylNa-TUD4NUW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1050\":{\"media\":[{\"id\":1554725930014236674,\"id_str\":\"1554725930014236674\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"url\":\"https:\\/\\/t.co\\/QYu1R1lLjy\",\"display_url\":\"pic.twitter.com\\/QYu1R1lLjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554726355853627394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1051\":{\"media\":[{\"id\":1554725413808742400,\"id_str\":\"1554725413808742400\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"url\":\"https:\\/\\/t.co\\/iBJGDUp0bv\",\"display_url\":\"pic.twitter.com\\/iBJGDUp0bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GbengaAdene\\/status\\/1554725439599435777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":805,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1374,\"resize\":\"fit\"}}}]},\"1052\":{\"media\":[{\"id\":1554725356984303618,\"id_str\":\"1554725356984303618\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554725356824838144,\"id_str\":\"1554725356824838144\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYjWQAAXlln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYjWQAAXlln.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554725356841717760,\"id_str\":\"1554725356841717760\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnX0AAfJek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnX0AAfJek.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554725356841668609,\"id_str\":\"1554725356841668609\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnXEAESpZ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnXEAESpZ_.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1053\":null,\"1054\":{\"media\":[{\"id\":1554723961283411970,\"id_str\":\"1554723961283411970\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"url\":\"https:\\/\\/t.co\\/te9gZGngXO\",\"display_url\":\"pic.twitter.com\\/te9gZGngXO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554723970548699137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1055\":null,\"1056\":null,\"1057\":{\"media\":[{\"id\":1554721485113147392,\"id_str\":\"1554721485113147392\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"url\":\"https:\\/\\/t.co\\/pCr4hW9X7X\",\"display_url\":\"pic.twitter.com\\/pCr4hW9X7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1554721500996984836\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"}}}]},\"1058\":{\"media\":[{\"id\":1554720324557701121,\"id_str\":\"1554720324557701121\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"url\":\"https:\\/\\/t.co\\/EK0Gc5UCOx\",\"display_url\":\"pic.twitter.com\\/EK0Gc5UCOx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1554720326709288960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":467,\"resize\":\"fit\"}}}]},\"1059\":null,\"1060\":{\"media\":[{\"id\":1554718930496897026,\"id_str\":\"1554718930496897026\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"url\":\"https:\\/\\/t.co\\/026mVX7MRE\",\"display_url\":\"pic.twitter.com\\/026mVX7MRE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554718940496105473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"1061\":{\"media\":[{\"id\":1554716543963041794,\"id_str\":\"1554716543963041794\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"url\":\"https:\\/\\/t.co\\/PtDVpyIb3c\",\"display_url\":\"pic.twitter.com\\/PtDVpyIb3c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BEEJAYSPECIAL_C\\/status\\/1554717766523015169\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":83700,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/vid\\/320x568\\/TlsY7diPcXYbdwHu.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/vid\\/720x1280\\/QCUsTBdpGZgLC_Im.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/vid\\/480x852\\/o21H0Afa6tDjROk_.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/pl\\/zqZs6LY73ASMkVhR.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1062\":null,\"1063\":{\"media\":[{\"id\":1554717357368643585,\"id_str\":\"1554717357368643585\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"url\":\"https:\\/\\/t.co\\/ApThT4W86Q\",\"display_url\":\"pic.twitter.com\\/ApThT4W86Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1554717574407020547\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[539,279],\"duration_millis\":59433,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/pl\\/PTmLIaxFZwzMcKOe.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/520x270\\/cK77WLbfDBb8eKy6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/1078x558\\/1BsEw4kC1altfZAL.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/694x360\\/E2pX_nnu2jdQSmwW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1064\":null,\"1065\":{\"media\":[{\"id\":1554716346495148033,\"id_str\":\"1554716346495148033\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"url\":\"https:\\/\\/t.co\\/uFYpJZTqZn\",\"display_url\":\"pic.twitter.com\\/uFYpJZTqZn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Nation22\\/status\\/1554716381962293253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"1066\":{\"media\":[{\"id\":1554715093241397248,\"id_str\":\"1554715093241397248\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"url\":\"https:\\/\\/t.co\\/p19mVRa2AF\",\"display_url\":\"pic.twitter.com\\/p19mVRa2AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554715101596467202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":600,\"resize\":\"fit\"}}}]},\"1067\":{\"media\":[{\"id\":1554714723341504512,\"id_str\":\"1554714723341504512\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"url\":\"https:\\/\\/t.co\\/3NV2jjlWqk\",\"display_url\":\"pic.twitter.com\\/3NV2jjlWqk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714732828950531\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"1068\":{\"media\":[{\"id\":1554714291810484224,\"id_str\":\"1554714291810484224\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"url\":\"https:\\/\\/t.co\\/HcavykGv4z\",\"display_url\":\"pic.twitter.com\\/HcavykGv4z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714297980395521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"1069\":{\"media\":[{\"id\":1554714055516033024,\"id_str\":\"1554714055516033024\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"url\":\"https:\\/\\/t.co\\/nIr7rFMsXP\",\"display_url\":\"pic.twitter.com\\/nIr7rFMsXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714059471200258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"1070\":{\"media\":[{\"id\":1554713627369816064,\"id_str\":\"1554713627369816064\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"url\":\"https:\\/\\/t.co\\/BtUY195DPp\",\"display_url\":\"pic.twitter.com\\/BtUY195DPp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554713631694233600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"1071\":null,\"1072\":null,\"1073\":null,\"1074\":{\"media\":[{\"id\":1554711438538711040,\"id_str\":\"1554711438538711040\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"url\":\"https:\\/\\/t.co\\/XpJ4IMt8Ke\",\"display_url\":\"pic.twitter.com\\/XpJ4IMt8Ke\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krazy_bankr\\/status\\/1554711445836816384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":363,\"resize\":\"fit\"}}}]},\"1075\":{\"media\":[{\"id\":1554710889399459841,\"id_str\":\"1554710889399459841\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"url\":\"https:\\/\\/t.co\\/w9hnwCxg17\",\"display_url\":\"pic.twitter.com\\/w9hnwCxg17\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Onos_bee\\/status\\/1554710920110252032\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":6473,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/pl\\/3htkELLaLb5Vp49y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/vid\\/1280x720\\/Vmsshh9cwmhHeaFz.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/vid\\/640x360\\/TvXw5S60Ddky08R2.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/vid\\/480x270\\/odA0OwkQCCboQLdT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1076\":null,\"1077\":null,\"1078\":null,\"1079\":{\"media\":[{\"id\":1554708357851774976,\"id_str\":\"1554708357851774976\",\"indices\":[55,78],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"url\":\"https:\\/\\/t.co\\/yPLk1iZ8xb\",\"display_url\":\"pic.twitter.com\\/yPLk1iZ8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Highkay_Store\\/status\\/1554708959176675329\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":54066,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/pl\\/XdXzWpGeHpvfV6VB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/vid\\/720x1280\\/LT6T4ZvOP31SAPUG.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/vid\\/320x568\\/9mJYAuYO52XR5fuL.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/vid\\/480x852\\/H0H13rby10BW79PN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1080\":{\"media\":[{\"id\":1554708457663627265,\"id_str\":\"1554708457663627265\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"url\":\"https:\\/\\/t.co\\/PX6DaVUJWp\",\"display_url\":\"pic.twitter.com\\/PX6DaVUJWp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brownsonmfon5\\/status\\/1554708618041298944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,131],\"duration_millis\":32100,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/480x872\\/zYn6JXLK4smNaedj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/pl\\/JseOasT7YD8elWl8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/320x582\\/rhWBIHFa5D1DpZJ4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/576x1048\\/JGBnM5AFyDV8jP34.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1081\":{\"media\":[{\"id\":1554707911347437568,\"id_str\":\"1554707911347437568\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"url\":\"https:\\/\\/t.co\\/wVaAVdwSYq\",\"display_url\":\"pic.twitter.com\\/wVaAVdwSYq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554707960097828864\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":818,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":872,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":463,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[109,160],\"duration_millis\":15233,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/vid\\/320x468\\/ciZSMaOM1PVtr57J.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/vid\\/480x704\\/QeAl4ymL1fxtbz83.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/pl\\/cr0c1yuW-cL0B_l4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/vid\\/720x1056\\/jI7EuiBmqTi47tgY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1082\":null,\"1083\":null,\"1084\":{\"media\":[{\"id\":1554706425024241672,\"id_str\":\"1554706425024241672\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"url\":\"https:\\/\\/t.co\\/qIoG1x8dre\",\"display_url\":\"pic.twitter.com\\/qIoG1x8dre\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1554706442460037120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"}}}]},\"1085\":{\"media\":[{\"id\":1554706289195978754,\"id_str\":\"1554706289195978754\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}},{\"id\":1554706289162338306,\"id_str\":\"1554706289162338306\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIf-WQAIJtLq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIf-WQAIJtLq.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"}}},{\"id\":1554706289158197249,\"id_str\":\"1554706289158197249\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIf9XEAEBkSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIf9XEAEBkSt.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"}}},{\"id\":1554706289208475648,\"id_str\":\"1554706289208475648\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgJWQAAptrI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgJWQAAptrI.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"1086\":{\"media\":[{\"id\":1554705959184134144,\"id_str\":\"1554705959184134144\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"url\":\"https:\\/\\/t.co\\/Qb10wIRB3M\",\"display_url\":\"pic.twitter.com\\/Qb10wIRB3M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554706027442241537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":67090,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554705959184134144\\/pu\\/vid\\/480x848\\/RmEChX77QdS_eKy8.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554705959184134144\\/pu\\/pl\\/Nm9bbjtjIF5fNQJF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554705959184134144\\/pu\\/vid\\/320x564\\/c3gimtyabbTdikkG.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1087\":{\"media\":[{\"id\":1554704234200932352,\"id_str\":\"1554704234200932352\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"url\":\"https:\\/\\/t.co\\/Hu0fPeWVzN\",\"display_url\":\"pic.twitter.com\\/Hu0fPeWVzN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Llyodben56\\/status\\/1554704243826823170\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"small\":{\"w\":203,\"h\":248,\"resize\":\"fit\"}}},{\"id\":1554704239884124160,\"id_str\":\"1554704239884124160\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNrRN0WQAAL_Yg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNrRN0WQAAL_Yg.jpg\",\"url\":\"https:\\/\\/t.co\\/Hu0fPeWVzN\",\"display_url\":\"pic.twitter.com\\/Hu0fPeWVzN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Llyodben56\\/status\\/1554704243826823170\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":296,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":296,\"h\":170,\"resize\":\"fit\"},\"small\":{\"w\":296,\"h\":170,\"resize\":\"fit\"}}}]},\"1088\":null,\"1089\":{\"media\":[{\"id\":1554702844980510720,\"id_str\":\"1554702844980510720\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"url\":\"https:\\/\\/t.co\\/mUSyx7YyU8\",\"display_url\":\"pic.twitter.com\\/mUSyx7YyU8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554703008604102656\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":127966,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/vid\\/480x270\\/O-PFm5S4TSgZA6TV.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/vid\\/640x360\\/lpxZf8-KlgAqzeh1.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/vid\\/1280x720\\/fMSoKWJQf43cL7Jd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/pl\\/nYkQpjtm9RCPD-fY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1090\":{\"media\":[{\"id\":1554701933344178179,\"id_str\":\"1554701933344178179\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"url\":\"https:\\/\\/t.co\\/uCudsKYuHQ\",\"display_url\":\"pic.twitter.com\\/uCudsKYuHQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gabriel1tv\\/status\\/1554702333577150466\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":57767,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/480x852\\/efC_yNkHtXYx0TCY.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/320x568\\/_nkS18ZfMTpOQ_qW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/pl\\/A6ckCZLhh__AhJIT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/576x1024\\/7KtmXTkR1OS0UoXv.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1091\":{\"media\":[{\"id\":1554701102259527680,\"id_str\":\"1554701102259527680\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554701114586660868,\"id_str\":\"1554701114586660868\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNobTLXgAQVjlm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNobTLXgAQVjlm.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"}}}]},\"1092\":null,\"1093\":null,\"1094\":{\"media\":[{\"id\":1554697439583551488,\"id_str\":\"1554697439583551488\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"url\":\"https:\\/\\/t.co\\/EDUnzkz6ar\",\"display_url\":\"pic.twitter.com\\/EDUnzkz6ar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OyeseekerSamuel\\/status\\/1554697466905350146\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"1095\":{\"media\":[{\"id\":1554696305351483392,\"id_str\":\"1554696305351483392\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"url\":\"https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"display_url\":\"pic.twitter.com\\/Q1TM4ZvoeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1554696312964218880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1096\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1097\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1098\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1099\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1100\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1101\":{\"media\":[{\"id\":1554694555114639361,\"id_str\":\"1554694555114639361\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554694555114639361\\/pu\\/img\\/zpK1dVYU5nj1iVLV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554694555114639361\\/pu\\/img\\/zpK1dVYU5nj1iVLV.jpg\",\"url\":\"https:\\/\\/t.co\\/SZoWb3ncZR\",\"display_url\":\"pic.twitter.com\\/SZoWb3ncZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554694632860274688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27033,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554694555114639361\\/pu\\/pl\\/j4fRclTHPyn7-KBu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554694555114639361\\/pu\\/vid\\/320x568\\/j5eo5Zh4uUznygoW.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554694555114639361\\/pu\\/vid\\/480x852\\/72d5JthJEBS6pLc-.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554694555114639361\\/pu\\/vid\\/720x1280\\/tONjcL7aXob1S6-s.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1102\":{\"media\":[{\"id\":1554694558076010496,\"id_str\":\"1554694558076010496\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"url\":\"https:\\/\\/t.co\\/qKQVzBdYm4\",\"display_url\":\"pic.twitter.com\\/qKQVzBdYm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554694569500897282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"},\"medium\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"}}}]},\"1103\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1104\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1105\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1106\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1107\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1108\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1109\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1110\":null,\"1111\":null,\"1112\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1113\":{\"media\":[{\"id\":1554690663807127557,\"id_str\":\"1554690663807127557\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554690663794593792,\"id_str\":\"1554690663794593792\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-8X0AA-ILm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-8X0AA-ILm.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1792,\"resize\":\"fit\"},\"medium\":{\"w\":643,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554690663819649029,\"id_str\":\"1554690663819649029\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6_CWIAUIPqh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6_CWIAUIPqh.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":643,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1792,\"resize\":\"fit\"}}}]},\"1114\":{\"media\":[{\"id\":1554690266120044545,\"id_str\":\"1554690266120044545\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"url\":\"https:\\/\\/t.co\\/gb3t8xLJMa\",\"display_url\":\"pic.twitter.com\\/gb3t8xLJMa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DOluwarado\\/status\\/1554690307333160963\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":35566,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/pl\\/RkanugZSvUloueTk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/480x852\\/Pf8IEOeKx73A6dml.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/540x960\\/5oBxauH9JH-77mI2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/320x568\\/X1-lxuQNRBfXgEpc.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1115\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1116\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1117\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1118\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1119\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1120\":null,\"1121\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1122\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZEd7\",\"display_url\":\"pic.twitter.com\\/y5GWRqZEd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1123\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1124\":null,\"1125\":null,\"1126\":{\"media\":[{\"id\":1554687110980182016,\"id_str\":\"1554687110980182016\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"url\":\"https:\\/\\/t.co\\/L8esduYBU5\",\"display_url\":\"pic.twitter.com\\/L8esduYBU5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DNobody101\\/status\\/1554687233462251521\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":256,\"h\":400,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,25],\"duration_millis\":12866,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554687110980182016\\/pu\\/pl\\/4jDjYcK9rx4jDt-s.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554687110980182016\\/pu\\/vid\\/256x400\\/MsDUlhgfBSV-wDnz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1127\":{\"media\":[{\"id\":1554684899164045312,\"id_str\":\"1554684899164045312\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"url\":\"https:\\/\\/t.co\\/K71xuM0B4K\",\"display_url\":\"pic.twitter.com\\/K71xuM0B4K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olojo_michael\\/status\\/1554684901747818497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"1128\":{\"media\":[{\"id\":1554684441557372928,\"id_str\":\"1554684441557372928\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"url\":\"https:\\/\\/t.co\\/bbtfnREtHs\",\"display_url\":\"pic.twitter.com\\/bbtfnREtHs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554684467146792962\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"large\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":375,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[444,245],\"duration_millis\":6776,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/vid\\/488x270\\/IYoSZUWi8csdAN7j.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/vid\\/652x360\\/KEP9fK8pq2gJb4FJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/pl\\/YIqkgaDT2i5u1q6P.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/vid\\/888x490\\/kOIfB1DXHmN-rT2z.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1129\":{\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29868,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/540x540\\/8PlMTK-z1sGoGzJv.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/320x320\\/6xOCFrmDl7C66h41.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/pl\\/wMt_AULV3UhA6Wk_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/640x640\\/WciwaqGmLy4PVePK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1130\":null,\"1131\":{\"media\":[{\"id\":1554683538263650304,\"id_str\":\"1554683538263650304\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"url\":\"https:\\/\\/t.co\\/t4WEyvpAVd\",\"display_url\":\"pic.twitter.com\\/t4WEyvpAVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554683551077273600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"}}}]},\"1132\":{\"media\":[{\"id\":1554682413741232129,\"id_str\":\"1554682413741232129\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"url\":\"https:\\/\\/t.co\\/nKjT1dfk9O\",\"display_url\":\"pic.twitter.com\\/nKjT1dfk9O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554682464236437505\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6965,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/720x1280\\/tq2HWljflo7l42pI.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/320x568\\/8I94hDRkL46bOzoz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/480x852\\/aIQr_5BQzt_eh0-Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/pl\\/EUVWCYN9WR1gUIbG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1133\":{\"media\":[{\"id\":1554682389405769728,\"id_str\":\"1554682389405769728\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"url\":\"https:\\/\\/t.co\\/OwaPX1mvFZ\",\"display_url\":\"pic.twitter.com\\/OwaPX1mvFZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Balzack_17\\/status\\/1554682393843359744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":151,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":143,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":151,\"resize\":\"fit\"}}}]},\"1134\":{\"media\":[{\"id\":1554680608529448962,\"id_str\":\"1554680608529448962\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554680608529448962\\/pu\\/img\\/B6c8UH5bG8bteCNu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554680608529448962\\/pu\\/img\\/B6c8UH5bG8bteCNu.jpg\",\"url\":\"https:\\/\\/t.co\\/7BqCMFuyWa\",\"display_url\":\"pic.twitter.com\\/7BqCMFuyWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554680702549086209\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":31738,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554680608529448962\\/pu\\/pl\\/0YevJfMY8HaSmLMV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554680608529448962\\/pu\\/vid\\/480x852\\/DnwJRSshSLzywANu.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554680608529448962\\/pu\\/vid\\/320x568\\/YLjshe7k4HdWmqZj.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554680608529448962\\/pu\\/vid\\/720x1280\\/OM22LuBVzqpjyvHa.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1135\":null,\"1136\":null,\"1137\":{\"media\":[{\"id\":1554678135123488769,\"id_str\":\"1554678135123488769\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"url\":\"https:\\/\\/t.co\\/3ZlCFgyKk7\",\"display_url\":\"pic.twitter.com\\/3ZlCFgyKk7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554678221798400000\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":804,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":754,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":427,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,201],\"duration_millis\":31466,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/vid\\/572x360\\/ufW08budYvlcVkrA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/pl\\/CHlWzETj_JaDbjlT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/vid\\/428x270\\/6I9X_osCNF2Oc7mH.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/vid\\/1146x720\\/IpGUb6VPMSNmti4I.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1138\":{\"media\":[{\"id\":1554676010331049984,\"id_str\":\"1554676010331049984\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"url\":\"https:\\/\\/t.co\\/oddZSMJqci\",\"display_url\":\"pic.twitter.com\\/oddZSMJqci\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554676028567863297\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"medium\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"small\":{\"w\":520,\"h\":292,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[130,73],\"duration_millis\":8933,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554676010331049984\\/pu\\/vid\\/480x270\\/XLW7vPcCP3BXXEPB.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554676010331049984\\/pu\\/vid\\/520x292\\/gUewJ2IuHUHoM4ep.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554676010331049984\\/pu\\/pl\\/sEGfevaGeP1HaDZN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1139\":{\"media\":[{\"id\":1554675711688196096,\"id_str\":\"1554675711688196096\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"url\":\"https:\\/\\/t.co\\/lFax7HJS5c\",\"display_url\":\"pic.twitter.com\\/lFax7HJS5c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675750741356544\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":30000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675711688196096\\/pu\\/vid\\/320x556\\/bTu1AJrNBvKQctZm.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675711688196096\\/pu\\/vid\\/368x640\\/69sHyQ7_EshcQEr-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675711688196096\\/pu\\/pl\\/DCaEKSVCvnN59pt2.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1140\":{\"media\":[{\"id\":1554675343805804544,\"id_str\":\"1554675343805804544\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"url\":\"https:\\/\\/t.co\\/yh8YBUNbtJ\",\"display_url\":\"pic.twitter.com\\/yh8YBUNbtJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675349258371072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":418,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"}}}]},\"1141\":{\"media\":[{\"id\":1554674770662531072,\"id_str\":\"1554674770662531072\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"url\":\"https:\\/\\/t.co\\/P3V7zJX26c\",\"display_url\":\"pic.twitter.com\\/P3V7zJX26c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554674844339675136\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":33733,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/vid\\/480x270\\/txWFDh9jQ4m3NOQ_.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/vid\\/640x360\\/N4SdoHKTRjUmquw1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/pl\\/-yJylBO1biZRCSiT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/vid\\/1280x720\\/dWBiQOXVuxY8uewO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1142\":{\"media\":[{\"id\":1554672480987627523,\"id_str\":\"1554672480987627523\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"url\":\"https:\\/\\/t.co\\/PPFuzmH34P\",\"display_url\":\"pic.twitter.com\\/PPFuzmH34P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554672615503060992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":66524,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/pl\\/_CieEmAiwr23yzcG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/320x568\\/cue5BfLlkfCuXCn1.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/720x1280\\/REitIbspgW2wJgEK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/480x852\\/xz0YoOtoXjtYbJf6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1143\":null,\"1144\":{\"media\":[{\"id\":1554663811361243137,\"id_str\":\"1554663811361243137\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"url\":\"https:\\/\\/t.co\\/WOAC3Y4qkx\",\"display_url\":\"pic.twitter.com\\/WOAC3Y4qkx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mkaketo\\/status\\/1554663850615742467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"},\"large\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"}}}]},\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":{\"media\":[{\"id\":1554654391281618947,\"id_str\":\"1554654391281618947\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"url\":\"https:\\/\\/t.co\\/h4c38mQP8m\",\"display_url\":\"pic.twitter.com\\/h4c38mQP8m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554654394930577419\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"}}}]},\"1149\":{\"media\":[{\"id\":1554652697005023232,\"id_str\":\"1554652697005023232\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"url\":\"https:\\/\\/t.co\\/AFriQxiHsH\",\"display_url\":\"pic.twitter.com\\/AFriQxiHsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554652780295495681\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":304,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[19,40],\"duration_millis\":19232,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554652697005023232\\/pu\\/vid\\/304x640\\/ioQzxacvEQUZxkJS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554652697005023232\\/pu\\/pl\\/NnQPFitCyoQurMnB.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1150\":{\"media\":[{\"id\":1554648606262665216,\"id_str\":\"1554648606262665216\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"url\":\"https:\\/\\/t.co\\/TwxxzFGRHo\",\"display_url\":\"pic.twitter.com\\/TwxxzFGRHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eugene_iwunze\\/status\\/1554648838211833856\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":16497,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/vid\\/360x270\\/BwR7MuBNI1eaLHlX.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/vid\\/640x480\\/qb29rOdaphQqj_VQ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/vid\\/480x360\\/fT7C2aals67yNarL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/pl\\/Xr-_k7FJjIEG5tz9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1151\":null,\"1152\":{\"media\":[{\"id\":1554642733482082313,\"id_str\":\"1554642733482082313\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"url\":\"https:\\/\\/t.co\\/OBdiJp9HTM\",\"display_url\":\"pic.twitter.com\\/OBdiJp9HTM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lit_spych0\\/status\\/1554642745213558785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":630,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"}}}]},\"1153\":{\"media\":[{\"id\":1554637450563276803,\"id_str\":\"1554637450563276803\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"url\":\"https:\\/\\/t.co\\/ajYFtXFLD2\",\"display_url\":\"pic.twitter.com\\/ajYFtXFLD2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9yperri\\/status\\/1554638440527962112\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,10],\"duration_millis\":38533,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/pl\\/P0krj0KBVtHMKdM7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/vid\\/720x800\\/RvBR10qulsJtbc3v.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/vid\\/320x354\\/jgMsMGR5L16gzm1s.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/vid\\/480x532\\/3ViP9UwapUDunUgO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1154\":null,\"1155\":null,\"1156\":{\"media\":[{\"id\":1554637063869300736,\"id_str\":\"1554637063869300736\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"url\":\"https:\\/\\/t.co\\/PKifp64k9P\",\"display_url\":\"pic.twitter.com\\/PKifp64k9P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/seemeon79\\/status\\/1554637068256559105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1157\":{\"media\":[{\"id\":1554635275258691584,\"id_str\":\"1554635275258691584\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"url\":\"https:\\/\\/t.co\\/xbluBJ1Bzl\",\"display_url\":\"pic.twitter.com\\/xbluBJ1Bzl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zubyblaq4\\/status\\/1554635445933334530\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[6,11],\"duration_millis\":45000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/pl\\/qQGQ04wuRzsp7w_m.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/vid\\/672x1232\\/9kO-pFdj1epUZ-j4.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/vid\\/320x586\\/YwCcmt6qY8zAfUEZ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/vid\\/480x880\\/6Ksw5uHA4C0lCgax.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1158\":{\"media\":[{\"id\":1554630376060076032,\"id_str\":\"1554630376060076032\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"url\":\"https:\\/\\/t.co\\/YVk6rRhGYx\",\"display_url\":\"pic.twitter.com\\/YVk6rRhGYx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ychizway\\/status\\/1554630465654505472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":17133,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/320x568\\/3FY7NWFnFwhGxiJi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/480x852\\/46-RKMXMrHST8wIZ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/720x1280\\/G55a3ug6-hNsx6jT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/pl\\/S5lrgkClnOPJwf6X.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1159\":{\"media\":[{\"id\":1554628109382651907,\"id_str\":\"1554628109382651907\",\"indices\":[87,110],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554628109382651907\\/pu\\/img\\/-k8oOp8mmEEfoq9W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554628109382651907\\/pu\\/img\\/-k8oOp8mmEEfoq9W.jpg\",\"url\":\"https:\\/\\/t.co\\/m64YpYaeDU\",\"display_url\":\"pic.twitter.com\\/m64YpYaeDU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamyahayaadam\\/status\\/1554628198813540352\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":7000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554628109382651907\\/pu\\/vid\\/576x1024\\/seanIFB0A3KOk48L.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554628109382651907\\/pu\\/vid\\/320x568\\/5wH5dOexVMjBj83C.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554628109382651907\\/pu\\/pl\\/46TAFLqNcZwKms9j.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554628109382651907\\/pu\\/vid\\/480x852\\/lleM-JHYBDPnWnG4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1160\":{\"media\":[{\"id\":1554619598124859392,\"id_str\":\"1554619598124859392\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"url\":\"https:\\/\\/t.co\\/Iv9ZvgYBiO\",\"display_url\":\"pic.twitter.com\\/Iv9ZvgYBiO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sheffy_b\\/status\\/1554619892044861441\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":70608,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/pl\\/RGCHPrLQaf7iMpwU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/vid\\/480x852\\/5F1wCRzwn0lrVcJO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/vid\\/320x568\\/2kHTmOmtgCBL5Kvb.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/vid\\/720x1280\\/iI1VYM-oC22orUlK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1161\":null,\"1162\":{\"media\":[{\"id\":1554618059440246784,\"id_str\":\"1554618059440246784\",\"indices\":[33,56],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"url\":\"https:\\/\\/t.co\\/AV7wAnvbfr\",\"display_url\":\"pic.twitter.com\\/AV7wAnvbfr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/israelpaulonyah\\/status\\/1554618074481016832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":360,\"resize\":\"fit\"}}}]},\"1163\":null,\"1164\":{\"media\":[{\"id\":1554614868568948736,\"id_str\":\"1554614868568948736\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"large\":{\"w\":403,\"h\":269,\"resize\":\"fit\"}}},{\"id\":1554614871618211841,\"id_str\":\"1554614871618211841\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_TFX0AEDxGs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_TFX0AEDxGs.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1171,\"h\":825,\"resize\":\"fit\"},\"large\":{\"w\":1171,\"h\":825,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":479,\"resize\":\"fit\"}}},{\"id\":1554614880128405507,\"id_str\":\"1554614880128405507\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_yyXEAM9yvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_yyXEAM9yvp.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":534,\"h\":586,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":534,\"h\":586,\"resize\":\"fit\"},\"large\":{\"w\":534,\"h\":586,\"resize\":\"fit\"}}}]},\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":{\"media\":[{\"id\":1554611265712037888,\"id_str\":\"1554611265712037888\",\"indices\":[56,79],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWtaCWIAAx9eu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWtaCWIAAx9eu.jpg\",\"url\":\"https:\\/\\/t.co\\/s8CNiIL5ig\",\"display_url\":\"pic.twitter.com\\/s8CNiIL5ig\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Khojo_Hazard25\\/status\\/1554611268228710402\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":360,\"resize\":\"fit\"}}}]},\"1169\":{\"media\":[{\"id\":1554610553548689410,\"id_str\":\"1554610553548689410\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"url\":\"https:\\/\\/t.co\\/mI2CAEvgD3\",\"display_url\":\"pic.twitter.com\\/mI2CAEvgD3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554610609047670785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1625,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":952,\"h\":1200,\"resize\":\"fit\"}}}]},\"1170\":null,\"1171\":{\"media\":[{\"id\":1554608983436136448,\"id_str\":\"1554608983436136448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"url\":\"https:\\/\\/t.co\\/k8OQNbybAR\",\"display_url\":\"pic.twitter.com\\/k8OQNbybAR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554609029619523584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":9380,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/pl\\/pgBPDLM47DQRy8LF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/vid\\/320x564\\/fm-bHOaE2R-OEy7W.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/vid\\/480x848\\/NJmqG3lydOXclaVH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1172\":{\"media\":[{\"id\":1554607722762584064,\"id_str\":\"1554607722762584064\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"url\":\"https:\\/\\/t.co\\/4xz5V4RVAT\",\"display_url\":\"pic.twitter.com\\/4xz5V4RVAT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Urbandistrictng\\/status\\/1554607749148905474\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":3166,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554607722762584064\\/pu\\/vid\\/320x564\\/A2g_APhu_elGgQgP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554607722762584064\\/pu\\/vid\\/480x848\\/wQW8PbC6gYs8TTHg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554607722762584064\\/pu\\/pl\\/xOHHgbKr9iXikx4c.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1173\":{\"media\":[{\"id\":1554606533408858113,\"id_str\":\"1554606533408858113\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"url\":\"https:\\/\\/t.co\\/ZkJhDKtoXy\",\"display_url\":\"pic.twitter.com\\/ZkJhDKtoXy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lawehilegbu\\/status\\/1554606539872288769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554606537296977926,\"id_str\":\"1554606537296977926\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSaLUWIAYi0y3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSaLUWIAYi0y3.jpg\",\"url\":\"https:\\/\\/t.co\\/ZkJhDKtoXy\",\"display_url\":\"pic.twitter.com\\/ZkJhDKtoXy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lawehilegbu\\/status\\/1554606539872288769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"}}}]},\"1174\":{\"media\":[{\"id\":1554606337211908097,\"id_str\":\"1554606337211908097\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"url\":\"https:\\/\\/t.co\\/c4hYMDSAaq\",\"display_url\":\"pic.twitter.com\\/c4hYMDSAaq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554606340001173504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"small\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"large\":{\"w\":548,\"h\":548,\"resize\":\"fit\"}}}]},\"1175\":{\"media\":[{\"id\":1554603542266216453,\"id_str\":\"1554603542266216453\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"url\":\"https:\\/\\/t.co\\/G5tXbMi8JI\",\"display_url\":\"pic.twitter.com\\/G5tXbMi8JI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554603566140198912\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":355,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,44],\"duration_millis\":6542,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/vid\\/368x704\\/i3BjdQuVeas3qU2m.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/vid\\/320x612\\/cam0KQsRzZwqM76S.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/pl\\/SQuvEF80lrKo__Sg.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1176\":{\"media\":[{\"id\":1554602770505809920,\"id_str\":\"1554602770505809920\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"url\":\"https:\\/\\/t.co\\/e54sgy8pxo\",\"display_url\":\"pic.twitter.com\\/e54sgy8pxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602830664802305\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":23048,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/pl\\/WgDfNwVQYYxLOsxJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/480x852\\/o-OdLn23xPZJYT5Q.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/576x1024\\/W9_SEbyQAhbmHDQD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/320x568\\/panBhxJchCoJ7wyX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1177\":{\"media\":[{\"id\":1554601929199714304,\"id_str\":\"1554601929199714304\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"url\":\"https:\\/\\/t.co\\/qtcJ27cTDc\",\"display_url\":\"pic.twitter.com\\/qtcJ27cTDc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602151254556680\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":79373,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/pl\\/PMiQGKZENsKtQhWe.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/320x568\\/eIBbDsJxcPnoOlxz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/480x852\\/6Djqns_RttXe2wxm.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/576x1024\\/Wrn7ClwSrMBy5DhO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1178\":null,\"1179\":{\"media\":[{\"id\":1554601188276195329,\"id_str\":\"1554601188276195329\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"url\":\"https:\\/\\/t.co\\/evluzp5XOj\",\"display_url\":\"pic.twitter.com\\/evluzp5XOj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554601323043377152\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":671,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":716,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,179],\"duration_millis\":69200,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/pl\\/QjOXDdqRgzrohBO0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/vid\\/642x360\\/31sZiE79gER4VAha.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/vid\\/1280x716\\/_wl9oSXw2MPjCZpA.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/vid\\/482x270\\/WRi3pRO0oDuU3Z2S.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1180\":{\"media\":[{\"id\":1554600621277331456,\"id_str\":\"1554600621277331456\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"url\":\"https:\\/\\/t.co\\/2QbWRdDCYQ\",\"display_url\":\"pic.twitter.com\\/2QbWRdDCYQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554600627451449345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1412,\"resize\":\"fit\"}}}]},\"1181\":{\"media\":[{\"id\":1554599720932327425,\"id_str\":\"1554599720932327425\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"url\":\"https:\\/\\/t.co\\/cz3d3iBHCW\",\"display_url\":\"pic.twitter.com\\/cz3d3iBHCW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554599767337992197\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"}}}]},\"1182\":{\"media\":[{\"id\":1554599422385864704,\"id_str\":\"1554599422385864704\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6uBqjHALV\",\"display_url\":\"pic.twitter.com\\/Y6uBqjHALV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554599480476975104\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":16278,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/vid\\/480x848\\/ofic7dZCT-aNYK1Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/pl\\/RQS6JEufrstPbB9v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/vid\\/320x564\\/fgk2_ggt6rs-UM0u.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1183\":null,\"1184\":{\"media\":[{\"id\":1554597524304023552,\"id_str\":\"1554597524304023552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"url\":\"https:\\/\\/t.co\\/FhfDGunyTi\",\"display_url\":\"pic.twitter.com\\/FhfDGunyTi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554597548131745793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"1185\":{\"media\":[{\"id\":1554597007825698816,\"id_str\":\"1554597007825698816\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"url\":\"https:\\/\\/t.co\\/uDd8WrJ4ea\",\"display_url\":\"pic.twitter.com\\/uDd8WrJ4ea\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554597054571225088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":9546,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/vid\\/480x848\\/N119Ml4JbdGdVHCc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/pl\\/P5juKTxdN0XYZoHc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/vid\\/320x564\\/aFt76PBA7cDuFD-f.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1186\":{\"media\":[{\"id\":1554596190947246080,\"id_str\":\"1554596190947246080\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"url\":\"https:\\/\\/t.co\\/RtVmnAvt1C\",\"display_url\":\"pic.twitter.com\\/RtVmnAvt1C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kapital929\\/status\\/1554597018705747968\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":140026,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/pl\\/SAfd_uatgjBL76ds.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/vid\\/352x640\\/sSlT3OskILbErszN.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/vid\\/320x580\\/P16Fcs9VSQgK0uRr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1187\":{\"media\":[{\"id\":1554594537326125056,\"id_str\":\"1554594537326125056\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"url\":\"https:\\/\\/t.co\\/PBdTHFPCJc\",\"display_url\":\"pic.twitter.com\\/PBdTHFPCJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/teacherchike1\\/status\\/1554594793111654402\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":132540,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/720x1280\\/VMhxukKfvLyOobG0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/pl\\/RuGEORJSj_UVQme9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/320x568\\/spNlw1HYxul-TSig.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/480x852\\/gL5a5FHp3CR7cyzV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1188\":null,\"1189\":{\"media\":[{\"id\":1554591155941253121,\"id_str\":\"1554591155941253121\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"url\":\"https:\\/\\/t.co\\/ShfbN1sSL9\",\"display_url\":\"pic.twitter.com\\/ShfbN1sSL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/louis_prinzy\\/status\\/1554591385281593347\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[222,127],\"duration_millis\":36800,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/pl\\/iOJtdvK-o_ZaN4bP.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/vid\\/888x508\\/v9WhycKhLhYTu-Bc.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/vid\\/470x270\\/46VASsR2T0u181kf.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/vid\\/628x360\\/O1ZgDIsLcaHe_DNR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1190\":null,\"1191\":{\"media\":[{\"id\":1554590630231277572,\"id_str\":\"1554590630231277572\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"url\":\"https:\\/\\/t.co\\/lJPjiWEKfZ\",\"display_url\":\"pic.twitter.com\\/lJPjiWEKfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sirvee101\\/status\\/1554590639408484353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"}}}]},\"1192\":null,\"1193\":{\"media\":[{\"id\":1554589156348674055,\"id_str\":\"1554589156348674055\",\"indices\":[222,245],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"url\":\"https:\\/\\/t.co\\/4qOh0Bcriz\",\"display_url\":\"pic.twitter.com\\/4qOh0Bcriz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifestylegist1\\/status\\/1554589166352187393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":831,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":831,\"resize\":\"fit\"}}}]},\"1194\":null,\"1195\":{\"media\":[{\"id\":1554588441756704768,\"id_str\":\"1554588441756704768\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"url\":\"https:\\/\\/t.co\\/Y0fdqSTitx\",\"display_url\":\"pic.twitter.com\\/Y0fdqSTitx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZOrogho\\/status\\/1554588484404449289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":446,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":787,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1284,\"h\":1957,\"resize\":\"fit\"}}}]},\"1196\":{\"media\":[{\"id\":1554587975564103680,\"id_str\":\"1554587975564103680\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"url\":\"https:\\/\\/t.co\\/4o2OIyw7oL\",\"display_url\":\"pic.twitter.com\\/4o2OIyw7oL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aboki_30BG\\/status\\/1554587978223288320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":582,\"h\":500,\"resize\":\"fit\"}}}]},\"1197\":null,\"1198\":{\"media\":[{\"id\":1554586208952532994,\"id_str\":\"1554586208952532994\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"url\":\"https:\\/\\/t.co\\/d3aa5a3f0V\",\"display_url\":\"pic.twitter.com\\/d3aa5a3f0V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/alabedejoseph1\\/status\\/1554586355518300166\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21313,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/320x568\\/OI7uRtCIORhpIaD4.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/pl\\/PmMyyebtIymx_ajL.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/720x1280\\/KiFLBOr1UGN5aTrz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/480x852\\/2H2gKnshjZjh3wUf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1199\":null,\"1200\":null,\"1201\":{\"media\":[{\"id\":1554583971324887040,\"id_str\":\"1554583971324887040\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/bmG4W5Hwwy\",\"display_url\":\"pic.twitter.com\\/bmG4W5Hwwy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thisisalagbaa\\/status\\/1554584412356050948\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":67332,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/vid\\/480x270\\/x3dXSBI4qr2Nc8EX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/pl\\/sDHiWuVhqAkOHt-7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/vid\\/1280x720\\/mM-hXYqiC6BkHpx8.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/vid\\/640x360\\/q323LexFUsh8Jq7q.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1202\":{\"media\":[{\"id\":1554583816798355461,\"id_str\":\"1554583816798355461\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"url\":\"https:\\/\\/t.co\\/zaYOx6IOCb\",\"display_url\":\"pic.twitter.com\\/zaYOx6IOCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554583820158001152\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"1203\":{\"media\":[{\"id\":1554582993804873728,\"id_str\":\"1554582993804873728\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"url\":\"https:\\/\\/t.co\\/F075q1h4GA\",\"display_url\":\"pic.twitter.com\\/F075q1h4GA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554583020010901504\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":19258,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/pl\\/P8TUzNYFmD0Y9wIg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/vid\\/848x480\\/czuNBSO94tEE8mgm.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/vid\\/636x360\\/170hVsFnRLXyNMEu.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/vid\\/476x270\\/IQPZyNZrUxpRFJb1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1204\":null,\"1205\":{\"media\":[{\"id\":1554568929242226689,\"id_str\":\"1554568929242226689\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLwNGZXoAE31DZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLwNGZXoAE31DZ.jpg\",\"url\":\"https:\\/\\/t.co\\/Kd5k8OVcfa\",\"display_url\":\"pic.twitter.com\\/Kd5k8OVcfa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554582779278548993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":765,\"resize\":\"fit\"},\"small\":{\"w\":667,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":765,\"resize\":\"fit\"}}},{\"id\":1554582293251067909,\"id_str\":\"1554582293251067909\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL8W_NXkAUChhk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL8W_NXkAUChhk.jpg\",\"url\":\"https:\\/\\/t.co\\/Kd5k8OVcfa\",\"display_url\":\"pic.twitter.com\\/Kd5k8OVcfa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554582779278548993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":750,\"h\":305,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":305,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":277,\"resize\":\"fit\"}}},{\"id\":1554582491603795968,\"id_str\":\"1554582491603795968\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL8iiIWAAA4oK1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL8iiIWAAA4oK1.jpg\",\"url\":\"https:\\/\\/t.co\\/Kd5k8OVcfa\",\"display_url\":\"pic.twitter.com\\/Kd5k8OVcfa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554582779278548993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":562,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":562,\"resize\":\"fit\"}}},{\"id\":1554582740489699330,\"id_str\":\"1554582740489699330\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL8xBTXgAIWNix.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL8xBTXgAIWNix.jpg\",\"url\":\"https:\\/\\/t.co\\/Kd5k8OVcfa\",\"display_url\":\"pic.twitter.com\\/Kd5k8OVcfa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554582779278548993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":499,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":751,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":751,\"resize\":\"fit\"}}}]},\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":{\"media\":[{\"id\":1554581897132789760,\"id_str\":\"1554581897132789760\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"url\":\"https:\\/\\/t.co\\/UT5Uy5HRvJ\",\"display_url\":\"pic.twitter.com\\/UT5Uy5HRvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554581905239969792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":912,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":912,\"resize\":\"fit\"}}}]},\"1210\":null,\"1211\":null,\"1212\":{\"media\":[{\"id\":1554581234235412481,\"id_str\":\"1554581234235412481\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"url\":\"https:\\/\\/t.co\\/NFhyoMAUlk\",\"display_url\":\"pic.twitter.com\\/NFhyoMAUlk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jos1Saint\\/status\\/1554581240686297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"}}}]},\"1213\":{\"media\":[{\"id\":1554581005146652674,\"id_str\":\"1554581005146652674\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"url\":\"https:\\/\\/t.co\\/4VG90Qm9JZ\",\"display_url\":\"pic.twitter.com\\/4VG90Qm9JZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oladeji_ogunsh\\/status\\/1554581013409546248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1792,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"1214\":{\"media\":[{\"id\":1554580462596767744,\"id_str\":\"1554580462596767744\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL6sbfXwAAKemG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL6sbfXwAAKemG.jpg\",\"url\":\"https:\\/\\/t.co\\/47N7oXkD21\",\"display_url\":\"pic.twitter.com\\/47N7oXkD21\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554580482276335617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":562,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":562,\"resize\":\"fit\"}}},{\"id\":1554580468028293127,\"id_str\":\"1554580468028293127\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL6svuWQAcQU3N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL6svuWQAcQU3N.jpg\",\"url\":\"https:\\/\\/t.co\\/47N7oXkD21\",\"display_url\":\"pic.twitter.com\\/47N7oXkD21\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554580482276335617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":750,\"h\":562,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":562,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1554580472646275072,\"id_str\":\"1554580472646275072\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL6tA7XEAANiYC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL6tA7XEAANiYC.jpg\",\"url\":\"https:\\/\\/t.co\\/47N7oXkD21\",\"display_url\":\"pic.twitter.com\\/47N7oXkD21\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554580482276335617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":499,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":751,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":751,\"resize\":\"fit\"}}},{\"id\":1554580476618326017,\"id_str\":\"1554580476618326017\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL6tPuXwAEtV23.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL6tPuXwAEtV23.jpg\",\"url\":\"https:\\/\\/t.co\\/47N7oXkD21\",\"display_url\":\"pic.twitter.com\\/47N7oXkD21\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jopas_gh\\/status\\/1554580482276335617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":562,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":562,\"resize\":\"fit\"}}}]},\"1215\":{\"media\":[{\"id\":1554579304125763584,\"id_str\":\"1554579304125763584\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"url\":\"https:\\/\\/t.co\\/YMztRiBL5u\",\"display_url\":\"pic.twitter.com\\/YMztRiBL5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamogswagg\\/status\\/1554579339567661056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1216\":{\"media\":[{\"id\":1554579114564239360,\"id_str\":\"1554579114564239360\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554579127121969153,\"id_str\":\"1554579127121969153\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5esdXgAEBMnP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5esdXgAEBMnP.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"small\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"medium\":{\"w\":415,\"h\":363,\"resize\":\"fit\"}}},{\"id\":1554579132545130498,\"id_str\":\"1554579132545130498\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5fAqWYAIHJW1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5fAqWYAIHJW1.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":679,\"h\":452,\"resize\":\"fit\"},\"small\":{\"w\":679,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":679,\"h\":452,\"resize\":\"fit\"}}},{\"id\":1554579136739524609,\"id_str\":\"1554579136739524609\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5fQSXwAE5SPC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5fQSXwAE5SPC.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":715,\"h\":429,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":429,\"resize\":\"fit\"}}}]},\"1217\":null,\"1218\":{\"media\":[{\"id\":1554578031435517954,\"id_str\":\"1554578031435517954\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"url\":\"https:\\/\\/t.co\\/acD1l2dqBM\",\"display_url\":\"pic.twitter.com\\/acD1l2dqBM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554578605518249987\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/vid\\/320x568\\/uCQIy2XYBR4WR3XW.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/vid\\/480x852\\/BILjMQOu2VrlmkAQ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/vid\\/720x1280\\/1zDytdMCsheQa6kI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/pl\\/6LgvFEGeYA79ZbzO.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1219\":{\"media\":[{\"id\":1554577725578428416,\"id_str\":\"1554577725578428416\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"url\":\"https:\\/\\/t.co\\/WKf1KfCP3I\",\"display_url\":\"pic.twitter.com\\/WKf1KfCP3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danley_codes\\/status\\/1554577906474655744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9657,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/pl\\/AoC5E0LoVsbGBRwK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/320x568\\/J0dlf_8LhV2nRKo4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/480x852\\/Jmov1fvHpJ5j593e.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/720x1280\\/q7q_Dbrn_jBKVZsm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1220\":null,\"1221\":{\"media\":[{\"id\":1554576149258321921,\"id_str\":\"1554576149258321921\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"url\":\"https:\\/\\/t.co\\/g8U8HCWEfs\",\"display_url\":\"pic.twitter.com\\/g8U8HCWEfs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sub_sidy1\\/status\\/1554577036416618496\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":54982,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/pl\\/de4k4uy_0fry__Mo.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/480x270\\/IbHpqNhBGQXIYlef.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/640x360\\/8fhEH6YfgFjldA8J.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/1280x720\\/45FSISikcJ4HdDR9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1222\":null,\"1223\":null,\"1224\":{\"media\":[{\"id\":1554576110595313664,\"id_str\":\"1554576110595313664\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554576110586941443,\"id_str\":\"1554576110586941443\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AMBkmn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AMBkmn.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554576110586941441,\"id_str\":\"1554576110586941441\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AEqUD8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AEqUD8.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554576110653956098,\"id_str\":\"1554576110653956098\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vHPWYAI2xb0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vHPWYAI2xb0.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"1225\":null,\"1226\":{\"media\":[{\"id\":1554575508972736514,\"id_str\":\"1554575508972736514\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"url\":\"https:\\/\\/t.co\\/tXMNBZl0y9\",\"display_url\":\"pic.twitter.com\\/tXMNBZl0y9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/captain_edet\\/status\\/1554575519135440899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"}}},{\"id\":1554575508914012160,\"id_str\":\"1554575508914012160\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2MFlXgAAfdm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2MFlXgAAfdm8.jpg\",\"url\":\"https:\\/\\/t.co\\/tXMNBZl0y9\",\"display_url\":\"pic.twitter.com\\/tXMNBZl0y9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/captain_edet\\/status\\/1554575519135440899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"small\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"large\":{\"w\":262,\"h\":229,\"resize\":\"fit\"}}}]},\"1227\":null,\"1228\":{\"media\":[{\"id\":1554575505319464961,\"id_str\":\"1554575505319464961\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"url\":\"https:\\/\\/t.co\\/sto3iBuaWX\",\"display_url\":\"pic.twitter.com\\/sto3iBuaWX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbUtEcH_bRo\\/status\\/1554575508922400768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":872,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":463,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":818,\"resize\":\"fit\"}}}]},\"1229\":{\"media\":[{\"id\":1554575368509702145,\"id_str\":\"1554575368509702145\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"url\":\"https:\\/\\/t.co\\/2z0WSFjajx\",\"display_url\":\"pic.twitter.com\\/2z0WSFjajx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554575385966297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1146,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1755,\"h\":1838,\"resize\":\"fit\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"}}}]},\"1230\":null,\"1231\":{\"media\":[{\"id\":1554575316382875651,\"id_str\":\"1554575316382875651\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"url\":\"https:\\/\\/t.co\\/XYDehFbf1r\",\"display_url\":\"pic.twitter.com\\/XYDehFbf1r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554575319453032448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"small\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":554,\"resize\":\"fit\"}}}]},\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":{\"media\":[{\"id\":1554574473826893825,\"id_str\":\"1554574473826893825\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"url\":\"https:\\/\\/t.co\\/WaXLSMGJWu\",\"display_url\":\"pic.twitter.com\\/WaXLSMGJWu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554574477953990657\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"small\":{\"w\":259,\"h\":194,\"resize\":\"fit\"}}}]},\"1239\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1240\":null,\"1241\":{\"media\":[{\"id\":1554573919142772740,\"id_str\":\"1554573919142772740\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"url\":\"https:\\/\\/t.co\\/sivn4BF0Lt\",\"display_url\":\"pic.twitter.com\\/sivn4BF0Lt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayode_tevi\\/status\\/1554573928336691206\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":946,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1246\":{\"media\":[{\"id\":1554573613482872845,\"id_str\":\"1554573613482872845\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"url\":\"https:\\/\\/t.co\\/b3nGbPJ6WI\",\"display_url\":\"pic.twitter.com\\/b3nGbPJ6WI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Topmostnigga\\/status\\/1554573719493910528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":20788,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573613482872845\\/pu\\/vid\\/448x848\\/stE4lk5aT9g0z1ns.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573613482872845\\/pu\\/vid\\/320x604\\/M9arUMHKqMAUj-Vj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573613482872845\\/pu\\/pl\\/sp7wsZB9_VgY7iJ8.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1247\":{\"media\":[{\"id\":1554573601575165952,\"id_str\":\"1554573601575165952\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"url\":\"https:\\/\\/t.co\\/mcz8JzpAuh\",\"display_url\":\"pic.twitter.com\\/mcz8JzpAuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PBplusOilAndGas\\/status\\/1554573632428449801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1248\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1249\":null,\"1250\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1251\":null,\"1252\":{\"media\":[{\"id\":1554572788920369152,\"id_str\":\"1554572788920369152\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"url\":\"https:\\/\\/t.co\\/HQwbISDLcM\",\"display_url\":\"pic.twitter.com\\/HQwbISDLcM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HGbesh\\/status\\/1554572799079071747\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":378,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":666,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1137,\"h\":2048,\"resize\":\"fit\"}}}]},\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":{\"media\":[{\"id\":1554572134692839424,\"id_str\":\"1554572134692839424\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"url\":\"https:\\/\\/t.co\\/tcuRoXXAF3\",\"display_url\":\"pic.twitter.com\\/tcuRoXXAF3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CamillusChinon1\\/status\\/1554572159581814787\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1257\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1258\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1259\":{\"media\":[{\"id\":1554571677832560649,\"id_str\":\"1554571677832560649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554571689882697737,\"id_str\":\"1554571689882697737\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLytylWQAkecA6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLytylWQAkecA6.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":749,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":497,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554571698892046338,\"id_str\":\"1554571698892046338\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyuUJWAAIgU3T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyuUJWAAIgU3T.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}},{\"id\":1554571716155871233,\"id_str\":\"1554571716155871233\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyvUdXEAEdiUx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyvUdXEAEdiUx.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"1260\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1261\":{\"media\":[{\"id\":1554571484919652353,\"id_str\":\"1554571484919652353\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"url\":\"https:\\/\\/t.co\\/3fvdTVhxz3\",\"display_url\":\"pic.twitter.com\\/3fvdTVhxz3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/erioluu\\/status\\/1554571502409981952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"1262\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1263\":{\"media\":[{\"id\":1554571272939503617,\"id_str\":\"1554571272939503617\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"url\":\"https:\\/\\/t.co\\/StLsLPAdY2\",\"display_url\":\"pic.twitter.com\\/StLsLPAdY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554571349196242944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":528,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,10],\"duration_millis\":16044,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/296x270\\/clTKbUW4m08hCF-A.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/pl\\/sLPUGtrFxPi1Wa5y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/528x480\\/8bI65dhscddXjFLT.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/396x360\\/3_yLhXWsVkXv3VRD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1264\":null,\"1265\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1266\":null,\"1267\":{\"media\":[{\"id\":1554569453408485381,\"id_str\":\"1554569453408485381\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"url\":\"https:\\/\\/t.co\\/g210vExw4h\",\"display_url\":\"pic.twitter.com\\/g210vExw4h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554570096919646214\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":508,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[127,90],\"duration_millis\":16977,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554569453408485381\\/pu\\/vid\\/508x360\\/dkeCV4wvWwx6Rmkw.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554569453408485381\\/pu\\/vid\\/380x270\\/_fM8kpTC7Xtpgr91.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554569453408485381\\/pu\\/pl\\/oID0yxKLoQe--EFP.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1268\":null,\"1269\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1270\":{\"media\":[{\"id\":1554567277638553600,\"id_str\":\"1554567277638553600\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"url\":\"https:\\/\\/t.co\\/5QOb1BIQY2\",\"display_url\":\"pic.twitter.com\\/5QOb1BIQY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pluse_official\\/status\\/1554567302422609920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1271\":{\"media\":[{\"id\":1554567165231112192,\"id_str\":\"1554567165231112192\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"url\":\"https:\\/\\/t.co\\/sfUGAQ8nua\",\"display_url\":\"pic.twitter.com\\/sfUGAQ8nua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Macdavvis1\\/status\\/1554567192582258688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1554567180385148928,\"id_str\":\"1554567180385148928\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLunTZWYAAc9bN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLunTZWYAAc9bN.jpg\",\"url\":\"https:\\/\\/t.co\\/sfUGAQ8nua\",\"display_url\":\"pic.twitter.com\\/sfUGAQ8nua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Macdavvis1\\/status\\/1554567192582258688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2042,\"h\":1532,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"1272\":{\"media\":[{\"id\":1554567052840603650,\"id_str\":\"1554567052840603650\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"url\":\"https:\\/\\/t.co\\/LG5PfsgYol\",\"display_url\":\"pic.twitter.com\\/LG5PfsgYol\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554567123468443649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,30],\"duration_millis\":29800,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554567052840603650\\/pu\\/pl\\/Lwwmz2_7rDvfVLan.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554567052840603650\\/pu\\/vid\\/272x480\\/8EesVic9frW2XXwL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1273\":null,\"1274\":{\"media\":[{\"id\":1554566342237364224,\"id_str\":\"1554566342237364224\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"url\":\"https:\\/\\/t.co\\/G4k25DjFCh\",\"display_url\":\"pic.twitter.com\\/G4k25DjFCh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/enginecarboncl3\\/status\\/1554566359635435522\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"small\":{\"w\":621,\"h\":680,\"resize\":\"fit\"}}}]},\"1275\":{\"media\":[{\"id\":1554566176721850370,\"id_str\":\"1554566176721850370\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554566188239290368,\"id_str\":\"1554566188239290368\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLttjXWAAANpkE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLttjXWAAANpkE.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}}]},\"1276\":{\"media\":[{\"id\":1554565836060368900,\"id_str\":\"1554565836060368900\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"url\":\"https:\\/\\/t.co\\/OCxbv6UNJE\",\"display_url\":\"pic.twitter.com\\/OCxbv6UNJE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1554565885150609412\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,2],\"duration_millis\":4903,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/pl\\/uf9_eMRkOVQLdlVq.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/vid\\/544x1088\\/TKhfXWH-dJKDz21q.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/vid\\/480x960\\/viV5bQcJ3VxlaLj6.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/vid\\/320x640\\/CZDFd-7u1SX3b9PQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1277\":null,\"1278\":{\"media\":[{\"id\":1554565458031960065,\"id_str\":\"1554565458031960065\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"url\":\"https:\\/\\/t.co\\/I0oRy79J6S\",\"display_url\":\"pic.twitter.com\\/I0oRy79J6S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554565609727397888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45015,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/320x568\\/UjpWLpIH2Iqg8RmR.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/480x852\\/0jEWmSnK_YBXHtAH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/pl\\/TD0fxfPdH-aytKqw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/720x1280\\/FhPZRdgvk5NcB_lO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1279\":{\"media\":[{\"id\":1554565442655686662,\"id_str\":\"1554565442655686662\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"url\":\"https:\\/\\/t.co\\/DMOVY73bxJ\",\"display_url\":\"pic.twitter.com\\/DMOVY73bxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565491808784386\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":24760,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/478x270\\/ImRbCeS9g1ptDVe4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/638x360\\/DKU5KuKhAGNgEZOL.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/852x480\\/_BHamD5qDtTpC_3y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/pl\\/klPbjIzIPBsvQnlD.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1280\":{\"media\":[{\"id\":1554565367259090944,\"id_str\":\"1554565367259090944\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"url\":\"https:\\/\\/t.co\\/LK9Tgqbfpo\",\"display_url\":\"pic.twitter.com\\/LK9Tgqbfpo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554565373692747777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"1281\":{\"media\":[{\"id\":1554564980330094592,\"id_str\":\"1554564980330094592\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"url\":\"https:\\/\\/t.co\\/3keenBlNEu\",\"display_url\":\"pic.twitter.com\\/3keenBlNEu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565016489279498\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":17166,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/pl\\/C-MHSUetUM-03Ehu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/vid\\/480x848\\/BGzK4J-Ihv3gpvNn.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/vid\\/320x564\\/wSpVJ9jIgqAvhyuh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1282\":{\"media\":[{\"id\":1554564792278450177,\"id_str\":\"1554564792278450177\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"url\":\"https:\\/\\/t.co\\/09SipiAiwx\",\"display_url\":\"pic.twitter.com\\/09SipiAiwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554564794887421954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":492,\"h\":973,\"resize\":\"fit\"},\"small\":{\"w\":344,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":492,\"h\":973,\"resize\":\"fit\"}}}]},\"1283\":{\"media\":[{\"id\":1554564605208313857,\"id_str\":\"1554564605208313857\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564605208313857\\/pu\\/img\\/GtDBX50dsdiSR9uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564605208313857\\/pu\\/img\\/GtDBX50dsdiSR9uv.jpg\",\"url\":\"https:\\/\\/t.co\\/2VrIbfuJiq\",\"display_url\":\"pic.twitter.com\\/2VrIbfuJiq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554564668982808579\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30046,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564605208313857\\/pu\\/vid\\/320x320\\/7JA7pFgnp6TZiFY3.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564605208313857\\/pu\\/vid\\/540x540\\/Cc8pRmXNYP1K0ZKS.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564605208313857\\/pu\\/vid\\/720x720\\/TpGP0ulywHVfl_E1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564605208313857\\/pu\\/pl\\/g6SSnx1lf1XZn_eU.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1284\":{\"media\":[{\"id\":1554564294246899713,\"id_str\":\"1554564294246899713\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554564449863979009,\"id_str\":\"1554564449863979009\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLsIXaX0AEgMPo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLsIXaX0AEgMPo.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554564521875968001,\"id_str\":\"1554564521875968001\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLsMjrXkAEe4a7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLsMjrXkAEe4a7.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":620,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":934,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":934,\"h\":1024,\"resize\":\"fit\"}}}]},\"1285\":{\"media\":[{\"id\":1554563909604065282,\"id_str\":\"1554563909604065282\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"url\":\"https:\\/\\/t.co\\/4GXSetMpTG\",\"display_url\":\"pic.twitter.com\\/4GXSetMpTG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554564046287953921\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":21000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/1280x720\\/PLtxvYJj6VKNr5s4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/640x360\\/6XQKl9FISVzNIdfF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/pl\\/Y2g_9siON3YoNo6C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/480x270\\/qTSV2I5F7rnWVkzC.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1286\":{\"media\":[{\"id\":1554563716204601344,\"id_str\":\"1554563716204601344\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"url\":\"https:\\/\\/t.co\\/tESlr2Og8O\",\"display_url\":\"pic.twitter.com\\/tESlr2Og8O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FadoroTobi\\/status\\/1554563834324652032\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[76,135],\"duration_millis\":11800,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/vid\\/320x568\\/bwKp0LJZyjzc7waA.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/vid\\/480x852\\/QmFG3sVB5Yn_lAz7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/vid\\/608x1080\\/o4ZGMeP1HIj4dI9a.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/pl\\/ekr5I3PJsOD8gSQQ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1287\":{\"media\":[{\"id\":1554563339052892162,\"id_str\":\"1554563339052892162\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"url\":\"https:\\/\\/t.co\\/JY1Tr0L5rC\",\"display_url\":\"pic.twitter.com\\/JY1Tr0L5rC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ade_omo_Giwa\\/status\\/1554563551221760001\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":36453,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563339052892162\\/pu\\/vid\\/480x256\\/fP-oR3Vyyqqotb0T.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563339052892162\\/pu\\/pl\\/u0-roX8f64y8AtLN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1288\":{\"media\":[{\"id\":1554563235650707460,\"id_str\":\"1554563235650707460\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"url\":\"https:\\/\\/t.co\\/9viU1HDss1\",\"display_url\":\"pic.twitter.com\\/9viU1HDss1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1554563249894555648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1289\":null,\"1290\":{\"media\":[{\"id\":1554560263009042439,\"id_str\":\"1554560263009042439\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"url\":\"https:\\/\\/t.co\\/j6e1GbRdG3\",\"display_url\":\"pic.twitter.com\\/j6e1GbRdG3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gbachis\\/status\\/1554560269271048199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":736,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":736,\"resize\":\"fit\"}}}]},\"1291\":{\"media\":[{\"id\":1554560154431111170,\"id_str\":\"1554560154431111170\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"url\":\"https:\\/\\/t.co\\/szWcNq2iac\",\"display_url\":\"pic.twitter.com\\/szWcNq2iac\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Longdenjr1\\/status\\/1554560172017811465\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"1292\":{\"media\":[{\"id\":1554560136332681217,\"id_str\":\"1554560136332681217\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"url\":\"https:\\/\\/t.co\\/Sjbw8y0IwH\",\"display_url\":\"pic.twitter.com\\/Sjbw8y0IwH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DicksonFunkeye\\/status\\/1554560151427993602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1088,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":361,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":638,\"h\":1200,\"resize\":\"fit\"}}}]},\"1293\":null,\"1294\":null,\"1295\":{\"media\":[{\"id\":1554558659690102785,\"id_str\":\"1554558659690102785\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"url\":\"https:\\/\\/t.co\\/vrjqi5d14o\",\"display_url\":\"pic.twitter.com\\/vrjqi5d14o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554559036997226499\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":27604,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/vid\\/320x400\\/luj_HcQTOUqS9TP7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/pl\\/XaZ4P0yUluuMA-2-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/vid\\/480x600\\/rakCjRkSmQA2Efs4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1296\":{\"media\":[{\"id\":1554558875575238656,\"id_str\":\"1554558875575238656\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"url\":\"https:\\/\\/t.co\\/FEUIKswiB5\",\"display_url\":\"pic.twitter.com\\/FEUIKswiB5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Otaku_konnect\\/status\\/1554559032274345993\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":19528,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/pl\\/InXQGqgIgjnYq6gZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/vid\\/320x600\\/KnTN8QnA7ZBTG7c3.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/vid\\/656x1232\\/f636TenUEncp7ZOf.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/vid\\/480x900\\/9TjsC-fTRjX9nV11.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1297\":{\"media\":[{\"id\":1554557954673807372,\"id_str\":\"1554557954673807372\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"url\":\"https:\\/\\/t.co\\/dR7enXaCX9\",\"display_url\":\"pic.twitter.com\\/dR7enXaCX9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thebenfeyijimi\\/status\\/1554557971069374464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"}}}]},\"1298\":null,\"1299\":{\"media\":[{\"id\":1554556880302792706,\"id_str\":\"1554556880302792706\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLlPwmWYAIAGGn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLlPwmWYAIAGGn.jpg\",\"url\":\"https:\\/\\/t.co\\/7K0kAP7QF5\",\"display_url\":\"pic.twitter.com\\/7K0kAP7QF5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicholaskofiCo4\\/status\\/1554556886346776577\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":587,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":803,\"h\":693,\"resize\":\"fit\"}}}]},\"1300\":{\"media\":[{\"id\":1554556553323233282,\"id_str\":\"1554556553323233282\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"url\":\"https:\\/\\/t.co\\/aEHGtnzasE\",\"display_url\":\"pic.twitter.com\\/aEHGtnzasE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554556555688910849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"1301\":null,\"1302\":null,\"1303\":null,\"1304\":{\"media\":[{\"id\":1554555511479144457,\"id_str\":\"1554555511479144457\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"url\":\"https:\\/\\/t.co\\/2liLRM6tlC\",\"display_url\":\"pic.twitter.com\\/2liLRM6tlC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554555643092140034\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44905,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/320x320\\/RnvrzfV3hZ7FJGkS.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/720x720\\/pLRCZT6EBp9prtso.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/pl\\/pJi1cFnDYcnlDLCV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/540x540\\/4HnMHhii9JFCEXFz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1305\":{\"media\":[{\"id\":1554555488305614848,\"id_str\":\"1554555488305614848\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"url\":\"https:\\/\\/t.co\\/AhTJ0ySCrx\",\"display_url\":\"pic.twitter.com\\/AhTJ0ySCrx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChoWurld\\/status\\/1554555495012343808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":628,\"resize\":\"fit\"}}}]},\"1306\":{\"media\":[{\"id\":1554554894576754691,\"id_str\":\"1554554894576754691\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"url\":\"https:\\/\\/t.co\\/Raxmh0ZXgW\",\"display_url\":\"pic.twitter.com\\/Raxmh0ZXgW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nobleman_0\\/status\\/1554554904034811906\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"medium\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"small\":{\"w\":200,\"h\":176,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[25,22],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLjcLMXoAM_v_B.mp4\"}]}}]},\"1307\":{\"media\":[{\"id\":1554554838129721344,\"id_str\":\"1554554838129721344\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554554838322761728,\"id_str\":\"1554554838322761728\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY5oX0AAn1vg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY5oX0AAn1vg.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554554838217883648,\"id_str\":\"1554554838217883648\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY5PXgAAixD6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY5PXgAAixD6.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554554838117224590,\"id_str\":\"1554554838117224590\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY43XkI4r0KH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY43XkI4r0KH.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1308\":{\"media\":[{\"id\":1554554643858034688,\"id_str\":\"1554554643858034688\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjNlMXkAAFd7e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjNlMXkAAFd7e.jpg\",\"url\":\"https:\\/\\/t.co\\/Ah8fWjdhTv\",\"display_url\":\"pic.twitter.com\\/Ah8fWjdhTv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EmmyKin4\\/status\\/1554554648719245312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":848,\"resize\":\"fit\"}}}]},\"1309\":null,\"1310\":null,\"1311\":{\"media\":[{\"id\":1554553574088130562,\"id_str\":\"1554553574088130562\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"url\":\"https:\\/\\/t.co\\/alCbOqU2TQ\",\"display_url\":\"pic.twitter.com\\/alCbOqU2TQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554553577816920067\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"large\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1551897942151380996,\"id_str\":\"1551897942151380996\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"url\":\"https:\\/\\/t.co\\/ZkxAtQ2d0G\",\"display_url\":\"pic.twitter.com\\/ZkxAtQ2d0G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1551897982672535552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"medium\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":1551897982672535552,\"source_status_id_str\":\"1551897982672535552\",\"source_user_id\":1529562333751689217,\"source_user_id_str\":\"1529562333751689217\"}]},\"1312\":{\"media\":[{\"id\":1554553387211001857,\"id_str\":\"1554553387211001857\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"url\":\"https:\\/\\/t.co\\/NhsBTtDwFP\",\"display_url\":\"pic.twitter.com\\/NhsBTtDwFP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OtakhorEmmanuel\\/status\\/1554553518006075392\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":45023,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554553387211001857\\/pu\\/pl\\/2gI0Ufg3gUWfgQoZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554553387211001857\\/pu\\/vid\\/320x320\\/C2kIoxAzNz3xUER8.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554553387211001857\\/pu\\/vid\\/480x480\\/NBqMNGDJzuMoRU4A.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1313\":null,\"1314\":{\"media\":[{\"id\":1554550701040275459,\"id_str\":\"1554550701040275459\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"url\":\"https:\\/\\/t.co\\/Ze5IxvlGee\",\"display_url\":\"pic.twitter.com\\/Ze5IxvlGee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/me_azal\\/status\\/1554553249323253761\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":88361,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/vid\\/320x568\\/q8O_wrVJ6kBAM_9i.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/pl\\/LmX_ulm9fNXQeBSB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/vid\\/480x852\\/wexAsjSbGUolO180.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/vid\\/720x1280\\/ALJ7J8UStTm7s6bB.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1315\":null,\"1316\":{\"media\":[{\"id\":1554552848704323585,\"id_str\":\"1554552848704323585\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"url\":\"https:\\/\\/t.co\\/V2ui30jamm\",\"display_url\":\"pic.twitter.com\\/V2ui30jamm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/overhplus\\/status\\/1554553045366853634\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":110966,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/vid\\/720x1280\\/Ah6GFoLTmNARgG0u.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/vid\\/480x852\\/TQAQQ7FIh12NX2NR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/pl\\/emoLeQ_lxwLH2M4i.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/vid\\/320x568\\/so4NOo2kWztCuROG.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1317\":{\"media\":[{\"id\":1554552988705890308,\"id_str\":\"1554552988705890308\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"url\":\"https:\\/\\/t.co\\/Kovj709BMT\",\"display_url\":\"pic.twitter.com\\/Kovj709BMT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554552991683936257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1318\":{\"media\":[{\"id\":1554552833843896320,\"id_str\":\"1554552833843896320\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xu2ljAYTk\",\"display_url\":\"pic.twitter.com\\/8Xu2ljAYTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennygirl4succes\\/status\\/1554552848750346241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1319\":{\"media\":[{\"id\":1554552635730137096,\"id_str\":\"1554552635730137096\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhYsVXkAgd1oc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhYsVXkAgd1oc.jpg\",\"url\":\"https:\\/\\/t.co\\/Mpvt8jWeV3\",\"display_url\":\"pic.twitter.com\\/Mpvt8jWeV3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554552644525604865\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":879,\"resize\":\"fit\"},\"small\":{\"w\":580,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":879,\"resize\":\"fit\"}}}]},\"1320\":{\"media\":[{\"id\":1554552357991731201,\"id_str\":\"1554552357991731201\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"url\":\"https:\\/\\/t.co\\/aQw7WbalFJ\",\"display_url\":\"pic.twitter.com\\/aQw7WbalFJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554552365029724160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1321\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/LCSaSYlEaZ\",\"display_url\":\"pic.twitter.com\\/LCSaSYlEaZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1322\":null,\"1323\":null,\"1324\":{\"media\":[{\"id\":1554551317397442565,\"id_str\":\"1554551317397442565\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"url\":\"https:\\/\\/t.co\\/lp2xxqa7u3\",\"display_url\":\"pic.twitter.com\\/lp2xxqa7u3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554551325458849794\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1325\":null,\"1326\":{\"media\":[{\"id\":1554550693905764353,\"id_str\":\"1554550693905764353\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"url\":\"https:\\/\\/t.co\\/dkwjpnxd1V\",\"display_url\":\"pic.twitter.com\\/dkwjpnxd1V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/keep_itreal81\\/status\\/1554550700868247553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":349,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"}}}]},\"1327\":null,\"1328\":{\"media\":[{\"id\":1554550337264140288,\"id_str\":\"1554550337264140288\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLfS54XwAALBzI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLfS54XwAALBzI.jpg\",\"url\":\"https:\\/\\/t.co\\/qxUf8OEmum\",\"display_url\":\"pic.twitter.com\\/qxUf8OEmum\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554550345572958212\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1329\":null,\"1330\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1336\":{\"media\":[{\"id\":1554546949315067909,\"id_str\":\"1554546949315067909\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"url\":\"https:\\/\\/t.co\\/SQ7SoQkXfY\",\"display_url\":\"pic.twitter.com\\/SQ7SoQkXfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akomscopy\\/status\\/1554546962938171393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"large\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"}}},{\"id\":1554546956806098945,\"id_str\":\"1554546956806098945\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLcOIsXkAEPtG6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLcOIsXkAEPtG6.jpg\",\"url\":\"https:\\/\\/t.co\\/SQ7SoQkXfY\",\"display_url\":\"pic.twitter.com\\/SQ7SoQkXfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akomscopy\\/status\\/1554546962938171393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":641,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":758,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":758,\"resize\":\"fit\"}}}]},\"1337\":{\"media\":[{\"id\":1554546273600131079,\"id_str\":\"1554546273600131079\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"url\":\"https:\\/\\/t.co\\/VOuUsPJWID\",\"display_url\":\"pic.twitter.com\\/VOuUsPJWID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554546282605207553\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLbmXjX0AcOjug.mp4\"}]}}]},\"1338\":{\"media\":[{\"id\":1554545773810966530,\"id_str\":\"1554545773810966530\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545773810966530\\/pu\\/img\\/HPvm0a_YA6VxXMJ7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545773810966530\\/pu\\/img\\/HPvm0a_YA6VxXMJ7.jpg\",\"url\":\"https:\\/\\/t.co\\/BFLWak5IhB\",\"display_url\":\"pic.twitter.com\\/BFLWak5IhB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/clement_afreh\\/status\\/1554545801929555968\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":474,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":688,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":688,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,30],\"duration_millis\":18600,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545773810966530\\/pu\\/vid\\/688x480\\/68QWcmoPlHJ06YOq.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545773810966530\\/pu\\/vid\\/516x360\\/rdqp0WPtq1BiVBLg.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545773810966530\\/pu\\/vid\\/386x270\\/ZhIJDJKtbOd_-4hJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545773810966530\\/pu\\/pl\\/7TgdxXLwfCMQ4ife.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1339\":{\"media\":[{\"id\":1554545717922131968,\"id_str\":\"1554545717922131968\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"url\":\"https:\\/\\/t.co\\/LM6VSMyzjG\",\"display_url\":\"pic.twitter.com\\/LM6VSMyzjG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554545745671647232\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":11365,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/vid\\/480x270\\/-Hy588bLXRoAnmdw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/pl\\/Vvp5aGrIuaoF8PWK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/vid\\/960x540\\/5eARM6PXSCntFZZU.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/vid\\/640x360\\/rBVuxu_owWyZCWyl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1340\":null,\"1341\":null,\"1342\":{\"media\":[{\"id\":1554544677600239617,\"id_str\":\"1554544677600239617\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaJd_WIAEqsCd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaJd_WIAEqsCd.jpg\",\"url\":\"https:\\/\\/t.co\\/jNCRtfsYxu\",\"display_url\":\"pic.twitter.com\\/jNCRtfsYxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554544689168224257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":996,\"h\":996,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":996,\"h\":996,\"resize\":\"fit\"}}}]},\"1343\":{\"media\":[{\"id\":1554544403217321990,\"id_str\":\"1554544403217321990\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554544403217321990\\/pu\\/img\\/RovCAtN8vS3q4ty3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554544403217321990\\/pu\\/img\\/RovCAtN8vS3q4ty3.jpg\",\"url\":\"https:\\/\\/t.co\\/DDh6VrtdWh\",\"display_url\":\"pic.twitter.com\\/DDh6VrtdWh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/antwicharles26\\/status\\/1554544560809951233\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1060,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":994,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,64],\"duration_millis\":140000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554544403217321990\\/pu\\/vid\\/320x386\\/XIpEbCFQ5rQyXaWl.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554544403217321990\\/pu\\/vid\\/720x868\\/JRiTh11t0P1ByZqz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554544403217321990\\/pu\\/vid\\/480x578\\/X3sqGgttXEmwSKaw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554544403217321990\\/pu\\/pl\\/W0pQXoFZBbgJRog4.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1344\":{\"media\":[{\"id\":1554544531168788492,\"id_str\":\"1554544531168788492\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531181281281,\"id_str\":\"1554544531181281281\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8iWIAE19_k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8iWIAE19_k.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531139448836,\"id_str\":\"1554544531139448836\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8YX0AQWNMM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8YX0AQWNMM.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531156176896,\"id_str\":\"1554544531156176896\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8cXEAArX2o.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8cXEAArX2o.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}}]},\"1345\":{\"media\":[{\"id\":1554544457730629632,\"id_str\":\"1554544457730629632\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"url\":\"https:\\/\\/t.co\\/nSesxfnDTK\",\"display_url\":\"pic.twitter.com\\/nSesxfnDTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itycletylove\\/status\\/1554544471437606920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":956,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":896,\"resize\":\"fit\"}}}]},\"1346\":{\"media\":[{\"id\":1554544235260567552,\"id_str\":\"1554544235260567552\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZvuJWYAA6ork.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZvuJWYAA6ork.jpg\",\"url\":\"https:\\/\\/t.co\\/uGMcyDN5DT\",\"display_url\":\"pic.twitter.com\\/uGMcyDN5DT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554544243770900482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1347\":{\"media\":[{\"id\":1554543983598116865,\"id_str\":\"1554543983598116865\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWIAEB3in.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWIAEB3in.jpg\",\"url\":\"https:\\/\\/t.co\\/qwQ0nkqakn\",\"display_url\":\"pic.twitter.com\\/qwQ0nkqakn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfiaOkorewaa\\/status\\/1554543995967229953\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554543983598108673,\"id_str\":\"1554543983598108673\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWAAEtw7W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWAAEtw7W.jpg\",\"url\":\"https:\\/\\/t.co\\/qwQ0nkqakn\",\"display_url\":\"pic.twitter.com\\/qwQ0nkqakn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfiaOkorewaa\\/status\\/1554543995967229953\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554543983598108672,\"id_str\":\"1554543983598108672\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWAAAYjki.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZhEoWAAAYjki.jpg\",\"url\":\"https:\\/\\/t.co\\/qwQ0nkqakn\",\"display_url\":\"pic.twitter.com\\/qwQ0nkqakn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfiaOkorewaa\\/status\\/1554543995967229953\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554543984227373059,\"id_str\":\"1554543984227373059\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZhG-X0AMIUzv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZhG-X0AMIUzv.jpg\",\"url\":\"https:\\/\\/t.co\\/qwQ0nkqakn\",\"display_url\":\"pic.twitter.com\\/qwQ0nkqakn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfiaOkorewaa\\/status\\/1554543995967229953\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1348\":null,\"1349\":null,\"1350\":{\"media\":[{\"id\":1554543071760613376,\"id_str\":\"1554543071760613376\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"url\":\"https:\\/\\/t.co\\/1alsIAGmpL\",\"display_url\":\"pic.twitter.com\\/1alsIAGmpL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mentie_pride\\/status\\/1554543236122804227\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":7873,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/vid\\/320x600\\/C3gqHU5u-6b3OCOZ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/vid\\/480x900\\/BDCdOKRI3dI-KeBZ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/pl\\/zhFO1Jok1US_AHET.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/vid\\/656x1232\\/2dn2rzQIPukGxggw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1351\":{\"media\":[{\"id\":1554542946720038915,\"id_str\":\"1554542946720038915\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"url\":\"https:\\/\\/t.co\\/aLAPq2Ps0u\",\"display_url\":\"pic.twitter.com\\/aLAPq2Ps0u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554542950096543744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"1352\":{\"media\":[{\"id\":1554542891376205830,\"id_str\":\"1554542891376205830\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYhfyWYAYeYp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYhfyWYAYeYp0.jpg\",\"url\":\"https:\\/\\/t.co\\/l2WiT7tNEA\",\"display_url\":\"pic.twitter.com\\/l2WiT7tNEA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554542909042696192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":719,\"resize\":\"fit\"}}}]},\"1353\":{\"media\":[{\"id\":1554542635007836165,\"id_str\":\"1554542635007836165\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"url\":\"https:\\/\\/t.co\\/crUGc0k2UF\",\"display_url\":\"pic.twitter.com\\/crUGc0k2UF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibrahim_IbbJnr8\\/status\\/1554542637566332931\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":563,\"resize\":\"fit\"}}}]},\"1354\":{\"media\":[{\"id\":1554542157297590274,\"id_str\":\"1554542157297590274\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLX2xIXoAIlCcb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLX2xIXoAIlCcb.jpg\",\"url\":\"https:\\/\\/t.co\\/SlABzIMvPC\",\"display_url\":\"pic.twitter.com\\/SlABzIMvPC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobvacanciesgh_\\/status\\/1554542183092555779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":710,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":710,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":671,\"resize\":\"fit\"}}}]},\"1355\":null,\"1356\":{\"media\":[{\"id\":1554540335862353920,\"id_str\":\"1554540335862353920\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"url\":\"https:\\/\\/t.co\\/r7UJdM5Vc3\",\"display_url\":\"pic.twitter.com\\/r7UJdM5Vc3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1554541886446178305\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":76705,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/pl\\/sMpIfuEtQYwM6_DH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/vid\\/704x1280\\/emB5O9kVAtNc5OmO.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/vid\\/480x872\\/3ASMtHTJoa1KAgTQ.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/vid\\/320x580\\/eUxuT4TjYIu-UojW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1357\":null,\"1358\":null,\"1359\":{\"media\":[{\"id\":1554540500048384008,\"id_str\":\"1554540500048384008\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"url\":\"https:\\/\\/t.co\\/bdasAJa1dE\",\"display_url\":\"pic.twitter.com\\/bdasAJa1dE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/faithluseno\\/status\\/1554540517962178561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1262,\"resize\":\"fit\"}}}]},\"1360\":{\"media\":[{\"id\":1554540278492663810,\"id_str\":\"1554540278492663810\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"url\":\"https:\\/\\/t.co\\/CIOjlFCbwK\",\"display_url\":\"pic.twitter.com\\/CIOjlFCbwK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554540287493562369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1361\":{\"media\":[{\"id\":1554540156438384640,\"id_str\":\"1554540156438384640\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554540164684414977,\"id_str\":\"1554540164684414977\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWCyEXgAE1evP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWCyEXgAE1evP.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554540171147747328,\"id_str\":\"1554540171147747328\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWDKJWIAANF3G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWDKJWIAANF3G.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"1362\":null,\"1363\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1364\":{\"media\":[{\"id\":1554539305804120065,\"id_str\":\"1554539305804120065\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"url\":\"https:\\/\\/t.co\\/7XISsANW5B\",\"display_url\":\"pic.twitter.com\\/7XISsANW5B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/official_pizz\\/status\\/1554539314142388225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"}}}]},\"1365\":null,\"1366\":{\"media\":[{\"id\":1554539199705096193,\"id_str\":\"1554539199705096193\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"url\":\"https:\\/\\/t.co\\/3sZQZxnKak\",\"display_url\":\"pic.twitter.com\\/3sZQZxnKak\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539206222946305\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"1367\":{\"media\":[{\"id\":1554539155560058882,\"id_str\":\"1554539155560058882\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"url\":\"https:\\/\\/t.co\\/JoInBfSZQN\",\"display_url\":\"pic.twitter.com\\/JoInBfSZQN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539165949349888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"1368\":{\"media\":[{\"id\":1554539104871874560,\"id_str\":\"1554539104871874560\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"url\":\"https:\\/\\/t.co\\/zNr4ata000\",\"display_url\":\"pic.twitter.com\\/zNr4ata000\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539112664817665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"1369\":{\"media\":[{\"id\":1554539053537808385,\"id_str\":\"1554539053537808385\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"url\":\"https:\\/\\/t.co\\/rYMBkaPkQH\",\"display_url\":\"pic.twitter.com\\/rYMBkaPkQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539059573293061\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"1370\":{\"media\":[{\"id\":1554539013234692099,\"id_str\":\"1554539013234692099\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"url\":\"https:\\/\\/t.co\\/Y3LUJdpeAc\",\"display_url\":\"pic.twitter.com\\/Y3LUJdpeAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539019513495552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"1371\":{\"media\":[{\"id\":1554538999016050692,\"id_str\":\"1554538999016050692\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"url\":\"https:\\/\\/t.co\\/ehyeapFYxO\",\"display_url\":\"pic.twitter.com\\/ehyeapFYxO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554539007748579328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":525,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":926,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":988,\"h\":1280,\"resize\":\"fit\"}}}]},\"1372\":{\"media\":[{\"id\":1554538887204294658,\"id_str\":\"1554538887204294658\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"url\":\"https:\\/\\/t.co\\/LLtQNjQfnc\",\"display_url\":\"pic.twitter.com\\/LLtQNjQfnc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538894305234946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"1373\":{\"media\":[{\"id\":1554538865230336001,\"id_str\":\"1554538865230336001\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}},{\"id\":1554538865263796226,\"id_str\":\"1554538865263796226\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JWWYAIR-rF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JWWYAIR-rF.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"1374\":{\"media\":[{\"id\":1554538793205743617,\"id_str\":\"1554538793205743617\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"url\":\"https:\\/\\/t.co\\/InPATnRTxc\",\"display_url\":\"pic.twitter.com\\/InPATnRTxc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538800491233280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1375\":null,\"1376\":{\"media\":[{\"id\":1554538742010023937,\"id_str\":\"1554538742010023937\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"url\":\"https:\\/\\/t.co\\/vQBBaRizSE\",\"display_url\":\"pic.twitter.com\\/vQBBaRizSE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwazibruce\\/status\\/1554538774037667843\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1160,\"resize\":\"fit\"}}},{\"id\":1554538762855645192,\"id_str\":\"1554538762855645192\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUxL2WAAgenlC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUxL2WAAgenlC.jpg\",\"url\":\"https:\\/\\/t.co\\/vQBBaRizSE\",\"display_url\":\"pic.twitter.com\\/vQBBaRizSE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwazibruce\\/status\\/1554538774037667843\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1074,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":357,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":629,\"resize\":\"fit\"}}}]},\"1377\":{\"media\":[{\"id\":1554538750205743104,\"id_str\":\"1554538750205743104\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"url\":\"https:\\/\\/t.co\\/8WGIbboap0\",\"display_url\":\"pic.twitter.com\\/8WGIbboap0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538758644580352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"1378\":{\"media\":[{\"id\":1554538720321323008,\"id_str\":\"1554538720321323008\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"url\":\"https:\\/\\/t.co\\/IIJkhdS1Dw\",\"display_url\":\"pic.twitter.com\\/IIJkhdS1Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554538727535435776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}},{\"id\":1554538725186609154,\"id_str\":\"1554538725186609154\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUu_hWIAIzYSv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUu_hWIAIzYSv.jpg\",\"url\":\"https:\\/\\/t.co\\/IIJkhdS1Dw\",\"display_url\":\"pic.twitter.com\\/IIJkhdS1Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554538727535435776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"1379\":{\"media\":[{\"id\":1554538627375550466,\"id_str\":\"1554538627375550466\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"url\":\"https:\\/\\/t.co\\/UYxgp6ZvVo\",\"display_url\":\"pic.twitter.com\\/UYxgp6ZvVo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bolireloaded\\/status\\/1554538715862765568\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":366,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":645,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":688,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,80],\"duration_millis\":15146,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/vid\\/480x892\\/eryKQ_p8ErhuoP-9.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/vid\\/320x594\\/4OIy29NSIgHBMUx8.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/vid\\/688x1280\\/ueF_jN4G8sXeeqQg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/pl\\/Opdt40ml0Ec-Ifkp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1380\":{\"media\":[{\"id\":1554538686951395329,\"id_str\":\"1554538686951395329\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"url\":\"https:\\/\\/t.co\\/bVtPU0oPmE\",\"display_url\":\"pic.twitter.com\\/bVtPU0oPmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538696090714112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"1381\":{\"media\":[{\"id\":1554537760454737922,\"id_str\":\"1554537760454737922\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"url\":\"https:\\/\\/t.co\\/lYDHjtOK2B\",\"display_url\":\"pic.twitter.com\\/lYDHjtOK2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidmmhdMomoh\\/status\\/1554538271279128581\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":70265,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/vid\\/480x852\\/OMkYX70E0MJVm76a.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/vid\\/320x568\\/b2tCg4c3NE6gkoIx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/pl\\/GGRIlVP0lWbGpalw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/vid\\/720x1280\\/jKD1wtmZtvcjXsSd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1382\":{\"media\":[{\"id\":1554537620385972224,\"id_str\":\"1554537620385972224\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"url\":\"https:\\/\\/t.co\\/gmg5Y1glGZ\",\"display_url\":\"pic.twitter.com\\/gmg5Y1glGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Anya_Nyako2505\\/status\\/1554537633778483209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":532,\"resize\":\"fit\"}}}]},\"1383\":null,\"1384\":{\"media\":[{\"id\":1554536731394785280,\"id_str\":\"1554536731394785280\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"url\":\"https:\\/\\/t.co\\/9lwlUKtDZw\",\"display_url\":\"pic.twitter.com\\/9lwlUKtDZw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnfromjokoshq\\/status\\/1554536733772984325\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":854,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":801,\"resize\":\"fit\"}}}]},\"1385\":null,\"1386\":null,\"1387\":{\"media\":[{\"id\":1554533563248558080,\"id_str\":\"1554533563248558080\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"url\":\"https:\\/\\/t.co\\/s8EVHXHeQu\",\"display_url\":\"pic.twitter.com\\/s8EVHXHeQu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554535866445402112\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":560,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,7],\"duration_millis\":58815,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533563248558080\\/pu\\/vid\\/320x560\\/J5ENEktI0sc4mfrt.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533563248558080\\/pu\\/pl\\/WAL8HA8D7lxyBakG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1388\":{\"media\":[{\"id\":1554534881459306496,\"id_str\":\"1554534881459306496\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"url\":\"https:\\/\\/t.co\\/xwkwF6pzK4\",\"display_url\":\"pic.twitter.com\\/xwkwF6pzK4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/malltallerny\\/status\\/1554535404321251331\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":22753,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/480x900\\/ykKanzf8lctld_U4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/656x1232\\/UHYlLawvwD4kL3mN.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/320x600\\/8C6OaOgPVE-WsRJN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/pl\\/u69IGEYa8FyJlwTo.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":{\"media\":[{\"id\":1554534144243388417,\"id_str\":\"1554534144243388417\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"url\":\"https:\\/\\/t.co\\/XLK8mXSAGJ\",\"display_url\":\"pic.twitter.com\\/XLK8mXSAGJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PHChurchgirl\\/status\\/1554534153915359234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"}}}]},\"1393\":{\"media\":[{\"id\":1554533707033214976,\"id_str\":\"1554533707033214976\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"url\":\"https:\\/\\/t.co\\/m71TwAoEWS\",\"display_url\":\"pic.twitter.com\\/m71TwAoEWS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kosisochukw_\\/status\\/1554533761794072582\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"},\"medium\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[327,581],\"duration_millis\":10766,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/pl\\/YrFjzei7zyZbhzUR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/vid\\/320x568\\/-jH2geEv-TyiL0SF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/vid\\/480x852\\/GW5XiIl5G1tvOBhy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/vid\\/654x1162\\/8zlygLrzQfnTxu-a.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1394\":null,\"1395\":null,\"1396\":{\"media\":[{\"id\":1554532757677776898,\"id_str\":\"1554532757677776898\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"url\":\"https:\\/\\/t.co\\/hR4kZxxeQH\",\"display_url\":\"pic.twitter.com\\/hR4kZxxeQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532762673111045\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":610,\"h\":480,\"resize\":\"fit\"}}}]},\"1397\":{\"media\":[{\"id\":1554532260363247616,\"id_str\":\"1554532260363247616\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"url\":\"https:\\/\\/t.co\\/rOWH1F4sUj\",\"display_url\":\"pic.twitter.com\\/rOWH1F4sUj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532268265377798\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":718,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":678,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":718,\"resize\":\"fit\"}}}]},\"1398\":{\"media\":[{\"id\":1554532215308140545,\"id_str\":\"1554532215308140545\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"url\":\"https:\\/\\/t.co\\/4gnSBIXGVm\",\"display_url\":\"pic.twitter.com\\/4gnSBIXGVm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532226620178433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":719,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":719,\"resize\":\"fit\"}}}]},\"1399\":{\"media\":[{\"id\":1554530182576455680,\"id_str\":\"1554530182576455680\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}},{\"id\":1554530191803908097,\"id_str\":\"1554530191803908097\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM-SMXgAE9rzx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM-SMXgAE9rzx.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"}}},{\"id\":1554530200733491201,\"id_str\":\"1554530200733491201\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM-zdWIAEoyYX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM-zdWIAEoyYX.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":886,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":886,\"resize\":\"fit\"}}},{\"id\":1554530209113808897,\"id_str\":\"1554530209113808897\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM_SrXoAEZx8c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM_SrXoAEZx8c.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1036,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":652,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1036,\"resize\":\"fit\"}}}]},\"1400\":null,\"1401\":{\"media\":[{\"id\":1554528751584681985,\"id_str\":\"1554528751584681985\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"url\":\"https:\\/\\/t.co\\/psWDUaimY4\",\"display_url\":\"pic.twitter.com\\/psWDUaimY4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PreciousP001\\/status\\/1554528762456379392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":625,\"resize\":\"fit\"}}}]},\"1402\":{\"media\":[{\"id\":1554528584324288513,\"id_str\":\"1554528584324288513\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"url\":\"https:\\/\\/t.co\\/8bsqiolcDu\",\"display_url\":\"pic.twitter.com\\/8bsqiolcDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kenneth51428693\\/status\\/1554528652737536000\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":140000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528584324288513\\/pu\\/vid\\/426x426\\/DjegF9D5x9P5vM9L.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528584324288513\\/pu\\/vid\\/320x320\\/SQqb8a5OvbBURFLl.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528584324288513\\/pu\\/pl\\/KQqjJjdHWOA6Q5Sr.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1403\":{\"media\":[{\"id\":1554528568218107909,\"id_str\":\"1554528568218107909\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528568218107909\\/pu\\/img\\/MopM_nKtIvIEk7Tt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528568218107909\\/pu\\/img\\/MopM_nKtIvIEk7Tt.jpg\",\"url\":\"https:\\/\\/t.co\\/JUHW0TigVl\",\"display_url\":\"pic.twitter.com\\/JUHW0TigVl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nanadiabour_1\\/status\\/1554528594168348673\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":2401,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528568218107909\\/pu\\/vid\\/480x852\\/3b18tRYZxgAetxrH.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528568218107909\\/pu\\/vid\\/720x1280\\/Qa1RKce22q-UCfX3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528568218107909\\/pu\\/pl\\/N-MXyYHEaiOfMm6o.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528568218107909\\/pu\\/vid\\/320x568\\/uhJxyM5n2mN4P_zY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1404\":null,\"1405\":null,\"1406\":{\"media\":[{\"id\":1554527735808139264,\"id_str\":\"1554527735808139264\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"url\":\"https:\\/\\/t.co\\/bcawOh7ghe\",\"display_url\":\"pic.twitter.com\\/bcawOh7ghe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Young_X391\\/status\\/1554527789856051200\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/vid\\/720x1280\\/i4KYIsNcQQmaL1Kr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/pl\\/ABWvy2aEl6ZmrIgD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/vid\\/320x568\\/Vn9L-Fk1nHysrymS.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/vid\\/480x852\\/9VN7KIFF33fIMIXN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1407\":{\"media\":[{\"id\":1554526808661524481,\"id_str\":\"1554526808661524481\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"url\":\"https:\\/\\/t.co\\/1XSoCGB8rM\",\"display_url\":\"pic.twitter.com\\/1XSoCGB8rM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bettyshairven\\/status\\/1554527634888982532\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":40471,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/vid\\/320x568\\/zBDsUnL5yFo1mylr.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/vid\\/720x1280\\/bbdfL-rkq3RYLQsQ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/vid\\/480x852\\/SdKBJDJ_8g-UXLNE.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/pl\\/xaRQSeyzwtHY5Ms_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1408\":{\"media\":[{\"id\":1554526455593312259,\"id_str\":\"1554526455593312259\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"url\":\"https:\\/\\/t.co\\/b6J542Frck\",\"display_url\":\"pic.twitter.com\\/b6J542Frck\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554526464267227136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"1409\":null,\"1410\":{\"media\":[{\"id\":1554524957996187648,\"id_str\":\"1554524957996187648\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554524957987799040,\"id_str\":\"1554524957987799040\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINotXgAAQZUd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINotXgAAQZUd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"1411\":null,\"1412\":{\"media\":[{\"id\":1554524327487438849,\"id_str\":\"1554524327487438849\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"url\":\"https:\\/\\/t.co\\/PKOrCb2wOK\",\"display_url\":\"pic.twitter.com\\/PKOrCb2wOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trylips\\/status\\/1554524433955569664\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":26033,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/vid\\/480x600\\/KBZCq4s72E_RBc59.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/vid\\/320x400\\/htSjfCFM66OqM026.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/vid\\/720x900\\/NqrpOfjWe0R38K19.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/pl\\/lMZVDGnD6brlPFuu.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":{\"media\":[{\"id\":1554523021251158016,\"id_str\":\"1554523021251158016\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554523040301686787,\"id_str\":\"1554523040301686787\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGeAxXoAMl-uh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGeAxXoAMl-uh.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554523053190746112,\"id_str\":\"1554523053190746112\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGewyXEAA9F9M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGewyXEAA9F9M.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554523065316511744,\"id_str\":\"1554523065316511744\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGfd9XkAAlSN9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGfd9XkAAlSN9.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1417\":null,\"1418\":{\"media\":[{\"id\":1554521789283311616,\"id_str\":\"1554521789283311616\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"url\":\"https:\\/\\/t.co\\/1CoGL7BvNu\",\"display_url\":\"pic.twitter.com\\/1CoGL7BvNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521869461618688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12480,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/pl\\/MT9WF7zEuIiyOJX-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/720x1280\\/EGeEW5p1K3c_5W65.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/480x852\\/wktJqP7OvgrZDV0_.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/320x568\\/E73218wmuqdt9jEf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1419\":{\"media\":[{\"id\":1554521594877419520,\"id_str\":\"1554521594877419520\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"url\":\"https:\\/\\/t.co\\/ciSc0yx3ED\",\"display_url\":\"pic.twitter.com\\/ciSc0yx3ED\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danielgbenda\\/status\\/1554521604608196614\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":867,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":867,\"resize\":\"fit\"}}}]},\"1420\":{\"media\":[{\"id\":1554521082723553280,\"id_str\":\"1554521082723553280\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"url\":\"https:\\/\\/t.co\\/DCUApG0DFj\",\"display_url\":\"pic.twitter.com\\/DCUApG0DFj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521163749023744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13786,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/480x852\\/hBd6HA5fJCLaz9BD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/320x568\\/8Jaynvzu0AgtQ6em.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/720x1280\\/lcsi8MFwcSbUfC8I.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/pl\\/9wrSh6vVyLtQUHZ9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1421\":{\"media\":[{\"id\":1554520486616436736,\"id_str\":\"1554520486616436736\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"url\":\"https:\\/\\/t.co\\/aihFMPNCZb\",\"display_url\":\"pic.twitter.com\\/aihFMPNCZb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/okeey_m\\/status\\/1554520500147200000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1422\":{\"media\":[{\"id\":1554520292889968641,\"id_str\":\"1554520292889968641\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"url\":\"https:\\/\\/t.co\\/7jOk7acoqF\",\"display_url\":\"pic.twitter.com\\/7jOk7acoqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uglyyorubadboy\\/status\\/1554520489074327552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"1423\":{\"media\":[{\"id\":1554520323831259136,\"id_str\":\"1554520323831259136\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoTNCbIJln\",\"display_url\":\"pic.twitter.com\\/ZoTNCbIJln\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AnthonySneh\\/status\\/1554520326926655490\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":495,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1424\":null,\"1425\":null,\"1426\":{\"media\":[{\"id\":1554519402061742081,\"id_str\":\"1554519402061742081\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554519402095280128,\"id_str\":\"1554519402095280128\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPZXgAACu35.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPZXgAACu35.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554519402099482624,\"id_str\":\"1554519402099482624\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXoAAYBAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXoAAYBAb.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554519402099474433,\"id_str\":\"1554519402099474433\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXgAEHIds.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXgAEHIds.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1427\":null,\"1428\":{\"media\":[{\"id\":1554519161811996674,\"id_str\":\"1554519161811996674\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"url\":\"https:\\/\\/t.co\\/4ywqop01W7\",\"display_url\":\"pic.twitter.com\\/4ywqop01W7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554519169512660994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"1429\":null,\"1430\":{\"media\":[{\"id\":1554518257213837313,\"id_str\":\"1554518257213837313\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"url\":\"https:\\/\\/t.co\\/bGUuuACmdc\",\"display_url\":\"pic.twitter.com\\/bGUuuACmdc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Creativeprimez\\/status\\/1554518265938026503\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1431\":{\"media\":[{\"id\":1554517895480229888,\"id_str\":\"1554517895480229888\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"url\":\"https:\\/\\/t.co\\/aQs9X4makk\",\"display_url\":\"pic.twitter.com\\/aQs9X4makk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/asonyagh\\/status\\/1554517903122243588\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"large\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"small\":{\"w\":420,\"h\":525,\"resize\":\"fit\"}}}]},\"1432\":{\"media\":[{\"id\":1554517448593997825,\"id_str\":\"1554517448593997825\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554517624394063876,\"id_str\":\"1554517624394063876\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBiw8XoAQKCwX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBiw8XoAQKCwX.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1433\":{\"media\":[{\"id\":1554516435765977092,\"id_str\":\"1554516435765977092\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"url\":\"https:\\/\\/t.co\\/tiD2f47UBX\",\"display_url\":\"pic.twitter.com\\/tiD2f47UBX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amSirkings\\/status\\/1554517312392368131\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":412,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":412,\"resize\":\"fit\"}}}]},\"1434\":{\"media\":[{\"id\":1554517150160900098,\"id_str\":\"1554517150160900098\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"url\":\"https:\\/\\/t.co\\/ZpFgTAF0PU\",\"display_url\":\"pic.twitter.com\\/ZpFgTAF0PU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dubaidollars\\/status\\/1554517160407572485\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":228,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[83,38],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLBHKSX0AI8gJN.mp4\"}]}}]},\"1435\":{\"media\":[{\"id\":1554516469114982401,\"id_str\":\"1554516469114982401\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"url\":\"https:\\/\\/t.co\\/lcVoMynzKS\",\"display_url\":\"pic.twitter.com\\/lcVoMynzKS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dadadavidob\\/status\\/1554516660421365762\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":105956,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/vid\\/320x568\\/ybAa2yTG_9myP4kw.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/vid\\/480x852\\/9hFDsxIOwBjqwoJW.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/vid\\/576x1024\\/Mb17Gk2QwSIL7Suq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/pl\\/lW0-OFodtJML6DoV.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1436\":null,\"1437\":{\"media\":[{\"id\":1554516297483960320,\"id_str\":\"1554516297483960320\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554516307512643585,\"id_str\":\"1554516307512643585\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAWHLX0AEeHg9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAWHLX0AEeHg9.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554516316203192323,\"id_str\":\"1554516316203192323\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAWnjXEAMJrNQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAWnjXEAMJrNQ.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1438\":null,\"1439\":null,\"1440\":null,\"1441\":{\"media\":[{\"id\":1554515405439369216,\"id_str\":\"1554515405439369216\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"url\":\"https:\\/\\/t.co\\/zn57X39Cdp\",\"display_url\":\"pic.twitter.com\\/zn57X39Cdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554515408891305984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1442\":null,\"1443\":{\"media\":[{\"id\":1554514934259646465,\"id_str\":\"1554514934259646465\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"url\":\"https:\\/\\/t.co\\/IGfPS2hgII\",\"display_url\":\"pic.twitter.com\\/IGfPS2hgII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/posh_emperor\\/status\\/1554514940857401344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"},\"medium\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"}}}]},\"1444\":{\"media\":[{\"id\":1554514575684411394,\"id_str\":\"1554514575684411394\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"url\":\"https:\\/\\/t.co\\/ez1KF3TssA\",\"display_url\":\"pic.twitter.com\\/ez1KF3TssA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554514586954596353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"1445\":{\"media\":[{\"id\":1554514242648346626,\"id_str\":\"1554514242648346626\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"url\":\"https:\\/\\/t.co\\/yY9KxsoIA6\",\"display_url\":\"pic.twitter.com\\/yY9KxsoIA6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WumiAnu\\/status\\/1554514249975828480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1446\":{\"media\":[{\"id\":1554513402994753542,\"id_str\":\"1554513402994753542\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554513402994753542\\/pu\\/img\\/PjdqJNqLcq_6sAWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554513402994753542\\/pu\\/img\\/PjdqJNqLcq_6sAWd.jpg\",\"url\":\"https:\\/\\/t.co\\/xJCEmjUIic\",\"display_url\":\"pic.twitter.com\\/xJCEmjUIic\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554513509953708033\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15205,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554513402994753542\\/pu\\/vid\\/720x1280\\/e-ZUyQY2Ca2hY-Iw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554513402994753542\\/pu\\/pl\\/ayjJt1Re-in1noda.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554513402994753542\\/pu\\/vid\\/320x568\\/UqiWGbhLM3ONLM0f.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554513402994753542\\/pu\\/vid\\/480x852\\/JX1hKDmHLojsVkkm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1447\":null,\"1448\":null,\"1449\":{\"media\":[{\"id\":1554512105172246534,\"id_str\":\"1554512105172246534\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"url\":\"https:\\/\\/t.co\\/GT2cRzGWjm\",\"display_url\":\"pic.twitter.com\\/GT2cRzGWjm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554512107630116864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1450\":{\"media\":[{\"id\":1554511966923784192,\"id_str\":\"1554511966923784192\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":772,\"h\":679,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":772,\"h\":679,\"resize\":\"fit\"}}},{\"id\":1554511970031788032,\"id_str\":\"1554511970031788032\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZozWYAAm4hi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZozWYAAm4hi.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":487,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":516,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":516,\"resize\":\"fit\"}}}]},\"1451\":{\"media\":[{\"id\":1554511934954905601,\"id_str\":\"1554511934954905601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"url\":\"https:\\/\\/t.co\\/UORpoe3ZY2\",\"display_url\":\"pic.twitter.com\\/UORpoe3ZY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554511937723146242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1452\":{\"media\":[{\"id\":1554511236750274560,\"id_str\":\"1554511236750274560\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"url\":\"https:\\/\\/t.co\\/GJ1GzU7jGV\",\"display_url\":\"pic.twitter.com\\/GJ1GzU7jGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554511554326179840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":908,\"h\":443,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":908,\"h\":443,\"resize\":\"fit\"}}}]},\"1453\":{\"media\":[{\"id\":1554510572514844673,\"id_str\":\"1554510572514844673\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"url\":\"https:\\/\\/t.co\\/QV20BAgK9G\",\"display_url\":\"pic.twitter.com\\/QV20BAgK9G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RankingSmoothy\\/status\\/1554510730334011399\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":656,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":700,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[35,64],\"duration_millis\":21600,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/vid\\/480x876\\/dPZIcVUYr6el6K0j.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/vid\\/320x584\\/XcyVx0TBJ36K53Dp.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/vid\\/700x1280\\/54-FqgvLKIgWWEOQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/pl\\/sIrJY-sWqEf6iBOX.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1454\":{\"media\":[{\"id\":1554509791514738688,\"id_str\":\"1554509791514738688\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"url\":\"https:\\/\\/t.co\\/P2uLzsGYPc\",\"display_url\":\"pic.twitter.com\\/P2uLzsGYPc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554509836968427521\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":336,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,21],\"duration_millis\":57421,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509791514738688\\/pu\\/vid\\/514x270\\/NIou9j87pp5JSmEw.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509791514738688\\/pu\\/vid\\/640x336\\/9_Js_NOO5WqIMQ9x.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509791514738688\\/pu\\/pl\\/6l8H_FuQ879izUOR.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1455\":null,\"1456\":{\"media\":[{\"id\":1554509721264160769,\"id_str\":\"1554509721264160769\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554509724850192385,\"id_str\":\"1554509724850192385\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6W82WAAEnbb8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6W82WAAEnbb8.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":922,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":922,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554509730177064960,\"id_str\":\"1554509730177064960\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6XQsXoAAzR98.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6XQsXoAAzR98.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"}}}]},\"1457\":{\"media\":[{\"id\":1554509469513650181,\"id_str\":\"1554509469513650181\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"url\":\"https:\\/\\/t.co\\/MoJu2j7Qas\",\"display_url\":\"pic.twitter.com\\/MoJu2j7Qas\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ryder07575428\\/status\\/1554509479911346176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"medium\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1458\":null,\"1459\":{\"media\":[{\"id\":1554508205828489216,\"id_str\":\"1554508205828489216\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"url\":\"https:\\/\\/t.co\\/7RaExlFZdy\",\"display_url\":\"pic.twitter.com\\/7RaExlFZdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554508215945142273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1460\":{\"media\":[{\"id\":1554507682463334402,\"id_str\":\"1554507682463334402\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"url\":\"https:\\/\\/t.co\\/X7gsur3N0k\",\"display_url\":\"pic.twitter.com\\/X7gsur3N0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hodlzilla\\/status\\/1554507686431150081\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}}]},\"1461\":{\"media\":[{\"id\":1554507154136207371,\"id_str\":\"1554507154136207371\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"url\":\"https:\\/\\/t.co\\/zQAIZsAEgs\",\"display_url\":\"pic.twitter.com\\/zQAIZsAEgs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/boprinhomes\\/status\\/1554507669574131715\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":39583,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/vid\\/480x852\\/FicGCLkYW1VPmfr6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/pl\\/pIo2rrEuqxjAhC_0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/vid\\/720x1280\\/5dL2BNkIIPc8ziZ1.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/vid\\/320x568\\/gMa7N6lFYgXIewrw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1462\":{\"media\":[{\"id\":1554507371887689731,\"id_str\":\"1554507371887689731\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"url\":\"https:\\/\\/t.co\\/nkgeEcubJC\",\"display_url\":\"pic.twitter.com\\/nkgeEcubJC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Imkwesi_\\/status\\/1554507374265786369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":715,\"h\":725,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":725,\"resize\":\"fit\"}}}]},\"1463\":null,\"1464\":{\"media\":[{\"id\":1554506278268977152,\"id_str\":\"1554506278268977152\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK3OVVWQAAmUa7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK3OVVWQAAmUa7.jpg\",\"url\":\"https:\\/\\/t.co\\/tffyAASECh\",\"display_url\":\"pic.twitter.com\\/tffyAASECh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pelumi2_pelumi\\/status\\/1554506299714437123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554506278273163267,\"id_str\":\"1554506278273163267\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK3OVWWIAMMiHA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK3OVWWIAMMiHA.jpg\",\"url\":\"https:\\/\\/t.co\\/tffyAASECh\",\"display_url\":\"pic.twitter.com\\/tffyAASECh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pelumi2_pelumi\\/status\\/1554506299714437123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554506278294228994,\"id_str\":\"1554506278294228994\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK3OVbXkAIlELP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK3OVbXkAIlELP.jpg\",\"url\":\"https:\\/\\/t.co\\/tffyAASECh\",\"display_url\":\"pic.twitter.com\\/tffyAASECh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pelumi2_pelumi\\/status\\/1554506299714437123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554506278268968961,\"id_str\":\"1554506278268968961\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK3OVVWIAEYHlG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK3OVVWIAEYHlG.jpg\",\"url\":\"https:\\/\\/t.co\\/tffyAASECh\",\"display_url\":\"pic.twitter.com\\/tffyAASECh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pelumi2_pelumi\\/status\\/1554506299714437123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1465\":null,\"1466\":null,\"1467\":{\"media\":[{\"id\":1554505347448152064,\"id_str\":\"1554505347448152064\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"url\":\"https:\\/\\/t.co\\/YMk2Mn69cr\",\"display_url\":\"pic.twitter.com\\/YMk2Mn69cr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554505425168568320\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20014,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/pl\\/vwLN5FNwlY7JrAr4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/vid\\/480x852\\/23T3nVJlJHSFhLQe.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/vid\\/576x1024\\/yfB-pzhc0YKuUZ5s.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/vid\\/320x568\\/-XJ4jxFcoD8XO5oZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1468\":{\"media\":[{\"id\":1554505094112198659,\"id_str\":\"1554505094112198659\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"url\":\"https:\\/\\/t.co\\/csNNINnmIS\",\"display_url\":\"pic.twitter.com\\/csNNINnmIS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1554505114249052162\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":675,\"h\":680,\"resize\":\"fit\"}}}]},\"1469\":{\"media\":[{\"id\":1554504752481898496,\"id_str\":\"1554504752481898496\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"url\":\"https:\\/\\/t.co\\/ivpyHUQNnb\",\"display_url\":\"pic.twitter.com\\/ivpyHUQNnb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahsaan444\\/status\\/1554504829770219520\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":51785,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/vid\\/640x360\\/8PxlqO6h6EpysF-d.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/pl\\/-A3XjsTj2xpL8EP9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/vid\\/480x270\\/SUJctZtFqmzkSnOZ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/vid\\/960x540\\/d8KDqpu7-FlvLJvd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1470\":{\"media\":[{\"id\":1554503487215603718,\"id_str\":\"1554503487215603718\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0r32XkAYpkEw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0r32XkAYpkEw.jpg\",\"url\":\"https:\\/\\/t.co\\/b1rJctznfa\",\"display_url\":\"pic.twitter.com\\/b1rJctznfa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1554504025030201345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1016,\"h\":550,\"resize\":\"fit\"},\"large\":{\"w\":1016,\"h\":550,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":368,\"resize\":\"fit\"}}}]},\"1471\":{\"media\":[{\"id\":1554503007227756544,\"id_str\":\"1554503007227756544\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"url\":\"https:\\/\\/t.co\\/HhiXO7ZmPy\",\"display_url\":\"pic.twitter.com\\/HhiXO7ZmPy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554503024973938690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"small\":{\"w\":569,\"h\":375,\"resize\":\"fit\"}}}]},\"1472\":{\"media\":[{\"id\":1554502771952553986,\"id_str\":\"1554502771952553986\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"url\":\"https:\\/\\/t.co\\/TdmyUy3XBp\",\"display_url\":\"pic.twitter.com\\/TdmyUy3XBp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chukzmiki\\/status\\/1554502879318315018\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":15394,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/vid\\/480x270\\/FHyRXZPw1B6KEV8H.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/pl\\/OGFbx1wdhP82JLJy.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/vid\\/1280x720\\/ptUHVy1rwA2oj38g.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/vid\\/640x360\\/srWovRDdYcAEiRfl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1473\":null,\"1474\":{\"media\":[{\"id\":1554502394603601920,\"id_str\":\"1554502394603601920\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"url\":\"https:\\/\\/t.co\\/zkX2Sbg0bN\",\"display_url\":\"pic.twitter.com\\/zkX2Sbg0bN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ObidientYoutube\\/status\\/1554502403889807362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1242,\"h\":698,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"1475\":{\"media\":[{\"id\":1554501901521403904,\"id_str\":\"1554501901521403904\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"url\":\"https:\\/\\/t.co\\/6pzyCrCJWe\",\"display_url\":\"pic.twitter.com\\/6pzyCrCJWe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554502371946172416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"}}}]},\"1476\":null,\"1477\":{\"media\":[{\"id\":1554501297348513793,\"id_str\":\"1554501297348513793\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"url\":\"https:\\/\\/t.co\\/ibD6jbcgbc\",\"display_url\":\"pic.twitter.com\\/ibD6jbcgbc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554501332723179524\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":24133,\"variants\":[{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/640x640\\/t3EgbyRAaiHwk_qV.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/320x320\\/2_4FMbCEAXhn0mWK.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/540x540\\/ZLe0LEnVl8dDB3Ir.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/pl\\/oT0hirFKFkT7o7Gb.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1478\":null,\"1479\":{\"media\":[{\"id\":1554500996553998337,\"id_str\":\"1554500996553998337\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"url\":\"https:\\/\\/t.co\\/1X3rwlfzDm\",\"display_url\":\"pic.twitter.com\\/1X3rwlfzDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaunceySean1\\/status\\/1554501006838431744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1241,\"h\":1562,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":953,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554500996826554371,\"id_str\":\"1554500996826554371\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKya6bWYAM62kH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKya6bWYAM62kH.jpg\",\"url\":\"https:\\/\\/t.co\\/1X3rwlfzDm\",\"display_url\":\"pic.twitter.com\\/1X3rwlfzDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaunceySean1\\/status\\/1554501006838431744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":924,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":596,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":924,\"resize\":\"fit\"}}}]},\"1480\":null,\"1481\":{\"media\":[{\"id\":1554500816718938114,\"id_str\":\"1554500816718938114\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/XigzZJDjZT\",\"display_url\":\"pic.twitter.com\\/XigzZJDjZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500874185089025\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":520,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":942,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":942,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[120,157],\"duration_millis\":28141,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/pl\\/X3qSCzBfipsg60NS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/720x942\\/f66kDqGW_HEd-ECy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/480x628\\/9P5kf7dGPctZKyj_.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/320x418\\/PGt0IXDswz94frKP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1482\":{\"media\":[{\"id\":1554500275339239430,\"id_str\":\"1554500275339239430\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"url\":\"https:\\/\\/t.co\\/ROTOrsvY71\",\"display_url\":\"pic.twitter.com\\/ROTOrsvY71\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rinxe_\\/status\\/1554500278094905347\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":583,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":840,\"resize\":\"fit\"}}}]},\"1483\":{\"media\":[{\"id\":1554500195148341249,\"id_str\":\"1554500195148341249\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"url\":\"https:\\/\\/t.co\\/2KNksCfwdg\",\"display_url\":\"pic.twitter.com\\/2KNksCfwdg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Atomic379\\/status\\/1554500207177596928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554500197903917056,\"id_str\":\"1554500197903917056\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxsaNWYAAijO-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxsaNWYAAijO-.jpg\",\"url\":\"https:\\/\\/t.co\\/2KNksCfwdg\",\"display_url\":\"pic.twitter.com\\/2KNksCfwdg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Atomic379\\/status\\/1554500207177596928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":718,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":900,\"resize\":\"fit\"}}}]},\"1484\":{\"media\":[{\"id\":1554500123123765248,\"id_str\":\"1554500123123765248\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"url\":\"https:\\/\\/t.co\\/65H2indrwE\",\"display_url\":\"pic.twitter.com\\/65H2indrwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500163846262789\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":37366,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/320x568\\/2Br2GB4WdVBDNrQ_.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/480x852\\/ZjXwA_XfvhRpz8SV.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/576x1024\\/Bn3T0RPTg6OYIUIf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/pl\\/Aqyj5HlwR8awkFUN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1485\":{\"media\":[{\"id\":1554499817635778562,\"id_str\":\"1554499817635778562\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"url\":\"https:\\/\\/t.co\\/T7kgQYTzJ8\",\"display_url\":\"pic.twitter.com\\/T7kgQYTzJ8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezekingwealth\\/status\\/1554499852234637313\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":11872,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554499817635778562\\/pu\\/vid\\/320x568\\/nGDx1N3G5hCQYUQe.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554499817635778562\\/pu\\/pl\\/-JNkT9mtLVunOB0C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554499817635778562\\/pu\\/vid\\/480x852\\/F6eR7mFyX4XF9yl3.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1486\":{\"media\":[{\"id\":1554498460908486657,\"id_str\":\"1554498460908486657\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"url\":\"https:\\/\\/t.co\\/wGq0ra4JHP\",\"display_url\":\"pic.twitter.com\\/wGq0ra4JHP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554498498958987264\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29844,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/pl\\/kUhnVV5HGnNT8NO4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/540x540\\/psaNxvD4kF4-nk-l.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/720x720\\/3HsNhph4WfbrZK1j.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/320x320\\/hIFkM_mAUo0Z4DsT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1487\":{\"media\":[{\"id\":1554497715492503552,\"id_str\":\"1554497715492503552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"url\":\"https:\\/\\/t.co\\/JoHhIzFS0J\",\"display_url\":\"pic.twitter.com\\/JoHhIzFS0J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Badman__Stoney\\/status\\/1554498360329003010\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":62000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/vid\\/480x852\\/QcW65nDqORUwOvSK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/pl\\/Mm-LPp-kFuCPVG8y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/vid\\/320x568\\/jSkEClDZJBdRucv2.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/vid\\/720x1280\\/FFicmALh8euH4z6T.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1488\":{\"media\":[{\"id\":1554497177329848321,\"id_str\":\"1554497177329848321\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"url\":\"https:\\/\\/t.co\\/24V0Z563Hz\",\"display_url\":\"pic.twitter.com\\/24V0Z563Hz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554497190243864577\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1489\":null,\"1490\":null,\"1491\":{\"media\":[{\"id\":1554495900172550147,\"id_str\":\"1554495900172550147\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"url\":\"https:\\/\\/t.co\\/mC1IGTqxZN\",\"display_url\":\"pic.twitter.com\\/mC1IGTqxZN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nonstopdancer55\\/status\\/1554495902836031493\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"large\":{\"w\":508,\"h\":508,\"resize\":\"fit\"}}}]},\"1492\":{\"media\":[{\"id\":1554495630927601665,\"id_str\":\"1554495630927601665\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554495630927601665\\/pu\\/img\\/izU0J-fnZo8gdaoC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554495630927601665\\/pu\\/img\\/izU0J-fnZo8gdaoC.jpg\",\"url\":\"https:\\/\\/t.co\\/PxHuMMIWCJ\",\"display_url\":\"pic.twitter.com\\/PxHuMMIWCJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LuckyTripGh\\/status\\/1554495686971953157\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":576,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":768,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":41040,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554495630927601665\\/pu\\/vid\\/576x768\\/OB6rBDLUSyYu28kt.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554495630927601665\\/pu\\/pl\\/BPVAFmxTnhG99nSF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554495630927601665\\/pu\\/vid\\/320x426\\/EsQeO3Ax4Xe0sIBw.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554495630927601665\\/pu\\/vid\\/480x640\\/DBTLeIEpCQTjWgDG.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1493\":null,\"1494\":{\"media\":[{\"id\":1554494932181721088,\"id_str\":\"1554494932181721088\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"url\":\"https:\\/\\/t.co\\/ut4fE6Z6FA\",\"display_url\":\"pic.twitter.com\\/ut4fE6Z6FA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realproscrow\\/status\\/1554495310986203141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"1495\":{\"media\":[{\"id\":1554494836379713538,\"id_str\":\"1554494836379713538\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"url\":\"https:\\/\\/t.co\\/YHkClDAdeG\",\"display_url\":\"pic.twitter.com\\/YHkClDAdeG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CucumberTV1\\/status\\/1554494846739615744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":726,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":1481,\"resize\":\"fit\"},\"small\":{\"w\":411,\"h\":680,\"resize\":\"fit\"}}}]},\"1496\":{\"media\":[{\"id\":1554494610143166468,\"id_str\":\"1554494610143166468\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554494610143166468\\/pu\\/img\\/maAX9qXR9FWHaryQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554494610143166468\\/pu\\/img\\/maAX9qXR9FWHaryQ.jpg\",\"url\":\"https:\\/\\/t.co\\/JkFp5xv6m9\",\"display_url\":\"pic.twitter.com\\/JkFp5xv6m9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1554494703873232901\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,2],\"duration_millis\":44933,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554494610143166468\\/pu\\/vid\\/404x270\\/z4GQQcIQ52IkTvPH.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554494610143166468\\/pu\\/vid\\/540x360\\/oRTjfXP5SJ7GM-FF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554494610143166468\\/pu\\/vid\\/720x480\\/ZQsGuRz4JB3l-t86.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554494610143166468\\/pu\\/pl\\/GI6-Lo1MisPmJqaZ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1497\":null,\"1498\":null,\"1499\":null,\"1500\":{\"media\":[{\"id\":1554492935130972168,\"id_str\":\"1554492935130972168\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"url\":\"https:\\/\\/t.co\\/Dp6PmdnfRH\",\"display_url\":\"pic.twitter.com\\/Dp6PmdnfRH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dan_nyeche\\/status\\/1554492944031399938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"1501\":{\"media\":[{\"id\":1554492448331780105,\"id_str\":\"1554492448331780105\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"url\":\"https:\\/\\/t.co\\/IrHVBZAtGj\",\"display_url\":\"pic.twitter.com\\/IrHVBZAtGj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_usejuju\\/status\\/1554492463200571395\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"1502\":{\"media\":[{\"id\":1554492065962401792,\"id_str\":\"1554492065962401792\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"url\":\"https:\\/\\/t.co\\/SuqnCpdGVH\",\"display_url\":\"pic.twitter.com\\/SuqnCpdGVH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554492105506304000\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":44837,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/vid\\/638x360\\/n2PXQxVvxHU-_fVe.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/vid\\/852x480\\/8cDyE8yxZak_DRue.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/vid\\/478x270\\/qYFbKkBXAGVTTfef.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/pl\\/-89_nQlvk7vGvngn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1503\":null,\"1504\":{\"media\":[{\"id\":1554491570216472577,\"id_str\":\"1554491570216472577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"url\":\"https:\\/\\/t.co\\/1omjHcInPM\",\"display_url\":\"pic.twitter.com\\/1omjHcInPM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunladeAbiola1\\/status\\/1554491572502372353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"1505\":{\"media\":[{\"id\":1554491505427247104,\"id_str\":\"1554491505427247104\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"url\":\"https:\\/\\/t.co\\/u3VHsLGAP0\",\"display_url\":\"pic.twitter.com\\/u3VHsLGAP0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554491545810014208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1506\":null,\"1507\":null,\"1508\":{\"media\":[{\"id\":1554490875413434368,\"id_str\":\"1554490875413434368\",\"indices\":[286,309],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"url\":\"https:\\/\\/t.co\\/BVOXlr4uF0\",\"display_url\":\"pic.twitter.com\\/BVOXlr4uF0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490944380354560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1509\":{\"media\":[{\"id\":1554490735684206593,\"id_str\":\"1554490735684206593\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"url\":\"https:\\/\\/t.co\\/mo8Q7t3wg2\",\"display_url\":\"pic.twitter.com\\/mo8Q7t3wg2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554490738594938883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"medium\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":345,\"resize\":\"fit\"}}}]},\"1510\":null,\"1511\":{\"media\":[{\"id\":1554490669972230146,\"id_str\":\"1554490669972230146\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"url\":\"https:\\/\\/t.co\\/KPehr8eDvd\",\"display_url\":\"pic.twitter.com\\/KPehr8eDvd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490676796354561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":504,\"resize\":\"fit\"}}}]},\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":{\"media\":[{\"id\":1554490352496680960,\"id_str\":\"1554490352496680960\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"url\":\"https:\\/\\/t.co\\/OhafhnOHNP\",\"display_url\":\"pic.twitter.com\\/OhafhnOHNP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1554490355508191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":{\"media\":[{\"id\":1554489126585614336,\"id_str\":\"1554489126585614336\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"url\":\"https:\\/\\/t.co\\/o5IYOG2cGu\",\"display_url\":\"pic.twitter.com\\/o5IYOG2cGu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/freeworldmaster\\/status\\/1554489145971572737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1521\":null,\"1522\":{\"media\":[{\"id\":1554488879247495171,\"id_str\":\"1554488879247495171\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"url\":\"https:\\/\\/t.co\\/zOwwS1AqzK\",\"display_url\":\"pic.twitter.com\\/zOwwS1AqzK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superfm933\\/status\\/1554488888789536768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":839,\"resize\":\"fit\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":839,\"resize\":\"fit\"}}}]},\"1523\":{\"media\":[{\"id\":1554488556680355841,\"id_str\":\"1554488556680355841\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"url\":\"https:\\/\\/t.co\\/QmblcXb8XR\",\"display_url\":\"pic.twitter.com\\/QmblcXb8XR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554488563089162242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":900,\"resize\":\"fit\"}}}]},\"1524\":null,\"1525\":{\"media\":[{\"id\":1554487793941979141,\"id_str\":\"1554487793941979141\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"url\":\"https:\\/\\/t.co\\/lde207mcTI\",\"display_url\":\"pic.twitter.com\\/lde207mcTI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487803244847104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"1526\":{\"media\":[{\"id\":1554487700522156038,\"id_str\":\"1554487700522156038\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"url\":\"https:\\/\\/t.co\\/x6FJ08mKpH\",\"display_url\":\"pic.twitter.com\\/x6FJ08mKpH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487719132282880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"1527\":null,\"1528\":null,\"1529\":null,\"1530\":{\"media\":[{\"id\":1554486449805877248,\"id_str\":\"1554486449805877248\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"url\":\"https:\\/\\/t.co\\/I695L4ShPk\",\"display_url\":\"pic.twitter.com\\/I695L4ShPk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554486456894242817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"},\"small\":{\"w\":476,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"}}}]},\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":{\"media\":[{\"id\":1554485294040494080,\"id_str\":\"1554485294040494080\",\"indices\":[286,309],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKkI4_aMAA4mBp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKkI4_aMAA4mBp.jpg\",\"url\":\"https:\\/\\/t.co\\/gfnLgQjAke\",\"display_url\":\"pic.twitter.com\\/gfnLgQjAke\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554485299530854400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1535\":{\"media\":[{\"id\":1554485121193054208,\"id_str\":\"1554485121193054208\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKj-1FXkAAOANO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKj-1FXkAAOANO.jpg\",\"url\":\"https:\\/\\/t.co\\/VdSai3EeOY\",\"display_url\":\"pic.twitter.com\\/VdSai3EeOY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lucky_kierian\\/status\\/1554485128256229376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":1024,\"resize\":\"fit\"}}}]},\"1536\":{\"media\":[{\"id\":1554484898391638017,\"id_str\":\"1554484898391638017\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKjx3FXwAE459t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKjx3FXwAE459t.jpg\",\"url\":\"https:\\/\\/t.co\\/XADV9AQJJl\",\"display_url\":\"pic.twitter.com\\/XADV9AQJJl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554484902371926017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"1537\":{\"media\":[{\"id\":1554484739087962112,\"id_str\":\"1554484739087962112\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKjoloakAApv78.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKjoloakAApv78.jpg\",\"url\":\"https:\\/\\/t.co\\/Ne1xXYczKB\",\"display_url\":\"pic.twitter.com\\/Ne1xXYczKB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554484758859894785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"}}}]},\"1538\":{\"media\":[{\"id\":1554484651342823425,\"id_str\":\"1554484651342823425\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKjjewWAAE1Nfa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKjjewWAAE1Nfa.jpg\",\"url\":\"https:\\/\\/t.co\\/HGSyOtnMaK\",\"display_url\":\"pic.twitter.com\\/HGSyOtnMaK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IsraelEspirit\\/status\\/1554484654056640514\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":454,\"h\":1193,\"resize\":\"fit\"},\"medium\":{\"w\":454,\"h\":1193,\"resize\":\"fit\"},\"small\":{\"w\":259,\"h\":680,\"resize\":\"fit\"}}}]},\"1539\":null,\"1540\":{\"media\":[{\"id\":1554483074972499968,\"id_str\":\"1554483074972499968\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483074972499968\\/pu\\/img\\/-VyDJDVBSgFONBY3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483074972499968\\/pu\\/img\\/-VyDJDVBSgFONBY3.jpg\",\"url\":\"https:\\/\\/t.co\\/AhiUcTQdDK\",\"display_url\":\"pic.twitter.com\\/AhiUcTQdDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NKM_Global\\/status\\/1554484413584609280\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":139973,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483074972499968\\/pu\\/vid\\/480x270\\/CWAQrfKm8-DGVxys.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483074972499968\\/pu\\/pl\\/fohhl2o51TJNb42Q.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1541\":{\"media\":[{\"id\":1554484321805037573,\"id_str\":\"1554484321805037573\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554484321805037573\\/pu\\/img\\/qDOCVDbqMbGAIYJ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554484321805037573\\/pu\\/img\\/qDOCVDbqMbGAIYJ_.jpg\",\"url\":\"https:\\/\\/t.co\\/ES9Y70N49q\",\"display_url\":\"pic.twitter.com\\/ES9Y70N49q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554484350129156097\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,29],\"duration_millis\":14720,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554484321805037573\\/pu\\/vid\\/848x464\\/Furcy7tnQ__aewdq.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554484321805037573\\/pu\\/vid\\/492x270\\/9pqz2iz3VvNpUNOW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554484321805037573\\/pu\\/pl\\/yxrEd01zoGqDI9VY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":{\"media\":[{\"id\":1554483167431741440,\"id_str\":\"1554483167431741440\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"url\":\"https:\\/\\/t.co\\/qSXunCgTi2\",\"display_url\":\"pic.twitter.com\\/qSXunCgTi2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554484017214492674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":408,\"resize\":\"fit\"}}}]},\"1546\":{\"media\":[{\"id\":1554483852026036224,\"id_str\":\"1554483852026036224\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483852026036224\\/pu\\/img\\/rxv9amlOvyMX9IYS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483852026036224\\/pu\\/img\\/rxv9amlOvyMX9IYS.jpg\",\"url\":\"https:\\/\\/t.co\\/4j1dmJRcsL\",\"display_url\":\"pic.twitter.com\\/4j1dmJRcsL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554483923031318528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483852026036224\\/pu\\/vid\\/320x568\\/n4XBlKwgvURrrth1.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483852026036224\\/pu\\/vid\\/480x852\\/WJY2Zowe132841NM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483852026036224\\/pu\\/pl\\/kCTe6qz89hJXAYTx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483852026036224\\/pu\\/vid\\/576x1024\\/Kqx1flXIdGSy8CI_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1547\":{\"media\":[{\"id\":1554483845965254659,\"id_str\":\"1554483845965254659\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483845965254659\\/pu\\/img\\/NCIYrRox0c71uA7G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483845965254659\\/pu\\/img\\/NCIYrRox0c71uA7G.jpg\",\"url\":\"https:\\/\\/t.co\\/wdeLiUudUm\",\"display_url\":\"pic.twitter.com\\/wdeLiUudUm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shegx007\\/status\\/1554483917431996416\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":84633,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483845965254659\\/pu\\/vid\\/320x320\\/bhy0mha_izQnzieE.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483845965254659\\/pu\\/pl\\/3fqndCk3wN0k4jVO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483845965254659\\/pu\\/vid\\/720x720\\/RbJhXjK3pLVhHXiY.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483845965254659\\/pu\\/vid\\/540x540\\/C8LIuKCvXGsu_50h.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1548\":null,\"1549\":{\"media\":[{\"id\":1554483389201354754,\"id_str\":\"1554483389201354754\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiaA6XkAIBXot.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiaA6XkAIBXot.jpg\",\"url\":\"https:\\/\\/t.co\\/iIZ4w36QCu\",\"display_url\":\"pic.twitter.com\\/iIZ4w36QCu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554483391562661893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1125,\"h\":663,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":663,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":401,\"resize\":\"fit\"}}}]},\"1550\":{\"media\":[{\"id\":1554483304757628928,\"id_str\":\"1554483304757628928\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483304757628928\\/pu\\/img\\/LiAZABBtJ8cCxoqQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554483304757628928\\/pu\\/img\\/LiAZABBtJ8cCxoqQ.jpg\",\"url\":\"https:\\/\\/t.co\\/PBNkmGV8oI\",\"display_url\":\"pic.twitter.com\\/PBNkmGV8oI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554483373045063680\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":413,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[593,360],\"duration_millis\":60840,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483304757628928\\/pu\\/vid\\/592x360\\/KiTay7aPw4RtTYoE.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483304757628928\\/pu\\/vid\\/444x270\\/ADzSCp41lk9uGaul.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483304757628928\\/pu\\/vid\\/1186x720\\/Uz9hlzkmSwEDjK_u.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554483304757628928\\/pu\\/pl\\/G2lcEkQr9xheXAv4.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1551\":{\"media\":[{\"id\":1554483342929793024,\"id_str\":\"1554483342929793024\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"url\":\"https:\\/\\/t.co\\/khWHTKmnVb\",\"display_url\":\"pic.twitter.com\\/khWHTKmnVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1554483355172933641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":902,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":677,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"1552\":{\"media\":[{\"id\":1554482770923368452,\"id_str\":\"1554482770923368452\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554482770923368452\\/pu\\/img\\/uAhUFfOn9P1vUAYd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554482770923368452\\/pu\\/img\\/uAhUFfOn9P1vUAYd.jpg\",\"url\":\"https:\\/\\/t.co\\/IlA3rcIYKP\",\"display_url\":\"pic.twitter.com\\/IlA3rcIYKP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554482789952925702\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":616,\"h\":432,\"resize\":\"fit\"},\"large\":{\"w\":616,\"h\":432,\"resize\":\"fit\"},\"small\":{\"w\":616,\"h\":432,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[77,54],\"duration_millis\":4992,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554482770923368452\\/pu\\/pl\\/vJIzUpxEvYi0vRHG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554482770923368452\\/pu\\/vid\\/616x432\\/qS8TYBT0_ljeo-0p.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554482770923368452\\/pu\\/vid\\/384x270\\/RlCqSbkHZw8YfGDE.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1553\":{\"media\":[{\"id\":1554482605986385920,\"id_str\":\"1554482605986385920\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"url\":\"https:\\/\\/t.co\\/mymu8Wotml\",\"display_url\":\"pic.twitter.com\\/mymu8Wotml\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tobilobaddon\\/status\\/1554482608142254083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"small\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":568,\"h\":328,\"resize\":\"fit\"}}}]},\"1554\":null,\"1555\":{\"media\":[{\"id\":1554481963116920833,\"id_str\":\"1554481963116920833\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhHAVWAAElIl4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhHAVWAAElIl4.jpg\",\"url\":\"https:\\/\\/t.co\\/FZsh57rmlF\",\"display_url\":\"pic.twitter.com\\/FZsh57rmlF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwame_stalwart\\/status\\/1554481970180227072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"medium\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"large\":{\"w\":262,\"h\":229,\"resize\":\"fit\"}}}]},\"1556\":{\"media\":[{\"id\":1554481884524171267,\"id_str\":\"1554481884524171267\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhCbjX0AMqUvA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhCbjX0AMqUvA.jpg\",\"url\":\"https:\\/\\/t.co\\/eXTzX8xHQk\",\"display_url\":\"pic.twitter.com\\/eXTzX8xHQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/delywest_\\/status\\/1554481892346445824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1123,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":567,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1123,\"h\":936,\"resize\":\"fit\"}}}]},\"1557\":{\"media\":[{\"id\":1554481821919887362,\"id_str\":\"1554481821919887362\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg-yVWQAI8k0p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg-yVWQAI8k0p.jpg\",\"url\":\"https:\\/\\/t.co\\/TfEpOwszt4\",\"display_url\":\"pic.twitter.com\\/TfEpOwszt4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1554481852064440334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554481832061816833,\"id_str\":\"1554481832061816833\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg_YHX0AElsL6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg_YHX0AElsL6.jpg\",\"url\":\"https:\\/\\/t.co\\/TfEpOwszt4\",\"display_url\":\"pic.twitter.com\\/TfEpOwszt4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1554481852064440334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1750,\"h\":1750,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554481840718856194,\"id_str\":\"1554481840718856194\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg_4XXwAIeoA4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg_4XXwAIeoA4.jpg\",\"url\":\"https:\\/\\/t.co\\/TfEpOwszt4\",\"display_url\":\"pic.twitter.com\\/TfEpOwszt4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1554481852064440334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554481846641201158,\"id_str\":\"1554481846641201158\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhAObXkAYOc3F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhAObXkAYOc3F.jpg\",\"url\":\"https:\\/\\/t.co\\/TfEpOwszt4\",\"display_url\":\"pic.twitter.com\\/TfEpOwszt4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1554481852064440334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1558\":null,\"1559\":{\"media\":[{\"id\":1554481705255374848,\"id_str\":\"1554481705255374848\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"url\":\"https:\\/\\/t.co\\/XRhDOqdGKn\",\"display_url\":\"pic.twitter.com\\/XRhDOqdGKn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eagle103_voice\\/status\\/1554481716479381506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1065,\"h\":1391,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":919,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":521,\"h\":680,\"resize\":\"fit\"}}}]},\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":{\"media\":[{\"id\":1554481206649143304,\"id_str\":\"1554481206649143304\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ew5eZ1Fkee\",\"display_url\":\"pic.twitter.com\\/Ew5eZ1Fkee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/qf00_\\/status\\/1554481216363061253\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZKga-RXwAg14Gl.mp4\"}]}}]},\"1564\":{\"media\":[{\"id\":1554481069889835009,\"id_str\":\"1554481069889835009\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481069889835009\\/pu\\/img\\/63rvVhiteVolS3v6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481069889835009\\/pu\\/img\\/63rvVhiteVolS3v6.jpg\",\"url\":\"https:\\/\\/t.co\\/fJ6XMMFoBO\",\"display_url\":\"pic.twitter.com\\/fJ6XMMFoBO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554481183542878210\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":87488,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481069889835009\\/pu\\/vid\\/480x270\\/XKeg4Q4Mt9TBGpKg.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481069889835009\\/pu\\/vid\\/640x360\\/oGCMdzm8UKdutOCN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481069889835009\\/pu\\/pl\\/kcELOL1363YHQMzG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481069889835009\\/pu\\/vid\\/1280x720\\/nli5uxhKYBPdR1VT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1565\":null,\"1566\":{\"media\":[{\"id\":1554481002176733184,\"id_str\":\"1554481002176733184\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"url\":\"https:\\/\\/t.co\\/Nf5jmVAtUC\",\"display_url\":\"pic.twitter.com\\/Nf5jmVAtUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Molobeduu\\/status\\/1554481031083859973\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":594,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[33,20],\"duration_millis\":5339,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481002176733184\\/pu\\/vid\\/444x270\\/rbq0bqTRVg0BETa6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481002176733184\\/pu\\/pl\\/41MRdD9uwFe_Xdrh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481002176733184\\/pu\\/vid\\/594x360\\/J4qd76Up8195zEXR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1567\":{\"media\":[{\"id\":1554480632612487169,\"id_str\":\"1554480632612487169\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480632612487169\\/pu\\/img\\/6yLZyZt492tFm_m_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480632612487169\\/pu\\/img\\/6yLZyZt492tFm_m_.jpg\",\"url\":\"https:\\/\\/t.co\\/tDgt2EQYyT\",\"display_url\":\"pic.twitter.com\\/tDgt2EQYyT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tina_Obodoke\\/status\\/1554480953665495040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":21633,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554480632612487169\\/pu\\/vid\\/320x564\\/Rxj2VfigDcA9LYHe.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554480632612487169\\/pu\\/pl\\/O3EuHgZMAyAHUWRB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554480632612487169\\/pu\\/vid\\/480x848\\/IFFBvn8QLIvXJkvy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1568\":null,\"1569\":null,\"1570\":{\"media\":[{\"id\":1554480660156407808,\"id_str\":\"1554480660156407808\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"url\":\"https:\\/\\/t.co\\/OJmnM0SGwE\",\"display_url\":\"pic.twitter.com\\/OJmnM0SGwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554480671648792578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1070,\"h\":1427,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1571\":{\"media\":[{\"id\":1554480517617254400,\"id_str\":\"1554480517617254400\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480517617254400\\/pu\\/img\\/e8gclSjsTDAjj85c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554480517617254400\\/pu\\/img\\/e8gclSjsTDAjj85c.jpg\",\"url\":\"https:\\/\\/t.co\\/UvWL9mhNB8\",\"display_url\":\"pic.twitter.com\\/UvWL9mhNB8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554480667806863362\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":38729,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554480517617254400\\/pu\\/pl\\/Hb0HAcZTHEhQP9RR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554480517617254400\\/pu\\/vid\\/480x270\\/wTanWjqDu9YNp9Gz.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554480517617254400\\/pu\\/vid\\/1280x720\\/WOh0J0JvjDpmVQaV.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554480517617254400\\/pu\\/vid\\/640x360\\/3GvgYBqir628HU3G.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1572\":null,\"1573\":null,\"1574\":{\"media\":[{\"id\":1554479932788641793,\"id_str\":\"1554479932788641793\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"url\":\"https:\\/\\/t.co\\/s6lXtlwBZP\",\"display_url\":\"pic.twitter.com\\/s6lXtlwBZP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1554479982822543361\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30000,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479932788641793\\/pu\\/vid\\/352x352\\/p_KWRu3n8A9yZ6PV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479932788641793\\/pu\\/pl\\/a2pV4jqHciQbEI4K.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1575\":null,\"1576\":null,\"1577\":null,\"1578\":{\"media\":[{\"id\":1554479779327479810,\"id_str\":\"1554479779327479810\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"url\":\"https:\\/\\/t.co\\/Isv0fNWq2f\",\"display_url\":\"pic.twitter.com\\/Isv0fNWq2f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dynamicfxtrader\\/status\\/1554479786671702017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1744,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1579\":{\"media\":[{\"id\":1554478188125995008,\"id_str\":\"1554478188125995008\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478188125995008\\/pu\\/img\\/NQi9YnR8vLD5Qrt9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478188125995008\\/pu\\/img\\/NQi9YnR8vLD5Qrt9.jpg\",\"url\":\"https:\\/\\/t.co\\/qbHYMgsMlY\",\"display_url\":\"pic.twitter.com\\/qbHYMgsMlY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makana_Media\\/status\\/1554479761736572929\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":854,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":854,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[240,427],\"duration_millis\":11800,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478188125995008\\/pu\\/vid\\/480x854\\/nnIWeXl946Zg4IJ1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478188125995008\\/pu\\/pl\\/Z1kqh3Tu97hJJnii.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478188125995008\\/pu\\/vid\\/320x568\\/SsBfEcXia6BUMSbN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1580\":{\"media\":[{\"id\":1554479222600925185,\"id_str\":\"1554479222600925185\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479222600925185\\/pu\\/img\\/w7sRD-kHg-VNkQpT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479222600925185\\/pu\\/img\\/w7sRD-kHg-VNkQpT.jpg\",\"url\":\"https:\\/\\/t.co\\/OEd4FpVh4u\",\"display_url\":\"pic.twitter.com\\/OEd4FpVh4u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554479329631178753\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":79805,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479222600925185\\/pu\\/vid\\/640x360\\/nCmL8KtHZYsgGzJd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479222600925185\\/pu\\/vid\\/480x270\\/53hy8VjByjTksbSU.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479222600925185\\/pu\\/pl\\/IhNCRkODQoA1jJ0C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479222600925185\\/pu\\/vid\\/1280x720\\/qT2p6Pqz8VOK7Ak9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1581\":{\"media\":[{\"id\":1554479004706635777,\"id_str\":\"1554479004706635777\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479004706635777\\/pu\\/img\\/p_0Mf60NC9W3Qf_h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479004706635777\\/pu\\/img\\/p_0Mf60NC9W3Qf_h.jpg\",\"url\":\"https:\\/\\/t.co\\/9IBK8acoor\",\"display_url\":\"pic.twitter.com\\/9IBK8acoor\",\"expanded_url\":\"https:\\/\\/twitter.com\\/joephyszn\\/status\\/1554479079415496704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":50263,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479004706635777\\/pu\\/pl\\/J4_pJ8GSxDsqMhnE.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479004706635777\\/pu\\/vid\\/540x540\\/x6djyXqpAymzsOAy.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479004706635777\\/pu\\/vid\\/720x720\\/FImw8seWYSJrfJqw.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479004706635777\\/pu\\/vid\\/320x320\\/oDFHVfaXU2qH_K1G.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1582\":{\"media\":[{\"id\":1554478860850569217,\"id_str\":\"1554478860850569217\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478860850569217\\/pu\\/img\\/sMqM4dtyzsOovZ0y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478860850569217\\/pu\\/img\\/sMqM4dtyzsOovZ0y.jpg\",\"url\":\"https:\\/\\/t.co\\/tC6L7Hm4gB\",\"display_url\":\"pic.twitter.com\\/tC6L7Hm4gB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554478933676277760\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":32088,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478860850569217\\/pu\\/vid\\/1280x720\\/z4Sq0enujTCX9cnC.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478860850569217\\/pu\\/pl\\/creJ2kjju5y_GZUH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478860850569217\\/pu\\/vid\\/640x360\\/_2rBDpIoBzH3INW8.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478860850569217\\/pu\\/vid\\/480x270\\/UIhUPtIwXHUFKgAH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1583\":{\"media\":[{\"id\":1554478789043920909,\"id_str\":\"1554478789043920909\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKeOP_XoA0kBrf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKeOP_XoA0kBrf.jpg\",\"url\":\"https:\\/\\/t.co\\/oIpu4sjFkh\",\"display_url\":\"pic.twitter.com\\/oIpu4sjFkh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olasekoni\\/status\\/1554478802495066112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"}}}]},\"1584\":null,\"1585\":null,\"1586\":{\"media\":[{\"id\":1554478361531109376,\"id_str\":\"1554478361531109376\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKd1XYX0AA5V7G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKd1XYX0AA5V7G.jpg\",\"url\":\"https:\\/\\/t.co\\/MJEePYwZOk\",\"display_url\":\"pic.twitter.com\\/MJEePYwZOk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olasekoni\\/status\\/1554478363896684544\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":832,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":832,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":471,\"resize\":\"fit\"}}}]},\"1587\":{\"media\":[{\"id\":1554478134275211265,\"id_str\":\"1554478134275211265\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKdoIyWAAE4wSv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKdoIyWAAE4wSv.jpg\",\"url\":\"https:\\/\\/t.co\\/Xa2yZdhaL4\",\"display_url\":\"pic.twitter.com\\/Xa2yZdhaL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndStrats\\/status\\/1554478223240601602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1680,\"h\":1082,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":773,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":438,\"resize\":\"fit\"}}}]},\"1588\":{\"media\":[{\"id\":1554478110531371010,\"id_str\":\"1554478110531371010\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKdmwVXwAI3aYH.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKdmwVXwAI3aYH.png\",\"url\":\"https:\\/\\/t.co\\/tPwDLc2kyd\",\"display_url\":\"pic.twitter.com\\/tPwDLc2kyd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UcheJS\\/status\\/1554478124385148928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":682,\"h\":444,\"resize\":\"fit\"},\"medium\":{\"w\":682,\"h\":444,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":443,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}},{\"id\":1554478115455393793,\"id_str\":\"1554478115455393793\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKdnCrWYAEhqHp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKdnCrWYAEhqHp.png\",\"url\":\"https:\\/\\/t.co\\/tPwDLc2kyd\",\"display_url\":\"pic.twitter.com\\/tPwDLc2kyd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UcheJS\\/status\\/1554478124385148928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":531,\"h\":334,\"resize\":\"fit\"},\"small\":{\"w\":531,\"h\":334,\"resize\":\"fit\"},\"large\":{\"w\":531,\"h\":334,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1589\":null,\"1590\":{\"media\":[{\"id\":1554478053564497923,\"id_str\":\"1554478053564497923\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478053564497923\\/pu\\/img\\/ZTCzgQqmzq65sRpX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478053564497923\\/pu\\/img\\/ZTCzgQqmzq65sRpX.jpg\",\"url\":\"https:\\/\\/t.co\\/3S2l2KEDQB\",\"display_url\":\"pic.twitter.com\\/3S2l2KEDQB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554478083818008581\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":515,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":950,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":950,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,95],\"duration_millis\":11445,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478053564497923\\/pu\\/pl\\/QjLf4x8TBfP_Xx-y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478053564497923\\/pu\\/vid\\/320x422\\/yJS_v4kLNR8cvL98.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478053564497923\\/pu\\/vid\\/720x950\\/S-DvffkZ94jUgy1l.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478053564497923\\/pu\\/vid\\/480x632\\/wBlTtr4HncXFk2Mz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1591\":null,\"1592\":{\"media\":[{\"id\":1554477677729517569,\"id_str\":\"1554477677729517569\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554477677729517569\\/pu\\/img\\/v2NjkElkf6fYr48B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554477677729517569\\/pu\\/img\\/v2NjkElkf6fYr48B.jpg\",\"url\":\"https:\\/\\/t.co\\/jKZ6KXMSQr\",\"display_url\":\"pic.twitter.com\\/jKZ6KXMSQr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554477740459544579\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":714,\"h\":1278,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[119,213],\"duration_millis\":11818,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554477677729517569\\/pu\\/vid\\/320x572\\/UVwAdmrM1X32JXO_.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554477677729517569\\/pu\\/pl\\/JVcxZoJhBlHxn2uR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554477677729517569\\/pu\\/vid\\/480x858\\/qDEAdVAwB0dwTV79.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554477677729517569\\/pu\\/vid\\/714x1278\\/Gg6mlC-RHY9YTeJy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1593\":{\"media\":[{\"id\":1554477677456809985,\"id_str\":\"1554477677456809985\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKdNjAWYAEcAdp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKdNjAWYAEcAdp.jpg\",\"url\":\"https:\\/\\/t.co\\/hr2hYJMYEZ\",\"display_url\":\"pic.twitter.com\\/hr2hYJMYEZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/honeysucklegh\\/status\\/1554477695626612742\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1594\":null,\"1595\":{\"media\":[{\"id\":1554477137574432771,\"id_str\":\"1554477137574432771\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKcuHyXEAM44uY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKcuHyXEAM44uY.jpg\",\"url\":\"https:\\/\\/t.co\\/p09gbZugsh\",\"display_url\":\"pic.twitter.com\\/p09gbZugsh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndStrats\\/status\\/1554477248228507648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":545,\"resize\":\"fit\"},\"large\":{\"w\":1512,\"h\":1212,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":962,\"resize\":\"fit\"}}}]},\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":{\"media\":[{\"id\":1554476515488038915,\"id_str\":\"1554476515488038915\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476515488038915\\/pu\\/img\\/0FetRwU8zGvrs0L8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476515488038915\\/pu\\/img\\/0FetRwU8zGvrs0L8.jpg\",\"url\":\"https:\\/\\/t.co\\/RYMTUBWuxH\",\"display_url\":\"pic.twitter.com\\/RYMTUBWuxH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554476578226438144\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1186,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":413,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[593,360],\"duration_millis\":52606,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476515488038915\\/pu\\/vid\\/1186x720\\/zXuRWQkWeVvalxZT.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476515488038915\\/pu\\/vid\\/592x360\\/T82gV-hAc4AyVali.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476515488038915\\/pu\\/pl\\/6eaPZKmgqzAYIo_w.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476515488038915\\/pu\\/vid\\/444x270\\/X6hUo3kuMhDbeNli.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1600\":null,\"1601\":{\"media\":[{\"id\":1554476238479171589,\"id_str\":\"1554476238479171589\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476238479171589\\/pu\\/img\\/MYKlm0yR8yTLGXlM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554476238479171589\\/pu\\/img\\/MYKlm0yR8yTLGXlM.jpg\",\"url\":\"https:\\/\\/t.co\\/lZDNKHvZSl\",\"display_url\":\"pic.twitter.com\\/lZDNKHvZSl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oguntunnbi\\/status\\/1554476483275624450\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":56366,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476238479171589\\/pu\\/pl\\/kxEXRtKxP1p-Fo98.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476238479171589\\/pu\\/vid\\/480x270\\/UI0y19FOGSQXs68I.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476238479171589\\/pu\\/vid\\/1280x720\\/JFhkvOhft2iQaETl.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554476238479171589\\/pu\\/vid\\/640x360\\/x-RSF3qKtphvh2EX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1602\":null,\"1603\":{\"media\":[{\"id\":1554475762861973504,\"id_str\":\"1554475762861973504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKbeGlXoAA9UJH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKbeGlXoAA9UJH.jpg\",\"url\":\"https:\\/\\/t.co\\/uh5jN63Bim\",\"display_url\":\"pic.twitter.com\\/uh5jN63Bim\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554475770491330564\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":443,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":443,\"h\":492,\"resize\":\"fit\"},\"medium\":{\"w\":443,\"h\":492,\"resize\":\"fit\"}}}]},\"1604\":null,\"1605\":{\"media\":[{\"id\":1554475083061665792,\"id_str\":\"1554475083061665792\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"url\":\"https:\\/\\/t.co\\/xIXhJMAMYn\",\"display_url\":\"pic.twitter.com\\/xIXhJMAMYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SayNoToRACISMW1\\/status\\/1554475085347655681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"small\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"large\":{\"w\":566,\"h\":317,\"resize\":\"fit\"}}}]},\"1606\":null,\"1607\":{\"media\":[{\"id\":1554474907387699207,\"id_str\":\"1554474907387699207\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474907387699207\\/pu\\/img\\/0HbCfBTfvRHKGkgs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474907387699207\\/pu\\/img\\/0HbCfBTfvRHKGkgs.jpg\",\"url\":\"https:\\/\\/t.co\\/Y0yBAlAgD7\",\"display_url\":\"pic.twitter.com\\/Y0yBAlAgD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554474945828519936\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,30],\"duration_millis\":29627,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474907387699207\\/pu\\/pl\\/COxkjGD1oMlhP6zz.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474907387699207\\/pu\\/vid\\/480x846\\/1DBdOlnbOo4HY5xz.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474907387699207\\/pu\\/vid\\/544x960\\/ip_9Iqoq6YKVfAeM.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474907387699207\\/pu\\/vid\\/320x564\\/gkQllQcBMt21xjiH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1608\":null,\"1609\":{\"media\":[{\"id\":1554474784339251202,\"id_str\":\"1554474784339251202\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKalJTX0AIwU5M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKalJTX0AIwU5M.jpg\",\"url\":\"https:\\/\\/t.co\\/3e7pX6Irkp\",\"display_url\":\"pic.twitter.com\\/3e7pX6Irkp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamadeflow\\/status\\/1554474792052555777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"1610\":{\"media\":[{\"id\":1554474526855122944,\"id_str\":\"1554474526855122944\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKaWKGX0AAGuIY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKaWKGX0AAGuIY.jpg\",\"url\":\"https:\\/\\/t.co\\/CwJqnO4wFs\",\"display_url\":\"pic.twitter.com\\/CwJqnO4wFs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olasekoni\\/status\\/1554474529778548737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":425,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":425,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":425,\"h\":680,\"resize\":\"fit\"}}}]},\"1611\":null,\"1612\":null,\"1613\":{\"media\":[{\"id\":1554474240724041730,\"id_str\":\"1554474240724041730\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474240724041730\\/pu\\/img\\/YqoZuU24C8zG3FvW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474240724041730\\/pu\\/img\\/YqoZuU24C8zG3FvW.jpg\",\"url\":\"https:\\/\\/t.co\\/5enZSQOo5j\",\"display_url\":\"pic.twitter.com\\/5enZSQOo5j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554474287431823362\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":20385,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474240724041730\\/pu\\/pl\\/6ISZglD3ev4d9Dhj.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474240724041730\\/pu\\/vid\\/1280x720\\/8nhqjQ10lFKJnLKj.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474240724041730\\/pu\\/vid\\/640x360\\/DjfvWBxVdeMcIpc0.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474240724041730\\/pu\\/vid\\/480x270\\/KHIQvHnhFACQ27mV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":{\"media\":[{\"id\":1554472994759663616,\"id_str\":\"1554472994759663616\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKY8-mWYAAaLxc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKY8-mWYAAaLxc.jpg\",\"url\":\"https:\\/\\/t.co\\/RuTQYWKsr5\",\"display_url\":\"pic.twitter.com\\/RuTQYWKsr5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opheliathearti6\\/status\\/1554473008533757957\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}}}]},\"1618\":null,\"1619\":{\"media\":[{\"id\":1554472310782005248,\"id_str\":\"1554472310782005248\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554472310782005248\\/pu\\/img\\/c8T-zOa-G2SfUV8x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554472310782005248\\/pu\\/img\\/c8T-zOa-G2SfUV8x.jpg\",\"url\":\"https:\\/\\/t.co\\/5XoffHWNjo\",\"display_url\":\"pic.twitter.com\\/5XoffHWNjo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554472637530869763\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":320,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":320,\"h\":240,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":240,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":37541,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554472310782005248\\/pu\\/pl\\/bKMv2jsRgLx0lMCP.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554472310782005248\\/pu\\/vid\\/320x240\\/SjSdP49giA6syNW7.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1620\":null,\"1621\":null,\"1622\":{\"media\":[{\"id\":1554471920887889921,\"id_str\":\"1554471920887889921\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKX-eHXgAE0rWl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKX-eHXgAE0rWl.jpg\",\"url\":\"https:\\/\\/t.co\\/FCi2kXTd5N\",\"display_url\":\"pic.twitter.com\\/FCi2kXTd5N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OlaAkanni7\\/status\\/1554471940013887494\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1623\":{\"media\":[{\"id\":1554471515743207428,\"id_str\":\"1554471515743207428\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471515743207428\\/pu\\/img\\/TtcakyimR4tijC0o.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471515743207428\\/pu\\/img\\/TtcakyimR4tijC0o.jpg\",\"url\":\"https:\\/\\/t.co\\/HM2GuGYaIO\",\"display_url\":\"pic.twitter.com\\/HM2GuGYaIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554471561867952128\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20014,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471515743207428\\/pu\\/vid\\/480x852\\/hzmVVOcCRvsB0kwG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471515743207428\\/pu\\/vid\\/576x1024\\/QIMBlqUaMtZxAdOH.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471515743207428\\/pu\\/vid\\/320x568\\/5tbUznWSyTAjWs7j.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471515743207428\\/pu\\/pl\\/Wsi0sZnB4-nwpeaZ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1624\":{\"media\":[{\"id\":1554471389511536640,\"id_str\":\"1554471389511536640\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"url\":\"https:\\/\\/t.co\\/wHFRX1347o\",\"display_url\":\"pic.twitter.com\\/wHFRX1347o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Valiantjoe1\\/status\\/1554471394880225281\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1625\":null,\"1626\":{\"media\":[{\"id\":1554471160594710531,\"id_str\":\"1554471160594710531\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471160594710531\\/pu\\/img\\/gHxyVyPigur2r35t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471160594710531\\/pu\\/img\\/gHxyVyPigur2r35t.jpg\",\"url\":\"https:\\/\\/t.co\\/xC7HYy295A\",\"display_url\":\"pic.twitter.com\\/xC7HYy295A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554471218316705796\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20014,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471160594710531\\/pu\\/vid\\/320x568\\/0st8S1sOY1ZTmWk6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471160594710531\\/pu\\/vid\\/576x1024\\/Ap1iddDpMaM9ALeA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471160594710531\\/pu\\/pl\\/R319rorCh_WD7M8s.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471160594710531\\/pu\\/vid\\/480x852\\/DcWkCWKWupPXY-a6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1627\":{\"media\":[{\"id\":1554471055900954631,\"id_str\":\"1554471055900954631\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471055900954631\\/pu\\/img\\/k8nXm9R3CBCsIrCF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554471055900954631\\/pu\\/img\\/k8nXm9R3CBCsIrCF.jpg\",\"url\":\"https:\\/\\/t.co\\/ALr1WjP5bV\",\"display_url\":\"pic.twitter.com\\/ALr1WjP5bV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554471104647151617\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":576,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":576,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[10,9],\"duration_millis\":36466,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471055900954631\\/pu\\/vid\\/640x576\\/DKwij1tNycsG6fwQ.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471055900954631\\/pu\\/vid\\/300x270\\/Ffb9pis1YsWON-1I.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471055900954631\\/pu\\/pl\\/34PUKpNKSjDt2_7d.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554471055900954631\\/pu\\/vid\\/400x360\\/w8MkpXg6A3GvgiqP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1628\":null,\"1629\":{\"media\":[{\"id\":1554470879916179458,\"id_str\":\"1554470879916179458\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKXB4MXwAIMS99.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKXB4MXwAIMS99.jpg\",\"url\":\"https:\\/\\/t.co\\/kmIGqN2bF9\",\"display_url\":\"pic.twitter.com\\/kmIGqN2bF9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/prudenceovlagos\\/status\\/1554470884785721348\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":320,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":320,\"resize\":\"fit\"}}}]},\"1630\":{\"media\":[{\"id\":1554470215278534656,\"id_str\":\"1554470215278534656\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554470215278534656\\/pu\\/img\\/T9PjKu6JmvGt_33_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554470215278534656\\/pu\\/img\\/T9PjKu6JmvGt_33_.jpg\",\"url\":\"https:\\/\\/t.co\\/90AXSsVvyl\",\"display_url\":\"pic.twitter.com\\/90AXSsVvyl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554470286439124993\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":326,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":576,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[25,12],\"duration_millis\":34208,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554470215278534656\\/pu\\/pl\\/yHBT3laC6e0BHQ16.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554470215278534656\\/pu\\/vid\\/1200x576\\/aLBRoM5nrU91JyfJ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554470215278534656\\/pu\\/vid\\/750x360\\/1aMTmi-_SDBQcfwL.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554470215278534656\\/pu\\/vid\\/562x270\\/S8ZwNoeINqXyD9Ck.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1631\":{\"media\":[{\"id\":1554469977557794817,\"id_str\":\"1554469977557794817\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKWNWpXgAETild.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKWNWpXgAETild.jpg\",\"url\":\"https:\\/\\/t.co\\/JEoJMFIx81\",\"display_url\":\"pic.twitter.com\\/JEoJMFIx81\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dnaomi876\\/status\\/1554469984067362817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1632\":{\"media\":[{\"id\":1554469912105598977,\"id_str\":\"1554469912105598977\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKWJi0WQAEhxQ6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKWJi0WQAEhxQ6.jpg\",\"url\":\"https:\\/\\/t.co\\/fDoav6kCCU\",\"display_url\":\"pic.twitter.com\\/fDoav6kCCU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PraiseMACHINE02\\/status\\/1554469920737476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":919,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":538,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":305,\"h\":680,\"resize\":\"fit\"}}}]},\"1633\":null,\"1634\":null,\"1635\":{\"media\":[{\"id\":1554469476212645888,\"id_str\":\"1554469476212645888\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469476212645888\\/pu\\/img\\/b2z62oEemvVeAmDH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469476212645888\\/pu\\/img\\/b2z62oEemvVeAmDH.jpg\",\"url\":\"https:\\/\\/t.co\\/QHFrOjG3Io\",\"display_url\":\"pic.twitter.com\\/QHFrOjG3Io\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SundayBabajid10\\/status\\/1554469545678618624\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":44998,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469476212645888\\/pu\\/vid\\/640x360\\/U2K09MUFlicfXZrB.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469476212645888\\/pu\\/vid\\/480x270\\/J9ZUjYRomgjNnItt.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469476212645888\\/pu\\/vid\\/1280x720\\/07mqIEZdEZuKH9Rr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469476212645888\\/pu\\/pl\\/wLukBCIT32fVHTuz.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1636\":{\"media\":[{\"id\":1554469314270736384,\"id_str\":\"1554469314270736384\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469314270736384\\/pu\\/img\\/YDffBzLhd7tANLwE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554469314270736384\\/pu\\/img\\/YDffBzLhd7tANLwE.jpg\",\"url\":\"https:\\/\\/t.co\\/8yellfvyeC\",\"display_url\":\"pic.twitter.com\\/8yellfvyeC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554469468939911171\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44975,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469314270736384\\/pu\\/pl\\/U5Fp_Mj7fo64FCvU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469314270736384\\/pu\\/vid\\/320x568\\/v7dZaJU4RChBVRS-.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469314270736384\\/pu\\/vid\\/480x852\\/T3SFMyKOFy34RL41.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554469314270736384\\/pu\\/vid\\/720x1280\\/9PreYaz9uwl_3ita.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1637\":{\"media\":[{\"id\":1554469413599977472,\"id_str\":\"1554469413599977472\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"url\":\"https:\\/\\/t.co\\/U2R14Y4sei\",\"display_url\":\"pic.twitter.com\\/U2R14Y4sei\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itodougo\\/status\\/1554469421036576769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"medium\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"}}}]},\"1638\":null,\"1639\":null,\"1640\":{\"media\":[{\"id\":1554468330450436097,\"id_str\":\"1554468330450436097\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKUtesXwAEFtyh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKUtesXwAEFtyh.jpg\",\"url\":\"https:\\/\\/t.co\\/2pZNcRvJbe\",\"display_url\":\"pic.twitter.com\\/2pZNcRvJbe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Senatorisiaq\\/status\\/1554468337685512193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1125,\"h\":1263,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1069,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":606,\"h\":680,\"resize\":\"fit\"}}}]},\"1641\":{\"media\":[{\"id\":1554468096131608577,\"id_str\":\"1554468096131608577\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554468096131608577\\/pu\\/img\\/XmYSGJJuMZB-B6J5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554468096131608577\\/pu\\/img\\/XmYSGJJuMZB-B6J5.jpg\",\"url\":\"https:\\/\\/t.co\\/E82iDiEi2O\",\"display_url\":\"pic.twitter.com\\/E82iDiEi2O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554468130847879169\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":11261,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554468096131608577\\/pu\\/vid\\/320x564\\/ybFYTs9HkPoyEJwT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554468096131608577\\/pu\\/pl\\/JiKNvhPFaNPnFTlZ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1642\":{\"media\":[{\"id\":1554467830392823808,\"id_str\":\"1554467830392823808\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467830392823808\\/pu\\/img\\/AVsJwBqD66DzYSip.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467830392823808\\/pu\\/img\\/AVsJwBqD66DzYSip.jpg\",\"url\":\"https:\\/\\/t.co\\/cIenhmGeCX\",\"display_url\":\"pic.twitter.com\\/cIenhmGeCX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554467930699603970\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":25525,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554467830392823808\\/pu\\/pl\\/6rE7X20fNbEHtY77.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554467830392823808\\/pu\\/vid\\/720x1280\\/aPd5FvZkayE7pYt-.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554467830392823808\\/pu\\/vid\\/320x568\\/f55r6qbY3A8daMfb.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554467830392823808\\/pu\\/vid\\/480x852\\/COoXWnCxiBHJ_0zY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1643\":null,\"1644\":{\"media\":[{\"id\":1554467168103944195,\"id_str\":\"1554467168103944195\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467168103944195\\/pu\\/img\\/WXk8BdBgbsnkvJAN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554467168103944195\\/pu\\/img\\/WXk8BdBgbsnkvJAN.jpg\",\"url\":\"https:\\/\\/t.co\\/PS6m6PbrNu\",\"display_url\":\"pic.twitter.com\\/PS6m6PbrNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ijeomambama\\/status\\/1554467209052930048\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29934,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554467168103944195\\/pu\\/vid\\/480x480\\/FnFSJ8xEMYDpWZNu.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554467168103944195\\/pu\\/vid\\/320x320\\/JESslCcWjwlxMyBJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554467168103944195\\/pu\\/pl\\/bUAyyOF2Fo31Khw-.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1645\":{\"media\":[{\"id\":1554466414228307971,\"id_str\":\"1554466414228307971\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554466414228307971\\/pu\\/img\\/tZobzjy4vmzRkVUj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554466414228307971\\/pu\\/img\\/tZobzjy4vmzRkVUj.jpg\",\"url\":\"https:\\/\\/t.co\\/XX7MdNqzMM\",\"display_url\":\"pic.twitter.com\\/XX7MdNqzMM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554466482536718336\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":8007,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554466414228307971\\/pu\\/vid\\/1280x720\\/e8achPVm1_0vJk1M.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554466414228307971\\/pu\\/vid\\/640x360\\/TXHOXtUtQ_GEcZY2.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554466414228307971\\/pu\\/pl\\/XUqF5aTOybIGVuGc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554466414228307971\\/pu\\/vid\\/480x270\\/YlrxWHc0U3CgQsdw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1646\":null,\"1647\":{\"media\":[{\"id\":1554465870575030275,\"id_str\":\"1554465870575030275\",\"indices\":[56,79],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"url\":\"https:\\/\\/t.co\\/qSszhovah4\",\"display_url\":\"pic.twitter.com\\/qSszhovah4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bryteazy\\/status\\/1554466213534769152\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":1280,\"h\":1140,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1069,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":606,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[64,57],\"duration_millis\":20833,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/pl\\/ftQ2XOfJEzhBIZQX.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/vid\\/808x720\\/JpS9CG1_gH_bDWa7.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/vid\\/302x270\\/n3P1amXALOxxk0H4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/vid\\/404x360\\/mBs9CAfxivKDeZu9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1648\":null,\"1649\":{\"media\":[{\"id\":1554465564449738755,\"id_str\":\"1554465564449738755\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465564449738755\\/pu\\/img\\/seC_b6Lv5BHxYBGX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465564449738755\\/pu\\/img\\/seC_b6Lv5BHxYBGX.jpg\",\"url\":\"https:\\/\\/t.co\\/cUdPKXBg3e\",\"display_url\":\"pic.twitter.com\\/cUdPKXBg3e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554465726966419456\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48115,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465564449738755\\/pu\\/vid\\/640x360\\/xCVAQo8boFH4MxI2.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465564449738755\\/pu\\/pl\\/1w3LRJWZ_9XG0tY5.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465564449738755\\/pu\\/vid\\/960x540\\/rK5GM90AanNapW2p.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465564449738755\\/pu\\/vid\\/480x270\\/CvcYrumiaOzDsPF8.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1650\":{\"media\":[{\"id\":1554465523370426370,\"id_str\":\"1554465523370426370\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"url\":\"https:\\/\\/t.co\\/ecNkeV31YO\",\"display_url\":\"pic.twitter.com\\/ecNkeV31YO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/medicare_in\\/status\\/1554465540617506818\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1414,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"}}}]},\"1651\":{\"media\":[{\"id\":1554465162324738050,\"id_str\":\"1554465162324738050\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKR1EgWAAIzevD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKR1EgWAAIzevD.jpg\",\"url\":\"https:\\/\\/t.co\\/DB8Tnfp3dS\",\"display_url\":\"pic.twitter.com\\/DB8Tnfp3dS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pearlsammy5\\/status\\/1554465166091231233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}}}]},\"1652\":null,\"1653\":{\"media\":[{\"id\":1554464008060772354,\"id_str\":\"1554464008060772354\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554464008060772354\\/pu\\/img\\/nlsLqWJrirlllFDL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554464008060772354\\/pu\\/img\\/nlsLqWJrirlllFDL.jpg\",\"url\":\"https:\\/\\/t.co\\/lIO0je9V1J\",\"display_url\":\"pic.twitter.com\\/lIO0je9V1J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/inanakwasi\\/status\\/1554464354522828803\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":724,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":724,\"resize\":\"fit\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[120,181],\"duration_millis\":16332,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554464008060772354\\/pu\\/pl\\/AWKs1is9ylE4IQmo.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554464008060772354\\/pu\\/vid\\/480x724\\/XzqYVcoBgaPpxcOx.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554464008060772354\\/pu\\/vid\\/320x482\\/TlZzUxS6h2OOtLvP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1654\":null,\"1655\":{\"media\":[{\"id\":1554463903660261376,\"id_str\":\"1554463903660261376\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQrznWQAAVHFZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQrznWQAAVHFZ.jpg\",\"url\":\"https:\\/\\/t.co\\/A4epmydzTR\",\"display_url\":\"pic.twitter.com\\/A4epmydzTR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554463907498139649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1656\":{\"media\":[{\"id\":1554463340562464771,\"id_str\":\"1554463340562464771\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463340562464771\\/pu\\/img\\/AxayEwJgbNVXfc78.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463340562464771\\/pu\\/img\\/AxayEwJgbNVXfc78.jpg\",\"url\":\"https:\\/\\/t.co\\/fDJwE6jlg6\",\"display_url\":\"pic.twitter.com\\/fDJwE6jlg6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dannypete4\\/status\\/1554463462511853568\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":45004,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463340562464771\\/pu\\/vid\\/640x360\\/1K2DDL92wCLsedQs.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463340562464771\\/pu\\/pl\\/eimu0c8MvY5HNlrx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463340562464771\\/pu\\/vid\\/1280x720\\/tQf9RJQ940XkkCcs.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463340562464771\\/pu\\/vid\\/480x270\\/fxOWpBaZZahjd3CG.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1657\":{\"media\":[{\"id\":1554463378256658432,\"id_str\":\"1554463378256658432\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"url\":\"https:\\/\\/t.co\\/EcL52eIPAV\",\"display_url\":\"pic.twitter.com\\/EcL52eIPAV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoviePlusx\\/status\\/1554463390118121475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":718,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":898,\"resize\":\"fit\"}}}]},\"1658\":{\"media\":[{\"id\":1554463350402285568,\"id_str\":\"1554463350402285568\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"url\":\"https:\\/\\/t.co\\/m6ECdRSDzU\",\"display_url\":\"pic.twitter.com\\/m6ECdRSDzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olisasegun1\\/status\\/1554463372409700353\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,2],\"duration_millis\":8173,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463350402285568\\/pu\\/pl\\/5otLX1Dyj0SmdJd6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463350402285568\\/pu\\/vid\\/320x640\\/ynE6QWtRCNqqz9n3.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1659\":{\"media\":[{\"id\":1554463155962642432,\"id_str\":\"1554463155962642432\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQASOWAAAmAUn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQASOWAAAmAUn.jpg\",\"url\":\"https:\\/\\/t.co\\/5wPCn0MdWL\",\"display_url\":\"pic.twitter.com\\/5wPCn0MdWL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554463159053950976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":404,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":428,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":428,\"resize\":\"fit\"}}}]},\"1660\":{\"media\":[{\"id\":1554462666688708608,\"id_str\":\"1554462666688708608\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"url\":\"https:\\/\\/t.co\\/cuyRJDGRbG\",\"display_url\":\"pic.twitter.com\\/cuyRJDGRbG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nickyB112\\/status\\/1554462671868674048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"1661\":null,\"1662\":{\"media\":[{\"id\":1554462016458596352,\"id_str\":\"1554462016458596352\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554462016458596352\\/pu\\/img\\/pslQeGPQj--ax4C0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554462016458596352\\/pu\\/img\\/pslQeGPQj--ax4C0.jpg\",\"url\":\"https:\\/\\/t.co\\/jf1POOysjy\",\"display_url\":\"pic.twitter.com\\/jf1POOysjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554462112042610688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":35240,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554462016458596352\\/pu\\/vid\\/1280x720\\/4gtsuTqceVYvep37.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554462016458596352\\/pu\\/vid\\/480x270\\/y6HRQzkHZu-1vRqQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554462016458596352\\/pu\\/pl\\/YJMNwO6Gf0lnkAA5.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554462016458596352\\/pu\\/vid\\/640x360\\/iRHh43tX3u2BX1vQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1663\":null,\"1664\":{\"media\":[{\"id\":1554461471794413568,\"id_str\":\"1554461471794413568\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"url\":\"https:\\/\\/t.co\\/AEHJLCBgvR\",\"display_url\":\"pic.twitter.com\\/AEHJLCBgvR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/callmelemontee\\/status\\/1554461575834107905\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/vid\\/480x852\\/6s-wG3DLKLIMSH_r.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/vid\\/720x1280\\/p4JpiyYNEwcDmUZT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/pl\\/IrQJu3CdVDQthSnF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/vid\\/320x568\\/534BFsY-f_JOaMPD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1665\":{\"media\":[{\"id\":1554461313346453504,\"id_str\":\"1554461313346453504\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461313346453504\\/pu\\/img\\/NjpYwQiL62Bw_J2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461313346453504\\/pu\\/img\\/NjpYwQiL62Bw_J2l.jpg\",\"url\":\"https:\\/\\/t.co\\/JSyjDFEg8f\",\"display_url\":\"pic.twitter.com\\/JSyjDFEg8f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554461394799837184\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":33250,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461313346453504\\/pu\\/vid\\/640x360\\/5pNSgbNgVE6n1VZT.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461313346453504\\/pu\\/vid\\/480x270\\/FpMv8KTqK5XKFBEi.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461313346453504\\/pu\\/vid\\/1280x720\\/QQiBpg3ukTAmpCxp.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461313346453504\\/pu\\/pl\\/ZDm1obS9F990K3AR.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1666\":{\"media\":[{\"id\":1554461077555011584,\"id_str\":\"1554461077555011584\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"url\":\"https:\\/\\/t.co\\/YbG5YomfHO\",\"display_url\":\"pic.twitter.com\\/YbG5YomfHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sam_Deck\\/status\\/1554461094823034885\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":922,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"1667\":{\"media\":[{\"id\":1554460508446756864,\"id_str\":\"1554460508446756864\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554460508446756864\\/pu\\/img\\/V1tgZqmBdixQpWyR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554460508446756864\\/pu\\/img\\/V1tgZqmBdixQpWyR.jpg\",\"url\":\"https:\\/\\/t.co\\/Gu5OyC7hrY\",\"display_url\":\"pic.twitter.com\\/Gu5OyC7hrY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdajaMusic\\/status\\/1554460717239226369\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":886,\"h\":768,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":589,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,384],\"duration_millis\":140000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554460508446756864\\/pu\\/vid\\/830x720\\/Lv-pA__MpP3ehygq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554460508446756864\\/pu\\/pl\\/lYo06N6ZQJ6UoIis.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554460508446756864\\/pu\\/vid\\/310x270\\/Waa0QZWx5VmJOSPu.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554460508446756864\\/pu\\/vid\\/414x360\\/dTd39fEKKH1KZ6ii.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1668\":null,\"1669\":{\"media\":[{\"id\":1554458533432786944,\"id_str\":\"1554458533432786944\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458533432786944\\/pu\\/img\\/3VX1Rafl249_Puql.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458533432786944\\/pu\\/img\\/3VX1Rafl249_Puql.jpg\",\"url\":\"https:\\/\\/t.co\\/rvGgV5usv9\",\"display_url\":\"pic.twitter.com\\/rvGgV5usv9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PhoenixTVHK\\/status\\/1554458601514729480\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"source_status_id\":1554458601514729480,\"source_status_id_str\":\"1554458601514729480\",\"source_user_id\":2269976876,\"source_user_id_str\":\"2269976876\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":116600,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554458533432786944\\/pu\\/vid\\/480x270\\/PQmxGZqnAxxTx2Av.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554458533432786944\\/pu\\/vid\\/640x360\\/Aahjje3cLOjWDQCd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554458533432786944\\/pu\\/pl\\/GIXZcEqr2ybLJ2OH.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1670\":{\"media\":[{\"id\":1554459418854625281,\"id_str\":\"1554459418854625281\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554459418854625281\\/pu\\/img\\/qdzfa_ztUNFt1K8Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554459418854625281\\/pu\\/img\\/qdzfa_ztUNFt1K8Z.jpg\",\"url\":\"https:\\/\\/t.co\\/555A3TEfiX\",\"display_url\":\"pic.twitter.com\\/555A3TEfiX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BabatundeSoji\\/status\\/1554459460155867138\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":384,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":384,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,5],\"duration_millis\":13977,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554459418854625281\\/pu\\/vid\\/384x640\\/ahlktff923yk8goH.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554459418854625281\\/pu\\/vid\\/320x532\\/66gkthrqm6Spsl2G.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554459418854625281\\/pu\\/pl\\/78Ro0meMcsBwa4iE.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":{\"media\":[{\"id\":1554458620338774017,\"id_str\":\"1554458620338774017\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458620338774017\\/pu\\/img\\/AiYLeTlHLQjrlKvi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554458620338774017\\/pu\\/img\\/AiYLeTlHLQjrlKvi.jpg\",\"url\":\"https:\\/\\/t.co\\/VNz2IEWjvZ\",\"display_url\":\"pic.twitter.com\\/VNz2IEWjvZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/properties_we\\/status\\/1554458899335479296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":30355,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554458620338774017\\/pu\\/vid\\/1280x720\\/hTKRAL0LidPfioLS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554458620338774017\\/pu\\/pl\\/tCsi9_JfSBSG0BGv.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554458620338774017\\/pu\\/vid\\/480x270\\/KvyMOrDE5pwqADpG.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554458620338774017\\/pu\\/vid\\/640x360\\/7XuXfdFPcsNmmSO2.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1676\":null,\"1677\":{\"media\":[{\"id\":1554458406907531264,\"id_str\":\"1554458406907531264\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKLr2nX0AAx9Uf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKLr2nX0AAx9Uf.jpg\",\"url\":\"https:\\/\\/t.co\\/v54NqP785O\",\"display_url\":\"pic.twitter.com\\/v54NqP785O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jen_mazzei\\/status\\/1554458420522123265\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1013,\"h\":1721,\"resize\":\"fit\"},\"medium\":{\"w\":706,\"h\":1200,\"resize\":\"fit\"}}}]},\"1678\":null,\"1679\":{\"media\":[{\"id\":1554457464489349120,\"id_str\":\"1554457464489349120\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"url\":\"https:\\/\\/t.co\\/XIHsYklIxS\",\"display_url\":\"pic.twitter.com\\/XIHsYklIxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554457473960103938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":771,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":764,\"h\":771,\"resize\":\"fit\"}}},{\"id\":1554457464501899266,\"id_str\":\"1554457464501899266\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKK0_4XEAIFlb2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKK0_4XEAIFlb2.jpg\",\"url\":\"https:\\/\\/t.co\\/XIHsYklIxS\",\"display_url\":\"pic.twitter.com\\/XIHsYklIxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554457473960103938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":754,\"h\":758,\"resize\":\"fit\"},\"medium\":{\"w\":754,\"h\":758,\"resize\":\"fit\"},\"small\":{\"w\":676,\"h\":680,\"resize\":\"fit\"}}}]},\"1680\":{\"media\":[{\"id\":1554457083604602882,\"id_str\":\"1554457083604602882\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKKe07XkAIBdAl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKKe07XkAIBdAl.jpg\",\"url\":\"https:\\/\\/t.co\\/bFQGFMSKln\",\"display_url\":\"pic.twitter.com\\/bFQGFMSKln\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554457091351486467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1636,\"h\":764,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":318,\"resize\":\"fit\"}}}]},\"1681\":{\"media\":[{\"id\":1554456432028037120,\"id_str\":\"1554456432028037120\",\"indices\":[200,223],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554456432028037120\\/pu\\/img\\/EFZg0EwQVB9PiQWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554456432028037120\\/pu\\/img\\/EFZg0EwQVB9PiQWa.jpg\",\"url\":\"https:\\/\\/t.co\\/8UNYBypwYl\",\"display_url\":\"pic.twitter.com\\/8UNYBypwYl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554456457743339520\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":13880,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554456432028037120\\/pu\\/vid\\/478x270\\/eIZFnIUNeVj0rR-V.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554456432028037120\\/pu\\/vid\\/638x360\\/a5v8n60weLp_G2AS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554456432028037120\\/pu\\/pl\\/tCmX2M2m_qKTmLT2.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554456432028037120\\/pu\\/vid\\/852x480\\/1Ube3yutm8u3IvA7.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1682\":{\"media\":[{\"id\":1554456166964629506,\"id_str\":\"1554456166964629506\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKJpeLXkAIzl0l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKJpeLXkAIzl0l.jpg\",\"url\":\"https:\\/\\/t.co\\/QgssnsWuOP\",\"display_url\":\"pic.twitter.com\\/QgssnsWuOP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsEghosa\\/status\\/1554456169065992194\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":455,\"h\":436,\"resize\":\"fit\"},\"large\":{\"w\":455,\"h\":436,\"resize\":\"fit\"},\"medium\":{\"w\":455,\"h\":436,\"resize\":\"fit\"}}}]},\"1683\":{\"media\":[{\"id\":1554454951190986753,\"id_str\":\"1554454951190986753\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"url\":\"https:\\/\\/t.co\\/gh7OVsyT2j\",\"display_url\":\"pic.twitter.com\\/gh7OVsyT2j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/samuelobiora21\\/status\\/1554454961697820673\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"1684\":{\"media\":[{\"id\":1554454829166379008,\"id_str\":\"1554454829166379008\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454829166379008\\/pu\\/img\\/GIeYkf3o__V0EeQS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454829166379008\\/pu\\/img\\/GIeYkf3o__V0EeQS.jpg\",\"url\":\"https:\\/\\/t.co\\/Fung4wT3eh\",\"display_url\":\"pic.twitter.com\\/Fung4wT3eh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554454897709690881\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":27760,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554454829166379008\\/pu\\/vid\\/1280x720\\/4S78DkN6jXHaB4vE.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554454829166379008\\/pu\\/pl\\/McpZU3FWNHu8VVAt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554454829166379008\\/pu\\/vid\\/640x360\\/dFAbtEMF_lB2cpaa.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554454829166379008\\/pu\\/vid\\/480x270\\/-x0Oi0Vr5-L63Y4K.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":{\"media\":[{\"id\":1554454168085368832,\"id_str\":\"1554454168085368832\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454168085368832\\/pu\\/img\\/AKqDDlQjcWJaSNuJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554454168085368832\\/pu\\/img\\/AKqDDlQjcWJaSNuJ.jpg\",\"url\":\"https:\\/\\/t.co\\/WqshEnyAxe\",\"display_url\":\"pic.twitter.com\\/WqshEnyAxe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554454222472904705\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":464,\"h\":848,\"resize\":\"fit\"},\"large\":{\"w\":464,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[29,53],\"duration_millis\":44907,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554454168085368832\\/pu\\/vid\\/320x584\\/LY7a6vWEGOnw0k5m.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554454168085368832\\/pu\\/pl\\/pU8RXndDa6RTzOmO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554454168085368832\\/pu\\/vid\\/464x848\\/iKI1tA8xkzG9xbyX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1689\":{\"media\":[{\"id\":1554454067900026880,\"id_str\":\"1554454067900026880\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKHvSjXkAAYDrp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKHvSjXkAAYDrp.jpg\",\"url\":\"https:\\/\\/t.co\\/eVRnNjG5tu\",\"display_url\":\"pic.twitter.com\\/eVRnNjG5tu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jen_mazzei\\/status\\/1554454089001582593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":663,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":375,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1101,\"h\":1994,\"resize\":\"fit\"}}}]},\"1690\":null,\"1691\":null,\"1692\":{\"media\":[{\"id\":1554453674776313857,\"id_str\":\"1554453674776313857\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"url\":\"https:\\/\\/t.co\\/642t62L8pp\",\"display_url\":\"pic.twitter.com\\/642t62L8pp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554453682267250688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1693\":null,\"1694\":null,\"1695\":{\"media\":[{\"id\":1554453106989346816,\"id_str\":\"1554453106989346816\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554453106989346816\\/pu\\/img\\/RDA-A08wv5dNqSFC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554453106989346816\\/pu\\/img\\/RDA-A08wv5dNqSFC.jpg\",\"url\":\"https:\\/\\/t.co\\/VwrhTGkrR6\",\"display_url\":\"pic.twitter.com\\/VwrhTGkrR6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554453161360125952\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,30],\"duration_millis\":17130,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554453106989346816\\/pu\\/vid\\/320x564\\/FSneFlD_NqP7HAY_.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554453106989346816\\/pu\\/vid\\/544x960\\/VbJ9cca43Huyz4x5.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554453106989346816\\/pu\\/vid\\/480x846\\/SdzLr4DuwslG9YWN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554453106989346816\\/pu\\/pl\\/FrNs1ZsIe-noaC4n.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1696\":{\"media\":[{\"id\":1554453095563902976,\"id_str\":\"1554453095563902976\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"url\":\"https:\\/\\/t.co\\/CLoG9bLDcw\",\"display_url\":\"pic.twitter.com\\/CLoG9bLDcw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Joynerkardinal\\/status\\/1554453118456369153\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"}}}]},\"1697\":{\"media\":[{\"id\":1554452964005265408,\"id_str\":\"1554452964005265408\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKGvCOWQAAk9Ei.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKGvCOWQAAk9Ei.jpg\",\"url\":\"https:\\/\\/t.co\\/iXfzrJihsp\",\"display_url\":\"pic.twitter.com\\/iXfzrJihsp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1554452967595692035\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":431,\"h\":396,\"resize\":\"fit\"},\"small\":{\"w\":431,\"h\":396,\"resize\":\"fit\"},\"medium\":{\"w\":431,\"h\":396,\"resize\":\"fit\"}}}]},\"1698\":{\"media\":[{\"id\":1554452844748619777,\"id_str\":\"1554452844748619777\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKGoF9WQAEpICU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKGoF9WQAEpICU.jpg\",\"url\":\"https:\\/\\/t.co\\/SjxB4OMnnE\",\"display_url\":\"pic.twitter.com\\/SjxB4OMnnE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jen_mazzei\\/status\\/1554452864642289666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1045,\"h\":1775,\"resize\":\"fit\"},\"medium\":{\"w\":706,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":680,\"resize\":\"fit\"}}}]},\"1699\":{\"media\":[{\"id\":1554452719095660546,\"id_str\":\"1554452719095660546\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452719095660546\\/pu\\/img\\/IqELUzk0tJL0pKc-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452719095660546\\/pu\\/img\\/IqELUzk0tJL0pKc-.jpg\",\"url\":\"https:\\/\\/t.co\\/07SOC30rqV\",\"display_url\":\"pic.twitter.com\\/07SOC30rqV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554452801647935488\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":7900,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554452719095660546\\/pu\\/pl\\/NHq9wg8bP67wYYvf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554452719095660546\\/pu\\/vid\\/320x568\\/tzGeiReZtaHmYtK4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554452719095660546\\/pu\\/vid\\/480x852\\/nelGxIKxGX1d3Dxz.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554452719095660546\\/pu\\/vid\\/720x1280\\/F7CRClclZfc7-zvs.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1700\":{\"media\":[{\"id\":1554452595485327368,\"id_str\":\"1554452595485327368\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKGZlYWQAg6iX3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKGZlYWQAg6iX3.jpg\",\"url\":\"https:\\/\\/t.co\\/AlKeH9FK4t\",\"display_url\":\"pic.twitter.com\\/AlKeH9FK4t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bulky305\\/status\\/1554452602141786113\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":600,\"resize\":\"fit\"}}}]},\"1701\":null,\"1702\":{\"media\":[{\"id\":1554452243302449152,\"id_str\":\"1554452243302449152\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452243302449152\\/pu\\/img\\/49eKs6gZu4-tD_Ye.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554452243302449152\\/pu\\/img\\/49eKs6gZu4-tD_Ye.jpg\",\"url\":\"https:\\/\\/t.co\\/htgQ3dPEQv\",\"display_url\":\"pic.twitter.com\\/htgQ3dPEQv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554452339570114560\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":406,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":406,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[360,203],\"duration_millis\":18040,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554452243302449152\\/pu\\/vid\\/720x406\\/1tDHy8VDy699fmLL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554452243302449152\\/pu\\/pl\\/N4XWpLpLsnzUdPdZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554452243302449152\\/pu\\/vid\\/478x270\\/1IJTIyfnBOarNN8n.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1703\":null,\"1704\":{\"media\":[{\"id\":1554451577288949761,\"id_str\":\"1554451577288949761\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554451577288949761\\/pu\\/img\\/kDb6Kyo-gqOe4bcH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554451577288949761\\/pu\\/img\\/kDb6Kyo-gqOe4bcH.jpg\",\"url\":\"https:\\/\\/t.co\\/takZPebuQm\",\"display_url\":\"pic.twitter.com\\/takZPebuQm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554451611594149888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,17],\"duration_millis\":15020,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554451577288949761\\/pu\\/vid\\/634x360\\/QI_iK9UDDcN39aum.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554451577288949761\\/pu\\/pl\\/tMJcXxdB-6sHHU0R.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554451577288949761\\/pu\\/vid\\/476x270\\/JCGtxHSbUtogKXUX.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554451577288949761\\/pu\\/vid\\/960x544\\/YFlbZ3-d74aionwm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1705\":{\"media\":[{\"id\":1554451334740512769,\"id_str\":\"1554451334740512769\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554451334740561920,\"id_str\":\"1554451334740561920\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvX0AAiuuH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvX0AAiuuH.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554451334740549632,\"id_str\":\"1554451334740549632\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXoAA-QnA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXoAA-QnA.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554451334748930051,\"id_str\":\"1554451334748930051\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMxXgAMAQUY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMxXgAMAQUY.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}}]},\"1706\":{\"media\":[{\"id\":1554451058251923456,\"id_str\":\"1554451058251923456\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"url\":\"https:\\/\\/t.co\\/X6qCM1jrbW\",\"display_url\":\"pic.twitter.com\\/X6qCM1jrbW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554451066577641472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":737,\"h\":933,\"resize\":\"fit\"},\"small\":{\"w\":537,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":737,\"h\":933,\"resize\":\"fit\"}}}]},\"1707\":{\"media\":[{\"id\":1554450613844459520,\"id_str\":\"1554450613844459520\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKEmPMWQAAIZ8g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKEmPMWQAAIZ8g.jpg\",\"url\":\"https:\\/\\/t.co\\/6vuOGM1bVY\",\"display_url\":\"pic.twitter.com\\/6vuOGM1bVY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hhouseshortlet\\/status\\/1554450631997407235\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":449,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":792,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1352,\"resize\":\"fit\"}}},{\"id\":1554450628805644288,\"id_str\":\"1554450628805644288\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKEnG7X0AA89Gm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKEnG7X0AA89Gm.jpg\",\"url\":\"https:\\/\\/t.co\\/6vuOGM1bVY\",\"display_url\":\"pic.twitter.com\\/6vuOGM1bVY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hhouseshortlet\\/status\\/1554450631997407235\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1365,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"1708\":{\"media\":[{\"id\":1554450477978648582,\"id_str\":\"1554450477978648582\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKEeVDagAYoWrd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKEeVDagAYoWrd.jpg\",\"url\":\"https:\\/\\/t.co\\/Nd5CqzxIc5\",\"display_url\":\"pic.twitter.com\\/Nd5CqzxIc5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554450492344123392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":450,\"resize\":\"fit\"}}}]},\"1709\":{\"media\":[{\"id\":1554450337343639557,\"id_str\":\"1554450337343639557\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKEWJJakAUJbUw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKEWJJakAUJbUw.jpg\",\"url\":\"https:\\/\\/t.co\\/wXUU9nLQu7\",\"display_url\":\"pic.twitter.com\\/wXUU9nLQu7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554450355085516800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"1710\":null,\"1711\":{\"media\":[{\"id\":1554449599494033410,\"id_str\":\"1554449599494033410\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDrMcXEAIXDTL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDrMcXEAIXDTL.jpg\",\"url\":\"https:\\/\\/t.co\\/Flt9lyrjr0\",\"display_url\":\"pic.twitter.com\\/Flt9lyrjr0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554449602358689792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"1712\":{\"media\":[{\"id\":1554449376961253376,\"id_str\":\"1554449376961253376\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554449376961253376\\/pu\\/img\\/8bcY5QsNpqk4SCM-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554449376961253376\\/pu\\/img\\/8bcY5QsNpqk4SCM-.jpg\",\"url\":\"https:\\/\\/t.co\\/hjsA0QBPtc\",\"display_url\":\"pic.twitter.com\\/hjsA0QBPtc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554449420179374080\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":668,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":712,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,89],\"duration_millis\":32182,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554449376961253376\\/pu\\/vid\\/1280x712\\/A9pEGhT35GsDDbx-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554449376961253376\\/pu\\/pl\\/eRm24h6IGAZYRw1p.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554449376961253376\\/pu\\/vid\\/646x360\\/NiPr_4RV41XCfDTl.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554449376961253376\\/pu\\/vid\\/484x270\\/eYW-J5vRqqyuzrla.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1713\":null,\"1714\":{\"media\":[{\"id\":1554449139953549312,\"id_str\":\"1554449139953549312\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDQchXwAAJ-48.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDQchXwAAJ-48.jpg\",\"url\":\"https:\\/\\/t.co\\/5hoQOJlimF\",\"display_url\":\"pic.twitter.com\\/5hoQOJlimF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zees_grillz\\/status\\/1554449149210279943\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":624,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":939,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":939,\"resize\":\"fit\"}}},{\"id\":1554449139957628928,\"id_str\":\"1554449139957628928\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDQciWAAAYOqt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDQciWAAAYOqt.jpg\",\"url\":\"https:\\/\\/t.co\\/5hoQOJlimF\",\"display_url\":\"pic.twitter.com\\/5hoQOJlimF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zees_grillz\\/status\\/1554449149210279943\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":691,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":691,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":459,\"resize\":\"fit\"}}},{\"id\":1554449139966025728,\"id_str\":\"1554449139966025728\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDQckWIAAjCDa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDQckWIAAjCDa.jpg\",\"url\":\"https:\\/\\/t.co\\/5hoQOJlimF\",\"display_url\":\"pic.twitter.com\\/5hoQOJlimF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zees_grillz\\/status\\/1554449149210279943\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":798,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":798,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554449139966033920,\"id_str\":\"1554449139966033920\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDQckWQAA_j3J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDQckWQAA_j3J.jpg\",\"url\":\"https:\\/\\/t.co\\/5hoQOJlimF\",\"display_url\":\"pic.twitter.com\\/5hoQOJlimF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zees_grillz\\/status\\/1554449149210279943\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":564,\"resize\":\"fit\"},\"large\":{\"w\":1241,\"h\":1030,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":996,\"resize\":\"fit\"}}}]},\"1715\":{\"media\":[{\"id\":1554448579049259011,\"id_str\":\"1554448579049259011\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"url\":\"https:\\/\\/t.co\\/Yj5h9sBlMv\",\"display_url\":\"pic.twitter.com\\/Yj5h9sBlMv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554448582018826241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"large\":{\"w\":663,\"h\":364,\"resize\":\"fit\"}}}]},\"1716\":null,\"1717\":{\"media\":[{\"id\":1554446969665626112,\"id_str\":\"1554446969665626112\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554446969665626112\\/pu\\/img\\/1K3ue6O6k6EgbRAy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554446969665626112\\/pu\\/img\\/1K3ue6O6k6EgbRAy.jpg\",\"url\":\"https:\\/\\/t.co\\/cMdqs1TIub\",\"display_url\":\"pic.twitter.com\\/cMdqs1TIub\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554447036694798337\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":38680,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554446969665626112\\/pu\\/vid\\/320x564\\/KhR5TxpUoI2zWiAS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554446969665626112\\/pu\\/pl\\/czQsC2umYbhGBAm1.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1718\":{\"media\":[{\"id\":1554445792290930688,\"id_str\":\"1554445792290930688\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKANlgaAAA-qt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKANlgaAAA-qt7.jpg\",\"url\":\"https:\\/\\/t.co\\/fyrQ8e71cZ\",\"display_url\":\"pic.twitter.com\\/fyrQ8e71cZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554445847362150401\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"}}}]},\"1719\":{\"media\":[{\"id\":1554445182359293952,\"id_str\":\"1554445182359293952\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554445182359293952\\/pu\\/img\\/0A8q0uWDOi6KV15j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554445182359293952\\/pu\\/img\\/0A8q0uWDOi6KV15j.jpg\",\"url\":\"https:\\/\\/t.co\\/Eug7GZp0KJ\",\"display_url\":\"pic.twitter.com\\/Eug7GZp0KJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554445335958659072\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":555,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":315,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":592,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[80,37],\"duration_millis\":22000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554445182359293952\\/pu\\/vid\\/778x360\\/gOgz32-I7B7BVPzV.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554445182359293952\\/pu\\/vid\\/1280x592\\/BsYchiSxtiV7hDOm.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554445182359293952\\/pu\\/pl\\/2tXefTmLl07nir2l.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554445182359293952\\/pu\\/vid\\/582x270\\/VALSOVphHszD_ux6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1720\":{\"media\":[{\"id\":1554444631999451137,\"id_str\":\"1554444631999451137\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"url\":\"https:\\/\\/t.co\\/7weOt1UVAc\",\"display_url\":\"pic.twitter.com\\/7weOt1UVAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/buzzy_comedian\\/status\\/1554444641898057728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"1721\":null,\"1722\":{\"media\":[{\"id\":1554443540465614848,\"id_str\":\"1554443540465614848\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443540465614848\\/pu\\/img\\/iv7lAMWv3kGKIJa3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443540465614848\\/pu\\/img\\/iv7lAMWv3kGKIJa3.jpg\",\"url\":\"https:\\/\\/t.co\\/m3tlfjQSaM\",\"display_url\":\"pic.twitter.com\\/m3tlfjQSaM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554443623445700608\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":130216,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443540465614848\\/pu\\/vid\\/476x270\\/IQowXRhRfIy2mAxT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443540465614848\\/pu\\/pl\\/zoXo34ZAHG2wHfMz.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443540465614848\\/pu\\/vid\\/848x480\\/J5GGAM8cllMKojjZ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443540465614848\\/pu\\/vid\\/636x360\\/CLqU8yQfrlYXI_g9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1723\":{\"media\":[{\"id\":1554443348240392192,\"id_str\":\"1554443348240392192\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"url\":\"https:\\/\\/t.co\\/HbfHLJrcab\",\"display_url\":\"pic.twitter.com\\/HbfHLJrcab\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swatc_music\\/status\\/1554443572098760704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45400,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/vid\\/720x1280\\/Qu-bE-AFzM8IbPNz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/pl\\/hBpbe0-Hy6BNM0sG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/vid\\/320x568\\/R7kFd5OeWJGS2G2h.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/vid\\/480x852\\/Q2AaJrXW4NO2DyxW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1724\":{\"media\":[{\"id\":1554443162772717569,\"id_str\":\"1554443162772717569\",\"indices\":[200,223],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443162772717569\\/pu\\/img\\/wHr1ZZa286DhbCA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443162772717569\\/pu\\/img\\/wHr1ZZa286DhbCA2.jpg\",\"url\":\"https:\\/\\/t.co\\/4CjjyFPex2\",\"display_url\":\"pic.twitter.com\\/4CjjyFPex2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554443241701150727\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[426,239],\"duration_millis\":139933,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443162772717569\\/pu\\/pl\\/da4AfImxFPEeJ2DT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443162772717569\\/pu\\/vid\\/480x270\\/9ED1fqc-Sf16aCtm.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443162772717569\\/pu\\/vid\\/852x478\\/A1SU3EojYkqNWCfW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1725\":{\"media\":[{\"id\":1554442087088943105,\"id_str\":\"1554442087088943105\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554442087088943105\\/pu\\/img\\/4dy-0aDGu-1uo2Lc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554442087088943105\\/pu\\/img\\/4dy-0aDGu-1uo2Lc.jpg\",\"url\":\"https:\\/\\/t.co\\/pBhMWw2xDw\",\"display_url\":\"pic.twitter.com\\/pBhMWw2xDw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554442180621901825\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":49725,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554442087088943105\\/pu\\/vid\\/1280x720\\/FZGuUiPIJcx1hpx8.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554442087088943105\\/pu\\/vid\\/480x270\\/DifbrIDo2zpbkkHw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554442087088943105\\/pu\\/pl\\/GFBVUHxaXKemov4A.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554442087088943105\\/pu\\/vid\\/640x360\\/MnARKr-8dOHS_UTP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1726\":{\"media\":[{\"id\":1554441613799174144,\"id_str\":\"1554441613799174144\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441613799174144\\/pu\\/img\\/a5vFVdMxpxqTvsSF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441613799174144\\/pu\\/img\\/a5vFVdMxpxqTvsSF.jpg\",\"url\":\"https:\\/\\/t.co\\/EeTxIql7Tv\",\"display_url\":\"pic.twitter.com\\/EeTxIql7Tv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lil_shappi\\/status\\/1554441999188496384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":512,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":512,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":512,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":42360,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554441613799174144\\/pu\\/vid\\/320x400\\/yY4ooFesPcSbWB6W.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554441613799174144\\/pu\\/pl\\/HR37iuqs8ntPV_6m.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554441613799174144\\/pu\\/vid\\/512x640\\/bO_y5uvwFZkaaWvy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1727\":{\"media\":[{\"id\":1554441196931784706,\"id_str\":\"1554441196931784706\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441196931784706\\/pu\\/img\\/lcfVrJsIb1XaaWdp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554441196931784706\\/pu\\/img\\/lcfVrJsIb1XaaWdp.jpg\",\"url\":\"https:\\/\\/t.co\\/VGFk9oKJ2G\",\"display_url\":\"pic.twitter.com\\/VGFk9oKJ2G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554441266129420289\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":17460,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554441196931784706\\/pu\\/pl\\/XziVwf-Wxy6ZMO7U.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554441196931784706\\/pu\\/vid\\/480x270\\/FXpLkUTUYQXVYf0f.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554441196931784706\\/pu\\/vid\\/1280x720\\/I5QqpybvE8rEtdzC.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554441196931784706\\/pu\\/vid\\/640x360\\/08-LACO4rfNwOoEw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1728\":{\"media\":[{\"id\":1554441116908507137,\"id_str\":\"1554441116908507137\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ79cWX0AE8Lvt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ79cWX0AE8Lvt.jpg\",\"url\":\"https:\\/\\/t.co\\/APjmtyd5P7\",\"display_url\":\"pic.twitter.com\\/APjmtyd5P7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/steve_crownn\\/status\\/1554441136730767363\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":638,\"h\":653,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":638,\"h\":653,\"resize\":\"fit\"},\"small\":{\"w\":638,\"h\":653,\"resize\":\"fit\"}}}]},\"1729\":{\"media\":[{\"id\":1554439782683791363,\"id_str\":\"1554439782683791363\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ6vx-aUAMB0Wg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ6vx-aUAMB0Wg.jpg\",\"url\":\"https:\\/\\/t.co\\/e7yrxvFOtm\",\"display_url\":\"pic.twitter.com\\/e7yrxvFOtm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554439797590355969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":392,\"resize\":\"fit\"},\"large\":{\"w\":1278,\"h\":736,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":691,\"resize\":\"fit\"}}},{\"id\":1554439782843154433,\"id_str\":\"1554439782843154433\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ6vykaAAEY2_l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ6vykaAAEY2_l.jpg\",\"url\":\"https:\\/\\/t.co\\/e7yrxvFOtm\",\"display_url\":\"pic.twitter.com\\/e7yrxvFOtm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554439797590355969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":799,\"h\":977,\"resize\":\"fit\"},\"small\":{\"w\":556,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":799,\"h\":977,\"resize\":\"fit\"}}}]},\"1730\":{\"media\":[{\"id\":1554439632342990848,\"id_str\":\"1554439632342990848\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ6nB6XwAAqoQc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ6nB6XwAAqoQc.jpg\",\"url\":\"https:\\/\\/t.co\\/4jgjODSHh6\",\"display_url\":\"pic.twitter.com\\/4jgjODSHh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ziclisynergy1\\/status\\/1554439645601185792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1731\":{\"media\":[{\"id\":1554439023191793668,\"id_str\":\"1554439023191793668\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554439023191793668\\/pu\\/img\\/8n5fD3n8j1ikuhVz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554439023191793668\\/pu\\/img\\/8n5fD3n8j1ikuhVz.jpg\",\"url\":\"https:\\/\\/t.co\\/K5cv295Adw\",\"display_url\":\"pic.twitter.com\\/K5cv295Adw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554439093714845697\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":22360,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554439023191793668\\/pu\\/pl\\/ObxbBJT-mas16PT0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554439023191793668\\/pu\\/vid\\/320x556\\/uSHMlJ06UV3kjaEP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554439023191793668\\/pu\\/vid\\/368x640\\/GEy0xMF6aUoJFmJv.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1732\":{\"media\":[{\"id\":1554438832900407296,\"id_str\":\"1554438832900407296\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554438832900407296\\/pu\\/img\\/5vcVTzy-dzlInyiv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554438832900407296\\/pu\\/img\\/5vcVTzy-dzlInyiv.jpg\",\"url\":\"https:\\/\\/t.co\\/PVDhaVHt4E\",\"display_url\":\"pic.twitter.com\\/PVDhaVHt4E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554438884162822146\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":65031,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554438832900407296\\/pu\\/pl\\/iF2x8Rsj2GDwk7QQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554438832900407296\\/pu\\/vid\\/1280x720\\/pbJ7aswJpEp0hJ9W.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554438832900407296\\/pu\\/vid\\/480x270\\/uDdk9QdUccUF2wap.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554438832900407296\\/pu\\/vid\\/640x360\\/lG-ehmlaH0jOCEyq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1733\":{\"media\":[{\"id\":1554438148544991235,\"id_str\":\"1554438148544991235\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ5QqVXEAMjoMU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ5QqVXEAMjoMU.jpg\",\"url\":\"https:\\/\\/t.co\\/c4orTHRuz3\",\"display_url\":\"pic.twitter.com\\/c4orTHRuz3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JamesEpomComedy\\/status\\/1554438153251000321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1734\":{\"media\":[{\"id\":1554437676862181377,\"id_str\":\"1554437676862181377\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437676862181377\\/pu\\/img\\/caxvn56FrrUL3jS_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437676862181377\\/pu\\/img\\/caxvn56FrrUL3jS_.jpg\",\"url\":\"https:\\/\\/t.co\\/AL7yZNNpiV\",\"display_url\":\"pic.twitter.com\\/AL7yZNNpiV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554437713725882368\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":14023,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437676862181377\\/pu\\/vid\\/640x360\\/5YuaA_ZQ6KS208d-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437676862181377\\/pu\\/pl\\/ICLkRzDQ628JG_c_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437676862181377\\/pu\\/vid\\/480x270\\/veyupIY6CzFMvmmr.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437676862181377\\/pu\\/vid\\/1280x720\\/FxN3snCLtXKU0fue.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1735\":null,\"1736\":{\"media\":[{\"id\":1554437395403214849,\"id_str\":\"1554437395403214849\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0qXkAEOULF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0qXkAEOULF.jpg\",\"url\":\"https:\\/\\/t.co\\/OHFJUzHcCQ\",\"display_url\":\"pic.twitter.com\\/OHFJUzHcCQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554437404425166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554437395403218951,\"id_str\":\"1554437395403218951\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0qXoAc7nq2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0qXoAc7nq2.jpg\",\"url\":\"https:\\/\\/t.co\\/OHFJUzHcCQ\",\"display_url\":\"pic.twitter.com\\/OHFJUzHcCQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554437404425166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554437395415711745,\"id_str\":\"1554437395415711745\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0tWQAEdzyd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0tWQAEdzyd.jpg\",\"url\":\"https:\\/\\/t.co\\/OHFJUzHcCQ\",\"display_url\":\"pic.twitter.com\\/OHFJUzHcCQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554437404425166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554437395432480769,\"id_str\":\"1554437395432480769\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0xWIAEG7iC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ4k0xWIAEG7iC.jpg\",\"url\":\"https:\\/\\/t.co\\/OHFJUzHcCQ\",\"display_url\":\"pic.twitter.com\\/OHFJUzHcCQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554437404425166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}}]},\"1737\":{\"media\":[{\"id\":1554437031811780608,\"id_str\":\"1554437031811780608\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437031811780608\\/pu\\/img\\/IlQz1upbHQyfAFTo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554437031811780608\\/pu\\/img\\/IlQz1upbHQyfAFTo.jpg\",\"url\":\"https:\\/\\/t.co\\/7pwOTE4GDY\",\"display_url\":\"pic.twitter.com\\/7pwOTE4GDY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554437187680497665\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":434,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1128,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1128,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,47],\"duration_millis\":25331,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437031811780608\\/pu\\/vid\\/480x752\\/TO7UaHQv9iidyJ_i.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437031811780608\\/pu\\/vid\\/720x1128\\/gMFk7p9xjV_RTSUV.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437031811780608\\/pu\\/vid\\/320x500\\/oKht5IHvn3BiRx-O.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554437031811780608\\/pu\\/pl\\/A0xou8RsfbnqCjCt.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1738\":null,\"1739\":{\"media\":[{\"id\":1554436041670524928,\"id_str\":\"1554436041670524928\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ3WBnWAAAY78L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ3WBnWAAAY78L.jpg\",\"url\":\"https:\\/\\/t.co\\/CIdaT8511R\",\"display_url\":\"pic.twitter.com\\/CIdaT8511R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/g126travelsng\\/status\\/1554436054303870978\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554436041679028225,\"id_str\":\"1554436041679028225\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ3WBpXwAEPGrv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ3WBpXwAEPGrv.jpg\",\"url\":\"https:\\/\\/t.co\\/CIdaT8511R\",\"display_url\":\"pic.twitter.com\\/CIdaT8511R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/g126travelsng\\/status\\/1554436054303870978\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1740\":{\"media\":[{\"id\":1554435926151106560,\"id_str\":\"1554435926151106560\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435926151106560\\/pu\\/img\\/i3EvkpKY2febcoVx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435926151106560\\/pu\\/img\\/i3EvkpKY2febcoVx.jpg\",\"url\":\"https:\\/\\/t.co\\/2OdgeUqpTR\",\"display_url\":\"pic.twitter.com\\/2OdgeUqpTR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_lalipop\\/status\\/1554435994178420736\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11900,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435926151106560\\/pu\\/vid\\/320x568\\/4Y2X8vGbqSvQI6V0.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435926151106560\\/pu\\/vid\\/480x852\\/I1BKuigxZrjT3p9m.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435926151106560\\/pu\\/pl\\/U4GF0TNDi_qeqINy.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435926151106560\\/pu\\/vid\\/540x960\\/aqRiX57isQue7w1Q.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}},{\"id\":1554330274778972162,\"id_str\":\"1554330274778972162\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330274778972162\\/pu\\/img\\/wUwnfH7DnEmq1LHx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330274778972162\\/pu\\/img\\/wUwnfH7DnEmq1LHx.jpg\",\"url\":\"https:\\/\\/t.co\\/lvtVrllPR0\",\"display_url\":\"pic.twitter.com\\/lvtVrllPR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/INTELPSF\\/status\\/1554330313408512001\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"source_status_id\":1554330313408512001,\"source_status_id_str\":\"1554330313408512001\",\"source_user_id\":1511994544015155205,\"source_user_id_str\":\"1511994544015155205\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11910,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554330274778972162\\/pu\\/vid\\/480x852\\/gtf59di4tNS7n5yR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554330274778972162\\/pu\\/pl\\/atfr4S3B_dqFQAqB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554330274778972162\\/pu\\/vid\\/540x960\\/fia0vIhZTvnsk6Rv.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554330274778972162\\/pu\\/vid\\/320x568\\/NsoiVu2cStsgex-A.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1741\":null,\"1742\":{\"media\":[{\"id\":1554435606738259969,\"id_str\":\"1554435606738259969\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435606738259969\\/pu\\/img\\/6RcjH3-aoZdw1mcf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554435606738259969\\/pu\\/img\\/6RcjH3-aoZdw1mcf.jpg\",\"url\":\"https:\\/\\/t.co\\/UGrz44tRcv\",\"display_url\":\"pic.twitter.com\\/UGrz44tRcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554435766381846528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":10517,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435606738259969\\/pu\\/vid\\/1280x720\\/BpOChmKu4Z2r6Hm2.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435606738259969\\/pu\\/pl\\/axBl2PVCNQeicEss.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435606738259969\\/pu\\/vid\\/480x270\\/knwcGTyiazIiI7vq.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554435606738259969\\/pu\\/vid\\/640x360\\/cGxmPkvcSdBIIJ-n.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1743\":null,\"1744\":{\"media\":[{\"id\":1554434977609252864,\"id_str\":\"1554434977609252864\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434977609252864\\/pu\\/img\\/uM67RNW3zdfDslOp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434977609252864\\/pu\\/img\\/uM67RNW3zdfDslOp.jpg\",\"url\":\"https:\\/\\/t.co\\/baWINb5Ugs\",\"display_url\":\"pic.twitter.com\\/baWINb5Ugs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554435128239312896\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434977609252864\\/pu\\/vid\\/320x568\\/cE4rDQjQiaQtIf7b.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434977609252864\\/pu\\/pl\\/AeiO32ujYYRBLYok.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434977609252864\\/pu\\/vid\\/720x1280\\/mxaTo0i6XD3S8N6x.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434977609252864\\/pu\\/vid\\/480x852\\/ou8gStOyXarsn0Ps.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1745\":{\"media\":[{\"id\":1554434552759828482,\"id_str\":\"1554434552759828482\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ1_W_XwAIBA8B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ1_W_XwAIBA8B.jpg\",\"url\":\"https:\\/\\/t.co\\/cqendw4MWr\",\"display_url\":\"pic.twitter.com\\/cqendw4MWr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dannypete4\\/status\\/1554434581587267586\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1746\":{\"media\":[{\"id\":1554434157052571650,\"id_str\":\"1554434157052571650\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434157052571650\\/pu\\/img\\/MzSyOfRtdDCxm2bs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554434157052571650\\/pu\\/img\\/MzSyOfRtdDCxm2bs.jpg\",\"url\":\"https:\\/\\/t.co\\/tZUBhW8Ljl\",\"display_url\":\"pic.twitter.com\\/tZUBhW8Ljl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554434190367924224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":13006,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434157052571650\\/pu\\/vid\\/640x360\\/ROJI9tA2jtqWNGts.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434157052571650\\/pu\\/vid\\/1280x720\\/5NshEjWUfLbU16W-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434157052571650\\/pu\\/pl\\/rJxRGpkUTSCdClHF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554434157052571650\\/pu\\/vid\\/480x270\\/RfNCJHGQeuqaRu91.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1747\":null,\"1748\":{\"media\":[{\"id\":1554433736057683968,\"id_str\":\"1554433736057683968\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554433736057683968\\/pu\\/img\\/JExodTu2odg53IxE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554433736057683968\\/pu\\/img\\/JExodTu2odg53IxE.jpg\",\"url\":\"https:\\/\\/t.co\\/flmamDFC66\",\"display_url\":\"pic.twitter.com\\/flmamDFC66\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554433775152828416\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,23],\"duration_millis\":24844,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554433736057683968\\/pu\\/vid\\/640x368\\/7t43pWAxoSzkx8yJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554433736057683968\\/pu\\/pl\\/x9XRUSa7mWoKHu3a.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554433736057683968\\/pu\\/vid\\/468x270\\/s5txnaum5t-xenrE.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1749\":{\"media\":[{\"id\":1554432393444208646,\"id_str\":\"1554432393444208646\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554432393444208646\\/pu\\/img\\/AhbydGrYc0bwIqxz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554432393444208646\\/pu\\/img\\/AhbydGrYc0bwIqxz.jpg\",\"url\":\"https:\\/\\/t.co\\/rQW9bDMjTy\",\"display_url\":\"pic.twitter.com\\/rQW9bDMjTy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554432428823162881\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":432,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":432,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,20],\"duration_millis\":12762,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554432393444208646\\/pu\\/vid\\/432x960\\/4zGPss_YCqPtL-3B.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554432393444208646\\/pu\\/vid\\/320x710\\/_H6S2PDOrLw8V_Z1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554432393444208646\\/pu\\/pl\\/tc-YBp4NTJzTu0Vv.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1750\":null,\"1751\":{\"media\":[{\"id\":1554431667854508032,\"id_str\":\"1554431667854508032\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554431667854508032\\/pu\\/img\\/p1SyhDD_EhS65OHb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554431667854508032\\/pu\\/img\\/p1SyhDD_EhS65OHb.jpg\",\"url\":\"https:\\/\\/t.co\\/iGErCYKbt5\",\"display_url\":\"pic.twitter.com\\/iGErCYKbt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfyaSeedorfina\\/status\\/1554431780777754630\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":7375,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554431667854508032\\/pu\\/pl\\/_aiyVB5AjLcuN5aU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554431667854508032\\/pu\\/vid\\/480x852\\/rhwpZc8sb9UuXR1r.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554431667854508032\\/pu\\/vid\\/320x568\\/aiFhYMD9Y_xaLUUD.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554431667854508032\\/pu\\/vid\\/540x960\\/IhQt2fPzrGAk8l2j.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":{\"media\":[{\"id\":1554430516996325376,\"id_str\":\"1554430516996325376\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430516996325376\\/pu\\/img\\/BQsbflr8k3nJzr2a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430516996325376\\/pu\\/img\\/BQsbflr8k3nJzr2a.jpg\",\"url\":\"https:\\/\\/t.co\\/aWiHIg9VxJ\",\"display_url\":\"pic.twitter.com\\/aWiHIg9VxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgaJubilee\\/status\\/1554430707279208449\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,127],\"duration_millis\":110866,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430516996325376\\/pu\\/vid\\/320x564\\/ciCP_YtDczehgqs7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430516996325376\\/pu\\/pl\\/iXhSjdgBkxVK1Z6W.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430516996325376\\/pu\\/vid\\/480x846\\/ewocmgbi-53XnV2m.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430516996325376\\/pu\\/vid\\/720x1270\\/uUyb93DeQz-w5yxa.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1757\":{\"media\":[{\"id\":1554430429037461504,\"id_str\":\"1554430429037461504\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430429037461504\\/pu\\/img\\/63N9MTcFyAYDu3PE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554430429037461504\\/pu\\/img\\/63N9MTcFyAYDu3PE.jpg\",\"url\":\"https:\\/\\/t.co\\/pGJD13AfeT\",\"display_url\":\"pic.twitter.com\\/pGJD13AfeT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554430501720563713\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":30500,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430429037461504\\/pu\\/vid\\/476x270\\/2NQqJHdYNSffzS7X.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430429037461504\\/pu\\/vid\\/636x360\\/dGLktXMLUZ0xCLBy.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430429037461504\\/pu\\/pl\\/Mwzxuk4ieptzAXxk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554430429037461504\\/pu\\/vid\\/848x480\\/wLQjODWw104vch84.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1758\":{\"media\":[{\"id\":1554430115165110273,\"id_str\":\"1554430115165110273\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJx9DqWAAEEWFB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJx9DqWAAEEWFB.jpg\",\"url\":\"https:\\/\\/t.co\\/PH9ryIWI2z\",\"display_url\":\"pic.twitter.com\\/PH9ryIWI2z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1554430230638563329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":318,\"h\":159,\"resize\":\"fit\"},\"large\":{\"w\":318,\"h\":159,\"resize\":\"fit\"},\"small\":{\"w\":318,\"h\":159,\"resize\":\"fit\"}}}]},\"1759\":{\"media\":[{\"id\":1554429518089433089,\"id_str\":\"1554429518089433089\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554429518089433089\\/pu\\/img\\/uKYMi-iemG5OITYY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554429518089433089\\/pu\\/img\\/uKYMi-iemG5OITYY.jpg\",\"url\":\"https:\\/\\/t.co\\/Kr1wknfW1c\",\"display_url\":\"pic.twitter.com\\/Kr1wknfW1c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554429585126989825\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":19897,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554429518089433089\\/pu\\/pl\\/jrzafmX-oSPrQoXW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554429518089433089\\/pu\\/vid\\/1280x720\\/bEvPvahQCzWOF-It.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554429518089433089\\/pu\\/vid\\/480x270\\/chyDQ9pTXAN3hJRT.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554429518089433089\\/pu\\/vid\\/640x360\\/dBSEM2Zt5umCoUVI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1760\":{\"media\":[{\"id\":1554428566472892416,\"id_str\":\"1554428566472892416\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJwi6VWIAAc1O_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJwi6VWIAAc1O_.jpg\",\"url\":\"https:\\/\\/t.co\\/RS9K2MlNbz\",\"display_url\":\"pic.twitter.com\\/RS9K2MlNbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1554428980417241089\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":301,\"h\":167,\"resize\":\"fit\"},\"medium\":{\"w\":301,\"h\":167,\"resize\":\"fit\"},\"large\":{\"w\":301,\"h\":167,\"resize\":\"fit\"}}}]},\"1761\":null,\"1762\":{\"media\":[{\"id\":1554427250074075136,\"id_str\":\"1554427250074075136\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554427250074075136\\/pu\\/img\\/d3YOp5mIb1hTBiEB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554427250074075136\\/pu\\/img\\/d3YOp5mIb1hTBiEB.jpg\",\"url\":\"https:\\/\\/t.co\\/VoxYSLFlgQ\",\"display_url\":\"pic.twitter.com\\/VoxYSLFlgQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554427291438313472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[211,120],\"duration_millis\":30857,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554427250074075136\\/pu\\/pl\\/lDFa-fnt8ynavbkZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554427250074075136\\/pu\\/vid\\/474x270\\/NowcZcwMyp9RCXKe.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554427250074075136\\/pu\\/vid\\/844x480\\/B0Q3y46LuBlKFCKD.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554427250074075136\\/pu\\/vid\\/632x360\\/G4MKEqo2ClhZ4DBW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1763\":{\"media\":[{\"id\":1554426681737478144,\"id_str\":\"1554426681737478144\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554426681737478144\\/pu\\/img\\/0YJHspckaP73j8i0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554426681737478144\\/pu\\/img\\/0YJHspckaP73j8i0.jpg\",\"url\":\"https:\\/\\/t.co\\/6kZCJtJfXa\",\"display_url\":\"pic.twitter.com\\/6kZCJtJfXa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554426733033832448\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":17233,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554426681737478144\\/pu\\/pl\\/GU-z1fa4o9xlLyip.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554426681737478144\\/pu\\/vid\\/368x640\\/iA4qslvRGY190p9j.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554426681737478144\\/pu\\/vid\\/320x556\\/tU6Moz_nU3y7Gd11.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1764\":{\"media\":[{\"id\":1554425337932644355,\"id_str\":\"1554425337932644355\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJtm_FXgAMBdzm.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJtm_FXgAMBdzm.png\",\"url\":\"https:\\/\\/t.co\\/2FcsICLJFI\",\"display_url\":\"pic.twitter.com\\/2FcsICLJFI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fs_commerce\\/status\\/1554425361986977793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":430,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":430,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":406,\"resize\":\"fit\"}}}]},\"1765\":{\"media\":[{\"id\":1554424896046120960,\"id_str\":\"1554424896046120960\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554424896046120960\\/pu\\/img\\/xhtxywrOK9Gp7j8b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554424896046120960\\/pu\\/img\\/xhtxywrOK9Gp7j8b.jpg\",\"url\":\"https:\\/\\/t.co\\/uC8fC2y04g\",\"display_url\":\"pic.twitter.com\\/uC8fC2y04g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554424929483132928\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11679,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554424896046120960\\/pu\\/pl\\/39PAcCrr-8_5bjs8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554424896046120960\\/pu\\/vid\\/320x568\\/x3Bi-XNf9HdF1k5_.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554424896046120960\\/pu\\/vid\\/480x852\\/wCmXC7PiIRBXlntR.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554424896046120960\\/pu\\/vid\\/540x960\\/A9QsCoaHIcrqMs_6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1766\":{\"media\":[{\"id\":1554424824218488835,\"id_str\":\"1554424824218488835\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJtJFWXkAMHTrQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJtJFWXkAMHTrQ.jpg\",\"url\":\"https:\\/\\/t.co\\/q5qLvBvkGd\",\"display_url\":\"pic.twitter.com\\/q5qLvBvkGd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Silvaweb247\\/status\\/1554424830598021121\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":595,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":395,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":595,\"resize\":\"fit\"}}}]},\"1767\":{\"media\":[{\"id\":1554424539148337155,\"id_str\":\"1554424539148337155\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJs4fYWQAMtMzd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJs4fYWQAMtMzd.jpg\",\"url\":\"https:\\/\\/t.co\\/7URIrVBAXw\",\"display_url\":\"pic.twitter.com\\/7URIrVBAXw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Builsa_MaN\\/status\\/1554424546412924929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1768\":{\"media\":[{\"id\":1554423739437445121,\"id_str\":\"1554423739437445121\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554423739437445121\\/pu\\/img\\/dy-Do9SAnrCp99cb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554423739437445121\\/pu\\/img\\/dy-Do9SAnrCp99cb.jpg\",\"url\":\"https:\\/\\/t.co\\/q3kWBgyCxB\",\"display_url\":\"pic.twitter.com\\/q3kWBgyCxB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554423799193665536\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,23],\"duration_millis\":14511,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554423739437445121\\/pu\\/pl\\/rx9wmSpv_FjRcdLf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554423739437445121\\/pu\\/vid\\/468x270\\/eY-Ay0rXWrRK0RtH.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554423739437445121\\/pu\\/vid\\/640x368\\/uN0OjB3mhOxaqehp.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1769\":{\"media\":[{\"id\":1554423353645088771,\"id_str\":\"1554423353645088771\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrzfCWQAM3YNr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrzfCWQAM3YNr.jpg\",\"url\":\"https:\\/\\/t.co\\/CUSAEHLNZa\",\"display_url\":\"pic.twitter.com\\/CUSAEHLNZa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554423362092683265\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554423353670262793,\"id_str\":\"1554423353670262793\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrzfIWYAkNWGZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrzfIWYAkNWGZ.jpg\",\"url\":\"https:\\/\\/t.co\\/CUSAEHLNZa\",\"display_url\":\"pic.twitter.com\\/CUSAEHLNZa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554423362092683265\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":936,\"resize\":\"fit\"}}},{\"id\":1554423353649385474,\"id_str\":\"1554423353649385474\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrzfDX0AIgEw6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrzfDX0AIgEw6.jpg\",\"url\":\"https:\\/\\/t.co\\/CUSAEHLNZa\",\"display_url\":\"pic.twitter.com\\/CUSAEHLNZa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554423362092683265\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":936,\"resize\":\"fit\"}}},{\"id\":1554423353645178880,\"id_str\":\"1554423353645178880\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrzfCXoAAE-ru.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrzfCXoAAE-ru.jpg\",\"url\":\"https:\\/\\/t.co\\/CUSAEHLNZa\",\"display_url\":\"pic.twitter.com\\/CUSAEHLNZa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554423362092683265\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}}]},\"1770\":{\"media\":[{\"id\":1554423117019287553,\"id_str\":\"1554423117019287553\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554423129274974208,\"id_str\":\"1554423129274974208\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrmbMWAAApXuO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrmbMWAAApXuO.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554423140574445570,\"id_str\":\"1554423140574445570\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrnFSWQAIEflc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrnFSWQAIEflc.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554423153534853123,\"id_str\":\"1554423153534853123\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrn1kWYAMhhr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrn1kWYAMhhr6.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"}}}]},\"1771\":{\"media\":[{\"id\":1554422915617423362,\"id_str\":\"1554422915617423362\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554422915617423362\\/pu\\/img\\/f95sQLMQNEo04le8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554422915617423362\\/pu\\/img\\/f95sQLMQNEo04le8.jpg\",\"url\":\"https:\\/\\/t.co\\/4ZPUAOsDeM\",\"display_url\":\"pic.twitter.com\\/4ZPUAOsDeM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554422937109024772\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":584,\"resize\":\"fit\"},\"medium\":{\"w\":320,\"h\":584,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":584,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,73],\"duration_millis\":9704,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554422915617423362\\/pu\\/pl\\/J3hpvhyPi4lwXKG9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554422915617423362\\/pu\\/vid\\/320x584\\/u-WRTMU98ZMEcKRt.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1772\":{\"media\":[{\"id\":1554422054111289345,\"id_str\":\"1554422054111289345\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqn15WIAEvSbO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqn15WIAEvSbO.jpg\",\"url\":\"https:\\/\\/t.co\\/Z9sQo2PZ14\",\"display_url\":\"pic.twitter.com\\/Z9sQo2PZ14\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superfm933\\/status\\/1554422065523990528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":544,\"resize\":\"fit\"},\"large\":{\"w\":827,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":447,\"resize\":\"fit\"}}}]},\"1773\":null,\"1774\":{\"media\":[{\"id\":1554420317690687488,\"id_str\":\"1554420317690687488\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420317690687488\\/pu\\/img\\/41Y6GJSuSt9VNsie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420317690687488\\/pu\\/img\\/41Y6GJSuSt9VNsie.jpg\",\"url\":\"https:\\/\\/t.co\\/D9PanjR8X4\",\"display_url\":\"pic.twitter.com\\/D9PanjR8X4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554420391254589441\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[427,240],\"duration_millis\":140040,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420317690687488\\/pu\\/vid\\/854x480\\/_VmLyvqQL3_R7oIJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420317690687488\\/pu\\/pl\\/T-XWCeKo4HuYo6mY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420317690687488\\/pu\\/vid\\/640x360\\/UfE1b_CtJwsTSPkN.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420317690687488\\/pu\\/vid\\/480x270\\/nMCdp-WI8aa4Y6Ow.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1775\":{\"media\":[{\"id\":1554420335201685504,\"id_str\":\"1554420335201685504\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"url\":\"https:\\/\\/t.co\\/N2GpRHozvt\",\"display_url\":\"pic.twitter.com\\/N2GpRHozvt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mr_caustic\\/status\\/1554420378725916672\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29372,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/vid\\/540x540\\/kNspId8vC5zR-yYx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/pl\\/_3JVU5TGxkAOBB8S.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/vid\\/320x320\\/tSlEy9ILjxXzml-5.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/vid\\/640x640\\/O1UC1l2SUQGbuSfN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1776\":{\"media\":[{\"id\":1554419638448308224,\"id_str\":\"1554419638448308224\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419638448308224\\/pu\\/img\\/v-mzDBW8ay0bNNiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419638448308224\\/pu\\/img\\/v-mzDBW8ay0bNNiT.jpg\",\"url\":\"https:\\/\\/t.co\\/0PbLnU5MnH\",\"display_url\":\"pic.twitter.com\\/0PbLnU5MnH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554419662112563200\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":9820,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419638448308224\\/pu\\/pl\\/M4gkVfMz0B4QZEjU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419638448308224\\/pu\\/vid\\/320x564\\/OqhZVJVj3BeeKK9z.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419638448308224\\/pu\\/vid\\/480x848\\/3ZmNBlH24pTKeKt3.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1777\":null,\"1778\":{\"media\":[{\"id\":1554419344104656902,\"id_str\":\"1554419344104656902\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419344104656902\\/pu\\/img\\/kMWAylwkhIYVGG_a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419344104656902\\/pu\\/img\\/kMWAylwkhIYVGG_a.jpg\",\"url\":\"https:\\/\\/t.co\\/BmPpK8dBkF\",\"display_url\":\"pic.twitter.com\\/BmPpK8dBkF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554419422303240192\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[426,239],\"duration_millis\":118908,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419344104656902\\/pu\\/vid\\/480x270\\/ZHPgdEXhpzvP0nTY.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419344104656902\\/pu\\/vid\\/852x478\\/NICww-xy0iPrcG7i.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419344104656902\\/pu\\/pl\\/zyKU2jKTMbM_evhq.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1779\":{\"media\":[{\"id\":1554419269416501252,\"id_str\":\"1554419269416501252\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419269416501252\\/pu\\/img\\/DlrSVsCi0hnVZAep.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554419269416501252\\/pu\\/img\\/DlrSVsCi0hnVZAep.jpg\",\"url\":\"https:\\/\\/t.co\\/zaYLs657tc\",\"display_url\":\"pic.twitter.com\\/zaYLs657tc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sir_Money_gh\\/status\\/1554419373040979969\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":39543,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419269416501252\\/pu\\/pl\\/WI8urkmkNCpM_VZH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419269416501252\\/pu\\/vid\\/320x400\\/vFCtPTjrkkxZu8au.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419269416501252\\/pu\\/vid\\/480x600\\/LKIYFZAtDUS_GTxU.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554419269416501252\\/pu\\/vid\\/720x900\\/uINdVlKyLEjBjkTB.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1780\":{\"media\":[{\"id\":1554419271295451137,\"id_str\":\"1554419271295451137\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJoF3GWQAED6iM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJoF3GWQAED6iM.jpg\",\"url\":\"https:\\/\\/t.co\\/AA5J4lUxjc\",\"display_url\":\"pic.twitter.com\\/AA5J4lUxjc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Medagh_\\/status\\/1554419319517372416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1554419284041924610,\"id_str\":\"1554419284041924610\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJoGmlWAAIus5L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJoGmlWAAIus5L.jpg\",\"url\":\"https:\\/\\/t.co\\/AA5J4lUxjc\",\"display_url\":\"pic.twitter.com\\/AA5J4lUxjc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Medagh_\\/status\\/1554419319517372416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1554419294188060674,\"id_str\":\"1554419294188060674\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJoHMYXwAIwF4t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJoHMYXwAIwF4t.jpg\",\"url\":\"https:\\/\\/t.co\\/AA5J4lUxjc\",\"display_url\":\"pic.twitter.com\\/AA5J4lUxjc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Medagh_\\/status\\/1554419319517372416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554419305693036544,\"id_str\":\"1554419305693036544\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJoH3PXwAAYHX3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJoH3PXwAAYHX3.jpg\",\"url\":\"https:\\/\\/t.co\\/AA5J4lUxjc\",\"display_url\":\"pic.twitter.com\\/AA5J4lUxjc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Medagh_\\/status\\/1554419319517372416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}}]},\"1781\":{\"media\":[{\"id\":1554418377380499456,\"id_str\":\"1554418377380499456\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554418377380499456\\/pu\\/img\\/ir9ph3oZbzfLlzgM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554418377380499456\\/pu\\/img\\/ir9ph3oZbzfLlzgM.jpg\",\"url\":\"https:\\/\\/t.co\\/mXUgQ6ueQ5\",\"display_url\":\"pic.twitter.com\\/mXUgQ6ueQ5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554418424105037824\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11910,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554418377380499456\\/pu\\/pl\\/SjE7NFtDy818K8XG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554418377380499456\\/pu\\/vid\\/480x852\\/3-_ZDXbsHSB4GuCq.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554418377380499456\\/pu\\/vid\\/320x568\\/F9xR4_gjWbhhX2p6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554418377380499456\\/pu\\/vid\\/540x960\\/0Ce8IQZliULh_q6u.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1782\":{\"media\":[{\"id\":1554417818086653952,\"id_str\":\"1554417818086653952\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417818086653952\\/pu\\/img\\/HVsY93f-6nIpHBPC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417818086653952\\/pu\\/img\\/HVsY93f-6nIpHBPC.jpg\",\"url\":\"https:\\/\\/t.co\\/PQbwxmSLGJ\",\"display_url\":\"pic.twitter.com\\/PQbwxmSLGJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danielf35506865\\/status\\/1554417894028607488\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,17],\"duration_millis\":13933,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417818086653952\\/pu\\/vid\\/634x360\\/vfKw64VUb6SAsLBt.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417818086653952\\/pu\\/pl\\/072_JfH4-tYKfSw8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417818086653952\\/pu\\/vid\\/476x270\\/FO5LvPjxff4vtLT-.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417818086653952\\/pu\\/vid\\/960x544\\/HY5w_YTLYVMzqIZC.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1783\":{\"media\":[{\"id\":1554417624880402433,\"id_str\":\"1554417624880402433\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417624880402433\\/pu\\/img\\/WvYDzvGAx5qM_08j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417624880402433\\/pu\\/img\\/WvYDzvGAx5qM_08j.jpg\",\"url\":\"https:\\/\\/t.co\\/TBM4gBXkZ9\",\"display_url\":\"pic.twitter.com\\/TBM4gBXkZ9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554417810398654464\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":623,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":664,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":353,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,83],\"duration_millis\":32622,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417624880402433\\/pu\\/vid\\/520x270\\/9TF-1dweM3oIQ7ab.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417624880402433\\/pu\\/vid\\/692x360\\/UvJpKWZ-GN7_Lxe6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417624880402433\\/pu\\/vid\\/1280x664\\/64u-BWuoqWY1RjrE.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417624880402433\\/pu\\/pl\\/bh89Nicz_BdWfXWK.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1784\":null,\"1785\":{\"media\":[{\"id\":1554417160621023232,\"id_str\":\"1554417160621023232\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417160621023232\\/pu\\/img\\/mi0uQ6ZCTwCgzppD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554417160621023232\\/pu\\/img\\/mi0uQ6ZCTwCgzppD.jpg\",\"url\":\"https:\\/\\/t.co\\/90xxNCBBpc\",\"display_url\":\"pic.twitter.com\\/90xxNCBBpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GeorgeUwaifo\\/status\\/1554417232633012224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":590,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[295,639],\"duration_millis\":58923,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417160621023232\\/pu\\/vid\\/320x692\\/M9Q-3MhgK6uI9zYQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417160621023232\\/pu\\/pl\\/OflovTZ2nTAKgnhE.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417160621023232\\/pu\\/vid\\/480x1038\\/1eW3bLB-Dii6baOd.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554417160621023232\\/pu\\/vid\\/590x1278\\/bR_LxakS1hQiHEEO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1786\":null,\"1787\":null,\"1788\":{\"media\":[{\"id\":1554413801755262976,\"id_str\":\"1554413801755262976\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJjHfeWQAAe3Ea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJjHfeWQAAe3Ea.jpg\",\"url\":\"https:\\/\\/t.co\\/0JYSxYwsgH\",\"display_url\":\"pic.twitter.com\\/0JYSxYwsgH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ee_zuu_art\\/status\\/1554413814560563201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":812,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":812,\"h\":1080,\"resize\":\"fit\"}}}]},\"1789\":null,\"1790\":{\"media\":[{\"id\":1554412767876087808,\"id_str\":\"1554412767876087808\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1554412767850991617,\"id_str\":\"1554412767850991617\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT4XEAEBtEt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT4XEAEBtEt.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554412767846834176,\"id_str\":\"1554412767846834176\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT3XoAAa90Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT3XoAAa90Z.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1554412767867707392,\"id_str\":\"1554412767867707392\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT8WIAA8Kl1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT8WIAA8Kl1.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"1791\":{\"media\":[{\"id\":1554412411058266112,\"id_str\":\"1554412411058266112\",\"indices\":[87,110],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554412411058266112\\/pu\\/img\\/S-L6EEBuPcUz7jcR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554412411058266112\\/pu\\/img\\/S-L6EEBuPcUz7jcR.jpg\",\"url\":\"https:\\/\\/t.co\\/QF2ZrUOnK2\",\"display_url\":\"pic.twitter.com\\/QF2ZrUOnK2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554412471301046272\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":408,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":800,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,5],\"duration_millis\":18268,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554412411058266112\\/pu\\/vid\\/320x532\\/at9F8FAHTK_9qW8T.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554412411058266112\\/pu\\/vid\\/480x800\\/O4YyoTel7dwlruLQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554412411058266112\\/pu\\/pl\\/jgk4jbiLm8G_i6Zz.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1792\":{\"media\":[{\"id\":1554412160436011008,\"id_str\":\"1554412160436011008\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJhn9FWAAAQ9xB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJhn9FWAAAQ9xB.jpg\",\"url\":\"https:\\/\\/t.co\\/0evlh9SBVk\",\"display_url\":\"pic.twitter.com\\/0evlh9SBVk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoorTony\\/status\\/1554412198910468097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1414,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"}}}]},\"1793\":{\"media\":[{\"id\":1554411249974247425,\"id_str\":\"1554411249974247425\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJgy9WWAAEPAvf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJgy9WWAAEPAvf.jpg\",\"url\":\"https:\\/\\/t.co\\/fl97j4UFf4\",\"display_url\":\"pic.twitter.com\\/fl97j4UFf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/samuel_osakue\\/status\\/1554411253086519298\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"}}}]},\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":{\"media\":[{\"id\":1554408765562265601,\"id_str\":\"1554408765562265601\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554408765562265601\\/pu\\/img\\/9oDXVi7TAjzl40Qu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554408765562265601\\/pu\\/img\\/9oDXVi7TAjzl40Qu.jpg\",\"url\":\"https:\\/\\/t.co\\/4xZQVuxvKn\",\"display_url\":\"pic.twitter.com\\/4xZQVuxvKn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Urbandistrictng\\/status\\/1554408865386610688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":2933,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554408765562265601\\/pu\\/vid\\/480x852\\/xBCoq7Z35Ii-OtkS.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554408765562265601\\/pu\\/vid\\/720x1280\\/9AFnmhQZJy0rvzpM.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554408765562265601\\/pu\\/vid\\/320x568\\/NYW0l7K7ONmuGczY.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554408765562265601\\/pu\\/pl\\/BPK_2s_RDnYT0A7V.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1798\":{\"media\":[{\"id\":1554406977853423622,\"id_str\":\"1554406977853423622\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"url\":\"https:\\/\\/t.co\\/nUxgLZ5V5V\",\"display_url\":\"pic.twitter.com\\/nUxgLZ5V5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WAAW_Foundation\\/status\\/1554408047849644034\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1799\":{\"media\":[{\"id\":1554407678327259136,\"id_str\":\"1554407678327259136\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJdjD7WAAA7eYz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJdjD7WAAA7eYz.jpg\",\"url\":\"https:\\/\\/t.co\\/e07NqLgW9x\",\"display_url\":\"pic.twitter.com\\/e07NqLgW9x\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hypealert_gh\\/status\\/1554407698711678981\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1800\":{\"media\":[{\"id\":1554407527034589184,\"id_str\":\"1554407527034589184\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJdaQUXEAAeqI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJdaQUXEAAeqI-.jpg\",\"url\":\"https:\\/\\/t.co\\/kisdiv3ca1\",\"display_url\":\"pic.twitter.com\\/kisdiv3ca1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554407529739964417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}}]},\"1801\":null,\"1802\":{\"media\":[{\"id\":1554404712224636934,\"id_str\":\"1554404712224636934\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554404712224636934\\/pu\\/img\\/IwJ62_wVzglKB66w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554404712224636934\\/pu\\/img\\/IwJ62_wVzglKB66w.jpg\",\"url\":\"https:\\/\\/t.co\\/lCrcL9ajAW\",\"display_url\":\"pic.twitter.com\\/lCrcL9ajAW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jegcysystemsltd\\/status\\/1554406477242195968\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":86800,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554404712224636934\\/pu\\/vid\\/640x360\\/qe9T84nXbCbKRV-K.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554404712224636934\\/pu\\/vid\\/1280x720\\/uznWiNeVbuMKxwRE.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554404712224636934\\/pu\\/vid\\/480x270\\/wsGSZHw6HOQtbI55.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554404712224636934\\/pu\\/pl\\/nU6gCNYZdgcQba2T.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1803\":{\"media\":[{\"id\":1554405846892814336,\"id_str\":\"1554405846892814336\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"url\":\"https:\\/\\/t.co\\/DGb6mixasv\",\"display_url\":\"pic.twitter.com\\/DGb6mixasv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KingsEmpire1\\/status\\/1554406081807503360\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":140000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554405846892814336\\/pu\\/vid\\/240x426\\/_w5uWtu-wiU0iJuV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554405846892814336\\/pu\\/pl\\/11jCic6WS-gbrVdT.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":null,\"1810\":{\"media\":[{\"id\":1554403155420618752,\"id_str\":\"1554403155420618752\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403155420618752\\/pu\\/img\\/RnRy9sAjpP0t2vQv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403155420618752\\/pu\\/img\\/RnRy9sAjpP0t2vQv.jpg\",\"url\":\"https:\\/\\/t.co\\/SArKA5ljZo\",\"display_url\":\"pic.twitter.com\\/SArKA5ljZo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DivineCity6\\/status\\/1554403204703703043\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20618,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403155420618752\\/pu\\/vid\\/720x1280\\/gOTAMP8G8ru2M7TC.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403155420618752\\/pu\\/pl\\/YO-xdkHr1geODDGg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403155420618752\\/pu\\/vid\\/480x852\\/U--saslxTFKeSzBl.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403155420618752\\/pu\\/vid\\/320x568\\/eZdVX7mBoNu6VLNZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1811\":{\"media\":[{\"id\":1554400010002960384,\"id_str\":\"1554400010002960384\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJWktMXEAAwTmR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJWktMXEAAwTmR.jpg\",\"url\":\"https:\\/\\/t.co\\/hEpOWmHgUo\",\"display_url\":\"pic.twitter.com\\/hEpOWmHgUo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/upshotreports\\/status\\/1554400016898445312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":641,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":641,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"}}}]},\"1812\":{\"media\":[{\"id\":1554399948971687936,\"id_str\":\"1554399948971687936\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ1XwAAgqnZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ1XwAAgqnZ.jpg\",\"url\":\"https:\\/\\/t.co\\/sNo6nErSIl\",\"display_url\":\"pic.twitter.com\\/sNo6nErSIl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EstelleWatches\\/status\\/1554399955682557952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":792,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":792,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554399948988375040,\"id_str\":\"1554399948988375040\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ5WYAAoox0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ5WYAAoox0.jpg\",\"url\":\"https:\\/\\/t.co\\/sNo6nErSIl\",\"display_url\":\"pic.twitter.com\\/sNo6nErSIl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EstelleWatches\\/status\\/1554399955682557952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":592,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554399948967493633,\"id_str\":\"1554399948967493633\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ0XwAERLJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJWhJ0XwAERLJy.jpg\",\"url\":\"https:\\/\\/t.co\\/sNo6nErSIl\",\"display_url\":\"pic.twitter.com\\/sNo6nErSIl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EstelleWatches\\/status\\/1554399955682557952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":804,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":804,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554399948958990338,\"id_str\":\"1554399948958990338\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJWhJyWAAI9M4m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJWhJyWAAI9M4m.jpg\",\"url\":\"https:\\/\\/t.co\\/sNo6nErSIl\",\"display_url\":\"pic.twitter.com\\/sNo6nErSIl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EstelleWatches\\/status\\/1554399955682557952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":952,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":952,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":599,\"h\":680,\"resize\":\"fit\"}}}]},\"1813\":null,\"1814\":{\"media\":[{\"id\":1554397528505958400,\"id_str\":\"1554397528505958400\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"url\":\"https:\\/\\/t.co\\/egpmD7humb\",\"display_url\":\"pic.twitter.com\\/egpmD7humb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hotstorybase\\/status\\/1554397534994501634\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"1815\":{\"media\":[{\"id\":1554397117984243712,\"id_str\":\"1554397117984243712\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJT8XlXgAAIgyR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJT8XlXgAAIgyR.jpg\",\"url\":\"https:\\/\\/t.co\\/10ngdvISoZ\",\"display_url\":\"pic.twitter.com\\/10ngdvISoZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itzprince007\\/status\\/1554397130789457921\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1444,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":846,\"h\":1200,\"resize\":\"fit\"}}}]},\"1816\":{\"media\":[{\"id\":1554396625849704448,\"id_str\":\"1554396625849704448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":519,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554396632715771907,\"id_str\":\"1554396632715771907\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTgH0WQAMNv5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTgH0WQAMNv5m.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":804,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":804,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554396641469382658,\"id_str\":\"1554396641469382658\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTgobXwAISXmF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTgobXwAISXmF.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":858,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":858,\"h\":1080,\"resize\":\"fit\"}}}]},\"1817\":{\"media\":[{\"id\":1554394546628329473,\"id_str\":\"1554394546628329473\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554394546628329473\\/pu\\/img\\/8Znf4h_APNDST1SU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554394546628329473\\/pu\\/img\\/8Znf4h_APNDST1SU.jpg\",\"url\":\"https:\\/\\/t.co\\/kNfJpXzEWh\",\"display_url\":\"pic.twitter.com\\/kNfJpXzEWh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554395441390915585\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1082,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[288,541],\"duration_millis\":27533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554394546628329473\\/pu\\/vid\\/320x600\\/i2VGUD40Y73NN_mg.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554394546628329473\\/pu\\/vid\\/576x1082\\/HYih0R2aseRJWFjJ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554394546628329473\\/pu\\/vid\\/480x900\\/J1p-8PTo_vNFHtkp.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554394546628329473\\/pu\\/pl\\/LT_9UJ9XjxBxJg36.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1818\":null,\"1819\":{\"media\":[{\"id\":1554390527885328385,\"id_str\":\"1554390527885328385\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJN8xjWQAEobyL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJN8xjWQAEobyL.jpg\",\"url\":\"https:\\/\\/t.co\\/L1zRvN2KQu\",\"display_url\":\"pic.twitter.com\\/L1zRvN2KQu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/chairbornegsl\\/status\\/1554390539612684290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1820\":{\"media\":[{\"id\":1554390085935718406,\"id_str\":\"1554390085935718406\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJNjDKWYAYp2oC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJNjDKWYAYp2oC.jpg\",\"url\":\"https:\\/\\/t.co\\/HfKQxECynC\",\"display_url\":\"pic.twitter.com\\/HfKQxECynC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/smockafriq\\/status\\/1554390099101712384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554390085939912709,\"id_str\":\"1554390085939912709\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJNjDLWYAUZBEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJNjDLWYAUZBEL.jpg\",\"url\":\"https:\\/\\/t.co\\/HfKQxECynC\",\"display_url\":\"pic.twitter.com\\/HfKQxECynC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/smockafriq\\/status\\/1554390099101712384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554390085910552576,\"id_str\":\"1554390085910552576\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJNjDEWYAA9SEl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJNjDEWYAA9SEl.jpg\",\"url\":\"https:\\/\\/t.co\\/HfKQxECynC\",\"display_url\":\"pic.twitter.com\\/HfKQxECynC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/smockafriq\\/status\\/1554390099101712384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554390085910536192,\"id_str\":\"1554390085910536192\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJNjDEWIAA3BPe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJNjDEWIAA3BPe.jpg\",\"url\":\"https:\\/\\/t.co\\/HfKQxECynC\",\"display_url\":\"pic.twitter.com\\/HfKQxECynC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/smockafriq\\/status\\/1554390099101712384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1821\":null,\"1822\":{\"media\":[{\"id\":1554385342282797061,\"id_str\":\"1554385342282797061\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJJO7rXEAUXnEf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJJO7rXEAUXnEf.jpg\",\"url\":\"https:\\/\\/t.co\\/UM1qF5VIak\",\"display_url\":\"pic.twitter.com\\/UM1qF5VIak\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abasisom\\/status\\/1554385350532939777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"}}}]},\"1823\":{\"media\":[{\"id\":1554378754461519872,\"id_str\":\"1554378754461519872\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554378754461519872\\/pu\\/img\\/VLO3xYBYGTUg7Kes.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554378754461519872\\/pu\\/img\\/VLO3xYBYGTUg7Kes.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjm7zKFdQa\",\"display_url\":\"pic.twitter.com\\/Qjm7zKFdQa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnduranceOfoye2\\/status\\/1554378933935771649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45001,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554378754461519872\\/pu\\/vid\\/320x568\\/LfZ6GmoT_ff-H-Dz.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554378754461519872\\/pu\\/vid\\/720x1280\\/OJqjMTg2kmtOnBMF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554378754461519872\\/pu\\/vid\\/480x852\\/32JLyOqKq87-gIKU.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554378754461519872\\/pu\\/pl\\/P3EJZ3SBhSrLnQDQ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1824\":null,\"1825\":{\"media\":[{\"id\":1554366488051580929,\"id_str\":\"1554366488051580929\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"url\":\"https:\\/\\/t.co\\/79PsEmTWxo\",\"display_url\":\"pic.twitter.com\\/79PsEmTWxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554366504594030592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":905,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":848,\"resize\":\"fit\"}}}]},\"1826\":null,\"1827\":{\"media\":[{\"id\":1554339791671595009,\"id_str\":\"1554339791671595009\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIfzibXEAEOoL2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIfzibXEAEOoL2.jpg\",\"url\":\"https:\\/\\/t.co\\/sXhWaguCll\",\"display_url\":\"pic.twitter.com\\/sXhWaguCll\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554339795895488513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1767,\"h\":1421,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":547,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":965,\"resize\":\"fit\"}}}]},\"1828\":{\"media\":[{\"id\":1554335951442350080,\"id_str\":\"1554335951442350080\",\"indices\":[183,206],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIcUAdXEAA5y6T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIcUAdXEAA5y6T.jpg\",\"url\":\"https:\\/\\/t.co\\/k4GUlSEBIn\",\"display_url\":\"pic.twitter.com\\/k4GUlSEBIn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554335953795293184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":486,\"h\":493,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":486,\"h\":493,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":493,\"resize\":\"fit\"}}}]},\"1829\":null,\"1830\":{\"media\":[{\"id\":1554330385508597763,\"id_str\":\"1554330385508597763\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330385508597763\\/pu\\/img\\/rblIvqs9hj5jpqfG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554330385508597763\\/pu\\/img\\/rblIvqs9hj5jpqfG.jpg\",\"url\":\"https:\\/\\/t.co\\/Gsc6VYtLIQ\",\"display_url\":\"pic.twitter.com\\/Gsc6VYtLIQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dopatunes\\/status\\/1554330444191207425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":720,\"h\":402,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":402,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[120,67],\"duration_millis\":27946,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554330385508597763\\/pu\\/vid\\/720x402\\/9hGiuRKHzsGUMt-g.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554330385508597763\\/pu\\/pl\\/ftKHETVMYaIq8U7s.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554330385508597763\\/pu\\/vid\\/482x270\\/60KP5InZy7K9CYoO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1831\":{\"media\":[{\"id\":1554329875804217344,\"id_str\":\"1554329875804217344\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIWyW8WYAA4i5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIWyW8WYAA4i5m.jpg\",\"url\":\"https:\\/\\/t.co\\/xFqlXftWei\",\"display_url\":\"pic.twitter.com\\/xFqlXftWei\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dopatunes\\/status\\/1554329878681604096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":872,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":872,\"h\":488,\"resize\":\"fit\"}}}]},\"1832\":{\"media\":[{\"id\":1554323141777932289,\"id_str\":\"1554323141777932289\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554323141777932289\\/pu\\/img\\/kC5m9oweN5PtoXJU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554323141777932289\\/pu\\/img\\/kC5m9oweN5PtoXJU.jpg\",\"url\":\"https:\\/\\/t.co\\/Q4lHDOIvDn\",\"display_url\":\"pic.twitter.com\\/Q4lHDOIvDn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olomo_deeno\\/status\\/1554323533551095813\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":315,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":555,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":592,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[37,80],\"duration_millis\":45001,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554323141777932289\\/pu\\/pl\\/w2ejJQLkqCimqnPP.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554323141777932289\\/pu\\/vid\\/592x1280\\/QqJRXDGXSCTb0uQx.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554323141777932289\\/pu\\/vid\\/480x1036\\/i0q7V3YCesFn4flU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554323141777932289\\/pu\\/vid\\/320x690\\/5PgWQ_58N8iiuX3c.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1833\":{\"media\":[{\"id\":1554321139295571971,\"id_str\":\"1554321139295571971\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIO106X0AMTA5f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIO106X0AMTA5f.jpg\",\"url\":\"https:\\/\\/t.co\\/uAJmMcFR0j\",\"display_url\":\"pic.twitter.com\\/uAJmMcFR0j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOphotos_\\/status\\/1554321183327375362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554321152952107008,\"id_str\":\"1554321152952107008\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIO2nyWAAA3jvh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIO2nyWAAA3jvh.jpg\",\"url\":\"https:\\/\\/t.co\\/uAJmMcFR0j\",\"display_url\":\"pic.twitter.com\\/uAJmMcFR0j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOphotos_\\/status\\/1554321183327375362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554321164280946688,\"id_str\":\"1554321164280946688\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIO3R_WYAAsZwQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIO3R_WYAAsZwQ.jpg\",\"url\":\"https:\\/\\/t.co\\/uAJmMcFR0j\",\"display_url\":\"pic.twitter.com\\/uAJmMcFR0j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOphotos_\\/status\\/1554321183327375362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554321179569278976,\"id_str\":\"1554321179569278976\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIO4K8X0AAg7i1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIO4K8X0AAg7i1.jpg\",\"url\":\"https:\\/\\/t.co\\/uAJmMcFR0j\",\"display_url\":\"pic.twitter.com\\/uAJmMcFR0j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOphotos_\\/status\\/1554321183327375362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":{\"media\":[{\"id\":1554308303773220864,\"id_str\":\"1554308303773220864\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIDKs3XwAAJirR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIDKs3XwAAJirR.jpg\",\"url\":\"https:\\/\\/t.co\\/3UGKg2j9zW\",\"display_url\":\"pic.twitter.com\\/3UGKg2j9zW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsAlaremu\\/status\\/1554308386270986240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554308324270739458,\"id_str\":\"1554308324270739458\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIDL5OXEAIU5ZK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIDL5OXEAIU5ZK.jpg\",\"url\":\"https:\\/\\/t.co\\/3UGKg2j9zW\",\"display_url\":\"pic.twitter.com\\/3UGKg2j9zW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsAlaremu\\/status\\/1554308386270986240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554308344839561217,\"id_str\":\"1554308344839561217\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIDNF2WYAEhisZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIDNF2WYAEhisZ.jpg\",\"url\":\"https:\\/\\/t.co\\/3UGKg2j9zW\",\"display_url\":\"pic.twitter.com\\/3UGKg2j9zW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsAlaremu\\/status\\/1554308386270986240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554308367488880640,\"id_str\":\"1554308367488880640\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIDOaOXkAAyHtx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIDOaOXkAAyHtx.jpg\",\"url\":\"https:\\/\\/t.co\\/3UGKg2j9zW\",\"display_url\":\"pic.twitter.com\\/3UGKg2j9zW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsAlaremu\\/status\\/1554308386270986240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1086,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":615,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1853,\"resize\":\"fit\"}}}]},\"1838\":{\"media\":[{\"id\":1554297524537724929,\"id_str\":\"1554297524537724929\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554297524537724929\\/pu\\/img\\/EtefB9Ms4dnkcfgt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554297524537724929\\/pu\\/img\\/EtefB9Ms4dnkcfgt.jpg\",\"url\":\"https:\\/\\/t.co\\/HfsltgYerP\",\"display_url\":\"pic.twitter.com\\/HfsltgYerP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ayoola_igwe\\/status\\/1554297604602793984\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":24426,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554297524537724929\\/pu\\/vid\\/848x480\\/pSywVwW4xv-HWTYd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554297524537724929\\/pu\\/vid\\/476x270\\/0aws48fM_HRiWVXb.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554297524537724929\\/pu\\/vid\\/636x360\\/cVNxedv9ZLw59B-F.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554297524537724929\\/pu\\/pl\\/dpzITOr__smuOj8w.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1839\":null,\"1840\":{\"media\":[{\"id\":1554287372942049280,\"id_str\":\"1554287372942049280\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554287372942049280\\/pu\\/img\\/ph3EF-FgWCBpZzbK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554287372942049280\\/pu\\/img\\/ph3EF-FgWCBpZzbK.jpg\",\"url\":\"https:\\/\\/t.co\\/dHcRIVWsmH\",\"display_url\":\"pic.twitter.com\\/dHcRIVWsmH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tiktokvidncom\\/status\\/1554287425572290564\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13766,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554287372942049280\\/pu\\/pl\\/Hm-1qxfF0b904nqQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554287372942049280\\/pu\\/vid\\/576x1024\\/W983_qgbd4C4cMTy.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554287372942049280\\/pu\\/vid\\/320x568\\/25IRd0N-HVAVLWdv.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554287372942049280\\/pu\\/vid\\/480x852\\/GR7frexgvla0oHke.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1841\":{\"media\":[{\"id\":1554278032101228544,\"id_str\":\"1554278032101228544\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHnoqGWQAAPRzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHnoqGWQAAPRzt.jpg\",\"url\":\"https:\\/\\/t.co\\/kTBD54YVNs\",\"display_url\":\"pic.twitter.com\\/kTBD54YVNs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GospelEmpireGh\\/status\\/1554278034739544067\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"1842\":{\"media\":[{\"id\":1554277465144664064,\"id_str\":\"1554277465144664064\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHnHqBXoAAw03W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHnHqBXoAAw03W.jpg\",\"url\":\"https:\\/\\/t.co\\/JUSyuW8qX1\",\"display_url\":\"pic.twitter.com\\/JUSyuW8qX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Adedamolaartt\\/status\\/1554277477400330240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"1843\":null,\"1844\":null,\"1845\":{\"media\":[{\"id\":1554263591699759108,\"id_str\":\"1554263591699759108\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554263591699759108\\/pu\\/img\\/otwv_rThENenUvYE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554263591699759108\\/pu\\/img\\/otwv_rThENenUvYE.jpg\",\"url\":\"https:\\/\\/t.co\\/D56uMBIgM0\",\"display_url\":\"pic.twitter.com\\/D56uMBIgM0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vido_Lengar\\/status\\/1554263646557147138\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":29338,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554263591699759108\\/pu\\/pl\\/XG-laJ6_jme096y7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554263591699759108\\/pu\\/vid\\/320x426\\/Eg318F2fYzYu6SJu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554263591699759108\\/pu\\/vid\\/480x640\\/b4QUc2yESPVjTG2L.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554263591699759108\\/pu\\/vid\\/720x960\\/DY3aCvOVN0GXri6b.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1846\":null,\"1847\":{\"media\":[{\"id\":1554259722835984384,\"id_str\":\"1554259722835984384\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHW-6xWAAA6Jw-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHW-6xWAAA6Jw-.jpg\",\"url\":\"https:\\/\\/t.co\\/IBXTyaSezn\",\"display_url\":\"pic.twitter.com\\/IBXTyaSezn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Micheal_keyz_\\/status\\/1554259730595561472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1848\":{\"media\":[{\"id\":1554255024049557505,\"id_str\":\"1554255024049557505\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554255024049557505\\/pu\\/img\\/ajEELLVV9VcMRuPR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554255024049557505\\/pu\\/img\\/ajEELLVV9VcMRuPR.jpg\",\"url\":\"https:\\/\\/t.co\\/3fsUrrjRPY\",\"display_url\":\"pic.twitter.com\\/3fsUrrjRPY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/streetdoings\\/status\\/1554255179482107909\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":38900,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554255024049557505\\/pu\\/pl\\/jMofC6wuK8Ln2jqj.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554255024049557505\\/pu\\/vid\\/720x1280\\/2YpzvgLMVi1zkB_O.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554255024049557505\\/pu\\/vid\\/320x568\\/fpAuauraA62F_O3V.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554255024049557505\\/pu\\/vid\\/480x852\\/lMq8CdF62E2aGkNp.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1849\":{\"media\":[{\"id\":1554253617921671169,\"id_str\":\"1554253617921671169\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"url\":\"https:\\/\\/t.co\\/2qnLi9wjTb\",\"display_url\":\"pic.twitter.com\\/2qnLi9wjTb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adamazi_mbonu\\/status\\/1554253705226162176\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":41357,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/vid\\/320x568\\/pmQ8UhF2bTg2rh-l.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/vid\\/720x1280\\/B_RKWol3HYR_KAIM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/pl\\/dwcFLJZtqWs5OuUk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/vid\\/480x852\\/Vx8agnAJk3NRIbQf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1850\":null,\"1851\":{\"media\":[{\"id\":1554249901529305088,\"id_str\":\"1554249901529305088\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"url\":\"https:\\/\\/t.co\\/KnUGijTCXF\",\"display_url\":\"pic.twitter.com\\/KnUGijTCXF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desportspastor\\/status\\/1554249904695959556\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"}}}]},\"1852\":{\"media\":[{\"id\":1554247548478554112,\"id_str\":\"1554247548478554112\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHL6RwWAAAK_50.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHL6RwWAAAK_50.jpg\",\"url\":\"https:\\/\\/t.co\\/YzAaOBweRs\",\"display_url\":\"pic.twitter.com\\/YzAaOBweRs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tominsin_Joseph\\/status\\/1554247555311099904\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1125,\"h\":1021,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":617,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1021,\"resize\":\"fit\"}}}]},\"1853\":null,\"1854\":{\"media\":[{\"id\":1554239241328132099,\"id_str\":\"1554239241328132099\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554239241328132099\\/pu\\/img\\/YTcrJ5JFTX6htu34.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554239241328132099\\/pu\\/img\\/YTcrJ5JFTX6htu34.jpg\",\"url\":\"https:\\/\\/t.co\\/eLUBHzjIDG\",\"display_url\":\"pic.twitter.com\\/eLUBHzjIDG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BgmGoldenboy\\/status\\/1554239689049120772\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":722,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":677,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[361,640],\"duration_millis\":73433,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554239241328132099\\/pu\\/vid\\/720x1276\\/HXud6XvD8Egu4EHe.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554239241328132099\\/pu\\/vid\\/320x566\\/ouSrIUzqxcbO5ql0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554239241328132099\\/pu\\/pl\\/hccvuxRFZTUB3fat.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554239241328132099\\/pu\\/vid\\/480x850\\/FsXX73dxnZtGmxtW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1855\":{\"media\":[{\"id\":1554236780538380292,\"id_str\":\"1554236780538380292\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"url\":\"https:\\/\\/t.co\\/w6vBipGCtz\",\"display_url\":\"pic.twitter.com\\/w6vBipGCtz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatjaicaleb\\/status\\/1554236858175037440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":35000,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/vid\\/480x270\\/yPrqpuIH4h7aYi5q.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/vid\\/640x360\\/fpN7NrETMax8CjtB.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/pl\\/3Vja7H6hl5n59Tmt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/vid\\/1280x720\\/2LxesVMoQQ4KT9h6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1856\":{\"media\":[{\"id\":1554235553729716224,\"id_str\":\"1554235553729716224\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHBAF1XoAAAIYE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHBAF1XoAAAIYE.jpg\",\"url\":\"https:\\/\\/t.co\\/bXH7Zy0d9H\",\"display_url\":\"pic.twitter.com\\/bXH7Zy0d9H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/247_adeyyy\\/status\\/1554235564337012736\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1857\":{\"media\":[{\"id\":1554234790714511360,\"id_str\":\"1554234790714511360\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"url\":\"https:\\/\\/t.co\\/zQtHHQOWRz\",\"display_url\":\"pic.twitter.com\\/zQtHHQOWRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EphraimOmale\\/status\\/1554235561086525440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":66200,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/vid\\/320x568\\/5NTT1a8t3oO4R2og.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/vid\\/480x852\\/UTnWLaVmKSIEkFjr.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/vid\\/720x1280\\/EHhNXwb5lfpShkq6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/pl\\/s7Hn_QcOABPaSs-h.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1858\":null,\"1859\":null,\"1860\":{\"media\":[{\"id\":1554233633623400451,\"id_str\":\"1554233633623400451\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554233633623400451\\/pu\\/img\\/f_alULUBmGjXMpqj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554233633623400451\\/pu\\/img\\/f_alULUBmGjXMpqj.jpg\",\"url\":\"https:\\/\\/t.co\\/V3ghu8lbvk\",\"display_url\":\"pic.twitter.com\\/V3ghu8lbvk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/streetdoings\\/status\\/1554234023555338241\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":57266,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554233633623400451\\/pu\\/vid\\/720x1280\\/HZ6B9TAucnTqIJ0E.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554233633623400451\\/pu\\/vid\\/320x568\\/SE7Tai5Jamf79SBB.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554233633623400451\\/pu\\/vid\\/480x852\\/gPsG3ltyxdF30Xag.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554233633623400451\\/pu\\/pl\\/G8cppW865AXoeV0O.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":{\"media\":[{\"id\":1554232577854144513,\"id_str\":\"1554232577854144513\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"url\":\"https:\\/\\/t.co\\/DMKDoJ0LDv\",\"display_url\":\"pic.twitter.com\\/DMKDoJ0LDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DonaldTomax\\/status\\/1554232665645191170\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/pl\\/3NVZ2npECm7eKJWG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/vid\\/720x1280\\/uUTFIy_Jafqa1_hb.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/vid\\/320x568\\/iCYDbr9ly2-POGeP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/vid\\/480x852\\/vHkW3ALjIqEsB96t.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1865\":{\"media\":[{\"id\":1554231493031071749,\"id_str\":\"1554231493031071749\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554231493031071749\\/pu\\/img\\/3ggYqRdVN65ZkQlf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554231493031071749\\/pu\\/img\\/3ggYqRdVN65ZkQlf.jpg\",\"url\":\"https:\\/\\/t.co\\/ehjfrhKK7X\",\"display_url\":\"pic.twitter.com\\/ehjfrhKK7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554231575642079232\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30799,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554231493031071749\\/pu\\/vid\\/320x320\\/pgwZy83sS85eqF_t.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554231493031071749\\/pu\\/pl\\/961I1ayO7grI-lGf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554231493031071749\\/pu\\/vid\\/720x720\\/51WWUfpnGKz09p2l.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554231493031071749\\/pu\\/vid\\/540x540\\/o6wM34bOfLHzhnL_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1866\":null,\"1867\":{\"media\":[{\"id\":1554227764659617796,\"id_str\":\"1554227764659617796\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZG56tSWAAQrEcO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZG56tSWAAQrEcO.jpg\",\"url\":\"https:\\/\\/t.co\\/UjYlIcvSyj\",\"display_url\":\"pic.twitter.com\\/UjYlIcvSyj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nnheadlines\\/status\\/1554227827758833664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":872,\"resize\":\"fit\"},\"small\":{\"w\":585,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":872,\"resize\":\"fit\"}}}]},\"1868\":null,\"1869\":null,\"1870\":{\"media\":[{\"id\":1554225245380395011,\"id_str\":\"1554225245380395011\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZG3oEPXwAMC5mH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZG3oEPXwAMC5mH.jpg\",\"url\":\"https:\\/\\/t.co\\/5JHbPFTf3V\",\"display_url\":\"pic.twitter.com\\/5JHbPFTf3V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sunteky\\/status\\/1554225305946054656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"1871\":{\"media\":[{\"id\":1554216627239092228,\"id_str\":\"1554216627239092228\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"url\":\"https:\\/\\/t.co\\/6uJ0Iz5I5n\",\"display_url\":\"pic.twitter.com\\/6uJ0Iz5I5n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1554220296223211523\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":130283,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/vid\\/480x852\\/At3AU2pf-u-jrQWy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/vid\\/576x1024\\/LGTM59YObNQ7ok65.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/pl\\/691M9Nj8eH4BL4FK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/vid\\/320x568\\/SGwDkKN3WFsKmhFs.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1872\":null,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":{\"media\":[{\"id\":1554211252880171008,\"id_str\":\"1554211252880171008\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGq5mHWYAAPn9E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGq5mHWYAAPn9E.jpg\",\"url\":\"https:\\/\\/t.co\\/VpS5RTXpAg\",\"display_url\":\"pic.twitter.com\\/VpS5RTXpAg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554211256982245376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"1877\":{\"media\":[{\"id\":1554211134445584384,\"id_str\":\"1554211134445584384\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGqys6WAAANBLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGqys6WAAANBLl.jpg\",\"url\":\"https:\\/\\/t.co\\/FI8xDQc5Vu\",\"display_url\":\"pic.twitter.com\\/FI8xDQc5Vu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnyteInvestment\\/status\\/1554211137880834050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"1878\":{\"media\":[{\"id\":1554209391141871616,\"id_str\":\"1554209391141871616\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGpNOmWYAAU2Wn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGpNOmWYAAU2Wn.jpg\",\"url\":\"https:\\/\\/t.co\\/IJ1D0u7p0y\",\"display_url\":\"pic.twitter.com\\/IJ1D0u7p0y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Okolo_Community\\/status\\/1554209400348450820\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1879\":null,\"1880\":{\"media\":[{\"id\":1554204452093140992,\"id_str\":\"1554204452093140992\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"url\":\"https:\\/\\/t.co\\/BNFbyWrV1Y\",\"display_url\":\"pic.twitter.com\\/BNFbyWrV1Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChainDustry\\/status\\/1554206276476870658\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":53429,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/vid\\/1280x720\\/jvBs6ifS0lPMASWk.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/vid\\/640x360\\/-biSh7WH8TO-2MoI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/pl\\/CZteHBMIwrtY9JdD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/vid\\/480x270\\/0nppadAHQ56e9bFd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1881\":{\"media\":[{\"id\":1554204623443034115,\"id_str\":\"1554204623443034115\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204623443034115\\/pu\\/img\\/hq1eFgTPZX9eqcwq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204623443034115\\/pu\\/img\\/hq1eFgTPZX9eqcwq.jpg\",\"url\":\"https:\\/\\/t.co\\/g02CkrFAsf\",\"display_url\":\"pic.twitter.com\\/g02CkrFAsf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adebayotosin80\\/status\\/1554204666476609545\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":426,\"h\":244,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":244,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":244,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[213,122],\"duration_millis\":22015,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204623443034115\\/pu\\/vid\\/426x244\\/ChKYB5XYIpkYc3So.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204623443034115\\/pu\\/pl\\/ZDJPb8rt9OCRfV9-.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1882\":{\"media\":[{\"id\":1554203650687369216,\"id_str\":\"1554203650687369216\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554203650687369216\\/pu\\/img\\/WjZsn4-Pe8YtvGMo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554203650687369216\\/pu\\/img\\/WjZsn4-Pe8YtvGMo.jpg\",\"url\":\"https:\\/\\/t.co\\/MTEiayyU1Z\",\"display_url\":\"pic.twitter.com\\/MTEiayyU1Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HGbesh\\/status\\/1554203858104197124\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44933,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554203650687369216\\/pu\\/vid\\/480x852\\/LuGvzKokCOkxdHaw.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554203650687369216\\/pu\\/vid\\/720x1280\\/eax-ukQUm17pBCuc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554203650687369216\\/pu\\/pl\\/FMuvop_jZHKDha_V.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554203650687369216\\/pu\\/vid\\/320x568\\/a_nVeFM9n_J0woLF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1883\":{\"media\":[{\"id\":1554198440766279680,\"id_str\":\"1554198440766279680\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"url\":\"https:\\/\\/t.co\\/cJYbjTHw10\",\"display_url\":\"pic.twitter.com\\/cJYbjTHw10\",\"expanded_url\":\"https:\\/\\/twitter.com\\/s_ifame\\/status\\/1554198465030258689\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"1884\":null,\"1885\":{\"media\":[{\"id\":1554196568487641088,\"id_str\":\"1554196568487641088\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554196568487641088\\/pu\\/img\\/grYUFiuOhp6to3Ux.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554196568487641088\\/pu\\/img\\/grYUFiuOhp6to3Ux.jpg\",\"url\":\"https:\\/\\/t.co\\/gIHTxx6dG3\",\"display_url\":\"pic.twitter.com\\/gIHTxx6dG3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChiazorThompson\\/status\\/1554196630576025600\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":22166,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554196568487641088\\/pu\\/vid\\/480x640\\/cJQo_suZkMcarLmm.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554196568487641088\\/pu\\/pl\\/k6eGMmzcc7i287L9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554196568487641088\\/pu\\/vid\\/320x426\\/T733kX3e7KzPAD2V.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1886\":null,\"1887\":null,\"1888\":null,\"1889\":null,\"1890\":null,\"1891\":{\"media\":[{\"id\":1554190243825319939,\"id_str\":\"1554190243825319939\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554190243825319939\\/pu\\/img\\/hx4DTclgOvJyI8UR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554190243825319939\\/pu\\/img\\/hx4DTclgOvJyI8UR.jpg\",\"url\":\"https:\\/\\/t.co\\/JvxqQWIYkG\",\"display_url\":\"pic.twitter.com\\/JvxqQWIYkG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EclairageAfrica\\/status\\/1554190277384015873\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":4631,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554190243825319939\\/pu\\/vid\\/640x352\\/nqcUR_2spvV6bOf_.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554190243825319939\\/pu\\/pl\\/-OLw2u436JM0AUek.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554190243825319939\\/pu\\/vid\\/490x270\\/RfHxDsURKxvKkhci.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1892\":{\"media\":[{\"id\":1554189350178619393,\"id_str\":\"1554189350178619393\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGW-sMXgAE5056.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGW-sMXgAE5056.jpg\",\"url\":\"https:\\/\\/t.co\\/oMhWzebz1H\",\"display_url\":\"pic.twitter.com\\/oMhWzebz1H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/minJohnfrancis\\/status\\/1554189363269050369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"1893\":null,\"1894\":{\"media\":[{\"id\":1554186450261909506,\"id_str\":\"1554186450261909506\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"url\":\"https:\\/\\/t.co\\/dW10Gpztl4\",\"display_url\":\"pic.twitter.com\\/dW10Gpztl4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/haleemamusah\\/status\\/1554186459778801664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1112,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":369,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":652,\"h\":1200,\"resize\":\"fit\"}}}]},\"1895\":{\"media\":[{\"id\":1554185276821569539,\"id_str\":\"1554185276821569539\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"url\":\"https:\\/\\/t.co\\/fCK2E788IZ\",\"display_url\":\"pic.twitter.com\\/fCK2E788IZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdennnConsult\\/status\\/1554185285428191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"1896\":null,\"1897\":{\"media\":[{\"id\":1554183410318561286,\"id_str\":\"1554183410318561286\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"url\":\"https:\\/\\/t.co\\/CUBz7ldRnk\",\"display_url\":\"pic.twitter.com\\/CUBz7ldRnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554183475233693697\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":656,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,41],\"duration_millis\":29280,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183410318561286\\/pu\\/pl\\/3jZ8jRewTN5osmrP.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183410318561286\\/pu\\/vid\\/320x436\\/LLfAloFte7Uh0A-Y.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183410318561286\\/pu\\/vid\\/480x656\\/WWOjN7zwuulZHDuV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1898\":null,\"1899\":{\"media\":[{\"id\":1554181811319742465,\"id_str\":\"1554181811319742465\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"url\":\"https:\\/\\/t.co\\/ZyiQgn4CTX\",\"display_url\":\"pic.twitter.com\\/ZyiQgn4CTX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554181881100472323\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":30080,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554181811319742465\\/pu\\/vid\\/352x640\\/l2oZqlWXhHyraQAL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554181811319742465\\/pu\\/pl\\/thKmoQZgC-8NqHlH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554181811319742465\\/pu\\/vid\\/320x580\\/zyr2cdxSrtWltgbO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1900\":{\"media\":[{\"id\":1554180752782376963,\"id_str\":\"1554180752782376963\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554180752782376963\\/pu\\/img\\/8CVNFTOdThx2MiYl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554180752782376963\\/pu\\/img\\/8CVNFTOdThx2MiYl.jpg\",\"url\":\"https:\\/\\/t.co\\/MDkabUxKgK\",\"display_url\":\"pic.twitter.com\\/MDkabUxKgK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olathefunny\\/status\\/1554181569841184771\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":57166,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554180752782376963\\/pu\\/vid\\/320x568\\/Zdk5klSLGAtnyYfL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554180752782376963\\/pu\\/pl\\/c5ufr0FtdNTJRQa4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554180752782376963\\/pu\\/vid\\/480x852\\/ckOMTHMEvO2Tm4ci.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554180752782376963\\/pu\\/vid\\/720x1280\\/gJxVFGxgBhnWWaTg.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1901\":{\"media\":[{\"id\":1554180848680943616,\"id_str\":\"1554180848680943616\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGPP1pXwAA4B5B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGPP1pXwAA4B5B.jpg\",\"url\":\"https:\\/\\/t.co\\/6T86iAwjJc\",\"display_url\":\"pic.twitter.com\\/6T86iAwjJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SambaBoy00\\/status\\/1554180854993272835\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":543,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":342,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":543,\"h\":1080,\"resize\":\"fit\"}}}]},\"1902\":{\"media\":[{\"id\":1554180504500535300,\"id_str\":\"1554180504500535300\",\"indices\":[48,71],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGO7zeXgAQcHD2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGO7zeXgAQcHD2.jpg\",\"url\":\"https:\\/\\/t.co\\/I9LoC0DERj\",\"display_url\":\"pic.twitter.com\\/I9LoC0DERj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554180507532988416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"small\":{\"w\":401,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1903\":{\"media\":[{\"id\":1554176601490874376,\"id_str\":\"1554176601490874376\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGLYnoWYAgpgdg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGLYnoWYAgpgdg.jpg\",\"url\":\"https:\\/\\/t.co\\/vwgIXQLOT4\",\"display_url\":\"pic.twitter.com\\/vwgIXQLOT4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554177218670108673\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":654,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":749,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":749,\"resize\":\"fit\"}}}]},\"1904\":{\"media\":[{\"id\":1554175903483166722,\"id_str\":\"1554175903483166722\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKv_WWAAIYRCF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKv_WWAAIYRCF.jpg\",\"url\":\"https:\\/\\/t.co\\/myQlXwZlZT\",\"display_url\":\"pic.twitter.com\\/myQlXwZlZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NKST_HighLevel\\/status\\/1554175923339026432\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":535,\"h\":535,\"resize\":\"fit\"},\"large\":{\"w\":535,\"h\":535,\"resize\":\"fit\"},\"small\":{\"w\":535,\"h\":535,\"resize\":\"fit\"}}},{\"id\":1554175907581018112,\"id_str\":\"1554175907581018112\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKwOnWQAA2cih.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKwOnWQAA2cih.jpg\",\"url\":\"https:\\/\\/t.co\\/myQlXwZlZT\",\"display_url\":\"pic.twitter.com\\/myQlXwZlZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NKST_HighLevel\\/status\\/1554175923339026432\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":462,\"h\":462,\"resize\":\"fit\"},\"small\":{\"w\":462,\"h\":462,\"resize\":\"fit\"},\"large\":{\"w\":462,\"h\":462,\"resize\":\"fit\"}}},{\"id\":1554175910630379523,\"id_str\":\"1554175910630379523\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKwZ-X0AMEven.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKwZ-X0AMEven.jpg\",\"url\":\"https:\\/\\/t.co\\/myQlXwZlZT\",\"display_url\":\"pic.twitter.com\\/myQlXwZlZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NKST_HighLevel\\/status\\/1554175923339026432\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":496,\"h\":496,\"resize\":\"fit\"},\"large\":{\"w\":496,\"h\":496,\"resize\":\"fit\"},\"medium\":{\"w\":496,\"h\":496,\"resize\":\"fit\"}}},{\"id\":1554175917014061056,\"id_str\":\"1554175917014061056\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKwxwXEAAb99B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKwxwXEAAb99B.jpg\",\"url\":\"https:\\/\\/t.co\\/myQlXwZlZT\",\"display_url\":\"pic.twitter.com\\/myQlXwZlZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NKST_HighLevel\\/status\\/1554175923339026432\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"}}}]},\"1905\":{\"media\":[{\"id\":1554175656929497089,\"id_str\":\"1554175656929497089\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"url\":\"https:\\/\\/t.co\\/X7rfQ2rEPP\",\"display_url\":\"pic.twitter.com\\/X7rfQ2rEPP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554175663430684679\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":568,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":601,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":601,\"resize\":\"fit\"}}},{\"id\":1554175660586930179,\"id_str\":\"1554175660586930179\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKh2fXkAMbKYw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKh2fXkAMbKYw.jpg\",\"url\":\"https:\\/\\/t.co\\/X7rfQ2rEPP\",\"display_url\":\"pic.twitter.com\\/X7rfQ2rEPP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554175663430684679\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":452,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":452,\"resize\":\"fit\"}}}]},\"1906\":{\"media\":[{\"id\":1554175558036119555,\"id_str\":\"1554175558036119555\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKb4dWYAMi9oh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKb4dWYAMi9oh.jpg\",\"url\":\"https:\\/\\/t.co\\/eXlUInEdo1\",\"display_url\":\"pic.twitter.com\\/eXlUInEdo1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554175582669312001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":817,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":599,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":817,\"resize\":\"fit\"}}},{\"id\":1554175570581364738,\"id_str\":\"1554175570581364738\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKcnMXoAIFQa3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKcnMXoAIFQa3.png\",\"url\":\"https:\\/\\/t.co\\/eXlUInEdo1\",\"display_url\":\"pic.twitter.com\\/eXlUInEdo1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1554175582669312001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":677,\"resize\":\"fit\"},\"large\":{\"w\":716,\"h\":713,\"resize\":\"fit\"},\"medium\":{\"w\":716,\"h\":713,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"1907\":{\"media\":[{\"id\":1554173435038818306,\"id_str\":\"1554173435038818306\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGIgTrWYAITzRb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGIgTrWYAITzRb.jpg\",\"url\":\"https:\\/\\/t.co\\/V2PmeBB50q\",\"display_url\":\"pic.twitter.com\\/V2PmeBB50q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DIXXONofficial\\/status\\/1554173437576372230\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":485,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":485,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":485,\"resize\":\"fit\"}}}]},\"1908\":{\"media\":[{\"id\":1554172944963731456,\"id_str\":\"1554172944963731456\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554172944963731456\\/pu\\/img\\/ok7j1ukogvNrePU_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554172944963731456\\/pu\\/img\\/ok7j1ukogvNrePU_.jpg\",\"url\":\"https:\\/\\/t.co\\/ud3jjDMVu4\",\"display_url\":\"pic.twitter.com\\/ud3jjDMVu4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rappsycho21\\/status\\/1554173065260564481\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":30015,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554172944963731456\\/pu\\/vid\\/480x852\\/BxM46s2DbDCtST5I.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554172944963731456\\/pu\\/vid\\/320x568\\/Uiop7kuXFKcVO5i9.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554172944963731456\\/pu\\/vid\\/720x1280\\/KwKXGdXfd2X7Bvx5.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554172944963731456\\/pu\\/pl\\/w8tkq3QGg_pMe71j.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1909\":null,\"1910\":null,\"1911\":{\"media\":[{\"id\":1554169632340180992,\"id_str\":\"1554169632340180992\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554169632340180992\\/pu\\/img\\/KGTHznL8l9X_2toJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554169632340180992\\/pu\\/img\\/KGTHznL8l9X_2toJ.jpg\",\"url\":\"https:\\/\\/t.co\\/h8wiD4WeVp\",\"display_url\":\"pic.twitter.com\\/h8wiD4WeVp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OneBlood_1\\/status\\/1554169718545780738\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":11313,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554169632340180992\\/pu\\/vid\\/1280x720\\/M6SxZQXTu0S6kNF0.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554169632340180992\\/pu\\/vid\\/480x270\\/yEZJva5RvoslR415.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554169632340180992\\/pu\\/vid\\/640x360\\/6dNQhkfE0yC08pDR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554169632340180992\\/pu\\/pl\\/Bc-7l2INE1EtbBou.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1912\":{\"media\":[{\"id\":1554169158547513347,\"id_str\":\"1554169158547513347\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGEnYgXoAMDD8q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGEnYgXoAMDD8q.jpg\",\"url\":\"https:\\/\\/t.co\\/vl2y3aQJUA\",\"display_url\":\"pic.twitter.com\\/vl2y3aQJUA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MEGAMAN638\\/status\\/1554169225371127813\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554169173487636480,\"id_str\":\"1554169173487636480\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGEoQKX0AAJSi9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGEoQKX0AAJSi9.jpg\",\"url\":\"https:\\/\\/t.co\\/vl2y3aQJUA\",\"display_url\":\"pic.twitter.com\\/vl2y3aQJUA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MEGAMAN638\\/status\\/1554169225371127813\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554169188977197057,\"id_str\":\"1554169188977197057\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGEpJ3XwAEpiJt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGEpJ3XwAEpiJt.jpg\",\"url\":\"https:\\/\\/t.co\\/vl2y3aQJUA\",\"display_url\":\"pic.twitter.com\\/vl2y3aQJUA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MEGAMAN638\\/status\\/1554169225371127813\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554169206404513792,\"id_str\":\"1554169206404513792\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGEqKyXgAAVoJD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGEqKyXgAAVoJD.jpg\",\"url\":\"https:\\/\\/t.co\\/vl2y3aQJUA\",\"display_url\":\"pic.twitter.com\\/vl2y3aQJUA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MEGAMAN638\\/status\\/1554169225371127813\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"1913\":{\"media\":[{\"id\":1554168940330459137,\"id_str\":\"1554168940330459137\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"url\":\"https:\\/\\/t.co\\/PLF3UKH9sI\",\"display_url\":\"pic.twitter.com\\/PLF3UKH9sI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olaadura4christ\\/status\\/1554168957476773888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/vid\\/720x1280\\/0XFEZq7XcRIMkM2x.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/pl\\/uLIlTHQBFeFDlGYk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/vid\\/480x852\\/AjjeqFRXNWzvctSY.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/vid\\/320x568\\/VPu_sOdlZG1yOdoh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1914\":null,\"1915\":{\"media\":[{\"id\":1554166613896839168,\"id_str\":\"1554166613896839168\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGCTQ8XwAAj4SL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGCTQ8XwAAj4SL.jpg\",\"url\":\"https:\\/\\/t.co\\/qNdwENoIg0\",\"display_url\":\"pic.twitter.com\\/qNdwENoIg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554166628996333570\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"1916\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1917\":{\"media\":[{\"id\":1554165756857929728,\"id_str\":\"1554165756857929728\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGBhYOX0AAuaQx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGBhYOX0AAuaQx.jpg\",\"url\":\"https:\\/\\/t.co\\/1BSBnsdam3\",\"display_url\":\"pic.twitter.com\\/1BSBnsdam3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/snowkween9\\/status\\/1554165799585185792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554165756832669701,\"id_str\":\"1554165756832669701\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGBhYIWYAUyoEV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGBhYIWYAUyoEV.jpg\",\"url\":\"https:\\/\\/t.co\\/1BSBnsdam3\",\"display_url\":\"pic.twitter.com\\/1BSBnsdam3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/snowkween9\\/status\\/1554165799585185792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"1918\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1919\":{\"media\":[{\"id\":1554165713937604608,\"id_str\":\"1554165713937604608\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554165713937604608\\/pu\\/img\\/RK1ArmWWOm4XbyRr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554165713937604608\\/pu\\/img\\/RK1ArmWWOm4XbyRr.jpg\",\"url\":\"https:\\/\\/t.co\\/IK1pLZQY1y\",\"display_url\":\"pic.twitter.com\\/IK1pLZQY1y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Builsa_MaN\\/status\\/1554165782267002883\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":36778,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554165713937604608\\/pu\\/vid\\/480x480\\/JaUP97dgEmOTLiF7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554165713937604608\\/pu\\/pl\\/tPJREo1PbZcLIGuj.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554165713937604608\\/pu\\/vid\\/320x320\\/qxytRs2nUBoKGQ_j.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1920\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1921\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1922\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1923\":null,\"1924\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1925\":{\"media\":[{\"id\":1554163737937969158,\"id_str\":\"1554163737937969158\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF_r3KWAAYV0qo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF_r3KWAAYV0qo.jpg\",\"url\":\"https:\\/\\/t.co\\/4tcOjmrumP\",\"display_url\":\"pic.twitter.com\\/4tcOjmrumP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AD_osahon\\/status\\/1554163745198333952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1113,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1113,\"resize\":\"fit\"}}}]},\"1926\":null,\"1927\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1928\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1929\":{\"media\":[{\"id\":1554162536177598471,\"id_str\":\"1554162536177598471\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF-l6QWAAc2-8j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF-l6QWAAc2-8j.jpg\",\"url\":\"https:\\/\\/t.co\\/2PlI32PKrC\",\"display_url\":\"pic.twitter.com\\/2PlI32PKrC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Georgegodwin303\\/status\\/1554162546009149442\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2047,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1199,\"resize\":\"fit\"}}}]},\"1930\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1931\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1932\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1933\":null,\"1934\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1935\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1936\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1937\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1938\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1939\":null,\"1940\":{\"media\":[{\"id\":1554161997469700097,\"id_str\":\"1554161997469700097\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"url\":\"https:\\/\\/t.co\\/0sHsnO4v1A\",\"display_url\":\"pic.twitter.com\\/0sHsnO4v1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wildwestshoppin\\/status\\/1554162076708372480\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12033,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/vid\\/720x1280\\/SaPrkoZYvyaj_weN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/vid\\/480x852\\/qyyYiI-pDDwN5S6y.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/vid\\/320x568\\/vCtzovkd6RocuqdS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/pl\\/44vJQjrNKEKsdq13.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1941\":null,\"1942\":{\"media\":[{\"id\":1554161617214083072,\"id_str\":\"1554161617214083072\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161617214083072\\/pu\\/img\\/-PwZh0ZP_gqqnqMv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161617214083072\\/pu\\/img\\/-PwZh0ZP_gqqnqMv.jpg\",\"url\":\"https:\\/\\/t.co\\/I7cy0ZJJCH\",\"display_url\":\"pic.twitter.com\\/I7cy0ZJJCH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Thatcrochetgal\\/status\\/1554161682028658689\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[6,11],\"duration_millis\":11531,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161617214083072\\/pu\\/vid\\/480x880\\/GATXC4kdgJ1HSkHs.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161617214083072\\/pu\\/vid\\/320x586\\/69TJ97LL3H1YvMWJ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161617214083072\\/pu\\/vid\\/672x1232\\/5q90abGG1AII28QI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161617214083072\\/pu\\/pl\\/M3Bcw03RtjrSFOHq.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1943\":{\"media\":[{\"id\":1554160409657180163,\"id_str\":\"1554160409657180163\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF8qIWXgAMzh0t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF8qIWXgAMzh0t.jpg\",\"url\":\"https:\\/\\/t.co\\/9NAV1ek83W\",\"display_url\":\"pic.twitter.com\\/9NAV1ek83W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsTezi\\/status\\/1554160417123061760\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":473,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":473,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554160409694928897,\"id_str\":\"1554160409694928897\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF8qIfXgAENUDL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF8qIfXgAENUDL.jpg\",\"url\":\"https:\\/\\/t.co\\/9NAV1ek83W\",\"display_url\":\"pic.twitter.com\\/9NAV1ek83W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ItsTezi\\/status\\/1554160417123061760\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":473,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":473,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"1944\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1945\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1946\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1947\":{\"media\":[{\"id\":1554158998299058176,\"id_str\":\"1554158998299058176\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158998299058176\\/pu\\/img\\/gLTO-oxiITPsBDbT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158998299058176\\/pu\\/img\\/gLTO-oxiITPsBDbT.jpg\",\"url\":\"https:\\/\\/t.co\\/6JSTNrIZMR\",\"display_url\":\"pic.twitter.com\\/6JSTNrIZMR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hetreeli\\/status\\/1554159685770559496\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":800,\"h\":436,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":371,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":436,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[200,109],\"duration_millis\":139933,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554158998299058176\\/pu\\/vid\\/800x436\\/yXG0hKHouUJLohnd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554158998299058176\\/pu\\/vid\\/494x270\\/Ljr97x1f7Uk-208S.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554158998299058176\\/pu\\/pl\\/MzUBVrsDt5i3fgKy.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1948\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1949\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1950\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1951\":{\"media\":[{\"id\":1554159191950086144,\"id_str\":\"1554159191950086144\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"url\":\"https:\\/\\/t.co\\/aXpX9C8mNH\",\"display_url\":\"pic.twitter.com\\/aXpX9C8mNH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1554159199227101185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"1952\":{\"media\":[{\"id\":1554159071401578497,\"id_str\":\"1554159071401578497\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7cO9XkAER4Nu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7cO9XkAER4Nu.jpg\",\"url\":\"https:\\/\\/t.co\\/Pv6m41SylF\",\"display_url\":\"pic.twitter.com\\/Pv6m41SylF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/baby_girl_karen\\/status\\/1554159079597260800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}}]},\"1953\":{\"media\":[{\"id\":1554158609285644290,\"id_str\":\"1554158609285644290\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"url\":\"https:\\/\\/t.co\\/lrJoRAaQRz\",\"display_url\":\"pic.twitter.com\\/lrJoRAaQRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_majikhub\\/status\\/1554158622007037960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"1954\":{\"media\":[{\"id\":1554158338493014017,\"id_str\":\"1554158338493014017\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158338493014017\\/pu\\/img\\/SPGzfh8TI5w9ttnF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554158338493014017\\/pu\\/img\\/SPGzfh8TI5w9ttnF.jpg\",\"url\":\"https:\\/\\/t.co\\/OECVty5uP6\",\"display_url\":\"pic.twitter.com\\/OECVty5uP6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nezzylayo\\/status\\/1554158482215018498\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":1028,\"resize\":\"fit\"},\"small\":{\"w\":496,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1028,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[375,514],\"duration_millis\":34251,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554158338493014017\\/pu\\/vid\\/320x438\\/aUL25U6lBPzjixbw.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554158338493014017\\/pu\\/vid\\/480x656\\/eaMdSd4WSECiQ4Rs.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554158338493014017\\/pu\\/vid\\/720x986\\/FjF5Z3VAaTTNryQN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554158338493014017\\/pu\\/pl\\/YLBIrI9RmE_zPloz.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1955\":null,\"1956\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1957\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1958\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1959\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1960\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1961\":{\"media\":[{\"id\":1554157046446055426,\"id_str\":\"1554157046446055426\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554157046446055426\\/pu\\/img\\/9ij0Q3UlAfRZ8uED.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554157046446055426\\/pu\\/img\\/9ij0Q3UlAfRZ8uED.jpg\",\"url\":\"https:\\/\\/t.co\\/pOm7Om460e\",\"display_url\":\"pic.twitter.com\\/pOm7Om460e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialmyb_\\/status\\/1554157118214873089\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":555,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1044,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":979,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[261,320],\"duration_millis\":29266,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554157046446055426\\/pu\\/vid\\/720x882\\/NpfOufQQn_UT-W67.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554157046446055426\\/pu\\/pl\\/S35cCvJhtu71RtbH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554157046446055426\\/pu\\/vid\\/320x392\\/V-NcNB6jcJ9ZF6v1.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554157046446055426\\/pu\\/vid\\/480x588\\/rls7hguITrx5UWjc.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1962\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1963\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1964\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1965\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1966\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1967\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1968\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1969\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1970\":null,\"1971\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1972\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1973\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1974\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1975\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1976\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1977\":{\"media\":[{\"id\":1554154521445781504,\"id_str\":\"1554154521445781504\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554154521445781504\\/pu\\/img\\/p62zJ4qXPXt0Epa_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554154521445781504\\/pu\\/img\\/p62zJ4qXPXt0Epa_.jpg\",\"url\":\"https:\\/\\/t.co\\/hQmqYCqcfY\",\"display_url\":\"pic.twitter.com\\/hQmqYCqcfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/virtue_grace\\/status\\/1554154616530640896\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":17050,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554154521445781504\\/pu\\/vid\\/1280x720\\/6iyyftY-KEUaN8uY.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554154521445781504\\/pu\\/vid\\/480x270\\/bbLSdM6iwi5dTOA6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554154521445781504\\/pu\\/pl\\/cQRQvb4TM8gr95ha.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554154521445781504\\/pu\\/vid\\/640x360\\/Ao6jUPDhhbUpTnga.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"1978\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1979\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1980\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1981\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1982\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1983\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1984\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1985\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1986\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1987\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1988\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1989\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1990\":null,\"1991\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1992\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1993\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1994\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1995\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1996\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1997\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1998\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"1999\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2000\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2001\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2002\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2003\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2004\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2005\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2006\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2007\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2008\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2009\":{\"media\":[{\"id\":1554150747801001987,\"id_str\":\"1554150747801001987\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554150747801001987\\/pu\\/img\\/Ml-WEV2DLftvi0A9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554150747801001987\\/pu\\/img\\/Ml-WEV2DLftvi0A9.jpg\",\"url\":\"https:\\/\\/t.co\\/TJ2rq8YZYa\",\"display_url\":\"pic.twitter.com\\/TJ2rq8YZYa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Princeaso_\\/status\\/1554150809616654336\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":30700,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554150747801001987\\/pu\\/vid\\/320x568\\/9FondmH1vgjiFoIX.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554150747801001987\\/pu\\/vid\\/480x852\\/KkyFqSCps-QvXq7O.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554150747801001987\\/pu\\/pl\\/vqDNBdd3rKTyxZcB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554150747801001987\\/pu\\/vid\\/576x1024\\/0ug6qos2KOEvp5jc.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2010\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2011\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2012\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2013\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2014\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2015\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2016\":null,\"2017\":{\"media\":[{\"id\":1554147085133512704,\"id_str\":\"1554147085133512704\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"url\":\"https:\\/\\/t.co\\/6923p84X0g\",\"display_url\":\"pic.twitter.com\\/6923p84X0g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialbmadona\\/status\\/1554148011684630528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1600,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554147085099868161,\"id_str\":\"1554147085099868161\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFwiigWIAEmblT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFwiigWIAEmblT.jpg\",\"url\":\"https:\\/\\/t.co\\/6923p84X0g\",\"display_url\":\"pic.twitter.com\\/6923p84X0g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialbmadona\\/status\\/1554148011684630528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"2018\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2019\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2020\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2021\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2022\":null,\"2023\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2024\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2025\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2026\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2027\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2028\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2029\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2030\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2031\":null,\"2032\":{\"media\":[{\"id\":1554143720307658753,\"id_str\":\"1554143720307658753\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554143720307658753\\/pu\\/img\\/LbzHls_3w6QjPdxP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554143720307658753\\/pu\\/img\\/LbzHls_3w6QjPdxP.jpg\",\"url\":\"https:\\/\\/t.co\\/iCDKK9zSO4\",\"display_url\":\"pic.twitter.com\\/iCDKK9zSO4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blacqtv\\/status\\/1554144408303415296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":55000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554143720307658753\\/pu\\/pl\\/UmrED1UOILkHRQ_m.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554143720307658753\\/pu\\/vid\\/480x852\\/rQDVn1GdGaAroGgk.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554143720307658753\\/pu\\/vid\\/320x568\\/YXo9cEqCWIHlsm2-.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554143720307658753\\/pu\\/vid\\/720x1280\\/9toYHvucfqwtzLMi.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2033\":null,\"2034\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2035\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2036\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2037\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2038\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2039\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2040\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2041\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2042\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2043\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2044\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2045\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554143040394108934,\"source_status_id_str\":\"1554143040394108934\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2046\":{\"media\":[{\"id\":1554143177514389508,\"id_str\":\"1554143177514389508\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFs_FnXkAQ--f0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFs_FnXkAQ--f0.jpg\",\"url\":\"https:\\/\\/t.co\\/TMldnVY2jN\",\"display_url\":\"pic.twitter.com\\/TMldnVY2jN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554143187475828737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554143177472344065,\"id_str\":\"1554143177472344065\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFs_FdWAAEm126.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFs_FdWAAEm126.jpg\",\"url\":\"https:\\/\\/t.co\\/TMldnVY2jN\",\"display_url\":\"pic.twitter.com\\/TMldnVY2jN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554143187475828737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554143177510092801,\"id_str\":\"1554143177510092801\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFs_FmWAAES2En.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFs_FmWAAES2En.jpg\",\"url\":\"https:\\/\\/t.co\\/TMldnVY2jN\",\"display_url\":\"pic.twitter.com\\/TMldnVY2jN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554143187475828737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554143177510100992,\"id_str\":\"1554143177510100992\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFs_FmWIAAGTJv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFs_FmWIAAGTJv.jpg\",\"url\":\"https:\\/\\/t.co\\/TMldnVY2jN\",\"display_url\":\"pic.twitter.com\\/TMldnVY2jN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femkings\\/status\\/1554143187475828737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}}]},\"2047\":{\"media\":[{\"id\":1554142926883766273,\"id_str\":\"1554142926883766273\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142926883766273\\/pu\\/img\\/Fv-0UkA1e62t5y_6.jpg\",\"url\":\"https:\\/\\/t.co\\/ivTOwIvcCd\",\"display_url\":\"pic.twitter.com\\/ivTOwIvcCd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554143040394108934\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":97600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/pl\\/FFl0PKB1rX1eUxQw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/320x568\\/bm9VkPYshROCj5aC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/720x1280\\/ho0rsHjwCWBoFVN9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142926883766273\\/pu\\/vid\\/480x852\\/tGj0L0gFa7fAaZ_N.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2048\":{\"media\":[{\"id\":1554142652077146114,\"id_str\":\"1554142652077146114\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142652077146114\\/pu\\/img\\/lY4CUmRbjlSyZslP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554142652077146114\\/pu\\/img\\/lY4CUmRbjlSyZslP.jpg\",\"url\":\"https:\\/\\/t.co\\/0v5dUVHyQw\",\"display_url\":\"pic.twitter.com\\/0v5dUVHyQw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554142791177064449\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44895,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142652077146114\\/pu\\/vid\\/720x1280\\/zVdcygUIkysiHouj.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142652077146114\\/pu\\/vid\\/480x852\\/Hlub1A6HxQcJKNFY.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142652077146114\\/pu\\/vid\\/320x568\\/4jLZ0Og9DfUAeCh4.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554142652077146114\\/pu\\/pl\\/JfL19b2OhrouWs8U.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2049\":{\"media\":[{\"id\":1554142690056478720,\"id_str\":\"1554142690056478720\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFsitsWIAACWRR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFsitsWIAACWRR.jpg\",\"url\":\"https:\\/\\/t.co\\/38TTtS8Nkp\",\"display_url\":\"pic.twitter.com\\/38TTtS8Nkp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554142693298786306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}}]},\"2050\":null,\"2051\":null,\"2052\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2053\":null,\"2054\":{\"media\":[{\"id\":1554140556158271488,\"id_str\":\"1554140556158271488\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFqmgTXgAAnPMT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFqmgTXgAAnPMT.jpg\",\"url\":\"https:\\/\\/t.co\\/8bqWGTWDkW\",\"display_url\":\"pic.twitter.com\\/8bqWGTWDkW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Behold_Homes\\/status\\/1554140559530463243\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2055\":{\"media\":[{\"id\":1554140261328064513,\"id_str\":\"1554140261328064513\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554140261328064513\\/pu\\/img\\/eQ4MzSUV-PCGO4Rc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554140261328064513\\/pu\\/img\\/eQ4MzSUV-PCGO4Rc.jpg\",\"url\":\"https:\\/\\/t.co\\/y4qnjB5rNx\",\"display_url\":\"pic.twitter.com\\/y4qnjB5rNx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femiafricaNG\\/status\\/1554140500617224192\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":497,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":936,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":878,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[117,160],\"duration_millis\":43733,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554140261328064513\\/pu\\/vid\\/720x984\\/gEE2LpXLnyZxycKj.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554140261328064513\\/pu\\/vid\\/320x436\\/6v576cX0WB6sEl61.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554140261328064513\\/pu\\/vid\\/480x656\\/jTkwPyGCcQhha3uj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554140261328064513\\/pu\\/pl\\/Ike-X_0fSrI_ueHd.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2056\":null,\"2057\":{\"media\":[{\"id\":1554139219307659276,\"id_str\":\"1554139219307659276\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFpYsJWAAwlpOc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFpYsJWAAwlpOc.jpg\",\"url\":\"https:\\/\\/t.co\\/3EwEgnhvnk\",\"display_url\":\"pic.twitter.com\\/3EwEgnhvnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DearDapson\\/status\\/1554139221434273799\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":604,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":959,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":959,\"resize\":\"fit\"}}}]},\"2058\":{\"media\":[{\"id\":1554135843866087425,\"id_str\":\"1554135843866087425\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554135843870310408,\"id_str\":\"1554135843870310408\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNqXgAgHsXZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNqXgAgHsXZ.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1554135843861831680,\"id_str\":\"1554135843861831680\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNoWIAAX0uV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNoWIAAX0uV.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2059\":{\"media\":[{\"id\":1554134920573902849,\"id_str\":\"1554134920573902849\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"url\":\"https:\\/\\/t.co\\/C4Lj4tJjjI\",\"display_url\":\"pic.twitter.com\\/C4Lj4tJjjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/agromarketsquar\\/status\\/1554134928413134848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2060\":null,\"2061\":{\"media\":[{\"id\":1554127197891428352,\"id_str\":\"1554127197891428352\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"url\":\"https:\\/\\/t.co\\/brnptiS1U6\",\"display_url\":\"pic.twitter.com\\/brnptiS1U6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554127208016379906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":816,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1392,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":462,\"resize\":\"fit\"}}}]},\"2062\":null,\"2063\":null,\"2064\":{\"media\":[{\"id\":1554124578724761603,\"id_str\":\"1554124578724761603\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"url\":\"https:\\/\\/t.co\\/HyV09hKL85\",\"display_url\":\"pic.twitter.com\\/HyV09hKL85\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554124771629174786\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":32925,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/vid\\/720x1280\\/HRiKZPVyWZouJMZa.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/vid\\/320x568\\/TQJdy5G9cBenR6jL.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/vid\\/480x852\\/9qplHXJd-oo1H4qD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/pl\\/r5VBJJtLIyNDBSE9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2065\":{\"media\":[{\"id\":1554123346412961792,\"id_str\":\"1554123346412961792\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":456,\"resize\":\"fit\"}}},{\"id\":1554123352595382273,\"id_str\":\"1554123352595382273\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa9ICWQAEOZHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa9ICWQAEOZHC.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}},{\"id\":1554123360631758851,\"id_str\":\"1554123360631758851\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa9l-XoAMkt2R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa9l-XoAMkt2R.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1554123366067568640,\"id_str\":\"1554123366067568640\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa96OXgAA2UlW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa96OXgAA2UlW.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"2066\":{\"media\":[{\"id\":1554122608614014978,\"id_str\":\"1554122608614014978\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"url\":\"https:\\/\\/t.co\\/LXSlna9e0M\",\"display_url\":\"pic.twitter.com\\/LXSlna9e0M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554122616927125504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"medium\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":443,\"resize\":\"fit\"}}}]},\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":{\"media\":[{\"id\":1554120642974343170,\"id_str\":\"1554120642974343170\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFYfZ6WYAIPrbh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFYfZ6WYAIPrbh.jpg\",\"url\":\"https:\\/\\/t.co\\/tbCfHRdBxB\",\"display_url\":\"pic.twitter.com\\/tbCfHRdBxB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/charles_etoh\\/status\\/1554120646363435008\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":607,\"h\":561,\"resize\":\"fit\"},\"small\":{\"w\":607,\"h\":561,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":607,\"h\":561,\"resize\":\"fit\"}}}]},\"2071\":{\"media\":[{\"id\":1554119089995632640,\"id_str\":\"1554119089995632640\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"url\":\"https:\\/\\/t.co\\/alddff8jzd\",\"display_url\":\"pic.twitter.com\\/alddff8jzd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/modellabbn\\/status\\/1554119100007333888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":848,\"resize\":\"fit\"}}}]},\"2072\":null,\"2073\":null,\"2074\":{\"media\":[{\"id\":1554116327538888705,\"id_str\":\"1554116327538888705\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFUkNqXEAECoc_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFUkNqXEAECoc_.jpg\",\"url\":\"https:\\/\\/t.co\\/x9TpnTDuBS\",\"display_url\":\"pic.twitter.com\\/x9TpnTDuBS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1554116335331934210\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2075\":null,\"2076\":{\"media\":[{\"id\":1554113147673378819,\"id_str\":\"1554113147673378819\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113147673378819\\/pu\\/img\\/gyPDw9c9Q6HWSvra.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113147673378819\\/pu\\/img\\/gyPDw9c9Q6HWSvra.jpg\",\"url\":\"https:\\/\\/t.co\\/PcMK6IPWIb\",\"display_url\":\"pic.twitter.com\\/PcMK6IPWIb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ericatasia\\/status\\/1554113437529251848\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59795,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554113147673378819\\/pu\\/vid\\/480x852\\/pwjS--7T9fMJq7LY.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554113147673378819\\/pu\\/vid\\/720x1280\\/RHdblUa4q_nyJ_KO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554113147673378819\\/pu\\/vid\\/320x568\\/x1h649mYzbeaJTFT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554113147673378819\\/pu\\/pl\\/_YLDbfKxTCpGnJYv.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2077\":{\"media\":[{\"id\":1554112926323281924,\"id_str\":\"1554112926323281924\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFRePJXkAQANUw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFRePJXkAQANUw.jpg\",\"url\":\"https:\\/\\/t.co\\/10hp6dxgxr\",\"display_url\":\"pic.twitter.com\\/10hp6dxgxr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AlugbinGodwin\\/status\\/1554112929057968130\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":586,\"resize\":\"fit\"},\"large\":{\"w\":580,\"h\":586,\"resize\":\"fit\"},\"small\":{\"w\":580,\"h\":586,\"resize\":\"fit\"}}}]},\"2078\":null,\"2079\":null,\"2080\":{\"media\":[{\"id\":1554100959437012994,\"id_str\":\"1554100959437012994\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFGlrBWQAI_et7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFGlrBWQAI_et7.jpg\",\"url\":\"https:\\/\\/t.co\\/iODSOsQUWW\",\"display_url\":\"pic.twitter.com\\/iODSOsQUWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/devinieke\\/status\\/1554100962473680899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":428,\"resize\":\"fit\"}}}]},\"2081\":{\"media\":[{\"id\":1554099626621419521,\"id_str\":\"1554099626621419521\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFFYF5WQAEydRW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFFYF5WQAEydRW.jpg\",\"url\":\"https:\\/\\/t.co\\/flDaMtP9fT\",\"display_url\":\"pic.twitter.com\\/flDaMtP9fT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Asquaremichael\\/status\\/1554099630031470599\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"small\":{\"w\":554,\"h\":554,\"resize\":\"fit\"}}}]},\"2082\":null,\"2083\":{\"media\":[{\"id\":1554098913459724288,\"id_str\":\"1554098913459724288\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554098913459724288\\/pu\\/img\\/taYhOf7zHwKSyEtj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554098913459724288\\/pu\\/img\\/taYhOf7zHwKSyEtj.jpg\",\"url\":\"https:\\/\\/t.co\\/KGhaoXaca8\",\"display_url\":\"pic.twitter.com\\/KGhaoXaca8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FunJumbo\\/status\\/1554099088576110592\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":43243,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554098913459724288\\/pu\\/vid\\/640x360\\/KYfv0PmskiJirkH1.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554098913459724288\\/pu\\/vid\\/480x270\\/66psyMyRAwCz4Zzc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554098913459724288\\/pu\\/pl\\/2itmZuwH81DopEvh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554098913459724288\\/pu\\/vid\\/1280x720\\/tdKSqhSgER5GyEh6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2084\":null,\"2085\":null,\"2086\":{\"media\":[{\"id\":1554096934876581889,\"id_str\":\"1554096934876581889\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFC7aXXkAEtaHq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFC7aXXkAEtaHq.png\",\"url\":\"https:\\/\\/t.co\\/kJcWBoYlfh\",\"display_url\":\"pic.twitter.com\\/kJcWBoYlfh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dan_nyeche\\/status\\/1554096943260999681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"2087\":{\"media\":[{\"id\":1554096478230118400,\"id_str\":\"1554096478230118400\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554096478230118400\\/pu\\/img\\/HtcXfqLEJA9m_xJZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554096478230118400\\/pu\\/img\\/HtcXfqLEJA9m_xJZ.jpg\",\"url\":\"https:\\/\\/t.co\\/4PAZj84JeP\",\"display_url\":\"pic.twitter.com\\/4PAZj84JeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/COURAGEOUZ1\\/status\\/1554096718039465985\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":45000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554096478230118400\\/pu\\/vid\\/656x1232\\/9g3_hxLKbJtZXHzV.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554096478230118400\\/pu\\/vid\\/480x900\\/fgyppAFPBe0aQwyt.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554096478230118400\\/pu\\/vid\\/320x600\\/8MApoZAE9YgFI7NF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554096478230118400\\/pu\\/pl\\/9wC0qROauzYuqIaa.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2088\":null,\"2089\":null,\"2090\":{\"media\":[{\"id\":1554094865994186759,\"id_str\":\"1554094865994186759\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFBC_LXgAcO9Ef.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFBC_LXgAcO9Ef.jpg\",\"url\":\"https:\\/\\/t.co\\/qGTxy5nqXe\",\"display_url\":\"pic.twitter.com\\/qGTxy5nqXe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opheliathearti6\\/status\\/1554094882452553729\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1302,\"h\":1627,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"2091\":{\"media\":[{\"id\":1554094381170397192,\"id_str\":\"1554094381170397192\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554094381170397192\\/pu\\/img\\/F-nJn2drfb2Bi8Kr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554094381170397192\\/pu\\/img\\/F-nJn2drfb2Bi8Kr.jpg\",\"url\":\"https:\\/\\/t.co\\/xIbwr9gXJl\",\"display_url\":\"pic.twitter.com\\/xIbwr9gXJl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1554094474044870657\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,2],\"duration_millis\":44933,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554094381170397192\\/pu\\/vid\\/720x480\\/J5V7GBPVQTfWEDXQ.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554094381170397192\\/pu\\/vid\\/404x270\\/GThPjsf2voKJvgXw.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554094381170397192\\/pu\\/vid\\/540x360\\/DaW196-v1fGoEV7H.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554094381170397192\\/pu\\/pl\\/XFZdnNR7nuQ6YpFc.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2092\":null,\"2093\":{\"media\":[{\"id\":1554094295795351552,\"id_str\":\"1554094295795351552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"url\":\"https:\\/\\/t.co\\/xPmn2jesjy\",\"display_url\":\"pic.twitter.com\\/xPmn2jesjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554094314493468674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"2094\":null,\"2095\":{\"media\":[{\"id\":1554090706213421056,\"id_str\":\"1554090706213421056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554090706213421056\\/pu\\/img\\/ubItgIxbfBXdpd33.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554090706213421056\\/pu\\/img\\/ubItgIxbfBXdpd33.jpg\",\"url\":\"https:\\/\\/t.co\\/AsSYtWesl8\",\"display_url\":\"pic.twitter.com\\/AsSYtWesl8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1554091249518477312\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":608,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":608,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[19,15],\"duration_millis\":30023,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554090706213421056\\/pu\\/pl\\/dwDlaRXAuYKhb_W7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554090706213421056\\/pu\\/vid\\/342x270\\/fp3s78s8sN9WEdSs.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554090706213421056\\/pu\\/vid\\/608x480\\/m1dWePi_XerA2z9k.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554090706213421056\\/pu\\/vid\\/456x360\\/X-Etts_WeGWaUnrN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2096\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2097\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2098\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2099\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2100\":{\"media\":[{\"id\":1554088176087666689,\"id_str\":\"1554088176087666689\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE69lVXEAE0UTe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE69lVXEAE0UTe.jpg\",\"url\":\"https:\\/\\/t.co\\/falX93ixiI\",\"display_url\":\"pic.twitter.com\\/falX93ixiI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gen2crystal\\/status\\/1554088256739893248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554088189471690754,\"id_str\":\"1554088189471690754\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE6-XMXEAIZa71.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE6-XMXEAIZa71.jpg\",\"url\":\"https:\\/\\/t.co\\/falX93ixiI\",\"display_url\":\"pic.twitter.com\\/falX93ixiI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gen2crystal\\/status\\/1554088256739893248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554088205229740033,\"id_str\":\"1554088205229740033\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE6_R5X0AEsJwf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE6_R5X0AEsJwf.jpg\",\"url\":\"https:\\/\\/t.co\\/falX93ixiI\",\"display_url\":\"pic.twitter.com\\/falX93ixiI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gen2crystal\\/status\\/1554088256739893248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554088225731477510,\"id_str\":\"1554088225731477510\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE7AeRXgAYXpv_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE7AeRXgAYXpv_.jpg\",\"url\":\"https:\\/\\/t.co\\/falX93ixiI\",\"display_url\":\"pic.twitter.com\\/falX93ixiI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gen2crystal\\/status\\/1554088256739893248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"2101\":null,\"2102\":{\"media\":[{\"id\":1554087194805010432,\"id_str\":\"1554087194805010432\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE6EdxWAAAHDNR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE6EdxWAAAHDNR.jpg\",\"url\":\"https:\\/\\/t.co\\/HllT8bGlHB\",\"display_url\":\"pic.twitter.com\\/HllT8bGlHB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EkoClubNigeria\\/status\\/1554087205588566017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"2103\":{\"media\":[{\"id\":1554086705497620481,\"id_str\":\"1554086705497620481\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE5n-9XwAEYAKw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE5n-9XwAEYAKw.jpg\",\"url\":\"https:\\/\\/t.co\\/pS9xXRvM6A\",\"display_url\":\"pic.twitter.com\\/pS9xXRvM6A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandnerdsltd\\/status\\/1554086710476259330\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2104\":{\"media\":[{\"id\":1554086634592796673,\"id_str\":\"1554086634592796673\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086634592796673\\/pu\\/img\\/wRlyhRjR4883UBuO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086634592796673\\/pu\\/img\\/wRlyhRjR4883UBuO.jpg\",\"url\":\"https:\\/\\/t.co\\/eGU4KQ0iph\",\"display_url\":\"pic.twitter.com\\/eGU4KQ0iph\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554086683938889728\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10266,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086634592796673\\/pu\\/vid\\/720x1280\\/hf5y_gdX3AX5h4kc.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086634592796673\\/pu\\/vid\\/480x852\\/9Nner_r8bCwFeVNo.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086634592796673\\/pu\\/vid\\/320x568\\/0s2k0FBdjcq1csJM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086634592796673\\/pu\\/pl\\/7nHcZIKudZ6-DpQF.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2105\":null,\"2106\":{\"media\":[{\"id\":1554086014142005249,\"id_str\":\"1554086014142005249\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086014142005249\\/pu\\/img\\/WxiJxUXi0PYR9DqB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554086014142005249\\/pu\\/img\\/WxiJxUXi0PYR9DqB.jpg\",\"url\":\"https:\\/\\/t.co\\/N6nHd97aYr\",\"display_url\":\"pic.twitter.com\\/N6nHd97aYr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554086108291600387\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":31300,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086014142005249\\/pu\\/vid\\/720x1280\\/2rbJB-MaivEUXcG-.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086014142005249\\/pu\\/vid\\/480x852\\/bZYoNlmv75usgRVg.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086014142005249\\/pu\\/vid\\/320x568\\/902DDFFsx1Uw_VOT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554086014142005249\\/pu\\/pl\\/Ec4VdWXE6ktzj4-T.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2107\":{\"media\":[{\"id\":1554085980403126273,\"id_str\":\"1554085980403126273\",\"indices\":[290,313],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"url\":\"https:\\/\\/t.co\\/d36ETfc2is\",\"display_url\":\"pic.twitter.com\\/d36ETfc2is\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085998321192961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2108\":{\"media\":[{\"id\":1554085798483578881,\"id_str\":\"1554085798483578881\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"url\":\"https:\\/\\/t.co\\/JON6RErm7P\",\"display_url\":\"pic.twitter.com\\/JON6RErm7P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085812974899202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2109\":{\"media\":[{\"id\":1554085414822187009,\"id_str\":\"1554085414822187009\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"url\":\"https:\\/\\/t.co\\/edeuEUUKmE\",\"display_url\":\"pic.twitter.com\\/edeuEUUKmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085432538841090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2110\":{\"media\":[{\"id\":1554085382081417218,\"id_str\":\"1554085382081417218\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4a82XEAIsUw_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4a82XEAIsUw_.jpg\",\"url\":\"https:\\/\\/t.co\\/08JqBCXvSR\",\"display_url\":\"pic.twitter.com\\/08JqBCXvSR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554085399433302016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"}}},{\"id\":1554085382081355776,\"id_str\":\"1554085382081355776\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4a82WIAAL8uc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4a82WIAAL8uc.jpg\",\"url\":\"https:\\/\\/t.co\\/08JqBCXvSR\",\"display_url\":\"pic.twitter.com\\/08JqBCXvSR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554085399433302016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"}}},{\"id\":1554085382106521601,\"id_str\":\"1554085382106521601\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4a88WIAEmcI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4a88WIAEmcI7.jpg\",\"url\":\"https:\\/\\/t.co\\/08JqBCXvSR\",\"display_url\":\"pic.twitter.com\\/08JqBCXvSR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554085399433302016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1288,\"h\":1607,\"resize\":\"fit\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554085382081449989,\"id_str\":\"1554085382081449989\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4a82XkAU55Ie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4a82XkAU55Ie.jpg\",\"url\":\"https:\\/\\/t.co\\/08JqBCXvSR\",\"display_url\":\"pic.twitter.com\\/08JqBCXvSR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554085399433302016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"}}}]},\"2111\":{\"media\":[{\"id\":1554085337202393093,\"id_str\":\"1554085337202393093\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"url\":\"https:\\/\\/t.co\\/0Wp9yQ0JHO\",\"display_url\":\"pic.twitter.com\\/0Wp9yQ0JHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085368139583489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2112\":{\"media\":[{\"id\":1554085254452871169,\"id_str\":\"1554085254452871169\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/yiAW9zI1nH\",\"display_url\":\"pic.twitter.com\\/yiAW9zI1nH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085268386447361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2113\":{\"media\":[{\"id\":1554085161104449537,\"id_str\":\"1554085161104449537\",\"indices\":[291,314],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6maa8aNF7\",\"display_url\":\"pic.twitter.com\\/Y6maa8aNF7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085193945849858\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2114\":{\"media\":[{\"id\":1554085056712515585,\"id_str\":\"1554085056712515585\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"url\":\"https:\\/\\/t.co\\/Kelu2VUCKU\",\"display_url\":\"pic.twitter.com\\/Kelu2VUCKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085067063967744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2115\":{\"media\":[{\"id\":1554084700276379651,\"id_str\":\"1554084700276379651\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"url\":\"https:\\/\\/t.co\\/k9Dya2b4UL\",\"display_url\":\"pic.twitter.com\\/k9Dya2b4UL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084711147995137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2116\":{\"media\":[{\"id\":1554084525629743111,\"id_str\":\"1554084525629743111\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"url\":\"https:\\/\\/t.co\\/O7sl5TBlhn\",\"display_url\":\"pic.twitter.com\\/O7sl5TBlhn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084536727863387\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"2117\":{\"media\":[{\"id\":1554084146338844672,\"id_str\":\"1554084146338844672\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3TBWX0AA2Wz2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3TBWX0AA2Wz2.jpg\",\"url\":\"https:\\/\\/t.co\\/2vYeLJMZbj\",\"display_url\":\"pic.twitter.com\\/2vYeLJMZbj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554084153997524993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"}}},{\"id\":1554084146359812097,\"id_str\":\"1554084146359812097\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3TBbXwAE-oAm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3TBbXwAE-oAm.jpg\",\"url\":\"https:\\/\\/t.co\\/2vYeLJMZbj\",\"display_url\":\"pic.twitter.com\\/2vYeLJMZbj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554084153997524993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"}}},{\"id\":1554084146343038979,\"id_str\":\"1554084146343038979\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3TBXX0AMgkfp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3TBXX0AMgkfp.jpg\",\"url\":\"https:\\/\\/t.co\\/2vYeLJMZbj\",\"display_url\":\"pic.twitter.com\\/2vYeLJMZbj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554084153997524993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554084146338795520,\"id_str\":\"1554084146338795520\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3TBWXEAAZ7ux.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3TBWXEAAZ7ux.jpg\",\"url\":\"https:\\/\\/t.co\\/2vYeLJMZbj\",\"display_url\":\"pic.twitter.com\\/2vYeLJMZbj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554084153997524993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1293,\"h\":1617,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"2118\":{\"media\":[{\"id\":1554083544879828993,\"id_str\":\"1554083544879828993\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2wAvXkAERYqn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2wAvXkAERYqn.jpg\",\"url\":\"https:\\/\\/t.co\\/rtsv7qMXJY\",\"display_url\":\"pic.twitter.com\\/rtsv7qMXJY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083555277422593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1288,\"h\":1607,\"resize\":\"fit\"}}},{\"id\":1554083544867160064,\"id_str\":\"1554083544867160064\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2wAsWQAADlMK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2wAsWQAADlMK.jpg\",\"url\":\"https:\\/\\/t.co\\/rtsv7qMXJY\",\"display_url\":\"pic.twitter.com\\/rtsv7qMXJY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083555277422593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1288,\"h\":1607,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554083544879824899,\"id_str\":\"1554083544879824899\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2wAvXgAMezIb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2wAvXgAMezIb.jpg\",\"url\":\"https:\\/\\/t.co\\/rtsv7qMXJY\",\"display_url\":\"pic.twitter.com\\/rtsv7qMXJY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083555277422593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1288,\"h\":1607,\"resize\":\"fit\"}}},{\"id\":1554083544854585344,\"id_str\":\"1554083544854585344\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2wApWYAAXfbO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2wApWYAAXfbO.jpg\",\"url\":\"https:\\/\\/t.co\\/rtsv7qMXJY\",\"display_url\":\"pic.twitter.com\\/rtsv7qMXJY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083555277422593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1288,\"h\":1607,\"resize\":\"fit\"}}}]},\"2119\":{\"media\":[{\"id\":1554083265417515008,\"id_str\":\"1554083265417515008\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2fvqXEAAkmLS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2fvqXEAAkmLS.jpg\",\"url\":\"https:\\/\\/t.co\\/44vS1j86Oq\",\"display_url\":\"pic.twitter.com\\/44vS1j86Oq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083275743891456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}},{\"id\":1554083265442627585,\"id_str\":\"1554083265442627585\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2fvwWQAEtxrf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2fvwWQAEtxrf.jpg\",\"url\":\"https:\\/\\/t.co\\/44vS1j86Oq\",\"display_url\":\"pic.twitter.com\\/44vS1j86Oq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083275743891456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554083265421639681,\"id_str\":\"1554083265421639681\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2fvrWAAE5Uiq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2fvrWAAE5Uiq.jpg\",\"url\":\"https:\\/\\/t.co\\/44vS1j86Oq\",\"display_url\":\"pic.twitter.com\\/44vS1j86Oq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083275743891456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}},{\"id\":1554083265409064962,\"id_str\":\"1554083265409064962\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE2fvoWIAIcsAp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE2fvoWIAIcsAp.jpg\",\"url\":\"https:\\/\\/t.co\\/44vS1j86Oq\",\"display_url\":\"pic.twitter.com\\/44vS1j86Oq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554083275743891456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"2120\":{\"media\":[{\"id\":1554078882810191879,\"id_str\":\"1554078882810191879\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"url\":\"https:\\/\\/t.co\\/b9gCgh80hJ\",\"display_url\":\"pic.twitter.com\\/b9gCgh80hJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ocheene\\/status\\/1554079628473602049\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":30000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554078882810191879\\/pu\\/vid\\/448x848\\/sU0iO-HT77aKBVcy.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554078882810191879\\/pu\\/vid\\/320x604\\/kBk6QSaNfHtFbzvK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554078882810191879\\/pu\\/pl\\/d8-BD_XguzfWhcnn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2121\":{\"media\":[{\"id\":1554079443991334913,\"id_str\":\"1554079443991334913\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554079443991334913\\/pu\\/img\\/xgOuhdvJlMw8GNZX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554079443991334913\\/pu\\/img\\/xgOuhdvJlMw8GNZX.jpg\",\"url\":\"https:\\/\\/t.co\\/bJrpcKyfop\",\"display_url\":\"pic.twitter.com\\/bJrpcKyfop\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olusegunbillion\\/status\\/1554079606923223040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":50633,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554079443991334913\\/pu\\/vid\\/720x1280\\/JZzMdBoBCfjd_BpH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554079443991334913\\/pu\\/pl\\/JDFxiUtJkD-fPjRV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554079443991334913\\/pu\\/vid\\/480x852\\/cnSqVoLozeo6t4Jv.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554079443991334913\\/pu\\/vid\\/320x568\\/2Ezi1Fl-h2Uz63L_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2122\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2123\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2124\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2125\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2126\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2127\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2128\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2129\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2130\":{\"media\":[{\"id\":1554074786254430213,\"id_str\":\"1554074786254430213\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"url\":\"https:\\/\\/t.co\\/guCA89QtKv\",\"display_url\":\"pic.twitter.com\\/guCA89QtKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554074794538291201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2131\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2132\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2133\":null,\"2134\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2135\":null,\"2136\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2137\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2138\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2139\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2140\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2141\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2142\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2143\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2144\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2145\":{\"media\":[{\"id\":1554073009094270976,\"id_str\":\"1554073009094270976\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEtKv4WIAA29jx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEtKv4WIAA29jx.jpg\",\"url\":\"https:\\/\\/t.co\\/RCTA6UIYLy\",\"display_url\":\"pic.twitter.com\\/RCTA6UIYLy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/titooh_john\\/status\\/1554073033735913472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"2146\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2147\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2148\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2149\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2150\":{\"media\":[{\"id\":1554072685868728322,\"id_str\":\"1554072685868728322\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"url\":\"https:\\/\\/t.co\\/3IGUplY2N4\",\"display_url\":\"pic.twitter.com\\/3IGUplY2N4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554072695142338561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554072686439137280,\"id_str\":\"1554072686439137280\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEs395XgAArXoD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEs395XgAArXoD.jpg\",\"url\":\"https:\\/\\/t.co\\/3IGUplY2N4\",\"display_url\":\"pic.twitter.com\\/3IGUplY2N4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554072695142338561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"2151\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2152\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2153\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2154\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2155\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2156\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2157\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2158\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2159\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2160\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2161\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2162\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2163\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2164\":null,\"2165\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2166\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2167\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2168\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2169\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2170\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2171\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2172\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2173\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2174\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2175\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2176\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2177\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2178\":{\"media\":[{\"id\":1554068586636926979,\"id_str\":\"1554068586636926979\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEpJU8WYAMX9EV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEpJU8WYAMX9EV.jpg\",\"url\":\"https:\\/\\/t.co\\/wGO4kZzOHa\",\"display_url\":\"pic.twitter.com\\/wGO4kZzOHa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1554068589812060173\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1041,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":610,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":346,\"h\":680,\"resize\":\"fit\"}}}]},\"2179\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2180\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2181\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2182\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2183\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2184\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2185\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2186\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2187\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2188\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2189\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2190\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2191\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2192\":null,\"2193\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2194\":{\"media\":[{\"id\":1554061549962252289,\"id_str\":\"1554061549962252289\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEivvSX0AEkjhJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEivvSX0AEkjhJ.jpg\",\"url\":\"https:\\/\\/t.co\\/ttoQqo8OUd\",\"display_url\":\"pic.twitter.com\\/ttoQqo8OUd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shoppurple_mall\\/status\\/1554061552902443015\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2195\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2196\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2197\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2198\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2199\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2200\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2201\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2202\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2203\":{\"media\":[{\"id\":1554060082450759682,\"id_str\":\"1554060082450759682\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554060082450759682\\/pu\\/img\\/pCPR6HrFBDEhYjuj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554060082450759682\\/pu\\/img\\/pCPR6HrFBDEhYjuj.jpg\",\"url\":\"https:\\/\\/t.co\\/VzsqenS9T5\",\"display_url\":\"pic.twitter.com\\/VzsqenS9T5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BestShadito\\/status\\/1554060418125074435\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554060082450759682\\/pu\\/vid\\/320x568\\/AhJid0JGyKkSmGYp.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554060082450759682\\/pu\\/vid\\/480x852\\/1hC5nG8rEZPBlLDt.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554060082450759682\\/pu\\/vid\\/540x960\\/LqIRnhIDS3nNZk42.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554060082450759682\\/pu\\/pl\\/0qSfHEwryFtWCBG0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2204\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2205\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2206\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2207\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2208\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2209\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2210\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2211\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2212\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2213\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2214\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2215\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2216\":{\"media\":[{\"id\":1554056415291080704,\"id_str\":\"1554056415291080704\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554056430692466689,\"id_str\":\"1554056430692466689\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeFwhWAAEj8aC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeFwhWAAEj8aC.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554056447738220544,\"id_str\":\"1554056447738220544\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeGwBXkAAJ8oi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeGwBXkAAJ8oi.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554056462955151360,\"id_str\":\"1554056462955151360\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeHotXgAA77Tu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeHotXgAA77Tu.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2217\":null,\"2218\":null,\"2219\":{\"media\":[{\"id\":1554047791734865920,\"id_str\":\"1554047791734865920\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEWO55WQAAFU9r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEWO55WQAAFU9r.jpg\",\"url\":\"https:\\/\\/t.co\\/N9iF4AGHDy\",\"display_url\":\"pic.twitter.com\\/N9iF4AGHDy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/paulotechng\\/status\\/1554048149836242944\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554047792376684544,\"id_str\":\"1554047792376684544\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEWO8SXoAAHrBs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEWO8SXoAAHrBs.jpg\",\"url\":\"https:\\/\\/t.co\\/N9iF4AGHDy\",\"display_url\":\"pic.twitter.com\\/N9iF4AGHDy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/paulotechng\\/status\\/1554048149836242944\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2220\":{\"media\":[{\"id\":1554044586451935232,\"id_str\":\"1554044586451935232\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZETUVSWIAAyDXv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZETUVSWIAAyDXv.jpg\",\"url\":\"https:\\/\\/t.co\\/rSu0H3Ysup\",\"display_url\":\"pic.twitter.com\\/rSu0H3Ysup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iampaulemeka\\/status\\/1554046306125025281\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554044586464616449,\"id_str\":\"1554044586464616449\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZETUVVXoAEu8Df.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZETUVVXoAEu8Df.jpg\",\"url\":\"https:\\/\\/t.co\\/rSu0H3Ysup\",\"display_url\":\"pic.twitter.com\\/rSu0H3Ysup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iampaulemeka\\/status\\/1554046306125025281\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2221\":null,\"2222\":null,\"2223\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2224\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2225\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2226\":{\"media\":[{\"id\":1554040474175930369,\"id_str\":\"1554040474175930369\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEPk93WAAEXeZK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEPk93WAAEXeZK.jpg\",\"url\":\"https:\\/\\/t.co\\/5qEEYKR6Xg\",\"display_url\":\"pic.twitter.com\\/5qEEYKR6Xg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554040492173791232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2227\":{\"media\":[{\"id\":1554037122063126528,\"id_str\":\"1554037122063126528\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"url\":\"https:\\/\\/t.co\\/TP3THbcurf\",\"display_url\":\"pic.twitter.com\\/TP3THbcurf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HoftDevelopers\\/status\\/1554037139071025155\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2228\":{\"media\":[{\"id\":1554036339481497601,\"id_str\":\"1554036339481497601\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"url\":\"https:\\/\\/t.co\\/Qpkfw5I2oz\",\"display_url\":\"pic.twitter.com\\/Qpkfw5I2oz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Survival690\\/status\\/1554036352378888192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554036338910978048,\"id_str\":\"1554036338910978048\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEL0QzWYAAMRP2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEL0QzWYAAMRP2.jpg\",\"url\":\"https:\\/\\/t.co\\/Qpkfw5I2oz\",\"display_url\":\"pic.twitter.com\\/Qpkfw5I2oz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Survival690\\/status\\/1554036352378888192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"2229\":{\"media\":[{\"id\":1554033726383865856,\"id_str\":\"1554033726383865856\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEJcMYWQAAb5OG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEJcMYWQAAb5OG.jpg\",\"url\":\"https:\\/\\/t.co\\/GyKivgJTKm\",\"display_url\":\"pic.twitter.com\\/GyKivgJTKm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VennRhymes\\/status\\/1554033731681263617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2230\":{\"media\":[{\"id\":1554032890933121025,\"id_str\":\"1554032890933121025\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEIrkFXkAEruor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEIrkFXkAEruor.jpg\",\"url\":\"https:\\/\\/t.co\\/SjIb9fEcHe\",\"display_url\":\"pic.twitter.com\\/SjIb9fEcHe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1554032902287007744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":715,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":715,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2231\":{\"media\":[{\"id\":1554030435428192258,\"id_str\":\"1554030435428192258\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"url\":\"https:\\/\\/t.co\\/U2kEVZJVPo\",\"display_url\":\"pic.twitter.com\\/U2kEVZJVPo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legitinfong\\/status\\/1554030867332431873\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27532,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/vid\\/320x568\\/WNEx7WkAtASOZnCB.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/vid\\/480x852\\/4lSor2mVFUoI4zLL.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/vid\\/720x1280\\/jBbExEP6Nxwu2AU8.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/pl\\/LvTX_eDG3Audh6OM.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2232\":null,\"2233\":{\"media\":[{\"id\":1554029463196811266,\"id_str\":\"1554029463196811266\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"url\":\"https:\\/\\/t.co\\/JscPy4y8kZ\",\"display_url\":\"pic.twitter.com\\/JscPy4y8kZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostolicGraceN\\/status\\/1554029474986991618\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2234\":{\"media\":[{\"id\":1554029289909231619,\"id_str\":\"1554029289909231619\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEFZ9OXoAM0e3H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEFZ9OXoAM0e3H.jpg\",\"url\":\"https:\\/\\/t.co\\/6phqI5q4Vn\",\"display_url\":\"pic.twitter.com\\/6phqI5q4Vn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobblasts_ng\\/status\\/1554029296246788096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"2235\":{\"media\":[{\"id\":1554027337997602816,\"id_str\":\"1554027337997602816\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"url\":\"https:\\/\\/t.co\\/RhFri0ZtWW\",\"display_url\":\"pic.twitter.com\\/RhFri0ZtWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554027348588216324\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":269,\"resize\":\"fit\"}}},{\"id\":1554027345668874246,\"id_str\":\"1554027345668874246\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEDoyXWIAYq0CP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEDoyXWIAYq0CP.jpg\",\"url\":\"https:\\/\\/t.co\\/RhFri0ZtWW\",\"display_url\":\"pic.twitter.com\\/RhFri0ZtWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554027348588216324\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"2236\":{\"media\":[{\"id\":1554026497995788289,\"id_str\":\"1554026497995788289\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"url\":\"https:\\/\\/t.co\\/5sJUGqLYM3\",\"display_url\":\"pic.twitter.com\\/5sJUGqLYM3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BnBhairsalon\\/status\\/1554026517906083841\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":360,\"resize\":\"fit\"}}}]},\"2237\":{\"media\":[{\"id\":1554022925891735552,\"id_str\":\"1554022925891735552\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZD_nhaXEAAzXor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZD_nhaXEAAzXor.jpg\",\"url\":\"https:\\/\\/t.co\\/ngR2bsaPZx\",\"display_url\":\"pic.twitter.com\\/ngR2bsaPZx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fnktvchannel\\/status\\/1554022939816869895\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2238\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2239\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2240\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2241\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2242\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2243\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2244\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2245\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2246\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2247\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2248\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2249\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2250\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2251\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2252\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2253\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2254\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2255\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2256\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2257\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2258\":{\"media\":[{\"id\":1553991940902977536,\"id_str\":\"1553991940902977536\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDjb9VXgAAJJ5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDjb9VXgAAJJ5b.jpg\",\"url\":\"https:\\/\\/t.co\\/5raea53SKE\",\"display_url\":\"pic.twitter.com\\/5raea53SKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MRunswag\\/status\\/1553991949765513217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2259\":{\"media\":[{\"id\":1553990294718357505,\"id_str\":\"1553990294718357505\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDh8I0XoAEOj56.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDh8I0XoAEOj56.jpg\",\"url\":\"https:\\/\\/t.co\\/xRSc2cPjYW\",\"display_url\":\"pic.twitter.com\\/xRSc2cPjYW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PetrousyD\\/status\\/1553990303949983745\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2260\":{\"media\":[{\"id\":1553989959081758722,\"id_str\":\"1553989959081758722\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDhomeXkAImO3n.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDhomeXkAImO3n.jpg\",\"url\":\"https:\\/\\/t.co\\/JjHyJ7KvAk\",\"display_url\":\"pic.twitter.com\\/JjHyJ7KvAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PetrousyD\\/status\\/1553989969529692162\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2261\":{\"media\":[{\"id\":1553987260923756545,\"id_str\":\"1553987260923756545\",\"indices\":[207,230],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553987260923756545\\/pu\\/img\\/i3Fvuivv0q875A-i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553987260923756545\\/pu\\/img\\/i3Fvuivv0q875A-i.jpg\",\"url\":\"https:\\/\\/t.co\\/gahv6I41Cx\",\"display_url\":\"pic.twitter.com\\/gahv6I41Cx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ayoola_igwe\\/status\\/1553987312983351297\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553987260923756545\\/pu\\/vid\\/320x568\\/2NOijcXHrHNbi-fb.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553987260923756545\\/pu\\/vid\\/720x1280\\/JUDxwCsA4Tb-Y3tQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553987260923756545\\/pu\\/pl\\/hV9tuGs7cVOD9hXh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553987260923756545\\/pu\\/vid\\/480x852\\/eNMfw37F30rnf3ku.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2262\":{\"media\":[{\"id\":1553987294977302530,\"id_str\":\"1553987294977302530\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDfNh6XoAIn5TQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDfNh6XoAIn5TQ.jpg\",\"url\":\"https:\\/\\/t.co\\/mUso2qBbTk\",\"display_url\":\"pic.twitter.com\\/mUso2qBbTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShinepubGhana\\/status\\/1553987304494178306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":629,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":629,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":600,\"resize\":\"fit\"}}}]},\"2263\":null,\"2264\":null,\"2265\":null,\"2266\":{\"media\":[{\"id\":1553980665665814528,\"id_str\":\"1553980665665814528\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"url\":\"https:\\/\\/t.co\\/5ax4aWy7WO\",\"display_url\":\"pic.twitter.com\\/5ax4aWy7WO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1553980672951422976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"2267\":null,\"2268\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2269\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2270\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2271\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2272\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2273\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2274\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2275\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2276\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2277\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2278\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2279\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2280\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2281\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2282\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2283\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2284\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2285\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2286\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2287\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2288\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2289\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2290\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2291\":{\"media\":[{\"id\":1553848333302501376,\"id_str\":\"1553848333302501376\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"url\":\"https:\\/\\/t.co\\/vsETtshyt3\",\"display_url\":\"pic.twitter.com\\/vsETtshyt3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553848334531457026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"2292\":{\"media\":[{\"id\":1553830980439326721,\"id_str\":\"1553830980439326721\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"url\":\"https:\\/\\/t.co\\/MS2xpI5o0k\",\"display_url\":\"pic.twitter.com\\/MS2xpI5o0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553830981844406273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":{\"media\":[{\"id\":1553752034968571904,\"id_str\":\"1553752034968571904\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553752034968571904\\/pu\\/img\\/WEesRFnNexRbHU6V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553752034968571904\\/pu\\/img\\/WEesRFnNexRbHU6V.jpg\",\"url\":\"https:\\/\\/t.co\\/EFVl0k7LQm\",\"display_url\":\"pic.twitter.com\\/EFVl0k7LQm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterseyi7281\\/status\\/1553752107890663425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":17500,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553752034968571904\\/pu\\/vid\\/320x568\\/RGnSYwMXADU96H7M.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553752034968571904\\/pu\\/pl\\/QQSMNNkWjlMIEtSR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553752034968571904\\/pu\\/vid\\/576x1024\\/bU6E_4jVXr4RX_Cn.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553752034968571904\\/pu\\/vid\\/480x852\\/RO5ve3Npu8pCOCU3.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2298\":{\"media\":[{\"id\":1553749726608216074,\"id_str\":\"1553749726608216074\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"url\":\"https:\\/\\/t.co\\/cS2Fw2TBPr\",\"display_url\":\"pic.twitter.com\\/cS2Fw2TBPr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k_endox\\/status\\/1553749966664916992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":45000,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/vid\\/320x320\\/bY1qFkrpNUmPIH7u.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/vid\\/540x540\\/w27vjMZsXUlhkHuI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/pl\\/RvoQgZzXw2SyjHiW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/vid\\/720x720\\/6P647KtXgfSw3ikO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2299\":{\"media\":[{\"id\":1553749043259604993,\"id_str\":\"1553749043259604993\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"url\":\"https:\\/\\/t.co\\/XVtQ6tcN06\",\"display_url\":\"pic.twitter.com\\/XVtQ6tcN06\",\"expanded_url\":\"https:\\/\\/twitter.com\\/11signofficial\\/status\\/1553749106207739904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":868,\"resize\":\"fit\"},\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":868,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[180,217],\"duration_millis\":28466,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/vid\\/480x578\\/mHdL8ZEp73yA5vc-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/pl\\/LqLX88Clv_XQHIBR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/vid\\/320x384\\/znv7ye49vzHDidOf.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/vid\\/720x868\\/12zZ7eTdYmTpp6uc.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2300\":{\"media\":[{\"id\":1553748497819738113,\"id_str\":\"1553748497819738113\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748497819738113\\/pu\\/img\\/nY2hWuSSLsXMWnEu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748497819738113\\/pu\\/img\\/nY2hWuSSLsXMWnEu.jpg\",\"url\":\"https:\\/\\/t.co\\/wfA440sIzV\",\"display_url\":\"pic.twitter.com\\/wfA440sIzV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/237Showbiz\\/status\\/1553748631311761411\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":45011,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748497819738113\\/pu\\/pl\\/wUEt5PlXRVdsGi_1.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748497819738113\\/pu\\/vid\\/320x400\\/nZmh5ftIsfCFLIL0.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748497819738113\\/pu\\/vid\\/480x600\\/A0JNzrbvxgnCxube.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748497819738113\\/pu\\/vid\\/720x900\\/wS-e0B9TWuATk_is.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2301\":{\"media\":[{\"id\":1553748486423814144,\"id_str\":\"1553748486423814144\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748486423814144\\/pu\\/img\\/6P4Jle1c95XrNycK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748486423814144\\/pu\\/img\\/6P4Jle1c95XrNycK.jpg\",\"url\":\"https:\\/\\/t.co\\/zXmnyJEvZZ\",\"display_url\":\"pic.twitter.com\\/zXmnyJEvZZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ojajohnson\\/status\\/1553748569122816000\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":654,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":698,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[349,640],\"duration_millis\":23722,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748486423814144\\/pu\\/vid\\/698x1280\\/sFkvolGVFZlcmprM.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748486423814144\\/pu\\/vid\\/320x586\\/yJCp4tU3Ga7Xk0b6.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748486423814144\\/pu\\/vid\\/480x880\\/f2qA1ZHUUUuHoaRx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748486423814144\\/pu\\/pl\\/KAhg32KcctpDYYKS.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2302\":{\"media\":[{\"id\":1553748265715261440,\"id_str\":\"1553748265715261440\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748265715261440\\/pu\\/img\\/YRSAhhcJQCRJTFuy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553748265715261440\\/pu\\/img\\/YRSAhhcJQCRJTFuy.jpg\",\"url\":\"https:\\/\\/t.co\\/AKlA1xj1lb\",\"display_url\":\"pic.twitter.com\\/AKlA1xj1lb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/antwicharles26\\/status\\/1553748544615550979\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1060,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":994,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,64],\"duration_millis\":140016,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748265715261440\\/pu\\/vid\\/720x868\\/WhuVfitsm1Z-7hg7.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748265715261440\\/pu\\/vid\\/480x578\\/EiEXOdUtXjPHVxWb.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748265715261440\\/pu\\/vid\\/320x386\\/Aj-O-zUiv5QNAv8F.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553748265715261440\\/pu\\/pl\\/0OyITaHr_AFRowTb.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2303\":{\"media\":[{\"id\":1553747881600974848,\"id_str\":\"1553747881600974848\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"url\":\"https:\\/\\/t.co\\/7TGcKQpHd2\",\"display_url\":\"pic.twitter.com\\/7TGcKQpHd2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gava34\\/status\\/1553747889687609351\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"}}}]},\"2304\":{\"media\":[{\"id\":1553745891080769536,\"id_str\":\"1553745891080769536\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553745891080769536\\/pu\\/img\\/I1von6OFuzxxbwrI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553745891080769536\\/pu\\/img\\/I1von6OFuzxxbwrI.jpg\",\"url\":\"https:\\/\\/t.co\\/LO53hz3pmI\",\"display_url\":\"pic.twitter.com\\/LO53hz3pmI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1553746043455635458\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,2],\"duration_millis\":44933,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553745891080769536\\/pu\\/vid\\/540x360\\/Yb-VEjQS0aJwVzgH.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553745891080769536\\/pu\\/vid\\/720x480\\/e4AgdlRy_oUIr-n6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553745891080769536\\/pu\\/pl\\/73YW4d1rR9Zam84k.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553745891080769536\\/pu\\/vid\\/404x270\\/mFaLyAgeXJEO0XWi.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2305\":{\"media\":[{\"id\":1553743561874706435,\"id_str\":\"1553743561874706435\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZABiZWXkAMZpXl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZABiZWXkAMZpXl.jpg\",\"url\":\"https:\\/\\/t.co\\/KqBDT0mISo\",\"display_url\":\"pic.twitter.com\\/KqBDT0mISo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1553743581202063361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":536,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":506,\"resize\":\"fit\"}}},{\"id\":1553743567100813315,\"id_str\":\"1553743567100813315\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZABis0XoAMpfVk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZABis0XoAMpfVk.jpg\",\"url\":\"https:\\/\\/t.co\\/KqBDT0mISo\",\"display_url\":\"pic.twitter.com\\/KqBDT0mISo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1553743581202063361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":626,\"h\":541,\"resize\":\"fit\"},\"large\":{\"w\":626,\"h\":541,\"resize\":\"fit\"},\"small\":{\"w\":626,\"h\":541,\"resize\":\"fit\"}}},{\"id\":1553743572398112769,\"id_str\":\"1553743572398112769\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZABjAjWAAEpI6C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZABjAjWAAEpI6C.jpg\",\"url\":\"https:\\/\\/t.co\\/KqBDT0mISo\",\"display_url\":\"pic.twitter.com\\/KqBDT0mISo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1553743581202063361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":543,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":543,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":513,\"resize\":\"fit\"}}},{\"id\":1553743578878312452,\"id_str\":\"1553743578878312452\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZABjYsWAAQccyP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZABjYsWAAQccyP.jpg\",\"url\":\"https:\\/\\/t.co\\/KqBDT0mISo\",\"display_url\":\"pic.twitter.com\\/KqBDT0mISo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sweet_Maryama\\/status\\/1553743581202063361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":507,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":537,\"resize\":\"fit\"}}}]},\"2306\":null,\"2307\":null,\"2308\":{\"media\":[{\"id\":1553736211000446978,\"id_str\":\"1553736211000446978\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"url\":\"https:\\/\\/t.co\\/FXjOwhXEjI\",\"display_url\":\"pic.twitter.com\\/FXjOwhXEjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hagusokayson\\/status\\/1553736217761648640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":370,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":653,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":696,\"h\":1280,\"resize\":\"fit\"}}}]},\"2309\":{\"media\":[{\"id\":1553731663489912833,\"id_str\":\"1553731663489912833\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553731663489912833\\/pu\\/img\\/hB5wN2jbZxFBq89G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553731663489912833\\/pu\\/img\\/hB5wN2jbZxFBq89G.jpg\",\"url\":\"https:\\/\\/t.co\\/fGtUB1fBM6\",\"display_url\":\"pic.twitter.com\\/fGtUB1fBM6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aytee001\\/status\\/1553731700131336192\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":14999,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553731663489912833\\/pu\\/vid\\/320x568\\/KtXJEMFDFUdCyEVP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553731663489912833\\/pu\\/vid\\/480x852\\/55ipmy_XxRFo0-kO.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553731663489912833\\/pu\\/vid\\/720x1280\\/4zpPGdOWoijB4yJh.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553731663489912833\\/pu\\/pl\\/dYJ6CkoqCJ5OiaCh.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2310\":null,\"2311\":null,\"2312\":null,\"2313\":{\"media\":[{\"id\":1553726328234512386,\"id_str\":\"1553726328234512386\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553726328234512386\\/pu\\/img\\/fErEGjoqx60CZecp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553726328234512386\\/pu\\/img\\/fErEGjoqx60CZecp.jpg\",\"url\":\"https:\\/\\/t.co\\/G4glnkYqs6\",\"display_url\":\"pic.twitter.com\\/G4glnkYqs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bombamann7\\/status\\/1553726741201518593\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":94566,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553726328234512386\\/pu\\/pl\\/hPs8QNOmLcVXDws7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553726328234512386\\/pu\\/vid\\/1280x720\\/ttRVKMkhJnCTyqhZ.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553726328234512386\\/pu\\/vid\\/480x270\\/GWaqtNwARXatENvw.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553726328234512386\\/pu\\/vid\\/640x360\\/GxOwrv9RBHvhmkPV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2314\":{\"media\":[{\"id\":1553720600916594690,\"id_str\":\"1553720600916594690\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_sp5HXEAILUKG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_sp5HXEAILUKG.jpg\",\"url\":\"https:\\/\\/t.co\\/io3avlvA3r\",\"display_url\":\"pic.twitter.com\\/io3avlvA3r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opheliathearti6\\/status\\/1553720615332454400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2315\":null,\"2316\":{\"media\":[{\"id\":1553717857766236160,\"id_str\":\"1553717857766236160\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"url\":\"https:\\/\\/t.co\\/KDquXVYd5V\",\"display_url\":\"pic.twitter.com\\/KDquXVYd5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desirecapitals\\/status\\/1553717865894780935\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":413,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"},\"medium\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"}}}]},\"2317\":{\"media\":[{\"id\":1553717296157294592,\"id_str\":\"1553717296157294592\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553717296157294592\\/pu\\/img\\/nAKZnHW2v2tgGTNE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553717296157294592\\/pu\\/img\\/nAKZnHW2v2tgGTNE.jpg\",\"url\":\"https:\\/\\/t.co\\/8GFPWOwdYk\",\"display_url\":\"pic.twitter.com\\/8GFPWOwdYk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553717350351896576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":14899,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553717296157294592\\/pu\\/vid\\/320x568\\/IKhVeNqjajR9_XkV.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553717296157294592\\/pu\\/vid\\/480x852\\/rNX678ZjDPEk1KZZ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553717296157294592\\/pu\\/pl\\/wV-uCpwvrdFlpBvS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553717296157294592\\/pu\\/vid\\/720x1280\\/6mSiLZm3phoWfQGf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2318\":{\"media\":[{\"id\":1553717008348348418,\"id_str\":\"1553717008348348418\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"url\":\"https:\\/\\/t.co\\/tYUGEX9JF6\",\"display_url\":\"pic.twitter.com\\/tYUGEX9JF6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1553717013650063360\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":313,\"resize\":\"fit\"}}}]},\"2319\":{\"media\":[{\"id\":1553715398180278273,\"id_str\":\"1553715398180278273\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715398180278273\\/pu\\/img\\/k5FSIx8rGLWo-T9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715398180278273\\/pu\\/img\\/k5FSIx8rGLWo-T9R.jpg\",\"url\":\"https:\\/\\/t.co\\/BpOIQUaHlP\",\"display_url\":\"pic.twitter.com\\/BpOIQUaHlP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1553716228899880960\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":41793,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715398180278273\\/pu\\/vid\\/320x320\\/rebYRTqMD78mYP7M.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715398180278273\\/pu\\/pl\\/qXmP5jtQv6VXgX5j.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715398180278273\\/pu\\/vid\\/540x540\\/UqJ6pkZq-YL7ePLW.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715398180278273\\/pu\\/vid\\/720x720\\/amBZx5SAp-g0jxIU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2320\":{\"media\":[{\"id\":1553715305343553539,\"id_str\":\"1553715305343553539\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715305343553539\\/pu\\/img\\/w-hUeaNKeG0mlWyY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715305343553539\\/pu\\/img\\/w-hUeaNKeG0mlWyY.jpg\",\"url\":\"https:\\/\\/t.co\\/9wcuEUbrEx\",\"display_url\":\"pic.twitter.com\\/9wcuEUbrEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mentie_pride\\/status\\/1553715895171686402\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":47501,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715305343553539\\/pu\\/vid\\/480x900\\/2VhC_bBtYaKbWN0P.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715305343553539\\/pu\\/pl\\/zTCYMZoXshzIVXE4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715305343553539\\/pu\\/vid\\/656x1232\\/SioGrDajUqWgVrWN.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715305343553539\\/pu\\/vid\\/320x600\\/dVPvNU_4QsDhe8T_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2321\":{\"media\":[{\"id\":1553715513737592832,\"id_str\":\"1553715513737592832\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_oBx5XwAAOpIW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_oBx5XwAAOpIW.jpg\",\"url\":\"https:\\/\\/t.co\\/AiGwKWgeJs\",\"display_url\":\"pic.twitter.com\\/AiGwKWgeJs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oluebube_joshua\\/status\\/1553715524625960960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":749,\"h\":975,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":522,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":975,\"resize\":\"fit\"}}}]},\"2322\":{\"media\":[{\"id\":1553715001587900418,\"id_str\":\"1553715001587900418\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715001587900418\\/pu\\/img\\/FiDQtWHRh2AM2DXK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553715001587900418\\/pu\\/img\\/FiDQtWHRh2AM2DXK.jpg\",\"url\":\"https:\\/\\/t.co\\/KacbwBXXtB\",\"display_url\":\"pic.twitter.com\\/KacbwBXXtB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553715104738414594\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":630,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[21,40],\"duration_millis\":30032,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715001587900418\\/pu\\/vid\\/672x1280\\/wXksPjp5bW2t36xO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715001587900418\\/pu\\/vid\\/320x608\\/ZA9KJWNz4slSpGvE.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715001587900418\\/pu\\/vid\\/480x914\\/KIV78zFQs5L6aCA7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553715001587900418\\/pu\\/pl\\/S6iHjGY82yBgbTZk.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2323\":{\"media\":[{\"id\":1553713994438959111,\"id_str\":\"1553713994438959111\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713994438959111\\/pu\\/img\\/ozlHn8COiDNDxAu8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713994438959111\\/pu\\/img\\/ozlHn8COiDNDxAu8.jpg\",\"url\":\"https:\\/\\/t.co\\/r3G6GOTiKW\",\"display_url\":\"pic.twitter.com\\/r3G6GOTiKW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/praisejohnn\\/status\\/1553714076899053568\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15200,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713994438959111\\/pu\\/vid\\/320x568\\/KSNIEUFEEd-ZeK0G.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713994438959111\\/pu\\/pl\\/-MjC_xlDvX1K5q8P.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713994438959111\\/pu\\/vid\\/480x852\\/fuSq5lN2tC-b3eXY.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713994438959111\\/pu\\/vid\\/540x960\\/dZvBr9HHhlOqiaya.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2324\":{\"media\":[{\"id\":1553713601176915974,\"id_str\":\"1553713601176915974\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713601176915974\\/pu\\/img\\/iABXQTWSRFCyq10z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713601176915974\\/pu\\/img\\/iABXQTWSRFCyq10z.jpg\",\"url\":\"https:\\/\\/t.co\\/fSST2DCdgG\",\"display_url\":\"pic.twitter.com\\/fSST2DCdgG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553713648203403264\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":14899,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713601176915974\\/pu\\/vid\\/320x568\\/IB2SYg-v1BXczpU2.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713601176915974\\/pu\\/vid\\/480x852\\/QZXZVm__b4wwjKno.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713601176915974\\/pu\\/vid\\/720x1280\\/yQ_1J1Ug_Bnbxp_q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713601176915974\\/pu\\/pl\\/oRpUPuxxUPlVicWa.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2325\":{\"media\":[{\"id\":1553713231952318464,\"id_str\":\"1553713231952318464\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713231952318464\\/pu\\/img\\/T5a2YWmlQ2o_LSXq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553713231952318464\\/pu\\/img\\/T5a2YWmlQ2o_LSXq.jpg\",\"url\":\"https:\\/\\/t.co\\/Qf1MgOJUGV\",\"display_url\":\"pic.twitter.com\\/Qf1MgOJUGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553713272943165440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":14899,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713231952318464\\/pu\\/vid\\/480x852\\/Xv_cWoeXjHS9XG0_.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713231952318464\\/pu\\/vid\\/320x568\\/hnISFApKc_QLl_0m.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713231952318464\\/pu\\/vid\\/720x1280\\/A7Yxgcrg00dzTQRA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553713231952318464\\/pu\\/pl\\/4NCHkrUoBRTzz4Bc.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2326\":{\"media\":[{\"id\":1553712352020889601,\"id_str\":\"1553712352020889601\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553712352020889601\\/pu\\/img\\/C1bWvCK-P4D2CdHz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553712352020889601\\/pu\\/img\\/C1bWvCK-P4D2CdHz.jpg\",\"url\":\"https:\\/\\/t.co\\/WwNLYezDV5\",\"display_url\":\"pic.twitter.com\\/WwNLYezDV5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feeenahh\\/status\\/1553712403652775937\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":28929,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553712352020889601\\/pu\\/pl\\/YV4y8veLPnXifMqx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553712352020889601\\/pu\\/vid\\/320x426\\/MJYk_cwnIIRs0T1k.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553712352020889601\\/pu\\/vid\\/480x640\\/7b5XJlMytgKl82Rr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2327\":{\"media\":[{\"id\":1553711629023461376,\"id_str\":\"1553711629023461376\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"url\":\"https:\\/\\/t.co\\/IYWcic6UEo\",\"display_url\":\"pic.twitter.com\\/IYWcic6UEo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1553711639521812482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":734,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":390,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":688,\"resize\":\"fit\"}}}]},\"2328\":{\"media\":[{\"id\":1553710383063605248,\"id_str\":\"1553710383063605248\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"url\":\"https:\\/\\/t.co\\/Vp6TR5AKx9\",\"display_url\":\"pic.twitter.com\\/Vp6TR5AKx9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1553710607052029953\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59200,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/vid\\/480x852\\/tpmeF7PEO5HLawzO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/vid\\/320x568\\/0DBScmei3S2WCuZk.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/vid\\/540x960\\/XcMZf9NAJcjGYXOh.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/pl\\/csYXIt1O4WQqSin4.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2329\":{\"media\":[{\"id\":1553708206605717507,\"id_str\":\"1553708206605717507\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_hYctX0AMY-t4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_hYctX0AMY-t4.jpg\",\"url\":\"https:\\/\\/t.co\\/QQqNYWEN5M\",\"display_url\":\"pic.twitter.com\\/QQqNYWEN5M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oluwakemistry\\/status\\/1553708230559371264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553708206597226496,\"id_str\":\"1553708206597226496\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_hYcrWQAAOWuR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_hYcrWQAAOWuR.jpg\",\"url\":\"https:\\/\\/t.co\\/QQqNYWEN5M\",\"display_url\":\"pic.twitter.com\\/QQqNYWEN5M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oluwakemistry\\/status\\/1553708230559371264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2330\":{\"media\":[{\"id\":1553705277563731969,\"id_str\":\"1553705277563731969\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553705277563731969\\/pu\\/img\\/v_kYxsEuUtGejIBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553705277563731969\\/pu\\/img\\/v_kYxsEuUtGejIBD.jpg\",\"url\":\"https:\\/\\/t.co\\/nWc6Sxyxvu\",\"display_url\":\"pic.twitter.com\\/nWc6Sxyxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/priestlynews1\\/status\\/1553705315069313025\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":23426,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553705277563731969\\/pu\\/vid\\/320x564\\/E1xihfouwwn_n6NM.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553705277563731969\\/pu\\/vid\\/480x848\\/1z1EsH3OTYqF6QpY.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553705277563731969\\/pu\\/pl\\/QUesKnyyBFjxuhvp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2331\":null,\"2332\":{\"media\":[{\"id\":1553700770553466880,\"id_str\":\"1553700770553466880\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553700770553466880\\/pu\\/img\\/DQquNEYSglF4iW8b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553700770553466880\\/pu\\/img\\/DQquNEYSglF4iW8b.jpg\",\"url\":\"https:\\/\\/t.co\\/bA3ejk7XYv\",\"display_url\":\"pic.twitter.com\\/bA3ejk7XYv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PToplexnice\\/status\\/1553700842909335552\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":48283,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553700770553466880\\/pu\\/vid\\/576x1024\\/kLXCntT0mqSdgu71.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553700770553466880\\/pu\\/pl\\/5Rplf4HfR_AhrpdS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553700770553466880\\/pu\\/vid\\/320x568\\/QYKfIwUveDwRX2-3.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553700770553466880\\/pu\\/vid\\/480x852\\/-QMb8RqNOgfBDqrr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2333\":{\"media\":[{\"id\":1553700737506578432,\"id_str\":\"1553700737506578432\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_alsJXkAA_xOC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_alsJXkAA_xOC.jpg\",\"url\":\"https:\\/\\/t.co\\/xmBeThWr8l\",\"display_url\":\"pic.twitter.com\\/xmBeThWr8l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YutchayBella\\/status\\/1553700746067165186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":608,\"h\":839,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":608,\"h\":839,\"resize\":\"fit\"},\"small\":{\"w\":493,\"h\":680,\"resize\":\"fit\"}}}]},\"2334\":{\"media\":[{\"id\":1553697731130032128,\"id_str\":\"1553697731130032128\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553697731155206144,\"id_str\":\"1553697731155206144\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2snWIAAPN3N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2snWIAAPN3N.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553697731134332928,\"id_str\":\"1553697731134332928\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2siXoAAx9RR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2siXoAAx9RR.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"}}},{\"id\":1553697731188752384,\"id_str\":\"1553697731188752384\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2svWAAAlf6k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2svWAAAlf6k.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"}}}]},\"2335\":{\"media\":[{\"id\":1553696828448727046,\"id_str\":\"1553696828448727046\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_XCJxWYAYj5j-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_XCJxWYAYj5j-.jpg\",\"url\":\"https:\\/\\/t.co\\/ndnpZDwvpa\",\"display_url\":\"pic.twitter.com\\/ndnpZDwvpa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1553696834677268480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":591,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553696832424919051,\"id_str\":\"1553696832424919051\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_XCYlWQAsLI3t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_XCYlWQAsLI3t.jpg\",\"url\":\"https:\\/\\/t.co\\/ndnpZDwvpa\",\"display_url\":\"pic.twitter.com\\/ndnpZDwvpa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1553696834677268480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":591,\"h\":1280,\"resize\":\"fit\"}}}]},\"2336\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2337\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2338\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2339\":{\"media\":[{\"id\":1553693668250361858,\"id_str\":\"1553693668250361858\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_UKNHWIAIxPbz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_UKNHWIAIxPbz.jpg\",\"url\":\"https:\\/\\/t.co\\/YxvS7SJOHY\",\"display_url\":\"pic.twitter.com\\/YxvS7SJOHY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/panquespark\\/status\\/1553693677083660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1180,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":392,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":691,\"h\":1200,\"resize\":\"fit\"}}}]},\"2340\":null,\"2341\":{\"media\":[{\"id\":1553691375979356166,\"id_str\":\"1553691375979356166\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"url\":\"https:\\/\\/t.co\\/8jXGvh6oGt\",\"display_url\":\"pic.twitter.com\\/8jXGvh6oGt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1553691378995142659\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":297,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1650,\"resize\":\"fit\"},\"medium\":{\"w\":524,\"h\":1200,\"resize\":\"fit\"}}}]},\"2342\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2343\":null,\"2344\":{\"media\":[{\"id\":1553689051076694018,\"id_str\":\"1553689051076694018\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_P9czXEAI3F4s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_P9czXEAI3F4s.jpg\",\"url\":\"https:\\/\\/t.co\\/yUlWXOJXht\",\"display_url\":\"pic.twitter.com\\/yUlWXOJXht\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YutchayBella\\/status\\/1553689061503664128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":654,\"h\":1025,\"resize\":\"fit\"},\"small\":{\"w\":434,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":654,\"h\":1025,\"resize\":\"fit\"}}}]},\"2345\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2346\":{\"media\":[{\"id\":1553687826172153856,\"id_str\":\"1553687826172153856\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553687826172153856\\/pu\\/img\\/T9ieHyn13cRFyH0A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553687826172153856\\/pu\\/img\\/T9ieHyn13cRFyH0A.jpg\",\"url\":\"https:\\/\\/t.co\\/xJhhPxiOjV\",\"display_url\":\"pic.twitter.com\\/xJhhPxiOjV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OEJOZEFF\\/status\\/1553688061355200512\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":102549,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553687826172153856\\/pu\\/vid\\/1280x720\\/IhjfidOEvE3WSVbA.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553687826172153856\\/pu\\/vid\\/640x360\\/LU0EYEIyQMPlNOBA.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553687826172153856\\/pu\\/vid\\/480x270\\/b_yMLawOvam8uDQD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553687826172153856\\/pu\\/pl\\/zqcGVVMqBjb8X_CX.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2347\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2348\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2349\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2350\":{\"media\":[{\"id\":1553686961235312640,\"id_str\":\"1553686961235312640\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_ODziWQAA2Ys7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_ODziWQAA2Ys7.jpg\",\"url\":\"https:\\/\\/t.co\\/fxw4NNEGKL\",\"display_url\":\"pic.twitter.com\\/fxw4NNEGKL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1553687498500571136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":476,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":896,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":840,\"resize\":\"fit\"}}},{\"id\":1553686961231208448,\"id_str\":\"1553686961231208448\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_ODzhXoAAZrQh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_ODzhXoAAZrQh.jpg\",\"url\":\"https:\\/\\/t.co\\/fxw4NNEGKL\",\"display_url\":\"pic.twitter.com\\/fxw4NNEGKL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1553687498500571136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":853,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"}}}]},\"2351\":null,\"2352\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2353\":null,\"2354\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2355\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2356\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2357\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2358\":{\"media\":[{\"id\":1553683792442916864,\"id_str\":\"1553683792442916864\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1553683800491712512,\"id_str\":\"1553683800491712512\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LL02WYAAePAh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LL02WYAAePAh.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1553683807215263746,\"id_str\":\"1553683807215263746\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LMN5XoAI4ZB8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LMN5XoAI4ZB8.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1553683820167274496,\"id_str\":\"1553683820167274496\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LM-JXoAAKS9q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LM-JXoAAKS9q.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2359\":{\"media\":[{\"id\":1553682571640332288,\"id_str\":\"1553682571640332288\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553682724241739776,\"id_str\":\"1553682724241739776\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KNLgXEAAXIsO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KNLgXEAAXIsO.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553682938960781312,\"id_str\":\"1553682938960781312\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KZrZXoAArT2i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KZrZXoAArT2i.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553682978265497600,\"id_str\":\"1553682978265497600\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_Kb90WAAAeLY2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_Kb90WAAAeLY2.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2360\":{\"media\":[{\"id\":1553682444745936897,\"id_str\":\"1553682444745936897\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"url\":\"https:\\/\\/t.co\\/sheCT5ZSVb\",\"display_url\":\"pic.twitter.com\\/sheCT5ZSVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Exclusive_Paull\\/status\\/1553682457970593792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":329,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":644,\"h\":1333,\"resize\":\"fit\"}}},{\"id\":1553682452551540740,\"id_str\":\"1553682452551540740\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_J9XYXoAQ3Or1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_J9XYXoAQ3Or1.jpg\",\"url\":\"https:\\/\\/t.co\\/sheCT5ZSVb\",\"display_url\":\"pic.twitter.com\\/sheCT5ZSVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Exclusive_Paull\\/status\\/1553682457970593792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":644,\"h\":1333,\"resize\":\"fit\"},\"small\":{\"w\":329,\"h\":680,\"resize\":\"fit\"}}}]},\"2361\":null,\"2362\":{\"media\":[{\"id\":1553681028769882113,\"id_str\":\"1553681028769882113\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_IqfYXoAEqGWN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_IqfYXoAEqGWN.jpg\",\"url\":\"https:\\/\\/t.co\\/L3csQBt4ly\",\"display_url\":\"pic.twitter.com\\/L3csQBt4ly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ajibolatweet\\/status\\/1553681037603278848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553681028778180608,\"id_str\":\"1553681028778180608\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_IqfaWQAA6oKO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_IqfaWQAA6oKO.jpg\",\"url\":\"https:\\/\\/t.co\\/L3csQBt4ly\",\"display_url\":\"pic.twitter.com\\/L3csQBt4ly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ajibolatweet\\/status\\/1553681037603278848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553681028786622465,\"id_str\":\"1553681028786622465\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_IqfcXEAE6O7I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_IqfcXEAE6O7I.jpg\",\"url\":\"https:\\/\\/t.co\\/L3csQBt4ly\",\"display_url\":\"pic.twitter.com\\/L3csQBt4ly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ajibolatweet\\/status\\/1553681037603278848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"2363\":null,\"2364\":{\"media\":[{\"id\":1553679154482126848,\"id_str\":\"1553679154482126848\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553679154482126848\\/pu\\/img\\/xHXXUY4BXnkFMBkT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553679154482126848\\/pu\\/img\\/xHXXUY4BXnkFMBkT.jpg\",\"url\":\"https:\\/\\/t.co\\/kzf7m9IiDV\",\"display_url\":\"pic.twitter.com\\/kzf7m9IiDV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thehighestblog\\/status\\/1553679283079585792\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":416,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":784,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":784,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,49],\"duration_millis\":19921,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553679154482126848\\/pu\\/pl\\/p7Bz8Dkkkwl4ZU-U.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553679154482126848\\/pu\\/vid\\/480x784\\/RUyftXJk1B3_7_Xc.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553679154482126848\\/pu\\/vid\\/320x522\\/SGapSjXJWaRlIZAb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2365\":{\"media\":[{\"id\":1553677467495317504,\"id_str\":\"1553677467495317504\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"url\":\"https:\\/\\/t.co\\/ZKzvW7tT69\",\"display_url\":\"pic.twitter.com\\/ZKzvW7tT69\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GovaRidechief\\/status\\/1553677470389469186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"2366\":{\"media\":[{\"id\":1553677350302277632,\"id_str\":\"1553677350302277632\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_FUYBWYAAT0ii.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_FUYBWYAAT0ii.jpg\",\"url\":\"https:\\/\\/t.co\\/77sDiQmFng\",\"display_url\":\"pic.twitter.com\\/77sDiQmFng\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AsaraDaniel1\\/status\\/1553677361119379456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"2367\":null,\"2368\":{\"media\":[{\"id\":1553676816279281665,\"id_str\":\"1553676816279281665\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_E1SoWIAEjsQg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_E1SoWIAEjsQg.jpg\",\"url\":\"https:\\/\\/t.co\\/gqsQbMA7NK\",\"display_url\":\"pic.twitter.com\\/gqsQbMA7NK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SambaBoy00\\/status\\/1553676823921311744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":552,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":1581,\"resize\":\"fit\"},\"medium\":{\"w\":975,\"h\":1200,\"resize\":\"fit\"}}}]},\"2369\":{\"media\":[{\"id\":1553675482083872769,\"id_str\":\"1553675482083872769\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_DnoXX0AES-ra.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_DnoXX0AES-ra.jpg\",\"url\":\"https:\\/\\/t.co\\/Ni97k16Apq\",\"display_url\":\"pic.twitter.com\\/Ni97k16Apq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/misragold\\/status\\/1553675484914917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":719,\"h\":205,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":719,\"h\":205,\"resize\":\"fit\"}}}]},\"2370\":{\"media\":[{\"id\":1553674475299905539,\"id_str\":\"1553674475299905539\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"url\":\"https:\\/\\/t.co\\/Zk5bwOgNlt\",\"display_url\":\"pic.twitter.com\\/Zk5bwOgNlt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abnonlinetv\\/status\\/1553674549207748609\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":18923,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/vid\\/720x1280\\/Zc9K0lUrJ-qX7Up1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/pl\\/KH8ZnL6wN7es1-h8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/vid\\/320x568\\/HmJNkT7itkBdxDM4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/vid\\/480x852\\/ffOypxmMZEQc3Pll.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2371\":null,\"2372\":{\"media\":[{\"id\":1553671273158434816,\"id_str\":\"1553671273158434816\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"url\":\"https:\\/\\/t.co\\/rYS4rVM16a\",\"display_url\":\"pic.twitter.com\\/rYS4rVM16a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/weightgainfire\\/status\\/1553672054062342144\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[289,540],\"duration_millis\":41533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/vid\\/320x596\\/coEKQ4dBP9mL43Hq.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/vid\\/480x896\\/MGH36cipbV9OEunC.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/pl\\/vyWxvE_n1MKf5goc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/vid\\/578x1080\\/3VbrOCf8f_bkQYEX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2373\":{\"media\":[{\"id\":1553671114462838784,\"id_str\":\"1553671114462838784\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"url\":\"https:\\/\\/t.co\\/p8sQJlBCFf\",\"display_url\":\"pic.twitter.com\\/p8sQJlBCFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553671116941672449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":326,\"h\":304,\"resize\":\"fit\"}}}]},\"2374\":null,\"2375\":{\"media\":[{\"id\":1553668295416586245,\"id_str\":\"1553668295416586245\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"url\":\"https:\\/\\/t.co\\/n4MFJpTmDu\",\"display_url\":\"pic.twitter.com\\/n4MFJpTmDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553668298004480000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":719,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":719,\"resize\":\"fit\"}}}]},\"2376\":{\"media\":[{\"id\":1553668179733450755,\"id_str\":\"1553668179733450755\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"url\":\"https:\\/\\/t.co\\/I010NXmDDu\",\"display_url\":\"pic.twitter.com\\/I010NXmDDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__amandoo\\/status\\/1553668196879814656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2377\":null,\"2378\":{\"media\":[{\"id\":1553664661354061825,\"id_str\":\"1553664661354061825\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"url\":\"https:\\/\\/t.co\\/qkJPQkTV7n\",\"display_url\":\"pic.twitter.com\\/qkJPQkTV7n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mr_Bayo_jnr\\/status\\/1553664668815835136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":562,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553664661324795907,\"id_str\":\"1553664661324795907\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-5xx5XkAMXSlk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-5xx5XkAMXSlk.jpg\",\"url\":\"https:\\/\\/t.co\\/qkJPQkTV7n\",\"display_url\":\"pic.twitter.com\\/qkJPQkTV7n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mr_Bayo_jnr\\/status\\/1553664668815835136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":562,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"}}}]},\"2379\":null,\"2380\":null,\"2381\":{\"media\":[{\"id\":1553662649476448256,\"id_str\":\"1553662649476448256\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662649476448256\\/pu\\/img\\/-FL6rYkZbkDv3vG9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662649476448256\\/pu\\/img\\/-FL6rYkZbkDv3vG9.jpg\",\"url\":\"https:\\/\\/t.co\\/AkYDRWvNBj\",\"display_url\":\"pic.twitter.com\\/AkYDRWvNBj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GrtJovial\\/status\\/1553662704761593856\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":752,\"resize\":\"fit\"},\"small\":{\"w\":434,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":752,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,47],\"duration_millis\":27585,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553662649476448256\\/pu\\/pl\\/H-VSciqrO9hL7XbF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553662649476448256\\/pu\\/vid\\/480x752\\/--PkWwI8RvjYwr8k.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553662649476448256\\/pu\\/vid\\/320x500\\/29Nf9tRaWVrOKu_-.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2382\":{\"media\":[{\"id\":1553662306378289153,\"id_str\":\"1553662306378289153\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662306378289153\\/pu\\/img\\/SNShq-HckMWoKXTj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553662306378289153\\/pu\\/img\\/SNShq-HckMWoKXTj.jpg\",\"url\":\"https:\\/\\/t.co\\/SKX3RY7e7F\",\"display_url\":\"pic.twitter.com\\/SKX3RY7e7F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Boyolamzie\\/status\\/1553662625409548290\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":71200,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553662306378289153\\/pu\\/pl\\/PLY6Ataa6fvq9by3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553662306378289153\\/pu\\/vid\\/480x600\\/eCpSGAoZZITdQviE.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553662306378289153\\/pu\\/vid\\/720x900\\/b5J-Ridck8P9pXfY.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553662306378289153\\/pu\\/vid\\/320x400\\/uXAdhXQehKGh-Dk6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2383\":null,\"2384\":{\"media\":[{\"id\":1553661826189197317,\"id_str\":\"1553661826189197317\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553661826189197317\\/pu\\/img\\/dPVXY75RgRDlyV00.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553661826189197317\\/pu\\/img\\/dPVXY75RgRDlyV00.jpg\",\"url\":\"https:\\/\\/t.co\\/5BHjztle1F\",\"display_url\":\"pic.twitter.com\\/5BHjztle1F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concepts_tm\\/status\\/1553661894002704385\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":29768,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553661826189197317\\/pu\\/vid\\/480x852\\/yHd7r-JNwi8ShZc7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553661826189197317\\/pu\\/pl\\/lqpRWDsImfxac3vJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553661826189197317\\/pu\\/vid\\/720x1280\\/7EQXS5C79ZBKb1RR.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553661826189197317\\/pu\\/vid\\/320x568\\/_NmuJXCfHA8nkPcf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2385\":{\"media\":[{\"id\":1553660445604601856,\"id_str\":\"1553660445604601856\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-18ZHWYAAuqI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-18ZHWYAAuqI7.jpg\",\"url\":\"https:\\/\\/t.co\\/SV1haNKXM5\",\"display_url\":\"pic.twitter.com\\/SV1haNKXM5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kay_Blaq01\\/status\\/1553660462243397632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"}}}]},\"2386\":{\"media\":[{\"id\":1553659369887342592,\"id_str\":\"1553659369887342592\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-09xwXoAACXm9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-09xwXoAACXm9.jpg\",\"url\":\"https:\\/\\/t.co\\/uGowkodDNw\",\"display_url\":\"pic.twitter.com\\/uGowkodDNw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_bjbizzy\\/status\\/1553659378573737984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2387\":null,\"2388\":{\"media\":[{\"id\":1553657261150674944,\"id_str\":\"1553657261150674944\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"url\":\"https:\\/\\/t.co\\/GM61YwTbdk\",\"display_url\":\"pic.twitter.com\\/GM61YwTbdk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1553657275822350338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1448,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"}}}]},\"2389\":{\"media\":[{\"id\":1553656335425757184,\"id_str\":\"1553656335425757184\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-yNJgWYAAQAmM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-yNJgWYAAQAmM.jpg\",\"url\":\"https:\\/\\/t.co\\/VzCsr3NG1J\",\"display_url\":\"pic.twitter.com\\/VzCsr3NG1J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kelvinbillions_\\/status\\/1553656350227447809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1122,\"resize\":\"fit\"},\"large\":{\"w\":1283,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":636,\"resize\":\"fit\"}}}]},\"2390\":null,\"2391\":{\"media\":[{\"id\":1553652842006822913,\"id_str\":\"1553652842006822913\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553652842006822913\\/pu\\/img\\/9Bhu3NUBAcd-jF4Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553652842006822913\\/pu\\/img\\/9Bhu3NUBAcd-jF4Q.jpg\",\"url\":\"https:\\/\\/t.co\\/6FBaqERv5u\",\"display_url\":\"pic.twitter.com\\/6FBaqERv5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AnthonySneh\\/status\\/1553652872394440705\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":14600,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553652842006822913\\/pu\\/pl\\/Ja-0x_Swz_S5kQ4j.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553652842006822913\\/pu\\/vid\\/490x270\\/eqA_NPx2lXhnPWTe.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553652842006822913\\/pu\\/vid\\/640x352\\/GKjn07MQ-sipCBPj.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2392\":{\"media\":[{\"id\":1553652101208850432,\"id_str\":\"1553652101208850432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"url\":\"https:\\/\\/t.co\\/PsjlGa6Orw\",\"display_url\":\"pic.twitter.com\\/PsjlGa6Orw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/farukcalypse2\\/status\\/1553652117272944640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553652101162704897,\"id_str\":\"1553652101162704897\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-uWrpXoAEwPjN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-uWrpXoAEwPjN.jpg\",\"url\":\"https:\\/\\/t.co\\/PsjlGa6Orw\",\"display_url\":\"pic.twitter.com\\/PsjlGa6Orw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/farukcalypse2\\/status\\/1553652117272944640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"2393\":{\"media\":[{\"id\":1553650006246162432,\"id_str\":\"1553650006246162432\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-scveWAAAlIGC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-scveWAAAlIGC.jpg\",\"url\":\"https:\\/\\/t.co\\/wTwXGFPjhZ\",\"display_url\":\"pic.twitter.com\\/wTwXGFPjhZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/helpsendit\\/status\\/1553650050949173250\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1553650006271442944,\"id_str\":\"1553650006271442944\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-scvkXwAAsDLX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-scvkXwAAsDLX.jpg\",\"url\":\"https:\\/\\/t.co\\/wTwXGFPjhZ\",\"display_url\":\"pic.twitter.com\\/wTwXGFPjhZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/helpsendit\\/status\\/1553650050949173250\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2394\":null,\"2395\":null,\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":{\"media\":[{\"id\":1553641745237385216,\"id_str\":\"1553641745237385216\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"url\":\"https:\\/\\/t.co\\/HsB6cWtw26\",\"display_url\":\"pic.twitter.com\\/HsB6cWtw26\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1553641752690663424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":391,\"h\":680,\"resize\":\"fit\"}}}]},\"2401\":{\"media\":[{\"id\":1553638549450260481,\"id_str\":\"1553638549450260481\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-iB3lWAAEFY2I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-iB3lWAAEFY2I.jpg\",\"url\":\"https:\\/\\/t.co\\/DvePI0WYHV\",\"display_url\":\"pic.twitter.com\\/DvePI0WYHV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Clemen2Clement\\/status\\/1553638557931245568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553638549458649088,\"id_str\":\"1553638549458649088\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-iB3nWAAAa090.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-iB3nWAAAa090.jpg\",\"url\":\"https:\\/\\/t.co\\/DvePI0WYHV\",\"display_url\":\"pic.twitter.com\\/DvePI0WYHV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Clemen2Clement\\/status\\/1553638557931245568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":676,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1018,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1018,\"resize\":\"fit\"}}},{\"id\":1553638549483884545,\"id_str\":\"1553638549483884545\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-iB3tXEAEqvk3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-iB3tXEAEqvk3.jpg\",\"url\":\"https:\\/\\/t.co\\/DvePI0WYHV\",\"display_url\":\"pic.twitter.com\\/DvePI0WYHV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Clemen2Clement\\/status\\/1553638557931245568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553638549467062272,\"id_str\":\"1553638549467062272\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-iB3pWYAAiXeV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-iB3pWYAAiXeV.jpg\",\"url\":\"https:\\/\\/t.co\\/DvePI0WYHV\",\"display_url\":\"pic.twitter.com\\/DvePI0WYHV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Clemen2Clement\\/status\\/1553638557931245568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1799,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":961,\"h\":1200,\"resize\":\"fit\"}}}]},\"2402\":{\"media\":[{\"id\":1553638321384996866,\"id_str\":\"1553638321384996866\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"url\":\"https:\\/\\/t.co\\/apDiNjnMd7\",\"display_url\":\"pic.twitter.com\\/apDiNjnMd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/citypeople01\\/status\\/1553638323977166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":394,\"resize\":\"fit\"},\"large\":{\"w\":920,\"h\":533,\"resize\":\"fit\"},\"medium\":{\"w\":920,\"h\":533,\"resize\":\"fit\"}}}]},\"2403\":{\"media\":[{\"id\":1553637665718902784,\"id_str\":\"1553637665718902784\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-hObbXoAAFWEc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-hObbXoAAFWEc.jpg\",\"url\":\"https:\\/\\/t.co\\/qHBOqe8fxJ\",\"display_url\":\"pic.twitter.com\\/qHBOqe8fxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obiorah1010\\/status\\/1553637683955728384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1549,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553637675663515649,\"id_str\":\"1553637675663515649\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-hPAeWYAEg9x0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-hPAeWYAEg9x0.jpg\",\"url\":\"https:\\/\\/t.co\\/qHBOqe8fxJ\",\"display_url\":\"pic.twitter.com\\/qHBOqe8fxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obiorah1010\\/status\\/1553637683955728384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":967,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1542,\"resize\":\"fit\"},\"small\":{\"w\":548,\"h\":680,\"resize\":\"fit\"}}}]},\"2404\":{\"media\":[{\"id\":1553633190010667008,\"id_str\":\"1553633190010667008\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553633190010667008\\/pu\\/img\\/e02PxcbxGrMYhAV2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553633190010667008\\/pu\\/img\\/e02PxcbxGrMYhAV2.jpg\",\"url\":\"https:\\/\\/t.co\\/kpiUGVbD17\",\"display_url\":\"pic.twitter.com\\/kpiUGVbD17\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1553633279730933761\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":24666,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553633190010667008\\/pu\\/vid\\/720x1280\\/NZ-26cOmzc3WY6Vg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553633190010667008\\/pu\\/pl\\/pbrNZG_n9aPTCWko.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553633190010667008\\/pu\\/vid\\/480x852\\/D4PI4a4qiADW6jCg.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553633190010667008\\/pu\\/vid\\/320x568\\/XcbuUsnAsnBOXqbZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2405\":null,\"2406\":{\"media\":[{\"id\":1553624865080578049,\"id_str\":\"1553624865080578049\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553624865080578049\\/pu\\/img\\/EjNQPPuwuX_82MkQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553624865080578049\\/pu\\/img\\/EjNQPPuwuX_82MkQ.jpg\",\"url\":\"https:\\/\\/t.co\\/f1lp0rLYnp\",\"display_url\":\"pic.twitter.com\\/f1lp0rLYnp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meg_comedy\\/status\\/1553625599792619520\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140016,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553624865080578049\\/pu\\/vid\\/1280x720\\/v4LoLntKf-xoRnNC.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553624865080578049\\/pu\\/vid\\/640x360\\/6AB1jtdO6lXWCLxx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553624865080578049\\/pu\\/pl\\/fYjaCBQqwcNDeb1I.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553624865080578049\\/pu\\/vid\\/480x270\\/hCMKhOg9qPDUe-oZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2407\":null,\"2408\":null,\"2409\":{\"media\":[{\"id\":1553611894539390977,\"id_str\":\"1553611894539390977\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"url\":\"https:\\/\\/t.co\\/IGIlCZSH02\",\"display_url\":\"pic.twitter.com\\/IGIlCZSH02\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HollaBYoung\\/status\\/1553611898549161984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2410\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2411\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2412\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2413\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2414\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2415\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2416\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2417\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2418\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2419\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2420\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2421\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2422\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2423\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2424\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2425\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2426\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2427\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2428\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2429\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2430\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2431\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2432\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2433\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2434\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2435\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2436\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2437\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2438\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2439\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2440\":{\"media\":[{\"id\":1553598336699191297,\"id_str\":\"1553598336699191297\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY99dLaX0AEpumY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY99dLaX0AEpumY.jpg\",\"url\":\"https:\\/\\/t.co\\/JEF2A4LwOP\",\"display_url\":\"pic.twitter.com\\/JEF2A4LwOP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bm_nya\\/status\\/1553598343900700672\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"2441\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2442\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2443\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2444\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2445\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2446\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2447\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2448\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2449\":{\"media\":[{\"id\":1553595877788368897,\"id_str\":\"1553595877788368897\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553595877788368897\\/pu\\/img\\/WGtzrlaowoCOu564.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553595877788368897\\/pu\\/img\\/WGtzrlaowoCOu564.jpg\",\"url\":\"https:\\/\\/t.co\\/TFkEfDqPMe\",\"display_url\":\"pic.twitter.com\\/TFkEfDqPMe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ochicanado\\/status\\/1553596212997226499\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":58333,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553595877788368897\\/pu\\/pl\\/8whpEGHEASgU93G_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553595877788368897\\/pu\\/vid\\/480x852\\/i0EqwB76R-G_lErO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553595877788368897\\/pu\\/vid\\/320x568\\/inzd5vm1LEFQ4oZv.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553595877788368897\\/pu\\/vid\\/720x1280\\/JpmpcGMOviZlNVxY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2450\":{\"media\":[{\"id\":1553582437778821120,\"id_str\":\"1553582437778821120\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553582437778821120\\/pu\\/img\\/U8ZXrx124LrTe_gh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553582437778821120\\/pu\\/img\\/U8ZXrx124LrTe_gh.jpg\",\"url\":\"https:\\/\\/t.co\\/YIDnQWSaVf\",\"display_url\":\"pic.twitter.com\\/YIDnQWSaVf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dopatunes\\/status\\/1553582458779607040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,17],\"duration_millis\":9429,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553582437778821120\\/pu\\/vid\\/720x408\\/zsIrrxaeql1WadOQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553582437778821120\\/pu\\/pl\\/N_fQQpn2C-urSgV9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553582437778821120\\/pu\\/vid\\/476x270\\/Qt2T_b_4wJnEhasy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2451\":{\"media\":[{\"id\":1553564599433273344,\"id_str\":\"1553564599433273344\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"url\":\"https:\\/\\/t.co\\/mBrs0m6gxJ\",\"display_url\":\"pic.twitter.com\\/mBrs0m6gxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Abbanya1\\/status\\/1553564690663481344\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":32663,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/vid\\/720x1280\\/pkoKrKPNfEhHG-f_.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/vid\\/480x852\\/LCvpplQ1Go_kg-Wh.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/vid\\/320x568\\/hQH99OkQgXm-ney7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/pl\\/HGioeey38vo0sEnp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2452\":null,\"2453\":null,\"2454\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2455\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2456\":{\"media\":[{\"id\":1553550683378524160,\"id_str\":\"1553550683378524160\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553550683378524160\\/pu\\/img\\/MskXSun9cyMczwNR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553550683378524160\\/pu\\/img\\/MskXSun9cyMczwNR.jpg\",\"url\":\"https:\\/\\/t.co\\/HovKgDPTb9\",\"display_url\":\"pic.twitter.com\\/HovKgDPTb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hetreeli\\/status\\/1553557621470179330\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":520,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,13],\"duration_millis\":50233,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553550683378524160\\/pu\\/vid\\/442x360\\/XvYIeUKveE0XZ3sC.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553550683378524160\\/pu\\/vid\\/640x520\\/m9FADq5Sb5I-ptC0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553550683378524160\\/pu\\/pl\\/Cn1rxegkphkAX4Ez.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553550683378524160\\/pu\\/vid\\/332x270\\/BxyiakDsJt9IkUrT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2457\":{\"media\":[{\"id\":1553544628913278976,\"id_str\":\"1553544628913278976\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553544628913278976\\/pu\\/img\\/5PsQEoC9JXhvR5Zu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553544628913278976\\/pu\\/img\\/5PsQEoC9JXhvR5Zu.jpg\",\"url\":\"https:\\/\\/t.co\\/aJ2aJVMipz\",\"display_url\":\"pic.twitter.com\\/aJ2aJVMipz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hetreeli\\/status\\/1553551419822809090\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":520,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":520,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,13],\"duration_millis\":50233,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553544628913278976\\/pu\\/vid\\/640x520\\/oRw5BswwJ-MXgkLH.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553544628913278976\\/pu\\/vid\\/442x360\\/JDp31OiPpt_HdTbj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553544628913278976\\/pu\\/pl\\/OQ3fXA8OlIo-upiB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553544628913278976\\/pu\\/vid\\/332x270\\/aKTUc5wTm9Sa2bZO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2458\":null,\"2459\":null,\"2460\":{\"media\":[{\"id\":1553516945605025796,\"id_str\":\"1553516945605025796\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":616,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1086,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1854,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553516945605009408,\"id_str\":\"1553516945605009408\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WIAAEIjw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WIAAEIjw.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1141,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1948,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":647,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553516945588240389,\"id_str\":\"1553516945588240389\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl5WQAUyEaV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl5WQAUyEaV.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1682,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":558,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"}}}]},\"2461\":{\"media\":[{\"id\":1553515713423368198,\"id_str\":\"1553515713423368198\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553515713423368198\\/pu\\/img\\/u7EORAZYVEgULGvZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553515713423368198\\/pu\\/img\\/u7EORAZYVEgULGvZ.jpg\",\"url\":\"https:\\/\\/t.co\\/HEGVGnLXdK\",\"display_url\":\"pic.twitter.com\\/HEGVGnLXdK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oluwadammy_jb\\/status\\/1553515856822517761\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59713,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553515713423368198\\/pu\\/vid\\/320x568\\/z0OyGxIEG5vcU1Lg.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553515713423368198\\/pu\\/vid\\/480x852\\/_1bIqW0GxyK1j_dT.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553515713423368198\\/pu\\/vid\\/540x960\\/mC_TU-jj90wQqd95.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553515713423368198\\/pu\\/pl\\/aDvYS8L2KR-sd3G3.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2462\":null,\"2463\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2464\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2465\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2466\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2467\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2468\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2469\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2470\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2471\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2472\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2473\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2474\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2475\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2476\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2477\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2478\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2479\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2480\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2481\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2482\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2483\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2484\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2485\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2486\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2487\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2488\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2489\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2490\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2491\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[114,137],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2492\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2493\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2494\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2495\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2496\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2497\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2498\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2499\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2500\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2501\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2502\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2503\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2504\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2505\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2506\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2507\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2508\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[132,155],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2509\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2510\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2511\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2512\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2513\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2514\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2515\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2516\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2517\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2518\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2519\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2520\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2521\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2522\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2523\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2524\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2525\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2526\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2527\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2528\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2529\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2530\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2531\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2532\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2533\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2534\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2535\":null,\"2536\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2537\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2538\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2539\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2540\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2541\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2542\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2543\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2544\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"source_status_id\":1553460116296503296,\"source_status_id_str\":\"1553460116296503296\",\"source_user_id\":1429652280,\"source_user_id_str\":\"1429652280\",\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"2545\":null,\"2546\":{\"media\":[{\"id\":1553460095568183298,\"id_str\":\"1553460095568183298\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553460095568183298\\/pu\\/img\\/fSOHkQg1qBX9FE0J.jpg\",\"url\":\"https:\\/\\/t.co\\/g2UFpv5FWP\",\"display_url\":\"pic.twitter.com\\/g2UFpv5FWP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553460116296503296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":10949,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/pl\\/aFoWLYX1f3hLgLSI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553460095568183298\\/pu\\/vid\\/320x564\\/gU8Mi_Z4YC6MAV1X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2547\":null,\"2548\":{\"media\":[{\"id\":1553407218212474880,\"id_str\":\"1553407218212474880\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553407218212474880\\/pu\\/img\\/LiVzuinI1iXX8M9V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553407218212474880\\/pu\\/img\\/LiVzuinI1iXX8M9V.jpg\",\"url\":\"https:\\/\\/t.co\\/hRWTB04QSc\",\"display_url\":\"pic.twitter.com\\/hRWTB04QSc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1553407255604670464\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":320,\"h\":564,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":564,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[80,141],\"duration_millis\":38681,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553407218212474880\\/pu\\/vid\\/320x564\\/M4w8V3pYXYYEevAn.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553407218212474880\\/pu\\/pl\\/bvXSjMcjrcT5Ezqc.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2549\":{\"media\":[{\"id\":1553406499463999488,\"id_str\":\"1553406499463999488\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553406499463999488\\/pu\\/img\\/0W36e4oRLUXEMICJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553406499463999488\\/pu\\/img\\/0W36e4oRLUXEMICJ.jpg\",\"url\":\"https:\\/\\/t.co\\/PFwm8IZ8Op\",\"display_url\":\"pic.twitter.com\\/PFwm8IZ8Op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1553406731371159552\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":1270,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":386,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[127,72],\"duration_millis\":47966,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553406499463999488\\/pu\\/vid\\/634x360\\/Y57ZXAUzyzWumN_g.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553406499463999488\\/pu\\/vid\\/1270x720\\/JXvTWl55cMgXDAvn.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553406499463999488\\/pu\\/vid\\/476x270\\/s1ITl9GgiQGylWtC.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553406499463999488\\/pu\\/pl\\/W7BHVO0k_4676QQk.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2550\":{\"media\":[{\"id\":1553394413749035009,\"id_str\":\"1553394413749035009\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY7D_TOWYAEtJs4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY7D_TOWYAEtJs4.jpg\",\"url\":\"https:\\/\\/t.co\\/eLdzCV4Hww\",\"display_url\":\"pic.twitter.com\\/eLdzCV4Hww\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1553394444744925184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1062,\"h\":1062,\"resize\":\"fit\"},\"medium\":{\"w\":1062,\"h\":1062,\"resize\":\"fit\"}}},{\"id\":1553394426113843205,\"id_str\":\"1553394426113843205\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY7EABSWYAU1CNy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY7EABSWYAU1CNy.jpg\",\"url\":\"https:\\/\\/t.co\\/eLdzCV4Hww\",\"display_url\":\"pic.twitter.com\\/eLdzCV4Hww\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1553394444744925184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553394436188651520,\"id_str\":\"1553394436188651520\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY7EAm0XwAAgN9a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY7EAm0XwAAgN9a.jpg\",\"url\":\"https:\\/\\/t.co\\/eLdzCV4Hww\",\"display_url\":\"pic.twitter.com\\/eLdzCV4Hww\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1553394444744925184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":711,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":711,\"resize\":\"fit\"}}},{\"id\":1553394440995225600,\"id_str\":\"1553394440995225600\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY7EA4uWQAAeuVs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY7EA4uWQAAeuVs.jpg\",\"url\":\"https:\\/\\/t.co\\/eLdzCV4Hww\",\"display_url\":\"pic.twitter.com\\/eLdzCV4Hww\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1553394444744925184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":707,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":707,\"resize\":\"fit\"}}}]},\"2551\":null,\"2552\":null,\"2553\":null,\"2554\":null,\"2555\":null,\"2556\":null,\"2557\":{\"media\":[{\"id\":1553314939141591043,\"id_str\":\"1553314939141591043\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY57tRPXkAMz3xF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY57tRPXkAMz3xF.jpg\",\"url\":\"https:\\/\\/t.co\\/zvkRs9y0oY\",\"display_url\":\"pic.twitter.com\\/zvkRs9y0oY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1553315791545712640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}},{\"id\":1553314939149975552,\"id_str\":\"1553314939149975552\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY57tRRXgAAAQRt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY57tRRXgAAAQRt.jpg\",\"url\":\"https:\\/\\/t.co\\/zvkRs9y0oY\",\"display_url\":\"pic.twitter.com\\/zvkRs9y0oY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1553315791545712640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}},{\"id\":1553314939145781248,\"id_str\":\"1553314939145781248\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY57tRQXgAAbg7X.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY57tRQXgAAbg7X.jpg\",\"url\":\"https:\\/\\/t.co\\/zvkRs9y0oY\",\"display_url\":\"pic.twitter.com\\/zvkRs9y0oY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1553315791545712640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}},{\"id\":1553314939166679040,\"id_str\":\"1553314939166679040\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY57tRVWYAAteY_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY57tRVWYAAteY_.jpg\",\"url\":\"https:\\/\\/t.co\\/zvkRs9y0oY\",\"display_url\":\"pic.twitter.com\\/zvkRs9y0oY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaEmbinGH\\/status\\/1553315791545712640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"2558\":null,\"2559\":null,\"2560\":null,\"2561\":{\"media\":[{\"id\":1553184237146124288,\"id_str\":\"1553184237146124288\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"url\":\"https:\\/\\/t.co\\/qqDRk2W4n0\",\"display_url\":\"pic.twitter.com\\/qqDRk2W4n0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553184238345736192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"2562\":null,\"2563\":null,\"2564\":{\"media\":[{\"id\":1553113859979988997,\"id_str\":\"1553113859979988997\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY3E06_X0AUEruj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY3E06_X0AUEruj.jpg\",\"url\":\"https:\\/\\/t.co\\/kHCgFSgq6e\",\"display_url\":\"pic.twitter.com\\/kHCgFSgq6e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1553113913146875904\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":896,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":476,\"resize\":\"fit\"}}},{\"id\":1553113860017721344,\"id_str\":\"1553113860017721344\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY3E07IXkAAvw2-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY3E07IXkAAvw2-.jpg\",\"url\":\"https:\\/\\/t.co\\/kHCgFSgq6e\",\"display_url\":\"pic.twitter.com\\/kHCgFSgq6e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adesayo_faith\\/status\\/1553113913146875904\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":960,\"resize\":\"fit\"}}}]},\"2565\":null,\"2566\":null,\"2567\":null,\"2568\":null,\"2569\":null,\"2570\":null,\"2571\":null,\"2572\":null,\"2573\":{\"media\":[{\"id\":1553009334652739584,\"id_str\":\"1553009334652739584\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1lwvzXoAALAJR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1lwvzXoAALAJR.jpg\",\"url\":\"https:\\/\\/t.co\\/RuHMuaDOeK\",\"display_url\":\"pic.twitter.com\\/RuHMuaDOeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1553009343188058115\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":794,\"h\":850,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":635,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":850,\"resize\":\"fit\"}}}]},\"2574\":{\"media\":[{\"id\":1553009091760513024,\"id_str\":\"1553009091760513024\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1lim9WYAAuc1l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1lim9WYAAuc1l.jpg\",\"url\":\"https:\\/\\/t.co\\/w2c3tuo4Jz\",\"display_url\":\"pic.twitter.com\\/w2c3tuo4Jz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1553009094386241536\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":572,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":909,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":909,\"h\":1080,\"resize\":\"fit\"}}}]},\"2575\":{\"media\":[{\"id\":1552978148416970753,\"id_str\":\"1552978148416970753\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1552978156491079683,\"id_str\":\"1552978156491079683\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JZ8GXgAM6-hU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JZ8GXgAM6-hU.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":801,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1552978165324193793,\"id_str\":\"1552978165324193793\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JadAWIAEOOzl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JadAWIAEOOzl.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":857,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":857,\"h\":1080,\"resize\":\"fit\"}}}]},\"2576\":{\"media\":[{\"id\":1552976379918139393,\"id_str\":\"1552976379918139393\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1Hyh2XwAEOIWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1Hyh2XwAEOIWd.jpg\",\"url\":\"https:\\/\\/t.co\\/dZrW3o1Vym\",\"display_url\":\"pic.twitter.com\\/dZrW3o1Vym\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desiadenyo97\\/status\\/1552976481231544323\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":651,\"h\":816,\"resize\":\"fit\"},\"small\":{\"w\":543,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":651,\"h\":816,\"resize\":\"fit\"}}}]},\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":null,\"2599\":null,\"2600\":null,\"2601\":{\"media\":[{\"id\":1556169515268014082,\"id_str\":\"1556169515268014082\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZif7d_XgAIuDi5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZif7d_XgAIuDi5.jpg\",\"url\":\"https:\\/\\/t.co\\/WSTph7LJpi\",\"display_url\":\"pic.twitter.com\\/WSTph7LJpi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1556169524197703680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":2000,\"resize\":\"fit\"}}}]},\"2602\":{\"media\":[{\"id\":1555898429829685254,\"id_str\":\"1555898429829685254\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZepYOCWIAYX1GM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZepYOCWIAYX1GM.jpg\",\"url\":\"https:\\/\\/t.co\\/cYPEk2xZX5\",\"display_url\":\"pic.twitter.com\\/cYPEk2xZX5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kobus_Bekker7\\/status\\/1555898441544392704\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":498,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[249,176],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZepYOCWIAYX1GM.mp4\"}]}}]},\"2603\":null,\"2604\":{\"media\":[{\"id\":1555857589346377730,\"id_str\":\"1555857589346377730\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeEO_YWIAIwbsC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeEO_YWIAIwbsC.jpg\",\"url\":\"https:\\/\\/t.co\\/zIKDqhyU60\",\"display_url\":\"pic.twitter.com\\/zIKDqhyU60\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1555857595021377536\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":567,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1707,\"h\":2048,\"resize\":\"fit\"}}}]},\"2605\":{\"media\":[{\"id\":1555837991528054784,\"id_str\":\"1555837991528054784\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555837991528054784\\/pu\\/img\\/U98QwYqp-Px7nOiM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555837991528054784\\/pu\\/img\\/U98QwYqp-Px7nOiM.jpg\",\"url\":\"https:\\/\\/t.co\\/czzchnXkNt\",\"display_url\":\"pic.twitter.com\\/czzchnXkNt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555838191055290370\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":425,\"resize\":\"fit\"},\"medium\":{\"w\":1152,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[8,5],\"duration_millis\":27237,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555837991528054784\\/pu\\/vid\\/1152x720\\/a4vpwfKkx00lJClP.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555837991528054784\\/pu\\/vid\\/576x360\\/O97a6VJTmyO4Dg5i.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555837991528054784\\/pu\\/vid\\/432x270\\/ceFn9RlkpIhUmXKR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555837991528054784\\/pu\\/pl\\/CbXtXxFYtmwk-wTm.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2606\":{\"media\":[{\"id\":1555830729749192706,\"id_str\":\"1555830729749192706\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdrzjlWYAIOhZZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdrzjlWYAIOhZZ.jpg\",\"url\":\"https:\\/\\/t.co\\/8xbEfOYHO5\",\"display_url\":\"pic.twitter.com\\/8xbEfOYHO5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555830737336688642\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":400,\"resize\":\"fit\"}}}]},\"2607\":{\"media\":[{\"id\":1555830642952310784,\"id_str\":\"1555830642952310784\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdrugPXEAACHSm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdrugPXEAACHSm.jpg\",\"url\":\"https:\\/\\/t.co\\/gEWWvEvonB\",\"display_url\":\"pic.twitter.com\\/gEWWvEvonB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555830656126550017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1707,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":567,\"h\":680,\"resize\":\"fit\"}}}]},\"2608\":{\"media\":[{\"id\":1555830502266998784,\"id_str\":\"1555830502266998784\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555830502266998784\\/pu\\/img\\/0pVqpHYSgB6TK03T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555830502266998784\\/pu\\/img\\/0pVqpHYSgB6TK03T.jpg\",\"url\":\"https:\\/\\/t.co\\/IB14KjYfaL\",\"display_url\":\"pic.twitter.com\\/IB14KjYfaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555830595237855234\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,23],\"duration_millis\":124885,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555830502266998784\\/pu\\/pl\\/Vt_1Z40P5K8J5iDq.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555830502266998784\\/pu\\/vid\\/468x270\\/n-1GhZE0jf_ysoTR.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555830502266998784\\/pu\\/vid\\/640x368\\/i_DO35onT8kIZZGL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2609\":null,\"2610\":{\"media\":[{\"id\":1555788744434876416,\"id_str\":\"1555788744434876416\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZdFnsGXgAAhgXR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZdFnsGXgAAhgXR.jpg\",\"url\":\"https:\\/\\/t.co\\/jRSrglqfoE\",\"display_url\":\"pic.twitter.com\\/jRSrglqfoE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/crisis2peace_\\/status\\/1555788768275202048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2016,\"h\":1512,\"resize\":\"fit\"}}}]},\"2611\":null,\"2612\":null,\"2613\":{\"media\":[{\"id\":1555627581176676352,\"id_str\":\"1555627581176676352\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZazCwLWAAA-L-h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZazCwLWAAA-L-h.jpg\",\"url\":\"https:\\/\\/t.co\\/bjhJZwWfes\",\"display_url\":\"pic.twitter.com\\/bjhJZwWfes\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kobus_Bekker7\\/status\\/1555627593084411906\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZazCwLWAAA-L-h.mp4\"}]}}]},\"2614\":null,\"2615\":{\"media\":[{\"id\":1555448075862286336,\"id_str\":\"1555448075862286336\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555448075862286336\\/pu\\/img\\/tuc5RhIDThCLOdwl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555448075862286336\\/pu\\/img\\/tuc5RhIDThCLOdwl.jpg\",\"url\":\"https:\\/\\/t.co\\/xl78BOWsKL\",\"display_url\":\"pic.twitter.com\\/xl78BOWsKL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555448195425206272\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[426,239],\"duration_millis\":15347,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555448075862286336\\/pu\\/pl\\/WVe9O6DCnZXT3IIA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555448075862286336\\/pu\\/vid\\/480x270\\/AiqX8RM36xhiUDFp.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555448075862286336\\/pu\\/vid\\/852x478\\/q7rBoLynnodhd7Bf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2616\":{\"media\":[{\"id\":1555447674102489088,\"id_str\":\"1555447674102489088\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYPayGWIAAHT4Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYPayGWIAAHT4Q.jpg\",\"url\":\"https:\\/\\/t.co\\/HYKMtVLfda\",\"display_url\":\"pic.twitter.com\\/HYKMtVLfda\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1555447751944577029\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":459,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1382,\"resize\":\"fit\"}}}]},\"2617\":{\"media\":[{\"id\":1555421269394350081,\"id_str\":\"1555421269394350081\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX3Z05WYAExdMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX3Z05WYAExdMh.jpg\",\"url\":\"https:\\/\\/t.co\\/B62HXsnVZv\",\"display_url\":\"pic.twitter.com\\/B62HXsnVZv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CTemazburg\\/status\\/1555421307927511042\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":300,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":300,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":300,\"resize\":\"fit\"}}}]},\"2618\":{\"media\":[{\"id\":1555409847780347904,\"id_str\":\"1555409847780347904\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555409847780347904\\/pu\\/img\\/3fcnaJ-X5zpKO5Tm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555409847780347904\\/pu\\/img\\/3fcnaJ-X5zpKO5Tm.jpg\",\"url\":\"https:\\/\\/t.co\\/QM5vuZyGXl\",\"display_url\":\"pic.twitter.com\\/QM5vuZyGXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nhlanhlanndlovu\\/status\\/1555410043557871621\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":45000,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555409847780347904\\/pu\\/vid\\/480x270\\/6iHcJ4NFr2tUf65v.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555409847780347904\\/pu\\/vid\\/640x360\\/CHjEHceXQMKUCVqu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555409847780347904\\/pu\\/pl\\/XB5WKRBfYlq7PFP_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2619\":{\"media\":[{\"id\":1555333788439281670,\"id_str\":\"1555333788439281670\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWn1w8WAAYqwoa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWn1w8WAAYqwoa.jpg\",\"url\":\"https:\\/\\/t.co\\/iI3MnxyQ1V\",\"display_url\":\"pic.twitter.com\\/iI3MnxyQ1V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bchiketo\\/status\\/1555333799654866944\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}}]},\"2620\":{\"media\":[{\"id\":1555299535102115842,\"id_str\":\"1555299535102115842\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWIr9UXgAIK22w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWIr9UXgAIK22w.jpg\",\"url\":\"https:\\/\\/t.co\\/lLoNNXkVEL\",\"display_url\":\"pic.twitter.com\\/lLoNNXkVEL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KatumpaSteel1\\/status\\/1555299616568246272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1555299559328415745,\"id_str\":\"1555299559328415745\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWItXkXgAEkYy9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWItXkXgAEkYy9.jpg\",\"url\":\"https:\\/\\/t.co\\/lLoNNXkVEL\",\"display_url\":\"pic.twitter.com\\/lLoNNXkVEL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KatumpaSteel1\\/status\\/1555299616568246272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555299576734785538,\"id_str\":\"1555299576734785538\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWIuYaXoAIs_WE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWIuYaXoAIs_WE.jpg\",\"url\":\"https:\\/\\/t.co\\/lLoNNXkVEL\",\"display_url\":\"pic.twitter.com\\/lLoNNXkVEL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KatumpaSteel1\\/status\\/1555299616568246272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1555299596607397888,\"id_str\":\"1555299596607397888\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWIvicXoAA2Vx2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWIvicXoAA2Vx2.jpg\",\"url\":\"https:\\/\\/t.co\\/lLoNNXkVEL\",\"display_url\":\"pic.twitter.com\\/lLoNNXkVEL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KatumpaSteel1\\/status\\/1555299616568246272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":{\"media\":[{\"id\":1555239833659908096,\"id_str\":\"1555239833659908096\",\"indices\":[222,245],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555239833659908096\\/pu\\/img\\/iHuEGB6HNs8rEynH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555239833659908096\\/pu\\/img\\/iHuEGB6HNs8rEynH.jpg\",\"url\":\"https:\\/\\/t.co\\/unpqoELOuf\",\"display_url\":\"pic.twitter.com\\/unpqoELOuf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ThatoModiba_02\\/status\\/1555239970033524739\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":30061,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555239833659908096\\/pu\\/pl\\/r2rhsoGfBJ5Nuu5m.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555239833659908096\\/pu\\/vid\\/720x1280\\/WRe5PJGQdIYnKd6m.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555239833659908096\\/pu\\/vid\\/480x852\\/a-XjkDdoARLDo0h7.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555239833659908096\\/pu\\/vid\\/320x568\\/XiwY24BqdiAYOeDJ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2625\":{\"media\":[{\"id\":1555238839257649155,\"id_str\":\"1555238839257649155\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238839257649155\\/pu\\/img\\/f2D9BtGwRPmQyU2c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238839257649155\\/pu\\/img\\/f2D9BtGwRPmQyU2c.jpg\",\"url\":\"https:\\/\\/t.co\\/sOr1VY7DOb\",\"display_url\":\"pic.twitter.com\\/sOr1VY7DOb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SkayMuzic\\/status\\/1555238891585773568\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":794,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":617,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[397,360],\"duration_millis\":29999,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238839257649155\\/pu\\/vid\\/296x270\\/qfqyxPwpZOcvGOWA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238839257649155\\/pu\\/pl\\/h6aU4KbcqEGSISWw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238839257649155\\/pu\\/vid\\/396x360\\/5L4J4vUZqXKcvNWs.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238839257649155\\/pu\\/vid\\/794x720\\/8uFPy4VTZMdZjibE.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2626\":{\"media\":[{\"id\":1555230812253159425,\"id_str\":\"1555230812253159425\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230812253159425\\/pu\\/img\\/LMGU__JCoBi_lFfe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230812253159425\\/pu\\/img\\/LMGU__JCoBi_lFfe.jpg\",\"url\":\"https:\\/\\/t.co\\/FrBWxiCYBl\",\"display_url\":\"pic.twitter.com\\/FrBWxiCYBl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GeeHafe\\/status\\/1555230882155438080\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":61266,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230812253159425\\/pu\\/vid\\/320x426\\/AghfXaydWWAeGhPy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230812253159425\\/pu\\/vid\\/480x640\\/WJSJ8FMvFabpRs2i.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230812253159425\\/pu\\/vid\\/540x720\\/ZXGQqPpROMRSeHsB.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230812253159425\\/pu\\/pl\\/Xi-JENwJB8jIpgqg.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2627\":{\"media\":[{\"id\":1555229958536052738,\"id_str\":\"1555229958536052738\",\"indices\":[131,154],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVJaEaWQAIa3eS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVJaEaWQAIa3eS.jpg\",\"url\":\"https:\\/\\/t.co\\/7gHvSmthDm\",\"display_url\":\"pic.twitter.com\\/7gHvSmthDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Electriccars8\\/status\\/1555229965905526785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":553,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":728,\"h\":896,\"resize\":\"fit\"},\"large\":{\"w\":728,\"h\":896,\"resize\":\"fit\"}}}]},\"2628\":{\"media\":[{\"id\":1555222101933674497,\"id_str\":\"1555222101933674497\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVCQwSX0AEJj86.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVCQwSX0AEJj86.jpg\",\"url\":\"https:\\/\\/t.co\\/nCx9bBH47d\",\"display_url\":\"pic.twitter.com\\/nCx9bBH47d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HlokwaA\\/status\\/1555222113929334786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":567,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":1019,\"resize\":\"fit\"},\"medium\":{\"w\":850,\"h\":1019,\"resize\":\"fit\"}}}]},\"2629\":{\"media\":[{\"id\":1555221621279019008,\"id_str\":\"1555221621279019008\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221621279019008\\/pu\\/img\\/SrxeL7_3cWf3c1ha.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221621279019008\\/pu\\/img\\/SrxeL7_3cWf3c1ha.jpg\",\"url\":\"https:\\/\\/t.co\\/T6xsQZ0Gh8\",\"display_url\":\"pic.twitter.com\\/T6xsQZ0Gh8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BestWorldNews2\\/status\\/1555221785049808898\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[135,76],\"duration_millis\":44966,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221621279019008\\/pu\\/pl\\/DS73knNwx8kVZv7c.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221621279019008\\/pu\\/vid\\/478x270\\/7UqREkJWnsJ4Gk-e.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221621279019008\\/pu\\/vid\\/638x360\\/HOw0umSX51WFLMaA.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221621279019008\\/pu\\/vid\\/1080x608\\/F2ueHzbhICOWdSS9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2630\":{\"media\":[{\"id\":1555221128393768961,\"id_str\":\"1555221128393768961\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221128393768961\\/pu\\/img\\/oShBay7sTZzc5hyh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555221128393768961\\/pu\\/img\\/oShBay7sTZzc5hyh.jpg\",\"url\":\"https:\\/\\/t.co\\/SQjOZ6uAFS\",\"display_url\":\"pic.twitter.com\\/SQjOZ6uAFS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WithPraisee\\/status\\/1555221222669033478\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[135,76],\"duration_millis\":57556,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221128393768961\\/pu\\/vid\\/478x270\\/cecCIwJdxyVApFpT.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221128393768961\\/pu\\/vid\\/1080x608\\/A4zVQowx1NCBaG4y.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221128393768961\\/pu\\/vid\\/638x360\\/j62ecU_Bj12FBkzj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555221128393768961\\/pu\\/pl\\/9hrvw0Wwk1AX0XtS.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2631\":{\"media\":[{\"id\":1555220259396849672,\"id_str\":\"1555220259396849672\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220259396849672\\/pu\\/img\\/o-hx7Ilo_s2kJph1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220259396849672\\/pu\\/img\\/o-hx7Ilo_s2kJph1.jpg\",\"url\":\"https:\\/\\/t.co\\/WmLUxb331i\",\"display_url\":\"pic.twitter.com\\/WmLUxb331i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IssaVanh\\/status\\/1555220426757967875\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":784,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":784,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":624,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[49,45],\"duration_millis\":99635,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220259396849672\\/pu\\/vid\\/392x360\\/GWLLvdlfGuTwY0uq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220259396849672\\/pu\\/pl\\/En80HaWNrrLz-ZlH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220259396849672\\/pu\\/vid\\/294x270\\/B-WM4H4VJ8wx1q_c.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220259396849672\\/pu\\/vid\\/784x720\\/82p2GGOiGGsMohFS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2632\":{\"media\":[{\"id\":1555214128205135872,\"id_str\":\"1555214128205135872\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU7An1WAAAxZG9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU7An1WAAAxZG9.jpg\",\"url\":\"https:\\/\\/t.co\\/A8kjlEBT6P\",\"display_url\":\"pic.twitter.com\\/A8kjlEBT6P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TrotskySA\\/status\\/1555214138334498818\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1218,\"h\":1437,\"resize\":\"fit\"},\"medium\":{\"w\":1017,\"h\":1200,\"resize\":\"fit\"}}}]},\"2633\":null,\"2634\":{\"media\":[{\"id\":1555199945644335104,\"id_str\":\"1555199945644335104\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUuHFrWYAA8Lc-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUuHFrWYAA8Lc-.jpg\",\"url\":\"https:\\/\\/t.co\\/yZEBgmKP6L\",\"display_url\":\"pic.twitter.com\\/yZEBgmKP6L\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WolfFX13\\/status\\/1555199957417721856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555199945606586369,\"id_str\":\"1555199945606586369\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUuHFiWYAEHDjG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUuHFiWYAEHDjG.jpg\",\"url\":\"https:\\/\\/t.co\\/yZEBgmKP6L\",\"display_url\":\"pic.twitter.com\\/yZEBgmKP6L\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WolfFX13\\/status\\/1555199957417721856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555199945602486272,\"id_str\":\"1555199945602486272\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUuHFhX0AAj22A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUuHFhX0AAj22A.jpg\",\"url\":\"https:\\/\\/t.co\\/yZEBgmKP6L\",\"display_url\":\"pic.twitter.com\\/yZEBgmKP6L\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WolfFX13\\/status\\/1555199957417721856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555199945615048705,\"id_str\":\"1555199945615048705\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUuHFkXgAEGOWN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUuHFkXgAEGOWN.jpg\",\"url\":\"https:\\/\\/t.co\\/yZEBgmKP6L\",\"display_url\":\"pic.twitter.com\\/yZEBgmKP6L\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WolfFX13\\/status\\/1555199957417721856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"2635\":{\"media\":[{\"id\":1555196454347612161,\"id_str\":\"1555196454347612161\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUq73lWIAEJXIW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUq73lWIAEJXIW.jpg\",\"url\":\"https:\\/\\/t.co\\/svCQ0njM4A\",\"display_url\":\"pic.twitter.com\\/svCQ0njM4A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555196478406131713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":602,\"h\":402,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":602,\"h\":402,\"resize\":\"fit\"},\"large\":{\"w\":602,\"h\":402,\"resize\":\"fit\"}}},{\"id\":1555196458240032768,\"id_str\":\"1555196458240032768\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUq8GFXwAAgby9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUq8GFXwAAgby9.jpg\",\"url\":\"https:\\/\\/t.co\\/svCQ0njM4A\",\"display_url\":\"pic.twitter.com\\/svCQ0njM4A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555196478406131713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":614,\"h\":410,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":614,\"h\":410,\"resize\":\"fit\"},\"small\":{\"w\":614,\"h\":410,\"resize\":\"fit\"}}},{\"id\":1555196461410918401,\"id_str\":\"1555196461410918401\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUq8R5XoAEL-po.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUq8R5XoAEL-po.jpg\",\"url\":\"https:\\/\\/t.co\\/svCQ0njM4A\",\"display_url\":\"pic.twitter.com\\/svCQ0njM4A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555196478406131713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555196469413543937,\"id_str\":\"1555196469413543937\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUq8vtWAAEFGIs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUq8vtWAAEFGIs.jpg\",\"url\":\"https:\\/\\/t.co\\/svCQ0njM4A\",\"display_url\":\"pic.twitter.com\\/svCQ0njM4A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555196478406131713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2636\":null,\"2637\":null,\"2638\":{\"media\":[{\"id\":1555175690064084992,\"id_str\":\"1555175690064084992\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUYDOmXwAAKh7T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUYDOmXwAAKh7T.jpg\",\"url\":\"https:\\/\\/t.co\\/t1aW2vnyEK\",\"display_url\":\"pic.twitter.com\\/t1aW2vnyEK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sole_willy\\/status\\/1555175693843054597\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1242,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2639\":{\"media\":[{\"id\":1555158389222678528,\"id_str\":\"1555158389222678528\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUIUL8WIAAtU-2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUIUL8WIAAtU-2.jpg\",\"url\":\"https:\\/\\/t.co\\/MtrkTXXpeV\",\"display_url\":\"pic.twitter.com\\/MtrkTXXpeV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555158422194192390\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}},{\"id\":1555158398668345344,\"id_str\":\"1555158398668345344\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUIUvIXkAAKKiX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUIUvIXkAAKKiX.jpg\",\"url\":\"https:\\/\\/t.co\\/MtrkTXXpeV\",\"display_url\":\"pic.twitter.com\\/MtrkTXXpeV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555158422194192390\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}},{\"id\":1555158407820316672,\"id_str\":\"1555158407820316672\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUIVROXkAANUdU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUIVROXkAANUdU.jpg\",\"url\":\"https:\\/\\/t.co\\/MtrkTXXpeV\",\"display_url\":\"pic.twitter.com\\/MtrkTXXpeV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555158422194192390\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}},{\"id\":1555158419564384256,\"id_str\":\"1555158419564384256\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUIV8-X0AAIF-5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUIV8-X0AAIF-5.jpg\",\"url\":\"https:\\/\\/t.co\\/MtrkTXXpeV\",\"display_url\":\"pic.twitter.com\\/MtrkTXXpeV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555158422194192390\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"2640\":{\"media\":[{\"id\":1555150797066977281,\"id_str\":\"1555150797066977281\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBaQ9XwAE_9tp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBaQ9XwAE_9tp.jpg\",\"url\":\"https:\\/\\/t.co\\/h76bBvMzdX\",\"display_url\":\"pic.twitter.com\\/h76bBvMzdX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/babieRinenharo\\/status\\/1555150806978105344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":670,\"h\":417,\"resize\":\"fit\"},\"medium\":{\"w\":670,\"h\":417,\"resize\":\"fit\"},\"large\":{\"w\":670,\"h\":417,\"resize\":\"fit\"}}}]},\"2641\":{\"media\":[{\"id\":1555144174575435776,\"id_str\":\"1555144174575435776\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555144174575435776\\/pu\\/img\\/obWjllIiGloSI87K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555144174575435776\\/pu\\/img\\/obWjllIiGloSI87K.jpg\",\"url\":\"https:\\/\\/t.co\\/gSOS7TqUVC\",\"display_url\":\"pic.twitter.com\\/gSOS7TqUVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Main_C_official\\/status\\/1555144289734299649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":34065,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555144174575435776\\/pu\\/vid\\/540x540\\/AcKejqdcmOBTVBS9.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555144174575435776\\/pu\\/pl\\/NPfrhUWGg49ONhUT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555144174575435776\\/pu\\/vid\\/720x720\\/H13qwYrNfbLx47mw.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555144174575435776\\/pu\\/vid\\/320x320\\/vDAT8brsPzsOvNwh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2642\":{\"media\":[{\"id\":1555138868478984192,\"id_str\":\"1555138868478984192\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2j7gXwAAR9r1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2j7gXwAAR9r1.jpg\",\"url\":\"https:\\/\\/t.co\\/fIT9kFu96Q\",\"display_url\":\"pic.twitter.com\\/fIT9kFu96Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MokgadiPR\\/status\\/1555138922048618496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555138868474691584,\"id_str\":\"1555138868474691584\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2j7fWQAA42YA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2j7fWQAA42YA.jpg\",\"url\":\"https:\\/\\/t.co\\/fIT9kFu96Q\",\"display_url\":\"pic.twitter.com\\/fIT9kFu96Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MokgadiPR\\/status\\/1555138922048618496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1555138868491476994,\"id_str\":\"1555138868491476994\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2j7jWYAIdD-1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2j7jWYAIdD-1.jpg\",\"url\":\"https:\\/\\/t.co\\/fIT9kFu96Q\",\"display_url\":\"pic.twitter.com\\/fIT9kFu96Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MokgadiPR\\/status\\/1555138922048618496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2643\":null,\"2644\":null,\"2645\":{\"media\":[{\"id\":1555109453841793025,\"id_str\":\"1555109453841793025\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTbzxcXgAEbfer.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTbzxcXgAEbfer.jpg\",\"url\":\"https:\\/\\/t.co\\/EO4gOJ2O0K\",\"display_url\":\"pic.twitter.com\\/EO4gOJ2O0K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SakhyKhuzwayo\\/status\\/1555109457838981120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"2646\":{\"media\":[{\"id\":1555096998382108672,\"id_str\":\"1555096998382108672\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096998382108672\\/pu\\/img\\/L-m3TmvamCEbHbDg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096998382108672\\/pu\\/img\\/L-m3TmvamCEbHbDg.jpg\",\"url\":\"https:\\/\\/t.co\\/XqnP6fSujv\",\"display_url\":\"pic.twitter.com\\/XqnP6fSujv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohanStapelbe15\\/status\\/1555097074634473472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":560,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,7],\"duration_millis\":44951,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096998382108672\\/pu\\/pl\\/aohDYeRKO6axNy4T.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096998382108672\\/pu\\/vid\\/320x560\\/2OfyeBbmL4Jrd1P7.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2647\":null,\"2648\":{\"media\":[{\"id\":1555020804022231040,\"id_str\":\"1555020804022231040\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSLLrIWYAAwek8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSLLrIWYAAwek8.jpg\",\"url\":\"https:\\/\\/t.co\\/vfRD2xkYO9\",\"display_url\":\"pic.twitter.com\\/vfRD2xkYO9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555020854425174016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1555020817293000705,\"id_str\":\"1555020817293000705\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSLMckWQAEdJQc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSLMckWQAEdJQc.jpg\",\"url\":\"https:\\/\\/t.co\\/vfRD2xkYO9\",\"display_url\":\"pic.twitter.com\\/vfRD2xkYO9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555020854425174016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1555020828571537408,\"id_str\":\"1555020828571537408\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSLNGlXEAAxuD1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSLNGlXEAAxuD1.jpg\",\"url\":\"https:\\/\\/t.co\\/vfRD2xkYO9\",\"display_url\":\"pic.twitter.com\\/vfRD2xkYO9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555020854425174016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":1600,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555020845466193923,\"id_str\":\"1555020845466193923\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSLOFhXEAMm25C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSLOFhXEAMm25C.jpg\",\"url\":\"https:\\/\\/t.co\\/vfRD2xkYO9\",\"display_url\":\"pic.twitter.com\\/vfRD2xkYO9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1555020854425174016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}}]},\"2649\":{\"media\":[{\"id\":1554956764856057856,\"id_str\":\"1554956764856057856\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRQ8GpWAAAR_I5.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRQ8GpWAAAR_I5.png\",\"url\":\"https:\\/\\/t.co\\/oMUlgSbMII\",\"display_url\":\"pic.twitter.com\\/oMUlgSbMII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CradleOhk\\/status\\/1554956767964135425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":298,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":525,\"resize\":\"fit\"},\"large\":{\"w\":1362,\"h\":596,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2650\":{\"media\":[{\"id\":1554951005514731531,\"id_str\":\"1554951005514731531\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951005514731531\\/pu\\/img\\/sbyOuoFrCupZjwqK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951005514731531\\/pu\\/img\\/sbyOuoFrCupZjwqK.jpg\",\"url\":\"https:\\/\\/t.co\\/pZiRXMGO7E\",\"display_url\":\"pic.twitter.com\\/pZiRXMGO7E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MulaloJNR\\/status\\/1554951598547271680\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":8707,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951005514731531\\/pu\\/vid\\/576x1024\\/hV6msJ0m-Fs5zYpL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951005514731531\\/pu\\/pl\\/OKbQkNF07WkiaBE4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951005514731531\\/pu\\/vid\\/480x852\\/pb-cJMC69t3B9jcU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951005514731531\\/pu\\/vid\\/320x568\\/dHFEL-n6EC_D8U1J.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2651\":null,\"2652\":{\"media\":[{\"id\":1554940382324170752,\"id_str\":\"1554940382324170752\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554940382324170752\\/pu\\/img\\/1YX8fASOpSyq8kmq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554940382324170752\\/pu\\/img\\/1YX8fASOpSyq8kmq.jpg\",\"url\":\"https:\\/\\/t.co\\/EfSoggum2P\",\"display_url\":\"pic.twitter.com\\/EfSoggum2P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/salaamedia\\/status\\/1554940866858565634\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":121765,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554940382324170752\\/pu\\/vid\\/1280x720\\/mR-04600pqnRrs49.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554940382324170752\\/pu\\/vid\\/480x270\\/z2eJx2JyMuwLyNQI.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554940382324170752\\/pu\\/vid\\/640x360\\/5scq8eCSR6IYTJxU.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554940382324170752\\/pu\\/pl\\/Y3LwdgY8vImgK7qV.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2653\":null,\"2654\":{\"media\":[{\"id\":1554920493588922368,\"id_str\":\"1554920493588922368\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554920493588922368\\/pu\\/img\\/URuiyYC2gQBOXHyq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554920493588922368\\/pu\\/img\\/URuiyYC2gQBOXHyq.jpg\",\"url\":\"https:\\/\\/t.co\\/MfSx1Fphzp\",\"display_url\":\"pic.twitter.com\\/MfSx1Fphzp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SkaiCole\\/status\\/1554920695259451393\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":750,\"h\":926,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":926,\"resize\":\"fit\"},\"small\":{\"w\":551,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[375,463],\"duration_millis\":15946,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554920493588922368\\/pu\\/vid\\/320x394\\/-ckhJOTNeY_zyQ5h.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554920493588922368\\/pu\\/vid\\/480x592\\/h0PAglwnQrV8PEJp.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554920493588922368\\/pu\\/vid\\/720x888\\/uaFbxzvvGCjlJoug.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554920493588922368\\/pu\\/pl\\/OXRAwGE2SUoXdew6.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2655\":{\"media\":[{\"id\":1554916926576525312,\"id_str\":\"1554916926576525312\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstNfWAAAR29s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstNfWAAAR29s.jpg\",\"url\":\"https:\\/\\/t.co\\/DnGROE8IM2\",\"display_url\":\"pic.twitter.com\\/DnGROE8IM2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/khoikhoi_sa\\/status\\/1554916933467869185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1173,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1214,\"resize\":\"fit\"}}},{\"id\":1554916930372489216,\"id_str\":\"1554916930372489216\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstboX0AAf4vq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstboX0AAf4vq.jpg\",\"url\":\"https:\\/\\/t.co\\/DnGROE8IM2\",\"display_url\":\"pic.twitter.com\\/DnGROE8IM2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/khoikhoi_sa\\/status\\/1554916933467869185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1226,\"h\":1226,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2656\":null,\"2657\":null,\"2658\":{\"media\":[{\"id\":1554906675173269504,\"id_str\":\"1554906675173269504\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554906675173269504\\/pu\\/img\\/NFSLds8TJ07s5juD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554906675173269504\\/pu\\/img\\/NFSLds8TJ07s5juD.jpg\",\"url\":\"https:\\/\\/t.co\\/c33y04Yst1\",\"display_url\":\"pic.twitter.com\\/c33y04Yst1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MthembuSisekelo\\/status\\/1554906763010478081\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":854,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":854,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[240,427],\"duration_millis\":14197,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554906675173269504\\/pu\\/pl\\/GUV_3PmH4FtIjzhx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554906675173269504\\/pu\\/vid\\/320x568\\/8Mf1JRUpYfknHmVR.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554906675173269504\\/pu\\/vid\\/480x854\\/4b8GonzzauLddy9h.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2659\":null,\"2660\":{\"media\":[{\"id\":1554902691280830472,\"id_str\":\"1554902691280830472\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQfwm4XwAghkJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQfwm4XwAghkJy.jpg\",\"url\":\"https:\\/\\/t.co\\/RTLyNYvO6s\",\"display_url\":\"pic.twitter.com\\/RTLyNYvO6s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WolfFX13\\/status\\/1554902702018240513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":540,\"h\":1204,\"resize\":\"fit\"},\"small\":{\"w\":305,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":538,\"h\":1200,\"resize\":\"fit\"}}}]},\"2661\":null,\"2662\":{\"media\":[{\"id\":1554893613343145990,\"id_str\":\"1554893613343145990\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893613343145990\\/pu\\/img\\/kLuJ2lESsU_C88h_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893613343145990\\/pu\\/img\\/kLuJ2lESsU_C88h_.jpg\",\"url\":\"https:\\/\\/t.co\\/02Nd4xXTth\",\"display_url\":\"pic.twitter.com\\/02Nd4xXTth\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jansfin\\/status\\/1554893882336415744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":45000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893613343145990\\/pu\\/pl\\/8WGVrduIUyVlsTqd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893613343145990\\/pu\\/vid\\/480x270\\/ioEZ2qD46be70CNf.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893613343145990\\/pu\\/vid\\/640x360\\/k1utGnrKD9xApGFo.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2663\":{\"media\":[{\"id\":1554885829117546497,\"id_str\":\"1554885829117546497\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQQbGbXEAE9If8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQQbGbXEAE9If8.jpg\",\"url\":\"https:\\/\\/t.co\\/jlTdejrWya\",\"display_url\":\"pic.twitter.com\\/jlTdejrWya\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LesibaHorns\\/status\\/1554885832791793665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":374,\"h\":511,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":374,\"h\":511,\"resize\":\"fit\"},\"medium\":{\"w\":374,\"h\":511,\"resize\":\"fit\"}}}]},\"2664\":null,\"2665\":null,\"2666\":{\"media\":[{\"id\":1554856228827942918,\"id_str\":\"1554856228827942918\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554856228827942918\\/pu\\/img\\/c57f_JNmMR2qnKfr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554856228827942918\\/pu\\/img\\/c57f_JNmMR2qnKfr.jpg\",\"url\":\"https:\\/\\/t.co\\/U5tdprryKC\",\"display_url\":\"pic.twitter.com\\/U5tdprryKC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ProffNyembe\\/status\\/1554856427742715904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44932,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554856228827942918\\/pu\\/vid\\/576x1024\\/PLzxfSOofOCkcZyo.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554856228827942918\\/pu\\/vid\\/480x852\\/xWmqXaTGN6woB4Ul.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554856228827942918\\/pu\\/vid\\/320x568\\/YNRjA3YQ6u0ZkLPI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554856228827942918\\/pu\\/pl\\/BFDuJgA__1PPmrMY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2667\":null,\"2668\":{\"media\":[{\"id\":1554848290168049665,\"id_str\":\"1554848290168049665\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554848290168049665\\/pu\\/img\\/RGQqnBaWs7mFGjsV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554848290168049665\\/pu\\/img\\/RGQqnBaWs7mFGjsV.jpg\",\"url\":\"https:\\/\\/t.co\\/J9Uv6K7gR5\",\"display_url\":\"pic.twitter.com\\/J9Uv6K7gR5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/riebeckitecloth\\/status\\/1554848418639536128\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1020,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1020,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[12,17],\"duration_millis\":8466,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554848290168049665\\/pu\\/vid\\/720x1020\\/8ZE0lSe0NpOjYnUy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554848290168049665\\/pu\\/vid\\/480x680\\/oeLhQk5I_tGjdpKV.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554848290168049665\\/pu\\/vid\\/320x452\\/axaQPel5td4LZ8vF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554848290168049665\\/pu\\/pl\\/HESQkthg8lzb8DdR.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2669\":{\"media\":[{\"id\":1554839314109935616,\"id_str\":\"1554839314109935616\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmHkhVsAAYYtv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmHkhVsAAYYtv.jpg\",\"url\":\"https:\\/\\/t.co\\/KLOrtnRCha\",\"display_url\":\"pic.twitter.com\\/KLOrtnRCha\",\"expanded_url\":\"https:\\/\\/twitter.com\\/garothedj\\/status\\/1554839364391280642\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1554839329746194435,\"id_str\":\"1554839329746194435\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmIexUEAMVQlE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmIexUEAMVQlE.jpg\",\"url\":\"https:\\/\\/t.co\\/KLOrtnRCha\",\"display_url\":\"pic.twitter.com\\/KLOrtnRCha\",\"expanded_url\":\"https:\\/\\/twitter.com\\/garothedj\\/status\\/1554839364391280642\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1554839334871654402,\"id_str\":\"1554839334871654402\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmIx3UYAIoU1M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmIx3UYAIoU1M.jpg\",\"url\":\"https:\\/\\/t.co\\/KLOrtnRCha\",\"display_url\":\"pic.twitter.com\\/KLOrtnRCha\",\"expanded_url\":\"https:\\/\\/twitter.com\\/garothedj\\/status\\/1554839364391280642\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1554839349782401024,\"id_str\":\"1554839349782401024\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmJpaUUAAVb28.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmJpaUUAAVb28.png\",\"url\":\"https:\\/\\/t.co\\/KLOrtnRCha\",\"display_url\":\"pic.twitter.com\\/KLOrtnRCha\",\"expanded_url\":\"https:\\/\\/twitter.com\\/garothedj\\/status\\/1554839364391280642\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":960,\"resize\":\"fit\"}}}]},\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":{\"media\":[{\"id\":1554794381986643968,\"id_str\":\"1554794381986643968\",\"indices\":[63,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554794381986643968\\/pu\\/img\\/lq-pfLy2VkLtGfA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554794381986643968\\/pu\\/img\\/lq-pfLy2VkLtGfA1.jpg\",\"url\":\"https:\\/\\/t.co\\/bxLvbjLE83\",\"display_url\":\"pic.twitter.com\\/bxLvbjLE83\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MakgatlheK\\/status\\/1554794430921687043\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":29535,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554794381986643968\\/pu\\/pl\\/Zt9aANle2WqzGGah.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554794381986643968\\/pu\\/vid\\/480x852\\/333jbsOKJhMl9uCv.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554794381986643968\\/pu\\/vid\\/320x568\\/HEFzA2CpB2HpOQf4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554794381986643968\\/pu\\/vid\\/576x1024\\/jMgK7vP0s5RwlX2b.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2677\":{\"media\":[{\"id\":1554793255912480773,\"id_str\":\"1554793255912480773\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8OoXWIAUYNtr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8OoXWIAUYNtr.jpg\",\"url\":\"https:\\/\\/t.co\\/3IHH3W96jW\",\"display_url\":\"pic.twitter.com\\/3IHH3W96jW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mccools_corner\\/status\\/1554793285134213120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":596,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":694,\"h\":792,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":694,\"h\":792,\"resize\":\"fit\"}}},{\"id\":1554793256373854211,\"id_str\":\"1554793256373854211\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8OqFWIAMx-Pu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8OqFWIAMx-Pu.jpg\",\"url\":\"https:\\/\\/t.co\\/3IHH3W96jW\",\"display_url\":\"pic.twitter.com\\/3IHH3W96jW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mccools_corner\\/status\\/1554793285134213120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":787,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":787,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554793256378048513,\"id_str\":\"1554793256378048513\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8OqGWIAEQicO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8OqGWIAEQicO.jpg\",\"url\":\"https:\\/\\/t.co\\/3IHH3W96jW\",\"display_url\":\"pic.twitter.com\\/3IHH3W96jW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mccools_corner\\/status\\/1554793285134213120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":584,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":838,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":838,\"resize\":\"fit\"}}},{\"id\":1554793256390647808,\"id_str\":\"1554793256390647808\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8OqJWYAAjQbO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8OqJWYAAjQbO.jpg\",\"url\":\"https:\\/\\/t.co\\/3IHH3W96jW\",\"display_url\":\"pic.twitter.com\\/3IHH3W96jW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mccools_corner\\/status\\/1554793285134213120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":553,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":650,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":650,\"h\":800,\"resize\":\"fit\"}}}]},\"2678\":null,\"2679\":{\"media\":[{\"id\":1554782125316079616,\"id_str\":\"1554782125316079616\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782125316079616\\/pu\\/img\\/XtALwCEO0qeWs8Sz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782125316079616\\/pu\\/img\\/XtALwCEO0qeWs8Sz.jpg\",\"url\":\"https:\\/\\/t.co\\/6zVhPb66Q7\",\"display_url\":\"pic.twitter.com\\/6zVhPb66Q7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MavuthelaCom\\/status\\/1554782179963568128\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":29998,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782125316079616\\/pu\\/pl\\/6CDv3TBWcnTRKPTt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782125316079616\\/pu\\/vid\\/320x580\\/Uzas6g2wO4k4bZdN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782125316079616\\/pu\\/vid\\/352x640\\/3wCBPtBNyLW6EJbr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2680\":{\"media\":[{\"id\":1554778386219913219,\"id_str\":\"1554778386219913219\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOutGcX0AMrY86.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOutGcX0AMrY86.jpg\",\"url\":\"https:\\/\\/t.co\\/yF725swjJG\",\"display_url\":\"pic.twitter.com\\/yF725swjJG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PropagandaPTA\\/status\\/1554778392322621440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"2681\":{\"media\":[{\"id\":1554777924473131008,\"id_str\":\"1554777924473131008\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuSOTXEAAnr2u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuSOTXEAAnr2u.jpg\",\"url\":\"https:\\/\\/t.co\\/mxWX6CwBOR\",\"display_url\":\"pic.twitter.com\\/mxWX6CwBOR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ThanduxoloMdak1\\/status\\/1554777927241302016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":535,\"h\":670,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":535,\"h\":670,\"resize\":\"fit\"},\"medium\":{\"w\":535,\"h\":670,\"resize\":\"fit\"}}}]},\"2682\":{\"media\":[{\"id\":1554776312442720256,\"id_str\":\"1554776312442720256\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs0ZBXEAAUEGI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs0ZBXEAAUEGI.jpg\",\"url\":\"https:\\/\\/t.co\\/BEhDGMUUzC\",\"display_url\":\"pic.twitter.com\\/BEhDGMUUzC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOURMEDIA_ZA\\/status\\/1554776322890768385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554776312442757121,\"id_str\":\"1554776312442757121\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs0ZBXoAE5QKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs0ZBXoAE5QKi.jpg\",\"url\":\"https:\\/\\/t.co\\/BEhDGMUUzC\",\"display_url\":\"pic.twitter.com\\/BEhDGMUUzC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOURMEDIA_ZA\\/status\\/1554776322890768385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554776312434262016,\"id_str\":\"1554776312434262016\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs0Y_WAAAfk-Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs0Y_WAAAfk-Q.jpg\",\"url\":\"https:\\/\\/t.co\\/BEhDGMUUzC\",\"display_url\":\"pic.twitter.com\\/BEhDGMUUzC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOURMEDIA_ZA\\/status\\/1554776322890768385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2683\":{\"media\":[{\"id\":1554776165956685824,\"id_str\":\"1554776165956685824\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsr3UXkAAFVpC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsr3UXkAAFVpC.jpg\",\"url\":\"https:\\/\\/t.co\\/I2qzQo0GXl\",\"display_url\":\"pic.twitter.com\\/I2qzQo0GXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sphinx_Mnguni\\/status\\/1554776173900693506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1084,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1241,\"h\":1374,\"resize\":\"fit\"},\"small\":{\"w\":614,\"h\":680,\"resize\":\"fit\"}}}]},\"2684\":{\"media\":[{\"id\":1554773139615367169,\"id_str\":\"1554773139615367169\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp7tUXwAE1Sg4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp7tUXwAE1Sg4.jpg\",\"url\":\"https:\\/\\/t.co\\/WfQglM0Fnp\",\"display_url\":\"pic.twitter.com\\/WfQglM0Fnp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TheChopShop137\\/status\\/1554773164550397955\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554773146041040898,\"id_str\":\"1554773146041040898\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp8FQXwAIjl30.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp8FQXwAIjl30.jpg\",\"url\":\"https:\\/\\/t.co\\/WfQglM0Fnp\",\"display_url\":\"pic.twitter.com\\/WfQglM0Fnp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TheChopShop137\\/status\\/1554773164550397955\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554773153188118529,\"id_str\":\"1554773153188118529\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp8f4XgAECCv6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp8f4XgAECCv6.jpg\",\"url\":\"https:\\/\\/t.co\\/WfQglM0Fnp\",\"display_url\":\"pic.twitter.com\\/WfQglM0Fnp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TheChopShop137\\/status\\/1554773164550397955\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554773161052459008,\"id_str\":\"1554773161052459008\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp89LX0AA_vE7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp89LX0AA_vE7.jpg\",\"url\":\"https:\\/\\/t.co\\/WfQglM0Fnp\",\"display_url\":\"pic.twitter.com\\/WfQglM0Fnp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TheChopShop137\\/status\\/1554773164550397955\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1200,\"resize\":\"fit\"}}}]},\"2685\":{\"media\":[{\"id\":1554767908726837249,\"id_str\":\"1554767908726837249\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOlLOvXEAE1SD7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOlLOvXEAE1SD7.jpg\",\"url\":\"https:\\/\\/t.co\\/yXfYpvIRoW\",\"display_url\":\"pic.twitter.com\\/yXfYpvIRoW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554767939320119296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}},{\"id\":1554767918738571266,\"id_str\":\"1554767918738571266\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOlL0CWAAI5aNM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOlL0CWAAI5aNM.jpg\",\"url\":\"https:\\/\\/t.co\\/yXfYpvIRoW\",\"display_url\":\"pic.twitter.com\\/yXfYpvIRoW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554767939320119296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}},{\"id\":1554767925957083136,\"id_str\":\"1554767925957083136\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOlMO7XwAAmaHW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOlMO7XwAAmaHW.jpg\",\"url\":\"https:\\/\\/t.co\\/yXfYpvIRoW\",\"display_url\":\"pic.twitter.com\\/yXfYpvIRoW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554767939320119296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554767933020200960,\"id_str\":\"1554767933020200960\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOlMpPWYAAynUL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOlMpPWYAAynUL.jpg\",\"url\":\"https:\\/\\/t.co\\/yXfYpvIRoW\",\"display_url\":\"pic.twitter.com\\/yXfYpvIRoW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554767939320119296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}}]},\"2686\":{\"media\":[{\"id\":1554766266187104258,\"id_str\":\"1554766266187104258\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjrnzXwAIVSi2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjrnzXwAIVSi2.jpg\",\"url\":\"https:\\/\\/t.co\\/SnrooVq7lP\",\"display_url\":\"pic.twitter.com\\/SnrooVq7lP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554766324185939971\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554766279533289478,\"id_str\":\"1554766279533289478\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjsZhWYAYgvQq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjsZhWYAYgvQq.jpg\",\"url\":\"https:\\/\\/t.co\\/SnrooVq7lP\",\"display_url\":\"pic.twitter.com\\/SnrooVq7lP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554766324185939971\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":650,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":614,\"resize\":\"fit\"}}},{\"id\":1554766291772346368,\"id_str\":\"1554766291772346368\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtHHXkAAJ5EA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtHHXkAAJ5EA.jpg\",\"url\":\"https:\\/\\/t.co\\/SnrooVq7lP\",\"display_url\":\"pic.twitter.com\\/SnrooVq7lP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554766324185939971\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}},{\"id\":1554766303818293248,\"id_str\":\"1554766303818293248\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtz_WIAAIY3M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtz_WIAAIY3M.jpg\",\"url\":\"https:\\/\\/t.co\\/SnrooVq7lP\",\"display_url\":\"pic.twitter.com\\/SnrooVq7lP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554766324185939971\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":1600,\"resize\":\"fit\"}}}]},\"2687\":null,\"2688\":{\"media\":[{\"id\":1554763869972733953,\"id_str\":\"1554763869972733953\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554763869972733953\\/pu\\/img\\/tjubsSRfa9XbHUEv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554763869972733953\\/pu\\/img\\/tjubsSRfa9XbHUEv.jpg\",\"url\":\"https:\\/\\/t.co\\/4P3iO7prSS\",\"display_url\":\"pic.twitter.com\\/4P3iO7prSS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pacificblues_SA\\/status\\/1554764141822447619\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":38762,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554763869972733953\\/pu\\/pl\\/pLY_77A_n4TBywZp.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554763869972733953\\/pu\\/vid\\/640x352\\/z6e9mrcggLnaoIfk.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554763869972733953\\/pu\\/vid\\/490x270\\/jqI0Ub4P3Qj-i-De.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2689\":{\"media\":[{\"id\":1554763235160719361,\"id_str\":\"1554763235160719361\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOg7MWXgAEP87a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOg7MWXgAEP87a.jpg\",\"url\":\"https:\\/\\/t.co\\/RCkYjeZd3y\",\"display_url\":\"pic.twitter.com\\/RCkYjeZd3y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pacificblues_SA\\/status\\/1554763238784569344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2690\":{\"media\":[{\"id\":1554762588382167042,\"id_str\":\"1554762588382167042\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgVi6WAAIB-Ta.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgVi6WAAIB-Ta.jpg\",\"url\":\"https:\\/\\/t.co\\/uRG6dcyxvO\",\"display_url\":\"pic.twitter.com\\/uRG6dcyxvO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Molobeduu\\/status\\/1554762590605266945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":244,\"h\":244,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":244,\"resize\":\"fit\"},\"small\":{\"w\":244,\"h\":244,\"resize\":\"fit\"}}}]},\"2691\":{\"media\":[{\"id\":1554761250638274560,\"id_str\":\"1554761250638274560\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761250638274560\\/pu\\/img\\/704a13i8Yke5llKH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761250638274560\\/pu\\/img\\/704a13i8Yke5llKH.jpg\",\"url\":\"https:\\/\\/t.co\\/MHubaCKuGZ\",\"display_url\":\"pic.twitter.com\\/MHubaCKuGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ABOBALOYI\\/status\\/1554761301947293696\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":555,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":315,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":592,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[80,37],\"duration_millis\":63340,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761250638274560\\/pu\\/vid\\/778x360\\/2rgWnqEDB-XYeBbR.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761250638274560\\/pu\\/vid\\/1280x592\\/yyACK6IkRCaoG7oY.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761250638274560\\/pu\\/pl\\/XBno3XolyLkQ1cPk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761250638274560\\/pu\\/vid\\/582x270\\/QmClrFMEZVIXPBuR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2692\":{\"media\":[{\"id\":1554759905906757633,\"id_str\":\"1554759905906757633\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOd5Z6XkAEQYEC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOd5Z6XkAEQYEC.jpg\",\"url\":\"https:\\/\\/t.co\\/iQ7kW1wz1G\",\"display_url\":\"pic.twitter.com\\/iQ7kW1wz1G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SakhyKhuzwayo\\/status\\/1554759922285518849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":964,\"h\":805,\"resize\":\"fit\"},\"medium\":{\"w\":964,\"h\":805,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":568,\"resize\":\"fit\"}}}]},\"2693\":{\"media\":[{\"id\":1554759579191369728,\"id_str\":\"1554759579191369728\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554759579191369728\\/pu\\/img\\/2QNEWW9KvGd4w0yT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554759579191369728\\/pu\\/img\\/2QNEWW9KvGd4w0yT.jpg\",\"url\":\"https:\\/\\/t.co\\/K6xumIKSoH\",\"display_url\":\"pic.twitter.com\\/K6xumIKSoH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BestWorldNews2\\/status\\/1554759628918992897\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":13646,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554759579191369728\\/pu\\/vid\\/352x640\\/hdHkVfMPIH-EZWZS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554759579191369728\\/pu\\/pl\\/qMcbv7EUjPciOSca.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554759579191369728\\/pu\\/vid\\/320x580\\/PzS9fUm59sHd_hXt.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2694\":null,\"2695\":null,\"2696\":{\"media\":[{\"id\":1554739860044496897,\"id_str\":\"1554739860044496897\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLqlQXwAE5Jn9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLqlQXwAE5Jn9.jpg\",\"url\":\"https:\\/\\/t.co\\/YgKuOp7uH8\",\"display_url\":\"pic.twitter.com\\/YgKuOp7uH8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554739863139786754\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2697\":{\"media\":[{\"id\":1554736837050175488,\"id_str\":\"1554736837050175488\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOI6nuXEAAHRSU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOI6nuXEAAHRSU.jpg\",\"url\":\"https:\\/\\/t.co\\/2JffP0XPVz\",\"display_url\":\"pic.twitter.com\\/2JffP0XPVz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MzansiGFund\\/status\\/1554736840787345408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":954,\"resize\":\"fit\"},\"small\":{\"w\":513,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":954,\"resize\":\"fit\"}}}]},\"2698\":{\"media\":[{\"id\":1554734830088241152,\"id_str\":\"1554734830088241152\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHFzNWQAACJT1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHFzNWQAACJT1.jpg\",\"url\":\"https:\\/\\/t.co\\/slvoc9LA9Z\",\"display_url\":\"pic.twitter.com\\/slvoc9LA9Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1554734881942405121\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1013,\"h\":758,\"resize\":\"fit\"},\"large\":{\"w\":1013,\"h\":758,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"2699\":{\"media\":[{\"id\":1554733720107683842,\"id_str\":\"1554733720107683842\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGFMNXEAIJ45_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGFMNXEAIJ45_.jpg\",\"url\":\"https:\\/\\/t.co\\/zrJaKKja2O\",\"display_url\":\"pic.twitter.com\\/zrJaKKja2O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MothebeThebi\\/status\\/1554733728110354437\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":567,\"h\":699,\"resize\":\"fit\"},\"small\":{\"w\":552,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":567,\"h\":699,\"resize\":\"fit\"}}}]},\"2700\":null,\"2701\":{\"media\":[{\"id\":1554732035016622080,\"id_str\":\"1554732035016622080\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEjGwWAAA1P6t.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEjGwWAAA1P6t.png\",\"url\":\"https:\\/\\/t.co\\/3LUTaHBn6u\",\"display_url\":\"pic.twitter.com\\/3LUTaHBn6u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/crescent_forex\\/status\\/1554732037910798336\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":666,\"resize\":\"fit\"},\"large\":{\"w\":1834,\"h\":1018,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":{\"media\":[{\"id\":1554719834172276736,\"id_str\":\"1554719834172276736\",\"indices\":[291,314],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719834172276736\\/pu\\/img\\/EbSf9WrZ7ljAEV3r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719834172276736\\/pu\\/img\\/EbSf9WrZ7ljAEV3r.jpg\",\"url\":\"https:\\/\\/t.co\\/o1zngHxoMV\",\"display_url\":\"pic.twitter.com\\/o1zngHxoMV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingpin10123\\/status\\/1554720003840266242\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45001,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719834172276736\\/pu\\/pl\\/WDnkhvhVYlaSoocL.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719834172276736\\/pu\\/vid\\/320x568\\/X6DEgNNQA8izburR.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719834172276736\\/pu\\/vid\\/480x852\\/ehP0gcSx7NxFncyt.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719834172276736\\/pu\\/vid\\/720x1280\\/kKcdgRZL4nwZwRet.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2709\":null,\"2710\":{\"media\":[{\"id\":1554719280176005124,\"id_str\":\"1554719280176005124\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719280176005124\\/pu\\/img\\/6WUAXhWcB8lXi_Vl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554719280176005124\\/pu\\/img\\/6WUAXhWcB8lXi_Vl.jpg\",\"url\":\"https:\\/\\/t.co\\/ch7V71uNKt\",\"display_url\":\"pic.twitter.com\\/ch7V71uNKt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingpin10123\\/status\\/1554719449856765952\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45001,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719280176005124\\/pu\\/vid\\/480x852\\/Ydb8y5r3ushxHNcK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719280176005124\\/pu\\/pl\\/r6oPrKhqn3GZSVxc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719280176005124\\/pu\\/vid\\/320x568\\/S8_np5yTiIzFlUrp.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554719280176005124\\/pu\\/vid\\/720x1280\\/KOqqNcPAdO_u63sH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2711\":null,\"2712\":{\"media\":[{\"id\":1554713730419769344,\"id_str\":\"1554713730419769344\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNz5o0XwAAG-Rj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNz5o0XwAAG-Rj.jpg\",\"url\":\"https:\\/\\/t.co\\/0t4gHSHDMN\",\"display_url\":\"pic.twitter.com\\/0t4gHSHDMN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554713733607342080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":375,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":375,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"}}}]},\"2713\":{\"media\":[{\"id\":1554712887142277120,\"id_str\":\"1554712887142277120\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzIjXWYAA6LJD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzIjXWYAA6LJD.jpg\",\"url\":\"https:\\/\\/t.co\\/OW4U4UvXzE\",\"display_url\":\"pic.twitter.com\\/OW4U4UvXzE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/netha_fn\\/status\\/1554712896839589894\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2714\":{\"media\":[{\"id\":1554696014514331649,\"id_str\":\"1554696014514331649\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNjyb7XoAEhHMB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNjyb7XoAEhHMB.jpg\",\"url\":\"https:\\/\\/t.co\\/QhTsxx9rBK\",\"display_url\":\"pic.twitter.com\\/QhTsxx9rBK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZandySeal\\/status\\/1554696017110507520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":403,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":455,\"resize\":\"fit\"}}}]},\"2715\":{\"media\":[{\"id\":1554695448979509249,\"id_str\":\"1554695448979509249\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNjRhJXEAEGGWC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNjRhJXEAEGGWC.jpg\",\"url\":\"https:\\/\\/t.co\\/vSiTSGunjh\",\"display_url\":\"pic.twitter.com\\/vSiTSGunjh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MbusoProBet_ZA\\/status\\/1554695462292176896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":359,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":204,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":613,\"h\":2048,\"resize\":\"fit\"}}}]},\"2716\":null,\"2717\":null,\"2718\":null,\"2719\":{\"media\":[{\"id\":1554680211454758914,\"id_str\":\"1554680211454758914\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNVak8XEAIMe4G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNVak8XEAIMe4G.jpg\",\"url\":\"https:\\/\\/t.co\\/m6COG8Mwow\",\"display_url\":\"pic.twitter.com\\/m6COG8Mwow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554680242102767617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}},{\"id\":1554680220434718722,\"id_str\":\"1554680220434718722\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNVbGZWYAIcaii.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNVbGZWYAIcaii.jpg\",\"url\":\"https:\\/\\/t.co\\/m6COG8Mwow\",\"display_url\":\"pic.twitter.com\\/m6COG8Mwow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554680242102767617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":764,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":764,\"resize\":\"fit\"}}},{\"id\":1554680227577610242,\"id_str\":\"1554680227577610242\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNVbhAWQAIitD_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNVbhAWQAIitD_.jpg\",\"url\":\"https:\\/\\/t.co\\/m6COG8Mwow\",\"display_url\":\"pic.twitter.com\\/m6COG8Mwow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554680242102767617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554680235815223296,\"id_str\":\"1554680235815223296\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNVb_sWQAASe2p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNVb_sWQAASe2p.jpg\",\"url\":\"https:\\/\\/t.co\\/m6COG8Mwow\",\"display_url\":\"pic.twitter.com\\/m6COG8Mwow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShiloteW\\/status\\/1554680242102767617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"2720\":{\"media\":[{\"id\":1554675223357800453,\"id_str\":\"1554675223357800453\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675223357800453\\/pu\\/img\\/p_T2zd5RXBUdmxXp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675223357800453\\/pu\\/img\\/p_T2zd5RXBUdmxXp.jpg\",\"url\":\"https:\\/\\/t.co\\/7JzF438P9T\",\"display_url\":\"pic.twitter.com\\/7JzF438P9T\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EvolvingAfrican\\/status\\/1554675724656807942\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":64036,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675223357800453\\/pu\\/vid\\/540x540\\/Kru8DddXDfYKDzQd.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675223357800453\\/pu\\/vid\\/720x720\\/fDv2aTs5GN0N_ALR.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675223357800453\\/pu\\/vid\\/320x320\\/29nppeGJdN2jrt8Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675223357800453\\/pu\\/pl\\/4JBdwDaBvyH_XRMr.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2721\":null,\"2722\":{\"media\":[{\"id\":1554645851590598656,\"id_str\":\"1554645851590598656\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554645851590598656\\/pu\\/img\\/HJ0RwOP2p6Vld1J1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554645851590598656\\/pu\\/img\\/HJ0RwOP2p6Vld1J1.jpg\",\"url\":\"https:\\/\\/t.co\\/Fol7OGY40C\",\"display_url\":\"pic.twitter.com\\/Fol7OGY40C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EvnsMamabolo\\/status\\/1554645939704528897\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":64000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554645851590598656\\/pu\\/vid\\/640x360\\/Wmemhbv9f5dKvo8t.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554645851590598656\\/pu\\/vid\\/480x270\\/KdxU6Zzvum_g7XgO.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554645851590598656\\/pu\\/pl\\/qDyA0BkeQDULSNZy.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2723\":null,\"2724\":{\"media\":[{\"id\":1554616315712868353,\"id_str\":\"1554616315712868353\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMbTWwXkAEw-ts.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMbTWwXkAEw-ts.jpg\",\"url\":\"https:\\/\\/t.co\\/Xux9FY51lf\",\"display_url\":\"pic.twitter.com\\/Xux9FY51lf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SakhyKhuzwayo\\/status\\/1554616325926002688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1231,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":721,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"2725\":null,\"2726\":null,\"2727\":{\"media\":[{\"id\":1554585246498267142,\"id_str\":\"1554585246498267142\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554585246498267142\\/pu\\/img\\/4XxuafNiHhq1qWHN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554585246498267142\\/pu\\/img\\/4XxuafNiHhq1qWHN.jpg\",\"url\":\"https:\\/\\/t.co\\/LGmUXmjO7R\",\"display_url\":\"pic.twitter.com\\/LGmUXmjO7R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Pro_Cyn\\/status\\/1554585298876747776\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":306,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":576,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,9],\"duration_millis\":8825,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554585246498267142\\/pu\\/vid\\/1280x576\\/V82ZHYXhHwswnIKM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554585246498267142\\/pu\\/pl\\/lRQ3VyOBqNN1Yyd3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554585246498267142\\/pu\\/vid\\/600x270\\/F3ZGwm4izoz4n3r4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554585246498267142\\/pu\\/vid\\/800x360\\/FhhuteMgAxzEJak6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2728\":null,\"2729\":null,\"2730\":{\"media\":[{\"id\":1554575917426642945,\"id_str\":\"1554575917426642945\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554575917426642945\\/pu\\/img\\/pO2RGBKUJGQbLvs0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554575917426642945\\/pu\\/img\\/pO2RGBKUJGQbLvs0.jpg\",\"url\":\"https:\\/\\/t.co\\/YPqOvZqkwr\",\"display_url\":\"pic.twitter.com\\/YPqOvZqkwr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WithPraisee\\/status\\/1554578542633140224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":676,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":724,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":724,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[180,181],\"duration_millis\":56515,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554575917426642945\\/pu\\/pl\\/UBkbd5iH6mu-QANN.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554575917426642945\\/pu\\/vid\\/480x482\\/YrDaIsEUL4oh4Ymz.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554575917426642945\\/pu\\/vid\\/720x724\\/we2K2e46hU5p1EPu.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554575917426642945\\/pu\\/vid\\/320x320\\/iQdkMcxKMByGR0CP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":{\"media\":[{\"id\":1554553192435912711,\"id_str\":\"1554553192435912711\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLh5GOXkAcDbsI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLh5GOXkAcDbsI.jpg\",\"url\":\"https:\\/\\/t.co\\/NhDU1oDGXS\",\"display_url\":\"pic.twitter.com\\/NhDU1oDGXS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NNehoreka\\/status\\/1554559619569270785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":724,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":724,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554553198572191745,\"id_str\":\"1554553198572191745\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLh5dFXwAElrt_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLh5dFXwAElrt_.jpg\",\"url\":\"https:\\/\\/t.co\\/NhDU1oDGXS\",\"display_url\":\"pic.twitter.com\\/NhDU1oDGXS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NNehoreka\\/status\\/1554559619569270785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":724,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":724,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554559575805804545,\"id_str\":\"1554559575805804545\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLnsqIWQAERYl4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLnsqIWQAERYl4.jpg\",\"url\":\"https:\\/\\/t.co\\/NhDU1oDGXS\",\"display_url\":\"pic.twitter.com\\/NhDU1oDGXS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NNehoreka\\/status\\/1554559619569270785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":905,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554559591572193280,\"id_str\":\"1554559591572193280\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLntk3WQAAnjDX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLntk3WQAAnjDX.jpg\",\"url\":\"https:\\/\\/t.co\\/NhDU1oDGXS\",\"display_url\":\"pic.twitter.com\\/NhDU1oDGXS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NNehoreka\\/status\\/1554559619569270785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":905,\"h\":1280,\"resize\":\"fit\"}}}]},\"2735\":{\"media\":[{\"id\":1554552795956744198,\"id_str\":\"1554552795956744198\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552795956744198\\/pu\\/img\\/_vX4Mw6YHa00Me2R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552795956744198\\/pu\\/img\\/_vX4Mw6YHa00Me2R.jpg\",\"url\":\"https:\\/\\/t.co\\/4iMHRu1d8D\",\"display_url\":\"pic.twitter.com\\/4iMHRu1d8D\",\"expanded_url\":\"https:\\/\\/twitter.com\\/serotobale\\/status\\/1554553478655221760\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":60094,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552795956744198\\/pu\\/pl\\/BA62qY2GJIRwzGLK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552795956744198\\/pu\\/vid\\/640x360\\/r0j50EakaHc_rQSL.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552795956744198\\/pu\\/vid\\/1280x720\\/iyBMWmrA-MHAcyIN.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552795956744198\\/pu\\/vid\\/480x270\\/t99SMYvX2V9pT7EX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2736\":null,\"2737\":{\"media\":[{\"id\":1554541307346944007,\"id_str\":\"1554541307346944007\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLXFS0WAAckZsX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLXFS0WAAckZsX.jpg\",\"url\":\"https:\\/\\/t.co\\/MjMZg9MvlZ\",\"display_url\":\"pic.twitter.com\\/MjMZg9MvlZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/breezymak\\/status\\/1554541309792329729\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":586,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":586,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":586,\"resize\":\"fit\"}}}]},\"2738\":{\"media\":[{\"id\":1554539853328572416,\"id_str\":\"1554539853328572416\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVwqLWYAAbBUH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVwqLWYAAbBUH.jpg\",\"url\":\"https:\\/\\/t.co\\/AXEJlyAdII\",\"display_url\":\"pic.twitter.com\\/AXEJlyAdII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sniper_E_Master\\/status\\/1554540400534294535\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1440,\"resize\":\"fit\"}}},{\"id\":1554539853374799876,\"id_str\":\"1554539853374799876\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVwqWXwAQnmaa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVwqWXwAQnmaa.jpg\",\"url\":\"https:\\/\\/t.co\\/AXEJlyAdII\",\"display_url\":\"pic.twitter.com\\/AXEJlyAdII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sniper_E_Master\\/status\\/1554540400534294535\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1440,\"resize\":\"fit\"}}},{\"id\":1554539853320175618,\"id_str\":\"1554539853320175618\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVwqJWQAI8r9S.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVwqJWQAI8r9S.jpg\",\"url\":\"https:\\/\\/t.co\\/AXEJlyAdII\",\"display_url\":\"pic.twitter.com\\/AXEJlyAdII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sniper_E_Master\\/status\\/1554540400534294535\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1440,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554539853358010373,\"id_str\":\"1554539853358010373\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVwqSXkAU0Gwt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVwqSXkAU0Gwt.jpg\",\"url\":\"https:\\/\\/t.co\\/AXEJlyAdII\",\"display_url\":\"pic.twitter.com\\/AXEJlyAdII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sniper_E_Master\\/status\\/1554540400534294535\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1440,\"resize\":\"fit\"}}}]},\"2739\":{\"media\":[{\"id\":1554539623396921345,\"id_str\":\"1554539623396921345\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVjRnX0AEFATT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVjRnX0AEFATT.jpg\",\"url\":\"https:\\/\\/t.co\\/JmYMwBZuk8\",\"display_url\":\"pic.twitter.com\\/JmYMwBZuk8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iscathulo_SA\\/status\\/1554539640404811780\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":799,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1364,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554539623388516352,\"id_str\":\"1554539623388516352\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVjRlXkAAcOJV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVjRlXkAAcOJV.jpg\",\"url\":\"https:\\/\\/t.co\\/JmYMwBZuk8\",\"display_url\":\"pic.twitter.com\\/JmYMwBZuk8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iscathulo_SA\\/status\\/1554539640404811780\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":799,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1364,\"resize\":\"fit\"}}},{\"id\":1554539623384326152,\"id_str\":\"1554539623384326152\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVjRkXoAgSiPw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVjRkXoAgSiPw.jpg\",\"url\":\"https:\\/\\/t.co\\/JmYMwBZuk8\",\"display_url\":\"pic.twitter.com\\/JmYMwBZuk8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iscathulo_SA\\/status\\/1554539640404811780\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1364,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":799,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}},{\"id\":1554539623447134209,\"id_str\":\"1554539623447134209\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVjRzWAAE8Nlt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVjRzWAAE8Nlt.jpg\",\"url\":\"https:\\/\\/t.co\\/JmYMwBZuk8\",\"display_url\":\"pic.twitter.com\\/JmYMwBZuk8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iscathulo_SA\\/status\\/1554539640404811780\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":799,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1364,\"resize\":\"fit\"}}}]},\"2740\":{\"media\":[{\"id\":1554538812235186178,\"id_str\":\"1554538812235186178\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLU0DzWAAI4WPs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLU0DzWAAI4WPs.jpg\",\"url\":\"https:\\/\\/t.co\\/pyRcdH2hkM\",\"display_url\":\"pic.twitter.com\\/pyRcdH2hkM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DrPatriotSA\\/status\\/1554538822553190409\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":498,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":494,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":494,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[249,247],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLU0DzWAAI4WPs.mp4\"}]}}]},\"2741\":{\"media\":[{\"id\":1554538307144617990,\"id_str\":\"1554538307144617990\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUWqMXkAYk4hq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUWqMXkAYk4hq.jpg\",\"url\":\"https:\\/\\/t.co\\/AKtRyjzCDU\",\"display_url\":\"pic.twitter.com\\/AKtRyjzCDU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shabathegreat\\/status\\/1554538310940360706\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":374,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":374,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":374,\"resize\":\"fit\"}}}]},\"2742\":{\"media\":[{\"id\":1554535226675789825,\"id_str\":\"1554535226675789825\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLRjWjXgAEyUMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLRjWjXgAEyUMh.jpg\",\"url\":\"https:\\/\\/t.co\\/XwTtvAncfE\",\"display_url\":\"pic.twitter.com\\/XwTtvAncfE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RudzaniWiseman\\/status\\/1554535272053874695\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":799,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1364,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554535226679910400,\"id_str\":\"1554535226679910400\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLRjWkWYAA2iU2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLRjWkWYAA2iU2.jpg\",\"url\":\"https:\\/\\/t.co\\/XwTtvAncfE\",\"display_url\":\"pic.twitter.com\\/XwTtvAncfE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RudzaniWiseman\\/status\\/1554535272053874695\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":799,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1364,\"resize\":\"fit\"}}},{\"id\":1554535226675810304,\"id_str\":\"1554535226675810304\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLRjWjX0AAkv84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLRjWjX0AAkv84.jpg\",\"url\":\"https:\\/\\/t.co\\/XwTtvAncfE\",\"display_url\":\"pic.twitter.com\\/XwTtvAncfE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RudzaniWiseman\\/status\\/1554535272053874695\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":799,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1364,\"resize\":\"fit\"}}},{\"id\":1554535226679988226,\"id_str\":\"1554535226679988226\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLRjWkXkAI_kyY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLRjWkXkAI_kyY.jpg\",\"url\":\"https:\\/\\/t.co\\/XwTtvAncfE\",\"display_url\":\"pic.twitter.com\\/XwTtvAncfE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RudzaniWiseman\\/status\\/1554535272053874695\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1364,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":799,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"2743\":null,\"2744\":null,\"2745\":{\"media\":[{\"id\":1554531263813394436,\"id_str\":\"1554531263813394436\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLN8rvWIAQufkp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLN8rvWIAQufkp.jpg\",\"url\":\"https:\\/\\/t.co\\/rCNlRayEuh\",\"display_url\":\"pic.twitter.com\\/rCNlRayEuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OnlyRhangani\\/status\\/1554531270889291777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":576,\"h\":504,\"resize\":\"fit\"},\"small\":{\"w\":576,\"h\":504,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":504,\"resize\":\"fit\"}}}]},\"2746\":{\"media\":[{\"id\":1554531041339232257,\"id_str\":\"1554531041339232257\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLNvu9X0AEyzEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLNvu9X0AEyzEL.jpg\",\"url\":\"https:\\/\\/t.co\\/OobwhYmXCh\",\"display_url\":\"pic.twitter.com\\/OobwhYmXCh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoeMajozie\\/status\\/1554531043562213377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":627,\"h\":418,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":627,\"h\":418,\"resize\":\"fit\"},\"large\":{\"w\":627,\"h\":418,\"resize\":\"fit\"}}}]},\"2747\":null,\"2748\":{\"media\":[{\"id\":1554530653554753537,\"id_str\":\"1554530653554753537\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554530653554753537\\/pu\\/img\\/7kiKZGveVm7PNzfh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554530653554753537\\/pu\\/img\\/7kiKZGveVm7PNzfh.jpg\",\"url\":\"https:\\/\\/t.co\\/u1X6S8OCS9\",\"display_url\":\"pic.twitter.com\\/u1X6S8OCS9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ntembekoS\\/status\\/1554530700992430081\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[2,1],\"duration_millis\":6701,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554530653554753537\\/pu\\/pl\\/Tj4pc5uVmDH_f8lD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554530653554753537\\/pu\\/vid\\/720x360\\/rv0PyOCE40GYNluU.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554530653554753537\\/pu\\/vid\\/1280x640\\/h4rDNcTTrFtoBuVJ.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554530653554753537\\/pu\\/vid\\/540x270\\/sjHwys_-mbPRgFAA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2749\":null,\"2750\":{\"media\":[{\"id\":1554528550748917764,\"id_str\":\"1554528550748917764\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLLewyXkAQ_b1e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLLewyXkAQ_b1e.jpg\",\"url\":\"https:\\/\\/t.co\\/cpQhxyS60y\",\"display_url\":\"pic.twitter.com\\/cpQhxyS60y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DrPatriotSA\\/status\\/1554528555404611587\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLLewyXkAQ_b1e.mp4\"}]}}]},\"2751\":{\"media\":[{\"id\":1554525075688361986,\"id_str\":\"1554525075688361986\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLIUfLXkAIjWny.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLIUfLXkAIjWny.jpg\",\"url\":\"https:\\/\\/t.co\\/493WacWKBG\",\"display_url\":\"pic.twitter.com\\/493WacWKBG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thabangdikaee\\/status\\/1554525081367461889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":459,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":459,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":459,\"h\":600,\"resize\":\"fit\"}}}]},\"2752\":{\"media\":[{\"id\":1554517828430184449,\"id_str\":\"1554517828430184449\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554517828430184449\\/pu\\/img\\/amBmntpgrelFELVZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554517828430184449\\/pu\\/img\\/amBmntpgrelFELVZ.jpg\",\"url\":\"https:\\/\\/t.co\\/roEvq8iwc2\",\"display_url\":\"pic.twitter.com\\/roEvq8iwc2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vaderrr_ggm\\/status\\/1554518083112353792\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1082,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1082,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[304,541],\"duration_millis\":57833,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554517828430184449\\/pu\\/vid\\/320x568\\/lXzoqnSEQs88Uxk2.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554517828430184449\\/pu\\/pl\\/68y6h1BEb5v6yyWF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554517828430184449\\/pu\\/vid\\/608x1082\\/mHTwGXsXrrmIV7Bh.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554517828430184449\\/pu\\/vid\\/480x854\\/CuPTRMifZsILHKqg.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":{\"media\":[{\"id\":1554509948494782465,\"id_str\":\"1554509948494782465\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509948494782465\\/pu\\/img\\/AvQXIN_3HP8ocMsf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509948494782465\\/pu\\/img\\/AvQXIN_3HP8ocMsf.jpg\",\"url\":\"https:\\/\\/t.co\\/5K0yUJdw18\",\"display_url\":\"pic.twitter.com\\/5K0yUJdw18\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lastki2King\\/status\\/1554510243580755971\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":44976,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509948494782465\\/pu\\/pl\\/VHeJLARFoRg4K2ep.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509948494782465\\/pu\\/vid\\/480x270\\/Hb9zcReO9cG2eDZG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509948494782465\\/pu\\/vid\\/1280x720\\/1Oq96FUZ8SlWfgwJ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509948494782465\\/pu\\/vid\\/640x360\\/RD7-cBCo6nmT-TRH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2759\":{\"media\":[{\"id\":1554509780647116805,\"id_str\":\"1554509780647116805\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6aMtXgAUSWLB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6aMtXgAUSWLB.jpg\",\"url\":\"https:\\/\\/t.co\\/AqJKsLOsxh\",\"display_url\":\"pic.twitter.com\\/AqJKsLOsxh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TamsanqaMkoko\\/status\\/1554509787680935950\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1170,\"h\":1150,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1170,\"h\":1150,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"}}}]},\"2760\":null,\"2761\":{\"media\":[{\"id\":1554502557095149570,\"id_str\":\"1554502557095149570\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554502557095149570\\/img\\/hI-QZm8cFXAqmLSd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554502557095149570\\/img\\/hI-QZm8cFXAqmLSd.jpg\",\"url\":\"https:\\/\\/t.co\\/n0sReOf9zK\",\"display_url\":\"pic.twitter.com\\/n0sReOf9zK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/business\\/status\\/1554503541112410114\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}},\"source_status_id\":1554503541112410114,\"source_status_id_str\":\"1554503541112410114\",\"source_user_id\":34713362,\"source_user_id_str\":\"34713362\",\"video_info\":{\"aspect_ratio\":[76,135],\"duration_millis\":36586,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554502557095149570\\/vid\\/608x1080\\/TpMiMDOgkQBxtAf-.mp4?tag=14\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554502557095149570\\/vid\\/480x852\\/AVBIO5k5xMMXksSn.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554502557095149570\\/pl\\/Aby5bu0a49t3sHbJ.m3u8?tag=14&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554502557095149570\\/vid\\/320x568\\/_9zODBrjpLUzS-og.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"2762\":null,\"2763\":{\"media\":[{\"id\":1554500466029088769,\"id_str\":\"1554500466029088769\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKx8BDX0AEqw8n.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKx8BDX0AEqw8n.jpg\",\"url\":\"https:\\/\\/t.co\\/wfcKf4fzdC\",\"display_url\":\"pic.twitter.com\\/wfcKf4fzdC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/joas_moloto\\/status\\/1554500469648756738\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1344,\"resize\":\"fit\"},\"small\":{\"w\":546,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":964,\"h\":1200,\"resize\":\"fit\"}}}]},\"2764\":null,\"2765\":{\"media\":[{\"id\":1554495757314625538,\"id_str\":\"1554495757314625538\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKtp7uXEAIXSa8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKtp7uXEAIXSa8.jpg\",\"url\":\"https:\\/\\/t.co\\/56IvZquu0h\",\"display_url\":\"pic.twitter.com\\/56IvZquu0h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shabs_i_r\\/status\\/1554495766860800002\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":498,\"h\":280,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":280,\"resize\":\"fit\"},\"large\":{\"w\":498,\"h\":280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[249,140],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZKtp7uXEAIXSa8.mp4\"}]}}]},\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":{\"media\":[{\"id\":1554490154169008130,\"id_str\":\"1554490154169008130\",\"indices\":[28,51],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKojyYWAAIEa5y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKojyYWAAIEa5y.jpg\",\"url\":\"https:\\/\\/t.co\\/O2MURMyCfd\",\"display_url\":\"pic.twitter.com\\/O2MURMyCfd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MaxwellPhakath3\\/status\\/1554490164868792320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1157,\"h\":753,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":443,\"resize\":\"fit\"},\"large\":{\"w\":1157,\"h\":753,\"resize\":\"fit\"}}}]},\"2771\":{\"media\":[{\"id\":1554489855316475905,\"id_str\":\"1554489855316475905\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKoSZEWQAExk8D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKoSZEWQAExk8D.jpg\",\"url\":\"https:\\/\\/t.co\\/Uhn4Xr4kcc\",\"display_url\":\"pic.twitter.com\\/Uhn4Xr4kcc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mncebans\\/status\\/1554489863310827521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1446,\"resize\":\"fit\"},\"medium\":{\"w\":896,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554489860551057409,\"id_str\":\"1554489860551057409\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKoSskXoAEiBX_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKoSskXoAEiBX_.jpg\",\"url\":\"https:\\/\\/t.co\\/Uhn4Xr4kcc\",\"display_url\":\"pic.twitter.com\\/Uhn4Xr4kcc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mncebans\\/status\\/1554489863310827521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":500,\"h\":607,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":607,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":607,\"resize\":\"fit\"}}}]},\"2772\":null,\"2773\":{\"media\":[{\"id\":1554486685232238592,\"id_str\":\"1554486685232238592\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKlZ3lXkAAIO14.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKlZ3lXkAAIO14.jpg\",\"url\":\"https:\\/\\/t.co\\/Wlc7x6tM2p\",\"display_url\":\"pic.twitter.com\\/Wlc7x6tM2p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SASOCIALMEDIANE\\/status\\/1554486695206297601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":{\"media\":[{\"id\":1554479225855418368,\"id_str\":\"1554479225855418368\",\"indices\":[207,230],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKenrPWIAAC9rI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKenrPWIAAC9rI.jpg\",\"url\":\"https:\\/\\/t.co\\/AFHM8HOQfo\",\"display_url\":\"pic.twitter.com\\/AFHM8HOQfo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katsomedia24\\/status\\/1554479228913127425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"small\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":568,\"h\":328,\"resize\":\"fit\"}}}]},\"2781\":null,\"2782\":null,\"2783\":{\"media\":[{\"id\":1554478697591312385,\"id_str\":\"1554478697591312385\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478697591312385\\/pu\\/img\\/wE2eZfNZHzmtQsxG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554478697591312385\\/pu\\/img\\/wE2eZfNZHzmtQsxG.jpg\",\"url\":\"https:\\/\\/t.co\\/EscvsPxmiY\",\"display_url\":\"pic.twitter.com\\/EscvsPxmiY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NNehoreka\\/status\\/1554478892198625286\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":46321,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478697591312385\\/pu\\/vid\\/480x848\\/HPRtJfMGplnJ6101.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478697591312385\\/pu\\/vid\\/320x564\\/RryA7_CjmCs7ULs5.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554478697591312385\\/pu\\/pl\\/0ypl4S2YsJ5CWEtY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":{\"media\":[{\"id\":1554457134791856129,\"id_str\":\"1554457134791856129\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554457134791856129\\/pu\\/img\\/9p76OAUqcnfOa_HV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554457134791856129\\/pu\\/img\\/9p76OAUqcnfOa_HV.jpg\",\"url\":\"https:\\/\\/t.co\\/vDQRp0yqRL\",\"display_url\":\"pic.twitter.com\\/vDQRp0yqRL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MR_MoreTAR\\/status\\/1554457188806049793\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":900,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[5,4],\"duration_millis\":85733,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554457134791856129\\/pu\\/vid\\/450x360\\/3lT_0jQ0rHBNPimX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554457134791856129\\/pu\\/pl\\/aHPuzl5-E33yw0OW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554457134791856129\\/pu\\/vid\\/336x270\\/EvxLIX6UxnwWNNp5.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554457134791856129\\/pu\\/vid\\/900x720\\/B_X-cfVfPEWZ64FO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2790\":null,\"2791\":{\"media\":[{\"id\":1554449136623255558,\"id_str\":\"1554449136623255558\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDQQHXgAYmwSB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDQQHXgAYmwSB.jpg\",\"url\":\"https:\\/\\/t.co\\/2gHeUoCHhy\",\"display_url\":\"pic.twitter.com\\/2gHeUoCHhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blacjesusernest\\/status\\/1554449181854601220\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554449151362056192,\"id_str\":\"1554449151362056192\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDRHBXwAAJq_q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDRHBXwAAJq_q.jpg\",\"url\":\"https:\\/\\/t.co\\/2gHeUoCHhy\",\"display_url\":\"pic.twitter.com\\/2gHeUoCHhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blacjesusernest\\/status\\/1554449181854601220\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554449168785178626,\"id_str\":\"1554449168785178626\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDSH7XgAIljpR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDSH7XgAIljpR.jpg\",\"url\":\"https:\\/\\/t.co\\/2gHeUoCHhy\",\"display_url\":\"pic.twitter.com\\/2gHeUoCHhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blacjesusernest\\/status\\/1554449181854601220\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1554449178855710723,\"id_str\":\"1554449178855710723\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKDStcXoAM0iVq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKDStcXoAM0iVq.jpg\",\"url\":\"https:\\/\\/t.co\\/2gHeUoCHhy\",\"display_url\":\"pic.twitter.com\\/2gHeUoCHhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blacjesusernest\\/status\\/1554449181854601220\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"2792\":null,\"2793\":null,\"2794\":{\"media\":[{\"id\":1554447421517750273,\"id_str\":\"1554447421517750273\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKBsa2WYAEJzIr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKBsa2WYAEJzIr.jpg\",\"url\":\"https:\\/\\/t.co\\/N9ZqGf3VN7\",\"display_url\":\"pic.twitter.com\\/N9ZqGf3VN7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sgmpodcst\\/status\\/1554447424743145473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":1636,\"h\":764,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":560,\"resize\":\"fit\"}}}]},\"2795\":null,\"2796\":{\"media\":[{\"id\":1554445545602793473,\"id_str\":\"1554445545602793473\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ__OhXwAEkQp_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ__OhXwAEkQp_.jpg\",\"url\":\"https:\\/\\/t.co\\/NAdqxigYof\",\"display_url\":\"pic.twitter.com\\/NAdqxigYof\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Shaidz\\/status\\/1554445549478330370\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":922,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"}}}]},\"2797\":{\"media\":[{\"id\":1554443688658575362,\"id_str\":\"1554443688658575362\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ-TI3XoAIlLR9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ-TI3XoAIlLR9.jpg\",\"url\":\"https:\\/\\/t.co\\/9BeySZNhIz\",\"display_url\":\"pic.twitter.com\\/9BeySZNhIz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nianyi_yishujia\\/status\\/1554443692014010369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1552,\"h\":1552,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2798\":null,\"2799\":{\"media\":[{\"id\":1554443348676591617,\"id_str\":\"1554443348676591617\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WVWQAEjeAl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WVWQAEjeAl.jpg\",\"url\":\"https:\\/\\/t.co\\/4dKijouIaE\",\"display_url\":\"pic.twitter.com\\/4dKijouIaE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/035Trendsetter\\/status\\/1554443355383373824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":457,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":457,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":457,\"resize\":\"fit\"}}},{\"id\":1554443348668211201,\"id_str\":\"1554443348668211201\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WTWYAExzCH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WTWYAExzCH.jpg\",\"url\":\"https:\\/\\/t.co\\/4dKijouIaE\",\"display_url\":\"pic.twitter.com\\/4dKijouIaE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/035Trendsetter\\/status\\/1554443355383373824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":348,\"h\":210,\"resize\":\"fit\"},\"medium\":{\"w\":348,\"h\":210,\"resize\":\"fit\"},\"large\":{\"w\":348,\"h\":210,\"resize\":\"fit\"}}},{\"id\":1554443348668194817,\"id_str\":\"1554443348668194817\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WTWIAEaH1Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WTWIAEaH1Q.jpg\",\"url\":\"https:\\/\\/t.co\\/4dKijouIaE\",\"display_url\":\"pic.twitter.com\\/4dKijouIaE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/035Trendsetter\\/status\\/1554443355383373824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":273,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":273,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":273,\"resize\":\"fit\"}}},{\"id\":1554443348655710211,\"id_str\":\"1554443348655710211\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WQXoAMNWNx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ9_WQXoAMNWNx.jpg\",\"url\":\"https:\\/\\/t.co\\/4dKijouIaE\",\"display_url\":\"pic.twitter.com\\/4dKijouIaE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/035Trendsetter\\/status\\/1554443355383373824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":653,\"resize\":\"fit\"},\"large\":{\"w\":1170,\"h\":1123,\"resize\":\"fit\"},\"medium\":{\"w\":1170,\"h\":1123,\"resize\":\"fit\"}}}]},\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":{\"media\":[{\"id\":1554414416040452103,\"id_str\":\"1554414416040452103\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJjrP3WYAclSdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJjrP3WYAclSdI.jpg\",\"url\":\"https:\\/\\/t.co\\/fAsforigNa\",\"display_url\":\"pic.twitter.com\\/fAsforigNa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554414418879979521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2807\":{\"media\":[{\"id\":1554413464898228225,\"id_str\":\"1554413464898228225\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiz4lX0AEs5zY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiz4lX0AEs5zY.jpg\",\"url\":\"https:\\/\\/t.co\\/K1PNNdGn6i\",\"display_url\":\"pic.twitter.com\\/K1PNNdGn6i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554413467653873667\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2808\":{\"media\":[{\"id\":1554412195747864578,\"id_str\":\"1554412195747864578\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJhqAoWIAI3868.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJhqAoWIAI3868.jpg\",\"url\":\"https:\\/\\/t.co\\/CxXd6UhkBz\",\"display_url\":\"pic.twitter.com\\/CxXd6UhkBz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1554412198834872322\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":500,\"resize\":\"fit\"}}}]},\"2809\":null,\"2810\":{\"media\":[{\"id\":1554399300125425664,\"id_str\":\"1554399300125425664\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJV7YsXgAAN87k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJV7YsXgAAN87k.jpg\",\"url\":\"https:\\/\\/t.co\\/UFe6dxtSUs\",\"display_url\":\"pic.twitter.com\\/UFe6dxtSUs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sabutanawa\\/status\\/1554399326910152705\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"2811\":{\"media\":[{\"id\":1554393781797003264,\"id_str\":\"1554393781797003264\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554393781797003264\\/pu\\/img\\/_hRKPBaOmC2zfJqa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554393781797003264\\/pu\\/img\\/_hRKPBaOmC2zfJqa.jpg\",\"url\":\"https:\\/\\/t.co\\/HRv6z2Rr39\",\"display_url\":\"pic.twitter.com\\/HRv6z2Rr39\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mbhape1\\/status\\/1554393853423230976\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":28303,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554393781797003264\\/pu\\/vid\\/640x360\\/895zOvmlIrJggttO.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554393781797003264\\/pu\\/vid\\/1280x720\\/KvWzWQJWyt0qvEq5.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554393781797003264\\/pu\\/vid\\/480x270\\/l-UPQv1O0NNUUk3h.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554393781797003264\\/pu\\/pl\\/uo90Zv-t5DhhQjQa.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2812\":{\"media\":[{\"id\":1554390694319489024,\"id_str\":\"1554390694319489024\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554390694319489024\\/pu\\/img\\/twxKxHgadjqBuAoq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554390694319489024\\/pu\\/img\\/twxKxHgadjqBuAoq.jpg\",\"url\":\"https:\\/\\/t.co\\/uSy9eqVBoM\",\"display_url\":\"pic.twitter.com\\/uSy9eqVBoM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mbhape1\\/status\\/1554390773868658688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":40271,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554390694319489024\\/pu\\/vid\\/640x360\\/eNIZz2U1-gPJmFKZ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554390694319489024\\/pu\\/vid\\/1280x720\\/bn9VV0kY-3LJJ63j.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554390694319489024\\/pu\\/vid\\/480x270\\/rxu9OzWZBPL3E_vb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554390694319489024\\/pu\\/pl\\/KrS_gu0UfwNWMLC2.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2813\":{\"media\":[{\"id\":1554389677603536896,\"id_str\":\"1554389677603536896\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554389677603536896\\/pu\\/img\\/HmrgsSyqIC9AZ1mk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554389677603536896\\/pu\\/img\\/HmrgsSyqIC9AZ1mk.jpg\",\"url\":\"https:\\/\\/t.co\\/goNfNSu1uR\",\"display_url\":\"pic.twitter.com\\/goNfNSu1uR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wellmaidsa\\/status\\/1554389905765269504\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":31533,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554389677603536896\\/pu\\/vid\\/480x270\\/Sni1TUG96DI8r0di.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554389677603536896\\/pu\\/vid\\/1280x720\\/TRllfRnYnfSFbS2d.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554389677603536896\\/pu\\/pl\\/uyaJzfjLiLDo1OvK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554389677603536896\\/pu\\/vid\\/640x360\\/sFM3irseoWl69t4B.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":{\"media\":[{\"id\":1554178680838037506,\"id_str\":\"1554178680838037506\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGNRpzWIAI66_D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGNRpzWIAI66_D.jpg\",\"url\":\"https:\\/\\/t.co\\/rmtR5q8WIC\",\"display_url\":\"pic.twitter.com\\/rmtR5q8WIC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TTraemuziq\\/status\\/1554178720222642177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"2822\":null,\"2823\":{\"media\":[{\"id\":1554167109072130053,\"id_str\":\"1554167109072130053\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554167109072130053\\/pu\\/img\\/xjVO9hYkNUwInrE_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554167109072130053\\/pu\\/img\\/xjVO9hYkNUwInrE_.jpg\",\"url\":\"https:\\/\\/t.co\\/q3ImrGHJGZ\",\"display_url\":\"pic.twitter.com\\/q3ImrGHJGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bigsmokevisuals\\/status\\/1554167352694120451\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140010,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554167109072130053\\/pu\\/pl\\/acfWJ4pvOpsy0GEx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554167109072130053\\/pu\\/vid\\/640x360\\/m8s_JUeNod4GnXoM.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554167109072130053\\/pu\\/vid\\/1280x720\\/hD7oCZmmzzjrzYKW.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554167109072130053\\/pu\\/vid\\/480x270\\/lbrIfZYWkwJdnwE3.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2824\":{\"media\":[{\"id\":1554163360006021122,\"id_str\":\"1554163360006021122\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF_V3QWIAILNsL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF_V3QWIAILNsL.jpg\",\"url\":\"https:\\/\\/t.co\\/Pt2UpQ0VwC\",\"display_url\":\"pic.twitter.com\\/Pt2UpQ0VwC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TNkangane\\/status\\/1554163364196225025\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":1600,\"resize\":\"fit\"}}}]},\"2825\":{\"media\":[{\"id\":1554160313498537985,\"id_str\":\"1554160313498537985\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF8kiIXEAEpEfa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF8kiIXEAEpEfa.jpg\",\"url\":\"https:\\/\\/t.co\\/eTHU88ALsz\",\"display_url\":\"pic.twitter.com\\/eTHU88ALsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/intandoyabantu\\/status\\/1554160326706438147\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":705,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":1792,\"h\":1053,\"resize\":\"fit\"}}},{\"id\":1554160313443958784,\"id_str\":\"1554160313443958784\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF8kh7WQAAXJxv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF8kh7WQAAXJxv.jpg\",\"url\":\"https:\\/\\/t.co\\/eTHU88ALsz\",\"display_url\":\"pic.twitter.com\\/eTHU88ALsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/intandoyabantu\\/status\\/1554160326706438147\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2826\":{\"media\":[{\"id\":1554115923337961472,\"id_str\":\"1554115923337961472\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFUMr5WYAAhSn7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFUMr5WYAAhSn7.jpg\",\"url\":\"https:\\/\\/t.co\\/rhQ2uMKB5X\",\"display_url\":\"pic.twitter.com\\/rhQ2uMKB5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/therd_suspect\\/status\\/1554115937758072832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2827\":{\"media\":[{\"id\":1554113577455435778,\"id_str\":\"1554113577455435778\",\"indices\":[267,290],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113577455435778\\/pu\\/img\\/hjIDhAKkbuiNb9Bz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554113577455435778\\/pu\\/img\\/hjIDhAKkbuiNb9Bz.jpg\",\"url\":\"https:\\/\\/t.co\\/08VXh3IRc9\",\"display_url\":\"pic.twitter.com\\/08VXh3IRc9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zakes_Twala\\/status\\/1554113629376626689\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":516,\"h\":528,\"resize\":\"fit\"},\"large\":{\"w\":516,\"h\":528,\"resize\":\"fit\"},\"medium\":{\"w\":516,\"h\":528,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,44],\"duration_millis\":57091,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554113577455435778\\/pu\\/pl\\/4AUL08c9JSTta-fM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554113577455435778\\/pu\\/vid\\/516x528\\/VacN72V1TEhZnrpA.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554113577455435778\\/pu\\/vid\\/320x326\\/zdke6puQuiFNvSdB.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2828\":null,\"2829\":{\"media\":[{\"id\":1554101251129970688,\"id_str\":\"1554101251129970688\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFG2pqXkAAO0eU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFG2pqXkAAO0eU.jpg\",\"url\":\"https:\\/\\/t.co\\/35QUXOLcbz\",\"display_url\":\"pic.twitter.com\\/35QUXOLcbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/N_Mphakama\\/status\\/1554101272650850304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"2830\":{\"media\":[{\"id\":1554093602036391937,\"id_str\":\"1554093602036391937\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554093602036391937\\/pu\\/img\\/Q9_bxow5Ha8smmHs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554093602036391937\\/pu\\/img\\/Q9_bxow5Ha8smmHs.jpg\",\"url\":\"https:\\/\\/t.co\\/bzkTt1pzOI\",\"display_url\":\"pic.twitter.com\\/bzkTt1pzOI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/devilbehindart\\/status\\/1554094011962597381\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":31333,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554093602036391937\\/pu\\/vid\\/320x568\\/LdSkEXwg98H5lCLL.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554093602036391937\\/pu\\/vid\\/480x852\\/u3NsP7bNbMcYZgPJ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554093602036391937\\/pu\\/vid\\/720x1280\\/UnkaoUmlrKKk32yb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554093602036391937\\/pu\\/pl\\/GnK0GPKsF-TrMN3i.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":{\"media\":[{\"id\":1554050008177049600,\"id_str\":\"1554050008177049600\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554050008177049600\\/pu\\/img\\/Qjz03TkpRu2TMiye.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554050008177049600\\/pu\\/img\\/Qjz03TkpRu2TMiye.jpg\",\"url\":\"https:\\/\\/t.co\\/FGkia7HxT1\",\"display_url\":\"pic.twitter.com\\/FGkia7HxT1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShalomDrt\\/status\\/1554050111839297537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":34600,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554050008177049600\\/pu\\/vid\\/480x852\\/PO_CIvvE65Posjiy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554050008177049600\\/pu\\/vid\\/576x1024\\/BrtMVzFWRK2__reO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554050008177049600\\/pu\\/vid\\/320x568\\/09OzywR6QiBkYRCa.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554050008177049600\\/pu\\/pl\\/hguozhT_fwAmqqIa.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":{\"media\":[{\"id\":1553683471444361218,\"id_str\":\"1553683471444361218\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553683471444361218\\/pu\\/img\\/8geYnQEq2Y1OU6tb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553683471444361218\\/pu\\/img\\/8geYnQEq2Y1OU6tb.jpg\",\"url\":\"https:\\/\\/t.co\\/FMpJmPhb5g\",\"display_url\":\"pic.twitter.com\\/FMpJmPhb5g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MthembuSisekelo\\/status\\/1553683702181494786\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":17901,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553683471444361218\\/pu\\/pl\\/kOD5D3EPwlwoY7re.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553683471444361218\\/pu\\/vid\\/720x1280\\/zK75FuGTjiAUOfIt.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553683471444361218\\/pu\\/vid\\/480x852\\/B9x8mGssIHj0bpjh.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553683471444361218\\/pu\\/vid\\/320x568\\/uRd9b3vp7tdRanAQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2839\":{\"media\":[{\"id\":1553660229103108097,\"id_str\":\"1553660229103108097\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FY-1vylXwAEMZ9j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FY-1vylXwAEMZ9j.jpg\",\"url\":\"https:\\/\\/t.co\\/Ewd1idfKZJ\",\"display_url\":\"pic.twitter.com\\/Ewd1idfKZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TshabalalaP\\/status\\/1553660238896812033\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"small\":{\"w\":354,\"h\":252,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":354,\"h\":252,\"resize\":\"fit\"},\"medium\":{\"w\":354,\"h\":252,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[59,42],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FY-1vylXwAEMZ9j.mp4\"}]}}]},\"2840\":{\"media\":[{\"id\":1553456869200601089,\"id_str\":\"1553456869200601089\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY78yr6XoAEgi9p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY78yr6XoAEgi9p.jpg\",\"url\":\"https:\\/\\/t.co\\/hYMu1t5kcS\",\"display_url\":\"pic.twitter.com\\/hYMu1t5kcS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ConormaraZ\\/status\\/1553456916604518400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"}}},{\"id\":1553456882551078912,\"id_str\":\"1553456882551078912\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY78zdpXwAAmbZx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY78zdpXwAAmbZx.jpg\",\"url\":\"https:\\/\\/t.co\\/hYMu1t5kcS\",\"display_url\":\"pic.twitter.com\\/hYMu1t5kcS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ConormaraZ\\/status\\/1553456916604518400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1105,\"resize\":\"fit\"},\"small\":{\"w\":665,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1105,\"resize\":\"fit\"}}},{\"id\":1553456897327599618,\"id_str\":\"1553456897327599618\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY780UsXkAIcFPu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY780UsXkAIcFPu.jpg\",\"url\":\"https:\\/\\/t.co\\/hYMu1t5kcS\",\"display_url\":\"pic.twitter.com\\/hYMu1t5kcS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ConormaraZ\\/status\\/1553456916604518400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":642,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":2019,\"resize\":\"fit\"}}},{\"id\":1553456914494791680,\"id_str\":\"1553456914494791680\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY781UpWIAAXSfZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY781UpWIAAXSfZ.jpg\",\"url\":\"https:\\/\\/t.co\\/hYMu1t5kcS\",\"display_url\":\"pic.twitter.com\\/hYMu1t5kcS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ConormaraZ\\/status\\/1553456916604518400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":936,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1385,\"resize\":\"fit\"}}}]},\"2841\":{\"media\":[{\"id\":1553371681707753477,\"id_str\":\"1553371681707753477\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY6vUHxXgAULRHg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY6vUHxXgAULRHg.jpg\",\"url\":\"https:\\/\\/t.co\\/FiMTVBbjgy\",\"display_url\":\"pic.twitter.com\\/FiMTVBbjgy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AllLife2Africa\\/status\\/1553371739631112192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}}]},\"2842\":null,\"2843\":{\"media\":[{\"id\":1553288189812539392,\"id_str\":\"1553288189812539392\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY5jYQOWAAAER8m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY5jYQOWAAAER8m.jpg\",\"url\":\"https:\\/\\/t.co\\/crrUDJNatt\",\"display_url\":\"pic.twitter.com\\/crrUDJNatt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/babieRinenharo\\/status\\/1553288217084010497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":587,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":587,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":554,\"resize\":\"fit\"}}}]},\"2844\":{\"media\":[{\"id\":1553267670019186694,\"id_str\":\"1553267670019186694\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY5Qt2CXoAYAWOO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY5Qt2CXoAYAWOO.jpg\",\"url\":\"https:\\/\\/t.co\\/MQmgXsTTVn\",\"display_url\":\"pic.twitter.com\\/MQmgXsTTVn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinaAmbSA\\/status\\/1553267678663557120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":1199,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":204,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":360,\"h\":1199,\"resize\":\"fit\"}}}]},\"2845\":null,\"2846\":{\"media\":[{\"id\":1553018254779731968,\"id_str\":\"1553018254779731968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1t393X0AAJbw7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1t393X0AAJbw7.jpg\",\"url\":\"https:\\/\\/t.co\\/f3nk93VtWj\",\"display_url\":\"pic.twitter.com\\/f3nk93VtWj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Loot_HereZA\\/status\\/1553018275403104258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":573,\"h\":655,\"resize\":\"fit\"},\"small\":{\"w\":573,\"h\":655,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":573,\"h\":655,\"resize\":\"fit\"}}},{\"id\":1553018263537336320,\"id_str\":\"1553018263537336320\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1t4efWQAAjHu9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1t4efWQAAjHu9.jpg\",\"url\":\"https:\\/\\/t.co\\/f3nk93VtWj\",\"display_url\":\"pic.twitter.com\\/f3nk93VtWj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Loot_HereZA\\/status\\/1553018275403104258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":398,\"resize\":\"fit\"},\"large\":{\"w\":956,\"h\":559,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":559,\"resize\":\"fit\"}}},{\"id\":1553018269023477763,\"id_str\":\"1553018269023477763\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1t4y7WIAMnIfe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1t4y7WIAMnIfe.jpg\",\"url\":\"https:\\/\\/t.co\\/f3nk93VtWj\",\"display_url\":\"pic.twitter.com\\/f3nk93VtWj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Loot_HereZA\\/status\\/1553018275403104258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":548,\"h\":817,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":456,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":548,\"h\":817,\"resize\":\"fit\"}}}]},\"2847\":{\"media\":[{\"id\":1552911060935626753,\"id_str\":\"1552911060935626753\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY0MYdrX0AEh9pl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY0MYdrX0AEh9pl.jpg\",\"url\":\"https:\\/\\/t.co\\/op0RXnNbgg\",\"display_url\":\"pic.twitter.com\\/op0RXnNbgg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LivePretoria\\/status\\/1552911064886550528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"}}}]},\"2848\":null,\"2849\":null,\"2850\":{\"media\":[{\"id\":1556137549256880128,\"id_str\":\"1556137549256880128\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZiC2zUacAAILlm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZiC2zUacAAILlm.jpg\",\"url\":\"https:\\/\\/t.co\\/vw2BMTOixp\",\"display_url\":\"pic.twitter.com\\/vw2BMTOixp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GpbartlettP\\/status\\/1556137553518272512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":940,\"resize\":\"fit\"},\"small\":{\"w\":624,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":940,\"resize\":\"fit\"}}}]},\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":{\"media\":[{\"id\":1555992362622615553,\"id_str\":\"1555992362622615553\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"url\":\"https:\\/\\/t.co\\/DiKgxF4oTL\",\"display_url\":\"pic.twitter.com\\/DiKgxF4oTL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555992372194021376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":410,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":723,\"resize\":\"fit\"},\"large\":{\"w\":1279,\"h\":771,\"resize\":\"fit\"}}}]},\"2855\":{\"media\":[{\"id\":1555984739168927748,\"id_str\":\"1555984739168927748\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"url\":\"https:\\/\\/t.co\\/Fh3oav9sPe\",\"display_url\":\"pic.twitter.com\\/Fh3oav9sPe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555984785004281857\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44996,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555984739168927748\\/pu\\/vid\\/270x480\\/D5cwK4vi0hz2pAST.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555984739168927748\\/pu\\/pl\\/K4QJdsLMs-ZPhAbE.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2856\":null,\"2857\":{\"media\":[{\"id\":1555940231827832834,\"id_str\":\"1555940231827832834\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"url\":\"https:\\/\\/t.co\\/rPmfa5ojNK\",\"display_url\":\"pic.twitter.com\\/rPmfa5ojNK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555940250551259136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1067,\"resize\":\"fit\"}}}]},\"2858\":{\"media\":[{\"id\":1555921612242767873,\"id_str\":\"1555921612242767873\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"url\":\"https:\\/\\/t.co\\/Jt6aduFcg8\",\"display_url\":\"pic.twitter.com\\/Jt6aduFcg8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555921613857492993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":420,\"resize\":\"fit\"}}}]},\"2859\":{\"media\":[{\"id\":1555920653005402114,\"id_str\":\"1555920653005402114\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"url\":\"https:\\/\\/t.co\\/cpsTb251y5\",\"display_url\":\"pic.twitter.com\\/cpsTb251y5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555920654368575488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"2860\":null,\"2861\":null,\"2862\":{\"media\":[{\"id\":1555886494941958146,\"id_str\":\"1555886494941958146\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"url\":\"https:\\/\\/t.co\\/7S8nXC3rt6\",\"display_url\":\"pic.twitter.com\\/7S8nXC3rt6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ClintonSnowbird\\/status\\/1555886548486443008\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,523],\"duration_millis\":8243,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/pl\\/U7Nlq9pmp-N41ilH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/480x566\\/Hdy5WpODUY9LOQrv.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/320x376\\/nuoXXYdDEjBhA7JM.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/720x850\\/WZbKKofBJSIPujPW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2863\":null,\"2864\":{\"media\":[{\"id\":1555828432784789509,\"id_str\":\"1555828432784789509\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"url\":\"https:\\/\\/t.co\\/RsGGLqKP4f\",\"display_url\":\"pic.twitter.com\\/RsGGLqKP4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555828561424121857\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/720x1280\\/FArb2YOXMGAxyUtk.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/pl\\/ryTgae2bVgNFrzNI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/480x852\\/fyNbuq0e_nwbh0ub.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/320x568\\/VfnDqmf-mi7dOIqU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2865\":null,\"2866\":{\"media\":[{\"id\":1555765671199473664,\"id_str\":\"1555765671199473664\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"url\":\"https:\\/\\/t.co\\/lpzUJdfPzo\",\"display_url\":\"pic.twitter.com\\/lpzUJdfPzo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555765691919261696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":479,\"h\":320,\"resize\":\"fit\"}}}]},\"2867\":null,\"2868\":null,\"2869\":{\"media\":[{\"id\":1555645859471171584,\"id_str\":\"1555645859471171584\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"url\":\"https:\\/\\/t.co\\/G0zzCuKFup\",\"display_url\":\"pic.twitter.com\\/G0zzCuKFup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645910100631559\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":2251,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/720x1280\\/9EFVYSsznqLRIZrD.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/480x852\\/RdJpHhA3AAsmut9G.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/pl\\/cq6PEq7Np2L82jnl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/320x568\\/I0Xa6YFp0YHdioK4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2870\":{\"media\":[{\"id\":1555645871194357764,\"id_str\":\"1555645871194357764\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"url\":\"https:\\/\\/t.co\\/RPgFeJQ0op\",\"display_url\":\"pic.twitter.com\\/RPgFeJQ0op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1555645888277762050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":641,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":581,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":641,\"resize\":\"fit\"}}}]},\"2871\":{\"media\":[{\"id\":1555645149941825537,\"id_str\":\"1555645149941825537\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"url\":\"https:\\/\\/t.co\\/Cp9nEotCf4\",\"display_url\":\"pic.twitter.com\\/Cp9nEotCf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645152223543297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":561,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":594,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":594,\"resize\":\"fit\"}}}]},\"2872\":null,\"2873\":{\"media\":[{\"id\":1555642257319018499,\"id_str\":\"1555642257319018499\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"url\":\"https:\\/\\/t.co\\/541B1PcgCb\",\"display_url\":\"pic.twitter.com\\/541B1PcgCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NGOELITESTAR\\/status\\/1555642259760205824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":985,\"h\":830,\"resize\":\"fit\"},\"medium\":{\"w\":985,\"h\":830,\"resize\":\"fit\"}}}]},\"2874\":null,\"2875\":{\"media\":[{\"id\":1555599301182734336,\"id_str\":\"1555599301182734336\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"url\":\"https:\\/\\/t.co\\/PTk5Jmo7kY\",\"display_url\":\"pic.twitter.com\\/PTk5Jmo7kY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555599475577704449\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":11291,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/320x320\\/KD2WFS1-KrJ2WKB3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/pl\\/Ah97iK7MpQvYDm4W.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/720x720\\/wRT_-Fy6TboRR5A8.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/540x540\\/tkXcFN_I1dzprhOF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2876\":{\"media\":[{\"id\":1555598991483699200,\"id_str\":\"1555598991483699200\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"url\":\"https:\\/\\/t.co\\/6PzTwoecxo\",\"display_url\":\"pic.twitter.com\\/6PzTwoecxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555598994277023744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"2877\":null,\"2878\":null,\"2879\":null,\"2880\":null,\"2881\":null,\"2882\":{\"media\":[{\"id\":1555519327293657088,\"id_str\":\"1555519327293657088\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xqw6R7zay\",\"display_url\":\"pic.twitter.com\\/8Xqw6R7zay\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tomidearoso\\/status\\/1555519330288287746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"large\":{\"w\":594,\"h\":396,\"resize\":\"fit\"}}}]},\"2883\":{\"media\":[{\"id\":1555507551046967296,\"id_str\":\"1555507551046967296\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"url\":\"https:\\/\\/t.co\\/k5tjgsoLCv\",\"display_url\":\"pic.twitter.com\\/k5tjgsoLCv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thecableng\\/status\\/1555507581048741889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"medium\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"2884\":null,\"2885\":null,\"2886\":{\"media\":[{\"id\":1555166743181549575,\"id_str\":\"1555166743181549575\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"url\":\"https:\\/\\/t.co\\/0x9UZXqgs4\",\"display_url\":\"pic.twitter.com\\/0x9UZXqgs4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firamnews\\/status\\/1555166784336150528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"source_status_id\":1555166784336150528,\"source_status_id_str\":\"1555166784336150528\",\"source_user_id\":957288307179900930,\"source_user_id_str\":\"957288307179900930\",\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":65434,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555166743181549575\\/pu\\/pl\\/15OE6euJZfCsl53c.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555166743181549575\\/pu\\/vid\\/480x256\\/N1Q7HWwQLRwRaUij.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2887\":{\"media\":[{\"id\":1555467858410459136,\"id_str\":\"1555467858410459136\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"url\":\"https:\\/\\/t.co\\/SMudtOtjrp\",\"display_url\":\"pic.twitter.com\\/SMudtOtjrp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SaveThePeoplle\\/status\\/1555467862516666371\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"2888\":{\"media\":[{\"id\":1555463480823644162,\"id_str\":\"1555463480823644162\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYdy2uWAAIHvCd.jpg\",\"url\":\"https:\\/\\/t.co\\/ux84VrdNeJ\",\"display_url\":\"pic.twitter.com\\/ux84VrdNeJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/conzummate\\/status\\/1555464376261672960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2889\":null,\"2890\":{\"media\":[{\"id\":1555439841231478787,\"id_str\":\"1555439841231478787\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"url\":\"https:\\/\\/t.co\\/MaKgKNoo2B\",\"display_url\":\"pic.twitter.com\\/MaKgKNoo2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1555440103807504385\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":131583,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/540x540\\/InHagepyANDZUk3S.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/720x720\\/PkSprm5bH1Aj5ZuB.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/320x320\\/JiNEGZRZA3gEyeDS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/pl\\/WN-v3LOzk9GGaQ5Y.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2891\":{\"media\":[{\"id\":1555432425475432449,\"id_str\":\"1555432425475432449\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"url\":\"https:\\/\\/t.co\\/MBGIPebu1u\",\"display_url\":\"pic.twitter.com\\/MBGIPebu1u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/muyiwaowen\\/status\\/1555432430298882049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2892\":{\"media\":[{\"id\":1555429781474254848,\"id_str\":\"1555429781474254848\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"url\":\"https:\\/\\/t.co\\/aEzpnS8MzB\",\"display_url\":\"pic.twitter.com\\/aEzpnS8MzB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phone_Stores\\/status\\/1555429855797428224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6503,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/720x1280\\/7eZjhUupO4j5Lr3k.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/pl\\/658f3FGvvXZWXaG7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/480x852\\/wqzkSz7XIulXW_4P.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/320x568\\/a-d9_jR470LxlMYi.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2893\":{\"media\":[{\"id\":1555428357860458499,\"id_str\":\"1555428357860458499\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"url\":\"https:\\/\\/t.co\\/daV6xVvXdF\",\"display_url\":\"pic.twitter.com\\/daV6xVvXdF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555428458246848513\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":45009,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/540x540\\/_IZn5Au7zpSlaCBo.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/320x320\\/PiTUwD_PhvDnGvF8.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/720x720\\/RP0chz4f3x3aYt1X.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/pl\\/jqK6FPTePdj4kFMp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2894\":{\"media\":[{\"id\":1555427167911256067,\"id_str\":\"1555427167911256067\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"url\":\"https:\\/\\/t.co\\/YAElbkZ8X3\",\"display_url\":\"pic.twitter.com\\/YAElbkZ8X3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555427170872352768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":554,\"resize\":\"fit\"}}}]},\"2895\":null,\"2896\":{\"media\":[{\"id\":1555423884165382144,\"id_str\":\"1555423884165382144\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555423888192016384,\"id_str\":\"1555423888192016384\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yQrXkAAZFZR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yQrXkAAZFZR.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":614,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":650,\"resize\":\"fit\"}}},{\"id\":1555423891841077249,\"id_str\":\"1555423891841077249\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yeRX0AEG7_N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yeRX0AEG7_N.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":714,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":674,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":714,\"resize\":\"fit\"}}}]},\"2897\":{\"media\":[{\"id\":1555420334974697472,\"id_str\":\"1555420334974697472\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"url\":\"https:\\/\\/t.co\\/0AcEwTwWsz\",\"display_url\":\"pic.twitter.com\\/0AcEwTwWsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555423133896695808\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":60033,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/320x568\\/dFHQr-nIX2b3r35U.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/720x1280\\/3jlG9bYIw5jf_fQs.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/480x852\\/-5cLvdS2gjf3Dkq-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/pl\\/PrK4JdHUfpBDxv_s.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2898\":{\"media\":[{\"id\":1555420509881487360,\"id_str\":\"1555420509881487360\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"url\":\"https:\\/\\/t.co\\/rpnWM9UjaN\",\"display_url\":\"pic.twitter.com\\/rpnWM9UjaN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ffcproperties\\/status\\/1555420559139393537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":30207,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/480x360\\/7nOiaKBJKisMpbkd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/pl\\/G3gGlchVazeky7By.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/640x480\\/RtxvNpBo1a7UHAwX.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/360x270\\/yhSYwOuyfxDWYIqM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2899\":{\"media\":[{\"id\":1555414321768943618,\"id_str\":\"1555414321768943618\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"url\":\"https:\\/\\/t.co\\/8APk6oYuGN\",\"display_url\":\"pic.twitter.com\\/8APk6oYuGN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555414324369391616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"}}}]},\"2900\":null,\"2901\":{\"media\":[{\"id\":1555407802868310016,\"id_str\":\"1555407802868310016\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"url\":\"https:\\/\\/t.co\\/kdtxBAi7ug\",\"display_url\":\"pic.twitter.com\\/kdtxBAi7ug\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opiyansky\\/status\\/1555407811441467393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":824,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":824,\"resize\":\"fit\"}}}]},\"2902\":null,\"2903\":{\"media\":[{\"id\":1555403686330994690,\"id_str\":\"1555403686330994690\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"url\":\"https:\\/\\/t.co\\/zltNrcYkjY\",\"display_url\":\"pic.twitter.com\\/zltNrcYkjY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yaaseir\\/status\\/1555403943349714944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[427,240],\"duration_millis\":103120,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/pl\\/DM77wPyY71QN9zZr.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/640x360\\/WlrKyIqRjyDPbrWg.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/480x270\\/uuSSf9bQIJCPplkv.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/854x480\\/jRYPw6R7ayGsMpVX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2904\":{\"media\":[{\"id\":1555400976043220992,\"id_str\":\"1555400976043220992\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"url\":\"https:\\/\\/t.co\\/enFmEAy2gz\",\"display_url\":\"pic.twitter.com\\/enFmEAy2gz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Darling41595671\\/status\\/1555400982259179520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"2905\":null,\"2906\":{\"media\":[{\"id\":1555375344168869892,\"id_str\":\"1555375344168869892\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"url\":\"https:\\/\\/t.co\\/NwtOsx7Z7p\",\"display_url\":\"pic.twitter.com\\/NwtOsx7Z7p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NFPJNig\\/status\\/1555375695559380994\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":75835,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/vid\\/352x640\\/-zCgdCv8w2bxoDwo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/pl\\/hnzkfzMt-UvUYY5J.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/vid\\/320x580\\/10Nq3pMKpc0VUmbr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2907\":{\"media\":[{\"id\":1555370210193989632,\"id_str\":\"1555370210193989632\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"url\":\"https:\\/\\/t.co\\/SK3JMA9FMG\",\"display_url\":\"pic.twitter.com\\/SK3JMA9FMG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1555370218377166853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2908\":{\"media\":[{\"id\":1555363980968853504,\"id_str\":\"1555363980968853504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"url\":\"https:\\/\\/t.co\\/0NAHWhR8MZ\",\"display_url\":\"pic.twitter.com\\/0NAHWhR8MZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandorxinc\\/status\\/1555363998995988483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"2909\":{\"media\":[{\"id\":1555341930967572482,\"id_str\":\"1555341930967572482\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"url\":\"https:\\/\\/t.co\\/2ueIR9txeq\",\"display_url\":\"pic.twitter.com\\/2ueIR9txeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555341970872090626\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":19890,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/vid\\/320x426\\/ygIH0-2eXvU6UPrH.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/vid\\/480x640\\/1otRuz8-olWv-KI1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/pl\\/DrFeFGUfWHyZdTJ_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2910\":{\"media\":[{\"id\":1555341318657802240,\"id_str\":\"1555341318657802240\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"url\":\"https:\\/\\/t.co\\/iAL0HSO7tQ\",\"display_url\":\"pic.twitter.com\\/iAL0HSO7tQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sobioemma\\/status\\/1555341323653242880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"2911\":null,\"2912\":{\"media\":[{\"id\":1555330350544461824,\"id_str\":\"1555330350544461824\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}},{\"id\":1555330350578126848,\"id_str\":\"1555330350578126848\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp6X0AAwHhb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp6X0AAwHhb.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555330350573920256,\"id_str\":\"1555330350573920256\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp5XoAAbQcE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp5XoAAbQcE.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"}}},{\"id\":1555330350552842241,\"id_str\":\"1555330350552842241\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp0WAAES6k9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp0WAAES6k9.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"}}}]},\"2913\":{\"media\":[{\"id\":1555317034237526017,\"id_str\":\"1555317034237526017\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"url\":\"https:\\/\\/t.co\\/ud1UpF6RVS\",\"display_url\":\"pic.twitter.com\\/ud1UpF6RVS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SammyGr96158056\\/status\\/1555317037097951233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"2914\":{\"media\":[{\"id\":1555316793249599489,\"id_str\":\"1555316793249599489\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"url\":\"https:\\/\\/t.co\\/npACZaYBZJ\",\"display_url\":\"pic.twitter.com\\/npACZaYBZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndrewKunz7\\/status\\/1555316858437484544\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6366,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/pl\\/5h1qAlFO3Wjfszp0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/720x1280\\/_nlRLEJicH3OlrcD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/320x568\\/GgtYf3uTj4v65EvX.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/480x852\\/gYgRbDOdkaMdVX-F.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2915\":{\"media\":[{\"id\":1555313890539573252,\"id_str\":\"1555313890539573252\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"url\":\"https:\\/\\/t.co\\/sGrgwMYnR0\",\"display_url\":\"pic.twitter.com\\/sGrgwMYnR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zeus_el_Savage\\/status\\/1555313928296665088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":202,\"h\":424,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[101,212],\"duration_millis\":33368,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555313890539573252\\/pu\\/vid\\/202x424\\/hYr7_qoEOBkKtY8C.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555313890539573252\\/pu\\/pl\\/0Xv18zIjulSRmEBn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2916\":null,\"2917\":null,\"2918\":{\"media\":[{\"id\":1555313075116449793,\"id_str\":\"1555313075116449793\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"url\":\"https:\\/\\/t.co\\/J5gc59nY80\",\"display_url\":\"pic.twitter.com\\/J5gc59nY80\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555313085501652992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":866,\"h\":1298,\"resize\":\"fit\"}}}]},\"2919\":{\"media\":[{\"id\":1555308891436621826,\"id_str\":\"1555308891436621826\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"url\":\"https:\\/\\/t.co\\/pHWTp7I5mJ\",\"display_url\":\"pic.twitter.com\\/pHWTp7I5mJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555309544292630528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":30000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/pl\\/GHEnk6RQLac72-7X.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/576x1024\\/1FL8pLWfSJt69HEH.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/320x568\\/6AEfXFHEjZvEWKhF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/480x852\\/lxZBuuk9zRJ1JfP0.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2920\":{\"media\":[{\"id\":1555303203847249921,\"id_str\":\"1555303203847249921\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"url\":\"https:\\/\\/t.co\\/cbSE372zmL\",\"display_url\":\"pic.twitter.com\\/cbSE372zmL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Twenty_naira\\/status\\/1555303207236255744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":414,\"resize\":\"fit\"}}}]},\"2921\":{\"media\":[{\"id\":1555299449458622465,\"id_str\":\"1555299449458622465\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"url\":\"https:\\/\\/t.co\\/XmsWKco1NS\",\"display_url\":\"pic.twitter.com\\/XmsWKco1NS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trender_sam\\/status\\/1555299516613627904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,29],\"duration_millis\":9666,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/720x1044\\/7nFVI8KmnGYNP9DZ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/480x696\\/DwUdG5JPZxDj7Psg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/pl\\/FJFX0iTWZcmCKqxW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/320x464\\/G0juWsWiQpWtdy8L.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2922\":{\"media\":[{\"id\":1555297038035714048,\"id_str\":\"1555297038035714048\",\"indices\":[292,315],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/Na4Yekzzmu\",\"display_url\":\"pic.twitter.com\\/Na4Yekzzmu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555298493316665346\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":99433,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/480x852\\/GfMg0hknOsHbQ0Cs.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/pl\\/mjph1mkgOwWrNNOY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/320x568\\/1WSAo6vgb9sY1cYx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/720x1280\\/b58k3WlrkqqB3V_F.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2923\":null,\"2924\":{\"media\":[{\"id\":1555289978367889411,\"id_str\":\"1555289978367889411\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"url\":\"https:\\/\\/t.co\\/7rnj6pp7NE\",\"display_url\":\"pic.twitter.com\\/7rnj6pp7NE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555290140561625090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"2925\":{\"media\":[{\"id\":1555288389473259522,\"id_str\":\"1555288389473259522\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"url\":\"https:\\/\\/t.co\\/48lu9wGaF4\",\"display_url\":\"pic.twitter.com\\/48lu9wGaF4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555289069831311363\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":92066,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/320x568\\/8r8urqOuTb7j2ugN.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/720x1280\\/RE3mO4JBFZo3ZQ0Y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/pl\\/g0wjBfinjLJ5L3IM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/480x852\\/pJncnxyRoVU31tHb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2926\":{\"media\":[{\"id\":1555286117347459072,\"id_str\":\"1555286117347459072\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"url\":\"https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"display_url\":\"pic.twitter.com\\/Ie9UaQ7YBU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kinqbrizy1\\/status\\/1555286290148589571\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":54233,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/480x600\\/2yjFbGkea_xAosVJ.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/320x400\\/ebr-rUOfBYbUq6La.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/720x900\\/Qt0HgDnK3CJ_83hP.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/pl\\/IPGuaedar5KjzEzw.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2927\":{\"media\":[{\"id\":1555279899912552448,\"id_str\":\"1555279899912552448\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/eggArJK1mA\",\"display_url\":\"pic.twitter.com\\/eggArJK1mA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555279982598946821\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":7990,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/320x568\\/3CAxOgR4Wtd-_nPV.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/720x1280\\/1vrIwn1w_FhPseUY.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/480x852\\/eEkPAaIgR73Q_-Lo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/pl\\/ho0OH2_SEHuj7lU7.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2928\":{\"media\":[{\"id\":1555279715027587080,\"id_str\":\"1555279715027587080\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1355,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279724187947010,\"id_str\":\"1555279724187947010\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qz6XEAI0Tu-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qz6XEAI0Tu-.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":1419,\"resize\":\"fit\"},\"medium\":{\"w\":912,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279732568096774,\"id_str\":\"1555279732568096774\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2rTIWAAYlsSb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2rTIWAAYlsSb.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":550,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1336,\"resize\":\"fit\"},\"medium\":{\"w\":970,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279741061570562,\"id_str\":\"1555279741061570562\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2ryxWIAIjs4W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2ryxWIAIjs4W.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":928,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":526,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1028,\"h\":1329,\"resize\":\"fit\"}}}]},\"2929\":{\"media\":[{\"id\":1555274103359168513,\"id_str\":\"1555274103359168513\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"url\":\"https:\\/\\/t.co\\/XLJzMjNhun\",\"display_url\":\"pic.twitter.com\\/XLJzMjNhun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555274246074548227\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":37904,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/pl\\/e0qZWDZ73YPwgW9-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/480x270\\/b5f3W0110UvNl2Ts.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/640x360\\/wV71l8odAexeiRzx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/1280x720\\/B585NttRPIza2FyH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2930\":null,\"2931\":null,\"2932\":{\"media\":[{\"id\":1555272561373609984,\"id_str\":\"1555272561373609984\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"url\":\"https:\\/\\/t.co\\/A84bZqVB2K\",\"display_url\":\"pic.twitter.com\\/A84bZqVB2K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555272697474588673\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,283],\"duration_millis\":44981,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/480x848\\/jg-p-m9gEueooS2t.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/pl\\/_1Pl4nrxGO0DU3DD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/320x566\\/si4fG2J74VEZzfg-.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/640x1132\\/5mALZtxgsqSbUIhx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2933\":{\"media\":[{\"id\":1555270714822983680,\"id_str\":\"1555270714822983680\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}},{\"id\":1555270718039924738,\"id_str\":\"1555270718039924738\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuelZWIAIjOV9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuelZWIAIjOV9.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"2934\":{\"media\":[{\"id\":1555270415982936065,\"id_str\":\"1555270415982936065\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}},{\"id\":1555270419166412800,\"id_str\":\"1555270419166412800\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNMAWQAAh8Jk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNMAWQAAh8Jk.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270421817196545,\"id_str\":\"1555270421817196545\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNV4WAAEp2S4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNV4WAAEp2S4.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270446513328128,\"id_str\":\"1555270446513328128\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuOx4XEAAp50M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuOx4XEAAp50M.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":564,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":564,\"resize\":\"fit\"}}}]},\"2935\":{\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/RMj7g6MMC1\",\"display_url\":\"pic.twitter.com\\/RMj7g6MMC1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}},\"source_status_id\":1555248905692086274,\"source_status_id_str\":\"1555248905692086274\",\"source_user_id\":1279448672183476224,\"source_user_id_str\":\"1279448672183476224\"}]},\"2936\":{\"media\":[{\"id\":1555253487654641667,\"id_str\":\"1555253487654641667\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"url\":\"https:\\/\\/t.co\\/vEn321p0T2\",\"display_url\":\"pic.twitter.com\\/vEn321p0T2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Am_Benco\\/status\\/1555253770518405123\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22433,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/320x568\\/vTu3sRTScuxTnMbA.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/480x852\\/mE6nmTmpHZ8JkLVf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/pl\\/dkjo1rJAjW-R3CV3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/576x1024\\/sww_OBtxcImcpR5X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2937\":{\"media\":[{\"id\":1555250710274523136,\"id_str\":\"1555250710274523136\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"url\":\"https:\\/\\/t.co\\/EfUaut9kOK\",\"display_url\":\"pic.twitter.com\\/EfUaut9kOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555250716188581893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"2938\":{\"media\":[{\"id\":1555250004314431489,\"id_str\":\"1555250004314431489\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"url\":\"https:\\/\\/t.co\\/kzmzAnO5vv\",\"display_url\":\"pic.twitter.com\\/kzmzAnO5vv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Treasuregodwi7\\/status\\/1555250097927110658\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":24666,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/720x1280\\/HjspE8oqIOK9GuKS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/pl\\/YPA359CFpJL9ssnt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/320x568\\/QDduE-XwTXjvf8TD.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/480x852\\/KQNKV1WAbHs3YLRW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2939\":{\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/cmaB04hQQc\",\"display_url\":\"pic.twitter.com\\/cmaB04hQQc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}}}]},\"2940\":{\"media\":[{\"id\":1555247726476115968,\"id_str\":\"1555247726476115968\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"url\":\"https:\\/\\/t.co\\/UPSQQiIjql\",\"display_url\":\"pic.twitter.com\\/UPSQQiIjql\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555247814728470528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,5],\"duration_millis\":31858,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/648x360\\/rQNkjHuKbsyM268Q.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/1080x600\\/W0nQ4wa_mC9mUIZP.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/486x270\\/o3P6GT5uOIkzs909.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/pl\\/KWjaBWGlNingDWHa.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2941\":null,\"2942\":{\"media\":[{\"id\":1555245840435912705,\"id_str\":\"1555245840435912705\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVX2hGWIAEmARu.jpg\",\"url\":\"https:\\/\\/t.co\\/ifvkYa4wvx\",\"display_url\":\"pic.twitter.com\\/ifvkYa4wvx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SiR__DONY\\/status\\/1555245847591403520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":422,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":422,\"resize\":\"fit\"}}},{\"id\":1555245844638695426,\"id_str\":\"1555245844638695426\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVX2wwXgAIIV9L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVX2wwXgAIIV9L.jpg\",\"url\":\"https:\\/\\/t.co\\/ifvkYa4wvx\",\"display_url\":\"pic.twitter.com\\/ifvkYa4wvx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SiR__DONY\\/status\\/1555245847591403520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"small\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"medium\":{\"w\":415,\"h\":363,\"resize\":\"fit\"}}}]},\"2943\":{\"media\":[{\"id\":1555241323099312129,\"id_str\":\"1555241323099312129\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"url\":\"https:\\/\\/t.co\\/DGoLBK68RJ\",\"display_url\":\"pic.twitter.com\\/DGoLBK68RJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1555241326807060480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":348,\"resize\":\"fit\"}}}]},\"2944\":{\"media\":[{\"id\":1555240673586069506,\"id_str\":\"1555240673586069506\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"url\":\"https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"display_url\":\"pic.twitter.com\\/3Z0k3P5ZFq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555240679495929856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":351,\"h\":680,\"resize\":\"fit\"}}}]},\"2945\":{\"media\":[{\"id\":1555238932593377281,\"id_str\":\"1555238932593377281\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"url\":\"https:\\/\\/t.co\\/1UsANAgJJV\",\"display_url\":\"pic.twitter.com\\/1UsANAgJJV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brian_naija\\/status\\/1555239078848765957\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/480x852\\/H4pI4edokPFxT-qd.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/720x1280\\/CZQhA_38milakOke.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/320x568\\/hjpSUVee0zzrINr7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/pl\\/aRbtDSyFAm14x8m_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2946\":{\"media\":[{\"id\":1555237487114584064,\"id_str\":\"1555237487114584064\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"url\":\"https:\\/\\/t.co\\/ii0ZYtyYog\",\"display_url\":\"pic.twitter.com\\/ii0ZYtyYog\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555237490612731906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}}]},\"2947\":{\"media\":[{\"id\":1555236063790104577,\"id_str\":\"1555236063790104577\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"url\":\"https:\\/\\/t.co\\/q3EnTanOHT\",\"display_url\":\"pic.twitter.com\\/q3EnTanOHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555236168366686208\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44993,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/540x540\\/B_BvFbJR-n-YLRy_.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/320x320\\/LTK5fm5nPmdSNqjd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/pl\\/uJ4hrdZPOTFR0lt4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/720x720\\/KnwB8Mrio_eD4VdQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2948\":null,\"2949\":{\"media\":[{\"id\":1555231241796042752,\"id_str\":\"1555231241796042752\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"url\":\"https:\\/\\/t.co\\/0VeX3MpLGa\",\"display_url\":\"pic.twitter.com\\/0VeX3MpLGa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OMOJESUCFR\\/status\\/1555231420993478661\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":870,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":563,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[29,24],\"duration_millis\":8200,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/434x360\\/ZBmT1jXdhIVkZixP.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/pl\\/ziIHcO3DUJyFvSwm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/326x270\\/Z7GHgpuk4fsRvtjl.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/870x720\\/tKfffWMEJvBFaAlZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2950\":null,\"2951\":null,\"2952\":{\"media\":[{\"id\":1555224387703513092,\"id_str\":\"1555224387703513092\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"url\":\"https:\\/\\/t.co\\/W1gUdkdJgc\",\"display_url\":\"pic.twitter.com\\/W1gUdkdJgc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BriefNig\\/status\\/1555224391016931329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"medium\":{\"w\":577,\"h\":428,\"resize\":\"fit\"}}}]},\"2953\":{\"media\":[{\"id\":1555219206618103808,\"id_str\":\"1555219206618103808\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU_oOZWQAANjSA.jpg\",\"url\":\"https:\\/\\/t.co\\/s1bj2Id58o\",\"display_url\":\"pic.twitter.com\\/s1bj2Id58o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fatima_shaaikh\\/status\\/1555219220975308802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":668,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":379,\"h\":680,\"resize\":\"fit\"}}}]},\"2954\":{\"media\":[{\"id\":1555212987299946497,\"id_str\":\"1555212987299946497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"url\":\"https:\\/\\/t.co\\/2T16mzm66j\",\"display_url\":\"pic.twitter.com\\/2T16mzm66j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/edublogsng\\/status\\/1555213282570514433\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":45000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/640x360\\/x_NXsQ8iK4US-5pj.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/480x270\\/bLhkUhj9nzK-l_GR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/pl\\/dqzzSaQ_b-t6GjUm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/1280x720\\/mw1RIM4R48eTdCsy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2955\":{\"media\":[{\"id\":1555210948415307777,\"id_str\":\"1555210948415307777\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"url\":\"https:\\/\\/t.co\\/ttOTCeFsTr\",\"display_url\":\"pic.twitter.com\\/ttOTCeFsTr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1555210958066294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"2956\":null,\"2957\":null,\"2958\":{\"media\":[{\"id\":1555203508659490816,\"id_str\":\"1555203508659490816\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjge4pwSaL\",\"display_url\":\"pic.twitter.com\\/Qjge4pwSaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GistHubNaija\\/status\\/1555203587046887425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13867,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/720x1280\\/k-F63Ym3C_sN3LIK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/480x852\\/3WsVvLNzmsgirtbO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/320x568\\/WNfwsCEJhDNkTq7-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/pl\\/NkGr0e58zqw7mIF8.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2959\":null,\"2960\":{\"media\":[{\"id\":1555203034082414594,\"id_str\":\"1555203034082414594\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"url\":\"https:\\/\\/t.co\\/LcDAYcTaY0\",\"display_url\":\"pic.twitter.com\\/LcDAYcTaY0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1555203105435836416\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44999,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/320x568\\/cjQEq3KHYPJGaVAN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/480x852\\/uP6ONgZ3O-vicyS1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/pl\\/Sy9CyVPQs1AS-uQD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/576x1024\\/xrWWXIEBHuLPeD6_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":null,\"2965\":null,\"2966\":{\"media\":[{\"id\":1555196687752335361,\"id_str\":\"1555196687752335361\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"url\":\"https:\\/\\/t.co\\/LonB0rDlm4\",\"display_url\":\"pic.twitter.com\\/LonB0rDlm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olubabaoshole\\/status\\/1555196763736342531\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":11326,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/pl\\/ZQYk6Ea5vrm4UUAq.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/320x320\\/GLNAtxH_lQjC_EqI.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/720x720\\/yXfIafvOQ4pP6bNJ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/540x540\\/vslPIHRhbNh_GeGx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2967\":null,\"2968\":{\"media\":[{\"id\":1555190711372365825,\"id_str\":\"1555190711372365825\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"url\":\"https:\\/\\/t.co\\/geJezowyMb\",\"display_url\":\"pic.twitter.com\\/geJezowyMb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmaijoseph\\/status\\/1555191096170479617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"2969\":null,\"2970\":{\"media\":[{\"id\":1555183806751055874,\"id_str\":\"1555183806751055874\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"url\":\"https:\\/\\/t.co\\/wyrlRD1y4C\",\"display_url\":\"pic.twitter.com\\/wyrlRD1y4C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dj_borsh\\/status\\/1555184514900582401\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":59976,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/640x360\\/TJCJXwn7eTclPM0-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/pl\\/agxsbZkcMoja0vQu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/1280x720\\/sgNW-YKg90gjWX_w.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/480x270\\/bhesvUBaWIRT7GuL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2971\":{\"media\":[{\"id\":1555180460329897992,\"id_str\":\"1555180460329897992\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1933,\"resize\":\"fit\"}}},{\"id\":1555180470563897345,\"id_str\":\"1555180470563897345\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcZfWWAAE1Q8M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcZfWWAAE1Q8M.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1934,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555180477581037570,\"id_str\":\"1555180477581037570\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcZ5fXEAINHOL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcZ5fXEAINHOL.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":548,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":871,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":871,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555180485512511489,\"id_str\":\"1555180485512511489\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcaXCXwAEcpRD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcaXCXwAEcpRD.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":859,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":859,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":570,\"h\":680,\"resize\":\"fit\"}}}]},\"2972\":null,\"2973\":null,\"2974\":{\"media\":[{\"id\":1555174887903432704,\"id_str\":\"1555174887903432704\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"url\":\"https:\\/\\/t.co\\/OwCNmTJy2S\",\"display_url\":\"pic.twitter.com\\/OwCNmTJy2S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/K_h_a_l_i_f\\/status\\/1555174968110878720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20400,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/480x852\\/ctpBUa_FwUb7L7h2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/320x568\\/4qW2KHQkM9CjdBks.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/pl\\/_esVImalS8-0k5YS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/576x1024\\/s67CHmmonXSHQHvl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2975\":null,\"2976\":{\"media\":[{\"id\":1555173183489277957,\"id_str\":\"1555173183489277957\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"url\":\"https:\\/\\/t.co\\/1k4n29zj8M\",\"display_url\":\"pic.twitter.com\\/1k4n29zj8M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555173247641161729\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":44939,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555173183489277957\\/pu\\/pl\\/EuTmueUSV1xArakt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555173183489277957\\/pu\\/vid\\/480x256\\/UzYfdMDiiejZtmBm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2977\":null,\"2978\":{\"media\":[{\"id\":1555167868895068165,\"id_str\":\"1555167868895068165\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"url\":\"https:\\/\\/t.co\\/U63Lw3koX1\",\"display_url\":\"pic.twitter.com\\/U63Lw3koX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nwakaibeya001\\/status\\/1555168058779525126\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":9389,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/vid\\/352x640\\/79oHSuLgCG7zzH2-.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/vid\\/320x580\\/u2hkbKoEA3S-uC8A.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/pl\\/PrzU_-_QXQ9ymZgl.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2979\":{\"media\":[{\"id\":1555165190198640640,\"id_str\":\"1555165190198640640\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"url\":\"https:\\/\\/t.co\\/Brr9ZnDADz\",\"display_url\":\"pic.twitter.com\\/Brr9ZnDADz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555165192924831744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":502,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":638,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":638,\"resize\":\"fit\"}}}]},\"2980\":{\"media\":[{\"id\":1555161212412989443,\"id_str\":\"1555161212412989443\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"url\":\"https:\\/\\/t.co\\/C2HwqBfqlE\",\"display_url\":\"pic.twitter.com\\/C2HwqBfqlE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gobarta_\\/status\\/1555161230607777793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"2981\":{\"media\":[{\"id\":1555156992766902274,\"id_str\":\"1555156992766902274\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"url\":\"https:\\/\\/t.co\\/gliY1QIjih\",\"display_url\":\"pic.twitter.com\\/gliY1QIjih\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555157065131298817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"}}}]},\"2982\":null,\"2983\":{\"media\":[{\"id\":1555152665503563776,\"id_str\":\"1555152665503563776\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"url\":\"https:\\/\\/t.co\\/WOacyTORbz\",\"display_url\":\"pic.twitter.com\\/WOacyTORbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/spacemallio\\/status\\/1555152668116533248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"2984\":{\"media\":[{\"id\":1555149692396265473,\"id_str\":\"1555149692396265473\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"url\":\"https:\\/\\/t.co\\/k24n6sdcoO\",\"display_url\":\"pic.twitter.com\\/k24n6sdcoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BargainFortress\\/status\\/1555149702697476101\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":856,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"2985\":{\"media\":[{\"id\":1555149362526830592,\"id_str\":\"1555149362526830592\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"url\":\"https:\\/\\/t.co\\/UWW30ahzr7\",\"display_url\":\"pic.twitter.com\\/UWW30ahzr7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rukegetrich09\\/status\\/1555149398035906561\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":224,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[25,14],\"duration_millis\":43934,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555149362526830592\\/pu\\/pl\\/8qbj8Ae1UhgB0Oid.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555149362526830592\\/pu\\/vid\\/400x224\\/hkAJqhc-84wXii98.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2986\":{\"media\":[{\"id\":1555148898599141376,\"id_str\":\"1555148898599141376\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"url\":\"https:\\/\\/t.co\\/vJ5ijjcRis\",\"display_url\":\"pic.twitter.com\\/vJ5ijjcRis\",\"expanded_url\":\"https:\\/\\/twitter.com\\/welcometoabove\\/status\\/1555148913782493185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"2987\":null,\"2988\":{\"media\":[{\"id\":1555144210206031873,\"id_str\":\"1555144210206031873\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"url\":\"https:\\/\\/t.co\\/ZFgC36Ucpe\",\"display_url\":\"pic.twitter.com\\/ZFgC36Ucpe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zigproperties\\/status\\/1555144224714231809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2989\":null,\"2990\":null,\"2991\":{\"media\":[{\"id\":1555140005584142337,\"id_str\":\"1555140005584142337\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"url\":\"https:\\/\\/t.co\\/GeyHHH3sFh\",\"display_url\":\"pic.twitter.com\\/GeyHHH3sFh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555140625653186560\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,20],\"duration_millis\":23234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/320x710\\/sUlGPjp9bwuR-xos.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/pl\\/CH6qJuyVsASmLuie.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/576x1280\\/tzfmyJpEiui5cdvo.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/480x1066\\/joS6LMvKOkfZVeBs.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2992\":null,\"2993\":{\"media\":[{\"id\":1555138634113753088,\"id_str\":\"1555138634113753088\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"url\":\"https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"display_url\":\"pic.twitter.com\\/ZdoPAt0eNQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bright_agbons\\/status\\/1555139152135561218\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"medium\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"large\":{\"w\":224,\"h\":416,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[7,13],\"duration_millis\":30080,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138634113753088\\/pu\\/vid\\/224x416\\/w48B2529eINQ8WQw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138634113753088\\/pu\\/pl\\/KH8_zBIhrSC6604C.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2994\":{\"media\":[{\"id\":1555138321642409985,\"id_str\":\"1555138321642409985\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"url\":\"https:\\/\\/t.co\\/FkCxF40SeP\",\"display_url\":\"pic.twitter.com\\/FkCxF40SeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1555138525649043457\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,127],\"duration_millis\":24680,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/720x1270\\/6B3KaqqkGRHYXJT5.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/320x564\\/wc-3U7pxnfgkrjSR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/pl\\/6eolJiy9St2nlZhx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/480x846\\/cOOcoUa5Lp0q-4jI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2995\":{\"media\":[{\"id\":1555136504955125761,\"id_str\":\"1555136504955125761\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"url\":\"https:\\/\\/t.co\\/WeK9AczT9n\",\"display_url\":\"pic.twitter.com\\/WeK9AczT9n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555136512567697408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"2996\":null,\"2997\":{\"media\":[{\"id\":1555135449693392896,\"id_str\":\"1555135449693392896\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"url\":\"https:\\/\\/t.co\\/E8Qdn5xljL\",\"display_url\":\"pic.twitter.com\\/E8Qdn5xljL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Christoph7Onoja\\/status\\/1555135839843352576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":107527,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/1280x720\\/kZLKVK0G86bUBONu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/pl\\/fkOnzJrtBin9459j.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/640x360\\/y91a0rktjtgI-jIO.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/480x270\\/6A4NK6vyyTItGyTm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"2998\":{\"media\":[{\"id\":1555134911127887872,\"id_str\":\"1555134911127887872\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134926458077185,\"id_str\":\"1555134926458077185\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy-eVWQAEOgpq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy-eVWQAEOgpq.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134941029171200,\"id_str\":\"1555134941029171200\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy_UnXgAAte84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy_UnXgAAte84.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134953800835073,\"id_str\":\"1555134953800835073\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTzAEMXoAEdZMI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTzAEMXoAEdZMI.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"2999\":null,\"3000\":{\"media\":[{\"id\":1555132227209789440,\"id_str\":\"1555132227209789440\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTwhW2aAAAoQ0Y.png\",\"url\":\"https:\\/\\/t.co\\/zduT6xE89u\",\"display_url\":\"pic.twitter.com\\/zduT6xE89u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CrystosD\\/status\\/1555132666793840641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"},\"medium\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"large\":{\"w\":758,\"h\":421,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3001\":{\"media\":[{\"id\":1555130887028760576,\"id_str\":\"1555130887028760576\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"url\":\"https:\\/\\/t.co\\/I3KElydxVd\",\"display_url\":\"pic.twitter.com\\/I3KElydxVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1555130893794267138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}}]},\"3002\":{\"media\":[{\"id\":1555129115388350464,\"id_str\":\"1555129115388350464\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555129135541911553,\"id_str\":\"1555129135541911553\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTttZfWAAEkFZx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTttZfWAAEkFZx.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":769,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":637,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":769,\"resize\":\"fit\"}}},{\"id\":1555129143930617856,\"id_str\":\"1555129143930617856\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtt4vXgAAPG_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtt4vXgAAPG_F.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3003\":null,\"3004\":null,\"3005\":{\"media\":[{\"id\":1555127653304238080,\"id_str\":\"1555127653304238080\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"url\":\"https:\\/\\/t.co\\/AzpwIvRGzg\",\"display_url\":\"pic.twitter.com\\/AzpwIvRGzg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BernardTwise\\/status\\/1555127655908970497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"},\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"}}}]},\"3006\":{\"media\":[{\"id\":1555126804217843712,\"id_str\":\"1555126804217843712\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"url\":\"https:\\/\\/t.co\\/GkUDEs2ebr\",\"display_url\":\"pic.twitter.com\\/GkUDEs2ebr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SupremeContine1\\/status\\/1555126966491152384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":448,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":359,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":448,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,28],\"duration_millis\":31693,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/vid\\/510x270\\/sfBLHrtmMkpElxVd.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/vid\\/848x448\\/jwhGCltdMqrn_21i.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/pl\\/ihmjdIgM-oGthYfy.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3007\":{\"media\":[{\"id\":1555123015662424065,\"id_str\":\"1555123015662424065\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"url\":\"https:\\/\\/t.co\\/VjXGAOwrhN\",\"display_url\":\"pic.twitter.com\\/VjXGAOwrhN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1555123024881500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3008\":{\"media\":[{\"id\":1555122389062750208,\"id_str\":\"1555122389062750208\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"url\":\"https:\\/\\/t.co\\/MICtAAyTx6\",\"display_url\":\"pic.twitter.com\\/MICtAAyTx6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555122411443478528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3009\":null,\"3010\":{\"media\":[{\"id\":1555114382283218950,\"id_str\":\"1555114382283218950\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"url\":\"https:\\/\\/t.co\\/6FJESNlTb5\",\"display_url\":\"pic.twitter.com\\/6FJESNlTb5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555114494996660224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[136,213],\"duration_millis\":29272,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555114382283218950\\/pu\\/vid\\/272x426\\/bpNmn11GCcztYLIx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555114382283218950\\/pu\\/pl\\/F_WTQtn4TZCdNsIG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3011\":{\"media\":[{\"id\":1555108327671078912,\"id_str\":\"1555108327671078912\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"url\":\"https:\\/\\/t.co\\/o5Pmz3XLfc\",\"display_url\":\"pic.twitter.com\\/o5Pmz3XLfc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1555113873476313088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,23],\"duration_millis\":90223,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/vid\\/738x414\\/oMHvPVZim_K4pSBd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/vid\\/480x270\\/PGKHWnM_lUvNXCvd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/pl\\/QJP3KBW2AhrRxQnP.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3012\":null,\"3013\":{\"media\":[{\"id\":1555109039897546755,\"id_str\":\"1555109039897546755\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"url\":\"https:\\/\\/t.co\\/njEI0I4SGm\",\"display_url\":\"pic.twitter.com\\/njEI0I4SGm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PeculiarHype\\/status\\/1555109135024328704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":374,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":34865,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/pl\\/n7ZZq--0NU47maXS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/654x360\\/FCBD-oqpa_6zUZKy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/1280x704\\/LUK3ruI5nHHxoFUA.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/490x270\\/m-wslcr0pN9IZpxq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3014\":{\"media\":[{\"id\":1555106120620036096,\"id_str\":\"1555106120620036096\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}},{\"id\":1555106120628330498,\"id_str\":\"1555106120628330498\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwQWYAISLzi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwQWYAISLzi.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3015\":{\"media\":[{\"id\":1555104570979893249,\"id_str\":\"1555104570979893249\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"url\":\"https:\\/\\/t.co\\/LFmXT3mSmp\",\"display_url\":\"pic.twitter.com\\/LFmXT3mSmp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104574884683777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"3016\":{\"media\":[{\"id\":1555104188203520001,\"id_str\":\"1555104188203520001\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"url\":\"https:\\/\\/t.co\\/adGWS5HU7U\",\"display_url\":\"pic.twitter.com\\/adGWS5HU7U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DDadalekan\\/status\\/1555104345552715776\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[6,11],\"duration_millis\":9710,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/pl\\/T19CseNdIB81e3JQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/320x586\\/og15ksPsORkKQfln.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/672x1232\\/PpR2LzqZXRAlN0Lv.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/480x880\\/qm4EDw9T4FFgh2r1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3017\":{\"media\":[{\"id\":1555104124575916032,\"id_str\":\"1555104124575916032\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"url\":\"https:\\/\\/t.co\\/mWBy6AU7IA\",\"display_url\":\"pic.twitter.com\\/mWBy6AU7IA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104127406989312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"3018\":{\"media\":[{\"id\":1555103188058906624,\"id_str\":\"1555103188058906624\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"url\":\"https:\\/\\/t.co\\/SGhptaePzL\",\"display_url\":\"pic.twitter.com\\/SGhptaePzL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555103518092140545\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":27958,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/vid\\/368x640\\/6e0AI2wTUTU2273M.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/vid\\/320x556\\/CagGi-V17IpCxb8B.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/pl\\/S4nA8udU3fG51bqJ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":{\"media\":[{\"id\":1555100150342770688,\"id_str\":\"1555100150342770688\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"url\":\"https:\\/\\/t.co\\/gmCqDCXAtU\",\"display_url\":\"pic.twitter.com\\/gmCqDCXAtU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555100209516056576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":42769,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/480x270\\/yUo3urzBS784PDrQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/pl\\/F2Z2gU1--FJCJ5Og.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/640x360\\/X4MNhc9avgNGbiJI.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/1280x720\\/YyJf-0ZnjIqxcsnM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3023\":null,\"3024\":{\"media\":[{\"id\":1555097733924618241,\"id_str\":\"1555097733924618241\",\"indices\":[49,72],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"url\":\"https:\\/\\/t.co\\/r19nkT6Hvz\",\"display_url\":\"pic.twitter.com\\/r19nkT6Hvz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xminister0\\/status\\/1555097790358904834\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":4574,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/320x568\\/A_I9XG06SrH5xh5E.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/pl\\/vgmsHz9kC5XaSZQA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/720x1280\\/b6pW3wLD6ZM1FGjN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/480x852\\/SDi-6TJsWr2ttCGI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3025\":null,\"3026\":null,\"3027\":{\"media\":[{\"id\":1555094694941581317,\"id_str\":\"1555094694941581317\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"url\":\"https:\\/\\/t.co\\/GWdlCnhlVA\",\"display_url\":\"pic.twitter.com\\/GWdlCnhlVA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PRFirmNG\\/status\\/1555094753410170880\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/vid\\/320x564\\/8cXD-Xen7qRmjomc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/pl\\/Kx8p3FJ3MeGXLncJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/vid\\/480x848\\/cJ-updYIkNGuyA0V.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3028\":{\"media\":[{\"id\":1555092895455125504,\"id_str\":\"1555092895455125504\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"url\":\"https:\\/\\/t.co\\/P4cWauuqsP\",\"display_url\":\"pic.twitter.com\\/P4cWauuqsP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kellysteveo\\/status\\/1555092899624325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"thumb\":{\"w\":122,\"h\":122,\"resize\":\"crop\"}}}]},\"3029\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/IaOMul24J1\",\"display_url\":\"pic.twitter.com\\/IaOMul24J1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"3030\":{\"media\":[{\"id\":1555084499490377728,\"id_str\":\"1555084499490377728\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555089939368448000,\"id_str\":\"1555089939368448000\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTKD4XXEAA6Ikl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTKD4XXEAA6Ikl.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3031\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/2nqfH7Fu77\",\"display_url\":\"pic.twitter.com\\/2nqfH7Fu77\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"3032\":{\"media\":[{\"id\":1555089203746185216,\"id_str\":\"1555089203746185216\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"url\":\"https:\\/\\/t.co\\/xVic1GMEyb\",\"display_url\":\"pic.twitter.com\\/xVic1GMEyb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theFlareabove\\/status\\/1555089213820993540\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":706,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":706,\"resize\":\"fit\"}}}]},\"3033\":{\"media\":[{\"id\":1555086679995736064,\"id_str\":\"1555086679995736064\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/hkLJd20xwd\",\"display_url\":\"pic.twitter.com\\/hkLJd20xwd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uno_fini\\/status\\/1555086880462577664\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":5758,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/320x568\\/Ar1bKkx2sAvEDbax.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/720x1280\\/FtomvetSJ__wXQIy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/480x852\\/Yy01nDiU3w5j3jsy.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/pl\\/pY4mDOVF1vKOmUzm.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3034\":null,\"3035\":null,\"3036\":{\"media\":[{\"id\":1555078073728598018,\"id_str\":\"1555078073728598018\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cs1HxMDA4O\",\"display_url\":\"pic.twitter.com\\/Cs1HxMDA4O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555078393535897600\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":25000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/320x568\\/1BoM0ZEFZIU_8PP3.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/480x852\\/6TINhL18aUxcleiu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/pl\\/x6onsurDIF9A5A_3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/720x1280\\/_iQ7VuJ8X3isHSOX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3037\":{\"media\":[{\"id\":1555078029604536320,\"id_str\":\"1555078029604536320\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"url\":\"https:\\/\\/t.co\\/ie1QIkk4Ul\",\"display_url\":\"pic.twitter.com\\/ie1QIkk4Ul\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1555078032158855169\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"}}}]},\"3038\":{\"media\":[{\"id\":1555076636365692934,\"id_str\":\"1555076636365692934\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"url\":\"https:\\/\\/t.co\\/A812edBOgl\",\"display_url\":\"pic.twitter.com\\/A812edBOgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1555076714312699904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":38845,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/320x568\\/lrjOyyvO_jRssGcn.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/480x852\\/_4Vwbm2A_AuH93Q8.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/720x1280\\/DzE7aeNURwst_Lbo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/pl\\/1tqo1_aP99e6pFgG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3039\":{\"media\":[{\"id\":1555074608088367107,\"id_str\":\"1555074608088367107\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"url\":\"https:\\/\\/t.co\\/nPzDVBq45i\",\"display_url\":\"pic.twitter.com\\/nPzDVBq45i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akanscript_\\/status\\/1555074729022717955\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":37568,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/1280x720\\/_WO8ouE3YRWq4r4q.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/480x270\\/C-CZk1iHwOiGnfoJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/pl\\/Jihm11O7zZBYXXf-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/640x360\\/daLqfOnLR32ZAovS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3040\":{\"media\":[{\"id\":1555072895377965056,\"id_str\":\"1555072895377965056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"url\":\"https:\\/\\/t.co\\/0A2Y7575z3\",\"display_url\":\"pic.twitter.com\\/0A2Y7575z3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NetMakanaki\\/status\\/1555073073103118337\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":58933,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/480x852\\/8Y12eowYLA-uiU57.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/320x568\\/PbzsHWTDXNw_PXzv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/pl\\/StIcrBsxVBxJ2ZT4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/720x1280\\/53eCPr7fGm07SuOx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3041\":{\"media\":[{\"id\":1555071758092353537,\"id_str\":\"1555071758092353537\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"url\":\"https:\\/\\/t.co\\/sqJJe9gm0r\",\"display_url\":\"pic.twitter.com\\/sqJJe9gm0r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/m_zordAutorep\\/status\\/1555071764933361665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"3042\":{\"media\":[{\"id\":1555036286783832064,\"id_str\":\"1555036286783832064\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"url\":\"https:\\/\\/t.co\\/pgTYOBpEWl\",\"display_url\":\"pic.twitter.com\\/pgTYOBpEWl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555036308552253440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"}}}]},\"3043\":{\"media\":[{\"id\":1555031704716427266,\"id_str\":\"1555031704716427266\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"url\":\"https:\\/\\/t.co\\/jd5z1wrXPL\",\"display_url\":\"pic.twitter.com\\/jd5z1wrXPL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1555031716372381696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3044\":{\"media\":[{\"id\":1555020298747092992,\"id_str\":\"1555020298747092992\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"url\":\"https:\\/\\/t.co\\/0farobJifY\",\"display_url\":\"pic.twitter.com\\/0farobJifY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RobertAshu_\\/status\\/1555020307894878208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"3045\":null,\"3046\":{\"media\":[{\"id\":1555003486953123840,\"id_str\":\"1555003486953123840\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR7bsBVsAAIDGe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR7bsBVsAAIDGe.jpg\",\"url\":\"https:\\/\\/t.co\\/DMdn4SAuz1\",\"display_url\":\"pic.twitter.com\\/DMdn4SAuz1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1555003584068009987\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":192,\"h\":200,\"resize\":\"fit\"},\"large\":{\"w\":192,\"h\":200,\"resize\":\"fit\"},\"small\":{\"w\":192,\"h\":200,\"resize\":\"fit\"}}}]},\"3047\":{\"media\":[{\"id\":1554998383789621248,\"id_str\":\"1554998383789621248\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"url\":\"https:\\/\\/t.co\\/kTip6QKDfX\",\"display_url\":\"pic.twitter.com\\/kTip6QKDfX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/THexperrt\\/status\\/1554998401888141312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":712,\"h\":430,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":712,\"h\":430,\"resize\":\"fit\"}}}]},\"3048\":null,\"3049\":null,\"3050\":{\"media\":[{\"id\":1554984101656027136,\"id_str\":\"1554984101656027136\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"url\":\"https:\\/\\/t.co\\/j2WZpXricW\",\"display_url\":\"pic.twitter.com\\/j2WZpXricW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554984208589885441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3051\":{\"media\":[{\"id\":1554977848884183040,\"id_str\":\"1554977848884183040\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"url\":\"https:\\/\\/t.co\\/unVdsQqRLp\",\"display_url\":\"pic.twitter.com\\/unVdsQqRLp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Enyi_VictorBlog\\/status\\/1554977853988560896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"}}}]},\"3052\":{\"media\":[{\"id\":1554968648737034240,\"id_str\":\"1554968648737034240\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1AfxgSgqgn\",\"display_url\":\"pic.twitter.com\\/1AfxgSgqgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/awana_a_gana\\/status\\/1554968669574283264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"}}}]},\"3053\":null,\"3054\":null,\"3055\":{\"media\":[{\"id\":1554964133153587200,\"id_str\":\"1554964133153587200\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"url\":\"https:\\/\\/t.co\\/Um1CyfI94W\",\"display_url\":\"pic.twitter.com\\/Um1CyfI94W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554964398757773312\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140013,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/pl\\/878D3MASYvIrR_5C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/vid\\/480x270\\/AkOenn4BUwE9HQua.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/vid\\/640x360\\/9Q05gGBDNXGxTYnF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3056\":null,\"3057\":null,\"3058\":{\"media\":[{\"id\":1554954752739393538,\"id_str\":\"1554954752739393538\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"url\":\"https:\\/\\/t.co\\/9g4czDBj9I\",\"display_url\":\"pic.twitter.com\\/9g4czDBj9I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonemic\\/status\\/1554954769776656385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"small\":{\"w\":575,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3059\":{\"media\":[{\"id\":1554953050497875968,\"id_str\":\"1554953050497875968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"url\":\"https:\\/\\/t.co\\/hL3D2W2oyh\",\"display_url\":\"pic.twitter.com\\/hL3D2W2oyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oceanfocuz\\/status\\/1554953058412527616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"}}}]},\"3060\":null,\"3061\":{\"media\":[{\"id\":1554951610316607495,\"id_str\":\"1554951610316607495\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"url\":\"https:\\/\\/t.co\\/rGiGx9nfeD\",\"display_url\":\"pic.twitter.com\\/rGiGx9nfeD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JerryKatician01\\/status\\/1554951856362819584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":49710,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/1280x720\\/ZlHr3m_PSkb0noAL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/pl\\/m1M2TjpvB2g6KdEi.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/640x360\\/hZrpucQ6xCDa0eh1.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/480x270\\/J0Ig_QSugt68hvNe.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3062\":{\"media\":[{\"id\":1554945877382397955,\"id_str\":\"1554945877382397955\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":451,\"resize\":\"fit\"}}},{\"id\":1554945877399277569,\"id_str\":\"1554945877399277569\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXtXkAE7ji9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXtXkAE7ji9.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":504,\"h\":290,\"resize\":\"fit\"},\"large\":{\"w\":504,\"h\":290,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":504,\"h\":290,\"resize\":\"fit\"}}}]},\"3063\":{\"media\":[{\"id\":1554931987034537985,\"id_str\":\"1554931987034537985\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"url\":\"https:\\/\\/t.co\\/5hephg70Dx\",\"display_url\":\"pic.twitter.com\\/5hephg70Dx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1554932017342578692\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3064\":{\"media\":[{\"id\":1554930793935405056,\"id_str\":\"1554930793935405056\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"url\":\"https:\\/\\/t.co\\/MqQNE0DluW\",\"display_url\":\"pic.twitter.com\\/MqQNE0DluW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaRealityNe1\\/status\\/1554930832753807365\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[122,213],\"duration_millis\":27958,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554930793935405056\\/pu\\/pl\\/DZXfR2bDZBuRKO8b.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554930793935405056\\/pu\\/vid\\/244x426\\/_wkBN1pFdVn2ioOO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3065\":null,\"3066\":null,\"3067\":{\"media\":[{\"id\":1554920433736114176,\"id_str\":\"1554920433736114176\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"url\":\"https:\\/\\/t.co\\/a58nuGIcuj\",\"display_url\":\"pic.twitter.com\\/a58nuGIcuj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554920465453535234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"3068\":{\"media\":[{\"id\":1554919511844945920,\"id_str\":\"1554919511844945920\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"url\":\"https:\\/\\/t.co\\/L5naFHzNv6\",\"display_url\":\"pic.twitter.com\\/L5naFHzNv6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1554919572913930240\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":10898,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/pl\\/PdwsoOWqMR_I8ZVY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/320x568\\/JkXngNVuJRBVgB9i.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/480x852\\/qtvlPMtGrOXFGJht.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/720x1278\\/aVi6eql7Wqp-sHXk.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3069\":null,\"3070\":{\"media\":[{\"id\":1554916928652730370,\"id_str\":\"1554916928652730370\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"url\":\"https:\\/\\/t.co\\/uNm3Dqi46R\",\"display_url\":\"pic.twitter.com\\/uNm3Dqi46R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1554916934776487936\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":336,\"resize\":\"fit\"}}}]},\"3071\":{\"media\":[{\"id\":1554914242037432320,\"id_str\":\"1554914242037432320\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"url\":\"https:\\/\\/t.co\\/60kyNTYdVC\",\"display_url\":\"pic.twitter.com\\/60kyNTYdVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_timotee\\/status\\/1554914363928100864\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":37600,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/320x568\\/rZjaXwg_nlFXyNe9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/480x852\\/pmgY91BKufPDxvNR.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/720x1280\\/_diQ5F79Cc1-qs2p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/pl\\/VZmyFjc0PgoN_2kD.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3072\":{\"media\":[{\"id\":1554913397401128963,\"id_str\":\"1554913397401128963\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"url\":\"https:\\/\\/t.co\\/FVS92zEuL3\",\"display_url\":\"pic.twitter.com\\/FVS92zEuL3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pastppl\\/status\\/1554913407270354947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"3073\":null,\"3074\":{\"media\":[{\"id\":1554910195821723648,\"id_str\":\"1554910195821723648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"url\":\"https:\\/\\/t.co\\/t83z7KgCZE\",\"display_url\":\"pic.twitter.com\\/t83z7KgCZE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554910206764765184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"}}}]},\"3075\":{\"media\":[{\"id\":1554907611685871616,\"id_str\":\"1554907611685871616\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":922,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":862,\"resize\":\"fit\"}}},{\"id\":1554907611736186882,\"id_str\":\"1554907611736186882\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPBAWIAIm8bX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPBAWIAIm8bX.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":828,\"resize\":\"fit\"},\"large\":{\"w\":1284,\"h\":886,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":469,\"resize\":\"fit\"}}}]},\"3076\":{\"media\":[{\"id\":1554905384854470660,\"id_str\":\"1554905384854470660\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"url\":\"https:\\/\\/t.co\\/jriEwqsvvJ\",\"display_url\":\"pic.twitter.com\\/jriEwqsvvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sharon_sleey\\/status\\/1554905444610703361\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/320x568\\/tZ8YE-2Ws9hyVsI0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/720x1280\\/daJb9NWiqPXNh4Y-.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/480x852\\/F59tgmXSi6rgB1E3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/pl\\/r0dJ6jG5UKixYEvQ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3077\":null,\"3078\":{\"media\":[{\"id\":1554895396790476803,\"id_str\":\"1554895396790476803\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"url\":\"https:\\/\\/t.co\\/sSTeJQYgcQ\",\"display_url\":\"pic.twitter.com\\/sSTeJQYgcQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554895525392138241\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":44975,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554895396790476803\\/pu\\/pl\\/lotLHZfYw_bnySHi.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554895396790476803\\/pu\\/vid\\/480x256\\/tRmjjl5XsqOJTTij.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3079\":{\"media\":[{\"id\":1554894576321761280,\"id_str\":\"1554894576321761280\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554894588279771136,\"id_str\":\"1554894588279771136\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYY82X0AA0foI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYY82X0AA0foI.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":575,\"resize\":\"fit\"}}},{\"id\":1554894596882239490,\"id_str\":\"1554894596882239490\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYZc5XEAISx9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYZc5XEAISx9d.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"}}},{\"id\":1554894606759755777,\"id_str\":\"1554894606759755777\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYaBsWAAE-bcC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYaBsWAAE-bcC.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":485,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":485,\"resize\":\"fit\"}}}]},\"3080\":{\"media\":[{\"id\":1554893825079926784,\"id_str\":\"1554893825079926784\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"url\":\"https:\\/\\/t.co\\/q13uXAXOhv\",\"display_url\":\"pic.twitter.com\\/q13uXAXOhv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/goziedbrightest\\/status\\/1554893836513599488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"3081\":null,\"3082\":{\"media\":[{\"id\":1554889568507379712,\"id_str\":\"1554889568507379712\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wvXwAAFfi0.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554889568456933376,\"id_str\":\"1554889568456933376\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWAAAx9XQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWAAAx9XQ.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554889568456949761,\"id_str\":\"1554889568456949761\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWQAEZwU-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQT0wjWQAEZwU-.jpg\",\"url\":\"https:\\/\\/t.co\\/28fwuQEWf3\",\"display_url\":\"pic.twitter.com\\/28fwuQEWf3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pre__sident\\/status\\/1554889578019946496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3083\":null,\"3084\":null,\"3085\":{\"media\":[{\"id\":1554884709255102466,\"id_str\":\"1554884709255102466\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPZ6nWQAIhrtI.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554884716783964161,\"id_str\":\"1554884716783964161\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPaWqXkAELwsM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPaWqXkAELwsM.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554884723935166464,\"id_str\":\"1554884723935166464\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPaxTWQAAjHW-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPaxTWQAAjHW-.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554884730864156672,\"id_str\":\"1554884730864156672\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQPbLHWQAAU3Aw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQPbLHWQAAU3Aw.jpg\",\"url\":\"https:\\/\\/t.co\\/jxVFtbB6WP\",\"display_url\":\"pic.twitter.com\\/jxVFtbB6WP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/md_shibili\\/status\\/1554884737327681545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"3086\":null,\"3087\":{\"media\":[{\"id\":1554883125972434947,\"id_str\":\"1554883125972434947\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554883125972434947\\/pu\\/img\\/ceJRff1Xnusqo0VG.jpg\",\"url\":\"https:\\/\\/t.co\\/MQc53z0gzG\",\"display_url\":\"pic.twitter.com\\/MQc53z0gzG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ppell524\\/status\\/1554883174987079681\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12463,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/pl\\/TuoiqSv3PcW6eJlI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/vid\\/320x568\\/xO7skImIZRwMpZHN.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/vid\\/720x1280\\/oSG_UelCgSGfx83t.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554883125972434947\\/pu\\/vid\\/480x852\\/SwVxVJWUVAOoWmiu.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3088\":null,\"3089\":null,\"3090\":{\"media\":[{\"id\":1554881027591520260,\"id_str\":\"1554881027591520260\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"url\":\"https:\\/\\/t.co\\/NZ3ygeIhwq\",\"display_url\":\"pic.twitter.com\\/NZ3ygeIhwq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hisvert\\/status\\/1554881056008187904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":1663,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/vid\\/320x568\\/VEh-qxGyD2BdXXcV.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/vid\\/480x852\\/wmzGbbKj3egjutVD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/pl\\/LA2rJstw9whhn-ci.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3091\":{\"media\":[{\"id\":1554879877056167942,\"id_str\":\"1554879877056167942\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLApRWAAYhsx5.jpg\",\"url\":\"https:\\/\\/t.co\\/1TfAEXCXbe\",\"display_url\":\"pic.twitter.com\\/1TfAEXCXbe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ind_Journos\\/status\\/1554879886778634243\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}}}]},\"3092\":null,\"3093\":null,\"3094\":null,\"3095\":null,\"3096\":{\"media\":[{\"id\":1554875107327238146,\"id_str\":\"1554875107327238146\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"url\":\"https:\\/\\/t.co\\/0abiCiufk2\",\"display_url\":\"pic.twitter.com\\/0abiCiufk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnAshafa\\/status\\/1554875116768608256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"3097\":{\"media\":[{\"id\":1554875039073419270,\"id_str\":\"1554875039073419270\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"url\":\"https:\\/\\/t.co\\/Nz9c0LorqE\",\"display_url\":\"pic.twitter.com\\/Nz9c0LorqE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ay_adeyinka\\/status\\/1554875042147827712\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":586,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"}}}]},\"3098\":null,\"3099\":null,\"3100\":{\"media\":[{\"id\":1554869821082423302,\"id_str\":\"1554869821082423302\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"url\":\"https:\\/\\/t.co\\/fuKr5l8Xzy\",\"display_url\":\"pic.twitter.com\\/fuKr5l8Xzy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/henry_saliu\\/status\\/1554869975638474752\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":856,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":803,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,107],\"duration_millis\":45000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/1076x720\\/Stv9TpP5SfLL1NhT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/pl\\/KkuuX5FjD9PPTACN.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/538x360\\/TcU9v4AmnKHIPxCs.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/402x270\\/v1ZiI1jdRBdinUOA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3101\":null,\"3102\":{\"media\":[{\"id\":1554867923126145024,\"id_str\":\"1554867923126145024\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQAI1aVUAAmbDy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQAI1aVUAAmbDy.jpg\",\"url\":\"https:\\/\\/t.co\\/peCFVx8p0u\",\"display_url\":\"pic.twitter.com\\/peCFVx8p0u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GpbartlettP\\/status\\/1554867926930313216\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":600,\"resize\":\"fit\"}}}]},\"3103\":{\"media\":[{\"id\":1554857936593338369,\"id_str\":\"1554857936593338369\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"url\":\"https:\\/\\/t.co\\/serqHvJW2C\",\"display_url\":\"pic.twitter.com\\/serqHvJW2C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554859470001475584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":1240,\"resize\":\"fit\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,620],\"duration_millis\":29306,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/pl\\/1B97_IzMpY9xYvMM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/480x670\\/mdxj7XUqBGNMxdGV.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/320x446\\/K94D15Q4SyxOQD9p.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/720x1006\\/8JJfwPE5zArf2fTU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3104\":{\"media\":[{\"id\":1554858363166593027,\"id_str\":\"1554858363166593027\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":452,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554858363158159360,\"id_str\":\"1554858363158159360\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXwWYAACRNG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXwWYAACRNG.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":682,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":682,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"}}}]},\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":{\"media\":[{\"id\":1554851249660608512,\"id_str\":\"1554851249660608512\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"url\":\"https:\\/\\/t.co\\/SFtmooG4n4\",\"display_url\":\"pic.twitter.com\\/SFtmooG4n4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1554853500152336384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":31113,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/pl\\/6_YcVed8xLB0FuTU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/320x568\\/ljb2amPU7Z2KioYa.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/480x852\\/cmIylBrH0tZVRxkt.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/720x1280\\/JJq6y5iX_I9Y12Yv.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3111\":{\"media\":[{\"id\":1554850860961775625,\"id_str\":\"1554850860961775625\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"url\":\"https:\\/\\/t.co\\/cHw8nDiKoF\",\"display_url\":\"pic.twitter.com\\/cHw8nDiKoF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554850987222917128\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,616],\"duration_millis\":18343,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/320x444\\/5xerdQwnxeVmre6N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/720x1000\\/1QLE9cPkAAlkm5ZO.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/pl\\/e5t89xihaBpg0p20.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/480x666\\/Wra3w-ayFpiRtuf8.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3112\":{\"media\":[{\"id\":1554849122989101058,\"id_str\":\"1554849122989101058\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"url\":\"https:\\/\\/t.co\\/z92cabRhki\",\"display_url\":\"pic.twitter.com\\/z92cabRhki\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magojazzy\\/status\\/1554849169902297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3113\":{\"media\":[{\"id\":1554845195203710983,\"id_str\":\"1554845195203710983\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXEAcf0Nb.jpg\",\"url\":\"https:\\/\\/t.co\\/SOq1sp6GTV\",\"display_url\":\"pic.twitter.com\\/SOq1sp6GTV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itz_ikhali\\/status\\/1554845204703854592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":873,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"}}},{\"id\":1554845195203756032,\"id_str\":\"1554845195203756032\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXwAAnFEg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPrd5TXwAAnFEg.jpg\",\"url\":\"https:\\/\\/t.co\\/SOq1sp6GTV\",\"display_url\":\"pic.twitter.com\\/SOq1sp6GTV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itz_ikhali\\/status\\/1554845204703854592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1029,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1029,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"}}}]},\"3114\":{\"media\":[{\"id\":1554843508820905984,\"id_str\":\"1554843508820905984\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"url\":\"https:\\/\\/t.co\\/xYqiMXKCQi\",\"display_url\":\"pic.twitter.com\\/xYqiMXKCQi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibbultalkative\\/status\\/1554843537736351744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1122,\"h\":1497,\"resize\":\"fit\"}}}]},\"3115\":null,\"3116\":{\"media\":[{\"id\":1554839842743279618,\"id_str\":\"1554839842743279618\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554839865606504453,\"id_str\":\"1554839865606504453\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmnrAXgAUOpBN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmnrAXgAUOpBN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554839879481188353,\"id_str\":\"1554839879481188353\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmoesWYAEkRU0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmoesWYAEkRU0.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554839896103305216,\"id_str\":\"1554839896103305216\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmpcnXwAAaZiI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmpcnXwAAaZiI.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3117\":{\"media\":[{\"id\":1554839385920749569,\"id_str\":\"1554839385920749569\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554839402643394560,\"id_str\":\"1554839402643394560\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmMuVXEAAE0ZV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmMuVXEAAE0ZV.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554839419978383361,\"id_str\":\"1554839419978383361\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmNu6WAAEr5Jd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmNu6WAAEr5Jd.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554839438446010368,\"id_str\":\"1554839438446010368\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmOztXoAAMlTp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmOztXoAAMlTp.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3118\":null,\"3119\":null,\"3120\":null,\"3121\":{\"media\":[{\"id\":1554836955468165121,\"id_str\":\"1554836955468165121\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"url\":\"https:\\/\\/t.co\\/X4VdFxKEE2\",\"display_url\":\"pic.twitter.com\\/X4VdFxKEE2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554836957687005186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":533,\"resize\":\"fit\"}}}]},\"3122\":null,\"3123\":null,\"3124\":{\"media\":[{\"id\":1554835170859003904,\"id_str\":\"1554835170859003904\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"url\":\"https:\\/\\/t.co\\/XPenvRyXEc\",\"display_url\":\"pic.twitter.com\\/XPenvRyXEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554835221819731969\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,29],\"duration_millis\":37066,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/vid\\/492x270\\/lM19GMTW0x7kMt03.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/pl\\/QTHp54deWAkNZP-v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/vid\\/848x464\\/7lqbEAq3OnYMHgLA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3125\":{\"media\":[{\"id\":1554835161350492164,\"id_str\":\"1554835161350492164\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"url\":\"https:\\/\\/t.co\\/lbgqYYK7r6\",\"display_url\":\"pic.twitter.com\\/lbgqYYK7r6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554835162839465992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"3126\":{\"media\":[{\"id\":1554835050029387782,\"id_str\":\"1554835050029387782\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"url\":\"https:\\/\\/t.co\\/AVYQjSFrmC\",\"display_url\":\"pic.twitter.com\\/AVYQjSFrmC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sappzee\\/status\\/1554835145458212865\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,2],\"duration_millis\":40505,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835050029387782\\/pu\\/pl\\/5LLR3CRMDo5jsCGf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835050029387782\\/pu\\/vid\\/320x640\\/YD67mueC4AMbv8sZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3127\":{\"media\":[{\"id\":1554835119990456320,\"id_str\":\"1554835119990456320\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"url\":\"https:\\/\\/t.co\\/MkpeC7yxpc\",\"display_url\":\"pic.twitter.com\\/MkpeC7yxpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KafeEazy\\/status\\/1554835123329064961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"},\"small\":{\"w\":449,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"}}}]},\"3128\":null,\"3129\":{\"media\":[{\"id\":1554825216634675202,\"id_str\":\"1554825216634675202\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"url\":\"https:\\/\\/t.co\\/1GLM8ZiUMW\",\"display_url\":\"pic.twitter.com\\/1GLM8ZiUMW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abubillaal\\/status\\/1554825762682769413\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[270,193],\"duration_millis\":45001,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/376x270\\/dNDV32Xx_DI_JAdF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/1006x720\\/Ajo3bdAgI8WgH3RV.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/502x360\\/ZbeONbVUqM4ThY0Y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/pl\\/OyyGHwEQ9GCW8AyZ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":{\"media\":[{\"id\":1554823128924073984,\"id_str\":\"1554823128924073984\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"url\":\"https:\\/\\/t.co\\/uN0H1vPHWE\",\"display_url\":\"pic.twitter.com\\/uN0H1vPHWE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flyhezix\\/status\\/1554823137191010304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3135\":null,\"3136\":{\"media\":[{\"id\":1554820649977143297,\"id_str\":\"1554820649977143297\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"url\":\"https:\\/\\/t.co\\/PLgY1dIXk6\",\"display_url\":\"pic.twitter.com\\/PLgY1dIXk6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820786933735425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":48732,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/480x852\\/eQfNIx8ufZgm5gGj.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/720x1280\\/ibZsVb5kjnoZtDmJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/pl\\/E7d2s_cLVjnNMnnc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/320x568\\/nP4t4s1nZpf2sKN_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3137\":{\"media\":[{\"id\":1554820479541596162,\"id_str\":\"1554820479541596162\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"url\":\"https:\\/\\/t.co\\/TaQtXc29sS\",\"display_url\":\"pic.twitter.com\\/TaQtXc29sS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820709485928450\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":48732,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/pl\\/862f9crAq23TjLwj.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/320x568\\/Nf_s9EtWLFLoDpXG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/720x1280\\/4zmliLuNsuOeLjES.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/480x852\\/BEmNc3qlKMU_RLbY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3138\":{\"media\":[{\"id\":1554820524752179200,\"id_str\":\"1554820524752179200\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"url\":\"https:\\/\\/t.co\\/b6Klbwjbg0\",\"display_url\":\"pic.twitter.com\\/b6Klbwjbg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554820531186286592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":530,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":530,\"resize\":\"fit\"}}}]},\"3139\":null,\"3140\":{\"media\":[{\"id\":1554813279620440064,\"id_str\":\"1554813279620440064\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554813290718584834,\"id_str\":\"1554813290718584834\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcz1WYAIMEB0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcz1WYAIMEB0.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3141\":{\"media\":[{\"id\":1554813156626677760,\"id_str\":\"1554813156626677760\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":514,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554813163618672640,\"id_str\":\"1554813163618672640\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVaWXoAAkxbX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVaWXoAAkxbX.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554813171738857474,\"id_str\":\"1554813171738857474\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOV4mX0AI_hjg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOV4mX0AI_hjg.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":898,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":898,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"}}}]},\"3142\":{\"media\":[{\"id\":1554812704623366144,\"id_str\":\"1554812704623366144\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"url\":\"https:\\/\\/t.co\\/BWJR5IVhyG\",\"display_url\":\"pic.twitter.com\\/BWJR5IVhyG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obi_Jules\\/status\\/1554812726647611393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3143\":{\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11580,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/320x568\\/ZOQ-_UIIaGkU9o8N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/720x1280\\/8tBG1Zpu4V46u-8y.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/480x852\\/Lk8d_qAHDxCa5cZv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/pl\\/vIu2QsjZeRzHb8P0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3144\":{\"media\":[{\"id\":1554804166379405312,\"id_str\":\"1554804166379405312\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"url\":\"https:\\/\\/t.co\\/DLkbtWYTnR\",\"display_url\":\"pic.twitter.com\\/DLkbtWYTnR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fagman01\\/status\\/1554804208410497028\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":64367,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804166379405312\\/pu\\/pl\\/vViQx9Z7fxEq9n8a.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804166379405312\\/pu\\/vid\\/480x270\\/MQE1_1rUnzNIKte1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3145\":null,\"3146\":{\"media\":[{\"id\":1554801684659986434,\"id_str\":\"1554801684659986434\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"url\":\"https:\\/\\/t.co\\/9RTAmNicmh\",\"display_url\":\"pic.twitter.com\\/9RTAmNicmh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Slimtalker2\\/status\\/1554801857461207042\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":35100,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/720x1280\\/EVyzzYJFPmhZifBW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/pl\\/XQQbrgiuZJylLfgA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/320x568\\/l-VxUO56r9GkvvIB.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/480x852\\/SOZVc8ElWEq-woMF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3147\":{\"media\":[{\"id\":1554801195738439681,\"id_str\":\"1554801195738439681\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"url\":\"https:\\/\\/t.co\\/o6BiiEBYiS\",\"display_url\":\"pic.twitter.com\\/o6BiiEBYiS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554801255620530179\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":14366,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/640x360\\/R3CKMIfptNneM9QP.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/1280x720\\/h7GyWvQQihXvSB2-.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/480x270\\/kpB_plGZ8xzrhxXu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/pl\\/IZJgEXeo6AMVmit1.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3148\":{\"media\":[{\"id\":1554800794024697857,\"id_str\":\"1554800794024697857\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"url\":\"https:\\/\\/t.co\\/icrt1AKjYF\",\"display_url\":\"pic.twitter.com\\/icrt1AKjYF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vintagebraidwig\\/status\\/1554800801729724418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"}}}]},\"3149\":{\"media\":[{\"id\":1554800216875966466,\"id_str\":\"1554800216875966466\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"url\":\"https:\\/\\/t.co\\/UZZgqgILDK\",\"display_url\":\"pic.twitter.com\\/UZZgqgILDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554800267329159170\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":20033,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/480x270\\/WMZcf3scSBoL46Q6.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/640x360\\/qThLdgVoaQNHtPAx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/1280x720\\/r3BwBLho7L-dj3Mz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/pl\\/WiS4PqMlx0SyKXQe.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3150\":{\"media\":[{\"id\":1554798709073911809,\"id_str\":\"1554798709073911809\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"url\":\"https:\\/\\/t.co\\/LkMKDvqJve\",\"display_url\":\"pic.twitter.com\\/LkMKDvqJve\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1554798804939206656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"3151\":{\"media\":[{\"id\":1554797955626024960,\"id_str\":\"1554797955626024960\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cGChk2NcVy\",\"display_url\":\"pic.twitter.com\\/cGChk2NcVy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554798185935261696\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":429,\"resize\":\"fit\"},\"large\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[571,360],\"duration_millis\":42780,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/428x270\\/-eniFpbHke4n_cy0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/1142x720\\/GgGpgjKFuObloY2n.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/570x360\\/7l42HpQMQqHkDD5f.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/pl\\/krZci46oqBKcEgeh.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3152\":null,\"3153\":{\"media\":[{\"id\":1554797618454302743,\"id_str\":\"1554797618454302743\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554797643758538753,\"id_str\":\"1554797643758538753\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAOCXXkAEWbv1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAOCXXkAEWbv1.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3154\":{\"media\":[{\"id\":1554796946602299393,\"id_str\":\"1554796946602299393\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"url\":\"https:\\/\\/t.co\\/nSVh0YDIcv\",\"display_url\":\"pic.twitter.com\\/nSVh0YDIcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554796964734189569\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"3155\":{\"media\":[{\"id\":1554796177798975488,\"id_str\":\"1554796177798975488\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"url\":\"https:\\/\\/t.co\\/rfTY04O9Pw\",\"display_url\":\"pic.twitter.com\\/rfTY04O9Pw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554796314440916992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59611,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/pl\\/rZakeotrYlqkC7yf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/480x852\\/gCpsFttjBpA-Wk1A.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/320x568\\/uM_fvZNwCW5R8hst.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/720x1280\\/C-_T38qhviwjpsKQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3156\":{\"media\":[{\"id\":1554794709524090881,\"id_str\":\"1554794709524090881\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8La4uS2TFA\",\"display_url\":\"pic.twitter.com\\/8La4uS2TFA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanul_max\\/status\\/1554794720462766080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1031,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1445,\"resize\":\"fit\"},\"small\":{\"w\":584,\"h\":680,\"resize\":\"fit\"}}}]},\"3157\":{\"media\":[{\"id\":1554793885666344960,\"id_str\":\"1554793885666344960\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554793901256491009,\"id_str\":\"1554793901256491009\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO80MdWQAESQZ2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO80MdWQAESQZ2.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554793915160698881,\"id_str\":\"1554793915160698881\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO81AQXoAEt5yQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO81AQXoAEt5yQ.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}},{\"id\":1554793925273083905,\"id_str\":\"1554793925273083905\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO81l7WYAEdTOi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO81l7WYAEdTOi.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"3158\":{\"media\":[{\"id\":1554793397369638913,\"id_str\":\"1554793397369638913\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"url\":\"https:\\/\\/t.co\\/S3lEOp6zY1\",\"display_url\":\"pic.twitter.com\\/S3lEOp6zY1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1554793400167272450\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"}}}]},\"3159\":{\"media\":[{\"id\":1554792927439855616,\"id_str\":\"1554792927439855616\",\"indices\":[294,317],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"url\":\"https:\\/\\/t.co\\/Vz160FKf2U\",\"display_url\":\"pic.twitter.com\\/Vz160FKf2U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554792947694112770\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"}}}]},\"3160\":null,\"3161\":{\"media\":[{\"id\":1554790943148199937,\"id_str\":\"1554790943148199937\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554790953642299394,\"id_str\":\"1554790953642299394\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6InvXEAIiXKs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6InvXEAIiXKs.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554790957198999552,\"id_str\":\"1554790957198999552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6I0_WAAAybbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6I0_WAAAybbU.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"}}},{\"id\":1554790961238228993,\"id_str\":\"1554790961238228993\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6JECXwAEDXT0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6JECXwAEDXT0.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"}}}]},\"3162\":{\"media\":[{\"id\":1554790640617226240,\"id_str\":\"1554790640617226240\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640604545025,\"id_str\":\"1554790640604545025\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlWAAEXSAQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlWAAEXSAQ.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640604647424,\"id_str\":\"1554790640604647424\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlXkAAZr8W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlXkAAZr8W.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640591986688,\"id_str\":\"1554790640591986688\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZiWYAAp6FB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZiWYAAp6FB.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1797,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"}}}]},\"3163\":null,\"3164\":{\"media\":[{\"id\":1554788871627587585,\"id_str\":\"1554788871627587585\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"url\":\"https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"display_url\":\"pic.twitter.com\\/ZRsEBIH9Rb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554788988187283456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1163,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":659,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1984,\"h\":2048,\"resize\":\"fit\"}}}]},\"3165\":{\"media\":[{\"id\":1554788201600016387,\"id_str\":\"1554788201600016387\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"url\":\"https:\\/\\/t.co\\/qyHhxvm1w1\",\"display_url\":\"pic.twitter.com\\/qyHhxvm1w1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554788274752847874\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/320x568\\/bRWcE6WFZLHQDWRF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/pl\\/5Inde-7IVOC-dnHd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/576x1024\\/ACNK7S8Qbyw4-sqe.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/480x852\\/RYAcIjwcNioVTK7w.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3166\":null,\"3167\":{\"media\":[{\"id\":1554786935746560001,\"id_str\":\"1554786935746560001\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"url\":\"https:\\/\\/t.co\\/XnWs6XKBaB\",\"display_url\":\"pic.twitter.com\\/XnWs6XKBaB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gifshizzle\\/status\\/1554786948564353026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"small\":{\"w\":592,\"h\":680,\"resize\":\"fit\"}}}]},\"3168\":{\"media\":[{\"id\":1554785710649090048,\"id_str\":\"1554785710649090048\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"url\":\"https:\\/\\/t.co\\/Rb6M4G9bfV\",\"display_url\":\"pic.twitter.com\\/Rb6M4G9bfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tinubufrontier\\/status\\/1554785715841646592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"3169\":{\"media\":[{\"id\":1554785099077517314,\"id_str\":\"1554785099077517314\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"url\":\"https:\\/\\/t.co\\/2VAX1kKY7q\",\"display_url\":\"pic.twitter.com\\/2VAX1kKY7q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BlackdiamondBLD\\/status\\/1554785109202665476\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":433,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1241,\"h\":1949,\"resize\":\"fit\"}}}]},\"3170\":{\"media\":[{\"id\":1554784146966421507,\"id_str\":\"1554784146966421507\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"url\":\"https:\\/\\/t.co\\/E9xunsffM1\",\"display_url\":\"pic.twitter.com\\/E9xunsffM1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1554784157557051392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"3171\":null,\"3172\":null,\"3173\":{\"media\":[{\"id\":1554780632630403075,\"id_str\":\"1554780632630403075\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"url\":\"https:\\/\\/t.co\\/MrqMUbG8P6\",\"display_url\":\"pic.twitter.com\\/MrqMUbG8P6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tipcy_Jaej\\/status\\/1554781577946742785\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":333,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":626,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":587,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[313,640],\"duration_millis\":73866,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/626x1280\\/zlNMyHVsx9byXhhK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/pl\\/jFg0DwN-qHUaSwpk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/480x980\\/nqj1rAmBAljIF09M.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/320x654\\/G5869mcMyirKt9BT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3174\":{\"media\":[{\"id\":1554780148741939201,\"id_str\":\"1554780148741939201\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"url\":\"https:\\/\\/t.co\\/f2CdRuT9tm\",\"display_url\":\"pic.twitter.com\\/f2CdRuT9tm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Richmanonuche1\\/status\\/1554780161714917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":2048,\"resize\":\"fit\"}}}]},\"3175\":{\"media\":[{\"id\":1554779811347939329,\"id_str\":\"1554779811347939329\",\"indices\":[40,63],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"url\":\"https:\\/\\/t.co\\/EhISr3PULD\",\"display_url\":\"pic.twitter.com\\/EhISr3PULD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1554779819296137217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1494,\"resize\":\"fit\"},\"medium\":{\"w\":904,\"h\":1200,\"resize\":\"fit\"}}}]},\"3176\":{\"media\":[{\"id\":1554777430971351040,\"id_str\":\"1554777430971351040\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"url\":\"https:\\/\\/t.co\\/a4BmMkUray\",\"display_url\":\"pic.twitter.com\\/a4BmMkUray\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LukeKyauta\\/status\\/1554777567802040321\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[45,68],\"duration_millis\":59412,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/720x1088\\/C2XLQOhx1zlPRRnk.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/320x482\\/m3valIWcxQS9Bas3.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/480x724\\/BBKQWCeFX-h8Yi2c.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/pl\\/21UVrKTse9OytZI0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3177\":null,\"3178\":{\"media\":[{\"id\":1554773993567166465,\"id_str\":\"1554773993567166465\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"url\":\"https:\\/\\/t.co\\/o97l2VTsqf\",\"display_url\":\"pic.twitter.com\\/o97l2VTsqf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chidi_Africa\\/status\\/1554773996087943168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":452,\"resize\":\"fit\"}}}]},\"3179\":{\"media\":[{\"id\":1554773004470652929,\"id_str\":\"1554773004470652929\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}},{\"id\":1554773014859882499,\"id_str\":\"1554773014859882499\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp0ckWIAMNoBq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp0ckWIAMNoBq.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}}]},\"3180\":null,\"3181\":{\"media\":[{\"id\":1554771128069005315,\"id_str\":\"1554771128069005315\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771138752008192,\"id_str\":\"1554771138752008192\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoHPhX0AAc8qd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoHPhX0AAc8qd.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554771147195142144,\"id_str\":\"1554771147195142144\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoHu-X0AAgkAI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoHu-X0AAgkAI.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771155843702784,\"id_str\":\"1554771155843702784\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoIPMWYAAo2WA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoIPMWYAAo2WA.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3182\":{\"media\":[{\"id\":1554771075552231427,\"id_str\":\"1554771075552231427\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771090743902209,\"id_str\":\"1554771090743902209\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoEcrWQAEsH80.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoEcrWQAEsH80.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554771104966778881,\"id_str\":\"1554771104966778881\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoFRqWIAEz8xa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoFRqWIAEz8xa.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771113535832064,\"id_str\":\"1554771113535832064\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoFxlXgAAyJQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoFxlXgAAyJQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"3183\":{\"media\":[{\"id\":1554770968610017281,\"id_str\":\"1554770968610017281\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":800,\"resize\":\"fit\"}}},{\"id\":1554770971176869888,\"id_str\":\"1554770971176869888\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9fQWIAAYBQi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9fQWIAAYBQi.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":714,\"h\":714,\"resize\":\"fit\"},\"medium\":{\"w\":714,\"h\":714,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554770977330003968,\"id_str\":\"1554770977330003968\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn92LXgAAd4mp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn92LXgAAd4mp.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":682,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":644,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":682,\"resize\":\"fit\"}}},{\"id\":1554770983076118530,\"id_str\":\"1554770983076118530\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn-LlWQAIQJfJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn-LlWQAIQJfJ.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":671,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":634,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":671,\"resize\":\"fit\"}}}]},\"3184\":null,\"3185\":{\"media\":[{\"id\":1554768625726328832,\"id_str\":\"1554768625726328832\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"url\":\"https:\\/\\/t.co\\/WrVic4OPRi\",\"display_url\":\"pic.twitter.com\\/WrVic4OPRi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554768633062215691\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"small\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"large\":{\"w\":648,\"h\":648,\"resize\":\"fit\"}}}]},\"3186\":{\"media\":[{\"id\":1554768309056331776,\"id_str\":\"1554768309056331776\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"url\":\"https:\\/\\/t.co\\/opacZr7G7c\",\"display_url\":\"pic.twitter.com\\/opacZr7G7c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StephenQuartzz\\/status\\/1554768321983422464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"3187\":{\"media\":[{\"id\":1554767399236341760,\"id_str\":\"1554767399236341760\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"large\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554767408103137281,\"id_str\":\"1554767408103137281\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOkuFxXoAEWMPV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOkuFxXoAEWMPV.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":360,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":360,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":360,\"h\":480,\"resize\":\"fit\"}}},{\"id\":1554767411148201984,\"id_str\":\"1554767411148201984\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOkuRHXoAAE4eb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOkuRHXoAAE4eb.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":736,\"h\":981,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":736,\"h\":981,\"resize\":\"fit\"}}}]},\"3188\":null,\"3189\":{\"media\":[{\"id\":1554764964535177216,\"id_str\":\"1554764964535177216\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"url\":\"https:\\/\\/t.co\\/UWvwP9LxNe\",\"display_url\":\"pic.twitter.com\\/UWvwP9LxNe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CmskEmmanuel\\/status\\/1554765082739056641\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13628,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/720x1280\\/WDb0Oht8XXvZnkTX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/pl\\/jqf-ZLQsSUIylsx-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/320x568\\/SSqiw-Z37GC1xKKi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/480x852\\/ms6JOswrfZT7Ao6o.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3190\":{\"media\":[{\"id\":1554763832123326464,\"id_str\":\"1554763832123326464\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554763842403663872,\"id_str\":\"1554763842403663872\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOheigXgAAV02V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOheigXgAAV02V.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":474,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":628,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":628,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554763850720968705,\"id_str\":\"1554763850720968705\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhfBfXgAEZtyI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhfBfXgAEZtyI.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1554763853686349824,\"id_str\":\"1554763853686349824\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhfMiXoAAUBCf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhfMiXoAAUBCf.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":619,\"h\":1252,\"resize\":\"fit\"},\"medium\":{\"w\":593,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":336,\"h\":680,\"resize\":\"fit\"}}}]},\"3191\":{\"media\":[{\"id\":1554763035843108864,\"id_str\":\"1554763035843108864\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"url\":\"https:\\/\\/t.co\\/1PxDqmYaXY\",\"display_url\":\"pic.twitter.com\\/1PxDqmYaXY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/benita_ani\\/status\\/1554763044194058240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":969,\"h\":1200,\"resize\":\"fit\"}}}]},\"3192\":null,\"3193\":{\"media\":[{\"id\":1554761742458277888,\"id_str\":\"1554761742458277888\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZzXoicSwjA\",\"display_url\":\"pic.twitter.com\\/ZzXoicSwjA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akande_susan_b\\/status\\/1554761745159409664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"3194\":null,\"3195\":null,\"3196\":{\"media\":[{\"id\":1554758920064958466,\"id_str\":\"1554758920064958466\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"url\":\"https:\\/\\/t.co\\/2ZhUtWf8xb\",\"display_url\":\"pic.twitter.com\\/2ZhUtWf8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/opuwari66\\/status\\/1554758927639781377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"3197\":{\"media\":[{\"id\":1554758636550983680,\"id_str\":\"1554758636550983680\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":961,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1405,\"resize\":\"fit\"}}},{\"id\":1554758650958340098,\"id_str\":\"1554758650958340098\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcwW3WYAINtMn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcwW3WYAINtMn.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1365,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"3198\":{\"media\":[{\"id\":1554757310014263296,\"id_str\":\"1554757310014263296\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"url\":\"https:\\/\\/t.co\\/s8oGfNaHs6\",\"display_url\":\"pic.twitter.com\\/s8oGfNaHs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ariemu_ogaga\\/status\\/1554757312325246977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"medium\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"large\":{\"w\":225,\"h\":225,\"resize\":\"fit\"}}}]},\"3199\":null,\"3200\":null,\"3201\":{\"media\":[{\"id\":1554193160506580992,\"id_str\":\"1554193160506580992\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cync8O1w12\",\"display_url\":\"pic.twitter.com\\/Cync8O1w12\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jara_Connect\\/status\\/1554753949986525184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3202\":null,\"3203\":{\"media\":[{\"id\":1554749405697277953,\"id_str\":\"1554749405697277953\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"url\":\"https:\\/\\/t.co\\/L1J8YWRhY5\",\"display_url\":\"pic.twitter.com\\/L1J8YWRhY5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/izzitalk\\/status\\/1554750357292650496\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140033,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/480x270\\/fNDZwcYi-bz4p8Hr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/pl\\/IC1FcvniOpJoXNTZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/1280x720\\/g0qgr_tAH7C_WRkG.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/640x360\\/-bkuguUed3BpRCb_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":{\"media\":[{\"id\":1554745603615252480,\"id_str\":\"1554745603615252480\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"url\":\"https:\\/\\/t.co\\/tj6Iz3obts\",\"display_url\":\"pic.twitter.com\\/tj6Iz3obts\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuel_atser\\/status\\/1554745680635338754\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":45000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/848x480\\/3FYtWcFr6dCR2trZ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/636x360\\/o48bwH6vub60hXlp.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/pl\\/YT7ENWhLs0UMFsWX.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/476x270\\/85dGWxuqhVueVK-H.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3208\":{\"media\":[{\"id\":1554745383775096833,\"id_str\":\"1554745383775096833\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"url\":\"https:\\/\\/t.co\\/7y4Kb7qmrv\",\"display_url\":\"pic.twitter.com\\/7y4Kb7qmrv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobzyeasy\\/status\\/1554745475730968580\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":43835,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/pl\\/aOuhxsjkxDDrzB_9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/vid\\/320x564\\/sQ0lkg_XUGnWbVTC.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/vid\\/480x848\\/xNM51didkY4-QAqr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3209\":{\"media\":[{\"id\":1554745248693338112,\"id_str\":\"1554745248693338112\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"url\":\"https:\\/\\/t.co\\/tP7gEqnV9g\",\"display_url\":\"pic.twitter.com\\/tP7gEqnV9g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MineralSorcerer\\/status\\/1554745332243767296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,40],\"duration_millis\":23730,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745248693338112\\/pu\\/vid\\/272x640\\/IY9lRTWujHIqkS70.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745248693338112\\/pu\\/pl\\/3ZC0gUpmjpKBDeOE.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3210\":null,\"3211\":{\"media\":[{\"id\":1554743513115500544,\"id_str\":\"1554743513115500544\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"url\":\"https:\\/\\/t.co\\/PWYGApAmQx\",\"display_url\":\"pic.twitter.com\\/PWYGApAmQx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Victorbajju_30\\/status\\/1554743515757903873\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":660,\"resize\":\"fit\"}}}]},\"3212\":{\"media\":[{\"id\":1554739912653643776,\"id_str\":\"1554739912653643776\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"url\":\"https:\\/\\/t.co\\/gWlbMkTYBc\",\"display_url\":\"pic.twitter.com\\/gWlbMkTYBc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trouve_ng\\/status\\/1554739926125760512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":{\"media\":[{\"id\":1554735874017054722,\"id_str\":\"1554735874017054722\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"url\":\"https:\\/\\/t.co\\/05qgfyGbKI\",\"display_url\":\"pic.twitter.com\\/05qgfyGbKI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stancity3\\/status\\/1554735948960784384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554735874017054722\\/pu\\/vid\\/240x426\\/ue3i4WLgKO4M8aFV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554735874017054722\\/pu\\/pl\\/1zEDT5258Gsam96c.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3217\":{\"media\":[{\"id\":1554735937007112194,\"id_str\":\"1554735937007112194\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"url\":\"https:\\/\\/t.co\\/kwr5SYLOaz\",\"display_url\":\"pic.twitter.com\\/kwr5SYLOaz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554735947413176320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3218\":{\"media\":[{\"id\":1554735749492260865,\"id_str\":\"1554735749492260865\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"url\":\"https:\\/\\/t.co\\/B1ILEk1MbJ\",\"display_url\":\"pic.twitter.com\\/B1ILEk1MbJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554735759818620928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":971,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":971,\"resize\":\"fit\"}}}]},\"3219\":{\"media\":[{\"id\":1554735431408914432,\"id_str\":\"1554735431408914432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"url\":\"https:\\/\\/t.co\\/pOOwEAlBEc\",\"display_url\":\"pic.twitter.com\\/pOOwEAlBEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/classsuitehotel\\/status\\/1554735443136192512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"}}}]},\"3220\":{\"media\":[{\"id\":1554733300681478144,\"id_str\":\"1554733300681478144\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"url\":\"https:\\/\\/t.co\\/svknsySMh6\",\"display_url\":\"pic.twitter.com\\/svknsySMh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554733314564554752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3221\":{\"media\":[{\"id\":1554732684127117312,\"id_str\":\"1554732684127117312\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"url\":\"https:\\/\\/t.co\\/xRALFAqC3I\",\"display_url\":\"pic.twitter.com\\/xRALFAqC3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1554733053494403074\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22080,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/320x568\\/pTgW6J0xZcSpfKKi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/480x852\\/tt-pQtiUEFYnVS0b.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/576x1024\\/yyIKeyfGyDe06RuF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/pl\\/4mcO-pxYgsJ6zlEn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3222\":{\"media\":[{\"id\":1554731444085444610,\"id_str\":\"1554731444085444610\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"url\":\"https:\\/\\/t.co\\/bN4xCQw4No\",\"display_url\":\"pic.twitter.com\\/bN4xCQw4No\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialOSYB\\/status\\/1554731771115225088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[76,135],\"duration_millis\":110333,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/320x568\\/TK66VW9PsDXgWzWO.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/608x1080\\/xGa6PJ7wjMkTcpb7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/pl\\/0FUmToypRAVm6rjg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/480x852\\/ULBhUNLZVuUwJkZ9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3223\":null,\"3224\":{\"media\":[{\"id\":1554728882691051521,\"id_str\":\"1554728882691051521\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"url\":\"https:\\/\\/t.co\\/bINlXjK7kw\",\"display_url\":\"pic.twitter.com\\/bINlXjK7kw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1554729093857435649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,23],\"duration_millis\":87620,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/pl\\/9-Z5GflkBCayakME.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/vid\\/480x270\\/fgAeZEC-ryT1bbiP.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/vid\\/738x414\\/qHJ_oZoV08I_zexI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3225\":{\"media\":[{\"id\":1554728955416088577,\"id_str\":\"1554728955416088577\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"url\":\"https:\\/\\/t.co\\/dPgOSI5xlD\",\"display_url\":\"pic.twitter.com\\/dPgOSI5xlD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IgweRichard8\\/status\\/1554728958880612353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":693,\"resize\":\"fit\"}}}]},\"3226\":{\"media\":[{\"id\":1554726832318054400,\"id_str\":\"1554726832318054400\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"url\":\"https:\\/\\/t.co\\/00jFWrl2SL\",\"display_url\":\"pic.twitter.com\\/00jFWrl2SL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554726841772023808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3227\":{\"media\":[{\"id\":1554725413808742400,\"id_str\":\"1554725413808742400\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"url\":\"https:\\/\\/t.co\\/iBJGDUp0bv\",\"display_url\":\"pic.twitter.com\\/iBJGDUp0bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GbengaAdene\\/status\\/1554725439599435777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":805,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1374,\"resize\":\"fit\"}}}]},\"3228\":{\"media\":[{\"id\":1554725356984303618,\"id_str\":\"1554725356984303618\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554725356824838144,\"id_str\":\"1554725356824838144\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYjWQAAXlln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYjWQAAXlln.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554725356841717760,\"id_str\":\"1554725356841717760\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnX0AAfJek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnX0AAfJek.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554725356841668609,\"id_str\":\"1554725356841668609\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnXEAESpZ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnXEAESpZ_.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3229\":{\"media\":[{\"id\":1554723961283411970,\"id_str\":\"1554723961283411970\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"url\":\"https:\\/\\/t.co\\/te9gZGngXO\",\"display_url\":\"pic.twitter.com\\/te9gZGngXO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554723970548699137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3230\":null,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":{\"media\":[{\"id\":1554718930496897026,\"id_str\":\"1554718930496897026\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"url\":\"https:\\/\\/t.co\\/026mVX7MRE\",\"display_url\":\"pic.twitter.com\\/026mVX7MRE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554718940496105473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"3235\":{\"media\":[{\"id\":1554717357368643585,\"id_str\":\"1554717357368643585\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"url\":\"https:\\/\\/t.co\\/ApThT4W86Q\",\"display_url\":\"pic.twitter.com\\/ApThT4W86Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1554717574407020547\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[539,279],\"duration_millis\":59433,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/pl\\/PTmLIaxFZwzMcKOe.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/520x270\\/cK77WLbfDBb8eKy6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/1078x558\\/1BsEw4kC1altfZAL.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/694x360\\/E2pX_nnu2jdQSmwW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3236\":null,\"3237\":{\"media\":[{\"id\":1554716346495148033,\"id_str\":\"1554716346495148033\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"url\":\"https:\\/\\/t.co\\/uFYpJZTqZn\",\"display_url\":\"pic.twitter.com\\/uFYpJZTqZn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Nation22\\/status\\/1554716381962293253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"3238\":{\"media\":[{\"id\":1554715093241397248,\"id_str\":\"1554715093241397248\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"url\":\"https:\\/\\/t.co\\/p19mVRa2AF\",\"display_url\":\"pic.twitter.com\\/p19mVRa2AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554715101596467202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":600,\"resize\":\"fit\"}}}]},\"3239\":{\"media\":[{\"id\":1554714723341504512,\"id_str\":\"1554714723341504512\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"url\":\"https:\\/\\/t.co\\/3NV2jjlWqk\",\"display_url\":\"pic.twitter.com\\/3NV2jjlWqk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714732828950531\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"3240\":{\"media\":[{\"id\":1554714291810484224,\"id_str\":\"1554714291810484224\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"url\":\"https:\\/\\/t.co\\/HcavykGv4z\",\"display_url\":\"pic.twitter.com\\/HcavykGv4z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714297980395521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"3241\":{\"media\":[{\"id\":1554714055516033024,\"id_str\":\"1554714055516033024\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"url\":\"https:\\/\\/t.co\\/nIr7rFMsXP\",\"display_url\":\"pic.twitter.com\\/nIr7rFMsXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714059471200258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"3242\":{\"media\":[{\"id\":1554713627369816064,\"id_str\":\"1554713627369816064\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"url\":\"https:\\/\\/t.co\\/BtUY195DPp\",\"display_url\":\"pic.twitter.com\\/BtUY195DPp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554713631694233600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"3243\":null,\"3244\":null,\"3245\":{\"media\":[{\"id\":1554708457663627265,\"id_str\":\"1554708457663627265\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"url\":\"https:\\/\\/t.co\\/PX6DaVUJWp\",\"display_url\":\"pic.twitter.com\\/PX6DaVUJWp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brownsonmfon5\\/status\\/1554708618041298944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,131],\"duration_millis\":32100,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/480x872\\/zYn6JXLK4smNaedj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/pl\\/JseOasT7YD8elWl8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/320x582\\/rhWBIHFa5D1DpZJ4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/576x1048\\/JGBnM5AFyDV8jP34.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3246\":null,\"3247\":null,\"3248\":{\"media\":[{\"id\":1554706425024241672,\"id_str\":\"1554706425024241672\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"url\":\"https:\\/\\/t.co\\/qIoG1x8dre\",\"display_url\":\"pic.twitter.com\\/qIoG1x8dre\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1554706442460037120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"}}}]},\"3249\":{\"media\":[{\"id\":1554706289195978754,\"id_str\":\"1554706289195978754\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}},{\"id\":1554706289162338306,\"id_str\":\"1554706289162338306\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIf-WQAIJtLq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIf-WQAIJtLq.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"}}},{\"id\":1554706289158197249,\"id_str\":\"1554706289158197249\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIf9XEAEBkSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIf9XEAEBkSt.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"}}},{\"id\":1554706289208475648,\"id_str\":\"1554706289208475648\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgJWQAAptrI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgJWQAAptrI.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"3250\":null,\"3251\":null,\"3252\":{\"media\":[{\"id\":1554701933344178179,\"id_str\":\"1554701933344178179\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"url\":\"https:\\/\\/t.co\\/uCudsKYuHQ\",\"display_url\":\"pic.twitter.com\\/uCudsKYuHQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gabriel1tv\\/status\\/1554702333577150466\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":57767,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/480x852\\/efC_yNkHtXYx0TCY.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/320x568\\/_nkS18ZfMTpOQ_qW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/pl\\/A6ckCZLhh__AhJIT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/576x1024\\/7KtmXTkR1OS0UoXv.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3253\":{\"media\":[{\"id\":1554701102259527680,\"id_str\":\"1554701102259527680\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554701114586660868,\"id_str\":\"1554701114586660868\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNobTLXgAQVjlm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNobTLXgAQVjlm.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"}}}]},\"3254\":null,\"3255\":null,\"3256\":{\"media\":[{\"id\":1554699843205054464,\"id_str\":\"1554699843205054464\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNnRS6XwAAJ-WK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNnRS6XwAAJ-WK.jpg\",\"url\":\"https:\\/\\/t.co\\/1kmZspJzt4\",\"display_url\":\"pic.twitter.com\\/1kmZspJzt4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealLlamaDuck\\/status\\/1554699844798775298\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"small\":{\"w\":401,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":425,\"h\":721,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3257\":{\"media\":[{\"id\":1554696305351483392,\"id_str\":\"1554696305351483392\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"url\":\"https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"display_url\":\"pic.twitter.com\\/Q1TM4ZvoeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1554696312964218880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3258\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3259\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3260\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3261\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3262\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3263\":null,\"3264\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3265\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3266\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3267\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3268\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3269\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3270\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3271\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3272\":{\"media\":[{\"id\":1554690663807127557,\"id_str\":\"1554690663807127557\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554690663794593792,\"id_str\":\"1554690663794593792\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-8X0AA-ILm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-8X0AA-ILm.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1792,\"resize\":\"fit\"},\"medium\":{\"w\":643,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554690663819649029,\"id_str\":\"1554690663819649029\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6_CWIAUIPqh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6_CWIAUIPqh.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":643,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1792,\"resize\":\"fit\"}}}]},\"3273\":{\"media\":[{\"id\":1554690266120044545,\"id_str\":\"1554690266120044545\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"url\":\"https:\\/\\/t.co\\/gb3t8xLJMa\",\"display_url\":\"pic.twitter.com\\/gb3t8xLJMa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DOluwarado\\/status\\/1554690307333160963\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":35566,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/pl\\/RkanugZSvUloueTk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/480x852\\/Pf8IEOeKx73A6dml.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/540x960\\/5oBxauH9JH-77mI2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/320x568\\/X1-lxuQNRBfXgEpc.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3274\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3275\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3276\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3277\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3278\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3279\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3280\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZEd7\",\"display_url\":\"pic.twitter.com\\/y5GWRqZEd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3281\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3282\":{\"media\":[{\"id\":1554687110980182016,\"id_str\":\"1554687110980182016\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554687110980182016\\/pu\\/img\\/mx3avzPG8nBzYxmK.jpg\",\"url\":\"https:\\/\\/t.co\\/L8esduYBU5\",\"display_url\":\"pic.twitter.com\\/L8esduYBU5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DNobody101\\/status\\/1554687233462251521\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":256,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":256,\"h\":400,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,25],\"duration_millis\":12866,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554687110980182016\\/pu\\/pl\\/4jDjYcK9rx4jDt-s.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554687110980182016\\/pu\\/vid\\/256x400\\/MsDUlhgfBSV-wDnz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3283\":{\"media\":[{\"id\":1554682413741232129,\"id_str\":\"1554682413741232129\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"url\":\"https:\\/\\/t.co\\/nKjT1dfk9O\",\"display_url\":\"pic.twitter.com\\/nKjT1dfk9O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554682464236437505\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6965,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/720x1280\\/tq2HWljflo7l42pI.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/320x568\\/8I94hDRkL46bOzoz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/480x852\\/aIQr_5BQzt_eh0-Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/pl\\/EUVWCYN9WR1gUIbG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3284\":{\"media\":[{\"id\":1554682389405769728,\"id_str\":\"1554682389405769728\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNXZWcWIAAFZ6R.jpg\",\"url\":\"https:\\/\\/t.co\\/OwaPX1mvFZ\",\"display_url\":\"pic.twitter.com\\/OwaPX1mvFZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Balzack_17\\/status\\/1554682393843359744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":151,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":143,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":151,\"resize\":\"fit\"}}}]},\"3285\":{\"media\":[{\"id\":1554676146490556416,\"id_str\":\"1554676146490556416\",\"indices\":[38,61],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNRt9xXwAAWx1_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNRt9xXwAAWx1_.jpg\",\"url\":\"https:\\/\\/t.co\\/9waqiKJ6XC\",\"display_url\":\"pic.twitter.com\\/9waqiKJ6XC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zoeys_Mom74\\/status\\/1554676151293022209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}}]},\"3286\":{\"media\":[{\"id\":1554672480987627523,\"id_str\":\"1554672480987627523\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"url\":\"https:\\/\\/t.co\\/PPFuzmH34P\",\"display_url\":\"pic.twitter.com\\/PPFuzmH34P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554672615503060992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":66524,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/pl\\/_CieEmAiwr23yzcG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/320x568\\/cue5BfLlkfCuXCn1.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/720x1280\\/REitIbspgW2wJgEK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/480x852\\/xz0YoOtoXjtYbJf6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3287\":null,\"3288\":{\"media\":[{\"id\":1554663811361243137,\"id_str\":\"1554663811361243137\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"url\":\"https:\\/\\/t.co\\/WOAC3Y4qkx\",\"display_url\":\"pic.twitter.com\\/WOAC3Y4qkx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mkaketo\\/status\\/1554663850615742467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"},\"large\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"}}}]},\"3289\":null,\"3290\":{\"media\":[{\"id\":1554642733482082313,\"id_str\":\"1554642733482082313\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"url\":\"https:\\/\\/t.co\\/OBdiJp9HTM\",\"display_url\":\"pic.twitter.com\\/OBdiJp9HTM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lit_spych0\\/status\\/1554642745213558785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":630,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"}}}]},\"3291\":{\"media\":[{\"id\":1554637063869300736,\"id_str\":\"1554637063869300736\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"url\":\"https:\\/\\/t.co\\/PKifp64k9P\",\"display_url\":\"pic.twitter.com\\/PKifp64k9P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/seemeon79\\/status\\/1554637068256559105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3292\":{\"media\":[{\"id\":1554630376060076032,\"id_str\":\"1554630376060076032\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"url\":\"https:\\/\\/t.co\\/YVk6rRhGYx\",\"display_url\":\"pic.twitter.com\\/YVk6rRhGYx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ychizway\\/status\\/1554630465654505472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":17133,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/320x568\\/3FY7NWFnFwhGxiJi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/480x852\\/46-RKMXMrHST8wIZ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/720x1280\\/G55a3ug6-hNsx6jT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/pl\\/S5lrgkClnOPJwf6X.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3293\":null,\"3294\":{\"media\":[{\"id\":1554610553548689410,\"id_str\":\"1554610553548689410\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"url\":\"https:\\/\\/t.co\\/mI2CAEvgD3\",\"display_url\":\"pic.twitter.com\\/mI2CAEvgD3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554610609047670785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1625,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":952,\"h\":1200,\"resize\":\"fit\"}}}]},\"3295\":{\"media\":[{\"id\":1554608983436136448,\"id_str\":\"1554608983436136448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"url\":\"https:\\/\\/t.co\\/k8OQNbybAR\",\"display_url\":\"pic.twitter.com\\/k8OQNbybAR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554609029619523584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":9380,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/pl\\/pgBPDLM47DQRy8LF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/vid\\/320x564\\/fm-bHOaE2R-OEy7W.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/vid\\/480x848\\/NJmqG3lydOXclaVH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3296\":{\"media\":[{\"id\":1554603542266216453,\"id_str\":\"1554603542266216453\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"url\":\"https:\\/\\/t.co\\/G5tXbMi8JI\",\"display_url\":\"pic.twitter.com\\/G5tXbMi8JI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554603566140198912\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":355,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,44],\"duration_millis\":6542,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/vid\\/368x704\\/i3BjdQuVeas3qU2m.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/vid\\/320x612\\/cam0KQsRzZwqM76S.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/pl\\/SQuvEF80lrKo__Sg.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3297\":{\"media\":[{\"id\":1554602770505809920,\"id_str\":\"1554602770505809920\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"url\":\"https:\\/\\/t.co\\/e54sgy8pxo\",\"display_url\":\"pic.twitter.com\\/e54sgy8pxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602830664802305\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":23048,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/pl\\/WgDfNwVQYYxLOsxJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/480x852\\/o-OdLn23xPZJYT5Q.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/576x1024\\/W9_SEbyQAhbmHDQD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/320x568\\/panBhxJchCoJ7wyX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3298\":{\"media\":[{\"id\":1554601929199714304,\"id_str\":\"1554601929199714304\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"url\":\"https:\\/\\/t.co\\/qtcJ27cTDc\",\"display_url\":\"pic.twitter.com\\/qtcJ27cTDc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602151254556680\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":79373,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/pl\\/PMiQGKZENsKtQhWe.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/320x568\\/eIBbDsJxcPnoOlxz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/480x852\\/6Djqns_RttXe2wxm.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/576x1024\\/Wrn7ClwSrMBy5DhO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3299\":{\"media\":[{\"id\":1554600621277331456,\"id_str\":\"1554600621277331456\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"url\":\"https:\\/\\/t.co\\/2QbWRdDCYQ\",\"display_url\":\"pic.twitter.com\\/2QbWRdDCYQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554600627451449345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1412,\"resize\":\"fit\"}}}]},\"3300\":{\"media\":[{\"id\":1554599720932327425,\"id_str\":\"1554599720932327425\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"url\":\"https:\\/\\/t.co\\/cz3d3iBHCW\",\"display_url\":\"pic.twitter.com\\/cz3d3iBHCW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554599767337992197\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"}}}]},\"3301\":{\"media\":[{\"id\":1554599422385864704,\"id_str\":\"1554599422385864704\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6uBqjHALV\",\"display_url\":\"pic.twitter.com\\/Y6uBqjHALV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554599480476975104\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":16278,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/vid\\/480x848\\/ofic7dZCT-aNYK1Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/pl\\/RQS6JEufrstPbB9v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/vid\\/320x564\\/fgk2_ggt6rs-UM0u.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3302\":null,\"3303\":{\"media\":[{\"id\":1554597524304023552,\"id_str\":\"1554597524304023552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"url\":\"https:\\/\\/t.co\\/FhfDGunyTi\",\"display_url\":\"pic.twitter.com\\/FhfDGunyTi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554597548131745793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"3304\":{\"media\":[{\"id\":1554597007825698816,\"id_str\":\"1554597007825698816\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"url\":\"https:\\/\\/t.co\\/uDd8WrJ4ea\",\"display_url\":\"pic.twitter.com\\/uDd8WrJ4ea\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554597054571225088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":9546,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/vid\\/480x848\\/N119Ml4JbdGdVHCc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/pl\\/P5juKTxdN0XYZoHc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/vid\\/320x564\\/aFt76PBA7cDuFD-f.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3305\":{\"media\":[{\"id\":1554596190947246080,\"id_str\":\"1554596190947246080\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"url\":\"https:\\/\\/t.co\\/RtVmnAvt1C\",\"display_url\":\"pic.twitter.com\\/RtVmnAvt1C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kapital929\\/status\\/1554597018705747968\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":140026,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/pl\\/SAfd_uatgjBL76ds.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/vid\\/352x640\\/sSlT3OskILbErszN.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/vid\\/320x580\\/P16Fcs9VSQgK0uRr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3306\":{\"media\":[{\"id\":1554594537326125056,\"id_str\":\"1554594537326125056\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"url\":\"https:\\/\\/t.co\\/PBdTHFPCJc\",\"display_url\":\"pic.twitter.com\\/PBdTHFPCJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/teacherchike1\\/status\\/1554594793111654402\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":132540,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/720x1280\\/VMhxukKfvLyOobG0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/pl\\/RuGEORJSj_UVQme9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/320x568\\/spNlw1HYxul-TSig.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/480x852\\/gL5a5FHp3CR7cyzV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3307\":null,\"3308\":null,\"3309\":null,\"3310\":null,\"3311\":{\"media\":[{\"id\":1554587975564103680,\"id_str\":\"1554587975564103680\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"url\":\"https:\\/\\/t.co\\/4o2OIyw7oL\",\"display_url\":\"pic.twitter.com\\/4o2OIyw7oL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aboki_30BG\\/status\\/1554587978223288320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":582,\"h\":500,\"resize\":\"fit\"}}}]},\"3312\":null,\"3313\":{\"media\":[{\"id\":1554586208952532994,\"id_str\":\"1554586208952532994\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"url\":\"https:\\/\\/t.co\\/d3aa5a3f0V\",\"display_url\":\"pic.twitter.com\\/d3aa5a3f0V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/alabedejoseph1\\/status\\/1554586355518300166\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21313,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/320x568\\/OI7uRtCIORhpIaD4.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/pl\\/PmMyyebtIymx_ajL.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/720x1280\\/KiFLBOr1UGN5aTrz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/480x852\\/2H2gKnshjZjh3wUf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":{\"media\":[{\"id\":1554579304125763584,\"id_str\":\"1554579304125763584\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"url\":\"https:\\/\\/t.co\\/YMztRiBL5u\",\"display_url\":\"pic.twitter.com\\/YMztRiBL5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamogswagg\\/status\\/1554579339567661056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3320\":{\"media\":[{\"id\":1554577725578428416,\"id_str\":\"1554577725578428416\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"url\":\"https:\\/\\/t.co\\/WKf1KfCP3I\",\"display_url\":\"pic.twitter.com\\/WKf1KfCP3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danley_codes\\/status\\/1554577906474655744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9657,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/pl\\/AoC5E0LoVsbGBRwK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/320x568\\/J0dlf_8LhV2nRKo4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/480x852\\/Jmov1fvHpJ5j593e.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/720x1280\\/q7q_Dbrn_jBKVZsm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3321\":{\"media\":[{\"id\":1554576149258321921,\"id_str\":\"1554576149258321921\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"url\":\"https:\\/\\/t.co\\/g8U8HCWEfs\",\"display_url\":\"pic.twitter.com\\/g8U8HCWEfs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sub_sidy1\\/status\\/1554577036416618496\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":54982,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/pl\\/de4k4uy_0fry__Mo.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/480x270\\/IbHpqNhBGQXIYlef.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/640x360\\/8fhEH6YfgFjldA8J.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/1280x720\\/45FSISikcJ4HdDR9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3322\":null,\"3323\":{\"media\":[{\"id\":1554573316358254592,\"id_str\":\"1554573316358254592\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573316358254592\\/pu\\/img\\/Ym2lGVq8WGEFe_eA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573316358254592\\/pu\\/img\\/Ym2lGVq8WGEFe_eA.jpg\",\"url\":\"https:\\/\\/t.co\\/8HHW4wyIgC\",\"display_url\":\"pic.twitter.com\\/8HHW4wyIgC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bilbo52835554\\/status\\/1554573835566923776\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":464,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":464,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":464,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,29],\"duration_millis\":84066,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573316358254592\\/pu\\/vid\\/372x270\\/TldLmcKi0Bd0Y_ai.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573316358254592\\/pu\\/vid\\/640x464\\/tzlDn54Mftz7ddeD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573316358254592\\/pu\\/pl\\/D4gYBmthzpyPsMAc.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3324\":{\"media\":[{\"id\":1554573601575165952,\"id_str\":\"1554573601575165952\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"url\":\"https:\\/\\/t.co\\/mcz8JzpAuh\",\"display_url\":\"pic.twitter.com\\/mcz8JzpAuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PBplusOilAndGas\\/status\\/1554573632428449801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3325\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3326\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3327\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3328\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3329\":{\"media\":[{\"id\":1554571272939503617,\"id_str\":\"1554571272939503617\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"url\":\"https:\\/\\/t.co\\/StLsLPAdY2\",\"display_url\":\"pic.twitter.com\\/StLsLPAdY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554571349196242944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":528,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,10],\"duration_millis\":16044,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/296x270\\/clTKbUW4m08hCF-A.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/pl\\/sLPUGtrFxPi1Wa5y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/528x480\\/8bI65dhscddXjFLT.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/396x360\\/3_yLhXWsVkXv3VRD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3330\":null,\"3331\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3332\":{\"media\":[{\"id\":1554567052840603650,\"id_str\":\"1554567052840603650\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"url\":\"https:\\/\\/t.co\\/LG5PfsgYol\",\"display_url\":\"pic.twitter.com\\/LG5PfsgYol\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554567123468443649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,30],\"duration_millis\":29800,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554567052840603650\\/pu\\/pl\\/Lwwmz2_7rDvfVLan.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554567052840603650\\/pu\\/vid\\/272x480\\/8EesVic9frW2XXwL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3333\":{\"media\":[{\"id\":1554566176721850370,\"id_str\":\"1554566176721850370\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554566188239290368,\"id_str\":\"1554566188239290368\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLttjXWAAANpkE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLttjXWAAANpkE.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}}]},\"3334\":{\"media\":[{\"id\":1554565458031960065,\"id_str\":\"1554565458031960065\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"url\":\"https:\\/\\/t.co\\/I0oRy79J6S\",\"display_url\":\"pic.twitter.com\\/I0oRy79J6S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554565609727397888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45015,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/320x568\\/UjpWLpIH2Iqg8RmR.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/480x852\\/0jEWmSnK_YBXHtAH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/pl\\/TD0fxfPdH-aytKqw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/720x1280\\/FhPZRdgvk5NcB_lO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3335\":{\"media\":[{\"id\":1554565442655686662,\"id_str\":\"1554565442655686662\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"url\":\"https:\\/\\/t.co\\/DMOVY73bxJ\",\"display_url\":\"pic.twitter.com\\/DMOVY73bxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565491808784386\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":24760,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/478x270\\/ImRbCeS9g1ptDVe4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/638x360\\/DKU5KuKhAGNgEZOL.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/852x480\\/_BHamD5qDtTpC_3y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/pl\\/klPbjIzIPBsvQnlD.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3336\":{\"media\":[{\"id\":1554564980330094592,\"id_str\":\"1554564980330094592\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"url\":\"https:\\/\\/t.co\\/3keenBlNEu\",\"display_url\":\"pic.twitter.com\\/3keenBlNEu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565016489279498\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":17166,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/pl\\/C-MHSUetUM-03Ehu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/vid\\/480x848\\/BGzK4J-Ihv3gpvNn.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/vid\\/320x564\\/wSpVJ9jIgqAvhyuh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3337\":{\"media\":[{\"id\":1554564792278450177,\"id_str\":\"1554564792278450177\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"url\":\"https:\\/\\/t.co\\/09SipiAiwx\",\"display_url\":\"pic.twitter.com\\/09SipiAiwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554564794887421954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":492,\"h\":973,\"resize\":\"fit\"},\"small\":{\"w\":344,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":492,\"h\":973,\"resize\":\"fit\"}}}]},\"3338\":{\"media\":[{\"id\":1554564294246899713,\"id_str\":\"1554564294246899713\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554564449863979009,\"id_str\":\"1554564449863979009\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLsIXaX0AEgMPo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLsIXaX0AEgMPo.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554564521875968001,\"id_str\":\"1554564521875968001\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLsMjrXkAEe4a7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLsMjrXkAEe4a7.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":620,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":934,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":934,\"h\":1024,\"resize\":\"fit\"}}}]},\"3339\":{\"media\":[{\"id\":1554563909604065282,\"id_str\":\"1554563909604065282\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"url\":\"https:\\/\\/t.co\\/4GXSetMpTG\",\"display_url\":\"pic.twitter.com\\/4GXSetMpTG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554564046287953921\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":21000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/1280x720\\/PLtxvYJj6VKNr5s4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/640x360\\/6XQKl9FISVzNIdfF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/pl\\/Y2g_9siON3YoNo6C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/480x270\\/qTSV2I5F7rnWVkzC.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3340\":{\"media\":[{\"id\":1554563339052892162,\"id_str\":\"1554563339052892162\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"url\":\"https:\\/\\/t.co\\/JY1Tr0L5rC\",\"display_url\":\"pic.twitter.com\\/JY1Tr0L5rC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ade_omo_Giwa\\/status\\/1554563551221760001\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":36453,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563339052892162\\/pu\\/vid\\/480x256\\/fP-oR3Vyyqqotb0T.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563339052892162\\/pu\\/pl\\/u0-roX8f64y8AtLN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3341\":{\"media\":[{\"id\":1554563235650707460,\"id_str\":\"1554563235650707460\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"url\":\"https:\\/\\/t.co\\/9viU1HDss1\",\"display_url\":\"pic.twitter.com\\/9viU1HDss1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1554563249894555648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3342\":null,\"3343\":{\"media\":[{\"id\":1554560154431111170,\"id_str\":\"1554560154431111170\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"url\":\"https:\\/\\/t.co\\/szWcNq2iac\",\"display_url\":\"pic.twitter.com\\/szWcNq2iac\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Longdenjr1\\/status\\/1554560172017811465\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"3344\":null,\"3345\":{\"media\":[{\"id\":1554558659690102785,\"id_str\":\"1554558659690102785\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"url\":\"https:\\/\\/t.co\\/vrjqi5d14o\",\"display_url\":\"pic.twitter.com\\/vrjqi5d14o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554559036997226499\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":27604,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/vid\\/320x400\\/luj_HcQTOUqS9TP7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/pl\\/XaZ4P0yUluuMA-2-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/vid\\/480x600\\/rakCjRkSmQA2Efs4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":{\"media\":[{\"id\":1554555511479144457,\"id_str\":\"1554555511479144457\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"url\":\"https:\\/\\/t.co\\/2liLRM6tlC\",\"display_url\":\"pic.twitter.com\\/2liLRM6tlC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554555643092140034\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44905,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/320x320\\/RnvrzfV3hZ7FJGkS.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/720x720\\/pLRCZT6EBp9prtso.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/pl\\/pJi1cFnDYcnlDLCV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/540x540\\/4HnMHhii9JFCEXFz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3350\":{\"media\":[{\"id\":1554555488305614848,\"id_str\":\"1554555488305614848\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"url\":\"https:\\/\\/t.co\\/AhTJ0ySCrx\",\"display_url\":\"pic.twitter.com\\/AhTJ0ySCrx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChoWurld\\/status\\/1554555495012343808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":628,\"resize\":\"fit\"}}}]},\"3351\":{\"media\":[{\"id\":1554554894576754691,\"id_str\":\"1554554894576754691\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"url\":\"https:\\/\\/t.co\\/Raxmh0ZXgW\",\"display_url\":\"pic.twitter.com\\/Raxmh0ZXgW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nobleman_0\\/status\\/1554554904034811906\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"medium\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"small\":{\"w\":200,\"h\":176,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[25,22],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLjcLMXoAM_v_B.mp4\"}]}}]},\"3352\":{\"media\":[{\"id\":1554554838129721344,\"id_str\":\"1554554838129721344\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554554838322761728,\"id_str\":\"1554554838322761728\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY5oX0AAn1vg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY5oX0AAn1vg.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554554838217883648,\"id_str\":\"1554554838217883648\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY5PXgAAixD6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY5PXgAAixD6.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554554838117224590,\"id_str\":\"1554554838117224590\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY43XkI4r0KH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY43XkI4r0KH.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"3353\":{\"media\":[{\"id\":1554552833843896320,\"id_str\":\"1554552833843896320\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhkOXXoAASOkC.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xu2ljAYTk\",\"display_url\":\"pic.twitter.com\\/8Xu2ljAYTk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennygirl4succes\\/status\\/1554552848750346241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3354\":{\"media\":[{\"id\":1554552357991731201,\"id_str\":\"1554552357991731201\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"url\":\"https:\\/\\/t.co\\/aQw7WbalFJ\",\"display_url\":\"pic.twitter.com\\/aQw7WbalFJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554552365029724160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3355\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/LCSaSYlEaZ\",\"display_url\":\"pic.twitter.com\\/LCSaSYlEaZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3356\":null,\"3357\":{\"media\":[{\"id\":1554551317397442565,\"id_str\":\"1554551317397442565\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"url\":\"https:\\/\\/t.co\\/lp2xxqa7u3\",\"display_url\":\"pic.twitter.com\\/lp2xxqa7u3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554551325458849794\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3358\":null,\"3359\":null,\"3360\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3361\":null,\"3362\":null,\"3363\":null,\"3364\":{\"media\":[{\"id\":1554544531168788492,\"id_str\":\"1554544531168788492\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531181281281,\"id_str\":\"1554544531181281281\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8iWIAE19_k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8iWIAE19_k.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531139448836,\"id_str\":\"1554544531139448836\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8YX0AQWNMM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8YX0AQWNMM.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531156176896,\"id_str\":\"1554544531156176896\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8cXEAArX2o.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8cXEAArX2o.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}}]},\"3365\":null,\"3366\":{\"media\":[{\"id\":1554542635007836165,\"id_str\":\"1554542635007836165\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"url\":\"https:\\/\\/t.co\\/crUGc0k2UF\",\"display_url\":\"pic.twitter.com\\/crUGc0k2UF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibrahim_IbbJnr8\\/status\\/1554542637566332931\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":563,\"resize\":\"fit\"}}}]},\"3367\":null,\"3368\":null,\"3369\":null,\"3370\":{\"media\":[{\"id\":1554540500048384008,\"id_str\":\"1554540500048384008\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"url\":\"https:\\/\\/t.co\\/bdasAJa1dE\",\"display_url\":\"pic.twitter.com\\/bdasAJa1dE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/faithluseno\\/status\\/1554540517962178561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1262,\"resize\":\"fit\"}}}]},\"3371\":{\"media\":[{\"id\":1554540278492663810,\"id_str\":\"1554540278492663810\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"url\":\"https:\\/\\/t.co\\/CIOjlFCbwK\",\"display_url\":\"pic.twitter.com\\/CIOjlFCbwK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554540287493562369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3372\":null,\"3373\":{\"media\":[{\"id\":1554538999016050692,\"id_str\":\"1554538999016050692\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"url\":\"https:\\/\\/t.co\\/ehyeapFYxO\",\"display_url\":\"pic.twitter.com\\/ehyeapFYxO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554539007748579328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":525,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":926,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":988,\"h\":1280,\"resize\":\"fit\"}}}]},\"3374\":{\"media\":[{\"id\":1554538865230336001,\"id_str\":\"1554538865230336001\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}},{\"id\":1554538865263796226,\"id_str\":\"1554538865263796226\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JWWYAIR-rF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JWWYAIR-rF.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"3375\":{\"media\":[{\"id\":1554537620385972224,\"id_str\":\"1554537620385972224\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"url\":\"https:\\/\\/t.co\\/gmg5Y1glGZ\",\"display_url\":\"pic.twitter.com\\/gmg5Y1glGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Anya_Nyako2505\\/status\\/1554537633778483209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":532,\"resize\":\"fit\"}}}]},\"3376\":null,\"3377\":{\"media\":[{\"id\":1554534881459306496,\"id_str\":\"1554534881459306496\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"url\":\"https:\\/\\/t.co\\/xwkwF6pzK4\",\"display_url\":\"pic.twitter.com\\/xwkwF6pzK4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/malltallerny\\/status\\/1554535404321251331\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":22753,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/480x900\\/ykKanzf8lctld_U4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/656x1232\\/UHYlLawvwD4kL3mN.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/320x600\\/8C6OaOgPVE-WsRJN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/pl\\/u69IGEYa8FyJlwTo.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":{\"media\":[{\"id\":1554532757677776898,\"id_str\":\"1554532757677776898\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"url\":\"https:\\/\\/t.co\\/hR4kZxxeQH\",\"display_url\":\"pic.twitter.com\\/hR4kZxxeQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532762673111045\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":610,\"h\":480,\"resize\":\"fit\"}}}]},\"3383\":{\"media\":[{\"id\":1554532260363247616,\"id_str\":\"1554532260363247616\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"url\":\"https:\\/\\/t.co\\/rOWH1F4sUj\",\"display_url\":\"pic.twitter.com\\/rOWH1F4sUj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532268265377798\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":718,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":678,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":718,\"resize\":\"fit\"}}}]},\"3384\":{\"media\":[{\"id\":1554532215308140545,\"id_str\":\"1554532215308140545\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"url\":\"https:\\/\\/t.co\\/4gnSBIXGVm\",\"display_url\":\"pic.twitter.com\\/4gnSBIXGVm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532226620178433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":719,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":719,\"resize\":\"fit\"}}}]},\"3385\":null,\"3386\":{\"media\":[{\"id\":1554526455593312259,\"id_str\":\"1554526455593312259\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"url\":\"https:\\/\\/t.co\\/b6J542Frck\",\"display_url\":\"pic.twitter.com\\/b6J542Frck\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554526464267227136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3387\":{\"media\":[{\"id\":1554524957996187648,\"id_str\":\"1554524957996187648\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554524957987799040,\"id_str\":\"1554524957987799040\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINotXgAAQZUd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINotXgAAQZUd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3388\":null,\"3389\":null,\"3390\":{\"media\":[{\"id\":1554521789283311616,\"id_str\":\"1554521789283311616\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"url\":\"https:\\/\\/t.co\\/1CoGL7BvNu\",\"display_url\":\"pic.twitter.com\\/1CoGL7BvNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521869461618688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12480,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/pl\\/MT9WF7zEuIiyOJX-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/720x1280\\/EGeEW5p1K3c_5W65.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/480x852\\/wktJqP7OvgrZDV0_.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/320x568\\/E73218wmuqdt9jEf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3391\":{\"media\":[{\"id\":1554521082723553280,\"id_str\":\"1554521082723553280\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"url\":\"https:\\/\\/t.co\\/DCUApG0DFj\",\"display_url\":\"pic.twitter.com\\/DCUApG0DFj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521163749023744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13786,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/480x852\\/hBd6HA5fJCLaz9BD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/320x568\\/8Jaynvzu0AgtQ6em.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/720x1280\\/lcsi8MFwcSbUfC8I.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/pl\\/9wrSh6vVyLtQUHZ9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3392\":{\"media\":[{\"id\":1554517895480229888,\"id_str\":\"1554517895480229888\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLByi0WQAASnOD.jpg\",\"url\":\"https:\\/\\/t.co\\/aQs9X4makk\",\"display_url\":\"pic.twitter.com\\/aQs9X4makk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/asonyagh\\/status\\/1554517903122243588\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"large\":{\"w\":420,\"h\":525,\"resize\":\"fit\"},\"small\":{\"w\":420,\"h\":525,\"resize\":\"fit\"}}}]},\"3393\":{\"media\":[{\"id\":1554517448593997825,\"id_str\":\"1554517448593997825\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554517624394063876,\"id_str\":\"1554517624394063876\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBiw8XoAQKCwX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBiw8XoAQKCwX.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3394\":{\"media\":[{\"id\":1554517150160900098,\"id_str\":\"1554517150160900098\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLBHKSX0AI8gJN.jpg\",\"url\":\"https:\\/\\/t.co\\/ZpFgTAF0PU\",\"display_url\":\"pic.twitter.com\\/ZpFgTAF0PU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dubaidollars\\/status\\/1554517160407572485\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":228,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":228,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[83,38],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLBHKSX0AI8gJN.mp4\"}]}}]},\"3395\":{\"media\":[{\"id\":1554516297483960320,\"id_str\":\"1554516297483960320\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554516307512643585,\"id_str\":\"1554516307512643585\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAWHLX0AEeHg9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAWHLX0AEeHg9.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554516316203192323,\"id_str\":\"1554516316203192323\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAWnjXEAMJrNQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAWnjXEAMJrNQ.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3396\":null,\"3397\":null,\"3398\":{\"media\":[{\"id\":1554511966923784192,\"id_str\":\"1554511966923784192\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":772,\"h\":679,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":772,\"h\":679,\"resize\":\"fit\"}}},{\"id\":1554511970031788032,\"id_str\":\"1554511970031788032\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZozWYAAm4hi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZozWYAAm4hi.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":487,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":516,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":516,\"resize\":\"fit\"}}}]},\"3399\":{\"media\":[{\"id\":1554511236750274560,\"id_str\":\"1554511236750274560\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"url\":\"https:\\/\\/t.co\\/GJ1GzU7jGV\",\"display_url\":\"pic.twitter.com\\/GJ1GzU7jGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554511554326179840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":908,\"h\":443,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":908,\"h\":443,\"resize\":\"fit\"}}}]},\"3400\":null,\"3401\":{\"media\":[{\"id\":1554508205828489216,\"id_str\":\"1554508205828489216\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"url\":\"https:\\/\\/t.co\\/7RaExlFZdy\",\"display_url\":\"pic.twitter.com\\/7RaExlFZdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554508215945142273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3402\":{\"media\":[{\"id\":1554504752481898496,\"id_str\":\"1554504752481898496\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554504752481898496\\/pu\\/img\\/meZ72OFANM3fQCFD.jpg\",\"url\":\"https:\\/\\/t.co\\/ivpyHUQNnb\",\"display_url\":\"pic.twitter.com\\/ivpyHUQNnb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahsaan444\\/status\\/1554504829770219520\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":51785,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/vid\\/640x360\\/8PxlqO6h6EpysF-d.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/pl\\/-A3XjsTj2xpL8EP9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/vid\\/480x270\\/SUJctZtFqmzkSnOZ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554504752481898496\\/pu\\/vid\\/960x540\\/d8KDqpu7-FlvLJvd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3403\":{\"media\":[{\"id\":1554504651654934529,\"id_str\":\"1554504651654934529\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK1vpuVsAEYaFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK1vpuVsAEYaFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/QUxG0FexRP\",\"display_url\":\"pic.twitter.com\\/QUxG0FexRP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1554504669308674048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":261,\"h\":193,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":261,\"h\":193,\"resize\":\"fit\"},\"small\":{\"w\":261,\"h\":193,\"resize\":\"fit\"}}}]},\"3404\":{\"media\":[{\"id\":1554502822032396288,\"id_str\":\"1554502822032396288\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0FJ2VUAAAsou.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0FJ2VUAAAsou.jpg\",\"url\":\"https:\\/\\/t.co\\/cDAteuAkvW\",\"display_url\":\"pic.twitter.com\\/cDAteuAkvW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1554503515556327425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":263,\"h\":192,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":263,\"h\":192,\"resize\":\"fit\"},\"medium\":{\"w\":263,\"h\":192,\"resize\":\"fit\"}}}]},\"3405\":{\"media\":[{\"id\":1554502394603601920,\"id_str\":\"1554502394603601920\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"url\":\"https:\\/\\/t.co\\/zkX2Sbg0bN\",\"display_url\":\"pic.twitter.com\\/zkX2Sbg0bN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ObidientYoutube\\/status\\/1554502403889807362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1242,\"h\":698,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"3406\":{\"media\":[{\"id\":1554501901521403904,\"id_str\":\"1554501901521403904\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"url\":\"https:\\/\\/t.co\\/6pzyCrCJWe\",\"display_url\":\"pic.twitter.com\\/6pzyCrCJWe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554502371946172416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"}}}]},\"3407\":null,\"3408\":{\"media\":[{\"id\":1554501297348513793,\"id_str\":\"1554501297348513793\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"url\":\"https:\\/\\/t.co\\/ibD6jbcgbc\",\"display_url\":\"pic.twitter.com\\/ibD6jbcgbc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554501332723179524\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":24133,\"variants\":[{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/640x640\\/t3EgbyRAaiHwk_qV.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/320x320\\/2_4FMbCEAXhn0mWK.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/540x540\\/ZLe0LEnVl8dDB3Ir.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/pl\\/oT0hirFKFkT7o7Gb.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3409\":{\"media\":[{\"id\":1554500816718938114,\"id_str\":\"1554500816718938114\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/XigzZJDjZT\",\"display_url\":\"pic.twitter.com\\/XigzZJDjZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500874185089025\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":520,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":942,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":942,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[120,157],\"duration_millis\":28141,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/pl\\/X3qSCzBfipsg60NS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/720x942\\/f66kDqGW_HEd-ECy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/480x628\\/9P5kf7dGPctZKyj_.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/320x418\\/PGt0IXDswz94frKP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3410\":{\"media\":[{\"id\":1554500275339239430,\"id_str\":\"1554500275339239430\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"url\":\"https:\\/\\/t.co\\/ROTOrsvY71\",\"display_url\":\"pic.twitter.com\\/ROTOrsvY71\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rinxe_\\/status\\/1554500278094905347\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":583,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":840,\"resize\":\"fit\"}}}]},\"3411\":{\"media\":[{\"id\":1554500123123765248,\"id_str\":\"1554500123123765248\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"url\":\"https:\\/\\/t.co\\/65H2indrwE\",\"display_url\":\"pic.twitter.com\\/65H2indrwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500163846262789\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":37366,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/320x568\\/2Br2GB4WdVBDNrQ_.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/480x852\\/ZjXwA_XfvhRpz8SV.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/576x1024\\/Bn3T0RPTg6OYIUIf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/pl\\/Aqyj5HlwR8awkFUN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3412\":{\"media\":[{\"id\":1554498460908486657,\"id_str\":\"1554498460908486657\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"url\":\"https:\\/\\/t.co\\/wGq0ra4JHP\",\"display_url\":\"pic.twitter.com\\/wGq0ra4JHP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554498498958987264\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29844,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/pl\\/kUhnVV5HGnNT8NO4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/540x540\\/psaNxvD4kF4-nk-l.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/720x720\\/3HsNhph4WfbrZK1j.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/320x320\\/hIFkM_mAUo0Z4DsT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3413\":null,\"3414\":{\"media\":[{\"id\":1554494932181721088,\"id_str\":\"1554494932181721088\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"url\":\"https:\\/\\/t.co\\/ut4fE6Z6FA\",\"display_url\":\"pic.twitter.com\\/ut4fE6Z6FA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realproscrow\\/status\\/1554495310986203141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"3415\":null,\"3416\":null,\"3417\":null,\"3418\":{\"media\":[{\"id\":1554491570216472577,\"id_str\":\"1554491570216472577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"url\":\"https:\\/\\/t.co\\/1omjHcInPM\",\"display_url\":\"pic.twitter.com\\/1omjHcInPM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunladeAbiola1\\/status\\/1554491572502372353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"3419\":{\"media\":[{\"id\":1554490735684206593,\"id_str\":\"1554490735684206593\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"url\":\"https:\\/\\/t.co\\/mo8Q7t3wg2\",\"display_url\":\"pic.twitter.com\\/mo8Q7t3wg2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554490738594938883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"medium\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":345,\"resize\":\"fit\"}}}]},\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":{\"media\":[{\"id\":1554488556680355841,\"id_str\":\"1554488556680355841\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"url\":\"https:\\/\\/t.co\\/QmblcXb8XR\",\"display_url\":\"pic.twitter.com\\/QmblcXb8XR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554488563089162242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":900,\"resize\":\"fit\"}}}]},\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":{\"media\":[{\"id\":1554483167431741440,\"id_str\":\"1554483167431741440\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiNGwX0AAi4yh.jpg\",\"url\":\"https:\\/\\/t.co\\/qSXunCgTi2\",\"display_url\":\"pic.twitter.com\\/qSXunCgTi2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554484017214492674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":408,\"resize\":\"fit\"}}}]},\"3429\":{\"media\":[{\"id\":1554483342929793024,\"id_str\":\"1554483342929793024\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKiXUiXkAAHG5m.jpg\",\"url\":\"https:\\/\\/t.co\\/khWHTKmnVb\",\"display_url\":\"pic.twitter.com\\/khWHTKmnVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1554483355172933641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":902,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":677,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3430\":{\"media\":[{\"id\":1554482605986385920,\"id_str\":\"1554482605986385920\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKhsbNXkAAkAJu.jpg\",\"url\":\"https:\\/\\/t.co\\/mymu8Wotml\",\"display_url\":\"pic.twitter.com\\/mymu8Wotml\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tobilobaddon\\/status\\/1554482608142254083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"small\":{\"w\":568,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":568,\"h\":328,\"resize\":\"fit\"}}}]},\"3431\":null,\"3432\":null,\"3433\":{\"media\":[{\"id\":1554481705255374848,\"id_str\":\"1554481705255374848\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKg3_uXEAA5dJQ.jpg\",\"url\":\"https:\\/\\/t.co\\/XRhDOqdGKn\",\"display_url\":\"pic.twitter.com\\/XRhDOqdGKn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eagle103_voice\\/status\\/1554481716479381506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1065,\"h\":1391,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":919,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":521,\"h\":680,\"resize\":\"fit\"}}}]},\"3434\":null,\"3435\":{\"media\":[{\"id\":1554481206649143304,\"id_str\":\"1554481206649143304\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZKga-RXwAg14Gl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ew5eZ1Fkee\",\"display_url\":\"pic.twitter.com\\/Ew5eZ1Fkee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/qf00_\\/status\\/1554481216363061253\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZKga-RXwAg14Gl.mp4\"}]}}]},\"3436\":{\"media\":[{\"id\":1554481002176733184,\"id_str\":\"1554481002176733184\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554481002176733184\\/pu\\/img\\/3oOmInHUeEz2Br83.jpg\",\"url\":\"https:\\/\\/t.co\\/Nf5jmVAtUC\",\"display_url\":\"pic.twitter.com\\/Nf5jmVAtUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Molobeduu\\/status\\/1554481031083859973\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":594,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[33,20],\"duration_millis\":5339,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481002176733184\\/pu\\/vid\\/444x270\\/rbq0bqTRVg0BETa6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481002176733184\\/pu\\/pl\\/41MRdD9uwFe_Xdrh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554481002176733184\\/pu\\/vid\\/594x360\\/J4qd76Up8195zEXR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3437\":null,\"3438\":null,\"3439\":{\"media\":[{\"id\":1554480660156407808,\"id_str\":\"1554480660156407808\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKf7KbWYAAu_xx.jpg\",\"url\":\"https:\\/\\/t.co\\/OJmnM0SGwE\",\"display_url\":\"pic.twitter.com\\/OJmnM0SGwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554480671648792578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1070,\"h\":1427,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3440\":null,\"3441\":{\"media\":[{\"id\":1554479932788641793,\"id_str\":\"1554479932788641793\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554479932788641793\\/pu\\/img\\/8uHAdPtgjy8XyyuD.jpg\",\"url\":\"https:\\/\\/t.co\\/s6lXtlwBZP\",\"display_url\":\"pic.twitter.com\\/s6lXtlwBZP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1554479982822543361\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":352,\"h\":352,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30000,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479932788641793\\/pu\\/vid\\/352x352\\/p_KWRu3n8A9yZ6PV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554479932788641793\\/pu\\/pl\\/a2pV4jqHciQbEI4K.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3442\":null,\"3443\":null,\"3444\":{\"media\":[{\"id\":1554479779327479810,\"id_str\":\"1554479779327479810\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKfH5FXkAIF9Gn.jpg\",\"url\":\"https:\\/\\/t.co\\/Isv0fNWq2f\",\"display_url\":\"pic.twitter.com\\/Isv0fNWq2f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dynamicfxtrader\\/status\\/1554479786671702017\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1744,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":{\"media\":[{\"id\":1554475083061665792,\"id_str\":\"1554475083061665792\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKa2iIWIAAX_GW.jpg\",\"url\":\"https:\\/\\/t.co\\/xIXhJMAMYn\",\"display_url\":\"pic.twitter.com\\/xIXhJMAMYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SayNoToRACISMW1\\/status\\/1554475085347655681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"small\":{\"w\":566,\"h\":317,\"resize\":\"fit\"},\"large\":{\"w\":566,\"h\":317,\"resize\":\"fit\"}}}]},\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":{\"media\":[{\"id\":1554471389511536640,\"id_str\":\"1554471389511536640\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKXfilX0AAJPrz.jpg\",\"url\":\"https:\\/\\/t.co\\/wHFRX1347o\",\"display_url\":\"pic.twitter.com\\/wHFRX1347o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Valiantjoe1\\/status\\/1554471394880225281\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3456\":null,\"3457\":{\"media\":[{\"id\":1554469413599977472,\"id_str\":\"1554469413599977472\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKVshvWIAAwIyZ.jpg\",\"url\":\"https:\\/\\/t.co\\/U2R14Y4sei\",\"display_url\":\"pic.twitter.com\\/U2R14Y4sei\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itodougo\\/status\\/1554469421036576769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"medium\":{\"w\":905,\"h\":1025,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"}}}]},\"3458\":null,\"3459\":{\"media\":[{\"id\":1554465870575030275,\"id_str\":\"1554465870575030275\",\"indices\":[56,79],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554465870575030275\\/pu\\/img\\/rJAAYpEbGg51ss1t.jpg\",\"url\":\"https:\\/\\/t.co\\/qSszhovah4\",\"display_url\":\"pic.twitter.com\\/qSszhovah4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bryteazy\\/status\\/1554466213534769152\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":1280,\"h\":1140,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1069,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":606,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[64,57],\"duration_millis\":20833,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/pl\\/ftQ2XOfJEzhBIZQX.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/vid\\/808x720\\/JpS9CG1_gH_bDWa7.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/vid\\/302x270\\/n3P1amXALOxxk0H4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554465870575030275\\/pu\\/vid\\/404x360\\/mBs9CAfxivKDeZu9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3460\":{\"media\":[{\"id\":1554465523370426370,\"id_str\":\"1554465523370426370\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKSKFgWAAIca7K.jpg\",\"url\":\"https:\\/\\/t.co\\/ecNkeV31YO\",\"display_url\":\"pic.twitter.com\\/ecNkeV31YO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/medicare_in\\/status\\/1554465540617506818\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1414,\"h\":2000,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"}}}]},\"3461\":null,\"3462\":{\"media\":[{\"id\":1554463378256658432,\"id_str\":\"1554463378256658432\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKQNOVXgAAoNoK.jpg\",\"url\":\"https:\\/\\/t.co\\/EcL52eIPAV\",\"display_url\":\"pic.twitter.com\\/EcL52eIPAV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoviePlusx\\/status\\/1554463390118121475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":718,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":898,\"resize\":\"fit\"}}}]},\"3463\":{\"media\":[{\"id\":1554463350402285568,\"id_str\":\"1554463350402285568\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554463350402285568\\/pu\\/img\\/VuxetL-ryt0aUdcO.jpg\",\"url\":\"https:\\/\\/t.co\\/m6ECdRSDzU\",\"display_url\":\"pic.twitter.com\\/m6ECdRSDzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olisasegun1\\/status\\/1554463372409700353\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,2],\"duration_millis\":8173,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463350402285568\\/pu\\/pl\\/5otLX1Dyj0SmdJd6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554463350402285568\\/pu\\/vid\\/320x640\\/ynE6QWtRCNqqz9n3.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3464\":{\"media\":[{\"id\":1554462666688708608,\"id_str\":\"1554462666688708608\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKPjziWQAA1n0_.jpg\",\"url\":\"https:\\/\\/t.co\\/cuyRJDGRbG\",\"display_url\":\"pic.twitter.com\\/cuyRJDGRbG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nickyB112\\/status\\/1554462671868674048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"3465\":{\"media\":[{\"id\":1554461471794413568,\"id_str\":\"1554461471794413568\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554461471794413568\\/pu\\/img\\/dZ9PGO3d0THLXGRt.jpg\",\"url\":\"https:\\/\\/t.co\\/AEHJLCBgvR\",\"display_url\":\"pic.twitter.com\\/AEHJLCBgvR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/callmelemontee\\/status\\/1554461575834107905\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/vid\\/480x852\\/6s-wG3DLKLIMSH_r.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/vid\\/720x1280\\/p4JpiyYNEwcDmUZT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/pl\\/IrQJu3CdVDQthSnF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554461471794413568\\/pu\\/vid\\/320x568\\/534BFsY-f_JOaMPD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3466\":{\"media\":[{\"id\":1554461077555011584,\"id_str\":\"1554461077555011584\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKOHTjWYAA9MkC.jpg\",\"url\":\"https:\\/\\/t.co\\/YbG5YomfHO\",\"display_url\":\"pic.twitter.com\\/YbG5YomfHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sam_Deck\\/status\\/1554461094823034885\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":922,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}}]},\"3467\":null,\"3468\":{\"media\":[{\"id\":1554457464489349120,\"id_str\":\"1554457464489349120\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKK0_1XkAAXW-8.jpg\",\"url\":\"https:\\/\\/t.co\\/XIHsYklIxS\",\"display_url\":\"pic.twitter.com\\/XIHsYklIxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554457473960103938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":771,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":764,\"h\":771,\"resize\":\"fit\"}}},{\"id\":1554457464501899266,\"id_str\":\"1554457464501899266\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKK0_4XEAIFlb2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKK0_4XEAIFlb2.jpg\",\"url\":\"https:\\/\\/t.co\\/XIHsYklIxS\",\"display_url\":\"pic.twitter.com\\/XIHsYklIxS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554457473960103938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":754,\"h\":758,\"resize\":\"fit\"},\"medium\":{\"w\":754,\"h\":758,\"resize\":\"fit\"},\"small\":{\"w\":676,\"h\":680,\"resize\":\"fit\"}}}]},\"3469\":{\"media\":[{\"id\":1554454951190986753,\"id_str\":\"1554454951190986753\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKIitEWAAEAgMm.jpg\",\"url\":\"https:\\/\\/t.co\\/gh7OVsyT2j\",\"display_url\":\"pic.twitter.com\\/gh7OVsyT2j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/samuelobiora21\\/status\\/1554454961697820673\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3470\":null,\"3471\":{\"media\":[{\"id\":1554453674776313857,\"id_str\":\"1554453674776313857\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKHYaDXwAExuSt.jpg\",\"url\":\"https:\\/\\/t.co\\/642t62L8pp\",\"display_url\":\"pic.twitter.com\\/642t62L8pp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554453682267250688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3472\":null,\"3473\":null,\"3474\":{\"media\":[{\"id\":1554453095563902976,\"id_str\":\"1554453095563902976\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKG2sUXwAAVm3v.jpg\",\"url\":\"https:\\/\\/t.co\\/CLoG9bLDcw\",\"display_url\":\"pic.twitter.com\\/CLoG9bLDcw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Joynerkardinal\\/status\\/1554453118456369153\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":520,\"h\":1040,\"resize\":\"fit\"}}}]},\"3475\":null,\"3476\":{\"media\":[{\"id\":1554451334740512769,\"id_str\":\"1554451334740512769\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXEAEEzvb.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554451334740561920,\"id_str\":\"1554451334740561920\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvX0AAiuuH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvX0AAiuuH.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554451334740549632,\"id_str\":\"1554451334740549632\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXoAA-QnA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMvXoAA-QnA.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554451334748930051,\"id_str\":\"1554451334748930051\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFQMxXgAMAQUY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFQMxXgAMAQUY.jpg\",\"url\":\"https:\\/\\/t.co\\/WkP4ub1OWT\",\"display_url\":\"pic.twitter.com\\/WkP4ub1OWT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554451354311180290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}}]},\"3477\":{\"media\":[{\"id\":1554451058251923456,\"id_str\":\"1554451058251923456\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKFAGvWAAAVe9L.jpg\",\"url\":\"https:\\/\\/t.co\\/X6qCM1jrbW\",\"display_url\":\"pic.twitter.com\\/X6qCM1jrbW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobsandjapa\\/status\\/1554451066577641472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":737,\"h\":933,\"resize\":\"fit\"},\"small\":{\"w\":537,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":737,\"h\":933,\"resize\":\"fit\"}}}]},\"3478\":null,\"3479\":{\"media\":[{\"id\":1554448579049259011,\"id_str\":\"1554448579049259011\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKCvy_XgAMJP4K.jpg\",\"url\":\"https:\\/\\/t.co\\/Yj5h9sBlMv\",\"display_url\":\"pic.twitter.com\\/Yj5h9sBlMv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554448582018826241\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":364,\"resize\":\"fit\"},\"large\":{\"w\":663,\"h\":364,\"resize\":\"fit\"}}}]},\"3480\":{\"media\":[{\"id\":1554444631999451137,\"id_str\":\"1554444631999451137\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ_KDFXEAESPBi.jpg\",\"url\":\"https:\\/\\/t.co\\/7weOt1UVAc\",\"display_url\":\"pic.twitter.com\\/7weOt1UVAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/buzzy_comedian\\/status\\/1554444641898057728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1010,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"3481\":{\"media\":[{\"id\":1554443348240392192,\"id_str\":\"1554443348240392192\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554443348240392192\\/pu\\/img\\/G9wY1DWeILlsPT8m.jpg\",\"url\":\"https:\\/\\/t.co\\/HbfHLJrcab\",\"display_url\":\"pic.twitter.com\\/HbfHLJrcab\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swatc_music\\/status\\/1554443572098760704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45400,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/vid\\/720x1280\\/Qu-bE-AFzM8IbPNz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/pl\\/hBpbe0-Hy6BNM0sG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/vid\\/320x568\\/R7kFd5OeWJGS2G2h.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554443348240392192\\/pu\\/vid\\/480x852\\/Q2AaJrXW4NO2DyxW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":{\"media\":[{\"id\":1554423117019287553,\"id_str\":\"1554423117019287553\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrltiXEAEH18c.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554423129274974208,\"id_str\":\"1554423129274974208\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrmbMWAAApXuO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrmbMWAAApXuO.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554423140574445570,\"id_str\":\"1554423140574445570\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrnFSWQAIEflc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrnFSWQAIEflc.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554423153534853123,\"id_str\":\"1554423153534853123\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJrn1kWYAMhhr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJrn1kWYAMhhr6.jpg\",\"url\":\"https:\\/\\/t.co\\/B6r9bOpDhy\",\"display_url\":\"pic.twitter.com\\/B6r9bOpDhy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/willi_eee\\/status\\/1554423164620492804\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1153,\"h\":2048,\"resize\":\"fit\"}}}]},\"3487\":null,\"3488\":{\"media\":[{\"id\":1554420335201685504,\"id_str\":\"1554420335201685504\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554420335201685504\\/pu\\/img\\/JPrJOGp8SiMS1KPA.jpg\",\"url\":\"https:\\/\\/t.co\\/N2GpRHozvt\",\"display_url\":\"pic.twitter.com\\/N2GpRHozvt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mr_caustic\\/status\\/1554420378725916672\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29372,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/vid\\/540x540\\/kNspId8vC5zR-yYx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/pl\\/_3JVU5TGxkAOBB8S.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/vid\\/320x320\\/tSlEy9ILjxXzml-5.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554420335201685504\\/pu\\/vid\\/640x640\\/O1UC1l2SUQGbuSfN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3489\":null,\"3490\":{\"media\":[{\"id\":1554412767876087808,\"id_str\":\"1554412767876087808\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT-WAAA1Dia.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1554412767850991617,\"id_str\":\"1554412767850991617\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT4XEAEBtEt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT4XEAEBtEt.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554412767846834176,\"id_str\":\"1554412767846834176\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT3XoAAa90Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT3XoAAa90Z.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1554412767867707392,\"id_str\":\"1554412767867707392\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJiLT8WIAA8Kl1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJiLT8WIAA8Kl1.jpg\",\"url\":\"https:\\/\\/t.co\\/JRrtoY0KT7\",\"display_url\":\"pic.twitter.com\\/JRrtoY0KT7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezenwannemotors\\/status\\/1554412793348194306\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"3491\":{\"media\":[{\"id\":1554406977853423622,\"id_str\":\"1554406977853423622\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJc6SdXgAYSMcl.jpg\",\"url\":\"https:\\/\\/t.co\\/nUxgLZ5V5V\",\"display_url\":\"pic.twitter.com\\/nUxgLZ5V5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WAAW_Foundation\\/status\\/1554408047849644034\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3492\":null,\"3493\":{\"media\":[{\"id\":1554405846892814336,\"id_str\":\"1554405846892814336\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554405846892814336\\/pu\\/img\\/t3uPbGZQLlNBdnPN.jpg\",\"url\":\"https:\\/\\/t.co\\/DGb6mixasv\",\"display_url\":\"pic.twitter.com\\/DGb6mixasv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KingsEmpire1\\/status\\/1554406081807503360\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":140000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554405846892814336\\/pu\\/vid\\/240x426\\/_w5uWtu-wiU0iJuV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554405846892814336\\/pu\\/pl\\/11jCic6WS-gbrVdT.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":null,\"3499\":null,\"3500\":{\"media\":[{\"id\":1554397528505958400,\"id_str\":\"1554397528505958400\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJUUQ5XwAA8ITb.jpg\",\"url\":\"https:\\/\\/t.co\\/egpmD7humb\",\"display_url\":\"pic.twitter.com\\/egpmD7humb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hotstorybase\\/status\\/1554397534994501634\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"3501\":{\"media\":[{\"id\":1554396625849704448,\"id_str\":\"1554396625849704448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTfuPWYAAWSwZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":519,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":824,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554396632715771907,\"id_str\":\"1554396632715771907\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTgH0WQAMNv5m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTgH0WQAMNv5m.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":804,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":804,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554396641469382658,\"id_str\":\"1554396641469382658\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJTgobXwAISXmF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJTgobXwAISXmF.jpg\",\"url\":\"https:\\/\\/t.co\\/1psy7gC5KG\",\"display_url\":\"pic.twitter.com\\/1psy7gC5KG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554396643776151552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":858,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":858,\"h\":1080,\"resize\":\"fit\"}}}]},\"3502\":null,\"3503\":{\"media\":[{\"id\":1554366488051580929,\"id_str\":\"1554366488051580929\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZI4FeMWAAElieU.jpg\",\"url\":\"https:\\/\\/t.co\\/79PsEmTWxo\",\"display_url\":\"pic.twitter.com\\/79PsEmTWxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554366504594030592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":905,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":848,\"resize\":\"fit\"}}}]},\"3504\":null,\"3505\":{\"media\":[{\"id\":1554299705500307457,\"id_str\":\"1554299705500307457\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZH7WNzXEAEYPUL.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZH7WNzXEAEYPUL.png\",\"url\":\"https:\\/\\/t.co\\/E9hs285SVt\",\"display_url\":\"pic.twitter.com\\/E9hs285SVt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VictorZubarev\\/status\\/1554304430375313412\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":522,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":522,\"h\":348,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":522,\"h\":348,\"resize\":\"fit\"}}},{\"id\":1554299947390042112,\"id_str\":\"1554299947390042112\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZH7kS6XgAAJiXw.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZH7kS6XgAAJiXw.png\",\"url\":\"https:\\/\\/t.co\\/E9hs285SVt\",\"display_url\":\"pic.twitter.com\\/E9hs285SVt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VictorZubarev\\/status\\/1554304430375313412\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":522,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":522,\"h\":508,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":522,\"h\":508,\"resize\":\"fit\"}}},{\"id\":1554302841644277768,\"id_str\":\"1554302841644277768\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZH-Mw2WYAgVVOK.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZH-Mw2WYAgVVOK.png\",\"url\":\"https:\\/\\/t.co\\/E9hs285SVt\",\"display_url\":\"pic.twitter.com\\/E9hs285SVt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/VictorZubarev\\/status\\/1554304430375313412\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":538,\"h\":515,\"resize\":\"fit\"},\"large\":{\"w\":538,\"h\":515,\"resize\":\"fit\"},\"small\":{\"w\":538,\"h\":515,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3506\":null,\"3507\":{\"media\":[{\"id\":1554253617921671169,\"id_str\":\"1554253617921671169\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554253617921671169\\/pu\\/img\\/tyTv7XOB4mKdT_nP.jpg\",\"url\":\"https:\\/\\/t.co\\/2qnLi9wjTb\",\"display_url\":\"pic.twitter.com\\/2qnLi9wjTb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/adamazi_mbonu\\/status\\/1554253705226162176\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":41357,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/vid\\/320x568\\/pmQ8UhF2bTg2rh-l.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/vid\\/720x1280\\/B_RKWol3HYR_KAIM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/pl\\/dwcFLJZtqWs5OuUk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554253617921671169\\/pu\\/vid\\/480x852\\/Vx8agnAJk3NRIbQf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3508\":{\"media\":[{\"id\":1554249901529305088,\"id_str\":\"1554249901529305088\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZHODPjXEAAPNLD.jpg\",\"url\":\"https:\\/\\/t.co\\/KnUGijTCXF\",\"display_url\":\"pic.twitter.com\\/KnUGijTCXF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desportspastor\\/status\\/1554249904695959556\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1002,\"resize\":\"fit\"}}}]},\"3509\":{\"media\":[{\"id\":1554236780538380292,\"id_str\":\"1554236780538380292\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554236780538380292\\/pu\\/img\\/-viLiYdoVPlz3j_4.jpg\",\"url\":\"https:\\/\\/t.co\\/w6vBipGCtz\",\"display_url\":\"pic.twitter.com\\/w6vBipGCtz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatjaicaleb\\/status\\/1554236858175037440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":35000,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/vid\\/480x270\\/yPrqpuIH4h7aYi5q.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/vid\\/640x360\\/fpN7NrETMax8CjtB.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/pl\\/3Vja7H6hl5n59Tmt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554236780538380292\\/pu\\/vid\\/1280x720\\/2LxesVMoQQ4KT9h6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3510\":{\"media\":[{\"id\":1554234790714511360,\"id_str\":\"1554234790714511360\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554234790714511360\\/pu\\/img\\/mScWJ3DCjlUYSmMo.jpg\",\"url\":\"https:\\/\\/t.co\\/zQtHHQOWRz\",\"display_url\":\"pic.twitter.com\\/zQtHHQOWRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EphraimOmale\\/status\\/1554235561086525440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":66200,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/vid\\/320x568\\/5NTT1a8t3oO4R2og.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/vid\\/480x852\\/UTnWLaVmKSIEkFjr.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/vid\\/720x1280\\/EHhNXwb5lfpShkq6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554234790714511360\\/pu\\/pl\\/s7Hn_QcOABPaSs-h.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3511\":null,\"3512\":{\"media\":[{\"id\":1554232577854144513,\"id_str\":\"1554232577854144513\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554232577854144513\\/pu\\/img\\/wvRCRAD7GfQvkWkv.jpg\",\"url\":\"https:\\/\\/t.co\\/DMKDoJ0LDv\",\"display_url\":\"pic.twitter.com\\/DMKDoJ0LDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DonaldTomax\\/status\\/1554232665645191170\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/pl\\/3NVZ2npECm7eKJWG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/vid\\/720x1280\\/uUTFIy_Jafqa1_hb.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/vid\\/320x568\\/iCYDbr9ly2-POGeP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554232577854144513\\/pu\\/vid\\/480x852\\/vHkW3ALjIqEsB96t.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3513\":null,\"3514\":{\"media\":[{\"id\":1554216627239092228,\"id_str\":\"1554216627239092228\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554216627239092228\\/pu\\/img\\/v6-iYaj9yNzSagvr.jpg\",\"url\":\"https:\\/\\/t.co\\/6uJ0Iz5I5n\",\"display_url\":\"pic.twitter.com\\/6uJ0Iz5I5n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1554220296223211523\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":130283,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/vid\\/480x852\\/At3AU2pf-u-jrQWy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/vid\\/576x1024\\/LGTM59YObNQ7ok65.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/pl\\/691M9Nj8eH4BL4FK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554216627239092228\\/pu\\/vid\\/320x568\\/SGwDkKN3WFsKmhFs.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3515\":null,\"3516\":null,\"3517\":{\"media\":[{\"id\":1554204452093140992,\"id_str\":\"1554204452093140992\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554204452093140992\\/pu\\/img\\/fJ168X47390G7t9A.jpg\",\"url\":\"https:\\/\\/t.co\\/BNFbyWrV1Y\",\"display_url\":\"pic.twitter.com\\/BNFbyWrV1Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChainDustry\\/status\\/1554206276476870658\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":53429,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/vid\\/1280x720\\/jvBs6ifS0lPMASWk.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/vid\\/640x360\\/-biSh7WH8TO-2MoI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/pl\\/CZteHBMIwrtY9JdD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554204452093140992\\/pu\\/vid\\/480x270\\/0nppadAHQ56e9bFd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3518\":{\"media\":[{\"id\":1554198440766279680,\"id_str\":\"1554198440766279680\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGfP1RXEAAqGga.jpg\",\"url\":\"https:\\/\\/t.co\\/cJYbjTHw10\",\"display_url\":\"pic.twitter.com\\/cJYbjTHw10\",\"expanded_url\":\"https:\\/\\/twitter.com\\/s_ifame\\/status\\/1554198465030258689\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"3519\":null,\"3520\":null,\"3521\":null,\"3522\":null,\"3523\":null,\"3524\":{\"media\":[{\"id\":1554186450261909506,\"id_str\":\"1554186450261909506\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGUV5KWIAI9a3s.jpg\",\"url\":\"https:\\/\\/t.co\\/dW10Gpztl4\",\"display_url\":\"pic.twitter.com\\/dW10Gpztl4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/haleemamusah\\/status\\/1554186459778801664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1112,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":369,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":652,\"h\":1200,\"resize\":\"fit\"}}}]},\"3525\":{\"media\":[{\"id\":1554185276821569539,\"id_str\":\"1554185276821569539\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGTRlwXgAMuElX.jpg\",\"url\":\"https:\\/\\/t.co\\/fCK2E788IZ\",\"display_url\":\"pic.twitter.com\\/fCK2E788IZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdennnConsult\\/status\\/1554185285428191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"3526\":{\"media\":[{\"id\":1554183410318561286,\"id_str\":\"1554183410318561286\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183410318561286\\/pu\\/img\\/D87v5oqYmAGqZdAY.jpg\",\"url\":\"https:\\/\\/t.co\\/CUBz7ldRnk\",\"display_url\":\"pic.twitter.com\\/CUBz7ldRnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554183475233693697\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":656,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,41],\"duration_millis\":29280,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183410318561286\\/pu\\/pl\\/3jZ8jRewTN5osmrP.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183410318561286\\/pu\\/vid\\/320x436\\/LLfAloFte7Uh0A-Y.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183410318561286\\/pu\\/vid\\/480x656\\/WWOjN7zwuulZHDuV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3527\":{\"media\":[{\"id\":1554181811319742465,\"id_str\":\"1554181811319742465\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554181811319742465\\/pu\\/img\\/SRWoHqNBQPRS8a_k.jpg\",\"url\":\"https:\\/\\/t.co\\/ZyiQgn4CTX\",\"display_url\":\"pic.twitter.com\\/ZyiQgn4CTX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554181881100472323\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":30080,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554181811319742465\\/pu\\/vid\\/352x640\\/l2oZqlWXhHyraQAL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554181811319742465\\/pu\\/pl\\/thKmoQZgC-8NqHlH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554181811319742465\\/pu\\/vid\\/320x580\\/zyr2cdxSrtWltgbO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3528\":{\"media\":[{\"id\":1554175656929497089,\"id_str\":\"1554175656929497089\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKho3XkAE6rDV.jpg\",\"url\":\"https:\\/\\/t.co\\/X7rfQ2rEPP\",\"display_url\":\"pic.twitter.com\\/X7rfQ2rEPP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554175663430684679\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":568,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":601,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":601,\"resize\":\"fit\"}}},{\"id\":1554175660586930179,\"id_str\":\"1554175660586930179\",\"indices\":[71,94],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGKh2fXkAMbKYw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGKh2fXkAMbKYw.jpg\",\"url\":\"https:\\/\\/t.co\\/X7rfQ2rEPP\",\"display_url\":\"pic.twitter.com\\/X7rfQ2rEPP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554175663430684679\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":452,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":452,\"resize\":\"fit\"}}}]},\"3529\":null,\"3530\":{\"media\":[{\"id\":1554169038787452931,\"id_str\":\"1554169038787452931\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGEgaXWIAMf2rX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGEgaXWIAMf2rX.jpg\",\"url\":\"https:\\/\\/t.co\\/FLyhBuaBM0\",\"display_url\":\"pic.twitter.com\\/FLyhBuaBM0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zoeys_Mom74\\/status\\/1554169045934538752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"3531\":{\"media\":[{\"id\":1554168940330459137,\"id_str\":\"1554168940330459137\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554168940330459137\\/pu\\/img\\/f1S-usq5zSPrRetZ.jpg\",\"url\":\"https:\\/\\/t.co\\/PLF3UKH9sI\",\"display_url\":\"pic.twitter.com\\/PLF3UKH9sI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olaadura4christ\\/status\\/1554168957476773888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/vid\\/720x1280\\/0XFEZq7XcRIMkM2x.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/pl\\/uLIlTHQBFeFDlGYk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/vid\\/480x852\\/AjjeqFRXNWzvctSY.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554168940330459137\\/pu\\/vid\\/320x568\\/VPu_sOdlZG1yOdoh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3532\":null,\"3533\":null,\"3534\":null,\"3535\":{\"media\":[{\"id\":1554161997469700097,\"id_str\":\"1554161997469700097\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554161997469700097\\/pu\\/img\\/RlzyrINYjQqjfzJS.jpg\",\"url\":\"https:\\/\\/t.co\\/0sHsnO4v1A\",\"display_url\":\"pic.twitter.com\\/0sHsnO4v1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wildwestshoppin\\/status\\/1554162076708372480\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12033,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/vid\\/720x1280\\/SaPrkoZYvyaj_weN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/vid\\/480x852\\/qyyYiI-pDDwN5S6y.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/vid\\/320x568\\/vCtzovkd6RocuqdS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554161997469700097\\/pu\\/pl\\/44vJQjrNKEKsdq13.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3536\":{\"media\":[{\"id\":1554159191950086144,\"id_str\":\"1554159191950086144\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7jQCX0AAcITw.jpg\",\"url\":\"https:\\/\\/t.co\\/aXpX9C8mNH\",\"display_url\":\"pic.twitter.com\\/aXpX9C8mNH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1554159199227101185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"3537\":{\"media\":[{\"id\":1554158609285644290,\"id_str\":\"1554158609285644290\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZF7BVcWAAIxJSc.jpg\",\"url\":\"https:\\/\\/t.co\\/lrJoRAaQRz\",\"display_url\":\"pic.twitter.com\\/lrJoRAaQRz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_majikhub\\/status\\/1554158622007037960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3538\":{\"media\":[{\"id\":1554147085133512704,\"id_str\":\"1554147085133512704\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFwiioXgAANSSg.jpg\",\"url\":\"https:\\/\\/t.co\\/6923p84X0g\",\"display_url\":\"pic.twitter.com\\/6923p84X0g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialbmadona\\/status\\/1554148011684630528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1600,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554147085099868161,\"id_str\":\"1554147085099868161\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFwiigWIAEmblT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFwiigWIAEmblT.jpg\",\"url\":\"https:\\/\\/t.co\\/6923p84X0g\",\"display_url\":\"pic.twitter.com\\/6923p84X0g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialbmadona\\/status\\/1554148011684630528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"3539\":null,\"3540\":null,\"3541\":{\"media\":[{\"id\":1554135843866087425,\"id_str\":\"1554135843866087425\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNpXEAEtAzD.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554135843870310408,\"id_str\":\"1554135843870310408\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNqXgAgHsXZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNqXgAgHsXZ.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1554135843861831680,\"id_str\":\"1554135843861831680\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFmUNoWIAAX0uV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFmUNoWIAAX0uV.jpg\",\"url\":\"https:\\/\\/t.co\\/VShdaabNY2\",\"display_url\":\"pic.twitter.com\\/VShdaabNY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554135854083457024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3542\":{\"media\":[{\"id\":1554134920573902849,\"id_str\":\"1554134920573902849\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFleeHWYAEkohM.jpg\",\"url\":\"https:\\/\\/t.co\\/C4Lj4tJjjI\",\"display_url\":\"pic.twitter.com\\/C4Lj4tJjjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/agromarketsquar\\/status\\/1554134928413134848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3543\":{\"media\":[{\"id\":1554127197891428352,\"id_str\":\"1554127197891428352\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFec84XgAAbGQl.jpg\",\"url\":\"https:\\/\\/t.co\\/brnptiS1U6\",\"display_url\":\"pic.twitter.com\\/brnptiS1U6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554127208016379906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":816,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1392,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":462,\"resize\":\"fit\"}}}]},\"3544\":null,\"3545\":{\"media\":[{\"id\":1554124578724761603,\"id_str\":\"1554124578724761603\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554124578724761603\\/pu\\/img\\/_rjB_iy7rRBsAXr4.jpg\",\"url\":\"https:\\/\\/t.co\\/HyV09hKL85\",\"display_url\":\"pic.twitter.com\\/HyV09hKL85\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554124771629174786\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":32925,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/vid\\/720x1280\\/HRiKZPVyWZouJMZa.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/vid\\/320x568\\/TQJdy5G9cBenR6jL.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/vid\\/480x852\\/9qplHXJd-oo1H4qD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554124578724761603\\/pu\\/pl\\/r5VBJJtLIyNDBSE9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3546\":{\"media\":[{\"id\":1554123346412961792,\"id_str\":\"1554123346412961792\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa8xAWAAAsmcw.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":456,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":456,\"resize\":\"fit\"}}},{\"id\":1554123352595382273,\"id_str\":\"1554123352595382273\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa9ICWQAEOZHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa9ICWQAEOZHC.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}},{\"id\":1554123360631758851,\"id_str\":\"1554123360631758851\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa9l-XoAMkt2R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa9l-XoAMkt2R.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1554123366067568640,\"id_str\":\"1554123366067568640\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFa96OXgAA2UlW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFa96OXgAA2UlW.jpg\",\"url\":\"https:\\/\\/t.co\\/Xrfhp82TIj\",\"display_url\":\"pic.twitter.com\\/Xrfhp82TIj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnsonLeArtist\\/status\\/1554123369699852291\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"3547\":{\"media\":[{\"id\":1554122608614014978,\"id_str\":\"1554122608614014978\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFaR0fXgAIi3Y3.jpg\",\"url\":\"https:\\/\\/t.co\\/LXSlna9e0M\",\"display_url\":\"pic.twitter.com\\/LXSlna9e0M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554122616927125504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"medium\":{\"w\":660,\"h\":443,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":443,\"resize\":\"fit\"}}}]},\"3548\":{\"media\":[{\"id\":1554119089995632640,\"id_str\":\"1554119089995632640\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFXFAnX0AAayj2.jpg\",\"url\":\"https:\\/\\/t.co\\/alddff8jzd\",\"display_url\":\"pic.twitter.com\\/alddff8jzd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/modellabbn\\/status\\/1554119100007333888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":601,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":848,\"resize\":\"fit\"}}}]},\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":{\"media\":[{\"id\":1554094295795351552,\"id_str\":\"1554094295795351552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFAhzBXwAAuBei.jpg\",\"url\":\"https:\\/\\/t.co\\/xPmn2jesjy\",\"display_url\":\"pic.twitter.com\\/xPmn2jesjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554094314493468674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":{\"media\":[{\"id\":1554085980403126273,\"id_str\":\"1554085980403126273\",\"indices\":[290,313],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE49xxX0AEw85b.jpg\",\"url\":\"https:\\/\\/t.co\\/d36ETfc2is\",\"display_url\":\"pic.twitter.com\\/d36ETfc2is\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085998321192961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3561\":{\"media\":[{\"id\":1554085798483578881,\"id_str\":\"1554085798483578881\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4zMEX0AEvnaX.jpg\",\"url\":\"https:\\/\\/t.co\\/JON6RErm7P\",\"display_url\":\"pic.twitter.com\\/JON6RErm7P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085812974899202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3562\":{\"media\":[{\"id\":1554085414822187009,\"id_str\":\"1554085414822187009\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4c20XkAEAmk9.jpg\",\"url\":\"https:\\/\\/t.co\\/edeuEUUKmE\",\"display_url\":\"pic.twitter.com\\/edeuEUUKmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085432538841090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3563\":{\"media\":[{\"id\":1554085337202393093,\"id_str\":\"1554085337202393093\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4YVqXgAUzkN4.jpg\",\"url\":\"https:\\/\\/t.co\\/0Wp9yQ0JHO\",\"display_url\":\"pic.twitter.com\\/0Wp9yQ0JHO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085368139583489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3564\":{\"media\":[{\"id\":1554085254452871169,\"id_str\":\"1554085254452871169\",\"indices\":[293,316],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4ThZWAAE-hjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/yiAW9zI1nH\",\"display_url\":\"pic.twitter.com\\/yiAW9zI1nH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085268386447361\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3565\":{\"media\":[{\"id\":1554085161104449537,\"id_str\":\"1554085161104449537\",\"indices\":[291,314],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4OFpWIAEsepL.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6maa8aNF7\",\"display_url\":\"pic.twitter.com\\/Y6maa8aNF7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085193945849858\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3566\":{\"media\":[{\"id\":1554085056712515585,\"id_str\":\"1554085056712515585\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE4IAwXoAEcf7E.jpg\",\"url\":\"https:\\/\\/t.co\\/Kelu2VUCKU\",\"display_url\":\"pic.twitter.com\\/Kelu2VUCKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554085067063967744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3567\":{\"media\":[{\"id\":1554084700276379651,\"id_str\":\"1554084700276379651\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3zQ7X0AMz4a2.jpg\",\"url\":\"https:\\/\\/t.co\\/k9Dya2b4UL\",\"display_url\":\"pic.twitter.com\\/k9Dya2b4UL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084711147995137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3568\":{\"media\":[{\"id\":1554084525629743111,\"id_str\":\"1554084525629743111\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE3pGUXoAccOIV.jpg\",\"url\":\"https:\\/\\/t.co\\/O7sl5TBlhn\",\"display_url\":\"pic.twitter.com\\/O7sl5TBlhn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/swaveykollectn\\/status\\/1554084536727863387\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1640,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"}}}]},\"3569\":{\"media\":[{\"id\":1554078882810191879,\"id_str\":\"1554078882810191879\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554078882810191879\\/pu\\/img\\/aBUOUYaD_d8zD6vB.jpg\",\"url\":\"https:\\/\\/t.co\\/b9gCgh80hJ\",\"display_url\":\"pic.twitter.com\\/b9gCgh80hJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ocheene\\/status\\/1554079628473602049\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":30000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554078882810191879\\/pu\\/vid\\/448x848\\/sU0iO-HT77aKBVcy.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554078882810191879\\/pu\\/vid\\/320x604\\/kBk6QSaNfHtFbzvK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554078882810191879\\/pu\\/pl\\/d8-BD_XguzfWhcnn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3570\":null,\"3571\":{\"media\":[{\"id\":1554074786254430213,\"id_str\":\"1554074786254430213\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEuyMUWIAUaBQX.jpg\",\"url\":\"https:\\/\\/t.co\\/guCA89QtKv\",\"display_url\":\"pic.twitter.com\\/guCA89QtKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554074794538291201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3572\":{\"media\":[{\"id\":1554072685868728322,\"id_str\":\"1554072685868728322\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEs37xXwAIBsIJ.jpg\",\"url\":\"https:\\/\\/t.co\\/3IGUplY2N4\",\"display_url\":\"pic.twitter.com\\/3IGUplY2N4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554072695142338561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554072686439137280,\"id_str\":\"1554072686439137280\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEs395XgAArXoD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEs395XgAArXoD.jpg\",\"url\":\"https:\\/\\/t.co\\/3IGUplY2N4\",\"display_url\":\"pic.twitter.com\\/3IGUplY2N4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554072695142338561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1079,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"3573\":null,\"3574\":{\"media\":[{\"id\":1554056415291080704,\"id_str\":\"1554056415291080704\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeE3JXgAAiNnT.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554056430692466689,\"id_str\":\"1554056430692466689\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeFwhWAAEj8aC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeFwhWAAEj8aC.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554056447738220544,\"id_str\":\"1554056447738220544\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeGwBXkAAJ8oi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeGwBXkAAJ8oi.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554056462955151360,\"id_str\":\"1554056462955151360\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEeHotXgAA77Tu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEeHotXgAA77Tu.jpg\",\"url\":\"https:\\/\\/t.co\\/YQegSOY9ux\",\"display_url\":\"pic.twitter.com\\/YQegSOY9ux\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554056477404438528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3575\":null,\"3576\":{\"media\":[{\"id\":1554037122063126528,\"id_str\":\"1554037122063126528\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEMh2RX0AA9OvD.jpg\",\"url\":\"https:\\/\\/t.co\\/TP3THbcurf\",\"display_url\":\"pic.twitter.com\\/TP3THbcurf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HoftDevelopers\\/status\\/1554037139071025155\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3577\":{\"media\":[{\"id\":1554036339481497601,\"id_str\":\"1554036339481497601\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEL0S7X0AEu-d1.jpg\",\"url\":\"https:\\/\\/t.co\\/Qpkfw5I2oz\",\"display_url\":\"pic.twitter.com\\/Qpkfw5I2oz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Survival690\\/status\\/1554036352378888192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554036338910978048,\"id_str\":\"1554036338910978048\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEL0QzWYAAMRP2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEL0QzWYAAMRP2.jpg\",\"url\":\"https:\\/\\/t.co\\/Qpkfw5I2oz\",\"display_url\":\"pic.twitter.com\\/Qpkfw5I2oz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Survival690\\/status\\/1554036352378888192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"3578\":{\"media\":[{\"id\":1554030435428192258,\"id_str\":\"1554030435428192258\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554030435428192258\\/pu\\/img\\/9Tt3hEcxEGS0GqtU.jpg\",\"url\":\"https:\\/\\/t.co\\/U2kEVZJVPo\",\"display_url\":\"pic.twitter.com\\/U2kEVZJVPo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legitinfong\\/status\\/1554030867332431873\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27532,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/vid\\/320x568\\/WNEx7WkAtASOZnCB.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/vid\\/480x852\\/4lSor2mVFUoI4zLL.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/vid\\/720x1280\\/jBbExEP6Nxwu2AU8.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554030435428192258\\/pu\\/pl\\/LvTX_eDG3Audh6OM.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3579\":{\"media\":[{\"id\":1554029463196811266,\"id_str\":\"1554029463196811266\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEFkCxWQAIwyDt.jpg\",\"url\":\"https:\\/\\/t.co\\/JscPy4y8kZ\",\"display_url\":\"pic.twitter.com\\/JscPy4y8kZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostolicGraceN\\/status\\/1554029474986991618\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3580\":{\"media\":[{\"id\":1554027337997602816,\"id_str\":\"1554027337997602816\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEDoVyX0AAr5xz.jpg\",\"url\":\"https:\\/\\/t.co\\/RhFri0ZtWW\",\"display_url\":\"pic.twitter.com\\/RhFri0ZtWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554027348588216324\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":269,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":269,\"resize\":\"fit\"}}},{\"id\":1554027345668874246,\"id_str\":\"1554027345668874246\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEDoyXWIAYq0CP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEDoyXWIAYq0CP.jpg\",\"url\":\"https:\\/\\/t.co\\/RhFri0ZtWW\",\"display_url\":\"pic.twitter.com\\/RhFri0ZtWW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554027348588216324\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"3581\":{\"media\":[{\"id\":1554026497995788289,\"id_str\":\"1554026497995788289\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEC3ciVUAEIz5g.jpg\",\"url\":\"https:\\/\\/t.co\\/5sJUGqLYM3\",\"display_url\":\"pic.twitter.com\\/5sJUGqLYM3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BnBhairsalon\\/status\\/1554026517906083841\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":360,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":360,\"resize\":\"fit\"}}}]},\"3582\":null,\"3583\":{\"media\":[{\"id\":1553980665665814528,\"id_str\":\"1553980665665814528\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDZLpzWAAATLfb.jpg\",\"url\":\"https:\\/\\/t.co\\/5ax4aWy7WO\",\"display_url\":\"pic.twitter.com\\/5ax4aWy7WO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1553980672951422976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":571,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":323,\"h\":680,\"resize\":\"fit\"}}}]},\"3584\":{\"media\":[{\"id\":1553848333302501376,\"id_str\":\"1553848333302501376\",\"indices\":[51,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBg05VUEAA-2Ax.jpg\",\"url\":\"https:\\/\\/t.co\\/vsETtshyt3\",\"display_url\":\"pic.twitter.com\\/vsETtshyt3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553848334531457026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"3585\":{\"media\":[{\"id\":1553830980439326721,\"id_str\":\"1553830980439326721\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZBRC04VQAENnjk.jpg\",\"url\":\"https:\\/\\/t.co\\/MS2xpI5o0k\",\"display_url\":\"pic.twitter.com\\/MS2xpI5o0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553830981844406273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"3586\":null,\"3587\":{\"media\":[{\"id\":1553749726608216074,\"id_str\":\"1553749726608216074\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749726608216074\\/pu\\/img\\/cvvlYTGNRD-InVCr.jpg\",\"url\":\"https:\\/\\/t.co\\/cS2Fw2TBPr\",\"display_url\":\"pic.twitter.com\\/cS2Fw2TBPr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k_endox\\/status\\/1553749966664916992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":45000,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/vid\\/320x320\\/bY1qFkrpNUmPIH7u.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/vid\\/540x540\\/w27vjMZsXUlhkHuI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/pl\\/RvoQgZzXw2SyjHiW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749726608216074\\/pu\\/vid\\/720x720\\/6P647KtXgfSw3ikO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3588\":{\"media\":[{\"id\":1553749043259604993,\"id_str\":\"1553749043259604993\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553749043259604993\\/pu\\/img\\/vO2sN9D-LNFO78lk.jpg\",\"url\":\"https:\\/\\/t.co\\/XVtQ6tcN06\",\"display_url\":\"pic.twitter.com\\/XVtQ6tcN06\",\"expanded_url\":\"https:\\/\\/twitter.com\\/11signofficial\\/status\\/1553749106207739904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":868,\"resize\":\"fit\"},\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":868,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[180,217],\"duration_millis\":28466,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/vid\\/480x578\\/mHdL8ZEp73yA5vc-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/pl\\/LqLX88Clv_XQHIBR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/vid\\/320x384\\/znv7ye49vzHDidOf.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553749043259604993\\/pu\\/vid\\/720x868\\/12zZ7eTdYmTpp6uc.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3589\":{\"media\":[{\"id\":1553747881600974848,\"id_str\":\"1553747881600974848\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZAFd1lXgAA4zSQ.jpg\",\"url\":\"https:\\/\\/t.co\\/7TGcKQpHd2\",\"display_url\":\"pic.twitter.com\\/7TGcKQpHd2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gava34\\/status\\/1553747889687609351\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1172,\"resize\":\"fit\"}}}]},\"3590\":null,\"3591\":{\"media\":[{\"id\":1553736211000446978,\"id_str\":\"1553736211000446978\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_62hNX0AIa8PC.jpg\",\"url\":\"https:\\/\\/t.co\\/FXjOwhXEjI\",\"display_url\":\"pic.twitter.com\\/FXjOwhXEjI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hagusokayson\\/status\\/1553736217761648640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":370,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":653,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":696,\"h\":1280,\"resize\":\"fit\"}}}]},\"3592\":null,\"3593\":{\"media\":[{\"id\":1553717857766236160,\"id_str\":\"1553717857766236160\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_qKOFWYAATCXm.jpg\",\"url\":\"https:\\/\\/t.co\\/KDquXVYd5V\",\"display_url\":\"pic.twitter.com\\/KDquXVYd5V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/desirecapitals\\/status\\/1553717865894780935\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":413,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"},\"medium\":{\"w\":717,\"h\":1181,\"resize\":\"fit\"}}}]},\"3594\":{\"media\":[{\"id\":1553717008348348418,\"id_str\":\"1553717008348348418\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_pYxwWAAIRCVX.jpg\",\"url\":\"https:\\/\\/t.co\\/tYUGEX9JF6\",\"display_url\":\"pic.twitter.com\\/tYUGEX9JF6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1553717013650063360\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":313,\"resize\":\"fit\"}}}]},\"3595\":{\"media\":[{\"id\":1553711629023461376,\"id_str\":\"1553711629023461376\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_kfqNWQAAOarS.jpg\",\"url\":\"https:\\/\\/t.co\\/IYWcic6UEo\",\"display_url\":\"pic.twitter.com\\/IYWcic6UEo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1553711639521812482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":734,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":390,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":688,\"resize\":\"fit\"}}}]},\"3596\":{\"media\":[{\"id\":1553710383063605248,\"id_str\":\"1553710383063605248\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553710383063605248\\/pu\\/img\\/kIb3x12SYD2IYP_s.jpg\",\"url\":\"https:\\/\\/t.co\\/Vp6TR5AKx9\",\"display_url\":\"pic.twitter.com\\/Vp6TR5AKx9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1553710607052029953\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59200,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/vid\\/480x852\\/tpmeF7PEO5HLawzO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/vid\\/320x568\\/0DBScmei3S2WCuZk.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/vid\\/540x960\\/XcMZf9NAJcjGYXOh.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553710383063605248\\/pu\\/pl\\/csYXIt1O4WQqSin4.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3597\":null,\"3598\":{\"media\":[{\"id\":1553697731130032128,\"id_str\":\"1553697731130032128\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2shWAAA5nVY.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553697731155206144,\"id_str\":\"1553697731155206144\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2snWIAAPN3N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2snWIAAPN3N.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553697731134332928,\"id_str\":\"1553697731134332928\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2siXoAAx9RR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2siXoAAx9RR.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"}}},{\"id\":1553697731188752384,\"id_str\":\"1553697731188752384\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_X2svWAAAlf6k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_X2svWAAAlf6k.jpg\",\"url\":\"https:\\/\\/t.co\\/0MUYMgSVpk\",\"display_url\":\"pic.twitter.com\\/0MUYMgSVpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TBondum\\/status\\/1553697740307238913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":744,\"h\":992,\"resize\":\"fit\"},\"medium\":{\"w\":744,\"h\":992,\"resize\":\"fit\"}}}]},\"3599\":{\"media\":[{\"id\":1553691375979356166,\"id_str\":\"1553691375979356166\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_SExvWYAYOC74.jpg\",\"url\":\"https:\\/\\/t.co\\/8jXGvh6oGt\",\"display_url\":\"pic.twitter.com\\/8jXGvh6oGt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1553691378995142659\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":297,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1650,\"resize\":\"fit\"},\"medium\":{\"w\":524,\"h\":1200,\"resize\":\"fit\"}}}]},\"3600\":null,\"3601\":{\"media\":[{\"id\":1553683792442916864,\"id_str\":\"1553683792442916864\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LLW3XgAAislS.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1553683800491712512,\"id_str\":\"1553683800491712512\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LL02WYAAePAh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LL02WYAAePAh.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1553683807215263746,\"id_str\":\"1553683807215263746\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LMN5XoAI4ZB8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LMN5XoAI4ZB8.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1553683820167274496,\"id_str\":\"1553683820167274496\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_LM-JXoAAKS9q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_LM-JXoAAKS9q.jpg\",\"url\":\"https:\\/\\/t.co\\/DoLeCP9LL4\",\"display_url\":\"pic.twitter.com\\/DoLeCP9LL4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sikshoes\\/status\\/1553683829377957888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3602\":{\"media\":[{\"id\":1553682571640332288,\"id_str\":\"1553682571640332288\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KETBWYAAzXBs.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553682724241739776,\"id_str\":\"1553682724241739776\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KNLgXEAAXIsO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KNLgXEAAXIsO.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553682938960781312,\"id_str\":\"1553682938960781312\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_KZrZXoAArT2i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_KZrZXoAArT2i.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553682978265497600,\"id_str\":\"1553682978265497600\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_Kb90WAAAeLY2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_Kb90WAAAeLY2.jpg\",\"url\":\"https:\\/\\/t.co\\/p5IGZdyl3i\",\"display_url\":\"pic.twitter.com\\/p5IGZdyl3i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/diala_ugochukwu\\/status\\/1553683040357982209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3603\":{\"media\":[{\"id\":1553682444745936897,\"id_str\":\"1553682444745936897\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_J86TXkAEOU1i.jpg\",\"url\":\"https:\\/\\/t.co\\/sheCT5ZSVb\",\"display_url\":\"pic.twitter.com\\/sheCT5ZSVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Exclusive_Paull\\/status\\/1553682457970593792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":329,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":644,\"h\":1333,\"resize\":\"fit\"}}},{\"id\":1553682452551540740,\"id_str\":\"1553682452551540740\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_J9XYXoAQ3Or1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_J9XYXoAQ3Or1.jpg\",\"url\":\"https:\\/\\/t.co\\/sheCT5ZSVb\",\"display_url\":\"pic.twitter.com\\/sheCT5ZSVb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Exclusive_Paull\\/status\\/1553682457970593792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":580,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":644,\"h\":1333,\"resize\":\"fit\"},\"small\":{\"w\":329,\"h\":680,\"resize\":\"fit\"}}}]},\"3604\":null,\"3605\":{\"media\":[{\"id\":1553677467495317504,\"id_str\":\"1553677467495317504\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY_FbMmWQAAriuf.jpg\",\"url\":\"https:\\/\\/t.co\\/ZKzvW7tT69\",\"display_url\":\"pic.twitter.com\\/ZKzvW7tT69\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GovaRidechief\\/status\\/1553677470389469186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"3606\":null,\"3607\":{\"media\":[{\"id\":1553674475299905539,\"id_str\":\"1553674475299905539\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553674475299905539\\/pu\\/img\\/Jemx-JM6FB84zjur.jpg\",\"url\":\"https:\\/\\/t.co\\/Zk5bwOgNlt\",\"display_url\":\"pic.twitter.com\\/Zk5bwOgNlt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abnonlinetv\\/status\\/1553674549207748609\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":18923,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/vid\\/720x1280\\/Zc9K0lUrJ-qX7Up1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/pl\\/KH8ZnL6wN7es1-h8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/vid\\/320x568\\/HmJNkT7itkBdxDM4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553674475299905539\\/pu\\/vid\\/480x852\\/ffOypxmMZEQc3Pll.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3608\":null,\"3609\":{\"media\":[{\"id\":1553671273158434816,\"id_str\":\"1553671273158434816\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553671273158434816\\/pu\\/img\\/Zl25KqYioX6LDs1c.jpg\",\"url\":\"https:\\/\\/t.co\\/rYS4rVM16a\",\"display_url\":\"pic.twitter.com\\/rYS4rVM16a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/weightgainfire\\/status\\/1553672054062342144\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":578,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[289,540],\"duration_millis\":41533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/vid\\/320x596\\/coEKQ4dBP9mL43Hq.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/vid\\/480x896\\/MGH36cipbV9OEunC.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/pl\\/vyWxvE_n1MKf5goc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553671273158434816\\/pu\\/vid\\/578x1080\\/3VbrOCf8f_bkQYEX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3610\":{\"media\":[{\"id\":1553671114462838784,\"id_str\":\"1553671114462838784\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-_pZtXwAANSDV.jpg\",\"url\":\"https:\\/\\/t.co\\/p8sQJlBCFf\",\"display_url\":\"pic.twitter.com\\/p8sQJlBCFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553671116941672449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":326,\"h\":304,\"resize\":\"fit\"}}}]},\"3611\":null,\"3612\":{\"media\":[{\"id\":1553668295416586245,\"id_str\":\"1553668295416586245\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-9FT8XoAUa_nD.jpg\",\"url\":\"https:\\/\\/t.co\\/n4MFJpTmDu\",\"display_url\":\"pic.twitter.com\\/n4MFJpTmDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emmisung\\/status\\/1553668298004480000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":719,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":719,\"resize\":\"fit\"}}}]},\"3613\":{\"media\":[{\"id\":1553668179733450755,\"id_str\":\"1553668179733450755\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8-k_XEAMbEjB.jpg\",\"url\":\"https:\\/\\/t.co\\/I010NXmDDu\",\"display_url\":\"pic.twitter.com\\/I010NXmDDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__amandoo\\/status\\/1553668196879814656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3614\":{\"media\":[{\"id\":1553664661354061825,\"id_str\":\"1553664661354061825\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-5xyAWIAEbPqb.jpg\",\"url\":\"https:\\/\\/t.co\\/qkJPQkTV7n\",\"display_url\":\"pic.twitter.com\\/qkJPQkTV7n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mr_Bayo_jnr\\/status\\/1553664668815835136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":562,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553664661324795907,\"id_str\":\"1553664661324795907\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-5xx5XkAMXSlk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-5xx5XkAMXSlk.jpg\",\"url\":\"https:\\/\\/t.co\\/qkJPQkTV7n\",\"display_url\":\"pic.twitter.com\\/qkJPQkTV7n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mr_Bayo_jnr\\/status\\/1553664668815835136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":299,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":562,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":527,\"h\":1200,\"resize\":\"fit\"}}}]},\"3615\":null,\"3616\":{\"media\":[{\"id\":1553657261150674944,\"id_str\":\"1553657261150674944\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-zDCGXoAAFTyL.jpg\",\"url\":\"https:\\/\\/t.co\\/GM61YwTbdk\",\"display_url\":\"pic.twitter.com\\/GM61YwTbdk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1553657275822350338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":481,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1448,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":1200,\"resize\":\"fit\"}}}]},\"3617\":{\"media\":[{\"id\":1553652101208850432,\"id_str\":\"1553652101208850432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-uWr0XwAAEDrb.jpg\",\"url\":\"https:\\/\\/t.co\\/PsjlGa6Orw\",\"display_url\":\"pic.twitter.com\\/PsjlGa6Orw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/farukcalypse2\\/status\\/1553652117272944640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553652101162704897,\"id_str\":\"1553652101162704897\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-uWrpXoAEwPjN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-uWrpXoAEwPjN.jpg\",\"url\":\"https:\\/\\/t.co\\/PsjlGa6Orw\",\"display_url\":\"pic.twitter.com\\/PsjlGa6Orw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/farukcalypse2\\/status\\/1553652117272944640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3618\":{\"media\":[{\"id\":1553641745237385216,\"id_str\":\"1553641745237385216\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-k740XoAArMBx.jpg\",\"url\":\"https:\\/\\/t.co\\/HsB6cWtw26\",\"display_url\":\"pic.twitter.com\\/HsB6cWtw26\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1553641752690663424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":518,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":391,\"h\":680,\"resize\":\"fit\"}}}]},\"3619\":{\"media\":[{\"id\":1553638321384996866,\"id_str\":\"1553638321384996866\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-h0l-WQAIg77L.jpg\",\"url\":\"https:\\/\\/t.co\\/apDiNjnMd7\",\"display_url\":\"pic.twitter.com\\/apDiNjnMd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/citypeople01\\/status\\/1553638323977166849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":394,\"resize\":\"fit\"},\"large\":{\"w\":920,\"h\":533,\"resize\":\"fit\"},\"medium\":{\"w\":920,\"h\":533,\"resize\":\"fit\"}}}]},\"3620\":{\"media\":[{\"id\":1553611894539390977,\"id_str\":\"1553611894539390977\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-JyWTXkAEet5b.jpg\",\"url\":\"https:\\/\\/t.co\\/IGIlCZSH02\",\"display_url\":\"pic.twitter.com\\/IGIlCZSH02\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HollaBYoung\\/status\\/1553611898549161984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3621\":{\"media\":[{\"id\":1553564599433273344,\"id_str\":\"1553564599433273344\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553564599433273344\\/pu\\/img\\/rP9bYH8dukuGywse.jpg\",\"url\":\"https:\\/\\/t.co\\/mBrs0m6gxJ\",\"display_url\":\"pic.twitter.com\\/mBrs0m6gxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Abbanya1\\/status\\/1553564690663481344\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":32663,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/vid\\/720x1280\\/pkoKrKPNfEhHG-f_.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/vid\\/480x852\\/LCvpplQ1Go_kg-Wh.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/vid\\/320x568\\/hQH99OkQgXm-ney7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553564599433273344\\/pu\\/pl\\/HGioeey38vo0sEnp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3622\":{\"media\":[{\"id\":1553516945605025796,\"id_str\":\"1553516945605025796\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WYAQNjMl.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":616,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1086,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1854,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553516945605009408,\"id_str\":\"1553516945605009408\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WIAAEIjw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl9WIAAEIjw.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1141,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1948,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":647,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1553516945588240389,\"id_str\":\"1553516945588240389\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY8zbl5WQAUyEaV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY8zbl5WQAUyEaV.jpg\",\"url\":\"https:\\/\\/t.co\\/Gk5DJyJ4VJ\",\"display_url\":\"pic.twitter.com\\/Gk5DJyJ4VJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1553516988647063553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1682,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":558,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"}}}]},\"3623\":null,\"3624\":null,\"3625\":{\"media\":[{\"id\":1553246157760909312,\"id_str\":\"1553246157760909312\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY49JqoUUAApAJd.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY49JqoUUAApAJd.png\",\"url\":\"https:\\/\\/t.co\\/df7lCjYPuP\",\"display_url\":\"pic.twitter.com\\/df7lCjYPuP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/atmine22\\/status\\/1553246181140008960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":868,\"h\":694,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":868,\"h\":694,\"resize\":\"fit\"}}}]},\"3626\":{\"media\":[{\"id\":1553184237146124288,\"id_str\":\"1553184237146124288\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY4E1aXUsAARok9.jpg\",\"url\":\"https:\\/\\/t.co\\/qqDRk2W4n0\",\"display_url\":\"pic.twitter.com\\/qqDRk2W4n0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CurtFernheiser\\/status\\/1553184238345736192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":820,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":820,\"h\":651,\"resize\":\"fit\"}}}]},\"3627\":{\"media\":[{\"id\":1552978148416970753,\"id_str\":\"1552978148416970753\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JZeBWYAESOb0.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":821,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1552978156491079683,\"id_str\":\"1552978156491079683\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JZ8GXgAM6-hU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JZ8GXgAM6-hU.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":801,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1552978165324193793,\"id_str\":\"1552978165324193793\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY1JadAWIAEOOzl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY1JadAWIAEOOzl.jpg\",\"url\":\"https:\\/\\/t.co\\/rUIuwHaBbU\",\"display_url\":\"pic.twitter.com\\/rUIuwHaBbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1552978168629366784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":857,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":857,\"h\":1080,\"resize\":\"fit\"}}}]},\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":{\"media\":[{\"id\":1556314135784472576,\"id_str\":\"1556314135784472576\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556314135784472576\\/pu\\/img\\/v6LuC69YNB18U_vl.jpg\",\"url\":\"https:\\/\\/t.co\\/Fe9ayldxZS\",\"display_url\":\"pic.twitter.com\\/Fe9ayldxZS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556314427712061440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":32520,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/vid\\/480x270\\/arYrUYnirK59Qpz5.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/pl\\/fjWu8YEMnOSRghzk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/vid\\/1280x720\\/WsZEoYjMfCv-tbQj.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556314135784472576\\/pu\\/vid\\/640x360\\/V8dPon_-BzvX4y0i.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3633\":{\"media\":[{\"id\":1556287723480436737,\"id_str\":\"1556287723480436737\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556287723480436737\\/pu\\/img\\/EieyHLfQ_f0gcsZS.jpg\",\"url\":\"https:\\/\\/t.co\\/P5UbQYI0Yq\",\"display_url\":\"pic.twitter.com\\/P5UbQYI0Yq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556287756858540032\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,29],\"duration_millis\":17867,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556287723480436737\\/pu\\/vid\\/492x270\\/J6hWq1zm78fABPnf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556287723480436737\\/pu\\/pl\\/TD1iDC4VISKA7q1B.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556287723480436737\\/pu\\/vid\\/848x464\\/jFq1M0tBQ6_Ulv2U.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3634\":null,\"3635\":null,\"3636\":{\"media\":[{\"id\":1556240947281031170,\"id_str\":\"1556240947281031170\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556240947281031170\\/pu\\/img\\/XeMF7nIdTL3IGbxy.jpg\",\"url\":\"https:\\/\\/t.co\\/IRw2ftT9nz\",\"display_url\":\"pic.twitter.com\\/IRw2ftT9nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556240994328510465\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13953,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/vid\\/720x1280\\/di8sCF8j_lrTb8iz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/pl\\/7AfAaEyOZTxcU5EL.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/vid\\/480x852\\/JzesEsUiaNs2mH6e.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556240947281031170\\/pu\\/vid\\/320x568\\/eatkR3SAwzfTdIzi.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3637\":null,\"3638\":{\"media\":[{\"id\":1556223737019908096,\"id_str\":\"1556223737019908096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZjRPlwaQAAHXGi.jpg\",\"url\":\"https:\\/\\/t.co\\/r7FkYFYnCe\",\"display_url\":\"pic.twitter.com\\/r7FkYFYnCe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556223742959058945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":332,\"resize\":\"fit\"}}}]},\"3639\":{\"media\":[{\"id\":1556221695006212102,\"id_str\":\"1556221695006212102\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1556221695006212102\\/pu\\/img\\/n88ATmKiOOutUmm0.jpg\",\"url\":\"https:\\/\\/t.co\\/w5wrwDt9cT\",\"display_url\":\"pic.twitter.com\\/w5wrwDt9cT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1556221742439616514\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":101493,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/pl\\/mmmKROll-2k5qyVy.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/vid\\/638x360\\/BhefBLY7Nd00S1kn.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/vid\\/852x480\\/auOETOBXA-Snrc7T.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1556221695006212102\\/pu\\/vid\\/478x270\\/BqOt4Q3XPVs8biiq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":{\"media\":[{\"id\":1556041994148929536,\"id_str\":\"1556041994148929536\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZgr8wzWYAAE4H-.jpg\",\"url\":\"https:\\/\\/t.co\\/5e7StO4jfZ\",\"display_url\":\"pic.twitter.com\\/5e7StO4jfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/femiafricaNG\\/status\\/1556042033915101184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"3645\":null,\"3646\":null,\"3647\":null,\"3648\":{\"media\":[{\"id\":1555992362622615553,\"id_str\":\"1555992362622615553\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZf-z09XgAE5LWw.jpg\",\"url\":\"https:\\/\\/t.co\\/DiKgxF4oTL\",\"display_url\":\"pic.twitter.com\\/DiKgxF4oTL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555992372194021376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":410,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":723,\"resize\":\"fit\"},\"large\":{\"w\":1279,\"h\":771,\"resize\":\"fit\"}}}]},\"3649\":{\"media\":[{\"id\":1555984739168927748,\"id_str\":\"1555984739168927748\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555984739168927748\\/pu\\/img\\/wFlXU5dS0hwXuCPO.jpg\",\"url\":\"https:\\/\\/t.co\\/Fh3oav9sPe\",\"display_url\":\"pic.twitter.com\\/Fh3oav9sPe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555984785004281857\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44996,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555984739168927748\\/pu\\/vid\\/270x480\\/D5cwK4vi0hz2pAST.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555984739168927748\\/pu\\/pl\\/K4QJdsLMs-ZPhAbE.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3650\":{\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0XdsYP\",\"display_url\":\"pic.twitter.com\\/fvGw0XdsYP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"source_status_id\":1555924699447582720,\"source_status_id_str\":\"1555924699447582720\",\"source_user_id\":746971014,\"source_user_id_str\":\"746971014\",\"video_info\":{\"aspect_ratio\":[149,90],\"duration_millis\":8920,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/596x360\\/70NGCSHI1pL3qdXF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/446x270\\/CucLz1-cBpkMl8dF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/1192x720\\/ytG6LXd2A2YEWlns.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/pl\\/Bbp0-06DtKYXAshW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"3651\":{\"media\":[{\"id\":1555940231827832834,\"id_str\":\"1555940231827832834\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZfPZanWQAIM4t7.jpg\",\"url\":\"https:\\/\\/t.co\\/rPmfa5ojNK\",\"display_url\":\"pic.twitter.com\\/rPmfa5ojNK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555940250551259136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":1067,\"resize\":\"fit\"}}}]},\"3652\":{\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[149,90],\"duration_millis\":8920,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/596x360\\/70NGCSHI1pL3qdXF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/446x270\\/CucLz1-cBpkMl8dF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/1192x720\\/ytG6LXd2A2YEWlns.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/pl\\/Bbp0-06DtKYXAshW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3653\":{\"media\":[{\"id\":1555921612242767873,\"id_str\":\"1555921612242767873\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe-dnQVUAEiL0V.jpg\",\"url\":\"https:\\/\\/t.co\\/Jt6aduFcg8\",\"display_url\":\"pic.twitter.com\\/Jt6aduFcg8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555921613857492993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":494,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":420,\"resize\":\"fit\"}}}]},\"3654\":{\"media\":[{\"id\":1555920653005402114,\"id_str\":\"1555920653005402114\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe9lx0UsAIuTH5.jpg\",\"url\":\"https:\\/\\/t.co\\/cpsTb251y5\",\"display_url\":\"pic.twitter.com\\/cpsTb251y5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1555920654368575488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":512,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"3655\":null,\"3656\":{\"media\":[{\"id\":1555912584217235457,\"id_str\":\"1555912584217235457\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe2QHPUEAEIEv_.jpg\",\"url\":\"https:\\/\\/t.co\\/VDLfQwhCt5\",\"display_url\":\"pic.twitter.com\\/VDLfQwhCt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555912598461157377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}},{\"id\":1555912583978164225,\"id_str\":\"1555912583978164225\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZe2QGWUIAEarxs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZe2QGWUIAEarxs.jpg\",\"url\":\"https:\\/\\/t.co\\/VDLfQwhCt5\",\"display_url\":\"pic.twitter.com\\/VDLfQwhCt5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555912598461157377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"3657\":null,\"3658\":{\"media\":[{\"id\":1555901574240681986,\"id_str\":\"1555901574240681986\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555901574240681986\\/pu\\/img\\/toQt5LARmAcp3pw3.jpg\",\"url\":\"https:\\/\\/t.co\\/GdXquO0e9H\",\"display_url\":\"pic.twitter.com\\/GdXquO0e9H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdajaMusic\\/status\\/1555901917523591168\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":52040,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/vid\\/480x852\\/YmBPKH57x2eMUQvF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/vid\\/720x1280\\/mYhkNgpq0oAgPAdW.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/vid\\/320x568\\/lTiiaQyuK8Ryw_75.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555901574240681986\\/pu\\/pl\\/MNGbP2xl0ArbNQ0p.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3659\":{\"media\":[{\"id\":1555886494941958146,\"id_str\":\"1555886494941958146\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555886494941958146\\/pu\\/img\\/2D4NrjV8zBweXdXe.jpg\",\"url\":\"https:\\/\\/t.co\\/7S8nXC3rt6\",\"display_url\":\"pic.twitter.com\\/7S8nXC3rt6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ClintonSnowbird\\/status\\/1555886548486443008\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1046,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,523],\"duration_millis\":8243,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/pl\\/U7Nlq9pmp-N41ilH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/480x566\\/Hdy5WpODUY9LOQrv.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/320x376\\/nuoXXYdDEjBhA7JM.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555886494941958146\\/pu\\/vid\\/720x850\\/WZbKKofBJSIPujPW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3660\":null,\"3661\":{\"media\":[{\"id\":1555881626227601410,\"id_str\":\"1555881626227601410\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeaGHvacAIg8s7.jpg\",\"url\":\"https:\\/\\/t.co\\/icicexbejC\",\"display_url\":\"pic.twitter.com\\/icicexbejC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555881643566854144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":679,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":679,\"h\":408,\"resize\":\"fit\"}}}]},\"3662\":{\"media\":[{\"id\":1555864705419603968,\"id_str\":\"1555864705419603968\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555864705419603968\\/pu\\/img\\/jVXZUZDgpyN30WAC.jpg\",\"url\":\"https:\\/\\/t.co\\/fv4KP5uO0f\",\"display_url\":\"pic.twitter.com\\/fv4KP5uO0f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555864776286556160\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":860,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":860,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,24],\"duration_millis\":4605,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/vid\\/644x360\\/A6IMfq7h0zbUSYYE.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/vid\\/482x270\\/nezCpJdwTmAR3wol.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/vid\\/860x480\\/6hcNkx0rcgGRV-aW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555864705419603968\\/pu\\/pl\\/UB0M1FCFtrwu6leH.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3663\":{\"media\":[{\"id\":1555859351558144000,\"id_str\":\"1555859351558144000\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeF1kIXwAATN4E.jpg\",\"url\":\"https:\\/\\/t.co\\/M6OH6kpv3d\",\"display_url\":\"pic.twitter.com\\/M6OH6kpv3d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1555859377038524416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3664\":{\"media\":[{\"id\":1555856903145930753,\"id_str\":\"1555856903145930753\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDFaQAEUbA8.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}},{\"id\":1555856903150125057,\"id_str\":\"1555856903150125057\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDGaQAElUZ6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDGaQAElUZ6.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}},{\"id\":1555856903137554432,\"id_str\":\"1555856903137554432\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZeDnDDacAAFTND.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZeDnDDacAAFTND.jpg\",\"url\":\"https:\\/\\/t.co\\/oOXsd2vbNZ\",\"display_url\":\"pic.twitter.com\\/oOXsd2vbNZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555856910280433665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3665\":null,\"3666\":{\"media\":[{\"id\":1555828432784789509,\"id_str\":\"1555828432784789509\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555828432784789509\\/pu\\/img\\/Wmf0VSHokgiic_Rl.jpg\",\"url\":\"https:\\/\\/t.co\\/RsGGLqKP4f\",\"display_url\":\"pic.twitter.com\\/RsGGLqKP4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555828561424121857\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/720x1280\\/FArb2YOXMGAxyUtk.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/pl\\/ryTgae2bVgNFrzNI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/480x852\\/fyNbuq0e_nwbh0ub.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555828432784789509\\/pu\\/vid\\/320x568\\/VfnDqmf-mi7dOIqU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3667\":null,\"3668\":{\"media\":[{\"id\":1555765671199473664,\"id_str\":\"1555765671199473664\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZcwopmXgAAlLJ3.jpg\",\"url\":\"https:\\/\\/t.co\\/lpzUJdfPzo\",\"display_url\":\"pic.twitter.com\\/lpzUJdfPzo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555765691919261696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":320,\"resize\":\"fit\"},\"large\":{\"w\":479,\"h\":320,\"resize\":\"fit\"}}}]},\"3669\":null,\"3670\":null,\"3671\":null,\"3672\":null,\"3673\":{\"media\":[{\"id\":1555682381570383883,\"id_str\":\"1555682381570383883\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbk4jjWIAsGPTL.jpg\",\"url\":\"https:\\/\\/t.co\\/mHTArfiaQM\",\"display_url\":\"pic.twitter.com\\/mHTArfiaQM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1555682404433543188\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3674\":null,\"3675\":{\"media\":[{\"id\":1555661528287830019,\"id_str\":\"1555661528287830019\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR6vBWYAMY_Us.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}},{\"id\":1555661530808590336,\"id_str\":\"1555661530808590336\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR64aWIAAxE1E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR64aWIAAxE1E.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":663,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":663,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":663,\"resize\":\"fit\"}}},{\"id\":1555661538354204672,\"id_str\":\"1555661538354204672\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR7UhXEAA8AXu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR7UhXEAA8AXu.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":600,\"resize\":\"fit\"}}},{\"id\":1555661541785145347,\"id_str\":\"1555661541785145347\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbR7hTXEAMh9ur.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbR7hTXEAMh9ur.jpg\",\"url\":\"https:\\/\\/t.co\\/PKT4eETeIw\",\"display_url\":\"pic.twitter.com\\/PKT4eETeIw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1555661549276217345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":600,\"h\":600,\"resize\":\"fit\"}}}]},\"3676\":null,\"3677\":{\"media\":[{\"id\":1555645859471171584,\"id_str\":\"1555645859471171584\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555645859471171584\\/pu\\/img\\/1EXkbr0znpYYPTSl.jpg\",\"url\":\"https:\\/\\/t.co\\/G0zzCuKFup\",\"display_url\":\"pic.twitter.com\\/G0zzCuKFup\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645910100631559\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":2251,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/720x1280\\/9EFVYSsznqLRIZrD.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/480x852\\/RdJpHhA3AAsmut9G.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/pl\\/cq6PEq7Np2L82jnl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555645859471171584\\/pu\\/vid\\/320x568\\/I0Xa6YFp0YHdioK4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3678\":{\"media\":[{\"id\":1555645871194357764,\"id_str\":\"1555645871194357764\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDrXzXwAQDc7k.jpg\",\"url\":\"https:\\/\\/t.co\\/RPgFeJQ0op\",\"display_url\":\"pic.twitter.com\\/RPgFeJQ0op\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1555645888277762050\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":750,\"h\":641,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":581,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":641,\"resize\":\"fit\"}}}]},\"3679\":{\"media\":[{\"id\":1555645149941825537,\"id_str\":\"1555645149941825537\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbDBY7XgAEvq9R.jpg\",\"url\":\"https:\\/\\/t.co\\/Cp9nEotCf4\",\"display_url\":\"pic.twitter.com\\/Cp9nEotCf4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555645152223543297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":561,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":594,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":594,\"resize\":\"fit\"}}}]},\"3680\":{\"media\":[{\"id\":1555644418329305088,\"id_str\":\"1555644418329305088\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555644418329305088\\/pu\\/img\\/eS8cbp-g3kg7lY7P.jpg\",\"url\":\"https:\\/\\/t.co\\/bu6Z3O81kg\",\"display_url\":\"pic.twitter.com\\/bu6Z3O81kg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555644670729920514\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":15812,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/vid\\/640x360\\/9etv3VJUpoBej1XK.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/vid\\/480x270\\/oqJdkaxwzYfDdgAz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/pl\\/98ioLpidBsfQOruh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555644418329305088\\/pu\\/vid\\/1280x720\\/xAFs2QKsWoGkTApE.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3681\":null,\"3682\":{\"media\":[{\"id\":1555642257319018499,\"id_str\":\"1555642257319018499\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAZBEWQAMKQC0.jpg\",\"url\":\"https:\\/\\/t.co\\/541B1PcgCb\",\"display_url\":\"pic.twitter.com\\/541B1PcgCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NGOELITESTAR\\/status\\/1555642259760205824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":985,\"h\":830,\"resize\":\"fit\"},\"medium\":{\"w\":985,\"h\":830,\"resize\":\"fit\"}}}]},\"3683\":{\"media\":[{\"id\":1555642069292838912,\"id_str\":\"1555642069292838912\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbAOEnacAAVIdd.jpg\",\"url\":\"https:\\/\\/t.co\\/WAEr6vJVGb\",\"display_url\":\"pic.twitter.com\\/WAEr6vJVGb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555642082022522881\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":711,\"resize\":\"fit\"}}}]},\"3684\":null,\"3685\":{\"media\":[{\"id\":1555631270008426496,\"id_str\":\"1555631270008426496\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZa2ZeJXkAAYLvt.jpg\",\"url\":\"https:\\/\\/t.co\\/dPuTvMfq4q\",\"display_url\":\"pic.twitter.com\\/dPuTvMfq4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/terminatorsng\\/status\\/1555631282817798144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":949,\"h\":949,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3686\":{\"media\":[{\"id\":1555603828757725185,\"id_str\":\"1555603828757725185\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555603828757725185\\/pu\\/img\\/YhuYdBpRBD2QypUi.jpg\",\"url\":\"https:\\/\\/t.co\\/C2TDgF7Nrg\",\"display_url\":\"pic.twitter.com\\/C2TDgF7Nrg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555604087411974144\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45001,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/vid\\/320x568\\/CMZ2uQNcsX2RzcaK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/pl\\/GEG9yqtKmOCcgBQ0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/vid\\/720x1280\\/kZRrMPwoTUP6JAcJ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555603828757725185\\/pu\\/vid\\/480x852\\/m6qk3kAZZ29yWa99.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3687\":null,\"3688\":{\"media\":[{\"id\":1555599301182734336,\"id_str\":\"1555599301182734336\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555599301182734336\\/pu\\/img\\/G97I6fZqnsIn_Yrq.jpg\",\"url\":\"https:\\/\\/t.co\\/PTk5Jmo7kY\",\"display_url\":\"pic.twitter.com\\/PTk5Jmo7kY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555599475577704449\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":11291,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/320x320\\/KD2WFS1-KrJ2WKB3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/pl\\/Ah97iK7MpQvYDm4W.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/720x720\\/wRT_-Fy6TboRR5A8.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555599301182734336\\/pu\\/vid\\/540x540\\/tkXcFN_I1dzprhOF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3689\":{\"media\":[{\"id\":1555598991483699200,\"id_str\":\"1555598991483699200\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaZCnRXgAApe8w.jpg\",\"url\":\"https:\\/\\/t.co\\/6PzTwoecxo\",\"display_url\":\"pic.twitter.com\\/6PzTwoecxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IAMCharleson\\/status\\/1555598994277023744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"3690\":{\"media\":[{\"id\":1555584673354584066,\"id_str\":\"1555584673354584066\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555584673354584066\\/pu\\/img\\/ZQBlzLDc_7gwTzjJ.jpg\",\"url\":\"https:\\/\\/t.co\\/ohdatFGn7a\",\"display_url\":\"pic.twitter.com\\/ohdatFGn7a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feranmicubano\\/status\\/1555584754224873472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":5433,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/vid\\/480x852\\/fhjSzy0rC-XkKQvb.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/vid\\/320x568\\/iRqlayJhTLxeOIPA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/pl\\/YTsmYJNyB_cNE58M.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555584673354584066\\/pu\\/vid\\/720x1280\\/1-vKR2fZsmTID0GR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3691\":null,\"3692\":{\"media\":[{\"id\":1555578774695067649,\"id_str\":\"1555578774695067649\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaGp13WQAEs_-b.jpg\",\"url\":\"https:\\/\\/t.co\\/49jpK5z2UX\",\"display_url\":\"pic.twitter.com\\/49jpK5z2UX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoyOlukorede\\/status\\/1555581535969050624\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}},{\"id\":1555581514699653120,\"id_str\":\"1555581514699653120\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaJJVLWQAA337d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaJJVLWQAA337d.jpg\",\"url\":\"https:\\/\\/t.co\\/49jpK5z2UX\",\"display_url\":\"pic.twitter.com\\/49jpK5z2UX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoyOlukorede\\/status\\/1555581535969050624\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":876,\"h\":1125,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":876,\"h\":1125,\"resize\":\"fit\"},\"small\":{\"w\":529,\"h\":680,\"resize\":\"fit\"}}}]},\"3693\":{\"media\":[{\"id\":1555580717027016706,\"id_str\":\"1555580717027016706\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaIa5nXwAItZ11.jpg\",\"url\":\"https:\\/\\/t.co\\/Okuj69KLRS\",\"display_url\":\"pic.twitter.com\\/Okuj69KLRS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555580719384215552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":705,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}}]},\"3694\":{\"media\":[{\"id\":1555568379901235201,\"id_str\":\"1555568379901235201\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ9MyPX0AE9uS2.png\",\"url\":\"https:\\/\\/t.co\\/ehsicFJyep\",\"display_url\":\"pic.twitter.com\\/ehsicFJyep\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555568544460439552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"3695\":{\"media\":[{\"id\":1555567677896364032,\"id_str\":\"1555567677896364032\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ8j7EXkAAJJp9.jpg\",\"url\":\"https:\\/\\/t.co\\/2TBY9tpG5s\",\"display_url\":\"pic.twitter.com\\/2TBY9tpG5s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stingray1o1\\/status\\/1555567685156708352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":424,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":674,\"resize\":\"fit\"}}}]},\"3696\":{\"media\":[{\"id\":1555566226809753600,\"id_str\":\"1555566226809753600\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ7PdWXEAAp7ry.png\",\"url\":\"https:\\/\\/t.co\\/ODS0jH3UZK\",\"display_url\":\"pic.twitter.com\\/ODS0jH3UZK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnnyOjobasi\\/status\\/1555566301048889348\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"thumb\":{\"w\":133,\"h\":133,\"resize\":\"crop\"},\"medium\":{\"w\":133,\"h\":133,\"resize\":\"fit\"},\"large\":{\"w\":133,\"h\":133,\"resize\":\"fit\"}}}]},\"3697\":null,\"3698\":{\"media\":[{\"id\":1555556322917363712,\"id_str\":\"1555556322917363712\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555556322917363712\\/pu\\/img\\/xPgO_-yg8dFyOaLQ.jpg\",\"url\":\"https:\\/\\/t.co\\/t3aiIMBGzU\",\"display_url\":\"pic.twitter.com\\/t3aiIMBGzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555556372212695040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":70204,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/pl\\/t8jTKrzu0MBmFpcl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/vid\\/638x360\\/AcI_GWddnXH-Ufaa.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/vid\\/478x270\\/AoqSXe5rWBXsza-B.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555556322917363712\\/pu\\/vid\\/852x480\\/_dRv-wSY8w2LkYpt.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":{\"media\":[{\"id\":1555534023228903425,\"id_str\":\"1555534023228903425\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZd89qX0AEW5Aw.jpg\",\"url\":\"https:\\/\\/t.co\\/FcFymJMhdH\",\"display_url\":\"pic.twitter.com\\/FcFymJMhdH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534034532540417\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZZd89qX0AEW5Aw.mp4\"}]}}]},\"3707\":{\"media\":[{\"id\":1555533804319694848,\"id_str\":\"1555533804319694848\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533804319694848\\/pu\\/img\\/lz_R1EcoE07y1v8j.jpg\",\"url\":\"https:\\/\\/t.co\\/E6XPmZ4pnd\",\"display_url\":\"pic.twitter.com\\/E6XPmZ4pnd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/shollykhay\\/status\\/1555534015318335489\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21616,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/vid\\/720x1280\\/l_mUID7I7le3RIT4.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/vid\\/320x568\\/pSZOeumsW9ImgqJi.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/pl\\/wxih68Uh2iYpUDl6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533804319694848\\/pu\\/vid\\/480x852\\/Xeu2GADTX8fMaymm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3708\":{\"media\":[{\"id\":1555533294829281282,\"id_str\":\"1555533294829281282\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555533294829281282\\/pu\\/img\\/2p0XEppHWLUVRzCb.jpg\",\"url\":\"https:\\/\\/t.co\\/SNcjXSw4pD\",\"display_url\":\"pic.twitter.com\\/SNcjXSw4pD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FunJumbo\\/status\\/1555533331395186690\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/vid\\/480x852\\/uUfA3LjJmImq39W7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/vid\\/720x1280\\/7MqSgEijM1Gr-SP3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/pl\\/bFlDRGIWQ7Yt0ASp.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555533294829281282\\/pu\\/vid\\/320x568\\/B6x71Yshh05R-gYS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3709\":{\"media\":[{\"id\":1555530474134839296,\"id_str\":\"1555530474134839296\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555530474134839296\\/pu\\/img\\/Oo8AJMP9WwVi-FeD.jpg\",\"url\":\"https:\\/\\/t.co\\/uqc3FNHJL9\",\"display_url\":\"pic.twitter.com\\/uqc3FNHJL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555530540459012096\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":544,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":289,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,17],\"duration_millis\":42133,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/pl\\/tLnV7LkZZOk5MtFd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/vid\\/1280x544\\/kqtQzOrwAjNc9eAa.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/vid\\/846x360\\/xnRiBrncHZFpPeEo.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555530474134839296\\/pu\\/vid\\/634x270\\/Gy6ZryMp60jRfzXL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3710\":{\"media\":[{\"id\":1555528620726427648,\"id_str\":\"1555528620726427648\",\"indices\":[110,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555528620726427648\\/pu\\/img\\/zNpdpYv_qkC0ji9J.jpg\",\"url\":\"https:\\/\\/t.co\\/ZIj4k14Ftz\",\"display_url\":\"pic.twitter.com\\/ZIj4k14Ftz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555528686379859970\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48274,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/vid\\/1280x720\\/z6KzSZgn0Fj_E1wx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/pl\\/8DE3ay4fwRYdH8K8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/vid\\/480x270\\/-MlpW5EuyM1BCV--.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555528620726427648\\/pu\\/vid\\/640x360\\/VRDsdGgiit_kb880.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3711\":{\"media\":[{\"id\":1555527526252183553,\"id_str\":\"1555527526252183553\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZYCyiagAEdtyz.jpg\",\"url\":\"https:\\/\\/t.co\\/IIOx4MDAOm\",\"display_url\":\"pic.twitter.com\\/IIOx4MDAOm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555527538163605504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"3712\":null,\"3713\":null,\"3714\":{\"media\":[{\"id\":1555519327293657088,\"id_str\":\"1555519327293657088\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZQljCX0AAtQV1.jpg\",\"url\":\"https:\\/\\/t.co\\/8Xqw6R7zay\",\"display_url\":\"pic.twitter.com\\/8Xqw6R7zay\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tomidearoso\\/status\\/1555519330288287746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":396,\"resize\":\"fit\"},\"large\":{\"w\":594,\"h\":396,\"resize\":\"fit\"}}}]},\"3715\":{\"media\":[{\"id\":1555507551046967296,\"id_str\":\"1555507551046967296\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZF4FGXoAAN8Wo.png\",\"url\":\"https:\\/\\/t.co\\/k5tjgsoLCv\",\"display_url\":\"pic.twitter.com\\/k5tjgsoLCv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thecableng\\/status\\/1555507581048741889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"medium\":{\"w\":591,\"h\":313,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3716\":null,\"3717\":null,\"3718\":null,\"3719\":null,\"3720\":{\"media\":[{\"id\":1555484864312393729,\"id_str\":\"1555484864312393729\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWQAE6msD.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":732,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}},{\"id\":1555484864350126080,\"id_str\":\"1555484864350126080\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPikWAAA-MNi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPikWAAA-MNi.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":749,\"h\":723,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":723,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":656,\"resize\":\"fit\"}}},{\"id\":1555484864312401920,\"id_str\":\"1555484864312401920\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWYAAZGZC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPibWYAAZGZC.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":740,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":740,\"resize\":\"fit\"}}},{\"id\":1555484864299802624,\"id_str\":\"1555484864299802624\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYxPiYWIAAT8k0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYxPiYWIAAT8k0.jpg\",\"url\":\"https:\\/\\/t.co\\/hRrooPQ70U\",\"display_url\":\"pic.twitter.com\\/hRrooPQ70U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CupidAutosNG\\/status\\/1555484911703920641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":749,\"h\":738,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":738,\"resize\":\"fit\"}}}]},\"3721\":null,\"3722\":null,\"3723\":{\"media\":[{\"id\":1555483886708293632,\"id_str\":\"1555483886708293632\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555483886708293632\\/pu\\/img\\/FiEDI8b5zjOhhG9x.jpg\",\"url\":\"https:\\/\\/t.co\\/6enx4qzLKR\",\"display_url\":\"pic.twitter.com\\/6enx4qzLKR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1555484137737306113\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":139964,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/pl\\/4YltBtdaMfGn4ivk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/vid\\/576x1024\\/efK0kNR2loS3pOlg.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/vid\\/480x852\\/NBkuaEGMcUfo-oi0.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555483886708293632\\/pu\\/vid\\/320x568\\/M-fIA3ibF7-RWNKy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":{\"media\":[{\"id\":1555166743181549575,\"id_str\":\"1555166743181549575\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555166743181549575\\/pu\\/img\\/OQBjKbNxdrUUBaQV.jpg\",\"url\":\"https:\\/\\/t.co\\/0x9UZXqgs4\",\"display_url\":\"pic.twitter.com\\/0x9UZXqgs4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firamnews\\/status\\/1555166784336150528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"source_status_id\":1555166784336150528,\"source_status_id_str\":\"1555166784336150528\",\"source_user_id\":957288307179900930,\"source_user_id_str\":\"957288307179900930\",\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":65434,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555166743181549575\\/pu\\/pl\\/15OE6euJZfCsl53c.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555166743181549575\\/pu\\/vid\\/480x256\\/N1Q7HWwQLRwRaUij.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3728\":{\"media\":[{\"id\":1555467858410459136,\"id_str\":\"1555467858410459136\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYhxqgX0AAex66.jpg\",\"url\":\"https:\\/\\/t.co\\/SMudtOtjrp\",\"display_url\":\"pic.twitter.com\\/SMudtOtjrp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SaveThePeoplle\\/status\\/1555467862516666371\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":632,\"h\":394,\"resize\":\"fit\"},\"medium\":{\"w\":632,\"h\":394,\"resize\":\"fit\"}}}]},\"3729\":{\"media\":[{\"id\":1555452005220597760,\"id_str\":\"1555452005220597760\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555452005220597760\\/pu\\/img\\/U_KZ8r--TCOEdTle.jpg\",\"url\":\"https:\\/\\/t.co\\/ZLI73IE4TU\",\"display_url\":\"pic.twitter.com\\/ZLI73IE4TU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/safareerealty\\/status\\/1555453386195177473\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":14051,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/pl\\/NZwfmk1_cEqEASIs.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/vid\\/704x1280\\/TMQ36d_ZydfLmWQX.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/vid\\/480x872\\/2V2-kUjU082D1NUs.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555452005220597760\\/pu\\/vid\\/320x580\\/nz9mJILREEOLM5IV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3730\":null,\"3731\":null,\"3732\":{\"media\":[{\"id\":1555439841231478787,\"id_str\":\"1555439841231478787\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555439841231478787\\/pu\\/img\\/6hXnXsBYKsWH7REG.jpg\",\"url\":\"https:\\/\\/t.co\\/MaKgKNoo2B\",\"display_url\":\"pic.twitter.com\\/MaKgKNoo2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1555440103807504385\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":131583,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/540x540\\/InHagepyANDZUk3S.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/720x720\\/PkSprm5bH1Aj5ZuB.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/vid\\/320x320\\/JiNEGZRZA3gEyeDS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555439841231478787\\/pu\\/pl\\/WN-v3LOzk9GGaQ5Y.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3733\":{\"media\":[{\"id\":1555432425475432449,\"id_str\":\"1555432425475432449\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZYBjMiWYAE4Olb.jpg\",\"url\":\"https:\\/\\/t.co\\/MBGIPebu1u\",\"display_url\":\"pic.twitter.com\\/MBGIPebu1u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/muyiwaowen\\/status\\/1555432430298882049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3734\":{\"media\":[{\"id\":1555430868143034368,\"id_str\":\"1555430868143034368\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555430868143034368\\/pu\\/img\\/DSyab1HyZJmxtTCW.jpg\",\"url\":\"https:\\/\\/t.co\\/7aelyfUXh4\",\"display_url\":\"pic.twitter.com\\/7aelyfUXh4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SUPalivezobo\\/status\\/1555430906868994051\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":5312,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/vid\\/720x1280\\/7QtOUUpFixg72xeS.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/vid\\/480x852\\/05MBuW9kN_rqF1Rc.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/vid\\/320x568\\/Qm2JkorbWD-LAi13.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555430868143034368\\/pu\\/pl\\/bBTVsC8OStQWOiTo.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3735\":null,\"3736\":{\"media\":[{\"id\":1555429781474254848,\"id_str\":\"1555429781474254848\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555429781474254848\\/pu\\/img\\/MqPIFYralB7xXvUW.jpg\",\"url\":\"https:\\/\\/t.co\\/aEzpnS8MzB\",\"display_url\":\"pic.twitter.com\\/aEzpnS8MzB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phone_Stores\\/status\\/1555429855797428224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6503,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/720x1280\\/7eZjhUupO4j5Lr3k.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/pl\\/658f3FGvvXZWXaG7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/480x852\\/wqzkSz7XIulXW_4P.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555429781474254848\\/pu\\/vid\\/320x568\\/a-d9_jR470LxlMYi.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3737\":{\"media\":[{\"id\":1555428357860458499,\"id_str\":\"1555428357860458499\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555428357860458499\\/pu\\/img\\/toLbU4rMGATcAols.jpg\",\"url\":\"https:\\/\\/t.co\\/daV6xVvXdF\",\"display_url\":\"pic.twitter.com\\/daV6xVvXdF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555428458246848513\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":45009,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/540x540\\/_IZn5Au7zpSlaCBo.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/320x320\\/PiTUwD_PhvDnGvF8.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/vid\\/720x720\\/RP0chz4f3x3aYt1X.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555428357860458499\\/pu\\/pl\\/jqK6FPTePdj4kFMp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3738\":{\"media\":[{\"id\":1555427167911256067,\"id_str\":\"1555427167911256067\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX8xKlXoAMwHK4.jpg\",\"url\":\"https:\\/\\/t.co\\/YAElbkZ8X3\",\"display_url\":\"pic.twitter.com\\/YAElbkZ8X3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555427170872352768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":554,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":554,\"resize\":\"fit\"}}}]},\"3739\":null,\"3740\":{\"media\":[{\"id\":1555423884165382144,\"id_str\":\"1555423884165382144\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yBrWAAANHdl.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555423888192016384,\"id_str\":\"1555423888192016384\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yQrXkAAZFZR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yQrXkAAZFZR.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":614,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":650,\"resize\":\"fit\"}}},{\"id\":1555423891841077249,\"id_str\":\"1555423891841077249\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZX5yeRX0AEG7_N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZX5yeRX0AEG7_N.jpg\",\"url\":\"https:\\/\\/t.co\\/Ro62VgHGk2\",\"display_url\":\"pic.twitter.com\\/Ro62VgHGk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555423894001143809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":714,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":674,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":714,\"resize\":\"fit\"}}}]},\"3741\":{\"media\":[{\"id\":1555420334974697472,\"id_str\":\"1555420334974697472\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420334974697472\\/pu\\/img\\/tBGqa6-9kcArHZMh.jpg\",\"url\":\"https:\\/\\/t.co\\/0AcEwTwWsz\",\"display_url\":\"pic.twitter.com\\/0AcEwTwWsz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555423133896695808\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":60033,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/320x568\\/dFHQr-nIX2b3r35U.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/720x1280\\/3jlG9bYIw5jf_fQs.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/vid\\/480x852\\/-5cLvdS2gjf3Dkq-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420334974697472\\/pu\\/pl\\/PrK4JdHUfpBDxv_s.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3742\":{\"media\":[{\"id\":1555420509881487360,\"id_str\":\"1555420509881487360\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555420509881487360\\/pu\\/img\\/dmrW8aNAYO0AJYjz.jpg\",\"url\":\"https:\\/\\/t.co\\/rpnWM9UjaN\",\"display_url\":\"pic.twitter.com\\/rpnWM9UjaN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ffcproperties\\/status\\/1555420559139393537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":30207,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/480x360\\/7nOiaKBJKisMpbkd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/pl\\/G3gGlchVazeky7By.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/640x480\\/RtxvNpBo1a7UHAwX.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555420509881487360\\/pu\\/vid\\/360x270\\/yhSYwOuyfxDWYIqM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3743\":{\"media\":[{\"id\":1555414162645422080,\"id_str\":\"1555414162645422080\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555414162645422080\\/pu\\/img\\/_XDWMJ7863j3O9AD.jpg\",\"url\":\"https:\\/\\/t.co\\/gp0PMGENjL\",\"display_url\":\"pic.twitter.com\\/gp0PMGENjL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BoiFlex_\\/status\\/1555414450961879040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":47111,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/vid\\/720x1280\\/OVelRPGggOXEfDJA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/pl\\/-32r-6Y_DUtB7Omu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/vid\\/480x852\\/R9zu-fjsXQPSYCDF.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555414162645422080\\/pu\\/vid\\/320x568\\/iitiUeQdu8mdaBAT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3744\":{\"media\":[{\"id\":1555414321768943618,\"id_str\":\"1555414321768943618\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXxFa-X0AIfo5I.jpg\",\"url\":\"https:\\/\\/t.co\\/8APk6oYuGN\",\"display_url\":\"pic.twitter.com\\/8APk6oYuGN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555414324369391616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":357,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":537,\"h\":1024,\"resize\":\"fit\"}}}]},\"3745\":null,\"3746\":{\"media\":[{\"id\":1555407802868310016,\"id_str\":\"1555407802868310016\",\"indices\":[96,119],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXrJ-LWIAA9SDz.jpg\",\"url\":\"https:\\/\\/t.co\\/kdtxBAi7ug\",\"display_url\":\"pic.twitter.com\\/kdtxBAi7ug\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Opiyansky\\/status\\/1555407811441467393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":594,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":824,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":824,\"resize\":\"fit\"}}}]},\"3747\":{\"media\":[{\"id\":1555407269889822720,\"id_str\":\"1555407269889822720\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXqq8rX0AADKdP.jpg\",\"url\":\"https:\\/\\/t.co\\/hDA6NESMyP\",\"display_url\":\"pic.twitter.com\\/hDA6NESMyP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MasterMinderz\\/status\\/1555407272267976704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":843,\"resize\":\"fit\"},\"small\":{\"w\":581,\"h\":680,\"resize\":\"fit\"}}}]},\"3748\":null,\"3749\":{\"media\":[{\"id\":1555403686330994690,\"id_str\":\"1555403686330994690\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555403686330994690\\/pu\\/img\\/6X-u03BrUBE1JCOF.jpg\",\"url\":\"https:\\/\\/t.co\\/zltNrcYkjY\",\"display_url\":\"pic.twitter.com\\/zltNrcYkjY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Yaaseir\\/status\\/1555403943349714944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[427,240],\"duration_millis\":103120,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/pl\\/DM77wPyY71QN9zZr.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/640x360\\/WlrKyIqRjyDPbrWg.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/480x270\\/uuSSf9bQIJCPplkv.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555403686330994690\\/pu\\/vid\\/854x480\\/jRYPw6R7ayGsMpVX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3750\":null,\"3751\":null,\"3752\":{\"media\":[{\"id\":1555400976043220992,\"id_str\":\"1555400976043220992\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXk8mRaIAA3lP1.jpg\",\"url\":\"https:\\/\\/t.co\\/enFmEAy2gz\",\"display_url\":\"pic.twitter.com\\/enFmEAy2gz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Darling41595671\\/status\\/1555400982259179520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1023,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":679,\"resize\":\"fit\"}}}]},\"3753\":null,\"3754\":{\"media\":[{\"id\":1555393247870164992,\"id_str\":\"1555393247870164992\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXd6wlXoAA_QCY.jpg\",\"url\":\"https:\\/\\/t.co\\/IxSU6u1XwJ\",\"display_url\":\"pic.twitter.com\\/IxSU6u1XwJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timora_inyang\\/status\\/1555393250051194880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"large\":{\"w\":840,\"h\":782,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"}}}]},\"3755\":{\"media\":[{\"id\":1555391098150948865,\"id_str\":\"1555391098150948865\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555391098150948865\\/pu\\/img\\/4mEzGS4Zy9MJb_KU.jpg\",\"url\":\"https:\\/\\/t.co\\/VQmy6B6d5G\",\"display_url\":\"pic.twitter.com\\/VQmy6B6d5G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lilymatyr\\/status\\/1555391148688084992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":425,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[5,8],\"duration_millis\":25251,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/vid\\/480x768\\/TqTMi_xOeS6bGvIb.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/vid\\/320x512\\/MYlOiM9Gdm4YBRSf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/pl\\/pduMpJIxM0UkMYoO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555391098150948865\\/pu\\/vid\\/720x1152\\/_aSVl0xntarsxNfw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3756\":null,\"3757\":{\"media\":[{\"id\":1555375344168869892,\"id_str\":\"1555375344168869892\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555375344168869892\\/pu\\/img\\/y08A9wNY49sPEXQ4.jpg\",\"url\":\"https:\\/\\/t.co\\/NwtOsx7Z7p\",\"display_url\":\"pic.twitter.com\\/NwtOsx7Z7p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NFPJNig\\/status\\/1555375695559380994\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":75835,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/vid\\/352x640\\/-zCgdCv8w2bxoDwo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/pl\\/hnzkfzMt-UvUYY5J.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555375344168869892\\/pu\\/vid\\/320x580\\/10Nq3pMKpc0VUmbr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3758\":{\"media\":[{\"id\":1555370210193989632,\"id_str\":\"1555370210193989632\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXI9yjWYAAlO-y.jpg\",\"url\":\"https:\\/\\/t.co\\/SK3JMA9FMG\",\"display_url\":\"pic.twitter.com\\/SK3JMA9FMG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1555370218377166853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3759\":null,\"3760\":{\"media\":[{\"id\":1555363980968853504,\"id_str\":\"1555363980968853504\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZXDTM4WAAALDmP.jpg\",\"url\":\"https:\\/\\/t.co\\/0NAHWhR8MZ\",\"display_url\":\"pic.twitter.com\\/0NAHWhR8MZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brandorxinc\\/status\\/1555363998995988483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"3761\":null,\"3762\":null,\"3763\":{\"media\":[{\"id\":1555351779956727809,\"id_str\":\"1555351779956727809\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555351779956727809\\/pu\\/img\\/zHT0ixV4v6C-soTb.jpg\",\"url\":\"https:\\/\\/t.co\\/j62UIGDzHd\",\"display_url\":\"pic.twitter.com\\/j62UIGDzHd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ochocheijeleche\\/status\\/1555351846230921216\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44975,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/vid\\/480x852\\/8-zEyBFPtFJSyr89.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/vid\\/576x1024\\/jZLXudc5UHv37dRM.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/vid\\/320x568\\/NhP7YR4p4gWx28yH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555351779956727809\\/pu\\/pl\\/6zQO-kudyvIhnmFM.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3764\":null,\"3765\":{\"media\":[{\"id\":1555351029113315331,\"id_str\":\"1555351029113315331\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZW3hTdWYAMBbi1.jpg\",\"url\":\"https:\\/\\/t.co\\/R8GzyJsaar\",\"display_url\":\"pic.twitter.com\\/R8GzyJsaar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1555351032011571202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"small\":{\"w\":424,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":424,\"h\":361,\"resize\":\"fit\"}}}]},\"3766\":null,\"3767\":null,\"3768\":{\"media\":[{\"id\":1555346508429594626,\"id_str\":\"1555346508429594626\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWzaKmXEAIlEo9.jpg\",\"url\":\"https:\\/\\/t.co\\/Lwq6cEPuqR\",\"display_url\":\"pic.twitter.com\\/Lwq6cEPuqR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1555346514528051200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3769\":{\"media\":[{\"id\":1555341930967572482,\"id_str\":\"1555341930967572482\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555341930967572482\\/pu\\/img\\/xKg_hH6aQ6GgiIjP.jpg\",\"url\":\"https:\\/\\/t.co\\/2ueIR9txeq\",\"display_url\":\"pic.twitter.com\\/2ueIR9txeq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555341970872090626\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":19890,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/vid\\/320x426\\/ygIH0-2eXvU6UPrH.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/vid\\/480x640\\/1otRuz8-olWv-KI1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555341930967572482\\/pu\\/pl\\/DrFeFGUfWHyZdTJ_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3770\":{\"media\":[{\"id\":1555341318657802240,\"id_str\":\"1555341318657802240\",\"indices\":[18,41],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWusFMWAAAg3m-.jpg\",\"url\":\"https:\\/\\/t.co\\/iAL0HSO7tQ\",\"display_url\":\"pic.twitter.com\\/iAL0HSO7tQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sobioemma\\/status\\/1555341323653242880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3771\":{\"media\":[{\"id\":1555339718589546498,\"id_str\":\"1555339718589546498\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8eWAAIpL6z.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555339718514065408,\"id_str\":\"1555339718514065408\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8MWQAA9dAD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8MWQAA9dAD.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555339718530826242,\"id_str\":\"1555339718530826242\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8QWAAI1ybp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8QWAAI1ybp.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555339718551916547,\"id_str\":\"1555339718551916547\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWtO8VX0AMwoNR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWtO8VX0AMwoNR.jpg\",\"url\":\"https:\\/\\/t.co\\/roiz2SlXMs\",\"display_url\":\"pic.twitter.com\\/roiz2SlXMs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ayomidegolds15\\/status\\/1555339745286299649\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":null,\"3777\":{\"media\":[{\"id\":1555330350544461824,\"id_str\":\"1555330350544461824\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktpyWIAAFayW.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}},{\"id\":1555330350578126848,\"id_str\":\"1555330350578126848\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp6X0AAwHhb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp6X0AAwHhb.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":958,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":898,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555330350573920256,\"id_str\":\"1555330350573920256\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp5XoAAbQcE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp5XoAAbQcE.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"}}},{\"id\":1555330350552842241,\"id_str\":\"1555330350552842241\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWktp0WAAES6k9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWktp0WAAES6k9.jpg\",\"url\":\"https:\\/\\/t.co\\/BaA2cMeVdn\",\"display_url\":\"pic.twitter.com\\/BaA2cMeVdn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CN4PO\\/status\\/1555330385654996994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":719,\"resize\":\"fit\"}}}]},\"3778\":null,\"3779\":null,\"3780\":{\"media\":[{\"id\":1555322810226163713,\"id_str\":\"1555322810226163713\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555322810226163713\\/pu\\/img\\/SQgHLDUnGilNZlTD.jpg\",\"url\":\"https:\\/\\/t.co\\/cEGxjhHBpI\",\"display_url\":\"pic.twitter.com\\/cEGxjhHBpI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/exponentnwachae\\/status\\/1555322974445641741\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27480,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/vid\\/720x1280\\/w0R9ImYe8Rt59ylu.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/vid\\/320x568\\/YH7HeDBXtSCAPNR0.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/vid\\/480x852\\/CoC_x8LJ1iL0Z2Sg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555322810226163713\\/pu\\/pl\\/8HqmMsoTbaMdf0xz.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3781\":null,\"3782\":null,\"3783\":{\"media\":[{\"id\":1555318538319060994,\"id_str\":\"1555318538319060994\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555318538319060994\\/pu\\/img\\/Ln-InlO6ZEUDbwWc.jpg\",\"url\":\"https:\\/\\/t.co\\/G9GAtpSjXN\",\"display_url\":\"pic.twitter.com\\/G9GAtpSjXN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555318567473651713\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":352,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":352,\"h\":628,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[88,157],\"duration_millis\":13066,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555318538319060994\\/pu\\/vid\\/352x628\\/jWrTw1r_f1v3EhZR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555318538319060994\\/pu\\/pl\\/E_C3NWoNVPKcPp5q.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555318538319060994\\/pu\\/vid\\/320x570\\/o1CTu98f638L45yb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3784\":{\"media\":[{\"id\":1555317034237526017,\"id_str\":\"1555317034237526017\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWYmirXgAEpq5-.jpg\",\"url\":\"https:\\/\\/t.co\\/ud1UpF6RVS\",\"display_url\":\"pic.twitter.com\\/ud1UpF6RVS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SammyGr96158056\\/status\\/1555317037097951233\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"large\":{\"w\":850,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"3785\":{\"media\":[{\"id\":1555316793249599489,\"id_str\":\"1555316793249599489\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555316793249599489\\/pu\\/img\\/JSpAvEGq9bX5OOcD.jpg\",\"url\":\"https:\\/\\/t.co\\/npACZaYBZJ\",\"display_url\":\"pic.twitter.com\\/npACZaYBZJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AndrewKunz7\\/status\\/1555316858437484544\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6366,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/pl\\/5h1qAlFO3Wjfszp0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/720x1280\\/_nlRLEJicH3OlrcD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/320x568\\/GgtYf3uTj4v65EvX.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555316793249599489\\/pu\\/vid\\/480x852\\/gYgRbDOdkaMdVX-F.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3786\":{\"media\":[{\"id\":1555315028865212418,\"id_str\":\"1555315028865212418\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555315028865212418\\/pu\\/img\\/ijsihPipQ_oQZOWq.jpg\",\"url\":\"https:\\/\\/t.co\\/VHp1KIltN6\",\"display_url\":\"pic.twitter.com\\/VHp1KIltN6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kevinice0\\/status\\/1555315108515123205\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22698,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/vid\\/320x568\\/coB8SMBPBBx6f_HO.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/vid\\/540x960\\/6khBfuOjCv4Zt-3U.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/pl\\/sFL5kMKO-Y7sytYs.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555315028865212418\\/pu\\/vid\\/480x852\\/9NFviVLcR_OEs2kS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3787\":{\"media\":[{\"id\":1555313890539573252,\"id_str\":\"1555313890539573252\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555313890539573252\\/pu\\/img\\/Qia6Ag_L30Ra-Fp6.jpg\",\"url\":\"https:\\/\\/t.co\\/sGrgwMYnR0\",\"display_url\":\"pic.twitter.com\\/sGrgwMYnR0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zeus_el_Savage\\/status\\/1555313928296665088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":202,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":202,\"h\":424,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[101,212],\"duration_millis\":33368,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555313890539573252\\/pu\\/vid\\/202x424\\/hYr7_qoEOBkKtY8C.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555313890539573252\\/pu\\/pl\\/0Xv18zIjulSRmEBn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3788\":null,\"3789\":{\"media\":[{\"id\":1555313075116449793,\"id_str\":\"1555313075116449793\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWVAFzWIAEOP_p.jpg\",\"url\":\"https:\\/\\/t.co\\/J5gc59nY80\",\"display_url\":\"pic.twitter.com\\/J5gc59nY80\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealAbdulmanaf\\/status\\/1555313085501652992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":801,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":866,\"h\":1298,\"resize\":\"fit\"}}}]},\"3790\":{\"media\":[{\"id\":1555310046082383875,\"id_str\":\"1555310046082383875\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSPxxWQAMHknp.jpg\",\"url\":\"https:\\/\\/t.co\\/yPQQwkGuw0\",\"display_url\":\"pic.twitter.com\\/yPQQwkGuw0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/herald_digitals\\/status\\/1555310059139354627\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3791\":{\"media\":[{\"id\":1555309780943650819,\"id_str\":\"1555309780943650819\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSAWDWQAM9osX.jpg\",\"url\":\"https:\\/\\/t.co\\/gbEdagmUIq\",\"display_url\":\"pic.twitter.com\\/gbEdagmUIq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555309799948034048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}},{\"id\":1555309791244869632,\"id_str\":\"1555309791244869632\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWSA8bWYAAS1X1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWSA8bWYAAS1X1.jpg\",\"url\":\"https:\\/\\/t.co\\/gbEdagmUIq\",\"display_url\":\"pic.twitter.com\\/gbEdagmUIq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555309799948034048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3792\":{\"media\":[{\"id\":1555308891436621826,\"id_str\":\"1555308891436621826\",\"indices\":[74,97],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555308891436621826\\/pu\\/img\\/a0H7LlrbBr0aE7u0.jpg\",\"url\":\"https:\\/\\/t.co\\/pHWTp7I5mJ\",\"display_url\":\"pic.twitter.com\\/pHWTp7I5mJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555309544292630528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":30000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/pl\\/GHEnk6RQLac72-7X.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/576x1024\\/1FL8pLWfSJt69HEH.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/320x568\\/6AEfXFHEjZvEWKhF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555308891436621826\\/pu\\/vid\\/480x852\\/lxZBuuk9zRJ1JfP0.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3793\":{\"media\":[{\"id\":1555308819101663232,\"id_str\":\"1555308819101663232\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWRIW6WQAAhflC.jpg\",\"url\":\"https:\\/\\/t.co\\/NuKqOdXZll\",\"display_url\":\"pic.twitter.com\\/NuKqOdXZll\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AlwaysWorried__\\/status\\/1555308825040879622\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":369,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":391,\"resize\":\"fit\"}}}]},\"3794\":{\"media\":[{\"id\":1555307142520922112,\"id_str\":\"1555307142520922112\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWPmxKWYAAXR0g.jpg\",\"url\":\"https:\\/\\/t.co\\/2bK4aGnVAU\",\"display_url\":\"pic.twitter.com\\/2bK4aGnVAU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rumerule\\/status\\/1555307151958188036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3795\":null,\"3796\":{\"media\":[{\"id\":1555303203847249921,\"id_str\":\"1555303203847249921\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWMBgdXoAEiHas.jpg\",\"url\":\"https:\\/\\/t.co\\/cbSE372zmL\",\"display_url\":\"pic.twitter.com\\/cbSE372zmL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Twenty_naira\\/status\\/1555303207236255744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":414,\"resize\":\"fit\"}}}]},\"3797\":null,\"3798\":null,\"3799\":{\"media\":[{\"id\":1555299449458622465,\"id_str\":\"1555299449458622465\",\"indices\":[136,159],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555299449458622465\\/pu\\/img\\/-8Lb1Q7j5CS-DV94.jpg\",\"url\":\"https:\\/\\/t.co\\/XmsWKco1NS\",\"display_url\":\"pic.twitter.com\\/XmsWKco1NS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trender_sam\\/status\\/1555299516613627904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1044,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,29],\"duration_millis\":9666,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/720x1044\\/7nFVI8KmnGYNP9DZ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/480x696\\/DwUdG5JPZxDj7Psg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/pl\\/FJFX0iTWZcmCKqxW.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555299449458622465\\/pu\\/vid\\/320x464\\/G0juWsWiQpWtdy8L.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3800\":{\"media\":[{\"id\":1555297038035714048,\"id_str\":\"1555297038035714048\",\"indices\":[292,315],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555297038035714048\\/pu\\/img\\/vQvrySDjsJifBdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/Na4Yekzzmu\",\"display_url\":\"pic.twitter.com\\/Na4Yekzzmu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555298493316665346\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":99433,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/480x852\\/GfMg0hknOsHbQ0Cs.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/pl\\/mjph1mkgOwWrNNOY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/320x568\\/1WSAo6vgb9sY1cYx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555297038035714048\\/pu\\/vid\\/720x1280\\/b58k3WlrkqqB3V_F.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3801\":null,\"3802\":null,\"3803\":{\"media\":[{\"id\":1555297198270816256,\"id_str\":\"1555297198270816256\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWGj78XoAAm1VG.jpg\",\"url\":\"https:\\/\\/t.co\\/eUgJVcdOgP\",\"display_url\":\"pic.twitter.com\\/eUgJVcdOgP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EOAlakpodia\\/status\\/1555297218936115202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3804\":null,\"3805\":{\"media\":[{\"id\":1555293433522159617,\"id_str\":\"1555293433522159617\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZWDIzKWAAETpoz.jpg\",\"url\":\"https:\\/\\/t.co\\/YPAKeLtsly\",\"display_url\":\"pic.twitter.com\\/YPAKeLtsly\",\"expanded_url\":\"https:\\/\\/twitter.com\\/werey_mecho\\/status\\/1555293488253747200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":469,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1088,\"resize\":\"fit\"}}}]},\"3806\":null,\"3807\":null,\"3808\":{\"media\":[{\"id\":1555289978367889411,\"id_str\":\"1555289978367889411\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV__rtX0AMap9h.jpg\",\"url\":\"https:\\/\\/t.co\\/7rnj6pp7NE\",\"display_url\":\"pic.twitter.com\\/7rnj6pp7NE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555290140561625090\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":409,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":409,\"resize\":\"fit\"}}}]},\"3809\":{\"media\":[{\"id\":1555289948055560192,\"id_str\":\"1555289948055560192\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV_96yWYAAuYmR.jpg\",\"url\":\"https:\\/\\/t.co\\/Ws8Ki9CFt1\",\"display_url\":\"pic.twitter.com\\/Ws8Ki9CFt1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GraceoxfordAgt\\/status\\/1555289958906200064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":702,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":900,\"resize\":\"fit\"}}}]},\"3810\":{\"media\":[{\"id\":1555288389473259522,\"id_str\":\"1555288389473259522\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555288389473259522\\/pu\\/img\\/XYBA_jQDyr2RLyuv.jpg\",\"url\":\"https:\\/\\/t.co\\/48lu9wGaF4\",\"display_url\":\"pic.twitter.com\\/48lu9wGaF4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1555289069831311363\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":92066,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/320x568\\/8r8urqOuTb7j2ugN.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/720x1280\\/RE3mO4JBFZo3ZQ0Y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/pl\\/g0wjBfinjLJ5L3IM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555288389473259522\\/pu\\/vid\\/480x852\\/pJncnxyRoVU31tHb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3811\":{\"media\":[{\"id\":1555288704796827653,\"id_str\":\"1555288704796827653\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-1jSXoAUHnTE.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":666,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":666,\"resize\":\"fit\"}}},{\"id\":1555288714317860873,\"id_str\":\"1555288714317860873\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-2GwXEAkyhlD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-2GwXEAkyhlD.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":404,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":404,\"resize\":\"fit\"}}},{\"id\":1555288719002853377,\"id_str\":\"1555288719002853377\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-2YNWYAEokcC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-2YNWYAEokcC.jpg\",\"url\":\"https:\\/\\/t.co\\/Rrh4VyRrHk\",\"display_url\":\"pic.twitter.com\\/Rrh4VyRrHk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ennys_Abbey\\/status\\/1555288728205139968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"3812\":{\"media\":[{\"id\":1555288001953013766,\"id_str\":\"1555288001953013766\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV-Mo_WIAYzVYz.jpg\",\"url\":\"https:\\/\\/t.co\\/XvDzDntGau\",\"display_url\":\"pic.twitter.com\\/XvDzDntGau\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RaywondersA\\/status\\/1555288045670354950\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"3813\":{\"media\":[{\"id\":1555287078228955137,\"id_str\":\"1555287078228955137\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV9W32XkAEo-uT.jpg\",\"url\":\"https:\\/\\/t.co\\/wq0Y1ftS4q\",\"display_url\":\"pic.twitter.com\\/wq0Y1ftS4q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Deni_kuddz\\/status\\/1555287099267551234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":702,\"resize\":\"fit\"},\"small\":{\"w\":465,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":702,\"resize\":\"fit\"}}}]},\"3814\":{\"media\":[{\"id\":1555286306628210688,\"id_str\":\"1555286306628210688\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV8p9aakAAva4m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV8p9aakAAva4m.jpg\",\"url\":\"https:\\/\\/t.co\\/IDGmEP8m4s\",\"display_url\":\"pic.twitter.com\\/IDGmEP8m4s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ne__point\\/status\\/1555286309412909056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":360,\"h\":199,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":199,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":199,\"resize\":\"fit\"}}}]},\"3815\":{\"media\":[{\"id\":1555286117347459072,\"id_str\":\"1555286117347459072\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555286117347459072\\/pu\\/img\\/UjERu8B0r-JWKk9f.jpg\",\"url\":\"https:\\/\\/t.co\\/Ie9UaQ7YBU\",\"display_url\":\"pic.twitter.com\\/Ie9UaQ7YBU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kinqbrizy1\\/status\\/1555286290148589571\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":54233,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/480x600\\/2yjFbGkea_xAosVJ.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/320x400\\/ebr-rUOfBYbUq6La.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/vid\\/720x900\\/Qt0HgDnK3CJ_83hP.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555286117347459072\\/pu\\/pl\\/IPGuaedar5KjzEzw.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3816\":{\"media\":[{\"id\":1555285317451644929,\"id_str\":\"1555285317451644929\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV7wYcWAAEICPY.jpg\",\"url\":\"https:\\/\\/t.co\\/1M5P4K2WZ9\",\"display_url\":\"pic.twitter.com\\/1M5P4K2WZ9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1555285352222441474\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1121,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1884,\"h\":1760,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":635,\"resize\":\"fit\"}}}]},\"3817\":null,\"3818\":null,\"3819\":null,\"3820\":{\"media\":[{\"id\":1555279899912552448,\"id_str\":\"1555279899912552448\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279899912552448\\/pu\\/img\\/T92vR3I45XqLiGFJ.jpg\",\"url\":\"https:\\/\\/t.co\\/eggArJK1mA\",\"display_url\":\"pic.twitter.com\\/eggArJK1mA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1555279982598946821\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":7990,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/320x568\\/3CAxOgR4Wtd-_nPV.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/720x1280\\/1vrIwn1w_FhPseUY.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/vid\\/480x852\\/eEkPAaIgR73Q_-Lo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279899912552448\\/pu\\/pl\\/ho0OH2_SEHuj7lU7.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3821\":{\"media\":[{\"id\":1555279715027587080,\"id_str\":\"1555279715027587080\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qRyXEAg96g9.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1355,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279724187947010,\"id_str\":\"1555279724187947010\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2qz6XEAI0Tu-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2qz6XEAI0Tu-.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":1419,\"resize\":\"fit\"},\"medium\":{\"w\":912,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279732568096774,\"id_str\":\"1555279732568096774\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2rTIWAAYlsSb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2rTIWAAYlsSb.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":550,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1336,\"resize\":\"fit\"},\"medium\":{\"w\":970,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555279741061570562,\"id_str\":\"1555279741061570562\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV2ryxWIAIjs4W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV2ryxWIAIjs4W.jpg\",\"url\":\"https:\\/\\/t.co\\/9CheKrqxvu\",\"display_url\":\"pic.twitter.com\\/9CheKrqxvu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krafti101\\/status\\/1555279750452715525\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":928,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":526,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1028,\"h\":1329,\"resize\":\"fit\"}}}]},\"3822\":{\"media\":[{\"id\":1555278481705078786,\"id_str\":\"1555278481705078786\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1ifTXEAI2r0O.jpg\",\"url\":\"https:\\/\\/t.co\\/5XQk1GZOUr\",\"display_url\":\"pic.twitter.com\\/5XQk1GZOUr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theonlinecook\\/status\\/1555278483777114112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3823\":{\"media\":[{\"id\":1555277880342581253,\"id_str\":\"1555277880342581253\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV0_fDXkAUSIdM.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}},{\"id\":1555277890501107712,\"id_str\":\"1555277890501107712\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1AE5WYAA30uZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1AE5WYAA30uZ.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":654,\"h\":655,\"resize\":\"fit\"},\"small\":{\"w\":654,\"h\":655,\"resize\":\"fit\"},\"large\":{\"w\":654,\"h\":655,\"resize\":\"fit\"}}},{\"id\":1555277900357697537,\"id_str\":\"1555277900357697537\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZV1ApnWAAEoL-O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZV1ApnWAAEoL-O.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoGToaumXh\",\"display_url\":\"pic.twitter.com\\/ZoGToaumXh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_Jokerthekid\\/status\\/1555277911216848898\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3824\":null,\"3825\":{\"media\":[{\"id\":1555274994862755840,\"id_str\":\"1555274994862755840\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyXhzXkAARod-.jpg\",\"url\":\"https:\\/\\/t.co\\/vDqCjp8ZKd\",\"display_url\":\"pic.twitter.com\\/vDqCjp8ZKd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555275017306472449\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"3826\":{\"media\":[{\"id\":1555274835256918017,\"id_str\":\"1555274835256918017\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVyOPOXwAEnzl-.jpg\",\"url\":\"https:\\/\\/t.co\\/mFSHpbLkRV\",\"display_url\":\"pic.twitter.com\\/mFSHpbLkRV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1555274853632319489\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1553519166480596992,\"id_str\":\"1553519166480596992\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY81c3XWQAAn90h.jpg\",\"url\":\"https:\\/\\/t.co\\/i6xB8ONfRb\",\"display_url\":\"pic.twitter.com\\/i6xB8ONfRb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SamuelE65506504\\/status\\/1553519223825207297\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":304,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":536,\"resize\":\"fit\"},\"large\":{\"w\":1612,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1553519223825207297,\"source_status_id_str\":\"1553519223825207297\",\"source_user_id\":1492802410850435072,\"source_user_id_str\":\"1492802410850435072\"}]},\"3827\":{\"media\":[{\"id\":1555273952955699201,\"id_str\":\"1555273952955699201\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555273952955699201\\/pu\\/img\\/LT4cZ7pLUQ-0uPfv.jpg\",\"url\":\"https:\\/\\/t.co\\/YEWbHC5Yma\",\"display_url\":\"pic.twitter.com\\/YEWbHC5Yma\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sourced2018\\/status\\/1555274388391579649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":64661,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555273952955699201\\/pu\\/pl\\/Zsb12RYnlO6OxxnF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555273952955699201\\/pu\\/vid\\/640x352\\/HsnYCw31-hkPtAaZ.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555273952955699201\\/pu\\/vid\\/490x270\\/WMDYXAlZanyuBw8a.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3828\":{\"media\":[{\"id\":1555274103359168513,\"id_str\":\"1555274103359168513\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555274103359168513\\/pu\\/img\\/16gOEkKBSZLKdPyk.jpg\",\"url\":\"https:\\/\\/t.co\\/XLJzMjNhun\",\"display_url\":\"pic.twitter.com\\/XLJzMjNhun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555274246074548227\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":37904,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/pl\\/e0qZWDZ73YPwgW9-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/480x270\\/b5f3W0110UvNl2Ts.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/640x360\\/wV71l8odAexeiRzx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555274103359168513\\/pu\\/vid\\/1280x720\\/B585NttRPIza2FyH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3829\":null,\"3830\":null,\"3831\":{\"media\":[{\"id\":1555272561373609984,\"id_str\":\"1555272561373609984\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555272561373609984\\/pu\\/img\\/cbG8gbOJ6cU6K32y.jpg\",\"url\":\"https:\\/\\/t.co\\/A84bZqVB2K\",\"display_url\":\"pic.twitter.com\\/A84bZqVB2K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555272697474588673\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":1132,\"resize\":\"fit\"},\"small\":{\"w\":384,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,283],\"duration_millis\":44981,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/480x848\\/jg-p-m9gEueooS2t.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/pl\\/_1Pl4nrxGO0DU3DD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/320x566\\/si4fG2J74VEZzfg-.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555272561373609984\\/pu\\/vid\\/640x1132\\/5mALZtxgsqSbUIhx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3832\":{\"media\":[{\"id\":1555271584092504065,\"id_str\":\"1555271584092504065\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555271584092504065\\/pu\\/img\\/7wSRdH7vL2xdxbYi.jpg\",\"url\":\"https:\\/\\/t.co\\/Zm4XzZzg1A\",\"display_url\":\"pic.twitter.com\\/Zm4XzZzg1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Ligera\\/status\\/1555271731555848193\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":304,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":304,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,19],\"duration_millis\":44991,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555271584092504065\\/pu\\/vid\\/568x270\\/7DEv2JG7ZBu3DHor.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555271584092504065\\/pu\\/pl\\/3sSPoPnDOAjk4htm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555271584092504065\\/pu\\/vid\\/640x304\\/W5OoMkFnK39YcUdY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3833\":{\"media\":[{\"id\":1555270933937639426,\"id_str\":\"1555270933937639426\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVurJrX0AIF1qz.jpg\",\"url\":\"https:\\/\\/t.co\\/p6XojkDsrJ\",\"display_url\":\"pic.twitter.com\\/p6XojkDsrJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1555270969526308864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}}]},\"3834\":{\"media\":[{\"id\":1555270714822983680,\"id_str\":\"1555270714822983680\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVueZaXgAAlCh5.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}},{\"id\":1555270718039924738,\"id_str\":\"1555270718039924738\",\"indices\":[285,308],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuelZWIAIjOV9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuelZWIAIjOV9.jpg\",\"url\":\"https:\\/\\/t.co\\/6pDOTY9uKU\",\"display_url\":\"pic.twitter.com\\/6pDOTY9uKU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555270720502087680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}}]},\"3835\":{\"media\":[{\"id\":1555270415982936065,\"id_str\":\"1555270415982936065\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNAJWQAEKZFE.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}},{\"id\":1555270419166412800,\"id_str\":\"1555270419166412800\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNMAWQAAh8Jk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNMAWQAAh8Jk.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270421817196545,\"id_str\":\"1555270421817196545\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuNV4WAAEp2S4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuNV4WAAEp2S4.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270446513328128,\"id_str\":\"1555270446513328128\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVuOx4XEAAp50M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVuOx4XEAAp50M.jpg\",\"url\":\"https:\\/\\/t.co\\/6P0zhqhVwx\",\"display_url\":\"pic.twitter.com\\/6P0zhqhVwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555270449935810565\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":564,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":564,\"resize\":\"fit\"}}}]},\"3836\":{\"media\":[{\"id\":1555270114387410944,\"id_str\":\"1555270114387410944\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt7cnXwAAYkac.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":570,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":538,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":570,\"resize\":\"fit\"}}},{\"id\":1555270121542803459,\"id_str\":\"1555270121542803459\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt73RWYAMMPnn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt73RWYAMMPnn.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}},{\"id\":1555270126169104386,\"id_str\":\"1555270126169104386\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt8IgWIAIy_Y_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt8IgWIAIy_Y_.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":555,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":524,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":555,\"resize\":\"fit\"}}},{\"id\":1555270136319426568,\"id_str\":\"1555270136319426568\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVt8uUXwAgEizq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVt8uUXwAgEizq.jpg\",\"url\":\"https:\\/\\/t.co\\/ZQ91j8EQaP\",\"display_url\":\"pic.twitter.com\\/ZQ91j8EQaP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eicoofficial1\\/status\\/1555270151976763398\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":537,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":569,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":569,\"resize\":\"fit\"}}}]},\"3837\":null,\"3838\":{\"media\":[{\"id\":1555264644540948482,\"id_str\":\"1555264644540948482\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVo9D2WYAITAxi.jpg\",\"url\":\"https:\\/\\/t.co\\/Jathe02eyN\",\"display_url\":\"pic.twitter.com\\/Jathe02eyN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nisgembu\\/status\\/1555264649989324802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":562,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":531,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":562,\"resize\":\"fit\"}}}]},\"3839\":{\"media\":[{\"id\":1555257196476305411,\"id_str\":\"1555257196476305411\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555257196476305411\\/pu\\/img\\/Nlj3OvNQotf9jM-c.jpg\",\"url\":\"https:\\/\\/t.co\\/5MALG8kSIN\",\"display_url\":\"pic.twitter.com\\/5MALG8kSIN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/musicwormcity\\/status\\/1555257331738353667\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[45,68],\"duration_millis\":31803,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/vid\\/320x482\\/TC99AgDnDNzOppCN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/vid\\/480x724\\/SZRZfnPGIuIRiQYc.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/vid\\/720x1088\\/EfhzcYCRmfvYK2Ue.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555257196476305411\\/pu\\/pl\\/0st9aLV65G5KjOa9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3840\":{\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/RMj7g6MMC1\",\"display_url\":\"pic.twitter.com\\/RMj7g6MMC1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}},\"source_status_id\":1555248905692086274,\"source_status_id_str\":\"1555248905692086274\",\"source_user_id\":1279448672183476224,\"source_user_id_str\":\"1279448672183476224\"}]},\"3841\":{\"media\":[{\"id\":1555253487654641667,\"id_str\":\"1555253487654641667\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555253487654641667\\/pu\\/img\\/7p6GUtcNP4xTkreu.jpg\",\"url\":\"https:\\/\\/t.co\\/vEn321p0T2\",\"display_url\":\"pic.twitter.com\\/vEn321p0T2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Am_Benco\\/status\\/1555253770518405123\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22433,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/320x568\\/vTu3sRTScuxTnMbA.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/480x852\\/mE6nmTmpHZ8JkLVf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/pl\\/dkjo1rJAjW-R3CV3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555253487654641667\\/pu\\/vid\\/576x1024\\/sww_OBtxcImcpR5X.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":{\"media\":[{\"id\":1555250710274523136,\"id_str\":\"1555250710274523136\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVcR-qWQAAQfbS.jpg\",\"url\":\"https:\\/\\/t.co\\/EfUaut9kOK\",\"display_url\":\"pic.twitter.com\\/EfUaut9kOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555250716188581893\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"3846\":{\"media\":[{\"id\":1555250004314431489,\"id_str\":\"1555250004314431489\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555250004314431489\\/pu\\/img\\/orDxz1w_jomYalOl.jpg\",\"url\":\"https:\\/\\/t.co\\/kzmzAnO5vv\",\"display_url\":\"pic.twitter.com\\/kzmzAnO5vv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Treasuregodwi7\\/status\\/1555250097927110658\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":24666,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/720x1280\\/HjspE8oqIOK9GuKS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/pl\\/YPA359CFpJL9ssnt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/320x568\\/QDduE-XwTXjvf8TD.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555250004314431489\\/pu\\/vid\\/480x852\\/KQNKV1WAbHs3YLRW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3847\":{\"media\":[{\"id\":1555248899262144514,\"id_str\":\"1555248899262144514\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVaokHWYAIm1p9.jpg\",\"url\":\"https:\\/\\/t.co\\/cmaB04hQQc\",\"display_url\":\"pic.twitter.com\\/cmaB04hQQc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555248905692086274\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":803,\"h\":537,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":803,\"h\":537,\"resize\":\"fit\"}}}]},\"3848\":{\"media\":[{\"id\":1555247726476115968,\"id_str\":\"1555247726476115968\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555247726476115968\\/pu\\/img\\/kr3xx_hpqMumtqdZ.jpg\",\"url\":\"https:\\/\\/t.co\\/UPSQQiIjql\",\"display_url\":\"pic.twitter.com\\/UPSQQiIjql\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifeofecstasy1\\/status\\/1555247814728470528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":378,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,5],\"duration_millis\":31858,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/648x360\\/rQNkjHuKbsyM268Q.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/1080x600\\/W0nQ4wa_mC9mUIZP.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/vid\\/486x270\\/o3P6GT5uOIkzs909.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555247726476115968\\/pu\\/pl\\/KWjaBWGlNingDWHa.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3849\":null,\"3850\":null,\"3851\":{\"media\":[{\"id\":1555247350880391169,\"id_str\":\"1555247350880391169\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVZOb8X0AECsqX.jpg\",\"url\":\"https:\\/\\/t.co\\/F4ipVGpGv7\",\"display_url\":\"pic.twitter.com\\/F4ipVGpGv7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andredicksonn\\/status\\/1555247359264784394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":799,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}}]},\"3852\":null,\"3853\":{\"media\":[{\"id\":1555245913861509120,\"id_str\":\"1555245913861509120\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555245913861509120\\/pu\\/img\\/R4wZdbt5cZn-VTMA.jpg\",\"url\":\"https:\\/\\/t.co\\/HRaxg8lwmS\",\"display_url\":\"pic.twitter.com\\/HRaxg8lwmS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1555246099278995456\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":60533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/vid\\/320x568\\/pNaq-GWDGbyM9jSs.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/pl\\/vjbxk7hyI3ecduz3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/vid\\/720x1280\\/GprmT6i1PTrSmZ6B.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555245913861509120\\/pu\\/vid\\/480x852\\/5pw3aWwG2VGSkOrX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3854\":{\"media\":[{\"id\":1555245449409331201,\"id_str\":\"1555245449409331201\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVXfwaWAAEjH1u.jpg\",\"url\":\"https:\\/\\/t.co\\/fBWDJy3vow\",\"display_url\":\"pic.twitter.com\\/fBWDJy3vow\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555245463124824069\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":1329,\"resize\":\"fit\"}}}]},\"3855\":{\"media\":[{\"id\":1555241323099312129,\"id_str\":\"1555241323099312129\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTvktX0AELrrG.jpg\",\"url\":\"https:\\/\\/t.co\\/DGoLBK68RJ\",\"display_url\":\"pic.twitter.com\\/DGoLBK68RJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1555241326807060480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":348,\"resize\":\"fit\"},\"large\":{\"w\":658,\"h\":348,\"resize\":\"fit\"}}}]},\"3856\":{\"media\":[{\"id\":1555240673586069506,\"id_str\":\"1555240673586069506\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVTJxFWQAIkwHe.jpg\",\"url\":\"https:\\/\\/t.co\\/3Z0k3P5ZFq\",\"display_url\":\"pic.twitter.com\\/3Z0k3P5ZFq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itsdbabafatbili\\/status\\/1555240679495929856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":496,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":351,\"h\":680,\"resize\":\"fit\"}}}]},\"3857\":{\"media\":[{\"id\":1555238932593377281,\"id_str\":\"1555238932593377281\",\"indices\":[210,233],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555238932593377281\\/pu\\/img\\/b1S4a_qC3isHz8-7.jpg\",\"url\":\"https:\\/\\/t.co\\/1UsANAgJJV\",\"display_url\":\"pic.twitter.com\\/1UsANAgJJV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brian_naija\\/status\\/1555239078848765957\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/480x852\\/H4pI4edokPFxT-qd.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/720x1280\\/CZQhA_38milakOke.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/vid\\/320x568\\/hjpSUVee0zzrINr7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555238932593377281\\/pu\\/pl\\/aRbtDSyFAm14x8m_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3858\":{\"media\":[{\"id\":1555238885218832385,\"id_str\":\"1555238885218832385\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVRhq5X0AEmnbf.jpg\",\"url\":\"https:\\/\\/t.co\\/TjKUhKr0q4\",\"display_url\":\"pic.twitter.com\\/TjKUhKr0q4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mazi127025\\/status\\/1555238918651629571\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":479,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1444,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":846,\"h\":1200,\"resize\":\"fit\"}}}]},\"3859\":{\"media\":[{\"id\":1555237661354385408,\"id_str\":\"1555237661354385408\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQabpWYAAscJN.jpg\",\"url\":\"https:\\/\\/t.co\\/QRvVsLNQfS\",\"display_url\":\"pic.twitter.com\\/QRvVsLNQfS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EnyteInvestment\\/status\\/1555237679377399809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"3860\":{\"media\":[{\"id\":1555237487114584064,\"id_str\":\"1555237487114584064\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVQQSjWAAAEmn6.jpg\",\"url\":\"https:\\/\\/t.co\\/ii0ZYtyYog\",\"display_url\":\"pic.twitter.com\\/ii0ZYtyYog\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555237490612731906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}}]},\"3861\":{\"media\":[{\"id\":1555236063790104577,\"id_str\":\"1555236063790104577\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555236063790104577\\/pu\\/img\\/Cee46AXGImLeRMC3.jpg\",\"url\":\"https:\\/\\/t.co\\/q3EnTanOHT\",\"display_url\":\"pic.twitter.com\\/q3EnTanOHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CityHunterMaje1\\/status\\/1555236168366686208\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44993,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/540x540\\/B_BvFbJR-n-YLRy_.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/320x320\\/LTK5fm5nPmdSNqjd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/pl\\/uJ4hrdZPOTFR0lt4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555236063790104577\\/pu\\/vid\\/720x720\\/KnwB8Mrio_eD4VdQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3862\":null,\"3863\":null,\"3864\":{\"media\":[{\"id\":1555234395933507588,\"id_str\":\"1555234395933507588\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNcXAWAAQaRyN.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"}}},{\"id\":1555234404775198722,\"id_str\":\"1555234404775198722\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNc38XgAIPNwd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNc38XgAIPNwd.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1555234412605964296,\"id_str\":\"1555234412605964296\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNdVHXgAgGdTt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNdVHXgAgGdTt.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}},{\"id\":1555234420642168832,\"id_str\":\"1555234420642168832\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVNdzDWQAA87VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVNdzDWQAA87VV.jpg\",\"url\":\"https:\\/\\/t.co\\/GJKiqpU2cD\",\"display_url\":\"pic.twitter.com\\/GJKiqpU2cD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/petrouz2\\/status\\/1555234426979770369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}}]},\"3865\":null,\"3866\":{\"media\":[{\"id\":1555231228764295169,\"id_str\":\"1555231228764295169\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKkAYXEAEyImx.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"}}},{\"id\":1555231301673918464,\"id_str\":\"1555231301673918464\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKoP_XoAAPJuu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKoP_XoAAPJuu.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":646,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1026,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1026,\"resize\":\"fit\"}}},{\"id\":1555231371039281153,\"id_str\":\"1555231371039281153\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKsSZXEAEmdcj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKsSZXEAEmdcj.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1555231424327868418,\"id_str\":\"1555231424327868418\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKvY6WYAIRETF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKvY6WYAIRETF.jpg\",\"url\":\"https:\\/\\/t.co\\/UO64XhzpvI\",\"display_url\":\"pic.twitter.com\\/UO64XhzpvI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231492674134016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}}]},\"3867\":{\"media\":[{\"id\":1555231241796042752,\"id_str\":\"1555231241796042752\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555231241796042752\\/pu\\/img\\/yCdNs7o5uoQqzlX0.jpg\",\"url\":\"https:\\/\\/t.co\\/0VeX3MpLGa\",\"display_url\":\"pic.twitter.com\\/0VeX3MpLGa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OMOJESUCFR\\/status\\/1555231420993478661\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":870,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":563,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[29,24],\"duration_millis\":8200,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/434x360\\/ZBmT1jXdhIVkZixP.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/pl\\/ziIHcO3DUJyFvSwm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/326x270\\/Z7GHgpuk4fsRvtjl.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555231241796042752\\/pu\\/vid\\/870x720\\/tKfffWMEJvBFaAlZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3868\":{\"media\":[{\"id\":1555231185214885888,\"id_str\":\"1555231185214885888\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKheJX0AAeFCi.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":643,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1022,\"resize\":\"fit\"}}},{\"id\":1555231218005835776,\"id_str\":\"1555231218005835776\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKjYTWAAA3Bps.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKjYTWAAA3Bps.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1555231272305303554,\"id_str\":\"1555231272305303554\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKmilWIAIN7eZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKmilWIAIN7eZ.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1070,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":674,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1070,\"resize\":\"fit\"}}},{\"id\":1555231365603500032,\"id_str\":\"1555231365603500032\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKr-JXoAA8jJh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKr-JXoAA8jJh.jpg\",\"url\":\"https:\\/\\/t.co\\/d5rnh3a4WW\",\"display_url\":\"pic.twitter.com\\/d5rnh3a4WW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231414681014273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1062,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"}}}]},\"3869\":{\"media\":[{\"id\":1555231069720481792,\"id_str\":\"1555231069720481792\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKav5XEAAg-YB.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}},{\"id\":1555231140700737536,\"id_str\":\"1555231140700737536\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKe4UX0AAxDzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKe4UX0AAxDzN.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":641,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"}}},{\"id\":1555231214029737984,\"id_str\":\"1555231214029737984\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKjJfXkAAlTp7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKjJfXkAAlTp7.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":638,\"resize\":\"fit\"}}},{\"id\":1555231272292827137,\"id_str\":\"1555231272292827137\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKmiiXwAEbqYj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKmiiXwAEbqYj.jpg\",\"url\":\"https:\\/\\/t.co\\/YwJk1hdhUC\",\"display_url\":\"pic.twitter.com\\/YwJk1hdhUC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231357957185538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}}]},\"3870\":{\"media\":[{\"id\":1555230858944069632,\"id_str\":\"1555230858944069632\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555230858944069632\\/pu\\/img\\/ofq20kI_xUi0jPaF.jpg\",\"url\":\"https:\\/\\/t.co\\/zh5UqmwfBT\",\"display_url\":\"pic.twitter.com\\/zh5UqmwfBT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_tusure\\/status\\/1555231253607194624\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":98766,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/vid\\/720x1280\\/erKuLrwjCJWCdTNG.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/vid\\/320x568\\/fy34TEArcYbs_n4q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/pl\\/p4L7j01uj5pSxKKt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555230858944069632\\/pu\\/vid\\/480x852\\/OU2Ra4j2dOhNgCWH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3871\":{\"media\":[{\"id\":1555231010064896000,\"id_str\":\"1555231010064896000\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKXRqXEAAlyWF.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1048,\"resize\":\"fit\"}}},{\"id\":1555231051718475777,\"id_str\":\"1555231051718475777\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKZs1WQAEkXLK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKZs1WQAEkXLK.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":641,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1018,\"resize\":\"fit\"}}},{\"id\":1555231061923225601,\"id_str\":\"1555231061923225601\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKaS2WYAEf2kW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKaS2WYAEf2kW.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1014,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":638,\"resize\":\"fit\"}}},{\"id\":1555231091220439045,\"id_str\":\"1555231091220439045\",\"indices\":[289,312],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVKb__WYAULMkh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVKb__WYAULMkh.jpg\",\"url\":\"https:\\/\\/t.co\\/ADtTix2zjx\",\"display_url\":\"pic.twitter.com\\/ADtTix2zjx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1555231206953963520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":661,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1050,\"resize\":\"fit\"}}}]},\"3872\":null,\"3873\":{\"media\":[{\"id\":1555229954048155649,\"id_str\":\"1555229954048155649\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVJZzsWYAE8M2Q.jpg\",\"url\":\"https:\\/\\/t.co\\/HvUJEYPLT4\",\"display_url\":\"pic.twitter.com\\/HvUJEYPLT4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Degreat046\\/status\\/1555229961732194307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":496,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":987,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":987,\"resize\":\"fit\"}}}]},\"3874\":null,\"3875\":null,\"3876\":{\"media\":[{\"id\":1555228297512058882,\"id_str\":\"1555228297512058882\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVH5YnXgAI_NlA.jpg\",\"url\":\"https:\\/\\/t.co\\/xTV2UtbAoO\",\"display_url\":\"pic.twitter.com\\/xTV2UtbAoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kings_xchange\\/status\\/1555228303707017217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":652,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":535,\"resize\":\"fit\"}}}]},\"3877\":null,\"3878\":null,\"3879\":{\"media\":[{\"id\":1555225367094362112,\"id_str\":\"1555225367094362112\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555225367094362112\\/pu\\/img\\/wIdIWxSHFBA6Lnc5.jpg\",\"url\":\"https:\\/\\/t.co\\/d7KWZW8o6P\",\"display_url\":\"pic.twitter.com\\/d7KWZW8o6P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555225412145405952\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":30036,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555225367094362112\\/pu\\/pl\\/TnJtIsLLShFbryHv.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555225367094362112\\/pu\\/vid\\/368x640\\/Y1EtOIrSsp49Txee.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555225367094362112\\/pu\\/vid\\/320x556\\/n9t8IfF4vPkJ1Ogz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3880\":{\"media\":[{\"id\":1555224387703513092,\"id_str\":\"1555224387703513092\",\"indices\":[92,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVEVzcXoAQ45XC.jpg\",\"url\":\"https:\\/\\/t.co\\/W1gUdkdJgc\",\"display_url\":\"pic.twitter.com\\/W1gUdkdJgc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BriefNig\\/status\\/1555224391016931329\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":428,\"resize\":\"fit\"},\"medium\":{\"w\":577,\"h\":428,\"resize\":\"fit\"}}}]},\"3881\":null,\"3882\":{\"media\":[{\"id\":1555220066597232641,\"id_str\":\"1555220066597232641\",\"indices\":[99,122],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555220066597232641\\/pu\\/img\\/BC_NdWVLy-AyaW9f.jpg\",\"url\":\"https:\\/\\/t.co\\/jSCunSLu3Z\",\"display_url\":\"pic.twitter.com\\/jSCunSLu3Z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220227746664448\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":377,\"resize\":\"fit\"},\"medium\":{\"w\":854,\"h\":474,\"resize\":\"fit\"},\"large\":{\"w\":854,\"h\":474,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[427,237],\"duration_millis\":68992,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220066597232641\\/pu\\/vid\\/486x270\\/CFUQqQhyHvZVm-Un.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220066597232641\\/pu\\/pl\\/CcRV2D1Q20_OEqkd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555220066597232641\\/pu\\/vid\\/854x474\\/ukRsCJ56A3ssXAXk.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3883\":{\"media\":[{\"id\":1555219299949764610,\"id_str\":\"1555219299949764610\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219299949764610\\/pu\\/img\\/ThwjLIVeTojgnjub.jpg\",\"url\":\"https:\\/\\/t.co\\/lScNEVABlX\",\"display_url\":\"pic.twitter.com\\/lScNEVABlX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/G4naijaTV\\/status\\/1555220046305181696\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44962,\"variants\":[{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/vid\\/720x720\\/a2arcA6NXbScp6zo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/pl\\/k_sQgyE45b47Ijgn.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/vid\\/540x540\\/IJdx5TWO0E5Ngs6p.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219299949764610\\/pu\\/vid\\/320x320\\/ifX4PXoAHa6DiKO-.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3884\":null,\"3885\":{\"media\":[{\"id\":1555219685959933952,\"id_str\":\"1555219685959933952\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555219685959933952\\/pu\\/img\\/KgRsfp5E_VNmd0vT.jpg\",\"url\":\"https:\\/\\/t.co\\/9IwrKho6D7\",\"display_url\":\"pic.twitter.com\\/9IwrKho6D7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Heisoovii\\/status\\/1555219782856851458\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":98915,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219685959933952\\/pu\\/pl\\/c1YPWp7viN76kul_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219685959933952\\/pu\\/vid\\/480x848\\/QKmHvwGDdszcMo-s.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555219685959933952\\/pu\\/vid\\/320x564\\/xx4N0UpnxjnvDCjQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3886\":null,\"3887\":{\"media\":[{\"id\":1555218459960680453,\"id_str\":\"1555218459960680453\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555218459960680453\\/pu\\/img\\/GAzunbe8rs9xr6GZ.jpg\",\"url\":\"https:\\/\\/t.co\\/RVZHJv4Dq9\",\"display_url\":\"pic.twitter.com\\/RVZHJv4Dq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218967303753729\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":73620,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/pl\\/pR4ytgh9-FwoXmVx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/vid\\/720x1280\\/Q8oV8xn7JHasLTvT.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/vid\\/320x568\\/3-bjzX8eElWKueyf.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555218459960680453\\/pu\\/vid\\/480x852\\/wFZCB1GV84CoggpJ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3888\":null,\"3889\":null,\"3890\":{\"media\":[{\"id\":1555217157318971392,\"id_str\":\"1555217157318971392\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555217157318971392\\/pu\\/img\\/zqEZZ5gf3a5uWys2.jpg\",\"url\":\"https:\\/\\/t.co\\/eP39dmYkk0\",\"display_url\":\"pic.twitter.com\\/eP39dmYkk0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1555218235380875266\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":73620,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/vid\\/480x852\\/uWzkNw2plIU91F6C.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/vid\\/320x568\\/loCWjKN1eR5TdD2l.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/vid\\/720x1280\\/8lemkPc2nmbFvW-Q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555217157318971392\\/pu\\/pl\\/uHiFQdG1LIgVSNF2.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3891\":{\"media\":[{\"id\":1555215915213590528,\"id_str\":\"1555215915213590528\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU8oo9XEAAXd95.jpg\",\"url\":\"https:\\/\\/t.co\\/IcB3qoU3yo\",\"display_url\":\"pic.twitter.com\\/IcB3qoU3yo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Realseunkazeem\\/status\\/1555215938898755585\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3892\":{\"media\":[{\"id\":1555213939134369792,\"id_str\":\"1555213939134369792\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU61nfXEAAg1i4.jpg\",\"url\":\"https:\\/\\/t.co\\/zeEkduujDv\",\"display_url\":\"pic.twitter.com\\/zeEkduujDv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ateaseauto\\/status\\/1555214019400810498\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"3893\":{\"media\":[{\"id\":1555212987299946497,\"id_str\":\"1555212987299946497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212987299946497\\/pu\\/img\\/NVgdTgZhaOrAklNd.jpg\",\"url\":\"https:\\/\\/t.co\\/2T16mzm66j\",\"display_url\":\"pic.twitter.com\\/2T16mzm66j\",\"expanded_url\":\"https:\\/\\/twitter.com\\/edublogsng\\/status\\/1555213282570514433\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":45000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/640x360\\/x_NXsQ8iK4US-5pj.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/480x270\\/bLhkUhj9nzK-l_GR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/pl\\/dqzzSaQ_b-t6GjUm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212987299946497\\/pu\\/vid\\/1280x720\\/mw1RIM4R48eTdCsy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3894\":{\"media\":[{\"id\":1555212991762669569,\"id_str\":\"1555212991762669569\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212991762669569\\/pu\\/img\\/hHuHIECJ9SFP8PTn.jpg\",\"url\":\"https:\\/\\/t.co\\/6jLeVt1HGi\",\"display_url\":\"pic.twitter.com\\/6jLeVt1HGi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1555213231454552069\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":15136,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/vid\\/320x426\\/dUUMkTixXd40YLsc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/pl\\/Oh_6-yQm3BfpzmhR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/vid\\/480x640\\/UzT2kwG9R8h71m-0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212991762669569\\/pu\\/vid\\/720x960\\/42x3pZsrXt4dC6Ev.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3895\":{\"media\":[{\"id\":1555212143154298880,\"id_str\":\"1555212143154298880\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555212143154298880\\/pu\\/img\\/llajkK0NOrKEz7jW.jpg\",\"url\":\"https:\\/\\/t.co\\/0jgRDDdSbU\",\"display_url\":\"pic.twitter.com\\/0jgRDDdSbU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1555212380228960256\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,601],\"duration_millis\":60000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/pl\\/ghR5bQjid_koVVm1.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/vid\\/320x600\\/I8ifp_73Go82PFvH.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/vid\\/640x1202\\/ojbXG5-0Gtl3MzYa.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555212143154298880\\/pu\\/vid\\/480x900\\/jkhfUslenmUGkb0i.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3896\":null,\"3897\":{\"media\":[{\"id\":1555211349680087044,\"id_str\":\"1555211349680087044\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4e5BWYAQWz0m.jpg\",\"url\":\"https:\\/\\/t.co\\/Yn4c3dWBGh\",\"display_url\":\"pic.twitter.com\\/Yn4c3dWBGh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnChudosky\\/status\\/1555211358597160961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3898\":{\"media\":[{\"id\":1555210948415307777,\"id_str\":\"1555210948415307777\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZU4HiMXwAEdz89.jpg\",\"url\":\"https:\\/\\/t.co\\/ttOTCeFsTr\",\"display_url\":\"pic.twitter.com\\/ttOTCeFsTr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1555210958066294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":788,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":570,\"resize\":\"fit\"},\"medium\":{\"w\":940,\"h\":788,\"resize\":\"fit\"}}}]},\"3899\":null,\"3900\":null,\"3901\":{\"media\":[{\"id\":1555204698088554496,\"id_str\":\"1555204698088554496\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555204698088554496\\/pu\\/img\\/UOLwisVO_1OHyLLh.jpg\",\"url\":\"https:\\/\\/t.co\\/SI0FBo6nXP\",\"display_url\":\"pic.twitter.com\\/SI0FBo6nXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sunshinemporium\\/status\\/1555204755034722304\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":14379,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555204698088554496\\/pu\\/pl\\/Q79tn1OlrBa3upwx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555204698088554496\\/pu\\/vid\\/320x564\\/yhOuf8Uvql5ePiXu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555204698088554496\\/pu\\/vid\\/480x848\\/_ubaFHvBeDVY4hS6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":{\"media\":[{\"id\":1555203508659490816,\"id_str\":\"1555203508659490816\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203508659490816\\/pu\\/img\\/Z3_QknQ_HIbAi2uS.jpg\",\"url\":\"https:\\/\\/t.co\\/Qjge4pwSaL\",\"display_url\":\"pic.twitter.com\\/Qjge4pwSaL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GistHubNaija\\/status\\/1555203587046887425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13867,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/720x1280\\/k-F63Ym3C_sN3LIK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/480x852\\/3WsVvLNzmsgirtbO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/vid\\/320x568\\/WNfwsCEJhDNkTq7-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203508659490816\\/pu\\/pl\\/NkGr0e58zqw7mIF8.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3907\":null,\"3908\":{\"media\":[{\"id\":1555203034082414594,\"id_str\":\"1555203034082414594\",\"indices\":[65,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555203034082414594\\/pu\\/img\\/SlpkuOj7KhYGyq6f.jpg\",\"url\":\"https:\\/\\/t.co\\/LcDAYcTaY0\",\"display_url\":\"pic.twitter.com\\/LcDAYcTaY0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FrancisOnyishi\\/status\\/1555203105435836416\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44999,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/320x568\\/cjQEq3KHYPJGaVAN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/480x852\\/uP6ONgZ3O-vicyS1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/pl\\/Sy9CyVPQs1AS-uQD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555203034082414594\\/pu\\/vid\\/576x1024\\/xrWWXIEBHuLPeD6_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3909\":null,\"3910\":null,\"3911\":{\"media\":[{\"id\":1555201877087772674,\"id_str\":\"1555201877087772674\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUv3g3WYAIjTi3.jpg\",\"url\":\"https:\\/\\/t.co\\/0X1IN17Ti6\",\"display_url\":\"pic.twitter.com\\/0X1IN17Ti6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LiteTvmedia\\/status\\/1555201883526107141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":923,\"resize\":\"fit\"},\"small\":{\"w\":530,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":923,\"resize\":\"fit\"}}}]},\"3912\":null,\"3913\":{\"media\":[{\"id\":1555201370579427329,\"id_str\":\"1555201370579427329\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvaB-WYAEcIEK.jpg\",\"url\":\"https:\\/\\/t.co\\/AGjMoC7ohM\",\"display_url\":\"pic.twitter.com\\/AGjMoC7ohM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djustman007\\/status\\/1555201393216131076\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}},{\"id\":1555201378561269763,\"id_str\":\"1555201378561269763\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvaftXoAM8Q1R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvaftXoAM8Q1R.jpg\",\"url\":\"https:\\/\\/t.co\\/AGjMoC7ohM\",\"display_url\":\"pic.twitter.com\\/AGjMoC7ohM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djustman007\\/status\\/1555201393216131076\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"3914\":{\"media\":[{\"id\":1555200965430722563,\"id_str\":\"1555200965430722563\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUvCcrXwAMIAOl.jpg\",\"url\":\"https:\\/\\/t.co\\/yAwMxajutT\",\"display_url\":\"pic.twitter.com\\/yAwMxajutT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tuplex50\\/status\\/1555200972980371458\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":960,\"h\":561,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":397,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":561,\"resize\":\"fit\"}}}]},\"3915\":null,\"3916\":null,\"3917\":{\"media\":[{\"id\":1555197239550791680,\"id_str\":\"1555197239550791680\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555197239550791680\\/pu\\/img\\/zCenqJknOuTMEw1w.jpg\",\"url\":\"https:\\/\\/t.co\\/GLfJo7ie3U\",\"display_url\":\"pic.twitter.com\\/GLfJo7ie3U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1555197297847328768\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20033,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/vid\\/480x852\\/ZixAAL-X2ntH1rTd.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/vid\\/576x1024\\/RIPMXKAXqWj3AbCz.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/vid\\/320x568\\/gndkb8WPZ8AvV9OX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555197239550791680\\/pu\\/pl\\/HR_tmAKzvb1H00VF.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3918\":{\"media\":[{\"id\":1555196687752335361,\"id_str\":\"1555196687752335361\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555196687752335361\\/pu\\/img\\/79Y60LSVzIqJTUQ8.jpg\",\"url\":\"https:\\/\\/t.co\\/LonB0rDlm4\",\"display_url\":\"pic.twitter.com\\/LonB0rDlm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Olubabaoshole\\/status\\/1555196763736342531\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":11326,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/pl\\/ZQYk6Ea5vrm4UUAq.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/320x320\\/GLNAtxH_lQjC_EqI.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/720x720\\/yXfIafvOQ4pP6bNJ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555196687752335361\\/pu\\/vid\\/540x540\\/vslPIHRhbNh_GeGx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3919\":null,\"3920\":{\"media\":[{\"id\":1555194081873100800,\"id_str\":\"1555194081873100800\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoxxbWAAAR4zl.jpg\",\"url\":\"https:\\/\\/t.co\\/ywYK05ZX3w\",\"display_url\":\"pic.twitter.com\\/ywYK05ZX3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1555194091448811520\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"3921\":{\"media\":[{\"id\":1555193645665587200,\"id_str\":\"1555193645665587200\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYbXkAA0e2B.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1555193645669695491,\"id_str\":\"1555193645669695491\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcWQAM6oWI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcWQAM6oWI.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1555193645669748736,\"id_str\":\"1555193645669748736\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcXEAAzm-D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUoYYcXEAAzm-D.jpg\",\"url\":\"https:\\/\\/t.co\\/4eKCDVL1AF\",\"display_url\":\"pic.twitter.com\\/4eKCDVL1AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DeCryptoHub\\/status\\/1555193658546294784\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3922\":{\"media\":[{\"id\":1555192097443037187,\"id_str\":\"1555192097443037187\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555192097443037187\\/pu\\/img\\/lo5GTAhy6A1KAL29.jpg\",\"url\":\"https:\\/\\/t.co\\/qRPNMgIwn5\",\"display_url\":\"pic.twitter.com\\/qRPNMgIwn5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pemercltd\\/status\\/1555192171078340608\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/vid\\/540x540\\/9BZ51Y-s9g5K6iDx.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/vid\\/320x320\\/XBu7KnV_bJEPsFQ6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/pl\\/aJCGTgxFtvYAyvpU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555192097443037187\\/pu\\/vid\\/720x720\\/xTYQFvc0thgvxzGo.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3923\":null,\"3924\":null,\"3925\":{\"media\":[{\"id\":1555190711372365825,\"id_str\":\"1555190711372365825\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUltlVWQAETYH7.jpg\",\"url\":\"https:\\/\\/t.co\\/geJezowyMb\",\"display_url\":\"pic.twitter.com\\/geJezowyMb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmaijoseph\\/status\\/1555191096170479617\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"3926\":{\"media\":[{\"id\":1555189400874672130,\"id_str\":\"1555189400874672130\",\"indices\":[79,102],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkhTWWYAIChai.jpg\",\"url\":\"https:\\/\\/t.co\\/Wj1lzHDUbI\",\"display_url\":\"pic.twitter.com\\/Wj1lzHDUbI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1202_Scents\\/status\\/1555189409909276680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":902,\"resize\":\"fit\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"}}}]},\"3927\":{\"media\":[{\"id\":1555189176026501120,\"id_str\":\"1555189176026501120\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUkUNuXkAAHMdo.jpg\",\"url\":\"https:\\/\\/t.co\\/X3b0pY8Jui\",\"display_url\":\"pic.twitter.com\\/X3b0pY8Jui\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayinmakarma\\/status\\/1555189182955503616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":487,\"resize\":\"fit\"},\"medium\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1003,\"h\":719,\"resize\":\"fit\"}}}]},\"3928\":null,\"3929\":null,\"3930\":{\"media\":[{\"id\":1555184643934134276,\"id_str\":\"1555184643934134276\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUgMaXWIAQjzx2.jpg\",\"url\":\"https:\\/\\/t.co\\/XWcnYOEdSF\",\"display_url\":\"pic.twitter.com\\/XWcnYOEdSF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/J4PMARKETERS\\/status\\/1555184653732028418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":412,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":620,\"resize\":\"fit\"}}}]},\"3931\":{\"media\":[{\"id\":1555183806751055874,\"id_str\":\"1555183806751055874\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555183806751055874\\/pu\\/img\\/EMGYsQmGw6M2x0ek.jpg\",\"url\":\"https:\\/\\/t.co\\/wyrlRD1y4C\",\"display_url\":\"pic.twitter.com\\/wyrlRD1y4C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dj_borsh\\/status\\/1555184514900582401\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":59976,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/640x360\\/TJCJXwn7eTclPM0-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/pl\\/agxsbZkcMoja0vQu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/1280x720\\/sgNW-YKg90gjWX_w.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555183806751055874\\/pu\\/vid\\/480x270\\/bhesvUBaWIRT7GuL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3932\":{\"media\":[{\"id\":1555182811249840132,\"id_str\":\"1555182811249840132\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555182811249840132\\/pu\\/img\\/0TlbxFjEYQxwm8_v.jpg\",\"url\":\"https:\\/\\/t.co\\/EbvZMC6t5w\",\"display_url\":\"pic.twitter.com\\/EbvZMC6t5w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Drexxofficiall\\/status\\/1555182895467315200\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":60008,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/pl\\/K7v5oygYfNZ6hxRh.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/vid\\/480x270\\/TKEyewi2dg66rXk6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/vid\\/1280x720\\/LbzTx6u0zWHP1kOm.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555182811249840132\\/pu\\/vid\\/640x360\\/6v1PXRRSvbnmuVvf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3933\":{\"media\":[{\"id\":1555181498965295106,\"id_str\":\"1555181498965295106\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUdVWcWAAIDcu-.jpg\",\"url\":\"https:\\/\\/t.co\\/cXf8ss8bW0\",\"display_url\":\"pic.twitter.com\\/cXf8ss8bW0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1555181501632942083\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"},\"medium\":{\"w\":700,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":400,\"resize\":\"fit\"}}}]},\"3934\":{\"media\":[{\"id\":1555180460329897992,\"id_str\":\"1555180460329897992\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcY5OXkAgITLp.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1933,\"resize\":\"fit\"}}},{\"id\":1555180470563897345,\"id_str\":\"1555180470563897345\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcZfWWAAE1Q8M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcZfWWAAE1Q8M.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1934,\"resize\":\"fit\"},\"small\":{\"w\":380,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":670,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555180477581037570,\"id_str\":\"1555180477581037570\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcZ5fXEAINHOL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcZ5fXEAINHOL.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":548,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":871,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":871,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555180485512511489,\"id_str\":\"1555180485512511489\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcaXCXwAEcpRD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcaXCXwAEcpRD.jpg\",\"url\":\"https:\\/\\/t.co\\/1bcXMsNLWA\",\"display_url\":\"pic.twitter.com\\/1bcXMsNLWA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1555180488222035973\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":859,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":859,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":570,\"h\":680,\"resize\":\"fit\"}}}]},\"3935\":{\"media\":[{\"id\":1555180451605659649,\"id_str\":\"1555180451605659649\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUcYYuWQAE8v1g.jpg\",\"url\":\"https:\\/\\/t.co\\/kBSGuw5lAF\",\"display_url\":\"pic.twitter.com\\/kBSGuw5lAF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1555180458555613184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3936\":{\"media\":[{\"id\":1555178664664662016,\"id_str\":\"1555178664664662016\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555178664664662016\\/pu\\/img\\/rK5DdVni0hmEYr1v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555178664664662016\\/pu\\/img\\/rK5DdVni0hmEYr1v.jpg\",\"url\":\"https:\\/\\/t.co\\/AZLeQ6K1Co\",\"display_url\":\"pic.twitter.com\\/AZLeQ6K1Co\",\"expanded_url\":\"https:\\/\\/twitter.com\\/northgateway2\\/status\\/1555178785083113473\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[45,68],\"duration_millis\":28002,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555178664664662016\\/pu\\/pl\\/q95-2fCkLGG7BsA2.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555178664664662016\\/pu\\/vid\\/720x1088\\/cskpZVSRyF3Pv5p6.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555178664664662016\\/pu\\/vid\\/480x724\\/5H8ddpbIsm0v38PA.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555178664664662016\\/pu\\/vid\\/320x482\\/966CNBbqxsoCBstf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":{\"media\":[{\"id\":1555174887903432704,\"id_str\":\"1555174887903432704\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555174887903432704\\/pu\\/img\\/rJ3Pi5TJKxhMuqyF.jpg\",\"url\":\"https:\\/\\/t.co\\/OwCNmTJy2S\",\"display_url\":\"pic.twitter.com\\/OwCNmTJy2S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/K_h_a_l_i_f\\/status\\/1555174968110878720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20400,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/480x852\\/ctpBUa_FwUb7L7h2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/320x568\\/4qW2KHQkM9CjdBks.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/pl\\/_esVImalS8-0k5YS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555174887903432704\\/pu\\/vid\\/576x1024\\/s67CHmmonXSHQHvl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3941\":null,\"3942\":null,\"3943\":{\"media\":[{\"id\":1555173183489277957,\"id_str\":\"1555173183489277957\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555173183489277957\\/pu\\/img\\/lmrbssj3ah9ZBTIG.jpg\",\"url\":\"https:\\/\\/t.co\\/1k4n29zj8M\",\"display_url\":\"pic.twitter.com\\/1k4n29zj8M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1555173247641161729\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":44939,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555173183489277957\\/pu\\/pl\\/EuTmueUSV1xArakt.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555173183489277957\\/pu\\/vid\\/480x256\\/UzYfdMDiiejZtmBm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3944\":null,\"3945\":{\"media\":[{\"id\":1555169769480982530,\"id_str\":\"1555169769480982530\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUSqmtXEAIlomw.jpg\",\"url\":\"https:\\/\\/t.co\\/nqu1JUJBNW\",\"display_url\":\"pic.twitter.com\\/nqu1JUJBNW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/andre_design1\\/status\\/1555169785113182209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":547,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1646,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":965,\"h\":1200,\"resize\":\"fit\"}}}]},\"3946\":null,\"3947\":{\"media\":[{\"id\":1555168270096941056,\"id_str\":\"1555168270096941056\",\"indices\":[94,117],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZURTVEWQAAxUZ2.jpg\",\"url\":\"https:\\/\\/t.co\\/maVn9omPE3\",\"display_url\":\"pic.twitter.com\\/maVn9omPE3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1555168278548471814\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"3948\":{\"media\":[{\"id\":1555167868895068165,\"id_str\":\"1555167868895068165\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555167868895068165\\/pu\\/img\\/t2Gs6aYTZUyg7hLv.jpg\",\"url\":\"https:\\/\\/t.co\\/U63Lw3koX1\",\"display_url\":\"pic.twitter.com\\/U63Lw3koX1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nwakaibeya001\\/status\\/1555168058779525126\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":9389,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/vid\\/352x640\\/79oHSuLgCG7zzH2-.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/vid\\/320x580\\/u2hkbKoEA3S-uC8A.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555167868895068165\\/pu\\/pl\\/PrzU_-_QXQ9ymZgl.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3949\":{\"media\":[{\"id\":1555167779841515523,\"id_str\":\"1555167779841515523\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUQ2yuWIAMWiZp.jpg\",\"url\":\"https:\\/\\/t.co\\/JD9k0lRhKe\",\"display_url\":\"pic.twitter.com\\/JD9k0lRhKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EchezqueH\\/status\\/1555167787605233664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3950\":{\"media\":[{\"id\":1555165843989970944,\"id_str\":\"1555165843989970944\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUPGHHXwAASVbB.jpg\",\"url\":\"https:\\/\\/t.co\\/fUqpTBJqZB\",\"display_url\":\"pic.twitter.com\\/fUqpTBJqZB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RevenesNigeria\\/status\\/1555165846510751746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3951\":{\"media\":[{\"id\":1555165240739905538,\"id_str\":\"1555165240739905538\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555165240739905538\\/pu\\/img\\/PYSfF85JYdNh7E84.jpg\",\"url\":\"https:\\/\\/t.co\\/aJyefnJaPq\",\"display_url\":\"pic.twitter.com\\/aJyefnJaPq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CjKrisEze\\/status\\/1555165337112530944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":44992,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555165240739905538\\/pu\\/vid\\/352x640\\/Cw-33MMYt8Bucbex.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555165240739905538\\/pu\\/vid\\/320x580\\/UWtASTDQAgmxQ4rY.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555165240739905538\\/pu\\/pl\\/79epuh1smybI-_oW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3952\":{\"media\":[{\"id\":1555165190198640640,\"id_str\":\"1555165190198640640\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUOgDjXwAA4k9e.jpg\",\"url\":\"https:\\/\\/t.co\\/Brr9ZnDADz\",\"display_url\":\"pic.twitter.com\\/Brr9ZnDADz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1555165192924831744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":502,\"resize\":\"fit\"},\"medium\":{\"w\":864,\"h\":638,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":864,\"h\":638,\"resize\":\"fit\"}}}]},\"3953\":null,\"3954\":{\"media\":[{\"id\":1555162706549800960,\"id_str\":\"1555162706549800960\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUMPfPWAAAbkAQ.jpg\",\"url\":\"https:\\/\\/t.co\\/qazOjUwnZ7\",\"display_url\":\"pic.twitter.com\\/qazOjUwnZ7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunadePraise\\/status\\/1555162714733006849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555136742914531328,\"id_str\":\"1555136742914531328\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0oNKUIAAxSfI.jpg\",\"url\":\"https:\\/\\/t.co\\/UhSpASo6FT\",\"display_url\":\"pic.twitter.com\\/UhSpASo6FT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Military_News4\\/status\\/1555137709621911552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1020,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":956,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1555137709621911552,\"source_status_id_str\":\"1555137709621911552\",\"source_user_id\":928852100619964417,\"source_user_id_str\":\"928852100619964417\"}]},\"3955\":{\"media\":[{\"id\":1555161212412989443,\"id_str\":\"1555161212412989443\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUK4hJXkAMfw3K.jpg\",\"url\":\"https:\\/\\/t.co\\/C2HwqBfqlE\",\"display_url\":\"pic.twitter.com\\/C2HwqBfqlE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gobarta_\\/status\\/1555161230607777793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3956\":null,\"3957\":{\"media\":[{\"id\":1555156322076827650,\"id_str\":\"1555156322076827650\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555156322076827650\\/pu\\/img\\/jXoM2dyp7RK7L6RI.jpg\",\"url\":\"https:\\/\\/t.co\\/CN3kYOdU36\",\"display_url\":\"pic.twitter.com\\/CN3kYOdU36\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bhginfodesk\\/status\\/1555158033004724225\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":272,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":272,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,17],\"duration_millis\":38171,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555156322076827650\\/pu\\/pl\\/2EkGa62TQZ3kChNH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555156322076827650\\/pu\\/vid\\/640x272\\/ev0VEbtNZEZs9aYz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3958\":null,\"3959\":{\"media\":[{\"id\":1555156992766902274,\"id_str\":\"1555156992766902274\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHC5vWAAIrWJI.jpg\",\"url\":\"https:\\/\\/t.co\\/gliY1QIjih\",\"display_url\":\"pic.twitter.com\\/gliY1QIjih\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555157065131298817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":466,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":702,\"h\":1024,\"resize\":\"fit\"}}}]},\"3960\":{\"media\":[{\"id\":1555156710142124035,\"id_str\":\"1555156710142124035\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUGyc4WIAMku64.jpg\",\"url\":\"https:\\/\\/t.co\\/yDtdwBf7Nr\",\"display_url\":\"pic.twitter.com\\/yDtdwBf7Nr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1555156719885492224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1147,\"resize\":\"fit\"}}}]},\"3961\":{\"media\":[{\"id\":1555155409132212224,\"id_str\":\"1555155409132212224\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555155409132212224\\/pu\\/img\\/55bi8NVDKlGszz8l.jpg\",\"url\":\"https:\\/\\/t.co\\/0XVPeJqRkf\",\"display_url\":\"pic.twitter.com\\/0XVPeJqRkf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555155450995556352\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48101,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555155409132212224\\/pu\\/pl\\/6FDcIHChqnrFN4Kw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555155409132212224\\/pu\\/vid\\/480x270\\/-7nlAhNDrSM1hlAy.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555155409132212224\\/pu\\/vid\\/640x360\\/pbIVG9P0fjBedF9k.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3962\":null,\"3963\":null,\"3964\":null,\"3965\":{\"media\":[{\"id\":1555154158386397187,\"id_str\":\"1555154158386397187\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555154158386397187\\/pu\\/img\\/4PkO90tcG5xANPn0.jpg\",\"url\":\"https:\\/\\/t.co\\/sdWjMuziSQ\",\"display_url\":\"pic.twitter.com\\/sdWjMuziSQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JHONEXEMPIRE\\/status\\/1555154282038657026\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":18833,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/pl\\/UlfYuKkr_TpLCpJO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/vid\\/720x1280\\/Mx0x6SwXPBgbDvK4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/vid\\/480x852\\/ihnO4lP2ooVEM-JE.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555154158386397187\\/pu\\/vid\\/320x568\\/1bAKUo7PJq_FOaAI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3966\":{\"media\":[{\"id\":1555153103313604609,\"id_str\":\"1555153103313604609\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555153103313604609\\/pu\\/img\\/p0dUpwb6GIBntyK_.jpg\",\"url\":\"https:\\/\\/t.co\\/JMx7Icb0oM\",\"display_url\":\"pic.twitter.com\\/JMx7Icb0oM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555153135496478720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":544,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":544,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,30],\"duration_millis\":21640,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/pl\\/qN-08nfsj9-BS6TU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/vid\\/320x564\\/AC50xsha3iNlW892.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/vid\\/544x960\\/vfcaRlLgtbVVxGBW.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555153103313604609\\/pu\\/vid\\/480x846\\/GsISfJcJsF4Xxsom.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3967\":null,\"3968\":{\"media\":[{\"id\":1555152665503563776,\"id_str\":\"1555152665503563776\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDHBbXgAAyY1c.jpg\",\"url\":\"https:\\/\\/t.co\\/WOacyTORbz\",\"display_url\":\"pic.twitter.com\\/WOacyTORbz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/spacemallio\\/status\\/1555152668116533248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"3969\":{\"media\":[{\"id\":1555152598109663232,\"id_str\":\"1555152598109663232\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUDDGXaMAA62Qa.jpg\",\"url\":\"https:\\/\\/t.co\\/kGhTbqimX7\",\"display_url\":\"pic.twitter.com\\/kGhTbqimX7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555152605470662656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"medium\":{\"w\":896,\"h\":505,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"3970\":{\"media\":[{\"id\":1555152109657546755,\"id_str\":\"1555152109657546755\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUCmqvWYAM6AmF.jpg\",\"url\":\"https:\\/\\/t.co\\/gtYI0jeg8Q\",\"display_url\":\"pic.twitter.com\\/gtYI0jeg8Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1555152122827751425\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"}}}]},\"3971\":null,\"3972\":null,\"3973\":null,\"3974\":{\"media\":[{\"id\":1555150975874252801,\"id_str\":\"1555150975874252801\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBkrEWQAEs_LZ.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6MLUjktPI\",\"display_url\":\"pic.twitter.com\\/Y6MLUjktPI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Behold_Homes\\/status\\/1555150978747432963\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3975\":{\"media\":[{\"id\":1555150593911656448,\"id_str\":\"1555150593911656448\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUBOcJXkAA8012.jpg\",\"url\":\"https:\\/\\/t.co\\/lHlF5DsSgw\",\"display_url\":\"pic.twitter.com\\/lHlF5DsSgw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ReginaldAnnobil\\/status\\/1555150597149433864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"large\":{\"w\":547,\"h\":434,\"resize\":\"fit\"},\"small\":{\"w\":547,\"h\":434,\"resize\":\"fit\"}}}]},\"3976\":{\"media\":[{\"id\":1555150224192147458,\"id_str\":\"1555150224192147458\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA461XkAIdP3H.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555150223571288069,\"id_str\":\"1555150223571288069\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA44hWAAUnEJJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA44hWAAUnEJJ.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1555150223550414850,\"id_str\":\"1555150223550414850\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA44cXgAI7JIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA44cXgAI7JIN.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":810,\"resize\":\"fit\"}}},{\"id\":1555150223537836032,\"id_str\":\"1555150223537836032\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUA44ZXkAA8oIu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUA44ZXkAA8oIu.jpg\",\"url\":\"https:\\/\\/t.co\\/DMcAlLylSy\",\"display_url\":\"pic.twitter.com\\/DMcAlLylSy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoodwillHF\\/status\\/1555150232064860161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"3977\":{\"media\":[{\"id\":1555149692396265473,\"id_str\":\"1555149692396265473\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUAZ9vWYAEBLZg.jpg\",\"url\":\"https:\\/\\/t.co\\/k24n6sdcoO\",\"display_url\":\"pic.twitter.com\\/k24n6sdcoO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BargainFortress\\/status\\/1555149702697476101\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":856,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1514,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}}]},\"3978\":{\"media\":[{\"id\":1555149362526830592,\"id_str\":\"1555149362526830592\",\"indices\":[151,174],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555149362526830592\\/pu\\/img\\/RixsKIYPy0CGmHgE.jpg\",\"url\":\"https:\\/\\/t.co\\/UWW30ahzr7\",\"display_url\":\"pic.twitter.com\\/UWW30ahzr7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rukegetrich09\\/status\\/1555149398035906561\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":224,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":224,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[25,14],\"duration_millis\":43934,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555149362526830592\\/pu\\/pl\\/8qbj8Ae1UhgB0Oid.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555149362526830592\\/pu\\/vid\\/400x224\\/hkAJqhc-84wXii98.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3979\":{\"media\":[{\"id\":1555148898599141376,\"id_str\":\"1555148898599141376\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT_rwnXgAASUnO.jpg\",\"url\":\"https:\\/\\/t.co\\/vJ5ijjcRis\",\"display_url\":\"pic.twitter.com\\/vJ5ijjcRis\",\"expanded_url\":\"https:\\/\\/twitter.com\\/welcometoabove\\/status\\/1555148913782493185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"3980\":{\"media\":[{\"id\":1555147588466262016,\"id_str\":\"1555147588466262016\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-ff_WQAA8RSW.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":863,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":489,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1473,\"resize\":\"fit\"}}},{\"id\":1555147667927453697,\"id_str\":\"1555147667927453697\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-kIAX0AEzdHT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-kIAX0AEzdHT.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1428,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":474,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":837,\"resize\":\"fit\"}}},{\"id\":1555147704514367491,\"id_str\":\"1555147704514367491\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-mQTX0AMYenK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-mQTX0AMYenK.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1462,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":485,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555147797086801920,\"id_str\":\"1555147797086801920\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT-rpKXEAAeN2F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT-rpKXEAAeN2F.jpg\",\"url\":\"https:\\/\\/t.co\\/dCa6J36MmD\",\"display_url\":\"pic.twitter.com\\/dCa6J36MmD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MOOCREATIVESTU1\\/status\\/1555147801557962753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1998,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1171,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"3981\":null,\"3982\":{\"media\":[{\"id\":1555144210206031873,\"id_str\":\"1555144210206031873\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT7a2_WAAEK0VV.jpg\",\"url\":\"https:\\/\\/t.co\\/ZFgC36Ucpe\",\"display_url\":\"pic.twitter.com\\/ZFgC36Ucpe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Zigproperties\\/status\\/1555144224714231809\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3983\":null,\"3984\":null,\"3985\":{\"media\":[{\"id\":1555143217586241537,\"id_str\":\"1555143217586241537\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555143217586241537\\/pu\\/img\\/CUwadUYJCD67ISmx.jpg\",\"url\":\"https:\\/\\/t.co\\/p3OU4EnjKl\",\"display_url\":\"pic.twitter.com\\/p3OU4EnjKl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/de_easygreen\\/status\\/1555143706495356930\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":681,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":726,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[363,640],\"duration_millis\":8196,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/vid\\/480x846\\/KRUPCKZhktL36-Lv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/pl\\/5fn2YaGU4jNi8Te9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/vid\\/320x564\\/c62aZVBMxETgdniG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555143217586241537\\/pu\\/vid\\/720x1268\\/OfGBOWY4vL8UG8Gy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3986\":null,\"3987\":null,\"3988\":{\"media\":[{\"id\":1555140005584142337,\"id_str\":\"1555140005584142337\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555140005584142337\\/pu\\/img\\/UwXzQ4T3uR-DulR8.jpg\",\"url\":\"https:\\/\\/t.co\\/GeyHHH3sFh\",\"display_url\":\"pic.twitter.com\\/GeyHHH3sFh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Prolific_Edwin\\/status\\/1555140625653186560\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,20],\"duration_millis\":23234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/320x710\\/sUlGPjp9bwuR-xos.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/pl\\/CH6qJuyVsASmLuie.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/576x1280\\/tzfmyJpEiui5cdvo.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555140005584142337\\/pu\\/vid\\/480x1066\\/joS6LMvKOkfZVeBs.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3989\":null,\"3990\":{\"media\":[{\"id\":1555139551198314496,\"id_str\":\"1555139551198314496\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3Lq1WAAARS8H.jpg\",\"url\":\"https:\\/\\/t.co\\/CNv51CwZVQ\",\"display_url\":\"pic.twitter.com\\/CNv51CwZVQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NectarBeautyHub\\/status\\/1555139554767769602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":626,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1174,\"resize\":\"fit\"}}}]},\"3991\":{\"media\":[{\"id\":1555139411502931968,\"id_str\":\"1555139411502931968\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT3DibXoAAzsT6.jpg\",\"url\":\"https:\\/\\/t.co\\/ixkeriaLRu\",\"display_url\":\"pic.twitter.com\\/ixkeriaLRu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChinazaJessica4\\/status\\/1555139435934654464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"3992\":{\"media\":[{\"id\":1555138634113753088,\"id_str\":\"1555138634113753088\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138634113753088\\/pu\\/img\\/zpkSU_EHpNsSeyyC.jpg\",\"url\":\"https:\\/\\/t.co\\/ZdoPAt0eNQ\",\"display_url\":\"pic.twitter.com\\/ZdoPAt0eNQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bright_agbons\\/status\\/1555139152135561218\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"medium\":{\"w\":224,\"h\":416,\"resize\":\"fit\"},\"large\":{\"w\":224,\"h\":416,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[7,13],\"duration_millis\":30080,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138634113753088\\/pu\\/vid\\/224x416\\/w48B2529eINQ8WQw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138634113753088\\/pu\\/pl\\/KH8_zBIhrSC6604C.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3993\":{\"media\":[{\"id\":1555138821490089984,\"id_str\":\"1555138821490089984\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT2hMdWIAAmn3p.jpg\",\"url\":\"https:\\/\\/t.co\\/1hkrhZ6FGP\",\"display_url\":\"pic.twitter.com\\/1hkrhZ6FGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/denys_peter\\/status\\/1555138829111156736\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"3994\":{\"media\":[{\"id\":1555138321642409985,\"id_str\":\"1555138321642409985\",\"indices\":[112,135],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555138321642409985\\/pu\\/img\\/dGHmoZ1BR23QoZA2.jpg\",\"url\":\"https:\\/\\/t.co\\/FkCxF40SeP\",\"display_url\":\"pic.twitter.com\\/FkCxF40SeP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1555138525649043457\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1270,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":386,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,127],\"duration_millis\":24680,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/720x1270\\/6B3KaqqkGRHYXJT5.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/320x564\\/wc-3U7pxnfgkrjSR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/pl\\/6eolJiy9St2nlZhx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555138321642409985\\/pu\\/vid\\/480x846\\/cOOcoUa5Lp0q-4jI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3995\":{\"media\":[{\"id\":1555137905655521282,\"id_str\":\"1555137905655521282\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555137905655521282\\/pu\\/img\\/XmmekAAAbok6rPiC.jpg\",\"url\":\"https:\\/\\/t.co\\/qFRoP3l7x1\",\"display_url\":\"pic.twitter.com\\/qFRoP3l7x1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuvidecorolowu\\/status\\/1555138012203335680\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":40666,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/vid\\/320x568\\/fC8Yli7l6WWaHFBK.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/vid\\/720x1280\\/mZNd7RMZ0DsJ78CG.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/vid\\/480x852\\/oKSL0zs_Td8teggH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555137905655521282\\/pu\\/pl\\/1x9T3mPxlEGLJgV9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3996\":{\"media\":[{\"id\":1555136504955125761,\"id_str\":\"1555136504955125761\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZT0aWsXwAEPGuU.jpg\",\"url\":\"https:\\/\\/t.co\\/WeK9AczT9n\",\"display_url\":\"pic.twitter.com\\/WeK9AczT9n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Intel_Avatar\\/status\\/1555136512567697408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"3997\":null,\"3998\":{\"media\":[{\"id\":1555135449693392896,\"id_str\":\"1555135449693392896\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555135449693392896\\/pu\\/img\\/0HJ711PMSXkSgSfM.jpg\",\"url\":\"https:\\/\\/t.co\\/E8Qdn5xljL\",\"display_url\":\"pic.twitter.com\\/E8Qdn5xljL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Christoph7Onoja\\/status\\/1555135839843352576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":107527,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/1280x720\\/kZLKVK0G86bUBONu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/pl\\/fkOnzJrtBin9459j.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/640x360\\/y91a0rktjtgI-jIO.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555135449693392896\\/pu\\/vid\\/480x270\\/6A4NK6vyyTItGyTm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"3999\":{\"media\":[{\"id\":1555135837016317956,\"id_str\":\"1555135837016317956\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTzzebWYAQ5UlV.jpg\",\"url\":\"https:\\/\\/t.co\\/30gXogxS1T\",\"display_url\":\"pic.twitter.com\\/30gXogxS1T\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1555135838857609217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":639,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":480,\"resize\":\"fit\"}}}]},\"4000\":{\"media\":[{\"id\":1555134911127887872,\"id_str\":\"1555134911127887872\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy9lOWIAA3aBU.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134926458077185,\"id_str\":\"1555134926458077185\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy-eVWQAEOgpq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy-eVWQAEOgpq.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134941029171200,\"id_str\":\"1555134941029171200\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTy_UnXgAAte84.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTy_UnXgAAte84.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1555134953800835073,\"id_str\":\"1555134953800835073\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTzAEMXoAEdZMI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTzAEMXoAEdZMI.jpg\",\"url\":\"https:\\/\\/t.co\\/zsZ4X2xvtX\",\"display_url\":\"pic.twitter.com\\/zsZ4X2xvtX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Timmy_cruise1\\/status\\/1555134964127121408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":{\"media\":[{\"id\":1555129459480600576,\"id_str\":\"1555129459480600576\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTuAQQWIAAWXpo.jpg\",\"url\":\"https:\\/\\/t.co\\/ZBTWkZT89P\",\"display_url\":\"pic.twitter.com\\/ZBTWkZT89P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Starry_Gold\\/status\\/1555131195222069249\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":604,\"h\":413,\"resize\":\"fit\"},\"large\":{\"w\":604,\"h\":413,\"resize\":\"fit\"}}}]},\"4006\":{\"media\":[{\"id\":1555130887028760576,\"id_str\":\"1555130887028760576\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTvTWSWYAAWUCw.jpg\",\"url\":\"https:\\/\\/t.co\\/I3KElydxVd\",\"display_url\":\"pic.twitter.com\\/I3KElydxVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1555130893794267138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":726,\"resize\":\"fit\"},\"small\":{\"w\":506,\"h\":680,\"resize\":\"fit\"}}}]},\"4007\":{\"media\":[{\"id\":1555129115388350464,\"id_str\":\"1555129115388350464\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtsOaXEAALMEL.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}}},{\"id\":1555129135541911553,\"id_str\":\"1555129135541911553\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTttZfWAAEkFZx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTttZfWAAEkFZx.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":769,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":637,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":769,\"resize\":\"fit\"}}},{\"id\":1555129143930617856,\"id_str\":\"1555129143930617856\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTtt4vXgAAPG_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTtt4vXgAAPG_F.jpg\",\"url\":\"https:\\/\\/t.co\\/2LLXk50s2F\",\"display_url\":\"pic.twitter.com\\/2LLXk50s2F\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tomilee2002\\/status\\/1555129146388500482\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4008\":null,\"4009\":null,\"4010\":{\"media\":[{\"id\":1555127653304238080,\"id_str\":\"1555127653304238080\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTsXHuWAAA81k4.jpg\",\"url\":\"https:\\/\\/t.co\\/AzpwIvRGzg\",\"display_url\":\"pic.twitter.com\\/AzpwIvRGzg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BernardTwise\\/status\\/1555127655908970497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":364,\"resize\":\"fit\"},\"medium\":{\"w\":954,\"h\":511,\"resize\":\"fit\"},\"large\":{\"w\":954,\"h\":511,\"resize\":\"fit\"}}}]},\"4011\":{\"media\":[{\"id\":1555126804217843712,\"id_str\":\"1555126804217843712\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555126804217843712\\/pu\\/img\\/VK7SdXpfnd1izkdM.jpg\",\"url\":\"https:\\/\\/t.co\\/GkUDEs2ebr\",\"display_url\":\"pic.twitter.com\\/GkUDEs2ebr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SupremeContine1\\/status\\/1555126966491152384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":448,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":359,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":448,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,28],\"duration_millis\":31693,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/vid\\/510x270\\/sfBLHrtmMkpElxVd.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/vid\\/848x448\\/jwhGCltdMqrn_21i.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555126804217843712\\/pu\\/pl\\/ihmjdIgM-oGthYfy.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4012\":{\"media\":[{\"id\":1555124245038080003,\"id_str\":\"1555124245038080003\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTpQu8XoAM_sOj.jpg\",\"url\":\"https:\\/\\/t.co\\/sGvJ9HSAsQ\",\"display_url\":\"pic.twitter.com\\/sGvJ9HSAsQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555124249051992066\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1035,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":673,\"resize\":\"fit\"}},\"source_status_id\":1555124249051992066,\"source_status_id_str\":\"1555124249051992066\",\"source_user_id\":1017100479325720576,\"source_user_id_str\":\"1017100479325720576\"}]},\"4013\":{\"media\":[{\"id\":1555126387060637696,\"id_str\":\"1555126387060637696\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNamWAAAwifa.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1555126387094208513,\"id_str\":\"1555126387094208513\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNauWQAEYs_u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNauWQAEYs_u.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1555126387085828096,\"id_str\":\"1555126387085828096\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNasWYAA7-2v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNasWYAA7-2v.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1555126387064832000,\"id_str\":\"1555126387064832000\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrNanWAAA9k91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrNanWAAA9k91.jpg\",\"url\":\"https:\\/\\/t.co\\/HNT6a2AlZU\",\"display_url\":\"pic.twitter.com\\/HNT6a2AlZU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NafisatAkanni\\/status\\/1555126401535287299\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4014\":null,\"4015\":{\"media\":[{\"id\":1555126212351197184,\"id_str\":\"1555126212351197184\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDPwXgAAFPKZ.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555126212359557121,\"id_str\":\"1555126212359557121\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDPyXEAEq6Zz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDPyXEAEq6Zz.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1496,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":497,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":877,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1555126212388872194,\"id_str\":\"1555126212388872194\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTrDP5WYAIQ8Lk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTrDP5WYAIQ8Lk.jpg\",\"url\":\"https:\\/\\/t.co\\/d0ZFWDIRHW\",\"display_url\":\"pic.twitter.com\\/d0ZFWDIRHW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldOnyemekara\\/status\\/1555126221201096704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4016\":null,\"4017\":{\"media\":[{\"id\":1555123015662424065,\"id_str\":\"1555123015662424065\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZToJLKX0AEAuhU.jpg\",\"url\":\"https:\\/\\/t.co\\/VjXGAOwrhN\",\"display_url\":\"pic.twitter.com\\/VjXGAOwrhN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Voiceof_Fleming\\/status\\/1555123024881500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4018\":null,\"4019\":{\"media\":[{\"id\":1555122389062750208,\"id_str\":\"1555122389062750208\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTnks5XkAAyUSg.png\",\"url\":\"https:\\/\\/t.co\\/MICtAAyTx6\",\"display_url\":\"pic.twitter.com\\/MICtAAyTx6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555122411443478528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4020\":null,\"4021\":{\"media\":[{\"id\":1555114382283218950,\"id_str\":\"1555114382283218950\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555114382283218950\\/pu\\/img\\/2AyCSGqXwtpyPHPt.jpg\",\"url\":\"https:\\/\\/t.co\\/6FJESNlTb5\",\"display_url\":\"pic.twitter.com\\/6FJESNlTb5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1555114494996660224\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[136,213],\"duration_millis\":29272,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555114382283218950\\/pu\\/vid\\/272x426\\/bpNmn11GCcztYLIx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555114382283218950\\/pu\\/pl\\/F_WTQtn4TZCdNsIG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4022\":{\"media\":[{\"id\":1555108327671078912,\"id_str\":\"1555108327671078912\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555108327671078912\\/pu\\/img\\/dI8rRjgZSGAAVi6t.jpg\",\"url\":\"https:\\/\\/t.co\\/o5Pmz3XLfc\",\"display_url\":\"pic.twitter.com\\/o5Pmz3XLfc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1555113873476313088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,23],\"duration_millis\":90223,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/vid\\/738x414\\/oMHvPVZim_K4pSBd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/vid\\/480x270\\/PGKHWnM_lUvNXCvd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555108327671078912\\/pu\\/pl\\/QJP3KBW2AhrRxQnP.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4023\":{\"media\":[{\"id\":1555113249980522496,\"id_str\":\"1555113249980522496\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTfQvKXoAA5k6T.jpg\",\"url\":\"https:\\/\\/t.co\\/9CAwdKId3g\",\"display_url\":\"pic.twitter.com\\/9CAwdKId3g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ocymichael2\\/status\\/1555113286785531905\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":613,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":613,\"resize\":\"fit\"}}}]},\"4024\":{\"media\":[{\"id\":1555112501892743169,\"id_str\":\"1555112501892743169\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTelMUWAAEv-fX.jpg\",\"url\":\"https:\\/\\/t.co\\/P2QH6zdN0t\",\"display_url\":\"pic.twitter.com\\/P2QH6zdN0t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555112511707533313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":354,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":354,\"resize\":\"fit\"}}}]},\"4025\":null,\"4026\":null,\"4027\":{\"media\":[{\"id\":1555110627357736960,\"id_str\":\"1555110627357736960\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTc4FIXwAA3dpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/z7XRdlIub1\",\"display_url\":\"pic.twitter.com\\/z7XRdlIub1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555110646349430789\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"small\":{\"w\":299,\"h\":169,\"resize\":\"fit\"},\"medium\":{\"w\":299,\"h\":169,\"resize\":\"fit\"}}}]},\"4028\":{\"media\":[{\"id\":1555109225285783552,\"id_str\":\"1555109225285783552\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTbmeAXkAA5jK4.jpg\",\"url\":\"https:\\/\\/t.co\\/OaqxnPnlHT\",\"display_url\":\"pic.twitter.com\\/OaqxnPnlHT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/filiimagna\\/status\\/1555109230616649728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":553,\"h\":505,\"resize\":\"fit\"},\"large\":{\"w\":553,\"h\":505,\"resize\":\"fit\"}}}]},\"4029\":{\"media\":[{\"id\":1555109039897546755,\"id_str\":\"1555109039897546755\",\"indices\":[155,178],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555109039897546755\\/pu\\/img\\/g0pAcgEC01h3J7nT.jpg\",\"url\":\"https:\\/\\/t.co\\/njEI0I4SGm\",\"display_url\":\"pic.twitter.com\\/njEI0I4SGm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PeculiarHype\\/status\\/1555109135024328704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":374,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":34865,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/pl\\/n7ZZq--0NU47maXS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/654x360\\/FCBD-oqpa_6zUZKy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/1280x704\\/LUK3ruI5nHHxoFUA.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555109039897546755\\/pu\\/vid\\/490x270\\/m-wslcr0pN9IZpxq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4030\":null,\"4031\":null,\"4032\":{\"media\":[{\"id\":1555107510788521986,\"id_str\":\"1555107510788521986\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTaCrAXgAIq5-Z.jpg\",\"url\":\"https:\\/\\/t.co\\/V3L2YpfZBh\",\"display_url\":\"pic.twitter.com\\/V3L2YpfZBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CEOAfricanewss\\/status\\/1555107530749218816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":300,\"h\":224,\"resize\":\"fit\"},\"small\":{\"w\":300,\"h\":224,\"resize\":\"fit\"}}}]},\"4033\":{\"media\":[{\"id\":1555106120620036096,\"id_str\":\"1555106120620036096\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwOX0AAPjVc.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}},{\"id\":1555106120628330498,\"id_str\":\"1555106120628330498\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYxwQWYAISLzi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYxwQWYAISLzi.jpg\",\"url\":\"https:\\/\\/t.co\\/lFLvUy6837\",\"display_url\":\"pic.twitter.com\\/lFLvUy6837\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LamarFund\\/status\\/1555106135442702339\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4034\":{\"media\":[{\"id\":1555105899676590080,\"id_str\":\"1555105899676590080\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105899676590080\\/pu\\/img\\/WSV6zC53gixQJaMG.jpg\",\"url\":\"https:\\/\\/t.co\\/DwOAbXEW0R\",\"display_url\":\"pic.twitter.com\\/DwOAbXEW0R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PToplexnice\\/status\\/1555105959676100608\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9017,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/pl\\/WPsbLR_DAIdMeysw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/vid\\/480x852\\/_GPr9vi-vU6rvCzU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/vid\\/320x568\\/VpJj9dvSsWmD68E2.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105899676590080\\/pu\\/vid\\/720x1280\\/3NimNN1X9J1wkWE_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4035\":{\"media\":[{\"id\":1555105549313785856,\"id_str\":\"1555105549313785856\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555105549313785856\\/pu\\/img\\/vIh-seMaVGNl-mBU.jpg\",\"url\":\"https:\\/\\/t.co\\/S5AXrskrPQ\",\"display_url\":\"pic.twitter.com\\/S5AXrskrPQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/afcdaniels\\/status\\/1555105707715862528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":17646,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/vid\\/540x960\\/-nphBDPN_tmV_2-t.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/vid\\/480x852\\/FGiwkDINAsuWEyJS.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/vid\\/320x568\\/4fjZ6lT9h40yvT34.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555105549313785856\\/pu\\/pl\\/xSEIX2WIWYR4hb7Z.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4036\":{\"media\":[{\"id\":1555105418266943489,\"id_str\":\"1555105418266943489\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTYI3wWIAECJUJ.jpg\",\"url\":\"https:\\/\\/t.co\\/232AciVFo1\",\"display_url\":\"pic.twitter.com\\/232AciVFo1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lovelynchilaka\\/status\\/1555105421039484929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":714,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":404,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1079,\"h\":1814,\"resize\":\"fit\"}}}]},\"4037\":{\"media\":[{\"id\":1555104570979893249,\"id_str\":\"1555104570979893249\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTXXjXXwAE0NtC.jpg\",\"url\":\"https:\\/\\/t.co\\/LFmXT3mSmp\",\"display_url\":\"pic.twitter.com\\/LFmXT3mSmp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104574884683777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"4038\":{\"media\":[{\"id\":1555104188203520001,\"id_str\":\"1555104188203520001\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555104188203520001\\/pu\\/img\\/2AlwOU6eSyzK6Mj0.jpg\",\"url\":\"https:\\/\\/t.co\\/adGWS5HU7U\",\"display_url\":\"pic.twitter.com\\/adGWS5HU7U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DDadalekan\\/status\\/1555104345552715776\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[6,11],\"duration_millis\":9710,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/pl\\/T19CseNdIB81e3JQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/320x586\\/og15ksPsORkKQfln.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/672x1232\\/PpR2LzqZXRAlN0Lv.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555104188203520001\\/pu\\/vid\\/480x880\\/qm4EDw9T4FFgh2r1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4039\":{\"media\":[{\"id\":1555104124575916032,\"id_str\":\"1555104124575916032\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTW9kYXoAAfHsz.jpg\",\"url\":\"https:\\/\\/t.co\\/mWBy6AU7IA\",\"display_url\":\"pic.twitter.com\\/mWBy6AU7IA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555104127406989312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":492,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":465,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":492,\"resize\":\"fit\"}}}]},\"4040\":{\"media\":[{\"id\":1555103188058906624,\"id_str\":\"1555103188058906624\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555103188058906624\\/pu\\/img\\/Was9Wahf3AeJWA6L.jpg\",\"url\":\"https:\\/\\/t.co\\/SGhptaePzL\",\"display_url\":\"pic.twitter.com\\/SGhptaePzL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DaniboyF\\/status\\/1555103518092140545\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":27958,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/vid\\/368x640\\/6e0AI2wTUTU2273M.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/vid\\/320x556\\/CagGi-V17IpCxb8B.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555103188058906624\\/pu\\/pl\\/S4nA8udU3fG51bqJ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4041\":{\"media\":[{\"id\":1555102066581946369,\"id_str\":\"1555102066581946369\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFxwXwAEl7iO.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1243,\"h\":1155,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1115,\"resize\":\"fit\"}}},{\"id\":1555102066577743872,\"id_str\":\"1555102066577743872\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFxvXoAASYRG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFxvXoAASYRG.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1181,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1141,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":647,\"resize\":\"fit\"}}},{\"id\":1555102066611310595,\"id_str\":\"1555102066611310595\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTVFx3X0AMWF5b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTVFx3X0AMWF5b.jpg\",\"url\":\"https:\\/\\/t.co\\/D0Htk1x0hm\",\"display_url\":\"pic.twitter.com\\/D0Htk1x0hm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Isha_Souvenir\\/status\\/1555102075922563074\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"4042\":null,\"4043\":null,\"4044\":{\"media\":[{\"id\":1555100150342770688,\"id_str\":\"1555100150342770688\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555100150342770688\\/pu\\/img\\/5IHfj1Ap2jun1CZp.jpg\",\"url\":\"https:\\/\\/t.co\\/gmCqDCXAtU\",\"display_url\":\"pic.twitter.com\\/gmCqDCXAtU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1555100209516056576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":42769,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/480x270\\/yUo3urzBS784PDrQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/pl\\/F2Z2gU1--FJCJ5Og.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/640x360\\/X4MNhc9avgNGbiJI.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555100150342770688\\/pu\\/vid\\/1280x720\\/YyJf-0ZnjIqxcsnM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4045\":null,\"4046\":{\"media\":[{\"id\":1555098067774636033,\"id_str\":\"1555098067774636033\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555098067774636033\\/pu\\/img\\/FSqN37Sl1DYOAiLh.jpg\",\"url\":\"https:\\/\\/t.co\\/fq3guErmgy\",\"display_url\":\"pic.twitter.com\\/fq3guErmgy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555098095113089025\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":16575,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/pl\\/mjzKVR2BbzFUu7zg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/vid\\/848x480\\/KngKCvaB6joSfMOd.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/vid\\/476x270\\/xlw7Vrm8rWqbNT7f.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555098067774636033\\/pu\\/vid\\/636x360\\/bSXSg_EIdncRYIQl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4047\":{\"media\":[{\"id\":1555097733924618241,\"id_str\":\"1555097733924618241\",\"indices\":[49,72],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555097733924618241\\/pu\\/img\\/oAIpI0t5L4r125GY.jpg\",\"url\":\"https:\\/\\/t.co\\/r19nkT6Hvz\",\"display_url\":\"pic.twitter.com\\/r19nkT6Hvz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xminister0\\/status\\/1555097790358904834\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":4574,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/320x568\\/A_I9XG06SrH5xh5E.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/pl\\/vgmsHz9kC5XaSZQA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/720x1280\\/b6pW3wLD6ZM1FGjN.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555097733924618241\\/pu\\/vid\\/480x852\\/SDi-6TJsWr2ttCGI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4048\":null,\"4049\":{\"media\":[{\"id\":1555096888986275841,\"id_str\":\"1555096888986275841\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555096888986275841\\/pu\\/img\\/vdLxy-fUgyt9XJz2.jpg\",\"url\":\"https:\\/\\/t.co\\/mW0mCdPwZM\",\"display_url\":\"pic.twitter.com\\/mW0mCdPwZM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superridedude\\/status\\/1555096954962583552\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21467,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/vid\\/320x568\\/6x12Lx_ZL0UWnWjH.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/vid\\/480x852\\/jgFkuyWFWI3ojker.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/pl\\/EWpzNrXdB6UNOGzS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555096888986275841\\/pu\\/vid\\/720x1280\\/ZjUecJHkFC3aVe90.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4050\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4051\":{\"media\":[{\"id\":1555096059449311232,\"id_str\":\"1555096059449311232\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTPoHcWAAAwJr8.jpg\",\"url\":\"https:\\/\\/t.co\\/gYHpkxwPcE\",\"display_url\":\"pic.twitter.com\\/gYHpkxwPcE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555096065774436352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":683,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":683,\"resize\":\"fit\"}}}]},\"4052\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4053\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4054\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4055\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4056\":null,\"4057\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4058\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4059\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4060\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4061\":{\"media\":[{\"id\":1555094694941581317,\"id_str\":\"1555094694941581317\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555094694941581317\\/pu\\/img\\/hkF7YtJYfk-xAjeW.jpg\",\"url\":\"https:\\/\\/t.co\\/GWdlCnhlVA\",\"display_url\":\"pic.twitter.com\\/GWdlCnhlVA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PRFirmNG\\/status\\/1555094753410170880\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/vid\\/320x564\\/8cXD-Xen7qRmjomc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/pl\\/Kx8p3FJ3MeGXLncJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555094694941581317\\/pu\\/vid\\/480x848\\/cJ-updYIkNGuyA0V.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4062\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4063\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4064\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4065\":null,\"4066\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4067\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4068\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4069\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4070\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4071\":null,\"4072\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4073\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4074\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsSqtlV\",\"display_url\":\"pic.twitter.com\\/ivDJsSqtlV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4075\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[359,382],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4076\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4077\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4078\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4079\":{\"media\":[{\"id\":1555092895455125504,\"id_str\":\"1555092895455125504\",\"indices\":[213,236],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTMv8pWIAA5ePs.jpg\",\"url\":\"https:\\/\\/t.co\\/P4cWauuqsP\",\"display_url\":\"pic.twitter.com\\/P4cWauuqsP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kellysteveo\\/status\\/1555092899624325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"medium\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"small\":{\"w\":479,\"h\":122,\"resize\":\"fit\"},\"thumb\":{\"w\":122,\"h\":122,\"resize\":\"crop\"}}}]},\"4080\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/IaOMul24J1\",\"display_url\":\"pic.twitter.com\\/IaOMul24J1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4081\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/f16Z7WzVXa\",\"display_url\":\"pic.twitter.com\\/f16Z7WzVXa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4082\":null,\"4083\":null,\"4084\":{\"media\":[{\"id\":1555084499490377728,\"id_str\":\"1555084499490377728\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFHPPXEAAMsHm.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555089939368448000,\"id_str\":\"1555089939368448000\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTKD4XXEAA6Ikl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTKD4XXEAA6Ikl.jpg\",\"url\":\"https:\\/\\/t.co\\/H8t6rTCD5X\",\"display_url\":\"pic.twitter.com\\/H8t6rTCD5X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DemetersF\\/status\\/1555089988752113666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4085\":{\"media\":[{\"id\":1555089600837738497,\"id_str\":\"1555089600837738497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJwLPWYAE2AbQ.jpg\",\"url\":\"https:\\/\\/t.co\\/x7WL4aotsa\",\"display_url\":\"pic.twitter.com\\/x7WL4aotsa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tokiadewoyin\\/status\\/1555089627396149250\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"}}}]},\"4086\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/2nqfH7Fu77\",\"display_url\":\"pic.twitter.com\\/2nqfH7Fu77\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4087\":{\"media\":[{\"id\":1555089203746185216,\"id_str\":\"1555089203746185216\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTJZD9WIAAOBlV.jpg\",\"url\":\"https:\\/\\/t.co\\/xVic1GMEyb\",\"display_url\":\"pic.twitter.com\\/xVic1GMEyb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theFlareabove\\/status\\/1555089213820993540\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":718,\"h\":706,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":706,\"resize\":\"fit\"}}}]},\"4088\":{\"media\":[{\"id\":1555088295872405505,\"id_str\":\"1555088295872405505\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTIkN3XoAEQoVj.jpg\",\"url\":\"https:\\/\\/t.co\\/2nxIWDaKrM\",\"display_url\":\"pic.twitter.com\\/2nxIWDaKrM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555088313282957315\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}},{\"id\":1555088310544080896,\"id_str\":\"1555088310544080896\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTIlEhXoAAEwfR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTIlEhXoAAEwfR.jpg\",\"url\":\"https:\\/\\/t.co\\/2nxIWDaKrM\",\"display_url\":\"pic.twitter.com\\/2nxIWDaKrM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1555088313282957315\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":716,\"h\":716,\"resize\":\"fit\"},\"medium\":{\"w\":716,\"h\":716,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4089\":null,\"4090\":{\"media\":[{\"id\":1555086679995736064,\"id_str\":\"1555086679995736064\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555086679995736064\\/pu\\/img\\/XX5D-8R_QKx3QqpJ.jpg\",\"url\":\"https:\\/\\/t.co\\/hkLJd20xwd\",\"display_url\":\"pic.twitter.com\\/hkLJd20xwd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uno_fini\\/status\\/1555086880462577664\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":5758,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/320x568\\/Ar1bKkx2sAvEDbax.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/720x1280\\/FtomvetSJ__wXQIy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/vid\\/480x852\\/Yy01nDiU3w5j3jsy.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555086679995736064\\/pu\\/pl\\/pY4mDOVF1vKOmUzm.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4091\":{\"media\":[{\"id\":1555086740574052352,\"id_str\":\"1555086740574052352\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTHJr7WIAA3flP.jpg\",\"url\":\"https:\\/\\/t.co\\/J0Q2VTOlIU\",\"display_url\":\"pic.twitter.com\\/J0Q2VTOlIU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/advertidehawk01\\/status\\/1555086748367179778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":310,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":548,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":584,\"h\":1280,\"resize\":\"fit\"}}}]},\"4092\":null,\"4093\":{\"media\":[{\"id\":1555085766207971328,\"id_str\":\"1555085766207971328\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTGQ-IXoAA2n5L.jpg\",\"url\":\"https:\\/\\/t.co\\/LL5EZHwqwo\",\"display_url\":\"pic.twitter.com\\/LL5EZHwqwo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/godygold01\\/status\\/1555085774076477441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":564,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":712,\"h\":859,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":859,\"resize\":\"fit\"}}}]},\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":{\"media\":[{\"id\":1555084447371988992,\"id_str\":\"1555084447371988992\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTFENFXkAAQkhL.jpg\",\"url\":\"https:\\/\\/t.co\\/8M1sLd7Yq1\",\"display_url\":\"pic.twitter.com\\/8M1sLd7Yq1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hardynwa\\/status\\/1555084450165407746\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":626,\"h\":417,\"resize\":\"fit\"},\"small\":{\"w\":626,\"h\":417,\"resize\":\"fit\"}}}]},\"4098\":{\"media\":[{\"id\":1554895395305684993,\"id_str\":\"1554895395305684993\",\"indices\":[248,271],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/amplify_video_thumb\\/1554895395305684993\\/img\\/8tsgWpdEKGAcAA4-.jpg\",\"url\":\"https:\\/\\/t.co\\/ivDJsS8Sun\",\"display_url\":\"pic.twitter.com\\/ivDJsS8Sun\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554896224024776704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"source_status_id\":1554896224024776704,\"source_status_id_str\":\"1554896224024776704\",\"source_user_id\":125346858,\"source_user_id_str\":\"125346858\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":495299,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/1280x720\\/NsbIcgDOoIrQgX-g.mp4?tag=14\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/pl\\/DaQGtKPJqlVv9JHt.m3u8?tag=14&container=fmp4\"},{\"bitrate\":288000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/480x270\\/fqwcos1v50C0x-Ow.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554895395305684993\\/vid\\/640x360\\/UCd252ZMc-D3byUQ.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"\",\"description\":\"\",\"embeddable\":true,\"monetizable\":false}}]},\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":{\"media\":[{\"id\":1555081642665984000,\"id_str\":\"1555081642665984000\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg8vWQAAmxR7.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":457,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":806,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1849,\"resize\":\"fit\"}}},{\"id\":1555081642674380802,\"id_str\":\"1555081642674380802\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg8xWYAIHUU9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg8xWYAIHUU9.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555081642703785984,\"id_str\":\"1555081642703785984\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg84XEAA6FzP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg84XEAA6FzP.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1011,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1011,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1555081643467096065,\"id_str\":\"1555081643467096065\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZTCg_uWQAEvdjJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZTCg_uWQAEvdjJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8LOMy5FUWk\",\"display_url\":\"pic.twitter.com\\/8LOMy5FUWk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abastinfooties\\/status\\/1555081688241381377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"4103\":null,\"4104\":{\"media\":[{\"id\":1555078073728598018,\"id_str\":\"1555078073728598018\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555078073728598018\\/pu\\/img\\/xd7TYY-ZuA-A_0sW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cs1HxMDA4O\",\"display_url\":\"pic.twitter.com\\/Cs1HxMDA4O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1555078393535897600\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":25000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/320x568\\/1BoM0ZEFZIU_8PP3.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/480x852\\/6TINhL18aUxcleiu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/pl\\/x6onsurDIF9A5A_3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555078073728598018\\/pu\\/vid\\/720x1280\\/_iQ7VuJ8X3isHSOX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4105\":{\"media\":[{\"id\":1555078029604536320,\"id_str\":\"1555078029604536320\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS_OpCXwAAg5eo.jpg\",\"url\":\"https:\\/\\/t.co\\/ie1QIkk4Ul\",\"display_url\":\"pic.twitter.com\\/ie1QIkk4Ul\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbdulFoodies\\/status\\/1555078032158855169\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1020,\"resize\":\"fit\"}}}]},\"4106\":null,\"4107\":{\"media\":[{\"id\":1555076636365692934,\"id_str\":\"1555076636365692934\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555076636365692934\\/pu\\/img\\/8PtcywavZpRM-ZA1.jpg\",\"url\":\"https:\\/\\/t.co\\/A812edBOgl\",\"display_url\":\"pic.twitter.com\\/A812edBOgl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1555076714312699904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":38845,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/320x568\\/lrjOyyvO_jRssGcn.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/480x852\\/_4Vwbm2A_AuH93Q8.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/vid\\/720x1280\\/DzE7aeNURwst_Lbo.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555076636365692934\\/pu\\/pl\\/1tqo1_aP99e6pFgG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4108\":{\"media\":[{\"id\":1555075829624967173,\"id_str\":\"1555075829624967173\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555075829624967173\\/pu\\/img\\/GAQbKo059VtCKYT8.jpg\",\"url\":\"https:\\/\\/t.co\\/ymqkzeEgXl\",\"display_url\":\"pic.twitter.com\\/ymqkzeEgXl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DjEko_1\\/status\\/1555075883454664704\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":6973,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/vid\\/656x1232\\/aZnKdFRm2dqUd5Fz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/pl\\/NQn2qPuXDHXM0hg_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/vid\\/320x600\\/FEL8tQGAciIb57gK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555075829624967173\\/pu\\/vid\\/480x900\\/KalIlcaSCiLqoHKI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4109\":{\"media\":[{\"id\":1555074608088367107,\"id_str\":\"1555074608088367107\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555074608088367107\\/pu\\/img\\/8yzu1xGTSp2o4FD4.jpg\",\"url\":\"https:\\/\\/t.co\\/nPzDVBq45i\",\"display_url\":\"pic.twitter.com\\/nPzDVBq45i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akanscript_\\/status\\/1555074729022717955\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":37568,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/1280x720\\/_WO8ouE3YRWq4r4q.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/480x270\\/C-CZk1iHwOiGnfoJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/pl\\/Jihm11O7zZBYXXf-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555074608088367107\\/pu\\/vid\\/640x360\\/daLqfOnLR32ZAovS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4110\":{\"media\":[{\"id\":1555073304528125957,\"id_str\":\"1555073304528125957\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS67mwXgAUJj6b.jpg\",\"url\":\"https:\\/\\/t.co\\/8SUtRVlRBh\",\"display_url\":\"pic.twitter.com\\/8SUtRVlRBh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bigdavidofficia\\/status\\/1555073319896076289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}}]},\"4111\":null,\"4112\":null,\"4113\":{\"media\":[{\"id\":1555072895377965056,\"id_str\":\"1555072895377965056\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555072895377965056\\/pu\\/img\\/IwAGy4IrYMvYQvQ-.jpg\",\"url\":\"https:\\/\\/t.co\\/0A2Y7575z3\",\"display_url\":\"pic.twitter.com\\/0A2Y7575z3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NetMakanaki\\/status\\/1555073073103118337\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":58933,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/480x852\\/8Y12eowYLA-uiU57.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/320x568\\/PbzsHWTDXNw_PXzv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/pl\\/StIcrBsxVBxJ2ZT4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555072895377965056\\/pu\\/vid\\/720x1280\\/53eCPr7fGm07SuOx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":{\"media\":[{\"id\":1555071758092353537,\"id_str\":\"1555071758092353537\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS5hl1WQAE3ApC.jpg\",\"url\":\"https:\\/\\/t.co\\/sqJJe9gm0r\",\"display_url\":\"pic.twitter.com\\/sqJJe9gm0r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/m_zordAutorep\\/status\\/1555071764933361665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"4120\":null,\"4121\":{\"media\":[{\"id\":1555069423693832194,\"id_str\":\"1555069423693832194\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZS3ZthXoAIJGWS.jpg\",\"url\":\"https:\\/\\/t.co\\/TbGoJWGBu3\",\"display_url\":\"pic.twitter.com\\/TbGoJWGBu3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_amwordsmith\\/status\\/1555069433441402883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"4122\":null,\"4123\":{\"media\":[{\"id\":1555061924630786048,\"id_str\":\"1555061924630786048\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555061924630786048\\/pu\\/img\\/TCuy8jjzNfVNu-fo.jpg\",\"url\":\"https:\\/\\/t.co\\/pvMPXhug9C\",\"display_url\":\"pic.twitter.com\\/pvMPXhug9C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555061972483588096\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[426,239],\"duration_millis\":26558,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555061924630786048\\/pu\\/vid\\/480x270\\/iFtoHUa-HPVIPSU3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555061924630786048\\/pu\\/pl\\/IPSYT2vIuOuAbvkz.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555061924630786048\\/pu\\/vid\\/852x478\\/iTl3iJyfnbZBlaXt.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4124\":{\"media\":[{\"id\":1555061315907080193,\"id_str\":\"1555061315907080193\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxqX0AEHYk9.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"}}},{\"id\":1555061315953106946,\"id_str\":\"1555061315953106946\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBx1WIAIq3BW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBx1WIAIq3BW.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"}}},{\"id\":1555061315928035330,\"id_str\":\"1555061315928035330\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxvXkAIyRuI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxvXkAIyRuI.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"}}},{\"id\":1555061315919552513,\"id_str\":\"1555061315919552513\",\"indices\":[243,266],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSwBxtWIAESff_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSwBxtWIAESff_.jpg\",\"url\":\"https:\\/\\/t.co\\/yzzjjHM8Iz\",\"display_url\":\"pic.twitter.com\\/yzzjjHM8Iz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Faithfynphotog2\\/status\\/1555061325436420096\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1356,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":795,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":450,\"resize\":\"fit\"}}}]},\"4125\":{\"media\":[{\"id\":1555055980148572160,\"id_str\":\"1555055980148572160\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555055980148572160\\/pu\\/img\\/RXEXfYhu4j5xXA57.jpg\",\"url\":\"https:\\/\\/t.co\\/7BptZ4Zon2\",\"display_url\":\"pic.twitter.com\\/7BptZ4Zon2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555056027233824768\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":852,\"h\":478,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[426,239],\"duration_millis\":113832,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555055980148572160\\/pu\\/vid\\/480x270\\/qR7J_mOu2HLOlWnI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555055980148572160\\/pu\\/pl\\/MGepFSiZi_Jz_imS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555055980148572160\\/pu\\/vid\\/852x478\\/aDbV_HVDNw6f5QtX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4126\":{\"media\":[{\"id\":1554913411624042497,\"id_str\":\"1554913411624042497\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpgnRXgAEQ6Ib.jpg\",\"url\":\"https:\\/\\/t.co\\/GlfdeTfWYC\",\"display_url\":\"pic.twitter.com\\/GlfdeTfWYC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Andalusio\\/status\\/1555040833744691200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"4127\":null,\"4128\":{\"media\":[{\"id\":1555036286783832064,\"id_str\":\"1555036286783832064\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSZQ46XwAAp4ez.jpg\",\"url\":\"https:\\/\\/t.co\\/pgTYOBpEWl\",\"display_url\":\"pic.twitter.com\\/pgTYOBpEWl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1555036308552253440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":750,\"resize\":\"fit\"}}}]},\"4129\":{\"media\":[{\"id\":1555031704716427266,\"id_str\":\"1555031704716427266\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSVGLYXwAIBI4B.jpg\",\"url\":\"https:\\/\\/t.co\\/jd5z1wrXPL\",\"display_url\":\"pic.twitter.com\\/jd5z1wrXPL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1555031716372381696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4130\":null,\"4131\":{\"media\":[{\"id\":1555020298747092992,\"id_str\":\"1555020298747092992\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSKuQ1XoAA4MzG.jpg\",\"url\":\"https:\\/\\/t.co\\/0farobJifY\",\"display_url\":\"pic.twitter.com\\/0farobJifY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RobertAshu_\\/status\\/1555020307894878208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}}]},\"4132\":null,\"4133\":null,\"4134\":{\"media\":[{\"id\":1554635543782244352,\"id_str\":\"1554635543782244352\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635543782244352\\/pu\\/img\\/xMXJRqnNWU0qimXi.jpg\",\"url\":\"https:\\/\\/t.co\\/k424DZXWBz\",\"display_url\":\"pic.twitter.com\\/k424DZXWBz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdunolaOgundar1\\/status\\/1555010634030383108\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":20300,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/vid\\/480x600\\/LwCh9NgYm4B3d6-f.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/vid\\/720x900\\/PdviVkG_EipqCsop.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/vid\\/320x400\\/hRWEHpUHJJ6ZEVIN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635543782244352\\/pu\\/pl\\/fAr3r8PNJu2JOJ0N.m3u8?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4135\":{\"media\":[{\"id\":1555010029417385985,\"id_str\":\"1555010029417385985\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBYgmX0AE2TDv.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555010041194971138,\"id_str\":\"1555010041194971138\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBZMeXgAI9xuV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBZMeXgAI9xuV.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1555010049075978241,\"id_str\":\"1555010049075978241\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBZp1WIAEwQHn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBZp1WIAEwQHn.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555010056571215873,\"id_str\":\"1555010056571215873\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSBaFwWYAEJyXn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSBaFwWYAEJyXn.jpg\",\"url\":\"https:\\/\\/t.co\\/kN5UXILpuU\",\"display_url\":\"pic.twitter.com\\/kN5UXILpuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maverick_kemmy\\/status\\/1555010062569046016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"4136\":{\"media\":[{\"id\":1555003755673837573,\"id_str\":\"1555003755673837573\",\"indices\":[199,222],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR7rVFWYAUbkTJ.jpg\",\"url\":\"https:\\/\\/t.co\\/niaDffdl4p\",\"display_url\":\"pic.twitter.com\\/niaDffdl4p\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koserenaija1\\/status\\/1555003770404306945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":300,\"h\":297,\"resize\":\"fit\"},\"large\":{\"w\":300,\"h\":297,\"resize\":\"fit\"}}}]},\"4137\":{\"media\":[{\"id\":1554998383789621248,\"id_str\":\"1554998383789621248\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZR2ypQWQAAoWPh.png\",\"url\":\"https:\\/\\/t.co\\/kTip6QKDfX\",\"display_url\":\"pic.twitter.com\\/kTip6QKDfX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/THexperrt\\/status\\/1554998401888141312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":712,\"h\":430,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":712,\"h\":430,\"resize\":\"fit\"}}}]},\"4138\":null,\"4139\":{\"media\":[{\"id\":1554985164798918656,\"id_str\":\"1554985164798918656\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554985164798918656\\/pu\\/img\\/YU63rxTbyYdzvOQT.jpg\",\"url\":\"https:\\/\\/t.co\\/4HLIhejxeK\",\"display_url\":\"pic.twitter.com\\/4HLIhejxeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betubaba__\\/status\\/1554985257119760390\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":14585,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/pl\\/sskmIekVaTZY1MI_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/vid\\/320x568\\/Fi_TlB1pOyrlflaG.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/vid\\/480x852\\/_Db41xLjTTK6a4Xm.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554985164798918656\\/pu\\/vid\\/720x1280\\/uF86TwXq4ocmqbMF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4140\":{\"media\":[{\"id\":1554984101656027136,\"id_str\":\"1554984101656027136\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRpzUKWYAAdZX1.jpg\",\"url\":\"https:\\/\\/t.co\\/j2WZpXricW\",\"display_url\":\"pic.twitter.com\\/j2WZpXricW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554984208589885441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4141\":{\"media\":[{\"id\":1554977848884183040,\"id_str\":\"1554977848884183040\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRkHWxXwAAtZMD.jpg\",\"url\":\"https:\\/\\/t.co\\/unVdsQqRLp\",\"display_url\":\"pic.twitter.com\\/unVdsQqRLp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Enyi_VictorBlog\\/status\\/1554977853988560896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":720,\"resize\":\"fit\"}}}]},\"4142\":null,\"4143\":{\"media\":[{\"id\":1554968648737034240,\"id_str\":\"1554968648737034240\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRbv1jXEAAtEWZ.jpg\",\"url\":\"https:\\/\\/t.co\\/1AfxgSgqgn\",\"display_url\":\"pic.twitter.com\\/1AfxgSgqgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/awana_a_gana\\/status\\/1554968669574283264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":2000,\"resize\":\"fit\"}}}]},\"4144\":null,\"4145\":null,\"4146\":{\"media\":[{\"id\":1554964133153587200,\"id_str\":\"1554964133153587200\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554964133153587200\\/pu\\/img\\/2hSpoZUysKz5NjEl.jpg\",\"url\":\"https:\\/\\/t.co\\/Um1CyfI94W\",\"display_url\":\"pic.twitter.com\\/Um1CyfI94W\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554964398757773312\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140013,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/pl\\/878D3MASYvIrR_5C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/vid\\/480x270\\/AkOenn4BUwE9HQua.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554964133153587200\\/pu\\/vid\\/640x360\\/9Q05gGBDNXGxTYnF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4147\":{\"media\":[{\"id\":1554963406406524929,\"id_str\":\"1554963406406524929\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRW-sWXoAEJRip.jpg\",\"url\":\"https:\\/\\/t.co\\/6wVGkuCveM\",\"display_url\":\"pic.twitter.com\\/6wVGkuCveM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554963409325752321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":522,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":829,\"h\":1080,\"resize\":\"fit\"}}}]},\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":{\"media\":[{\"id\":1554954752739393538,\"id_str\":\"1554954752739393538\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRPG-7WQAIbnLs.png\",\"url\":\"https:\\/\\/t.co\\/9g4czDBj9I\",\"display_url\":\"pic.twitter.com\\/9g4czDBj9I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonemic\\/status\\/1554954769776656385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"small\":{\"w\":575,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":851,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4152\":null,\"4153\":{\"media\":[{\"id\":1554953050497875968,\"id_str\":\"1554953050497875968\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRNj5lWAAAp0sg.jpg\",\"url\":\"https:\\/\\/t.co\\/hL3D2W2oyh\",\"display_url\":\"pic.twitter.com\\/hL3D2W2oyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Oceanfocuz\\/status\\/1554953058412527616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":891,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"}}}]},\"4154\":null,\"4155\":{\"media\":[{\"id\":1554952343812202496,\"id_str\":\"1554952343812202496\",\"indices\":[154,177],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRM6w-WYAA7TRx.jpg\",\"url\":\"https:\\/\\/t.co\\/LRNy2gV78s\",\"display_url\":\"pic.twitter.com\\/LRNy2gV78s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAlexan63671061\\/status\\/1554952346110775301\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":270,\"h\":187,\"resize\":\"fit\"},\"large\":{\"w\":270,\"h\":187,\"resize\":\"fit\"}}}]},\"4156\":{\"media\":[{\"id\":1554951610316607495,\"id_str\":\"1554951610316607495\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554951610316607495\\/pu\\/img\\/h6PnFkjb2KJrl471.jpg\",\"url\":\"https:\\/\\/t.co\\/rGiGx9nfeD\",\"display_url\":\"pic.twitter.com\\/rGiGx9nfeD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JerryKatician01\\/status\\/1554951856362819584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":49710,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/1280x720\\/ZlHr3m_PSkb0noAL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/pl\\/m1M2TjpvB2g6KdEi.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/640x360\\/hZrpucQ6xCDa0eh1.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554951610316607495\\/pu\\/vid\\/480x270\\/J0Ig_QSugt68hvNe.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4157\":null,\"4158\":{\"media\":[{\"id\":1554947160952766465,\"id_str\":\"1554947160952766465\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRINFUXgAEEYNj.jpg\",\"url\":\"https:\\/\\/t.co\\/oULUzjYdc0\",\"display_url\":\"pic.twitter.com\\/oULUzjYdc0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947171329376257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"medium\":{\"w\":1068,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4159\":{\"media\":[{\"id\":1554947112533692416,\"id_str\":\"1554947112533692416\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRIKQ8XEAAvcYo.jpg\",\"url\":\"https:\\/\\/t.co\\/biyg4c2idH\",\"display_url\":\"pic.twitter.com\\/biyg4c2idH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jude_anarmz\\/status\\/1554947130447495172\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":873,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":495,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1484,\"resize\":\"fit\"}}}]},\"4160\":{\"media\":[{\"id\":1554945877382397955,\"id_str\":\"1554945877382397955\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXpWAAMhIvy.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":680,\"h\":451,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":451,\"resize\":\"fit\"}}},{\"id\":1554945877399277569,\"id_str\":\"1554945877399277569\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRHCXtXkAE7ji9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRHCXtXkAE7ji9.jpg\",\"url\":\"https:\\/\\/t.co\\/Qaayb0KgnM\",\"display_url\":\"pic.twitter.com\\/Qaayb0KgnM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TJSaheed\\/status\\/1554945886744186880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":504,\"h\":290,\"resize\":\"fit\"},\"large\":{\"w\":504,\"h\":290,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":504,\"h\":290,\"resize\":\"fit\"}}}]},\"4161\":{\"media\":[{\"id\":1554943954654830592,\"id_str\":\"1554943954654830592\",\"indices\":[149,172],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZRFSc7XoAAZLLr.jpg\",\"url\":\"https:\\/\\/t.co\\/Tp3tQJz3KK\",\"display_url\":\"pic.twitter.com\\/Tp3tQJz3KK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Bulky305\\/status\\/1554943957313912833\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4162\":null,\"4163\":{\"media\":[{\"id\":1554935922902372353,\"id_str\":\"1554935922902372353\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ9-8UXEAE1ecH.jpg\",\"url\":\"https:\\/\\/t.co\\/yvGKPNEaxP\",\"display_url\":\"pic.twitter.com\\/yvGKPNEaxP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554935935300665344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1534,\"h\":1585,\"resize\":\"fit\"},\"medium\":{\"w\":1161,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"}}}]},\"4164\":{\"media\":[{\"id\":1554931987034537985,\"id_str\":\"1554931987034537985\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ6Z2EWAAE5zs7.png\",\"url\":\"https:\\/\\/t.co\\/5hephg70Dx\",\"display_url\":\"pic.twitter.com\\/5hephg70Dx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/savannah_cable\\/status\\/1554932017342578692\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4165\":{\"media\":[{\"id\":1554930793935405056,\"id_str\":\"1554930793935405056\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554930793935405056\\/pu\\/img\\/JvqY1aCSIR-Sf9rQ.jpg\",\"url\":\"https:\\/\\/t.co\\/MqQNE0DluW\",\"display_url\":\"pic.twitter.com\\/MqQNE0DluW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaRealityNe1\\/status\\/1554930832753807365\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[122,213],\"duration_millis\":27958,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554930793935405056\\/pu\\/pl\\/DZXfR2bDZBuRKO8b.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554930793935405056\\/pu\\/vid\\/244x426\\/_wkBN1pFdVn2ioOO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4166\":null,\"4167\":null,\"4168\":{\"media\":[{\"id\":1554925765602467842,\"id_str\":\"1554925765602467842\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0vtbWYAI8lIo.jpg\",\"url\":\"https:\\/\\/t.co\\/1RGXU28Mr5\",\"display_url\":\"pic.twitter.com\\/1RGXU28Mr5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Cleeptvng\\/status\\/1554925804731207680\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1200,\"resize\":\"fit\"}}}]},\"4169\":null,\"4170\":null,\"4171\":{\"media\":[{\"id\":1554925006005698560,\"id_str\":\"1554925006005698560\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQ0DftXgAAnOWB.jpg\",\"url\":\"https:\\/\\/t.co\\/x8ToWVOlaG\",\"display_url\":\"pic.twitter.com\\/x8ToWVOlaG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kutithedirector\\/status\\/1554925033604128768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4172\":null,\"4173\":{\"media\":[{\"id\":1554922792512020480,\"id_str\":\"1554922792512020480\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQyCpzWYAAbc15.jpg\",\"url\":\"https:\\/\\/t.co\\/Ny7cGtBNlr\",\"display_url\":\"pic.twitter.com\\/Ny7cGtBNlr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554922799667503106\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":439,\"resize\":\"fit\"},\"medium\":{\"w\":1076,\"h\":694,\"resize\":\"fit\"}}}]},\"4174\":null,\"4175\":{\"media\":[{\"id\":1554921110038274048,\"id_str\":\"1554921110038274048\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQwguGWYAANpJk.jpg\",\"url\":\"https:\\/\\/t.co\\/UeFEo5kC0H\",\"display_url\":\"pic.twitter.com\\/UeFEo5kC0H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/montero4emirate\\/status\\/1554921120905760778\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"medium\":{\"w\":1079,\"h\":1096,\"resize\":\"fit\"},\"small\":{\"w\":669,\"h\":680,\"resize\":\"fit\"}}}]},\"4176\":{\"media\":[{\"id\":1554920433736114176,\"id_str\":\"1554920433736114176\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQv5WrWYAAVzcT.jpg\",\"url\":\"https:\\/\\/t.co\\/a58nuGIcuj\",\"display_url\":\"pic.twitter.com\\/a58nuGIcuj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554920465453535234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"4177\":{\"media\":[{\"id\":1554920207226994694,\"id_str\":\"1554920207226994694\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvsK3XgAY6s1I.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554920216890572802,\"id_str\":\"1554920216890572802\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvsu3WAAImEan.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvsu3WAAImEan.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554920224444612611,\"id_str\":\"1554920224444612611\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvtLAXgAMBuRr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvtLAXgAMBuRr.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554920231662919680,\"id_str\":\"1554920231662919680\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQvtl5WIAABStx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQvtl5WIAABStx.jpg\",\"url\":\"https:\\/\\/t.co\\/rJZOdn65Dw\",\"display_url\":\"pic.twitter.com\\/rJZOdn65Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IbadanPropertis\\/status\\/1554920240940826626\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4178\":null,\"4179\":{\"media\":[{\"id\":1554919511844945920,\"id_str\":\"1554919511844945920\",\"indices\":[166,189],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554919511844945920\\/pu\\/img\\/OsUfVtprJCCMcZXj.jpg\",\"url\":\"https:\\/\\/t.co\\/L5naFHzNv6\",\"display_url\":\"pic.twitter.com\\/L5naFHzNv6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/firsttouch_info\\/status\\/1554919572913930240\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1278,\"resize\":\"fit\"},\"medium\":{\"w\":676,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":10898,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/pl\\/PdwsoOWqMR_I8ZVY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/320x568\\/JkXngNVuJRBVgB9i.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/480x852\\/qtvlPMtGrOXFGJht.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554919511844945920\\/pu\\/vid\\/720x1278\\/aVi6eql7Wqp-sHXk.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4180\":null,\"4181\":null,\"4182\":{\"media\":[{\"id\":1554918084397469697,\"id_str\":\"1554918084397469697\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554918084397469697\\/pu\\/img\\/gg0uZBlg6zu78OpP.jpg\",\"url\":\"https:\\/\\/t.co\\/b0ZKsnRgJ6\",\"display_url\":\"pic.twitter.com\\/b0ZKsnRgJ6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AmDkenzie\\/status\\/1554918698191831044\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":360,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":360,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":52275,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554918084397469697\\/pu\\/vid\\/320x568\\/ij8F97T7Zs-hiUNM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554918084397469697\\/pu\\/pl\\/8UgmwR8oPBPW8PK0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554918084397469697\\/pu\\/vid\\/360x640\\/Dw0KidUcJfwBUfKx.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4183\":null,\"4184\":{\"media\":[{\"id\":1554917648793833475,\"id_str\":\"1554917648793833475\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtXP9XkAMWzbS.jpg\",\"url\":\"https:\\/\\/t.co\\/2OrZy9A1BQ\",\"display_url\":\"pic.twitter.com\\/2OrZy9A1BQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZealDise\\/status\\/1554917658948255750\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":1024,\"resize\":\"fit\"}}}]},\"4185\":{\"media\":[{\"id\":1554917340168462337,\"id_str\":\"1554917340168462337\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQtFSPWIAEDKGm.jpg\",\"url\":\"https:\\/\\/t.co\\/XTI7MngazT\",\"display_url\":\"pic.twitter.com\\/XTI7MngazT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ApostleJoeUdoh\\/status\\/1554917350310395911\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":544,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":800,\"resize\":\"fit\"}}}]},\"4186\":{\"media\":[{\"id\":1554916928652730370,\"id_str\":\"1554916928652730370\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQstVOWYAIzF-k.jpg\",\"url\":\"https:\\/\\/t.co\\/uNm3Dqi46R\",\"display_url\":\"pic.twitter.com\\/uNm3Dqi46R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/huameeyr_\\/status\\/1554916934776487936\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"small\":{\"w\":598,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":336,\"resize\":\"fit\"}}}]},\"4187\":{\"media\":[{\"id\":1554916828358610954,\"id_str\":\"1554916828358610954\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQsnfmXkAo32Z8.jpg\",\"url\":\"https:\\/\\/t.co\\/Ndvbo56Cix\",\"display_url\":\"pic.twitter.com\\/Ndvbo56Cix\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554916841855848448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":686,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554916839175618560,\"id_str\":\"1554916839175618560\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQsoH5WAAAY2ky.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQsoH5WAAAY2ky.jpg\",\"url\":\"https:\\/\\/t.co\\/Ndvbo56Cix\",\"display_url\":\"pic.twitter.com\\/Ndvbo56Cix\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554916841855848448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":470,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":663,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":663,\"h\":960,\"resize\":\"fit\"}}}]},\"4188\":null,\"4189\":{\"media\":[{\"id\":1554916078635171840,\"id_str\":\"1554916078635171840\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72qXwAA_Xof.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"}}},{\"id\":1554916078639353857,\"id_str\":\"1554916078639353857\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72rXkAEYYr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72rXkAEYYr6.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554916078622588929,\"id_str\":\"1554916078622588929\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr72nXwAE3jMP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr72nXwAE3jMP.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554916079184510978,\"id_str\":\"1554916079184510978\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQr74tWAAI49gd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQr74tWAAI49gd.jpg\",\"url\":\"https:\\/\\/t.co\\/PTmFmJSnik\",\"display_url\":\"pic.twitter.com\\/PTmFmJSnik\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554916086897934338\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":898,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"4190\":{\"media\":[{\"id\":1554914917198733312,\"id_str\":\"1554914917198733312\",\"indices\":[245,268],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQq4P-WIAAAIO1.jpg\",\"url\":\"https:\\/\\/t.co\\/jCOYntTTXc\",\"display_url\":\"pic.twitter.com\\/jCOYntTTXc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554914919761453056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":775,\"resize\":\"fit\"},\"small\":{\"w\":632,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":775,\"resize\":\"fit\"}}}]},\"4191\":{\"media\":[{\"id\":1554914242037432320,\"id_str\":\"1554914242037432320\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554914242037432320\\/pu\\/img\\/HD2ESPT2kgBPf3uR.jpg\",\"url\":\"https:\\/\\/t.co\\/60kyNTYdVC\",\"display_url\":\"pic.twitter.com\\/60kyNTYdVC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iam_timotee\\/status\\/1554914363928100864\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":37600,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/320x568\\/rZjaXwg_nlFXyNe9.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/480x852\\/pmgY91BKufPDxvNR.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/vid\\/720x1280\\/_diQ5F79Cc1-qs2p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554914242037432320\\/pu\\/pl\\/VZmyFjc0PgoN_2kD.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4192\":{\"media\":[{\"id\":1554914140996632577,\"id_str\":\"1554914140996632577\",\"indices\":[47,70],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQqLEZWAAEupXg.jpg\",\"url\":\"https:\\/\\/t.co\\/yiNSoKgXQY\",\"display_url\":\"pic.twitter.com\\/yiNSoKgXQY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554914152052817920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1920,\"resize\":\"fit\"}}}]},\"4193\":null,\"4194\":{\"media\":[{\"id\":1554913397401128963,\"id_str\":\"1554913397401128963\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQpfySXEAMGPVu.jpg\",\"url\":\"https:\\/\\/t.co\\/FVS92zEuL3\",\"display_url\":\"pic.twitter.com\\/FVS92zEuL3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pastppl\\/status\\/1554913407270354947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"4195\":null,\"4196\":null,\"4197\":{\"media\":[{\"id\":1554910690321858560,\"id_str\":\"1554910690321858560\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCNoXgAAaazN.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554910690367905794,\"id_str\":\"1554910690367905794\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCNzWIAIn_Dc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCNzWIAIn_Dc.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554910690393182210,\"id_str\":\"1554910690393182210\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCN5X0AIDxqr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCN5X0AIDxqr.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554910690380505089,\"id_str\":\"1554910690380505089\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQnCN2WYAEvok5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQnCN2WYAEvok5.jpg\",\"url\":\"https:\\/\\/t.co\\/2pB4Kcv0fP\",\"display_url\":\"pic.twitter.com\\/2pB4Kcv0fP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/feracouture_ng\\/status\\/1554910701755502595\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4198\":{\"media\":[{\"id\":1554910195821723648,\"id_str\":\"1554910195821723648\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQmlbeWQAAV2Em.jpg\",\"url\":\"https:\\/\\/t.co\\/t83z7KgCZE\",\"display_url\":\"pic.twitter.com\\/t83z7KgCZE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554910206764765184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":703,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":664,\"resize\":\"fit\"}}}]},\"4199\":{\"media\":[{\"id\":1554909512221573121,\"id_str\":\"1554909512221573121\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQl9o3XwAEwM03.jpg\",\"url\":\"https:\\/\\/t.co\\/7oFsDeYTsH\",\"display_url\":\"pic.twitter.com\\/7oFsDeYTsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554909529577512960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"medium\":{\"w\":1060,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554909521507762176,\"id_str\":\"1554909521507762176\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQl-LdXwAAKMUK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQl-LdXwAAKMUK.jpg\",\"url\":\"https:\\/\\/t.co\\/7oFsDeYTsH\",\"display_url\":\"pic.twitter.com\\/7oFsDeYTsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554909529577512960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1001,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1001,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"}}}]},\"4200\":{\"media\":[{\"id\":1554909342398300164,\"id_str\":\"1554909342398300164\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQlzwOWQAQ2Hns.jpg\",\"url\":\"https:\\/\\/t.co\\/httCZHSxTe\",\"display_url\":\"pic.twitter.com\\/httCZHSxTe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554909353592860674\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":655,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":655,\"resize\":\"fit\"}}}]},\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":{\"media\":[{\"id\":1554907611685871616,\"id_str\":\"1554907611685871616\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPA0WYAA04L2.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1284,\"h\":922,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":488,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":862,\"resize\":\"fit\"}}},{\"id\":1554907611736186882,\"id_str\":\"1554907611736186882\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQkPBAWIAIm8bX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQkPBAWIAIm8bX.jpg\",\"url\":\"https:\\/\\/t.co\\/M99iJe53I1\",\"display_url\":\"pic.twitter.com\\/M99iJe53I1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/primatekomedy\\/status\\/1554907619403485185\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":828,\"resize\":\"fit\"},\"large\":{\"w\":1284,\"h\":886,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":469,\"resize\":\"fit\"}}}]},\"4207\":null,\"4208\":null,\"4209\":{\"media\":[{\"id\":1554905384854470660,\"id_str\":\"1554905384854470660\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905384854470660\\/pu\\/img\\/mMhrTErPFosb6_Xm.jpg\",\"url\":\"https:\\/\\/t.co\\/jriEwqsvvJ\",\"display_url\":\"pic.twitter.com\\/jriEwqsvvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sharon_sleey\\/status\\/1554905444610703361\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9533,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/320x568\\/tZ8YE-2Ws9hyVsI0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/720x1280\\/daJb9NWiqPXNh4Y-.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/vid\\/480x852\\/F59tgmXSi6rgB1E3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905384854470660\\/pu\\/pl\\/r0dJ6jG5UKixYEvQ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4210\":{\"media\":[{\"id\":1554905006779793413,\"id_str\":\"1554905006779793413\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554905006779793413\\/pu\\/img\\/G-TIzehFDD3A4IAB.jpg\",\"url\":\"https:\\/\\/t.co\\/sLgaVkZN1d\",\"display_url\":\"pic.twitter.com\\/sLgaVkZN1d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554905114531577859\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":59970,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905006779793413\\/pu\\/pl\\/w3a_E9S1nESIs6WK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905006779793413\\/pu\\/vid\\/320x564\\/btBAdf079Ng4Mo5h.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554905006779793413\\/pu\\/vid\\/480x848\\/n2itCxP5sJS7GL99.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4211\":{\"media\":[{\"id\":1554904267558998017,\"id_str\":\"1554904267558998017\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554904267558998017\\/pu\\/img\\/md2Z_kusUAOF3axK.jpg\",\"url\":\"https:\\/\\/t.co\\/c7Zb8bjK1h\",\"display_url\":\"pic.twitter.com\\/c7Zb8bjK1h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLAMIBODEREHAN\\/status\\/1554904346176929792\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":44953,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554904267558998017\\/pu\\/pl\\/cSiOMddQJsnTIczg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554904267558998017\\/pu\\/vid\\/480x848\\/emdF8Rxc4alERJ1y.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554904267558998017\\/pu\\/vid\\/320x564\\/natnGet7RQDo1W-H.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4212\":{\"media\":[{\"id\":1554904263742160896,\"id_str\":\"1554904263742160896\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhMIwXgAAzRcq.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1554904267592552448,\"id_str\":\"1554904267592552448\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhMXGX0AAGvvY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhMXGX0AAGvvY.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":958,\"h\":958,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":958,\"h\":958,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554904279298752514,\"id_str\":\"1554904279298752514\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhNCtWQAI6pdt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhNCtWQAI6pdt.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554904293341274112,\"id_str\":\"1554904293341274112\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQhN3BWIAAintT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQhN3BWIAAintT.jpg\",\"url\":\"https:\\/\\/t.co\\/QGEWk8hri8\",\"display_url\":\"pic.twitter.com\\/QGEWk8hri8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/damola_awujo\\/status\\/1554904303579660289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"4213\":null,\"4214\":null,\"4215\":{\"media\":[{\"id\":1554903110451093506,\"id_str\":\"1554903110451093506\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQgJAaWYAIiPOT.jpg\",\"url\":\"https:\\/\\/t.co\\/JfkK4p5kHo\",\"display_url\":\"pic.twitter.com\\/JfkK4p5kHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BubesTreat_3\\/status\\/1554903129673666560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":668,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":421,\"resize\":\"fit\"}}}]},\"4216\":{\"media\":[{\"id\":1554901434646265856,\"id_str\":\"1554901434646265856\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554901434646265856\\/pu\\/img\\/A727Ghx0h3QCYjfk.jpg\",\"url\":\"https:\\/\\/t.co\\/VjiXPWbX4f\",\"display_url\":\"pic.twitter.com\\/VjiXPWbX4f\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gamar_imam\\/status\\/1554901550665015298\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":140012,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/vid\\/576x1024\\/Shan742lItwhM0iG.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/vid\\/480x852\\/CFbrFsA5qvoebkqS.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/vid\\/320x568\\/8qKQ1I7SpYGlr_8p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554901434646265856\\/pu\\/pl\\/mNr_oHtzOvmaHv46.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4217\":{\"media\":[{\"id\":1554899220372529153,\"id_str\":\"1554899220372529153\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554899220372529153\\/pu\\/img\\/fvhV1xvoNmFx7E2m.jpg\",\"url\":\"https:\\/\\/t.co\\/W1zrNyyBd4\",\"display_url\":\"pic.twitter.com\\/W1zrNyyBd4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DL_first_son\\/status\\/1554899262617653248\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":365,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1072,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[36,67],\"duration_millis\":7738,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/pl\\/BTCKcGXHFz530QFV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/vid\\/576x1072\\/BKa88eqNSvgFw2DK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/vid\\/480x892\\/O9hEUXDa0vABK6gB.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554899220372529153\\/pu\\/vid\\/320x594\\/4l6UnWTghR11Tbwq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4218\":null,\"4219\":{\"media\":[{\"id\":1554895396790476803,\"id_str\":\"1554895396790476803\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554895396790476803\\/pu\\/img\\/vkxs-6PSVWAgBUr6.jpg\",\"url\":\"https:\\/\\/t.co\\/sSTeJQYgcQ\",\"display_url\":\"pic.twitter.com\\/sSTeJQYgcQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554895525392138241\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":44975,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554895396790476803\\/pu\\/pl\\/lotLHZfYw_bnySHi.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554895396790476803\\/pu\\/vid\\/480x256\\/tRmjjl5XsqOJTTij.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4220\":null,\"4221\":{\"media\":[{\"id\":1554893024903282689,\"id_str\":\"1554893024903282689\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554893024903282689\\/pu\\/img\\/9H5Q0MvCv2OuOLci.jpg\",\"url\":\"https:\\/\\/t.co\\/tA7oQLvgD9\",\"display_url\":\"pic.twitter.com\\/tA7oQLvgD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danthegreyt\\/status\\/1554895023048630272\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":680,\"h\":633,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":688,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":688,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,40],\"duration_millis\":88000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/pl\\/s0IWWR_obPZvnM-A.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/vid\\/290x270\\/o7aSM4bNN-ckOVku.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/vid\\/688x640\\/CmTgErkKTIHHopBN.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554893024903282689\\/pu\\/vid\\/386x360\\/OM96hsfj8GIkLkiS.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4222\":{\"media\":[{\"id\":1554894576321761280,\"id_str\":\"1554894576321761280\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYYQTXEAAa7-f.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554894588279771136,\"id_str\":\"1554894588279771136\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYY82X0AA0foI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYY82X0AA0foI.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":575,\"resize\":\"fit\"}}},{\"id\":1554894596882239490,\"id_str\":\"1554894596882239490\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYZc5XEAISx9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYZc5XEAISx9d.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":862,\"resize\":\"fit\"},\"large\":{\"w\":862,\"h\":862,\"resize\":\"fit\"}}},{\"id\":1554894606759755777,\"id_str\":\"1554894606759755777\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYaBsWAAE-bcC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYaBsWAAE-bcC.jpg\",\"url\":\"https:\\/\\/t.co\\/14nNwxrVUq\",\"display_url\":\"pic.twitter.com\\/14nNwxrVUq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554894614267568128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":862,\"h\":485,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":862,\"h\":485,\"resize\":\"fit\"}}}]},\"4223\":{\"media\":[{\"id\":1554894083633602561,\"id_str\":\"1554894083633602561\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQX7k5WYAERxdv.jpg\",\"url\":\"https:\\/\\/t.co\\/4cLztckKId\",\"display_url\":\"pic.twitter.com\\/4cLztckKId\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nnachigraciouss\\/status\\/1554894090600325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":450,\"h\":300,\"resize\":\"fit\"},\"large\":{\"w\":450,\"h\":300,\"resize\":\"fit\"}}},{\"id\":1554894088247431169,\"id_str\":\"1554894088247431169\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQX72FX0AEuH0-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQX72FX0AEuH0-.jpg\",\"url\":\"https:\\/\\/t.co\\/4cLztckKId\",\"display_url\":\"pic.twitter.com\\/4cLztckKId\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nnachigraciouss\\/status\\/1554894090600325120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"},\"large\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"}}}]},\"4224\":{\"media\":[{\"id\":1554893825079926784,\"id_str\":\"1554893825079926784\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQXshtWYAAMccg.jpg\",\"url\":\"https:\\/\\/t.co\\/q13uXAXOhv\",\"display_url\":\"pic.twitter.com\\/q13uXAXOhv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/goziedbrightest\\/status\\/1554893836513599488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":945,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"}}}]},\"4225\":{\"media\":[{\"id\":1554892500804030470,\"id_str\":\"1554892500804030470\",\"indices\":[97,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554892500804030470\\/pu\\/img\\/nC2CeggktkLLb7tK.jpg\",\"url\":\"https:\\/\\/t.co\\/48uTAiwxOg\",\"display_url\":\"pic.twitter.com\\/48uTAiwxOg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abiye_daniel\\/status\\/1554892872708669440\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":575,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":612,\"h\":1278,\"resize\":\"fit\"},\"small\":{\"w\":326,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[34,71],\"duration_millis\":24540,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/vid\\/612x1278\\/WvUtvr2qikxDuiRs.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/vid\\/320x668\\/7cNHpq0S-NcYzdyf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/pl\\/t4fZIISW8RRxpm9a.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554892500804030470\\/pu\\/vid\\/480x1002\\/D91WIEi3w_GuBri1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4226\":null,\"4227\":null,\"4228\":null,\"4229\":null,\"4230\":null,\"4231\":{\"media\":[{\"id\":1554888205891141634,\"id_str\":\"1554888205891141634\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554888205891141634\\/pu\\/img\\/R3EFMFVXKHkpnK8v.jpg\",\"url\":\"https:\\/\\/t.co\\/xC6K2kPOD5\",\"display_url\":\"pic.twitter.com\\/xC6K2kPOD5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamnancy_koko\\/status\\/1554888288187596801\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554888205891141634\\/pu\\/vid\\/320x580\\/g3WQiGMgz65yXKlm.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554888205891141634\\/pu\\/vid\\/352x640\\/hKlFj5NBCcFvkDgM.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554888205891141634\\/pu\\/pl\\/tMOevH8mz1QONzS-.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4232\":null,\"4233\":{\"media\":[{\"id\":1554887413008404480,\"id_str\":\"1554887413008404480\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQR3S4XkAAmxCq.jpg\",\"url\":\"https:\\/\\/t.co\\/Etcy2TXr2z\",\"display_url\":\"pic.twitter.com\\/Etcy2TXr2z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/midnytupdates\\/status\\/1554887434168573952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":1124,\"h\":794,\"resize\":\"fit\"}}}]},\"4234\":null,\"4235\":{\"media\":[{\"id\":1554883391333535744,\"id_str\":\"1554883391333535744\",\"indices\":[69,92],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQONM-XEAAmZv7.jpg\",\"url\":\"https:\\/\\/t.co\\/hYyok6F3by\",\"display_url\":\"pic.twitter.com\\/hYyok6F3by\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nworie_david\\/status\\/1554883393925554177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"4236\":{\"media\":[{\"id\":1554883068745469959,\"id_str\":\"1554883068745469959\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQN6bPX0AcbkNY.jpg\",\"url\":\"https:\\/\\/t.co\\/tyAdCFsssb\",\"display_url\":\"pic.twitter.com\\/tyAdCFsssb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554883093852479491\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":552,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":1208,\"h\":556,\"resize\":\"fit\"}}}]},\"4237\":null,\"4238\":null,\"4239\":{\"media\":[{\"id\":1554881398879789056,\"id_str\":\"1554881398879789056\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881398879789056\\/pu\\/img\\/vpmJ4WetO1yKy73y.jpg\",\"url\":\"https:\\/\\/t.co\\/tspuOt2IEp\",\"display_url\":\"pic.twitter.com\\/tspuOt2IEp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554881430416723970\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10172,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/vid\\/480x852\\/sRgJVuHSkeEHPijQ.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/vid\\/320x568\\/ZrFqExBAzi8tmtoG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/vid\\/540x960\\/1XP8_0n_VrT94N0l.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881398879789056\\/pu\\/pl\\/vGTxaXJ-Tz-QvruF.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4240\":{\"media\":[{\"id\":1554881027591520260,\"id_str\":\"1554881027591520260\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554881027591520260\\/pu\\/img\\/XdOjth1grcQQ9x59.jpg\",\"url\":\"https:\\/\\/t.co\\/NZ3ygeIhwq\",\"display_url\":\"pic.twitter.com\\/NZ3ygeIhwq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hisvert\\/status\\/1554881056008187904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":1663,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/vid\\/320x568\\/VEh-qxGyD2BdXXcV.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/vid\\/480x852\\/wmzGbbKj3egjutVD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554881027591520260\\/pu\\/pl\\/LA2rJstw9whhn-ci.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4241\":null,\"4242\":null,\"4243\":null,\"4244\":{\"media\":[{\"id\":1554876192368607233,\"id_str\":\"1554876192368607233\",\"indices\":[63,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554876192368607233\\/pu\\/img\\/BkMZ8dEqoX_HxoMY.jpg\",\"url\":\"https:\\/\\/t.co\\/l9TrkZDPB3\",\"display_url\":\"pic.twitter.com\\/l9TrkZDPB3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jasper_nwankwo\\/status\\/1554876236282863616\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":244,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":244,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[122,213],\"duration_millis\":27958,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554876192368607233\\/pu\\/pl\\/oZQkUcEi0pROIcDH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554876192368607233\\/pu\\/vid\\/244x426\\/E6ipzynGRjfyBjjN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":{\"media\":[{\"id\":1554875107327238146,\"id_str\":\"1554875107327238146\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGrApWYAISOOd.jpg\",\"url\":\"https:\\/\\/t.co\\/0abiCiufk2\",\"display_url\":\"pic.twitter.com\\/0abiCiufk2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnAshafa\\/status\\/1554875116768608256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1600,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"4249\":{\"media\":[{\"id\":1554875039073419270,\"id_str\":\"1554875039073419270\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQGnCYXwAYjuWc.jpg\",\"url\":\"https:\\/\\/t.co\\/Nz9c0LorqE\",\"display_url\":\"pic.twitter.com\\/Nz9c0LorqE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ay_adeyinka\\/status\\/1554875042147827712\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":586,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":930,\"h\":1080,\"resize\":\"fit\"}}}]},\"4250\":{\"media\":[{\"id\":1554873912382705664,\"id_str\":\"1554873912382705664\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQFldIX0AA3b2A.jpg\",\"url\":\"https:\\/\\/t.co\\/2NDXPRWunF\",\"display_url\":\"pic.twitter.com\\/2NDXPRWunF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AkotuJosep\\/status\\/1554873915180302344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":570,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":905,\"h\":1080,\"resize\":\"fit\"}}}]},\"4251\":null,\"4252\":{\"media\":[{\"id\":1554872529357078530,\"id_str\":\"1554872529357078530\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQEU89XgAII35i.jpg\",\"url\":\"https:\\/\\/t.co\\/scYmhRCniz\",\"display_url\":\"pic.twitter.com\\/scYmhRCniz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872532582400001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":658,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":447,\"resize\":\"fit\"}}}]},\"4253\":{\"media\":[{\"id\":1554872198287990785,\"id_str\":\"1554872198287990785\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554872198287990785\\/pu\\/img\\/H0VFk0Mkp0QBA9rq.jpg\",\"url\":\"https:\\/\\/t.co\\/ewQV3c6jLC\",\"display_url\":\"pic.twitter.com\\/ewQV3c6jLC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/folks_room\\/status\\/1554872252679815169\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":32266,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/vid\\/640x360\\/UU4RjWb3p6M_4_QR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/pl\\/qrgGdLXyY-4_kczs.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/vid\\/480x270\\/vx_PoqNnfBK-aGhy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554872198287990785\\/pu\\/vid\\/1280x720\\/oyt4TllJon0d-OFr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4254\":null,\"4255\":{\"media\":[{\"id\":1554869821082423302,\"id_str\":\"1554869821082423302\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554869821082423302\\/pu\\/img\\/ftvzEK___Fav7SXS.jpg\",\"url\":\"https:\\/\\/t.co\\/fuKr5l8Xzy\",\"display_url\":\"pic.twitter.com\\/fuKr5l8Xzy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/henry_saliu\\/status\\/1554869975638474752\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":856,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":803,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[160,107],\"duration_millis\":45000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/1076x720\\/Stv9TpP5SfLL1NhT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/pl\\/KkuuX5FjD9PPTACN.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/538x360\\/TcU9v4AmnKHIPxCs.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554869821082423302\\/pu\\/vid\\/402x270\\/v1ZiI1jdRBdinUOA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":{\"media\":[{\"id\":1554738998655983618,\"id_str\":\"1554738998655983618\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554738998655983618\\/pu\\/img\\/knzBmncA8qDT_6kB.jpg\",\"url\":\"https:\\/\\/t.co\\/kuHBbuIPqq\",\"display_url\":\"pic.twitter.com\\/kuHBbuIPqq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DIRTY_TROLL_\\/status\\/1554739088699318274\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"source_status_id\":1554739088699318274,\"source_status_id_str\":\"1554739088699318274\",\"source_user_id\":1383416665023516684,\"source_user_id_str\":\"1383416665023516684\",\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":29866,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/pl\\/GxsaKt96j75EQqE_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/vid\\/720x1280\\/btNzEgsfO8w0hFWW.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/vid\\/480x852\\/EEtiZ7VwRkOtiqJs.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554738998655983618\\/pu\\/vid\\/320x568\\/-rcrRqv4i-_x3-56.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4261\":null,\"4262\":{\"media\":[{\"id\":1554863381533921284,\"id_str\":\"1554863381533921284\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP8AeqXkAQvG29.jpg\",\"url\":\"https:\\/\\/t.co\\/IpIJS16Q0a\",\"display_url\":\"pic.twitter.com\\/IpIJS16Q0a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554863391801577475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4263\":null,\"4264\":{\"media\":[{\"id\":1554863071339991040,\"id_str\":\"1554863071339991040\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP7ubGX0AAMakI.jpg\",\"url\":\"https:\\/\\/t.co\\/X0g1q2rmkP\",\"display_url\":\"pic.twitter.com\\/X0g1q2rmkP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dazai_Mill\\/status\\/1554863081024589824\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1074,\"resize\":\"fit\"}}}]},\"4265\":{\"media\":[{\"id\":1554862730775085060,\"id_str\":\"1554862730775085060\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554862730775085060\\/pu\\/img\\/Mjk82EErORu9zrVz.jpg\",\"url\":\"https:\\/\\/t.co\\/kFuvOwtASi\",\"display_url\":\"pic.twitter.com\\/kFuvOwtASi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Xamhani5\\/status\\/1554862857627598849\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":20480,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/vid\\/476x270\\/oxwYC5GYqJEGse2-.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/vid\\/636x360\\/NnqsO0Py0vOvrwSq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/pl\\/K59qJwMy2SMR87PF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554862730775085060\\/pu\\/vid\\/848x480\\/TNlqqeyqOlBku1sy.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4266\":{\"media\":[{\"id\":1554859071911727105,\"id_str\":\"1554859071911727105\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554859071911727105\\/pu\\/img\\/WtxKWim2qGWmV3GS.jpg\",\"url\":\"https:\\/\\/t.co\\/HdEwRH6iPT\",\"display_url\":\"pic.twitter.com\\/HdEwRH6iPT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OLUWASHEYNOR\\/status\\/1554862669466853387\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":44996,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554859071911727105\\/pu\\/vid\\/352x640\\/6vCFG-CFXkwepC-g.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554859071911727105\\/pu\\/vid\\/320x580\\/W6zG8gqCWhvD_bWI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554859071911727105\\/pu\\/pl\\/LFsQqFNfAvDZRaGp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4267\":null,\"4268\":null,\"4269\":null,\"4270\":{\"media\":[{\"id\":1554860741462745088,\"id_str\":\"1554860741462745088\",\"indices\":[225,248],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554860741462745088\\/pu\\/img\\/MiRvcRp7n_IjsYFY.jpg\",\"url\":\"https:\\/\\/t.co\\/bVQg5LLuqJ\",\"display_url\":\"pic.twitter.com\\/bVQg5LLuqJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/taiwosharpakin\\/status\\/1554860847461179392\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":8340,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/pl\\/yfNpmxIseeqUxY4Y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/vid\\/720x1280\\/W1y2OmFlXIiyY-c3.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/vid\\/320x568\\/G7duGC48krKN2aYA.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554860741462745088\\/pu\\/vid\\/480x852\\/aTB48eF17SgMNnva.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4271\":{\"media\":[{\"id\":1554857936593338369,\"id_str\":\"1554857936593338369\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857936593338369\\/pu\\/img\\/BFe_xWpCL855rRa1.jpg\",\"url\":\"https:\\/\\/t.co\\/serqHvJW2C\",\"display_url\":\"pic.twitter.com\\/serqHvJW2C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554859470001475584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":886,\"h\":1240,\"resize\":\"fit\"},\"medium\":{\"w\":857,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":486,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,620],\"duration_millis\":29306,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/pl\\/1B97_IzMpY9xYvMM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/480x670\\/mdxj7XUqBGNMxdGV.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/320x446\\/K94D15Q4SyxOQD9p.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857936593338369\\/pu\\/vid\\/720x1006\\/8JJfwPE5zArf2fTU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4272\":{\"media\":[{\"id\":1554858363166593027,\"id_str\":\"1554858363166593027\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXyXEAMynAe.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":452,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":681,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554858363158159360,\"id_str\":\"1554858363158159360\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZP3cXwWYAACRNG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZP3cXwWYAACRNG.jpg\",\"url\":\"https:\\/\\/t.co\\/vG6i0EOIPN\",\"display_url\":\"pic.twitter.com\\/vG6i0EOIPN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xandadgr8\\/status\\/1554858371622359044\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":682,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":682,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"}}}]},\"4273\":{\"media\":[{\"id\":1554857654492741632,\"id_str\":\"1554857654492741632\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857654492741632\\/pu\\/img\\/lXufZhFr3WTOnpvS.jpg\",\"url\":\"https:\\/\\/t.co\\/hXTkpuKOb9\",\"display_url\":\"pic.twitter.com\\/hXTkpuKOb9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857741767802884\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10833,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/vid\\/320x568\\/3gJFjN1zlJWIQ6B7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/vid\\/576x1024\\/6L_2W4_qYpRL0EUt.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/vid\\/480x852\\/09k3lkwHPaP_iTwQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857654492741632\\/pu\\/pl\\/l6VogqSKh-IoFkDY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4274\":{\"media\":[{\"id\":1554857307246415872,\"id_str\":\"1554857307246415872\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554857307246415872\\/pu\\/img\\/boT09MGrQu77j6EM.jpg\",\"url\":\"https:\\/\\/t.co\\/M0Ay75iMpk\",\"display_url\":\"pic.twitter.com\\/M0Ay75iMpk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mreverything247\\/status\\/1554857391572795395\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10833,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/vid\\/320x568\\/CJAmncId8JwEIni_.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/vid\\/576x1024\\/b83AsgSBU3DfSKxq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/pl\\/0jtOBE2b8v4tAtKV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554857307246415872\\/pu\\/vid\\/480x852\\/FUfdl9gB5gS693Eq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":{\"media\":[{\"id\":1554854169730842624,\"id_str\":\"1554854169730842624\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554854169730842624\\/pu\\/img\\/Z5uMW7SDP-CoQkCL.jpg\",\"url\":\"https:\\/\\/t.co\\/QXoeE58mqd\",\"display_url\":\"pic.twitter.com\\/QXoeE58mqd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ivyarcher75\\/status\\/1554854317353586690\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":38867,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/vid\\/640x360\\/YXzREV6EyRkpWqxg.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/vid\\/1280x720\\/54zkgDrAD4RYhuYj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/pl\\/TGJjGoABTABYQAgQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554854169730842624\\/pu\\/vid\\/480x270\\/zmJ0qGcB4rUtHQnU.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4281\":{\"media\":[{\"id\":1554853575938940931,\"id_str\":\"1554853575938940931\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPzFt-WIAMTkHE.jpg\",\"url\":\"https:\\/\\/t.co\\/XaBB0uU303\",\"display_url\":\"pic.twitter.com\\/XaBB0uU303\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cyrillle_b\\/status\\/1554853584608673792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4282\":{\"media\":[{\"id\":1554851249660608512,\"id_str\":\"1554851249660608512\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851249660608512\\/pu\\/img\\/1sVqcovUs30rNvVs.jpg\",\"url\":\"https:\\/\\/t.co\\/SFtmooG4n4\",\"display_url\":\"pic.twitter.com\\/SFtmooG4n4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vidantv\\/status\\/1554853500152336384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":31113,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/pl\\/6_YcVed8xLB0FuTU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/320x568\\/ljb2amPU7Z2KioYa.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/480x852\\/cmIylBrH0tZVRxkt.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851249660608512\\/pu\\/vid\\/720x1280\\/JJq6y5iX_I9Y12Yv.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4283\":null,\"4284\":null,\"4285\":{\"media\":[{\"id\":1554851448164335616,\"id_str\":\"1554851448164335616\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554851448164335616\\/pu\\/img\\/dApwuVYxWnipJpGn.jpg\",\"url\":\"https:\\/\\/t.co\\/DREK7qMgFy\",\"display_url\":\"pic.twitter.com\\/DREK7qMgFy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamadeflow\\/status\\/1554851525855526912\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":26586,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/vid\\/720x900\\/N9LP71fBGmgsORkf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/pl\\/tP1q4hEITh3IUmgb.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/vid\\/320x400\\/uGztT13hY2s-xOJM.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554851448164335616\\/pu\\/vid\\/480x600\\/8lHdMRN6jqiai3lb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4286\":{\"media\":[{\"id\":1554850860961775625,\"id_str\":\"1554850860961775625\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554850860961775625\\/pu\\/img\\/SZDduw_kBEKhuiLl.jpg\",\"url\":\"https:\\/\\/t.co\\/cHw8nDiKoF\",\"display_url\":\"pic.twitter.com\\/cHw8nDiKoF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbujaFinders\\/status\\/1554850987222917128\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":886,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[443,616],\"duration_millis\":18343,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/320x444\\/5xerdQwnxeVmre6N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/720x1000\\/1QLE9cPkAAlkm5ZO.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/pl\\/e5t89xihaBpg0p20.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554850860961775625\\/pu\\/vid\\/480x666\\/Wra3w-ayFpiRtuf8.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4287\":{\"media\":[{\"id\":1554849122989101058,\"id_str\":\"1554849122989101058\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPvChcX0AI7BWF.jpg\",\"url\":\"https:\\/\\/t.co\\/z92cabRhki\",\"display_url\":\"pic.twitter.com\\/z92cabRhki\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magojazzy\\/status\\/1554849169902297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"4288\":{\"media\":[{\"id\":1554847712171917312,\"id_str\":\"1554847712171917312\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtwZvWAAApNAy.jpg\",\"url\":\"https:\\/\\/t.co\\/cpMeY6l4qn\",\"display_url\":\"pic.twitter.com\\/cpMeY6l4qn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/King_Edrah\\/status\\/1554847720237588483\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":670,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":485,\"resize\":\"fit\"}}}]},\"4289\":{\"media\":[{\"id\":1554845222231855104,\"id_str\":\"1554845222231855104\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845222231855104\\/pu\\/img\\/_hIoSA9E2phA8mAP.jpg\",\"url\":\"https:\\/\\/t.co\\/Vhy6XUmv6N\",\"display_url\":\"pic.twitter.com\\/Vhy6XUmv6N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jay_Chopa\\/status\\/1554847318733688835\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44933,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/vid\\/320x568\\/J94CqmysfJTlVzkp.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/pl\\/5GQ_GQUnRq3nDmRV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/vid\\/720x1280\\/4bM9MveimGQ5RtYK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845222231855104\\/pu\\/vid\\/480x852\\/GY9lTLnC6BEn8Kqb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4290\":{\"media\":[{\"id\":1554847143323750402,\"id_str\":\"1554847143323750402\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPtPSnX0AIjh6d.jpg\",\"url\":\"https:\\/\\/t.co\\/ERYYncJ91y\",\"display_url\":\"pic.twitter.com\\/ERYYncJ91y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jobblasts_ng\\/status\\/1554847181386940416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"4291\":{\"media\":[{\"id\":1554845900652134403,\"id_str\":\"1554845900652134403\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPsG9TXwAMJrGf.jpg\",\"url\":\"https:\\/\\/t.co\\/8rhcyAquDi\",\"display_url\":\"pic.twitter.com\\/8rhcyAquDi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554845904175259648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4292\":{\"media\":[{\"id\":1554845768808370183,\"id_str\":\"1554845768808370183\",\"indices\":[196,219],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554845768808370183\\/pu\\/img\\/KlvvaD-6EINHjyHO.jpg\",\"url\":\"https:\\/\\/t.co\\/lomyxzo19t\",\"display_url\":\"pic.twitter.com\\/lomyxzo19t\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WiseKingoffici1\\/status\\/1554845844062470145\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":29976,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845768808370183\\/pu\\/vid\\/352x640\\/IN7ekfRcx4jhlk2E.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845768808370183\\/pu\\/vid\\/320x580\\/5CILSr-3MNIyvrJV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554845768808370183\\/pu\\/pl\\/HYt7W_OQO7_-zMda.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4293\":null,\"4294\":{\"media\":[{\"id\":1554843949231120384,\"id_str\":\"1554843949231120384\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPqVXsWIAAjI92.jpg\",\"url\":\"https:\\/\\/t.co\\/U490y2rN72\",\"display_url\":\"pic.twitter.com\\/U490y2rN72\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CaresValu\\/status\\/1554844905943564290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1717,\"h\":1016,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":710,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":402,\"resize\":\"fit\"}}}]},\"4295\":{\"media\":[{\"id\":1554843903404154880,\"id_str\":\"1554843903404154880\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZPqSs-WIAAVgHH.jpg\",\"url\":\"https:\\/\\/t.co\\/COouUZAqTK\",\"display_url\":\"pic.twitter.com\\/COouUZAqTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MixedPie\\/status\\/1554843910261932034\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":278,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":278,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[249,139],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZPqSs-WIAAVgHH.mp4\"}]}}]},\"4296\":{\"media\":[{\"id\":1554843508820905984,\"id_str\":\"1554843508820905984\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPp7vCXkAA8qZD.jpg\",\"url\":\"https:\\/\\/t.co\\/xYqiMXKCQi\",\"display_url\":\"pic.twitter.com\\/xYqiMXKCQi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibbultalkative\\/status\\/1554843537736351744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":899,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1122,\"h\":1497,\"resize\":\"fit\"}}}]},\"4297\":null,\"4298\":{\"media\":[{\"id\":1554840616395329538,\"id_str\":\"1554840616395329538\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840616395329538\\/pu\\/img\\/S_QvjNVxRQkOjlTY.jpg\",\"url\":\"https:\\/\\/t.co\\/HrGoPtUEdp\",\"display_url\":\"pic.twitter.com\\/HrGoPtUEdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialUgoo\\/status\\/1554840769541840897\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":23567,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840616395329538\\/pu\\/vid\\/480x848\\/vFZMnw9KXCdfp4hj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840616395329538\\/pu\\/pl\\/nYoIOoAjljPncmxR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840616395329538\\/pu\\/vid\\/320x564\\/ZChM2qqsasLYW1z4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4299\":{\"media\":[{\"id\":1554840585546121216,\"id_str\":\"1554840585546121216\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPnRk_WQAA7PcT.jpg\",\"url\":\"https:\\/\\/t.co\\/M52dtXFSPt\",\"display_url\":\"pic.twitter.com\\/M52dtXFSPt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officiall_26\\/status\\/1554840595432177666\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}}]},\"4300\":{\"media\":[{\"id\":1554839954383052801,\"id_str\":\"1554839954383052801\",\"indices\":[169,192],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554839954383052801\\/pu\\/img\\/DlglEMXnN-5k5o-p.jpg\",\"url\":\"https:\\/\\/t.co\\/Ed0hyzm5a0\",\"display_url\":\"pic.twitter.com\\/Ed0hyzm5a0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/magret_james2\\/status\\/1554840044241911810\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":40086,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/pl\\/p3d-sAdMVHQ6GYGn.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/vid\\/480x852\\/S_djp3RE4afD-JTB.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/vid\\/720x1280\\/QXskfRYtsSQFXquU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554839954383052801\\/pu\\/vid\\/320x568\\/igUiI-9dGnI5HI4S.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4301\":{\"media\":[{\"id\":1554839842743279618,\"id_str\":\"1554839842743279618\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmmV1WYAI8KzN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554839865606504453,\"id_str\":\"1554839865606504453\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmnrAXgAUOpBN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmnrAXgAUOpBN.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554839879481188353,\"id_str\":\"1554839879481188353\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmoesWYAEkRU0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmoesWYAEkRU0.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554839896103305216,\"id_str\":\"1554839896103305216\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmpcnXwAAaZiI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmpcnXwAAaZiI.jpg\",\"url\":\"https:\\/\\/t.co\\/QOKS8yZiEf\",\"display_url\":\"pic.twitter.com\\/QOKS8yZiEf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839916168859648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4302\":{\"media\":[{\"id\":1554839385920749569,\"id_str\":\"1554839385920749569\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmLwCXwAERf8v.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554839402643394560,\"id_str\":\"1554839402643394560\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmMuVXEAAE0ZV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmMuVXEAAE0ZV.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554839419978383361,\"id_str\":\"1554839419978383361\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmNu6WAAEr5Jd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmNu6WAAEr5Jd.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554839438446010368,\"id_str\":\"1554839438446010368\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPmOztXoAAMlTp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPmOztXoAAMlTp.jpg\",\"url\":\"https:\\/\\/t.co\\/ccitKgxKdW\",\"display_url\":\"pic.twitter.com\\/ccitKgxKdW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/elchazag\\/status\\/1554839451213381632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4303\":{\"media\":[{\"id\":1554839111319506944,\"id_str\":\"1554839111319506944\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPl7xEVUAA3Or5.jpg\",\"url\":\"https:\\/\\/t.co\\/ziFs7wdpro\",\"display_url\":\"pic.twitter.com\\/ziFs7wdpro\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sir_werry\\/status\\/1554839139752652802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":805,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1235,\"resize\":\"fit\"},\"small\":{\"w\":456,\"h\":680,\"resize\":\"fit\"}}}]},\"4304\":null,\"4305\":null,\"4306\":{\"media\":[{\"id\":1554837753874944002,\"id_str\":\"1554837753874944002\",\"indices\":[233,256],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554837753874944002\\/pu\\/img\\/cJRsdxmQHJZ0QanD.jpg\",\"url\":\"https:\\/\\/t.co\\/VPSRUhRh8v\",\"display_url\":\"pic.twitter.com\\/VPSRUhRh8v\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554838024537509889\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/vid\\/320x568\\/axp7Ol3d90ASMR4m.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/vid\\/540x960\\/PG9sbTy0h-ghQczk.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/vid\\/480x852\\/YF_WlTdRs8UUX9HO.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554837753874944002\\/pu\\/pl\\/a6pmfoFPYQ4kOI-s.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4307\":{\"media\":[{\"id\":1554837535502716938,\"id_str\":\"1554837535502716938\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkgCsVUAoqY5S.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}},{\"id\":1554837541253050373,\"id_str\":\"1554837541253050373\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkgYHUcAUDqZ0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkgYHUcAUDqZ0.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}},{\"id\":1554837596156506113,\"id_str\":\"1554837596156506113\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkjkpUsAEguEs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkjkpUsAEguEs.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":677,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"}}},{\"id\":1554837652221730816,\"id_str\":\"1554837652221730816\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPkm1gUIAAHrAU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPkm1gUIAAHrAU.jpg\",\"url\":\"https:\\/\\/t.co\\/s3pbNoQAGP\",\"display_url\":\"pic.twitter.com\\/s3pbNoQAGP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554837697813917699\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4308\":null,\"4309\":{\"media\":[{\"id\":1554836955468165121,\"id_str\":\"1554836955468165121\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPj-R5UcAE_f9g.jpg\",\"url\":\"https:\\/\\/t.co\\/X4VdFxKEE2\",\"display_url\":\"pic.twitter.com\\/X4VdFxKEE2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554836957687005186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":533,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":533,\"resize\":\"fit\"}}}]},\"4310\":null,\"4311\":null,\"4312\":{\"media\":[{\"id\":1554835170859003904,\"id_str\":\"1554835170859003904\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835170859003904\\/pu\\/img\\/JRc2No89yH1R5qgo.jpg\",\"url\":\"https:\\/\\/t.co\\/XPenvRyXEc\",\"display_url\":\"pic.twitter.com\\/XPenvRyXEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554835221819731969\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":372,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":464,\"resize\":\"fit\"},\"large\":{\"w\":848,\"h\":464,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,29],\"duration_millis\":37066,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/vid\\/492x270\\/lM19GMTW0x7kMt03.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/pl\\/QTHp54deWAkNZP-v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835170859003904\\/pu\\/vid\\/848x464\\/7lqbEAq3OnYMHgLA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4313\":{\"media\":[{\"id\":1554835161350492164,\"id_str\":\"1554835161350492164\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiV2SVUAQ9OJy.jpg\",\"url\":\"https:\\/\\/t.co\\/lbgqYYK7r6\",\"display_url\":\"pic.twitter.com\\/lbgqYYK7r6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bobojaytv\\/status\\/1554835162839465992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"4314\":{\"media\":[{\"id\":1554835050029387782,\"id_str\":\"1554835050029387782\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554835050029387782\\/pu\\/img\\/CH2vPLGgsTLCdZqO.jpg\",\"url\":\"https:\\/\\/t.co\\/AVYQjSFrmC\",\"display_url\":\"pic.twitter.com\\/AVYQjSFrmC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sappzee\\/status\\/1554835145458212865\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,2],\"duration_millis\":40505,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835050029387782\\/pu\\/pl\\/5LLR3CRMDo5jsCGf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554835050029387782\\/pu\\/vid\\/320x640\\/YD67mueC4AMbv8sZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4315\":{\"media\":[{\"id\":1554835119990456320,\"id_str\":\"1554835119990456320\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPiTcNVQAARsjT.jpg\",\"url\":\"https:\\/\\/t.co\\/MkpeC7yxpc\",\"display_url\":\"pic.twitter.com\\/MkpeC7yxpc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/KafeEazy\\/status\\/1554835123329064961\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"},\"small\":{\"w\":449,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1091,\"resize\":\"fit\"}}}]},\"4316\":{\"media\":[{\"id\":1554831314158727171,\"id_str\":\"1554831314158727171\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPe16YVsAMrBMC.jpg\",\"url\":\"https:\\/\\/t.co\\/EL3gICOawv\",\"display_url\":\"pic.twitter.com\\/EL3gICOawv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ovie_matt\\/status\\/1554831323415490560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":842,\"resize\":\"fit\"},\"small\":{\"w\":517,\"h\":680,\"resize\":\"fit\"}}}]},\"4317\":{\"media\":[{\"id\":1554830855607951364,\"id_str\":\"1554830855607951364\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPebOJUIAQpaV9.jpg\",\"url\":\"https:\\/\\/t.co\\/MWfCcGsFBl\",\"display_url\":\"pic.twitter.com\\/MWfCcGsFBl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554830864189575175\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":{\"media\":[{\"id\":1554825216634675202,\"id_str\":\"1554825216634675202\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554825216634675202\\/pu\\/img\\/q6jO7XkV4Js1XQIN.jpg\",\"url\":\"https:\\/\\/t.co\\/1GLM8ZiUMW\",\"display_url\":\"pic.twitter.com\\/1GLM8ZiUMW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/abubillaal\\/status\\/1554825762682769413\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":772,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[270,193],\"duration_millis\":45001,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/376x270\\/dNDV32Xx_DI_JAdF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/1006x720\\/Ajo3bdAgI8WgH3RV.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/vid\\/502x360\\/ZbeONbVUqM4ThY0Y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554825216634675202\\/pu\\/pl\\/OyyGHwEQ9GCW8AyZ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4323\":null,\"4324\":null,\"4325\":{\"media\":[{\"id\":1554825360847486980,\"id_str\":\"1554825360847486980\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZbYkVQAQQSDs.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554825418313592840,\"id_str\":\"1554825418313592840\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZeupUcAgJi9J.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZeupUcAgJi9J.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":677,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":995,\"resize\":\"fit\"}}},{\"id\":1554825443135537152,\"id_str\":\"1554825443135537152\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZgLHVQAAxJ_C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZgLHVQAAxJ_C.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554825511334866944,\"id_str\":\"1554825511334866944\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZkJLUcAADFnP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZkJLUcAADFnP.jpg\",\"url\":\"https:\\/\\/t.co\\/T5NqupYC6a\",\"display_url\":\"pic.twitter.com\\/T5NqupYC6a\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577894330369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1132,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1061,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":601,\"resize\":\"fit\"}}}]},\"4326\":{\"media\":[{\"id\":1554825494058508289,\"id_str\":\"1554825494058508289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZjI0UIAEIrdK.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"medium\":{\"w\":999,\"h\":981,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"}}},{\"id\":1554825497372020736,\"id_str\":\"1554825497372020736\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZjVKUUAABLDF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZjVKUUAABLDF.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":944,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}},{\"id\":1554825551432495104,\"id_str\":\"1554825551432495104\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZmejVsAAt-Kh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZmejVsAAt-Kh.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":709,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":709,\"resize\":\"fit\"}}},{\"id\":1554825573876187136,\"id_str\":\"1554825573876187136\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZnyKVQAACmW_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZnyKVQAACmW_.jpg\",\"url\":\"https:\\/\\/t.co\\/UkfME0jLGW\",\"display_url\":\"pic.twitter.com\\/UkfME0jLGW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825577231552513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4327\":{\"media\":[{\"id\":1554825262377811968,\"id_str\":\"1554825262377811968\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVpvVQAAKhPN.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554825293700878336,\"id_str\":\"1554825293700878336\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZXebVUAAS_hJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZXebVUAAS_hJ.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554825323253878786,\"id_str\":\"1554825323253878786\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZZMhUUAIkf-P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZZMhUUAIkf-P.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554825341511749633,\"id_str\":\"1554825341511749633\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZaQiVUAEopOo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZaQiVUAEopOo.jpg\",\"url\":\"https:\\/\\/t.co\\/XbSVyWeGe9\",\"display_url\":\"pic.twitter.com\\/XbSVyWeGe9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825410940002307\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4328\":{\"media\":[{\"id\":1554825186494427139,\"id_str\":\"1554825186494427139\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZRPDUsAMCze9.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554825256203722752,\"id_str\":\"1554825256203722752\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVSvUIAAOd5t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVSvUIAAOd5t.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825262390341632,\"id_str\":\"1554825262390341632\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZVpyUcAAK68K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZVpyUcAAK68K.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825288944455681,\"id_str\":\"1554825288944455681\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZXMtUEAEFUCD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZXMtUEAEFUCD.jpg\",\"url\":\"https:\\/\\/t.co\\/ImtNlfKkxu\",\"display_url\":\"pic.twitter.com\\/ImtNlfKkxu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825293419778048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}}]},\"4329\":{\"media\":[{\"id\":1554825064314417152,\"id_str\":\"1554825064314417152\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZKH5VsAALJui.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825074569490432,\"id_str\":\"1554825074569490432\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZKuGVsAAtri3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZKuGVsAAtri3.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825080244383749,\"id_str\":\"1554825080244383749\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZLDPVsAUBVMH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZLDPVsAUBVMH.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554825086225375239,\"id_str\":\"1554825086225375239\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZLZhUYAcQGDD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZLZhUYAcQGDD.jpg\",\"url\":\"https:\\/\\/t.co\\/qpHGdNJgKE\",\"display_url\":\"pic.twitter.com\\/qpHGdNJgKE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554825089337606144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"},\"medium\":{\"w\":581,\"h\":1032,\"resize\":\"fit\"}}}]},\"4330\":{\"media\":[{\"id\":1554824914997104643,\"id_str\":\"1554824914997104643\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZBbpUUAM8sUd.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":527,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":837,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824921926184960,\"id_str\":\"1554824921926184960\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZB1dVsAAnUTi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZB1dVsAAnUTi.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":794,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":500,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824925453504514,\"id_str\":\"1554824925453504514\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZCCmUUAI0P3C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZCCmUUAI0P3C.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":944,\"h\":1156,\"resize\":\"fit\"},\"small\":{\"w\":555,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":944,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554824981455859712,\"id_str\":\"1554824981455859712\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPZFTOUcAAYF3f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPZFTOUcAAYF3f.jpg\",\"url\":\"https:\\/\\/t.co\\/t5nQgp3nRr\",\"display_url\":\"pic.twitter.com\\/t5nQgp3nRr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824984425480199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":769,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":769,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":484,\"h\":680,\"resize\":\"fit\"}}}]},\"4331\":{\"media\":[{\"id\":1554824782532661254,\"id_str\":\"1554824782532661254\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY5uLVUAY0Z_H.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1032,\"resize\":\"fit\"}}},{\"id\":1554824804129157120,\"id_str\":\"1554824804129157120\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY6-oVsAAviLF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY6-oVsAAviLF.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554824850769735680,\"id_str\":\"1554824850769735680\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY9sYUcAAkReF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY9sYUcAAkReF.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1067,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1067,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1554824877369991169,\"id_str\":\"1554824877369991169\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY_PeUIAEHfDt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY_PeUIAEHfDt.jpg\",\"url\":\"https:\\/\\/t.co\\/0mDVY3VN2i\",\"display_url\":\"pic.twitter.com\\/0mDVY3VN2i\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824889399250947\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1038,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":654,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1038,\"h\":1080,\"resize\":\"fit\"}}}]},\"4332\":{\"media\":[{\"id\":1554824708050132994,\"id_str\":\"1554824708050132994\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY1YtUIAIsJ2t.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1554824799137849344,\"id_str\":\"1554824799137849344\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY6sCUYAAKDD5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY6sCUYAAKDD5.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1042,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1042,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":656,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824802572984321,\"id_str\":\"1554824802572984321\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY641UYAEeiNj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY641UYAEeiNj.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824849872171016,\"id_str\":\"1554824849872171016\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY9pCUsAgZ5ec.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY9pCUsAgZ5ec.jpg\",\"url\":\"https:\\/\\/t.co\\/3vCdF9DKEy\",\"display_url\":\"pic.twitter.com\\/3vCdF9DKEy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824875520299010\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1231,\"h\":1165,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":644,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1136,\"resize\":\"fit\"}}}]},\"4333\":null,\"4334\":{\"media\":[{\"id\":1554824580723724289,\"id_str\":\"1554824580723724289\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYt-YVUAEnZBv.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1554824630510108674,\"id_str\":\"1554824630510108674\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYw32VQAIGIwO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYw32VQAIGIwO.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824681982529537,\"id_str\":\"1554824681982529537\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYz3mUEAE4nA0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYz3mUEAE4nA0.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1231,\"h\":1165,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":644,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1136,\"resize\":\"fit\"}}},{\"id\":1554824756091727872,\"id_str\":\"1554824756091727872\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPY4LrUsAAtWbE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPY4LrUsAAtWbE.jpg\",\"url\":\"https:\\/\\/t.co\\/HR0p122ocB\",\"display_url\":\"pic.twitter.com\\/HR0p122ocB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824799146323969\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4335\":{\"media\":[{\"id\":1554824485064192000,\"id_str\":\"1554824485064192000\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYoaBUsAA5hLa.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":615,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":976,\"resize\":\"fit\"}}},{\"id\":1554824580740444160,\"id_str\":\"1554824580740444160\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYt-cUcAAVWxg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYt-cUcAAVWxg.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1012,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"}}},{\"id\":1554824658637139971,\"id_str\":\"1554824658637139971\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYygoVsAMrXgH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYygoVsAMrXgH.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1030,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824682615975937,\"id_str\":\"1554824682615975937\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYz59VsAEBz1s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYz59VsAEBz1s.jpg\",\"url\":\"https:\\/\\/t.co\\/cNMzR9WUeH\",\"display_url\":\"pic.twitter.com\\/cNMzR9WUeH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824748428697602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1012,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1012,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":637,\"h\":680,\"resize\":\"fit\"}}}]},\"4336\":null,\"4337\":{\"media\":[{\"id\":1554824406114832386,\"id_str\":\"1554824406114832386\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYjz6VEAIm5Jt.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824447177084931,\"id_str\":\"1554824447177084931\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYmM4VUAMGoHM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYmM4VUAMGoHM.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824461244805121,\"id_str\":\"1554824461244805121\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYnBSVsAEtwz8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYnBSVsAEtwz8.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824557176844294,\"id_str\":\"1554824557176844294\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYsmqUcAYArG-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYsmqUcAYArG-.jpg\",\"url\":\"https:\\/\\/t.co\\/UyhQgGwCHt\",\"display_url\":\"pic.twitter.com\\/UyhQgGwCHt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824624193474563\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4338\":{\"media\":[{\"id\":1554824310216265728,\"id_str\":\"1554824310216265728\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYeOqVEAAVDob.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1060,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":667,\"resize\":\"fit\"}}},{\"id\":1554824353753157632,\"id_str\":\"1554824353753157632\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYgw2VUAAHgbD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYgw2VUAAHgbD.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824369213280259,\"id_str\":\"1554824369213280259\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYhqcUEAM2Yu7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYhqcUEAM2Yu7.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":565,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"}}},{\"id\":1554824387471110146,\"id_str\":\"1554824387471110146\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYiudUcAItEzW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYiudUcAItEzW.jpg\",\"url\":\"https:\\/\\/t.co\\/HhjcNkXvoR\",\"display_url\":\"pic.twitter.com\\/HhjcNkXvoR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824399785586690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1046,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":659,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1046,\"resize\":\"fit\"}}}]},\"4339\":{\"media\":[{\"id\":1554824210907684867,\"id_str\":\"1554824210907684867\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYYctUYAMoFtN.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824241073098757,\"id_str\":\"1554824241073098757\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYaNFUEAUL7BF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYaNFUEAUL7BF.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824291157348353,\"id_str\":\"1554824291157348353\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYdHqVEAEFpIm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYdHqVEAEFpIm.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824314163040256,\"id_str\":\"1554824314163040256\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYedXUEAAuTaQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYedXUEAAuTaQ.jpg\",\"url\":\"https:\\/\\/t.co\\/0yfepVxBdt\",\"display_url\":\"pic.twitter.com\\/0yfepVxBdt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824354432552960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4340\":{\"media\":[{\"id\":1554824123146125312,\"id_str\":\"1554824123146125312\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYTVxVQAAALmW.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554824181262364677,\"id_str\":\"1554824181262364677\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYWuRUsAU8vID.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYWuRUsAU8vID.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554824227542339584,\"id_str\":\"1554824227542339584\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYZarVEAAqf9Y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYZarVEAAqf9Y.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554824262552236035,\"id_str\":\"1554824262552236035\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYbdGVsAM0scF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYbdGVsAM0scF.jpg\",\"url\":\"https:\\/\\/t.co\\/mfd7tNgXeb\",\"display_url\":\"pic.twitter.com\\/mfd7tNgXeb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824304205766656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":565,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":898,\"resize\":\"fit\"}}}]},\"4341\":{\"media\":[{\"id\":1554824058440626177,\"id_str\":\"1554824058440626177\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYPkuVsAEwBri.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}},{\"id\":1554824081819570176,\"id_str\":\"1554824081819570176\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYQ70UEAA3mUT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYQ70UEAA3mUT.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":810,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554824118838517761,\"id_str\":\"1554824118838517761\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYTFuUYAESmhv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYTFuUYAESmhv.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":1160,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":616,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1088,\"resize\":\"fit\"}}},{\"id\":1554824185204994055,\"id_str\":\"1554824185204994055\",\"indices\":[287,310],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPYW89UcAcIVZk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPYW89UcAcIVZk.jpg\",\"url\":\"https:\\/\\/t.co\\/jvcuksjZIE\",\"display_url\":\"pic.twitter.com\\/jvcuksjZIE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kennyshoes1\\/status\\/1554824240989319168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":1000,\"resize\":\"fit\"}}}]},\"4342\":null,\"4343\":{\"media\":[{\"id\":1554823196238442499,\"id_str\":\"1554823196238442499\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554823196238442499\\/pu\\/img\\/ChzK_NC3cKzNxQc_.jpg\",\"url\":\"https:\\/\\/t.co\\/GNZfMrWyoH\",\"display_url\":\"pic.twitter.com\\/GNZfMrWyoH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobinson10\\/status\\/1554823249082605570\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30703,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/pl\\/sxXHllIXxKsrHfby.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/vid\\/640x640\\/nxIDAychlR9l3T7T.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/vid\\/320x320\\/pEYrtNhftndYmuNe.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554823196238442499\\/pu\\/vid\\/540x540\\/OycSoKtD3Y01DoNJ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4344\":{\"media\":[{\"id\":1554823128924073984,\"id_str\":\"1554823128924073984\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXZeAUsAAtTyX.jpg\",\"url\":\"https:\\/\\/t.co\\/uN0H1vPHWE\",\"display_url\":\"pic.twitter.com\\/uN0H1vPHWE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flyhezix\\/status\\/1554823137191010304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4345\":{\"media\":[{\"id\":1554822967028109313,\"id_str\":\"1554822967028109313\",\"indices\":[174,197],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPXQC5UUAEjsre.jpg\",\"url\":\"https:\\/\\/t.co\\/dYbMkB0eWO\",\"display_url\":\"pic.twitter.com\\/dYbMkB0eWO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pearlz_blaq\\/status\\/1554822970660360192\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":438,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":625,\"h\":970,\"resize\":\"fit\"},\"large\":{\"w\":625,\"h\":970,\"resize\":\"fit\"}}}]},\"4346\":null,\"4347\":{\"media\":[{\"id\":1554821460660629504,\"id_str\":\"1554821460660629504\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPV4XPUsAA6lg8.jpg\",\"url\":\"https:\\/\\/t.co\\/S9yDKiqfdh\",\"display_url\":\"pic.twitter.com\\/S9yDKiqfdh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MoorTony\\/status\\/1554822673993068546\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4348\":null,\"4349\":null,\"4350\":{\"media\":[{\"id\":1554820649977143297,\"id_str\":\"1554820649977143297\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820649977143297\\/pu\\/img\\/pqRsWVWGrNBWyQ96.jpg\",\"url\":\"https:\\/\\/t.co\\/PLgY1dIXk6\",\"display_url\":\"pic.twitter.com\\/PLgY1dIXk6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820786933735425\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":48732,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/480x852\\/eQfNIx8ufZgm5gGj.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/720x1280\\/ibZsVb5kjnoZtDmJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/pl\\/E7d2s_cLVjnNMnnc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820649977143297\\/pu\\/vid\\/320x568\\/nP4t4s1nZpf2sKN_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4351\":{\"media\":[{\"id\":1554820479541596162,\"id_str\":\"1554820479541596162\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554820479541596162\\/pu\\/img\\/vpqv45F-ZgsNNmqP.jpg\",\"url\":\"https:\\/\\/t.co\\/TaQtXc29sS\",\"display_url\":\"pic.twitter.com\\/TaQtXc29sS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554820709485928450\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":48732,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/pl\\/862f9crAq23TjLwj.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/320x568\\/Nf_s9EtWLFLoDpXG.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/720x1280\\/4zmliLuNsuOeLjES.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554820479541596162\\/pu\\/vid\\/480x852\\/BEmNc3qlKMU_RLbY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4352\":{\"media\":[{\"id\":1554820524752179200,\"id_str\":\"1554820524752179200\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPVB4tXEAAfqPp.jpg\",\"url\":\"https:\\/\\/t.co\\/b6Klbwjbg0\",\"display_url\":\"pic.twitter.com\\/b6Klbwjbg0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BBNaija_2022\\/status\\/1554820531186286592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":530,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":530,\"resize\":\"fit\"}}}]},\"4353\":{\"media\":[{\"id\":1554820383890497540,\"id_str\":\"1554820383890497540\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU5r9UYAQWCie.jpg\",\"url\":\"https:\\/\\/t.co\\/YnkSN8AI7d\",\"display_url\":\"pic.twitter.com\\/YnkSN8AI7d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BelloIlias\\/status\\/1554820392237248512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4354\":{\"media\":[{\"id\":1554820340127338497,\"id_str\":\"1554820340127338497\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPU3I7XkAEOd3p.jpg\",\"url\":\"https:\\/\\/t.co\\/zKU1MjgFni\",\"display_url\":\"pic.twitter.com\\/zKU1MjgFni\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RealPOOkeke\\/status\\/1554820342190948353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":616,\"h\":498,\"resize\":\"fit\"},\"large\":{\"w\":616,\"h\":498,\"resize\":\"fit\"}}}]},\"4355\":null,\"4356\":{\"media\":[{\"id\":1554816408265039873,\"id_str\":\"1554816408265039873\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRSRmWIAEGQ-5.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554816418671206402,\"id_str\":\"1554816418671206402\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRS4XXoAIJ8i7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRS4XXoAIJ8i7.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554816423213645826,\"id_str\":\"1554816423213645826\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRTJSXwAIKRlv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRTJSXwAIKRlv.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554816427063902208,\"id_str\":\"1554816427063902208\",\"indices\":[122,145],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRTXoWAAAiSki.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRTXoWAAAiSki.jpg\",\"url\":\"https:\\/\\/t.co\\/JBIOiMjpRc\",\"display_url\":\"pic.twitter.com\\/JBIOiMjpRc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chronicareng\\/status\\/1554816429769252864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4357\":{\"media\":[{\"id\":1554816265025462273,\"id_str\":\"1554816265025462273\",\"indices\":[178,201],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRJ7_XoAETW1-.jpg\",\"url\":\"https:\\/\\/t.co\\/sYSZHcYIuU\",\"display_url\":\"pic.twitter.com\\/sYSZHcYIuU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DejavuDmj\\/status\\/1554816276471681024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4358\":null,\"4359\":{\"media\":[{\"id\":1554815484083716096,\"id_str\":\"1554815484083716096\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPQcewWQAAfYNM.jpg\",\"url\":\"https:\\/\\/t.co\\/2hrwFNjoTy\",\"display_url\":\"pic.twitter.com\\/2hrwFNjoTy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oneilj386\\/status\\/1554815491369324544\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"4360\":{\"media\":[{\"id\":1554814985557123072,\"id_str\":\"1554814985557123072\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPP_dmWIAA1qlE.png\",\"url\":\"https:\\/\\/t.co\\/gibonV5QKp\",\"display_url\":\"pic.twitter.com\\/gibonV5QKp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554815003668135939\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":506,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4361\":{\"media\":[{\"id\":1554814611970560000,\"id_str\":\"1554814611970560000\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPpt4XkAA_uP0.jpg\",\"url\":\"https:\\/\\/t.co\\/V1HrxtBzz9\",\"display_url\":\"pic.twitter.com\\/V1HrxtBzz9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Obi_ajulu\\/status\\/1554814620853993475\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4362\":{\"media\":[{\"id\":1554814493322088450,\"id_str\":\"1554814493322088450\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPPiz4XkAIGKbX.jpg\",\"url\":\"https:\\/\\/t.co\\/hXgO9IeAYb\",\"display_url\":\"pic.twitter.com\\/hXgO9IeAYb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554814505036693506\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":943,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}}}]},\"4363\":null,\"4364\":{\"media\":[{\"id\":1554813734006161408,\"id_str\":\"1554813734006161408\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813734006161408\\/pu\\/img\\/etOTjmc53-5nGnL-.jpg\",\"url\":\"https:\\/\\/t.co\\/JioBYqDFhh\",\"display_url\":\"pic.twitter.com\\/JioBYqDFhh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Naijamatterblog\\/status\\/1554813907788877827\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":960,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[3,4],\"duration_millis\":88788,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/pl\\/1Bnr26kr7PtweBKl.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/vid\\/320x426\\/LcjX47LOTAq9IVEu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/vid\\/480x640\\/Qe4ItBrKi_KFAM56.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813734006161408\\/pu\\/vid\\/720x960\\/MG8WOGv0O2tUnaiV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4365\":{\"media\":[{\"id\":1554813716616691714,\"id_str\":\"1554813716616691714\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813716616691714\\/pu\\/img\\/CJv_L1MLkRvp9aLO.jpg\",\"url\":\"https:\\/\\/t.co\\/2Shx63fCq9\",\"display_url\":\"pic.twitter.com\\/2Shx63fCq9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554813806672596994\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":1202,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,601],\"duration_millis\":29333,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/vid\\/640x1202\\/OIAVDXbvW9Y5Y-BA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/pl\\/sPsIRBz9wnwHK5Nk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/vid\\/480x900\\/7XoHTjyVwg3IK4rC.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813716616691714\\/pu\\/vid\\/320x600\\/ehmIkwhPP_0OOUSb.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4366\":{\"media\":[{\"id\":1554813660085755907,\"id_str\":\"1554813660085755907\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554813660085755907\\/pu\\/img\\/SOBCrdFMu25-B3mk.jpg\",\"url\":\"https:\\/\\/t.co\\/estdPqJOQ4\",\"display_url\":\"pic.twitter.com\\/estdPqJOQ4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aprokorepublic\\/status\\/1554813725508571137\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":856,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"medium\":{\"w\":856,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[107,60],\"duration_millis\":39032,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/vid\\/856x480\\/w8Pwxvag97ivksKn.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/vid\\/642x360\\/zeISTsnDb3BFkewF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/vid\\/480x270\\/303V_TCywWZDJw0v.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554813660085755907\\/pu\\/pl\\/6QpdcllibxtCU6wT.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4367\":{\"media\":[{\"id\":1554813486064189442,\"id_str\":\"1554813486064189442\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOoLjXwAI_Unl.jpg\",\"url\":\"https:\\/\\/t.co\\/n0O3V41onu\",\"display_url\":\"pic.twitter.com\\/n0O3V41onu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554813586194792448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"4368\":{\"media\":[{\"id\":1554813279620440064,\"id_str\":\"1554813279620440064\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcKfWIAADUDM.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554813290718584834,\"id_str\":\"1554813290718584834\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOcz1WYAIMEB0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOcz1WYAIMEB0.jpg\",\"url\":\"https:\\/\\/t.co\\/iXZauOmaOF\",\"display_url\":\"pic.twitter.com\\/iXZauOmaOF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ememsef\\/status\\/1554813299744800768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4369\":{\"media\":[{\"id\":1554813156626677760,\"id_str\":\"1554813156626677760\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVATWQAAcgck.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":817,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":514,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554813163618672640,\"id_str\":\"1554813163618672640\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOVaWXoAAkxbX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOVaWXoAAkxbX.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554813171738857474,\"id_str\":\"1554813171738857474\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOV4mX0AI_hjg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOV4mX0AI_hjg.jpg\",\"url\":\"https:\\/\\/t.co\\/ijo5LBjCky\",\"display_url\":\"pic.twitter.com\\/ijo5LBjCky\",\"expanded_url\":\"https:\\/\\/twitter.com\\/betsmasterspro\\/status\\/1554813174087655424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":898,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":898,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"}}}]},\"4370\":{\"media\":[{\"id\":1554812894998663169,\"id_str\":\"1554812894998663169\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOFxqXkAEE70K.png\",\"url\":\"https:\\/\\/t.co\\/8b4mXYiRXi\",\"display_url\":\"pic.twitter.com\\/8b4mXYiRXi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812936102838272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":473,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":501,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4371\":{\"media\":[{\"id\":1554812860714418178,\"id_str\":\"1554812860714418178\",\"indices\":[150,173],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPODx8XgAI-oqL.jpg\",\"url\":\"https:\\/\\/t.co\\/eImPrKR2Vs\",\"display_url\":\"pic.twitter.com\\/eImPrKR2Vs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequesttimes\\/status\\/1554812868356349954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4372\":{\"media\":[{\"id\":1554812796168294401,\"id_str\":\"1554812796168294401\",\"indices\":[116,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPOABfX0AESxXW.jpg\",\"url\":\"https:\\/\\/t.co\\/LfYSxPZruW\",\"display_url\":\"pic.twitter.com\\/LfYSxPZruW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BibleWonderLand\\/status\\/1554812801448902656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4373\":{\"media\":[{\"id\":1554812704623366144,\"id_str\":\"1554812704623366144\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPN6sdXEAAUE46.jpg\",\"url\":\"https:\\/\\/t.co\\/BWJR5IVhyG\",\"display_url\":\"pic.twitter.com\\/BWJR5IVhyG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obi_Jules\\/status\\/1554812726647611393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4374\":{\"media\":[{\"id\":1554812325546303490,\"id_str\":\"1554812325546303490\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNkoSWIAIUxKz.png\",\"url\":\"https:\\/\\/t.co\\/8wVAc3JTrI\",\"display_url\":\"pic.twitter.com\\/8wVAc3JTrI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812455939092480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":399,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":399,\"resize\":\"fit\"}}}]},\"4375\":{\"media\":[{\"id\":1554812082058678272,\"id_str\":\"1554812082058678272\",\"indices\":[227,250],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNWdOX0AA3x_F.jpg\",\"url\":\"https:\\/\\/t.co\\/aFCQiipXKe\",\"display_url\":\"pic.twitter.com\\/aFCQiipXKe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554812098168754176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}}}]},\"4376\":null,\"4377\":{\"media\":[{\"id\":1554811869684187136,\"id_str\":\"1554811869684187136\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPNKGEWQAAh0qZ.jpg\",\"url\":\"https:\\/\\/t.co\\/5gYFCbiciT\",\"display_url\":\"pic.twitter.com\\/5gYFCbiciT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554811872351866882\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":632,\"resize\":\"fit\"},\"large\":{\"w\":1018,\"h\":946,\"resize\":\"fit\"}}}]},\"4378\":null,\"4379\":{\"media\":[{\"id\":1554810869346979841,\"id_str\":\"1554810869346979841\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPMP3hX0AEbpfS.jpg\",\"url\":\"https:\\/\\/t.co\\/MTTKUFXeL5\",\"display_url\":\"pic.twitter.com\\/MTTKUFXeL5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldmyneTV\\/status\\/1554810881116078080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":598,\"h\":341,\"resize\":\"fit\"},\"large\":{\"w\":598,\"h\":341,\"resize\":\"fit\"}}},{\"id\":1554810869309120512,\"id_str\":\"1554810869309120512\",\"indices\":[241,264],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPMP3YWIAAK5Jr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPMP3YWIAAK5Jr.jpg\",\"url\":\"https:\\/\\/t.co\\/MTTKUFXeL5\",\"display_url\":\"pic.twitter.com\\/MTTKUFXeL5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GoldmyneTV\\/status\\/1554810881116078080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"4380\":{\"media\":[{\"id\":1554809250807005184,\"id_str\":\"1554809250807005184\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554809250807005184\\/pu\\/img\\/ie6HlYWP7Vfurlai.jpg\",\"url\":\"https:\\/\\/t.co\\/dSvzH9zKm6\",\"display_url\":\"pic.twitter.com\\/dSvzH9zKm6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AFRHNig\\/status\\/1554810633786466306\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":29226,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/vid\\/960x540\\/zVrGGcAELd4aYydF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/vid\\/480x270\\/SNC3V8fSmH6Pk6GJ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/vid\\/640x360\\/BPkIU_1TSNlrYNSR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554809250807005184\\/pu\\/pl\\/eaGfqS1s-XMImxZ-.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4381\":null,\"4382\":{\"media\":[{\"id\":1554807689947095040,\"id_str\":\"1554807689947095040\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPJWzVXoAA2l0D.jpg\",\"url\":\"https:\\/\\/t.co\\/c4YyJ55VCk\",\"display_url\":\"pic.twitter.com\\/c4YyJ55VCk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamdannylaurels\\/status\\/1554807692920766467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"4383\":{\"media\":[{\"id\":1554807508396539907,\"id_str\":\"1554807508396539907\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807508396539907\\/pu\\/img\\/G9gDAuOmG7-P1QhE.jpg\",\"url\":\"https:\\/\\/t.co\\/ON0Rt9DZRR\",\"display_url\":\"pic.twitter.com\\/ON0Rt9DZRR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ezeego_of_igbo\\/status\\/1554807550247313408\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":9330,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807508396539907\\/pu\\/vid\\/448x848\\/RrAimtdPcFqsOWJE.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807508396539907\\/pu\\/pl\\/dsAotFhvaTNEzzjH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807508396539907\\/pu\\/vid\\/320x604\\/be4seH6Lhp5qg0gZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4384\":{\"media\":[{\"id\":1554807453371580416,\"id_str\":\"1554807453371580416\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554807453371580416\\/pu\\/img\\/aLq17gdkCZl8H3ql.jpg\",\"url\":\"https:\\/\\/t.co\\/gEEUK9uuNT\",\"display_url\":\"pic.twitter.com\\/gEEUK9uuNT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oluwanonieefa\\/status\\/1554807534371966981\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":10866,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807453371580416\\/pu\\/vid\\/320x564\\/aw8x8m3XmDbKDf4g.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807453371580416\\/pu\\/vid\\/480x848\\/WuljE3NRl_B-OLuT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554807453371580416\\/pu\\/pl\\/rEd_uSsYFgi1dFYb.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4385\":null,\"4386\":{\"media\":[{\"id\":1554806476836831233,\"id_str\":\"1554806476836831233\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPIQMJWAAEwyg9.png\",\"url\":\"https:\\/\\/t.co\\/VHF846Ucn9\",\"display_url\":\"pic.twitter.com\\/VHF846Ucn9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DailyTimesNGR\\/status\\/1554806541835968512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4387\":{\"media\":[{\"id\":1554806422696873985,\"id_str\":\"1554806422696873985\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPINCdX0AEqQ3v.jpg\",\"url\":\"https:\\/\\/t.co\\/Rh4GEKiBzb\",\"display_url\":\"pic.twitter.com\\/Rh4GEKiBzb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iam_Gpphilipson\\/status\\/1554806450366681088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4388\":{\"media\":[{\"id\":1554806097223028736,\"id_str\":\"1554806097223028736\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPH6F-XEAAeUGa.jpg\",\"url\":\"https:\\/\\/t.co\\/zhcpeyoRtP\",\"display_url\":\"pic.twitter.com\\/zhcpeyoRtP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554806099894747138\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4389\":null,\"4390\":{\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11580,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/320x568\\/ZOQ-_UIIaGkU9o8N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/720x1280\\/8tBG1Zpu4V46u-8y.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/480x852\\/Lk8d_qAHDxCa5cZv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/pl\\/vIu2QsjZeRzHb8P0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4391\":{\"media\":[{\"id\":1554804189703847939,\"id_str\":\"1554804189703847939\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804189703847939\\/pu\\/img\\/6flh7W__xb7hYp0q.jpg\",\"url\":\"https:\\/\\/t.co\\/DbuVmtLuX0\",\"display_url\":\"pic.twitter.com\\/DbuVmtLuX0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/1880Tgold\\/status\\/1554804475784740865\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":44977,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/vid\\/320x568\\/XBp1CxDKJM-c8VDt.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/pl\\/qAUBVkY3xDeaxRj6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/vid\\/480x852\\/Vs8D5k6ehyscdGrv.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804189703847939\\/pu\\/vid\\/720x1280\\/aWcIZqyeBnMX7eQf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4392\":{\"media\":[{\"id\":1554804166379405312,\"id_str\":\"1554804166379405312\",\"indices\":[208,231],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554804166379405312\\/pu\\/img\\/CwBxq-QvN8p65Tgb.jpg\",\"url\":\"https:\\/\\/t.co\\/DLkbtWYTnR\",\"display_url\":\"pic.twitter.com\\/DLkbtWYTnR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fagman01\\/status\\/1554804208410497028\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":64367,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804166379405312\\/pu\\/pl\\/vViQx9Z7fxEq9n8a.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554804166379405312\\/pu\\/vid\\/480x270\\/MQE1_1rUnzNIKte1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4393\":null,\"4394\":{\"media\":[{\"id\":1554801684659986434,\"id_str\":\"1554801684659986434\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801684659986434\\/pu\\/img\\/kJTQ5nn_6iw6M-qb.jpg\",\"url\":\"https:\\/\\/t.co\\/9RTAmNicmh\",\"display_url\":\"pic.twitter.com\\/9RTAmNicmh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Slimtalker2\\/status\\/1554801857461207042\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":35100,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/720x1280\\/EVyzzYJFPmhZifBW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/pl\\/XQQbrgiuZJylLfgA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/320x568\\/l-VxUO56r9GkvvIB.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801684659986434\\/pu\\/vid\\/480x852\\/SOZVc8ElWEq-woMF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4395\":{\"media\":[{\"id\":1554801195738439681,\"id_str\":\"1554801195738439681\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554801195738439681\\/pu\\/img\\/w-QbbSf3mhnM9Y3_.jpg\",\"url\":\"https:\\/\\/t.co\\/o6BiiEBYiS\",\"display_url\":\"pic.twitter.com\\/o6BiiEBYiS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554801255620530179\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":14366,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/640x360\\/R3CKMIfptNneM9QP.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/1280x720\\/h7GyWvQQihXvSB2-.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/vid\\/480x270\\/kpB_plGZ8xzrhxXu.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554801195738439681\\/pu\\/pl\\/IZJgEXeo6AMVmit1.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4396\":{\"media\":[{\"id\":1554800794024697857,\"id_str\":\"1554800794024697857\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPDFaBWYAEB61T.jpg\",\"url\":\"https:\\/\\/t.co\\/icrt1AKjYF\",\"display_url\":\"pic.twitter.com\\/icrt1AKjYF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/vintagebraidwig\\/status\\/1554800801729724418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":453,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1365,\"h\":2048,\"resize\":\"fit\"}}}]},\"4397\":{\"media\":[{\"id\":1554800216875966466,\"id_str\":\"1554800216875966466\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554800216875966466\\/pu\\/img\\/Iyu1j8utKdXyRWh6.jpg\",\"url\":\"https:\\/\\/t.co\\/UZZgqgILDK\",\"display_url\":\"pic.twitter.com\\/UZZgqgILDK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/omoleye_victor\\/status\\/1554800267329159170\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":20033,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/480x270\\/WMZcf3scSBoL46Q6.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/640x360\\/qThLdgVoaQNHtPAx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/vid\\/1280x720\\/r3BwBLho7L-dj3Mz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554800216875966466\\/pu\\/pl\\/WiS4PqMlx0SyKXQe.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4398\":{\"media\":[{\"id\":1554799794090016770,\"id_str\":\"1554799794090016770\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554799794090016770\\/pu\\/img\\/Uo1uVviyYrnrhiLN.jpg\",\"url\":\"https:\\/\\/t.co\\/EW1947qUVk\",\"display_url\":\"pic.twitter.com\\/EW1947qUVk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gerard33720673\\/status\\/1554799845730390018\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":324,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":1008,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[10,21],\"duration_millis\":23265,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554799794090016770\\/pu\\/vid\\/320x672\\/hWB0odTVY46kwgbx.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554799794090016770\\/pu\\/vid\\/480x1008\\/lvPkY8MQGE3ob6c9.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554799794090016770\\/pu\\/pl\\/GhOR96Q84aUYxBeI.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4399\":{\"media\":[{\"id\":1554798709073911809,\"id_str\":\"1554798709073911809\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPBMC-WIAEAXmJ.jpg\",\"url\":\"https:\\/\\/t.co\\/LkMKDvqJve\",\"display_url\":\"pic.twitter.com\\/LkMKDvqJve\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UnityRadioFMTV\\/status\\/1554798804939206656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4400\":{\"media\":[{\"id\":1554797955626024960,\"id_str\":\"1554797955626024960\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554797955626024960\\/pu\\/img\\/z0xque6xK2ulOdQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cGChk2NcVy\",\"display_url\":\"pic.twitter.com\\/cGChk2NcVy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554798185935261696\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":429,\"resize\":\"fit\"},\"large\":{\"w\":1142,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[571,360],\"duration_millis\":42780,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/428x270\\/-eniFpbHke4n_cy0.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/1142x720\\/GgGpgjKFuObloY2n.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/vid\\/570x360\\/7l42HpQMQqHkDD5f.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554797955626024960\\/pu\\/pl\\/krZci46oqBKcEgeh.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4401\":null,\"4402\":{\"media\":[{\"id\":1554797618454302743,\"id_str\":\"1554797618454302743\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAMkGXkBcplbA.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554797643758538753,\"id_str\":\"1554797643758538753\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPAOCXXkAEWbv1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPAOCXXkAEWbv1.jpg\",\"url\":\"https:\\/\\/t.co\\/PG3TnovTVs\",\"display_url\":\"pic.twitter.com\\/PG3TnovTVs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/globlog3\\/status\\/1554797655632510976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4403\":{\"media\":[{\"id\":1554796946602299393,\"id_str\":\"1554796946602299393\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_ldQXkAE07gc.jpg\",\"url\":\"https:\\/\\/t.co\\/nSVh0YDIcv\",\"display_url\":\"pic.twitter.com\\/nSVh0YDIcv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_Mr_Izi1\\/status\\/1554796964734189569\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"}}}]},\"4404\":null,\"4405\":{\"media\":[{\"id\":1554796541466009601,\"id_str\":\"1554796541466009601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N4AWYAEQzWf.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554796541474398210,\"id_str\":\"1554796541474398210\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N4CWYAI7mNo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N4CWYAI7mNo.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554796541709262849,\"id_str\":\"1554796541709262849\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAElYWF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAElYWF.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554796541709262848,\"id_str\":\"1554796541709262848\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAAdQT2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO_N46WIAAdQT2.jpg\",\"url\":\"https:\\/\\/t.co\\/G78fRR0Nhi\",\"display_url\":\"pic.twitter.com\\/G78fRR0Nhi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554796586932248578\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"4406\":{\"media\":[{\"id\":1554796177798975488,\"id_str\":\"1554796177798975488\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554796177798975488\\/pu\\/img\\/A1AOfbeFPARIJnY4.jpg\",\"url\":\"https:\\/\\/t.co\\/rfTY04O9Pw\",\"display_url\":\"pic.twitter.com\\/rfTY04O9Pw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/jay_dee_akaa\\/status\\/1554796314440916992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59611,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/pl\\/rZakeotrYlqkC7yf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/480x852\\/gCpsFttjBpA-Wk1A.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/320x568\\/uM_fvZNwCW5R8hst.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554796177798975488\\/pu\\/vid\\/720x1280\\/C-_T38qhviwjpsKQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4407\":{\"media\":[{\"id\":1554795574276378624,\"id_str\":\"1554795574276378624\",\"indices\":[42,65],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554795574276378624\\/pu\\/img\\/V98Ghdt854Uq59_O.jpg\",\"url\":\"https:\\/\\/t.co\\/pQkRLWUnmy\",\"display_url\":\"pic.twitter.com\\/pQkRLWUnmy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lumy01609368\\/status\\/1554796164574285829\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":33700,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/vid\\/480x852\\/7D1bdV_UcKmqtkxF.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/vid\\/320x568\\/QZH5_ciSd7kXtShH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/pl\\/IZ0Jbcf0mzFillLn.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554795574276378624\\/pu\\/vid\\/576x1024\\/cjhEJln-PuOVMJ85.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4408\":{\"media\":[{\"id\":1554795275495133184,\"id_str\":\"1554795275495133184\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-EL5X0AAM2V5.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554795290355503105,\"id_str\":\"1554795290355503105\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-FDQXEAE2Zru.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-FDQXEAE2Zru.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554795304175734785,\"id_str\":\"1554795304175734785\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO-F2vXEAEv25h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO-F2vXEAEv25h.jpg\",\"url\":\"https:\\/\\/t.co\\/p0ziCwgJI7\",\"display_url\":\"pic.twitter.com\\/p0ziCwgJI7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/larrieoluks\\/status\\/1554795312786669568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"4409\":{\"media\":[{\"id\":1554794709524090881,\"id_str\":\"1554794709524090881\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO9jPfXEAEAVKJ.jpg\",\"url\":\"https:\\/\\/t.co\\/8La4uS2TFA\",\"display_url\":\"pic.twitter.com\\/8La4uS2TFA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanul_max\\/status\\/1554794720462766080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1031,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1445,\"resize\":\"fit\"},\"small\":{\"w\":584,\"h\":680,\"resize\":\"fit\"}}}]},\"4410\":null,\"4411\":{\"media\":[{\"id\":1554793885666344960,\"id_str\":\"1554793885666344960\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8zSYXgAA00hj.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554793901256491009,\"id_str\":\"1554793901256491009\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO80MdWQAESQZ2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO80MdWQAESQZ2.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554793915160698881,\"id_str\":\"1554793915160698881\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO81AQXoAEt5yQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO81AQXoAEt5yQ.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"},\"medium\":{\"w\":756,\"h\":1008,\"resize\":\"fit\"}}},{\"id\":1554793925273083905,\"id_str\":\"1554793925273083905\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO81l7WYAEdTOi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO81l7WYAEdTOi.jpg\",\"url\":\"https:\\/\\/t.co\\/6Nun516WPx\",\"display_url\":\"pic.twitter.com\\/6Nun516WPx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MarsSolar__\\/status\\/1554793938686562304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4412\":{\"media\":[{\"id\":1554793397369638913,\"id_str\":\"1554793397369638913\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO8W3VXEAE0WnS.jpg\",\"url\":\"https:\\/\\/t.co\\/S3lEOp6zY1\",\"display_url\":\"pic.twitter.com\\/S3lEOp6zY1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NicertGroup\\/status\\/1554793400167272450\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":808,\"resize\":\"fit\"}}}]},\"4413\":{\"media\":[{\"id\":1554792927439855616,\"id_str\":\"1554792927439855616\",\"indices\":[294,317],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO77gtXoAASWyl.jpg\",\"url\":\"https:\\/\\/t.co\\/Vz160FKf2U\",\"display_url\":\"pic.twitter.com\\/Vz160FKf2U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554792947694112770\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"}}}]},\"4414\":null,\"4415\":null,\"4416\":{\"media\":[{\"id\":1554790943148199937,\"id_str\":\"1554790943148199937\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6IApX0AEuQYq.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554790953642299394,\"id_str\":\"1554790953642299394\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6InvXEAIiXKs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6InvXEAIiXKs.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554790957198999552,\"id_str\":\"1554790957198999552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6I0_WAAAybbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6I0_WAAAybbU.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"}}},{\"id\":1554790961238228993,\"id_str\":\"1554790961238228993\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO6JECXwAEDXT0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO6JECXwAEDXT0.jpg\",\"url\":\"https:\\/\\/t.co\\/Ce01378CRB\",\"display_url\":\"pic.twitter.com\\/Ce01378CRB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aso_palace\\/status\\/1554790964002168853\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":780,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":780,\"resize\":\"fit\"}}}]},\"4417\":{\"media\":[{\"id\":1554790640617226240,\"id_str\":\"1554790640617226240\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZoXgAAsiBV.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640604545025,\"id_str\":\"1554790640604545025\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlWAAEXSAQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlWAAEXSAQ.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640604647424,\"id_str\":\"1554790640604647424\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlXkAAZr8W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZlXkAAZr8W.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554790640591986688,\"id_str\":\"1554790640591986688\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO52ZiWYAAp6FB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO52ZiWYAAp6FB.jpg\",\"url\":\"https:\\/\\/t.co\\/amIdgP6uAv\",\"display_url\":\"pic.twitter.com\\/amIdgP6uAv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/katy_kenzy\\/status\\/1554790650343718916\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1797,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":962,\"h\":1200,\"resize\":\"fit\"}}}]},\"4418\":{\"media\":[{\"id\":1554790528708902913,\"id_str\":\"1554790528708902913\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO5v4vWAAEwsp-.jpg\",\"url\":\"https:\\/\\/t.co\\/zsA7jZ4Y9U\",\"display_url\":\"pic.twitter.com\\/zsA7jZ4Y9U\",\"expanded_url\":\"https:\\/\\/twitter.com\\/hify_2\\/status\\/1554790540369174529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1035,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":{\"media\":[{\"id\":1554789348444356610,\"id_str\":\"1554789348444356610\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554789348444356610\\/pu\\/img\\/hp1Zy3hK0wNlCazD.jpg\",\"url\":\"https:\\/\\/t.co\\/mYK0GhyoiC\",\"display_url\":\"pic.twitter.com\\/mYK0GhyoiC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/breeze_okoye\\/status\\/1554789438236069888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":49340,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554789348444356610\\/pu\\/pl\\/8dCtusDFNm0RxLO8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554789348444356610\\/pu\\/vid\\/320x564\\/ccGEosfJCC7G_5qu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554789348444356610\\/pu\\/vid\\/480x848\\/av6tfmQfxRz8wHOM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4424\":null,\"4425\":{\"media\":[{\"id\":1554788871627587585,\"id_str\":\"1554788871627587585\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO4PboXwAEwxSi.jpg\",\"url\":\"https:\\/\\/t.co\\/ZRsEBIH9Rb\",\"display_url\":\"pic.twitter.com\\/ZRsEBIH9Rb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554788988187283456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1163,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":659,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1984,\"h\":2048,\"resize\":\"fit\"}}}]},\"4426\":null,\"4427\":{\"media\":[{\"id\":1554788201600016387,\"id_str\":\"1554788201600016387\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788201600016387\\/pu\\/img\\/sRnhmNuNB9gyET73.jpg\",\"url\":\"https:\\/\\/t.co\\/qyHhxvm1w1\",\"display_url\":\"pic.twitter.com\\/qyHhxvm1w1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554788274752847874\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/320x568\\/bRWcE6WFZLHQDWRF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/pl\\/5Inde-7IVOC-dnHd.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/576x1024\\/ACNK7S8Qbyw4-sqe.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788201600016387\\/pu\\/vid\\/480x852\\/RYAcIjwcNioVTK7w.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4428\":{\"media\":[{\"id\":1554788030208249862,\"id_str\":\"1554788030208249862\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554788030208249862\\/pu\\/img\\/_TAnFMgX2v63Ygon.jpg\",\"url\":\"https:\\/\\/t.co\\/6Sm8j0zWgv\",\"display_url\":\"pic.twitter.com\\/6Sm8j0zWgv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ugondabai\\/status\\/1554788088794292230\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6833,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/vid\\/480x852\\/u8k7q6IKlEl4C-AK.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/vid\\/720x1280\\/BakGNm1Eiof7MxP_.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/pl\\/c5WB_tQzliuyPmCw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554788030208249862\\/pu\\/vid\\/320x568\\/YFnZRxBfKygbGIHW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4429\":{\"media\":[{\"id\":1554786277551226881,\"id_str\":\"1554786277551226881\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO14b8XwAEV03r.jpg\",\"url\":\"https:\\/\\/t.co\\/LEK6lTXB14\",\"display_url\":\"pic.twitter.com\\/LEK6lTXB14\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554787860460494848\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":{\"media\":[{\"id\":1554786935746560001,\"id_str\":\"1554786935746560001\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO2ev6XgAERKeO.jpg\",\"url\":\"https:\\/\\/t.co\\/XnWs6XKBaB\",\"display_url\":\"pic.twitter.com\\/XnWs6XKBaB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gifshizzle\\/status\\/1554786948564353026\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":827,\"h\":950,\"resize\":\"fit\"},\"small\":{\"w\":592,\"h\":680,\"resize\":\"fit\"}}}]},\"4434\":null,\"4435\":{\"media\":[{\"id\":1554785710649090048,\"id_str\":\"1554785710649090048\",\"indices\":[171,194],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO1XcEXoAArtCg.jpg\",\"url\":\"https:\\/\\/t.co\\/Rb6M4G9bfV\",\"display_url\":\"pic.twitter.com\\/Rb6M4G9bfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tinubufrontier\\/status\\/1554785715841646592\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"4436\":null,\"4437\":{\"media\":[{\"id\":1554785099077517314,\"id_str\":\"1554785099077517314\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZO0z1yWAAIyC_p.jpg\",\"url\":\"https:\\/\\/t.co\\/2VAX1kKY7q\",\"display_url\":\"pic.twitter.com\\/2VAX1kKY7q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BlackdiamondBLD\\/status\\/1554785109202665476\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":764,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":433,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1241,\"h\":1949,\"resize\":\"fit\"}}}]},\"4438\":{\"media\":[{\"id\":1554784568976211977,\"id_str\":\"1554784568976211977\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554784568976211977\\/pu\\/img\\/UT50Z99dIhMP6PP0.jpg\",\"url\":\"https:\\/\\/t.co\\/uMhwIVcM6q\",\"display_url\":\"pic.twitter.com\\/uMhwIVcM6q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lastborn_jess\\/status\\/1554784847402598401\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":320,\"h\":400,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":45000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554784568976211977\\/pu\\/pl\\/xI4WVMS2yj_a2Z3A.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554784568976211977\\/pu\\/vid\\/320x400\\/GJgPjqIp5VtoFFr9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4439\":{\"media\":[{\"id\":1554784146966421507,\"id_str\":\"1554784146966421507\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOz8a5XoAMWBwQ.jpg\",\"url\":\"https:\\/\\/t.co\\/E9xunsffM1\",\"display_url\":\"pic.twitter.com\\/E9xunsffM1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CryptoExxpert24\\/status\\/1554784157557051392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"4440\":{\"media\":[{\"id\":1554782414433558529,\"id_str\":\"1554782414433558529\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXktWIAEaBSK.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554782415100469251,\"id_str\":\"1554782415100469251\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXnMWYAMvVDn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXnMWYAMvVDn.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554782415280914433,\"id_str\":\"1554782415280914433\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyXn3XwAEcogG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyXn3XwAEcogG.jpg\",\"url\":\"https:\\/\\/t.co\\/vcPnlUHPAk\",\"display_url\":\"pic.twitter.com\\/vcPnlUHPAk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/xo_luxury_store\\/status\\/1554783877993988097\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4441\":{\"media\":[{\"id\":1554783590306701312,\"id_str\":\"1554783590306701312\",\"indices\":[43,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzcBLWYAAMwI4.jpg\",\"url\":\"https:\\/\\/t.co\\/ncKzoU40Ie\",\"display_url\":\"pic.twitter.com\\/ncKzoU40Ie\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Uma_zum\\/status\\/1554783617787875334\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":703,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1001,\"h\":1709,\"resize\":\"fit\"},\"small\":{\"w\":398,\"h\":680,\"resize\":\"fit\"}}}]},\"4442\":null,\"4443\":{\"media\":[{\"id\":1554783301650587649,\"id_str\":\"1554783301650587649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzLN2XoAEAmpX.jpg\",\"url\":\"https:\\/\\/t.co\\/Flwl4VS17Y\",\"display_url\":\"pic.twitter.com\\/Flwl4VS17Y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Priceless002\\/status\\/1554783305131753472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":988,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":622,\"resize\":\"fit\"}}}]},\"4444\":{\"media\":[{\"id\":1554782545367240707,\"id_str\":\"1554782545367240707\",\"indices\":[91,114],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyfMeXkAMDT9P.jpg\",\"url\":\"https:\\/\\/t.co\\/5H5czNmAdA\",\"display_url\":\"pic.twitter.com\\/5H5czNmAdA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StEvIe_Alo\\/status\\/1554782552447139840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"4445\":{\"media\":[{\"id\":1554782302357667842,\"id_str\":\"1554782302357667842\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554782302357667842\\/pu\\/img\\/ge-TmXdHR1aVIi1P.jpg\",\"url\":\"https:\\/\\/t.co\\/OBs0ZqYaLT\",\"display_url\":\"pic.twitter.com\\/OBs0ZqYaLT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554782489037742083\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":29866,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782302357667842\\/pu\\/vid\\/352x640\\/eP2Kg1NVlLmpING-.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782302357667842\\/pu\\/vid\\/320x580\\/NQnhrLvumpIT6UHW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554782302357667842\\/pu\\/pl\\/HDuaZISmktSVnu7M.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4446\":{\"media\":[{\"id\":1554782092583641088,\"id_str\":\"1554782092583641088\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOyE1uWIAAhMLg.jpg\",\"url\":\"https:\\/\\/t.co\\/UMTv580EMA\",\"display_url\":\"pic.twitter.com\\/UMTv580EMA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/obetobetta\\/status\\/1554782100057899013\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":514,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":514,\"resize\":\"fit\"}}}]},\"4447\":null,\"4448\":{\"media\":[{\"id\":1554781809900195840,\"id_str\":\"1554781809900195840\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554781809900195840\\/pu\\/img\\/7L0JgidDyR1VY9CV.jpg\",\"url\":\"https:\\/\\/t.co\\/VgI8iwpoFf\",\"display_url\":\"pic.twitter.com\\/VgI8iwpoFf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/theayobami_\\/status\\/1554782000061583360\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45025,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/vid\\/480x852\\/-aIeimXlqGE0_C2L.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/pl\\/FAjozBarIZ_dtJ-W.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/vid\\/720x1280\\/US6hvoJ4RRcehHh2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554781809900195840\\/pu\\/vid\\/320x568\\/bnbbT2mAuG040Msd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4449\":{\"media\":[{\"id\":1554780632630403075,\"id_str\":\"1554780632630403075\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554780632630403075\\/pu\\/img\\/u3x_K9K2LZP2SAzt.jpg\",\"url\":\"https:\\/\\/t.co\\/MrqMUbG8P6\",\"display_url\":\"pic.twitter.com\\/MrqMUbG8P6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Tipcy_Jaej\\/status\\/1554781577946742785\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":333,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":626,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":587,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[313,640],\"duration_millis\":73866,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/626x1280\\/zlNMyHVsx9byXhhK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/pl\\/jFg0DwN-qHUaSwpk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/480x980\\/nqj1rAmBAljIF09M.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554780632630403075\\/pu\\/vid\\/320x654\\/G5869mcMyirKt9BT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4450\":null,\"4451\":{\"media\":[{\"id\":1554780148741939201,\"id_str\":\"1554780148741939201\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwTsWXoAE40dv.jpg\",\"url\":\"https:\\/\\/t.co\\/f2CdRuT9tm\",\"display_url\":\"pic.twitter.com\\/f2CdRuT9tm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Richmanonuche1\\/status\\/1554780161714917376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":996,\"h\":2048,\"resize\":\"fit\"}}}]},\"4452\":{\"media\":[{\"id\":1554779811347939329,\"id_str\":\"1554779811347939329\",\"indices\":[40,63],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOwADdXwAEmo6Z.jpg\",\"url\":\"https:\\/\\/t.co\\/EhISr3PULD\",\"display_url\":\"pic.twitter.com\\/EhISr3PULD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Emperor_vibes0\\/status\\/1554779819296137217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1494,\"resize\":\"fit\"},\"medium\":{\"w\":904,\"h\":1200,\"resize\":\"fit\"}}}]},\"4453\":null,\"4454\":{\"media\":[{\"id\":1554777905548378112,\"id_str\":\"1554777905548378112\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuRHzWQAANUvR.jpg\",\"url\":\"https:\\/\\/t.co\\/P62lLRP3fo\",\"display_url\":\"pic.twitter.com\\/P62lLRP3fo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/itnewsnigeria1\\/status\\/1554778707788795906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"large\":{\"w\":690,\"h\":522,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":514,\"resize\":\"fit\"}}}]},\"4455\":{\"media\":[{\"id\":1554778637186072577,\"id_str\":\"1554778637186072577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOu7tXXgAEpaso.jpg\",\"url\":\"https:\\/\\/t.co\\/HMeHrLovHg\",\"display_url\":\"pic.twitter.com\\/HMeHrLovHg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554778649164976129\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4456\":null,\"4457\":{\"media\":[{\"id\":1554778202651910145,\"id_str\":\"1554778202651910145\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuiamWYAEF3B-.jpg\",\"url\":\"https:\\/\\/t.co\\/EiH8c1kCf0\",\"display_url\":\"pic.twitter.com\\/EiH8c1kCf0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778267999240193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4458\":{\"media\":[{\"id\":1554777988721410050,\"id_str\":\"1554777988721410050\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV9pWAAIA7qH.jpg\",\"url\":\"https:\\/\\/t.co\\/xCMNWCnUTt\",\"display_url\":\"pic.twitter.com\\/xCMNWCnUTt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778141675196417\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4459\":{\"media\":[{\"id\":1554777735389761541,\"id_str\":\"1554777735389761541\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuHN6X0AUxtVc.jpg\",\"url\":\"https:\\/\\/t.co\\/g2fU0tPcr9\",\"display_url\":\"pic.twitter.com\\/g2fU0tPcr9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778138995040256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4460\":{\"media\":[{\"id\":1554777988033613824,\"id_str\":\"1554777988033613824\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOuV7FXEAAppUx.jpg\",\"url\":\"https:\\/\\/t.co\\/aBCGFemwUN\",\"display_url\":\"pic.twitter.com\\/aBCGFemwUN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778135379562496\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4461\":{\"media\":[{\"id\":1554778096087310337,\"id_str\":\"1554778096087310337\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOucNnXoAEz2Yk.jpg\",\"url\":\"https:\\/\\/t.co\\/7Bz4WI63Tr\",\"display_url\":\"pic.twitter.com\\/7Bz4WI63Tr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TAG_authorised\\/status\\/1554778101862879242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":963,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":903,\"h\":1200,\"resize\":\"fit\"}}}]},\"4462\":{\"media\":[{\"id\":1554777583732105217,\"id_str\":\"1554777583732105217\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOt-Y8XoAE7CHq.jpg\",\"url\":\"https:\\/\\/t.co\\/BH4bmjuQyh\",\"display_url\":\"pic.twitter.com\\/BH4bmjuQyh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morzitservices\\/status\\/1554778051082436608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4463\":{\"media\":[{\"id\":1554777430971351040,\"id_str\":\"1554777430971351040\",\"indices\":[226,249],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554777430971351040\\/pu\\/img\\/gzRb65sW_-CRaFSt.jpg\",\"url\":\"https:\\/\\/t.co\\/a4BmMkUray\",\"display_url\":\"pic.twitter.com\\/a4BmMkUray\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LukeKyauta\\/status\\/1554777567802040321\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":450,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[45,68],\"duration_millis\":59412,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/720x1088\\/C2XLQOhx1zlPRRnk.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/320x482\\/m3valIWcxQS9Bas3.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/vid\\/480x724\\/BBKQWCeFX-h8Yi2c.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554777430971351040\\/pu\\/pl\\/21UVrKTse9OytZI0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4464\":{\"media\":[{\"id\":1554776088911437824,\"id_str\":\"1554776088911437824\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554776088911437824\\/pu\\/img\\/gzZ4QrZeaMbVvt9t.jpg\",\"url\":\"https:\\/\\/t.co\\/p3ARF0hJXT\",\"display_url\":\"pic.twitter.com\\/p3ARF0hJXT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/12_beatz\\/status\\/1554777432208588801\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":59983,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/vid\\/720x1280\\/0SAQmFQShw4ibIHs.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/vid\\/480x852\\/zuBfHiBg2mHWHSli.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/pl\\/UtgHCHjpZz1-Q1Sw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554776088911437824\\/pu\\/vid\\/320x568\\/zSIHiA9xEKlx4Zlq.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4465\":{\"media\":[{\"id\":1554777348091908096,\"id_str\":\"1554777348091908096\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOtwrHXkAAtzOo.jpg\",\"url\":\"https:\\/\\/t.co\\/oihYETkxg9\",\"display_url\":\"pic.twitter.com\\/oihYETkxg9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/daniel_orakwue\\/status\\/1554777354395951105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":575,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":609,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":609,\"resize\":\"fit\"}}}]},\"4466\":null,\"4467\":{\"media\":[{\"id\":1554776151024877573,\"id_str\":\"1554776151024877573\",\"indices\":[203,226],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsq_sWQAU4vPl.jpg\",\"url\":\"https:\\/\\/t.co\\/9wplK02TX4\",\"display_url\":\"pic.twitter.com\\/9wplK02TX4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amanda_malls\\/status\\/1554776611374989313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1500,\"h\":1500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4468\":{\"media\":[{\"id\":1554776490138550272,\"id_str\":\"1554776490138550272\",\"indices\":[219,242],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOs-u_WQAAC1xK.jpg\",\"url\":\"https:\\/\\/t.co\\/GoCuemQe8s\",\"display_url\":\"pic.twitter.com\\/GoCuemQe8s\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sucdri\\/status\\/1554776497801629696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4469\":null,\"4470\":{\"media\":[{\"id\":1554775383412703232,\"id_str\":\"1554775383412703232\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775383412703232\\/pu\\/img\\/s-9keI5fw7Hr5_jf.jpg\",\"url\":\"https:\\/\\/t.co\\/eIFdhakjaV\",\"display_url\":\"pic.twitter.com\\/eIFdhakjaV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MonalisNg\\/status\\/1554775783595544576\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":30433,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/vid\\/540x540\\/bN0lw2sTdZEXMQmm.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/vid\\/320x320\\/Vx-Qp5Z5VDJNo2M3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/pl\\/pBl7rX6C3Og-pfIS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775383412703232\\/pu\\/vid\\/720x720\\/YJBEqijC1TRnJjz_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4471\":{\"media\":[{\"id\":1554775721872089088,\"id_str\":\"1554775721872089088\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsSA-WYAAsLFs.jpg\",\"url\":\"https:\\/\\/t.co\\/RNIQwboUkK\",\"display_url\":\"pic.twitter.com\\/RNIQwboUkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554775733179916290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":804,\"resize\":\"fit\"},\"small\":{\"w\":609,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554775730596286464,\"id_str\":\"1554775730596286464\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOsSheXEAAN5ny.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOsSheXEAAN5ny.jpg\",\"url\":\"https:\\/\\/t.co\\/RNIQwboUkK\",\"display_url\":\"pic.twitter.com\\/RNIQwboUkK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554775733179916290\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":663,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":669,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":669,\"resize\":\"fit\"}}}]},\"4472\":{\"media\":[{\"id\":1554775508704976896,\"id_str\":\"1554775508704976896\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775508704976896\\/pu\\/img\\/OMRZHGT1vvFI3MEa.jpg\",\"url\":\"https:\\/\\/t.co\\/64cx3wVqvf\",\"display_url\":\"pic.twitter.com\\/64cx3wVqvf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554775658554920960\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":86086,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/pl\\/m1eVcE4Y-Yta1jjZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/vid\\/480x852\\/XMqDVDWE_TVFTuDX.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/vid\\/320x568\\/iHzSiOeyA7mU98-4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775508704976896\\/pu\\/vid\\/720x1280\\/S1qjDfia1ItqdCxF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4473\":{\"media\":[{\"id\":1554775060853956611,\"id_str\":\"1554775060853956611\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554775060853956611\\/pu\\/img\\/BpJIe5y7S5KAc4i9.jpg\",\"url\":\"https:\\/\\/t.co\\/v3DBR8PCOb\",\"display_url\":\"pic.twitter.com\\/v3DBR8PCOb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Princeaso_\\/status\\/1554775131767046144\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":36533,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/vid\\/576x1024\\/lzGgofbH88YihXuu.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/vid\\/480x852\\/W8uVta7-uWWvXAqS.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/vid\\/320x568\\/1HlsDBbTo2uptbGa.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554775060853956611\\/pu\\/pl\\/aoSggq5esQ0Ml4ZY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4474\":{\"media\":[{\"id\":1554774884340797440,\"id_str\":\"1554774884340797440\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554774884340797440\\/pu\\/img\\/NM4Wp0X7hfBx9jZr.jpg\",\"url\":\"https:\\/\\/t.co\\/gY9D4euHGU\",\"display_url\":\"pic.twitter.com\\/gY9D4euHGU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554775098518712320\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":75326,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/vid\\/1280x720\\/-_FxIqMc0w2Dv8Hp.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/vid\\/480x270\\/juPVSqeWDToFTV34.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/vid\\/640x360\\/w99Y0gY8an6U-kR8.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554774884340797440\\/pu\\/pl\\/-N3ARLH88rjcaZzF.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4475\":{\"media\":[{\"id\":1554774691910504450,\"id_str\":\"1554774691910504450\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOrWEEX0AIJ-o0.jpg\",\"url\":\"https:\\/\\/t.co\\/vNymkx9byA\",\"display_url\":\"pic.twitter.com\\/vNymkx9byA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Movie__Hack\\/status\\/1554774694976536576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":647,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":430,\"h\":680,\"resize\":\"fit\"}}}]},\"4476\":{\"media\":[{\"id\":1554773993567166465,\"id_str\":\"1554773993567166465\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqtaiWIAE4rYH.jpg\",\"url\":\"https:\\/\\/t.co\\/o97l2VTsqf\",\"display_url\":\"pic.twitter.com\\/o97l2VTsqf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chidi_Africa\\/status\\/1554773996087943168\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":678,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":678,\"h\":452,\"resize\":\"fit\"}}}]},\"4477\":null,\"4478\":null,\"4479\":{\"media\":[{\"id\":1554773317906796545,\"id_str\":\"1554773317906796545\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqGFgXEAElR8F.jpg\",\"url\":\"https:\\/\\/t.co\\/5uMO3VBzLw\",\"display_url\":\"pic.twitter.com\\/5uMO3VBzLw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequeenhelen1\\/status\\/1554773340077817857\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"}}},{\"id\":1554773317944483840,\"id_str\":\"1554773317944483840\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOqGFpWIAAufxY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOqGFpWIAAufxY.jpg\",\"url\":\"https:\\/\\/t.co\\/5uMO3VBzLw\",\"display_url\":\"pic.twitter.com\\/5uMO3VBzLw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thequeenhelen1\\/status\\/1554773340077817857\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4480\":{\"media\":[{\"id\":1554773004470652929,\"id_str\":\"1554773004470652929\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpz13XEAElcMQ.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}},{\"id\":1554773014859882499,\"id_str\":\"1554773014859882499\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOp0ckWIAMNoBq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOp0ckWIAMNoBq.jpg\",\"url\":\"https:\\/\\/t.co\\/2LOHC6yOJF\",\"display_url\":\"pic.twitter.com\\/2LOHC6yOJF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bamj_tv\\/status\\/1554773028235608064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"large\":{\"w\":452,\"h\":678,\"resize\":\"fit\"},\"small\":{\"w\":452,\"h\":678,\"resize\":\"fit\"}}}]},\"4481\":{\"media\":[{\"id\":1554772590178160640,\"id_str\":\"1554772590178160640\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554772590178160640\\/pu\\/img\\/sBCADCIcHpsRbEPN.jpg\",\"url\":\"https:\\/\\/t.co\\/N7nn8Fz6vq\",\"display_url\":\"pic.twitter.com\\/N7nn8Fz6vq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554772663498711040\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"medium\":{\"w\":828,\"h\":440,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":440,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[207,110],\"duration_millis\":127030,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554772590178160640\\/pu\\/pl\\/PxTzM1LRk1BIOmnS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554772590178160640\\/pu\\/vid\\/828x440\\/ymD-Em2OST_Iwn7K.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554772590178160640\\/pu\\/vid\\/508x270\\/PHcrafzUDPMi5s4E.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4482\":{\"media\":[{\"id\":1554772621677498368,\"id_str\":\"1554772621677498368\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOpdj2XEAAVc5e.jpg\",\"url\":\"https:\\/\\/t.co\\/X86S5nOBSN\",\"display_url\":\"pic.twitter.com\\/X86S5nOBSN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Evereztt\\/status\\/1554772632880521218\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1449,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":481,\"resize\":\"fit\"}}}]},\"4483\":null,\"4484\":{\"media\":[{\"id\":1554772016070361088,\"id_str\":\"1554772016070361088\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOo6TyXgAAp2q_.jpg\",\"url\":\"https:\\/\\/t.co\\/IYplsoT20R\",\"display_url\":\"pic.twitter.com\\/IYplsoT20R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChuksCopn\\/status\\/1554772019346022407\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":849,\"resize\":\"fit\"},\"small\":{\"w\":573,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":849,\"resize\":\"fit\"}}}]},\"4485\":{\"media\":[{\"id\":1554771128069005315,\"id_str\":\"1554771128069005315\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoGnuWIAMx1e7.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771138752008192,\"id_str\":\"1554771138752008192\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoHPhX0AAc8qd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoHPhX0AAc8qd.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554771147195142144,\"id_str\":\"1554771147195142144\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoHu-X0AAgkAI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoHu-X0AAgkAI.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771155843702784,\"id_str\":\"1554771155843702784\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoIPMWYAAo2WA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoIPMWYAAo2WA.jpg\",\"url\":\"https:\\/\\/t.co\\/RoMv1LAzEx\",\"display_url\":\"pic.twitter.com\\/RoMv1LAzEx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771164572049408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4486\":{\"media\":[{\"id\":1554771075552231427,\"id_str\":\"1554771075552231427\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoDkFXwAM-6tD.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771090743902209,\"id_str\":\"1554771090743902209\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoEcrWQAEsH80.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoEcrWQAEsH80.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554771104966778881,\"id_str\":\"1554771104966778881\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoFRqWIAEz8xa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoFRqWIAEz8xa.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}},{\"id\":1554771113535832064,\"id_str\":\"1554771113535832064\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOoFxlXgAAyJQ9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOoFxlXgAAyJQ9.jpg\",\"url\":\"https:\\/\\/t.co\\/cp64FzEmdM\",\"display_url\":\"pic.twitter.com\\/cp64FzEmdM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdogaMikeOyi\\/status\\/1554771123782524929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1050,\"h\":1050,\"resize\":\"fit\"}}}]},\"4487\":{\"media\":[{\"id\":1554770968610017281,\"id_str\":\"1554770968610017281\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9VsXEAEEhm8.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":563,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":800,\"resize\":\"fit\"}}},{\"id\":1554770971176869888,\"id_str\":\"1554770971176869888\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn9fQWIAAYBQi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn9fQWIAAYBQi.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":714,\"h\":714,\"resize\":\"fit\"},\"medium\":{\"w\":714,\"h\":714,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554770977330003968,\"id_str\":\"1554770977330003968\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn92LXgAAd4mp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn92LXgAAd4mp.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":682,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":644,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":682,\"resize\":\"fit\"}}},{\"id\":1554770983076118530,\"id_str\":\"1554770983076118530\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOn-LlWQAIQJfJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOn-LlWQAIQJfJ.jpg\",\"url\":\"https:\\/\\/t.co\\/nXdsbYslPa\",\"display_url\":\"pic.twitter.com\\/nXdsbYslPa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Phicoco1\\/status\\/1554770988902109186\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":671,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":634,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":671,\"resize\":\"fit\"}}}]},\"4488\":{\"media\":[{\"id\":1554770257641779200,\"id_str\":\"1554770257641779200\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOnT9IUsAA2hJg.png\",\"url\":\"https:\\/\\/t.co\\/rZNuI5h5Ot\",\"display_url\":\"pic.twitter.com\\/rZNuI5h5Ot\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554770731585589248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"medium\":{\"w\":897,\"h\":654,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":496,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4489\":null,\"4490\":{\"media\":[{\"id\":1554768625726328832,\"id_str\":\"1554768625726328832\",\"indices\":[234,257],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOl09xXEAAXlFI.jpg\",\"url\":\"https:\\/\\/t.co\\/WrVic4OPRi\",\"display_url\":\"pic.twitter.com\\/WrVic4OPRi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554768633062215691\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"small\":{\"w\":648,\"h\":648,\"resize\":\"fit\"},\"large\":{\"w\":648,\"h\":648,\"resize\":\"fit\"}}}]},\"4491\":{\"media\":[{\"id\":1554768309056331776,\"id_str\":\"1554768309056331776\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOliiFWYAA8hHl.jpg\",\"url\":\"https:\\/\\/t.co\\/opacZr7G7c\",\"display_url\":\"pic.twitter.com\\/opacZr7G7c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StephenQuartzz\\/status\\/1554768321983422464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"}}}]},\"4492\":{\"media\":[{\"id\":1554767751876468737,\"id_str\":\"1554767751876468737\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554767751876468737\\/pu\\/img\\/J94LsuqxzWNsujXL.jpg\",\"url\":\"https:\\/\\/t.co\\/1c7AflzQAb\",\"display_url\":\"pic.twitter.com\\/1c7AflzQAb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554767858600513536\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":630,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":357,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":672,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,21],\"duration_millis\":45418,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/pl\\/-xMulUU3fY6B3KDI.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/vid\\/1280x672\\/ySQOnO4u1I0cKUOA.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/vid\\/684x360\\/aOXmUct4HQfxHOUK.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554767751876468737\\/pu\\/vid\\/514x270\\/VT2RJ276ApXwdUJZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4493\":{\"media\":[{\"id\":1554767399236341760,\"id_str\":\"1554767399236341760\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOktkvXEAA0EBD.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"large\":{\"w\":735,\"h\":917,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554767408103137281,\"id_str\":\"1554767408103137281\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOkuFxXoAEWMPV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOkuFxXoAEWMPV.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":360,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":360,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":360,\"h\":480,\"resize\":\"fit\"}}},{\"id\":1554767411148201984,\"id_str\":\"1554767411148201984\",\"indices\":[164,187],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOkuRHXoAAE4eb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOkuRHXoAAE4eb.jpg\",\"url\":\"https:\\/\\/t.co\\/5WfsWNTfQ2\",\"display_url\":\"pic.twitter.com\\/5WfsWNTfQ2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Johnslaycouture\\/status\\/1554767417963954176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":736,\"h\":981,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":736,\"h\":981,\"resize\":\"fit\"}}}]},\"4494\":{\"media\":[{\"id\":1554766290543427584,\"id_str\":\"1554766290543427584\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtCiXwAA3hwA.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554766298642612226,\"id_str\":\"1554766298642612226\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjtgtXgAIl1cf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjtgtXgAIl1cf.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554766305445691393,\"id_str\":\"1554766305445691393\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjt6DWQAE4RiW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjt6DWQAE4RiW.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554766312240553984,\"id_str\":\"1554766312240553984\",\"indices\":[142,165],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjuTXXoAARt7O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjuTXXoAARt7O.jpg\",\"url\":\"https:\\/\\/t.co\\/iyrgkHSvxW\",\"display_url\":\"pic.twitter.com\\/iyrgkHSvxW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EdwinNelly5\\/status\\/1554766319274393601\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}}]},\"4495\":{\"media\":[{\"id\":1554766146477461509,\"id_str\":\"1554766146477461509\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjkp2XkAU6Rm0.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":405,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":405,\"resize\":\"fit\"}}},{\"id\":1554766148897591297,\"id_str\":\"1554766148897591297\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjky3X0AE1er-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjky3X0AE1er-.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}},{\"id\":1554766151342870529,\"id_str\":\"1554766151342870529\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOjk7-X0AEdQps.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOjk7-X0AEdQps.jpg\",\"url\":\"https:\\/\\/t.co\\/wFSwJE45to\",\"display_url\":\"pic.twitter.com\\/wFSwJE45to\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554766153855254529\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"4496\":{\"media\":[{\"id\":1554765834270248962,\"id_str\":\"1554765834270248962\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554765834270248962\\/pu\\/img\\/TgbAWW_vOU1G-uIe.jpg\",\"url\":\"https:\\/\\/t.co\\/tVKiTCZMPw\",\"display_url\":\"pic.twitter.com\\/tVKiTCZMPw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Koliwill1\\/status\\/1554765853220036608\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":576,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":576,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":5033,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554765834270248962\\/pu\\/vid\\/576x576\\/_o4F7W8IAHZFhG4D.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554765834270248962\\/pu\\/vid\\/320x320\\/DRrkgAODux70U3zG.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554765834270248962\\/pu\\/pl\\/CX4LPUw1pM6xFEW9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4497\":null,\"4498\":{\"media\":[{\"id\":1554765283188940800,\"id_str\":\"1554765283188940800\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiyZ2WIAArgyl.jpg\",\"url\":\"https:\\/\\/t.co\\/6kGd3EkX1b\",\"display_url\":\"pic.twitter.com\\/6kGd3EkX1b\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NURUDEENSALMON\\/status\\/1554765285294542850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"large\":{\"w\":346,\"h\":457,\"resize\":\"fit\"},\"medium\":{\"w\":346,\"h\":457,\"resize\":\"fit\"}}}]},\"4499\":{\"media\":[{\"id\":1554764964535177216,\"id_str\":\"1554764964535177216\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764964535177216\\/pu\\/img\\/7qmevqYGd_kmoaTP.jpg\",\"url\":\"https:\\/\\/t.co\\/UWvwP9LxNe\",\"display_url\":\"pic.twitter.com\\/UWvwP9LxNe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CmskEmmanuel\\/status\\/1554765082739056641\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13628,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/720x1280\\/WDb0Oht8XXvZnkTX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/pl\\/jqf-ZLQsSUIylsx-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/320x568\\/SSqiw-Z37GC1xKKi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764964535177216\\/pu\\/vid\\/480x852\\/ms6JOswrfZT7Ao6o.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4500\":{\"media\":[{\"id\":1554764935460073473,\"id_str\":\"1554764935460073473\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764935460073473\\/pu\\/img\\/1x77U6pTgGgJOwSs.jpg\",\"url\":\"https:\\/\\/t.co\\/CR7C9DFv93\",\"display_url\":\"pic.twitter.com\\/CR7C9DFv93\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764958662942720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":346,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":346,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,173],\"duration_millis\":28303,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764935460073473\\/pu\\/vid\\/640x346\\/lwzEMnfyV536x9Q2.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764935460073473\\/pu\\/vid\\/498x270\\/2M5Z-wHKNRhhllK9.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764935460073473\\/pu\\/pl\\/H5zThu9c6ib7AiAk.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4501\":{\"media\":[{\"id\":1554764251381657600,\"id_str\":\"1554764251381657600\",\"indices\":[75,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554764251381657600\\/pu\\/img\\/jBeMMFnEW2TtodXY.jpg\",\"url\":\"https:\\/\\/t.co\\/xCNhf8f5EP\",\"display_url\":\"pic.twitter.com\\/xCNhf8f5EP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554764294016737280\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":334,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":334,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,167],\"duration_millis\":37800,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764251381657600\\/pu\\/pl\\/shnDjd61uoXONlkm.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764251381657600\\/pu\\/vid\\/516x270\\/CbZbUiXJxGI968Zd.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554764251381657600\\/pu\\/vid\\/640x334\\/-kQdKPawApk0GxuQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4502\":{\"media\":[{\"id\":1554763832123326464,\"id_str\":\"1554763832123326464\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhd8NWAAAqAKY.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554763842403663872,\"id_str\":\"1554763842403663872\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOheigXgAAV02V.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOheigXgAAV02V.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":474,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":628,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":628,\"h\":900,\"resize\":\"fit\"}}},{\"id\":1554763850720968705,\"id_str\":\"1554763850720968705\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhfBfXgAEZtyI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhfBfXgAEZtyI.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1554763853686349824,\"id_str\":\"1554763853686349824\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOhfMiXoAAUBCf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOhfMiXoAAUBCf.jpg\",\"url\":\"https:\\/\\/t.co\\/T9QE10b0yh\",\"display_url\":\"pic.twitter.com\\/T9QE10b0yh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/truth_propagate\\/status\\/1554763861085093888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":619,\"h\":1252,\"resize\":\"fit\"},\"medium\":{\"w\":593,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":336,\"h\":680,\"resize\":\"fit\"}}}]},\"4503\":{\"media\":[{\"id\":1554763035843108864,\"id_str\":\"1554763035843108864\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgvl1WIAAUdYL.jpg\",\"url\":\"https:\\/\\/t.co\\/1PxDqmYaXY\",\"display_url\":\"pic.twitter.com\\/1PxDqmYaXY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/benita_ani\\/status\\/1554763044194058240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":549,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":969,\"h\":1200,\"resize\":\"fit\"}}}]},\"4504\":{\"media\":[{\"id\":1554762200086200321,\"id_str\":\"1554762200086200321\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOf-8ZXwAEo7G0.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554762235926528000,\"id_str\":\"1554762235926528000\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgBB6XwAAEzYs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgBB6XwAAEzYs.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554762275537428480,\"id_str\":\"1554762275537428480\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgDVeWIAA7A2u.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgDVeWIAA7A2u.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554762322702467072,\"id_str\":\"1554762322702467072\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOgGFLXgAAe9kr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOgGFLXgAAe9kr.jpg\",\"url\":\"https:\\/\\/t.co\\/ESqUhfwge8\",\"display_url\":\"pic.twitter.com\\/ESqUhfwge8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/egodfred31\\/status\\/1554762358064648193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1538,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":511,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":901,\"h\":1200,\"resize\":\"fit\"}}}]},\"4505\":{\"media\":[{\"id\":1554762267853352961,\"id_str\":\"1554762267853352961\",\"indices\":[120,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554762267853352961\\/pu\\/img\\/LXyMtW4CVY8tdHZS.jpg\",\"url\":\"https:\\/\\/t.co\\/dg9cm1VN2l\",\"display_url\":\"pic.twitter.com\\/dg9cm1VN2l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554762305824378881\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":432,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":432,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[27,16],\"duration_millis\":34300,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554762267853352961\\/pu\\/vid\\/432x256\\/iifJEmC45A2YidY1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554762267853352961\\/pu\\/pl\\/VIGshKaMTnwfWLA0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4506\":{\"media\":[{\"id\":1554761742458277888,\"id_str\":\"1554761742458277888\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOfkTmX0AAruvP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZzXoicSwjA\",\"display_url\":\"pic.twitter.com\\/ZzXoicSwjA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akande_susan_b\\/status\\/1554761745159409664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"4507\":{\"media\":[{\"id\":1554761507367518211,\"id_str\":\"1554761507367518211\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554761507367518211\\/pu\\/img\\/t6CWrdr3RyCv7-WY.jpg\",\"url\":\"https:\\/\\/t.co\\/awt1ppOpID\",\"display_url\":\"pic.twitter.com\\/awt1ppOpID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/k2bydway\\/status\\/1554761554939322368\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":38800,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/vid\\/480x852\\/Y_2Bmaa8IrVAY4Gz.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/pl\\/2NYxqE-E32C3-EPY.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/vid\\/320x568\\/U4vHoS85FCOFNyH7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554761507367518211\\/pu\\/vid\\/576x1024\\/2uHsHOd66TIeXD8f.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4508\":{\"media\":[{\"id\":1554760500709396480,\"id_str\":\"1554760500709396480\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760500709396480\\/pu\\/img\\/jj_hQDOL-vGutQUi.jpg\",\"url\":\"https:\\/\\/t.co\\/NEgkLhxrKk\",\"display_url\":\"pic.twitter.com\\/NEgkLhxrKk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JohnMozizy\\/status\\/1554760645769306112\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":85210,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/pl\\/ZW6SqAgU7TbiEqM6.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/vid\\/720x1280\\/QNWPh_mhQXbueqrS.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/vid\\/480x852\\/VOKvdTwrFrLazSO5.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760500709396480\\/pu\\/vid\\/320x568\\/-AA3Vrr6YDIBLskK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4509\":null,\"4510\":{\"media\":[{\"id\":1554760071694864385,\"id_str\":\"1554760071694864385\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554760071694864385\\/pu\\/img\\/1Ef3uMoXcr1jgsCQ.jpg\",\"url\":\"https:\\/\\/t.co\\/5UnH7vNTLv\",\"display_url\":\"pic.twitter.com\\/5UnH7vNTLv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554760106612367360\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":1270,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":386,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[127,72],\"duration_millis\":10054,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/pl\\/MkrU01h3sCEsWvK8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/vid\\/1270x720\\/23q_uSFhpIKYpMjj.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/vid\\/634x360\\/TPv5G_Na_-3Y60n4.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554760071694864385\\/pu\\/vid\\/476x270\\/PsaMiUXoWd8RGFU_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4511\":null,\"4512\":null,\"4513\":{\"media\":[{\"id\":1554758920064958466,\"id_str\":\"1554758920064958466\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOdABXXgAImL3b.jpg\",\"url\":\"https:\\/\\/t.co\\/2ZhUtWf8xb\",\"display_url\":\"pic.twitter.com\\/2ZhUtWf8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/opuwari66\\/status\\/1554758927639781377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":713,\"h\":713,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":713,\"h\":713,\"resize\":\"fit\"}}}]},\"4514\":{\"media\":[{\"id\":1554758636550983680,\"id_str\":\"1554758636550983680\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcvhMXkAA66y1.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":961,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1125,\"h\":1405,\"resize\":\"fit\"}}},{\"id\":1554758650958340098,\"id_str\":\"1554758650958340098\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOcwW3WYAINtMn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOcwW3WYAINtMn.jpg\",\"url\":\"https:\\/\\/t.co\\/91z84gia5m\",\"display_url\":\"pic.twitter.com\\/91z84gia5m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AdesuyiAdedayo\\/status\\/1554758665240018946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1365,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"4515\":null,\"4516\":{\"media\":[{\"id\":1554758166637936640,\"id_str\":\"1554758166637936640\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554758166637936640\\/pu\\/img\\/yYJiJxbwLpSDpZLl.jpg\",\"url\":\"https:\\/\\/t.co\\/jNjKO4A0JW\",\"display_url\":\"pic.twitter.com\\/jNjKO4A0JW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrwopaa\\/status\\/1554758300004237313\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27050,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/vid\\/720x1280\\/4YbY0ci7KrebhGVe.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/pl\\/r1-3SiykIg0J9dc9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/vid\\/320x568\\/6pmn_EoNA71Ko6VP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554758166637936640\\/pu\\/vid\\/480x852\\/8Djb5Dy3LRMi7HOB.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4517\":{\"media\":[{\"id\":1554757310014263296,\"id_str\":\"1554757310014263296\",\"indices\":[170,193],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZObiTdXkAAy8NZ.jpg\",\"url\":\"https:\\/\\/t.co\\/s8oGfNaHs6\",\"display_url\":\"pic.twitter.com\\/s8oGfNaHs6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ariemu_ogaga\\/status\\/1554757312325246977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"medium\":{\"w\":225,\"h\":225,\"resize\":\"fit\"},\"large\":{\"w\":225,\"h\":225,\"resize\":\"fit\"}}}]},\"4518\":null,\"4519\":null,\"4520\":{\"media\":[{\"id\":1554755190439428096,\"id_str\":\"1554755190439428096\",\"indices\":[57,80],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554755190439428096\\/pu\\/img\\/4IDcHYu9EzJCQCci.jpg\",\"url\":\"https:\\/\\/t.co\\/okJ4mPo0Zj\",\"display_url\":\"pic.twitter.com\\/okJ4mPo0Zj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Djackyz\\/status\\/1554755756930568193\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":23798,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/vid\\/480x852\\/fq8vzHiL2bIIAuaD.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/pl\\/WKuAKyPtihK4f8Ra.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/vid\\/320x568\\/CdaM5as8rKwQfM3x.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554755190439428096\\/pu\\/vid\\/720x1280\\/YpxTbPrTtaQUnRj8.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4521\":null,\"4522\":null,\"4523\":{\"media\":[{\"id\":1554753224216920068,\"id_str\":\"1554753224216920068\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753224216920068\\/pu\\/img\\/HhgUCbhqIPRR-uTN.jpg\",\"url\":\"https:\\/\\/t.co\\/PyNUmil5YE\",\"display_url\":\"pic.twitter.com\\/PyNUmil5YE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerryOladapo\\/status\\/1554754395887247361\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":464,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,22],\"duration_millis\":30025,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753224216920068\\/pu\\/pl\\/1s8byb3vOcE30mgH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753224216920068\\/pu\\/vid\\/320x468\\/9rnEBTY2xcDSU2L2.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753224216920068\\/pu\\/vid\\/480x704\\/vxqmlvPKNUE5iVnK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4524\":{\"media\":[{\"id\":1554193160506580992,\"id_str\":\"1554193160506580992\",\"indices\":[76,99],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZGacexWIAAZfhW.jpg\",\"url\":\"https:\\/\\/t.co\\/Cync8O1w12\",\"display_url\":\"pic.twitter.com\\/Cync8O1w12\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jara_Connect\\/status\\/1554753949986525184\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4525\":{\"media\":[{\"id\":1554753120709877770,\"id_str\":\"1554753120709877770\",\"indices\":[29,52],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554753120709877770\\/pu\\/img\\/ajrg6JZOOu_Q_glj.jpg\",\"url\":\"https:\\/\\/t.co\\/Q5tlxYu3Bj\",\"display_url\":\"pic.twitter.com\\/Q5tlxYu3Bj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bereal_akpan\\/status\\/1554753222811721728\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15021,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/vid\\/320x568\\/XS7WRYuyGt_OFt9T.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/pl\\/C1I7ZiL6ouNkIwOO.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/vid\\/480x852\\/rLT3NJQdL8yze_hx.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554753120709877770\\/pu\\/vid\\/540x960\\/dKPFY7lQYCZw-a5U.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4526\":{\"media\":[{\"id\":1554752373578399745,\"id_str\":\"1554752373578399745\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554752373578399745\\/pu\\/img\\/KFap_AiPfbuE5r-t.jpg\",\"url\":\"https:\\/\\/t.co\\/DyHldauMMV\",\"display_url\":\"pic.twitter.com\\/DyHldauMMV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mastrozamani\\/status\\/1554752436572667904\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":750,\"h\":398,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":361,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":398,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[375,199],\"duration_millis\":21441,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554752373578399745\\/pu\\/pl\\/gvhah431a0Gn28KT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554752373578399745\\/pu\\/vid\\/750x398\\/OTvjH7UCW4GNnqda.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554752373578399745\\/pu\\/vid\\/508x270\\/CxxFRoPxpp0F4cUM.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4527\":{\"media\":[{\"id\":1554752227050491904,\"id_str\":\"1554752227050491904\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOW6b8XkAA0bj3.jpg\",\"url\":\"https:\\/\\/t.co\\/ovHXa0hzlB\",\"display_url\":\"pic.twitter.com\\/ovHXa0hzlB\",\"expanded_url\":\"https:\\/\\/twitter.com\\/wonderqoute\\/status\\/1554752228992368641\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":500,\"h\":500,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":500,\"resize\":\"fit\"}}}]},\"4528\":null,\"4529\":{\"media\":[{\"id\":1554750326871302144,\"id_str\":\"1554750326871302144\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554750326871302144\\/pu\\/img\\/5Ek9-Jy8Hzn-49wF.jpg\",\"url\":\"https:\\/\\/t.co\\/FoQKyOEd9r\",\"display_url\":\"pic.twitter.com\\/FoQKyOEd9r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750398535110657\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":30041,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/pl\\/9tCdYLMahETBgj9B.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/vid\\/960x540\\/nI4w5ANjTrFJYe3J.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/vid\\/640x360\\/c5YF-Lr5I7t8ljEe.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554750326871302144\\/pu\\/vid\\/480x270\\/tqlbmlSW1VKVVjtd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4530\":{\"media\":[{\"id\":1554749405697277953,\"id_str\":\"1554749405697277953\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749405697277953\\/pu\\/img\\/IssmFIWfLF31ZXKF.jpg\",\"url\":\"https:\\/\\/t.co\\/L1J8YWRhY5\",\"display_url\":\"pic.twitter.com\\/L1J8YWRhY5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/izzitalk\\/status\\/1554750357292650496\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":140033,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/480x270\\/fNDZwcYi-bz4p8Hr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/pl\\/IC1FcvniOpJoXNTZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/1280x720\\/g0qgr_tAH7C_WRkG.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749405697277953\\/pu\\/vid\\/640x360\\/-bkuguUed3BpRCb_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4531\":null,\"4532\":{\"media\":[{\"id\":1554749832274796545,\"id_str\":\"1554749832274796545\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749832274796545\\/pu\\/img\\/jIwfi7pD9vAkIhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/xABIkq4zud\",\"display_url\":\"pic.twitter.com\\/xABIkq4zud\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554750035895545858\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":106322,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/vid\\/638x360\\/68N7yYgHqtL8g1Iv.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/vid\\/478x270\\/-8wYg-HGLcp2f5vC.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/pl\\/Si6IrW7LteT_hSbH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749832274796545\\/pu\\/vid\\/852x480\\/aaKYTgldgyXOFST7.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4533\":null,\"4534\":{\"media\":[{\"id\":1554749811965960192,\"id_str\":\"1554749811965960192\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554749811965960192\\/pu\\/img\\/_WTaGHY9e5bM5Dbd.jpg\",\"url\":\"https:\\/\\/t.co\\/1jI8BGtAOK\",\"display_url\":\"pic.twitter.com\\/1jI8BGtAOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EfeJerry1\\/status\\/1554749956875067392\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"large\":{\"w\":456,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":456,\"h\":450,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[76,75],\"duration_millis\":45026,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749811965960192\\/pu\\/pl\\/2OL_knMBI6hmGiwM.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749811965960192\\/pu\\/vid\\/272x270\\/c3kOjXlYJUIAl_Mb.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554749811965960192\\/pu\\/vid\\/456x450\\/G1W1X61WEfkEF9-_.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4535\":null,\"4536\":{\"media\":[{\"id\":1554749286390308864,\"id_str\":\"1554749286390308864\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOUPRIWIAAnYkr.jpg\",\"url\":\"https:\\/\\/t.co\\/uWbWNr9sVl\",\"display_url\":\"pic.twitter.com\\/uWbWNr9sVl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554749294770413568\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":841,\"resize\":\"fit\"}}}]},\"4537\":{\"media\":[{\"id\":1554748770927222785,\"id_str\":\"1554748770927222785\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOTxQ4XoAEAS_y.jpg\",\"url\":\"https:\\/\\/t.co\\/5FPEyppr3w\",\"display_url\":\"pic.twitter.com\\/5FPEyppr3w\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SweetMusicMan27\\/status\\/1554748781551288321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"}}}]},\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":null,\"4547\":{\"media\":[{\"id\":1554747204505636864,\"id_str\":\"1554747204505636864\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOSWFgXEAA2oCe.jpg\",\"url\":\"https:\\/\\/t.co\\/MElRLNOy44\",\"display_url\":\"pic.twitter.com\\/MElRLNOy44\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FredTizzle\\/status\\/1554747247434366977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1242,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":633,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1117,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554747204501491713,\"id_str\":\"1554747204501491713\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOSWFfX0AE3ee0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOSWFfX0AE3ee0.jpg\",\"url\":\"https:\\/\\/t.co\\/MElRLNOy44\",\"display_url\":\"pic.twitter.com\\/MElRLNOy44\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FredTizzle\\/status\\/1554747247434366977\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":553,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1300,\"h\":1600,\"resize\":\"fit\"},\"medium\":{\"w\":975,\"h\":1200,\"resize\":\"fit\"}}}]},\"4548\":{\"media\":[{\"id\":1554745603615252480,\"id_str\":\"1554745603615252480\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745603615252480\\/pu\\/img\\/N1ZKaKhL83T6SSvp.jpg\",\"url\":\"https:\\/\\/t.co\\/tj6Iz3obts\",\"display_url\":\"pic.twitter.com\\/tj6Iz3obts\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuel_atser\\/status\\/1554745680635338754\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":45000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/848x480\\/3FYtWcFr6dCR2trZ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/636x360\\/o48bwH6vub60hXlp.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/pl\\/YT7ENWhLs0UMFsWX.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745603615252480\\/pu\\/vid\\/476x270\\/85dGWxuqhVueVK-H.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4549\":{\"media\":[{\"id\":1554745383775096833,\"id_str\":\"1554745383775096833\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745383775096833\\/pu\\/img\\/a3YhWyrYtgcSYXQz.jpg\",\"url\":\"https:\\/\\/t.co\\/7y4Kb7qmrv\",\"display_url\":\"pic.twitter.com\\/7y4Kb7qmrv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tobzyeasy\\/status\\/1554745475730968580\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":43835,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/pl\\/aOuhxsjkxDDrzB_9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/vid\\/320x564\\/sQ0lkg_XUGnWbVTC.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745383775096833\\/pu\\/vid\\/480x848\\/xNM51didkY4-QAqr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4550\":{\"media\":[{\"id\":1554745248693338112,\"id_str\":\"1554745248693338112\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554745248693338112\\/pu\\/img\\/RpzY6J1mDCuWJ7Ln.jpg\",\"url\":\"https:\\/\\/t.co\\/tP7gEqnV9g\",\"display_url\":\"pic.twitter.com\\/tP7gEqnV9g\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MineralSorcerer\\/status\\/1554745332243767296\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"large\":{\"w\":272,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,40],\"duration_millis\":23730,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745248693338112\\/pu\\/vid\\/272x640\\/IY9lRTWujHIqkS70.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554745248693338112\\/pu\\/pl\\/3ZC0gUpmjpKBDeOE.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4551\":null,\"4552\":null,\"4553\":{\"media\":[{\"id\":1554743513115500544,\"id_str\":\"1554743513115500544\",\"indices\":[220,243],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOO_OAXoAAc_j_.jpg\",\"url\":\"https:\\/\\/t.co\\/PWYGApAmQx\",\"display_url\":\"pic.twitter.com\\/PWYGApAmQx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Victorbajju_30\\/status\\/1554743515757903873\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"large\":{\"w\":660,\"h\":660,\"resize\":\"fit\"},\"small\":{\"w\":660,\"h\":660,\"resize\":\"fit\"}}}]},\"4554\":{\"media\":[{\"id\":1554743252850556929,\"id_str\":\"1554743252850556929\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwEcXwAEDdat.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}},{\"id\":1554743256046620672,\"id_str\":\"1554743256046620672\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwQWX0AArlxY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwQWX0AArlxY.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"}}},{\"id\":1554743263520768000,\"id_str\":\"1554743263520768000\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOwsMWQAAdIdS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOwsMWQAAdIdS.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}},{\"id\":1554743266578505730,\"id_str\":\"1554743266578505730\",\"indices\":[138,161],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOOw3lXoAIRk1C.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOOw3lXoAIRk1C.jpg\",\"url\":\"https:\\/\\/t.co\\/DnbCkbojsl\",\"display_url\":\"pic.twitter.com\\/DnbCkbojsl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Man4all_Season\\/status\\/1554743273234829312\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":780,\"h\":1040,\"resize\":\"fit\"}}}]},\"4555\":{\"media\":[{\"id\":1554741626064539649,\"id_str\":\"1554741626064539649\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZONRYMXEAEZ_lL.jpg\",\"url\":\"https:\\/\\/t.co\\/2zQh46RCfU\",\"display_url\":\"pic.twitter.com\\/2zQh46RCfU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/myrentic\\/status\\/1554741633626816513\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"4556\":{\"media\":[{\"id\":1554739948124880896,\"id_str\":\"1554739948124880896\",\"indices\":[45,68],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554739948124880896\\/pu\\/img\\/L9JApadjCnhNfAD7.jpg\",\"url\":\"https:\\/\\/t.co\\/A5RIiMeVU0\",\"display_url\":\"pic.twitter.com\\/A5RIiMeVU0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mclioon\\/status\\/1554740126550560773\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":110800,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/vid\\/480x852\\/9rRghc77YVikEFng.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/vid\\/720x1280\\/O_TilJ_Iy1q7W___.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/pl\\/GmlL_klvOkkekVP-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554739948124880896\\/pu\\/vid\\/320x568\\/vc6THeYlQmWszbrD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4557\":{\"media\":[{\"id\":1554739912653643776,\"id_str\":\"1554739912653643776\",\"indices\":[123,146],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOLtpPXoAACTTr.jpg\",\"url\":\"https:\\/\\/t.co\\/gWlbMkTYBc\",\"display_url\":\"pic.twitter.com\\/gWlbMkTYBc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trouve_ng\\/status\\/1554739926125760512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4558\":null,\"4559\":null,\"4560\":{\"media\":[{\"id\":1554738864350167041,\"id_str\":\"1554738864350167041\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoAWAAEvPQw.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554738864383823874,\"id_str\":\"1554738864383823874\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoIXkAIXy2K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoIXkAIXy2K.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554738864362856450,\"id_str\":\"1554738864362856450\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoDXoAIByCU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoDXoAIByCU.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":809,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":809,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":509,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554738864375431170,\"id_str\":\"1554738864375431170\",\"indices\":[209,232],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOKwoGXgAIR3IY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOKwoGXgAIR3IY.jpg\",\"url\":\"https:\\/\\/t.co\\/yQCdyCX3NF\",\"display_url\":\"pic.twitter.com\\/yQCdyCX3NF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Makiri_manuel\\/status\\/1554738893982932993\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":809,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":509,\"resize\":\"fit\"}}}]},\"4561\":{\"media\":[{\"id\":1554737719577821184,\"id_str\":\"1554737719577821184\",\"indices\":[212,235],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOJt_ZWQAAaw6G.jpg\",\"url\":\"https:\\/\\/t.co\\/2cCusH98nf\",\"display_url\":\"pic.twitter.com\\/2cCusH98nf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/__osinachi__\\/status\\/1554737862293209089\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"4562\":null,\"4563\":{\"media\":[{\"id\":1554735959383674882,\"id_str\":\"1554735959383674882\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiKXEAIMYqw.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}},{\"id\":1554735959404691456,\"id_str\":\"1554735959404691456\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiPXwAAc2uB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiPXwAAc2uB.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}},{\"id\":1554735959417176067,\"id_str\":\"1554735959417176067\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiSWQAMYAmg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiSWQAMYAmg.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}},{\"id\":1554735959438229508,\"id_str\":\"1554735959438229508\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIHiXXgAQSmDw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIHiXXgAQSmDw.jpg\",\"url\":\"https:\\/\\/t.co\\/vrGvaoP6W1\",\"display_url\":\"pic.twitter.com\\/vrGvaoP6W1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ShortletLagosng\\/status\\/1554735966472085504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":608,\"resize\":\"fit\"}}}]},\"4564\":{\"media\":[{\"id\":1554735874017054722,\"id_str\":\"1554735874017054722\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554735874017054722\\/pu\\/img\\/lbP63LlHZHUBH_L1.jpg\",\"url\":\"https:\\/\\/t.co\\/05qgfyGbKI\",\"display_url\":\"pic.twitter.com\\/05qgfyGbKI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Stancity3\\/status\\/1554735948960784384\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"small\":{\"w\":240,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":240,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":45000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554735874017054722\\/pu\\/vid\\/240x426\\/ue3i4WLgKO4M8aFV.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554735874017054722\\/pu\\/pl\\/1zEDT5258Gsam96c.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4565\":{\"media\":[{\"id\":1554735937007112194,\"id_str\":\"1554735937007112194\",\"indices\":[261,284],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOIGOzX0AIgYuw.jpg\",\"url\":\"https:\\/\\/t.co\\/kwr5SYLOaz\",\"display_url\":\"pic.twitter.com\\/kwr5SYLOaz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554735947413176320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4566\":{\"media\":[{\"id\":1554735749492260865,\"id_str\":\"1554735749492260865\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOH7UQWQAEGXVo.jpg\",\"url\":\"https:\\/\\/t.co\\/B1ILEk1MbJ\",\"display_url\":\"pic.twitter.com\\/B1ILEk1MbJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrGaya23\\/status\\/1554735759818620928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":971,\"resize\":\"fit\"},\"small\":{\"w\":504,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":971,\"resize\":\"fit\"}}}]},\"4567\":{\"media\":[{\"id\":1554735436928630784,\"id_str\":\"1554735436928630784\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHpH3XwAAoe1r.jpg\",\"url\":\"https:\\/\\/t.co\\/cnV6ldQ2ua\",\"display_url\":\"pic.twitter.com\\/cnV6ldQ2ua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nsikanekanemm\\/status\\/1554735453118529537\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4568\":{\"media\":[{\"id\":1554735431408914432,\"id_str\":\"1554735431408914432\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHozTXkAAm4CX.jpg\",\"url\":\"https:\\/\\/t.co\\/pOOwEAlBEc\",\"display_url\":\"pic.twitter.com\\/pOOwEAlBEc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/classsuitehotel\\/status\\/1554735443136192512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1014,\"resize\":\"fit\"}}}]},\"4569\":{\"media\":[{\"id\":1554734807376076801,\"id_str\":\"1554734807376076801\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOHEemWIAExxWd.jpg\",\"url\":\"https:\\/\\/t.co\\/EUng3m4l60\",\"display_url\":\"pic.twitter.com\\/EUng3m4l60\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554734810131734530\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":551,\"resize\":\"fit\"},\"medium\":{\"w\":683,\"h\":553,\"resize\":\"fit\"},\"large\":{\"w\":683,\"h\":553,\"resize\":\"fit\"}}}]},\"4570\":{\"media\":[{\"id\":1554734369297891328,\"id_str\":\"1554734369297891328\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGq-oXgAA3_7z.jpg\",\"url\":\"https:\\/\\/t.co\\/pCuQbu6Ysx\",\"display_url\":\"pic.twitter.com\\/pCuQbu6Ysx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Kingrickky23\\/status\\/1554734371969662976\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"small\":{\"w\":607,\"h\":595,\"resize\":\"fit\"},\"large\":{\"w\":607,\"h\":595,\"resize\":\"fit\"}}}]},\"4571\":{\"media\":[{\"id\":1554734270551400448,\"id_str\":\"1554734270551400448\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOGlOxXoAAjy4W.jpg\",\"url\":\"https:\\/\\/t.co\\/R1s7OnW7dm\",\"display_url\":\"pic.twitter.com\\/R1s7OnW7dm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JobayeResources\\/status\\/1554734274032590850\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1636,\"h\":2046,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4572\":{\"media\":[{\"id\":1554733300681478144,\"id_str\":\"1554733300681478144\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOFsxuXEAAt5Zo.jpg\",\"url\":\"https:\\/\\/t.co\\/svknsySMh6\",\"display_url\":\"pic.twitter.com\\/svknsySMh6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Limosiris1\\/status\\/1554733314564554752\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4573\":{\"media\":[{\"id\":1554732684127117312,\"id_str\":\"1554732684127117312\",\"indices\":[61,84],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554732684127117312\\/pu\\/img\\/eviD02sEt88Bw9Gi.jpg\",\"url\":\"https:\\/\\/t.co\\/xRALFAqC3I\",\"display_url\":\"pic.twitter.com\\/xRALFAqC3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OliverZeeter\\/status\\/1554733053494403074\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":22080,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/320x568\\/pTgW6J0xZcSpfKKi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/480x852\\/tt-pQtiUEFYnVS0b.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/vid\\/576x1024\\/yyIKeyfGyDe06RuF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554732684127117312\\/pu\\/pl\\/4mcO-pxYgsJ6zlEn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4574\":{\"media\":[{\"id\":1554731615561162752,\"id_str\":\"1554731615561162752\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEKsKXoAAO4F8.jpg\",\"url\":\"https:\\/\\/t.co\\/DWwoN9Sc4V\",\"display_url\":\"pic.twitter.com\\/DWwoN9Sc4V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/6fiveEmpire\\/status\\/1554732574689443840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":499,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":938,\"h\":1279,\"resize\":\"fit\"},\"medium\":{\"w\":880,\"h\":1200,\"resize\":\"fit\"}}}]},\"4575\":{\"media\":[{\"id\":1554732320195809282,\"id_str\":\"1554732320195809282\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOEztIXEAI5CRO.jpg\",\"url\":\"https:\\/\\/t.co\\/dzITwqWjp7\",\"display_url\":\"pic.twitter.com\\/dzITwqWjp7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Maximumjoy_FD\\/status\\/1554732329196740609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4576\":{\"media\":[{\"id\":1554731444085444610,\"id_str\":\"1554731444085444610\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554731444085444610\\/pu\\/img\\/9nulZlaa7iZfvjz4.jpg\",\"url\":\"https:\\/\\/t.co\\/bN4xCQw4No\",\"display_url\":\"pic.twitter.com\\/bN4xCQw4No\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialOSYB\\/status\\/1554731771115225088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[76,135],\"duration_millis\":110333,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/320x568\\/TK66VW9PsDXgWzWO.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/608x1080\\/xGa6PJ7wjMkTcpb7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/pl\\/0FUmToypRAVm6rjg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554731444085444610\\/pu\\/vid\\/480x852\\/ULBhUNLZVuUwJkZ9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4577\":{\"media\":[{\"id\":1554730166420733952,\"id_str\":\"1554730166420733952\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554730166420733952\\/pu\\/img\\/TWCjYpwkFwfVixb7.jpg\",\"url\":\"https:\\/\\/t.co\\/7FooxwIVkO\",\"display_url\":\"pic.twitter.com\\/7FooxwIVkO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mrmyke_1\\/status\\/1554730661495410688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":28766,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554730166420733952\\/pu\\/vid\\/320x580\\/vQw0vmm09lv-1RP5.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554730166420733952\\/pu\\/pl\\/mbBI1oSnbkEsm5sc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554730166420733952\\/pu\\/vid\\/352x640\\/TIxR7vYmj-QV-b98.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4578\":{\"media\":[{\"id\":1554730198003843074,\"id_str\":\"1554730198003843074\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOC4LWXgAI1xHf.jpg\",\"url\":\"https:\\/\\/t.co\\/1VYFNTg3hP\",\"display_url\":\"pic.twitter.com\\/1VYFNTg3hP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jugo_kc\\/status\\/1554730211597586433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554730205708783616,\"id_str\":\"1554730205708783616\",\"indices\":[124,147],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOC4oDXkAAnw2o.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOC4oDXkAAnw2o.jpg\",\"url\":\"https:\\/\\/t.co\\/1VYFNTg3hP\",\"display_url\":\"pic.twitter.com\\/1VYFNTg3hP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jugo_kc\\/status\\/1554730211597586433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":717,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":650,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":717,\"resize\":\"fit\"}}}]},\"4579\":null,\"4580\":{\"media\":[{\"id\":1554728882691051521,\"id_str\":\"1554728882691051521\",\"indices\":[240,263],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554728882691051521\\/pu\\/img\\/LC7LObv-GKfRU9Sl.jpg\",\"url\":\"https:\\/\\/t.co\\/bINlXjK7kw\",\"display_url\":\"pic.twitter.com\\/bINlXjK7kw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/beatsbydaps\\/status\\/1554729093857435649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":381,\"resize\":\"fit\"},\"large\":{\"w\":738,\"h\":414,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":414,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,23],\"duration_millis\":87620,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/pl\\/9-Z5GflkBCayakME.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/vid\\/480x270\\/fgAeZEC-ryT1bbiP.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554728882691051521\\/pu\\/vid\\/738x414\\/qHJ_oZoV08I_zexI.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4581\":{\"media\":[{\"id\":1554728955416088577,\"id_str\":\"1554728955416088577\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOBv2WXEAE87tq.jpg\",\"url\":\"https:\\/\\/t.co\\/dPgOSI5xlD\",\"display_url\":\"pic.twitter.com\\/dPgOSI5xlD\",\"expanded_url\":\"https:\\/\\/twitter.com\\/IgweRichard8\\/status\\/1554728958880612353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":693,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":693,\"resize\":\"fit\"}}}]},\"4582\":null,\"4583\":{\"media\":[{\"id\":1554726832318054400,\"id_str\":\"1554726832318054400\",\"indices\":[148,171],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN_0RMWAAASv1M.jpg\",\"url\":\"https:\\/\\/t.co\\/00jFWrl2SL\",\"display_url\":\"pic.twitter.com\\/00jFWrl2SL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/yenkwin\\/status\\/1554726841772023808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4584\":{\"media\":[{\"id\":1554726372932833280,\"id_str\":\"1554726372932833280\",\"indices\":[266,289],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554726372932833280\\/pu\\/img\\/Dkybi2ah_ZtCe3c1.jpg\",\"url\":\"https:\\/\\/t.co\\/GCVr1rxFO5\",\"display_url\":\"pic.twitter.com\\/GCVr1rxFO5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Iamkyngizy\\/status\\/1554726590654959616\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":979,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1044,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":555,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,261],\"duration_millis\":41000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/vid\\/440x360\\/79whMjYVOETnvyiU.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/vid\\/882x720\\/Abhgi_Yd4fKB0Xr0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/pl\\/XDTn5jgH-Pj1ud1v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554726372932833280\\/pu\\/vid\\/330x270\\/z2iaylNa-TUD4NUW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4585\":{\"media\":[{\"id\":1554725930014236674,\"id_str\":\"1554725930014236674\",\"indices\":[231,254],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-_v2WYAIZU5F.jpg\",\"url\":\"https:\\/\\/t.co\\/QYu1R1lLjy\",\"display_url\":\"pic.twitter.com\\/QYu1R1lLjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554726355853627394\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4586\":{\"media\":[{\"id\":1554725413808742400,\"id_str\":\"1554725413808742400\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-hs1XoAAUfRI.jpg\",\"url\":\"https:\\/\\/t.co\\/iBJGDUp0bv\",\"display_url\":\"pic.twitter.com\\/iBJGDUp0bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GbengaAdene\\/status\\/1554725439599435777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":805,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":456,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1374,\"resize\":\"fit\"}}}]},\"4587\":{\"media\":[{\"id\":1554725356984303618,\"id_str\":\"1554725356984303618\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eZJXgAIeJ-q.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554725356824838144,\"id_str\":\"1554725356824838144\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYjWQAAXlln.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYjWQAAXlln.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554725356841717760,\"id_str\":\"1554725356841717760\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnX0AAfJek.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnX0AAfJek.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554725356841668609,\"id_str\":\"1554725356841668609\",\"indices\":[252,275],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnXEAESpZ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN-eYnXEAESpZ_.jpg\",\"url\":\"https:\\/\\/t.co\\/BXH2s1EcF2\",\"display_url\":\"pic.twitter.com\\/BXH2s1EcF2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tariqproperties\\/status\\/1554725366044004359\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4588\":null,\"4589\":{\"media\":[{\"id\":1554723961283411970,\"id_str\":\"1554723961283411970\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN9NJwWAAIEwPQ.jpg\",\"url\":\"https:\\/\\/t.co\\/te9gZGngXO\",\"display_url\":\"pic.twitter.com\\/te9gZGngXO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554723970548699137\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4590\":null,\"4591\":null,\"4592\":{\"media\":[{\"id\":1554721485113147392,\"id_str\":\"1554721485113147392\",\"indices\":[129,152],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN69BTWQAAghTK.jpg\",\"url\":\"https:\\/\\/t.co\\/pCr4hW9X7X\",\"display_url\":\"pic.twitter.com\\/pCr4hW9X7X\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bgrconnect\\/status\\/1554721500996984836\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1683,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":986,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"}}}]},\"4593\":{\"media\":[{\"id\":1554720324557701121,\"id_str\":\"1554720324557701121\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN55d5XgAET79t.jpg\",\"url\":\"https:\\/\\/t.co\\/EK0Gc5UCOx\",\"display_url\":\"pic.twitter.com\\/EK0Gc5UCOx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ability_etuk\\/status\\/1554720326709288960\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":741,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":467,\"resize\":\"fit\"}}}]},\"4594\":null,\"4595\":{\"media\":[{\"id\":1554718930496897026,\"id_str\":\"1554718930496897026\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN4oUnXwAIl6BK.jpg\",\"url\":\"https:\\/\\/t.co\\/026mVX7MRE\",\"display_url\":\"pic.twitter.com\\/026mVX7MRE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaBet\\/status\\/1554718940496105473\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"4596\":{\"media\":[{\"id\":1554716543963041794,\"id_str\":\"1554716543963041794\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554716543963041794\\/pu\\/img\\/rh4gPoEH8AS_XyK3.jpg\",\"url\":\"https:\\/\\/t.co\\/PtDVpyIb3c\",\"display_url\":\"pic.twitter.com\\/PtDVpyIb3c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/BEEJAYSPECIAL_C\\/status\\/1554717766523015169\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":83700,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/vid\\/320x568\\/TlsY7diPcXYbdwHu.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/vid\\/720x1280\\/QCUsTBdpGZgLC_Im.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/vid\\/480x852\\/o21H0Afa6tDjROk_.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554716543963041794\\/pu\\/pl\\/zqZs6LY73ASMkVhR.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4597\":null,\"4598\":{\"media\":[{\"id\":1554717357368643585,\"id_str\":\"1554717357368643585\",\"indices\":[106,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554717357368643585\\/pu\\/img\\/h9a0FOVTbLN3iBN-.jpg\",\"url\":\"https:\\/\\/t.co\\/ApThT4W86Q\",\"display_url\":\"pic.twitter.com\\/ApThT4W86Q\",\"expanded_url\":\"https:\\/\\/twitter.com\\/soulflows_F\\/status\\/1554717574407020547\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1078,\"h\":558,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[539,279],\"duration_millis\":59433,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/pl\\/PTmLIaxFZwzMcKOe.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/520x270\\/cK77WLbfDBb8eKy6.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/1078x558\\/1BsEw4kC1altfZAL.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554717357368643585\\/pu\\/vid\\/694x360\\/E2pX_nnu2jdQSmwW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4599\":null,\"4600\":{\"media\":[{\"id\":1554716346495148033,\"id_str\":\"1554716346495148033\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN2R6dWIAE5mjG.jpg\",\"url\":\"https:\\/\\/t.co\\/uFYpJZTqZn\",\"display_url\":\"pic.twitter.com\\/uFYpJZTqZn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mimi_Nation22\\/status\\/1554716381962293253\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":736,\"h\":755,\"resize\":\"fit\"},\"small\":{\"w\":663,\"h\":680,\"resize\":\"fit\"}}}]},\"4601\":{\"media\":[{\"id\":1554715093241397248,\"id_str\":\"1554715093241397248\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN1I9uXgAAsmt7.jpg\",\"url\":\"https:\\/\\/t.co\\/p19mVRa2AF\",\"display_url\":\"pic.twitter.com\\/p19mVRa2AF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554715101596467202\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":600,\"resize\":\"fit\"}}}]},\"4602\":{\"media\":[{\"id\":1554714723341504512,\"id_str\":\"1554714723341504512\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0zbvXEAAxRET.jpg\",\"url\":\"https:\\/\\/t.co\\/3NV2jjlWqk\",\"display_url\":\"pic.twitter.com\\/3NV2jjlWqk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714732828950531\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"4603\":{\"media\":[{\"id\":1554714291810484224,\"id_str\":\"1554714291810484224\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0aUKWQAAq2w9.jpg\",\"url\":\"https:\\/\\/t.co\\/HcavykGv4z\",\"display_url\":\"pic.twitter.com\\/HcavykGv4z\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714297980395521\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"4604\":{\"media\":[{\"id\":1554714055516033024,\"id_str\":\"1554714055516033024\",\"indices\":[179,202],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZN0Mj5XEAAMO-R.jpg\",\"url\":\"https:\\/\\/t.co\\/nIr7rFMsXP\",\"display_url\":\"pic.twitter.com\\/nIr7rFMsXP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554714059471200258\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}}}]},\"4605\":{\"media\":[{\"id\":1554713627369816064,\"id_str\":\"1554713627369816064\",\"indices\":[254,277],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNzzo7WQAAtPBD.jpg\",\"url\":\"https:\\/\\/t.co\\/BtUY195DPp\",\"display_url\":\"pic.twitter.com\\/BtUY195DPp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/efizzywhite01\\/status\\/1554713631694233600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}}}]},\"4606\":null,\"4607\":null,\"4608\":null,\"4609\":{\"media\":[{\"id\":1554711438538711040,\"id_str\":\"1554711438538711040\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNx0O5WIAAeCrt.jpg\",\"url\":\"https:\\/\\/t.co\\/XpJ4IMt8Ke\",\"display_url\":\"pic.twitter.com\\/XpJ4IMt8Ke\",\"expanded_url\":\"https:\\/\\/twitter.com\\/krazy_bankr\\/status\\/1554711445836816384\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":576,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":363,\"resize\":\"fit\"}}}]},\"4610\":{\"media\":[{\"id\":1554710889399459841,\"id_str\":\"1554710889399459841\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554710889399459841\\/pu\\/img\\/poD2aOzD22HcJZpz.jpg\",\"url\":\"https:\\/\\/t.co\\/w9hnwCxg17\",\"display_url\":\"pic.twitter.com\\/w9hnwCxg17\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Onos_bee\\/status\\/1554710920110252032\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":6473,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/pl\\/3htkELLaLb5Vp49y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/vid\\/1280x720\\/Vmsshh9cwmhHeaFz.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/vid\\/640x360\\/TvXw5S60Ddky08R2.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554710889399459841\\/pu\\/vid\\/480x270\\/odA0OwkQCCboQLdT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4611\":null,\"4612\":null,\"4613\":{\"media\":[{\"id\":1554708357851774976,\"id_str\":\"1554708357851774976\",\"indices\":[55,78],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708357851774976\\/pu\\/img\\/7gihgb0ifPZMSXyq.jpg\",\"url\":\"https:\\/\\/t.co\\/yPLk1iZ8xb\",\"display_url\":\"pic.twitter.com\\/yPLk1iZ8xb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Highkay_Store\\/status\\/1554708959176675329\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":54066,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/pl\\/XdXzWpGeHpvfV6VB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/vid\\/720x1280\\/LT6T4ZvOP31SAPUG.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/vid\\/320x568\\/9mJYAuYO52XR5fuL.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708357851774976\\/pu\\/vid\\/480x852\\/H0H13rby10BW79PN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4614\":{\"media\":[{\"id\":1554708457663627265,\"id_str\":\"1554708457663627265\",\"indices\":[239,262],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554708457663627265\\/pu\\/img\\/blTOJZxaXwdHgRKi.jpg\",\"url\":\"https:\\/\\/t.co\\/PX6DaVUJWp\",\"display_url\":\"pic.twitter.com\\/PX6DaVUJWp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/brownsonmfon5\\/status\\/1554708618041298944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1048,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[72,131],\"duration_millis\":32100,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/480x872\\/zYn6JXLK4smNaedj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/pl\\/JseOasT7YD8elWl8.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/320x582\\/rhWBIHFa5D1DpZJ4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554708457663627265\\/pu\\/vid\\/576x1048\\/JGBnM5AFyDV8jP34.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4615\":{\"media\":[{\"id\":1554707911347437568,\"id_str\":\"1554707911347437568\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554707911347437568\\/pu\\/img\\/VS4SaZ0H3Ha1TUec.jpg\",\"url\":\"https:\\/\\/t.co\\/wVaAVdwSYq\",\"display_url\":\"pic.twitter.com\\/wVaAVdwSYq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554707960097828864\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":818,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":872,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":463,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[109,160],\"duration_millis\":15233,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/vid\\/320x468\\/ciZSMaOM1PVtr57J.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/vid\\/480x704\\/QeAl4ymL1fxtbz83.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/pl\\/cr0c1yuW-cL0B_l4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554707911347437568\\/pu\\/vid\\/720x1056\\/jI7EuiBmqTi47tgY.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4616\":null,\"4617\":null,\"4618\":{\"media\":[{\"id\":1554706425024241672,\"id_str\":\"1554706425024241672\",\"indices\":[253,276],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtQaGWYAgIha2.jpg\",\"url\":\"https:\\/\\/t.co\\/qIoG1x8dre\",\"display_url\":\"pic.twitter.com\\/qIoG1x8dre\",\"expanded_url\":\"https:\\/\\/twitter.com\\/humanaidng\\/status\\/1554706442460037120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"}}}]},\"4619\":{\"media\":[{\"id\":1554706289195978754,\"id_str\":\"1554706289195978754\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgGXkAIiRgZ.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":434,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":690,\"resize\":\"fit\"}}},{\"id\":1554706289162338306,\"id_str\":\"1554706289162338306\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIf-WQAIJtLq.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIf-WQAIJtLq.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"}}},{\"id\":1554706289158197249,\"id_str\":\"1554706289158197249\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIf9XEAEBkSt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIf9XEAEBkSt.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"}}},{\"id\":1554706289208475648,\"id_str\":\"1554706289208475648\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNtIgJWQAAptrI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNtIgJWQAAptrI.jpg\",\"url\":\"https:\\/\\/t.co\\/48GopfIQ7l\",\"display_url\":\"pic.twitter.com\\/48GopfIQ7l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Galacticus_O\\/status\\/1554706296670195713\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"}}}]},\"4620\":{\"media\":[{\"id\":1554705959184134144,\"id_str\":\"1554705959184134144\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554705959184134144\\/pu\\/img\\/gVngZtEOKJYL-JTe.jpg\",\"url\":\"https:\\/\\/t.co\\/Qb10wIRB3M\",\"display_url\":\"pic.twitter.com\\/Qb10wIRB3M\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554706027442241537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":67090,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554705959184134144\\/pu\\/vid\\/480x848\\/RmEChX77QdS_eKy8.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554705959184134144\\/pu\\/pl\\/Nm9bbjtjIF5fNQJF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554705959184134144\\/pu\\/vid\\/320x564\\/c3gimtyabbTdikkG.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4621\":{\"media\":[{\"id\":1554704234200932352,\"id_str\":\"1554704234200932352\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNrQ4pXoAAMwJy.jpg\",\"url\":\"https:\\/\\/t.co\\/Hu0fPeWVzN\",\"display_url\":\"pic.twitter.com\\/Hu0fPeWVzN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Llyodben56\\/status\\/1554704243826823170\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":203,\"h\":248,\"resize\":\"fit\"},\"small\":{\"w\":203,\"h\":248,\"resize\":\"fit\"}}},{\"id\":1554704239884124160,\"id_str\":\"1554704239884124160\",\"indices\":[152,175],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNrRN0WQAAL_Yg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNrRN0WQAAL_Yg.jpg\",\"url\":\"https:\\/\\/t.co\\/Hu0fPeWVzN\",\"display_url\":\"pic.twitter.com\\/Hu0fPeWVzN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Llyodben56\\/status\\/1554704243826823170\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":296,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":296,\"h\":170,\"resize\":\"fit\"},\"small\":{\"w\":296,\"h\":170,\"resize\":\"fit\"}}}]},\"4622\":null,\"4623\":{\"media\":[{\"id\":1554702844980510720,\"id_str\":\"1554702844980510720\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554702844980510720\\/pu\\/img\\/laL7WEnPpafxEv7y.jpg\",\"url\":\"https:\\/\\/t.co\\/mUSyx7YyU8\",\"display_url\":\"pic.twitter.com\\/mUSyx7YyU8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554703008604102656\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":127966,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/vid\\/480x270\\/O-PFm5S4TSgZA6TV.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/vid\\/640x360\\/lpxZf8-KlgAqzeh1.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/vid\\/1280x720\\/fMSoKWJQf43cL7Jd.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554702844980510720\\/pu\\/pl\\/nYkQpjtm9RCPD-fY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4624\":{\"media\":[{\"id\":1554701933344178179,\"id_str\":\"1554701933344178179\",\"indices\":[53,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554701933344178179\\/pu\\/img\\/jvOZS3vnfAjJ3M16.jpg\",\"url\":\"https:\\/\\/t.co\\/uCudsKYuHQ\",\"display_url\":\"pic.twitter.com\\/uCudsKYuHQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/gabriel1tv\\/status\\/1554702333577150466\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":57767,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/480x852\\/efC_yNkHtXYx0TCY.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/320x568\\/_nkS18ZfMTpOQ_qW.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/pl\\/A6ckCZLhh__AhJIT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554701933344178179\\/pu\\/vid\\/576x1024\\/7KtmXTkR1OS0UoXv.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4625\":{\"media\":[{\"id\":1554701102259527680,\"id_str\":\"1554701102259527680\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNoalQWYAAbQ0N.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554701114586660868,\"id_str\":\"1554701114586660868\",\"indices\":[288,311],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNobTLXgAQVjlm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNobTLXgAQVjlm.jpg\",\"url\":\"https:\\/\\/t.co\\/KCCNsnv0Bv\",\"display_url\":\"pic.twitter.com\\/KCCNsnv0Bv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Fatheraby\\/status\\/1554701125781176321\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1440,\"resize\":\"fit\"}}}]},\"4626\":null,\"4627\":null,\"4628\":null,\"4629\":{\"media\":[{\"id\":1554697439583551488,\"id_str\":\"1554697439583551488\",\"indices\":[73,96],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNlFYuWQAACxSS.jpg\",\"url\":\"https:\\/\\/t.co\\/EDUnzkz6ar\",\"display_url\":\"pic.twitter.com\\/EDUnzkz6ar\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OyeseekerSamuel\\/status\\/1554697466905350146\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":863,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":489,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1472,\"h\":2048,\"resize\":\"fit\"}}}]},\"4630\":null,\"4631\":{\"media\":[{\"id\":1554696305351483392,\"id_str\":\"1554696305351483392\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNkDXYWYAAqEDM.jpg\",\"url\":\"https:\\/\\/t.co\\/Q1TM4ZvoeK\",\"display_url\":\"pic.twitter.com\\/Q1TM4ZvoeK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/peterobimandate\\/status\\/1554696312964218880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4632\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[198,221],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4633\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4634\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4635\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4636\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4637\":{\"media\":[{\"id\":1554694558076010496,\"id_str\":\"1554694558076010496\",\"indices\":[46,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNidqRagAAADP0.jpg\",\"url\":\"https:\\/\\/t.co\\/qKQVzBdYm4\",\"display_url\":\"pic.twitter.com\\/qKQVzBdYm4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554694569500897282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"},\"medium\":{\"w\":1075,\"h\":806,\"resize\":\"fit\"}}}]},\"4638\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4639\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4640\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4641\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4642\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4643\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[185,208],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4644\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4645\":null,\"4646\":null,\"4647\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4648\":{\"media\":[{\"id\":1554690663807127557,\"id_str\":\"1554690663807127557\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-_XEAUSHIF.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554690663794593792,\"id_str\":\"1554690663794593792\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6-8X0AA-ILm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6-8X0AA-ILm.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":960,\"h\":1792,\"resize\":\"fit\"},\"medium\":{\"w\":643,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554690663819649029,\"id_str\":\"1554690663819649029\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNe6_CWIAUIPqh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNe6_CWIAUIPqh.jpg\",\"url\":\"https:\\/\\/t.co\\/mroIj14ie6\",\"display_url\":\"pic.twitter.com\\/mroIj14ie6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChristabelNwez1\\/status\\/1554690673508581376\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":643,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":364,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1792,\"resize\":\"fit\"}}}]},\"4649\":{\"media\":[{\"id\":1554690266120044545,\"id_str\":\"1554690266120044545\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554690266120044545\\/pu\\/img\\/oPzAjFC12YbZbMko.jpg\",\"url\":\"https:\\/\\/t.co\\/gb3t8xLJMa\",\"display_url\":\"pic.twitter.com\\/gb3t8xLJMa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DOluwarado\\/status\\/1554690307333160963\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":35566,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/pl\\/RkanugZSvUloueTk.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/480x852\\/Pf8IEOeKx73A6dml.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/540x960\\/5oBxauH9JH-77mI2.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554690266120044545\\/pu\\/vid\\/320x568\\/X1-lxuQNRBfXgEpc.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4650\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4651\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4652\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4653\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4654\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4655\":null,\"4656\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4657\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZEd7\",\"display_url\":\"pic.twitter.com\\/y5GWRqZEd7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4658\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[187,210],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/y5GWRqZ6nz\",\"display_url\":\"pic.twitter.com\\/y5GWRqZ6nz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4659\":null,\"4660\":{\"media\":[{\"id\":1554684899164045312,\"id_str\":\"1554684899164045312\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNZrcBWQAAHUX2.jpg\",\"url\":\"https:\\/\\/t.co\\/K71xuM0B4K\",\"display_url\":\"pic.twitter.com\\/K71xuM0B4K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/olojo_michael\\/status\\/1554684901747818497\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1920,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"4661\":{\"media\":[{\"id\":1554684441557372928,\"id_str\":\"1554684441557372928\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554684441557372928\\/pu\\/img\\/1LrrejHgdjndqXNN.jpg\",\"url\":\"https:\\/\\/t.co\\/bbtfnREtHs\",\"display_url\":\"pic.twitter.com\\/bbtfnREtHs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554684467146792962\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"large\":{\"w\":888,\"h\":490,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":375,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[444,245],\"duration_millis\":6776,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/vid\\/488x270\\/IYoSZUWi8csdAN7j.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/vid\\/652x360\\/KEP9fK8pq2gJb4FJ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/pl\\/YIqkgaDT2i5u1q6P.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554684441557372928\\/pu\\/vid\\/888x490\\/kOIfB1DXHmN-rT2z.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4662\":{\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29868,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/540x540\\/8PlMTK-z1sGoGzJv.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/320x320\\/6xOCFrmDl7C66h41.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/pl\\/wMt_AULV3UhA6Wk_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/640x640\\/WciwaqGmLy4PVePK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4663\":null,\"4664\":{\"media\":[{\"id\":1554683538263650304,\"id_str\":\"1554683538263650304\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNYcORaMAAFTBA.jpg\",\"url\":\"https:\\/\\/t.co\\/t4WEyvpAVd\",\"display_url\":\"pic.twitter.com\\/t4WEyvpAVd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554683551077273600\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"large\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"}}}]},\"4665\":{\"media\":[{\"id\":1554682413741232129,\"id_str\":\"1554682413741232129\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554682413741232129\\/pu\\/img\\/sDaXhsxEUXM0JasZ.jpg\",\"url\":\"https:\\/\\/t.co\\/nKjT1dfk9O\",\"display_url\":\"pic.twitter.com\\/nKjT1dfk9O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554682464236437505\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":6965,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/720x1280\\/tq2HWljflo7l42pI.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/320x568\\/8I94hDRkL46bOzoz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/vid\\/480x852\\/aIQr_5BQzt_eh0-Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554682413741232129\\/pu\\/pl\\/EUVWCYN9WR1gUIbG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4666\":null,\"4667\":null,\"4668\":{\"media\":[{\"id\":1554678135123488769,\"id_str\":\"1554678135123488769\",\"indices\":[157,180],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554678135123488769\\/pu\\/img\\/X9oRC0Gotqpq5lGz.jpg\",\"url\":\"https:\\/\\/t.co\\/3ZlCFgyKk7\",\"display_url\":\"pic.twitter.com\\/3ZlCFgyKk7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554678221798400000\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":804,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":754,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":427,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,201],\"duration_millis\":31466,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/vid\\/572x360\\/ufW08budYvlcVkrA.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/pl\\/CHlWzETj_JaDbjlT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/vid\\/428x270\\/6I9X_osCNF2Oc7mH.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554678135123488769\\/pu\\/vid\\/1146x720\\/IpGUb6VPMSNmti4I.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4669\":{\"media\":[{\"id\":1554676010331049984,\"id_str\":\"1554676010331049984\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554676010331049984\\/pu\\/img\\/ZOA4U4_QeoORN_qw.jpg\",\"url\":\"https:\\/\\/t.co\\/oddZSMJqci\",\"display_url\":\"pic.twitter.com\\/oddZSMJqci\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554676028567863297\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"medium\":{\"w\":520,\"h\":292,\"resize\":\"fit\"},\"small\":{\"w\":520,\"h\":292,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[130,73],\"duration_millis\":8933,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554676010331049984\\/pu\\/vid\\/480x270\\/XLW7vPcCP3BXXEPB.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554676010331049984\\/pu\\/vid\\/520x292\\/gUewJ2IuHUHoM4ep.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554676010331049984\\/pu\\/pl\\/sEGfevaGeP1HaDZN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4670\":{\"media\":[{\"id\":1554675711688196096,\"id_str\":\"1554675711688196096\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554675711688196096\\/pu\\/img\\/i_FcrClddGLnRR5z.jpg\",\"url\":\"https:\\/\\/t.co\\/lFax7HJS5c\",\"display_url\":\"pic.twitter.com\\/lFax7HJS5c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675750741356544\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":368,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,40],\"duration_millis\":30000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675711688196096\\/pu\\/vid\\/320x556\\/bTu1AJrNBvKQctZm.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675711688196096\\/pu\\/vid\\/368x640\\/69sHyQ7_EshcQEr-.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554675711688196096\\/pu\\/pl\\/DCaEKSVCvnN59pt2.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4671\":{\"media\":[{\"id\":1554675343805804544,\"id_str\":\"1554675343805804544\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNQ_PiacAAg5c6.jpg\",\"url\":\"https:\\/\\/t.co\\/yh8YBUNbtJ\",\"display_url\":\"pic.twitter.com\\/yh8YBUNbtJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554675349258371072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":418,\"resize\":\"fit\"},\"large\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":660,\"resize\":\"fit\"}}}]},\"4672\":{\"media\":[{\"id\":1554674770662531072,\"id_str\":\"1554674770662531072\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554674770662531072\\/pu\\/img\\/-PpPusTKnLZjzSxt.jpg\",\"url\":\"https:\\/\\/t.co\\/P3V7zJX26c\",\"display_url\":\"pic.twitter.com\\/P3V7zJX26c\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554674844339675136\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":33733,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/vid\\/480x270\\/txWFDh9jQ4m3NOQ_.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/vid\\/640x360\\/N4SdoHKTRjUmquw1.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/pl\\/-yJylBO1biZRCSiT.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554674770662531072\\/pu\\/vid\\/1280x720\\/dWBiQOXVuxY8uewO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4673\":{\"media\":[{\"id\":1554672480987627523,\"id_str\":\"1554672480987627523\",\"indices\":[273,296],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554672480987627523\\/pu\\/img\\/52KCpvZ3b2I7T-Hp.jpg\",\"url\":\"https:\\/\\/t.co\\/PPFuzmH34P\",\"display_url\":\"pic.twitter.com\\/PPFuzmH34P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554672615503060992\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":66524,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/pl\\/_CieEmAiwr23yzcG.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/320x568\\/cue5BfLlkfCuXCn1.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/720x1280\\/REitIbspgW2wJgEK.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554672480987627523\\/pu\\/vid\\/480x852\\/xz0YoOtoXjtYbJf6.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4674\":null,\"4675\":{\"media\":[{\"id\":1554663811361243137,\"id_str\":\"1554663811361243137\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZNGf91XgAEJPhe.jpg\",\"url\":\"https:\\/\\/t.co\\/WOAC3Y4qkx\",\"display_url\":\"pic.twitter.com\\/WOAC3Y4qkx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mkaketo\\/status\\/1554663850615742467\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"},\"large\":{\"w\":1199,\"h\":798,\"resize\":\"fit\"}}}]},\"4676\":null,\"4677\":{\"media\":[{\"id\":1554654391281618947,\"id_str\":\"1554654391281618947\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZM97pTXkAM6ijK.jpg\",\"url\":\"https:\\/\\/t.co\\/h4c38mQP8m\",\"display_url\":\"pic.twitter.com\\/h4c38mQP8m\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554654394930577419\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":486,\"h\":1080,\"resize\":\"fit\"}}}]},\"4678\":{\"media\":[{\"id\":1554652697005023232,\"id_str\":\"1554652697005023232\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554652697005023232\\/pu\\/img\\/eP0vtxg20SKNXZka.jpg\",\"url\":\"https:\\/\\/t.co\\/AFriQxiHsH\",\"display_url\":\"pic.twitter.com\\/AFriQxiHsH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/i_love_buterfly\\/status\\/1554652780295495681\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":304,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":304,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[19,40],\"duration_millis\":19232,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554652697005023232\\/pu\\/vid\\/304x640\\/ioQzxacvEQUZxkJS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554652697005023232\\/pu\\/pl\\/NnQPFitCyoQurMnB.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4679\":{\"media\":[{\"id\":1554648606262665216,\"id_str\":\"1554648606262665216\",\"indices\":[83,106],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554648606262665216\\/pu\\/img\\/pLkDKITKlsB6WlLi.jpg\",\"url\":\"https:\\/\\/t.co\\/TwxxzFGRHo\",\"display_url\":\"pic.twitter.com\\/TwxxzFGRHo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/eugene_iwunze\\/status\\/1554648838211833856\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":16497,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/vid\\/360x270\\/BwR7MuBNI1eaLHlX.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/vid\\/640x480\\/qb29rOdaphQqj_VQ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/vid\\/480x360\\/fT7C2aals67yNarL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554648606262665216\\/pu\\/pl\\/Xr-_k7FJjIEG5tz9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4680\":{\"media\":[{\"id\":1554642733482082313,\"id_str\":\"1554642733482082313\",\"indices\":[35,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMzVEnXgAk_wdI.jpg\",\"url\":\"https:\\/\\/t.co\\/OBdiJp9HTM\",\"display_url\":\"pic.twitter.com\\/OBdiJp9HTM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lit_spych0\\/status\\/1554642745213558785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":630,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":949,\"resize\":\"fit\"}}}]},\"4681\":{\"media\":[{\"id\":1554637450563276803,\"id_str\":\"1554637450563276803\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554637450563276803\\/pu\\/img\\/r4sl-VYi_J8V7C33.jpg\",\"url\":\"https:\\/\\/t.co\\/ajYFtXFLD2\",\"display_url\":\"pic.twitter.com\\/ajYFtXFLD2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9yperri\\/status\\/1554638440527962112\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,10],\"duration_millis\":38533,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/pl\\/P0krj0KBVtHMKdM7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/vid\\/720x800\\/RvBR10qulsJtbc3v.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/vid\\/320x354\\/jgMsMGR5L16gzm1s.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554637450563276803\\/pu\\/vid\\/480x532\\/3ViP9UwapUDunUgO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4682\":null,\"4683\":null,\"4684\":{\"media\":[{\"id\":1554637063869300736,\"id_str\":\"1554637063869300736\",\"indices\":[162,185],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMuLDqWAAAcIP-.jpg\",\"url\":\"https:\\/\\/t.co\\/PKifp64k9P\",\"display_url\":\"pic.twitter.com\\/PKifp64k9P\",\"expanded_url\":\"https:\\/\\/twitter.com\\/seemeon79\\/status\\/1554637068256559105\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4685\":{\"media\":[{\"id\":1554635275258691584,\"id_str\":\"1554635275258691584\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554635275258691584\\/pu\\/img\\/3WylIpIK3NJL7E2q.jpg\",\"url\":\"https:\\/\\/t.co\\/xbluBJ1Bzl\",\"display_url\":\"pic.twitter.com\\/xbluBJ1Bzl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/zubyblaq4\\/status\\/1554635445933334530\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":371,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":672,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":655,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[6,11],\"duration_millis\":45000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/pl\\/qQGQ04wuRzsp7w_m.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/vid\\/672x1232\\/9kO-pFdj1epUZ-j4.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/vid\\/320x586\\/YwCcmt6qY8zAfUEZ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554635275258691584\\/pu\\/vid\\/480x880\\/6Ksw5uHA4C0lCgax.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4686\":{\"media\":[{\"id\":1554630376060076032,\"id_str\":\"1554630376060076032\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554630376060076032\\/pu\\/img\\/ci_GpTKs6S9lRR6O.jpg\",\"url\":\"https:\\/\\/t.co\\/YVk6rRhGYx\",\"display_url\":\"pic.twitter.com\\/YVk6rRhGYx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ychizway\\/status\\/1554630465654505472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":17133,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/320x568\\/3FY7NWFnFwhGxiJi.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/480x852\\/46-RKMXMrHST8wIZ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/vid\\/720x1280\\/G55a3ug6-hNsx6jT.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554630376060076032\\/pu\\/pl\\/S5lrgkClnOPJwf6X.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4687\":{\"media\":[{\"id\":1554619598124859392,\"id_str\":\"1554619598124859392\",\"indices\":[283,306],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554619598124859392\\/pu\\/img\\/9eZs5aSxOKVw9nac.jpg\",\"url\":\"https:\\/\\/t.co\\/Iv9ZvgYBiO\",\"display_url\":\"pic.twitter.com\\/Iv9ZvgYBiO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sheffy_b\\/status\\/1554619892044861441\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":70608,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/pl\\/RGCHPrLQaf7iMpwU.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/vid\\/480x852\\/5F1wCRzwn0lrVcJO.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/vid\\/320x568\\/2kHTmOmtgCBL5Kvb.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554619598124859392\\/pu\\/vid\\/720x1280\\/iI1VYM-oC22orUlK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4688\":{\"media\":[{\"id\":1554618059440246784,\"id_str\":\"1554618059440246784\",\"indices\":[33,56],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMc42pX0AAwYzl.jpg\",\"url\":\"https:\\/\\/t.co\\/AV7wAnvbfr\",\"display_url\":\"pic.twitter.com\\/AV7wAnvbfr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/israelpaulonyah\\/status\\/1554618074481016832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":359,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":360,\"resize\":\"fit\"}}}]},\"4689\":null,\"4690\":{\"media\":[{\"id\":1554614868568948736,\"id_str\":\"1554614868568948736\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_HuXwAAqFCs.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":403,\"h\":269,\"resize\":\"fit\"},\"large\":{\"w\":403,\"h\":269,\"resize\":\"fit\"}}},{\"id\":1554614871618211841,\"id_str\":\"1554614871618211841\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_TFX0AEDxGs.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_TFX0AEDxGs.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1171,\"h\":825,\"resize\":\"fit\"},\"large\":{\"w\":1171,\"h\":825,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":479,\"resize\":\"fit\"}}},{\"id\":1554614880128405507,\"id_str\":\"1554614880128405507\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMZ_yyXEAM9yvp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMZ_yyXEAM9yvp.jpg\",\"url\":\"https:\\/\\/t.co\\/HZJCflsta5\",\"display_url\":\"pic.twitter.com\\/HZJCflsta5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GodwinOchije\\/status\\/1554614885547393024\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":534,\"h\":586,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":534,\"h\":586,\"resize\":\"fit\"},\"large\":{\"w\":534,\"h\":586,\"resize\":\"fit\"}}}]},\"4691\":null,\"4692\":null,\"4693\":{\"media\":[{\"id\":1554610553548689410,\"id_str\":\"1554610553548689410\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMWD9BX0AIVSGz.jpg\",\"url\":\"https:\\/\\/t.co\\/mI2CAEvgD3\",\"display_url\":\"pic.twitter.com\\/mI2CAEvgD3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gafexian_Zone\\/status\\/1554610609047670785\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1625,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":952,\"h\":1200,\"resize\":\"fit\"}}}]},\"4694\":null,\"4695\":{\"media\":[{\"id\":1554608983436136448,\"id_str\":\"1554608983436136448\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554608983436136448\\/pu\\/img\\/2xxUFAvt4h8LtPkg.jpg\",\"url\":\"https:\\/\\/t.co\\/k8OQNbybAR\",\"display_url\":\"pic.twitter.com\\/k8OQNbybAR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554609029619523584\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":9380,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/pl\\/pgBPDLM47DQRy8LF.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/vid\\/320x564\\/fm-bHOaE2R-OEy7W.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554608983436136448\\/pu\\/vid\\/480x848\\/NJmqG3lydOXclaVH.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4696\":{\"media\":[{\"id\":1554607722762584064,\"id_str\":\"1554607722762584064\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554607722762584064\\/pu\\/img\\/RyHURO5Nrr4ooUah.jpg\",\"url\":\"https:\\/\\/t.co\\/4xz5V4RVAT\",\"display_url\":\"pic.twitter.com\\/4xz5V4RVAT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Urbandistrictng\\/status\\/1554607749148905474\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":3166,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554607722762584064\\/pu\\/vid\\/320x564\\/A2g_APhu_elGgQgP.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554607722762584064\\/pu\\/vid\\/480x848\\/wQW8PbC6gYs8TTHg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554607722762584064\\/pu\\/pl\\/xOHHgbKr9iXikx4c.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4697\":{\"media\":[{\"id\":1554606533408858113,\"id_str\":\"1554606533408858113\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSZ81WIAEpUVe.jpg\",\"url\":\"https:\\/\\/t.co\\/ZkJhDKtoXy\",\"display_url\":\"pic.twitter.com\\/ZkJhDKtoXy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lawehilegbu\\/status\\/1554606539872288769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554606537296977926,\"id_str\":\"1554606537296977926\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSaLUWIAYi0y3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSaLUWIAYi0y3.jpg\",\"url\":\"https:\\/\\/t.co\\/ZkJhDKtoXy\",\"display_url\":\"pic.twitter.com\\/ZkJhDKtoXy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lawehilegbu\\/status\\/1554606539872288769\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":864,\"h\":1080,\"resize\":\"fit\"}}}]},\"4698\":{\"media\":[{\"id\":1554606337211908097,\"id_str\":\"1554606337211908097\",\"indices\":[237,260],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMSOh8WQAEr8BO.jpg\",\"url\":\"https:\\/\\/t.co\\/c4hYMDSAaq\",\"display_url\":\"pic.twitter.com\\/c4hYMDSAaq\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skillerdo\\/status\\/1554606340001173504\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"small\":{\"w\":548,\"h\":548,\"resize\":\"fit\"},\"large\":{\"w\":548,\"h\":548,\"resize\":\"fit\"}}}]},\"4699\":{\"media\":[{\"id\":1554603542266216453,\"id_str\":\"1554603542266216453\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554603542266216453\\/pu\\/img\\/AtRESW_0Vwe_EtzM.jpg\",\"url\":\"https:\\/\\/t.co\\/G5tXbMi8JI\",\"display_url\":\"pic.twitter.com\\/G5tXbMi8JI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554603566140198912\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":368,\"h\":704,\"resize\":\"fit\"},\"small\":{\"w\":355,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":368,\"h\":704,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[23,44],\"duration_millis\":6542,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/vid\\/368x704\\/i3BjdQuVeas3qU2m.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/vid\\/320x612\\/cam0KQsRzZwqM76S.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554603542266216453\\/pu\\/pl\\/SQuvEF80lrKo__Sg.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4700\":{\"media\":[{\"id\":1554602770505809920,\"id_str\":\"1554602770505809920\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554602770505809920\\/pu\\/img\\/lhXiHHfrh3rHao-a.jpg\",\"url\":\"https:\\/\\/t.co\\/e54sgy8pxo\",\"display_url\":\"pic.twitter.com\\/e54sgy8pxo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602830664802305\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":23048,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/pl\\/WgDfNwVQYYxLOsxJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/480x852\\/o-OdLn23xPZJYT5Q.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/576x1024\\/W9_SEbyQAhbmHDQD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554602770505809920\\/pu\\/vid\\/320x568\\/panBhxJchCoJ7wyX.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4701\":{\"media\":[{\"id\":1554601929199714304,\"id_str\":\"1554601929199714304\",\"indices\":[194,217],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601929199714304\\/pu\\/img\\/do2CUhtQSWcLzqKi.jpg\",\"url\":\"https:\\/\\/t.co\\/qtcJ27cTDc\",\"display_url\":\"pic.twitter.com\\/qtcJ27cTDc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554602151254556680\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":79373,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/pl\\/PMiQGKZENsKtQhWe.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/320x568\\/eIBbDsJxcPnoOlxz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/480x852\\/6Djqns_RttXe2wxm.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601929199714304\\/pu\\/vid\\/576x1024\\/Wrn7ClwSrMBy5DhO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4702\":null,\"4703\":{\"media\":[{\"id\":1554601188276195329,\"id_str\":\"1554601188276195329\",\"indices\":[235,258],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554601188276195329\\/pu\\/img\\/JZfZ1iknZQn3yCxA.jpg\",\"url\":\"https:\\/\\/t.co\\/evluzp5XOj\",\"display_url\":\"pic.twitter.com\\/evluzp5XOj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554601323043377152\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":671,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":380,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":716,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[320,179],\"duration_millis\":69200,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/pl\\/QjOXDdqRgzrohBO0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/vid\\/642x360\\/31sZiE79gER4VAha.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/vid\\/1280x716\\/_wl9oSXw2MPjCZpA.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554601188276195329\\/pu\\/vid\\/482x270\\/WRi3pRO0oDuU3Z2S.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4704\":{\"media\":[{\"id\":1554600621277331456,\"id_str\":\"1554600621277331456\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMNB0bWQAAdApB.jpg\",\"url\":\"https:\\/\\/t.co\\/2QbWRdDCYQ\",\"display_url\":\"pic.twitter.com\\/2QbWRdDCYQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554600627451449345\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":612,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1412,\"resize\":\"fit\"}}}]},\"4705\":{\"media\":[{\"id\":1554599720932327425,\"id_str\":\"1554599720932327425\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMMNaYXwAE-_Zp.jpg\",\"url\":\"https:\\/\\/t.co\\/cz3d3iBHCW\",\"display_url\":\"pic.twitter.com\\/cz3d3iBHCW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554599767337992197\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":936,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":530,\"resize\":\"fit\"}}}]},\"4706\":{\"media\":[{\"id\":1554599422385864704,\"id_str\":\"1554599422385864704\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554599422385864704\\/pu\\/img\\/cfrKEPJjUWJpSKkw.jpg\",\"url\":\"https:\\/\\/t.co\\/Y6uBqjHALV\",\"display_url\":\"pic.twitter.com\\/Y6uBqjHALV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554599480476975104\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":16278,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/vid\\/480x848\\/ofic7dZCT-aNYK1Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/pl\\/RQS6JEufrstPbB9v.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554599422385864704\\/pu\\/vid\\/320x564\\/fgk2_ggt6rs-UM0u.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4707\":null,\"4708\":{\"media\":[{\"id\":1554597524304023552,\"id_str\":\"1554597524304023552\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMKNjTX0AA8wTD.jpg\",\"url\":\"https:\\/\\/t.co\\/FhfDGunyTi\",\"display_url\":\"pic.twitter.com\\/FhfDGunyTi\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Readone_001\\/status\\/1554597548131745793\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":313,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":313,\"resize\":\"fit\"}}}]},\"4709\":{\"media\":[{\"id\":1554597007825698816,\"id_str\":\"1554597007825698816\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554597007825698816\\/pu\\/img\\/RqUWoN-VZe6t8Rt7.jpg\",\"url\":\"https:\\/\\/t.co\\/uDd8WrJ4ea\",\"display_url\":\"pic.twitter.com\\/uDd8WrJ4ea\",\"expanded_url\":\"https:\\/\\/twitter.com\\/legit_gadgets\\/status\\/1554597054571225088\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":9546,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/vid\\/480x848\\/N119Ml4JbdGdVHCc.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/pl\\/P5juKTxdN0XYZoHc.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554597007825698816\\/pu\\/vid\\/320x564\\/aFt76PBA7cDuFD-f.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4710\":{\"media\":[{\"id\":1554596190947246080,\"id_str\":\"1554596190947246080\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554596190947246080\\/pu\\/img\\/Nco6EHEVsyxbjTzL.jpg\",\"url\":\"https:\\/\\/t.co\\/RtVmnAvt1C\",\"display_url\":\"pic.twitter.com\\/RtVmnAvt1C\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kapital929\\/status\\/1554597018705747968\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":352,\"h\":640,\"resize\":\"fit\"},\"medium\":{\"w\":352,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":140026,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/pl\\/SAfd_uatgjBL76ds.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/vid\\/352x640\\/sSlT3OskILbErszN.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554596190947246080\\/pu\\/vid\\/320x580\\/P16Fcs9VSQgK0uRr.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4711\":{\"media\":[{\"id\":1554594537326125056,\"id_str\":\"1554594537326125056\",\"indices\":[258,281],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554594537326125056\\/pu\\/img\\/cnvFh_OIkTSjYfbU.jpg\",\"url\":\"https:\\/\\/t.co\\/PBdTHFPCJc\",\"display_url\":\"pic.twitter.com\\/PBdTHFPCJc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/teacherchike1\\/status\\/1554594793111654402\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":132540,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/720x1280\\/VMhxukKfvLyOobG0.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/pl\\/RuGEORJSj_UVQme9.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/320x568\\/spNlw1HYxul-TSig.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554594537326125056\\/pu\\/vid\\/480x852\\/gL5a5FHp3CR7cyzV.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4712\":null,\"4713\":{\"media\":[{\"id\":1554591155941253121,\"id_str\":\"1554591155941253121\",\"indices\":[93,116],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554591155941253121\\/pu\\/img\\/4GLOjIKC2H3dgWy2.jpg\",\"url\":\"https:\\/\\/t.co\\/ShfbN1sSL9\",\"display_url\":\"pic.twitter.com\\/ShfbN1sSL9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/louis_prinzy\\/status\\/1554591385281593347\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":888,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":389,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[222,127],\"duration_millis\":36800,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/pl\\/iOJtdvK-o_ZaN4bP.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/vid\\/888x508\\/v9WhycKhLhYTu-Bc.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/vid\\/470x270\\/46VASsR2T0u181kf.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554591155941253121\\/pu\\/vid\\/628x360\\/O1ZgDIsLcaHe_DNR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4714\":null,\"4715\":{\"media\":[{\"id\":1554590630231277572,\"id_str\":\"1554590630231277572\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMD8Q4WAAQYkKo.jpg\",\"url\":\"https:\\/\\/t.co\\/lJPjiWEKfZ\",\"display_url\":\"pic.twitter.com\\/lJPjiWEKfZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sirvee101\\/status\\/1554590639408484353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":656,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1042,\"resize\":\"fit\"}}}]},\"4716\":null,\"4717\":{\"media\":[{\"id\":1554589156348674055,\"id_str\":\"1554589156348674055\",\"indices\":[222,245],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMCmePWQAcp-st.jpg\",\"url\":\"https:\\/\\/t.co\\/4qOh0Bcriz\",\"display_url\":\"pic.twitter.com\\/4qOh0Bcriz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Lifestylegist1\\/status\\/1554589166352187393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":662,\"h\":831,\"resize\":\"fit\"},\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":662,\"h\":831,\"resize\":\"fit\"}}}]},\"4718\":null,\"4719\":{\"media\":[{\"id\":1554588441756704768,\"id_str\":\"1554588441756704768\",\"indices\":[52,75],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMB84LWIAA4mbW.jpg\",\"url\":\"https:\\/\\/t.co\\/Y0fdqSTitx\",\"display_url\":\"pic.twitter.com\\/Y0fdqSTitx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ZOrogho\\/status\\/1554588484404449289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":446,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":787,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1284,\"h\":1957,\"resize\":\"fit\"}}}]},\"4720\":{\"media\":[{\"id\":1554587975564103680,\"id_str\":\"1554587975564103680\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZMBhveXkAAoLc8.jpg\",\"url\":\"https:\\/\\/t.co\\/4o2OIyw7oL\",\"display_url\":\"pic.twitter.com\\/4o2OIyw7oL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/aboki_30BG\\/status\\/1554587978223288320\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":582,\"h\":500,\"resize\":\"fit\"},\"medium\":{\"w\":582,\"h\":500,\"resize\":\"fit\"}}}]},\"4721\":{\"media\":[{\"id\":1554586208952532994,\"id_str\":\"1554586208952532994\",\"indices\":[246,269],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554586208952532994\\/pu\\/img\\/Uit0-zZJ5tymXbI7.jpg\",\"url\":\"https:\\/\\/t.co\\/d3aa5a3f0V\",\"display_url\":\"pic.twitter.com\\/d3aa5a3f0V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/alabedejoseph1\\/status\\/1554586355518300166\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21313,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/320x568\\/OI7uRtCIORhpIaD4.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/pl\\/PmMyyebtIymx_ajL.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/720x1280\\/KiFLBOr1UGN5aTrz.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554586208952532994\\/pu\\/vid\\/480x852\\/2H2gKnshjZjh3wUf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4722\":null,\"4723\":null,\"4724\":{\"media\":[{\"id\":1554583971324887040,\"id_str\":\"1554583971324887040\",\"indices\":[82,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554583971324887040\\/pu\\/img\\/-ghVeDGe0DPgUhLj.jpg\",\"url\":\"https:\\/\\/t.co\\/bmG4W5Hwwy\",\"display_url\":\"pic.twitter.com\\/bmG4W5Hwwy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thisisalagbaa\\/status\\/1554584412356050948\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":67332,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/vid\\/480x270\\/x3dXSBI4qr2Nc8EX.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/pl\\/sDHiWuVhqAkOHt-7.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/vid\\/1280x720\\/mM-hXYqiC6BkHpx8.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554583971324887040\\/pu\\/vid\\/640x360\\/q323LexFUsh8Jq7q.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4725\":{\"media\":[{\"id\":1554583816798355461,\"id_str\":\"1554583816798355461\",\"indices\":[214,237],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL9vq3WQAU71Bu.jpg\",\"url\":\"https:\\/\\/t.co\\/zaYOx6IOCb\",\"display_url\":\"pic.twitter.com\\/zaYOx6IOCb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554583820158001152\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4726\":{\"media\":[{\"id\":1554582993804873728,\"id_str\":\"1554582993804873728\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554582993804873728\\/pu\\/img\\/xRerX0jKeDyiZ4j2.jpg\",\"url\":\"https:\\/\\/t.co\\/F075q1h4GA\",\"display_url\":\"pic.twitter.com\\/F075q1h4GA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554583020010901504\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":848,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[53,30],\"duration_millis\":19258,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/pl\\/P8TUzNYFmD0Y9wIg.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/vid\\/848x480\\/czuNBSO94tEE8mgm.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/vid\\/636x360\\/170hVsFnRLXyNMEu.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554582993804873728\\/pu\\/vid\\/476x270\\/IQPZyNZrUxpRFJb1.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":{\"media\":[{\"id\":1554581897132789760,\"id_str\":\"1554581897132789760\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7_7jaUAA7vr0.jpg\",\"url\":\"https:\\/\\/t.co\\/UT5Uy5HRvJ\",\"display_url\":\"pic.twitter.com\\/UT5Uy5HRvJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554581905239969792\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":559,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":912,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":912,\"resize\":\"fit\"}}}]},\"4732\":null,\"4733\":{\"media\":[{\"id\":1554581234235412481,\"id_str\":\"1554581234235412481\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7ZWEXEAEW1BY.jpg\",\"url\":\"https:\\/\\/t.co\\/NFhyoMAUlk\",\"display_url\":\"pic.twitter.com\\/NFhyoMAUlk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Jos1Saint\\/status\\/1554581240686297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":583,\"h\":1036,\"resize\":\"fit\"}}}]},\"4734\":{\"media\":[{\"id\":1554581005146652674,\"id_str\":\"1554581005146652674\",\"indices\":[262,285],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL7MApWAAIEGiz.jpg\",\"url\":\"https:\\/\\/t.co\\/4VG90Qm9JZ\",\"display_url\":\"pic.twitter.com\\/4VG90Qm9JZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/oladeji_ogunsh\\/status\\/1554581013409546248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":1792,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"4735\":{\"media\":[{\"id\":1554579304125763584,\"id_str\":\"1554579304125763584\",\"indices\":[139,162],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5o_2XEAAgzH_.jpg\",\"url\":\"https:\\/\\/t.co\\/YMztRiBL5u\",\"display_url\":\"pic.twitter.com\\/YMztRiBL5u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/iamogswagg\\/status\\/1554579339567661056\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1440,\"h\":1440,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4736\":{\"media\":[{\"id\":1554579114564239360,\"id_str\":\"1554579114564239360\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5d9rXwAARiG5.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":451,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":451,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554579127121969153,\"id_str\":\"1554579127121969153\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5esdXgAEBMnP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5esdXgAEBMnP.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"small\":{\"w\":415,\"h\":363,\"resize\":\"fit\"},\"medium\":{\"w\":415,\"h\":363,\"resize\":\"fit\"}}},{\"id\":1554579132545130498,\"id_str\":\"1554579132545130498\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5fAqWYAIHJW1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5fAqWYAIHJW1.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":679,\"h\":452,\"resize\":\"fit\"},\"small\":{\"w\":679,\"h\":452,\"resize\":\"fit\"},\"large\":{\"w\":679,\"h\":452,\"resize\":\"fit\"}}},{\"id\":1554579136739524609,\"id_str\":\"1554579136739524609\",\"indices\":[60,83],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL5fQSXwAE5SPC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL5fQSXwAE5SPC.jpg\",\"url\":\"https:\\/\\/t.co\\/y3iBe7Z5xR\",\"display_url\":\"pic.twitter.com\\/y3iBe7Z5xR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Sammie172002\\/status\\/1554579142963863555\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":715,\"h\":429,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":429,\"resize\":\"fit\"}}}]},\"4737\":null,\"4738\":{\"media\":[{\"id\":1554578031435517954,\"id_str\":\"1554578031435517954\",\"indices\":[215,238],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554578031435517954\\/pu\\/img\\/yFZidWxKohgxFBQ_.jpg\",\"url\":\"https:\\/\\/t.co\\/acD1l2dqBM\",\"display_url\":\"pic.twitter.com\\/acD1l2dqBM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/9ja_poet_singer\\/status\\/1554578605518249987\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":10000,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/vid\\/320x568\\/uCQIy2XYBR4WR3XW.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/vid\\/480x852\\/BILjMQOu2VrlmkAQ.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/vid\\/720x1280\\/1zDytdMCsheQa6kI.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554578031435517954\\/pu\\/pl\\/6LgvFEGeYA79ZbzO.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4739\":{\"media\":[{\"id\":1554577725578428416,\"id_str\":\"1554577725578428416\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554577725578428416\\/pu\\/img\\/Tz4lS4JwBloY1wgk.jpg\",\"url\":\"https:\\/\\/t.co\\/WKf1KfCP3I\",\"display_url\":\"pic.twitter.com\\/WKf1KfCP3I\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Danley_codes\\/status\\/1554577906474655744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":9657,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/pl\\/AoC5E0LoVsbGBRwK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/320x568\\/J0dlf_8LhV2nRKo4.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/480x852\\/Jmov1fvHpJ5j593e.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554577725578428416\\/pu\\/vid\\/720x1280\\/q7q_Dbrn_jBKVZsm.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4740\":null,\"4741\":{\"media\":[{\"id\":1554576149258321921,\"id_str\":\"1554576149258321921\",\"indices\":[84,107],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554576149258321921\\/pu\\/img\\/7B8bMUupVdtozcH7.jpg\",\"url\":\"https:\\/\\/t.co\\/g8U8HCWEfs\",\"display_url\":\"pic.twitter.com\\/g8U8HCWEfs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sub_sidy1\\/status\\/1554577036416618496\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":54982,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/pl\\/de4k4uy_0fry__Mo.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/480x270\\/IbHpqNhBGQXIYlef.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/640x360\\/8fhEH6YfgFjldA8J.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554576149258321921\\/pu\\/vid\\/1280x720\\/45FSISikcJ4HdDR9.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4742\":{\"media\":[{\"id\":1554576110595313664,\"id_str\":\"1554576110595313664\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vHBXkAAf2_2.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554576110586941443,\"id_str\":\"1554576110586941443\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AMBkmn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AMBkmn.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554576110586941441,\"id_str\":\"1554576110586941441\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AEqUD8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vG_X0AEqUD8.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554576110653956098,\"id_str\":\"1554576110653956098\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2vHPWYAI2xb0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2vHPWYAI2xb0.jpg\",\"url\":\"https:\\/\\/t.co\\/xLLxCmylHy\",\"display_url\":\"pic.twitter.com\\/xLLxCmylHy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/arike_imagery\\/status\\/1554576134330896392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"}}}]},\"4743\":null,\"4744\":{\"media\":[{\"id\":1554575508972736514,\"id_str\":\"1554575508972736514\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2MFzXkAIbI9-.jpg\",\"url\":\"https:\\/\\/t.co\\/tXMNBZl0y9\",\"display_url\":\"pic.twitter.com\\/tXMNBZl0y9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/captain_edet\\/status\\/1554575519135440899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":633,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"}}},{\"id\":1554575508914012160,\"id_str\":\"1554575508914012160\",\"indices\":[127,150],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2MFlXgAAfdm8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2MFlXgAAfdm8.jpg\",\"url\":\"https:\\/\\/t.co\\/tXMNBZl0y9\",\"display_url\":\"pic.twitter.com\\/tXMNBZl0y9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/captain_edet\\/status\\/1554575519135440899\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"small\":{\"w\":262,\"h\":229,\"resize\":\"fit\"},\"large\":{\"w\":262,\"h\":229,\"resize\":\"fit\"}}}]},\"4745\":{\"media\":[{\"id\":1554575505319464961,\"id_str\":\"1554575505319464961\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2L4MXEAEc5JS.jpg\",\"url\":\"https:\\/\\/t.co\\/sto3iBuaWX\",\"display_url\":\"pic.twitter.com\\/sto3iBuaWX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AbUtEcH_bRo\\/status\\/1554575508922400768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1280,\"h\":872,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":463,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":818,\"resize\":\"fit\"}}}]},\"4746\":{\"media\":[{\"id\":1554575368509702145,\"id_str\":\"1554575368509702145\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2D6iXwAEcNzV.jpg\",\"url\":\"https:\\/\\/t.co\\/2z0WSFjajx\",\"display_url\":\"pic.twitter.com\\/2z0WSFjajx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chuks238_\\/status\\/1554575385966297088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1146,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1755,\"h\":1838,\"resize\":\"fit\"},\"small\":{\"w\":649,\"h\":680,\"resize\":\"fit\"}}}]},\"4747\":{\"media\":[{\"id\":1554575316382875651,\"id_str\":\"1554575316382875651\",\"indices\":[172,195],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL2A4WXgAM9a3z.jpg\",\"url\":\"https:\\/\\/t.co\\/XYDehFbf1r\",\"display_url\":\"pic.twitter.com\\/XYDehFbf1r\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554575319453032448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"small\":{\"w\":554,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":554,\"h\":554,\"resize\":\"fit\"}}}]},\"4748\":{\"media\":[{\"id\":1554574473826893825,\"id_str\":\"1554574473826893825\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL1P1lXgAE54f-.jpg\",\"url\":\"https:\\/\\/t.co\\/WaXLSMGJWu\",\"display_url\":\"pic.twitter.com\\/WaXLSMGJWu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialonoski\\/status\\/1554574477953990657\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":259,\"h\":194,\"resize\":\"fit\"},\"small\":{\"w\":259,\"h\":194,\"resize\":\"fit\"}}}]},\"4749\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"4750\":{\"media\":[{\"id\":1554573919142772740,\"id_str\":\"1554573919142772740\",\"indices\":[59,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0vjOXgAQu4Lp.jpg\",\"url\":\"https:\\/\\/t.co\\/sivn4BF0Lt\",\"display_url\":\"pic.twitter.com\\/sivn4BF0Lt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kayode_tevi\\/status\\/1554573928336691206\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":554,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":946,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":314,\"h\":680,\"resize\":\"fit\"}}}]},\"4751\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"4752\":{\"media\":[{\"id\":1554573613482872845,\"id_str\":\"1554573613482872845\",\"indices\":[255,278],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554573613482872845\\/pu\\/img\\/J8gBz2Txkx4cVYNz.jpg\",\"url\":\"https:\\/\\/t.co\\/b3nGbPJ6WI\",\"display_url\":\"pic.twitter.com\\/b3nGbPJ6WI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Topmostnigga\\/status\\/1554573719493910528\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":20788,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573613482872845\\/pu\\/vid\\/448x848\\/stE4lk5aT9g0z1ns.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573613482872845\\/pu\\/vid\\/320x604\\/M9arUMHKqMAUj-Vj.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554573613482872845\\/pu\\/pl\\/sp7wsZB9_VgY7iJ8.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4753\":{\"media\":[{\"id\":1554573601575165952,\"id_str\":\"1554573601575165952\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZL0dEMWYAAOkAb.jpg\",\"url\":\"https:\\/\\/t.co\\/mcz8JzpAuh\",\"display_url\":\"pic.twitter.com\\/mcz8JzpAuh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PBplusOilAndGas\\/status\\/1554573632428449801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4754\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"4755\":null,\"4756\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4757\":{\"media\":[{\"id\":1554572788920369152,\"id_str\":\"1554572788920369152\",\"indices\":[90,113],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLztw0WQAAJ0At.jpg\",\"url\":\"https:\\/\\/t.co\\/HQwbISDLcM\",\"display_url\":\"pic.twitter.com\\/HQwbISDLcM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/HGbesh\\/status\\/1554572799079071747\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":378,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":666,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1137,\"h\":2048,\"resize\":\"fit\"}}}]},\"4758\":{\"media\":[{\"id\":1554572134692839424,\"id_str\":\"1554572134692839424\",\"indices\":[41,64],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzHroWYAAb3aQ.jpg\",\"url\":\"https:\\/\\/t.co\\/tcuRoXXAF3\",\"display_url\":\"pic.twitter.com\\/tcuRoXXAF3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CamillusChinon1\\/status\\/1554572159581814787\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4759\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4760\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4761\":{\"media\":[{\"id\":1554571677832560649,\"id_str\":\"1554571677832560649\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLytFsXwAkz1a7.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554571689882697737,\"id_str\":\"1554571689882697737\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLytylWQAkecA6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLytylWQAkecA6.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":749,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":749,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":497,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554571698892046338,\"id_str\":\"1554571698892046338\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyuUJWAAIgU3T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyuUJWAAIgU3T.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}},{\"id\":1554571716155871233,\"id_str\":\"1554571716155871233\",\"indices\":[104,127],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyvUdXEAEdiUx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyvUdXEAEdiUx.jpg\",\"url\":\"https:\\/\\/t.co\\/hLI1uuGvKv\",\"display_url\":\"pic.twitter.com\\/hLI1uuGvKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Amaz_Global\\/status\\/1554571726410981377\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"4762\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4763\":{\"media\":[{\"id\":1554571484919652353,\"id_str\":\"1554571484919652353\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLyh3CWYAE9B-c.jpg\",\"url\":\"https:\\/\\/t.co\\/3fvdTVhxz3\",\"display_url\":\"pic.twitter.com\\/3fvdTVhxz3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/erioluu\\/status\\/1554571502409981952\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"}}}]},\"4764\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[191,214],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4765\":{\"media\":[{\"id\":1554571272939503617,\"id_str\":\"1554571272939503617\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554571272939503617\\/pu\\/img\\/k3Olv0pB70VeXId0.jpg\",\"url\":\"https:\\/\\/t.co\\/StLsLPAdY2\",\"display_url\":\"pic.twitter.com\\/StLsLPAdY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554571349196242944\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":528,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":528,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,10],\"duration_millis\":16044,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/296x270\\/clTKbUW4m08hCF-A.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/pl\\/sLPUGtrFxPi1Wa5y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/528x480\\/8bI65dhscddXjFLT.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554571272939503617\\/pu\\/vid\\/396x360\\/3_yLhXWsVkXv3VRD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4766\":null,\"4767\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[190,213],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvN6PV\",\"display_url\":\"pic.twitter.com\\/qvncNvN6PV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4768\":null,\"4769\":{\"media\":[{\"id\":1554569453408485381,\"id_str\":\"1554569453408485381\",\"indices\":[263,286],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554569453408485381\\/pu\\/img\\/JBN698x9IBanAHYg.jpg\",\"url\":\"https:\\/\\/t.co\\/g210vExw4h\",\"display_url\":\"pic.twitter.com\\/g210vExw4h\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uzorvick\\/status\\/1554570096919646214\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":508,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[127,90],\"duration_millis\":16977,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554569453408485381\\/pu\\/vid\\/508x360\\/dkeCV4wvWwx6Rmkw.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554569453408485381\\/pu\\/vid\\/380x270\\/_fM8kpTC7Xtpgr91.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554569453408485381\\/pu\\/pl\\/oID0yxKLoQe--EFP.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4770\":null,\"4771\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[188,211],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false,\"source_user\":{\"id\":1199324827020136448,\"id_str\":\"1199324827020136448\",\"name\":\"Atadegbe Yakubu A\",\"screen_name\":\"AAtadegbe\",\"location\":\"Delta, Nigeria\",\"description\":\"Ambassador|#IYC,Gnxt-VY|Former State Chairman NANC kogi|Medical Practitioner|Peace Ambassador GPBnet|Social media influencer|National Vp NANC external affair\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1106,\"friends_count\":692,\"listed_count\":2,\"created_at\":\"Tue Nov 26 13:52:06 +0000 2019\",\"favourites_count\":12601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5332,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537377769088290816\\/hRMkP1zd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1199324827020136448\\/1623834748\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]}}}]},\"4772\":{\"media\":[{\"id\":1554567277638553600,\"id_str\":\"1554567277638553600\",\"indices\":[102,125],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLus9sXkAAR2vr.jpg\",\"url\":\"https:\\/\\/t.co\\/5QOb1BIQY2\",\"display_url\":\"pic.twitter.com\\/5QOb1BIQY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/pluse_official\\/status\\/1554567302422609920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4773\":{\"media\":[{\"id\":1554567165231112192,\"id_str\":\"1554567165231112192\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLuma8WIAAyL43.jpg\",\"url\":\"https:\\/\\/t.co\\/sfUGAQ8nua\",\"display_url\":\"pic.twitter.com\\/sfUGAQ8nua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Macdavvis1\\/status\\/1554567192582258688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1536,\"resize\":\"fit\"}}},{\"id\":1554567180385148928,\"id_str\":\"1554567180385148928\",\"indices\":[189,212],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLunTZWYAAc9bN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLunTZWYAAc9bN.jpg\",\"url\":\"https:\\/\\/t.co\\/sfUGAQ8nua\",\"display_url\":\"pic.twitter.com\\/sfUGAQ8nua\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Macdavvis1\\/status\\/1554567192582258688\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2042,\"h\":1532,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"4774\":{\"media\":[{\"id\":1554567052840603650,\"id_str\":\"1554567052840603650\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554567052840603650\\/pu\\/img\\/jRXxSVD-zGHPyq63.jpg\",\"url\":\"https:\\/\\/t.co\\/LG5PfsgYol\",\"display_url\":\"pic.twitter.com\\/LG5PfsgYol\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554567123468443649\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":272,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,30],\"duration_millis\":29800,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554567052840603650\\/pu\\/pl\\/Lwwmz2_7rDvfVLan.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554567052840603650\\/pu\\/vid\\/272x480\\/8EesVic9frW2XXwL.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4775\":null,\"4776\":{\"media\":[{\"id\":1554566342237364224,\"id_str\":\"1554566342237364224\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLt2hDWIAA1Uj1.jpg\",\"url\":\"https:\\/\\/t.co\\/G4k25DjFCh\",\"display_url\":\"pic.twitter.com\\/G4k25DjFCh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/enginecarboncl3\\/status\\/1554566359635435522\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1041,\"h\":1139,\"resize\":\"fit\"},\"small\":{\"w\":621,\"h\":680,\"resize\":\"fit\"}}}]},\"4777\":{\"media\":[{\"id\":1554566176721850370,\"id_str\":\"1554566176721850370\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLts4dX0AIxVOQ.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554566188239290368,\"id_str\":\"1554566188239290368\",\"indices\":[244,267],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLttjXWAAANpkE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLttjXWAAANpkE.jpg\",\"url\":\"https:\\/\\/t.co\\/SiynnzbSTC\",\"display_url\":\"pic.twitter.com\\/SiynnzbSTC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554566196808269825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}}]},\"4778\":{\"media\":[{\"id\":1554565836060368900,\"id_str\":\"1554565836060368900\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565836060368900\\/pu\\/img\\/CUCJB8cp87gvSu2h.jpg\",\"url\":\"https:\\/\\/t.co\\/OCxbv6UNJE\",\"display_url\":\"pic.twitter.com\\/OCxbv6UNJE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mydeviria\\/status\\/1554565885150609412\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":544,\"h\":1088,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,2],\"duration_millis\":4903,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/pl\\/uf9_eMRkOVQLdlVq.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/vid\\/544x1088\\/TKhfXWH-dJKDz21q.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/vid\\/480x960\\/viV5bQcJ3VxlaLj6.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565836060368900\\/pu\\/vid\\/320x640\\/CZDFd-7u1SX3b9PQ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4779\":null,\"4780\":{\"media\":[{\"id\":1554565458031960065,\"id_str\":\"1554565458031960065\",\"indices\":[72,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565458031960065\\/pu\\/img\\/4-FWkYLm-z3vcNEj.jpg\",\"url\":\"https:\\/\\/t.co\\/I0oRy79J6S\",\"display_url\":\"pic.twitter.com\\/I0oRy79J6S\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554565609727397888\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":45015,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/320x568\\/UjpWLpIH2Iqg8RmR.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/480x852\\/0jEWmSnK_YBXHtAH.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/pl\\/TD0fxfPdH-aytKqw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565458031960065\\/pu\\/vid\\/720x1280\\/FhPZRdgvk5NcB_lO.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4781\":{\"media\":[{\"id\":1554565442655686662,\"id_str\":\"1554565442655686662\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554565442655686662\\/pu\\/img\\/beOV_JBZl7ZYStz4.jpg\",\"url\":\"https:\\/\\/t.co\\/DMOVY73bxJ\",\"display_url\":\"pic.twitter.com\\/DMOVY73bxJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565491808784386\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":24760,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/478x270\\/ImRbCeS9g1ptDVe4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/638x360\\/DKU5KuKhAGNgEZOL.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/vid\\/852x480\\/_BHamD5qDtTpC_3y.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554565442655686662\\/pu\\/pl\\/klPbjIzIPBsvQnlD.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4782\":{\"media\":[{\"id\":1554565367259090944,\"id_str\":\"1554565367259090944\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLs9w-aUAAcfG_.jpg\",\"url\":\"https:\\/\\/t.co\\/LK9Tgqbfpo\",\"display_url\":\"pic.twitter.com\\/LK9Tgqbfpo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554565373692747777\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"medium\":{\"w\":1074,\"h\":604,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"4783\":{\"media\":[{\"id\":1554564980330094592,\"id_str\":\"1554564980330094592\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554564980330094592\\/pu\\/img\\/MOhhBo0GVk-4RLv9.jpg\",\"url\":\"https:\\/\\/t.co\\/3keenBlNEu\",\"display_url\":\"pic.twitter.com\\/3keenBlNEu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554565016489279498\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":17166,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/pl\\/C-MHSUetUM-03Ehu.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/vid\\/480x848\\/BGzK4J-Ihv3gpvNn.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554564980330094592\\/pu\\/vid\\/320x564\\/wSpVJ9jIgqAvhyuh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4784\":{\"media\":[{\"id\":1554564792278450177,\"id_str\":\"1554564792278450177\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLscTAWAAEvlad.jpg\",\"url\":\"https:\\/\\/t.co\\/09SipiAiwx\",\"display_url\":\"pic.twitter.com\\/09SipiAiwx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/morrishills_\\/status\\/1554564794887421954\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":492,\"h\":973,\"resize\":\"fit\"},\"small\":{\"w\":344,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":492,\"h\":973,\"resize\":\"fit\"}}}]},\"4785\":{\"media\":[{\"id\":1554564294246899713,\"id_str\":\"1554564294246899713\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLr_TsXoAEiZJy.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":819,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554564449863979009,\"id_str\":\"1554564449863979009\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLsIXaX0AEgMPo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLsIXaX0AEgMPo.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554564521875968001,\"id_str\":\"1554564521875968001\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLsMjrXkAEe4a7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLsMjrXkAEe4a7.jpg\",\"url\":\"https:\\/\\/t.co\\/pX0MuTq0lp\",\"display_url\":\"pic.twitter.com\\/pX0MuTq0lp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/cephas_arts\\/status\\/1554564582940844036\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":620,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":934,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":934,\"h\":1024,\"resize\":\"fit\"}}}]},\"4786\":{\"media\":[{\"id\":1554563909604065282,\"id_str\":\"1554563909604065282\",\"indices\":[236,259],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563909604065282\\/pu\\/img\\/dhAmuZTGz6fgU1Uv.jpg\",\"url\":\"https:\\/\\/t.co\\/4GXSetMpTG\",\"display_url\":\"pic.twitter.com\\/4GXSetMpTG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Awixy2\\/status\\/1554564046287953921\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":21000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/1280x720\\/PLtxvYJj6VKNr5s4.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/640x360\\/6XQKl9FISVzNIdfF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/pl\\/Y2g_9siON3YoNo6C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563909604065282\\/pu\\/vid\\/480x270\\/qTSV2I5F7rnWVkzC.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4787\":{\"media\":[{\"id\":1554563716204601344,\"id_str\":\"1554563716204601344\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563716204601344\\/pu\\/img\\/ctRgsm7Pp2RDx7k2.jpg\",\"url\":\"https:\\/\\/t.co\\/tESlr2Og8O\",\"display_url\":\"pic.twitter.com\\/tESlr2Og8O\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FadoroTobi\\/status\\/1554563834324652032\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":608,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[76,135],\"duration_millis\":11800,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/vid\\/320x568\\/bwKp0LJZyjzc7waA.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/vid\\/480x852\\/QmFG3sVB5Yn_lAz7.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/vid\\/608x1080\\/o4ZGMeP1HIj4dI9a.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563716204601344\\/pu\\/pl\\/ekr5I3PJsOD8gSQQ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4788\":{\"media\":[{\"id\":1554563339052892162,\"id_str\":\"1554563339052892162\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554563339052892162\\/pu\\/img\\/njz5PBTqrclBRWzu.jpg\",\"url\":\"https:\\/\\/t.co\\/JY1Tr0L5rC\",\"display_url\":\"pic.twitter.com\\/JY1Tr0L5rC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ade_omo_Giwa\\/status\\/1554563551221760001\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[15,8],\"duration_millis\":36453,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563339052892162\\/pu\\/vid\\/480x256\\/fP-oR3Vyyqqotb0T.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554563339052892162\\/pu\\/pl\\/u0-roX8f64y8AtLN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4789\":{\"media\":[{\"id\":1554563235650707460,\"id_str\":\"1554563235650707460\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLrBsHXoAQx3ie.jpg\",\"url\":\"https:\\/\\/t.co\\/9viU1HDss1\",\"display_url\":\"pic.twitter.com\\/9viU1HDss1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ajapeace1\\/status\\/1554563249894555648\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4790\":null,\"4791\":{\"media\":[{\"id\":1554560263009042439,\"id_str\":\"1554560263009042439\",\"indices\":[128,151],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoUqKXgAcTdDw.jpg\",\"url\":\"https:\\/\\/t.co\\/j6e1GbRdG3\",\"display_url\":\"pic.twitter.com\\/j6e1GbRdG3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gbachis\\/status\\/1554560269271048199\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":658,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":712,\"h\":736,\"resize\":\"fit\"},\"large\":{\"w\":712,\"h\":736,\"resize\":\"fit\"}}}]},\"4792\":{\"media\":[{\"id\":1554560154431111170,\"id_str\":\"1554560154431111170\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoOVrXwAI0Y1g.jpg\",\"url\":\"https:\\/\\/t.co\\/szWcNq2iac\",\"display_url\":\"pic.twitter.com\\/szWcNq2iac\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Longdenjr1\\/status\\/1554560172017811465\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}}]},\"4793\":{\"media\":[{\"id\":1554560136332681217,\"id_str\":\"1554560136332681217\",\"indices\":[86,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLoNSQXoAEvkRy.jpg\",\"url\":\"https:\\/\\/t.co\\/Sjbw8y0IwH\",\"display_url\":\"pic.twitter.com\\/Sjbw8y0IwH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DicksonFunkeye\\/status\\/1554560151427993602\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1088,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":361,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":638,\"h\":1200,\"resize\":\"fit\"}}}]},\"4794\":null,\"4795\":null,\"4796\":{\"media\":[{\"id\":1554558659690102785,\"id_str\":\"1554558659690102785\",\"indices\":[54,77],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558659690102785\\/pu\\/img\\/TtZl-vaTRMqnPKFa.jpg\",\"url\":\"https:\\/\\/t.co\\/vrjqi5d14o\",\"display_url\":\"pic.twitter.com\\/vrjqi5d14o\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videosnwhatever\\/status\\/1554559036997226499\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":600,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":600,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":27604,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/vid\\/320x400\\/luj_HcQTOUqS9TP7.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/pl\\/XaZ4P0yUluuMA-2-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558659690102785\\/pu\\/vid\\/480x600\\/rakCjRkSmQA2Efs4.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4797\":{\"media\":[{\"id\":1554558875575238656,\"id_str\":\"1554558875575238656\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554558875575238656\\/pu\\/img\\/NQ915LjKSGoidO19.jpg\",\"url\":\"https:\\/\\/t.co\\/FEUIKswiB5\",\"display_url\":\"pic.twitter.com\\/FEUIKswiB5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Otaku_konnect\\/status\\/1554559032274345993\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":19528,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/pl\\/InXQGqgIgjnYq6gZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/vid\\/320x600\\/KnTN8QnA7ZBTG7c3.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/vid\\/656x1232\\/f636TenUEncp7ZOf.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554558875575238656\\/pu\\/vid\\/480x900\\/9TjsC-fTRjX9nV11.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4798\":{\"media\":[{\"id\":1554557954673807372,\"id_str\":\"1554557954673807372\",\"indices\":[221,244],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLmOS8XEAw4Rhr.jpg\",\"url\":\"https:\\/\\/t.co\\/dR7enXaCX9\",\"display_url\":\"pic.twitter.com\\/dR7enXaCX9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thebenfeyijimi\\/status\\/1554557971069374464\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":600,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":340,\"resize\":\"fit\"}}}]},\"4799\":{\"media\":[{\"id\":1554556553323233282,\"id_str\":\"1554556553323233282\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLk8ugWQAIzJgl.jpg\",\"url\":\"https:\\/\\/t.co\\/aEHGtnzasE\",\"display_url\":\"pic.twitter.com\\/aEHGtnzasE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554556555688910849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4800\":null,\"4801\":null,\"4802\":{\"media\":[{\"id\":1554555511479144457,\"id_str\":\"1554555511479144457\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554555511479144457\\/pu\\/img\\/hn0V77Z0Yuu6DYTU.jpg\",\"url\":\"https:\\/\\/t.co\\/2liLRM6tlC\",\"display_url\":\"pic.twitter.com\\/2liLRM6tlC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/meetJbankz\\/status\\/1554555643092140034\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":44905,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/320x320\\/RnvrzfV3hZ7FJGkS.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/720x720\\/pLRCZT6EBp9prtso.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/pl\\/pJi1cFnDYcnlDLCV.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554555511479144457\\/pu\\/vid\\/540x540\\/4HnMHhii9JFCEXFz.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4803\":{\"media\":[{\"id\":1554555488305614848,\"id_str\":\"1554555488305614848\",\"indices\":[89,112],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLj-vAXEAA_bV1.jpg\",\"url\":\"https:\\/\\/t.co\\/AhTJ0ySCrx\",\"display_url\":\"pic.twitter.com\\/AhTJ0ySCrx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChoWurld\\/status\\/1554555495012343808\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"large\":{\"w\":489,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":489,\"h\":628,\"resize\":\"fit\"}}}]},\"4804\":{\"media\":[{\"id\":1554554894576754691,\"id_str\":\"1554554894576754691\",\"indices\":[126,149],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLjcLMXoAM_v_B.jpg\",\"url\":\"https:\\/\\/t.co\\/Raxmh0ZXgW\",\"display_url\":\"pic.twitter.com\\/Raxmh0ZXgW\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nobleman_0\\/status\\/1554554904034811906\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"medium\":{\"w\":200,\"h\":176,\"resize\":\"fit\"},\"small\":{\"w\":200,\"h\":176,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[25,22],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLjcLMXoAM_v_B.mp4\"}]}}]},\"4805\":{\"media\":[{\"id\":1554554838129721344,\"id_str\":\"1554554838129721344\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY46WQAAWUK_.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554554838322761728,\"id_str\":\"1554554838322761728\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY5oX0AAn1vg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY5oX0AAn1vg.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554554838217883648,\"id_str\":\"1554554838217883648\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY5PXgAAixD6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY5PXgAAixD6.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554554838117224590,\"id_str\":\"1554554838117224590\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLjY43XkI4r0KH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLjY43XkI4r0KH.jpg\",\"url\":\"https:\\/\\/t.co\\/5JBEDQOcD7\",\"display_url\":\"pic.twitter.com\\/5JBEDQOcD7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/promphizy\\/status\\/1554554849752223744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4806\":null,\"4807\":null,\"4808\":{\"media\":[{\"id\":1554553574088130562,\"id_str\":\"1554553574088130562\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLiPT_WQAIl9Ih.jpg\",\"url\":\"https:\\/\\/t.co\\/alCbOqU2TQ\",\"display_url\":\"pic.twitter.com\\/alCbOqU2TQ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554553577816920067\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"large\":{\"w\":901,\"h\":901,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1551897942151380996,\"id_str\":\"1551897942151380996\",\"indices\":[95,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYly9MGXwAQYBVc.png\",\"url\":\"https:\\/\\/t.co\\/ZkxAtQ2d0G\",\"display_url\":\"pic.twitter.com\\/ZkxAtQ2d0G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1551897982672535552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"medium\":{\"w\":863,\"h\":486,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":1551897982672535552,\"source_status_id_str\":\"1551897982672535552\",\"source_user_id\":1529562333751689217,\"source_user_id_str\":\"1529562333751689217\"}]},\"4809\":{\"media\":[{\"id\":1554553387211001857,\"id_str\":\"1554553387211001857\",\"indices\":[217,240],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554553387211001857\\/pu\\/img\\/rIBgrcrp6gHL62U1.jpg\",\"url\":\"https:\\/\\/t.co\\/NhsBTtDwFP\",\"display_url\":\"pic.twitter.com\\/NhsBTtDwFP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OtakhorEmmanuel\\/status\\/1554553518006075392\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":480,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":45023,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554553387211001857\\/pu\\/pl\\/2gI0Ufg3gUWfgQoZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554553387211001857\\/pu\\/vid\\/320x320\\/C2kIoxAzNz3xUER8.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554553387211001857\\/pu\\/vid\\/480x480\\/NBqMNGDJzuMoRU4A.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4810\":{\"media\":[{\"id\":1554550701040275459,\"id_str\":\"1554550701040275459\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554550701040275459\\/pu\\/img\\/4G7V-bVK0YCpVlXw.jpg\",\"url\":\"https:\\/\\/t.co\\/Ze5IxvlGee\",\"display_url\":\"pic.twitter.com\\/Ze5IxvlGee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/me_azal\\/status\\/1554553249323253761\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":88361,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/vid\\/320x568\\/q8O_wrVJ6kBAM_9i.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/pl\\/LmX_ulm9fNXQeBSB.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/vid\\/480x852\\/wexAsjSbGUolO180.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554550701040275459\\/pu\\/vid\\/720x1280\\/ALJ7J8UStTm7s6bB.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4811\":null,\"4812\":{\"media\":[{\"id\":1554552848704323585,\"id_str\":\"1554552848704323585\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554552848704323585\\/pu\\/img\\/9J0f3Atinq3DLmQA.jpg\",\"url\":\"https:\\/\\/t.co\\/V2ui30jamm\",\"display_url\":\"pic.twitter.com\\/V2ui30jamm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/overhplus\\/status\\/1554553045366853634\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":110966,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/vid\\/720x1280\\/Ah6GFoLTmNARgG0u.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/vid\\/480x852\\/TQAQQ7FIh12NX2NR.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/pl\\/emoLeQ_lxwLH2M4i.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554552848704323585\\/pu\\/vid\\/320x568\\/so4NOo2kWztCuROG.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4813\":{\"media\":[{\"id\":1554552988705890308,\"id_str\":\"1554552988705890308\",\"indices\":[173,196],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhtPRWIAQAUfB.jpg\",\"url\":\"https:\\/\\/t.co\\/Kovj709BMT\",\"display_url\":\"pic.twitter.com\\/Kovj709BMT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EbaseMatthew\\/status\\/1554552991683936257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4814\":{\"media\":[{\"id\":1554552357991731201,\"id_str\":\"1554552357991731201\",\"indices\":[66,89],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLhIhrX0AELLSx.jpg\",\"url\":\"https:\\/\\/t.co\\/aQw7WbalFJ\",\"display_url\":\"pic.twitter.com\\/aQw7WbalFJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554552365029724160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4815\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/LCSaSYlEaZ\",\"display_url\":\"pic.twitter.com\\/LCSaSYlEaZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4816\":null,\"4817\":null,\"4818\":{\"media\":[{\"id\":1554551317397442565,\"id_str\":\"1554551317397442565\",\"indices\":[62,85],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLgL9KXEAUPU9d.jpg\",\"url\":\"https:\\/\\/t.co\\/lp2xxqa7u3\",\"display_url\":\"pic.twitter.com\\/lp2xxqa7u3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realgurltee\\/status\\/1554551325458849794\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"4819\":null,\"4820\":{\"media\":[{\"id\":1554550693905764353,\"id_str\":\"1554550693905764353\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLfnqeXEAEklaT.jpg\",\"url\":\"https:\\/\\/t.co\\/dkwjpnxd1V\",\"display_url\":\"pic.twitter.com\\/dkwjpnxd1V\",\"expanded_url\":\"https:\\/\\/twitter.com\\/keep_itreal81\\/status\\/1554550700868247553\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":349,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":554,\"resize\":\"fit\"}}}]},\"4821\":null,\"4822\":null,\"4823\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qvncNvvvYn\",\"display_url\":\"pic.twitter.com\\/qvncNvvvYn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[177,200],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/qPLqPlXUx2\",\"display_url\":\"pic.twitter.com\\/qPLqPlXUx2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"source_status_id\":1554540044010110978,\"source_status_id_str\":\"1554540044010110978\",\"source_user_id\":1199324827020136448,\"source_user_id_str\":\"1199324827020136448\",\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4829\":{\"media\":[{\"id\":1554546949315067909,\"id_str\":\"1554546949315067909\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLcNsyXgAUpUBP.jpg\",\"url\":\"https:\\/\\/t.co\\/SQ7SoQkXfY\",\"display_url\":\"pic.twitter.com\\/SQ7SoQkXfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akomscopy\\/status\\/1554546962938171393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"large\":{\"w\":716,\"h\":697,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":662,\"resize\":\"fit\"}}},{\"id\":1554546956806098945,\"id_str\":\"1554546956806098945\",\"indices\":[70,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLcOIsXkAEPtG6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLcOIsXkAEPtG6.jpg\",\"url\":\"https:\\/\\/t.co\\/SQ7SoQkXfY\",\"display_url\":\"pic.twitter.com\\/SQ7SoQkXfY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/akomscopy\\/status\\/1554546962938171393\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":641,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":715,\"h\":758,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":758,\"resize\":\"fit\"}}}]},\"4830\":{\"media\":[{\"id\":1554546273600131079,\"id_str\":\"1554546273600131079\",\"indices\":[137,160],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLbmXjX0AcOjug.jpg\",\"url\":\"https:\\/\\/t.co\\/VOuUsPJWID\",\"display_url\":\"pic.twitter.com\\/VOuUsPJWID\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hope_wisdom2\\/status\\/1554546282605207553\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":498,\"resize\":\"fit\"},\"small\":{\"w\":498,\"h\":498,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLbmXjX0AcOjug.mp4\"}]}}]},\"4831\":{\"media\":[{\"id\":1554545717922131968,\"id_str\":\"1554545717922131968\",\"indices\":[143,166],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554545717922131968\\/pu\\/img\\/xQwAQ_PsbuWRQWXQ.jpg\",\"url\":\"https:\\/\\/t.co\\/LM6VSMyzjG\",\"display_url\":\"pic.twitter.com\\/LM6VSMyzjG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554545745671647232\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":11365,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/vid\\/480x270\\/-Hy588bLXRoAnmdw.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/pl\\/Vvp5aGrIuaoF8PWK.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/vid\\/960x540\\/5eARM6PXSCntFZZU.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554545717922131968\\/pu\\/vid\\/640x360\\/rBVuxu_owWyZCWyl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4832\":null,\"4833\":null,\"4834\":{\"media\":[{\"id\":1554544531168788492,\"id_str\":\"1554544531168788492\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8fXgAwyaWa.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531181281281,\"id_str\":\"1554544531181281281\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8iWIAE19_k.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8iWIAE19_k.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531139448836,\"id_str\":\"1554544531139448836\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8YX0AQWNMM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8YX0AQWNMM.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}},{\"id\":1554544531156176896,\"id_str\":\"1554544531156176896\",\"indices\":[184,207],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLaA8cXEAArX2o.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLaA8cXEAArX2o.jpg\",\"url\":\"https:\\/\\/t.co\\/xjsA30und4\",\"display_url\":\"pic.twitter.com\\/xjsA30und4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ahmerdrufae\\/status\\/1554544542657003523\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":867,\"h\":1156,\"resize\":\"fit\"}}}]},\"4835\":{\"media\":[{\"id\":1554544457730629632,\"id_str\":\"1554544457730629632\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLZ8q6WIAA0Dyt.jpg\",\"url\":\"https:\\/\\/t.co\\/nSesxfnDTK\",\"display_url\":\"pic.twitter.com\\/nSesxfnDTK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Itycletylove\\/status\\/1554544471437606920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":956,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":508,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":896,\"resize\":\"fit\"}}}]},\"4836\":null,\"4837\":null,\"4838\":{\"media\":[{\"id\":1554543071760613376,\"id_str\":\"1554543071760613376\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554543071760613376\\/pu\\/img\\/cj1_oGqWNQGPF5XG.jpg\",\"url\":\"https:\\/\\/t.co\\/1alsIAGmpL\",\"display_url\":\"pic.twitter.com\\/1alsIAGmpL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mentie_pride\\/status\\/1554543236122804227\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":7873,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/vid\\/320x600\\/C3gqHU5u-6b3OCOZ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/vid\\/480x900\\/BDCdOKRI3dI-KeBZ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/pl\\/zhFO1Jok1US_AHET.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554543071760613376\\/pu\\/vid\\/656x1232\\/2dn2rzQIPukGxggw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4839\":{\"media\":[{\"id\":1554542946720038915,\"id_str\":\"1554542946720038915\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYkt9WQAMtyor.jpg\",\"url\":\"https:\\/\\/t.co\\/aLAPq2Ps0u\",\"display_url\":\"pic.twitter.com\\/aLAPq2Ps0u\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554542950096543744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":900,\"resize\":\"fit\"}}}]},\"4840\":{\"media\":[{\"id\":1554542635007836165,\"id_str\":\"1554542635007836165\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLYSkvXgAUo5Ro.jpg\",\"url\":\"https:\\/\\/t.co\\/crUGc0k2UF\",\"display_url\":\"pic.twitter.com\\/crUGc0k2UF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ibrahim_IbbJnr8\\/status\\/1554542637566332931\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":545,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":545,\"h\":563,\"resize\":\"fit\"}}}]},\"4841\":null,\"4842\":{\"media\":[{\"id\":1554540335862353920,\"id_str\":\"1554540335862353920\",\"indices\":[186,209],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554540335862353920\\/pu\\/img\\/mRDaX5tJXsSdUTr2.jpg\",\"url\":\"https:\\/\\/t.co\\/r7UJdM5Vc3\",\"display_url\":\"pic.twitter.com\\/r7UJdM5Vc3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/officialdjspace\\/status\\/1554541886446178305\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":660,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":374,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":704,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[11,20],\"duration_millis\":76705,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/pl\\/sMpIfuEtQYwM6_DH.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/vid\\/704x1280\\/emB5O9kVAtNc5OmO.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/vid\\/480x872\\/3ASMtHTJoa1KAgTQ.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554540335862353920\\/pu\\/vid\\/320x580\\/eUxuT4TjYIu-UojW.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4843\":null,\"4844\":null,\"4845\":{\"media\":[{\"id\":1554540500048384008,\"id_str\":\"1554540500048384008\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWWTZXkAgP6tw.jpg\",\"url\":\"https:\\/\\/t.co\\/bdasAJa1dE\",\"display_url\":\"pic.twitter.com\\/bdasAJa1dE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/faithluseno\\/status\\/1554540517962178561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":1262,\"resize\":\"fit\"}}}]},\"4846\":{\"media\":[{\"id\":1554540278492663810,\"id_str\":\"1554540278492663810\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWJaCXkAIPLgn.jpg\",\"url\":\"https:\\/\\/t.co\\/CIOjlFCbwK\",\"display_url\":\"pic.twitter.com\\/CIOjlFCbwK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tizzieofficial\\/status\\/1554540287493562369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4847\":{\"media\":[{\"id\":1554540156438384640,\"id_str\":\"1554540156438384640\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWCTWXEAAoE9P.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554540164684414977,\"id_str\":\"1554540164684414977\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWCyEXgAE1evP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWCyEXgAE1evP.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554540171147747328,\"id_str\":\"1554540171147747328\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLWDKJWIAANF3G.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLWDKJWIAANF3G.jpg\",\"url\":\"https:\\/\\/t.co\\/fZIwB0I43e\",\"display_url\":\"pic.twitter.com\\/fZIwB0I43e\",\"expanded_url\":\"https:\\/\\/twitter.com\\/tmilesfootwear\\/status\\/1554540176826945538\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"4848\":null,\"4849\":{\"media\":[{\"id\":1554539419369086977,\"id_str\":\"1554539419369086977\",\"indices\":[242,265],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554539419369086977\\/pu\\/img\\/cNODAYdMzcGlzhd_.jpg\",\"url\":\"https:\\/\\/t.co\\/GW42HxaUGK\",\"display_url\":\"pic.twitter.com\\/GW42HxaUGK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AAtadegbe\\/status\\/1554540044010110978\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":352,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":352,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[20,11],\"duration_millis\":127445,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/640x352\\/Ttlfq49be0hgAXkb.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/pl\\/EwZ3MMKdkOxSwXou.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554539419369086977\\/pu\\/vid\\/490x270\\/W6r09jACONxONtsh.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4850\":{\"media\":[{\"id\":1554539305804120065,\"id_str\":\"1554539305804120065\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVQyfWQAEYq4A.jpg\",\"url\":\"https:\\/\\/t.co\\/7XISsANW5B\",\"display_url\":\"pic.twitter.com\\/7XISsANW5B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/official_pizz\\/status\\/1554539314142388225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":750,\"h\":1334,\"resize\":\"fit\"},\"small\":{\"w\":382,\"h\":680,\"resize\":\"fit\"}}}]},\"4851\":null,\"4852\":{\"media\":[{\"id\":1554539199705096193,\"id_str\":\"1554539199705096193\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVKnPXoAEAcHm.jpg\",\"url\":\"https:\\/\\/t.co\\/3sZQZxnKak\",\"display_url\":\"pic.twitter.com\\/3sZQZxnKak\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539206222946305\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"4853\":{\"media\":[{\"id\":1554539155560058882,\"id_str\":\"1554539155560058882\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVICyX0AIDD5H.jpg\",\"url\":\"https:\\/\\/t.co\\/JoInBfSZQN\",\"display_url\":\"pic.twitter.com\\/JoInBfSZQN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539165949349888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"4854\":{\"media\":[{\"id\":1554539104871874560,\"id_str\":\"1554539104871874560\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVFF9XgAAd8dm.jpg\",\"url\":\"https:\\/\\/t.co\\/zNr4ata000\",\"display_url\":\"pic.twitter.com\\/zNr4ata000\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539112664817665\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":870,\"h\":870,\"resize\":\"fit\"},\"large\":{\"w\":870,\"h\":870,\"resize\":\"fit\"}}}]},\"4855\":{\"media\":[{\"id\":1554539053537808385,\"id_str\":\"1554539053537808385\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLVCGuX0AEdWYm.jpg\",\"url\":\"https:\\/\\/t.co\\/rYMBkaPkQH\",\"display_url\":\"pic.twitter.com\\/rYMBkaPkQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539059573293061\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"4856\":{\"media\":[{\"id\":1554539013234692099,\"id_str\":\"1554539013234692099\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU_wlXEAMtJR6.jpg\",\"url\":\"https:\\/\\/t.co\\/Y3LUJdpeAc\",\"display_url\":\"pic.twitter.com\\/Y3LUJdpeAc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554539019513495552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":250,\"h\":194,\"resize\":\"fit\"},\"medium\":{\"w\":250,\"h\":194,\"resize\":\"fit\"}}}]},\"4857\":{\"media\":[{\"id\":1554538999016050692,\"id_str\":\"1554538999016050692\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU-7nX0AQphLN.jpg\",\"url\":\"https:\\/\\/t.co\\/ehyeapFYxO\",\"display_url\":\"pic.twitter.com\\/ehyeapFYxO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Aneke_Twins\\/status\\/1554539007748579328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":525,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":926,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":988,\"h\":1280,\"resize\":\"fit\"}}}]},\"4858\":{\"media\":[{\"id\":1554538887204294658,\"id_str\":\"1554538887204294658\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU4bFX0AIIbkv.jpg\",\"url\":\"https:\\/\\/t.co\\/LLtQNjQfnc\",\"display_url\":\"pic.twitter.com\\/LLtQNjQfnc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538894305234946\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"4859\":{\"media\":[{\"id\":1554538865230336001,\"id_str\":\"1554538865230336001\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JOX0AETBdE.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}},{\"id\":1554538865263796226,\"id_str\":\"1554538865263796226\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLU3JWWYAIR-rF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLU3JWWYAIR-rF.jpg\",\"url\":\"https:\\/\\/t.co\\/kyfodThMnS\",\"display_url\":\"pic.twitter.com\\/kyfodThMnS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mickkycutz\\/status\\/1554538875758022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1440,\"h\":1800,\"resize\":\"fit\"}}}]},\"4860\":{\"media\":[{\"id\":1554538793205743617,\"id_str\":\"1554538793205743617\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUy86XwAE2Ai7.jpg\",\"url\":\"https:\\/\\/t.co\\/InPATnRTxc\",\"display_url\":\"pic.twitter.com\\/InPATnRTxc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538800491233280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4861\":null,\"4862\":{\"media\":[{\"id\":1554538742010023937,\"id_str\":\"1554538742010023937\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUv-MXEAEthYh.jpg\",\"url\":\"https:\\/\\/t.co\\/vQBBaRizSE\",\"display_url\":\"pic.twitter.com\\/vQBBaRizSE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwazibruce\\/status\\/1554538774037667843\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":385,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1160,\"resize\":\"fit\"}}},{\"id\":1554538762855645192,\"id_str\":\"1554538762855645192\",\"indices\":[270,293],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUxL2WAAgenlC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUxL2WAAgenlC.jpg\",\"url\":\"https:\\/\\/t.co\\/vQBBaRizSE\",\"display_url\":\"pic.twitter.com\\/vQBBaRizSE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kwazibruce\\/status\\/1554538774037667843\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":2048,\"h\":1074,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":357,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":629,\"resize\":\"fit\"}}}]},\"4863\":{\"media\":[{\"id\":1554538750205743104,\"id_str\":\"1554538750205743104\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUwcuX0AAQndb.jpg\",\"url\":\"https:\\/\\/t.co\\/8WGIbboap0\",\"display_url\":\"pic.twitter.com\\/8WGIbboap0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538758644580352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"4864\":{\"media\":[{\"id\":1554538720321323008,\"id_str\":\"1554538720321323008\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUutZXwAAYG2s.jpg\",\"url\":\"https:\\/\\/t.co\\/IIJkhdS1Dw\",\"display_url\":\"pic.twitter.com\\/IIJkhdS1Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554538727535435776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":481,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":481,\"resize\":\"fit\"}}},{\"id\":1554538725186609154,\"id_str\":\"1554538725186609154\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUu_hWIAIzYSv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUu_hWIAIzYSv.jpg\",\"url\":\"https:\\/\\/t.co\\/IIJkhdS1Dw\",\"display_url\":\"pic.twitter.com\\/IIJkhdS1Dw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554538727535435776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":540,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":540,\"resize\":\"fit\"}}}]},\"4865\":{\"media\":[{\"id\":1554538627375550466,\"id_str\":\"1554538627375550466\",\"indices\":[211,234],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554538627375550466\\/pu\\/img\\/NWCyzA7j_C9iFZ-6.jpg\",\"url\":\"https:\\/\\/t.co\\/UYxgp6ZvVo\",\"display_url\":\"pic.twitter.com\\/UYxgp6ZvVo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bolireloaded\\/status\\/1554538715862765568\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":366,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":645,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":688,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[43,80],\"duration_millis\":15146,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/vid\\/480x892\\/eryKQ_p8ErhuoP-9.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/vid\\/320x594\\/4OIy29NSIgHBMUx8.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/vid\\/688x1280\\/ueF_jN4G8sXeeqQg.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554538627375550466\\/pu\\/pl\\/Opdt40ml0Ec-Ifkp.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4866\":{\"media\":[{\"id\":1554538686951395329,\"id_str\":\"1554538686951395329\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLUsxFXEAECOzW.jpg\",\"url\":\"https:\\/\\/t.co\\/bVtPU0oPmE\",\"display_url\":\"pic.twitter.com\\/bVtPU0oPmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/besthometutors1\\/status\\/1554538696090714112\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}}}]},\"4867\":{\"media\":[{\"id\":1554537760454737922,\"id_str\":\"1554537760454737922\",\"indices\":[229,252],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554537760454737922\\/pu\\/img\\/yVCxRHP9KxG-GIND.jpg\",\"url\":\"https:\\/\\/t.co\\/lYDHjtOK2B\",\"display_url\":\"pic.twitter.com\\/lYDHjtOK2B\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidmmhdMomoh\\/status\\/1554538271279128581\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":70265,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/vid\\/480x852\\/OMkYX70E0MJVm76a.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/vid\\/320x568\\/b2tCg4c3NE6gkoIx.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/pl\\/GGRIlVP0lWbGpalw.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554537760454737922\\/pu\\/vid\\/720x1280\\/jKD1wtmZtvcjXsSd.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4868\":{\"media\":[{\"id\":1554537620385972224,\"id_str\":\"1554537620385972224\",\"indices\":[107,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLTur0WQAABJju.jpg\",\"url\":\"https:\\/\\/t.co\\/gmg5Y1glGZ\",\"display_url\":\"pic.twitter.com\\/gmg5Y1glGZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Anya_Nyako2505\\/status\\/1554537633778483209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":563,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":532,\"resize\":\"fit\"}}}]},\"4869\":null,\"4870\":{\"media\":[{\"id\":1554536731394785280,\"id_str\":\"1554536731394785280\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLS68EVQAACbI3.jpg\",\"url\":\"https:\\/\\/t.co\\/9lwlUKtDZw\",\"display_url\":\"pic.twitter.com\\/9lwlUKtDZw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnfromjokoshq\\/status\\/1554536733772984325\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1280,\"h\":854,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":801,\"resize\":\"fit\"}}}]},\"4871\":null,\"4872\":{\"media\":[{\"id\":1554533563248558080,\"id_str\":\"1554533563248558080\",\"indices\":[105,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533563248558080\\/pu\\/img\\/X3Hq_zV4vihr2lbD.jpg\",\"url\":\"https:\\/\\/t.co\\/s8EVHXHeQu\",\"display_url\":\"pic.twitter.com\\/s8EVHXHeQu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554535866445402112\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":320,\"h\":560,\"resize\":\"fit\"},\"small\":{\"w\":320,\"h\":560,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,7],\"duration_millis\":58815,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533563248558080\\/pu\\/vid\\/320x560\\/J5ENEktI0sc4mfrt.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533563248558080\\/pu\\/pl\\/WAL8HA8D7lxyBakG.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4873\":{\"media\":[{\"id\":1554534881459306496,\"id_str\":\"1554534881459306496\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554534881459306496\\/pu\\/img\\/Eg-SURz5wYXW1QNg.jpg\",\"url\":\"https:\\/\\/t.co\\/xwkwF6pzK4\",\"display_url\":\"pic.twitter.com\\/xwkwF6pzK4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/malltallerny\\/status\\/1554535404321251331\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":362,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":639,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":656,\"h\":1232,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[41,77],\"duration_millis\":22753,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/480x900\\/ykKanzf8lctld_U4.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/656x1232\\/UHYlLawvwD4kL3mN.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/vid\\/320x600\\/8C6OaOgPVE-WsRJN.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554534881459306496\\/pu\\/pl\\/u69IGEYa8FyJlwTo.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4874\":null,\"4875\":null,\"4876\":{\"media\":[{\"id\":1554534144243388417,\"id_str\":\"1554534144243388417\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLQkWLX0AEYg3P.jpg\",\"url\":\"https:\\/\\/t.co\\/XLK8mXSAGJ\",\"display_url\":\"pic.twitter.com\\/XLK8mXSAGJ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PHChurchgirl\\/status\\/1554534153915359234\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1600,\"resize\":\"fit\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"}}}]},\"4877\":{\"media\":[{\"id\":1554533707033214976,\"id_str\":\"1554533707033214976\",\"indices\":[153,176],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554533707033214976\\/pu\\/img\\/_p8Emomvd-oOZRd4.jpg\",\"url\":\"https:\\/\\/t.co\\/m71TwAoEWS\",\"display_url\":\"pic.twitter.com\\/m71TwAoEWS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kosisochukw_\\/status\\/1554533761794072582\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"},\"medium\":{\"w\":654,\"h\":1162,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[327,581],\"duration_millis\":10766,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/pl\\/YrFjzei7zyZbhzUR.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/vid\\/320x568\\/-jH2geEv-TyiL0SF.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/vid\\/480x852\\/GW5XiIl5G1tvOBhy.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554533707033214976\\/pu\\/vid\\/654x1162\\/8zlygLrzQfnTxu-a.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4878\":{\"media\":[{\"id\":1554532757677776898,\"id_str\":\"1554532757677776898\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLPTo0XoAINhKu.jpg\",\"url\":\"https:\\/\\/t.co\\/hR4kZxxeQH\",\"display_url\":\"pic.twitter.com\\/hR4kZxxeQH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532762673111045\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":610,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":610,\"h\":480,\"resize\":\"fit\"}}}]},\"4879\":{\"media\":[{\"id\":1554532260363247616,\"id_str\":\"1554532260363247616\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO2sLWIAAz7HL.jpg\",\"url\":\"https:\\/\\/t.co\\/rOWH1F4sUj\",\"display_url\":\"pic.twitter.com\\/rOWH1F4sUj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532268265377798\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":718,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":678,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":718,\"resize\":\"fit\"}}}]},\"4880\":{\"media\":[{\"id\":1554532215308140545,\"id_str\":\"1554532215308140545\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLO0EVXwAEe2qE.jpg\",\"url\":\"https:\\/\\/t.co\\/4gnSBIXGVm\",\"display_url\":\"pic.twitter.com\\/4gnSBIXGVm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OluomoMko\\/status\\/1554532226620178433\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":719,\"h\":719,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":719,\"resize\":\"fit\"}}}]},\"4881\":{\"media\":[{\"id\":1554530182576455680,\"id_str\":\"1554530182576455680\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM9v0XwAAWLiT.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1020,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":642,\"resize\":\"fit\"}}},{\"id\":1554530191803908097,\"id_str\":\"1554530191803908097\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM-SMXgAE9rzx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM-SMXgAE9rzx.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":672,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1068,\"resize\":\"fit\"}}},{\"id\":1554530200733491201,\"id_str\":\"1554530200733491201\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM-zdWIAEoyYX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM-zdWIAEoyYX.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":558,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":886,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":886,\"resize\":\"fit\"}}},{\"id\":1554530209113808897,\"id_str\":\"1554530209113808897\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLM_SrXoAEZx8c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLM_SrXoAEZx8c.jpg\",\"url\":\"https:\\/\\/t.co\\/ufN2U1k95E\",\"display_url\":\"pic.twitter.com\\/ufN2U1k95E\",\"expanded_url\":\"https:\\/\\/twitter.com\\/organic_sis\\/status\\/1554530216835534849\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1036,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":652,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1036,\"resize\":\"fit\"}}}]},\"4882\":null,\"4883\":{\"media\":[{\"id\":1554528751584681985,\"id_str\":\"1554528751584681985\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLLqc9WIAErDDg.jpg\",\"url\":\"https:\\/\\/t.co\\/psWDUaimY4\",\"display_url\":\"pic.twitter.com\\/psWDUaimY4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PreciousP001\\/status\\/1554528762456379392\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"small\":{\"w\":622,\"h\":625,\"resize\":\"fit\"},\"medium\":{\"w\":622,\"h\":625,\"resize\":\"fit\"}}}]},\"4884\":{\"media\":[{\"id\":1554528584324288513,\"id_str\":\"1554528584324288513\",\"indices\":[119,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554528584324288513\\/pu\\/img\\/0AS_Wp3UyOLaxVC1.jpg\",\"url\":\"https:\\/\\/t.co\\/8bsqiolcDu\",\"display_url\":\"pic.twitter.com\\/8bsqiolcDu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kenneth51428693\\/status\\/1554528652737536000\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"large\":{\"w\":426,\"h\":426,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":426,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":140000,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528584324288513\\/pu\\/vid\\/426x426\\/DjegF9D5x9P5vM9L.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528584324288513\\/pu\\/vid\\/320x320\\/SQqb8a5OvbBURFLl.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554528584324288513\\/pu\\/pl\\/KQqjJjdHWOA6Q5Sr.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4885\":null,\"4886\":null,\"4887\":{\"media\":[{\"id\":1554527735808139264,\"id_str\":\"1554527735808139264\",\"indices\":[277,300],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554527735808139264\\/pu\\/img\\/Qm5s_VV2XBedOMSn.jpg\",\"url\":\"https:\\/\\/t.co\\/bcawOh7ghe\",\"display_url\":\"pic.twitter.com\\/bcawOh7ghe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Young_X391\\/status\\/1554527789856051200\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":15000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/vid\\/720x1280\\/i4KYIsNcQQmaL1Kr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/pl\\/ABWvy2aEl6ZmrIgD.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/vid\\/320x568\\/Vn9L-Fk1nHysrymS.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554527735808139264\\/pu\\/vid\\/480x852\\/9VN7KIFF33fIMIXN.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4888\":{\"media\":[{\"id\":1554526808661524481,\"id_str\":\"1554526808661524481\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554526808661524481\\/pu\\/img\\/wOTh7G7s9OqJjsB-.jpg\",\"url\":\"https:\\/\\/t.co\\/1XSoCGB8rM\",\"display_url\":\"pic.twitter.com\\/1XSoCGB8rM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/bettyshairven\\/status\\/1554527634888982532\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":40471,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/vid\\/320x568\\/zBDsUnL5yFo1mylr.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/vid\\/720x1280\\/bbdfL-rkq3RYLQsQ.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/vid\\/480x852\\/SdKBJDJ_8g-UXLNE.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554526808661524481\\/pu\\/pl\\/xaRQSeyzwtHY5Ms_.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4889\":{\"media\":[{\"id\":1554526455593312259,\"id_str\":\"1554526455593312259\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLJkzuWIAMPIcA.jpg\",\"url\":\"https:\\/\\/t.co\\/b6J542Frck\",\"display_url\":\"pic.twitter.com\\/b6J542Frck\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554526464267227136\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"4890\":null,\"4891\":{\"media\":[{\"id\":1554524957996187648,\"id_str\":\"1554524957996187648\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINovXgAAximd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554524957987799040,\"id_str\":\"1554524957987799040\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLINotXgAAQZUd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLINotXgAAQZUd.jpg\",\"url\":\"https:\\/\\/t.co\\/UJOaoSnhH4\",\"display_url\":\"pic.twitter.com\\/UJOaoSnhH4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/graciaofficia11\\/status\\/1554524966569271296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1152,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"4892\":null,\"4893\":{\"media\":[{\"id\":1554524327487438849,\"id_str\":\"1554524327487438849\",\"indices\":[180,203],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554524327487438849\\/pu\\/img\\/mfVxRBYIXFVVYH7P.jpg\",\"url\":\"https:\\/\\/t.co\\/PKOrCb2wOK\",\"display_url\":\"pic.twitter.com\\/PKOrCb2wOK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/trylips\\/status\\/1554524433955569664\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,5],\"duration_millis\":26033,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/vid\\/480x600\\/KBZCq4s72E_RBc59.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/vid\\/320x400\\/htSjfCFM66OqM026.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/vid\\/720x900\\/NqrpOfjWe0R38K19.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554524327487438849\\/pu\\/pl\\/lMZVDGnD6brlPFuu.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":{\"media\":[{\"id\":1554523021251158016,\"id_str\":\"1554523021251158016\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGc5zXoAABAYi.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554523040301686787,\"id_str\":\"1554523040301686787\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGeAxXoAMl-uh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGeAxXoAMl-uh.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554523053190746112,\"id_str\":\"1554523053190746112\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGewyXEAA9F9M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGewyXEAA9F9M.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554523065316511744,\"id_str\":\"1554523065316511744\",\"indices\":[251,274],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLGfd9XkAAlSN9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLGfd9XkAAlSN9.jpg\",\"url\":\"https:\\/\\/t.co\\/qa4UTeJU4R\",\"display_url\":\"pic.twitter.com\\/qa4UTeJU4R\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sproutaits\\/status\\/1554523092919148545\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4898\":null,\"4899\":{\"media\":[{\"id\":1554521789283311616,\"id_str\":\"1554521789283311616\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521789283311616\\/pu\\/img\\/Zqrg67sWbrOifl0x.jpg\",\"url\":\"https:\\/\\/t.co\\/1CoGL7BvNu\",\"display_url\":\"pic.twitter.com\\/1CoGL7BvNu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521869461618688\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12480,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/pl\\/MT9WF7zEuIiyOJX-.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/720x1280\\/EGeEW5p1K3c_5W65.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/480x852\\/wktJqP7OvgrZDV0_.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521789283311616\\/pu\\/vid\\/320x568\\/E73218wmuqdt9jEf.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4900\":{\"media\":[{\"id\":1554521594877419520,\"id_str\":\"1554521594877419520\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLFJ4JXoAA9sHO.jpg\",\"url\":\"https:\\/\\/t.co\\/ciSc0yx3ED\",\"display_url\":\"pic.twitter.com\\/ciSc0yx3ED\",\"expanded_url\":\"https:\\/\\/twitter.com\\/danielgbenda\\/status\\/1554521604608196614\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":565,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":867,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":867,\"resize\":\"fit\"}}}]},\"4901\":{\"media\":[{\"id\":1554521082723553280,\"id_str\":\"1554521082723553280\",\"indices\":[230,253],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554521082723553280\\/pu\\/img\\/Etx7P7RQZgCI5Cea.jpg\",\"url\":\"https:\\/\\/t.co\\/DCUApG0DFj\",\"display_url\":\"pic.twitter.com\\/DCUApG0DFj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mba_phone_store\\/status\\/1554521163749023744\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":13786,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/480x852\\/hBd6HA5fJCLaz9BD.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/320x568\\/8Jaynvzu0AgtQ6em.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/vid\\/720x1280\\/lcsi8MFwcSbUfC8I.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554521082723553280\\/pu\\/pl\\/9wrSh6vVyLtQUHZ9.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4902\":{\"media\":[{\"id\":1554520486616436736,\"id_str\":\"1554520486616436736\",\"indices\":[159,182],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLEJXjXEAA1ile.jpg\",\"url\":\"https:\\/\\/t.co\\/aihFMPNCZb\",\"display_url\":\"pic.twitter.com\\/aihFMPNCZb\",\"expanded_url\":\"https:\\/\\/twitter.com\\/okeey_m\\/status\\/1554520500147200000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"}}}]},\"4903\":{\"media\":[{\"id\":1554520292889968641,\"id_str\":\"1554520292889968641\",\"indices\":[133,156],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD-F3XwAEQQRd.jpg\",\"url\":\"https:\\/\\/t.co\\/7jOk7acoqF\",\"display_url\":\"pic.twitter.com\\/7jOk7acoqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/uglyyorubadboy\\/status\\/1554520489074327552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":733,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":665,\"resize\":\"fit\"}}}]},\"4904\":{\"media\":[{\"id\":1554520323831259136,\"id_str\":\"1554520323831259136\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLD_5IWYAAGTkP.jpg\",\"url\":\"https:\\/\\/t.co\\/ZoTNCbIJln\",\"display_url\":\"pic.twitter.com\\/ZoTNCbIJln\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AnthonySneh\\/status\\/1554520326926655490\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":495,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":524,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"4905\":null,\"4906\":{\"media\":[{\"id\":1554519402061742081,\"id_str\":\"1554519402061742081\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPRXwAEZ0Gg.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554519402095280128,\"id_str\":\"1554519402095280128\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPZXgAACu35.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPZXgAACu35.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554519402099482624,\"id_str\":\"1554519402099482624\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXoAAYBAb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXoAAYBAb.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554519402099474433,\"id_str\":\"1554519402099474433\",\"indices\":[238,261],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXgAEHIds.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLDKPaXgAEHIds.jpg\",\"url\":\"https:\\/\\/t.co\\/zuXp3ZbI1A\",\"display_url\":\"pic.twitter.com\\/zuXp3ZbI1A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/StarfieldMS\\/status\\/1554519410077061123\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4907\":null,\"4908\":{\"media\":[{\"id\":1554519161811996674,\"id_str\":\"1554519161811996674\",\"indices\":[201,224],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLC8QRXkAIcYw3.jpg\",\"url\":\"https:\\/\\/t.co\\/4ywqop01W7\",\"display_url\":\"pic.twitter.com\\/4ywqop01W7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554519169512660994\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"4909\":null,\"4910\":{\"media\":[{\"id\":1554518257213837313,\"id_str\":\"1554518257213837313\",\"indices\":[118,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLCHmYXEAEbgNr.jpg\",\"url\":\"https:\\/\\/t.co\\/bGUuuACmdc\",\"display_url\":\"pic.twitter.com\\/bGUuuACmdc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Creativeprimez\\/status\\/1554518265938026503\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4911\":{\"media\":[{\"id\":1554517448593997825,\"id_str\":\"1554517448593997825\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBYiCXgAEXzfB.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554517624394063876,\"id_str\":\"1554517624394063876\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLBiw8XoAQKCwX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLBiw8XoAQKCwX.jpg\",\"url\":\"https:\\/\\/t.co\\/cVic8gLlWa\",\"display_url\":\"pic.twitter.com\\/cVic8gLlWa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/blackman_ini\\/status\\/1554517635156656128\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4912\":{\"media\":[{\"id\":1554516435765977092,\"id_str\":\"1554516435765977092\",\"indices\":[176,199],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAdk9WYAQtZD-.png\",\"url\":\"https:\\/\\/t.co\\/tiD2f47UBX\",\"display_url\":\"pic.twitter.com\\/tiD2f47UBX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/amSirkings\\/status\\/1554517312392368131\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":346,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":412,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":810,\"h\":412,\"resize\":\"fit\"}}}]},\"4913\":{\"media\":[{\"id\":1554516469114982401,\"id_str\":\"1554516469114982401\",\"indices\":[160,183],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554516469114982401\\/pu\\/img\\/zgt0RnNkwBrKcGjM.jpg\",\"url\":\"https:\\/\\/t.co\\/lcVoMynzKS\",\"display_url\":\"pic.twitter.com\\/lcVoMynzKS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dadadavidob\\/status\\/1554516660421365762\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":105956,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/vid\\/320x568\\/ybAa2yTG_9myP4kw.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/vid\\/480x852\\/9hFDsxIOwBjqwoJW.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/vid\\/576x1024\\/Mb17Gk2QwSIL7Suq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554516469114982401\\/pu\\/pl\\/lW0-OFodtJML6DoV.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4914\":null,\"4915\":{\"media\":[{\"id\":1554516297483960320,\"id_str\":\"1554516297483960320\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAVh0WQAAVHI-.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1554516307512643585,\"id_str\":\"1554516307512643585\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAWHLX0AEeHg9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAWHLX0AEeHg9.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554516316203192323,\"id_str\":\"1554516316203192323\",\"indices\":[161,184],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLAWnjXEAMJrNQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLAWnjXEAMJrNQ.jpg\",\"url\":\"https:\\/\\/t.co\\/QzuQjORJZR\",\"display_url\":\"pic.twitter.com\\/QzuQjORJZR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caridad_charity\\/status\\/1554516323786526720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4916\":null,\"4917\":null,\"4918\":null,\"4919\":{\"media\":[{\"id\":1554515405439369216,\"id_str\":\"1554515405439369216\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_hmsWAAA0px4.jpg\",\"url\":\"https:\\/\\/t.co\\/zn57X39Cdp\",\"display_url\":\"pic.twitter.com\\/zn57X39Cdp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554515408891305984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4920\":null,\"4921\":{\"media\":[{\"id\":1554514934259646465,\"id_str\":\"1554514934259646465\",\"indices\":[88,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK_GLaWAAEOVGG.jpg\",\"url\":\"https:\\/\\/t.co\\/IGfPS2hgII\",\"display_url\":\"pic.twitter.com\\/IGfPS2hgII\",\"expanded_url\":\"https:\\/\\/twitter.com\\/posh_emperor\\/status\\/1554514940857401344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"},\"medium\":{\"w\":1178,\"h\":616,\"resize\":\"fit\"}}}]},\"4922\":{\"media\":[{\"id\":1554514575684411394,\"id_str\":\"1554514575684411394\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-xTnWIAIdDAL.jpg\",\"url\":\"https:\\/\\/t.co\\/ez1KF3TssA\",\"display_url\":\"pic.twitter.com\\/ez1KF3TssA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NaijaTalkative_\\/status\\/1554514586954596353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":976,\"h\":549,\"resize\":\"fit\"},\"large\":{\"w\":976,\"h\":549,\"resize\":\"fit\"}}}]},\"4923\":{\"media\":[{\"id\":1554514242648346626,\"id_str\":\"1554514242648346626\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK-d69XEAI5uru.jpg\",\"url\":\"https:\\/\\/t.co\\/yY9KxsoIA6\",\"display_url\":\"pic.twitter.com\\/yY9KxsoIA6\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WumiAnu\\/status\\/1554514249975828480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4924\":null,\"4925\":null,\"4926\":{\"media\":[{\"id\":1554512105172246534,\"id_str\":\"1554512105172246534\",\"indices\":[135,158],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8hgPWIAY68H7.jpg\",\"url\":\"https:\\/\\/t.co\\/GT2cRzGWjm\",\"display_url\":\"pic.twitter.com\\/GT2cRzGWjm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WilliamsUmeh\\/status\\/1554512107630116864\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"4927\":{\"media\":[{\"id\":1554511966923784192,\"id_str\":\"1554511966923784192\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZdOWAAA5ZL-.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":772,\"h\":679,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":598,\"resize\":\"fit\"},\"large\":{\"w\":772,\"h\":679,\"resize\":\"fit\"}}},{\"id\":1554511970031788032,\"id_str\":\"1554511970031788032\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8ZozWYAAm4hi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8ZozWYAAm4hi.jpg\",\"url\":\"https:\\/\\/t.co\\/hw24ZmRrCM\",\"display_url\":\"pic.twitter.com\\/hw24ZmRrCM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Dat_Oronboy\\/status\\/1554511972942626817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":487,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":516,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":516,\"resize\":\"fit\"}}}]},\"4928\":{\"media\":[{\"id\":1554511934954905601,\"id_str\":\"1554511934954905601\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK8XmIXoAEa_H4.jpg\",\"url\":\"https:\\/\\/t.co\\/UORpoe3ZY2\",\"display_url\":\"pic.twitter.com\\/UORpoe3ZY2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/LAGOSEYENEWS\\/status\\/1554511937723146242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4929\":{\"media\":[{\"id\":1554511236750274560,\"id_str\":\"1554511236750274560\",\"indices\":[58,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK7u9HacAAR3N0.jpg\",\"url\":\"https:\\/\\/t.co\\/GJ1GzU7jGV\",\"display_url\":\"pic.twitter.com\\/GJ1GzU7jGV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554511554326179840\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":908,\"h\":443,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":332,\"resize\":\"fit\"},\"medium\":{\"w\":908,\"h\":443,\"resize\":\"fit\"}}}]},\"4930\":{\"media\":[{\"id\":1554510572514844673,\"id_str\":\"1554510572514844673\",\"indices\":[145,168],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554510572514844673\\/pu\\/img\\/3je9tz8nlqwYGF6X.jpg\",\"url\":\"https:\\/\\/t.co\\/QV20BAgK9G\",\"display_url\":\"pic.twitter.com\\/QV20BAgK9G\",\"expanded_url\":\"https:\\/\\/twitter.com\\/RankingSmoothy\\/status\\/1554510730334011399\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":656,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":700,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":372,\"h\":680,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[35,64],\"duration_millis\":21600,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/vid\\/480x876\\/dPZIcVUYr6el6K0j.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/vid\\/320x584\\/XcyVx0TBJ36K53Dp.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/vid\\/700x1280\\/54-FqgvLKIgWWEOQ.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554510572514844673\\/pu\\/pl\\/sIrJY-sWqEf6iBOX.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4931\":{\"media\":[{\"id\":1554509791514738688,\"id_str\":\"1554509791514738688\",\"indices\":[156,179],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554509791514738688\\/pu\\/img\\/BkBKQvcLeRK8zXu6.jpg\",\"url\":\"https:\\/\\/t.co\\/P2uLzsGYPc\",\"display_url\":\"pic.twitter.com\\/P2uLzsGYPc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554509836968427521\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":336,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":336,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,21],\"duration_millis\":57421,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509791514738688\\/pu\\/vid\\/514x270\\/NIou9j87pp5JSmEw.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509791514738688\\/pu\\/vid\\/640x336\\/9_Js_NOO5WqIMQ9x.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554509791514738688\\/pu\\/pl\\/6l8H_FuQ879izUOR.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4932\":null,\"4933\":{\"media\":[{\"id\":1554509721264160769,\"id_str\":\"1554509721264160769\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6WvfXgAEBQPA.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554509724850192385,\"id_str\":\"1554509724850192385\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6W82WAAEnbb8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6W82WAAEnbb8.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":922,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":612,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":922,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554509730177064960,\"id_str\":\"1554509730177064960\",\"indices\":[247,270],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6XQsXoAAzR98.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6XQsXoAAzR98.jpg\",\"url\":\"https:\\/\\/t.co\\/w6lPhMSlfV\",\"display_url\":\"pic.twitter.com\\/w6lPhMSlfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sure_odds11\\/status\\/1554509732836171779\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":498,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":498,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"}}}]},\"4934\":{\"media\":[{\"id\":1554509469513650181,\"id_str\":\"1554509469513650181\",\"indices\":[147,170],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK6IFpXkAUkXW5.jpg\",\"url\":\"https:\\/\\/t.co\\/MoJu2j7Qas\",\"display_url\":\"pic.twitter.com\\/MoJu2j7Qas\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Ryder07575428\\/status\\/1554509479911346176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"medium\":{\"w\":735,\"h\":918,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"4935\":null,\"4936\":{\"media\":[{\"id\":1554508205828489216,\"id_str\":\"1554508205828489216\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4-iDWQAARZl7.jpg\",\"url\":\"https:\\/\\/t.co\\/7RaExlFZdy\",\"display_url\":\"pic.twitter.com\\/7RaExlFZdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmanuelabuhson\\/status\\/1554508215945142273\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":900,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}}]},\"4937\":{\"media\":[{\"id\":1554507682463334402,\"id_str\":\"1554507682463334402\",\"indices\":[182,205],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4gEXXwAIipt6.jpg\",\"url\":\"https:\\/\\/t.co\\/X7gsur3N0k\",\"display_url\":\"pic.twitter.com\\/X7gsur3N0k\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Hodlzilla\\/status\\/1554507686431150081\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":512,\"h\":512,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":512,\"h\":512,\"resize\":\"fit\"}}}]},\"4938\":{\"media\":[{\"id\":1554507154136207371,\"id_str\":\"1554507154136207371\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554507154136207371\\/pu\\/img\\/HmaBb2szAnPNA76E.jpg\",\"url\":\"https:\\/\\/t.co\\/zQAIZsAEgs\",\"display_url\":\"pic.twitter.com\\/zQAIZsAEgs\",\"expanded_url\":\"https:\\/\\/twitter.com\\/boprinhomes\\/status\\/1554507669574131715\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":39583,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/vid\\/480x852\\/FicGCLkYW1VPmfr6.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/pl\\/pIo2rrEuqxjAhC_0.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/vid\\/720x1280\\/5dL2BNkIIPc8ziZ1.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554507154136207371\\/pu\\/vid\\/320x568\\/gMa7N6lFYgXIewrw.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4939\":{\"media\":[{\"id\":1554507371887689731,\"id_str\":\"1554507371887689731\",\"indices\":[108,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK4N_YXgAMLtwc.jpg\",\"url\":\"https:\\/\\/t.co\\/nkgeEcubJC\",\"display_url\":\"pic.twitter.com\\/nkgeEcubJC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Imkwesi_\\/status\\/1554507374265786369\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":715,\"h\":725,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":725,\"resize\":\"fit\"}}}]},\"4940\":null,\"4941\":null,\"4942\":{\"media\":[{\"id\":1554505347448152064,\"id_str\":\"1554505347448152064\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554505347448152064\\/pu\\/img\\/AXw8n_c0Cqy572i5.jpg\",\"url\":\"https:\\/\\/t.co\\/YMk2Mn69cr\",\"display_url\":\"pic.twitter.com\\/YMk2Mn69cr\",\"expanded_url\":\"https:\\/\\/twitter.com\\/imran_services\\/status\\/1554505425168568320\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":20014,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/pl\\/vwLN5FNwlY7JrAr4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/vid\\/480x852\\/23T3nVJlJHSFhLQe.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/vid\\/576x1024\\/yfB-pzhc0YKuUZ5s.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554505347448152064\\/pu\\/vid\\/320x568\\/-XJ4jxFcoD8XO5oZ.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4943\":{\"media\":[{\"id\":1554505094112198659,\"id_str\":\"1554505094112198659\",\"indices\":[228,251],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK2JaAXwAMieIx.jpg\",\"url\":\"https:\\/\\/t.co\\/csNNINnmIS\",\"display_url\":\"pic.twitter.com\\/csNNINnmIS\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Milli_ator\\/status\\/1554505114249052162\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":993,\"h\":1000,\"resize\":\"fit\"},\"small\":{\"w\":675,\"h\":680,\"resize\":\"fit\"}}}]},\"4944\":{\"media\":[{\"id\":1554503007227756544,\"id_str\":\"1554503007227756544\",\"indices\":[68,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZK0P7wWQAANDah.jpg\",\"url\":\"https:\\/\\/t.co\\/HhiXO7ZmPy\",\"display_url\":\"pic.twitter.com\\/HhiXO7ZmPy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/isbliss_5\\/status\\/1554503024973938690\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":569,\"h\":375,\"resize\":\"fit\"},\"small\":{\"w\":569,\"h\":375,\"resize\":\"fit\"}}}]},\"4945\":{\"media\":[{\"id\":1554502771952553986,\"id_str\":\"1554502771952553986\",\"indices\":[272,295],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554502771952553986\\/pu\\/img\\/8OYzTUV-hXl3UWiX.jpg\",\"url\":\"https:\\/\\/t.co\\/TdmyUy3XBp\",\"display_url\":\"pic.twitter.com\\/TdmyUy3XBp\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Chukzmiki\\/status\\/1554502879318315018\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":15394,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/vid\\/480x270\\/FHyRXZPw1B6KEV8H.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/pl\\/OGFbx1wdhP82JLJy.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/vid\\/1280x720\\/ptUHVy1rwA2oj38g.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554502771952553986\\/pu\\/vid\\/640x360\\/srWovRDdYcAEiRfl.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4946\":{\"media\":[{\"id\":1554502394603601920,\"id_str\":\"1554502394603601920\",\"indices\":[101,124],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzsRjXgAAaz_f.jpg\",\"url\":\"https:\\/\\/t.co\\/zkX2Sbg0bN\",\"display_url\":\"pic.twitter.com\\/zkX2Sbg0bN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ObidientYoutube\\/status\\/1554502403889807362\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1242,\"h\":698,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":674,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"4947\":{\"media\":[{\"id\":1554501901521403904,\"id_str\":\"1554501901521403904\",\"indices\":[30,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKzPkraQAALNOT.jpg\",\"url\":\"https:\\/\\/t.co\\/6pzyCrCJWe\",\"display_url\":\"pic.twitter.com\\/6pzyCrCJWe\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Rega_jpg\\/status\\/1554502371946172416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"large\":{\"w\":686,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":670,\"resize\":\"fit\"}}}]},\"4948\":null,\"4949\":{\"media\":[{\"id\":1554501297348513793,\"id_str\":\"1554501297348513793\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554501297348513793\\/pu\\/img\\/yLmLQzej8SRyrmp0.jpg\",\"url\":\"https:\\/\\/t.co\\/ibD6jbcgbc\",\"display_url\":\"pic.twitter.com\\/ibD6jbcgbc\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554501332723179524\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":24133,\"variants\":[{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/640x640\\/t3EgbyRAaiHwk_qV.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/320x320\\/2_4FMbCEAXhn0mWK.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/vid\\/540x540\\/ZLe0LEnVl8dDB3Ir.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554501297348513793\\/pu\\/pl\\/oT0hirFKFkT7o7Gb.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4950\":null,\"4951\":{\"media\":[{\"id\":1554500996553998337,\"id_str\":\"1554500996553998337\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKya5aXgAEru1s.jpg\",\"url\":\"https:\\/\\/t.co\\/1X3rwlfzDm\",\"display_url\":\"pic.twitter.com\\/1X3rwlfzDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaunceySean1\\/status\\/1554501006838431744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1241,\"h\":1562,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":953,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554500996826554371,\"id_str\":\"1554500996826554371\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKya6bWYAM62kH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKya6bWYAM62kH.jpg\",\"url\":\"https:\\/\\/t.co\\/1X3rwlfzDm\",\"display_url\":\"pic.twitter.com\\/1X3rwlfzDm\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaunceySean1\\/status\\/1554501006838431744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":810,\"h\":924,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":596,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":810,\"h\":924,\"resize\":\"fit\"}}}]},\"4952\":null,\"4953\":{\"media\":[{\"id\":1554500816718938114,\"id_str\":\"1554500816718938114\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500816718938114\\/pu\\/img\\/D0WLguRHI71CSdIU.jpg\",\"url\":\"https:\\/\\/t.co\\/XigzZJDjZT\",\"display_url\":\"pic.twitter.com\\/XigzZJDjZT\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500874185089025\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"small\":{\"w\":520,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":942,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":942,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[120,157],\"duration_millis\":28141,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/pl\\/X3qSCzBfipsg60NS.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/720x942\\/f66kDqGW_HEd-ECy.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/480x628\\/9P5kf7dGPctZKyj_.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500816718938114\\/pu\\/vid\\/320x418\\/PGt0IXDswz94frKP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4954\":{\"media\":[{\"id\":1554500275339239430,\"id_str\":\"1554500275339239430\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxw6rXoAYUqg3.jpg\",\"url\":\"https:\\/\\/t.co\\/ROTOrsvY71\",\"display_url\":\"pic.twitter.com\\/ROTOrsvY71\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rinxe_\\/status\\/1554500278094905347\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":583,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":840,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":840,\"resize\":\"fit\"}}}]},\"4955\":{\"media\":[{\"id\":1554500195148341249,\"id_str\":\"1554500195148341249\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxsP8XoAE94XL.jpg\",\"url\":\"https:\\/\\/t.co\\/2KNksCfwdg\",\"display_url\":\"pic.twitter.com\\/2KNksCfwdg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Atomic379\\/status\\/1554500207177596928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":347,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":523,\"h\":1024,\"resize\":\"fit\"}}},{\"id\":1554500197903917056,\"id_str\":\"1554500197903917056\",\"indices\":[146,169],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKxsaNWYAAijO-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKxsaNWYAAijO-.jpg\",\"url\":\"https:\\/\\/t.co\\/2KNksCfwdg\",\"display_url\":\"pic.twitter.com\\/2KNksCfwdg\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Atomic379\\/status\\/1554500207177596928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":542,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":718,\"h\":900,\"resize\":\"fit\"},\"medium\":{\"w\":718,\"h\":900,\"resize\":\"fit\"}}}]},\"4956\":{\"media\":[{\"id\":1554500123123765248,\"id_str\":\"1554500123123765248\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554500123123765248\\/pu\\/img\\/C1PJN4yeuyfuVjOX.jpg\",\"url\":\"https:\\/\\/t.co\\/65H2indrwE\",\"display_url\":\"pic.twitter.com\\/65H2indrwE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554500163846262789\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":37366,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/320x568\\/2Br2GB4WdVBDNrQ_.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/480x852\\/ZjXwA_XfvhRpz8SV.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/vid\\/576x1024\\/Bn3T0RPTg6OYIUIf.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554500123123765248\\/pu\\/pl\\/Aqyj5HlwR8awkFUN.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4957\":{\"media\":[{\"id\":1554499817635778562,\"id_str\":\"1554499817635778562\",\"indices\":[260,283],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554499817635778562\\/pu\\/img\\/FtqblLlzXTc2wQ_f.jpg\",\"url\":\"https:\\/\\/t.co\\/T7kgQYTzJ8\",\"display_url\":\"pic.twitter.com\\/T7kgQYTzJ8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ezekingwealth\\/status\\/1554499852234637313\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":11872,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554499817635778562\\/pu\\/vid\\/320x568\\/nGDx1N3G5hCQYUQe.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554499817635778562\\/pu\\/pl\\/-JNkT9mtLVunOB0C.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554499817635778562\\/pu\\/vid\\/480x852\\/F6eR7mFyX4XF9yl3.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4958\":{\"media\":[{\"id\":1554498460908486657,\"id_str\":\"1554498460908486657\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554498460908486657\\/pu\\/img\\/fg62yjCuTPbOVQSL.jpg\",\"url\":\"https:\\/\\/t.co\\/wGq0ra4JHP\",\"display_url\":\"pic.twitter.com\\/wGq0ra4JHP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Videos_u_missed\\/status\\/1554498498958987264\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29844,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/pl\\/kUhnVV5HGnNT8NO4.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/540x540\\/psaNxvD4kF4-nk-l.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/720x720\\/3HsNhph4WfbrZK1j.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554498460908486657\\/pu\\/vid\\/320x320\\/hIFkM_mAUo0Z4DsT.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4959\":{\"media\":[{\"id\":1554497715492503552,\"id_str\":\"1554497715492503552\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554497715492503552\\/pu\\/img\\/thkaOx1of26qW9To.jpg\",\"url\":\"https:\\/\\/t.co\\/JoHhIzFS0J\",\"display_url\":\"pic.twitter.com\\/JoHhIzFS0J\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Badman__Stoney\\/status\\/1554498360329003010\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":62000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/vid\\/480x852\\/QcW65nDqORUwOvSK.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/pl\\/Mm-LPp-kFuCPVG8y.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/vid\\/320x568\\/jSkEClDZJBdRucv2.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554497715492503552\\/pu\\/vid\\/720x1280\\/FFicmALh8euH4z6T.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4960\":{\"media\":[{\"id\":1554497177329848321,\"id_str\":\"1554497177329848321\",\"indices\":[192,215],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKu8lsX0AEfIAx.jpg\",\"url\":\"https:\\/\\/t.co\\/24V0Z563Hz\",\"display_url\":\"pic.twitter.com\\/24V0Z563Hz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554497190243864577\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"4961\":{\"media\":[{\"id\":1554495900172550147,\"id_str\":\"1554495900172550147\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKtyP6WAAMbvde.jpg\",\"url\":\"https:\\/\\/t.co\\/mC1IGTqxZN\",\"display_url\":\"pic.twitter.com\\/mC1IGTqxZN\",\"expanded_url\":\"https:\\/\\/twitter.com\\/nonstopdancer55\\/status\\/1554495902836031493\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"small\":{\"w\":508,\"h\":508,\"resize\":\"fit\"},\"large\":{\"w\":508,\"h\":508,\"resize\":\"fit\"}}}]},\"4962\":null,\"4963\":{\"media\":[{\"id\":1554494932181721088,\"id_str\":\"1554494932181721088\",\"indices\":[81,104],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs553WIAAXhpp.jpg\",\"url\":\"https:\\/\\/t.co\\/ut4fE6Z6FA\",\"display_url\":\"pic.twitter.com\\/ut4fE6Z6FA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/realproscrow\\/status\\/1554495310986203141\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"4964\":{\"media\":[{\"id\":1554494836379713538,\"id_str\":\"1554494836379713538\",\"indices\":[175,198],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKs0U-XgAIKV7e.jpg\",\"url\":\"https:\\/\\/t.co\\/YHkClDAdeG\",\"display_url\":\"pic.twitter.com\\/YHkClDAdeG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CucumberTV1\\/status\\/1554494846739615744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":726,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":896,\"h\":1481,\"resize\":\"fit\"},\"small\":{\"w\":411,\"h\":680,\"resize\":\"fit\"}}}]},\"4965\":null,\"4966\":null,\"4967\":{\"media\":[{\"id\":1554492935130972168,\"id_str\":\"1554492935130972168\",\"indices\":[218,241],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKrFqRWAAgcCdC.jpg\",\"url\":\"https:\\/\\/t.co\\/Dp6PmdnfRH\",\"display_url\":\"pic.twitter.com\\/Dp6PmdnfRH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/dan_nyeche\\/status\\/1554492944031399938\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":450,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":450,\"resize\":\"fit\"}}}]},\"4968\":{\"media\":[{\"id\":1554492448331780105,\"id_str\":\"1554492448331780105\",\"indices\":[216,239],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKqpUzX0Ak_l6L.jpg\",\"url\":\"https:\\/\\/t.co\\/IrHVBZAtGj\",\"display_url\":\"pic.twitter.com\\/IrHVBZAtGj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/_usejuju\\/status\\/1554492463200571395\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"4969\":{\"media\":[{\"id\":1554492065962401792,\"id_str\":\"1554492065962401792\",\"indices\":[130,153],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554492065962401792\\/pu\\/img\\/Z1hs67O8AQiLGxB-.jpg\",\"url\":\"https:\\/\\/t.co\\/SuqnCpdGVH\",\"display_url\":\"pic.twitter.com\\/SuqnCpdGVH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554492105506304000\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"large\":{\"w\":852,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":44837,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/vid\\/638x360\\/n2PXQxVvxHU-_fVe.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/vid\\/852x480\\/8cDyE8yxZak_DRue.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/vid\\/478x270\\/qYFbKkBXAGVTTfef.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554492065962401792\\/pu\\/pl\\/-89_nQlvk7vGvngn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"4970\":null,\"4971\":{\"media\":[{\"id\":1554491570216472577,\"id_str\":\"1554491570216472577\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKp2NkXkAEea_b.jpg\",\"url\":\"https:\\/\\/t.co\\/1omjHcInPM\",\"display_url\":\"pic.twitter.com\\/1omjHcInPM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OgunladeAbiola1\\/status\\/1554491572502372353\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"medium\":{\"w\":400,\"h\":400,\"resize\":\"fit\"},\"large\":{\"w\":400,\"h\":400,\"resize\":\"fit\"}}}]},\"4972\":{\"media\":[{\"id\":1554491505427247104,\"id_str\":\"1554491505427247104\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpycNacAA3_mD.jpg\",\"url\":\"https:\\/\\/t.co\\/u3VHsLGAP0\",\"display_url\":\"pic.twitter.com\\/u3VHsLGAP0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554491545810014208\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"4973\":null,\"4974\":null,\"4975\":{\"media\":[{\"id\":1554490875413434368,\"id_str\":\"1554490875413434368\",\"indices\":[286,309],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpNxOakAAxUHJ.jpg\",\"url\":\"https:\\/\\/t.co\\/BVOXlr4uF0\",\"display_url\":\"pic.twitter.com\\/BVOXlr4uF0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490944380354560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":408,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"4976\":{\"media\":[{\"id\":1554490735684206593,\"id_str\":\"1554490735684206593\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpFosXwAE8yUC.jpg\",\"url\":\"https:\\/\\/t.co\\/mo8Q7t3wg2\",\"display_url\":\"pic.twitter.com\\/mo8Q7t3wg2\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FatimaM86772400\\/status\\/1554490738594938883\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"medium\":{\"w\":674,\"h\":345,\"resize\":\"fit\"},\"small\":{\"w\":674,\"h\":345,\"resize\":\"fit\"}}}]},\"4977\":null,\"4978\":{\"media\":[{\"id\":1554490669972230146,\"id_str\":\"1554490669972230146\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKpBz5akAId9PH.jpg\",\"url\":\"https:\\/\\/t.co\\/KPehr8eDvd\",\"display_url\":\"pic.twitter.com\\/KPehr8eDvd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1554490676796354561\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"medium\":{\"w\":680,\"h\":504,\"resize\":\"fit\"},\"large\":{\"w\":680,\"h\":504,\"resize\":\"fit\"}}}]},\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":{\"media\":[{\"id\":1554490352496680960,\"id_str\":\"1554490352496680960\",\"indices\":[271,294],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKovVNWIAAC7vE.jpg\",\"url\":\"https:\\/\\/t.co\\/OhafhnOHNP\",\"display_url\":\"pic.twitter.com\\/OhafhnOHNP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/angelnetnews\\/status\\/1554490355508191232\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":{\"media\":[{\"id\":1554489126585614336,\"id_str\":\"1554489126585614336\",\"indices\":[223,246],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnn-VXwAAwSdH.jpg\",\"url\":\"https:\\/\\/t.co\\/o5IYOG2cGu\",\"display_url\":\"pic.twitter.com\\/o5IYOG2cGu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/freeworldmaster\\/status\\/1554489145971572737\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2048,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}}}]},\"4988\":null,\"4989\":{\"media\":[{\"id\":1554488879247495171,\"id_str\":\"1554488879247495171\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnZk7XkAM_kq-.jpg\",\"url\":\"https:\\/\\/t.co\\/zOwwS1AqzK\",\"display_url\":\"pic.twitter.com\\/zOwwS1AqzK\",\"expanded_url\":\"https:\\/\\/twitter.com\\/superfm933\\/status\\/1554488888789536768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":828,\"h\":839,\"resize\":\"fit\"},\"small\":{\"w\":671,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":839,\"resize\":\"fit\"}}}]},\"4990\":{\"media\":[{\"id\":1554488556680355841,\"id_str\":\"1554488556680355841\",\"indices\":[204,227],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKnGzRXoAE0Pxm.jpg\",\"url\":\"https:\\/\\/t.co\\/QmblcXb8XR\",\"display_url\":\"pic.twitter.com\\/QmblcXb8XR\",\"expanded_url\":\"https:\\/\\/twitter.com\\/justeventsonlin\\/status\\/1554488563089162242\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":600,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":794,\"h\":900,\"resize\":\"fit\"},\"large\":{\"w\":794,\"h\":900,\"resize\":\"fit\"}}}]},\"4991\":null,\"4992\":{\"media\":[{\"id\":1554487793941979141,\"id_str\":\"1554487793941979141\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmaZ2XoAURvpu.jpg\",\"url\":\"https:\\/\\/t.co\\/lde207mcTI\",\"display_url\":\"pic.twitter.com\\/lde207mcTI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487803244847104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"4993\":{\"media\":[{\"id\":1554487700522156038,\"id_str\":\"1554487700522156038\",\"indices\":[113,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKmU91WQAYB8pe.jpg\",\"url\":\"https:\\/\\/t.co\\/x6FJ08mKpH\",\"display_url\":\"pic.twitter.com\\/x6FJ08mKpH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/kudylata\\/status\\/1554487719132282880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":331,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":584,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1480,\"resize\":\"fit\"}}}]},\"4994\":null,\"4995\":null,\"4996\":null,\"4997\":{\"media\":[{\"id\":1554486449805877248,\"id_str\":\"1554486449805877248\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKlMKjWYAAIXlp.jpg\",\"url\":\"https:\\/\\/t.co\\/I695L4ShPk\",\"display_url\":\"pic.twitter.com\\/I695L4ShPk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MrJayPappy1\\/status\\/1554486456894242817\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"},\"small\":{\"w\":476,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":1028,\"resize\":\"fit\"}}}]},\"4998\":null,\"4999\":null},\"possibly_sensitive\":{\"0\":null,\"1\":0.0,\"2\":0.0,\"3\":0.0,\"4\":0.0,\"5\":0.0,\"6\":0.0,\"7\":0.0,\"8\":0.0,\"9\":null,\"10\":null,\"11\":null,\"12\":0.0,\"13\":0.0,\"14\":null,\"15\":null,\"16\":0.0,\"17\":null,\"18\":0.0,\"19\":0.0,\"20\":0.0,\"21\":0.0,\"22\":0.0,\"23\":0.0,\"24\":0.0,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":0.0,\"31\":0.0,\"32\":null,\"33\":0.0,\"34\":0.0,\"35\":0.0,\"36\":0.0,\"37\":0.0,\"38\":0.0,\"39\":0.0,\"40\":0.0,\"41\":0.0,\"42\":0.0,\"43\":null,\"44\":0.0,\"45\":0.0,\"46\":0.0,\"47\":0.0,\"48\":0.0,\"49\":0.0,\"50\":0.0,\"51\":0.0,\"52\":null,\"53\":0.0,\"54\":0.0,\"55\":0.0,\"56\":null,\"57\":0.0,\"58\":0.0,\"59\":0.0,\"60\":0.0,\"61\":0.0,\"62\":0.0,\"63\":null,\"64\":0.0,\"65\":null,\"66\":null,\"67\":0.0,\"68\":0.0,\"69\":0.0,\"70\":0.0,\"71\":0.0,\"72\":null,\"73\":0.0,\"74\":0.0,\"75\":1.0,\"76\":0.0,\"77\":1.0,\"78\":0.0,\"79\":0.0,\"80\":0.0,\"81\":null,\"82\":1.0,\"83\":0.0,\"84\":0.0,\"85\":0.0,\"86\":null,\"87\":0.0,\"88\":0.0,\"89\":0.0,\"90\":0.0,\"91\":0.0,\"92\":0.0,\"93\":null,\"94\":null,\"95\":0.0,\"96\":0.0,\"97\":0.0,\"98\":0.0,\"99\":0.0,\"100\":0.0,\"101\":0.0,\"102\":0.0,\"103\":0.0,\"104\":0.0,\"105\":0.0,\"106\":0.0,\"107\":null,\"108\":null,\"109\":0.0,\"110\":0.0,\"111\":null,\"112\":0.0,\"113\":0.0,\"114\":null,\"115\":0.0,\"116\":null,\"117\":null,\"118\":0.0,\"119\":0.0,\"120\":null,\"121\":1.0,\"122\":0.0,\"123\":0.0,\"124\":0.0,\"125\":0.0,\"126\":null,\"127\":0.0,\"128\":0.0,\"129\":0.0,\"130\":null,\"131\":0.0,\"132\":0.0,\"133\":0.0,\"134\":null,\"135\":0.0,\"136\":0.0,\"137\":0.0,\"138\":0.0,\"139\":0.0,\"140\":0.0,\"141\":0.0,\"142\":0.0,\"143\":0.0,\"144\":null,\"145\":0.0,\"146\":0.0,\"147\":null,\"148\":0.0,\"149\":0.0,\"150\":0.0,\"151\":0.0,\"152\":null,\"153\":0.0,\"154\":0.0,\"155\":null,\"156\":0.0,\"157\":0.0,\"158\":0.0,\"159\":0.0,\"160\":0.0,\"161\":0.0,\"162\":0.0,\"163\":0.0,\"164\":0.0,\"165\":0.0,\"166\":0.0,\"167\":0.0,\"168\":0.0,\"169\":0.0,\"170\":0.0,\"171\":null,\"172\":null,\"173\":0.0,\"174\":0.0,\"175\":1.0,\"176\":0.0,\"177\":null,\"178\":1.0,\"179\":0.0,\"180\":null,\"181\":null,\"182\":0.0,\"183\":0.0,\"184\":0.0,\"185\":null,\"186\":0.0,\"187\":0.0,\"188\":null,\"189\":0.0,\"190\":0.0,\"191\":0.0,\"192\":0.0,\"193\":0.0,\"194\":0.0,\"195\":0.0,\"196\":null,\"197\":0.0,\"198\":null,\"199\":null,\"200\":0.0,\"201\":0.0,\"202\":null,\"203\":null,\"204\":0.0,\"205\":0.0,\"206\":null,\"207\":0.0,\"208\":null,\"209\":null,\"210\":0.0,\"211\":0.0,\"212\":0.0,\"213\":0.0,\"214\":0.0,\"215\":0.0,\"216\":0.0,\"217\":0.0,\"218\":0.0,\"219\":null,\"220\":null,\"221\":0.0,\"222\":0.0,\"223\":0.0,\"224\":0.0,\"225\":0.0,\"226\":null,\"227\":0.0,\"228\":0.0,\"229\":0.0,\"230\":0.0,\"231\":0.0,\"232\":0.0,\"233\":0.0,\"234\":0.0,\"235\":0.0,\"236\":0.0,\"237\":0.0,\"238\":0.0,\"239\":0.0,\"240\":0.0,\"241\":0.0,\"242\":0.0,\"243\":0.0,\"244\":0.0,\"245\":0.0,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":0.0,\"251\":0.0,\"252\":0.0,\"253\":0.0,\"254\":null,\"255\":0.0,\"256\":null,\"257\":0.0,\"258\":0.0,\"259\":0.0,\"260\":0.0,\"261\":0.0,\"262\":0.0,\"263\":0.0,\"264\":0.0,\"265\":0.0,\"266\":null,\"267\":0.0,\"268\":null,\"269\":null,\"270\":0.0,\"271\":null,\"272\":0.0,\"273\":0.0,\"274\":0.0,\"275\":0.0,\"276\":0.0,\"277\":0.0,\"278\":0.0,\"279\":null,\"280\":0.0,\"281\":null,\"282\":0.0,\"283\":0.0,\"284\":null,\"285\":0.0,\"286\":0.0,\"287\":0.0,\"288\":0.0,\"289\":0.0,\"290\":0.0,\"291\":0.0,\"292\":0.0,\"293\":null,\"294\":0.0,\"295\":0.0,\"296\":null,\"297\":0.0,\"298\":null,\"299\":null,\"300\":0.0,\"301\":0.0,\"302\":0.0,\"303\":0.0,\"304\":0.0,\"305\":0.0,\"306\":0.0,\"307\":0.0,\"308\":0.0,\"309\":null,\"310\":null,\"311\":0.0,\"312\":null,\"313\":0.0,\"314\":0.0,\"315\":null,\"316\":0.0,\"317\":0.0,\"318\":0.0,\"319\":null,\"320\":0.0,\"321\":0.0,\"322\":0.0,\"323\":0.0,\"324\":0.0,\"325\":0.0,\"326\":null,\"327\":0.0,\"328\":null,\"329\":0.0,\"330\":0.0,\"331\":1.0,\"332\":0.0,\"333\":0.0,\"334\":0.0,\"335\":0.0,\"336\":0.0,\"337\":null,\"338\":0.0,\"339\":0.0,\"340\":0.0,\"341\":null,\"342\":0.0,\"343\":0.0,\"344\":null,\"345\":0.0,\"346\":0.0,\"347\":0.0,\"348\":0.0,\"349\":0.0,\"350\":0.0,\"351\":null,\"352\":null,\"353\":null,\"354\":0.0,\"355\":1.0,\"356\":null,\"357\":0.0,\"358\":null,\"359\":0.0,\"360\":null,\"361\":0.0,\"362\":0.0,\"363\":0.0,\"364\":0.0,\"365\":null,\"366\":0.0,\"367\":1.0,\"368\":0.0,\"369\":null,\"370\":0.0,\"371\":0.0,\"372\":0.0,\"373\":null,\"374\":0.0,\"375\":0.0,\"376\":0.0,\"377\":0.0,\"378\":0.0,\"379\":null,\"380\":0.0,\"381\":null,\"382\":1.0,\"383\":null,\"384\":0.0,\"385\":0.0,\"386\":0.0,\"387\":0.0,\"388\":0.0,\"389\":0.0,\"390\":null,\"391\":null,\"392\":0.0,\"393\":0.0,\"394\":0.0,\"395\":0.0,\"396\":0.0,\"397\":0.0,\"398\":0.0,\"399\":0.0,\"400\":0.0,\"401\":0.0,\"402\":0.0,\"403\":null,\"404\":null,\"405\":0.0,\"406\":null,\"407\":null,\"408\":0.0,\"409\":null,\"410\":0.0,\"411\":0.0,\"412\":0.0,\"413\":0.0,\"414\":0.0,\"415\":0.0,\"416\":0.0,\"417\":null,\"418\":0.0,\"419\":0.0,\"420\":0.0,\"421\":null,\"422\":null,\"423\":null,\"424\":0.0,\"425\":null,\"426\":0.0,\"427\":0.0,\"428\":0.0,\"429\":null,\"430\":null,\"431\":0.0,\"432\":0.0,\"433\":0.0,\"434\":0.0,\"435\":null,\"436\":0.0,\"437\":null,\"438\":0.0,\"439\":0.0,\"440\":null,\"441\":0.0,\"442\":0.0,\"443\":0.0,\"444\":0.0,\"445\":0.0,\"446\":0.0,\"447\":null,\"448\":null,\"449\":0.0,\"450\":0.0,\"451\":0.0,\"452\":null,\"453\":0.0,\"454\":0.0,\"455\":0.0,\"456\":0.0,\"457\":0.0,\"458\":0.0,\"459\":0.0,\"460\":0.0,\"461\":0.0,\"462\":0.0,\"463\":null,\"464\":0.0,\"465\":0.0,\"466\":null,\"467\":0.0,\"468\":null,\"469\":0.0,\"470\":0.0,\"471\":null,\"472\":0.0,\"473\":null,\"474\":0.0,\"475\":0.0,\"476\":0.0,\"477\":0.0,\"478\":0.0,\"479\":0.0,\"480\":null,\"481\":0.0,\"482\":0.0,\"483\":0.0,\"484\":0.0,\"485\":0.0,\"486\":0.0,\"487\":0.0,\"488\":0.0,\"489\":null,\"490\":0.0,\"491\":0.0,\"492\":0.0,\"493\":0.0,\"494\":0.0,\"495\":null,\"496\":0.0,\"497\":0.0,\"498\":0.0,\"499\":0.0,\"500\":0.0,\"501\":0.0,\"502\":0.0,\"503\":0.0,\"504\":0.0,\"505\":0.0,\"506\":null,\"507\":null,\"508\":0.0,\"509\":0.0,\"510\":0.0,\"511\":0.0,\"512\":0.0,\"513\":null,\"514\":0.0,\"515\":0.0,\"516\":0.0,\"517\":0.0,\"518\":0.0,\"519\":null,\"520\":0.0,\"521\":0.0,\"522\":0.0,\"523\":null,\"524\":null,\"525\":0.0,\"526\":0.0,\"527\":null,\"528\":0.0,\"529\":0.0,\"530\":null,\"531\":0.0,\"532\":0.0,\"533\":0.0,\"534\":0.0,\"535\":null,\"536\":null,\"537\":0.0,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":0.0,\"544\":0.0,\"545\":0.0,\"546\":0.0,\"547\":0.0,\"548\":0.0,\"549\":0.0,\"550\":0.0,\"551\":null,\"552\":0.0,\"553\":0.0,\"554\":0.0,\"555\":0.0,\"556\":null,\"557\":null,\"558\":0.0,\"559\":0.0,\"560\":0.0,\"561\":0.0,\"562\":null,\"563\":null,\"564\":0.0,\"565\":0.0,\"566\":0.0,\"567\":null,\"568\":0.0,\"569\":null,\"570\":null,\"571\":0.0,\"572\":0.0,\"573\":0.0,\"574\":1.0,\"575\":null,\"576\":null,\"577\":null,\"578\":0.0,\"579\":0.0,\"580\":0.0,\"581\":0.0,\"582\":0.0,\"583\":0.0,\"584\":0.0,\"585\":0.0,\"586\":0.0,\"587\":0.0,\"588\":0.0,\"589\":null,\"590\":0.0,\"591\":0.0,\"592\":0.0,\"593\":0.0,\"594\":0.0,\"595\":null,\"596\":0.0,\"597\":null,\"598\":null,\"599\":0.0,\"600\":0.0,\"601\":0.0,\"602\":0.0,\"603\":0.0,\"604\":0.0,\"605\":0.0,\"606\":0.0,\"607\":0.0,\"608\":null,\"609\":0.0,\"610\":0.0,\"611\":null,\"612\":0.0,\"613\":0.0,\"614\":0.0,\"615\":0.0,\"616\":0.0,\"617\":0.0,\"618\":0.0,\"619\":0.0,\"620\":0.0,\"621\":null,\"622\":0.0,\"623\":0.0,\"624\":null,\"625\":0.0,\"626\":0.0,\"627\":0.0,\"628\":0.0,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":0.0,\"635\":0.0,\"636\":null,\"637\":0.0,\"638\":0.0,\"639\":0.0,\"640\":0.0,\"641\":null,\"642\":null,\"643\":0.0,\"644\":0.0,\"645\":0.0,\"646\":null,\"647\":0.0,\"648\":null,\"649\":0.0,\"650\":0.0,\"651\":0.0,\"652\":0.0,\"653\":0.0,\"654\":null,\"655\":0.0,\"656\":0.0,\"657\":0.0,\"658\":0.0,\"659\":0.0,\"660\":null,\"661\":0.0,\"662\":null,\"663\":0.0,\"664\":0.0,\"665\":0.0,\"666\":0.0,\"667\":0.0,\"668\":0.0,\"669\":null,\"670\":null,\"671\":1.0,\"672\":0.0,\"673\":0.0,\"674\":0.0,\"675\":null,\"676\":0.0,\"677\":null,\"678\":0.0,\"679\":0.0,\"680\":0.0,\"681\":null,\"682\":1.0,\"683\":0.0,\"684\":0.0,\"685\":0.0,\"686\":0.0,\"687\":0.0,\"688\":0.0,\"689\":null,\"690\":0.0,\"691\":null,\"692\":0.0,\"693\":0.0,\"694\":null,\"695\":0.0,\"696\":0.0,\"697\":0.0,\"698\":0.0,\"699\":0.0,\"700\":null,\"701\":0.0,\"702\":0.0,\"703\":0.0,\"704\":0.0,\"705\":null,\"706\":null,\"707\":0.0,\"708\":0.0,\"709\":0.0,\"710\":0.0,\"711\":0.0,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":0.0,\"718\":0.0,\"719\":0.0,\"720\":null,\"721\":0.0,\"722\":0.0,\"723\":0.0,\"724\":0.0,\"725\":0.0,\"726\":0.0,\"727\":0.0,\"728\":0.0,\"729\":0.0,\"730\":1.0,\"731\":0.0,\"732\":0.0,\"733\":0.0,\"734\":0.0,\"735\":0.0,\"736\":null,\"737\":0.0,\"738\":0.0,\"739\":0.0,\"740\":0.0,\"741\":0.0,\"742\":0.0,\"743\":null,\"744\":0.0,\"745\":null,\"746\":0.0,\"747\":0.0,\"748\":null,\"749\":0.0,\"750\":null,\"751\":0.0,\"752\":0.0,\"753\":0.0,\"754\":0.0,\"755\":0.0,\"756\":0.0,\"757\":0.0,\"758\":0.0,\"759\":0.0,\"760\":0.0,\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":0.0,\"766\":null,\"767\":0.0,\"768\":0.0,\"769\":0.0,\"770\":0.0,\"771\":0.0,\"772\":0.0,\"773\":1.0,\"774\":0.0,\"775\":0.0,\"776\":0.0,\"777\":null,\"778\":0.0,\"779\":0.0,\"780\":0.0,\"781\":0.0,\"782\":0.0,\"783\":0.0,\"784\":0.0,\"785\":0.0,\"786\":null,\"787\":0.0,\"788\":0.0,\"789\":0.0,\"790\":0.0,\"791\":0.0,\"792\":null,\"793\":0.0,\"794\":0.0,\"795\":0.0,\"796\":0.0,\"797\":0.0,\"798\":0.0,\"799\":0.0,\"800\":null,\"801\":null,\"802\":0.0,\"803\":0.0,\"804\":0.0,\"805\":0.0,\"806\":0.0,\"807\":0.0,\"808\":0.0,\"809\":0.0,\"810\":0.0,\"811\":0.0,\"812\":0.0,\"813\":0.0,\"814\":0.0,\"815\":0.0,\"816\":0.0,\"817\":0.0,\"818\":0.0,\"819\":0.0,\"820\":0.0,\"821\":null,\"822\":0.0,\"823\":null,\"824\":0.0,\"825\":0.0,\"826\":null,\"827\":null,\"828\":0.0,\"829\":0.0,\"830\":0.0,\"831\":null,\"832\":0.0,\"833\":0.0,\"834\":0.0,\"835\":0.0,\"836\":0.0,\"837\":0.0,\"838\":0.0,\"839\":0.0,\"840\":0.0,\"841\":0.0,\"842\":0.0,\"843\":0.0,\"844\":0.0,\"845\":0.0,\"846\":0.0,\"847\":null,\"848\":0.0,\"849\":0.0,\"850\":null,\"851\":0.0,\"852\":0.0,\"853\":0.0,\"854\":0.0,\"855\":0.0,\"856\":null,\"857\":0.0,\"858\":0.0,\"859\":0.0,\"860\":0.0,\"861\":null,\"862\":null,\"863\":0.0,\"864\":0.0,\"865\":0.0,\"866\":null,\"867\":null,\"868\":null,\"869\":0.0,\"870\":0.0,\"871\":0.0,\"872\":0.0,\"873\":null,\"874\":0.0,\"875\":0.0,\"876\":0.0,\"877\":null,\"878\":null,\"879\":0.0,\"880\":0.0,\"881\":null,\"882\":0.0,\"883\":null,\"884\":0.0,\"885\":0.0,\"886\":0.0,\"887\":0.0,\"888\":0.0,\"889\":0.0,\"890\":0.0,\"891\":0.0,\"892\":0.0,\"893\":0.0,\"894\":0.0,\"895\":0.0,\"896\":0.0,\"897\":0.0,\"898\":0.0,\"899\":0.0,\"900\":0.0,\"901\":0.0,\"902\":null,\"903\":0.0,\"904\":0.0,\"905\":null,\"906\":0.0,\"907\":0.0,\"908\":0.0,\"909\":0.0,\"910\":0.0,\"911\":0.0,\"912\":0.0,\"913\":0.0,\"914\":0.0,\"915\":0.0,\"916\":0.0,\"917\":0.0,\"918\":0.0,\"919\":0.0,\"920\":0.0,\"921\":0.0,\"922\":1.0,\"923\":0.0,\"924\":0.0,\"925\":0.0,\"926\":0.0,\"927\":0.0,\"928\":0.0,\"929\":0.0,\"930\":0.0,\"931\":0.0,\"932\":0.0,\"933\":0.0,\"934\":0.0,\"935\":null,\"936\":0.0,\"937\":0.0,\"938\":0.0,\"939\":0.0,\"940\":0.0,\"941\":null,\"942\":0.0,\"943\":0.0,\"944\":0.0,\"945\":0.0,\"946\":0.0,\"947\":0.0,\"948\":0.0,\"949\":0.0,\"950\":0.0,\"951\":null,\"952\":0.0,\"953\":0.0,\"954\":0.0,\"955\":0.0,\"956\":0.0,\"957\":0.0,\"958\":0.0,\"959\":0.0,\"960\":null,\"961\":0.0,\"962\":0.0,\"963\":1.0,\"964\":0.0,\"965\":0.0,\"966\":0.0,\"967\":0.0,\"968\":0.0,\"969\":0.0,\"970\":0.0,\"971\":null,\"972\":0.0,\"973\":0.0,\"974\":null,\"975\":null,\"976\":null,\"977\":0.0,\"978\":null,\"979\":0.0,\"980\":0.0,\"981\":0.0,\"982\":null,\"983\":0.0,\"984\":1.0,\"985\":0.0,\"986\":0.0,\"987\":null,\"988\":null,\"989\":0.0,\"990\":0.0,\"991\":null,\"992\":0.0,\"993\":null,\"994\":0.0,\"995\":null,\"996\":0.0,\"997\":0.0,\"998\":1.0,\"999\":1.0,\"1000\":1.0,\"1001\":1.0,\"1002\":1.0,\"1003\":1.0,\"1004\":1.0,\"1005\":1.0,\"1006\":null,\"1007\":null,\"1008\":0.0,\"1009\":null,\"1010\":0.0,\"1011\":0.0,\"1012\":0.0,\"1013\":null,\"1014\":0.0,\"1015\":null,\"1016\":0.0,\"1017\":0.0,\"1018\":0.0,\"1019\":0.0,\"1020\":0.0,\"1021\":0.0,\"1022\":null,\"1023\":0.0,\"1024\":0.0,\"1025\":0.0,\"1026\":null,\"1027\":0.0,\"1028\":0.0,\"1029\":0.0,\"1030\":0.0,\"1031\":0.0,\"1032\":0.0,\"1033\":0.0,\"1034\":0.0,\"1035\":0.0,\"1036\":0.0,\"1037\":0.0,\"1038\":0.0,\"1039\":0.0,\"1040\":0.0,\"1041\":0.0,\"1042\":0.0,\"1043\":0.0,\"1044\":0.0,\"1045\":0.0,\"1046\":0.0,\"1047\":null,\"1048\":0.0,\"1049\":0.0,\"1050\":0.0,\"1051\":0.0,\"1052\":0.0,\"1053\":null,\"1054\":0.0,\"1055\":0.0,\"1056\":null,\"1057\":0.0,\"1058\":0.0,\"1059\":null,\"1060\":0.0,\"1061\":0.0,\"1062\":null,\"1063\":0.0,\"1064\":null,\"1065\":0.0,\"1066\":0.0,\"1067\":0.0,\"1068\":0.0,\"1069\":0.0,\"1070\":0.0,\"1071\":0.0,\"1072\":0.0,\"1073\":null,\"1074\":0.0,\"1075\":0.0,\"1076\":0.0,\"1077\":null,\"1078\":null,\"1079\":0.0,\"1080\":0.0,\"1081\":0.0,\"1082\":null,\"1083\":null,\"1084\":0.0,\"1085\":0.0,\"1086\":0.0,\"1087\":0.0,\"1088\":null,\"1089\":0.0,\"1090\":0.0,\"1091\":0.0,\"1092\":0.0,\"1093\":null,\"1094\":0.0,\"1095\":0.0,\"1096\":0.0,\"1097\":0.0,\"1098\":0.0,\"1099\":0.0,\"1100\":0.0,\"1101\":0.0,\"1102\":0.0,\"1103\":0.0,\"1104\":0.0,\"1105\":0.0,\"1106\":0.0,\"1107\":0.0,\"1108\":0.0,\"1109\":0.0,\"1110\":null,\"1111\":null,\"1112\":0.0,\"1113\":0.0,\"1114\":0.0,\"1115\":0.0,\"1116\":0.0,\"1117\":0.0,\"1118\":0.0,\"1119\":0.0,\"1120\":null,\"1121\":0.0,\"1122\":0.0,\"1123\":0.0,\"1124\":0.0,\"1125\":0.0,\"1126\":1.0,\"1127\":0.0,\"1128\":0.0,\"1129\":0.0,\"1130\":0.0,\"1131\":0.0,\"1132\":0.0,\"1133\":0.0,\"1134\":0.0,\"1135\":0.0,\"1136\":0.0,\"1137\":0.0,\"1138\":0.0,\"1139\":0.0,\"1140\":0.0,\"1141\":0.0,\"1142\":0.0,\"1143\":null,\"1144\":0.0,\"1145\":null,\"1146\":0.0,\"1147\":null,\"1148\":0.0,\"1149\":0.0,\"1150\":0.0,\"1151\":null,\"1152\":0.0,\"1153\":0.0,\"1154\":null,\"1155\":0.0,\"1156\":0.0,\"1157\":0.0,\"1158\":0.0,\"1159\":0.0,\"1160\":0.0,\"1161\":null,\"1162\":0.0,\"1163\":null,\"1164\":0.0,\"1165\":null,\"1166\":null,\"1167\":0.0,\"1168\":0.0,\"1169\":0.0,\"1170\":null,\"1171\":0.0,\"1172\":0.0,\"1173\":0.0,\"1174\":0.0,\"1175\":0.0,\"1176\":0.0,\"1177\":0.0,\"1178\":null,\"1179\":0.0,\"1180\":0.0,\"1181\":0.0,\"1182\":0.0,\"1183\":0.0,\"1184\":0.0,\"1185\":0.0,\"1186\":0.0,\"1187\":0.0,\"1188\":null,\"1189\":0.0,\"1190\":0.0,\"1191\":0.0,\"1192\":null,\"1193\":0.0,\"1194\":null,\"1195\":0.0,\"1196\":1.0,\"1197\":0.0,\"1198\":0.0,\"1199\":null,\"1200\":0.0,\"1201\":0.0,\"1202\":0.0,\"1203\":0.0,\"1204\":null,\"1205\":0.0,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":0.0,\"1210\":null,\"1211\":null,\"1212\":0.0,\"1213\":0.0,\"1214\":0.0,\"1215\":0.0,\"1216\":0.0,\"1217\":0.0,\"1218\":0.0,\"1219\":0.0,\"1220\":0.0,\"1221\":0.0,\"1222\":1.0,\"1223\":1.0,\"1224\":0.0,\"1225\":null,\"1226\":0.0,\"1227\":1.0,\"1228\":0.0,\"1229\":0.0,\"1230\":1.0,\"1231\":1.0,\"1232\":1.0,\"1233\":1.0,\"1234\":1.0,\"1235\":1.0,\"1236\":1.0,\"1237\":1.0,\"1238\":1.0,\"1239\":0.0,\"1240\":1.0,\"1241\":0.0,\"1242\":1.0,\"1243\":1.0,\"1244\":1.0,\"1245\":0.0,\"1246\":0.0,\"1247\":0.0,\"1248\":0.0,\"1249\":null,\"1250\":0.0,\"1251\":1.0,\"1252\":0.0,\"1253\":1.0,\"1254\":1.0,\"1255\":1.0,\"1256\":0.0,\"1257\":0.0,\"1258\":0.0,\"1259\":0.0,\"1260\":0.0,\"1261\":0.0,\"1262\":0.0,\"1263\":0.0,\"1264\":0.0,\"1265\":0.0,\"1266\":null,\"1267\":0.0,\"1268\":0.0,\"1269\":0.0,\"1270\":0.0,\"1271\":0.0,\"1272\":0.0,\"1273\":0.0,\"1274\":0.0,\"1275\":0.0,\"1276\":0.0,\"1277\":null,\"1278\":0.0,\"1279\":0.0,\"1280\":0.0,\"1281\":0.0,\"1282\":0.0,\"1283\":0.0,\"1284\":0.0,\"1285\":0.0,\"1286\":0.0,\"1287\":0.0,\"1288\":0.0,\"1289\":null,\"1290\":0.0,\"1291\":0.0,\"1292\":0.0,\"1293\":null,\"1294\":null,\"1295\":0.0,\"1296\":1.0,\"1297\":0.0,\"1298\":null,\"1299\":0.0,\"1300\":0.0,\"1301\":null,\"1302\":0.0,\"1303\":null,\"1304\":0.0,\"1305\":0.0,\"1306\":0.0,\"1307\":0.0,\"1308\":0.0,\"1309\":0.0,\"1310\":null,\"1311\":0.0,\"1312\":0.0,\"1313\":null,\"1314\":0.0,\"1315\":null,\"1316\":0.0,\"1317\":0.0,\"1318\":0.0,\"1319\":0.0,\"1320\":0.0,\"1321\":0.0,\"1322\":null,\"1323\":null,\"1324\":0.0,\"1325\":0.0,\"1326\":0.0,\"1327\":null,\"1328\":0.0,\"1329\":0.0,\"1330\":0.0,\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":0.0,\"1336\":0.0,\"1337\":0.0,\"1338\":0.0,\"1339\":0.0,\"1340\":null,\"1341\":0.0,\"1342\":0.0,\"1343\":0.0,\"1344\":0.0,\"1345\":0.0,\"1346\":0.0,\"1347\":0.0,\"1348\":0.0,\"1349\":null,\"1350\":0.0,\"1351\":0.0,\"1352\":0.0,\"1353\":0.0,\"1354\":0.0,\"1355\":0.0,\"1356\":0.0,\"1357\":0.0,\"1358\":0.0,\"1359\":0.0,\"1360\":0.0,\"1361\":1.0,\"1362\":0.0,\"1363\":0.0,\"1364\":0.0,\"1365\":null,\"1366\":0.0,\"1367\":0.0,\"1368\":0.0,\"1369\":0.0,\"1370\":0.0,\"1371\":0.0,\"1372\":0.0,\"1373\":0.0,\"1374\":0.0,\"1375\":null,\"1376\":0.0,\"1377\":0.0,\"1378\":0.0,\"1379\":0.0,\"1380\":0.0,\"1381\":0.0,\"1382\":0.0,\"1383\":null,\"1384\":0.0,\"1385\":null,\"1386\":null,\"1387\":0.0,\"1388\":0.0,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":0.0,\"1393\":0.0,\"1394\":null,\"1395\":null,\"1396\":0.0,\"1397\":0.0,\"1398\":0.0,\"1399\":0.0,\"1400\":0.0,\"1401\":0.0,\"1402\":0.0,\"1403\":0.0,\"1404\":0.0,\"1405\":null,\"1406\":0.0,\"1407\":0.0,\"1408\":0.0,\"1409\":null,\"1410\":0.0,\"1411\":null,\"1412\":0.0,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":0.0,\"1417\":null,\"1418\":0.0,\"1419\":0.0,\"1420\":0.0,\"1421\":0.0,\"1422\":0.0,\"1423\":0.0,\"1424\":null,\"1425\":null,\"1426\":0.0,\"1427\":null,\"1428\":0.0,\"1429\":null,\"1430\":0.0,\"1431\":0.0,\"1432\":0.0,\"1433\":0.0,\"1434\":0.0,\"1435\":0.0,\"1436\":null,\"1437\":0.0,\"1438\":0.0,\"1439\":0.0,\"1440\":null,\"1441\":0.0,\"1442\":0.0,\"1443\":0.0,\"1444\":0.0,\"1445\":0.0,\"1446\":0.0,\"1447\":0.0,\"1448\":null,\"1449\":0.0,\"1450\":1.0,\"1451\":0.0,\"1452\":0.0,\"1453\":0.0,\"1454\":0.0,\"1455\":null,\"1456\":0.0,\"1457\":0.0,\"1458\":null,\"1459\":0.0,\"1460\":0.0,\"1461\":0.0,\"1462\":0.0,\"1463\":0.0,\"1464\":0.0,\"1465\":0.0,\"1466\":null,\"1467\":0.0,\"1468\":0.0,\"1469\":0.0,\"1470\":0.0,\"1471\":0.0,\"1472\":0.0,\"1473\":0.0,\"1474\":0.0,\"1475\":0.0,\"1476\":null,\"1477\":0.0,\"1478\":0.0,\"1479\":0.0,\"1480\":null,\"1481\":0.0,\"1482\":0.0,\"1483\":0.0,\"1484\":0.0,\"1485\":0.0,\"1486\":0.0,\"1487\":0.0,\"1488\":1.0,\"1489\":0.0,\"1490\":0.0,\"1491\":0.0,\"1492\":0.0,\"1493\":null,\"1494\":0.0,\"1495\":0.0,\"1496\":0.0,\"1497\":null,\"1498\":0.0,\"1499\":null,\"1500\":0.0,\"1501\":0.0,\"1502\":0.0,\"1503\":0.0,\"1504\":0.0,\"1505\":0.0,\"1506\":null,\"1507\":0.0,\"1508\":0.0,\"1509\":0.0,\"1510\":0.0,\"1511\":0.0,\"1512\":null,\"1513\":0.0,\"1514\":null,\"1515\":null,\"1516\":0.0,\"1517\":null,\"1518\":0.0,\"1519\":null,\"1520\":0.0,\"1521\":null,\"1522\":0.0,\"1523\":0.0,\"1524\":null,\"1525\":1.0,\"1526\":1.0,\"1527\":1.0,\"1528\":0.0,\"1529\":1.0,\"1530\":1.0,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":0.0,\"1535\":0.0,\"1536\":0.0,\"1537\":0.0,\"1538\":0.0,\"1539\":null,\"1540\":0.0,\"1541\":0.0,\"1542\":0.0,\"1543\":null,\"1544\":null,\"1545\":0.0,\"1546\":0.0,\"1547\":0.0,\"1548\":0.0,\"1549\":0.0,\"1550\":0.0,\"1551\":0.0,\"1552\":0.0,\"1553\":0.0,\"1554\":null,\"1555\":0.0,\"1556\":0.0,\"1557\":0.0,\"1558\":null,\"1559\":0.0,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":0.0,\"1564\":0.0,\"1565\":null,\"1566\":0.0,\"1567\":0.0,\"1568\":0.0,\"1569\":null,\"1570\":0.0,\"1571\":0.0,\"1572\":null,\"1573\":null,\"1574\":0.0,\"1575\":null,\"1576\":null,\"1577\":0.0,\"1578\":0.0,\"1579\":0.0,\"1580\":0.0,\"1581\":0.0,\"1582\":0.0,\"1583\":0.0,\"1584\":null,\"1585\":null,\"1586\":0.0,\"1587\":0.0,\"1588\":0.0,\"1589\":null,\"1590\":0.0,\"1591\":null,\"1592\":0.0,\"1593\":0.0,\"1594\":null,\"1595\":0.0,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":0.0,\"1600\":0.0,\"1601\":0.0,\"1602\":null,\"1603\":0.0,\"1604\":null,\"1605\":0.0,\"1606\":null,\"1607\":0.0,\"1608\":null,\"1609\":0.0,\"1610\":0.0,\"1611\":null,\"1612\":null,\"1613\":0.0,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":0.0,\"1618\":null,\"1619\":0.0,\"1620\":null,\"1621\":null,\"1622\":0.0,\"1623\":0.0,\"1624\":0.0,\"1625\":null,\"1626\":0.0,\"1627\":0.0,\"1628\":0.0,\"1629\":0.0,\"1630\":0.0,\"1631\":0.0,\"1632\":0.0,\"1633\":null,\"1634\":null,\"1635\":0.0,\"1636\":0.0,\"1637\":0.0,\"1638\":0.0,\"1639\":0.0,\"1640\":0.0,\"1641\":0.0,\"1642\":0.0,\"1643\":0.0,\"1644\":0.0,\"1645\":0.0,\"1646\":null,\"1647\":0.0,\"1648\":null,\"1649\":0.0,\"1650\":0.0,\"1651\":0.0,\"1652\":null,\"1653\":0.0,\"1654\":0.0,\"1655\":0.0,\"1656\":0.0,\"1657\":0.0,\"1658\":0.0,\"1659\":0.0,\"1660\":0.0,\"1661\":0.0,\"1662\":0.0,\"1663\":0.0,\"1664\":0.0,\"1665\":0.0,\"1666\":0.0,\"1667\":0.0,\"1668\":0.0,\"1669\":0.0,\"1670\":0.0,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":0.0,\"1675\":0.0,\"1676\":0.0,\"1677\":0.0,\"1678\":0.0,\"1679\":0.0,\"1680\":0.0,\"1681\":0.0,\"1682\":0.0,\"1683\":0.0,\"1684\":0.0,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":0.0,\"1689\":0.0,\"1690\":0.0,\"1691\":null,\"1692\":0.0,\"1693\":0.0,\"1694\":0.0,\"1695\":0.0,\"1696\":0.0,\"1697\":0.0,\"1698\":0.0,\"1699\":0.0,\"1700\":0.0,\"1701\":null,\"1702\":0.0,\"1703\":null,\"1704\":0.0,\"1705\":0.0,\"1706\":0.0,\"1707\":0.0,\"1708\":0.0,\"1709\":0.0,\"1710\":0.0,\"1711\":0.0,\"1712\":0.0,\"1713\":0.0,\"1714\":0.0,\"1715\":0.0,\"1716\":null,\"1717\":0.0,\"1718\":0.0,\"1719\":0.0,\"1720\":0.0,\"1721\":null,\"1722\":0.0,\"1723\":0.0,\"1724\":0.0,\"1725\":0.0,\"1726\":0.0,\"1727\":0.0,\"1728\":0.0,\"1729\":0.0,\"1730\":0.0,\"1731\":0.0,\"1732\":0.0,\"1733\":0.0,\"1734\":0.0,\"1735\":0.0,\"1736\":0.0,\"1737\":0.0,\"1738\":0.0,\"1739\":0.0,\"1740\":0.0,\"1741\":null,\"1742\":0.0,\"1743\":0.0,\"1744\":0.0,\"1745\":0.0,\"1746\":0.0,\"1747\":null,\"1748\":0.0,\"1749\":0.0,\"1750\":0.0,\"1751\":0.0,\"1752\":0.0,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":0.0,\"1757\":0.0,\"1758\":0.0,\"1759\":0.0,\"1760\":0.0,\"1761\":null,\"1762\":0.0,\"1763\":0.0,\"1764\":0.0,\"1765\":0.0,\"1766\":0.0,\"1767\":1.0,\"1768\":0.0,\"1769\":0.0,\"1770\":0.0,\"1771\":0.0,\"1772\":0.0,\"1773\":null,\"1774\":0.0,\"1775\":0.0,\"1776\":0.0,\"1777\":null,\"1778\":0.0,\"1779\":0.0,\"1780\":0.0,\"1781\":0.0,\"1782\":0.0,\"1783\":0.0,\"1784\":null,\"1785\":0.0,\"1786\":null,\"1787\":null,\"1788\":0.0,\"1789\":0.0,\"1790\":0.0,\"1791\":1.0,\"1792\":0.0,\"1793\":0.0,\"1794\":0.0,\"1795\":0.0,\"1796\":0.0,\"1797\":0.0,\"1798\":0.0,\"1799\":0.0,\"1800\":0.0,\"1801\":null,\"1802\":0.0,\"1803\":0.0,\"1804\":0.0,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":0.0,\"1810\":0.0,\"1811\":0.0,\"1812\":0.0,\"1813\":null,\"1814\":0.0,\"1815\":0.0,\"1816\":0.0,\"1817\":0.0,\"1818\":0.0,\"1819\":0.0,\"1820\":0.0,\"1821\":null,\"1822\":0.0,\"1823\":0.0,\"1824\":null,\"1825\":0.0,\"1826\":null,\"1827\":0.0,\"1828\":0.0,\"1829\":null,\"1830\":0.0,\"1831\":0.0,\"1832\":0.0,\"1833\":0.0,\"1834\":0.0,\"1835\":0.0,\"1836\":0.0,\"1837\":0.0,\"1838\":0.0,\"1839\":null,\"1840\":1.0,\"1841\":0.0,\"1842\":0.0,\"1843\":null,\"1844\":null,\"1845\":1.0,\"1846\":null,\"1847\":0.0,\"1848\":0.0,\"1849\":0.0,\"1850\":0.0,\"1851\":0.0,\"1852\":0.0,\"1853\":null,\"1854\":0.0,\"1855\":1.0,\"1856\":0.0,\"1857\":0.0,\"1858\":0.0,\"1859\":0.0,\"1860\":0.0,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":0.0,\"1865\":0.0,\"1866\":null,\"1867\":0.0,\"1868\":null,\"1869\":null,\"1870\":0.0,\"1871\":0.0,\"1872\":null,\"1873\":null,\"1874\":0.0,\"1875\":null,\"1876\":0.0,\"1877\":0.0,\"1878\":0.0,\"1879\":null,\"1880\":0.0,\"1881\":0.0,\"1882\":0.0,\"1883\":0.0,\"1884\":0.0,\"1885\":0.0,\"1886\":0.0,\"1887\":null,\"1888\":0.0,\"1889\":null,\"1890\":0.0,\"1891\":0.0,\"1892\":0.0,\"1893\":0.0,\"1894\":0.0,\"1895\":0.0,\"1896\":null,\"1897\":0.0,\"1898\":null,\"1899\":0.0,\"1900\":0.0,\"1901\":1.0,\"1902\":0.0,\"1903\":0.0,\"1904\":0.0,\"1905\":0.0,\"1906\":0.0,\"1907\":0.0,\"1908\":0.0,\"1909\":0.0,\"1910\":0.0,\"1911\":0.0,\"1912\":0.0,\"1913\":0.0,\"1914\":null,\"1915\":0.0,\"1916\":0.0,\"1917\":0.0,\"1918\":0.0,\"1919\":1.0,\"1920\":0.0,\"1921\":0.0,\"1922\":0.0,\"1923\":null,\"1924\":0.0,\"1925\":0.0,\"1926\":0.0,\"1927\":0.0,\"1928\":0.0,\"1929\":0.0,\"1930\":0.0,\"1931\":0.0,\"1932\":0.0,\"1933\":null,\"1934\":0.0,\"1935\":0.0,\"1936\":0.0,\"1937\":0.0,\"1938\":0.0,\"1939\":0.0,\"1940\":0.0,\"1941\":null,\"1942\":0.0,\"1943\":0.0,\"1944\":0.0,\"1945\":0.0,\"1946\":0.0,\"1947\":0.0,\"1948\":0.0,\"1949\":0.0,\"1950\":0.0,\"1951\":0.0,\"1952\":0.0,\"1953\":0.0,\"1954\":0.0,\"1955\":0.0,\"1956\":0.0,\"1957\":0.0,\"1958\":0.0,\"1959\":0.0,\"1960\":0.0,\"1961\":0.0,\"1962\":0.0,\"1963\":0.0,\"1964\":0.0,\"1965\":0.0,\"1966\":0.0,\"1967\":0.0,\"1968\":0.0,\"1969\":0.0,\"1970\":null,\"1971\":0.0,\"1972\":0.0,\"1973\":0.0,\"1974\":0.0,\"1975\":0.0,\"1976\":0.0,\"1977\":0.0,\"1978\":0.0,\"1979\":0.0,\"1980\":0.0,\"1981\":0.0,\"1982\":0.0,\"1983\":0.0,\"1984\":0.0,\"1985\":0.0,\"1986\":0.0,\"1987\":0.0,\"1988\":0.0,\"1989\":0.0,\"1990\":null,\"1991\":0.0,\"1992\":0.0,\"1993\":0.0,\"1994\":0.0,\"1995\":0.0,\"1996\":0.0,\"1997\":0.0,\"1998\":0.0,\"1999\":0.0,\"2000\":0.0,\"2001\":0.0,\"2002\":0.0,\"2003\":0.0,\"2004\":0.0,\"2005\":0.0,\"2006\":0.0,\"2007\":0.0,\"2008\":0.0,\"2009\":0.0,\"2010\":0.0,\"2011\":0.0,\"2012\":0.0,\"2013\":0.0,\"2014\":0.0,\"2015\":0.0,\"2016\":0.0,\"2017\":0.0,\"2018\":0.0,\"2019\":0.0,\"2020\":0.0,\"2021\":0.0,\"2022\":0.0,\"2023\":0.0,\"2024\":0.0,\"2025\":0.0,\"2026\":0.0,\"2027\":0.0,\"2028\":0.0,\"2029\":0.0,\"2030\":0.0,\"2031\":null,\"2032\":0.0,\"2033\":null,\"2034\":0.0,\"2035\":0.0,\"2036\":0.0,\"2037\":0.0,\"2038\":0.0,\"2039\":0.0,\"2040\":0.0,\"2041\":0.0,\"2042\":0.0,\"2043\":0.0,\"2044\":0.0,\"2045\":0.0,\"2046\":0.0,\"2047\":0.0,\"2048\":0.0,\"2049\":0.0,\"2050\":0.0,\"2051\":0.0,\"2052\":0.0,\"2053\":null,\"2054\":0.0,\"2055\":0.0,\"2056\":0.0,\"2057\":0.0,\"2058\":0.0,\"2059\":0.0,\"2060\":null,\"2061\":0.0,\"2062\":0.0,\"2063\":null,\"2064\":0.0,\"2065\":0.0,\"2066\":0.0,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":0.0,\"2071\":0.0,\"2072\":null,\"2073\":null,\"2074\":0.0,\"2075\":null,\"2076\":0.0,\"2077\":0.0,\"2078\":null,\"2079\":0.0,\"2080\":0.0,\"2081\":0.0,\"2082\":0.0,\"2083\":0.0,\"2084\":0.0,\"2085\":null,\"2086\":0.0,\"2087\":1.0,\"2088\":null,\"2089\":0.0,\"2090\":0.0,\"2091\":0.0,\"2092\":null,\"2093\":0.0,\"2094\":0.0,\"2095\":0.0,\"2096\":0.0,\"2097\":0.0,\"2098\":0.0,\"2099\":0.0,\"2100\":0.0,\"2101\":0.0,\"2102\":0.0,\"2103\":0.0,\"2104\":0.0,\"2105\":0.0,\"2106\":0.0,\"2107\":0.0,\"2108\":0.0,\"2109\":0.0,\"2110\":0.0,\"2111\":0.0,\"2112\":0.0,\"2113\":0.0,\"2114\":0.0,\"2115\":0.0,\"2116\":0.0,\"2117\":0.0,\"2118\":0.0,\"2119\":0.0,\"2120\":0.0,\"2121\":0.0,\"2122\":0.0,\"2123\":0.0,\"2124\":0.0,\"2125\":0.0,\"2126\":0.0,\"2127\":0.0,\"2128\":0.0,\"2129\":0.0,\"2130\":0.0,\"2131\":0.0,\"2132\":0.0,\"2133\":null,\"2134\":0.0,\"2135\":null,\"2136\":0.0,\"2137\":0.0,\"2138\":0.0,\"2139\":0.0,\"2140\":0.0,\"2141\":0.0,\"2142\":0.0,\"2143\":0.0,\"2144\":0.0,\"2145\":0.0,\"2146\":0.0,\"2147\":0.0,\"2148\":0.0,\"2149\":0.0,\"2150\":0.0,\"2151\":0.0,\"2152\":0.0,\"2153\":0.0,\"2154\":0.0,\"2155\":0.0,\"2156\":0.0,\"2157\":0.0,\"2158\":0.0,\"2159\":0.0,\"2160\":0.0,\"2161\":0.0,\"2162\":0.0,\"2163\":0.0,\"2164\":null,\"2165\":0.0,\"2166\":0.0,\"2167\":0.0,\"2168\":0.0,\"2169\":0.0,\"2170\":0.0,\"2171\":0.0,\"2172\":0.0,\"2173\":0.0,\"2174\":0.0,\"2175\":0.0,\"2176\":0.0,\"2177\":0.0,\"2178\":0.0,\"2179\":0.0,\"2180\":0.0,\"2181\":0.0,\"2182\":0.0,\"2183\":0.0,\"2184\":0.0,\"2185\":0.0,\"2186\":0.0,\"2187\":0.0,\"2188\":0.0,\"2189\":0.0,\"2190\":0.0,\"2191\":0.0,\"2192\":null,\"2193\":0.0,\"2194\":0.0,\"2195\":0.0,\"2196\":0.0,\"2197\":0.0,\"2198\":0.0,\"2199\":0.0,\"2200\":0.0,\"2201\":0.0,\"2202\":0.0,\"2203\":0.0,\"2204\":0.0,\"2205\":0.0,\"2206\":0.0,\"2207\":0.0,\"2208\":0.0,\"2209\":0.0,\"2210\":0.0,\"2211\":0.0,\"2212\":0.0,\"2213\":0.0,\"2214\":0.0,\"2215\":0.0,\"2216\":0.0,\"2217\":0.0,\"2218\":null,\"2219\":0.0,\"2220\":0.0,\"2221\":null,\"2222\":0.0,\"2223\":0.0,\"2224\":0.0,\"2225\":0.0,\"2226\":0.0,\"2227\":0.0,\"2228\":0.0,\"2229\":0.0,\"2230\":0.0,\"2231\":0.0,\"2232\":null,\"2233\":0.0,\"2234\":0.0,\"2235\":0.0,\"2236\":0.0,\"2237\":0.0,\"2238\":0.0,\"2239\":0.0,\"2240\":0.0,\"2241\":0.0,\"2242\":0.0,\"2243\":0.0,\"2244\":0.0,\"2245\":0.0,\"2246\":0.0,\"2247\":0.0,\"2248\":0.0,\"2249\":0.0,\"2250\":0.0,\"2251\":0.0,\"2252\":0.0,\"2253\":0.0,\"2254\":0.0,\"2255\":0.0,\"2256\":0.0,\"2257\":0.0,\"2258\":0.0,\"2259\":0.0,\"2260\":0.0,\"2261\":0.0,\"2262\":0.0,\"2263\":null,\"2264\":null,\"2265\":0.0,\"2266\":0.0,\"2267\":null,\"2268\":0.0,\"2269\":0.0,\"2270\":0.0,\"2271\":0.0,\"2272\":0.0,\"2273\":0.0,\"2274\":0.0,\"2275\":0.0,\"2276\":0.0,\"2277\":0.0,\"2278\":0.0,\"2279\":0.0,\"2280\":0.0,\"2281\":0.0,\"2282\":0.0,\"2283\":0.0,\"2284\":0.0,\"2285\":0.0,\"2286\":0.0,\"2287\":0.0,\"2288\":0.0,\"2289\":0.0,\"2290\":0.0,\"2291\":0.0,\"2292\":0.0,\"2293\":null,\"2294\":0.0,\"2295\":1.0,\"2296\":null,\"2297\":0.0,\"2298\":0.0,\"2299\":1.0,\"2300\":0.0,\"2301\":1.0,\"2302\":0.0,\"2303\":0.0,\"2304\":0.0,\"2305\":0.0,\"2306\":null,\"2307\":0.0,\"2308\":0.0,\"2309\":0.0,\"2310\":0.0,\"2311\":null,\"2312\":null,\"2313\":1.0,\"2314\":0.0,\"2315\":null,\"2316\":0.0,\"2317\":0.0,\"2318\":0.0,\"2319\":0.0,\"2320\":0.0,\"2321\":0.0,\"2322\":0.0,\"2323\":0.0,\"2324\":0.0,\"2325\":0.0,\"2326\":0.0,\"2327\":0.0,\"2328\":0.0,\"2329\":0.0,\"2330\":0.0,\"2331\":null,\"2332\":0.0,\"2333\":0.0,\"2334\":0.0,\"2335\":0.0,\"2336\":0.0,\"2337\":0.0,\"2338\":0.0,\"2339\":0.0,\"2340\":null,\"2341\":0.0,\"2342\":0.0,\"2343\":null,\"2344\":0.0,\"2345\":0.0,\"2346\":0.0,\"2347\":0.0,\"2348\":0.0,\"2349\":0.0,\"2350\":0.0,\"2351\":null,\"2352\":0.0,\"2353\":null,\"2354\":0.0,\"2355\":0.0,\"2356\":0.0,\"2357\":0.0,\"2358\":0.0,\"2359\":0.0,\"2360\":0.0,\"2361\":0.0,\"2362\":0.0,\"2363\":0.0,\"2364\":0.0,\"2365\":0.0,\"2366\":0.0,\"2367\":null,\"2368\":1.0,\"2369\":0.0,\"2370\":0.0,\"2371\":null,\"2372\":0.0,\"2373\":0.0,\"2374\":0.0,\"2375\":0.0,\"2376\":0.0,\"2377\":null,\"2378\":0.0,\"2379\":null,\"2380\":0.0,\"2381\":1.0,\"2382\":1.0,\"2383\":null,\"2384\":0.0,\"2385\":0.0,\"2386\":0.0,\"2387\":null,\"2388\":0.0,\"2389\":0.0,\"2390\":0.0,\"2391\":0.0,\"2392\":0.0,\"2393\":0.0,\"2394\":null,\"2395\":0.0,\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":0.0,\"2401\":0.0,\"2402\":0.0,\"2403\":0.0,\"2404\":0.0,\"2405\":null,\"2406\":0.0,\"2407\":null,\"2408\":null,\"2409\":0.0,\"2410\":0.0,\"2411\":0.0,\"2412\":0.0,\"2413\":0.0,\"2414\":0.0,\"2415\":0.0,\"2416\":0.0,\"2417\":0.0,\"2418\":0.0,\"2419\":0.0,\"2420\":0.0,\"2421\":0.0,\"2422\":0.0,\"2423\":0.0,\"2424\":0.0,\"2425\":0.0,\"2426\":0.0,\"2427\":0.0,\"2428\":0.0,\"2429\":0.0,\"2430\":0.0,\"2431\":0.0,\"2432\":0.0,\"2433\":0.0,\"2434\":0.0,\"2435\":0.0,\"2436\":0.0,\"2437\":0.0,\"2438\":0.0,\"2439\":0.0,\"2440\":0.0,\"2441\":0.0,\"2442\":0.0,\"2443\":0.0,\"2444\":0.0,\"2445\":0.0,\"2446\":0.0,\"2447\":0.0,\"2448\":0.0,\"2449\":0.0,\"2450\":0.0,\"2451\":0.0,\"2452\":null,\"2453\":null,\"2454\":0.0,\"2455\":0.0,\"2456\":0.0,\"2457\":0.0,\"2458\":null,\"2459\":null,\"2460\":0.0,\"2461\":0.0,\"2462\":null,\"2463\":0.0,\"2464\":0.0,\"2465\":0.0,\"2466\":0.0,\"2467\":0.0,\"2468\":0.0,\"2469\":0.0,\"2470\":0.0,\"2471\":0.0,\"2472\":0.0,\"2473\":0.0,\"2474\":0.0,\"2475\":0.0,\"2476\":0.0,\"2477\":0.0,\"2478\":0.0,\"2479\":0.0,\"2480\":0.0,\"2481\":0.0,\"2482\":0.0,\"2483\":0.0,\"2484\":0.0,\"2485\":0.0,\"2486\":0.0,\"2487\":0.0,\"2488\":0.0,\"2489\":0.0,\"2490\":0.0,\"2491\":0.0,\"2492\":0.0,\"2493\":0.0,\"2494\":0.0,\"2495\":0.0,\"2496\":0.0,\"2497\":0.0,\"2498\":0.0,\"2499\":0.0,\"2500\":0.0,\"2501\":0.0,\"2502\":0.0,\"2503\":0.0,\"2504\":0.0,\"2505\":0.0,\"2506\":0.0,\"2507\":0.0,\"2508\":0.0,\"2509\":0.0,\"2510\":0.0,\"2511\":0.0,\"2512\":0.0,\"2513\":0.0,\"2514\":0.0,\"2515\":0.0,\"2516\":0.0,\"2517\":0.0,\"2518\":0.0,\"2519\":0.0,\"2520\":0.0,\"2521\":0.0,\"2522\":0.0,\"2523\":0.0,\"2524\":0.0,\"2525\":0.0,\"2526\":0.0,\"2527\":0.0,\"2528\":0.0,\"2529\":0.0,\"2530\":0.0,\"2531\":0.0,\"2532\":0.0,\"2533\":0.0,\"2534\":0.0,\"2535\":0.0,\"2536\":0.0,\"2537\":0.0,\"2538\":0.0,\"2539\":0.0,\"2540\":0.0,\"2541\":0.0,\"2542\":0.0,\"2543\":0.0,\"2544\":0.0,\"2545\":0.0,\"2546\":0.0,\"2547\":0.0,\"2548\":0.0,\"2549\":0.0,\"2550\":0.0,\"2551\":null,\"2552\":0.0,\"2553\":0.0,\"2554\":0.0,\"2555\":0.0,\"2556\":0.0,\"2557\":0.0,\"2558\":0.0,\"2559\":0.0,\"2560\":0.0,\"2561\":0.0,\"2562\":0.0,\"2563\":null,\"2564\":0.0,\"2565\":0.0,\"2566\":0.0,\"2567\":0.0,\"2568\":0.0,\"2569\":0.0,\"2570\":0.0,\"2571\":0.0,\"2572\":0.0,\"2573\":0.0,\"2574\":0.0,\"2575\":0.0,\"2576\":0.0,\"2577\":0.0,\"2578\":0.0,\"2579\":0.0,\"2580\":0.0,\"2581\":0.0,\"2582\":0.0,\"2583\":0.0,\"2584\":0.0,\"2585\":0.0,\"2586\":0.0,\"2587\":0.0,\"2588\":0.0,\"2589\":0.0,\"2590\":0.0,\"2591\":0.0,\"2592\":0.0,\"2593\":0.0,\"2594\":0.0,\"2595\":0.0,\"2596\":0.0,\"2597\":0.0,\"2598\":0.0,\"2599\":0.0,\"2600\":0.0,\"2601\":0.0,\"2602\":0.0,\"2603\":0.0,\"2604\":0.0,\"2605\":0.0,\"2606\":0.0,\"2607\":0.0,\"2608\":0.0,\"2609\":null,\"2610\":0.0,\"2611\":null,\"2612\":0.0,\"2613\":0.0,\"2614\":0.0,\"2615\":0.0,\"2616\":0.0,\"2617\":0.0,\"2618\":0.0,\"2619\":0.0,\"2620\":0.0,\"2621\":0.0,\"2622\":null,\"2623\":null,\"2624\":0.0,\"2625\":0.0,\"2626\":0.0,\"2627\":0.0,\"2628\":0.0,\"2629\":0.0,\"2630\":0.0,\"2631\":0.0,\"2632\":0.0,\"2633\":null,\"2634\":0.0,\"2635\":0.0,\"2636\":0.0,\"2637\":0.0,\"2638\":0.0,\"2639\":0.0,\"2640\":1.0,\"2641\":0.0,\"2642\":0.0,\"2643\":null,\"2644\":null,\"2645\":0.0,\"2646\":0.0,\"2647\":null,\"2648\":0.0,\"2649\":0.0,\"2650\":0.0,\"2651\":null,\"2652\":0.0,\"2653\":0.0,\"2654\":0.0,\"2655\":0.0,\"2656\":0.0,\"2657\":null,\"2658\":0.0,\"2659\":0.0,\"2660\":0.0,\"2661\":0.0,\"2662\":0.0,\"2663\":0.0,\"2664\":0.0,\"2665\":null,\"2666\":0.0,\"2667\":null,\"2668\":0.0,\"2669\":0.0,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":0.0,\"2677\":0.0,\"2678\":null,\"2679\":0.0,\"2680\":0.0,\"2681\":0.0,\"2682\":0.0,\"2683\":0.0,\"2684\":0.0,\"2685\":0.0,\"2686\":0.0,\"2687\":0.0,\"2688\":0.0,\"2689\":0.0,\"2690\":0.0,\"2691\":0.0,\"2692\":0.0,\"2693\":0.0,\"2694\":0.0,\"2695\":null,\"2696\":0.0,\"2697\":0.0,\"2698\":0.0,\"2699\":0.0,\"2700\":0.0,\"2701\":0.0,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":0.0,\"2709\":null,\"2710\":0.0,\"2711\":0.0,\"2712\":0.0,\"2713\":0.0,\"2714\":0.0,\"2715\":0.0,\"2716\":null,\"2717\":null,\"2718\":0.0,\"2719\":0.0,\"2720\":0.0,\"2721\":null,\"2722\":0.0,\"2723\":0.0,\"2724\":0.0,\"2725\":0.0,\"2726\":null,\"2727\":0.0,\"2728\":null,\"2729\":null,\"2730\":0.0,\"2731\":null,\"2732\":null,\"2733\":0.0,\"2734\":0.0,\"2735\":0.0,\"2736\":null,\"2737\":0.0,\"2738\":0.0,\"2739\":0.0,\"2740\":0.0,\"2741\":0.0,\"2742\":1.0,\"2743\":null,\"2744\":null,\"2745\":0.0,\"2746\":0.0,\"2747\":null,\"2748\":0.0,\"2749\":null,\"2750\":0.0,\"2751\":0.0,\"2752\":0.0,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":0.0,\"2759\":0.0,\"2760\":null,\"2761\":0.0,\"2762\":null,\"2763\":0.0,\"2764\":null,\"2765\":0.0,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":0.0,\"2771\":0.0,\"2772\":null,\"2773\":0.0,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":0.0,\"2781\":0.0,\"2782\":null,\"2783\":0.0,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":0.0,\"2790\":null,\"2791\":0.0,\"2792\":null,\"2793\":null,\"2794\":0.0,\"2795\":0.0,\"2796\":0.0,\"2797\":0.0,\"2798\":null,\"2799\":0.0,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":0.0,\"2806\":0.0,\"2807\":0.0,\"2808\":0.0,\"2809\":1.0,\"2810\":0.0,\"2811\":0.0,\"2812\":0.0,\"2813\":0.0,\"2814\":0.0,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":0.0,\"2822\":null,\"2823\":0.0,\"2824\":0.0,\"2825\":0.0,\"2826\":0.0,\"2827\":0.0,\"2828\":null,\"2829\":0.0,\"2830\":0.0,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":0.0,\"2835\":null,\"2836\":0.0,\"2837\":null,\"2838\":0.0,\"2839\":0.0,\"2840\":0.0,\"2841\":0.0,\"2842\":null,\"2843\":1.0,\"2844\":0.0,\"2845\":null,\"2846\":0.0,\"2847\":0.0,\"2848\":0.0,\"2849\":null,\"2850\":0.0,\"2851\":null,\"2852\":null,\"2853\":0.0,\"2854\":0.0,\"2855\":0.0,\"2856\":0.0,\"2857\":0.0,\"2858\":0.0,\"2859\":0.0,\"2860\":0.0,\"2861\":null,\"2862\":0.0,\"2863\":0.0,\"2864\":0.0,\"2865\":null,\"2866\":0.0,\"2867\":0.0,\"2868\":null,\"2869\":0.0,\"2870\":0.0,\"2871\":0.0,\"2872\":null,\"2873\":0.0,\"2874\":0.0,\"2875\":0.0,\"2876\":0.0,\"2877\":0.0,\"2878\":null,\"2879\":0.0,\"2880\":null,\"2881\":null,\"2882\":0.0,\"2883\":0.0,\"2884\":null,\"2885\":1.0,\"2886\":0.0,\"2887\":0.0,\"2888\":0.0,\"2889\":null,\"2890\":0.0,\"2891\":0.0,\"2892\":0.0,\"2893\":0.0,\"2894\":0.0,\"2895\":0.0,\"2896\":0.0,\"2897\":0.0,\"2898\":0.0,\"2899\":0.0,\"2900\":null,\"2901\":0.0,\"2902\":null,\"2903\":0.0,\"2904\":0.0,\"2905\":null,\"2906\":0.0,\"2907\":0.0,\"2908\":0.0,\"2909\":0.0,\"2910\":0.0,\"2911\":0.0,\"2912\":0.0,\"2913\":0.0,\"2914\":0.0,\"2915\":0.0,\"2916\":null,\"2917\":0.0,\"2918\":0.0,\"2919\":0.0,\"2920\":0.0,\"2921\":0.0,\"2922\":0.0,\"2923\":null,\"2924\":0.0,\"2925\":0.0,\"2926\":0.0,\"2927\":0.0,\"2928\":0.0,\"2929\":0.0,\"2930\":0.0,\"2931\":0.0,\"2932\":0.0,\"2933\":0.0,\"2934\":0.0,\"2935\":0.0,\"2936\":0.0,\"2937\":0.0,\"2938\":0.0,\"2939\":0.0,\"2940\":0.0,\"2941\":null,\"2942\":0.0,\"2943\":0.0,\"2944\":0.0,\"2945\":0.0,\"2946\":0.0,\"2947\":0.0,\"2948\":null,\"2949\":0.0,\"2950\":null,\"2951\":null,\"2952\":0.0,\"2953\":0.0,\"2954\":0.0,\"2955\":0.0,\"2956\":0.0,\"2957\":0.0,\"2958\":0.0,\"2959\":0.0,\"2960\":0.0,\"2961\":null,\"2962\":0.0,\"2963\":0.0,\"2964\":null,\"2965\":null,\"2966\":0.0,\"2967\":0.0,\"2968\":0.0,\"2969\":null,\"2970\":0.0,\"2971\":0.0,\"2972\":null,\"2973\":null,\"2974\":0.0,\"2975\":1.0,\"2976\":0.0,\"2977\":0.0,\"2978\":0.0,\"2979\":0.0,\"2980\":0.0,\"2981\":0.0,\"2982\":null,\"2983\":0.0,\"2984\":0.0,\"2985\":0.0,\"2986\":0.0,\"2987\":0.0,\"2988\":0.0,\"2989\":null,\"2990\":null,\"2991\":0.0,\"2992\":null,\"2993\":0.0,\"2994\":0.0,\"2995\":0.0,\"2996\":null,\"2997\":0.0,\"2998\":0.0,\"2999\":null,\"3000\":0.0,\"3001\":0.0,\"3002\":0.0,\"3003\":null,\"3004\":null,\"3005\":0.0,\"3006\":0.0,\"3007\":0.0,\"3008\":0.0,\"3009\":0.0,\"3010\":0.0,\"3011\":0.0,\"3012\":null,\"3013\":0.0,\"3014\":0.0,\"3015\":0.0,\"3016\":0.0,\"3017\":0.0,\"3018\":0.0,\"3019\":null,\"3020\":0.0,\"3021\":null,\"3022\":0.0,\"3023\":null,\"3024\":0.0,\"3025\":null,\"3026\":null,\"3027\":0.0,\"3028\":0.0,\"3029\":0.0,\"3030\":0.0,\"3031\":0.0,\"3032\":0.0,\"3033\":0.0,\"3034\":null,\"3035\":0.0,\"3036\":0.0,\"3037\":0.0,\"3038\":0.0,\"3039\":0.0,\"3040\":0.0,\"3041\":0.0,\"3042\":0.0,\"3043\":0.0,\"3044\":0.0,\"3045\":null,\"3046\":0.0,\"3047\":0.0,\"3048\":null,\"3049\":null,\"3050\":0.0,\"3051\":0.0,\"3052\":0.0,\"3053\":null,\"3054\":null,\"3055\":0.0,\"3056\":null,\"3057\":null,\"3058\":0.0,\"3059\":0.0,\"3060\":0.0,\"3061\":0.0,\"3062\":0.0,\"3063\":0.0,\"3064\":0.0,\"3065\":0.0,\"3066\":null,\"3067\":0.0,\"3068\":0.0,\"3069\":null,\"3070\":0.0,\"3071\":0.0,\"3072\":0.0,\"3073\":null,\"3074\":0.0,\"3075\":0.0,\"3076\":0.0,\"3077\":null,\"3078\":0.0,\"3079\":0.0,\"3080\":0.0,\"3081\":0.0,\"3082\":0.0,\"3083\":null,\"3084\":null,\"3085\":0.0,\"3086\":0.0,\"3087\":0.0,\"3088\":null,\"3089\":null,\"3090\":0.0,\"3091\":0.0,\"3092\":null,\"3093\":0.0,\"3094\":null,\"3095\":0.0,\"3096\":1.0,\"3097\":0.0,\"3098\":0.0,\"3099\":null,\"3100\":0.0,\"3101\":null,\"3102\":0.0,\"3103\":0.0,\"3104\":0.0,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":0.0,\"3111\":0.0,\"3112\":0.0,\"3113\":0.0,\"3114\":0.0,\"3115\":null,\"3116\":0.0,\"3117\":0.0,\"3118\":0.0,\"3119\":null,\"3120\":null,\"3121\":0.0,\"3122\":null,\"3123\":0.0,\"3124\":0.0,\"3125\":0.0,\"3126\":0.0,\"3127\":0.0,\"3128\":null,\"3129\":0.0,\"3130\":0.0,\"3131\":null,\"3132\":0.0,\"3133\":null,\"3134\":0.0,\"3135\":0.0,\"3136\":0.0,\"3137\":0.0,\"3138\":0.0,\"3139\":null,\"3140\":0.0,\"3141\":0.0,\"3142\":0.0,\"3143\":0.0,\"3144\":0.0,\"3145\":0.0,\"3146\":0.0,\"3147\":0.0,\"3148\":0.0,\"3149\":0.0,\"3150\":0.0,\"3151\":0.0,\"3152\":null,\"3153\":0.0,\"3154\":0.0,\"3155\":0.0,\"3156\":0.0,\"3157\":0.0,\"3158\":0.0,\"3159\":0.0,\"3160\":null,\"3161\":0.0,\"3162\":0.0,\"3163\":null,\"3164\":0.0,\"3165\":0.0,\"3166\":null,\"3167\":0.0,\"3168\":0.0,\"3169\":0.0,\"3170\":0.0,\"3171\":0.0,\"3172\":0.0,\"3173\":0.0,\"3174\":0.0,\"3175\":0.0,\"3176\":0.0,\"3177\":0.0,\"3178\":0.0,\"3179\":0.0,\"3180\":null,\"3181\":0.0,\"3182\":0.0,\"3183\":0.0,\"3184\":null,\"3185\":0.0,\"3186\":0.0,\"3187\":0.0,\"3188\":null,\"3189\":0.0,\"3190\":0.0,\"3191\":0.0,\"3192\":null,\"3193\":0.0,\"3194\":0.0,\"3195\":0.0,\"3196\":0.0,\"3197\":0.0,\"3198\":0.0,\"3199\":null,\"3200\":null,\"3201\":0.0,\"3202\":null,\"3203\":0.0,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":0.0,\"3208\":0.0,\"3209\":0.0,\"3210\":null,\"3211\":0.0,\"3212\":0.0,\"3213\":0.0,\"3214\":null,\"3215\":null,\"3216\":0.0,\"3217\":0.0,\"3218\":0.0,\"3219\":0.0,\"3220\":0.0,\"3221\":0.0,\"3222\":0.0,\"3223\":0.0,\"3224\":0.0,\"3225\":0.0,\"3226\":0.0,\"3227\":0.0,\"3228\":0.0,\"3229\":0.0,\"3230\":0.0,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":0.0,\"3235\":0.0,\"3236\":null,\"3237\":0.0,\"3238\":0.0,\"3239\":0.0,\"3240\":0.0,\"3241\":0.0,\"3242\":0.0,\"3243\":null,\"3244\":null,\"3245\":0.0,\"3246\":null,\"3247\":null,\"3248\":0.0,\"3249\":0.0,\"3250\":null,\"3251\":null,\"3252\":0.0,\"3253\":0.0,\"3254\":0.0,\"3255\":null,\"3256\":0.0,\"3257\":0.0,\"3258\":0.0,\"3259\":0.0,\"3260\":0.0,\"3261\":0.0,\"3262\":0.0,\"3263\":null,\"3264\":0.0,\"3265\":0.0,\"3266\":0.0,\"3267\":0.0,\"3268\":0.0,\"3269\":0.0,\"3270\":0.0,\"3271\":0.0,\"3272\":0.0,\"3273\":0.0,\"3274\":0.0,\"3275\":0.0,\"3276\":0.0,\"3277\":0.0,\"3278\":0.0,\"3279\":0.0,\"3280\":0.0,\"3281\":0.0,\"3282\":1.0,\"3283\":0.0,\"3284\":0.0,\"3285\":0.0,\"3286\":0.0,\"3287\":null,\"3288\":0.0,\"3289\":null,\"3290\":0.0,\"3291\":0.0,\"3292\":0.0,\"3293\":0.0,\"3294\":0.0,\"3295\":0.0,\"3296\":0.0,\"3297\":0.0,\"3298\":0.0,\"3299\":0.0,\"3300\":0.0,\"3301\":0.0,\"3302\":0.0,\"3303\":0.0,\"3304\":0.0,\"3305\":0.0,\"3306\":0.0,\"3307\":null,\"3308\":0.0,\"3309\":null,\"3310\":null,\"3311\":1.0,\"3312\":0.0,\"3313\":0.0,\"3314\":null,\"3315\":0.0,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":0.0,\"3320\":0.0,\"3321\":0.0,\"3322\":0.0,\"3323\":0.0,\"3324\":0.0,\"3325\":0.0,\"3326\":0.0,\"3327\":0.0,\"3328\":0.0,\"3329\":0.0,\"3330\":0.0,\"3331\":0.0,\"3332\":0.0,\"3333\":0.0,\"3334\":0.0,\"3335\":0.0,\"3336\":0.0,\"3337\":0.0,\"3338\":0.0,\"3339\":0.0,\"3340\":0.0,\"3341\":0.0,\"3342\":null,\"3343\":0.0,\"3344\":null,\"3345\":0.0,\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":0.0,\"3350\":0.0,\"3351\":0.0,\"3352\":0.0,\"3353\":0.0,\"3354\":0.0,\"3355\":0.0,\"3356\":null,\"3357\":0.0,\"3358\":0.0,\"3359\":0.0,\"3360\":0.0,\"3361\":null,\"3362\":null,\"3363\":0.0,\"3364\":0.0,\"3365\":0.0,\"3366\":0.0,\"3367\":0.0,\"3368\":0.0,\"3369\":0.0,\"3370\":0.0,\"3371\":0.0,\"3372\":0.0,\"3373\":0.0,\"3374\":0.0,\"3375\":0.0,\"3376\":null,\"3377\":0.0,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":0.0,\"3383\":0.0,\"3384\":0.0,\"3385\":0.0,\"3386\":0.0,\"3387\":0.0,\"3388\":null,\"3389\":null,\"3390\":0.0,\"3391\":0.0,\"3392\":0.0,\"3393\":0.0,\"3394\":0.0,\"3395\":0.0,\"3396\":null,\"3397\":null,\"3398\":1.0,\"3399\":0.0,\"3400\":null,\"3401\":0.0,\"3402\":0.0,\"3403\":0.0,\"3404\":0.0,\"3405\":0.0,\"3406\":0.0,\"3407\":null,\"3408\":0.0,\"3409\":0.0,\"3410\":0.0,\"3411\":0.0,\"3412\":0.0,\"3413\":null,\"3414\":0.0,\"3415\":null,\"3416\":0.0,\"3417\":null,\"3418\":0.0,\"3419\":0.0,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":0.0,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":0.0,\"3429\":0.0,\"3430\":0.0,\"3431\":null,\"3432\":null,\"3433\":0.0,\"3434\":null,\"3435\":0.0,\"3436\":0.0,\"3437\":0.0,\"3438\":null,\"3439\":0.0,\"3440\":null,\"3441\":0.0,\"3442\":null,\"3443\":null,\"3444\":0.0,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":0.0,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":0.0,\"3456\":null,\"3457\":0.0,\"3458\":null,\"3459\":0.0,\"3460\":0.0,\"3461\":null,\"3462\":0.0,\"3463\":0.0,\"3464\":0.0,\"3465\":0.0,\"3466\":0.0,\"3467\":null,\"3468\":0.0,\"3469\":0.0,\"3470\":null,\"3471\":0.0,\"3472\":0.0,\"3473\":0.0,\"3474\":0.0,\"3475\":null,\"3476\":0.0,\"3477\":0.0,\"3478\":0.0,\"3479\":0.0,\"3480\":0.0,\"3481\":0.0,\"3482\":0.0,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":0.0,\"3487\":null,\"3488\":0.0,\"3489\":null,\"3490\":0.0,\"3491\":0.0,\"3492\":null,\"3493\":0.0,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":0.0,\"3499\":null,\"3500\":0.0,\"3501\":0.0,\"3502\":null,\"3503\":0.0,\"3504\":null,\"3505\":0.0,\"3506\":null,\"3507\":0.0,\"3508\":0.0,\"3509\":1.0,\"3510\":0.0,\"3511\":null,\"3512\":0.0,\"3513\":null,\"3514\":0.0,\"3515\":0.0,\"3516\":null,\"3517\":0.0,\"3518\":0.0,\"3519\":0.0,\"3520\":null,\"3521\":0.0,\"3522\":null,\"3523\":0.0,\"3524\":0.0,\"3525\":0.0,\"3526\":0.0,\"3527\":0.0,\"3528\":0.0,\"3529\":0.0,\"3530\":0.0,\"3531\":0.0,\"3532\":null,\"3533\":0.0,\"3534\":null,\"3535\":0.0,\"3536\":0.0,\"3537\":0.0,\"3538\":0.0,\"3539\":0.0,\"3540\":0.0,\"3541\":0.0,\"3542\":0.0,\"3543\":0.0,\"3544\":0.0,\"3545\":0.0,\"3546\":0.0,\"3547\":0.0,\"3548\":0.0,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":0.0,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":0.0,\"3557\":0.0,\"3558\":0.0,\"3559\":0.0,\"3560\":0.0,\"3561\":0.0,\"3562\":0.0,\"3563\":0.0,\"3564\":0.0,\"3565\":0.0,\"3566\":0.0,\"3567\":0.0,\"3568\":0.0,\"3569\":0.0,\"3570\":null,\"3571\":0.0,\"3572\":0.0,\"3573\":null,\"3574\":0.0,\"3575\":0.0,\"3576\":0.0,\"3577\":0.0,\"3578\":0.0,\"3579\":0.0,\"3580\":0.0,\"3581\":0.0,\"3582\":null,\"3583\":0.0,\"3584\":0.0,\"3585\":0.0,\"3586\":null,\"3587\":0.0,\"3588\":1.0,\"3589\":0.0,\"3590\":null,\"3591\":0.0,\"3592\":null,\"3593\":0.0,\"3594\":0.0,\"3595\":0.0,\"3596\":0.0,\"3597\":null,\"3598\":0.0,\"3599\":0.0,\"3600\":null,\"3601\":0.0,\"3602\":0.0,\"3603\":0.0,\"3604\":0.0,\"3605\":0.0,\"3606\":null,\"3607\":0.0,\"3608\":null,\"3609\":0.0,\"3610\":0.0,\"3611\":0.0,\"3612\":0.0,\"3613\":0.0,\"3614\":0.0,\"3615\":null,\"3616\":0.0,\"3617\":0.0,\"3618\":0.0,\"3619\":0.0,\"3620\":0.0,\"3621\":0.0,\"3622\":0.0,\"3623\":0.0,\"3624\":null,\"3625\":0.0,\"3626\":0.0,\"3627\":0.0,\"3628\":0.0,\"3629\":null,\"3630\":0.0,\"3631\":null,\"3632\":0.0,\"3633\":0.0,\"3634\":0.0,\"3635\":0.0,\"3636\":0.0,\"3637\":0.0,\"3638\":0.0,\"3639\":0.0,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":0.0,\"3645\":0.0,\"3646\":null,\"3647\":0.0,\"3648\":0.0,\"3649\":0.0,\"3650\":0.0,\"3651\":0.0,\"3652\":0.0,\"3653\":0.0,\"3654\":0.0,\"3655\":0.0,\"3656\":0.0,\"3657\":null,\"3658\":0.0,\"3659\":0.0,\"3660\":0.0,\"3661\":0.0,\"3662\":0.0,\"3663\":0.0,\"3664\":0.0,\"3665\":null,\"3666\":0.0,\"3667\":null,\"3668\":0.0,\"3669\":0.0,\"3670\":0.0,\"3671\":0.0,\"3672\":0.0,\"3673\":0.0,\"3674\":null,\"3675\":0.0,\"3676\":null,\"3677\":0.0,\"3678\":0.0,\"3679\":0.0,\"3680\":0.0,\"3681\":null,\"3682\":0.0,\"3683\":0.0,\"3684\":1.0,\"3685\":0.0,\"3686\":1.0,\"3687\":0.0,\"3688\":0.0,\"3689\":0.0,\"3690\":1.0,\"3691\":0.0,\"3692\":0.0,\"3693\":0.0,\"3694\":0.0,\"3695\":0.0,\"3696\":0.0,\"3697\":0.0,\"3698\":0.0,\"3699\":null,\"3700\":0.0,\"3701\":0.0,\"3702\":0.0,\"3703\":0.0,\"3704\":0.0,\"3705\":0.0,\"3706\":0.0,\"3707\":0.0,\"3708\":0.0,\"3709\":0.0,\"3710\":0.0,\"3711\":0.0,\"3712\":null,\"3713\":null,\"3714\":0.0,\"3715\":0.0,\"3716\":null,\"3717\":0.0,\"3718\":0.0,\"3719\":null,\"3720\":0.0,\"3721\":null,\"3722\":null,\"3723\":0.0,\"3724\":null,\"3725\":1.0,\"3726\":0.0,\"3727\":0.0,\"3728\":0.0,\"3729\":0.0,\"3730\":0.0,\"3731\":null,\"3732\":0.0,\"3733\":0.0,\"3734\":0.0,\"3735\":null,\"3736\":0.0,\"3737\":0.0,\"3738\":0.0,\"3739\":0.0,\"3740\":0.0,\"3741\":0.0,\"3742\":0.0,\"3743\":0.0,\"3744\":0.0,\"3745\":null,\"3746\":0.0,\"3747\":0.0,\"3748\":null,\"3749\":0.0,\"3750\":0.0,\"3751\":0.0,\"3752\":0.0,\"3753\":null,\"3754\":0.0,\"3755\":0.0,\"3756\":null,\"3757\":0.0,\"3758\":0.0,\"3759\":0.0,\"3760\":0.0,\"3761\":0.0,\"3762\":0.0,\"3763\":0.0,\"3764\":0.0,\"3765\":0.0,\"3766\":0.0,\"3767\":0.0,\"3768\":0.0,\"3769\":0.0,\"3770\":0.0,\"3771\":0.0,\"3772\":null,\"3773\":null,\"3774\":0.0,\"3775\":0.0,\"3776\":1.0,\"3777\":0.0,\"3778\":null,\"3779\":1.0,\"3780\":0.0,\"3781\":null,\"3782\":null,\"3783\":0.0,\"3784\":0.0,\"3785\":0.0,\"3786\":0.0,\"3787\":0.0,\"3788\":null,\"3789\":0.0,\"3790\":0.0,\"3791\":0.0,\"3792\":0.0,\"3793\":0.0,\"3794\":0.0,\"3795\":null,\"3796\":0.0,\"3797\":null,\"3798\":null,\"3799\":0.0,\"3800\":0.0,\"3801\":null,\"3802\":null,\"3803\":0.0,\"3804\":null,\"3805\":0.0,\"3806\":null,\"3807\":null,\"3808\":0.0,\"3809\":0.0,\"3810\":0.0,\"3811\":0.0,\"3812\":0.0,\"3813\":0.0,\"3814\":0.0,\"3815\":0.0,\"3816\":0.0,\"3817\":null,\"3818\":null,\"3819\":0.0,\"3820\":0.0,\"3821\":0.0,\"3822\":0.0,\"3823\":0.0,\"3824\":null,\"3825\":0.0,\"3826\":0.0,\"3827\":0.0,\"3828\":0.0,\"3829\":0.0,\"3830\":0.0,\"3831\":0.0,\"3832\":0.0,\"3833\":0.0,\"3834\":0.0,\"3835\":0.0,\"3836\":0.0,\"3837\":0.0,\"3838\":0.0,\"3839\":0.0,\"3840\":0.0,\"3841\":0.0,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":0.0,\"3846\":0.0,\"3847\":0.0,\"3848\":0.0,\"3849\":null,\"3850\":null,\"3851\":0.0,\"3852\":null,\"3853\":0.0,\"3854\":0.0,\"3855\":0.0,\"3856\":0.0,\"3857\":0.0,\"3858\":0.0,\"3859\":0.0,\"3860\":0.0,\"3861\":0.0,\"3862\":null,\"3863\":null,\"3864\":0.0,\"3865\":null,\"3866\":0.0,\"3867\":0.0,\"3868\":0.0,\"3869\":0.0,\"3870\":0.0,\"3871\":0.0,\"3872\":null,\"3873\":0.0,\"3874\":null,\"3875\":null,\"3876\":0.0,\"3877\":0.0,\"3878\":null,\"3879\":0.0,\"3880\":0.0,\"3881\":0.0,\"3882\":0.0,\"3883\":0.0,\"3884\":null,\"3885\":0.0,\"3886\":null,\"3887\":0.0,\"3888\":null,\"3889\":null,\"3890\":0.0,\"3891\":0.0,\"3892\":0.0,\"3893\":0.0,\"3894\":0.0,\"3895\":0.0,\"3896\":0.0,\"3897\":0.0,\"3898\":0.0,\"3899\":null,\"3900\":null,\"3901\":0.0,\"3902\":null,\"3903\":0.0,\"3904\":0.0,\"3905\":null,\"3906\":0.0,\"3907\":0.0,\"3908\":0.0,\"3909\":null,\"3910\":0.0,\"3911\":0.0,\"3912\":0.0,\"3913\":0.0,\"3914\":0.0,\"3915\":null,\"3916\":null,\"3917\":0.0,\"3918\":0.0,\"3919\":0.0,\"3920\":0.0,\"3921\":0.0,\"3922\":0.0,\"3923\":0.0,\"3924\":null,\"3925\":0.0,\"3926\":0.0,\"3927\":0.0,\"3928\":null,\"3929\":null,\"3930\":0.0,\"3931\":0.0,\"3932\":0.0,\"3933\":0.0,\"3934\":0.0,\"3935\":0.0,\"3936\":0.0,\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":0.0,\"3941\":1.0,\"3942\":null,\"3943\":0.0,\"3944\":null,\"3945\":0.0,\"3946\":0.0,\"3947\":0.0,\"3948\":0.0,\"3949\":0.0,\"3950\":0.0,\"3951\":1.0,\"3952\":0.0,\"3953\":null,\"3954\":0.0,\"3955\":0.0,\"3956\":null,\"3957\":0.0,\"3958\":0.0,\"3959\":0.0,\"3960\":0.0,\"3961\":0.0,\"3962\":null,\"3963\":0.0,\"3964\":null,\"3965\":1.0,\"3966\":0.0,\"3967\":0.0,\"3968\":0.0,\"3969\":0.0,\"3970\":0.0,\"3971\":0.0,\"3972\":null,\"3973\":null,\"3974\":0.0,\"3975\":0.0,\"3976\":0.0,\"3977\":0.0,\"3978\":0.0,\"3979\":0.0,\"3980\":0.0,\"3981\":0.0,\"3982\":0.0,\"3983\":null,\"3984\":null,\"3985\":0.0,\"3986\":null,\"3987\":null,\"3988\":0.0,\"3989\":null,\"3990\":0.0,\"3991\":0.0,\"3992\":0.0,\"3993\":0.0,\"3994\":0.0,\"3995\":0.0,\"3996\":0.0,\"3997\":null,\"3998\":0.0,\"3999\":0.0,\"4000\":0.0,\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":0.0,\"4006\":0.0,\"4007\":0.0,\"4008\":null,\"4009\":null,\"4010\":0.0,\"4011\":0.0,\"4012\":0.0,\"4013\":0.0,\"4014\":null,\"4015\":0.0,\"4016\":null,\"4017\":0.0,\"4018\":null,\"4019\":0.0,\"4020\":0.0,\"4021\":0.0,\"4022\":0.0,\"4023\":0.0,\"4024\":0.0,\"4025\":null,\"4026\":null,\"4027\":0.0,\"4028\":0.0,\"4029\":0.0,\"4030\":null,\"4031\":0.0,\"4032\":0.0,\"4033\":0.0,\"4034\":0.0,\"4035\":0.0,\"4036\":0.0,\"4037\":0.0,\"4038\":0.0,\"4039\":0.0,\"4040\":0.0,\"4041\":0.0,\"4042\":0.0,\"4043\":null,\"4044\":0.0,\"4045\":null,\"4046\":0.0,\"4047\":0.0,\"4048\":null,\"4049\":0.0,\"4050\":0.0,\"4051\":0.0,\"4052\":0.0,\"4053\":0.0,\"4054\":0.0,\"4055\":0.0,\"4056\":null,\"4057\":0.0,\"4058\":0.0,\"4059\":0.0,\"4060\":0.0,\"4061\":0.0,\"4062\":0.0,\"4063\":0.0,\"4064\":0.0,\"4065\":null,\"4066\":0.0,\"4067\":0.0,\"4068\":0.0,\"4069\":0.0,\"4070\":0.0,\"4071\":null,\"4072\":0.0,\"4073\":0.0,\"4074\":0.0,\"4075\":0.0,\"4076\":0.0,\"4077\":0.0,\"4078\":0.0,\"4079\":0.0,\"4080\":0.0,\"4081\":0.0,\"4082\":null,\"4083\":null,\"4084\":0.0,\"4085\":0.0,\"4086\":0.0,\"4087\":0.0,\"4088\":0.0,\"4089\":null,\"4090\":0.0,\"4091\":0.0,\"4092\":0.0,\"4093\":0.0,\"4094\":0.0,\"4095\":null,\"4096\":0.0,\"4097\":0.0,\"4098\":0.0,\"4099\":null,\"4100\":null,\"4101\":0.0,\"4102\":0.0,\"4103\":null,\"4104\":0.0,\"4105\":0.0,\"4106\":null,\"4107\":0.0,\"4108\":0.0,\"4109\":0.0,\"4110\":0.0,\"4111\":null,\"4112\":null,\"4113\":0.0,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":0.0,\"4120\":0.0,\"4121\":0.0,\"4122\":0.0,\"4123\":0.0,\"4124\":0.0,\"4125\":0.0,\"4126\":0.0,\"4127\":null,\"4128\":0.0,\"4129\":0.0,\"4130\":0.0,\"4131\":0.0,\"4132\":null,\"4133\":null,\"4134\":0.0,\"4135\":0.0,\"4136\":0.0,\"4137\":0.0,\"4138\":null,\"4139\":0.0,\"4140\":0.0,\"4141\":0.0,\"4142\":null,\"4143\":0.0,\"4144\":null,\"4145\":null,\"4146\":0.0,\"4147\":0.0,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":0.0,\"4152\":0.0,\"4153\":0.0,\"4154\":0.0,\"4155\":0.0,\"4156\":0.0,\"4157\":0.0,\"4158\":0.0,\"4159\":0.0,\"4160\":0.0,\"4161\":0.0,\"4162\":null,\"4163\":0.0,\"4164\":0.0,\"4165\":0.0,\"4166\":0.0,\"4167\":null,\"4168\":0.0,\"4169\":null,\"4170\":null,\"4171\":0.0,\"4172\":0.0,\"4173\":0.0,\"4174\":0.0,\"4175\":0.0,\"4176\":0.0,\"4177\":0.0,\"4178\":0.0,\"4179\":0.0,\"4180\":null,\"4181\":0.0,\"4182\":0.0,\"4183\":null,\"4184\":0.0,\"4185\":0.0,\"4186\":0.0,\"4187\":0.0,\"4188\":0.0,\"4189\":0.0,\"4190\":0.0,\"4191\":0.0,\"4192\":0.0,\"4193\":null,\"4194\":0.0,\"4195\":0.0,\"4196\":null,\"4197\":0.0,\"4198\":0.0,\"4199\":0.0,\"4200\":0.0,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":0.0,\"4207\":0.0,\"4208\":null,\"4209\":0.0,\"4210\":0.0,\"4211\":0.0,\"4212\":0.0,\"4213\":null,\"4214\":null,\"4215\":0.0,\"4216\":0.0,\"4217\":0.0,\"4218\":null,\"4219\":0.0,\"4220\":null,\"4221\":0.0,\"4222\":0.0,\"4223\":0.0,\"4224\":0.0,\"4225\":0.0,\"4226\":null,\"4227\":0.0,\"4228\":0.0,\"4229\":0.0,\"4230\":null,\"4231\":0.0,\"4232\":null,\"4233\":0.0,\"4234\":0.0,\"4235\":0.0,\"4236\":0.0,\"4237\":null,\"4238\":null,\"4239\":1.0,\"4240\":0.0,\"4241\":0.0,\"4242\":null,\"4243\":null,\"4244\":0.0,\"4245\":0.0,\"4246\":0.0,\"4247\":null,\"4248\":1.0,\"4249\":0.0,\"4250\":0.0,\"4251\":0.0,\"4252\":0.0,\"4253\":0.0,\"4254\":null,\"4255\":0.0,\"4256\":null,\"4257\":null,\"4258\":0.0,\"4259\":0.0,\"4260\":0.0,\"4261\":0.0,\"4262\":0.0,\"4263\":null,\"4264\":0.0,\"4265\":0.0,\"4266\":0.0,\"4267\":0.0,\"4268\":null,\"4269\":null,\"4270\":0.0,\"4271\":0.0,\"4272\":0.0,\"4273\":0.0,\"4274\":0.0,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":0.0,\"4281\":0.0,\"4282\":0.0,\"4283\":null,\"4284\":0.0,\"4285\":0.0,\"4286\":0.0,\"4287\":0.0,\"4288\":0.0,\"4289\":0.0,\"4290\":0.0,\"4291\":0.0,\"4292\":1.0,\"4293\":0.0,\"4294\":0.0,\"4295\":0.0,\"4296\":0.0,\"4297\":null,\"4298\":0.0,\"4299\":0.0,\"4300\":0.0,\"4301\":0.0,\"4302\":0.0,\"4303\":0.0,\"4304\":null,\"4305\":null,\"4306\":0.0,\"4307\":0.0,\"4308\":null,\"4309\":0.0,\"4310\":null,\"4311\":0.0,\"4312\":0.0,\"4313\":0.0,\"4314\":0.0,\"4315\":0.0,\"4316\":0.0,\"4317\":0.0,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":0.0,\"4323\":null,\"4324\":0.0,\"4325\":0.0,\"4326\":0.0,\"4327\":0.0,\"4328\":0.0,\"4329\":0.0,\"4330\":0.0,\"4331\":0.0,\"4332\":0.0,\"4333\":null,\"4334\":0.0,\"4335\":0.0,\"4336\":0.0,\"4337\":0.0,\"4338\":0.0,\"4339\":0.0,\"4340\":0.0,\"4341\":0.0,\"4342\":null,\"4343\":0.0,\"4344\":0.0,\"4345\":0.0,\"4346\":0.0,\"4347\":0.0,\"4348\":null,\"4349\":0.0,\"4350\":0.0,\"4351\":0.0,\"4352\":0.0,\"4353\":0.0,\"4354\":0.0,\"4355\":null,\"4356\":0.0,\"4357\":0.0,\"4358\":0.0,\"4359\":0.0,\"4360\":0.0,\"4361\":0.0,\"4362\":0.0,\"4363\":0.0,\"4364\":0.0,\"4365\":0.0,\"4366\":0.0,\"4367\":0.0,\"4368\":0.0,\"4369\":0.0,\"4370\":0.0,\"4371\":0.0,\"4372\":0.0,\"4373\":0.0,\"4374\":0.0,\"4375\":0.0,\"4376\":null,\"4377\":0.0,\"4378\":null,\"4379\":0.0,\"4380\":0.0,\"4381\":null,\"4382\":0.0,\"4383\":0.0,\"4384\":0.0,\"4385\":null,\"4386\":0.0,\"4387\":0.0,\"4388\":0.0,\"4389\":0.0,\"4390\":0.0,\"4391\":0.0,\"4392\":0.0,\"4393\":0.0,\"4394\":0.0,\"4395\":0.0,\"4396\":0.0,\"4397\":0.0,\"4398\":0.0,\"4399\":0.0,\"4400\":0.0,\"4401\":null,\"4402\":0.0,\"4403\":0.0,\"4404\":null,\"4405\":0.0,\"4406\":0.0,\"4407\":0.0,\"4408\":0.0,\"4409\":0.0,\"4410\":null,\"4411\":0.0,\"4412\":0.0,\"4413\":0.0,\"4414\":null,\"4415\":null,\"4416\":0.0,\"4417\":0.0,\"4418\":0.0,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":0.0,\"4423\":0.0,\"4424\":0.0,\"4425\":0.0,\"4426\":null,\"4427\":0.0,\"4428\":0.0,\"4429\":0.0,\"4430\":null,\"4431\":null,\"4432\":0.0,\"4433\":0.0,\"4434\":null,\"4435\":0.0,\"4436\":null,\"4437\":0.0,\"4438\":0.0,\"4439\":0.0,\"4440\":0.0,\"4441\":0.0,\"4442\":0.0,\"4443\":0.0,\"4444\":0.0,\"4445\":0.0,\"4446\":0.0,\"4447\":0.0,\"4448\":0.0,\"4449\":0.0,\"4450\":0.0,\"4451\":0.0,\"4452\":0.0,\"4453\":null,\"4454\":0.0,\"4455\":0.0,\"4456\":null,\"4457\":0.0,\"4458\":0.0,\"4459\":0.0,\"4460\":0.0,\"4461\":0.0,\"4462\":0.0,\"4463\":0.0,\"4464\":0.0,\"4465\":0.0,\"4466\":0.0,\"4467\":0.0,\"4468\":0.0,\"4469\":0.0,\"4470\":0.0,\"4471\":1.0,\"4472\":0.0,\"4473\":0.0,\"4474\":0.0,\"4475\":0.0,\"4476\":0.0,\"4477\":0.0,\"4478\":0.0,\"4479\":0.0,\"4480\":0.0,\"4481\":0.0,\"4482\":0.0,\"4483\":null,\"4484\":0.0,\"4485\":0.0,\"4486\":0.0,\"4487\":0.0,\"4488\":0.0,\"4489\":null,\"4490\":0.0,\"4491\":0.0,\"4492\":0.0,\"4493\":0.0,\"4494\":0.0,\"4495\":0.0,\"4496\":0.0,\"4497\":null,\"4498\":0.0,\"4499\":0.0,\"4500\":0.0,\"4501\":0.0,\"4502\":0.0,\"4503\":0.0,\"4504\":0.0,\"4505\":0.0,\"4506\":0.0,\"4507\":0.0,\"4508\":0.0,\"4509\":0.0,\"4510\":0.0,\"4511\":0.0,\"4512\":0.0,\"4513\":0.0,\"4514\":0.0,\"4515\":null,\"4516\":0.0,\"4517\":0.0,\"4518\":null,\"4519\":null,\"4520\":0.0,\"4521\":null,\"4522\":0.0,\"4523\":0.0,\"4524\":0.0,\"4525\":0.0,\"4526\":1.0,\"4527\":0.0,\"4528\":null,\"4529\":0.0,\"4530\":0.0,\"4531\":null,\"4532\":0.0,\"4533\":null,\"4534\":0.0,\"4535\":null,\"4536\":0.0,\"4537\":0.0,\"4538\":1.0,\"4539\":1.0,\"4540\":1.0,\"4541\":1.0,\"4542\":1.0,\"4543\":1.0,\"4544\":1.0,\"4545\":1.0,\"4546\":null,\"4547\":0.0,\"4548\":0.0,\"4549\":0.0,\"4550\":0.0,\"4551\":null,\"4552\":null,\"4553\":0.0,\"4554\":0.0,\"4555\":0.0,\"4556\":0.0,\"4557\":0.0,\"4558\":0.0,\"4559\":null,\"4560\":0.0,\"4561\":0.0,\"4562\":null,\"4563\":0.0,\"4564\":0.0,\"4565\":0.0,\"4566\":0.0,\"4567\":0.0,\"4568\":0.0,\"4569\":0.0,\"4570\":0.0,\"4571\":0.0,\"4572\":0.0,\"4573\":0.0,\"4574\":0.0,\"4575\":0.0,\"4576\":0.0,\"4577\":0.0,\"4578\":0.0,\"4579\":0.0,\"4580\":0.0,\"4581\":0.0,\"4582\":null,\"4583\":0.0,\"4584\":0.0,\"4585\":0.0,\"4586\":0.0,\"4587\":0.0,\"4588\":null,\"4589\":0.0,\"4590\":0.0,\"4591\":null,\"4592\":0.0,\"4593\":0.0,\"4594\":null,\"4595\":0.0,\"4596\":0.0,\"4597\":null,\"4598\":0.0,\"4599\":null,\"4600\":0.0,\"4601\":0.0,\"4602\":0.0,\"4603\":0.0,\"4604\":0.0,\"4605\":0.0,\"4606\":0.0,\"4607\":0.0,\"4608\":null,\"4609\":0.0,\"4610\":0.0,\"4611\":0.0,\"4612\":null,\"4613\":0.0,\"4614\":0.0,\"4615\":0.0,\"4616\":null,\"4617\":null,\"4618\":0.0,\"4619\":0.0,\"4620\":0.0,\"4621\":0.0,\"4622\":null,\"4623\":0.0,\"4624\":0.0,\"4625\":0.0,\"4626\":0.0,\"4627\":null,\"4628\":null,\"4629\":0.0,\"4630\":null,\"4631\":0.0,\"4632\":0.0,\"4633\":0.0,\"4634\":0.0,\"4635\":0.0,\"4636\":0.0,\"4637\":0.0,\"4638\":0.0,\"4639\":0.0,\"4640\":0.0,\"4641\":0.0,\"4642\":0.0,\"4643\":0.0,\"4644\":0.0,\"4645\":null,\"4646\":null,\"4647\":0.0,\"4648\":0.0,\"4649\":0.0,\"4650\":0.0,\"4651\":0.0,\"4652\":0.0,\"4653\":0.0,\"4654\":0.0,\"4655\":null,\"4656\":0.0,\"4657\":0.0,\"4658\":0.0,\"4659\":0.0,\"4660\":0.0,\"4661\":0.0,\"4662\":0.0,\"4663\":0.0,\"4664\":0.0,\"4665\":0.0,\"4666\":0.0,\"4667\":0.0,\"4668\":0.0,\"4669\":0.0,\"4670\":0.0,\"4671\":0.0,\"4672\":0.0,\"4673\":0.0,\"4674\":null,\"4675\":0.0,\"4676\":null,\"4677\":0.0,\"4678\":0.0,\"4679\":0.0,\"4680\":0.0,\"4681\":0.0,\"4682\":null,\"4683\":0.0,\"4684\":0.0,\"4685\":0.0,\"4686\":0.0,\"4687\":0.0,\"4688\":0.0,\"4689\":null,\"4690\":0.0,\"4691\":null,\"4692\":0.0,\"4693\":0.0,\"4694\":null,\"4695\":0.0,\"4696\":0.0,\"4697\":0.0,\"4698\":0.0,\"4699\":0.0,\"4700\":0.0,\"4701\":0.0,\"4702\":null,\"4703\":0.0,\"4704\":0.0,\"4705\":0.0,\"4706\":0.0,\"4707\":0.0,\"4708\":0.0,\"4709\":0.0,\"4710\":0.0,\"4711\":0.0,\"4712\":null,\"4713\":0.0,\"4714\":0.0,\"4715\":0.0,\"4716\":null,\"4717\":0.0,\"4718\":null,\"4719\":0.0,\"4720\":1.0,\"4721\":0.0,\"4722\":null,\"4723\":0.0,\"4724\":0.0,\"4725\":0.0,\"4726\":0.0,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":0.0,\"4732\":null,\"4733\":0.0,\"4734\":0.0,\"4735\":0.0,\"4736\":0.0,\"4737\":0.0,\"4738\":0.0,\"4739\":0.0,\"4740\":0.0,\"4741\":0.0,\"4742\":0.0,\"4743\":null,\"4744\":0.0,\"4745\":0.0,\"4746\":0.0,\"4747\":1.0,\"4748\":1.0,\"4749\":0.0,\"4750\":0.0,\"4751\":0.0,\"4752\":0.0,\"4753\":0.0,\"4754\":0.0,\"4755\":null,\"4756\":0.0,\"4757\":0.0,\"4758\":0.0,\"4759\":0.0,\"4760\":0.0,\"4761\":0.0,\"4762\":0.0,\"4763\":0.0,\"4764\":0.0,\"4765\":0.0,\"4766\":0.0,\"4767\":0.0,\"4768\":null,\"4769\":0.0,\"4770\":0.0,\"4771\":0.0,\"4772\":0.0,\"4773\":0.0,\"4774\":0.0,\"4775\":0.0,\"4776\":0.0,\"4777\":0.0,\"4778\":0.0,\"4779\":null,\"4780\":0.0,\"4781\":0.0,\"4782\":0.0,\"4783\":0.0,\"4784\":0.0,\"4785\":0.0,\"4786\":0.0,\"4787\":0.0,\"4788\":0.0,\"4789\":0.0,\"4790\":null,\"4791\":0.0,\"4792\":0.0,\"4793\":0.0,\"4794\":null,\"4795\":null,\"4796\":0.0,\"4797\":1.0,\"4798\":0.0,\"4799\":0.0,\"4800\":null,\"4801\":0.0,\"4802\":0.0,\"4803\":0.0,\"4804\":0.0,\"4805\":0.0,\"4806\":0.0,\"4807\":null,\"4808\":0.0,\"4809\":0.0,\"4810\":0.0,\"4811\":null,\"4812\":0.0,\"4813\":0.0,\"4814\":0.0,\"4815\":0.0,\"4816\":null,\"4817\":null,\"4818\":0.0,\"4819\":0.0,\"4820\":0.0,\"4821\":null,\"4822\":0.0,\"4823\":0.0,\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":0.0,\"4829\":0.0,\"4830\":0.0,\"4831\":0.0,\"4832\":null,\"4833\":0.0,\"4834\":0.0,\"4835\":0.0,\"4836\":0.0,\"4837\":null,\"4838\":0.0,\"4839\":0.0,\"4840\":0.0,\"4841\":0.0,\"4842\":0.0,\"4843\":0.0,\"4844\":0.0,\"4845\":0.0,\"4846\":0.0,\"4847\":1.0,\"4848\":0.0,\"4849\":0.0,\"4850\":0.0,\"4851\":null,\"4852\":0.0,\"4853\":0.0,\"4854\":0.0,\"4855\":0.0,\"4856\":0.0,\"4857\":0.0,\"4858\":0.0,\"4859\":0.0,\"4860\":0.0,\"4861\":null,\"4862\":0.0,\"4863\":0.0,\"4864\":0.0,\"4865\":0.0,\"4866\":0.0,\"4867\":0.0,\"4868\":0.0,\"4869\":null,\"4870\":0.0,\"4871\":null,\"4872\":0.0,\"4873\":0.0,\"4874\":null,\"4875\":null,\"4876\":0.0,\"4877\":0.0,\"4878\":0.0,\"4879\":0.0,\"4880\":0.0,\"4881\":0.0,\"4882\":0.0,\"4883\":0.0,\"4884\":0.0,\"4885\":0.0,\"4886\":null,\"4887\":0.0,\"4888\":0.0,\"4889\":0.0,\"4890\":null,\"4891\":0.0,\"4892\":null,\"4893\":0.0,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":0.0,\"4898\":null,\"4899\":0.0,\"4900\":0.0,\"4901\":0.0,\"4902\":0.0,\"4903\":0.0,\"4904\":0.0,\"4905\":null,\"4906\":0.0,\"4907\":null,\"4908\":0.0,\"4909\":null,\"4910\":0.0,\"4911\":0.0,\"4912\":0.0,\"4913\":0.0,\"4914\":null,\"4915\":0.0,\"4916\":0.0,\"4917\":0.0,\"4918\":null,\"4919\":0.0,\"4920\":0.0,\"4921\":0.0,\"4922\":0.0,\"4923\":0.0,\"4924\":0.0,\"4925\":null,\"4926\":0.0,\"4927\":1.0,\"4928\":0.0,\"4929\":0.0,\"4930\":0.0,\"4931\":0.0,\"4932\":null,\"4933\":0.0,\"4934\":0.0,\"4935\":null,\"4936\":0.0,\"4937\":0.0,\"4938\":0.0,\"4939\":0.0,\"4940\":0.0,\"4941\":0.0,\"4942\":0.0,\"4943\":0.0,\"4944\":0.0,\"4945\":0.0,\"4946\":0.0,\"4947\":0.0,\"4948\":null,\"4949\":0.0,\"4950\":0.0,\"4951\":0.0,\"4952\":null,\"4953\":0.0,\"4954\":0.0,\"4955\":0.0,\"4956\":0.0,\"4957\":0.0,\"4958\":0.0,\"4959\":0.0,\"4960\":1.0,\"4961\":0.0,\"4962\":null,\"4963\":0.0,\"4964\":0.0,\"4965\":null,\"4966\":null,\"4967\":0.0,\"4968\":0.0,\"4969\":0.0,\"4970\":0.0,\"4971\":0.0,\"4972\":0.0,\"4973\":null,\"4974\":0.0,\"4975\":0.0,\"4976\":0.0,\"4977\":0.0,\"4978\":0.0,\"4979\":null,\"4980\":0.0,\"4981\":null,\"4982\":null,\"4983\":0.0,\"4984\":null,\"4985\":0.0,\"4986\":null,\"4987\":0.0,\"4988\":null,\"4989\":0.0,\"4990\":0.0,\"4991\":null,\"4992\":1.0,\"4993\":1.0,\"4994\":1.0,\"4995\":0.0,\"4996\":1.0,\"4997\":1.0,\"4998\":null,\"4999\":null},\"quoted_status_id\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":null,\"16\":null,\"17\":null,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":null,\"31\":null,\"32\":null,\"33\":1.555560738e+18,\"34\":null,\"35\":null,\"36\":1.555924699e+18,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":null,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":1.555643814e+18,\"61\":1.555552144e+18,\"62\":null,\"63\":null,\"64\":null,\"65\":null,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":1.549074568e+18,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":null,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":1.534609811e+18,\"88\":null,\"89\":1.534609811e+18,\"90\":1.554386199e+18,\"91\":null,\"92\":null,\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":null,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":null,\"112\":1.555488096e+18,\"113\":1.555484651e+18,\"114\":null,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":null,\"127\":null,\"128\":null,\"129\":null,\"130\":null,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":1.555273418e+18,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":null,\"153\":null,\"154\":null,\"155\":null,\"156\":null,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":null,\"164\":null,\"165\":null,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":1.554185262e+18,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":null,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":null,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":1.555279861e+18,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":null,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":1.555104648e+18,\"291\":null,\"292\":null,\"293\":null,\"294\":null,\"295\":null,\"296\":null,\"297\":null,\"298\":null,\"299\":null,\"300\":null,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":1.555211205e+18,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":null,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":null,\"354\":null,\"355\":null,\"356\":null,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":null,\"374\":null,\"375\":1.555157183e+18,\"376\":null,\"377\":null,\"378\":null,\"379\":null,\"380\":1.554783427e+18,\"381\":null,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":1.555132746e+18,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":null,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":null,\"424\":null,\"425\":null,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":null,\"453\":null,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":null,\"475\":null,\"476\":null,\"477\":null,\"478\":null,\"479\":null,\"480\":null,\"481\":null,\"482\":null,\"483\":null,\"484\":null,\"485\":null,\"486\":null,\"487\":null,\"488\":null,\"489\":null,\"490\":null,\"491\":null,\"492\":null,\"493\":null,\"494\":null,\"495\":null,\"496\":null,\"497\":null,\"498\":null,\"499\":null,\"500\":null,\"501\":null,\"502\":null,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":null,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":null,\"524\":null,\"525\":null,\"526\":null,\"527\":null,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":null,\"535\":null,\"536\":null,\"537\":null,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":null,\"544\":null,\"545\":null,\"546\":1.555056134e+18,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":null,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":null,\"581\":null,\"582\":null,\"583\":null,\"584\":null,\"585\":null,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":null,\"598\":null,\"599\":null,\"600\":1.554894631e+18,\"601\":null,\"602\":1.554847243e+18,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":1.554880088e+18,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":null,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":null,\"654\":null,\"655\":null,\"656\":1.55487675e+18,\"657\":null,\"658\":null,\"659\":1.55434357e+18,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":1.554765893e+18,\"669\":null,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":null,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":null,\"692\":null,\"693\":null,\"694\":null,\"695\":null,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":1.554854443e+18,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":1.554121846e+18,\"711\":1.554704969e+18,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":1.554842318e+18,\"722\":null,\"723\":null,\"724\":null,\"725\":1.554848382e+18,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":null,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":1.554837707e+18,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":null,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":null,\"766\":null,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":1.554805151e+18,\"836\":null,\"837\":null,\"838\":null,\"839\":1.554421807e+18,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":null,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":null,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":null,\"874\":null,\"875\":null,\"876\":1.553667488e+18,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":1.554436762e+18,\"899\":null,\"900\":null,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":null,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":null,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":null,\"957\":null,\"958\":null,\"959\":null,\"960\":null,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":1.554741441e+18,\"966\":null,\"967\":1.554549189e+18,\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":null,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":null,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":1.554498675e+18,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":null,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":null,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":1.554725031e+18,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":1.554683699e+18,\"1072\":1.554488805e+18,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":1.554575731e+18,\"1077\":null,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":null,\"1084\":null,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":null,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":1.554697705e+18,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":null,\"1097\":null,\"1098\":null,\"1099\":null,\"1100\":null,\"1101\":null,\"1102\":null,\"1103\":null,\"1104\":null,\"1105\":null,\"1106\":null,\"1107\":null,\"1108\":null,\"1109\":null,\"1110\":null,\"1111\":null,\"1112\":null,\"1113\":null,\"1114\":null,\"1115\":null,\"1116\":null,\"1117\":null,\"1118\":null,\"1119\":null,\"1120\":null,\"1121\":null,\"1122\":null,\"1123\":null,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":1.553986539e+18,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":null,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":1.554440192e+18,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":null,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":null,\"1211\":null,\"1212\":null,\"1213\":null,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":null,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":null,\"1239\":null,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":null,\"1246\":null,\"1247\":null,\"1248\":null,\"1249\":null,\"1250\":null,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":null,\"1258\":null,\"1259\":null,\"1260\":null,\"1261\":null,\"1262\":null,\"1263\":null,\"1264\":null,\"1265\":null,\"1266\":null,\"1267\":null,\"1268\":null,\"1269\":null,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":1.554557141e+18,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":null,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":null,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":null,\"1336\":1.55454611e+18,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":1.552640307e+18,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":1.554403331e+18,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":null,\"1437\":null,\"1438\":1.554011432e+18,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":null,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":null,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":null,\"1464\":null,\"1465\":null,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":null,\"1477\":null,\"1478\":null,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":1.554482274e+18,\"1490\":1.554482274e+18,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":1.554478901e+18,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":null,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":null,\"1508\":null,\"1509\":null,\"1510\":null,\"1511\":null,\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":null,\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":null,\"1526\":null,\"1527\":null,\"1528\":1.55434357e+18,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":null,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":null,\"1555\":1.554481394e+18,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":1.554478967e+18,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":1.55447835e+18,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":null,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":1.554077778e+18,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":null,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":1.554134333e+18,\"1677\":null,\"1678\":1.55439565e+18,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":1.550178616e+18,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":null,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":1.55443089e+18,\"1739\":null,\"1740\":null,\"1741\":null,\"1742\":null,\"1743\":1.554411126e+18,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":null,\"1751\":null,\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":null,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":null,\"1785\":null,\"1786\":null,\"1787\":null,\"1788\":null,\"1789\":1.554391566e+18,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":null,\"1798\":null,\"1799\":null,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":1.553522344e+18,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":1.554368842e+18,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":null,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":1.554195741e+18,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":null,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":null,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":1.554065525e+18,\"1887\":null,\"1888\":1.554189212e+18,\"1889\":null,\"1890\":1.553758109e+18,\"1891\":null,\"1892\":null,\"1893\":1.554077778e+18,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":1.554114694e+18,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":null,\"1917\":null,\"1918\":null,\"1919\":null,\"1920\":null,\"1921\":null,\"1922\":null,\"1923\":null,\"1924\":null,\"1925\":null,\"1926\":1.554074466e+18,\"1927\":null,\"1928\":null,\"1929\":null,\"1930\":null,\"1931\":null,\"1932\":null,\"1933\":null,\"1934\":null,\"1935\":null,\"1936\":null,\"1937\":null,\"1938\":null,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":null,\"1945\":null,\"1946\":null,\"1947\":null,\"1948\":null,\"1949\":null,\"1950\":null,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":1.554157843e+18,\"1956\":null,\"1957\":null,\"1958\":null,\"1959\":null,\"1960\":null,\"1961\":null,\"1962\":null,\"1963\":null,\"1964\":null,\"1965\":null,\"1966\":null,\"1967\":null,\"1968\":null,\"1969\":null,\"1970\":null,\"1971\":null,\"1972\":null,\"1973\":null,\"1974\":null,\"1975\":null,\"1976\":null,\"1977\":null,\"1978\":null,\"1979\":null,\"1980\":null,\"1981\":null,\"1982\":null,\"1983\":null,\"1984\":null,\"1985\":null,\"1986\":null,\"1987\":null,\"1988\":null,\"1989\":null,\"1990\":null,\"1991\":null,\"1992\":null,\"1993\":null,\"1994\":null,\"1995\":null,\"1996\":null,\"1997\":null,\"1998\":null,\"1999\":null,\"2000\":null,\"2001\":null,\"2002\":null,\"2003\":null,\"2004\":null,\"2005\":null,\"2006\":null,\"2007\":null,\"2008\":null,\"2009\":null,\"2010\":null,\"2011\":null,\"2012\":null,\"2013\":null,\"2014\":null,\"2015\":null,\"2016\":null,\"2017\":null,\"2018\":null,\"2019\":null,\"2020\":null,\"2021\":null,\"2022\":null,\"2023\":null,\"2024\":null,\"2025\":null,\"2026\":null,\"2027\":null,\"2028\":null,\"2029\":null,\"2030\":null,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":null,\"2035\":null,\"2036\":null,\"2037\":null,\"2038\":null,\"2039\":null,\"2040\":null,\"2041\":null,\"2042\":null,\"2043\":null,\"2044\":null,\"2045\":null,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":null,\"2050\":null,\"2051\":null,\"2052\":null,\"2053\":null,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":null,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":null,\"2087\":null,\"2088\":null,\"2089\":1.554093463e+18,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":null,\"2097\":null,\"2098\":null,\"2099\":null,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":null,\"2106\":null,\"2107\":null,\"2108\":null,\"2109\":null,\"2110\":null,\"2111\":null,\"2112\":null,\"2113\":null,\"2114\":null,\"2115\":null,\"2116\":null,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":null,\"2123\":null,\"2124\":null,\"2125\":null,\"2126\":null,\"2127\":null,\"2128\":null,\"2129\":null,\"2130\":null,\"2131\":null,\"2132\":null,\"2133\":null,\"2134\":null,\"2135\":null,\"2136\":null,\"2137\":null,\"2138\":null,\"2139\":null,\"2140\":null,\"2141\":null,\"2142\":null,\"2143\":null,\"2144\":null,\"2145\":null,\"2146\":null,\"2147\":null,\"2148\":null,\"2149\":null,\"2150\":null,\"2151\":null,\"2152\":null,\"2153\":null,\"2154\":null,\"2155\":null,\"2156\":null,\"2157\":null,\"2158\":null,\"2159\":null,\"2160\":null,\"2161\":null,\"2162\":null,\"2163\":null,\"2164\":null,\"2165\":null,\"2166\":null,\"2167\":null,\"2168\":null,\"2169\":null,\"2170\":null,\"2171\":null,\"2172\":null,\"2173\":null,\"2174\":null,\"2175\":null,\"2176\":null,\"2177\":null,\"2178\":null,\"2179\":null,\"2180\":null,\"2181\":null,\"2182\":null,\"2183\":null,\"2184\":null,\"2185\":null,\"2186\":null,\"2187\":null,\"2188\":null,\"2189\":null,\"2190\":null,\"2191\":null,\"2192\":null,\"2193\":null,\"2194\":null,\"2195\":null,\"2196\":null,\"2197\":null,\"2198\":null,\"2199\":null,\"2200\":null,\"2201\":null,\"2202\":null,\"2203\":null,\"2204\":null,\"2205\":null,\"2206\":null,\"2207\":null,\"2208\":null,\"2209\":null,\"2210\":null,\"2211\":null,\"2212\":null,\"2213\":null,\"2214\":null,\"2215\":null,\"2216\":null,\"2217\":null,\"2218\":null,\"2219\":null,\"2220\":null,\"2221\":null,\"2222\":null,\"2223\":null,\"2224\":null,\"2225\":null,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":null,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":null,\"2239\":null,\"2240\":null,\"2241\":null,\"2242\":null,\"2243\":null,\"2244\":null,\"2245\":null,\"2246\":null,\"2247\":null,\"2248\":null,\"2249\":null,\"2250\":null,\"2251\":null,\"2252\":null,\"2253\":null,\"2254\":null,\"2255\":null,\"2256\":null,\"2257\":null,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":null,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":null,\"2269\":null,\"2270\":null,\"2271\":null,\"2272\":null,\"2273\":null,\"2274\":null,\"2275\":null,\"2276\":null,\"2277\":null,\"2278\":null,\"2279\":null,\"2280\":null,\"2281\":null,\"2282\":null,\"2283\":null,\"2284\":null,\"2285\":null,\"2286\":null,\"2287\":null,\"2288\":null,\"2289\":null,\"2290\":null,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":null,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":1.542015643e+18,\"2311\":null,\"2312\":null,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":null,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":null,\"2323\":null,\"2324\":null,\"2325\":null,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":null,\"2337\":null,\"2338\":null,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":null,\"2343\":null,\"2344\":null,\"2345\":null,\"2346\":null,\"2347\":null,\"2348\":null,\"2349\":null,\"2350\":null,\"2351\":null,\"2352\":null,\"2353\":null,\"2354\":null,\"2355\":null,\"2356\":null,\"2357\":null,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":1.553661422e+18,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":1.553269427e+18,\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":null,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":null,\"2411\":null,\"2412\":null,\"2413\":null,\"2414\":null,\"2415\":null,\"2416\":null,\"2417\":null,\"2418\":null,\"2419\":null,\"2420\":null,\"2421\":null,\"2422\":null,\"2423\":null,\"2424\":null,\"2425\":null,\"2426\":null,\"2427\":null,\"2428\":null,\"2429\":null,\"2430\":null,\"2431\":null,\"2432\":null,\"2433\":null,\"2434\":null,\"2435\":null,\"2436\":null,\"2437\":null,\"2438\":null,\"2439\":null,\"2440\":null,\"2441\":null,\"2442\":null,\"2443\":null,\"2444\":null,\"2445\":null,\"2446\":null,\"2447\":null,\"2448\":null,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":null,\"2455\":null,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":null,\"2464\":null,\"2465\":null,\"2466\":null,\"2467\":null,\"2468\":null,\"2469\":null,\"2470\":null,\"2471\":null,\"2472\":null,\"2473\":null,\"2474\":null,\"2475\":null,\"2476\":null,\"2477\":null,\"2478\":null,\"2479\":null,\"2480\":null,\"2481\":null,\"2482\":null,\"2483\":null,\"2484\":null,\"2485\":null,\"2486\":null,\"2487\":null,\"2488\":null,\"2489\":null,\"2490\":null,\"2491\":null,\"2492\":null,\"2493\":null,\"2494\":null,\"2495\":null,\"2496\":null,\"2497\":null,\"2498\":null,\"2499\":null,\"2500\":null,\"2501\":null,\"2502\":null,\"2503\":null,\"2504\":null,\"2505\":null,\"2506\":null,\"2507\":null,\"2508\":null,\"2509\":null,\"2510\":null,\"2511\":null,\"2512\":null,\"2513\":null,\"2514\":null,\"2515\":null,\"2516\":null,\"2517\":null,\"2518\":null,\"2519\":null,\"2520\":null,\"2521\":null,\"2522\":null,\"2523\":null,\"2524\":null,\"2525\":null,\"2526\":null,\"2527\":null,\"2528\":null,\"2529\":null,\"2530\":null,\"2531\":null,\"2532\":null,\"2533\":null,\"2534\":null,\"2535\":1.549868866e+18,\"2536\":null,\"2537\":null,\"2538\":null,\"2539\":null,\"2540\":null,\"2541\":null,\"2542\":null,\"2543\":null,\"2544\":null,\"2545\":null,\"2546\":null,\"2547\":null,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":1.553103199e+18,\"2553\":1.553103199e+18,\"2554\":1.543242102e+18,\"2555\":1.504051837e+18,\"2556\":null,\"2557\":null,\"2558\":1.553103199e+18,\"2559\":1.553103199e+18,\"2560\":1.553103199e+18,\"2561\":null,\"2562\":1.553099299e+18,\"2563\":null,\"2564\":null,\"2565\":1.553103199e+18,\"2566\":1.553103199e+18,\"2567\":1.553103199e+18,\"2568\":1.553103199e+18,\"2569\":1.553103199e+18,\"2570\":1.553103199e+18,\"2571\":1.553103199e+18,\"2572\":1.553103199e+18,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":1.556281287e+18,\"2599\":1.556037525e+18,\"2600\":null,\"2601\":null,\"2602\":1.555895787e+18,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":1.555576736e+18,\"2613\":1.555554739e+18,\"2614\":1.555266505e+18,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":null,\"2652\":null,\"2653\":1.554920038e+18,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":null,\"2658\":null,\"2659\":1.554830251e+18,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":null,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":1.554474782e+18,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":null,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":null,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":null,\"2717\":null,\"2718\":1.554689538e+18,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":1.554632463e+18,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":null,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":null,\"2749\":null,\"2750\":null,\"2751\":1.554125364e+18,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":1.468476586e+18,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":null,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":1.554257955e+18,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":null,\"2839\":null,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":null,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":1.554386199e+18,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":null,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":1.555273418e+18,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":null,\"2906\":null,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":null,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":null,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":null,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":null,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":null,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":null,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":null,\"3060\":null,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":null,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":null,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":null,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":1.554489414e+18,\"3094\":null,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":null,\"3100\":null,\"3101\":null,\"3102\":null,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":1.554837707e+18,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":null,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":null,\"3145\":1.554421807e+18,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":null,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":null,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":null,\"3175\":null,\"3176\":null,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":null,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":null,\"3191\":null,\"3192\":null,\"3193\":null,\"3194\":1.554741441e+18,\"3195\":1.554549189e+18,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":null,\"3245\":null,\"3246\":null,\"3247\":null,\"3248\":null,\"3249\":null,\"3250\":null,\"3251\":null,\"3252\":null,\"3253\":null,\"3254\":1.554697705e+18,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":null,\"3259\":null,\"3260\":null,\"3261\":null,\"3262\":null,\"3263\":null,\"3264\":null,\"3265\":null,\"3266\":null,\"3267\":null,\"3268\":null,\"3269\":null,\"3270\":null,\"3271\":null,\"3272\":null,\"3273\":null,\"3274\":null,\"3275\":null,\"3276\":null,\"3277\":null,\"3278\":null,\"3279\":null,\"3280\":null,\"3281\":null,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":null,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":1.554440192e+18,\"3309\":null,\"3310\":null,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":1.554486954e+18,\"3323\":null,\"3324\":null,\"3325\":null,\"3326\":null,\"3327\":null,\"3328\":null,\"3329\":null,\"3330\":null,\"3331\":null,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":null,\"3363\":1.552640307e+18,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":1.554403331e+18,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":null,\"3401\":null,\"3402\":null,\"3403\":null,\"3404\":null,\"3405\":null,\"3406\":null,\"3407\":null,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":1.554478901e+18,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":null,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":1.554478967e+18,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":1.550178616e+18,\"3473\":null,\"3474\":null,\"3475\":null,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":1.553522344e+18,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":1.554189212e+18,\"3522\":null,\"3523\":1.553758109e+18,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":1.554074466e+18,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":null,\"3561\":null,\"3562\":null,\"3563\":null,\"3564\":null,\"3565\":null,\"3566\":null,\"3567\":null,\"3568\":null,\"3569\":null,\"3570\":null,\"3571\":null,\"3572\":null,\"3573\":null,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":null,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":null,\"3591\":null,\"3592\":null,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":null,\"3625\":null,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":1.556061629e+18,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":null,\"3647\":1.555560738e+18,\"3648\":null,\"3649\":null,\"3650\":1.555924699e+18,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":null,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":1.555643814e+18,\"3672\":1.555552144e+18,\"3673\":null,\"3674\":null,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":1.549074568e+18,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":1.534609811e+18,\"3695\":null,\"3696\":1.534609811e+18,\"3697\":1.554386199e+18,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":null,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":null,\"3717\":1.555488096e+18,\"3718\":1.555484651e+18,\"3719\":null,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":null,\"3730\":null,\"3731\":null,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":1.555273418e+18,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":null,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":null,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":null,\"3765\":null,\"3766\":null,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":1.554185262e+18,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":null,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":null,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":1.555279861e+18,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":null,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":1.555104648e+18,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":null,\"3886\":null,\"3887\":null,\"3888\":null,\"3889\":null,\"3890\":null,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":1.555211205e+18,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":null,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":null,\"3941\":null,\"3942\":null,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":null,\"3957\":null,\"3958\":1.555157183e+18,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":null,\"3963\":1.554783427e+18,\"3964\":null,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":1.555132746e+18,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":null,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":null,\"4031\":null,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":null,\"4051\":null,\"4052\":null,\"4053\":null,\"4054\":null,\"4055\":null,\"4056\":null,\"4057\":null,\"4058\":null,\"4059\":null,\"4060\":null,\"4061\":null,\"4062\":null,\"4063\":null,\"4064\":null,\"4065\":null,\"4066\":null,\"4067\":null,\"4068\":null,\"4069\":null,\"4070\":null,\"4071\":null,\"4072\":null,\"4073\":null,\"4074\":null,\"4075\":null,\"4076\":null,\"4077\":null,\"4078\":null,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":null,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":null,\"4103\":null,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":null,\"4111\":null,\"4112\":null,\"4113\":null,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":null,\"4120\":null,\"4121\":null,\"4122\":1.555056134e+18,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":null,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":null,\"4154\":null,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":null,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":null,\"4170\":null,\"4171\":null,\"4172\":1.554894631e+18,\"4173\":null,\"4174\":1.554847243e+18,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":1.554880088e+18,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":null,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":null,\"4226\":null,\"4227\":null,\"4228\":1.55487675e+18,\"4229\":1.55434357e+18,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":1.554765893e+18,\"4237\":null,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":null,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":1.554854443e+18,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":1.554121846e+18,\"4274\":1.554704969e+18,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":1.554842318e+18,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":null,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":null,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":null,\"4323\":null,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":1.554805151e+18,\"4390\":null,\"4391\":null,\"4392\":null,\"4393\":1.554421807e+18,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":null,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":null,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":null,\"4427\":null,\"4428\":null,\"4429\":1.553667488e+18,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":1.554436762e+18,\"4451\":null,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":null,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":null,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":null,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":1.554741441e+18,\"4510\":null,\"4511\":1.554549189e+18,\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":null,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":null,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":null,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":null,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":1.554683699e+18,\"4607\":1.554488805e+18,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":1.554575731e+18,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":null,\"4618\":null,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":null,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":1.554697705e+18,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":null,\"4633\":null,\"4634\":null,\"4635\":null,\"4636\":null,\"4637\":null,\"4638\":null,\"4639\":null,\"4640\":null,\"4641\":null,\"4642\":null,\"4643\":null,\"4644\":null,\"4645\":null,\"4646\":null,\"4647\":null,\"4648\":null,\"4649\":null,\"4650\":null,\"4651\":null,\"4652\":null,\"4653\":null,\"4654\":null,\"4655\":null,\"4656\":null,\"4657\":null,\"4658\":null,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":1.553986539e+18,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":null,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":1.554440192e+18,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":null,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":null,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":null,\"4748\":null,\"4749\":null,\"4750\":null,\"4751\":null,\"4752\":null,\"4753\":null,\"4754\":null,\"4755\":null,\"4756\":null,\"4757\":null,\"4758\":null,\"4759\":null,\"4760\":null,\"4761\":null,\"4762\":null,\"4763\":null,\"4764\":null,\"4765\":null,\"4766\":null,\"4767\":null,\"4768\":null,\"4769\":null,\"4770\":null,\"4771\":null,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":1.554557141e+18,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":null,\"4829\":1.55454611e+18,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":1.552640307e+18,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":1.554403331e+18,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":null,\"4915\":null,\"4916\":1.554011432e+18,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":null,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":null,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":null,\"4941\":null,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":null,\"4949\":null,\"4950\":null,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":null,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":null,\"4975\":null,\"4976\":null,\"4977\":null,\"4978\":null,\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":null,\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":null,\"4993\":null,\"4994\":null,\"4995\":1.55434357e+18,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"quoted_status_id_str\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":null,\"16\":null,\"17\":null,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":null,\"31\":null,\"32\":null,\"33\":1.555560738e+18,\"34\":null,\"35\":null,\"36\":1.555924699e+18,\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":null,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":1.555643814e+18,\"61\":1.555552144e+18,\"62\":null,\"63\":null,\"64\":null,\"65\":null,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":1.549074568e+18,\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":null,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":1.534609811e+18,\"88\":null,\"89\":1.534609811e+18,\"90\":1.554386199e+18,\"91\":null,\"92\":null,\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":null,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":null,\"112\":1.555488096e+18,\"113\":1.555484651e+18,\"114\":null,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":null,\"127\":null,\"128\":null,\"129\":null,\"130\":null,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":1.555273418e+18,\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":null,\"153\":null,\"154\":null,\"155\":null,\"156\":null,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":null,\"164\":null,\"165\":null,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":1.554185262e+18,\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":null,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":null,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":1.555279861e+18,\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":null,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":1.555104648e+18,\"291\":null,\"292\":null,\"293\":null,\"294\":null,\"295\":null,\"296\":null,\"297\":null,\"298\":null,\"299\":null,\"300\":null,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":1.555211205e+18,\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":null,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":null,\"354\":null,\"355\":null,\"356\":null,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":null,\"374\":null,\"375\":1.555157183e+18,\"376\":null,\"377\":null,\"378\":null,\"379\":null,\"380\":1.554783427e+18,\"381\":null,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":1.555132746e+18,\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":null,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":null,\"424\":null,\"425\":null,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":null,\"453\":null,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":null,\"475\":null,\"476\":null,\"477\":null,\"478\":null,\"479\":null,\"480\":null,\"481\":null,\"482\":null,\"483\":null,\"484\":null,\"485\":null,\"486\":null,\"487\":null,\"488\":null,\"489\":null,\"490\":null,\"491\":null,\"492\":null,\"493\":null,\"494\":null,\"495\":null,\"496\":null,\"497\":null,\"498\":null,\"499\":null,\"500\":null,\"501\":null,\"502\":null,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":null,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":null,\"524\":null,\"525\":null,\"526\":null,\"527\":null,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":null,\"535\":null,\"536\":null,\"537\":null,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":null,\"544\":null,\"545\":null,\"546\":1.555056134e+18,\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":null,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":null,\"581\":null,\"582\":null,\"583\":null,\"584\":null,\"585\":null,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":null,\"598\":null,\"599\":null,\"600\":1.554894631e+18,\"601\":null,\"602\":1.554847243e+18,\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":1.554880088e+18,\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":null,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":null,\"654\":null,\"655\":null,\"656\":1.55487675e+18,\"657\":null,\"658\":null,\"659\":1.55434357e+18,\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":1.554765893e+18,\"669\":null,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":null,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":null,\"692\":null,\"693\":null,\"694\":null,\"695\":null,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":1.554854443e+18,\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":1.554121846e+18,\"711\":1.554704969e+18,\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":1.554842318e+18,\"722\":null,\"723\":null,\"724\":null,\"725\":1.554848382e+18,\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":null,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":1.554837707e+18,\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":null,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":null,\"766\":null,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":1.554805151e+18,\"836\":null,\"837\":null,\"838\":null,\"839\":1.554421807e+18,\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":null,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":null,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":null,\"874\":null,\"875\":null,\"876\":1.553667488e+18,\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":1.554436762e+18,\"899\":null,\"900\":null,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":null,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":null,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":null,\"957\":null,\"958\":null,\"959\":null,\"960\":null,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":1.554741441e+18,\"966\":null,\"967\":1.554549189e+18,\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":null,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":null,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":1.554498675e+18,\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":null,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":null,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":1.554725031e+18,\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":1.554683699e+18,\"1072\":1.554488805e+18,\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":1.554575731e+18,\"1077\":null,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":null,\"1084\":null,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":null,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":1.554697705e+18,\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":null,\"1097\":null,\"1098\":null,\"1099\":null,\"1100\":null,\"1101\":null,\"1102\":null,\"1103\":null,\"1104\":null,\"1105\":null,\"1106\":null,\"1107\":null,\"1108\":null,\"1109\":null,\"1110\":null,\"1111\":null,\"1112\":null,\"1113\":null,\"1114\":null,\"1115\":null,\"1116\":null,\"1117\":null,\"1118\":null,\"1119\":null,\"1120\":null,\"1121\":null,\"1122\":null,\"1123\":null,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":1.553986539e+18,\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":null,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":1.554440192e+18,\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":null,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":null,\"1211\":null,\"1212\":null,\"1213\":null,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":null,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":null,\"1239\":null,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":null,\"1246\":null,\"1247\":null,\"1248\":null,\"1249\":null,\"1250\":null,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":null,\"1258\":null,\"1259\":null,\"1260\":null,\"1261\":null,\"1262\":null,\"1263\":null,\"1264\":null,\"1265\":null,\"1266\":null,\"1267\":null,\"1268\":null,\"1269\":null,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":1.554557141e+18,\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":null,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":null,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":null,\"1336\":1.55454611e+18,\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":1.552640307e+18,\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":1.554403331e+18,\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":null,\"1437\":null,\"1438\":1.554011432e+18,\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":null,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":null,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":null,\"1464\":null,\"1465\":null,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":null,\"1477\":null,\"1478\":null,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":1.554482274e+18,\"1490\":1.554482274e+18,\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":1.554478901e+18,\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":null,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":null,\"1508\":null,\"1509\":null,\"1510\":null,\"1511\":null,\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":null,\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":null,\"1526\":null,\"1527\":null,\"1528\":1.55434357e+18,\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":null,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":null,\"1555\":1.554481394e+18,\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":1.554478967e+18,\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":1.55447835e+18,\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":null,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":1.554077778e+18,\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":null,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":1.554134333e+18,\"1677\":null,\"1678\":1.55439565e+18,\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":1.550178616e+18,\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":null,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":1.55443089e+18,\"1739\":null,\"1740\":null,\"1741\":null,\"1742\":null,\"1743\":1.554411126e+18,\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":null,\"1751\":null,\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":null,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":null,\"1785\":null,\"1786\":null,\"1787\":null,\"1788\":null,\"1789\":1.554391566e+18,\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":null,\"1798\":null,\"1799\":null,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":1.553522344e+18,\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":1.554368842e+18,\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":null,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":1.554195741e+18,\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":null,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":null,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":1.554065525e+18,\"1887\":null,\"1888\":1.554189212e+18,\"1889\":null,\"1890\":1.553758109e+18,\"1891\":null,\"1892\":null,\"1893\":1.554077778e+18,\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":1.554114694e+18,\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":null,\"1917\":null,\"1918\":null,\"1919\":null,\"1920\":null,\"1921\":null,\"1922\":null,\"1923\":null,\"1924\":null,\"1925\":null,\"1926\":1.554074466e+18,\"1927\":null,\"1928\":null,\"1929\":null,\"1930\":null,\"1931\":null,\"1932\":null,\"1933\":null,\"1934\":null,\"1935\":null,\"1936\":null,\"1937\":null,\"1938\":null,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":null,\"1945\":null,\"1946\":null,\"1947\":null,\"1948\":null,\"1949\":null,\"1950\":null,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":1.554157843e+18,\"1956\":null,\"1957\":null,\"1958\":null,\"1959\":null,\"1960\":null,\"1961\":null,\"1962\":null,\"1963\":null,\"1964\":null,\"1965\":null,\"1966\":null,\"1967\":null,\"1968\":null,\"1969\":null,\"1970\":null,\"1971\":null,\"1972\":null,\"1973\":null,\"1974\":null,\"1975\":null,\"1976\":null,\"1977\":null,\"1978\":null,\"1979\":null,\"1980\":null,\"1981\":null,\"1982\":null,\"1983\":null,\"1984\":null,\"1985\":null,\"1986\":null,\"1987\":null,\"1988\":null,\"1989\":null,\"1990\":null,\"1991\":null,\"1992\":null,\"1993\":null,\"1994\":null,\"1995\":null,\"1996\":null,\"1997\":null,\"1998\":null,\"1999\":null,\"2000\":null,\"2001\":null,\"2002\":null,\"2003\":null,\"2004\":null,\"2005\":null,\"2006\":null,\"2007\":null,\"2008\":null,\"2009\":null,\"2010\":null,\"2011\":null,\"2012\":null,\"2013\":null,\"2014\":null,\"2015\":null,\"2016\":null,\"2017\":null,\"2018\":null,\"2019\":null,\"2020\":null,\"2021\":null,\"2022\":null,\"2023\":null,\"2024\":null,\"2025\":null,\"2026\":null,\"2027\":null,\"2028\":null,\"2029\":null,\"2030\":null,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":null,\"2035\":null,\"2036\":null,\"2037\":null,\"2038\":null,\"2039\":null,\"2040\":null,\"2041\":null,\"2042\":null,\"2043\":null,\"2044\":null,\"2045\":null,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":null,\"2050\":null,\"2051\":null,\"2052\":null,\"2053\":null,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":null,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":null,\"2087\":null,\"2088\":null,\"2089\":1.554093463e+18,\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":null,\"2097\":null,\"2098\":null,\"2099\":null,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":null,\"2106\":null,\"2107\":null,\"2108\":null,\"2109\":null,\"2110\":null,\"2111\":null,\"2112\":null,\"2113\":null,\"2114\":null,\"2115\":null,\"2116\":null,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":null,\"2123\":null,\"2124\":null,\"2125\":null,\"2126\":null,\"2127\":null,\"2128\":null,\"2129\":null,\"2130\":null,\"2131\":null,\"2132\":null,\"2133\":null,\"2134\":null,\"2135\":null,\"2136\":null,\"2137\":null,\"2138\":null,\"2139\":null,\"2140\":null,\"2141\":null,\"2142\":null,\"2143\":null,\"2144\":null,\"2145\":null,\"2146\":null,\"2147\":null,\"2148\":null,\"2149\":null,\"2150\":null,\"2151\":null,\"2152\":null,\"2153\":null,\"2154\":null,\"2155\":null,\"2156\":null,\"2157\":null,\"2158\":null,\"2159\":null,\"2160\":null,\"2161\":null,\"2162\":null,\"2163\":null,\"2164\":null,\"2165\":null,\"2166\":null,\"2167\":null,\"2168\":null,\"2169\":null,\"2170\":null,\"2171\":null,\"2172\":null,\"2173\":null,\"2174\":null,\"2175\":null,\"2176\":null,\"2177\":null,\"2178\":null,\"2179\":null,\"2180\":null,\"2181\":null,\"2182\":null,\"2183\":null,\"2184\":null,\"2185\":null,\"2186\":null,\"2187\":null,\"2188\":null,\"2189\":null,\"2190\":null,\"2191\":null,\"2192\":null,\"2193\":null,\"2194\":null,\"2195\":null,\"2196\":null,\"2197\":null,\"2198\":null,\"2199\":null,\"2200\":null,\"2201\":null,\"2202\":null,\"2203\":null,\"2204\":null,\"2205\":null,\"2206\":null,\"2207\":null,\"2208\":null,\"2209\":null,\"2210\":null,\"2211\":null,\"2212\":null,\"2213\":null,\"2214\":null,\"2215\":null,\"2216\":null,\"2217\":null,\"2218\":null,\"2219\":null,\"2220\":null,\"2221\":null,\"2222\":null,\"2223\":null,\"2224\":null,\"2225\":null,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":null,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":null,\"2239\":null,\"2240\":null,\"2241\":null,\"2242\":null,\"2243\":null,\"2244\":null,\"2245\":null,\"2246\":null,\"2247\":null,\"2248\":null,\"2249\":null,\"2250\":null,\"2251\":null,\"2252\":null,\"2253\":null,\"2254\":null,\"2255\":null,\"2256\":null,\"2257\":null,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":null,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":null,\"2269\":null,\"2270\":null,\"2271\":null,\"2272\":null,\"2273\":null,\"2274\":null,\"2275\":null,\"2276\":null,\"2277\":null,\"2278\":null,\"2279\":null,\"2280\":null,\"2281\":null,\"2282\":null,\"2283\":null,\"2284\":null,\"2285\":null,\"2286\":null,\"2287\":null,\"2288\":null,\"2289\":null,\"2290\":null,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":null,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":1.542015643e+18,\"2311\":null,\"2312\":null,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":null,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":null,\"2323\":null,\"2324\":null,\"2325\":null,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":null,\"2337\":null,\"2338\":null,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":null,\"2343\":null,\"2344\":null,\"2345\":null,\"2346\":null,\"2347\":null,\"2348\":null,\"2349\":null,\"2350\":null,\"2351\":null,\"2352\":null,\"2353\":null,\"2354\":null,\"2355\":null,\"2356\":null,\"2357\":null,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":1.553661422e+18,\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":1.553269427e+18,\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":null,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":null,\"2411\":null,\"2412\":null,\"2413\":null,\"2414\":null,\"2415\":null,\"2416\":null,\"2417\":null,\"2418\":null,\"2419\":null,\"2420\":null,\"2421\":null,\"2422\":null,\"2423\":null,\"2424\":null,\"2425\":null,\"2426\":null,\"2427\":null,\"2428\":null,\"2429\":null,\"2430\":null,\"2431\":null,\"2432\":null,\"2433\":null,\"2434\":null,\"2435\":null,\"2436\":null,\"2437\":null,\"2438\":null,\"2439\":null,\"2440\":null,\"2441\":null,\"2442\":null,\"2443\":null,\"2444\":null,\"2445\":null,\"2446\":null,\"2447\":null,\"2448\":null,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":null,\"2455\":null,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":null,\"2464\":null,\"2465\":null,\"2466\":null,\"2467\":null,\"2468\":null,\"2469\":null,\"2470\":null,\"2471\":null,\"2472\":null,\"2473\":null,\"2474\":null,\"2475\":null,\"2476\":null,\"2477\":null,\"2478\":null,\"2479\":null,\"2480\":null,\"2481\":null,\"2482\":null,\"2483\":null,\"2484\":null,\"2485\":null,\"2486\":null,\"2487\":null,\"2488\":null,\"2489\":null,\"2490\":null,\"2491\":null,\"2492\":null,\"2493\":null,\"2494\":null,\"2495\":null,\"2496\":null,\"2497\":null,\"2498\":null,\"2499\":null,\"2500\":null,\"2501\":null,\"2502\":null,\"2503\":null,\"2504\":null,\"2505\":null,\"2506\":null,\"2507\":null,\"2508\":null,\"2509\":null,\"2510\":null,\"2511\":null,\"2512\":null,\"2513\":null,\"2514\":null,\"2515\":null,\"2516\":null,\"2517\":null,\"2518\":null,\"2519\":null,\"2520\":null,\"2521\":null,\"2522\":null,\"2523\":null,\"2524\":null,\"2525\":null,\"2526\":null,\"2527\":null,\"2528\":null,\"2529\":null,\"2530\":null,\"2531\":null,\"2532\":null,\"2533\":null,\"2534\":null,\"2535\":1.549868866e+18,\"2536\":null,\"2537\":null,\"2538\":null,\"2539\":null,\"2540\":null,\"2541\":null,\"2542\":null,\"2543\":null,\"2544\":null,\"2545\":null,\"2546\":null,\"2547\":null,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":1.553103199e+18,\"2553\":1.553103199e+18,\"2554\":1.543242102e+18,\"2555\":1.504051837e+18,\"2556\":null,\"2557\":null,\"2558\":1.553103199e+18,\"2559\":1.553103199e+18,\"2560\":1.553103199e+18,\"2561\":null,\"2562\":1.553099299e+18,\"2563\":null,\"2564\":null,\"2565\":1.553103199e+18,\"2566\":1.553103199e+18,\"2567\":1.553103199e+18,\"2568\":1.553103199e+18,\"2569\":1.553103199e+18,\"2570\":1.553103199e+18,\"2571\":1.553103199e+18,\"2572\":1.553103199e+18,\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":1.556281287e+18,\"2599\":1.556037525e+18,\"2600\":null,\"2601\":null,\"2602\":1.555895787e+18,\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":1.555576736e+18,\"2613\":1.555554739e+18,\"2614\":1.555266505e+18,\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":null,\"2652\":null,\"2653\":1.554920038e+18,\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":null,\"2658\":null,\"2659\":1.554830251e+18,\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":null,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":1.554474782e+18,\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":null,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":null,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":null,\"2717\":null,\"2718\":1.554689538e+18,\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":1.554632463e+18,\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":null,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":null,\"2749\":null,\"2750\":null,\"2751\":1.554125364e+18,\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":1.468476586e+18,\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":null,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":1.554257955e+18,\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":null,\"2839\":null,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":null,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":1.554386199e+18,\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":null,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":1.555273418e+18,\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":null,\"2906\":null,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":null,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":null,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":null,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":null,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":null,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":null,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":null,\"3060\":null,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":null,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":null,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":null,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":1.554489414e+18,\"3094\":null,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":null,\"3100\":null,\"3101\":null,\"3102\":null,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":1.554837707e+18,\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":null,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":null,\"3145\":1.554421807e+18,\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":null,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":null,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":null,\"3175\":null,\"3176\":null,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":null,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":null,\"3191\":null,\"3192\":null,\"3193\":null,\"3194\":1.554741441e+18,\"3195\":1.554549189e+18,\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":null,\"3245\":null,\"3246\":null,\"3247\":null,\"3248\":null,\"3249\":null,\"3250\":null,\"3251\":null,\"3252\":null,\"3253\":null,\"3254\":1.554697705e+18,\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":null,\"3259\":null,\"3260\":null,\"3261\":null,\"3262\":null,\"3263\":null,\"3264\":null,\"3265\":null,\"3266\":null,\"3267\":null,\"3268\":null,\"3269\":null,\"3270\":null,\"3271\":null,\"3272\":null,\"3273\":null,\"3274\":null,\"3275\":null,\"3276\":null,\"3277\":null,\"3278\":null,\"3279\":null,\"3280\":null,\"3281\":null,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":null,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":1.554440192e+18,\"3309\":null,\"3310\":null,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":1.554486954e+18,\"3323\":null,\"3324\":null,\"3325\":null,\"3326\":null,\"3327\":null,\"3328\":null,\"3329\":null,\"3330\":null,\"3331\":null,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":null,\"3363\":1.552640307e+18,\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":1.554403331e+18,\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":null,\"3401\":null,\"3402\":null,\"3403\":null,\"3404\":null,\"3405\":null,\"3406\":null,\"3407\":null,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":1.554478901e+18,\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":null,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":1.554478967e+18,\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":1.550178616e+18,\"3473\":null,\"3474\":null,\"3475\":null,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":1.553522344e+18,\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":1.554189212e+18,\"3522\":null,\"3523\":1.553758109e+18,\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":1.554074466e+18,\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":null,\"3561\":null,\"3562\":null,\"3563\":null,\"3564\":null,\"3565\":null,\"3566\":null,\"3567\":null,\"3568\":null,\"3569\":null,\"3570\":null,\"3571\":null,\"3572\":null,\"3573\":null,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":null,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":null,\"3591\":null,\"3592\":null,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":null,\"3625\":null,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":1.556061629e+18,\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":null,\"3647\":1.555560738e+18,\"3648\":null,\"3649\":null,\"3650\":1.555924699e+18,\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":null,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":1.555643814e+18,\"3672\":1.555552144e+18,\"3673\":null,\"3674\":null,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":1.549074568e+18,\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":1.534609811e+18,\"3695\":null,\"3696\":1.534609811e+18,\"3697\":1.554386199e+18,\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":null,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":null,\"3717\":1.555488096e+18,\"3718\":1.555484651e+18,\"3719\":null,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":null,\"3730\":null,\"3731\":null,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":1.555273418e+18,\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":null,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":null,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":null,\"3765\":null,\"3766\":null,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":1.554185262e+18,\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":null,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":null,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":1.555279861e+18,\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":null,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":1.555104648e+18,\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":null,\"3886\":null,\"3887\":null,\"3888\":null,\"3889\":null,\"3890\":null,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":1.555211205e+18,\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":null,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":null,\"3941\":null,\"3942\":null,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":null,\"3957\":null,\"3958\":1.555157183e+18,\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":null,\"3963\":1.554783427e+18,\"3964\":null,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":1.555132746e+18,\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":null,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":null,\"4031\":null,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":null,\"4051\":null,\"4052\":null,\"4053\":null,\"4054\":null,\"4055\":null,\"4056\":null,\"4057\":null,\"4058\":null,\"4059\":null,\"4060\":null,\"4061\":null,\"4062\":null,\"4063\":null,\"4064\":null,\"4065\":null,\"4066\":null,\"4067\":null,\"4068\":null,\"4069\":null,\"4070\":null,\"4071\":null,\"4072\":null,\"4073\":null,\"4074\":null,\"4075\":null,\"4076\":null,\"4077\":null,\"4078\":null,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":null,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":null,\"4103\":null,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":null,\"4111\":null,\"4112\":null,\"4113\":null,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":null,\"4120\":null,\"4121\":null,\"4122\":1.555056134e+18,\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":null,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":null,\"4154\":null,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":null,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":null,\"4170\":null,\"4171\":null,\"4172\":1.554894631e+18,\"4173\":null,\"4174\":1.554847243e+18,\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":1.554880088e+18,\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":null,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":null,\"4226\":null,\"4227\":null,\"4228\":1.55487675e+18,\"4229\":1.55434357e+18,\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":1.554765893e+18,\"4237\":null,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":null,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":1.554854443e+18,\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":1.554121846e+18,\"4274\":1.554704969e+18,\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":1.554842318e+18,\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":null,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":null,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":null,\"4323\":null,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":1.554805151e+18,\"4390\":null,\"4391\":null,\"4392\":null,\"4393\":1.554421807e+18,\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":null,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":null,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":null,\"4427\":null,\"4428\":null,\"4429\":1.553667488e+18,\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":1.554436762e+18,\"4451\":null,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":null,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":null,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":null,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":1.554741441e+18,\"4510\":null,\"4511\":1.554549189e+18,\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":null,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":null,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":null,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":null,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":1.554683699e+18,\"4607\":1.554488805e+18,\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":1.554575731e+18,\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":null,\"4618\":null,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":null,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":1.554697705e+18,\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":null,\"4633\":null,\"4634\":null,\"4635\":null,\"4636\":null,\"4637\":null,\"4638\":null,\"4639\":null,\"4640\":null,\"4641\":null,\"4642\":null,\"4643\":null,\"4644\":null,\"4645\":null,\"4646\":null,\"4647\":null,\"4648\":null,\"4649\":null,\"4650\":null,\"4651\":null,\"4652\":null,\"4653\":null,\"4654\":null,\"4655\":null,\"4656\":null,\"4657\":null,\"4658\":null,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":1.553986539e+18,\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":null,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":1.554440192e+18,\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":null,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":null,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":null,\"4748\":null,\"4749\":null,\"4750\":null,\"4751\":null,\"4752\":null,\"4753\":null,\"4754\":null,\"4755\":null,\"4756\":null,\"4757\":null,\"4758\":null,\"4759\":null,\"4760\":null,\"4761\":null,\"4762\":null,\"4763\":null,\"4764\":null,\"4765\":null,\"4766\":null,\"4767\":null,\"4768\":null,\"4769\":null,\"4770\":null,\"4771\":null,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":1.554557141e+18,\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":null,\"4829\":1.55454611e+18,\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":1.552640307e+18,\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":1.554403331e+18,\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":null,\"4915\":null,\"4916\":1.554011432e+18,\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":null,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":null,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":null,\"4941\":null,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":null,\"4949\":null,\"4950\":null,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":null,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":null,\"4975\":null,\"4976\":null,\"4977\":null,\"4978\":null,\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":null,\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":null,\"4993\":null,\"4994\":null,\"4995\":1.55434357e+18,\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null},\"quoted_status\":{\"0\":null,\"1\":null,\"2\":null,\"3\":null,\"4\":null,\"5\":null,\"6\":null,\"7\":null,\"8\":null,\"9\":null,\"10\":null,\"11\":null,\"12\":null,\"13\":null,\"14\":null,\"15\":null,\"16\":null,\"17\":null,\"18\":null,\"19\":null,\"20\":null,\"21\":null,\"22\":null,\"23\":null,\"24\":null,\"25\":null,\"26\":null,\"27\":null,\"28\":null,\"29\":null,\"30\":null,\"31\":null,\"32\":null,\"33\":{\"created_at\":\"Fri Aug 05 14:25:55 +0000 2022\",\"id\":1555560738034688000,\"id_str\":\"1555560738034688000\",\"full_text\":\"Cameroonian Prime Minister Joseph Dion Ngute said peace and stability are gradually returning to the country's Anglophone regions of Northwest and Southwest https:\\/\\/t.co\\/aRdhexGqpb https:\\/\\/t.co\\/GWbAY0lgdU\",\"truncated\":false,\"display_text_range\":[0,180],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aRdhexGqpb\",\"expanded_url\":\"http:\\/\\/xhtxs.cn\\/yiO\",\"display_url\":\"xhtxs.cn\\/yiO\",\"indices\":[157,180]}],\"media\":[{\"id\":1555560732858560512,\"id_str\":\"1555560732858560512\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"url\":\"https:\\/\\/t.co\\/GWbAY0lgdU\",\"display_url\":\"pic.twitter.com\\/GWbAY0lgdU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/XHNews\\/status\\/1555560738034688000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"large\":{\"w\":900,\"h\":601,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":601,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555560732858560512,\"id_str\":\"1555560732858560512\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"url\":\"https:\\/\\/t.co\\/GWbAY0lgdU\",\"display_url\":\"pic.twitter.com\\/GWbAY0lgdU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/XHNews\\/status\\/1555560738034688000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"large\":{\"w\":900,\"h\":601,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":601,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"China Xinhua News<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":487118986,\"id_str\":\"487118986\",\"name\":\"China Xinhua News\",\"screen_name\":\"XHNews\",\"location\":\"Headquartered in Beijing, PRC\",\"description\":\"We are public media for the public good. We don't pursue corporate interests, nor will we yield to the pressure of ideological stigmatization and political bias\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12247622,\"friends_count\":74,\"listed_count\":14026,\"created_at\":\"Thu Feb 09 01:10:18 +0000 2012\",\"favourites_count\":121,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":236508,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1246686019241398274\\/swhowkA5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1246686019241398274\\/swhowkA5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/487118986\\/1586067539\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":9,\"favorite_count\":21,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"34\":null,\"35\":null,\"36\":{\"created_at\":\"Sat Aug 06 14:32:10 +0000 2022\",\"id\":1555924699447582720,\"id_str\":\"1555924699447582720\",\"full_text\":\"After provoking #Taiwan, #NancyPelosi switched sides.\\n\\nPelosi's weird 'connection': Dig hole = Reach China\\n\\nPelosi says she has always felt a connection with #China through childhood hole digging... take from that what you will.\\n\\n#ChinaTaiwanCrisis #Pelosi https:\\/\\/t.co\\/fvGw0WVjKH\",\"truncated\":false,\"display_text_range\":[0,256],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"China\",\"indices\":[158,164]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[230,248]},{\"text\":\"Pelosi\",\"indices\":[249,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[149,90],\"duration_millis\":8920,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/596x360\\/70NGCSHI1pL3qdXF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/446x270\\/CucLz1-cBpkMl8dF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/1192x720\\/ytG6LXd2A2YEWlns.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/pl\\/Bbp0-06DtKYXAshW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"37\":null,\"38\":null,\"39\":null,\"40\":null,\"41\":null,\"42\":null,\"43\":null,\"44\":null,\"45\":null,\"46\":null,\"47\":null,\"48\":null,\"49\":null,\"50\":null,\"51\":null,\"52\":null,\"53\":null,\"54\":null,\"55\":null,\"56\":null,\"57\":null,\"58\":null,\"59\":null,\"60\":{\"created_at\":\"Fri Aug 05 19:56:02 +0000 2022\",\"id\":1555643813871423488,\"id_str\":\"1555643813871423488\",\"full_text\":\"US Africa strategy has nothing to do with Africa. It is all about China. Denying poor Africans Chinese assistance is the most ugly and inhumane form of imperialism. https:\\/\\/t.co\\/VC9nwiTWw5\",\"truncated\":false,\"display_text_range\":[0,164],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555643805440909312,\"id_str\":\"1555643805440909312\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"url\":\"https:\\/\\/t.co\\/VC9nwiTWw5\",\"display_url\":\"pic.twitter.com\\/VC9nwiTWw5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GalLuft\\/status\\/1555643813871423488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":562,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":907,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":907,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555643805440909312,\"id_str\":\"1555643805440909312\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"url\":\"https:\\/\\/t.co\\/VC9nwiTWw5\",\"display_url\":\"pic.twitter.com\\/VC9nwiTWw5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GalLuft\\/status\\/1555643813871423488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":562,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":907,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":907,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1002847441358426112,\"id_str\":\"1002847441358426112\",\"name\":\"Gal Luft\",\"screen_name\":\"GalLuft\",\"location\":\"Never-never land\",\"description\":\"Director, https:\\/\\/t.co\\/XlRTtEqImz; Director, Center for World Political Economy, Ostim Technical University, author and columnist. Latest book: De-dollarization.\",\"url\":\"https:\\/\\/t.co\\/8ZLClLPU1L\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8ZLClLPU1L\",\"expanded_url\":\"http:\\/\\/www.iags.org\",\"display_url\":\"iags.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XlRTtEqImz\",\"expanded_url\":\"http:\\/\\/IAGS.org\",\"display_url\":\"IAGS.org\",\"indices\":[10,33]}]}},\"protected\":false,\"followers_count\":1939,\"friends_count\":1017,\"listed_count\":23,\"created_at\":\"Sat Jun 02 09:40:36 +0000 2018\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3191,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1226424154452299777\\/caeoGJwe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1226424154452299777\\/caeoGJwe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1002847441358426112\\/1596615438\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":610,\"favorite_count\":1921,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"61\":{\"created_at\":\"Fri Aug 05 13:51:46 +0000 2022\",\"id\":1555552144186609664,\"id_str\":\"1555552144186609664\",\"full_text\":\"BREAKING: Israel hits Gaza with airstrikes https:\\/\\/t.co\\/ST9SwXYfAc https:\\/\\/t.co\\/LGaixvktbn\",\"truncated\":false,\"display_text_range\":[0,66],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ST9SwXYfAc\",\"expanded_url\":\"http:\\/\\/aje.io\\/0b0txb\",\"display_url\":\"aje.io\\/0b0txb\",\"indices\":[43,66]}],\"media\":[{\"id\":1555552104420450304,\"id_str\":\"1555552104420450304\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"url\":\"https:\\/\\/t.co\\/LGaixvktbn\",\"display_url\":\"pic.twitter.com\\/LGaixvktbn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AJEnglish\\/status\\/1555552144186609664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555552104420450304,\"id_str\":\"1555552104420450304\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"url\":\"https:\\/\\/t.co\\/LGaixvktbn\",\"display_url\":\"pic.twitter.com\\/LGaixvktbn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AJEnglish\\/status\\/1555552144186609664\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZZuZbWXoAANaO1.mp4\"}]}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4970411,\"id_str\":\"4970411\",\"name\":\"Al Jazeera English\",\"screen_name\":\"AJEnglish\",\"location\":\"Doha, Qatar\",\"description\":\"Hear the human story and join the discussion. We go beyond cold facts and bring to light what matters. For breaking news alerts, follow @AJENews.\",\"url\":\"https:\\/\\/t.co\\/fDSF1GNVXl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fDSF1GNVXl\",\"expanded_url\":\"http:\\/\\/aljazeera.com\",\"display_url\":\"aljazeera.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7989296,\"friends_count\":240,\"listed_count\":56552,\"created_at\":\"Tue Apr 17 08:23:08 +0000 2007\",\"favourites_count\":10539,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":311249,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1190503555901394944\\/T4qowO0X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1190503555901394944\\/T4qowO0X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4970411\\/1642774290\",\"profile_link_color\":\"234D8C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDDDDD\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":704,\"favorite_count\":1116,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"62\":null,\"63\":null,\"64\":null,\"65\":null,\"66\":null,\"67\":null,\"68\":null,\"69\":null,\"70\":null,\"71\":null,\"72\":null,\"73\":null,\"74\":null,\"75\":{\"created_at\":\"Mon Jul 18 16:52:12 +0000 2022\",\"id\":1549074567817297920,\"id_str\":\"1549074567817297920\",\"full_text\":\"I got this nudge from my Spirit yesterday!!!, \\n\\nIt says the start of #WWIII will be an *intercation between #Israel and one #MiddleEast country which will be blown into full artilleries between #ally Countries!!!, \\n\\n#THEWORDOFGODMUSTBEFULFILLED\\n#OOMQUOTES\",\"truncated\":false,\"display_text_range\":[0,255],\"entities\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[69,75]},{\"text\":\"Israel\",\"indices\":[108,115]},{\"text\":\"MiddleEast\",\"indices\":[124,135]},{\"text\":\"ally\",\"indices\":[194,199]},{\"text\":\"THEWORDOFGODMUSTBEFULFILLED\",\"indices\":[216,244]},{\"text\":\"OOMQUOTES\",\"indices\":[245,255]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"76\":null,\"77\":null,\"78\":null,\"79\":null,\"80\":null,\"81\":null,\"82\":null,\"83\":null,\"84\":null,\"85\":null,\"86\":null,\"87\":{\"created_at\":\"Wed Jun 08 18:54:25 +0000 2022\",\"id\":1534609811387686915,\"id_str\":\"1534609811387686915\",\"full_text\":\"We can't get over these views of our recent #utilitysolar project in Benicia, CA. This 7 MW PV power plant featuring #solartrackers is owned by @GreenbackerCap is expected to offset an estimated 9,980 metric tons of carbon dioxide emissions annually. https:\\/\\/t.co\\/T5FTmJyrMa https:\\/\\/t.co\\/i1k70L3fG8\",\"truncated\":false,\"display_text_range\":[0,274],\"entities\":{\"hashtags\":[{\"text\":\"utilitysolar\",\"indices\":[44,57]},{\"text\":\"solartrackers\",\"indices\":[117,131]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GreenbackerCap\",\"name\":\"Greenbacker Capital\",\"id\":1525658173,\"id_str\":\"1525658173\",\"indices\":[144,159]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/T5FTmJyrMa\",\"expanded_url\":\"https:\\/\\/hubs.li\\/Q01d7mYv0\",\"display_url\":\"hubs.li\\/Q01d7mYv0\",\"indices\":[251,274]}],\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48339,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/1280x720\\/4L8VZxSV6kVgKpS3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/pl\\/-NuO51PBN7LFT-Ov.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/640x360\\/WkOOL32plgrFk61x.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/480x270\\/scP8A75yBmcEFYnP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Sprout Social<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2176931268,\"id_str\":\"2176931268\",\"name\":\"Borrego\",\"screen_name\":\"Borrego_Energy\",\"location\":\"United States\",\"description\":\"Borrego leads and accelerates the delivery of large commercial, community solar, and utility-scale solar and energy storage projects in the United States.\",\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"expanded_url\":\"http:\\/\\/www.borregoenergy.com\",\"display_url\":\"borregoenergy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1944,\"friends_count\":340,\"listed_count\":50,\"created_at\":\"Tue Nov 05 22:35:00 +0000 2013\",\"favourites_count\":223,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2176931268\\/1611588553\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":6,\"favorite_count\":10,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"88\":null,\"89\":{\"created_at\":\"Wed Jun 08 18:54:25 +0000 2022\",\"id\":1534609811387686915,\"id_str\":\"1534609811387686915\",\"full_text\":\"We can't get over these views of our recent #utilitysolar project in Benicia, CA. This 7 MW PV power plant featuring #solartrackers is owned by @GreenbackerCap is expected to offset an estimated 9,980 metric tons of carbon dioxide emissions annually. https:\\/\\/t.co\\/T5FTmJyrMa https:\\/\\/t.co\\/i1k70L3fG8\",\"truncated\":false,\"display_text_range\":[0,274],\"entities\":{\"hashtags\":[{\"text\":\"utilitysolar\",\"indices\":[44,57]},{\"text\":\"solartrackers\",\"indices\":[117,131]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GreenbackerCap\",\"name\":\"Greenbacker Capital\",\"id\":1525658173,\"id_str\":\"1525658173\",\"indices\":[144,159]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/T5FTmJyrMa\",\"expanded_url\":\"https:\\/\\/hubs.li\\/Q01d7mYv0\",\"display_url\":\"hubs.li\\/Q01d7mYv0\",\"indices\":[251,274]}],\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48339,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/1280x720\\/4L8VZxSV6kVgKpS3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/pl\\/-NuO51PBN7LFT-Ov.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/640x360\\/WkOOL32plgrFk61x.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/480x270\\/scP8A75yBmcEFYnP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Sprout Social<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2176931268,\"id_str\":\"2176931268\",\"name\":\"Borrego\",\"screen_name\":\"Borrego_Energy\",\"location\":\"United States\",\"description\":\"Borrego leads and accelerates the delivery of large commercial, community solar, and utility-scale solar and energy storage projects in the United States.\",\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"expanded_url\":\"http:\\/\\/www.borregoenergy.com\",\"display_url\":\"borregoenergy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1944,\"friends_count\":340,\"listed_count\":50,\"created_at\":\"Tue Nov 05 22:35:00 +0000 2013\",\"favourites_count\":223,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2176931268\\/1611588553\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":6,\"favorite_count\":10,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"90\":{\"created_at\":\"Tue Aug 02 08:38:43 +0000 2022\",\"id\":1554386198868725762,\"id_str\":\"1554386198868725762\",\"full_text\":\"This is a perfect response to Dino Melaye\\ud83d\\ude39\\ud83d\\ude39. I pity anyone that comes for Peter Obi with baseless talks this period. We are ready for you \\ud83d\\udc4d\\ud83d\\udc4d\\n__\\nOsinbajo |South east |Zack Orji| Endsars |Sam Omatseye| Rufai| IPOB| Osama Bin Laden |Igbos| Katsina| Okowa| lekki |adamawa| https:\\/\\/t.co\\/l7PYkgawqF\",\"truncated\":false,\"display_text_range\":[0,268],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554386128811294720,\"id_str\":\"1554386128811294720\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"url\":\"https:\\/\\/t.co\\/l7PYkgawqF\",\"display_url\":\"pic.twitter.com\\/l7PYkgawqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":240,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554386128811294720,\"id_str\":\"1554386128811294720\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"url\":\"https:\\/\\/t.co\\/l7PYkgawqF\",\"display_url\":\"pic.twitter.com\\/l7PYkgawqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":240,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":140000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554386128811294720\\/pu\\/pl\\/ot2BDWN2LHwqFIAp.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554386128811294720\\/pu\\/vid\\/426x240\\/CV4-RkDDO2ntQb_0.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1320715998798950413,\"id_str\":\"1320715998798950413\",\"name\":\"NK\\u00a3M #PeterObi2023\\uea00\",\"screen_name\":\"Nkemchor_\",\"location\":\"\",\"description\":\"GOOD GOVERNANCE ADVOCATE| A die-hard Fan of H.E Peter Obi ~A NATIONAL TREASURE!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27468,\"friends_count\":3080,\"listed_count\":17,\"created_at\":\"Mon Oct 26 13:16:58 +0000 2020\",\"favourites_count\":208233,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544753588936888322\\/b9L-O-1l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544753588936888322\\/b9L-O-1l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320715998798950413\\/1657298317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3707,\"favorite_count\":6613,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"91\":null,\"92\":null,\"93\":null,\"94\":null,\"95\":null,\"96\":null,\"97\":null,\"98\":null,\"99\":null,\"100\":null,\"101\":null,\"102\":null,\"103\":null,\"104\":null,\"105\":null,\"106\":null,\"107\":null,\"108\":null,\"109\":null,\"110\":null,\"111\":null,\"112\":{\"created_at\":\"Fri Aug 05 09:37:16 +0000 2022\",\"id\":1555488096069865472,\"id_str\":\"1555488096069865472\",\"full_text\":\"Feel Free to message me for your Architectural Designs\\/Visualization, Interior designs, Construction work.\\n \\u260e\\ufe0f: +2347019503019\\nE-mail: akoduabiola2@gmail.com https:\\/\\/t.co\\/vwMYi8kocf\",\"truncated\":false,\"display_text_range\":[0,157],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555488054055505920,\"id_str\":\"1555488054055505920\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1152,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555488054055505920,\"id_str\":\"1555488054055505920\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1152,\"resize\":\"fit\"}}},{\"id\":1555488054059700224,\"id_str\":\"1555488054059700224\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKXkAAceDF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKXkAAceDF.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555488054059614210,\"id_str\":\"1555488054059614210\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKWQAIAPuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKWQAIAPuv.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2482037701,\"id_str\":\"2482037701\",\"name\":\"Abiola Akodu\",\"screen_name\":\"The_man_abiola\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your step-daddy| ARCHITECT | Creative designer \\ud83d\\udc69\\u200d\\ud83c\\udfa8 | NOTION DESIGNS | CONTACT ME\\u260e\\ufe0f: +2347019503019 | E-mail \\ud83d\\udcec: akoduabiola2@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":132,\"friends_count\":226,\"listed_count\":0,\"created_at\":\"Wed May 07 12:34:29 +0000 2014\",\"favourites_count\":2591,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2482037701\\/1655583774\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"113\":{\"created_at\":\"Fri Aug 05 09:23:34 +0000 2022\",\"id\":1555484650553892864,\"id_str\":\"1555484650553892864\",\"full_text\":\"\\ud83e\\udd8b\\nI asked what your Weakness was in our new relationship, you said you can't pound yam that I should help you out! And I said that's not my strength in a relationship!\\n\\nDiane why are you texting me that you no longer interested in me! I can't loose my strength for you nah\\ud83d\\ude02\\ud83d\\ude12\\ud83d\\ude29\",\"truncated\":false,\"display_text_range\":[0,275],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2657,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1548,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2054,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"114\":null,\"115\":null,\"116\":null,\"117\":null,\"118\":null,\"119\":null,\"120\":null,\"121\":null,\"122\":null,\"123\":null,\"124\":null,\"125\":null,\"126\":null,\"127\":null,\"128\":null,\"129\":null,\"130\":null,\"131\":null,\"132\":null,\"133\":null,\"134\":null,\"135\":null,\"136\":null,\"137\":null,\"138\":{\"created_at\":\"Thu Aug 04 19:24:13 +0000 2022\",\"id\":1555273417955446786,\"id_str\":\"1555273417955446786\",\"full_text\":\"Dear @peterobi, 90% of my pple re not online bcos of poverty & none access to d internet. They hav radio where they are preached to hate other tribe. How do we take this rescue news to them?\\n\\nDavid Hundeyin Oyo State Pere Daniel Bwala Ali Baba reno #AtikuOkowa2023 ASUU #Adekunle https:\\/\\/t.co\\/qDB7l1cwYf\",\"truncated\":false,\"display_text_range\":[0,283],\"entities\":{\"hashtags\":[{\"text\":\"AtikuOkowa2023\",\"indices\":[253,268]},{\"text\":\"Adekunle\",\"indices\":[274,283]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[5,14]}],\"urls\":[],\"media\":[{\"id\":1555273255778500614,\"id_str\":\"1555273255778500614\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":739,\"h\":415,\"resize\":\"fit\"},\"large\":{\"w\":739,\"h\":415,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555273255778500614,\"id_str\":\"1555273255778500614\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":739,\"h\":415,\"resize\":\"fit\"},\"large\":{\"w\":739,\"h\":415,\"resize\":\"fit\"}}},{\"id\":1555273319766794241,\"id_str\":\"1555273319766794241\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVw2BlXoAE9Ib8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVw2BlXoAE9Ib8.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":738,\"h\":415,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":415,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1537786289419956224,\"id_str\":\"1537786289419956224\",\"name\":\"Maryam Shehu\",\"screen_name\":\"maryam_shehu_\",\"location\":\"Abuja\",\"description\":\"I say it the way it is. I hate injustice. I'm a proud Fulani. Muslimah 100%\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1451,\"friends_count\":13,\"listed_count\":1,\"created_at\":\"Fri Jun 17 13:18:30 +0000 2022\",\"favourites_count\":764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537788550690775040\\/d3dJvF3U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537788550690775040\\/d3dJvF3U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537786289419956224\\/1655472339\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":4886,\"favorite_count\":9880,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"139\":null,\"140\":null,\"141\":null,\"142\":null,\"143\":null,\"144\":null,\"145\":null,\"146\":null,\"147\":null,\"148\":null,\"149\":null,\"150\":null,\"151\":null,\"152\":null,\"153\":null,\"154\":null,\"155\":null,\"156\":null,\"157\":null,\"158\":null,\"159\":null,\"160\":null,\"161\":null,\"162\":null,\"163\":null,\"164\":null,\"165\":null,\"166\":null,\"167\":null,\"168\":null,\"169\":null,\"170\":null,\"171\":null,\"172\":null,\"173\":null,\"174\":null,\"175\":{\"created_at\":\"Mon Aug 01 19:20:16 +0000 2022\",\"id\":1554185261956730882,\"id_str\":\"1554185261956730882\",\"full_text\":\"The US banned Hawaiian language, poisons our water, invaded our country, & illegally occupies Hawaii to this day, but speaks of 'supporting Taiwan independence'. My mother's hands were broken for speaking Hawaiian in school, and we are punished TODAY for speaking Hawaiian. https:\\/\\/t.co\\/rkLLkDh7gl\",\"truncated\":false,\"display_text_range\":[0,277],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554183991686623232,\"id_str\":\"1554183991686623232\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"url\":\"https:\\/\\/t.co\\/rkLLkDh7gl\",\"display_url\":\"pic.twitter.com\\/rkLLkDh7gl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SilverSpookGuy\\/status\\/1554185261956730882\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554183991686623232,\"id_str\":\"1554183991686623232\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"url\":\"https:\\/\\/t.co\\/rkLLkDh7gl\",\"display_url\":\"pic.twitter.com\\/rkLLkDh7gl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SilverSpookGuy\\/status\\/1554185261956730882\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":105743,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183991686623232\\/pu\\/vid\\/480x360\\/kwnwOHLqtmyizBWv.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183991686623232\\/pu\\/vid\\/360x270\\/njBRA-vV3oTpSOPF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183991686623232\\/pu\\/pl\\/GzA2mb6OCY4VAXaJ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":384763249,\"id_str\":\"384763249\",\"name\":\"Silver Spook\",\"screen_name\":\"SilverSpookGuy\",\"location\":\"Hawaii, USA\",\"description\":\"Creator of Neofeud https:\\/\\/t.co\\/onPxuHF3sJ Native Hawaiian, social worker, teacher. Kia'i. Cyberpunk. AKA Christian Miller\",\"url\":\"https:\\/\\/t.co\\/0r0jPRdXRW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0r0jPRdXRW\",\"expanded_url\":\"http:\\/\\/silverspookgames.com\",\"display_url\":\"silverspookgames.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/onPxuHF3sJ\",\"expanded_url\":\"http:\\/\\/bit.ly\\/2haV9hM\",\"display_url\":\"bit.ly\\/2haV9hM\",\"indices\":[19,42]}]}},\"protected\":false,\"followers_count\":21440,\"friends_count\":16891,\"listed_count\":101,\"created_at\":\"Tue Oct 04 08:44:30 +0000 2011\",\"favourites_count\":82060,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/911674029647454208\\/4zfPiuai_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/911674029647454208\\/4zfPiuai_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/384763249\\/1506023097\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":13829,\"favorite_count\":43244,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"176\":null,\"177\":null,\"178\":null,\"179\":null,\"180\":null,\"181\":null,\"182\":null,\"183\":null,\"184\":null,\"185\":null,\"186\":null,\"187\":null,\"188\":null,\"189\":null,\"190\":null,\"191\":null,\"192\":null,\"193\":null,\"194\":null,\"195\":null,\"196\":null,\"197\":null,\"198\":null,\"199\":null,\"200\":null,\"201\":null,\"202\":null,\"203\":null,\"204\":null,\"205\":null,\"206\":null,\"207\":null,\"208\":null,\"209\":null,\"210\":null,\"211\":null,\"212\":null,\"213\":null,\"214\":null,\"215\":null,\"216\":null,\"217\":null,\"218\":null,\"219\":null,\"220\":null,\"221\":{\"created_at\":\"Thu Aug 04 19:49:49 +0000 2022\",\"id\":1555279861073453056,\"id_str\":\"1555279861073453056\",\"full_text\":\"Congratulations Goodness Chiemerie Nwachukwu \\ud83c\\uddf3\\ud83c\\uddecmy namesake for emerging the winner women's discus throw F42-44 \\ud83c\\udf89\\ud83c\\udf8a\\ud83e\\ude85 https:\\/\\/t.co\\/lqvCszpDgo\",\"truncated\":false,\"display_text_range\":[0,114],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555279801052700676,\"id_str\":\"1555279801052700676\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"url\":\"https:\\/\\/t.co\\/lqvCszpDgo\",\"display_url\":\"pic.twitter.com\\/lqvCszpDgo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnpaulez16\\/status\\/1555279861073453056\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555279801052700676,\"id_str\":\"1555279801052700676\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"url\":\"https:\\/\\/t.co\\/lqvCszpDgo\",\"display_url\":\"pic.twitter.com\\/lqvCszpDgo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnpaulez16\\/status\\/1555279861073453056\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,20],\"duration_millis\":15115,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/vid\\/480x1066\\/CUPml6wwRg5MAhzU.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/pl\\/S6Lr_kSfpEErFjSJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/vid\\/320x710\\/BMx4SDzUlDM821Fq.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/vid\\/576x1280\\/ho559TB_gfCIKQh-.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3332599954,\"id_str\":\"3332599954\",\"name\":\"Johnpaul Chukwuemeri\",\"screen_name\":\"johnpaulez16\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Dealer on all kinds of food condiments and general goods.\\n\\nHoly Spirit is my great provider\\n#We are @messi #NFT || #BTC || #ETH || #CRYPTO || #TRADER #COLLECTOR\",\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"expanded_url\":\"https:\\/\\/www.binance.me\\/en\\/activity\\/referral\\/offers\\/claim?ref=CPA_00EP5D3DYW\",\"display_url\":\"binance.me\\/en\\/activity\\/re\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":246,\"friends_count\":1306,\"listed_count\":15,\"created_at\":\"Thu Jun 18 12:33:33 +0000 2015\",\"favourites_count\":5527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1518,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3332599954\\/1455231986\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"222\":null,\"223\":null,\"224\":null,\"225\":null,\"226\":null,\"227\":null,\"228\":null,\"229\":null,\"230\":null,\"231\":null,\"232\":null,\"233\":null,\"234\":null,\"235\":null,\"236\":null,\"237\":null,\"238\":null,\"239\":null,\"240\":null,\"241\":null,\"242\":null,\"243\":null,\"244\":null,\"245\":null,\"246\":null,\"247\":null,\"248\":null,\"249\":null,\"250\":null,\"251\":null,\"252\":null,\"253\":null,\"254\":null,\"255\":null,\"256\":null,\"257\":null,\"258\":null,\"259\":null,\"260\":null,\"261\":null,\"262\":null,\"263\":null,\"264\":null,\"265\":null,\"266\":null,\"267\":null,\"268\":null,\"269\":null,\"270\":null,\"271\":null,\"272\":null,\"273\":null,\"274\":null,\"275\":null,\"276\":null,\"277\":null,\"278\":null,\"279\":null,\"280\":null,\"281\":null,\"282\":null,\"283\":null,\"284\":null,\"285\":null,\"286\":null,\"287\":null,\"288\":null,\"289\":null,\"290\":{\"created_at\":\"Thu Aug 04 08:13:35 +0000 2022\",\"id\":1555104647567777794,\"id_str\":\"1555104647567777794\",\"full_text\":\"Supporting artists\\nFreelance graphic designer and new follower\\nKING SOLOMON https:\\/\\/t.co\\/7TCDQUr8Hh\",\"truncated\":false,\"display_text_range\":[0,75],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7TCDQUr8Hh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sojisanni\\/status\\/1551151571911712768\",\"display_url\":\"twitter.com\\/sojisanni\\/stat\\u2026\",\"indices\":[76,99]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1120382208,\"id_str\":\"1120382208\",\"name\":\"Keith Boldy\",\"screen_name\":\"ktboldy\",\"location\":\"Dudley\",\"description\":\"Commission Pencil portraitArtist. specialising in people portraits & Horse portraits please use link to view my work https:\\/\\/t.co\\/F7omQjlMQJ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/F7omQjlMQJ\",\"expanded_url\":\"https:\\/\\/photos.app.goo.gl\\/NtQbH3jr9R7qnYgP7\",\"display_url\":\"photos.app.goo.gl\\/NtQbH3jr9R7qnY\\u2026\",\"indices\":[117,140]}]}},\"protected\":false,\"followers_count\":33984,\"friends_count\":32398,\"listed_count\":0,\"created_at\":\"Fri Jan 25 22:23:51 +0000 2013\",\"favourites_count\":79072,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":80061,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1181632872916148232\\/7eVNIyib_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1181632872916148232\\/7eVNIyib_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120382208\\/1650444047\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"477b54bb4fc386a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/477b54bb4fc386a8.json\",\"place_type\":\"city\",\"name\":\"Dudley\",\"full_name\":\"Dudley, England\",\"country_code\":\"GB\",\"country\":\"United Kingdom\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-2.191695,52.429765],[-2.057189,52.429765],[-2.057189,52.557702],[-2.191695,52.557702]]]},\"attributes\":{}},\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1551151571911712768,\"quoted_status_id_str\":\"1551151571911712768\",\"retweet_count\":0,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"291\":null,\"292\":null,\"293\":null,\"294\":null,\"295\":null,\"296\":null,\"297\":null,\"298\":null,\"299\":null,\"300\":null,\"301\":null,\"302\":null,\"303\":null,\"304\":null,\"305\":null,\"306\":{\"created_at\":\"Thu Aug 04 15:17:00 +0000 2022\",\"id\":1555211204636905474,\"id_str\":\"1555211204636905474\",\"full_text\":\"Ukraine war: Russia will attack more countries - NATO warns https:\\/\\/t.co\\/V3hNVTy2S4\",\"truncated\":false,\"display_text_range\":[0,83],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V3hNVTy2S4\",\"expanded_url\":\"https:\\/\\/dailypost.ng\\/2022\\/08\\/04\\/ukraine-war-russia-will-attack-more-countries-nato-warns\\/?utm_term=Autofeed&utm_medium=Social&utm_source=Twitter#Echobox=1659626145\",\"display_url\":\"dailypost.ng\\/2022\\/08\\/04\\/ukr\\u2026\",\"indices\":[60,83]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Echobox<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":413428207,\"id_str\":\"413428207\",\"name\":\"Daily Post Nigeria\",\"screen_name\":\"DailyPostNGR\",\"location\":\"Nigeria\",\"description\":\"Get the latest Nigerian News and Features at Daily Post Newspaper - National, Politics, Entertainment, Celebrities, Metro, Sports & Opinions.\",\"url\":\"http:\\/\\/t.co\\/UtPmlOlRfa\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UtPmlOlRfa\",\"expanded_url\":\"http:\\/\\/www.dailypost.ng\\/\",\"display_url\":\"dailypost.ng\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1973633,\"friends_count\":15,\"listed_count\":1325,\"created_at\":\"Tue Nov 15 21:42:32 +0000 2011\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":569484,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1320328989441929217\\/Qgpzb-0-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1320328989441929217\\/Qgpzb-0-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/413428207\\/1488401285\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":7,\"favorite_count\":29,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"307\":null,\"308\":null,\"309\":null,\"310\":null,\"311\":null,\"312\":null,\"313\":null,\"314\":null,\"315\":null,\"316\":null,\"317\":null,\"318\":null,\"319\":null,\"320\":null,\"321\":null,\"322\":null,\"323\":null,\"324\":null,\"325\":null,\"326\":null,\"327\":null,\"328\":null,\"329\":null,\"330\":null,\"331\":null,\"332\":null,\"333\":null,\"334\":null,\"335\":null,\"336\":null,\"337\":null,\"338\":null,\"339\":null,\"340\":null,\"341\":null,\"342\":null,\"343\":null,\"344\":null,\"345\":null,\"346\":null,\"347\":null,\"348\":null,\"349\":null,\"350\":null,\"351\":null,\"352\":null,\"353\":null,\"354\":null,\"355\":null,\"356\":null,\"357\":null,\"358\":null,\"359\":null,\"360\":null,\"361\":null,\"362\":null,\"363\":null,\"364\":null,\"365\":null,\"366\":null,\"367\":null,\"368\":null,\"369\":null,\"370\":null,\"371\":null,\"372\":null,\"373\":null,\"374\":null,\"375\":{\"created_at\":\"Thu Aug 04 11:42:20 +0000 2022\",\"id\":1555157182743777280,\"id_str\":\"1555157182743777280\",\"full_text\":\"11 days to go \\ud83d\\udc83\\nWe are getting closer and your support is highly needed. Let's support Child Tech Education.\\nFor sponsorship, use\\nAccount Name: Rubies Technologies\\nAccount number: \\nNaira Account- 5400894525\\nDollar Account - 5400899599\\nBank: Providus bank\\nhttps:\\/\\/t.co\\/uiTXrFd4Vw https:\\/\\/t.co\\/rELEOSffxa\",\"truncated\":false,\"display_text_range\":[0,278],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uiTXrFd4Vw\",\"expanded_url\":\"http:\\/\\/www.rubiestechnologies.org\\/ijoko\",\"display_url\":\"rubiestechnologies.org\\/ijoko\",\"indices\":[255,278]}],\"media\":[{\"id\":1555157158379102209,\"id_str\":\"1555157158379102209\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555157158379102209,\"id_str\":\"1555157158379102209\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555157167275212803,\"id_str\":\"1555157167275212803\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHND1XgAMeAD_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHND1XgAMeAD_.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555157172253753344,\"id_str\":\"1555157172253753344\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHNWYWAAAJ3Iv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHNWYWAAAJ3Iv.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555157175558934529,\"id_str\":\"1555157175558934529\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHNisXEAEhRUD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHNisXEAEhRUD.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":875307882887229440,\"id_str\":\"875307882887229440\",\"name\":\"Rubies Technologies\",\"screen_name\":\"rubiestech\",\"location\":\"Lagos, Nigeria\",\"description\":\"Rubies Technologies is a social enterprise that empowers and inspire kids and teenagers to fall in love with programming and innovation.\",\"url\":\"https:\\/\\/t.co\\/olo8Vnt58d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/olo8Vnt58d\",\"expanded_url\":\"https:\\/\\/rubiestechnologies.org\\/\",\"display_url\":\"rubiestechnologies.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":289,\"friends_count\":54,\"listed_count\":0,\"created_at\":\"Thu Jun 15 11:03:56 +0000 2017\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":668,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1278098274256289793\\/Lh8Gxrvj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1278098274256289793\\/Lh8Gxrvj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/875307882887229440\\/1536021127\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"376\":null,\"377\":null,\"378\":null,\"379\":null,\"380\":{\"created_at\":\"Wed Aug 03 10:57:10 +0000 2022\",\"id\":1554783427471101956,\"id_str\":\"1554783427471101956\",\"full_text\":\"Congratulations @PiCoreTeam on reaching 1.5 million followers. We, the Pioneers, look forward to the future and have full confidence in @nkokkalis and the entire PCT. https:\\/\\/t.co\\/hBmLrMy9uO\",\"truncated\":false,\"display_text_range\":[0,166],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[16,27]},{\"screen_name\":\"nkokkalis\",\"name\":\"Nicolas Kokkalis\",\"id\":16536129,\"id_str\":\"16536129\",\"indices\":[136,146]}],\"urls\":[],\"media\":[{\"id\":1554783424564432896,\"id_str\":\"1554783424564432896\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"url\":\"https:\\/\\/t.co\\/hBmLrMy9uO\",\"display_url\":\"pic.twitter.com\\/hBmLrMy9uO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNewsMedia\\/status\\/1554783427471101956\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554783424564432896,\"id_str\":\"1554783424564432896\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"url\":\"https:\\/\\/t.co\\/hBmLrMy9uO\",\"display_url\":\"pic.twitter.com\\/hBmLrMy9uO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNewsMedia\\/status\\/1554783427471101956\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1313548940944396288,\"id_str\":\"1313548940944396288\",\"name\":\"Pi News\",\"screen_name\":\"PiNewsMedia\",\"location\":\"Palo Alto California\",\"description\":\"@PiCoreTeam & Pi News, & Characteristics and Analysis & KYC Progress.\\n Telegram\\uff1ahttps:\\/\\/t.co\\/NdSn4OkFYp\",\"url\":\"https:\\/\\/t.co\\/1XPCaTegdL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1XPCaTegdL\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/PiNewsMedia\\/\",\"display_url\":\"facebook.com\\/PiNewsMedia\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NdSn4OkFYp\",\"expanded_url\":\"http:\\/\\/t.me\\/PiNews314\",\"display_url\":\"t.me\\/PiNews314\",\"indices\":[80,103]}]}},\"protected\":false,\"followers_count\":192470,\"friends_count\":31,\"listed_count\":92,\"created_at\":\"Tue Oct 06 18:37:40 +0000 2020\",\"favourites_count\":2096,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2291,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546230403920367616\\/W0nfGOAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546230403920367616\\/W0nfGOAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1313548940944396288\\/1652966076\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":427,\"favorite_count\":2344,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"381\":null,\"382\":null,\"383\":null,\"384\":null,\"385\":null,\"386\":null,\"387\":null,\"388\":null,\"389\":{\"created_at\":\"Thu Aug 04 10:05:14 +0000 2022\",\"id\":1555132746267246592,\"id_str\":\"1555132746267246592\",\"full_text\":\"While the government assured the displaced persons of its renewed commitment to having peaceful dialogue with terrorists, residents said reconciliation with the armed groups is not assurance of safety.\\nhttps:\\/\\/t.co\\/540V5tPjfr\",\"truncated\":false,\"display_text_range\":[0,225],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/540V5tPjfr\",\"expanded_url\":\"https:\\/\\/humanglemedia.com\\/amid-rising-insecurity-zamfara-govt-asks-idps-to-return-home\\/\",\"display_url\":\"humanglemedia.com\\/amid-rising-in\\u2026\",\"indices\":[202,225]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Hootsuite Inc.<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2931751387,\"id_str\":\"2931751387\",\"name\":\"HumAngle_\",\"screen_name\":\"HumAngle_\",\"location\":\"Africa\",\"description\":\"We are a media platform committed to the insightful and objective coverage of Africa\\u2019s conflict, humanitarian, and development issues.\",\"url\":\"https:\\/\\/t.co\\/DzDqQS8MC9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DzDqQS8MC9\",\"expanded_url\":\"http:\\/\\/www.humanglemedia.com\",\"display_url\":\"humanglemedia.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47207,\"friends_count\":147,\"listed_count\":208,\"created_at\":\"Tue Dec 16 02:09:58 +0000 2014\",\"favourites_count\":1042,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":17373,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1247241739062173701\\/HgkfV1qL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1247241739062173701\\/HgkfV1qL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2931751387\\/1647349081\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":13,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"390\":null,\"391\":null,\"392\":null,\"393\":null,\"394\":null,\"395\":null,\"396\":null,\"397\":null,\"398\":null,\"399\":null,\"400\":null,\"401\":null,\"402\":null,\"403\":null,\"404\":null,\"405\":null,\"406\":null,\"407\":null,\"408\":null,\"409\":null,\"410\":null,\"411\":null,\"412\":null,\"413\":null,\"414\":null,\"415\":null,\"416\":null,\"417\":null,\"418\":null,\"419\":null,\"420\":null,\"421\":null,\"422\":null,\"423\":null,\"424\":null,\"425\":null,\"426\":null,\"427\":null,\"428\":null,\"429\":null,\"430\":null,\"431\":null,\"432\":null,\"433\":null,\"434\":null,\"435\":null,\"436\":null,\"437\":null,\"438\":null,\"439\":null,\"440\":null,\"441\":null,\"442\":null,\"443\":null,\"444\":null,\"445\":null,\"446\":null,\"447\":null,\"448\":null,\"449\":null,\"450\":null,\"451\":null,\"452\":null,\"453\":null,\"454\":null,\"455\":null,\"456\":null,\"457\":null,\"458\":null,\"459\":null,\"460\":null,\"461\":null,\"462\":null,\"463\":null,\"464\":null,\"465\":null,\"466\":null,\"467\":null,\"468\":null,\"469\":null,\"470\":null,\"471\":null,\"472\":null,\"473\":null,\"474\":null,\"475\":null,\"476\":null,\"477\":null,\"478\":null,\"479\":null,\"480\":null,\"481\":null,\"482\":null,\"483\":null,\"484\":null,\"485\":null,\"486\":null,\"487\":null,\"488\":null,\"489\":null,\"490\":null,\"491\":null,\"492\":null,\"493\":null,\"494\":null,\"495\":null,\"496\":null,\"497\":null,\"498\":null,\"499\":null,\"500\":null,\"501\":null,\"502\":null,\"503\":null,\"504\":null,\"505\":null,\"506\":null,\"507\":null,\"508\":null,\"509\":null,\"510\":null,\"511\":null,\"512\":null,\"513\":null,\"514\":null,\"515\":null,\"516\":null,\"517\":null,\"518\":null,\"519\":null,\"520\":null,\"521\":null,\"522\":null,\"523\":null,\"524\":null,\"525\":null,\"526\":null,\"527\":null,\"528\":null,\"529\":null,\"530\":null,\"531\":null,\"532\":null,\"533\":null,\"534\":null,\"535\":null,\"536\":null,\"537\":null,\"538\":null,\"539\":null,\"540\":null,\"541\":null,\"542\":null,\"543\":null,\"544\":null,\"545\":null,\"546\":{\"created_at\":\"Thu Aug 04 05:00:48 +0000 2022\",\"id\":1555056133601124352,\"id_str\":\"1555056133601124352\",\"full_text\":\"Taiwan says will strengthen self-defence capabilities https:\\/\\/t.co\\/XMrEjd3qje https:\\/\\/t.co\\/7eMzvl4Esd\",\"truncated\":false,\"display_text_range\":[0,77],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XMrEjd3qje\",\"expanded_url\":\"http:\\/\\/reut.rs\\/3JtpvFb\",\"display_url\":\"reut.rs\\/3JtpvFb\",\"indices\":[54,77]}],\"media\":[{\"id\":1555056130820374529,\"id_str\":\"1555056130820374529\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"url\":\"https:\\/\\/t.co\\/7eMzvl4Esd\",\"display_url\":\"pic.twitter.com\\/7eMzvl4Esd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Reuters\\/status\\/1555056133601124352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555056130820374529,\"id_str\":\"1555056130820374529\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"url\":\"https:\\/\\/t.co\\/7eMzvl4Esd\",\"display_url\":\"pic.twitter.com\\/7eMzvl4Esd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Reuters\\/status\\/1555056133601124352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"True Anthem<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1652541,\"id_str\":\"1652541\",\"name\":\"Reuters\",\"screen_name\":\"Reuters\",\"location\":\"Around the world\",\"description\":\"Top and breaking news, pictures and videos from Reuters. For more breaking business news, follow @ReutersBiz.\",\"url\":\"http:\\/\\/t.co\\/BmHxhkm3Mh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BmHxhkm3Mh\",\"expanded_url\":\"http:\\/\\/www.reuters.com\",\"display_url\":\"reuters.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25460861,\"friends_count\":1236,\"listed_count\":135289,\"created_at\":\"Tue Mar 20 17:46:05 +0000 2007\",\"favourites_count\":749,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":892858,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"444444\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1194751949821939712\\/3VBu4_Sa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1194751949821939712\\/3VBu4_Sa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1652541\\/1573687397\",\"profile_link_color\":\"006F97\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"F5F5F5\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":39,\"favorite_count\":247,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"547\":null,\"548\":null,\"549\":null,\"550\":null,\"551\":null,\"552\":null,\"553\":null,\"554\":null,\"555\":null,\"556\":null,\"557\":null,\"558\":null,\"559\":null,\"560\":null,\"561\":null,\"562\":null,\"563\":null,\"564\":null,\"565\":null,\"566\":null,\"567\":null,\"568\":null,\"569\":null,\"570\":null,\"571\":null,\"572\":null,\"573\":null,\"574\":null,\"575\":null,\"576\":null,\"577\":null,\"578\":null,\"579\":null,\"580\":null,\"581\":null,\"582\":null,\"583\":null,\"584\":null,\"585\":null,\"586\":null,\"587\":null,\"588\":null,\"589\":null,\"590\":null,\"591\":null,\"592\":null,\"593\":null,\"594\":null,\"595\":null,\"596\":null,\"597\":null,\"598\":null,\"599\":null,\"600\":{\"created_at\":\"Wed Aug 03 18:19:03 +0000 2022\",\"id\":1554894630889684999,\"id_str\":\"1554894630889684999\",\"full_text\":\"Marc Cucurella to Chelsea, here we go! Full agreement in place between Chelsea and Brighton for more than \\u00a350m. Levi Colwill on the verge of joining Brighton soon. \\ud83d\\udea8\\ud83d\\udd35 #CFC\\n\\nPersonal terms already agreed, no way for Man City. Cucurella will become Chelsea new signing, done. https:\\/\\/t.co\\/5Rw6CvDT1l\",\"truncated\":false,\"display_text_range\":[0,273],\"entities\":{\"hashtags\":[{\"text\":\"CFC\",\"indices\":[167,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554894622521958403,\"id_str\":\"1554894622521958403\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"url\":\"https:\\/\\/t.co\\/5Rw6CvDT1l\",\"display_url\":\"pic.twitter.com\\/5Rw6CvDT1l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FabrizioRomano\\/status\\/1554894630889684999\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554894622521958403,\"id_str\":\"1554894622521958403\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"url\":\"https:\\/\\/t.co\\/5Rw6CvDT1l\",\"display_url\":\"pic.twitter.com\\/5Rw6CvDT1l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FabrizioRomano\\/status\\/1554894630889684999\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":330262748,\"id_str\":\"330262748\",\"name\":\"Fabrizio Romano\",\"screen_name\":\"FabrizioRomano\",\"location\":\"Milano, Italia\",\"description\":\"Here we go! \\u00a9\",\"url\":\"https:\\/\\/t.co\\/Mdq8Bad5GG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Mdq8Bad5GG\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/c\\/FabrizioRomanoYT\",\"display_url\":\"m.youtube.com\\/c\\/FabrizioRoma\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10742525,\"friends_count\":2118,\"listed_count\":15003,\"created_at\":\"Wed Jul 06 10:58:55 +0000 2011\",\"favourites_count\":8908,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":18733,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1486761402853380113\\/3ifAqala_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1486761402853380113\\/3ifAqala_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/330262748\\/1635957145\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":27489,\"favorite_count\":195277,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"601\":null,\"602\":{\"created_at\":\"Wed Aug 03 15:10:45 +0000 2022\",\"id\":1554847243164860418,\"id_str\":\"1554847243164860418\",\"full_text\":\"It doesn\\u2019t matter how much you love your car, and how much you love driving it, there are days when you feel tired after a drive. \\n \\nHere are some ways to de-stress after a long and frustrating day behind the wheel.\\n\\nclick here> https:\\/\\/t.co\\/J0S6yj0K6Z https:\\/\\/t.co\\/3IMKvcmHdG\",\"truncated\":false,\"display_text_range\":[0,255],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J0S6yj0K6Z\",\"expanded_url\":\"https:\\/\\/concept-nova.com\",\"display_url\":\"concept-nova.com\",\"indices\":[232,255]}],\"media\":[{\"id\":1554846814272192513,\"id_str\":\"1554846814272192513\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"url\":\"https:\\/\\/t.co\\/3IMKvcmHdG\",\"display_url\":\"pic.twitter.com\\/3IMKvcmHdG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concept_nova\\/status\\/1554847243164860418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554846814272192513,\"id_str\":\"1554846814272192513\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"url\":\"https:\\/\\/t.co\\/3IMKvcmHdG\",\"display_url\":\"pic.twitter.com\\/3IMKvcmHdG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concept_nova\\/status\\/1554847243164860418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":389545315,\"id_str\":\"389545315\",\"name\":\"Concept Nova\",\"screen_name\":\"concept_nova\",\"location\":\"Nigeria\",\"description\":\"Working to meet Africa's growing tech needs while addressing risks to safety and security. \\ud83d\\udca1 | Powered by Continuous Improvement Enthusiasts\",\"url\":\"https:\\/\\/t.co\\/2B3aEhJsjz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2B3aEhJsjz\",\"expanded_url\":\"http:\\/\\/www.concept-nova.com\",\"display_url\":\"concept-nova.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10031,\"friends_count\":42,\"listed_count\":8,\"created_at\":\"Wed Oct 12 16:11:25 +0000 2011\",\"favourites_count\":216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3846,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1217092176594817028\\/Ht-rmw2c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1217092176594817028\\/Ht-rmw2c_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/389545315\\/1649267667\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":2,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"603\":null,\"604\":null,\"605\":null,\"606\":null,\"607\":null,\"608\":null,\"609\":null,\"610\":null,\"611\":null,\"612\":null,\"613\":null,\"614\":null,\"615\":null,\"616\":null,\"617\":null,\"618\":null,\"619\":null,\"620\":null,\"621\":null,\"622\":null,\"623\":null,\"624\":null,\"625\":null,\"626\":null,\"627\":null,\"628\":null,\"629\":null,\"630\":null,\"631\":null,\"632\":null,\"633\":null,\"634\":null,\"635\":{\"created_at\":\"Wed Aug 03 17:21:15 +0000 2022\",\"id\":1554880088109453314,\"id_str\":\"1554880088109453314\",\"full_text\":\"Saw this on my CL I felt so sad, knowing fully well that I can\\u2019t do it all alone, I feel I should post it here, if it\\u2019s right to do so, I don\\u2019t know but seeing a young guy go through this is so terrifying https:\\/\\/t.co\\/Tn56lsS8ee\",\"truncated\":false,\"display_text_range\":[0,204],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554880072934428674,\"id_str\":\"1554880072934428674\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"url\":\"https:\\/\\/t.co\\/Tn56lsS8ee\",\"display_url\":\"pic.twitter.com\\/Tn56lsS8ee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Meekzainny\\/status\\/1554880088109453314\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1034,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":606,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":343,\"h\":680,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554880072934428674,\"id_str\":\"1554880072934428674\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"url\":\"https:\\/\\/t.co\\/Tn56lsS8ee\",\"display_url\":\"pic.twitter.com\\/Tn56lsS8ee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Meekzainny\\/status\\/1554880088109453314\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1034,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":606,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":343,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1106139226259771394,\"id_str\":\"1106139226259771394\",\"name\":\"\\ud83d\\ude18 meek_meek\\ud83d\\ude19\",\"screen_name\":\"Meekzainny\",\"location\":\"Lagos, Nigeria\",\"description\":\"(entrepreneur) crypto trader, iPhone seller..dah girl with the baby look\\ud83d\\ude18 Always optimistic Ambitious baby\\ud83d\\udcaa\\ud83d\\udcaa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1247,\"friends_count\":1321,\"listed_count\":5,\"created_at\":\"Thu Mar 14 10:25:17 +0000 2019\",\"favourites_count\":7617,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1449445317976416262\\/1lLb8Y3r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1449445317976416262\\/1lLb8Y3r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106139226259771394\\/1587548509\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"636\":null,\"637\":null,\"638\":null,\"639\":null,\"640\":null,\"641\":null,\"642\":null,\"643\":null,\"644\":null,\"645\":null,\"646\":null,\"647\":null,\"648\":null,\"649\":null,\"650\":null,\"651\":null,\"652\":null,\"653\":null,\"654\":null,\"655\":null,\"656\":{\"created_at\":\"Wed Aug 03 17:08:00 +0000 2022\",\"id\":1554876749888069632,\"id_str\":\"1554876749888069632\",\"full_text\":\"2022 Toyota Landcruiser V8.\\n\\nThese are the vehicles that Buhari has bought for Niger Republic \\\"to fight insecurity.\\\"\\n\\nWell.. https:\\/\\/t.co\\/5JzA3gRyfz\",\"truncated\":false,\"display_text_range\":[0,124],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554876730929815553,\"id_str\":\"1554876730929815553\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554876730929815553,\"id_str\":\"1554876730929815553\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1554876736415956995,\"id_str\":\"1554876736415956995\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIJ1eXgAMI6S8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIJ1eXgAMI6S8.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":711,\"h\":399,\"resize\":\"fit\"},\"medium\":{\"w\":711,\"h\":399,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}},{\"id\":1554876741243502595,\"id_str\":\"1554876741243502595\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIKHdWAAM4a7p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIKHdWAAM4a7p.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"},\"large\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"}}},{\"id\":1554876747031744518,\"id_str\":\"1554876747031744518\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIKdBXkAY_W7y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIKdBXkAY_W7y.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":294,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":294,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":294,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3315017925,\"id_str\":\"3315017925\",\"name\":\"David Hundeyin\",\"screen_name\":\"DavidHundeyin\",\"location\":\"EMEA\",\"description\":\"Founder @WestAfricaWeek. Purveyor of words @BusinessDayNG. Retired hurricane. 2020 People Journalism Prize for Africa winner.\",\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"expanded_url\":\"https:\\/\\/davidhundeyin.com\",\"display_url\":\"davidhundeyin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":430581,\"friends_count\":2289,\"listed_count\":517,\"created_at\":\"Tue Jun 09 14:26:32 +0000 2015\",\"favourites_count\":88533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3315017925\\/1624235090\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":11648,\"favorite_count\":22232,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"657\":null,\"658\":null,\"659\":{\"created_at\":\"Tue Aug 02 05:49:20 +0000 2022\",\"id\":1554343569783152640,\"id_str\":\"1554343569783152640\",\"full_text\":\"Today\\u2019s Deal \\ud83d\\udcaf \\ud83d\\udd25 \\nAcer Aspire Laptop\\n\\u2022 4GB RAM\\n\\u2022 320GB HDD\\n\\u2022 Intel Core 2 Duo\\n\\u2022 15.6\\u201d HD Display\\n\\u2022 Windows 10 Pro\\n\\u2022 Webcam\\n\\u2022 Bluetooth\\n\\u2022 USB\\n\\u2022 VGA\\n\\u2022 HDMI\\n\\nPrice : #85,000\\n\\nCarter Efe Wizkid | Go and Verify Afghanistan God Abeg Phyna Khalid Igbo Deji #BBNajia #Ukraine https:\\/\\/t.co\\/2T4LWmLPQZ\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[250,258]},{\"text\":\"Ukraine\",\"indices\":[259,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554343508932268032,\"id_str\":\"1554343508932268032\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508928069632,\"id_str\":\"1554343508928069632\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508944850945,\"id_str\":\"1554343508944850945\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":7,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"660\":null,\"661\":null,\"662\":null,\"663\":null,\"664\":null,\"665\":null,\"666\":null,\"667\":null,\"668\":{\"created_at\":\"Wed Aug 03 09:47:29 +0000 2022\",\"id\":1554765892931801088,\"id_str\":\"1554765892931801088\",\"full_text\":\"#Gbpusd\\n\\nA short sell on our GBPUSD pair,\\n\\nSl: 1.22164\\n\\nTp: 1.21003\\n#China #cryptomarket #NFTs #TradeDeadline #trade #stocks #Signal\\u4ee4\\u548c\\u30c7\\u30d3\\u30e5\\u30fc https:\\/\\/t.co\\/mzgzX2rwx3 https:\\/\\/t.co\\/9AzSoRYkwL\",\"truncated\":false,\"display_text_range\":[0,162],\"entities\":{\"hashtags\":[{\"text\":\"Gbpusd\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[68,74]},{\"text\":\"cryptomarket\",\"indices\":[75,88]},{\"text\":\"NFTs\",\"indices\":[89,94]},{\"text\":\"TradeDeadline\",\"indices\":[95,109]},{\"text\":\"trade\",\"indices\":[110,116]},{\"text\":\"stocks\",\"indices\":[117,124]},{\"text\":\"Signal\\u4ee4\\u548c\\u30c7\\u30d3\\u30e5\\u30fc\",\"indices\":[125,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mzgzX2rwx3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553839847051333638\",\"display_url\":\"twitter.com\\/drickempire\\/st\\u2026\",\"indices\":[139,162]}],\"media\":[{\"id\":1554764837774843905,\"id_str\":\"1554764837774843905\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"url\":\"https:\\/\\/t.co\\/9AzSoRYkwL\",\"display_url\":\"pic.twitter.com\\/9AzSoRYkwL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554765892931801088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":432,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554764837774843905,\"id_str\":\"1554764837774843905\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"url\":\"https:\\/\\/t.co\\/9AzSoRYkwL\",\"display_url\":\"pic.twitter.com\\/9AzSoRYkwL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554765892931801088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":432,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6919,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1553839847051333638,\"quoted_status_id_str\":\"1553839847051333638\",\"retweet_count\":1,\"favorite_count\":3,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"669\":null,\"670\":null,\"671\":null,\"672\":null,\"673\":null,\"674\":null,\"675\":null,\"676\":null,\"677\":null,\"678\":null,\"679\":null,\"680\":null,\"681\":null,\"682\":null,\"683\":null,\"684\":null,\"685\":null,\"686\":null,\"687\":null,\"688\":null,\"689\":null,\"690\":null,\"691\":null,\"692\":null,\"693\":null,\"694\":null,\"695\":null,\"696\":null,\"697\":null,\"698\":null,\"699\":null,\"700\":null,\"701\":null,\"702\":null,\"703\":null,\"704\":{\"created_at\":\"Wed Aug 03 15:39:21 +0000 2022\",\"id\":1554854442897473539,\"id_str\":\"1554854442897473539\",\"full_text\":\"FG Confirms Purchase of N1.4 billion Worth Of Vehicles For Niger Republic\\nhttps:\\/\\/t.co\\/zf4Ym4j2Qi https:\\/\\/t.co\\/bFxbXhrhPn\",\"truncated\":false,\"display_text_range\":[0,97],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zf4Ym4j2Qi\",\"expanded_url\":\"https:\\/\\/www.channelstv.com\\/2022\\/08\\/03\\/fg-confirms-purchase-of-n1-4-billion-worth-of-vehicles-for-niger-republic\\/\",\"display_url\":\"channelstv.com\\/2022\\/08\\/03\\/fg-\\u2026\",\"indices\":[74,97]}],\"media\":[{\"id\":1554854432189341698,\"id_str\":\"1554854432189341698\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"url\":\"https:\\/\\/t.co\\/bFxbXhrhPn\",\"display_url\":\"pic.twitter.com\\/bFxbXhrhPn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554854442897473539\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554854432189341698,\"id_str\":\"1554854432189341698\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"url\":\"https:\\/\\/t.co\\/bFxbXhrhPn\",\"display_url\":\"pic.twitter.com\\/bFxbXhrhPn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554854442897473539\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":125346858,\"id_str\":\"125346858\",\"name\":\"Channels Television\",\"screen_name\":\"channelstv\",\"location\":\"Nigeria\",\"description\":\"Channels Television is the fourteenth-time winner of the 'Best TV station in Nigeria award' and the most awarded television station in Africa.\",\"url\":\"https:\\/\\/t.co\\/8UPmxt8H3Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8UPmxt8H3Y\",\"expanded_url\":\"https:\\/\\/www.channelstv.com\",\"display_url\":\"channelstv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5732847,\"friends_count\":194,\"listed_count\":3627,\"created_at\":\"Mon Mar 22 14:29:10 +0000 2010\",\"favourites_count\":4780,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":166185,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1215259797014171657\\/m3TD2Je5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1215259797014171657\\/m3TD2Je5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/125346858\\/1642423337\",\"profile_link_color\":\"00009C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3318,\"favorite_count\":5584,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"705\":null,\"706\":null,\"707\":null,\"708\":null,\"709\":null,\"710\":{\"created_at\":\"Mon Aug 01 15:08:16 +0000 2022\",\"id\":1554121845577752577,\"id_str\":\"1554121845577752577\",\"full_text\":\"I just have three rules for my room:\\n\\n1..... Take your shoes at my door.\\n2.... Dust your foot before getting on my bed.\\n3..... Leave my room the way you met it.\\n\\nRespect these rules and we\\u2019re good\\u270c\\ud83c\\udffd\",\"truncated\":false,\"display_text_range\":[0,199],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1537482624591089665,\"id_str\":\"1537482624591089665\",\"name\":\"Man_SeGii\\ud83d\\udc09\",\"screen_name\":\"VaakaSegii\",\"location\":\"Go ask your daddy!\",\"description\":\"MUFC\\u2764\\ufe0f\\ud83e\\udd0d|| \\ud83c\\uddf3\\ud83c\\uddec\\ud83d\\udc09|| Just your average boy\\ud83e\\udd71|| woo go and ask your daddy\\ud83d\\udeae|| if you want to know me, don\\u2019t bother\\ud83d\\ude44..... Post malone fan since White Iverson\\u2728\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":666,\"friends_count\":1340,\"listed_count\":0,\"created_at\":\"Thu Jun 16 17:10:14 +0000 2022\",\"favourites_count\":5788,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5798,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552393505439358977\\/0Jr27_uC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552393505439358977\\/0Jr27_uC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537482624591089665\\/1657478652\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":43,\"favorite_count\":229,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"711\":{\"created_at\":\"Wed Aug 03 05:45:24 +0000 2022\",\"id\":1554704968506085377,\"id_str\":\"1554704968506085377\",\"full_text\":\"Chelsea make 'formal \\u00a350m transfer offer' for Brighton star Marc Cucurella #ChelseaFC https:\\/\\/t.co\\/yu5NQSIkp8\",\"truncated\":false,\"display_text_range\":[0,109],\"entities\":{\"hashtags\":[{\"text\":\"ChelseaFC\",\"indices\":[75,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yu5NQSIkp8\",\"expanded_url\":\"https:\\/\\/www.thesun.co.uk\\/sport\\/19402375\\/chelsea-transfer-offer-brighton-marc-cucurella\\/?utm_term=Autofeed&utm_campaign=sunsportchelseatwitter&utm_medium=Social&utm_source=Twitter#Echobox=1659505417\",\"display_url\":\"thesun.co.uk\\/sport\\/19402375\\u2026\",\"indices\":[86,109]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Echobox<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":61775718,\"id_str\":\"61775718\",\"name\":\"The Sun - Chelsea\",\"screen_name\":\"SunChelsea\",\"location\":\"\",\"description\":\"Follow all the latest news on Chelsea with The Sun @TheSunFootball @SunSport\\nhttps:\\/\\/t.co\\/wLaPNS5UmA\",\"url\":\"https:\\/\\/t.co\\/wLaPNS5UmA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLaPNS5UmA\",\"expanded_url\":\"https:\\/\\/t.me\\/ChelseaSunSport\",\"display_url\":\"t.me\\/ChelseaSunSport\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLaPNS5UmA\",\"expanded_url\":\"https:\\/\\/t.me\\/ChelseaSunSport\",\"display_url\":\"t.me\\/ChelseaSunSport\",\"indices\":[77,100]}]}},\"protected\":false,\"followers_count\":77520,\"friends_count\":6,\"listed_count\":410,\"created_at\":\"Fri Jul 31 13:55:46 +0000 2009\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":25811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/766320068099772416\\/hlPZV2jO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/766320068099772416\\/hlPZV2jO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/61775718\\/1375294484\",\"profile_link_color\":\"00745F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"CFCFCF\",\"profile_text_color\":\"0A000A\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":53,\"favorite_count\":1072,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"712\":null,\"713\":null,\"714\":null,\"715\":null,\"716\":null,\"717\":null,\"718\":null,\"719\":null,\"720\":null,\"721\":{\"created_at\":\"Wed Aug 03 14:51:10 +0000 2022\",\"id\":1554842317974310914,\"id_str\":\"1554842317974310914\",\"full_text\":\"We know say you wan give malaria better wahala, Lyntemin na the ogbenga solution. Wetin you still dey wait for? Make you Call\\/ WhatsApp 07031710880 if you wan buy am quick quick!\\n\\nLYNTEMIN\\n#malaria #malariagenomics #saynotomalaria #healthy #Health #Nigeria #Africa https:\\/\\/t.co\\/YBMVMG8lWx\",\"truncated\":false,\"display_text_range\":[0,264],\"entities\":{\"hashtags\":[{\"text\":\"malaria\",\"indices\":[189,197]},{\"text\":\"malariagenomics\",\"indices\":[198,214]},{\"text\":\"saynotomalaria\",\"indices\":[215,230]},{\"text\":\"healthy\",\"indices\":[231,239]},{\"text\":\"Health\",\"indices\":[240,247]},{\"text\":\"Nigeria\",\"indices\":[248,256]},{\"text\":\"Africa\",\"indices\":[257,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554840299268079616,\"id_str\":\"1554840299268079616\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"url\":\"https:\\/\\/t.co\\/YBMVMG8lWx\",\"display_url\":\"pic.twitter.com\\/YBMVMG8lWx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lynedgepharma\\/status\\/1554842317974310914\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":624,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554840299268079616,\"id_str\":\"1554840299268079616\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"url\":\"https:\\/\\/t.co\\/YBMVMG8lWx\",\"display_url\":\"pic.twitter.com\\/YBMVMG8lWx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lynedgepharma\\/status\\/1554842317974310914\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":624,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,39],\"duration_millis\":32671,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/vid\\/640x624\\/vIPxFv_U81iqKKtq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/pl\\/LWV6tYABUAEHKDXA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/vid\\/276x270\\/P-cQ6_sp4ZoX-xOZ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/vid\\/368x360\\/plnqNuQpbqyUoFss.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1178650260282970112,\"id_str\":\"1178650260282970112\",\"name\":\"Lynedgepharma\",\"screen_name\":\"lynedgepharma\",\"location\":\"Lagos, Nigeria\",\"description\":\"Our objective is to provide quality pharmaceuticals products.\\n\\u25aaAntibiotics\\u25aaAntiMalarial \\u25aaErectile Dysfunction \\u25aaAnti-inflammatory \\u25aaSkin preparation etc\",\"url\":\"https:\\/\\/t.co\\/0paeR0LWlj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0paeR0LWlj\",\"expanded_url\":\"http:\\/\\/www.lynedge.com\",\"display_url\":\"lynedge.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1026,\"friends_count\":1920,\"listed_count\":0,\"created_at\":\"Mon Sep 30 12:38:33 +0000 2019\",\"favourites_count\":129,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":221,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483405441065488385\\/bbqyOwdV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483405441065488385\\/bbqyOwdV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1178650260282970112\\/1591018540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":5,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"722\":null,\"723\":null,\"724\":null,\"725\":{\"created_at\":\"Wed Aug 03 15:15:16 +0000 2022\",\"id\":1554848382019067906,\"id_str\":\"1554848382019067906\",\"full_text\":\"Benjamin Azamati and Sean Sarfo Antwi will be in the semi finals at 6:10pm today for the men's 100m. It will be live on GTVSports+. Stay tuned. \\n#GTVSports \\n#Commonwealthgames \\n#Birmingham2022 https:\\/\\/t.co\\/gJBpQC4Cgn\",\"truncated\":false,\"display_text_range\":[0,192],\"entities\":{\"hashtags\":[{\"text\":\"GTVSports\",\"indices\":[145,155]},{\"text\":\"Commonwealthgames\",\"indices\":[157,175]},{\"text\":\"Birmingham2022\",\"indices\":[177,192]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554848368924540929,\"id_str\":\"1554848368924540929\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPuWoVXwAEVjN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPuWoVXwAEVjN-.jpg\",\"url\":\"https:\\/\\/t.co\\/gJBpQC4Cgn\",\"display_url\":\"pic.twitter.com\\/gJBpQC4Cgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mygtvsports\\/status\\/1554848382019067906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554848368924540929,\"id_str\":\"1554848368924540929\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPuWoVXwAEVjN-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPuWoVXwAEVjN-.jpg\",\"url\":\"https:\\/\\/t.co\\/gJBpQC4Cgn\",\"display_url\":\"pic.twitter.com\\/gJBpQC4Cgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mygtvsports\\/status\\/1554848382019067906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}},{\"id\":1554848377497600000,\"id_str\":\"1554848377497600000\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPuXIRWQAAVwEm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPuXIRWQAAVwEm.jpg\",\"url\":\"https:\\/\\/t.co\\/gJBpQC4Cgn\",\"display_url\":\"pic.twitter.com\\/gJBpQC4Cgn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/mygtvsports\\/status\\/1554848382019067906\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1638,\"h\":2048,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":714553585506377731,\"id_str\":\"714553585506377731\",\"name\":\"GTV SPORTS+\",\"screen_name\":\"mygtvsports\",\"location\":\"Accra, Ghana\",\"description\":\"The official handle of a 24 Hour Sports Channel of @thegbcghana Providing Premium Sports Programs\",\"url\":\"https:\\/\\/t.co\\/rc9a4nNtlH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rc9a4nNtlH\",\"expanded_url\":\"http:\\/\\/www.gbcghanaonline.com\\/sport\",\"display_url\":\"gbcghanaonline.com\\/sport\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":89081,\"friends_count\":219,\"listed_count\":43,\"created_at\":\"Mon Mar 28 20:43:45 +0000 2016\",\"favourites_count\":858,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":12104,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1480411731352600576\\/llYhMUAX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1480411731352600576\\/llYhMUAX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/714553585506377731\\/1644664113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":75,\"favorite_count\":618,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"726\":null,\"727\":null,\"728\":null,\"729\":null,\"730\":null,\"731\":null,\"732\":null,\"733\":null,\"734\":null,\"735\":null,\"736\":null,\"737\":null,\"738\":null,\"739\":null,\"740\":null,\"741\":null,\"742\":null,\"743\":null,\"744\":{\"created_at\":\"Wed Aug 03 14:32:51 +0000 2022\",\"id\":1554837707242733569,\"id_str\":\"1554837707242733569\",\"full_text\":\"@DavidHundeyin everybody is talking about @MBuhari buying vehicles for Niger Republic, but no one is talking about the price of the inflated contract.\\nN1.4b for 10 V8 land cruiser is pure day time robbery and massive corruption. This is @ $280k per vehicle @ today officl xchng https:\\/\\/t.co\\/0Pb1moxQKj\",\"truncated\":false,\"display_text_range\":[0,277],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[0,14]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[42,50]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0Pb1moxQKj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\",\"display_url\":\"twitter.com\\/DavidHundeyin\\/\\u2026\",\"indices\":[278,301]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":3315017925,\"in_reply_to_user_id_str\":\"3315017925\",\"in_reply_to_screen_name\":\"DavidHundeyin\",\"user\":{\"id\":57570221,\"id_str\":\"57570221\",\"name\":\"Iyke Larry\",\"screen_name\":\"Hillike\",\"location\":\"UAE\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":163,\"friends_count\":136,\"listed_count\":2,\"created_at\":\"Fri Jul 17 06:15:54 +0000 2009\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57570221\\/1419692473\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1554575730650013697,\"quoted_status_id_str\":\"1554575730650013697\",\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"745\":null,\"746\":null,\"747\":null,\"748\":null,\"749\":null,\"750\":null,\"751\":null,\"752\":null,\"753\":null,\"754\":null,\"755\":null,\"756\":null,\"757\":null,\"758\":null,\"759\":null,\"760\":null,\"761\":null,\"762\":null,\"763\":null,\"764\":null,\"765\":null,\"766\":null,\"767\":null,\"768\":null,\"769\":null,\"770\":null,\"771\":null,\"772\":null,\"773\":null,\"774\":null,\"775\":null,\"776\":null,\"777\":null,\"778\":null,\"779\":null,\"780\":null,\"781\":null,\"782\":null,\"783\":null,\"784\":null,\"785\":null,\"786\":null,\"787\":null,\"788\":null,\"789\":null,\"790\":null,\"791\":null,\"792\":null,\"793\":null,\"794\":null,\"795\":null,\"796\":null,\"797\":null,\"798\":null,\"799\":null,\"800\":null,\"801\":null,\"802\":null,\"803\":null,\"804\":null,\"805\":null,\"806\":null,\"807\":null,\"808\":null,\"809\":null,\"810\":null,\"811\":null,\"812\":null,\"813\":null,\"814\":null,\"815\":null,\"816\":null,\"817\":null,\"818\":null,\"819\":null,\"820\":null,\"821\":null,\"822\":null,\"823\":null,\"824\":null,\"825\":null,\"826\":null,\"827\":null,\"828\":null,\"829\":null,\"830\":null,\"831\":null,\"832\":null,\"833\":null,\"834\":null,\"835\":{\"created_at\":\"Wed Aug 03 12:23:29 +0000 2022\",\"id\":1554805150509944835,\"id_str\":\"1554805150509944835\",\"full_text\":\"Iphone 14 unbox \\nWhat do you think? Drop a comment below\\nWe are the best gadget \\ud83d\\udd0c \\n08087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/GMKUgiJkav\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[257,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11580,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/320x568\\/ZOQ-_UIIaGkU9o8N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/720x1280\\/8tBG1Zpu4V46u-8y.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/480x852\\/Lk8d_qAHDxCa5cZv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/pl\\/vIu2QsjZeRzHb8P0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":6,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"836\":null,\"837\":null,\"838\":null,\"839\":{\"created_at\":\"Tue Aug 02 11:00:13 +0000 2022\",\"id\":1554421806710358016,\"id_str\":\"1554421806710358016\",\"full_text\":\"\\ud83d\\udce3 #Chevening Scholarship applications are open!\\n\\nStudy in the UK to expand your network and learn vital skills before returning home to achieve your goals and create positive change. Good luck!\\n\\nFind out more at: \\nhttps:\\/\\/t.co\\/S3YXCNR9eK\\n\\n#MyCheveningJourney https:\\/\\/t.co\\/FcoOpGZiW1\",\"truncated\":false,\"display_text_range\":[0,258],\"entities\":{\"hashtags\":[{\"text\":\"Chevening\",\"indices\":[2,12]},{\"text\":\"MyCheveningJourney\",\"indices\":[239,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S3YXCNR9eK\",\"expanded_url\":\"http:\\/\\/chevening.org\\/scholarships\",\"display_url\":\"chevening.org\\/scholarships\",\"indices\":[214,237]}],\"media\":[{\"id\":1554421803396775936,\"id_str\":\"1554421803396775936\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"url\":\"https:\\/\\/t.co\\/FcoOpGZiW1\",\"display_url\":\"pic.twitter.com\\/FcoOpGZiW1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1081,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554421803396775936,\"id_str\":\"1554421803396775936\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"url\":\"https:\\/\\/t.co\\/FcoOpGZiW1\",\"display_url\":\"pic.twitter.com\\/FcoOpGZiW1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1081,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Sprout Social<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":71529987,\"id_str\":\"71529987\",\"name\":\"Chevening Awards\\ud83c\\uddec\\ud83c\\udde7\",\"screen_name\":\"CheveningFCDO\",\"location\":\"London\",\"description\":\"Twitter account of the @FCDOgovUK's Chevening Awards programme, which develops future leaders by offering scholarships and fellowships to study in the UK.\",\"url\":\"https:\\/\\/t.co\\/PPQaozmccJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PPQaozmccJ\",\"expanded_url\":\"http:\\/\\/www.chevening.org\",\"display_url\":\"chevening.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128668,\"friends_count\":5782,\"listed_count\":446,\"created_at\":\"Fri Sep 04 13:08:21 +0000 2009\",\"favourites_count\":7436,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":9244,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"003F72\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1196394046589153280\\/uyAO5wX7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1196394046589153280\\/uyAO5wX7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/71529987\\/1654527470\",\"profile_link_color\":\"84A2BD\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EBEBEB\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":901,\"favorite_count\":1393,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"840\":null,\"841\":null,\"842\":null,\"843\":null,\"844\":null,\"845\":null,\"846\":null,\"847\":null,\"848\":null,\"849\":null,\"850\":null,\"851\":null,\"852\":null,\"853\":null,\"854\":null,\"855\":null,\"856\":null,\"857\":null,\"858\":null,\"859\":null,\"860\":null,\"861\":null,\"862\":null,\"863\":null,\"864\":null,\"865\":null,\"866\":null,\"867\":null,\"868\":null,\"869\":null,\"870\":null,\"871\":null,\"872\":null,\"873\":null,\"874\":null,\"875\":null,\"876\":{\"created_at\":\"Sun Jul 31 09:02:49 +0000 2022\",\"id\":1553667488369500161,\"id_str\":\"1553667488369500161\",\"full_text\":\"#BTC \\n\\nDaily analysis on Bitcoin. \\n* Expecting a retracting bear \\ud83d\\udc3b drop to $22,547 price zone.\\n\\nBefore a huge bull \\ud83d\\udc02 take over is seen as price should hit the $28k price \\u2705\\n\\n#Crypto #NFTs #trading #stocks #forex #sundayvibes https:\\/\\/t.co\\/MouHCoWYgC\",\"truncated\":false,\"display_text_range\":[0,223],\"entities\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[0,4]},{\"text\":\"Crypto\",\"indices\":[173,180]},{\"text\":\"NFTs\",\"indices\":[181,186]},{\"text\":\"trading\",\"indices\":[187,195]},{\"text\":\"stocks\",\"indices\":[196,203]},{\"text\":\"forex\",\"indices\":[204,210]},{\"text\":\"sundayvibes\",\"indices\":[211,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553667482900119553,\"id_str\":\"1553667482900119553\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"url\":\"https:\\/\\/t.co\\/MouHCoWYgC\",\"display_url\":\"pic.twitter.com\\/MouHCoWYgC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553667488369500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553667482900119553,\"id_str\":\"1553667482900119553\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"url\":\"https:\\/\\/t.co\\/MouHCoWYgC\",\"display_url\":\"pic.twitter.com\\/MouHCoWYgC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553667488369500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6919,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":2,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"877\":null,\"878\":null,\"879\":null,\"880\":null,\"881\":null,\"882\":null,\"883\":null,\"884\":null,\"885\":null,\"886\":null,\"887\":null,\"888\":null,\"889\":null,\"890\":null,\"891\":null,\"892\":null,\"893\":null,\"894\":null,\"895\":null,\"896\":null,\"897\":null,\"898\":{\"created_at\":\"Tue Aug 02 11:59:38 +0000 2022\",\"id\":1554436761706700802,\"id_str\":\"1554436761706700802\",\"full_text\":\"Are you having your wedding on a budget?\\nSo your souvenirs can also be on a budget \\n\\n20k pay 18k\\n50k pay 45k\\n100k pay 90k\\n200k pay 180k\\n#Taiwan #Pelosi #BambamSorry #helicopter #BBNaija #Bitcoin https:\\/\\/t.co\\/lRxScnQBrj\",\"truncated\":false,\"display_text_range\":[0,194],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"Pelosi\",\"indices\":[144,151]},{\"text\":\"BambamSorry\",\"indices\":[152,164]},{\"text\":\"helicopter\",\"indices\":[165,176]},{\"text\":\"BBNaija\",\"indices\":[177,185]},{\"text\":\"Bitcoin\",\"indices\":[186,194]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554436515639578630,\"id_str\":\"1554436515639578630\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1800,\"h\":1800,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554436515639578630,\"id_str\":\"1554436515639578630\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1800,\"h\":1800,\"resize\":\"fit\"}}},{\"id\":1554436595184537601,\"id_str\":\"1554436595184537601\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ32PnXkAEOL4q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ32PnXkAEOL4q.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554436639446933504,\"id_str\":\"1554436639446933504\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ340gWIAAvhmh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ340gWIAAvhmh.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554436701640183808,\"id_str\":\"1554436701640183808\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ38cMX0AA9yDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ38cMX0AA9yDz.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1490776918626648064,\"id_str\":\"1490776918626648064\",\"name\":\"Adedoyin Adebisi\",\"screen_name\":\"loyins_onibag\",\"location\":\"\",\"description\":\"\\ud83d\\udc49\\ud83c\\udffd100% African\\n\\ud83d\\udc49\\ud83c\\udffdHandmade bags and accessories\\n\\ud83d\\udc49\\ud83c\\udffdRetail | Wholesale | Custom Labels\\nPart of our profits goes to school bags @eranthis_foundation\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":60,\"listed_count\":0,\"created_at\":\"Mon Feb 07 19:58:21 +0000 2022\",\"favourites_count\":318,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":78,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490777218955587585\\/v4jxOvMk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490777218955587585\\/v4jxOvMk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490776918626648064\\/1654524784\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":4,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"899\":null,\"900\":null,\"901\":null,\"902\":null,\"903\":null,\"904\":null,\"905\":null,\"906\":null,\"907\":null,\"908\":null,\"909\":null,\"910\":null,\"911\":null,\"912\":null,\"913\":null,\"914\":null,\"915\":null,\"916\":null,\"917\":null,\"918\":null,\"919\":null,\"920\":null,\"921\":null,\"922\":null,\"923\":null,\"924\":null,\"925\":null,\"926\":null,\"927\":null,\"928\":null,\"929\":null,\"930\":null,\"931\":null,\"932\":null,\"933\":null,\"934\":null,\"935\":null,\"936\":null,\"937\":null,\"938\":null,\"939\":null,\"940\":null,\"941\":null,\"942\":null,\"943\":null,\"944\":null,\"945\":null,\"946\":null,\"947\":null,\"948\":null,\"949\":null,\"950\":null,\"951\":null,\"952\":null,\"953\":null,\"954\":null,\"955\":null,\"956\":null,\"957\":null,\"958\":null,\"959\":null,\"960\":null,\"961\":null,\"962\":null,\"963\":null,\"964\":null,\"965\":{\"created_at\":\"Wed Aug 03 08:10:19 +0000 2022\",\"id\":1554741440797884416,\"id_str\":\"1554741440797884416\",\"full_text\":\"Why Nigeria\\u2019s only surviving barter market may soon go\\u00a0extinct https:\\/\\/t.co\\/cpmUXMDmQw\",\"truncated\":false,\"display_text_range\":[0,86],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cpmUXMDmQw\",\"expanded_url\":\"https:\\/\\/guardpost.ng\\/why-nigerias-only-surviving-barter-market-may-soon-go-extinct\\/\",\"display_url\":\"guardpost.ng\\/why-nigerias-o\\u2026\",\"indices\":[63,86]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"WordPress.com<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1526171772646719489,\"id_str\":\"1526171772646719489\",\"name\":\"Guardpost.ng\",\"screen_name\":\"GuardpostNg\",\"location\":\"Nigeria\",\"description\":\"A first rate investigative and advocacy journalism organisation led by multiple award-wining journalists with a mission to provide journalism at its best.\",\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"expanded_url\":\"http:\\/\\/www.guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Mon May 16 12:05:21 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526171772646719489\\/1655326290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"966\":null,\"967\":{\"created_at\":\"Tue Aug 02 19:26:23 +0000 2022\",\"id\":1554549189392027648,\"id_str\":\"1554549189392027648\",\"full_text\":\"Unbelievable story of Calabar\\u2019s open\\u00a0defecation https:\\/\\/t.co\\/QOchg44Sc4\",\"truncated\":false,\"display_text_range\":[0,71],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QOchg44Sc4\",\"expanded_url\":\"https:\\/\\/guardpost.ng\\/unbelievable-story-of-calabars-open-defecation\\/\",\"display_url\":\"guardpost.ng\\/unbelievable-s\\u2026\",\"indices\":[48,71]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"WordPress.com<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1526171772646719489,\"id_str\":\"1526171772646719489\",\"name\":\"Guardpost.ng\",\"screen_name\":\"GuardpostNg\",\"location\":\"Nigeria\",\"description\":\"A first rate investigative and advocacy journalism organisation led by multiple award-wining journalists with a mission to provide journalism at its best.\",\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"expanded_url\":\"http:\\/\\/www.guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Mon May 16 12:05:21 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526171772646719489\\/1655326290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":4,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"968\":null,\"969\":null,\"970\":null,\"971\":null,\"972\":null,\"973\":null,\"974\":null,\"975\":null,\"976\":null,\"977\":null,\"978\":null,\"979\":null,\"980\":null,\"981\":null,\"982\":null,\"983\":null,\"984\":null,\"985\":null,\"986\":null,\"987\":null,\"988\":null,\"989\":null,\"990\":null,\"991\":null,\"992\":null,\"993\":null,\"994\":null,\"995\":null,\"996\":null,\"997\":null,\"998\":null,\"999\":null,\"1000\":null,\"1001\":null,\"1002\":null,\"1003\":null,\"1004\":null,\"1005\":null,\"1006\":null,\"1007\":null,\"1008\":null,\"1009\":null,\"1010\":null,\"1011\":null,\"1012\":null,\"1013\":null,\"1014\":{\"created_at\":\"Tue Aug 02 16:05:40 +0000 2022\",\"id\":1554498675229216768,\"id_str\":\"1554498675229216768\",\"full_text\":\"#China's top political advisory body said it resolutely opposed the visit made by U.S. House of Representatives Speaker Nancy #Pelosi to China's #Taiwan region and called it a \\\"major political provocation.\\\" https:\\/\\/t.co\\/2xz79dW9oo\",\"truncated\":false,\"display_text_range\":[0,206],\"entities\":{\"hashtags\":[{\"text\":\"China\",\"indices\":[0,6]},{\"text\":\"Pelosi\",\"indices\":[126,133]},{\"text\":\"Taiwan\",\"indices\":[145,152]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554498651959197696,\"id_str\":\"1554498651959197696\",\"indices\":[207,230],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKwSbHaAAAl_Cm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKwSbHaAAAl_Cm.jpg\",\"url\":\"https:\\/\\/t.co\\/2xz79dW9oo\",\"display_url\":\"pic.twitter.com\\/2xz79dW9oo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sfc_talk\\/status\\/1554498675229216768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554498651959197696,\"id_str\":\"1554498651959197696\",\"indices\":[207,230],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZKwSbHaAAAl_Cm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZKwSbHaAAAl_Cm.jpg\",\"url\":\"https:\\/\\/t.co\\/2xz79dW9oo\",\"display_url\":\"pic.twitter.com\\/2xz79dW9oo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sfc_talk\\/status\\/1554498675229216768\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":408,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1357165023211081737,\"id_str\":\"1357165023211081737\",\"name\":\"SFC TALK\",\"screen_name\":\"sfc_talk\",\"location\":\"Guangzhou\",\"description\":\"Professional insights into Finance and Economics\\nFind us on Facebook:@sfctalk888\",\"url\":\"https:\\/\\/t.co\\/6njV2jiVRU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6njV2jiVRU\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/channel\\/UCmUPHS7Qrkxq8muom2w0JfA\",\"display_url\":\"youtube.com\\/channel\\/UCmUPH\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1459,\"friends_count\":1165,\"listed_count\":5,\"created_at\":\"Thu Feb 04 03:12:19 +0000 2021\",\"favourites_count\":19634,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2749,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1357165113829064708\\/3Y1GbXFd_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1357165113829064708\\/3Y1GbXFd_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1357165023211081737\\/1612408557\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":72,\"favorite_count\":81,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1015\":null,\"1016\":null,\"1017\":null,\"1018\":null,\"1019\":null,\"1020\":null,\"1021\":null,\"1022\":null,\"1023\":null,\"1024\":null,\"1025\":null,\"1026\":null,\"1027\":null,\"1028\":null,\"1029\":null,\"1030\":null,\"1031\":null,\"1032\":null,\"1033\":null,\"1034\":null,\"1035\":null,\"1036\":null,\"1037\":null,\"1038\":null,\"1039\":null,\"1040\":null,\"1041\":null,\"1042\":null,\"1043\":null,\"1044\":{\"created_at\":\"Wed Aug 03 07:05:07 +0000 2022\",\"id\":1554725030566699008,\"id_str\":\"1554725030566699008\",\"full_text\":\"Let\\u2019s Link up on #Audiomack \\nhttps:\\/\\/t.co\\/zeV9Ixb3ti \\nAnd on \\n#Youtube \\nhttps:\\/\\/t.co\\/c4rwWlEGx1 \\ngood morning \\ud83c\\udf1e #newmusic2022\",\"truncated\":false,\"display_text_range\":[0,125],\"entities\":{\"hashtags\":[{\"text\":\"Audiomack\",\"indices\":[17,27]},{\"text\":\"Youtube\",\"indices\":[62,70]},{\"text\":\"newmusic2022\",\"indices\":[112,125]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zeV9Ixb3ti\",\"expanded_url\":\"https:\\/\\/audiomack.com\\/rm-genesis-gh\",\"display_url\":\"audiomack.com\\/rm-genesis-gh\",\"indices\":[29,52]},{\"url\":\"https:\\/\\/t.co\\/c4rwWlEGx1\",\"expanded_url\":\"https:\\/\\/youtube.com\\/channel\\/UCey20RknRvTCHk3_4EXfNzQ\",\"display_url\":\"youtube.com\\/channel\\/UCey20\\u2026\",\"indices\":[72,95]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":864707504,\"id_str\":\"864707504\",\"name\":\"GOD\\ud83d\\udc8eFIRST\\ud83c\\udf2a\",\"screen_name\":\"MrGenesix\",\"location\":\"Earth\",\"description\":\"Plant a Tree || ENERGY \\ud83c\\udf0d || Show Business \\ud83c\\udf0d || Lyricist\",\"url\":\"https:\\/\\/t.co\\/8o2L9Y72CJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8o2L9Y72CJ\",\"expanded_url\":\"https:\\/\\/music.apple.com\\/gh\\/album\\/energy-feat-nate-tunez\\/1595898898?i=1595899182\",\"display_url\":\"music.apple.com\\/gh\\/album\\/energ\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3497,\"friends_count\":1435,\"listed_count\":3,\"created_at\":\"Sat Oct 06 13:41:25 +0000 2012\",\"favourites_count\":23112,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":6599,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1533902591641456642\\/bxB88HuV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1533902591641456642\\/bxB88HuV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/864707504\\/1630229752\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":7,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1045\":null,\"1046\":null,\"1047\":null,\"1048\":null,\"1049\":null,\"1050\":null,\"1051\":null,\"1052\":null,\"1053\":null,\"1054\":null,\"1055\":null,\"1056\":null,\"1057\":null,\"1058\":null,\"1059\":null,\"1060\":null,\"1061\":null,\"1062\":null,\"1063\":null,\"1064\":null,\"1065\":null,\"1066\":null,\"1067\":null,\"1068\":null,\"1069\":null,\"1070\":null,\"1071\":{\"created_at\":\"Wed Aug 03 04:20:53 +0000 2022\",\"id\":1554683698901041153,\"id_str\":\"1554683698901041153\",\"full_text\":\"SUMMER TIME \\u23f0 \\n\\nAt the beach, life is different. Time doesn\\u2019t move hour to hour but mood to moment. Let\\u2019s live by the currents, plan by the tides and follow the sun``` \\ud83e\\udd29 #Taiwan #Pelosi #China #helicopter #HelicopterCrash #BBNaija #BBNaija7 #LALISA https:\\/\\/t.co\\/QP8Bzs3UKv\",\"truncated\":false,\"display_text_range\":[0,248],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"Pelosi\",\"indices\":[178,185]},{\"text\":\"China\",\"indices\":[186,192]},{\"text\":\"helicopter\",\"indices\":[193,204]},{\"text\":\"HelicopterCrash\",\"indices\":[205,221]},{\"text\":\"BBNaija\",\"indices\":[222,230]},{\"text\":\"BBNaija7\",\"indices\":[231,240]},{\"text\":\"LALISA\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29868,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/540x540\\/8PlMTK-z1sGoGzJv.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/320x320\\/6xOCFrmDl7C66h41.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/pl\\/wMt_AULV3UhA6Wk_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/640x640\\/WciwaqGmLy4PVePK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1206482529181749248,\"id_str\":\"1206482529181749248\",\"name\":\"Houseofmolecules\",\"screen_name\":\"Houseofmolecule\",\"location\":\"Lagos, Nigeria\",\"description\":\"PR| Web Designer| Brand Influencer| Car Dealer\",\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"expanded_url\":\"http:\\/\\/www.houseofmolecules.com.ng\",\"display_url\":\"houseofmolecules.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":533,\"friends_count\":552,\"listed_count\":0,\"created_at\":\"Mon Dec 16 07:53:57 +0000 2019\",\"favourites_count\":688,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":400,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":4,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1072\":{\"created_at\":\"Tue Aug 02 15:26:26 +0000 2022\",\"id\":1554488804538519555,\"id_str\":\"1554488804538519555\",\"full_text\":\"@TAssorted These Nigerian youths were paid 5 million naira each https:\\/\\/t.co\\/b6j0e2AHzP\",\"truncated\":false,\"display_text_range\":[11,63],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TAssorted\",\"name\":\"Oyetunji SRN~\",\"id\":718716095,\"id_str\":\"718716095\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554488761937022979,\"id_str\":\"1554488761937022979\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"url\":\"https:\\/\\/t.co\\/b6j0e2AHzP\",\"display_url\":\"pic.twitter.com\\/b6j0e2AHzP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Preciou38243071\\/status\\/1554488804538519555\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554488761937022979,\"id_str\":\"1554488761937022979\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"url\":\"https:\\/\\/t.co\\/b6j0e2AHzP\",\"display_url\":\"pic.twitter.com\\/b6j0e2AHzP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Preciou38243071\\/status\\/1554488804538519555\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12956,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/vid\\/480x852\\/SCOWr8WWb2lyxLKh.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/vid\\/320x568\\/qi0JPaBhMdkCif4q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/pl\\/YhYfC6P4wuo9fPlb.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/vid\\/540x960\\/JZuRcKxaxPvLXpeD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1554404255720771586,\"in_reply_to_status_id_str\":\"1554404255720771586\",\"in_reply_to_user_id\":718716095,\"in_reply_to_user_id_str\":\"718716095\",\"in_reply_to_screen_name\":\"TAssorted\",\"user\":{\"id\":1172216866988789760,\"id_str\":\"1172216866988789760\",\"name\":\"Precious N\",\"screen_name\":\"Preciou38243071\",\"location\":\"Port Harcourt\",\"description\":\"Treat me good and I'll stick around\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1477,\"friends_count\":1161,\"listed_count\":1,\"created_at\":\"Thu Sep 12 18:34:41 +0000 2019\",\"favourites_count\":17221,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556154246667673601\\/UnBaJSQY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556154246667673601\\/UnBaJSQY_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":33,\"favorite_count\":153,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1073\":null,\"1074\":null,\"1075\":null,\"1076\":{\"created_at\":\"Tue Aug 02 21:11:51 +0000 2022\",\"id\":1554575730650013697,\"id_str\":\"1554575730650013697\",\"full_text\":\"I'm going to put this on Twitter because @WestAfricaWeek is a long-read platform that doesn't do breaking news, and this needs to be out there.\\n\\nI've got hold of a budget office document showing @MBuhari approving N1.4 billion to buy vehicles for the government of Niger Republic. https:\\/\\/t.co\\/GDVx50cOJ0\",\"truncated\":false,\"display_text_range\":[0,280],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WestAfricaWeek\",\"name\":\"West Africa Weekly\",\"id\":1364956849804611584,\"id_str\":\"1364956849804611584\",\"indices\":[41,56]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[195,203]}],\"urls\":[],\"media\":[{\"id\":1554572700668104712,\"id_str\":\"1554572700668104712\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/GDVx50cOJ0\",\"display_url\":\"pic.twitter.com\\/GDVx50cOJ0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":590,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1041,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1776,\"h\":2048,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554572700668104712,\"id_str\":\"1554572700668104712\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/GDVx50cOJ0\",\"display_url\":\"pic.twitter.com\\/GDVx50cOJ0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":590,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1041,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1776,\"h\":2048,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3315017925,\"id_str\":\"3315017925\",\"name\":\"David Hundeyin\",\"screen_name\":\"DavidHundeyin\",\"location\":\"EMEA\",\"description\":\"Founder @WestAfricaWeek. Purveyor of words @BusinessDayNG. Retired hurricane. 2020 People Journalism Prize for Africa winner.\",\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"expanded_url\":\"https:\\/\\/davidhundeyin.com\",\"display_url\":\"davidhundeyin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":430581,\"friends_count\":2289,\"listed_count\":517,\"created_at\":\"Tue Jun 09 14:26:32 +0000 2015\",\"favourites_count\":88533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3315017925\\/1624235090\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":22254,\"favorite_count\":28034,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1077\":null,\"1078\":null,\"1079\":null,\"1080\":null,\"1081\":null,\"1082\":null,\"1083\":null,\"1084\":null,\"1085\":null,\"1086\":null,\"1087\":null,\"1088\":null,\"1089\":null,\"1090\":null,\"1091\":null,\"1092\":{\"created_at\":\"Wed Aug 03 05:16:32 +0000 2022\",\"id\":1554697705267597314,\"id_str\":\"1554697705267597314\",\"full_text\":\"Another day to be intentional about your Life.\\n\\nRemember that life will never wait for you to have sense. Neither will there be a time everything will be perfectly ready\\nJust go ahead and do what needs to be done\\nHave a blessed day \\u270c\\ufe0f\\u2764\\ufe0f\\n#wednesdaythought #peanuts #Pelosi #Taiwan https:\\/\\/t.co\\/AYPa0vrRjy\",\"truncated\":false,\"display_text_range\":[0,279],\"entities\":{\"hashtags\":[{\"text\":\"wednesdaythought\",\"indices\":[237,254]},{\"text\":\"peanuts\",\"indices\":[255,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"Taiwan\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554697441265553408,\"id_str\":\"1554697441265553408\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"url\":\"https:\\/\\/t.co\\/AYPa0vrRjy\",\"display_url\":\"pic.twitter.com\\/AYPa0vrRjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554697441265553408,\"id_str\":\"1554697441265553408\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"url\":\"https:\\/\\/t.co\\/AYPa0vrRjy\",\"display_url\":\"pic.twitter.com\\/AYPa0vrRjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/480x852\\/PzzXeIzsckDPUGpU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/320x568\\/HI7vYexc_IeIim6Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/pl\\/U-1hEgqvR7jHdTwC.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/576x1024\\/txGmP5S1RsdDG_UF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1490273215695966209,\"id_str\":\"1490273215695966209\",\"name\":\"Great Foods Ng\",\"screen_name\":\"Greatfoodsng\",\"location\":\"\",\"description\":\"We make the best peanut Burger.\\n\\nIt's like nothing you've ever tasted.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Sun Feb 06 10:37:00 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":136,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490273978509836292\\/cM-sWYGR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490273978509836292\\/cM-sWYGR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1093\":null,\"1094\":null,\"1095\":null,\"1096\":null,\"1097\":null,\"1098\":null,\"1099\":null,\"1100\":null,\"1101\":null,\"1102\":null,\"1103\":null,\"1104\":null,\"1105\":null,\"1106\":null,\"1107\":null,\"1108\":null,\"1109\":null,\"1110\":null,\"1111\":null,\"1112\":null,\"1113\":null,\"1114\":null,\"1115\":null,\"1116\":null,\"1117\":null,\"1118\":null,\"1119\":null,\"1120\":null,\"1121\":null,\"1122\":null,\"1123\":null,\"1124\":null,\"1125\":null,\"1126\":null,\"1127\":null,\"1128\":null,\"1129\":null,\"1130\":{\"created_at\":\"Mon Aug 01 06:10:37 +0000 2022\",\"id\":1553986538568093697,\"id_str\":\"1553986538568093697\",\"full_text\":\"A good morning to Celebrate my birthday \\ud83c\\udf82\\ud83c\\udf88\\ud83c\\udf89\\n\\nBig 24\\ud83e\\udd42\\n\\nHappy birthday Caleb\\u2764\\ufe0f\\n\\nKeep dreaming, keep moving.\\n\\nThe world is yours to conquer \\u26a1\\ufe0f https:\\/\\/t.co\\/iuswDAvEoA\",\"truncated\":false,\"display_text_range\":[0,139],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553986525414756353,\"id_str\":\"1553986525414756353\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553986525414756353,\"id_str\":\"1553986525414756353\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1553986529240010755,\"id_str\":\"1553986529240010755\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDeg9UX0AMr0FL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDeg9UX0AMr0FL.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1553986532863840256,\"id_str\":\"1553986532863840256\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDehK0XEAAbYlK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDehK0XEAAbYlK.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":596,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":1052,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553986536340963328,\"id_str\":\"1553986536340963328\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDehXxXwAAQXxd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDehXxXwAAQXxd.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1205082200158457856,\"id_str\":\"1205082200158457856\",\"name\":\"Nwanneka Caleb\",\"screen_name\":\"caleb_nwanneka\",\"location\":\"Lagos, Nigeria\",\"description\":\"Traveller\\u2022 Hot boy \\u2022 I'll teach you how to set up 7 figures online business from scratch and blow up your sales \\u2022Manchester United fan | Building a company soon\",\"url\":\"https:\\/\\/t.co\\/1xMBtqyLcY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1xMBtqyLcY\",\"expanded_url\":\"https:\\/\\/www.8figuremarketer.com\\/sign-up\\/\",\"display_url\":\"8figuremarketer.com\\/sign-up\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57260,\"friends_count\":250,\"listed_count\":138,\"created_at\":\"Thu Dec 12 11:09:37 +0000 2019\",\"favourites_count\":33329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554763708320124928\\/wiWDjUrO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554763708320124928\\/wiWDjUrO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1205082200158457856\\/1652951358\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":45,\"favorite_count\":1173,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1131\":null,\"1132\":null,\"1133\":null,\"1134\":null,\"1135\":null,\"1136\":null,\"1137\":null,\"1138\":null,\"1139\":null,\"1140\":null,\"1141\":null,\"1142\":null,\"1143\":null,\"1144\":null,\"1145\":null,\"1146\":null,\"1147\":null,\"1148\":null,\"1149\":null,\"1150\":null,\"1151\":null,\"1152\":null,\"1153\":null,\"1154\":null,\"1155\":null,\"1156\":null,\"1157\":null,\"1158\":null,\"1159\":null,\"1160\":null,\"1161\":null,\"1162\":null,\"1163\":null,\"1164\":null,\"1165\":null,\"1166\":null,\"1167\":null,\"1168\":null,\"1169\":null,\"1170\":null,\"1171\":null,\"1172\":null,\"1173\":null,\"1174\":null,\"1175\":null,\"1176\":null,\"1177\":null,\"1178\":null,\"1179\":null,\"1180\":null,\"1181\":null,\"1182\":null,\"1183\":null,\"1184\":null,\"1185\":null,\"1186\":null,\"1187\":null,\"1188\":null,\"1189\":null,\"1190\":{\"created_at\":\"Tue Aug 02 12:13:16 +0000 2022\",\"id\":1554440191741411328,\"id_str\":\"1554440191741411328\",\"full_text\":\"Hey AVengers \\ud83d\\udef8, let's reach 10k promise I will follow back \\ud83d\\ude4f\",\"truncated\":false,\"display_text_range\":[0,60],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1543185566816247810,\"id_str\":\"1543185566816247810\",\"name\":\"AV \\ud83d\\udef8\",\"screen_name\":\"Babyboyav__\",\"location\":\"\",\"description\":\"No Dey Form (NDF)\\ud83d\\udef8\\nhttps:\\/\\/t.co\\/ETX1GlJSq7\",\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"expanded_url\":\"https:\\/\\/lnk.to\\/NoDeyForm\",\"display_url\":\"lnk.to\\/NoDeyForm\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"expanded_url\":\"https:\\/\\/lnk.to\\/NoDeyForm\",\"display_url\":\"lnk.to\\/NoDeyForm\",\"indices\":[19,42]}]}},\"protected\":false,\"followers_count\":1623,\"friends_count\":183,\"listed_count\":1,\"created_at\":\"Sat Jul 02 10:51:48 +0000 2022\",\"favourites_count\":581,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550170835004129282\\/1U_soEBj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550170835004129282\\/1U_soEBj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1543185566816247810\\/1657342889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":24,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1191\":null,\"1192\":null,\"1193\":null,\"1194\":null,\"1195\":null,\"1196\":null,\"1197\":null,\"1198\":null,\"1199\":null,\"1200\":null,\"1201\":null,\"1202\":null,\"1203\":null,\"1204\":null,\"1205\":null,\"1206\":null,\"1207\":null,\"1208\":null,\"1209\":null,\"1210\":null,\"1211\":null,\"1212\":null,\"1213\":null,\"1214\":null,\"1215\":null,\"1216\":null,\"1217\":null,\"1218\":null,\"1219\":null,\"1220\":null,\"1221\":null,\"1222\":null,\"1223\":null,\"1224\":null,\"1225\":null,\"1226\":null,\"1227\":null,\"1228\":null,\"1229\":null,\"1230\":null,\"1231\":null,\"1232\":null,\"1233\":null,\"1234\":null,\"1235\":null,\"1236\":null,\"1237\":null,\"1238\":null,\"1239\":null,\"1240\":null,\"1241\":null,\"1242\":null,\"1243\":null,\"1244\":null,\"1245\":null,\"1246\":null,\"1247\":null,\"1248\":null,\"1249\":null,\"1250\":null,\"1251\":null,\"1252\":null,\"1253\":null,\"1254\":null,\"1255\":null,\"1256\":null,\"1257\":null,\"1258\":null,\"1259\":null,\"1260\":null,\"1261\":null,\"1262\":null,\"1263\":null,\"1264\":null,\"1265\":null,\"1266\":null,\"1267\":null,\"1268\":null,\"1269\":null,\"1270\":null,\"1271\":null,\"1272\":null,\"1273\":{\"created_at\":\"Tue Aug 02 19:57:59 +0000 2022\",\"id\":1554557140702044161,\"id_str\":\"1554557140702044161\",\"full_text\":\"Congratulations to the winners of today's mystery game \\ud83e\\udd73\\ud83d\\udc4f\\n\\n\\ud83c\\udfc6 kyori#7001 -$10\\n\\n\\ud83c\\udfc6Rillz#5028 -$10\\n\\nTo those who participated and didn't win, you did a great job. Stay put there'll be many other chances \\ud83d\\udcaa\\n\\nFollow us for more @3KMOfficial \\n\\n#P2E #NFTs #Crypto https:\\/\\/t.co\\/YppEHjpH1y\",\"truncated\":false,\"display_text_range\":[0,255],\"entities\":{\"hashtags\":[{\"text\":\"P2E\",\"indices\":[237,241]},{\"text\":\"NFTs\",\"indices\":[242,247]},{\"text\":\"Crypto\",\"indices\":[248,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"3KMOfficial\",\"name\":\"3KM_Official\",\"id\":1528957203905798144,\"id_str\":\"1528957203905798144\",\"indices\":[222,234]}],\"urls\":[],\"media\":[{\"id\":1554557130065301506,\"id_str\":\"1554557130065301506\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"url\":\"https:\\/\\/t.co\\/YppEHjpH1y\",\"display_url\":\"pic.twitter.com\\/YppEHjpH1y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/3KMOfficial\\/status\\/1554557140702044161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":454,\"h\":256,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554557130065301506,\"id_str\":\"1554557130065301506\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"url\":\"https:\\/\\/t.co\\/YppEHjpH1y\",\"display_url\":\"pic.twitter.com\\/YppEHjpH1y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/3KMOfficial\\/status\\/1554557140702044161\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":454,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[227,128],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLleTCX0AIeRrW.mp4\"}]}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1528957203905798144,\"id_str\":\"1528957203905798144\",\"name\":\"3KM_Official\",\"screen_name\":\"3KMOfficial\",\"location\":\"\",\"description\":\"Link tree: \\nhttps:\\/\\/t.co\\/wU7GSc0kv8\\n\\n3 Kingdoms Multiverse Official\\nhttps:\\/\\/t.co\\/a7Ly6jDH01\\nTelegram global official: https:\\/\\/t.co\\/YKmmPTIFFK\\u2026\\u2026\",\"url\":\"https:\\/\\/t.co\\/hYjuoFUv1c\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hYjuoFUv1c\",\"expanded_url\":\"http:\\/\\/3km.io\",\"display_url\":\"3km.io\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wU7GSc0kv8\",\"expanded_url\":\"http:\\/\\/linktr.ee\\/3km.io\",\"display_url\":\"linktr.ee\\/3km.io\",\"indices\":[12,35]},{\"url\":\"https:\\/\\/t.co\\/a7Ly6jDH01\",\"expanded_url\":\"http:\\/\\/discord.gg\\/kTJpG4BYDR\",\"display_url\":\"discord.gg\\/kTJpG4BYDR\",\"indices\":[68,91]},{\"url\":\"https:\\/\\/t.co\\/YKmmPTIFFK\",\"expanded_url\":\"http:\\/\\/t.me\\/ThreeKingdomsM\",\"display_url\":\"t.me\\/ThreeKingdomsM\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":44942,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Tue May 24 04:33:05 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555328025499156487\\/A24U2JIa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555328025499156487\\/A24U2JIa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1528957203905798144\\/1653367275\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":34,\"favorite_count\":49,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1274\":null,\"1275\":null,\"1276\":null,\"1277\":null,\"1278\":null,\"1279\":null,\"1280\":null,\"1281\":null,\"1282\":null,\"1283\":null,\"1284\":null,\"1285\":null,\"1286\":null,\"1287\":null,\"1288\":null,\"1289\":null,\"1290\":null,\"1291\":null,\"1292\":null,\"1293\":null,\"1294\":null,\"1295\":null,\"1296\":null,\"1297\":null,\"1298\":null,\"1299\":null,\"1300\":null,\"1301\":null,\"1302\":null,\"1303\":null,\"1304\":null,\"1305\":null,\"1306\":null,\"1307\":null,\"1308\":null,\"1309\":null,\"1310\":null,\"1311\":null,\"1312\":null,\"1313\":null,\"1314\":null,\"1315\":null,\"1316\":null,\"1317\":null,\"1318\":null,\"1319\":null,\"1320\":null,\"1321\":null,\"1322\":null,\"1323\":null,\"1324\":null,\"1325\":null,\"1326\":null,\"1327\":null,\"1328\":null,\"1329\":null,\"1330\":null,\"1331\":null,\"1332\":null,\"1333\":null,\"1334\":null,\"1335\":null,\"1336\":{\"created_at\":\"Tue Aug 02 19:14:09 +0000 2022\",\"id\":1554546109523050498,\"id_str\":\"1554546109523050498\",\"full_text\":\"Taiwan may become another Ukraine with this move\\ud83d\\ude44\\ud83d\\ude44\\ud83d\\ude44. Unnecessary move IMO.\",\"truncated\":false,\"display_text_range\":[0,74],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":249725098,\"id_str\":\"249725098\",\"name\":\"Olufadeju\",\"screen_name\":\"olulion\",\"location\":\"Abuja\\/Nigeria\",\"description\":\"Father, Farmer, Humanist, Information Security, Good Governance Advocate.\\nRetweet isn't Absolute Endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":736,\"friends_count\":570,\"listed_count\":3,\"created_at\":\"Wed Feb 09 17:02:42 +0000 2011\",\"favourites_count\":15378,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33257,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534641182688567297\\/5pyVZs_9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534641182688567297\\/5pyVZs_9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/249725098\\/1651994149\",\"profile_link_color\":\"9D582E\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1337\":null,\"1338\":null,\"1339\":null,\"1340\":null,\"1341\":{\"created_at\":\"Thu Jul 28 13:01:10 +0000 2022\",\"id\":1552640306922852352,\"id_str\":\"1552640306922852352\",\"full_text\":\"Sokoto agog for Obi. The unprecedented movement is on.\\n #ObiDatti2023 @PeterObi https:\\/\\/t.co\\/jZBowzuuIO\",\"truncated\":false,\"display_text_range\":[0,79],\"entities\":{\"hashtags\":[{\"text\":\"ObiDatti2023\",\"indices\":[56,69]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[70,79]}],\"urls\":[],\"media\":[{\"id\":1552640204669853697,\"id_str\":\"1552640204669853697\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"url\":\"https:\\/\\/t.co\\/jZBowzuuIO\",\"display_url\":\"pic.twitter.com\\/jZBowzuuIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1552640204669853697,\"id_str\":\"1552640204669853697\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"url\":\"https:\\/\\/t.co\\/jZBowzuuIO\",\"display_url\":\"pic.twitter.com\\/jZBowzuuIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":39520,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1552640204669853697\\/pu\\/pl\\/px4ZpDy0RQZILaJx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1552640204669853697\\/pu\\/vid\\/480x270\\/Lixy5FR38yH3-7FC.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"name\":\"LabourPartyNG\",\"screen_name\":\"NgLabour\",\"location\":\"29 Okeagbe St, Garki, Abuja\",\"description\":\"Official Labour Party Twitter Handle. Labour Party is Nigeria's frontline Political Party for Social Democrats.\\nJoin us @ https:\\/\\/t.co\\/1A4obrISd5\",\"url\":\"https:\\/\\/t.co\\/xp9Inpt56J\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xp9Inpt56J\",\"expanded_url\":\"http:\\/\\/www.labourparty.com.ng\",\"display_url\":\"labourparty.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1A4obrISd5\",\"expanded_url\":\"http:\\/\\/labourparty.com.ng\",\"display_url\":\"labourparty.com.ng\",\"indices\":[122,145]}]}},\"protected\":false,\"followers_count\":254715,\"friends_count\":530,\"listed_count\":49,\"created_at\":\"Wed May 25 20:38:02 +0000 2022\",\"favourites_count\":143,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":169,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545058267981746177\\/nA0y1wvv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545058267981746177\\/nA0y1wvv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1529562333751689217\\/1657534092\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1373,\"favorite_count\":4126,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1342\":null,\"1343\":null,\"1344\":null,\"1345\":null,\"1346\":null,\"1347\":null,\"1348\":null,\"1349\":null,\"1350\":null,\"1351\":null,\"1352\":null,\"1353\":null,\"1354\":null,\"1355\":{\"created_at\":\"Tue Aug 02 09:46:48 +0000 2022\",\"id\":1554403331027730438,\"id_str\":\"1554403331027730438\",\"full_text\":\"Everything is already very serious, the situation is heated to the limit. We haven't been so close to World War III yet. https:\\/\\/t.co\\/JkfeDdYvQk\",\"truncated\":false,\"display_text_range\":[0,120],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554403296974176257,\"id_str\":\"1554403296974176257\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"url\":\"https:\\/\\/t.co\\/JkfeDdYvQk\",\"display_url\":\"pic.twitter.com\\/JkfeDdYvQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554403296974176257,\"id_str\":\"1554403296974176257\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"url\":\"https:\\/\\/t.co\\/JkfeDdYvQk\",\"display_url\":\"pic.twitter.com\\/JkfeDdYvQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[211,120],\"duration_millis\":30046,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/844x480\\/2l_rRYjV3JtxRLRN.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/474x270\\/QSIpeLeXuuAlYcdQ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/632x360\\/D6zHKXscWwAkrQ9p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/pl\\/F96-QTcsHSGXnzRn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3192736504,\"id_str\":\"3192736504\",\"name\":\"\\u0422\\u20dd \\ud83c\\udd70\\ufe0f \\u043d\\u20dd \\u044f\\u20dd\",\"screen_name\":\"OdNa_TaKa9l\",\"location\":\"\",\"description\":\"\\u043c\\u0438\\u0440 \\u0441\\u043e\\u0448\\u0451\\u043b \\u0441\\u0443\\u043c\\u0430 \\ud83d\\ude4a\\ud83d\\ude49\\ud83d\\ude48\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":17,\"listed_count\":5,\"created_at\":\"Tue Apr 21 22:45:15 +0000 2015\",\"favourites_count\":5038,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540430995161243651\\/edzZG1Qf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540430995161243651\\/edzZG1Qf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3192736504\\/1653829999\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":12,\"favorite_count\":69,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1356\":null,\"1357\":null,\"1358\":null,\"1359\":null,\"1360\":null,\"1361\":null,\"1362\":null,\"1363\":null,\"1364\":null,\"1365\":null,\"1366\":null,\"1367\":null,\"1368\":null,\"1369\":null,\"1370\":null,\"1371\":null,\"1372\":null,\"1373\":null,\"1374\":null,\"1375\":null,\"1376\":null,\"1377\":null,\"1378\":null,\"1379\":null,\"1380\":null,\"1381\":null,\"1382\":null,\"1383\":null,\"1384\":null,\"1385\":null,\"1386\":null,\"1387\":null,\"1388\":null,\"1389\":null,\"1390\":null,\"1391\":null,\"1392\":null,\"1393\":null,\"1394\":null,\"1395\":null,\"1396\":null,\"1397\":null,\"1398\":null,\"1399\":null,\"1400\":null,\"1401\":null,\"1402\":null,\"1403\":null,\"1404\":null,\"1405\":null,\"1406\":null,\"1407\":null,\"1408\":null,\"1409\":null,\"1410\":null,\"1411\":null,\"1412\":null,\"1413\":null,\"1414\":null,\"1415\":null,\"1416\":null,\"1417\":null,\"1418\":null,\"1419\":null,\"1420\":null,\"1421\":null,\"1422\":null,\"1423\":null,\"1424\":null,\"1425\":null,\"1426\":null,\"1427\":null,\"1428\":null,\"1429\":null,\"1430\":null,\"1431\":null,\"1432\":null,\"1433\":null,\"1434\":null,\"1435\":null,\"1436\":null,\"1437\":null,\"1438\":{\"created_at\":\"Mon Aug 01 07:49:32 +0000 2022\",\"id\":1554011432055865344,\"id_str\":\"1554011432055865344\",\"full_text\":\"She left her for 6 days to party and baby died \\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude31\\ud83d\\ude31\\ud83d\\ude31\\ud83d\\ude31 https:\\/\\/t.co\\/W5b91B1Dmt\",\"truncated\":false,\"display_text_range\":[0,76],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554011254838140929,\"id_str\":\"1554011254838140929\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"url\":\"https:\\/\\/t.co\\/W5b91B1Dmt\",\"display_url\":\"pic.twitter.com\\/W5b91B1Dmt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Eminitybaba_\\/status\\/1554011432055865344\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554011254838140929,\"id_str\":\"1554011254838140929\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"url\":\"https:\\/\\/t.co\\/W5b91B1Dmt\",\"display_url\":\"pic.twitter.com\\/W5b91B1Dmt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Eminitybaba_\\/status\\/1554011432055865344\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":81356,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/vid\\/480x852\\/OQUZ87s1J_bNLLc2.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/pl\\/qWV5Wmc2jLVXzS1f.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/vid\\/320x568\\/Yvv1PahgMPGLAxS8.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/vid\\/576x1024\\/XUIaEpyYcaupe3kR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":251084543,\"id_str\":\"251084543\",\"name\":\"Commissioner for Coca-Cola ati Dodo #BBNAIJA\",\"screen_name\":\"Eminitybaba_\",\"location\":\"Konoha\",\"description\":\"Father | Husband | Med Doc | Anime | \\u2709\\ufe0f sirtybaba@gmail.com | Check my likes |follow @mythsorfacts @litwallpapers | NFT\",\"url\":\"https:\\/\\/t.co\\/x3aHFVVUJL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x3aHFVVUJL\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/egged\",\"display_url\":\"opensea.io\\/collection\\/egg\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70040,\"friends_count\":12479,\"listed_count\":27,\"created_at\":\"Sat Feb 12 12:07:13 +0000 2011\",\"favourites_count\":2644,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":257990,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549830208253005829\\/ilr5koQ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549830208253005829\\/ilr5koQ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/251084543\\/1632240617\",\"profile_link_color\":\"B40B43\",\"profile_sidebar_border_color\":\"CC3366\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":8995,\"favorite_count\":22407,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1439\":null,\"1440\":null,\"1441\":null,\"1442\":null,\"1443\":null,\"1444\":null,\"1445\":null,\"1446\":null,\"1447\":null,\"1448\":null,\"1449\":null,\"1450\":null,\"1451\":null,\"1452\":null,\"1453\":null,\"1454\":null,\"1455\":null,\"1456\":null,\"1457\":null,\"1458\":null,\"1459\":null,\"1460\":null,\"1461\":null,\"1462\":null,\"1463\":null,\"1464\":null,\"1465\":null,\"1466\":null,\"1467\":null,\"1468\":null,\"1469\":null,\"1470\":null,\"1471\":null,\"1472\":null,\"1473\":null,\"1474\":null,\"1475\":null,\"1476\":null,\"1477\":null,\"1478\":null,\"1479\":null,\"1480\":null,\"1481\":null,\"1482\":null,\"1483\":null,\"1484\":null,\"1485\":null,\"1486\":null,\"1487\":null,\"1488\":null,\"1489\":{\"created_at\":\"Tue Aug 02 15:00:29 +0000 2022\",\"id\":1554482274430844928,\"id_str\":\"1554482274430844928\",\"full_text\":\"Our delegation\\u2019s visit to Taiwan honors America\\u2019s unwavering commitment to supporting Taiwan\\u2019s vibrant Democracy.\\n\\nOur discussions with Taiwan leadership reaffirm our support for our partner & promote our shared interests, including advancing a free & open Indo-Pacific region.\",\"truncated\":false,\"display_text_range\":[0,285],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":15764644,\"id_str\":\"15764644\",\"name\":\"Nancy Pelosi\",\"screen_name\":\"SpeakerPelosi\",\"location\":\"San Francisco\",\"description\":\"Speaker of the House, focused on strengthening America's middle class and creating jobs; mother, grandmother, dark chocolate connoisseur.\",\"url\":\"https:\\/\\/t.co\\/jztVqrP3x5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jztVqrP3x5\",\"expanded_url\":\"https:\\/\\/www.speaker.gov\\/\",\"display_url\":\"speaker.gov\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7877635,\"friends_count\":430,\"listed_count\":25260,\"created_at\":\"Thu Aug 07 15:35:02 +0000 2008\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":13589,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"385BA3\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1114294290375688193\\/P9mcJNGb_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1114294290375688193\\/P9mcJNGb_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/15764644\\/1572273026\",\"profile_link_color\":\"4B12E6\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FCFCFC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":36588,\"favorite_count\":191629,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1490\":{\"created_at\":\"Tue Aug 02 15:00:29 +0000 2022\",\"id\":1554482274430844928,\"id_str\":\"1554482274430844928\",\"full_text\":\"Our delegation\\u2019s visit to Taiwan honors America\\u2019s unwavering commitment to supporting Taiwan\\u2019s vibrant Democracy.\\n\\nOur discussions with Taiwan leadership reaffirm our support for our partner & promote our shared interests, including advancing a free & open Indo-Pacific region.\",\"truncated\":false,\"display_text_range\":[0,285],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":15764644,\"id_str\":\"15764644\",\"name\":\"Nancy Pelosi\",\"screen_name\":\"SpeakerPelosi\",\"location\":\"San Francisco\",\"description\":\"Speaker of the House, focused on strengthening America's middle class and creating jobs; mother, grandmother, dark chocolate connoisseur.\",\"url\":\"https:\\/\\/t.co\\/jztVqrP3x5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jztVqrP3x5\",\"expanded_url\":\"https:\\/\\/www.speaker.gov\\/\",\"display_url\":\"speaker.gov\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7877635,\"friends_count\":430,\"listed_count\":25260,\"created_at\":\"Thu Aug 07 15:35:02 +0000 2008\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":13589,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"385BA3\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1114294290375688193\\/P9mcJNGb_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1114294290375688193\\/P9mcJNGb_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/15764644\\/1572273026\",\"profile_link_color\":\"4B12E6\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FCFCFC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":36588,\"favorite_count\":191629,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1491\":null,\"1492\":null,\"1493\":null,\"1494\":null,\"1495\":null,\"1496\":null,\"1497\":null,\"1498\":{\"created_at\":\"Tue Aug 02 14:47:05 +0000 2022\",\"id\":1554478901476446210,\"id_str\":\"1554478901476446210\",\"full_text\":\"BREAKING: House Speaker Nancy Pelosi lands in Taiwan on a visit that could significantly escalate tensions between the U.S. and China. https:\\/\\/t.co\\/Fb5U6fbrgB\",\"truncated\":false,\"display_text_range\":[0,158],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fb5U6fbrgB\",\"expanded_url\":\"https:\\/\\/apnews.com\\/article\\/china-asia-beijing-malaysia-a5a6acc391511c99b1b4c2d69e67b133?taid=62e938e824e1a4000195991d&utm_campaign=TrueAnthem&utm_medium=AP&utm_source=Twitter\",\"display_url\":\"apnews.com\\/article\\/china-\\u2026\",\"indices\":[135,158]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"True Anthem<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":51241574,\"id_str\":\"51241574\",\"name\":\"The Associated Press\",\"screen_name\":\"AP\",\"location\":\"Global\",\"description\":\"News from The Associated Press, and a taste of the great journalism produced by AP members and customers.\",\"url\":\"https:\\/\\/t.co\\/0HD7A9hKKy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0HD7A9hKKy\",\"expanded_url\":\"https:\\/\\/apnews.com\\/\",\"display_url\":\"apnews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15939689,\"friends_count\":6816,\"listed_count\":105118,\"created_at\":\"Fri Jun 26 21:48:52 +0000 2009\",\"favourites_count\":3953,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":326068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"333333\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/461964160838803457\\/8z9FImcv_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/461964160838803457\\/8z9FImcv_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/51241574\\/1638483576\",\"profile_link_color\":\"CC3300\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1387,\"favorite_count\":3442,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1499\":null,\"1500\":null,\"1501\":null,\"1502\":null,\"1503\":null,\"1504\":null,\"1505\":null,\"1506\":null,\"1507\":null,\"1508\":null,\"1509\":null,\"1510\":null,\"1511\":null,\"1512\":null,\"1513\":null,\"1514\":null,\"1515\":null,\"1516\":null,\"1517\":null,\"1518\":null,\"1519\":null,\"1520\":null,\"1521\":null,\"1522\":null,\"1523\":null,\"1524\":null,\"1525\":null,\"1526\":null,\"1527\":null,\"1528\":{\"created_at\":\"Tue Aug 02 05:49:20 +0000 2022\",\"id\":1554343569783152640,\"id_str\":\"1554343569783152640\",\"full_text\":\"Today\\u2019s Deal \\ud83d\\udcaf \\ud83d\\udd25 \\nAcer Aspire Laptop\\n\\u2022 4GB RAM\\n\\u2022 320GB HDD\\n\\u2022 Intel Core 2 Duo\\n\\u2022 15.6\\u201d HD Display\\n\\u2022 Windows 10 Pro\\n\\u2022 Webcam\\n\\u2022 Bluetooth\\n\\u2022 USB\\n\\u2022 VGA\\n\\u2022 HDMI\\n\\nPrice : #85,000\\n\\nCarter Efe Wizkid | Go and Verify Afghanistan God Abeg Phyna Khalid Igbo Deji #BBNajia #Ukraine https:\\/\\/t.co\\/2T4LWmLPQZ\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[250,258]},{\"text\":\"Ukraine\",\"indices\":[259,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554343508932268032,\"id_str\":\"1554343508932268032\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508928069632,\"id_str\":\"1554343508928069632\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508944850945,\"id_str\":\"1554343508944850945\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":7,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1529\":null,\"1530\":null,\"1531\":null,\"1532\":null,\"1533\":null,\"1534\":null,\"1535\":null,\"1536\":null,\"1537\":null,\"1538\":null,\"1539\":null,\"1540\":null,\"1541\":null,\"1542\":null,\"1543\":null,\"1544\":null,\"1545\":null,\"1546\":null,\"1547\":null,\"1548\":null,\"1549\":null,\"1550\":null,\"1551\":null,\"1552\":null,\"1553\":null,\"1554\":null,\"1555\":{\"created_at\":\"Tue Aug 02 14:56:59 +0000 2022\",\"id\":1554481393891172352,\"id_str\":\"1554481393891172352\",\"full_text\":\"After 25 years where no US leader has been able to visit Taiwan,the US House Speaker Nancy Pelosi lands in Taiwan even as China mobilises forces after warning.\\n\\n#Bitcoin experienced a bounce just as her plane touched down .Which stocks should we buy ?\\n#Taiwan #Pelosi #China\",\"truncated\":false,\"display_text_range\":[0,274],\"entities\":{\"hashtags\":[{\"text\":\"Bitcoin\",\"indices\":[161,169]},{\"text\":\"Taiwan\",\"indices\":[252,259]},{\"text\":\"Pelosi\",\"indices\":[260,267]},{\"text\":\"China\",\"indices\":[268,274]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":993223833040584705,\"id_str\":\"993223833040584705\",\"name\":\"Kwame Stalwart\\ud83d\\udcab\",\"screen_name\":\"kwame_stalwart\",\"location\":\"Accra, Ghana\",\"description\":\"Quarmyne Shadrack\\u270a#God\\ud83d\\udd30#cryptocurrency\\ud83d\\udd30#altcoins #blockchain\\ud83d\\udd30Chamber of Agribusiness Ghana \\ud83d\\udd30#KNUST\\ud83d\\udd30..#agribusiness \\ud83d\\udd30 #bitcoin\\ud83d\\udd30 @FaithOOFathers\\ud83d\\udd30#POJOBA\",\"url\":\"https:\\/\\/t.co\\/NUoxtMe5Gc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NUoxtMe5Gc\",\"expanded_url\":\"https:\\/\\/inclabfoundation.org\\/dissecting-blockchain-technology-and-crypto-currency\\/\",\"display_url\":\"inclabfoundation.org\\/dissecting-blo\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7573,\"friends_count\":6944,\"listed_count\":5,\"created_at\":\"Sun May 06 20:19:49 +0000 2018\",\"favourites_count\":57229,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":24876,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1456539724303245324\\/vHqCnvW5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1456539724303245324\\/vHqCnvW5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/993223833040584705\\/1616235977\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":7,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1556\":null,\"1557\":null,\"1558\":null,\"1559\":null,\"1560\":null,\"1561\":null,\"1562\":null,\"1563\":null,\"1564\":null,\"1565\":null,\"1566\":null,\"1567\":null,\"1568\":{\"created_at\":\"Tue Aug 02 14:47:21 +0000 2022\",\"id\":1554478967410905091,\"id_str\":\"1554478967410905091\",\"full_text\":\"#Pelosi arrived in #Taiwan.\\n\\n#China promised to retaliate.\",\"truncated\":false,\"display_text_range\":[0,58],\"entities\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[19,26]},{\"text\":\"China\",\"indices\":[29,35]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2263105532,\"id_str\":\"2263105532\",\"name\":\"Elijah J. Magnier \\ud83c\\uddea\\ud83c\\uddfa\",\"screen_name\":\"ejmalrai\",\"location\":\"Europe and MENA.\",\"description\":\"Vet War Crspdnt+35 y Iran,Lebanon,Syria,Iraq,Libya,Sudan,Afghanistan,Yugoslavia \\n@AlraiMediaGroup @isrobinson_\\nhttps:\\/\\/t.co\\/tHIGbW0wLG\",\"url\":\"https:\\/\\/t.co\\/OsSFvesYpU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsSFvesYpU\",\"expanded_url\":\"http:\\/\\/elijahjm.wordpress.com\",\"display_url\":\"elijahjm.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tHIGbW0wLG\",\"expanded_url\":\"https:\\/\\/www.iai.it\\/it\\/persone\\/elijah-j-magnier\",\"display_url\":\"iai.it\\/it\\/persone\\/eli\\u2026\",\"indices\":[112,135]}]}},\"protected\":false,\"followers_count\":97480,\"friends_count\":2645,\"listed_count\":1720,\"created_at\":\"Thu Dec 26 17:22:50 +0000 2013\",\"favourites_count\":28820,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":120348,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1073944040582852608\\/qhE-G8ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1073944040582852608\\/qhE-G8ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2263105532\\/1474833211\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":101,\"favorite_count\":413,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1569\":null,\"1570\":null,\"1571\":null,\"1572\":null,\"1573\":null,\"1574\":null,\"1575\":null,\"1576\":null,\"1577\":{\"created_at\":\"Tue Aug 02 14:44:54 +0000 2022\",\"id\":1554478350114201601,\"id_str\":\"1554478350114201601\",\"full_text\":\"\\u26a0\\ufe0fBREAKING:\\n\\n*NANCY PELOSI HAS LANDED IN TAIWAN\\n\\n\\ud83c\\uddfa\\ud83c\\uddf2\\ud83c\\uddf9\\ud83c\\uddfc\\ud83c\\udde8\\ud83c\\uddf3\",\"truncated\":false,\"display_text_range\":[0,55],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":988955288,\"id_str\":\"988955288\",\"name\":\"Investing.com\",\"screen_name\":\"Investingcom\",\"location\":\"Global\",\"description\":\"\\ud83d\\udcc8 Real-time global financial market data, news, analysis, charts, tools & more \\u2022 In 30 languages via our app or website \\u2022 FREE, for everyone, anywhere! \\ud83c\\udf0e\",\"url\":\"https:\\/\\/t.co\\/idXJqjeYgo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/idXJqjeYgo\",\"expanded_url\":\"https:\\/\\/www.investing.com\",\"display_url\":\"investing.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":831178,\"friends_count\":321,\"listed_count\":6155,\"created_at\":\"Tue Dec 04 15:08:58 +0000 2012\",\"favourites_count\":7491,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":34821,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1110172882368368640\\/pUSI1yPZ_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1110172882368368640\\/pUSI1yPZ_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988955288\\/1650744548\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":249,\"favorite_count\":1414,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1578\":null,\"1579\":null,\"1580\":null,\"1581\":null,\"1582\":null,\"1583\":null,\"1584\":null,\"1585\":null,\"1586\":null,\"1587\":null,\"1588\":null,\"1589\":null,\"1590\":null,\"1591\":null,\"1592\":null,\"1593\":null,\"1594\":null,\"1595\":null,\"1596\":null,\"1597\":null,\"1598\":null,\"1599\":null,\"1600\":{\"created_at\":\"Mon Aug 01 12:13:10 +0000 2022\",\"id\":1554077777573609472,\"id_str\":\"1554077777573609472\",\"full_text\":\"Pay attention to this about 2023 election. If there will be no wasted effort, this must be well considered.\\n#PeterObi #Wike #Yorubas #Southeast https:\\/\\/t.co\\/LjAaew67zA\",\"truncated\":false,\"display_text_range\":[0,143],\"entities\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[108,117]},{\"text\":\"Wike\",\"indices\":[118,123]},{\"text\":\"Yorubas\",\"indices\":[124,132]},{\"text\":\"Southeast\",\"indices\":[133,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554077675370717184,\"id_str\":\"1554077675370717184\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"url\":\"https:\\/\\/t.co\\/LjAaew67zA\",\"display_url\":\"pic.twitter.com\\/LjAaew67zA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lazarusfemi2\\/status\\/1554077777573609472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554077675370717184,\"id_str\":\"1554077675370717184\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"url\":\"https:\\/\\/t.co\\/LjAaew67zA\",\"display_url\":\"pic.twitter.com\\/LjAaew67zA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lazarusfemi2\\/status\\/1554077777573609472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":99900,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/vid\\/1280x720\\/D78iEaJivB0qhukk.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/pl\\/-4-9LJOB_2gOTSc3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/vid\\/640x360\\/mXIlhnHgHpb0n91n.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/vid\\/480x270\\/kl34ffc9hxZ9jKnD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1317532510365024257,\"id_str\":\"1317532510365024257\",\"name\":\"Apostle Femi Lazarus\",\"screen_name\":\"lazarusfemi2\",\"location\":\"Nigeria\",\"description\":\"Senior Pastor @Theslcglobal.\\nHusband @Pastormimie1\\nReal Estate @Lightcityhomes\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6245,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sat Oct 17 18:27:51 +0000 2020\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529813415191003137\\/2jCISCq1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529813415191003137\\/2jCISCq1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317532510365024257\\/1659624210\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":218,\"favorite_count\":514,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1601\":null,\"1602\":null,\"1603\":null,\"1604\":null,\"1605\":null,\"1606\":null,\"1607\":null,\"1608\":null,\"1609\":null,\"1610\":null,\"1611\":null,\"1612\":null,\"1613\":null,\"1614\":null,\"1615\":null,\"1616\":null,\"1617\":null,\"1618\":null,\"1619\":null,\"1620\":null,\"1621\":null,\"1622\":null,\"1623\":null,\"1624\":null,\"1625\":null,\"1626\":null,\"1627\":null,\"1628\":null,\"1629\":null,\"1630\":null,\"1631\":null,\"1632\":null,\"1633\":null,\"1634\":null,\"1635\":null,\"1636\":null,\"1637\":null,\"1638\":null,\"1639\":null,\"1640\":null,\"1641\":null,\"1642\":null,\"1643\":null,\"1644\":null,\"1645\":null,\"1646\":null,\"1647\":null,\"1648\":null,\"1649\":null,\"1650\":null,\"1651\":null,\"1652\":null,\"1653\":null,\"1654\":null,\"1655\":null,\"1656\":null,\"1657\":null,\"1658\":null,\"1659\":null,\"1660\":null,\"1661\":null,\"1662\":null,\"1663\":null,\"1664\":null,\"1665\":null,\"1666\":null,\"1667\":null,\"1668\":null,\"1669\":null,\"1670\":null,\"1671\":null,\"1672\":null,\"1673\":null,\"1674\":null,\"1675\":null,\"1676\":{\"created_at\":\"Mon Aug 01 15:57:53 +0000 2022\",\"id\":1554134332687646720,\"id_str\":\"1554134332687646720\",\"full_text\":\"Those selling their pi now will have themselves to blame. \\n\\nBeing rich is all about choice! \\nSome people got rich with BTC, ETH, BNB, SHIBA-COIN, DOGE-COIN and so on... Same thing will happen with Pi network, history always repeat itself\\n#StopSellingPi\\n#PiNetworkUpdates\\n#BTC https:\\/\\/t.co\\/xZDJQ2cRIM\",\"truncated\":false,\"display_text_range\":[0,275],\"entities\":{\"hashtags\":[{\"text\":\"StopSellingPi\",\"indices\":[238,252]},{\"text\":\"PiNetworkUpdates\",\"indices\":[253,270]},{\"text\":\"BTC\",\"indices\":[271,275]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554134316799631362,\"id_str\":\"1554134316799631362\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFk7U4WIAIZntK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFk7U4WIAIZntK.jpg\",\"url\":\"https:\\/\\/t.co\\/xZDJQ2cRIM\",\"display_url\":\"pic.twitter.com\\/xZDJQ2cRIM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNetwork_info\\/status\\/1554134332687646720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1366,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554134316799631362,\"id_str\":\"1554134316799631362\",\"indices\":[276,299],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFk7U4WIAIZntK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFk7U4WIAIZntK.jpg\",\"url\":\"https:\\/\\/t.co\\/xZDJQ2cRIM\",\"display_url\":\"pic.twitter.com\\/xZDJQ2cRIM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNetwork_info\\/status\\/1554134332687646720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1366,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1529399801183338496,\"id_str\":\"1529399801183338496\",\"name\":\"Pi Network info \\u03c0 \\ud83c\\udf0d\",\"screen_name\":\"Aisha_PiNetwork\",\"location\":\"\",\"description\":\"PiNetwork info: Wired to dish out vital information's about #PiNetwork and crypto currencies to every day people around the world \\ud83c\\udf0d\\ud83c\\udf0e\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1465,\"friends_count\":9,\"listed_count\":2,\"created_at\":\"Wed May 25 09:52:01 +0000 2022\",\"favourites_count\":1061,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":597,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555899846976061449\\/kehrUysF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555899846976061449\\/kehrUysF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1529399801183338496\\/1659000715\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":70,\"favorite_count\":262,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1677\":null,\"1678\":{\"created_at\":\"Tue Aug 02 09:16:16 +0000 2022\",\"id\":1554395650011316224,\"id_str\":\"1554395650011316224\",\"full_text\":\"History will never forget these 6 digits \\\"$314,159\\\", and its impact on the greatest community in the history of blockchain & cryptocurrency. #PiNetwork\\n\\nJoin Pi community group\\u27a1\\ufe0fhttps:\\/\\/t.co\\/OB8soQcljy https:\\/\\/t.co\\/HOhBlbsrQG\",\"truncated\":false,\"display_text_range\":[0,205],\"entities\":{\"hashtags\":[{\"text\":\"PiNetwork\",\"indices\":[145,155]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OB8soQcljy\",\"expanded_url\":\"http:\\/\\/t.me\\/PiRevolutionX\",\"display_url\":\"t.me\\/PiRevolutionX\",\"indices\":[182,205]}],\"media\":[{\"id\":1554395633414541313,\"id_str\":\"1554395633414541313\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJSl9IXkAEWw7M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJSl9IXkAEWw7M.jpg\",\"url\":\"https:\\/\\/t.co\\/HOhBlbsrQG\",\"display_url\":\"pic.twitter.com\\/HOhBlbsrQG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WoodyLightyearx\\/status\\/1554395650011316224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1052,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":596,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1795,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554395633414541313,\"id_str\":\"1554395633414541313\",\"indices\":[206,229],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJSl9IXkAEWw7M.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJSl9IXkAEWw7M.jpg\",\"url\":\"https:\\/\\/t.co\\/HOhBlbsrQG\",\"display_url\":\"pic.twitter.com\\/HOhBlbsrQG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WoodyLightyearx\\/status\\/1554395650011316224\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1200,\"h\":1052,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":596,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1795,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":125613934,\"id_str\":\"125613934\",\"name\":\"Woody Lightyear \\u03c0\",\"screen_name\":\"WoodyLightyearx\",\"location\":\"Lagos, Nigeria \",\"description\":\"Artiste | Founder - @lightyear_ent | Producer & Director - #GandhiTheMusical | Yogi | #PiNetwork invitation code: woodylightyearx (Pi Network download link\\u2b07\\ufe0f)\",\"url\":\"https:\\/\\/t.co\\/oG6GykLLMj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/oG6GykLLMj\",\"expanded_url\":\"https:\\/\\/minepi.com\\/woodylightyearx\",\"display_url\":\"minepi.com\\/woodylightyearx\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46834,\"friends_count\":2357,\"listed_count\":77,\"created_at\":\"Tue Mar 23 10:02:28 +0000 2010\",\"favourites_count\":46990,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":31828,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1512370630104129540\\/6mwcks3i_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1512370630104129540\\/6mwcks3i_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/125613934\\/1557311968\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":521,\"favorite_count\":2029,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1679\":null,\"1680\":null,\"1681\":null,\"1682\":null,\"1683\":null,\"1684\":null,\"1685\":null,\"1686\":null,\"1687\":null,\"1688\":null,\"1689\":null,\"1690\":null,\"1691\":null,\"1692\":null,\"1693\":{\"created_at\":\"Thu Jul 21 17:59:17 +0000 2022\",\"id\":1550178616104853505,\"id_str\":\"1550178616104853505\",\"full_text\":\"It is time for China and #Taiwan to reunify https:\\/\\/t.co\\/wOhXYRuTV7\",\"truncated\":false,\"display_text_range\":[0,43],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1550178532730572800,\"id_str\":\"1550178532730572800\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"url\":\"https:\\/\\/t.co\\/wOhXYRuTV7\",\"display_url\":\"pic.twitter.com\\/wOhXYRuTV7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerceraVenida\\/status\\/1550178616104853505\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":499,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1550178532730572800,\"id_str\":\"1550178532730572800\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"url\":\"https:\\/\\/t.co\\/wOhXYRuTV7\",\"display_url\":\"pic.twitter.com\\/wOhXYRuTV7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerceraVenida\\/status\\/1550178616104853505\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":499,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":713263697842405376,\"id_str\":\"713263697842405376\",\"name\":\"Chef Gaykwon \\u262d\",\"screen_name\":\"TerceraVenida\",\"location\":\"Minnesota\",\"description\":\"gay commie (ML)\\n\\nen\\/es\\n\\nhe\\/him\\n\\nC\\/V: $Gaykwon\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1865,\"friends_count\":374,\"listed_count\":4,\"created_at\":\"Fri Mar 25 07:18:12 +0000 2016\",\"favourites_count\":18769,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10820,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525247225001132032\\/uWAZagKH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525247225001132032\\/uWAZagKH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/713263697842405376\\/1659298046\",\"profile_link_color\":\"F58EA8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1574,\"favorite_count\":22978,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1694\":null,\"1695\":null,\"1696\":null,\"1697\":null,\"1698\":null,\"1699\":null,\"1700\":null,\"1701\":null,\"1702\":null,\"1703\":null,\"1704\":null,\"1705\":null,\"1706\":null,\"1707\":null,\"1708\":null,\"1709\":null,\"1710\":null,\"1711\":null,\"1712\":null,\"1713\":null,\"1714\":null,\"1715\":null,\"1716\":null,\"1717\":null,\"1718\":null,\"1719\":null,\"1720\":null,\"1721\":null,\"1722\":null,\"1723\":null,\"1724\":null,\"1725\":null,\"1726\":null,\"1727\":null,\"1728\":null,\"1729\":null,\"1730\":null,\"1731\":null,\"1732\":null,\"1733\":null,\"1734\":null,\"1735\":null,\"1736\":null,\"1737\":null,\"1738\":{\"created_at\":\"Tue Aug 02 11:36:18 +0000 2022\",\"id\":1554430889735626755,\"id_str\":\"1554430889735626755\",\"full_text\":\"Register and renew your Non-Citizen Ghana Card for $120 and $60 respectively. Check out this week's dollar rate from @CalBankPLC. Visit https:\\/\\/t.co\\/ijv8oRsT3D for more information. \\n#FIMS #NCGhanaCard https:\\/\\/t.co\\/QWlxe3s1mU\",\"truncated\":false,\"display_text_range\":[0,201],\"entities\":{\"hashtags\":[{\"text\":\"FIMS\",\"indices\":[183,188]},{\"text\":\"NCGhanaCard\",\"indices\":[189,201]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CalBankPLC\",\"name\":\"CalBank PLC\",\"id\":1577714569,\"id_str\":\"1577714569\",\"indices\":[117,128]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ijv8oRsT3D\",\"expanded_url\":\"https:\\/\\/fims.org.gh\",\"display_url\":\"fims.org.gh\",\"indices\":[136,159]}],\"media\":[{\"id\":1554430768948158469,\"id_str\":\"1554430768948158469\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJyjHMXoAUunMe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJyjHMXoAUunMe.jpg\",\"url\":\"https:\\/\\/t.co\\/QWlxe3s1mU\",\"display_url\":\"pic.twitter.com\\/QWlxe3s1mU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NCGhanacard\\/status\\/1554430889735626755\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554430768948158469,\"id_str\":\"1554430768948158469\",\"indices\":[202,225],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJyjHMXoAUunMe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJyjHMXoAUunMe.jpg\",\"url\":\"https:\\/\\/t.co\\/QWlxe3s1mU\",\"display_url\":\"pic.twitter.com\\/QWlxe3s1mU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NCGhanacard\\/status\\/1554430889735626755\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1282991347,\"id_str\":\"1282991347\",\"name\":\"NC Ghanacard\",\"screen_name\":\"NCGhanacard\",\"location\":\"\",\"description\":\"Official page for the non- citizen Ghana Card under the National Identification Authority (NIA) of Ghana.\",\"url\":\"http:\\/\\/t.co\\/47CqZ0OO7u\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/47CqZ0OO7u\",\"expanded_url\":\"http:\\/\\/www.fims.org.gh\",\"display_url\":\"fims.org.gh\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":258,\"friends_count\":881,\"listed_count\":1,\"created_at\":\"Wed Mar 20 11:06:56 +0000 2013\",\"favourites_count\":45,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":411,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1202168463214698496\\/vheHaBEQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1202168463214698496\\/vheHaBEQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1282991347\\/1593507395\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1739\":null,\"1740\":null,\"1741\":null,\"1742\":null,\"1743\":{\"created_at\":\"Tue Aug 02 10:17:46 +0000 2022\",\"id\":1554411125755842560,\"id_str\":\"1554411125755842560\",\"full_text\":\"09-0540 #SPAR19 is over Indonesia, heading toward east and tracked by 300k users.\\n\\n05-0730 #SPAR20 is on ground at SZB airport (Kuala Lumpur).\\n\\nhttps:\\/\\/t.co\\/bgOQx4RZYu https:\\/\\/t.co\\/zWyVUkHJtF\",\"truncated\":false,\"display_text_range\":[0,167],\"entities\":{\"hashtags\":[{\"text\":\"SPAR19\",\"indices\":[8,15]},{\"text\":\"SPAR20\",\"indices\":[91,98]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bgOQx4RZYu\",\"expanded_url\":\"https:\\/\\/www.flightradar24.com\\/SPAR19\\/2ce4f83f\",\"display_url\":\"flightradar24.com\\/SPAR19\\/2ce4f83f\",\"indices\":[144,167]}],\"media\":[{\"id\":1554409870262247427,\"id_str\":\"1554409870262247427\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJfiphXoAM82vo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJfiphXoAM82vo.jpg\",\"url\":\"https:\\/\\/t.co\\/zWyVUkHJtF\",\"display_url\":\"pic.twitter.com\\/zWyVUkHJtF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flightradar24\\/status\\/1554411125755842560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1332,\"h\":821,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":740,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":419,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554409870262247427,\"id_str\":\"1554409870262247427\",\"indices\":[168,191],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJfiphXoAM82vo.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJfiphXoAM82vo.jpg\",\"url\":\"https:\\/\\/t.co\\/zWyVUkHJtF\",\"display_url\":\"pic.twitter.com\\/zWyVUkHJtF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/flightradar24\\/status\\/1554411125755842560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1332,\"h\":821,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":740,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":419,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":134196350,\"id_str\":\"134196350\",\"name\":\"Flightradar24\",\"screen_name\":\"flightradar24\",\"location\":\"Stockholm, Sweden\",\"description\":\"Track air traffic in real time from all around the world! \\nApps: https:\\/\\/t.co\\/AnZhJUIrBg | FAQ: https:\\/\\/t.co\\/WkTgAaePHs | Support: https:\\/\\/t.co\\/BomORktp7R\",\"url\":\"http:\\/\\/t.co\\/lEiMiBrCZi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/lEiMiBrCZi\",\"expanded_url\":\"http:\\/\\/www.flightradar24.com\\/\",\"display_url\":\"flightradar24.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AnZhJUIrBg\",\"expanded_url\":\"http:\\/\\/fr24.com\\/apps\",\"display_url\":\"fr24.com\\/apps\",\"indices\":[65,88]},{\"url\":\"https:\\/\\/t.co\\/WkTgAaePHs\",\"expanded_url\":\"http:\\/\\/fr24.com\\/faq\",\"display_url\":\"fr24.com\\/faq\",\"indices\":[96,119]},{\"url\":\"https:\\/\\/t.co\\/BomORktp7R\",\"expanded_url\":\"http:\\/\\/fr24.com\\/contact-us\",\"display_url\":\"fr24.com\\/contact-us\",\"indices\":[131,154]}]}},\"protected\":false,\"followers_count\":890674,\"friends_count\":576,\"listed_count\":5716,\"created_at\":\"Sat Apr 17 18:27:21 +0000 2010\",\"favourites_count\":11067,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":48234,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1321848505099554823\\/mTwrtWNY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1321848505099554823\\/mTwrtWNY_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/134196350\\/1614703404\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1081,\"favorite_count\":4394,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1744\":null,\"1745\":null,\"1746\":null,\"1747\":null,\"1748\":null,\"1749\":null,\"1750\":null,\"1751\":null,\"1752\":null,\"1753\":null,\"1754\":null,\"1755\":null,\"1756\":null,\"1757\":null,\"1758\":null,\"1759\":null,\"1760\":null,\"1761\":null,\"1762\":null,\"1763\":null,\"1764\":null,\"1765\":null,\"1766\":null,\"1767\":null,\"1768\":null,\"1769\":null,\"1770\":null,\"1771\":null,\"1772\":null,\"1773\":null,\"1774\":null,\"1775\":null,\"1776\":null,\"1777\":null,\"1778\":null,\"1779\":null,\"1780\":null,\"1781\":null,\"1782\":null,\"1783\":null,\"1784\":null,\"1785\":null,\"1786\":null,\"1787\":null,\"1788\":null,\"1789\":{\"created_at\":\"Tue Aug 02 09:00:03 +0000 2022\",\"id\":1554391566231511040,\"id_str\":\"1554391566231511040\",\"full_text\":\"\\u26a0\\ufe0fBREAKING:\\n\\n*U.S. HOUSE SPEAKER PELOSI EXPECTED TO ARRIVE IN TAIWAN AT 10:20PM LOCAL TIME - LIBERTY TIMES\\n\\n\\ud83c\\uddfa\\ud83c\\uddf8 \\ud83c\\udde8\\ud83c\\uddf3 \\ud83c\\uddf9\\ud83c\\uddfc https:\\/\\/t.co\\/nD0jhgbP3A\",\"truncated\":false,\"display_text_range\":[0,116],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554378738602745856,\"id_str\":\"1554378738602745856\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJDOjDWIAAo6vR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJDOjDWIAAo6vR.jpg\",\"url\":\"https:\\/\\/t.co\\/nD0jhgbP3A\",\"display_url\":\"pic.twitter.com\\/nD0jhgbP3A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Investingcom\\/status\\/1554391566231511040\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554378738602745856,\"id_str\":\"1554378738602745856\",\"indices\":[117,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJDOjDWIAAo6vR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJDOjDWIAAo6vR.jpg\",\"url\":\"https:\\/\\/t.co\\/nD0jhgbP3A\",\"display_url\":\"pic.twitter.com\\/nD0jhgbP3A\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Investingcom\\/status\\/1554391566231511040\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":683,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Media Studio<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":988955288,\"id_str\":\"988955288\",\"name\":\"Investing.com\",\"screen_name\":\"Investingcom\",\"location\":\"Global\",\"description\":\"\\ud83d\\udcc8 Real-time global financial market data, news, analysis, charts, tools & more \\u2022 In 30 languages via our app or website \\u2022 FREE, for everyone, anywhere! \\ud83c\\udf0e\",\"url\":\"https:\\/\\/t.co\\/idXJqjeYgo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/idXJqjeYgo\",\"expanded_url\":\"https:\\/\\/www.investing.com\",\"display_url\":\"investing.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":831178,\"friends_count\":321,\"listed_count\":6155,\"created_at\":\"Tue Dec 04 15:08:58 +0000 2012\",\"favourites_count\":7491,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":34821,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1110172882368368640\\/pUSI1yPZ_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1110172882368368640\\/pUSI1yPZ_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/988955288\\/1650744548\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":154,\"favorite_count\":568,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1790\":null,\"1791\":null,\"1792\":null,\"1793\":null,\"1794\":null,\"1795\":null,\"1796\":null,\"1797\":null,\"1798\":null,\"1799\":null,\"1800\":null,\"1801\":null,\"1802\":null,\"1803\":null,\"1804\":null,\"1805\":null,\"1806\":null,\"1807\":null,\"1808\":null,\"1809\":{\"created_at\":\"Sat Jul 30 23:26:04 +0000 2022\",\"id\":1553522343657472003,\"id_str\":\"1553522343657472003\",\"full_text\":\"#Pelosi could bring death and destruction to #Taiwan, just as #Biden brought devastation on #Ukraine\\ufe0f. https:\\/\\/t.co\\/RM16N5K94d\",\"truncated\":false,\"display_text_range\":[0,102],\"entities\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"Biden\",\"indices\":[62,68]},{\"text\":\"Ukraine\\ufe0f\",\"indices\":[92,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553522340486684672,\"id_str\":\"1553522340486684672\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"url\":\"https:\\/\\/t.co\\/RM16N5K94d\",\"display_url\":\"pic.twitter.com\\/RM16N5K94d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timand2037\\/status\\/1553522343657472003\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553522340486684672,\"id_str\":\"1553522340486684672\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"url\":\"https:\\/\\/t.co\\/RM16N5K94d\",\"display_url\":\"pic.twitter.com\\/RM16N5K94d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timand2037\\/status\\/1553522343657472003\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":56575418,\"id_str\":\"56575418\",\"name\":\"tim anderson\",\"screen_name\":\"timand2037\",\"location\":\"Sydney, Australia.\",\"description\":\"Writer, internationalist, academic. Director of the Centre for Counter Hegemonic Studies. Comment welcome but trolls and abusers will be blocked.\",\"url\":\"https:\\/\\/t.co\\/kud6aQQcVA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kud6aQQcVA\",\"expanded_url\":\"https:\\/\\/counter-hegemonic-studies.site\",\"display_url\":\"counter-hegemonic-studies.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":84714,\"friends_count\":1586,\"listed_count\":609,\"created_at\":\"Tue Jul 14 02:18:31 +0000 2009\",\"favourites_count\":31808,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21215,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370173793490989057\\/mzp49Uj3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370173793490989057\\/mzp49Uj3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/56575418\\/1649227314\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":844,\"favorite_count\":3321,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1810\":null,\"1811\":null,\"1812\":null,\"1813\":null,\"1814\":null,\"1815\":null,\"1816\":null,\"1817\":null,\"1818\":{\"created_at\":\"Tue Aug 02 07:29:45 +0000 2022\",\"id\":1554368842343800832,\"id_str\":\"1554368842343800832\",\"full_text\":\"\\ud83c\\udde8\\ud83c\\uddf3Mass cancellations of ALL civilian flights continue in China's southern provinces. https:\\/\\/t.co\\/XeyMaDI8tz\",\"truncated\":false,\"display_text_range\":[0,84],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554368837965041664,\"id_str\":\"1554368837965041664\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZI6OQTX0AAHYl0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZI6OQTX0AAHYl0.jpg\",\"url\":\"https:\\/\\/t.co\\/XeyMaDI8tz\",\"display_url\":\"pic.twitter.com\\/XeyMaDI8tz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TpyxaNews\\/status\\/1554368842343800832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1048,\"h\":804,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":522,\"resize\":\"fit\"},\"large\":{\"w\":1048,\"h\":804,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554368837965041664,\"id_str\":\"1554368837965041664\",\"indices\":[85,108],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZI6OQTX0AAHYl0.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZI6OQTX0AAHYl0.jpg\",\"url\":\"https:\\/\\/t.co\\/XeyMaDI8tz\",\"display_url\":\"pic.twitter.com\\/XeyMaDI8tz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TpyxaNews\\/status\\/1554368842343800832\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1048,\"h\":804,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":522,\"resize\":\"fit\"},\"large\":{\"w\":1048,\"h\":804,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":200559274,\"id_str\":\"200559274\",\"name\":\"\\u0422\\u0420\\u0423\\u0425\\u0410\\u26a1\\ufe0fEnglish\",\"screen_name\":\"TpyxaNews\",\"location\":\"\",\"description\":\"\\ud83d\\udd1e+ | Latest information on the current situation happening in Ukraine | \\u2709\\ufe0f: info@tpyxa.net\",\"url\":\"https:\\/\\/t.co\\/Dupkhnql5Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Dupkhnql5Y\",\"expanded_url\":\"https:\\/\\/tpyxa.net\\/\",\"display_url\":\"tpyxa.net\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":91873,\"friends_count\":6,\"listed_count\":1338,\"created_at\":\"Sat Oct 09 16:25:29 +0000 2010\",\"favourites_count\":101,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":14296,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508491273673617415\\/Q0ylc568_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508491273673617415\\/Q0ylc568_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/200559274\\/1650800239\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":42,\"favorite_count\":104,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1819\":null,\"1820\":null,\"1821\":null,\"1822\":null,\"1823\":null,\"1824\":null,\"1825\":null,\"1826\":null,\"1827\":null,\"1828\":null,\"1829\":null,\"1830\":null,\"1831\":null,\"1832\":null,\"1833\":null,\"1834\":null,\"1835\":null,\"1836\":null,\"1837\":null,\"1838\":null,\"1839\":null,\"1840\":null,\"1841\":null,\"1842\":null,\"1843\":null,\"1844\":null,\"1845\":null,\"1846\":null,\"1847\":null,\"1848\":null,\"1849\":null,\"1850\":{\"created_at\":\"Mon Aug 01 20:01:54 +0000 2022\",\"id\":1554195741203202049,\"id_str\":\"1554195741203202049\",\"full_text\":\"#JUSTIN :Branded Vehicles ready to hit the road.OBIdient movement is hitting all the corners of this nation. Campaign never start o, This is Level 1. Obi is coming.\\n\\nRetweet aggressively let's encourage others.\\n#PeterObiForPresident2023\\nGo and verify Anambra God Abeg Ambode Okowa https:\\/\\/t.co\\/ykWbIsQHmE\",\"truncated\":false,\"display_text_range\":[0,280],\"entities\":{\"hashtags\":[{\"text\":\"JUSTIN\",\"indices\":[0,7]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[211,236]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554194077935075328,\"id_str\":\"1554194077935075328\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554194077935075328\\/pu\\/img\\/imfXrGmlqL_8SqGy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554194077935075328\\/pu\\/img\\/imfXrGmlqL_8SqGy.jpg\",\"url\":\"https:\\/\\/t.co\\/ykWbIsQHmE\",\"display_url\":\"pic.twitter.com\\/ykWbIsQHmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Movement_4_Obi\\/status\\/1554195741203202049\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554194077935075328,\"id_str\":\"1554194077935075328\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554194077935075328\\/pu\\/img\\/imfXrGmlqL_8SqGy.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554194077935075328\\/pu\\/img\\/imfXrGmlqL_8SqGy.jpg\",\"url\":\"https:\\/\\/t.co\\/ykWbIsQHmE\",\"display_url\":\"pic.twitter.com\\/ykWbIsQHmE\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Movement_4_Obi\\/status\\/1554195741203202049\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":480,\"h\":852,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":852,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,71],\"duration_millis\":21082,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554194077935075328\\/pu\\/pl\\/N4BK8X_AnKzHMBEQ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554194077935075328\\/pu\\/vid\\/320x568\\/T4eFUmXnLpeISpOD.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554194077935075328\\/pu\\/vid\\/480x852\\/JYSdCm0C6h8X-b8k.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1534532513170857984,\"id_str\":\"1534532513170857984\",\"name\":\"YOUTH MOVEMENT FOR PETER OBI\",\"screen_name\":\"Movement_4_Obi\",\"location\":\"\",\"description\":\"Movement for a New Nigeria\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":196,\"friends_count\":172,\"listed_count\":0,\"created_at\":\"Wed Jun 08 13:47:27 +0000 2022\",\"favourites_count\":1063,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2542,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546902086100582405\\/qC5c3dyX_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546902086100582405\\/qC5c3dyX_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1534532513170857984\\/1657645174\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":13,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1851\":null,\"1852\":null,\"1853\":null,\"1854\":null,\"1855\":null,\"1856\":null,\"1857\":null,\"1858\":null,\"1859\":null,\"1860\":null,\"1861\":null,\"1862\":null,\"1863\":null,\"1864\":null,\"1865\":null,\"1866\":null,\"1867\":null,\"1868\":null,\"1869\":null,\"1870\":null,\"1871\":null,\"1872\":null,\"1873\":null,\"1874\":null,\"1875\":null,\"1876\":null,\"1877\":null,\"1878\":null,\"1879\":null,\"1880\":null,\"1881\":null,\"1882\":null,\"1883\":null,\"1884\":null,\"1885\":null,\"1886\":{\"created_at\":\"Mon Aug 01 11:24:29 +0000 2022\",\"id\":1554065525352939520,\"id_str\":\"1554065525352939520\",\"full_text\":\"Come to Ilorin clubs and you'll see wonders\\ud83d\\ude01\\n\\n Ambode Plateau Sabinus Carter Efe ASUU Femi Adebayo Lekki Wike Calabar Davido doyin and cyph #breastfeeding Liz Benson #PeterObiForPresident2023 yorubas #Wizkidfc Zulum Christ Jesus Deji South East #BiafraReferendum https:\\/\\/t.co\\/7uBpx9fiAI\",\"truncated\":false,\"display_text_range\":[0,263],\"entities\":{\"hashtags\":[{\"text\":\"breastfeeding\",\"indices\":[140,154]},{\"text\":\"PeterObiForPresident2023\",\"indices\":[166,191]},{\"text\":\"Wizkidfc\",\"indices\":[200,209]},{\"text\":\"BiafraReferendum\",\"indices\":[246,263]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554065468553658371,\"id_str\":\"1554065468553658371\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554065468553658371\\/pu\\/img\\/WDEDrETo1PAPBTjA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554065468553658371\\/pu\\/img\\/WDEDrETo1PAPBTjA.jpg\",\"url\":\"https:\\/\\/t.co\\/7uBpx9fiAI\",\"display_url\":\"pic.twitter.com\\/7uBpx9fiAI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YusfulTweets\\/status\\/1554065525352939520\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554065468553658371,\"id_str\":\"1554065468553658371\",\"indices\":[264,287],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554065468553658371\\/pu\\/img\\/WDEDrETo1PAPBTjA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554065468553658371\\/pu\\/img\\/WDEDrETo1PAPBTjA.jpg\",\"url\":\"https:\\/\\/t.co\\/7uBpx9fiAI\",\"display_url\":\"pic.twitter.com\\/7uBpx9fiAI\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YusfulTweets\\/status\\/1554065525352939520\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":448,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":359,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":448,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[28,53],\"duration_millis\":45045,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554065468553658371\\/pu\\/vid\\/320x604\\/7BkpVtDATP-IU55Q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554065468553658371\\/pu\\/pl\\/4okfj5NQEGQ8q6O5.m3u8?tag=12&container=fmp4\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554065468553658371\\/pu\\/vid\\/448x848\\/BzxRimfUG4iSVA45.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1509454029620928516,\"id_str\":\"1509454029620928516\",\"name\":\"North King \\ud83d\\udc51\",\"screen_name\":\"YusfulTweets\",\"location\":\"Adamawa Nigeria\",\"description\":\"30BG || Advocate of Good Governance ||printing press || graphics Artist || please follow my new account I follow back immediately\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":415,\"friends_count\":541,\"listed_count\":0,\"created_at\":\"Thu Mar 31 08:54:44 +0000 2022\",\"favourites_count\":1746,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1553088842693066761\\/xthVDz0m_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1553088842693066761\\/xthVDz0m_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1509454029620928516\\/1656744444\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":99,\"favorite_count\":339,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1887\":null,\"1888\":{\"created_at\":\"Mon Aug 01 19:35:58 +0000 2022\",\"id\":1554189211737153537,\"id_str\":\"1554189211737153537\",\"full_text\":\"GM of HP's article on cubex https:\\/\\/t.co\\/MNv9NFzK1C\\nHuge partnership with DUBAI Blockchain center https:\\/\\/t.co\\/SbGiksaCrA\\nFocal point of @EricLMitchell newest article on @AppleNews and @PopWrapped\\nhttps:\\/\\/t.co\\/z5trlRP9Fg\\nNow tell me Why dont u own a @cubexnft\\n#CUBEXTAKEOVER #NFT https:\\/\\/t.co\\/44HrJzm7jY\",\"truncated\":false,\"display_text_range\":[0,279],\"entities\":{\"hashtags\":[{\"text\":\"CUBEXTAKEOVER\",\"indices\":[260,274]},{\"text\":\"NFT\",\"indices\":[275,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EricLMitchell\",\"name\":\"Eric L. Mitchell\",\"id\":55623038,\"id_str\":\"55623038\",\"indices\":[137,151]},{\"screen_name\":\"AppleNews\",\"name\":\"Apple News\",\"id\":3257608936,\"id_str\":\"3257608936\",\"indices\":[170,180]},{\"screen_name\":\"PopWrapped\",\"name\":\"PopWrapped\",\"id\":100077645,\"id_str\":\"100077645\",\"indices\":[185,196]},{\"screen_name\":\"cubexnft\",\"name\":\"CubeX\",\"id\":1497758039163691015,\"id_str\":\"1497758039163691015\",\"indices\":[250,259]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MNv9NFzK1C\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/pulse\\/web-30-blockchain-decentralization-stephane-delaporte\",\"display_url\":\"linkedin.com\\/pulse\\/web-30-b\\u2026\",\"indices\":[28,51]},{\"url\":\"https:\\/\\/t.co\\/SbGiksaCrA\",\"expanded_url\":\"https:\\/\\/www.bloomberg.com\\/press-releases\\/2022-07-31\\/memorandum-of-understanding-signed-by-the-dubai-blockchain-center-and-chaintech-labs-ltd\",\"display_url\":\"bloomberg.com\\/press-releases\\u2026\",\"indices\":[98,121]},{\"url\":\"https:\\/\\/t.co\\/z5trlRP9Fg\",\"expanded_url\":\"https:\\/\\/apple.news\\/AOEWEdOp4PuC4tlhtil0iww\",\"display_url\":\"apple.news\\/AOEWEdOp4PuC4t\\u2026\",\"indices\":[197,220]}],\"media\":[{\"id\":1554189182096101377,\"id_str\":\"1554189182096101377\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"url\":\"https:\\/\\/t.co\\/44HrJzm7jY\",\"display_url\":\"pic.twitter.com\\/44HrJzm7jY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UdodirimUche\\/status\\/1554189211737153537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554189182096101377,\"id_str\":\"1554189182096101377\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"url\":\"https:\\/\\/t.co\\/44HrJzm7jY\",\"display_url\":\"pic.twitter.com\\/44HrJzm7jY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UdodirimUche\\/status\\/1554189211737153537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":2902,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/vid\\/320x320\\/sQvh-o29JLXa-LdG.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/vid\\/720x720\\/pYEDLFBYUsdCHYBS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/pl\\/eH4WlIFQ81Q3ZQtf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/vid\\/540x540\\/ugzpHrZ0ipGDii4j.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1209917689919164416,\"id_str\":\"1209917689919164416\",\"name\":\"Phenomenal\",\"screen_name\":\"UdodirimUche\",\"location\":\"Nigeria\",\"description\":\"Small boy with a very Big God\\ud83c\\udfcb\\ufe0f\\u200d\\u2640\\ufe0f\\nNFT and crypto enthusiast\\nAvid novel Reader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":116,\"friends_count\":768,\"listed_count\":2,\"created_at\":\"Wed Dec 25 19:24:17 +0000 2019\",\"favourites_count\":2638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1209917689919164416\\/1649449035\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":42,\"favorite_count\":62,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1889\":null,\"1890\":{\"created_at\":\"Sun Jul 31 15:02:55 +0000 2022\",\"id\":1553758109100871680,\"id_str\":\"1553758109100871680\",\"full_text\":\"Five months ago I was on-board to North cyprus to begin studying nursing.I am putting this out because I hope and pray something is done,this really is my last resolve as @YakinDoguUni has refused to refund the 1,400 Euros I made as payment for half of my tuition fee\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YakinDoguUni\",\"name\":\"Yak\\u0131n Do\\u011fu \\u00dcniversitesi Official\",\"id\":576959644,\"id_str\":\"576959644\",\"indices\":[171,184]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1501750832399892483,\"id_str\":\"1501750832399892483\",\"name\":\"azeezat_ ari.yike\",\"screen_name\":\"riyike001\",\"location\":\"Nigeria\",\"description\":\"||Striving Muslimah\\ud83e\\uddd5 ||Writer\\n||Arike ||Graphic designer sometimes \\n||Arabic\\ud83e\\udd0c\\u2764\\u2764\\n|| Jannah!\\ud83e\\udd32\\ud83e\\udd7a\",\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"expanded_url\":\"https:\\/\\/zeewrites17.blogspot.com\",\"display_url\":\"zeewrites17.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":93,\"listed_count\":0,\"created_at\":\"Thu Mar 10 02:44:50 +0000 2022\",\"favourites_count\":3135,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1414,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501750832399892483\\/1646880676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":3,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1891\":null,\"1892\":null,\"1893\":{\"created_at\":\"Mon Aug 01 12:13:10 +0000 2022\",\"id\":1554077777573609472,\"id_str\":\"1554077777573609472\",\"full_text\":\"Pay attention to this about 2023 election. If there will be no wasted effort, this must be well considered.\\n#PeterObi #Wike #Yorubas #Southeast https:\\/\\/t.co\\/LjAaew67zA\",\"truncated\":false,\"display_text_range\":[0,143],\"entities\":{\"hashtags\":[{\"text\":\"PeterObi\",\"indices\":[108,117]},{\"text\":\"Wike\",\"indices\":[118,123]},{\"text\":\"Yorubas\",\"indices\":[124,132]},{\"text\":\"Southeast\",\"indices\":[133,143]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554077675370717184,\"id_str\":\"1554077675370717184\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"url\":\"https:\\/\\/t.co\\/LjAaew67zA\",\"display_url\":\"pic.twitter.com\\/LjAaew67zA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lazarusfemi2\\/status\\/1554077777573609472\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554077675370717184,\"id_str\":\"1554077675370717184\",\"indices\":[144,167],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554077675370717184\\/pu\\/img\\/y-c1ZD8TcFN_XRDc.jpg\",\"url\":\"https:\\/\\/t.co\\/LjAaew67zA\",\"display_url\":\"pic.twitter.com\\/LjAaew67zA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lazarusfemi2\\/status\\/1554077777573609472\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1280,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":99900,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/vid\\/1280x720\\/D78iEaJivB0qhukk.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/pl\\/-4-9LJOB_2gOTSc3.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/vid\\/640x360\\/mXIlhnHgHpb0n91n.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554077675370717184\\/pu\\/vid\\/480x270\\/kl34ffc9hxZ9jKnD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1317532510365024257,\"id_str\":\"1317532510365024257\",\"name\":\"Apostle Femi Lazarus\",\"screen_name\":\"lazarusfemi2\",\"location\":\"Nigeria\",\"description\":\"Senior Pastor @Theslcglobal.\\nHusband @Pastormimie1\\nReal Estate @Lightcityhomes\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6245,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sat Oct 17 18:27:51 +0000 2020\",\"favourites_count\":34,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":128,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529813415191003137\\/2jCISCq1_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529813415191003137\\/2jCISCq1_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1317532510365024257\\/1659624210\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":218,\"favorite_count\":514,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1894\":null,\"1895\":null,\"1896\":null,\"1897\":null,\"1898\":null,\"1899\":null,\"1900\":null,\"1901\":null,\"1902\":null,\"1903\":null,\"1904\":null,\"1905\":null,\"1906\":null,\"1907\":null,\"1908\":null,\"1909\":{\"created_at\":\"Mon Aug 01 14:39:51 +0000 2022\",\"id\":1554114694406967297,\"id_str\":\"1554114694406967297\",\"full_text\":\"After you partake on this event in Nigeria & abroad & you still support APC because of your political interest. Most Nigerians are inhuman & lack empathy\\ud83e\\udd26\\u200d. Will Nigeria ever work? https:\\/\\/t.co\\/KLXj8VKYJ4\",\"truncated\":false,\"display_text_range\":[0,192],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554114659069878273,\"id_str\":\"1554114659069878273\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554114659069878273\\/pu\\/img\\/sbrEH_91qwyMRQ0c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554114659069878273\\/pu\\/img\\/sbrEH_91qwyMRQ0c.jpg\",\"url\":\"https:\\/\\/t.co\\/KLXj8VKYJ4\",\"display_url\":\"pic.twitter.com\\/KLXj8VKYJ4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmy4life02\\/status\\/1554114694406967297\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":540,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":540,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554114659069878273,\"id_str\":\"1554114659069878273\",\"indices\":[193,216],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554114659069878273\\/pu\\/img\\/sbrEH_91qwyMRQ0c.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554114659069878273\\/pu\\/img\\/sbrEH_91qwyMRQ0c.jpg\",\"url\":\"https:\\/\\/t.co\\/KLXj8VKYJ4\",\"display_url\":\"pic.twitter.com\\/KLXj8VKYJ4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/emmy4life02\\/status\\/1554114694406967297\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":540,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":540,\"h\":540,\"resize\":\"fit\"},\"small\":{\"w\":540,\"h\":540,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":17716,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554114659069878273\\/pu\\/vid\\/540x540\\/WZ_CSZs1a9TdhsBl.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554114659069878273\\/pu\\/vid\\/320x320\\/sYbaXXi7dGp2ij-t.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554114659069878273\\/pu\\/pl\\/CdaSQIAVikt6zB7r.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":222605974,\"id_str\":\"222605974\",\"name\":\"One Gun General\\u2122\\ud83c\\uddf8\\ud83c\\udde6\",\"screen_name\":\"emmy4life02\",\"location\":\"KSA\",\"description\":\"Optometrist\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2725,\"friends_count\":4432,\"listed_count\":1,\"created_at\":\"Fri Dec 03 22:25:12 +0000 2010\",\"favourites_count\":151005,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":38253,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549051485530505216\\/MiVDjChe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549051485530505216\\/MiVDjChe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222605974\\/1657739476\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":13,\"favorite_count\":25,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1910\":null,\"1911\":null,\"1912\":null,\"1913\":null,\"1914\":null,\"1915\":null,\"1916\":null,\"1917\":null,\"1918\":null,\"1919\":null,\"1920\":null,\"1921\":null,\"1922\":null,\"1923\":null,\"1924\":null,\"1925\":null,\"1926\":{\"created_at\":\"Mon Aug 01 12:00:00 +0000 2022\",\"id\":1554074466124062720,\"id_str\":\"1554074466124062720\",\"full_text\":\"COME ON!!!!\\n\\u2b07\\ufe0fLet's party in the discord\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf81\\ud83c\\udf81\\ud83c\\udf81\\n\\u2705Invite your frnds to join Discord:https:\\/\\/t.co\\/azt2mYYEUd\\n\\u2705The Top 5 who invited most people (At least up to level 1)\\n\\u2705Share\\ud83d\\udc49\\ud83d\\udcb0100 USDT\\ud83d\\udcb0\\ud83d\\udc48\\n\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b https:\\/\\/t.co\\/7IRVfI6EzU\",\"truncated\":false,\"display_text_range\":[0,196],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/azt2mYYEUd\",\"expanded_url\":\"https:\\/\\/discord.gg\\/YDzewf3T6g\",\"display_url\":\"discord.gg\\/YDzewf3T6g\",\"indices\":[82,105]}],\"media\":[{\"id\":1554046575496003585,\"id_str\":\"1554046575496003585\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"url\":\"https:\\/\\/t.co\\/7IRVfI6EzU\",\"display_url\":\"pic.twitter.com\\/7IRVfI6EzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gameta_Official\\/status\\/1554074466124062720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554046575496003585,\"id_str\":\"1554046575496003585\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"url\":\"https:\\/\\/t.co\\/7IRVfI6EzU\",\"display_url\":\"pic.twitter.com\\/7IRVfI6EzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gameta_Official\\/status\\/1554074466124062720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1498176918252036098,\"id_str\":\"1498176918252036098\",\"name\":\"Gameta\",\"screen_name\":\"Gameta_Official\",\"location\":\"\",\"description\":\"Gameta\\u2014bring 4.7 billion users into Web3 by Casual GameFi matrix.\\n\\ndiscord:https:\\/\\/t.co\\/fb64PaENb7\",\"url\":\"https:\\/\\/t.co\\/HCDXrxntMJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HCDXrxntMJ\",\"expanded_url\":\"http:\\/\\/www.gameta.pro\",\"display_url\":\"gameta.pro\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fb64PaENb7\",\"expanded_url\":\"http:\\/\\/discord.gg\\/YDzewf3T6g\",\"display_url\":\"discord.gg\\/YDzewf3T6g\",\"indices\":[75,98]}]}},\"protected\":false,\"followers_count\":28103,\"friends_count\":134,\"listed_count\":14,\"created_at\":\"Mon Feb 28 06:03:20 +0000 2022\",\"favourites_count\":124,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":213,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504296763410518020\\/d8JM3kNk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504296763410518020\\/d8JM3kNk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498176918252036098\\/1657892773\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":108,\"favorite_count\":66,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"1927\":null,\"1928\":null,\"1929\":null,\"1930\":null,\"1931\":null,\"1932\":null,\"1933\":null,\"1934\":null,\"1935\":null,\"1936\":null,\"1937\":null,\"1938\":null,\"1939\":null,\"1940\":null,\"1941\":null,\"1942\":null,\"1943\":null,\"1944\":null,\"1945\":null,\"1946\":null,\"1947\":null,\"1948\":null,\"1949\":null,\"1950\":null,\"1951\":null,\"1952\":null,\"1953\":null,\"1954\":null,\"1955\":{\"created_at\":\"Mon Aug 01 17:31:19 +0000 2022\",\"id\":1554157842617229312,\"id_str\":\"1554157842617229312\",\"full_text\":\"You guys should not blame Bella\\u2019s nails oo,\\ud83d\\ude02 phyna and Diana has nails too. #BBNaija\",\"truncated\":false,\"display_text_range\":[0,87],\"entities\":{\"hashtags\":[{\"text\":\"BBNaija\",\"indices\":[79,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1212033221984059398,\"id_str\":\"1212033221984059398\",\"name\":\"\\ud83d\\udc7d\",\"screen_name\":\"wendugodson\",\"location\":\"Lagos, Nigeria\",\"description\":\"I\\u2019m not here to please you.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":209,\"friends_count\":186,\"listed_count\":0,\"created_at\":\"Tue Dec 31 15:30:26 +0000 2019\",\"favourites_count\":16942,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2245,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555981341262487557\\/36NNT7II_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555981341262487557\\/36NNT7II_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1212033221984059398\\/1659809928\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"1956\":null,\"1957\":null,\"1958\":null,\"1959\":null,\"1960\":null,\"1961\":null,\"1962\":null,\"1963\":null,\"1964\":null,\"1965\":null,\"1966\":null,\"1967\":null,\"1968\":null,\"1969\":null,\"1970\":null,\"1971\":null,\"1972\":null,\"1973\":null,\"1974\":null,\"1975\":null,\"1976\":null,\"1977\":null,\"1978\":null,\"1979\":null,\"1980\":null,\"1981\":null,\"1982\":null,\"1983\":null,\"1984\":null,\"1985\":null,\"1986\":null,\"1987\":null,\"1988\":null,\"1989\":null,\"1990\":null,\"1991\":null,\"1992\":null,\"1993\":null,\"1994\":null,\"1995\":null,\"1996\":null,\"1997\":null,\"1998\":null,\"1999\":null,\"2000\":null,\"2001\":null,\"2002\":null,\"2003\":null,\"2004\":null,\"2005\":null,\"2006\":null,\"2007\":null,\"2008\":null,\"2009\":null,\"2010\":null,\"2011\":null,\"2012\":null,\"2013\":null,\"2014\":null,\"2015\":null,\"2016\":null,\"2017\":null,\"2018\":null,\"2019\":null,\"2020\":null,\"2021\":null,\"2022\":null,\"2023\":null,\"2024\":null,\"2025\":null,\"2026\":null,\"2027\":null,\"2028\":null,\"2029\":null,\"2030\":null,\"2031\":null,\"2032\":null,\"2033\":null,\"2034\":null,\"2035\":null,\"2036\":null,\"2037\":null,\"2038\":null,\"2039\":null,\"2040\":null,\"2041\":null,\"2042\":null,\"2043\":null,\"2044\":null,\"2045\":null,\"2046\":null,\"2047\":null,\"2048\":null,\"2049\":null,\"2050\":null,\"2051\":null,\"2052\":null,\"2053\":null,\"2054\":null,\"2055\":null,\"2056\":null,\"2057\":null,\"2058\":null,\"2059\":null,\"2060\":null,\"2061\":null,\"2062\":null,\"2063\":null,\"2064\":null,\"2065\":null,\"2066\":null,\"2067\":null,\"2068\":null,\"2069\":null,\"2070\":null,\"2071\":null,\"2072\":null,\"2073\":null,\"2074\":null,\"2075\":null,\"2076\":null,\"2077\":null,\"2078\":null,\"2079\":null,\"2080\":null,\"2081\":null,\"2082\":null,\"2083\":null,\"2084\":null,\"2085\":null,\"2086\":null,\"2087\":null,\"2088\":null,\"2089\":{\"created_at\":\"Mon Aug 01 13:15:29 +0000 2022\",\"id\":1554093462525513729,\"id_str\":\"1554093462525513729\",\"full_text\":\"Pelosi Will Reportedly Visit Taiwan Despite China\\u2019s Warnings Of Retaliation https:\\/\\/t.co\\/pEyovVJTvG https:\\/\\/t.co\\/jlUwVQoqgX\",\"truncated\":false,\"display_text_range\":[0,99],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pEyovVJTvG\",\"expanded_url\":\"https:\\/\\/www.forbes.com\\/sites\\/siladityaray\\/2022\\/08\\/01\\/pelosi-will-reportedly-visit-taiwan-despite-chinas-warnings-of-retaliation\\/?utm_campaign=forbes&utm_source=twitter&utm_medium=social&utm_term=Gordie\",\"display_url\":\"forbes.com\\/sites\\/siladity\\u2026\",\"indices\":[76,99]}],\"media\":[{\"id\":1554093461447532545,\"id_str\":\"1554093461447532545\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE_xO1WYAE_SFe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE_xO1WYAE_SFe.jpg\",\"url\":\"https:\\/\\/t.co\\/jlUwVQoqgX\",\"display_url\":\"pic.twitter.com\\/jlUwVQoqgX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Forbes\\/status\\/1554093462525513729\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":959,\"h\":539,\"resize\":\"fit\"},\"medium\":{\"w\":959,\"h\":539,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554093461447532545,\"id_str\":\"1554093461447532545\",\"indices\":[100,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZE_xO1WYAE_SFe.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZE_xO1WYAE_SFe.jpg\",\"url\":\"https:\\/\\/t.co\\/jlUwVQoqgX\",\"display_url\":\"pic.twitter.com\\/jlUwVQoqgX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Forbes\\/status\\/1554093462525513729\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":959,\"h\":539,\"resize\":\"fit\"},\"medium\":{\"w\":959,\"h\":539,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Forbes Botstream<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":91478624,\"id_str\":\"91478624\",\"name\":\"Forbes\",\"screen_name\":\"Forbes\",\"location\":\"New York, NY\",\"description\":\"Official account of Forbes, the world\\u2019s leading voice for entrepreneurial success and free enterprise, and home to breaking news, business, money and more.\",\"url\":\"https:\\/\\/t.co\\/6qjZ8PCpvM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/6qjZ8PCpvM\",\"expanded_url\":\"http:\\/\\/forbes.com\",\"display_url\":\"forbes.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18189846,\"friends_count\":5137,\"listed_count\":62882,\"created_at\":\"Sat Nov 21 02:09:57 +0000 2009\",\"favourites_count\":10204,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":411456,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"072250\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1448413506936639491\\/2mvOrPuF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1448413506936639491\\/2mvOrPuF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/91478624\\/1634163665\",\"profile_link_color\":\"072250\",\"profile_sidebar_border_color\":\"CCCCCC\",\"profile_sidebar_fill_color\":\"F7F7F7\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":62,\"favorite_count\":222,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2090\":null,\"2091\":null,\"2092\":null,\"2093\":null,\"2094\":null,\"2095\":null,\"2096\":null,\"2097\":null,\"2098\":null,\"2099\":null,\"2100\":null,\"2101\":null,\"2102\":null,\"2103\":null,\"2104\":null,\"2105\":null,\"2106\":null,\"2107\":null,\"2108\":null,\"2109\":null,\"2110\":null,\"2111\":null,\"2112\":null,\"2113\":null,\"2114\":null,\"2115\":null,\"2116\":null,\"2117\":null,\"2118\":null,\"2119\":null,\"2120\":null,\"2121\":null,\"2122\":null,\"2123\":null,\"2124\":null,\"2125\":null,\"2126\":null,\"2127\":null,\"2128\":null,\"2129\":null,\"2130\":null,\"2131\":null,\"2132\":null,\"2133\":null,\"2134\":null,\"2135\":null,\"2136\":null,\"2137\":null,\"2138\":null,\"2139\":null,\"2140\":null,\"2141\":null,\"2142\":null,\"2143\":null,\"2144\":null,\"2145\":null,\"2146\":null,\"2147\":null,\"2148\":null,\"2149\":null,\"2150\":null,\"2151\":null,\"2152\":null,\"2153\":null,\"2154\":null,\"2155\":null,\"2156\":null,\"2157\":null,\"2158\":null,\"2159\":null,\"2160\":null,\"2161\":null,\"2162\":null,\"2163\":null,\"2164\":null,\"2165\":null,\"2166\":null,\"2167\":null,\"2168\":null,\"2169\":null,\"2170\":null,\"2171\":null,\"2172\":null,\"2173\":null,\"2174\":null,\"2175\":null,\"2176\":null,\"2177\":null,\"2178\":null,\"2179\":null,\"2180\":null,\"2181\":null,\"2182\":null,\"2183\":null,\"2184\":null,\"2185\":null,\"2186\":null,\"2187\":null,\"2188\":null,\"2189\":null,\"2190\":null,\"2191\":null,\"2192\":null,\"2193\":null,\"2194\":null,\"2195\":null,\"2196\":null,\"2197\":null,\"2198\":null,\"2199\":null,\"2200\":null,\"2201\":null,\"2202\":null,\"2203\":null,\"2204\":null,\"2205\":null,\"2206\":null,\"2207\":null,\"2208\":null,\"2209\":null,\"2210\":null,\"2211\":null,\"2212\":null,\"2213\":null,\"2214\":null,\"2215\":null,\"2216\":null,\"2217\":null,\"2218\":null,\"2219\":null,\"2220\":null,\"2221\":null,\"2222\":null,\"2223\":null,\"2224\":null,\"2225\":null,\"2226\":null,\"2227\":null,\"2228\":null,\"2229\":null,\"2230\":null,\"2231\":null,\"2232\":null,\"2233\":null,\"2234\":null,\"2235\":null,\"2236\":null,\"2237\":null,\"2238\":null,\"2239\":null,\"2240\":null,\"2241\":null,\"2242\":null,\"2243\":null,\"2244\":null,\"2245\":null,\"2246\":null,\"2247\":null,\"2248\":null,\"2249\":null,\"2250\":null,\"2251\":null,\"2252\":null,\"2253\":null,\"2254\":null,\"2255\":null,\"2256\":null,\"2257\":null,\"2258\":null,\"2259\":null,\"2260\":null,\"2261\":null,\"2262\":null,\"2263\":null,\"2264\":null,\"2265\":null,\"2266\":null,\"2267\":null,\"2268\":null,\"2269\":null,\"2270\":null,\"2271\":null,\"2272\":null,\"2273\":null,\"2274\":null,\"2275\":null,\"2276\":null,\"2277\":null,\"2278\":null,\"2279\":null,\"2280\":null,\"2281\":null,\"2282\":null,\"2283\":null,\"2284\":null,\"2285\":null,\"2286\":null,\"2287\":null,\"2288\":null,\"2289\":null,\"2290\":null,\"2291\":null,\"2292\":null,\"2293\":null,\"2294\":null,\"2295\":null,\"2296\":null,\"2297\":null,\"2298\":null,\"2299\":null,\"2300\":null,\"2301\":null,\"2302\":null,\"2303\":null,\"2304\":null,\"2305\":null,\"2306\":null,\"2307\":null,\"2308\":null,\"2309\":null,\"2310\":{\"created_at\":\"Wed Jun 29 05:22:33 +0000 2022\",\"id\":1542015643347783681,\"id_str\":\"1542015643347783681\",\"full_text\":\"@blackman_cjr https:\\/\\/t.co\\/uNu8rLBXQt\",\"truncated\":false,\"display_text_range\":[14,37],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"blackman_cjr\",\"name\":\"Duncan \\uf8ff\",\"id\":1399797830504620040,\"id_str\":\"1399797830504620040\",\"indices\":[0,13]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uNu8rLBXQt\",\"expanded_url\":\"https:\\/\\/www.upwork.com\\/freelancers\\/~017677079cf7e47c33\",\"display_url\":\"upwork.com\\/freelancers\\/~0\\u2026\",\"indices\":[14,37]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1542012911098421249,\"in_reply_to_status_id_str\":\"1542012911098421249\",\"in_reply_to_user_id\":1399797830504620040,\"in_reply_to_user_id_str\":\"1399797830504620040\",\"in_reply_to_screen_name\":\"blackman_cjr\",\"user\":{\"id\":1055125237422002176,\"id_str\":\"1055125237422002176\",\"name\":\"AyTee\\ud83c\\udd94\",\"screen_name\":\"Aytee001\",\"location\":\"Lagos, Nigeria\",\"description\":\"Influencer| Content writer | Website Designer.\\nPhysiotherapist\\ud83c\\udf1c\\nJaytee Accessories Plug (JAP)\\n\\nhttps:\\/\\/t.co\\/lQ3vzvt0h0\\n\\nUpwork\\nhttps:\\/\\/t.co\\/bJb8QFxVLm\",\"url\":\"https:\\/\\/t.co\\/AbeF0SSySd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/AbeF0SSySd\",\"expanded_url\":\"http:\\/\\/fiverr.com\\/tomj_writer1\",\"display_url\":\"fiverr.com\\/tomj_writer1\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lQ3vzvt0h0\",\"expanded_url\":\"http:\\/\\/tiktok.com\\/@blaq_tunde\",\"display_url\":\"tiktok.com\\/@blaq_tunde\",\"indices\":[95,118]},{\"url\":\"https:\\/\\/t.co\\/bJb8QFxVLm\",\"expanded_url\":\"http:\\/\\/bit.ly\\/3uSou4l\",\"display_url\":\"bit.ly\\/3uSou4l\",\"indices\":[127,150]}]}},\"protected\":false,\"followers_count\":1172,\"friends_count\":1380,\"listed_count\":0,\"created_at\":\"Wed Oct 24 15:53:54 +0000 2018\",\"favourites_count\":4857,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2770,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542400328770920449\\/FuDWCDk4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542400328770920449\\/FuDWCDk4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1055125237422002176\\/1654078736\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":5,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"qme\"},\"2311\":null,\"2312\":null,\"2313\":null,\"2314\":null,\"2315\":null,\"2316\":null,\"2317\":null,\"2318\":null,\"2319\":null,\"2320\":null,\"2321\":null,\"2322\":null,\"2323\":null,\"2324\":null,\"2325\":null,\"2326\":null,\"2327\":null,\"2328\":null,\"2329\":null,\"2330\":null,\"2331\":null,\"2332\":null,\"2333\":null,\"2334\":null,\"2335\":null,\"2336\":null,\"2337\":null,\"2338\":null,\"2339\":null,\"2340\":null,\"2341\":null,\"2342\":null,\"2343\":null,\"2344\":null,\"2345\":null,\"2346\":null,\"2347\":null,\"2348\":null,\"2349\":null,\"2350\":null,\"2351\":null,\"2352\":null,\"2353\":null,\"2354\":null,\"2355\":null,\"2356\":null,\"2357\":null,\"2358\":null,\"2359\":null,\"2360\":null,\"2361\":null,\"2362\":null,\"2363\":null,\"2364\":null,\"2365\":null,\"2366\":null,\"2367\":null,\"2368\":null,\"2369\":null,\"2370\":null,\"2371\":null,\"2372\":null,\"2373\":null,\"2374\":null,\"2375\":null,\"2376\":null,\"2377\":null,\"2378\":null,\"2379\":null,\"2380\":{\"created_at\":\"Sun Jul 31 08:38:43 +0000 2022\",\"id\":1553661422088982528,\"id_str\":\"1553661422088982528\",\"full_text\":\"MAINLAND RAVE PARTY \\ud83c\\udf89\\n\\nIs today, \\n@ROCKVIEWHOTEL APAPA, LAGOS\\n\\n3pm. BE THERE!!\\ud83d\\udc95\\ud83e\\udd38\\ud83e\\uddb8\\n\\n____\\n\\n#MainlandRaveparty #BBNaija7 #QueenLikeBella #WEURO2022 #WelcomeJackBamToThailand #PartyWithGroovy #PartyWithBeauty https:\\/\\/t.co\\/l5w85zsmnu\",\"truncated\":false,\"display_text_range\":[0,204],\"entities\":{\"hashtags\":[{\"text\":\"MainlandRaveparty\",\"indices\":[89,107]},{\"text\":\"BBNaija7\",\"indices\":[108,117]},{\"text\":\"QueenLikeBella\",\"indices\":[118,133]},{\"text\":\"WEURO2022\",\"indices\":[134,144]},{\"text\":\"WelcomeJackBamToThailand\",\"indices\":[145,170]},{\"text\":\"PartyWithGroovy\",\"indices\":[171,187]},{\"text\":\"PartyWithBeauty\",\"indices\":[188,204]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553660350255480836,\"id_str\":\"1553660350255480836\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-1216WQAQmoBO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-1216WQAQmoBO.jpg\",\"url\":\"https:\\/\\/t.co\\/l5w85zsmnu\",\"display_url\":\"pic.twitter.com\\/l5w85zsmnu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mc_Actually\\/status\\/1553661422088982528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553660350255480836,\"id_str\":\"1553660350255480836\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-1216WQAQmoBO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-1216WQAQmoBO.jpg\",\"url\":\"https:\\/\\/t.co\\/l5w85zsmnu\",\"display_url\":\"pic.twitter.com\\/l5w85zsmnu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mc_Actually\\/status\\/1553661422088982528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1553660350289121283,\"id_str\":\"1553660350289121283\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-122CXkAMUGBK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-122CXkAMUGBK.jpg\",\"url\":\"https:\\/\\/t.co\\/l5w85zsmnu\",\"display_url\":\"pic.twitter.com\\/l5w85zsmnu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mc_Actually\\/status\\/1553661422088982528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1553660353564884997,\"id_str\":\"1553660353564884997\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-13CPXwAUfgCA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-13CPXwAUfgCA.jpg\",\"url\":\"https:\\/\\/t.co\\/l5w85zsmnu\",\"display_url\":\"pic.twitter.com\\/l5w85zsmnu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mc_Actually\\/status\\/1553661422088982528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}},{\"id\":1553660356727291904,\"id_str\":\"1553660356727291904\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-13OBWQAAuzCb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-13OBWQAAuzCb.jpg\",\"url\":\"https:\\/\\/t.co\\/l5w85zsmnu\",\"display_url\":\"pic.twitter.com\\/l5w85zsmnu\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Mc_Actually\\/status\\/1553661422088982528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":768191266140094465,\"id_str\":\"768191266140094465\",\"name\":\"Mc_Actually\",\"screen_name\":\"Mc_Actually\",\"location\":\"Lagos, Nigeria\",\"description\":\"D Best Comedian For Your Cooperate Event, Wedding, Concert And Co.\\n\\nI INVESTED IN MYSELF NOW I'M SELLING! Gracia's \\n\\nfor Bookings & Sponsorship-2348184984107\",\"url\":\"https:\\/\\/t.co\\/cXgdMsCt21\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cXgdMsCt21\",\"expanded_url\":\"http:\\/\\/mc-actually.Mywapblog.com\",\"display_url\":\"mc-actually.Mywapblog.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":110,\"friends_count\":275,\"listed_count\":0,\"created_at\":\"Tue Aug 23 21:00:45 +0000 2016\",\"favourites_count\":253,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":252,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/779005747849990144\\/EVJ_y2qF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/779005747849990144\\/EVJ_y2qF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/768191266140094465\\/1474564416\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2381\":null,\"2382\":null,\"2383\":null,\"2384\":null,\"2385\":null,\"2386\":null,\"2387\":null,\"2388\":null,\"2389\":null,\"2390\":null,\"2391\":null,\"2392\":null,\"2393\":null,\"2394\":null,\"2395\":{\"created_at\":\"Sat Jul 30 06:41:04 +0000 2022\",\"id\":1553269427373752320,\"id_str\":\"1553269427373752320\",\"full_text\":\"The G funk era was \\ud83d\\udd25\\ud83d\\udd25 https:\\/\\/t.co\\/22CZFXx8Al\",\"truncated\":false,\"display_text_range\":[0,21],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553269326861434880,\"id_str\":\"1553269326861434880\",\"indices\":[22,45],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553269326861434880\\/pu\\/img\\/8fNHnlduxo9Xc7UY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553269326861434880\\/pu\\/img\\/8fNHnlduxo9Xc7UY.jpg\",\"url\":\"https:\\/\\/t.co\\/22CZFXx8Al\",\"display_url\":\"pic.twitter.com\\/22CZFXx8Al\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Thabe_lang\\/status\\/1553269427373752320\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553269326861434880,\"id_str\":\"1553269326861434880\",\"indices\":[22,45],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553269326861434880\\/pu\\/img\\/8fNHnlduxo9Xc7UY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553269326861434880\\/pu\\/img\\/8fNHnlduxo9Xc7UY.jpg\",\"url\":\"https:\\/\\/t.co\\/22CZFXx8Al\",\"display_url\":\"pic.twitter.com\\/22CZFXx8Al\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Thabe_lang\\/status\\/1553269427373752320\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":27003,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553269326861434880\\/pu\\/vid\\/320x568\\/r9S42ozdc2TQpx2c.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553269326861434880\\/pu\\/vid\\/480x852\\/N6f4jOAIUaRjrshq.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553269326861434880\\/pu\\/vid\\/576x1024\\/raRBmldkifls67vB.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553269326861434880\\/pu\\/pl\\/mdZMO2IrhW_NRqQg.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":71565524,\"id_str\":\"71565524\",\"name\":\"Madliridliri\",\"screen_name\":\"Thabe_lang\",\"location\":\"All over South Africa\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2127,\"friends_count\":2068,\"listed_count\":2,\"created_at\":\"Fri Sep 04 15:47:43 +0000 2009\",\"favourites_count\":9390,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":11421,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554861063304265728\\/0evYdP46_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554861063304265728\\/0evYdP46_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/71565524\\/1658862738\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2394,\"favorite_count\":12941,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2396\":null,\"2397\":null,\"2398\":null,\"2399\":null,\"2400\":null,\"2401\":null,\"2402\":null,\"2403\":null,\"2404\":null,\"2405\":null,\"2406\":null,\"2407\":null,\"2408\":null,\"2409\":null,\"2410\":null,\"2411\":null,\"2412\":null,\"2413\":null,\"2414\":null,\"2415\":null,\"2416\":null,\"2417\":null,\"2418\":null,\"2419\":null,\"2420\":null,\"2421\":null,\"2422\":null,\"2423\":null,\"2424\":null,\"2425\":null,\"2426\":null,\"2427\":null,\"2428\":null,\"2429\":null,\"2430\":null,\"2431\":null,\"2432\":null,\"2433\":null,\"2434\":null,\"2435\":null,\"2436\":null,\"2437\":null,\"2438\":null,\"2439\":null,\"2440\":null,\"2441\":null,\"2442\":null,\"2443\":null,\"2444\":null,\"2445\":null,\"2446\":null,\"2447\":null,\"2448\":null,\"2449\":null,\"2450\":null,\"2451\":null,\"2452\":null,\"2453\":null,\"2454\":null,\"2455\":null,\"2456\":null,\"2457\":null,\"2458\":null,\"2459\":null,\"2460\":null,\"2461\":null,\"2462\":null,\"2463\":null,\"2464\":null,\"2465\":null,\"2466\":null,\"2467\":null,\"2468\":null,\"2469\":null,\"2470\":null,\"2471\":null,\"2472\":null,\"2473\":null,\"2474\":null,\"2475\":null,\"2476\":null,\"2477\":null,\"2478\":null,\"2479\":null,\"2480\":null,\"2481\":null,\"2482\":null,\"2483\":null,\"2484\":null,\"2485\":null,\"2486\":null,\"2487\":null,\"2488\":null,\"2489\":null,\"2490\":null,\"2491\":null,\"2492\":null,\"2493\":null,\"2494\":null,\"2495\":null,\"2496\":null,\"2497\":null,\"2498\":null,\"2499\":null,\"2500\":null,\"2501\":null,\"2502\":null,\"2503\":null,\"2504\":null,\"2505\":null,\"2506\":null,\"2507\":null,\"2508\":null,\"2509\":null,\"2510\":null,\"2511\":null,\"2512\":null,\"2513\":null,\"2514\":null,\"2515\":null,\"2516\":null,\"2517\":null,\"2518\":null,\"2519\":null,\"2520\":null,\"2521\":null,\"2522\":null,\"2523\":null,\"2524\":null,\"2525\":null,\"2526\":null,\"2527\":null,\"2528\":null,\"2529\":null,\"2530\":null,\"2531\":null,\"2532\":null,\"2533\":null,\"2534\":null,\"2535\":{\"created_at\":\"Wed Jul 20 21:28:27 +0000 2022\",\"id\":1549868866469302277,\"id_str\":\"1549868866469302277\",\"full_text\":\"Map of West Taiwan https:\\/\\/t.co\\/FE2XJsKQfV\",\"truncated\":false,\"display_text_range\":[0,18],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1549868863759814656,\"id_str\":\"1549868863759814656\",\"indices\":[19,42],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYI9hSDXkAAAezP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYI9hSDXkAAAezP.jpg\",\"url\":\"https:\\/\\/t.co\\/FE2XJsKQfV\",\"display_url\":\"pic.twitter.com\\/FE2XJsKQfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerribleMaps\\/status\\/1549868866469302277\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":833,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":553,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":833,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1549868863759814656,\"id_str\":\"1549868863759814656\",\"indices\":[19,42],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYI9hSDXkAAAezP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYI9hSDXkAAAezP.jpg\",\"url\":\"https:\\/\\/t.co\\/FE2XJsKQfV\",\"display_url\":\"pic.twitter.com\\/FE2XJsKQfV\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerribleMaps\\/status\\/1549868866469302277\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":833,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":553,\"resize\":\"fit\"},\"medium\":{\"w\":1024,\"h\":833,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1663172653,\"id_str\":\"1663172653\",\"name\":\"Terrible Maps\",\"screen_name\":\"TerribleMaps\",\"location\":\"\",\"description\":\"The home of terrible maps with a pinch of humour https:\\/\\/t.co\\/XP2FfGZkLt Business: terriblemaps@gmail.com\",\"url\":\"https:\\/\\/t.co\\/y51V7HkfS8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/y51V7HkfS8\",\"expanded_url\":\"https:\\/\\/ko-fi.com\\/TerribleMaps\",\"display_url\":\"ko-fi.com\\/TerribleMaps\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XP2FfGZkLt\",\"expanded_url\":\"https:\\/\\/www.instagram.com\\/terriblemap\\/\",\"display_url\":\"instagram.com\\/terriblemap\\/\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":785163,\"friends_count\":958,\"listed_count\":2593,\"created_at\":\"Sun Aug 11 18:15:23 +0000 2013\",\"favourites_count\":524,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1037,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FCF7FC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/695741339326160900\\/CalT3T7Y_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/695741339326160900\\/CalT3T7Y_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1663172653\\/1454712717\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":6760,\"favorite_count\":66992,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2536\":null,\"2537\":null,\"2538\":null,\"2539\":null,\"2540\":null,\"2541\":null,\"2542\":null,\"2543\":null,\"2544\":null,\"2545\":null,\"2546\":null,\"2547\":null,\"2548\":null,\"2549\":null,\"2550\":null,\"2551\":null,\"2552\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2553\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2554\":{\"created_at\":\"Sat Jul 02 14:36:03 +0000 2022\",\"id\":1543242101579812865,\"id_str\":\"1543242101579812865\",\"full_text\":\"Arrival of new luxury, colourful, quality beddings for you. We bring you beddings that complement your bedroom.\\n#GenZ #alonso #Zimbabwe #Raphinha @Baruch4ever\\n4*6 - 4000 bedsheet with 2plwcs\\n4*6- 4500(4plwcs)\\n4*6 - 13500(1 duvet, 1 bedsheet, 4plwcs) https:\\/\\/t.co\\/DJ5SFQvJD9\",\"truncated\":false,\"display_text_range\":[0,249],\"entities\":{\"hashtags\":[{\"text\":\"GenZ\",\"indices\":[112,117]},{\"text\":\"alonso\",\"indices\":[118,125]},{\"text\":\"Zimbabwe\",\"indices\":[126,135]},{\"text\":\"Raphinha\",\"indices\":[136,145]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Baruch4ever\",\"name\":\"Olusegun Abisoye\",\"id\":2754466714,\"id_str\":\"2754466714\",\"indices\":[146,158]}],\"urls\":[],\"media\":[{\"id\":1543242070336409600,\"id_str\":\"1543242070336409600\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FWqyfIzXEAAgqR3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FWqyfIzXEAAgqR3.jpg\",\"url\":\"https:\\/\\/t.co\\/DJ5SFQvJD9\",\"display_url\":\"pic.twitter.com\\/DJ5SFQvJD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1543242101579812865\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":541,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":573,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1543242070336409600,\"id_str\":\"1543242070336409600\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FWqyfIzXEAAgqR3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FWqyfIzXEAAgqR3.jpg\",\"url\":\"https:\\/\\/t.co\\/DJ5SFQvJD9\",\"display_url\":\"pic.twitter.com\\/DJ5SFQvJD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1543242101579812865\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":541,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":573,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":573,\"resize\":\"fit\"}}},{\"id\":1543242077349330950,\"id_str\":\"1543242077349330950\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FWqyfi7XwAY2OKg.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FWqyfi7XwAY2OKg.jpg\",\"url\":\"https:\\/\\/t.co\\/DJ5SFQvJD9\",\"display_url\":\"pic.twitter.com\\/DJ5SFQvJD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1543242101579812865\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":720,\"h\":572,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":572,\"resize\":\"fit\"}}},{\"id\":1543242084773249026,\"id_str\":\"1543242084773249026\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FWqyf-lXwAIK19D.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FWqyf-lXwAIK19D.jpg\",\"url\":\"https:\\/\\/t.co\\/DJ5SFQvJD9\",\"display_url\":\"pic.twitter.com\\/DJ5SFQvJD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1543242101579812865\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":715,\"h\":702,\"resize\":\"fit\"},\"medium\":{\"w\":715,\"h\":702,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":668,\"resize\":\"fit\"}}},{\"id\":1543242088963252225,\"id_str\":\"1543242088963252225\",\"indices\":[250,273],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FWqygOMWIAE08Vd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FWqygOMWIAE08Vd.jpg\",\"url\":\"https:\\/\\/t.co\\/DJ5SFQvJD9\",\"display_url\":\"pic.twitter.com\\/DJ5SFQvJD9\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1543242101579812865\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":720,\"h\":651,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":720,\"h\":651,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":615,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":599102034,\"id_str\":\"599102034\",\"name\":\"Olayinka Abisoye\",\"screen_name\":\"popularhoney\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":151,\"friends_count\":320,\"listed_count\":0,\"created_at\":\"Mon Jun 04 07:21:08 +0000 2012\",\"favourites_count\":2750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1297,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/599102034\\/1436951858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2555\":{\"created_at\":\"Wed Mar 16 11:07:56 +0000 2022\",\"id\":1504051837342781441,\"id_str\":\"1504051837342781441\",\"full_text\":\"Give your bedroom that touch of sparkle as you lay our beautiful, colourful and durable design beddings on your bed.\\n\\nWe give you variety of colours & designs in different bed sizes & deliver @ your convenience Nationwide.\\n#electricity #Nigeria #Diesel\\n@Baruch4ever #Lille https:\\/\\/t.co\\/6O2cgwjhok\",\"truncated\":false,\"display_text_range\":[0,280],\"entities\":{\"hashtags\":[{\"text\":\"electricity\",\"indices\":[231,243]},{\"text\":\"Nigeria\",\"indices\":[244,252]},{\"text\":\"Diesel\",\"indices\":[253,260]},{\"text\":\"Lille\",\"indices\":[274,280]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Baruch4ever\",\"name\":\"Olusegun Abisoye\",\"id\":2754466714,\"id_str\":\"2754466714\",\"indices\":[261,273]}],\"urls\":[],\"media\":[{\"id\":1504051751426666497,\"id_str\":\"1504051751426666497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FN93GV-XMAER1ui.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FN93GV-XMAER1ui.jpg\",\"url\":\"https:\\/\\/t.co\\/6O2cgwjhok\",\"display_url\":\"pic.twitter.com\\/6O2cgwjhok\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1504051837342781441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1504051751426666497,\"id_str\":\"1504051751426666497\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FN93GV-XMAER1ui.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FN93GV-XMAER1ui.jpg\",\"url\":\"https:\\/\\/t.co\\/6O2cgwjhok\",\"display_url\":\"pic.twitter.com\\/6O2cgwjhok\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1504051837342781441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1504051796649648130,\"id_str\":\"1504051796649648130\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FN93I-cXIAIzgDw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FN93I-cXIAIzgDw.jpg\",\"url\":\"https:\\/\\/t.co\\/6O2cgwjhok\",\"display_url\":\"pic.twitter.com\\/6O2cgwjhok\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1504051837342781441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1199,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1242,\"h\":1243,\"resize\":\"fit\"},\"small\":{\"w\":679,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1504051813313650688,\"id_str\":\"1504051813313650688\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FN93J8hXoAA3sA5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FN93J8hXoAA3sA5.jpg\",\"url\":\"https:\\/\\/t.co\\/6O2cgwjhok\",\"display_url\":\"pic.twitter.com\\/6O2cgwjhok\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1504051837342781441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1000,\"h\":1000,\"resize\":\"fit\"}}},{\"id\":1504051828425695240,\"id_str\":\"1504051828425695240\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FN93K00XIAgGMg_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FN93K00XIAgGMg_.jpg\",\"url\":\"https:\\/\\/t.co\\/6O2cgwjhok\",\"display_url\":\"pic.twitter.com\\/6O2cgwjhok\",\"expanded_url\":\"https:\\/\\/twitter.com\\/popularhoney\\/status\\/1504051837342781441\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":599102034,\"id_str\":\"599102034\",\"name\":\"Olayinka Abisoye\",\"screen_name\":\"popularhoney\",\"location\":\"Lagos\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":151,\"friends_count\":320,\"listed_count\":0,\"created_at\":\"Mon Jun 04 07:21:08 +0000 2012\",\"favourites_count\":2750,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1297,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1508039599704223745\\/3a0K1Z4B_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/599102034\\/1436951858\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2556\":null,\"2557\":null,\"2558\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2559\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2560\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2561\":null,\"2562\":{\"created_at\":\"Fri Jul 29 19:25:02 +0000 2022\",\"id\":1553099298748993540,\"id_str\":\"1553099298748993540\",\"full_text\":\"China moving military equipment to Fujian #Taiwan https:\\/\\/t.co\\/Rtdrz4k7k5\",\"truncated\":false,\"display_text_range\":[0,49],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[42,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553099266666758144,\"id_str\":\"1553099266666758144\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553099266666758144\\/pu\\/img\\/jQ1IuUspT_T4YM8I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553099266666758144\\/pu\\/img\\/jQ1IuUspT_T4YM8I.jpg\",\"url\":\"https:\\/\\/t.co\\/Rtdrz4k7k5\",\"display_url\":\"pic.twitter.com\\/Rtdrz4k7k5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/russian_market\\/status\\/1553099298748993540\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553099266666758144,\"id_str\":\"1553099266666758144\",\"indices\":[50,73],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553099266666758144\\/pu\\/img\\/jQ1IuUspT_T4YM8I.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553099266666758144\\/pu\\/img\\/jQ1IuUspT_T4YM8I.jpg\",\"url\":\"https:\\/\\/t.co\\/Rtdrz4k7k5\",\"display_url\":\"pic.twitter.com\\/Rtdrz4k7k5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/russian_market\\/status\\/1553099298748993540\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":848,\"resize\":\"fit\"},\"small\":{\"w\":385,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":848,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[30,53],\"duration_millis\":11266,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553099266666758144\\/pu\\/vid\\/480x848\\/uU9sbzx5Mhk134PU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553099266666758144\\/pu\\/vid\\/320x564\\/K5fgn9A3CTE9dS3F.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553099266666758144\\/pu\\/pl\\/MSLX5yHNrtnjqnBr.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243318995,\"id_str\":\"243318995\",\"name\":\"Russian Market\",\"screen_name\":\"russian_market\",\"location\":\"\",\"description\":\"Thanks for your support \\ud83d\\ude42PayPal: https:\\/\\/t.co\\/zXMMkXDTju\\u2026 \\u2615\\ufe0fBuy me coffee: https:\\/\\/t.co\\/kgJPiJrGA4\",\"url\":\"https:\\/\\/t.co\\/e7kbbWj9HX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/e7kbbWj9HX\",\"expanded_url\":\"https:\\/\\/OPENSEA.io\\/RussianMarket\",\"display_url\":\"OPENSEA.io\\/RussianMarket\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zXMMkXDTju\",\"expanded_url\":\"http:\\/\\/paypal.me\\/RussianMarketC\",\"display_url\":\"paypal.me\\/RussianMarketC\",\"indices\":[33,56]},{\"url\":\"https:\\/\\/t.co\\/kgJPiJrGA4\",\"expanded_url\":\"http:\\/\\/buymeacoffee.com\\/RussianMarket\",\"display_url\":\"buymeacoffee.com\\/RussianMarket\",\"indices\":[75,98]}]}},\"protected\":false,\"followers_count\":210096,\"friends_count\":49,\"listed_count\":3239,\"created_at\":\"Wed Jan 26 19:56:43 +0000 2011\",\"favourites_count\":882,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":132453,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550597034960453639\\/IMB_Ijbn_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550597034960453639\\/IMB_Ijbn_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243318995\\/1657452873\",\"profile_link_color\":\"050505\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1247,\"favorite_count\":4114,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2563\":null,\"2564\":null,\"2565\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2566\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2567\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2568\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2569\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2570\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2571\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2572\":{\"created_at\":\"Fri Jul 29 19:40:32 +0000 2022\",\"id\":1553103199283941376,\"id_str\":\"1553103199283941376\",\"full_text\":\"WHITE HOUSE: We do not see evidence of impending Chinese military activity against Taiwan.\\n\\nCHINESE MILITARY https:\\/\\/t.co\\/Hng9MBrAdy\",\"truncated\":false,\"display_text_range\":[0,108],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553103180090818560,\"id_str\":\"1553103180090818560\",\"indices\":[109,132],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1553103180090818560\\/pu\\/img\\/tlt7WGb-Sdz_c4qN.jpg\",\"url\":\"https:\\/\\/t.co\\/Hng9MBrAdy\",\"display_url\":\"pic.twitter.com\\/Hng9MBrAdy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/EasierYeah\\/status\\/1553103199283941376\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":272,\"h\":368,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":272,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[17,23],\"duration_millis\":11234,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/vid\\/272x368\\/JDLwJM8dHgMSItRr.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1553103180090818560\\/pu\\/pl\\/UgGjyC7Spiyd9OwY.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1429652280,\"id_str\":\"1429652280\",\"name\":\"EasierYeah!\\u6613\\u8005\\u4e5f\",\"screen_name\":\"EasierYeah\",\"location\":\"universe center\",\"description\":\"\\u7ad9\\u5728\\u5b87\\u5b99\\u4e2d\\u5fc3\\u547c\\u5524\\u7231\\uff0c\\u547c\\u5524\\u548c\\u5e73\\uff0c\\u4ee5\\u6211\\u8ba4\\u4e3a\\u7684\\u65b9\\u5f0f\\u3002Standing at the center of the universe calls for love, for peace, in the way I think.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":309,\"friends_count\":3373,\"listed_count\":9,\"created_at\":\"Wed May 15 06:11:03 +0000 2013\",\"favourites_count\":7843,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20694,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1418976343744724992\\/ihngynyR_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1429652280\\/1632062681\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":18,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2573\":null,\"2574\":null,\"2575\":null,\"2576\":null,\"2577\":null,\"2578\":null,\"2579\":null,\"2580\":null,\"2581\":null,\"2582\":null,\"2583\":null,\"2584\":null,\"2585\":null,\"2586\":null,\"2587\":null,\"2588\":null,\"2589\":null,\"2590\":null,\"2591\":null,\"2592\":null,\"2593\":null,\"2594\":null,\"2595\":null,\"2596\":null,\"2597\":null,\"2598\":{\"created_at\":\"Sun Aug 07 14:09:07 +0000 2022\",\"id\":1556281287421431808,\"id_str\":\"1556281287421431808\",\"full_text\":\"Attacking an occupying army is an imperative, not a war crime. You, on other hand, kill kids just because you can and then sell your weapons as \\\"empirically tested\\\" https:\\/\\/t.co\\/geTexxYdtL\",\"truncated\":false,\"display_text_range\":[0,164],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/geTexxYdtL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AviMayer\\/status\\/1556011073488453632\",\"display_url\":\"twitter.com\\/AviMayer\\/statu\\u2026\",\"indices\":[165,188]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1141074567022166017,\"id_str\":\"1141074567022166017\",\"name\":\"Darkair\",\"screen_name\":\"DarkDarkair\",\"location\":\"The New Kush\",\"description\":\"ours\\/ comrade\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1458,\"friends_count\":2459,\"listed_count\":4,\"created_at\":\"Tue Jun 18 20:05:51 +0000 2019\",\"favourites_count\":248623,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":28197,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1379284623398727681\\/HmchIdud_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1379284623398727681\\/HmchIdud_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1141074567022166017\\/1624435149\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1556011073488453632,\"quoted_status_id_str\":\"1556011073488453632\",\"retweet_count\":1,\"favorite_count\":5,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2599\":{\"created_at\":\"Sat Aug 06 22:00:30 +0000 2022\",\"id\":1556037525214461962,\"id_str\":\"1556037525214461962\",\"full_text\":\"If Ukraine loses its economic and financial stability, its frontline will shatter. Soldiers cannot do their job if promises of weapons remain on paper, Maria Repko writes. https:\\/\\/t.co\\/ZctgJllCnU\",\"truncated\":false,\"display_text_range\":[0,195],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZctgJllCnU\",\"expanded_url\":\"https:\\/\\/buff.ly\\/3JA8k51\",\"display_url\":\"buff.ly\\/3JA8k51\",\"indices\":[172,195]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Buffer<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":26792275,\"id_str\":\"26792275\",\"name\":\"Foreign Policy\",\"screen_name\":\"ForeignPolicy\",\"location\":\"\",\"description\":\"The magazine for global politics, economics, and ideas \\ud83c\\udf0e || Sign up for our newsletters: https:\\/\\/t.co\\/vasoTyHsYj\",\"url\":\"https:\\/\\/t.co\\/91lmodrlGD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/91lmodrlGD\",\"expanded_url\":\"http:\\/\\/www.foreignpolicy.com\",\"display_url\":\"foreignpolicy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/vasoTyHsYj\",\"expanded_url\":\"http:\\/\\/foreignpolicy.com\\/newsletters\\/\",\"display_url\":\"foreignpolicy.com\\/newsletters\\/\",\"indices\":[89,112]}]}},\"protected\":false,\"followers_count\":1221078,\"friends_count\":1033,\"listed_count\":19926,\"created_at\":\"Thu Mar 26 16:57:01 +0000 2009\",\"favourites_count\":1546,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":134483,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DF2F2F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1387089996532879364\\/WYZKsRZu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1387089996532879364\\/WYZKsRZu_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26792275\\/1656697074\",\"profile_link_color\":\"333333\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"0084B4\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":53,\"favorite_count\":188,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2600\":null,\"2601\":null,\"2602\":{\"created_at\":\"Sat Aug 06 12:37:17 +0000 2022\",\"id\":1555895786508107777,\"id_str\":\"1555895786508107777\",\"full_text\":\"We need more news like this \\u2014> A mayor in England is fighting for his office. He\\u2019s also a pony. https:\\/\\/t.co\\/MIB0mnyrJ6\",\"truncated\":false,\"display_text_range\":[0,122],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MIB0mnyrJ6\",\"expanded_url\":\"https:\\/\\/www.washingtonpost.com\\/world\\/2022\\/08\\/04\\/patrick-pony-mayor-cockington-pub-scandal\\/\",\"display_url\":\"washingtonpost.com\\/world\\/2022\\/08\\/\\u2026\",\"indices\":[99,122]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":44171091,\"id_str\":\"44171091\",\"name\":\"Ted Coin\\u00e9\",\"screen_name\":\"tedcoine\",\"location\":\"Naples, Florida, USA\",\"description\":\"Author: Five-Star Customer Service. I teach tangible entrepreneurship, ethics, and customer experience. 3x CEO, 1x CMO. he\\/him\",\"url\":\"https:\\/\\/t.co\\/WIDUGsBg6R\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/WIDUGsBg6R\",\"expanded_url\":\"https:\\/\\/medium.com\\/@tedcoine\",\"display_url\":\"medium.com\\/@tedcoine\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":429917,\"friends_count\":304311,\"listed_count\":8508,\"created_at\":\"Tue Jun 02 18:12:19 +0000 2009\",\"favourites_count\":13355,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":147151,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1427394942326947841\\/I6APl9Ve_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1427394942326947841\\/I6APl9Ve_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/44171091\\/1503399480\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":2,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2603\":null,\"2604\":null,\"2605\":null,\"2606\":null,\"2607\":null,\"2608\":null,\"2609\":null,\"2610\":null,\"2611\":null,\"2612\":{\"created_at\":\"Fri Aug 05 15:29:29 +0000 2022\",\"id\":1555576736213094401,\"id_str\":\"1555576736213094401\",\"full_text\":\"KIM LADY'S HONEY COFFEE\\nHey Ladies,\\n\\nDo You Experience Persistent Sexual Dysfunctions like Lack\\/Loss of Sex Drives.\\n\\nHere's KIM LADY'S HONEY COFFEE \\ud83d\\udc49it Increases Blood Flow to Your Sex Organ & Rise Secretion in the reproductive Glands.\\n\\nDM @uganda_kim \\n#Kimcoffeeroastersuganda https:\\/\\/t.co\\/MJnTdJCBKj\",\"truncated\":false,\"display_text_range\":[0,281],\"entities\":{\"hashtags\":[{\"text\":\"Kimcoffeeroastersuganda\",\"indices\":[257,281]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"uganda_kim\",\"name\":\"Kim Coffee Roasters Uganda\",\"id\":1385153969446694913,\"id_str\":\"1385153969446694913\",\"indices\":[244,255]}],\"urls\":[],\"media\":[{\"id\":1555576722338217984,\"id_str\":\"1555576722338217984\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaEyYPWAAACU_X.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaEyYPWAAACU_X.jpg\",\"url\":\"https:\\/\\/t.co\\/MJnTdJCBKj\",\"display_url\":\"pic.twitter.com\\/MJnTdJCBKj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoanKatusiime4\\/status\\/1555576736213094401\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":442,\"h\":646,\"resize\":\"fit\"},\"medium\":{\"w\":442,\"h\":646,\"resize\":\"fit\"},\"large\":{\"w\":442,\"h\":646,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555576722338217984,\"id_str\":\"1555576722338217984\",\"indices\":[282,305],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZaEyYPWAAACU_X.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZaEyYPWAAACU_X.jpg\",\"url\":\"https:\\/\\/t.co\\/MJnTdJCBKj\",\"display_url\":\"pic.twitter.com\\/MJnTdJCBKj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/JoanKatusiime4\\/status\\/1555576736213094401\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":442,\"h\":646,\"resize\":\"fit\"},\"medium\":{\"w\":442,\"h\":646,\"resize\":\"fit\"},\"large\":{\"w\":442,\"h\":646,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1409533221952499713,\"id_str\":\"1409533221952499713\",\"name\":\"Joan Katusiime\",\"screen_name\":\"JoanKatusiime4\",\"location\":\"Mbarara, Uganda\",\"description\":\"Omukimbiri , Mwine Mpaka diehard , @Mbararacityfc \\u2763 \\ud83e\\udd81,business lady ....\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9913,\"friends_count\":5463,\"listed_count\":2,\"created_at\":\"Mon Jun 28 15:25:17 +0000 2021\",\"favourites_count\":95952,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":103517,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1542190417948676096\\/fvR4LiJB_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1542190417948676096\\/fvR4LiJB_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1409533221952499713\\/1636032045\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":147,\"favorite_count\":157,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2613\":{\"created_at\":\"Fri Aug 05 14:02:05 +0000 2022\",\"id\":1555554738774614019,\"id_str\":\"1555554738774614019\",\"full_text\":\"Taiwan's foreign minister Joseph Wu defends US Speaker Nancy Pelosi's visit https:\\/\\/t.co\\/TfIvL8G5k7\",\"truncated\":false,\"display_text_range\":[0,99],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TfIvL8G5k7\",\"expanded_url\":\"https:\\/\\/bbc.in\\/3P6smVQ\",\"display_url\":\"bbc.in\\/3P6smVQ\",\"indices\":[76,99]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"SocialFlow<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":742143,\"id_str\":\"742143\",\"name\":\"BBC News (World)\",\"screen_name\":\"BBCWorld\",\"location\":\"London, UK\",\"description\":\"News, features and analysis from the World's newsroom. Breaking news, follow @BBCBreaking. UK news, @BBCNews. Latest sports news @BBCSport\",\"url\":\"https:\\/\\/t.co\\/4zUWrLAYqP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/4zUWrLAYqP\",\"expanded_url\":\"http:\\/\\/www.bbc.com\\/news\",\"display_url\":\"bbc.com\\/news\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":37720245,\"friends_count\":18,\"listed_count\":132466,\"created_at\":\"Thu Feb 01 07:44:29 +0000 2007\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":349730,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1529107170448523264\\/q3VwEx38_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1529107170448523264\\/q3VwEx38_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/742143\\/1653400584\",\"profile_link_color\":\"1F527B\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"5A5A5A\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":140,\"favorite_count\":793,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2614\":{\"created_at\":\"Thu Aug 04 18:56:44 +0000 2022\",\"id\":1555266505205497860,\"id_str\":\"1555266505205497860\",\"full_text\":\"\\ud83c\\udde8\\ud83c\\uddf3\\ud83c\\uddf9\\ud83c\\uddfcChina fired missiles over the island of Taiwan, the Japanese defence ministry has claimed. \\n\\nThe incident would mark a serious escalation at the start of a four-day military exercise \\n\\n#Thread \\ud83d\\udc47\\n\\nhttps:\\/\\/t.co\\/TM3uPua0tw https:\\/\\/t.co\\/15PQl1Rsn4\",\"truncated\":false,\"display_text_range\":[0,223],\"entities\":{\"hashtags\":[{\"text\":\"Thread\",\"indices\":[189,196]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TM3uPua0tw\",\"expanded_url\":\"https:\\/\\/www.telegraph.co.uk\\/world-news\\/2022\\/08\\/04\\/taiwan-fires-chinese-drones-amid-tensions-beijing\\/\",\"display_url\":\"telegraph.co.uk\\/world-news\\/202\\u2026\",\"indices\":[200,223]}],\"media\":[{\"id\":1555266136157130752,\"id_str\":\"1555266136157130752\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVqT4jXEAAdLo-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVqT4jXEAAdLo-.jpg\",\"url\":\"https:\\/\\/t.co\\/15PQl1Rsn4\",\"display_url\":\"pic.twitter.com\\/15PQl1Rsn4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TelegraphWorld\\/status\\/1555266505205497860\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1140,\"h\":710,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":1140,\"h\":710,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555266136157130752,\"id_str\":\"1555266136157130752\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVqT4jXEAAdLo-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVqT4jXEAAdLo-.jpg\",\"url\":\"https:\\/\\/t.co\\/15PQl1Rsn4\",\"display_url\":\"pic.twitter.com\\/15PQl1Rsn4\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TelegraphWorld\\/status\\/1555266505205497860\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1140,\"h\":710,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":424,\"resize\":\"fit\"},\"large\":{\"w\":1140,\"h\":710,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":19706851,\"id_str\":\"19706851\",\"name\":\"Telegraph World News\",\"screen_name\":\"TelegraphWorld\",\"location\":\"London\",\"description\":\"The latest world news from the @Telegraph.\",\"url\":\"https:\\/\\/t.co\\/DD4vqogvvS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DD4vqogvvS\",\"expanded_url\":\"http:\\/\\/www.telegraph.co.uk\\/news\\/worldnews\\/\",\"display_url\":\"telegraph.co.uk\\/news\\/worldnews\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":274164,\"friends_count\":623,\"listed_count\":3115,\"created_at\":\"Thu Jan 29 11:33:54 +0000 2009\",\"favourites_count\":39,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":95205,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"007A8F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/943090500772474881\\/cNlznsSr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/943090500772474881\\/cNlznsSr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19706851\\/1513685280\",\"profile_link_color\":\"007A8F\",\"profile_sidebar_border_color\":\"787878\",\"profile_sidebar_fill_color\":\"F4F4F0\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1044,\"favorite_count\":3073,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2615\":null,\"2616\":null,\"2617\":null,\"2618\":null,\"2619\":null,\"2620\":null,\"2621\":null,\"2622\":null,\"2623\":null,\"2624\":null,\"2625\":null,\"2626\":null,\"2627\":null,\"2628\":null,\"2629\":null,\"2630\":null,\"2631\":null,\"2632\":null,\"2633\":null,\"2634\":null,\"2635\":null,\"2636\":null,\"2637\":null,\"2638\":null,\"2639\":null,\"2640\":null,\"2641\":null,\"2642\":null,\"2643\":null,\"2644\":null,\"2645\":null,\"2646\":null,\"2647\":null,\"2648\":null,\"2649\":null,\"2650\":null,\"2651\":null,\"2652\":null,\"2653\":{\"created_at\":\"Wed Aug 03 20:00:00 +0000 2022\",\"id\":1554920037831647240,\"id_str\":\"1554920037831647240\",\"full_text\":\"Beijing has ordered live-fire drills, as well as naval and aerial exercises, in response to US House Speaker Nancy Pelosi\\u2019s visit to Taiwan. https:\\/\\/t.co\\/aYtxw5kZ06\",\"truncated\":false,\"display_text_range\":[0,140],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554816568319672331,\"id_str\":\"1554816568319672331\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRzuxX0AAJFHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRzuxX0AAJFHO.jpg\",\"url\":\"https:\\/\\/t.co\\/aYtxw5kZ06\",\"display_url\":\"pic.twitter.com\\/aYtxw5kZ06\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SCMPNews\\/status\\/1554920037831647240\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554816568319672331,\"id_str\":\"1554816568319672331\",\"indices\":[141,164],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPRzuxX0AAJFHO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPRzuxX0AAJFHO.jpg\",\"url\":\"https:\\/\\/t.co\\/aYtxw5kZ06\",\"display_url\":\"pic.twitter.com\\/aYtxw5kZ06\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SCMPNews\\/status\\/1554920037831647240\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":214680,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554816568319672331\\/pl\\/uoapVv8ULz5s2cjm.m3u8?tag=14&container=fmp4\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554816568319672331\\/vid\\/320x320\\/PrdLnsVYOrMbd07o.mp4?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554816568319672331\\/vid\\/540x540\\/IYFo99fqzPIJ2ROm.mp4?tag=14\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/amplify_video\\/1554816568319672331\\/vid\\/720x720\\/7NROgJRQxFkGKIWW.mp4?tag=14\"}]},\"additional_media_info\":{\"title\":\"Mainland show of force as Pelosi visits Taiwan\",\"description\":\"Beijing has ordered live-fire drills, as well as naval and aerial exercises, in response to US House Speaker Nancy Pelosi\\u2019s visit to Taiwan.\",\"embeddable\":true,\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Media Studio<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":23922797,\"id_str\":\"23922797\",\"name\":\"South China Morning Post\",\"screen_name\":\"SCMPNews\",\"location\":\"Hong Kong\",\"description\":\"The South China Morning Post brings you news and analysis about Hong Kong, China and the rest of Asia. Get our app: https:\\/\\/t.co\\/f15xfjosWQ\",\"url\":\"https:\\/\\/t.co\\/nWwvNvAKdT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nWwvNvAKdT\",\"expanded_url\":\"https:\\/\\/www.scmp.com\\/\",\"display_url\":\"scmp.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/f15xfjosWQ\",\"expanded_url\":\"http:\\/\\/sc.mp\\/app_t\",\"display_url\":\"sc.mp\\/app_t\",\"indices\":[116,139]}]}},\"protected\":false,\"followers_count\":925808,\"friends_count\":306,\"listed_count\":8769,\"created_at\":\"Thu Mar 12 08:51:50 +0000 2009\",\"favourites_count\":436,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":362934,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"006391\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1062597520444932096\\/Ue20RVFo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1062597520444932096\\/Ue20RVFo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23922797\\/1553562693\",\"profile_link_color\":\"006391\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E3E3E3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":13,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2654\":null,\"2655\":null,\"2656\":null,\"2657\":null,\"2658\":null,\"2659\":{\"created_at\":\"Wed Aug 03 14:03:13 +0000 2022\",\"id\":1554830251414265856,\"id_str\":\"1554830251414265856\",\"full_text\":\"https:\\/\\/t.co\\/PMqnkDCcaE\\nPelosi leaves Taiwan to Boost Sentiment, Dax rises... cath it all over at https:\\/\\/t.co\\/JY6W2pcJRs\",\"truncated\":false,\"display_text_range\":[0,121],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PMqnkDCcaE\",\"expanded_url\":\"https:\\/\\/www.dailyfx.com\\/forex\\/market_alert\\/2022\\/08\\/03\\/DAX-40-Rises-as-Sentiment-Shifts-Back-and-Forth-Nancy-Pelosi-Wraps-up-Taiwan-Visit.html\",\"display_url\":\"dailyfx.com\\/forex\\/market_a\\u2026\",\"indices\":[0,23]},{\"url\":\"https:\\/\\/t.co\\/JY6W2pcJRs\",\"expanded_url\":\"http:\\/\\/dailyfx.com\",\"display_url\":\"dailyfx.com\",\"indices\":[98,121]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":136211752,\"id_str\":\"136211752\",\"name\":\"Zain Vawda\",\"screen_name\":\"zvawda\",\"location\":\"Sandton, South Africa\",\"description\":\"Financial Markets Writer,\\nOpinions are my own and do not constitute financial advice.\\nChivalry shouldnt be dead.\\nhttps:\\/\\/t.co\\/uXNft6etmt\",\"url\":\"https:\\/\\/t.co\\/5AGoVVI4F6\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5AGoVVI4F6\",\"expanded_url\":\"https:\\/\\/www.dailyfx.com\\/\",\"display_url\":\"dailyfx.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uXNft6etmt\",\"expanded_url\":\"https:\\/\\/www.dailyfx.com\\/risk-warning\",\"display_url\":\"dailyfx.com\\/risk-warning\",\"indices\":[113,136]}]}},\"protected\":false,\"followers_count\":238,\"friends_count\":761,\"listed_count\":2,\"created_at\":\"Fri Apr 23 09:20:07 +0000 2010\",\"favourites_count\":533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2005,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1519281061401874432\\/kCE5VnNt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1519281061401874432\\/kCE5VnNt_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/136211752\\/1655932278\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2660\":null,\"2661\":null,\"2662\":null,\"2663\":null,\"2664\":null,\"2665\":null,\"2666\":null,\"2667\":null,\"2668\":null,\"2669\":null,\"2670\":null,\"2671\":null,\"2672\":null,\"2673\":null,\"2674\":null,\"2675\":null,\"2676\":null,\"2677\":null,\"2678\":null,\"2679\":null,\"2680\":null,\"2681\":null,\"2682\":null,\"2683\":null,\"2684\":null,\"2685\":null,\"2686\":null,\"2687\":{\"created_at\":\"Tue Aug 02 14:30:43 +0000 2022\",\"id\":1554474781730545665,\"id_str\":\"1554474781730545665\",\"full_text\":\"If the US insists on following the wrong course of action, then it should be responsible for any serious consequence arising thereof. https:\\/\\/t.co\\/b4p5b1XodM\",\"truncated\":false,\"display_text_range\":[0,133],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554474664218742786,\"id_str\":\"1554474664218742786\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474664218742786\\/pu\\/img\\/MD-DvCpAQhQ6HqSp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474664218742786\\/pu\\/img\\/MD-DvCpAQhQ6HqSp.jpg\",\"url\":\"https:\\/\\/t.co\\/b4p5b1XodM\",\"display_url\":\"pic.twitter.com\\/b4p5b1XodM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MFA_China\\/status\\/1554474781730545665\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554474664218742786,\"id_str\":\"1554474664218742786\",\"indices\":[134,157],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474664218742786\\/pu\\/img\\/MD-DvCpAQhQ6HqSp.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554474664218742786\\/pu\\/img\\/MD-DvCpAQhQ6HqSp.jpg\",\"url\":\"https:\\/\\/t.co\\/b4p5b1XodM\",\"display_url\":\"pic.twitter.com\\/b4p5b1XodM\",\"expanded_url\":\"https:\\/\\/twitter.com\\/MFA_China\\/status\\/1554474781730545665\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":368,\"resize\":\"fit\"},\"medium\":{\"w\":640,\"h\":368,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,23],\"duration_millis\":76583,\"variants\":[{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474664218742786\\/pu\\/vid\\/468x270\\/SBN3qbBuFbyQwVXL.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474664218742786\\/pu\\/pl\\/Rf6bVPoYcy83hAiZ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554474664218742786\\/pu\\/vid\\/640x368\\/x9Bcud7rIlklcvBA.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183694592433983489,\"id_str\":\"1183694592433983489\",\"name\":\"Spokesperson\\u53d1\\u8a00\\u4eba\\u529e\\u516c\\u5ba4\",\"screen_name\":\"MFA_China\",\"location\":\"\\u4e2d\\u56fd\\uff0c\\u5317\\u4eac Beijing PRC\",\"description\":\"Follow us to know more about China's Diplomacy. \\nYouTube https:\\/\\/t.co\\/owWGn7pWzE \\nFacebook https:\\/\\/t.co\\/Mkd9zD52cs \\nInstagram https:\\/\\/t.co\\/Ibatpyiyli\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/owWGn7pWzE\",\"expanded_url\":\"http:\\/\\/t.cn\\/A67zK9yN\",\"display_url\":\"t.cn\\/A67zK9yN\",\"indices\":[57,80]},{\"url\":\"https:\\/\\/t.co\\/Mkd9zD52cs\",\"expanded_url\":\"http:\\/\\/t.cn\\/A67zKuDi\",\"display_url\":\"t.cn\\/A67zKuDi\",\"indices\":[91,114]},{\"url\":\"https:\\/\\/t.co\\/Ibatpyiyli\",\"expanded_url\":\"http:\\/\\/t.cn\\/A62t2uG3\",\"display_url\":\"t.cn\\/A62t2uG3\",\"indices\":[126,149]}]}},\"protected\":false,\"followers_count\":551686,\"friends_count\":212,\"listed_count\":1803,\"created_at\":\"Mon Oct 14 10:42:48 +0000 2019\",\"favourites_count\":220,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6792,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1245983365464862720\\/geYatUB4_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1245983365464862720\\/geYatUB4_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183694592433983489\\/1586016068\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1123,\"favorite_count\":3643,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2688\":null,\"2689\":null,\"2690\":null,\"2691\":null,\"2692\":null,\"2693\":null,\"2694\":null,\"2695\":null,\"2696\":null,\"2697\":null,\"2698\":null,\"2699\":null,\"2700\":null,\"2701\":null,\"2702\":null,\"2703\":null,\"2704\":null,\"2705\":null,\"2706\":null,\"2707\":null,\"2708\":null,\"2709\":null,\"2710\":null,\"2711\":null,\"2712\":null,\"2713\":null,\"2714\":null,\"2715\":null,\"2716\":null,\"2717\":null,\"2718\":{\"created_at\":\"Wed Aug 03 04:44:05 +0000 2022\",\"id\":1554689538391416832,\"id_str\":\"1554689538391416832\",\"full_text\":\"\\u201cWe will not abandon our commitment to Taiwan and we are proud of our enduring friendship,\\u201d Pelosi said. \\u201cNow more than ever American solidarity with Taiwan is crucial\\u201d https:\\/\\/t.co\\/O6FwXH3a3Y\",\"truncated\":false,\"display_text_range\":[0,192],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/O6FwXH3a3Y\",\"expanded_url\":\"https:\\/\\/trib.al\\/JwGNuXk\",\"display_url\":\"trib.al\\/JwGNuXk\",\"indices\":[169,192]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"SocialFlow<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":34713362,\"id_str\":\"34713362\",\"name\":\"Bloomberg\",\"screen_name\":\"business\",\"location\":\"New York and the World\",\"description\":\"The first word in business news.\",\"url\":\"https:\\/\\/t.co\\/Dim4GKUmra\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Dim4GKUmra\",\"expanded_url\":\"http:\\/\\/www.bloomberg.com\",\"display_url\":\"bloomberg.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8522210,\"friends_count\":1420,\"listed_count\":67609,\"created_at\":\"Thu Apr 23 20:05:17 +0000 2009\",\"favourites_count\":3540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":827589,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"101112\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/991818020233404416\\/alrBF_dr_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/991818020233404416\\/alrBF_dr_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/34713362\\/1654790776\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"DADADA\",\"profile_sidebar_fill_color\":\"EEEEEE\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":45,\"favorite_count\":153,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2719\":null,\"2720\":null,\"2721\":null,\"2722\":null,\"2723\":{\"created_at\":\"Wed Aug 03 00:57:17 +0000 2022\",\"id\":1554632463443427331,\"id_str\":\"1554632463443427331\",\"full_text\":\"CHINA CUSTOMS: SUSPENDS IMPORTS OF CITRUS FRUITS, CHILLED WHITE STRIPED HAIRTAIL, FROZEN MACKEREL FROM TAIWAN FROM AUG 3\",\"truncated\":false,\"display_text_range\":[0,120],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":18856867,\"id_str\":\"18856867\",\"name\":\"zerohedge\",\"screen_name\":\"zerohedge\",\"location\":\"\",\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/XKPaugBRRi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XKPaugBRRi\",\"expanded_url\":\"https:\\/\\/zerohedge.com\",\"display_url\":\"zerohedge.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1461606,\"friends_count\":867,\"listed_count\":24906,\"created_at\":\"Sun Jan 11 04:08:58 +0000 2009\",\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":475385,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/72647502\\/tyler_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/72647502\\/tyler_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":206,\"favorite_count\":1131,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"2724\":null,\"2725\":null,\"2726\":null,\"2727\":null,\"2728\":null,\"2729\":null,\"2730\":null,\"2731\":null,\"2732\":null,\"2733\":null,\"2734\":null,\"2735\":null,\"2736\":null,\"2737\":null,\"2738\":null,\"2739\":null,\"2740\":null,\"2741\":null,\"2742\":null,\"2743\":null,\"2744\":null,\"2745\":null,\"2746\":null,\"2747\":null,\"2748\":null,\"2749\":null,\"2750\":null,\"2751\":{\"created_at\":\"Mon Aug 01 15:22:15 +0000 2022\",\"id\":1554125364460490753,\"id_str\":\"1554125364460490753\",\"full_text\":\"China warns United States of America about US House Speaker Nancy Pelosi of flying to Taiwan on her Asia tour \\ud83d\\ude19 \\ud83d\\ude19 aren't these interesting times and real direct test on Washington... Who has balls of steel now #NancyPatriciaPelosi https:\\/\\/t.co\\/r1kR2SVFnk\",\"truncated\":false,\"display_text_range\":[0,231],\"entities\":{\"hashtags\":[{\"text\":\"NancyPatriciaPelosi\",\"indices\":[211,231]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554125359658024961,\"id_str\":\"1554125359658024961\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFcx87XwAERwa-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFcx87XwAERwa-.jpg\",\"url\":\"https:\\/\\/t.co\\/r1kR2SVFnk\",\"display_url\":\"pic.twitter.com\\/r1kR2SVFnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thabangdikaee\\/status\\/1554125364460490753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":719,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":679,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":720,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554125359658024961,\"id_str\":\"1554125359658024961\",\"indices\":[232,255],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZFcx87XwAERwa-.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZFcx87XwAERwa-.jpg\",\"url\":\"https:\\/\\/t.co\\/r1kR2SVFnk\",\"display_url\":\"pic.twitter.com\\/r1kR2SVFnk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/thabangdikaee\\/status\\/1554125364460490753\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":719,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":679,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":719,\"h\":720,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1520003958831517696,\"id_str\":\"1520003958831517696\",\"name\":\"Thabang Dikae\\ud83c\\udde7\\ud83c\\uddfc\",\"screen_name\":\"thabangdikaee\",\"location\":\"Botswana\",\"description\":\"Only if Africa could trade within Herself...\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42,\"friends_count\":138,\"listed_count\":0,\"created_at\":\"Fri Apr 29 11:36:28 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":255,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1520004715240636416\\/Q_0mUOto_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1520004715240636416\\/Q_0mUOto_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1520003958831517696\\/1651233714\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2752\":null,\"2753\":null,\"2754\":null,\"2755\":null,\"2756\":null,\"2757\":null,\"2758\":null,\"2759\":null,\"2760\":null,\"2761\":null,\"2762\":null,\"2763\":null,\"2764\":null,\"2765\":null,\"2766\":null,\"2767\":null,\"2768\":null,\"2769\":null,\"2770\":null,\"2771\":null,\"2772\":null,\"2773\":null,\"2774\":null,\"2775\":null,\"2776\":null,\"2777\":null,\"2778\":null,\"2779\":null,\"2780\":null,\"2781\":{\"created_at\":\"Wed Dec 08 07:04:35 +0000 2021\",\"id\":1468476586186129408,\"id_str\":\"1468476586186129408\",\"full_text\":\"@Ukraine https:\\/\\/t.co\\/nqwb4h9CTa\",\"truncated\":false,\"display_text_range\":[8,8],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Ukraine\",\"name\":\"Ukraine \\/ \\u0423\\u043a\\u0440\\u0430\\u0457\\u043d\\u0430\",\"id\":732521058507620356,\"id_str\":\"732521058507620356\",\"indices\":[0,8]}],\"urls\":[],\"media\":[{\"id\":1468476581513334788,\"id_str\":\"1468476581513334788\",\"indices\":[9,32],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FGETq6oVEAQkslV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FGETq6oVEAQkslV.jpg\",\"url\":\"https:\\/\\/t.co\\/nqwb4h9CTa\",\"display_url\":\"pic.twitter.com\\/nqwb4h9CTa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/digidiploTaiwan\\/status\\/1468476586186129408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":500,\"h\":514,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":500,\"h\":514,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":514,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1468476581513334788,\"id_str\":\"1468476581513334788\",\"indices\":[9,32],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FGETq6oVEAQkslV.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FGETq6oVEAQkslV.jpg\",\"url\":\"https:\\/\\/t.co\\/nqwb4h9CTa\",\"display_url\":\"pic.twitter.com\\/nqwb4h9CTa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/digidiploTaiwan\\/status\\/1468476586186129408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":500,\"h\":514,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":500,\"h\":514,\"resize\":\"fit\"},\"small\":{\"w\":500,\"h\":514,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":1468206078940823554,\"in_reply_to_status_id_str\":\"1468206078940823554\",\"in_reply_to_user_id\":732521058507620356,\"in_reply_to_user_id_str\":\"732521058507620356\",\"in_reply_to_screen_name\":\"Ukraine\",\"user\":{\"id\":1224910336643325954,\"id_str\":\"1224910336643325954\",\"name\":\"Taiwan Digital Diplomacy Association\",\"screen_name\":\"digidiploTaiwan\",\"location\":\"Taipei, Taiwan\",\"description\":\"Non-partisan NGO dedicating to #DigitalDiplomacy and #CitizenDiplomacy for #Taiwan. Facebook: https:\\/\\/t.co\\/YpDDNWSr80. IG: https:\\/\\/t.co\\/LcY3ydsJWs. RTs \\u2260 endorsements\",\"url\":\"https:\\/\\/t.co\\/Rord6ocBCf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Rord6ocBCf\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/company\\/taiwan-digital-diplomacy-association\",\"display_url\":\"linkedin.com\\/company\\/taiwan\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/YpDDNWSr80\",\"expanded_url\":\"http:\\/\\/pse.is\\/3p7w8b\",\"display_url\":\"pse.is\\/3p7w8b\",\"indices\":[94,117]},{\"url\":\"https:\\/\\/t.co\\/LcY3ydsJWs\",\"expanded_url\":\"https:\\/\\/pse.is\\/3muccy\",\"display_url\":\"pse.is\\/3muccy\",\"indices\":[123,146]}]}},\"protected\":false,\"followers_count\":12126,\"friends_count\":1545,\"listed_count\":0,\"created_at\":\"Wed Feb 05 04:19:32 +0000 2020\",\"favourites_count\":6195,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2958,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1225713339898064896\\/CatJRNn3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1225713339898064896\\/CatJRNn3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1224910336643325954\\/1627033012\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":29088,\"favorite_count\":232619,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"qme\"},\"2782\":null,\"2783\":null,\"2784\":null,\"2785\":null,\"2786\":null,\"2787\":null,\"2788\":null,\"2789\":null,\"2790\":null,\"2791\":null,\"2792\":null,\"2793\":null,\"2794\":null,\"2795\":null,\"2796\":null,\"2797\":null,\"2798\":null,\"2799\":null,\"2800\":null,\"2801\":null,\"2802\":null,\"2803\":null,\"2804\":null,\"2805\":null,\"2806\":null,\"2807\":null,\"2808\":null,\"2809\":{\"created_at\":\"Tue Aug 02 00:09:07 +0000 2022\",\"id\":1554257955289268224,\"id_str\":\"1554257955289268224\",\"full_text\":\"We\\u2002are\\u2002closely\\u2002following\\u2002the\\u2002itinerary\\u2002of #Pelosi.\\u2002A visit to #Taiwan by her would constitute a gross interference in #China\\u2019s internal affairs, seriously undermine China\\u2019s sovereignty and territorial integrity, wantonly trample on the #one-China principle.\",\"truncated\":false,\"display_text_range\":[0,257],\"entities\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[42,49]},{\"text\":\"Taiwan\",\"indices\":[62,69]},{\"text\":\"China\",\"indices\":[118,124]},{\"text\":\"one\",\"indices\":[236,240]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1181936905820266496,\"id_str\":\"1181936905820266496\",\"name\":\"\\u5218\\u6653\\u660eLiu Xiaoming\",\"screen_name\":\"AmbLiuXiaoMing\",\"location\":\"Beijing\\uff0cChina\",\"description\":\"\\u4e2d\\u56fd\\u653f\\u5e9c\\u671d\\u9c9c\\u534a\\u5c9b\\u4e8b\\u52a1\\u7279\\u522b\\u4ee3\\u8868\\uff0c\\u524d\\u9a7b\\u82f1\\u56fd\\u3001\\u671d\\u9c9c\\u3001\\u57c3\\u53ca\\u5927\\u4f7f\\uff0cSpecial Representative of the Chinese Government on Korean Peninsula Affairs\\uff0cFormer Chinese Ambassador to Egypt, the DPRK and the UK\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":269715,\"friends_count\":45,\"listed_count\":823,\"created_at\":\"Wed Oct 09 14:18:32 +0000 2019\",\"favourites_count\":99,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6937,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1187411514451464194\\/xW0kw2nF_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1187411514451464194\\/xW0kw2nF_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1181936905820266496\\/1612624859\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2239,\"favorite_count\":9305,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"2810\":null,\"2811\":null,\"2812\":null,\"2813\":null,\"2814\":null,\"2815\":null,\"2816\":null,\"2817\":null,\"2818\":null,\"2819\":null,\"2820\":null,\"2821\":null,\"2822\":null,\"2823\":null,\"2824\":null,\"2825\":null,\"2826\":null,\"2827\":null,\"2828\":null,\"2829\":null,\"2830\":null,\"2831\":null,\"2832\":null,\"2833\":null,\"2834\":null,\"2835\":null,\"2836\":null,\"2837\":null,\"2838\":null,\"2839\":null,\"2840\":null,\"2841\":null,\"2842\":null,\"2843\":null,\"2844\":null,\"2845\":null,\"2846\":null,\"2847\":null,\"2848\":null,\"2849\":null,\"2850\":null,\"2851\":null,\"2852\":null,\"2853\":null,\"2854\":null,\"2855\":null,\"2856\":null,\"2857\":null,\"2858\":null,\"2859\":null,\"2860\":null,\"2861\":null,\"2862\":null,\"2863\":null,\"2864\":null,\"2865\":null,\"2866\":null,\"2867\":null,\"2868\":null,\"2869\":null,\"2870\":null,\"2871\":null,\"2872\":null,\"2873\":null,\"2874\":null,\"2875\":null,\"2876\":null,\"2877\":null,\"2878\":null,\"2879\":{\"created_at\":\"Tue Aug 02 08:38:43 +0000 2022\",\"id\":1554386198868725762,\"id_str\":\"1554386198868725762\",\"full_text\":\"This is a perfect response to Dino Melaye\\ud83d\\ude39\\ud83d\\ude39. I pity anyone that comes for Peter Obi with baseless talks this period. We are ready for you \\ud83d\\udc4d\\ud83d\\udc4d\\n__\\nOsinbajo |South east |Zack Orji| Endsars |Sam Omatseye| Rufai| IPOB| Osama Bin Laden |Igbos| Katsina| Okowa| lekki |adamawa| https:\\/\\/t.co\\/l7PYkgawqF\",\"truncated\":false,\"display_text_range\":[0,268],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554386128811294720,\"id_str\":\"1554386128811294720\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"url\":\"https:\\/\\/t.co\\/l7PYkgawqF\",\"display_url\":\"pic.twitter.com\\/l7PYkgawqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":240,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554386128811294720,\"id_str\":\"1554386128811294720\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"url\":\"https:\\/\\/t.co\\/l7PYkgawqF\",\"display_url\":\"pic.twitter.com\\/l7PYkgawqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":240,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":140000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554386128811294720\\/pu\\/pl\\/ot2BDWN2LHwqFIAp.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554386128811294720\\/pu\\/vid\\/426x240\\/CV4-RkDDO2ntQb_0.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1320715998798950413,\"id_str\":\"1320715998798950413\",\"name\":\"NK\\u00a3M #PeterObi2023\\uea00\",\"screen_name\":\"Nkemchor_\",\"location\":\"\",\"description\":\"GOOD GOVERNANCE ADVOCATE| A die-hard Fan of H.E Peter Obi ~A NATIONAL TREASURE!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27474,\"friends_count\":3080,\"listed_count\":17,\"created_at\":\"Mon Oct 26 13:16:58 +0000 2020\",\"favourites_count\":208233,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544753588936888322\\/b9L-O-1l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544753588936888322\\/b9L-O-1l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320715998798950413\\/1657298317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3708,\"favorite_count\":6616,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2880\":null,\"2881\":null,\"2882\":null,\"2883\":null,\"2884\":null,\"2885\":null,\"2886\":null,\"2887\":null,\"2888\":null,\"2889\":null,\"2890\":null,\"2891\":null,\"2892\":null,\"2893\":null,\"2894\":null,\"2895\":{\"created_at\":\"Thu Aug 04 19:24:13 +0000 2022\",\"id\":1555273417955446786,\"id_str\":\"1555273417955446786\",\"full_text\":\"Dear @peterobi, 90% of my pple re not online bcos of poverty & none access to d internet. They hav radio where they are preached to hate other tribe. How do we take this rescue news to them?\\n\\nDavid Hundeyin Oyo State Pere Daniel Bwala Ali Baba reno #AtikuOkowa2023 ASUU #Adekunle https:\\/\\/t.co\\/qDB7l1cwYf\",\"truncated\":false,\"display_text_range\":[0,283],\"entities\":{\"hashtags\":[{\"text\":\"AtikuOkowa2023\",\"indices\":[253,268]},{\"text\":\"Adekunle\",\"indices\":[274,283]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[5,14]}],\"urls\":[],\"media\":[{\"id\":1555273255778500614,\"id_str\":\"1555273255778500614\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":739,\"h\":415,\"resize\":\"fit\"},\"large\":{\"w\":739,\"h\":415,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555273255778500614,\"id_str\":\"1555273255778500614\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":739,\"h\":415,\"resize\":\"fit\"},\"large\":{\"w\":739,\"h\":415,\"resize\":\"fit\"}}},{\"id\":1555273319766794241,\"id_str\":\"1555273319766794241\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVw2BlXoAE9Ib8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVw2BlXoAE9Ib8.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":738,\"h\":415,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":415,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1537786289419956224,\"id_str\":\"1537786289419956224\",\"name\":\"Maryam Shehu\",\"screen_name\":\"maryam_shehu_\",\"location\":\"Abuja\",\"description\":\"I say it the way it is. I hate injustice. I'm a proud Fulani. Muslimah 100%\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1452,\"friends_count\":13,\"listed_count\":1,\"created_at\":\"Fri Jun 17 13:18:30 +0000 2022\",\"favourites_count\":764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537788550690775040\\/d3dJvF3U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537788550690775040\\/d3dJvF3U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537786289419956224\\/1655472339\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":4889,\"favorite_count\":9882,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"2896\":null,\"2897\":null,\"2898\":null,\"2899\":null,\"2900\":null,\"2901\":null,\"2902\":null,\"2903\":null,\"2904\":null,\"2905\":null,\"2906\":null,\"2907\":null,\"2908\":null,\"2909\":null,\"2910\":null,\"2911\":null,\"2912\":null,\"2913\":null,\"2914\":null,\"2915\":null,\"2916\":null,\"2917\":null,\"2918\":null,\"2919\":null,\"2920\":null,\"2921\":null,\"2922\":null,\"2923\":null,\"2924\":null,\"2925\":null,\"2926\":null,\"2927\":null,\"2928\":null,\"2929\":null,\"2930\":null,\"2931\":null,\"2932\":null,\"2933\":null,\"2934\":null,\"2935\":null,\"2936\":null,\"2937\":null,\"2938\":null,\"2939\":null,\"2940\":null,\"2941\":null,\"2942\":null,\"2943\":null,\"2944\":null,\"2945\":null,\"2946\":null,\"2947\":null,\"2948\":null,\"2949\":null,\"2950\":null,\"2951\":null,\"2952\":null,\"2953\":null,\"2954\":null,\"2955\":null,\"2956\":null,\"2957\":null,\"2958\":null,\"2959\":null,\"2960\":null,\"2961\":null,\"2962\":null,\"2963\":null,\"2964\":null,\"2965\":null,\"2966\":null,\"2967\":null,\"2968\":null,\"2969\":null,\"2970\":null,\"2971\":null,\"2972\":null,\"2973\":null,\"2974\":null,\"2975\":null,\"2976\":null,\"2977\":null,\"2978\":null,\"2979\":null,\"2980\":null,\"2981\":null,\"2982\":null,\"2983\":null,\"2984\":null,\"2985\":null,\"2986\":null,\"2987\":null,\"2988\":null,\"2989\":null,\"2990\":null,\"2991\":null,\"2992\":null,\"2993\":null,\"2994\":null,\"2995\":null,\"2996\":null,\"2997\":null,\"2998\":null,\"2999\":null,\"3000\":null,\"3001\":null,\"3002\":null,\"3003\":null,\"3004\":null,\"3005\":null,\"3006\":null,\"3007\":null,\"3008\":null,\"3009\":null,\"3010\":null,\"3011\":null,\"3012\":null,\"3013\":null,\"3014\":null,\"3015\":null,\"3016\":null,\"3017\":null,\"3018\":null,\"3019\":null,\"3020\":null,\"3021\":null,\"3022\":null,\"3023\":null,\"3024\":null,\"3025\":null,\"3026\":null,\"3027\":null,\"3028\":null,\"3029\":null,\"3030\":null,\"3031\":null,\"3032\":null,\"3033\":null,\"3034\":null,\"3035\":null,\"3036\":null,\"3037\":null,\"3038\":null,\"3039\":null,\"3040\":null,\"3041\":null,\"3042\":null,\"3043\":null,\"3044\":null,\"3045\":null,\"3046\":null,\"3047\":null,\"3048\":null,\"3049\":null,\"3050\":null,\"3051\":null,\"3052\":null,\"3053\":null,\"3054\":null,\"3055\":null,\"3056\":null,\"3057\":null,\"3058\":null,\"3059\":null,\"3060\":null,\"3061\":null,\"3062\":null,\"3063\":null,\"3064\":null,\"3065\":null,\"3066\":null,\"3067\":null,\"3068\":null,\"3069\":null,\"3070\":null,\"3071\":null,\"3072\":null,\"3073\":null,\"3074\":null,\"3075\":null,\"3076\":null,\"3077\":null,\"3078\":null,\"3079\":null,\"3080\":null,\"3081\":null,\"3082\":null,\"3083\":null,\"3084\":null,\"3085\":null,\"3086\":null,\"3087\":null,\"3088\":null,\"3089\":null,\"3090\":null,\"3091\":null,\"3092\":null,\"3093\":{\"created_at\":\"Tue Aug 02 15:28:52 +0000 2022\",\"id\":1554489414310821888,\"id_str\":\"1554489414310821888\",\"full_text\":\"Pelosi just landed in Taipei. Let me offer a Taiwanese perspective on her visit: Her arrival here is welcomed. It is consistent with Taiwan's national interests & within the framework of the existing Taiwan-US relationship. (1\\/8)\",\"truncated\":false,\"display_text_range\":[0,233],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1240300504741117954,\"id_str\":\"1240300504741117954\",\"name\":\"Vincent Chao\",\"screen_name\":\"vyctw\",\"location\":\"Washington, DC\",\"description\":\"Fmr Director of the Political Division, Taipei Economic and Cultural Representative Office in the United States. Views expressed are my own. RT \\u2260 endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3866,\"friends_count\":120,\"listed_count\":51,\"created_at\":\"Wed Mar 18 15:34:26 +0000 2020\",\"favourites_count\":540,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":140,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1257311863437549569\\/cJcdTHta_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1257311863437549569\\/cJcdTHta_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3325,\"favorite_count\":22992,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"3094\":null,\"3095\":null,\"3096\":null,\"3097\":null,\"3098\":null,\"3099\":null,\"3100\":null,\"3101\":null,\"3102\":null,\"3103\":null,\"3104\":null,\"3105\":null,\"3106\":null,\"3107\":null,\"3108\":null,\"3109\":null,\"3110\":null,\"3111\":null,\"3112\":null,\"3113\":null,\"3114\":null,\"3115\":null,\"3116\":null,\"3117\":null,\"3118\":{\"created_at\":\"Wed Aug 03 14:32:51 +0000 2022\",\"id\":1554837707242733569,\"id_str\":\"1554837707242733569\",\"full_text\":\"@DavidHundeyin everybody is talking about @MBuhari buying vehicles for Niger Republic, but no one is talking about the price of the inflated contract.\\nN1.4b for 10 V8 land cruiser is pure day time robbery and massive corruption. This is @ $280k per vehicle @ today officl xchng https:\\/\\/t.co\\/0Pb1moxQKj\",\"truncated\":false,\"display_text_range\":[0,277],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DavidHundeyin\",\"name\":\"David Hundeyin\",\"id\":3315017925,\"id_str\":\"3315017925\",\"indices\":[0,14]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[42,50]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0Pb1moxQKj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\",\"display_url\":\"twitter.com\\/DavidHundeyin\\/\\u2026\",\"indices\":[278,301]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":3315017925,\"in_reply_to_user_id_str\":\"3315017925\",\"in_reply_to_screen_name\":\"DavidHundeyin\",\"user\":{\"id\":57570221,\"id_str\":\"57570221\",\"name\":\"Iyke Larry\",\"screen_name\":\"Hillike\",\"location\":\"UAE\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":163,\"friends_count\":136,\"listed_count\":2,\"created_at\":\"Fri Jul 17 06:15:54 +0000 2009\",\"favourites_count\":35,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":270,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1168195532138962945\\/DmCa8cVh_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57570221\\/1419692473\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1554575730650013697,\"quoted_status_id_str\":\"1554575730650013697\",\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3119\":null,\"3120\":null,\"3121\":null,\"3122\":null,\"3123\":null,\"3124\":null,\"3125\":null,\"3126\":null,\"3127\":null,\"3128\":null,\"3129\":null,\"3130\":null,\"3131\":null,\"3132\":null,\"3133\":null,\"3134\":null,\"3135\":null,\"3136\":null,\"3137\":null,\"3138\":null,\"3139\":null,\"3140\":null,\"3141\":null,\"3142\":null,\"3143\":null,\"3144\":null,\"3145\":{\"created_at\":\"Tue Aug 02 11:00:13 +0000 2022\",\"id\":1554421806710358016,\"id_str\":\"1554421806710358016\",\"full_text\":\"\\ud83d\\udce3 #Chevening Scholarship applications are open!\\n\\nStudy in the UK to expand your network and learn vital skills before returning home to achieve your goals and create positive change. Good luck!\\n\\nFind out more at: \\nhttps:\\/\\/t.co\\/S3YXCNR9eK\\n\\n#MyCheveningJourney https:\\/\\/t.co\\/FcoOpGZiW1\",\"truncated\":false,\"display_text_range\":[0,258],\"entities\":{\"hashtags\":[{\"text\":\"Chevening\",\"indices\":[2,12]},{\"text\":\"MyCheveningJourney\",\"indices\":[239,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S3YXCNR9eK\",\"expanded_url\":\"http:\\/\\/chevening.org\\/scholarships\",\"display_url\":\"chevening.org\\/scholarships\",\"indices\":[214,237]}],\"media\":[{\"id\":1554421803396775936,\"id_str\":\"1554421803396775936\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"url\":\"https:\\/\\/t.co\\/FcoOpGZiW1\",\"display_url\":\"pic.twitter.com\\/FcoOpGZiW1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1081,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554421803396775936,\"id_str\":\"1554421803396775936\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"url\":\"https:\\/\\/t.co\\/FcoOpGZiW1\",\"display_url\":\"pic.twitter.com\\/FcoOpGZiW1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1081,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Sprout Social<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":71529987,\"id_str\":\"71529987\",\"name\":\"Chevening Awards\\ud83c\\uddec\\ud83c\\udde7\",\"screen_name\":\"CheveningFCDO\",\"location\":\"London\",\"description\":\"Twitter account of the @FCDOgovUK's Chevening Awards programme, which develops future leaders by offering scholarships and fellowships to study in the UK.\",\"url\":\"https:\\/\\/t.co\\/PPQaozmccJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PPQaozmccJ\",\"expanded_url\":\"http:\\/\\/www.chevening.org\",\"display_url\":\"chevening.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128670,\"friends_count\":5782,\"listed_count\":446,\"created_at\":\"Fri Sep 04 13:08:21 +0000 2009\",\"favourites_count\":7436,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":9244,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"003F72\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1196394046589153280\\/uyAO5wX7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1196394046589153280\\/uyAO5wX7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/71529987\\/1654527470\",\"profile_link_color\":\"84A2BD\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EBEBEB\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":901,\"favorite_count\":1394,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3146\":null,\"3147\":null,\"3148\":null,\"3149\":null,\"3150\":null,\"3151\":null,\"3152\":null,\"3153\":null,\"3154\":null,\"3155\":null,\"3156\":null,\"3157\":null,\"3158\":null,\"3159\":null,\"3160\":null,\"3161\":null,\"3162\":null,\"3163\":null,\"3164\":null,\"3165\":null,\"3166\":null,\"3167\":null,\"3168\":null,\"3169\":null,\"3170\":null,\"3171\":null,\"3172\":null,\"3173\":null,\"3174\":null,\"3175\":null,\"3176\":null,\"3177\":null,\"3178\":null,\"3179\":null,\"3180\":null,\"3181\":null,\"3182\":null,\"3183\":null,\"3184\":null,\"3185\":null,\"3186\":null,\"3187\":null,\"3188\":null,\"3189\":null,\"3190\":null,\"3191\":null,\"3192\":null,\"3193\":null,\"3194\":{\"created_at\":\"Wed Aug 03 08:10:19 +0000 2022\",\"id\":1554741440797884416,\"id_str\":\"1554741440797884416\",\"full_text\":\"Why Nigeria\\u2019s only surviving barter market may soon go\\u00a0extinct https:\\/\\/t.co\\/cpmUXMDmQw\",\"truncated\":false,\"display_text_range\":[0,86],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cpmUXMDmQw\",\"expanded_url\":\"https:\\/\\/guardpost.ng\\/why-nigerias-only-surviving-barter-market-may-soon-go-extinct\\/\",\"display_url\":\"guardpost.ng\\/why-nigerias-o\\u2026\",\"indices\":[63,86]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"WordPress.com<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1526171772646719489,\"id_str\":\"1526171772646719489\",\"name\":\"Guardpost.ng\",\"screen_name\":\"GuardpostNg\",\"location\":\"Nigeria\",\"description\":\"A first rate investigative and advocacy journalism organisation led by multiple award-wining journalists with a mission to provide journalism at its best.\",\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"expanded_url\":\"http:\\/\\/www.guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Mon May 16 12:05:21 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526171772646719489\\/1655326290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3195\":{\"created_at\":\"Tue Aug 02 19:26:23 +0000 2022\",\"id\":1554549189392027648,\"id_str\":\"1554549189392027648\",\"full_text\":\"Unbelievable story of Calabar\\u2019s open\\u00a0defecation https:\\/\\/t.co\\/QOchg44Sc4\",\"truncated\":false,\"display_text_range\":[0,71],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QOchg44Sc4\",\"expanded_url\":\"https:\\/\\/guardpost.ng\\/unbelievable-story-of-calabars-open-defecation\\/\",\"display_url\":\"guardpost.ng\\/unbelievable-s\\u2026\",\"indices\":[48,71]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"WordPress.com<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1526171772646719489,\"id_str\":\"1526171772646719489\",\"name\":\"Guardpost.ng\",\"screen_name\":\"GuardpostNg\",\"location\":\"Nigeria\",\"description\":\"A first rate investigative and advocacy journalism organisation led by multiple award-wining journalists with a mission to provide journalism at its best.\",\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"expanded_url\":\"http:\\/\\/www.guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Mon May 16 12:05:21 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526171772646719489\\/1655326290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":4,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3196\":null,\"3197\":null,\"3198\":null,\"3199\":null,\"3200\":null,\"3201\":null,\"3202\":null,\"3203\":null,\"3204\":null,\"3205\":null,\"3206\":null,\"3207\":null,\"3208\":null,\"3209\":null,\"3210\":null,\"3211\":null,\"3212\":null,\"3213\":null,\"3214\":null,\"3215\":null,\"3216\":null,\"3217\":null,\"3218\":null,\"3219\":null,\"3220\":null,\"3221\":null,\"3222\":null,\"3223\":null,\"3224\":null,\"3225\":null,\"3226\":null,\"3227\":null,\"3228\":null,\"3229\":null,\"3230\":null,\"3231\":null,\"3232\":null,\"3233\":null,\"3234\":null,\"3235\":null,\"3236\":null,\"3237\":null,\"3238\":null,\"3239\":null,\"3240\":null,\"3241\":null,\"3242\":null,\"3243\":null,\"3244\":null,\"3245\":null,\"3246\":null,\"3247\":null,\"3248\":null,\"3249\":null,\"3250\":null,\"3251\":null,\"3252\":null,\"3253\":null,\"3254\":{\"created_at\":\"Wed Aug 03 05:16:32 +0000 2022\",\"id\":1554697705267597314,\"id_str\":\"1554697705267597314\",\"full_text\":\"Another day to be intentional about your Life.\\n\\nRemember that life will never wait for you to have sense. Neither will there be a time everything will be perfectly ready\\nJust go ahead and do what needs to be done\\nHave a blessed day \\u270c\\ufe0f\\u2764\\ufe0f\\n#wednesdaythought #peanuts #Pelosi #Taiwan https:\\/\\/t.co\\/AYPa0vrRjy\",\"truncated\":false,\"display_text_range\":[0,279],\"entities\":{\"hashtags\":[{\"text\":\"wednesdaythought\",\"indices\":[237,254]},{\"text\":\"peanuts\",\"indices\":[255,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"Taiwan\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554697441265553408,\"id_str\":\"1554697441265553408\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"url\":\"https:\\/\\/t.co\\/AYPa0vrRjy\",\"display_url\":\"pic.twitter.com\\/AYPa0vrRjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554697441265553408,\"id_str\":\"1554697441265553408\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"url\":\"https:\\/\\/t.co\\/AYPa0vrRjy\",\"display_url\":\"pic.twitter.com\\/AYPa0vrRjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/480x852\\/PzzXeIzsckDPUGpU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/320x568\\/HI7vYexc_IeIim6Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/pl\\/U-1hEgqvR7jHdTwC.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/576x1024\\/txGmP5S1RsdDG_UF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1490273215695966209,\"id_str\":\"1490273215695966209\",\"name\":\"Great Foods Ng\",\"screen_name\":\"Greatfoodsng\",\"location\":\"\",\"description\":\"We make the best peanut Burger.\\n\\nIt's like nothing you've ever tasted.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Sun Feb 06 10:37:00 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":136,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490273978509836292\\/cM-sWYGR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490273978509836292\\/cM-sWYGR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3255\":null,\"3256\":null,\"3257\":null,\"3258\":null,\"3259\":null,\"3260\":null,\"3261\":null,\"3262\":null,\"3263\":null,\"3264\":null,\"3265\":null,\"3266\":null,\"3267\":null,\"3268\":null,\"3269\":null,\"3270\":null,\"3271\":null,\"3272\":null,\"3273\":null,\"3274\":null,\"3275\":null,\"3276\":null,\"3277\":null,\"3278\":null,\"3279\":null,\"3280\":null,\"3281\":null,\"3282\":null,\"3283\":null,\"3284\":null,\"3285\":null,\"3286\":null,\"3287\":null,\"3288\":null,\"3289\":null,\"3290\":null,\"3291\":null,\"3292\":null,\"3293\":null,\"3294\":null,\"3295\":null,\"3296\":null,\"3297\":null,\"3298\":null,\"3299\":null,\"3300\":null,\"3301\":null,\"3302\":null,\"3303\":null,\"3304\":null,\"3305\":null,\"3306\":null,\"3307\":null,\"3308\":{\"created_at\":\"Tue Aug 02 12:13:16 +0000 2022\",\"id\":1554440191741411328,\"id_str\":\"1554440191741411328\",\"full_text\":\"Hey AVengers \\ud83d\\udef8, let's reach 10k promise I will follow back \\ud83d\\ude4f\",\"truncated\":false,\"display_text_range\":[0,60],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1543185566816247810,\"id_str\":\"1543185566816247810\",\"name\":\"AV \\ud83d\\udef8\",\"screen_name\":\"Babyboyav__\",\"location\":\"\",\"description\":\"No Dey Form (NDF)\\ud83d\\udef8\\nhttps:\\/\\/t.co\\/ETX1GlJSq7\",\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"expanded_url\":\"https:\\/\\/lnk.to\\/NoDeyForm\",\"display_url\":\"lnk.to\\/NoDeyForm\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"expanded_url\":\"https:\\/\\/lnk.to\\/NoDeyForm\",\"display_url\":\"lnk.to\\/NoDeyForm\",\"indices\":[19,42]}]}},\"protected\":false,\"followers_count\":1623,\"friends_count\":183,\"listed_count\":1,\"created_at\":\"Sat Jul 02 10:51:48 +0000 2022\",\"favourites_count\":581,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550170835004129282\\/1U_soEBj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550170835004129282\\/1U_soEBj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1543185566816247810\\/1657342889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":24,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"3309\":null,\"3310\":null,\"3311\":null,\"3312\":null,\"3313\":null,\"3314\":null,\"3315\":null,\"3316\":null,\"3317\":null,\"3318\":null,\"3319\":null,\"3320\":null,\"3321\":null,\"3322\":{\"created_at\":\"Tue Aug 02 15:19:05 +0000 2022\",\"id\":1554486953990668288,\"id_str\":\"1554486953990668288\",\"full_text\":\"By traveling to Taiwan, we honor our commitment to democracy: reaffirming that the freedoms of Taiwan \\u2014 and all democracies \\u2014 must be respected.\\n\\nRead my opinion piece in the @washingtonpost on why I\\u2019m leading a Congressional delegation to Taiwan.\\nhttps:\\/\\/t.co\\/tLhIzvfkTH\",\"truncated\":false,\"display_text_range\":[0,271],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"washingtonpost\",\"name\":\"The Washington Post\",\"id\":2467791,\"id_str\":\"2467791\",\"indices\":[175,190]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tLhIzvfkTH\",\"expanded_url\":\"https:\\/\\/www.washingtonpost.com\\/opinions\\/2022\\/08\\/02\\/nancy-pelosi-taiwan-visit-op-ed\\/\",\"display_url\":\"washingtonpost.com\\/opinions\\/2022\\/\\u2026\",\"indices\":[248,271]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":15764644,\"id_str\":\"15764644\",\"name\":\"Nancy Pelosi\",\"screen_name\":\"SpeakerPelosi\",\"location\":\"San Francisco\",\"description\":\"Speaker of the House, focused on strengthening America's middle class and creating jobs; mother, grandmother, dark chocolate connoisseur.\",\"url\":\"https:\\/\\/t.co\\/jztVqrP3x5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/jztVqrP3x5\",\"expanded_url\":\"https:\\/\\/www.speaker.gov\\/\",\"display_url\":\"speaker.gov\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7877801,\"friends_count\":430,\"listed_count\":25260,\"created_at\":\"Thu Aug 07 15:35:02 +0000 2008\",\"favourites_count\":11,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":13589,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"385BA3\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1114294290375688193\\/P9mcJNGb_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1114294290375688193\\/P9mcJNGb_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/15764644\\/1572273026\",\"profile_link_color\":\"4B12E6\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FCFCFC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":9849,\"favorite_count\":54057,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3323\":null,\"3324\":null,\"3325\":null,\"3326\":null,\"3327\":null,\"3328\":null,\"3329\":null,\"3330\":null,\"3331\":null,\"3332\":null,\"3333\":null,\"3334\":null,\"3335\":null,\"3336\":null,\"3337\":null,\"3338\":null,\"3339\":null,\"3340\":null,\"3341\":null,\"3342\":null,\"3343\":null,\"3344\":null,\"3345\":null,\"3346\":null,\"3347\":null,\"3348\":null,\"3349\":null,\"3350\":null,\"3351\":null,\"3352\":null,\"3353\":null,\"3354\":null,\"3355\":null,\"3356\":null,\"3357\":null,\"3358\":null,\"3359\":null,\"3360\":null,\"3361\":null,\"3362\":null,\"3363\":{\"created_at\":\"Thu Jul 28 13:01:10 +0000 2022\",\"id\":1552640306922852352,\"id_str\":\"1552640306922852352\",\"full_text\":\"Sokoto agog for Obi. The unprecedented movement is on.\\n #ObiDatti2023 @PeterObi https:\\/\\/t.co\\/jZBowzuuIO\",\"truncated\":false,\"display_text_range\":[0,79],\"entities\":{\"hashtags\":[{\"text\":\"ObiDatti2023\",\"indices\":[56,69]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[70,79]}],\"urls\":[],\"media\":[{\"id\":1552640204669853697,\"id_str\":\"1552640204669853697\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"url\":\"https:\\/\\/t.co\\/jZBowzuuIO\",\"display_url\":\"pic.twitter.com\\/jZBowzuuIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1552640204669853697,\"id_str\":\"1552640204669853697\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"url\":\"https:\\/\\/t.co\\/jZBowzuuIO\",\"display_url\":\"pic.twitter.com\\/jZBowzuuIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":39520,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1552640204669853697\\/pu\\/pl\\/px4ZpDy0RQZILaJx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1552640204669853697\\/pu\\/vid\\/480x270\\/Lixy5FR38yH3-7FC.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"name\":\"LabourPartyNG\",\"screen_name\":\"NgLabour\",\"location\":\"29 Okeagbe St, Garki, Abuja\",\"description\":\"Official Labour Party Twitter Handle. Labour Party is Nigeria's frontline Political Party for Social Democrats.\\nJoin us @ https:\\/\\/t.co\\/1A4obrISd5\",\"url\":\"https:\\/\\/t.co\\/xp9Inpt56J\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xp9Inpt56J\",\"expanded_url\":\"http:\\/\\/www.labourparty.com.ng\",\"display_url\":\"labourparty.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1A4obrISd5\",\"expanded_url\":\"http:\\/\\/labourparty.com.ng\",\"display_url\":\"labourparty.com.ng\",\"indices\":[122,145]}]}},\"protected\":false,\"followers_count\":254737,\"friends_count\":530,\"listed_count\":49,\"created_at\":\"Wed May 25 20:38:02 +0000 2022\",\"favourites_count\":143,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":169,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545058267981746177\\/nA0y1wvv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545058267981746177\\/nA0y1wvv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1529562333751689217\\/1657534092\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1373,\"favorite_count\":4126,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3364\":null,\"3365\":null,\"3366\":null,\"3367\":{\"created_at\":\"Tue Aug 02 09:46:48 +0000 2022\",\"id\":1554403331027730438,\"id_str\":\"1554403331027730438\",\"full_text\":\"Everything is already very serious, the situation is heated to the limit. We haven't been so close to World War III yet. https:\\/\\/t.co\\/JkfeDdYvQk\",\"truncated\":false,\"display_text_range\":[0,120],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554403296974176257,\"id_str\":\"1554403296974176257\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"url\":\"https:\\/\\/t.co\\/JkfeDdYvQk\",\"display_url\":\"pic.twitter.com\\/JkfeDdYvQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554403296974176257,\"id_str\":\"1554403296974176257\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"url\":\"https:\\/\\/t.co\\/JkfeDdYvQk\",\"display_url\":\"pic.twitter.com\\/JkfeDdYvQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[211,120],\"duration_millis\":30046,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/844x480\\/2l_rRYjV3JtxRLRN.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/474x270\\/QSIpeLeXuuAlYcdQ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/632x360\\/D6zHKXscWwAkrQ9p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/pl\\/F96-QTcsHSGXnzRn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3192736504,\"id_str\":\"3192736504\",\"name\":\"\\u0422\\u20dd \\ud83c\\udd70\\ufe0f \\u043d\\u20dd \\u044f\\u20dd\",\"screen_name\":\"OdNa_TaKa9l\",\"location\":\"\",\"description\":\"\\u043c\\u0438\\u0440 \\u0441\\u043e\\u0448\\u0451\\u043b \\u0441\\u0443\\u043c\\u0430 \\ud83d\\ude4a\\ud83d\\ude49\\ud83d\\ude48\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":17,\"listed_count\":5,\"created_at\":\"Tue Apr 21 22:45:15 +0000 2015\",\"favourites_count\":5038,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540430995161243651\\/edzZG1Qf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540430995161243651\\/edzZG1Qf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3192736504\\/1653829999\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":12,\"favorite_count\":69,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3368\":null,\"3369\":null,\"3370\":null,\"3371\":null,\"3372\":null,\"3373\":null,\"3374\":null,\"3375\":null,\"3376\":null,\"3377\":null,\"3378\":null,\"3379\":null,\"3380\":null,\"3381\":null,\"3382\":null,\"3383\":null,\"3384\":null,\"3385\":null,\"3386\":null,\"3387\":null,\"3388\":null,\"3389\":null,\"3390\":null,\"3391\":null,\"3392\":null,\"3393\":null,\"3394\":null,\"3395\":null,\"3396\":null,\"3397\":null,\"3398\":null,\"3399\":null,\"3400\":null,\"3401\":null,\"3402\":null,\"3403\":null,\"3404\":null,\"3405\":null,\"3406\":null,\"3407\":null,\"3408\":null,\"3409\":null,\"3410\":null,\"3411\":null,\"3412\":null,\"3413\":null,\"3414\":null,\"3415\":null,\"3416\":{\"created_at\":\"Tue Aug 02 14:47:05 +0000 2022\",\"id\":1554478901476446210,\"id_str\":\"1554478901476446210\",\"full_text\":\"BREAKING: House Speaker Nancy Pelosi lands in Taiwan on a visit that could significantly escalate tensions between the U.S. and China. https:\\/\\/t.co\\/Fb5U6fbrgB\",\"truncated\":false,\"display_text_range\":[0,158],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Fb5U6fbrgB\",\"expanded_url\":\"https:\\/\\/apnews.com\\/article\\/china-asia-beijing-malaysia-a5a6acc391511c99b1b4c2d69e67b133?taid=62e938e824e1a4000195991d&utm_campaign=TrueAnthem&utm_medium=AP&utm_source=Twitter\",\"display_url\":\"apnews.com\\/article\\/china-\\u2026\",\"indices\":[135,158]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"True Anthem<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":51241574,\"id_str\":\"51241574\",\"name\":\"The Associated Press\",\"screen_name\":\"AP\",\"location\":\"Global\",\"description\":\"News from The Associated Press, and a taste of the great journalism produced by AP members and customers.\",\"url\":\"https:\\/\\/t.co\\/0HD7A9hKKy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0HD7A9hKKy\",\"expanded_url\":\"https:\\/\\/apnews.com\\/\",\"display_url\":\"apnews.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15939646,\"friends_count\":6816,\"listed_count\":105119,\"created_at\":\"Fri Jun 26 21:48:52 +0000 2009\",\"favourites_count\":3953,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":326068,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"333333\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/461964160838803457\\/8z9FImcv_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/461964160838803457\\/8z9FImcv_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/51241574\\/1638483576\",\"profile_link_color\":\"CC3300\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1387,\"favorite_count\":3441,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3417\":null,\"3418\":null,\"3419\":null,\"3420\":null,\"3421\":null,\"3422\":null,\"3423\":null,\"3424\":null,\"3425\":null,\"3426\":null,\"3427\":null,\"3428\":null,\"3429\":null,\"3430\":null,\"3431\":null,\"3432\":null,\"3433\":null,\"3434\":null,\"3435\":null,\"3436\":null,\"3437\":{\"created_at\":\"Tue Aug 02 14:47:21 +0000 2022\",\"id\":1554478967410905091,\"id_str\":\"1554478967410905091\",\"full_text\":\"#Pelosi arrived in #Taiwan.\\n\\n#China promised to retaliate.\",\"truncated\":false,\"display_text_range\":[0,58],\"entities\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[19,26]},{\"text\":\"China\",\"indices\":[29,35]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2263105532,\"id_str\":\"2263105532\",\"name\":\"Elijah J. Magnier \\ud83c\\uddea\\ud83c\\uddfa\",\"screen_name\":\"ejmalrai\",\"location\":\"Europe and MENA.\",\"description\":\"Vet War Crspdnt+35 y Iran,Lebanon,Syria,Iraq,Libya,Sudan,Afghanistan,Yugoslavia \\n@AlraiMediaGroup @isrobinson_\\nhttps:\\/\\/t.co\\/tHIGbW0wLG\",\"url\":\"https:\\/\\/t.co\\/OsSFvesYpU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OsSFvesYpU\",\"expanded_url\":\"http:\\/\\/elijahjm.wordpress.com\",\"display_url\":\"elijahjm.wordpress.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tHIGbW0wLG\",\"expanded_url\":\"https:\\/\\/www.iai.it\\/it\\/persone\\/elijah-j-magnier\",\"display_url\":\"iai.it\\/it\\/persone\\/eli\\u2026\",\"indices\":[112,135]}]}},\"protected\":false,\"followers_count\":97480,\"friends_count\":2645,\"listed_count\":1720,\"created_at\":\"Thu Dec 26 17:22:50 +0000 2013\",\"favourites_count\":28820,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":120348,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1073944040582852608\\/qhE-G8ac_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1073944040582852608\\/qhE-G8ac_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2263105532\\/1474833211\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":101,\"favorite_count\":413,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"3438\":null,\"3439\":null,\"3440\":null,\"3441\":null,\"3442\":null,\"3443\":null,\"3444\":null,\"3445\":null,\"3446\":null,\"3447\":null,\"3448\":null,\"3449\":null,\"3450\":null,\"3451\":null,\"3452\":null,\"3453\":null,\"3454\":null,\"3455\":null,\"3456\":null,\"3457\":null,\"3458\":null,\"3459\":null,\"3460\":null,\"3461\":null,\"3462\":null,\"3463\":null,\"3464\":null,\"3465\":null,\"3466\":null,\"3467\":null,\"3468\":null,\"3469\":null,\"3470\":null,\"3471\":null,\"3472\":{\"created_at\":\"Thu Jul 21 17:59:17 +0000 2022\",\"id\":1550178616104853505,\"id_str\":\"1550178616104853505\",\"full_text\":\"It is time for China and #Taiwan to reunify https:\\/\\/t.co\\/wOhXYRuTV7\",\"truncated\":false,\"display_text_range\":[0,43],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[25,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1550178532730572800,\"id_str\":\"1550178532730572800\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"url\":\"https:\\/\\/t.co\\/wOhXYRuTV7\",\"display_url\":\"pic.twitter.com\\/wOhXYRuTV7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerceraVenida\\/status\\/1550178616104853505\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":499,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1550178532730572800,\"id_str\":\"1550178532730572800\",\"indices\":[44,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FYNXKY3XkAARFO5.png\",\"url\":\"https:\\/\\/t.co\\/wOhXYRuTV7\",\"display_url\":\"pic.twitter.com\\/wOhXYRuTV7\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TerceraVenida\\/status\\/1550178616104853505\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":587,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":499,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":713263697842405376,\"id_str\":\"713263697842405376\",\"name\":\"Chef Gaykwon \\u262d\",\"screen_name\":\"TerceraVenida\",\"location\":\"Minnesota\",\"description\":\"gay commie (ML)\\n\\nen\\/es\\n\\nhe\\/him\\n\\nC\\/V: $Gaykwon\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1865,\"friends_count\":374,\"listed_count\":4,\"created_at\":\"Fri Mar 25 07:18:12 +0000 2016\",\"favourites_count\":18769,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10820,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1525247225001132032\\/uWAZagKH_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1525247225001132032\\/uWAZagKH_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/713263697842405376\\/1659298046\",\"profile_link_color\":\"F58EA8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1574,\"favorite_count\":22980,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3473\":null,\"3474\":null,\"3475\":null,\"3476\":null,\"3477\":null,\"3478\":null,\"3479\":null,\"3480\":null,\"3481\":null,\"3482\":null,\"3483\":null,\"3484\":null,\"3485\":null,\"3486\":null,\"3487\":null,\"3488\":null,\"3489\":null,\"3490\":null,\"3491\":null,\"3492\":null,\"3493\":null,\"3494\":null,\"3495\":null,\"3496\":null,\"3497\":null,\"3498\":{\"created_at\":\"Sat Jul 30 23:26:04 +0000 2022\",\"id\":1553522343657472003,\"id_str\":\"1553522343657472003\",\"full_text\":\"#Pelosi could bring death and destruction to #Taiwan, just as #Biden brought devastation on #Ukraine\\ufe0f. https:\\/\\/t.co\\/RM16N5K94d\",\"truncated\":false,\"display_text_range\":[0,102],\"entities\":{\"hashtags\":[{\"text\":\"Pelosi\",\"indices\":[0,7]},{\"text\":\"Taiwan\",\"indices\":[45,52]},{\"text\":\"Biden\",\"indices\":[62,68]},{\"text\":\"Ukraine\\ufe0f\",\"indices\":[92,101]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553522340486684672,\"id_str\":\"1553522340486684672\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"url\":\"https:\\/\\/t.co\\/RM16N5K94d\",\"display_url\":\"pic.twitter.com\\/RM16N5K94d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timand2037\\/status\\/1553522343657472003\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553522340486684672,\"id_str\":\"1553522340486684672\",\"indices\":[103,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY84VndXoAARBct.jpg\",\"url\":\"https:\\/\\/t.co\\/RM16N5K94d\",\"display_url\":\"pic.twitter.com\\/RM16N5K94d\",\"expanded_url\":\"https:\\/\\/twitter.com\\/timand2037\\/status\\/1553522343657472003\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":455,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":723,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":56575418,\"id_str\":\"56575418\",\"name\":\"tim anderson\",\"screen_name\":\"timand2037\",\"location\":\"Sydney, Australia.\",\"description\":\"Writer, internationalist, academic. Director of the Centre for Counter Hegemonic Studies. Comment welcome but trolls and abusers will be blocked.\",\"url\":\"https:\\/\\/t.co\\/kud6aQQcVA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kud6aQQcVA\",\"expanded_url\":\"https:\\/\\/counter-hegemonic-studies.site\",\"display_url\":\"counter-hegemonic-studies.site\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":84716,\"friends_count\":1586,\"listed_count\":609,\"created_at\":\"Tue Jul 14 02:18:31 +0000 2009\",\"favourites_count\":31816,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":21216,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1370173793490989057\\/mzp49Uj3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1370173793490989057\\/mzp49Uj3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/56575418\\/1649227314\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":844,\"favorite_count\":3321,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3499\":null,\"3500\":null,\"3501\":null,\"3502\":null,\"3503\":null,\"3504\":null,\"3505\":null,\"3506\":null,\"3507\":null,\"3508\":null,\"3509\":null,\"3510\":null,\"3511\":null,\"3512\":null,\"3513\":null,\"3514\":null,\"3515\":null,\"3516\":null,\"3517\":null,\"3518\":null,\"3519\":null,\"3520\":null,\"3521\":{\"created_at\":\"Mon Aug 01 19:35:58 +0000 2022\",\"id\":1554189211737153537,\"id_str\":\"1554189211737153537\",\"full_text\":\"GM of HP's article on cubex https:\\/\\/t.co\\/MNv9NFzK1C\\nHuge partnership with DUBAI Blockchain center https:\\/\\/t.co\\/SbGiksaCrA\\nFocal point of @EricLMitchell newest article on @AppleNews and @PopWrapped\\nhttps:\\/\\/t.co\\/z5trlRP9Fg\\nNow tell me Why dont u own a @cubexnft\\n#CUBEXTAKEOVER #NFT https:\\/\\/t.co\\/44HrJzm7jY\",\"truncated\":false,\"display_text_range\":[0,279],\"entities\":{\"hashtags\":[{\"text\":\"CUBEXTAKEOVER\",\"indices\":[260,274]},{\"text\":\"NFT\",\"indices\":[275,279]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"EricLMitchell\",\"name\":\"Eric L. Mitchell\",\"id\":55623038,\"id_str\":\"55623038\",\"indices\":[137,151]},{\"screen_name\":\"AppleNews\",\"name\":\"Apple News\",\"id\":3257608936,\"id_str\":\"3257608936\",\"indices\":[170,180]},{\"screen_name\":\"PopWrapped\",\"name\":\"PopWrapped\",\"id\":100077645,\"id_str\":\"100077645\",\"indices\":[185,196]},{\"screen_name\":\"cubexnft\",\"name\":\"CubeX\",\"id\":1497758039163691015,\"id_str\":\"1497758039163691015\",\"indices\":[250,259]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MNv9NFzK1C\",\"expanded_url\":\"https:\\/\\/www.linkedin.com\\/pulse\\/web-30-blockchain-decentralization-stephane-delaporte\",\"display_url\":\"linkedin.com\\/pulse\\/web-30-b\\u2026\",\"indices\":[28,51]},{\"url\":\"https:\\/\\/t.co\\/SbGiksaCrA\",\"expanded_url\":\"https:\\/\\/www.bloomberg.com\\/press-releases\\/2022-07-31\\/memorandum-of-understanding-signed-by-the-dubai-blockchain-center-and-chaintech-labs-ltd\",\"display_url\":\"bloomberg.com\\/press-releases\\u2026\",\"indices\":[98,121]},{\"url\":\"https:\\/\\/t.co\\/z5trlRP9Fg\",\"expanded_url\":\"https:\\/\\/apple.news\\/AOEWEdOp4PuC4tlhtil0iww\",\"display_url\":\"apple.news\\/AOEWEdOp4PuC4t\\u2026\",\"indices\":[197,220]}],\"media\":[{\"id\":1554189182096101377,\"id_str\":\"1554189182096101377\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"url\":\"https:\\/\\/t.co\\/44HrJzm7jY\",\"display_url\":\"pic.twitter.com\\/44HrJzm7jY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UdodirimUche\\/status\\/1554189211737153537\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554189182096101377,\"id_str\":\"1554189182096101377\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554189182096101377\\/pu\\/img\\/QiF-zdQe3JxvG_QB.jpg\",\"url\":\"https:\\/\\/t.co\\/44HrJzm7jY\",\"display_url\":\"pic.twitter.com\\/44HrJzm7jY\",\"expanded_url\":\"https:\\/\\/twitter.com\\/UdodirimUche\\/status\\/1554189211737153537\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":720,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":720,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":2902,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/vid\\/320x320\\/sQvh-o29JLXa-LdG.mp4?tag=12\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/vid\\/720x720\\/pYEDLFBYUsdCHYBS.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/pl\\/eH4WlIFQ81Q3ZQtf.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554189182096101377\\/pu\\/vid\\/540x540\\/ugzpHrZ0ipGDii4j.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1209917689919164416,\"id_str\":\"1209917689919164416\",\"name\":\"Phenomenal\",\"screen_name\":\"UdodirimUche\",\"location\":\"Nigeria\",\"description\":\"Small boy with a very Big God\\ud83c\\udfcb\\ufe0f\\u200d\\u2640\\ufe0f\\nNFT and crypto enthusiast\\nAvid novel Reader\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":116,\"friends_count\":768,\"listed_count\":2,\"created_at\":\"Wed Dec 25 19:24:17 +0000 2019\",\"favourites_count\":2638,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":409,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1527605158988894209\\/HTPOp9tW_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1209917689919164416\\/1649449035\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":42,\"favorite_count\":62,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3522\":null,\"3523\":{\"created_at\":\"Sun Jul 31 15:02:55 +0000 2022\",\"id\":1553758109100871680,\"id_str\":\"1553758109100871680\",\"full_text\":\"Five months ago I was on-board to North cyprus to begin studying nursing.I am putting this out because I hope and pray something is done,this really is my last resolve as @YakinDoguUni has refused to refund the 1,400 Euros I made as payment for half of my tuition fee\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YakinDoguUni\",\"name\":\"Yak\\u0131n Do\\u011fu \\u00dcniversitesi Official\",\"id\":576959644,\"id_str\":\"576959644\",\"indices\":[171,184]}],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1501750832399892483,\"id_str\":\"1501750832399892483\",\"name\":\"azeezat_ ari.yike\",\"screen_name\":\"riyike001\",\"location\":\"Nigeria\",\"description\":\"||Striving Muslimah\\ud83e\\uddd5 ||Writer\\n||Arike ||Graphic designer sometimes \\n||Arabic\\ud83e\\udd0c\\u2764\\u2764\\n|| Jannah!\\ud83e\\udd32\\ud83e\\udd7a\",\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cyHZ9dS32C\",\"expanded_url\":\"https:\\/\\/zeewrites17.blogspot.com\",\"display_url\":\"zeewrites17.blogspot.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":93,\"listed_count\":0,\"created_at\":\"Thu Mar 10 02:44:50 +0000 2022\",\"favourites_count\":3135,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1414,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1511856060927299596\\/K5FlUvCQ_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1501750832399892483\\/1646880676\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":3,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"3524\":null,\"3525\":null,\"3526\":null,\"3527\":null,\"3528\":null,\"3529\":null,\"3530\":null,\"3531\":null,\"3532\":null,\"3533\":{\"created_at\":\"Mon Aug 01 12:00:00 +0000 2022\",\"id\":1554074466124062720,\"id_str\":\"1554074466124062720\",\"full_text\":\"COME ON!!!!\\n\\u2b07\\ufe0fLet's party in the discord\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf89\\ud83c\\udf81\\ud83c\\udf81\\ud83c\\udf81\\n\\u2705Invite your frnds to join Discord:https:\\/\\/t.co\\/azt2mYYEUd\\n\\u2705The Top 5 who invited most people (At least up to level 1)\\n\\u2705Share\\ud83d\\udc49\\ud83d\\udcb0100 USDT\\ud83d\\udcb0\\ud83d\\udc48\\n\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b\\ud83d\\ude3b https:\\/\\/t.co\\/7IRVfI6EzU\",\"truncated\":false,\"display_text_range\":[0,196],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/azt2mYYEUd\",\"expanded_url\":\"https:\\/\\/discord.gg\\/YDzewf3T6g\",\"display_url\":\"discord.gg\\/YDzewf3T6g\",\"indices\":[82,105]}],\"media\":[{\"id\":1554046575496003585,\"id_str\":\"1554046575496003585\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"url\":\"https:\\/\\/t.co\\/7IRVfI6EzU\",\"display_url\":\"pic.twitter.com\\/7IRVfI6EzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gameta_Official\\/status\\/1554074466124062720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554046575496003585,\"id_str\":\"1554046575496003585\",\"indices\":[197,220],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZEVIHDaAAEpDfi.jpg\",\"url\":\"https:\\/\\/t.co\\/7IRVfI6EzU\",\"display_url\":\"pic.twitter.com\\/7IRVfI6EzU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Gameta_Official\\/status\\/1554074466124062720\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1498176918252036098,\"id_str\":\"1498176918252036098\",\"name\":\"Gameta\",\"screen_name\":\"Gameta_Official\",\"location\":\"\",\"description\":\"Gameta\\u2014bring 4.7 billion users into Web3 by Casual GameFi matrix.\\n\\ndiscord:https:\\/\\/t.co\\/fb64PaENb7\",\"url\":\"https:\\/\\/t.co\\/HCDXrxntMJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/HCDXrxntMJ\",\"expanded_url\":\"http:\\/\\/www.gameta.pro\",\"display_url\":\"gameta.pro\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fb64PaENb7\",\"expanded_url\":\"http:\\/\\/discord.gg\\/YDzewf3T6g\",\"display_url\":\"discord.gg\\/YDzewf3T6g\",\"indices\":[75,98]}]}},\"protected\":false,\"followers_count\":28103,\"friends_count\":134,\"listed_count\":14,\"created_at\":\"Mon Feb 28 06:03:20 +0000 2022\",\"favourites_count\":124,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":213,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1504296763410518020\\/d8JM3kNk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1504296763410518020\\/d8JM3kNk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1498176918252036098\\/1657892773\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":108,\"favorite_count\":66,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3534\":null,\"3535\":null,\"3536\":null,\"3537\":null,\"3538\":null,\"3539\":null,\"3540\":null,\"3541\":null,\"3542\":null,\"3543\":null,\"3544\":null,\"3545\":null,\"3546\":null,\"3547\":null,\"3548\":null,\"3549\":null,\"3550\":null,\"3551\":null,\"3552\":null,\"3553\":null,\"3554\":null,\"3555\":null,\"3556\":null,\"3557\":null,\"3558\":null,\"3559\":null,\"3560\":null,\"3561\":null,\"3562\":null,\"3563\":null,\"3564\":null,\"3565\":null,\"3566\":null,\"3567\":null,\"3568\":null,\"3569\":null,\"3570\":null,\"3571\":null,\"3572\":null,\"3573\":null,\"3574\":null,\"3575\":null,\"3576\":null,\"3577\":null,\"3578\":null,\"3579\":null,\"3580\":null,\"3581\":null,\"3582\":null,\"3583\":null,\"3584\":null,\"3585\":null,\"3586\":null,\"3587\":null,\"3588\":null,\"3589\":null,\"3590\":null,\"3591\":null,\"3592\":null,\"3593\":null,\"3594\":null,\"3595\":null,\"3596\":null,\"3597\":null,\"3598\":null,\"3599\":null,\"3600\":null,\"3601\":null,\"3602\":null,\"3603\":null,\"3604\":null,\"3605\":null,\"3606\":null,\"3607\":null,\"3608\":null,\"3609\":null,\"3610\":null,\"3611\":null,\"3612\":null,\"3613\":null,\"3614\":null,\"3615\":null,\"3616\":null,\"3617\":null,\"3618\":null,\"3619\":null,\"3620\":null,\"3621\":null,\"3622\":null,\"3623\":null,\"3624\":null,\"3625\":null,\"3626\":null,\"3627\":null,\"3628\":null,\"3629\":null,\"3630\":null,\"3631\":null,\"3632\":null,\"3633\":null,\"3634\":null,\"3635\":{\"created_at\":\"Sat Aug 06 23:36:17 +0000 2022\",\"id\":1556061629099282432,\"id_str\":\"1556061629099282432\",\"full_text\":\"John Kerry is right. By suspending talks with the U.S. on Climate Change, the PRC is punishing the entire world, especially developing countries. Beijing should reconsider. This is not worthy of a responsible great power. \\u2066@ClimateEnvoy\\u2069 https:\\/\\/t.co\\/dMnGSQIK6V\",\"truncated\":false,\"display_text_range\":[0,266],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ClimateEnvoy\",\"name\":\"Special Presidential Envoy John Kerry\",\"id\":1351716580720316417,\"id_str\":\"1351716580720316417\",\"indices\":[227,240]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/dMnGSQIK6V\",\"expanded_url\":\"https:\\/\\/www.reuters.com\\/world\\/us\\/chinas-suspension-bilateral-climate-talks-with-us-punishes-world-kerry-2022-08-05\\/\",\"display_url\":\"reuters.com\\/world\\/us\\/china\\u2026\",\"indices\":[243,266]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1496321911218917383,\"id_str\":\"1496321911218917383\",\"name\":\"Ambassador Nicholas Burns\",\"screen_name\":\"USAmbChina\",\"location\":\"\",\"description\":\"Official account of \\ud83c\\uddfa\\ud83c\\uddf8 Ambassador to \\ud83c\\udde8\\ud83c\\uddf3 Nicholas Burns. \\u7f8e\\u56fd\\u9a7b\\u534e\\u5927\\u4f7f\\u4f2f\\u6069\\u65af\\u5b98\\u65b9\\u8d26\\u53f7. For more on the U.S. Mission to China, visit us at https:\\/\\/t.co\\/ToMSLAY4t4\",\"url\":\"https:\\/\\/t.co\\/iRqmZh5bEF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iRqmZh5bEF\",\"expanded_url\":\"https:\\/\\/china.usembassy-china.org.cn\\/ambassador-nicholas-burns\\/\",\"display_url\":\"china.usembassy-china.org.cn\\/ambassador-nic\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ToMSLAY4t4\",\"expanded_url\":\"http:\\/\\/linktr.ee\\/usmissionchina\",\"display_url\":\"linktr.ee\\/usmissionchina\",\"indices\":[122,145]}]}},\"protected\":false,\"followers_count\":40734,\"friends_count\":347,\"listed_count\":156,\"created_at\":\"Wed Feb 23 03:12:31 +0000 2022\",\"favourites_count\":4,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":369,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1505831276233822208\\/zMMneCTV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1505831276233822208\\/zMMneCTV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1496321911218917383\\/1647852924\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":92,\"favorite_count\":337,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3636\":null,\"3637\":null,\"3638\":null,\"3639\":null,\"3640\":null,\"3641\":null,\"3642\":null,\"3643\":null,\"3644\":null,\"3645\":null,\"3646\":null,\"3647\":{\"created_at\":\"Fri Aug 05 14:25:55 +0000 2022\",\"id\":1555560738034688000,\"id_str\":\"1555560738034688000\",\"full_text\":\"Cameroonian Prime Minister Joseph Dion Ngute said peace and stability are gradually returning to the country's Anglophone regions of Northwest and Southwest https:\\/\\/t.co\\/aRdhexGqpb https:\\/\\/t.co\\/GWbAY0lgdU\",\"truncated\":false,\"display_text_range\":[0,180],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/aRdhexGqpb\",\"expanded_url\":\"http:\\/\\/xhtxs.cn\\/yiO\",\"display_url\":\"xhtxs.cn\\/yiO\",\"indices\":[157,180]}],\"media\":[{\"id\":1555560732858560512,\"id_str\":\"1555560732858560512\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"url\":\"https:\\/\\/t.co\\/GWbAY0lgdU\",\"display_url\":\"pic.twitter.com\\/GWbAY0lgdU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/XHNews\\/status\\/1555560738034688000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"large\":{\"w\":900,\"h\":601,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":601,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555560732858560512,\"id_str\":\"1555560732858560512\",\"indices\":[181,204],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZZ2PqyUsAAehdl.jpg\",\"url\":\"https:\\/\\/t.co\\/GWbAY0lgdU\",\"display_url\":\"pic.twitter.com\\/GWbAY0lgdU\",\"expanded_url\":\"https:\\/\\/twitter.com\\/XHNews\\/status\\/1555560738034688000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":454,\"resize\":\"fit\"},\"large\":{\"w\":900,\"h\":601,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":601,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"China Xinhua News<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":487118986,\"id_str\":\"487118986\",\"name\":\"China Xinhua News\",\"screen_name\":\"XHNews\",\"location\":\"Headquartered in Beijing, PRC\",\"description\":\"We are public media for the public good. We don't pursue corporate interests, nor will we yield to the pressure of ideological stigmatization and political bias\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12247621,\"friends_count\":74,\"listed_count\":14028,\"created_at\":\"Thu Feb 09 01:10:18 +0000 2012\",\"favourites_count\":121,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":236508,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1246686019241398274\\/swhowkA5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1246686019241398274\\/swhowkA5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/487118986\\/1586067539\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":9,\"favorite_count\":21,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3648\":null,\"3649\":null,\"3650\":{\"created_at\":\"Sat Aug 06 14:32:10 +0000 2022\",\"id\":1555924699447582720,\"id_str\":\"1555924699447582720\",\"full_text\":\"After provoking #Taiwan, #NancyPelosi switched sides.\\n\\nPelosi's weird 'connection': Dig hole = Reach China\\n\\nPelosi says she has always felt a connection with #China through childhood hole digging... take from that what you will.\\n\\n#ChinaTaiwanCrisis #Pelosi https:\\/\\/t.co\\/fvGw0WVjKH\",\"truncated\":false,\"display_text_range\":[0,256],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[16,23]},{\"text\":\"NancyPelosi\",\"indices\":[25,37]},{\"text\":\"China\",\"indices\":[158,164]},{\"text\":\"ChinaTaiwanCrisis\",\"indices\":[230,248]},{\"text\":\"Pelosi\",\"indices\":[249,256]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555924668091023361,\"id_str\":\"1555924668091023361\",\"indices\":[257,280],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555924668091023361\\/pu\\/img\\/A8ktGYkQucljVZrG.jpg\",\"url\":\"https:\\/\\/t.co\\/fvGw0WVjKH\",\"display_url\":\"pic.twitter.com\\/fvGw0WVjKH\",\"expanded_url\":\"https:\\/\\/twitter.com\\/ChaudharyParvez\\/status\\/1555924699447582720\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1192,\"h\":720,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":411,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[149,90],\"duration_millis\":8920,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/596x360\\/70NGCSHI1pL3qdXF.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/446x270\\/CucLz1-cBpkMl8dF.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/vid\\/1192x720\\/ytG6LXd2A2YEWlns.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555924668091023361\\/pu\\/pl\\/Bbp0-06DtKYXAshW.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":746971014,\"id_str\":\"746971014\",\"name\":\"Chaudhary Parvez\",\"screen_name\":\"ChaudharyParvez\",\"location\":\"Global South \",\"description\":\"Journalist By Choice |\\nSenior Producer at National News Channel |\\nEx-@ABPNEWS |\\nMember-Press Club of India |\\nAlumni @AmityUni |\\nViews, FLW, LK & RTs-Personal |\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4883,\"friends_count\":264,\"listed_count\":24,\"created_at\":\"Thu Aug 09 10:17:00 +0000 2012\",\"favourites_count\":1209,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2122,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545011715187679232\\/zJlHVe0R_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/746971014\\/1651212113\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3651\":null,\"3652\":null,\"3653\":null,\"3654\":null,\"3655\":null,\"3656\":null,\"3657\":null,\"3658\":null,\"3659\":null,\"3660\":null,\"3661\":null,\"3662\":null,\"3663\":null,\"3664\":null,\"3665\":null,\"3666\":null,\"3667\":null,\"3668\":null,\"3669\":null,\"3670\":null,\"3671\":{\"created_at\":\"Fri Aug 05 19:56:02 +0000 2022\",\"id\":1555643813871423488,\"id_str\":\"1555643813871423488\",\"full_text\":\"US Africa strategy has nothing to do with Africa. It is all about China. Denying poor Africans Chinese assistance is the most ugly and inhumane form of imperialism. https:\\/\\/t.co\\/VC9nwiTWw5\",\"truncated\":false,\"display_text_range\":[0,164],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555643805440909312,\"id_str\":\"1555643805440909312\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"url\":\"https:\\/\\/t.co\\/VC9nwiTWw5\",\"display_url\":\"pic.twitter.com\\/VC9nwiTWw5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GalLuft\\/status\\/1555643813871423488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":562,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":907,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":907,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555643805440909312,\"id_str\":\"1555643805440909312\",\"indices\":[165,188],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZbBzIRXoAAp4F4.jpg\",\"url\":\"https:\\/\\/t.co\\/VC9nwiTWw5\",\"display_url\":\"pic.twitter.com\\/VC9nwiTWw5\",\"expanded_url\":\"https:\\/\\/twitter.com\\/GalLuft\\/status\\/1555643813871423488\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":562,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":750,\"h\":907,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":750,\"h\":907,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1002847441358426112,\"id_str\":\"1002847441358426112\",\"name\":\"Gal Luft\",\"screen_name\":\"GalLuft\",\"location\":\"Never-never land\",\"description\":\"Director, https:\\/\\/t.co\\/XlRTtEqImz; Director, Center for World Political Economy, Ostim Technical University, author and columnist. Latest book: De-dollarization.\",\"url\":\"https:\\/\\/t.co\\/8ZLClLPU1L\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8ZLClLPU1L\",\"expanded_url\":\"http:\\/\\/www.iags.org\",\"display_url\":\"iags.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XlRTtEqImz\",\"expanded_url\":\"http:\\/\\/IAGS.org\",\"display_url\":\"IAGS.org\",\"indices\":[10,33]}]}},\"protected\":false,\"followers_count\":1939,\"friends_count\":1017,\"listed_count\":23,\"created_at\":\"Sat Jun 02 09:40:36 +0000 2018\",\"favourites_count\":935,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3191,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1226424154452299777\\/caeoGJwe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1226424154452299777\\/caeoGJwe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1002847441358426112\\/1596615438\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":610,\"favorite_count\":1922,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3672\":{\"created_at\":\"Fri Aug 05 13:51:46 +0000 2022\",\"id\":1555552144186609664,\"id_str\":\"1555552144186609664\",\"full_text\":\"BREAKING: Israel hits Gaza with airstrikes https:\\/\\/t.co\\/ST9SwXYfAc https:\\/\\/t.co\\/LGaixvktbn\",\"truncated\":false,\"display_text_range\":[0,66],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ST9SwXYfAc\",\"expanded_url\":\"http:\\/\\/aje.io\\/0b0txb\",\"display_url\":\"aje.io\\/0b0txb\",\"indices\":[43,66]}],\"media\":[{\"id\":1555552104420450304,\"id_str\":\"1555552104420450304\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"url\":\"https:\\/\\/t.co\\/LGaixvktbn\",\"display_url\":\"pic.twitter.com\\/LGaixvktbn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AJEnglish\\/status\\/1555552144186609664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555552104420450304,\"id_str\":\"1555552104420450304\",\"indices\":[67,90],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZZuZbWXoAANaO1.jpg\",\"url\":\"https:\\/\\/t.co\\/LGaixvktbn\",\"display_url\":\"pic.twitter.com\\/LGaixvktbn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/AJEnglish\\/status\\/1555552144186609664\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZZuZbWXoAANaO1.mp4\"}]}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"TweetDeck<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4970411,\"id_str\":\"4970411\",\"name\":\"Al Jazeera English\",\"screen_name\":\"AJEnglish\",\"location\":\"Doha, Qatar\",\"description\":\"Hear the human story and join the discussion. We go beyond cold facts and bring to light what matters. For breaking news alerts, follow @AJENews.\",\"url\":\"https:\\/\\/t.co\\/fDSF1GNVXl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/fDSF1GNVXl\",\"expanded_url\":\"http:\\/\\/aljazeera.com\",\"display_url\":\"aljazeera.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7989318,\"friends_count\":240,\"listed_count\":56550,\"created_at\":\"Tue Apr 17 08:23:08 +0000 2007\",\"favourites_count\":10541,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":311251,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1190503555901394944\\/T4qowO0X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1190503555901394944\\/T4qowO0X_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4970411\\/1642774290\",\"profile_link_color\":\"234D8C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDDDDD\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":703,\"favorite_count\":1116,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3673\":null,\"3674\":null,\"3675\":null,\"3676\":null,\"3677\":null,\"3678\":null,\"3679\":null,\"3680\":null,\"3681\":null,\"3682\":null,\"3683\":null,\"3684\":{\"created_at\":\"Mon Jul 18 16:52:12 +0000 2022\",\"id\":1549074567817297920,\"id_str\":\"1549074567817297920\",\"full_text\":\"I got this nudge from my Spirit yesterday!!!, \\n\\nIt says the start of #WWIII will be an *intercation between #Israel and one #MiddleEast country which will be blown into full artilleries between #ally Countries!!!, \\n\\n#THEWORDOFGODMUSTBEFULFILLED\\n#OOMQUOTES\",\"truncated\":false,\"display_text_range\":[0,255],\"entities\":{\"hashtags\":[{\"text\":\"WWIII\",\"indices\":[69,75]},{\"text\":\"Israel\",\"indices\":[108,115]},{\"text\":\"MiddleEast\",\"indices\":[124,135]},{\"text\":\"ally\",\"indices\":[194,199]},{\"text\":\"THEWORDOFGODMUSTBEFULFILLED\",\"indices\":[216,244]},{\"text\":\"OOMQUOTES\",\"indices\":[245,255]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":989935147737866240,\"id_str\":\"989935147737866240\",\"name\":\"Oguntokun Oluwaseun\",\"screen_name\":\"Oguntokunmichea\",\"location\":\"Lagos Nigeria \",\"description\":\"#Biochemist\\nCertified teacher by #TRCN \\nLover of Jesus \\nLove Life and can smile for Africa\\nseunmicheal1992@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":119,\"friends_count\":111,\"listed_count\":1,\"created_at\":\"Fri Apr 27 18:31:46 +0000 2018\",\"favourites_count\":52869,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":4867,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1518300994236526592\\/ptN-M8Yy_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"3685\":null,\"3686\":null,\"3687\":null,\"3688\":null,\"3689\":null,\"3690\":null,\"3691\":null,\"3692\":null,\"3693\":null,\"3694\":{\"created_at\":\"Wed Jun 08 18:54:25 +0000 2022\",\"id\":1534609811387686915,\"id_str\":\"1534609811387686915\",\"full_text\":\"We can't get over these views of our recent #utilitysolar project in Benicia, CA. This 7 MW PV power plant featuring #solartrackers is owned by @GreenbackerCap is expected to offset an estimated 9,980 metric tons of carbon dioxide emissions annually. https:\\/\\/t.co\\/T5FTmJyrMa https:\\/\\/t.co\\/i1k70L3fG8\",\"truncated\":false,\"display_text_range\":[0,274],\"entities\":{\"hashtags\":[{\"text\":\"utilitysolar\",\"indices\":[44,57]},{\"text\":\"solartrackers\",\"indices\":[117,131]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GreenbackerCap\",\"name\":\"Greenbacker Capital\",\"id\":1525658173,\"id_str\":\"1525658173\",\"indices\":[144,159]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/T5FTmJyrMa\",\"expanded_url\":\"https:\\/\\/hubs.li\\/Q01d7mYv0\",\"display_url\":\"hubs.li\\/Q01d7mYv0\",\"indices\":[251,274]}],\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48339,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/1280x720\\/4L8VZxSV6kVgKpS3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/pl\\/-NuO51PBN7LFT-Ov.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/640x360\\/WkOOL32plgrFk61x.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/480x270\\/scP8A75yBmcEFYnP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Sprout Social<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2176931268,\"id_str\":\"2176931268\",\"name\":\"Borrego\",\"screen_name\":\"Borrego_Energy\",\"location\":\"United States\",\"description\":\"Borrego leads and accelerates the delivery of large commercial, community solar, and utility-scale solar and energy storage projects in the United States.\",\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"expanded_url\":\"http:\\/\\/www.borregoenergy.com\",\"display_url\":\"borregoenergy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1944,\"friends_count\":340,\"listed_count\":50,\"created_at\":\"Tue Nov 05 22:35:00 +0000 2013\",\"favourites_count\":223,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2176931268\\/1611588553\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":6,\"favorite_count\":10,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3695\":null,\"3696\":{\"created_at\":\"Wed Jun 08 18:54:25 +0000 2022\",\"id\":1534609811387686915,\"id_str\":\"1534609811387686915\",\"full_text\":\"We can't get over these views of our recent #utilitysolar project in Benicia, CA. This 7 MW PV power plant featuring #solartrackers is owned by @GreenbackerCap is expected to offset an estimated 9,980 metric tons of carbon dioxide emissions annually. https:\\/\\/t.co\\/T5FTmJyrMa https:\\/\\/t.co\\/i1k70L3fG8\",\"truncated\":false,\"display_text_range\":[0,274],\"entities\":{\"hashtags\":[{\"text\":\"utilitysolar\",\"indices\":[44,57]},{\"text\":\"solartrackers\",\"indices\":[117,131]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GreenbackerCap\",\"name\":\"Greenbacker Capital\",\"id\":1525658173,\"id_str\":\"1525658173\",\"indices\":[144,159]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/T5FTmJyrMa\",\"expanded_url\":\"https:\\/\\/hubs.li\\/Q01d7mYv0\",\"display_url\":\"hubs.li\\/Q01d7mYv0\",\"indices\":[251,274]}],\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1534609710195920896,\"id_str\":\"1534609710195920896\",\"indices\":[275,298],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1534609710195920896\\/pu\\/img\\/qi8S_zClTA1FDt91.jpg\",\"url\":\"https:\\/\\/t.co\\/i1k70L3fG8\",\"display_url\":\"pic.twitter.com\\/i1k70L3fG8\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Borrego_Energy\\/status\\/1534609811387686915\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":48339,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/1280x720\\/4L8VZxSV6kVgKpS3.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/pl\\/-NuO51PBN7LFT-Ov.m3u8?tag=12&container=fmp4\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/640x360\\/WkOOL32plgrFk61x.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1534609710195920896\\/pu\\/vid\\/480x270\\/scP8A75yBmcEFYnP.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Sprout Social<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2176931268,\"id_str\":\"2176931268\",\"name\":\"Borrego\",\"screen_name\":\"Borrego_Energy\",\"location\":\"United States\",\"description\":\"Borrego leads and accelerates the delivery of large commercial, community solar, and utility-scale solar and energy storage projects in the United States.\",\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cjltY3KQWp\",\"expanded_url\":\"http:\\/\\/www.borregoenergy.com\",\"display_url\":\"borregoenergy.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1944,\"friends_count\":340,\"listed_count\":50,\"created_at\":\"Tue Nov 05 22:35:00 +0000 2013\",\"favourites_count\":223,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1071,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546530682482020352\\/9GHAm82W_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2176931268\\/1611588553\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":6,\"favorite_count\":10,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3697\":{\"created_at\":\"Tue Aug 02 08:38:43 +0000 2022\",\"id\":1554386198868725762,\"id_str\":\"1554386198868725762\",\"full_text\":\"This is a perfect response to Dino Melaye\\ud83d\\ude39\\ud83d\\ude39. I pity anyone that comes for Peter Obi with baseless talks this period. We are ready for you \\ud83d\\udc4d\\ud83d\\udc4d\\n__\\nOsinbajo |South east |Zack Orji| Endsars |Sam Omatseye| Rufai| IPOB| Osama Bin Laden |Igbos| Katsina| Okowa| lekki |adamawa| https:\\/\\/t.co\\/l7PYkgawqF\",\"truncated\":false,\"display_text_range\":[0,268],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554386128811294720,\"id_str\":\"1554386128811294720\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"url\":\"https:\\/\\/t.co\\/l7PYkgawqF\",\"display_url\":\"pic.twitter.com\\/l7PYkgawqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":240,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554386128811294720,\"id_str\":\"1554386128811294720\",\"indices\":[269,292],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554386128811294720\\/pu\\/img\\/h-PtR9kNzQVe4E2l.jpg\",\"url\":\"https:\\/\\/t.co\\/l7PYkgawqF\",\"display_url\":\"pic.twitter.com\\/l7PYkgawqF\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Nkemchor_\\/status\\/1554386198868725762\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"medium\":{\"w\":426,\"h\":240,\"resize\":\"fit\"},\"small\":{\"w\":426,\"h\":240,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[71,40],\"duration_millis\":140000,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554386128811294720\\/pu\\/pl\\/ot2BDWN2LHwqFIAp.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554386128811294720\\/pu\\/vid\\/426x240\\/CV4-RkDDO2ntQb_0.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1320715998798950413,\"id_str\":\"1320715998798950413\",\"name\":\"NK\\u00a3M #PeterObi2023\\uea00\",\"screen_name\":\"Nkemchor_\",\"location\":\"\",\"description\":\"GOOD GOVERNANCE ADVOCATE| A die-hard Fan of H.E Peter Obi ~A NATIONAL TREASURE!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":27474,\"friends_count\":3080,\"listed_count\":17,\"created_at\":\"Mon Oct 26 13:16:58 +0000 2020\",\"favourites_count\":208233,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":69305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1544753588936888322\\/b9L-O-1l_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1544753588936888322\\/b9L-O-1l_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1320715998798950413\\/1657298317\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3708,\"favorite_count\":6617,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3698\":null,\"3699\":null,\"3700\":null,\"3701\":null,\"3702\":null,\"3703\":null,\"3704\":null,\"3705\":null,\"3706\":null,\"3707\":null,\"3708\":null,\"3709\":null,\"3710\":null,\"3711\":null,\"3712\":null,\"3713\":null,\"3714\":null,\"3715\":null,\"3716\":null,\"3717\":{\"created_at\":\"Fri Aug 05 09:37:16 +0000 2022\",\"id\":1555488096069865472,\"id_str\":\"1555488096069865472\",\"full_text\":\"Feel Free to message me for your Architectural Designs\\/Visualization, Interior designs, Construction work.\\n \\u260e\\ufe0f: +2347019503019\\nE-mail: akoduabiola2@gmail.com https:\\/\\/t.co\\/vwMYi8kocf\",\"truncated\":false,\"display_text_range\":[0,157],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555488054055505920,\"id_str\":\"1555488054055505920\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1152,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555488054055505920,\"id_str\":\"1555488054055505920\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNJXkAAfhCw.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":2048,\"h\":1152,\"resize\":\"fit\"}}},{\"id\":1555488054059700224,\"id_str\":\"1555488054059700224\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKXkAAceDF.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKXkAAceDF.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555488054059614210,\"id_str\":\"1555488054059614210\",\"indices\":[158,181],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKWQAIAPuv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZY0JNKWQAIAPuv.jpg\",\"url\":\"https:\\/\\/t.co\\/vwMYi8kocf\",\"display_url\":\"pic.twitter.com\\/vwMYi8kocf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/The_man_abiola\\/status\\/1555488096069865472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2482037701,\"id_str\":\"2482037701\",\"name\":\"Abiola Akodu\",\"screen_name\":\"The_man_abiola\",\"location\":\"Lagos, Nigeria\",\"description\":\"Your step-daddy| ARCHITECT | Creative designer \\ud83d\\udc69\\u200d\\ud83c\\udfa8 | NOTION DESIGNS | CONTACT ME\\u260e\\ufe0f: +2347019503019 | E-mail \\ud83d\\udcec: akoduabiola2@gmail.com\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":132,\"friends_count\":226,\"listed_count\":0,\"created_at\":\"Wed May 07 12:34:29 +0000 2014\",\"favourites_count\":2591,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":335,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1524054149691752450\\/g86MUOXE_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2482037701\\/1655583774\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3718\":{\"created_at\":\"Fri Aug 05 09:23:34 +0000 2022\",\"id\":1555484650553892864,\"id_str\":\"1555484650553892864\",\"full_text\":\"\\ud83e\\udd8b\\nI asked what your Weakness was in our new relationship, you said you can't pound yam that I should help you out! And I said that's not my strength in a relationship!\\n\\nDiane why are you texting me that you no longer interested in me! I can't loose my strength for you nah\\ud83d\\ude02\\ud83d\\ude12\\ud83d\\ude29\",\"truncated\":false,\"display_text_range\":[0,275],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1125946856,\"id_str\":\"1125946856\",\"name\":\"@uzorvickgold\\ud83d\\udc9c\\ud83e\\udd8b\",\"screen_name\":\"uzorvick\",\"location\":\"Lagos, Nigeria\",\"description\":\"Universal Talent\\ud83c\\udf0d \\nSocially Acceptable (vibes\\ud83e\\udd8b)\\n#letsGist\\ud83d\\udcfa #singer #songwriter #actor #model\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":869,\"friends_count\":2657,\"listed_count\":1,\"created_at\":\"Sun Jan 27 19:10:40 +0000 2013\",\"favourites_count\":1554,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2062,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554790269127720960\\/FQnNAacc_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1125946856\\/1658913565\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"3719\":null,\"3720\":null,\"3721\":null,\"3722\":null,\"3723\":null,\"3724\":null,\"3725\":null,\"3726\":null,\"3727\":null,\"3728\":null,\"3729\":null,\"3730\":null,\"3731\":null,\"3732\":null,\"3733\":null,\"3734\":null,\"3735\":null,\"3736\":null,\"3737\":null,\"3738\":null,\"3739\":{\"created_at\":\"Thu Aug 04 19:24:13 +0000 2022\",\"id\":1555273417955446786,\"id_str\":\"1555273417955446786\",\"full_text\":\"Dear @peterobi, 90% of my pple re not online bcos of poverty & none access to d internet. They hav radio where they are preached to hate other tribe. How do we take this rescue news to them?\\n\\nDavid Hundeyin Oyo State Pere Daniel Bwala Ali Baba reno #AtikuOkowa2023 ASUU #Adekunle https:\\/\\/t.co\\/qDB7l1cwYf\",\"truncated\":false,\"display_text_range\":[0,283],\"entities\":{\"hashtags\":[{\"text\":\"AtikuOkowa2023\",\"indices\":[253,268]},{\"text\":\"Adekunle\",\"indices\":[274,283]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[5,14]}],\"urls\":[],\"media\":[{\"id\":1555273255778500614,\"id_str\":\"1555273255778500614\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":739,\"h\":415,\"resize\":\"fit\"},\"large\":{\"w\":739,\"h\":415,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555273255778500614,\"id_str\":\"1555273255778500614\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVwyTNXwAYL4LL.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":739,\"h\":415,\"resize\":\"fit\"},\"large\":{\"w\":739,\"h\":415,\"resize\":\"fit\"}}},{\"id\":1555273319766794241,\"id_str\":\"1555273319766794241\",\"indices\":[284,307],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZVw2BlXoAE9Ib8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZVw2BlXoAE9Ib8.jpg\",\"url\":\"https:\\/\\/t.co\\/qDB7l1cwYf\",\"display_url\":\"pic.twitter.com\\/qDB7l1cwYf\",\"expanded_url\":\"https:\\/\\/twitter.com\\/maryam_shehu_\\/status\\/1555273417955446786\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":738,\"h\":415,\"resize\":\"fit\"},\"medium\":{\"w\":738,\"h\":415,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1537786289419956224,\"id_str\":\"1537786289419956224\",\"name\":\"Maryam Shehu\",\"screen_name\":\"maryam_shehu_\",\"location\":\"Abuja\",\"description\":\"I say it the way it is. I hate injustice. I'm a proud Fulani. Muslimah 100%\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1452,\"friends_count\":13,\"listed_count\":1,\"created_at\":\"Fri Jun 17 13:18:30 +0000 2022\",\"favourites_count\":764,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":99,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1537788550690775040\\/d3dJvF3U_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1537788550690775040\\/d3dJvF3U_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537786289419956224\\/1655472339\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":4889,\"favorite_count\":9883,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3740\":null,\"3741\":null,\"3742\":null,\"3743\":null,\"3744\":null,\"3745\":null,\"3746\":null,\"3747\":null,\"3748\":null,\"3749\":null,\"3750\":null,\"3751\":null,\"3752\":null,\"3753\":null,\"3754\":null,\"3755\":null,\"3756\":null,\"3757\":null,\"3758\":null,\"3759\":null,\"3760\":null,\"3761\":null,\"3762\":null,\"3763\":null,\"3764\":null,\"3765\":null,\"3766\":null,\"3767\":null,\"3768\":null,\"3769\":null,\"3770\":null,\"3771\":null,\"3772\":null,\"3773\":null,\"3774\":null,\"3775\":null,\"3776\":{\"created_at\":\"Mon Aug 01 19:20:16 +0000 2022\",\"id\":1554185261956730882,\"id_str\":\"1554185261956730882\",\"full_text\":\"The US banned Hawaiian language, poisons our water, invaded our country, & illegally occupies Hawaii to this day, but speaks of 'supporting Taiwan independence'. My mother's hands were broken for speaking Hawaiian in school, and we are punished TODAY for speaking Hawaiian. https:\\/\\/t.co\\/rkLLkDh7gl\",\"truncated\":false,\"display_text_range\":[0,277],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554183991686623232,\"id_str\":\"1554183991686623232\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"url\":\"https:\\/\\/t.co\\/rkLLkDh7gl\",\"display_url\":\"pic.twitter.com\\/rkLLkDh7gl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SilverSpookGuy\\/status\\/1554185261956730882\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554183991686623232,\"id_str\":\"1554183991686623232\",\"indices\":[278,301],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554183991686623232\\/pu\\/img\\/YfE3etsxu1Y9ybSS.jpg\",\"url\":\"https:\\/\\/t.co\\/rkLLkDh7gl\",\"display_url\":\"pic.twitter.com\\/rkLLkDh7gl\",\"expanded_url\":\"https:\\/\\/twitter.com\\/SilverSpookGuy\\/status\\/1554185261956730882\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":480,\"h\":360,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":360,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[4,3],\"duration_millis\":105743,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183991686623232\\/pu\\/vid\\/480x360\\/kwnwOHLqtmyizBWv.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183991686623232\\/pu\\/vid\\/360x270\\/njBRA-vV3oTpSOPF.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554183991686623232\\/pu\\/pl\\/GzA2mb6OCY4VAXaJ.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":384763249,\"id_str\":\"384763249\",\"name\":\"Silver Spook\",\"screen_name\":\"SilverSpookGuy\",\"location\":\"Hawaii, USA\",\"description\":\"Creator of Neofeud https:\\/\\/t.co\\/onPxuHF3sJ Native Hawaiian, social worker, teacher. Kia'i. Cyberpunk. AKA Christian Miller\",\"url\":\"https:\\/\\/t.co\\/0r0jPRdXRW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0r0jPRdXRW\",\"expanded_url\":\"http:\\/\\/silverspookgames.com\",\"display_url\":\"silverspookgames.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/onPxuHF3sJ\",\"expanded_url\":\"http:\\/\\/bit.ly\\/2haV9hM\",\"display_url\":\"bit.ly\\/2haV9hM\",\"indices\":[19,42]}]}},\"protected\":false,\"followers_count\":21444,\"friends_count\":16890,\"listed_count\":101,\"created_at\":\"Tue Oct 04 08:44:30 +0000 2011\",\"favourites_count\":82060,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7812,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/911674029647454208\\/4zfPiuai_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/911674029647454208\\/4zfPiuai_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/384763249\\/1506023097\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":13831,\"favorite_count\":43249,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3777\":null,\"3778\":null,\"3779\":null,\"3780\":null,\"3781\":null,\"3782\":null,\"3783\":null,\"3784\":null,\"3785\":null,\"3786\":null,\"3787\":null,\"3788\":null,\"3789\":null,\"3790\":null,\"3791\":null,\"3792\":null,\"3793\":null,\"3794\":null,\"3795\":null,\"3796\":null,\"3797\":null,\"3798\":null,\"3799\":null,\"3800\":null,\"3801\":null,\"3802\":null,\"3803\":null,\"3804\":null,\"3805\":null,\"3806\":null,\"3807\":null,\"3808\":null,\"3809\":null,\"3810\":null,\"3811\":null,\"3812\":null,\"3813\":null,\"3814\":null,\"3815\":null,\"3816\":null,\"3817\":null,\"3818\":null,\"3819\":{\"created_at\":\"Thu Aug 04 19:49:49 +0000 2022\",\"id\":1555279861073453056,\"id_str\":\"1555279861073453056\",\"full_text\":\"Congratulations Goodness Chiemerie Nwachukwu \\ud83c\\uddf3\\ud83c\\uddecmy namesake for emerging the winner women's discus throw F42-44 \\ud83c\\udf89\\ud83c\\udf8a\\ud83e\\ude85 https:\\/\\/t.co\\/lqvCszpDgo\",\"truncated\":false,\"display_text_range\":[0,114],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1555279801052700676,\"id_str\":\"1555279801052700676\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"url\":\"https:\\/\\/t.co\\/lqvCszpDgo\",\"display_url\":\"pic.twitter.com\\/lqvCszpDgo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnpaulez16\\/status\\/1555279861073453056\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555279801052700676,\"id_str\":\"1555279801052700676\",\"indices\":[115,138],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1555279801052700676\\/pu\\/img\\/XxHummID1pEpaV58.jpg\",\"url\":\"https:\\/\\/t.co\\/lqvCszpDgo\",\"display_url\":\"pic.twitter.com\\/lqvCszpDgo\",\"expanded_url\":\"https:\\/\\/twitter.com\\/johnpaulez16\\/status\\/1555279861073453056\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":306,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1280,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,20],\"duration_millis\":15115,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/vid\\/480x1066\\/CUPml6wwRg5MAhzU.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/pl\\/S6Lr_kSfpEErFjSJ.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/vid\\/320x710\\/BMx4SDzUlDM821Fq.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1555279801052700676\\/pu\\/vid\\/576x1280\\/ho559TB_gfCIKQh-.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3332599954,\"id_str\":\"3332599954\",\"name\":\"Johnpaul Chukwuemeri\",\"screen_name\":\"johnpaulez16\",\"location\":\"Onitsha, Nigeria\",\"description\":\"Dealer on all kinds of food condiments and general goods.\\n\\nHoly Spirit is my great provider\\n#We are @messi #NFT || #BTC || #ETH || #CRYPTO || #TRADER #COLLECTOR\",\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/A2YhQggHSZ\",\"expanded_url\":\"https:\\/\\/www.binance.me\\/en\\/activity\\/referral\\/offers\\/claim?ref=CPA_00EP5D3DYW\",\"display_url\":\"binance.me\\/en\\/activity\\/re\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":246,\"friends_count\":1306,\"listed_count\":15,\"created_at\":\"Thu Jun 18 12:33:33 +0000 2015\",\"favourites_count\":5527,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1518,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1201124753387462659\\/kbzlq6iC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3332599954\\/1455231986\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3820\":null,\"3821\":null,\"3822\":null,\"3823\":null,\"3824\":null,\"3825\":null,\"3826\":null,\"3827\":null,\"3828\":null,\"3829\":null,\"3830\":null,\"3831\":null,\"3832\":null,\"3833\":null,\"3834\":null,\"3835\":null,\"3836\":null,\"3837\":null,\"3838\":null,\"3839\":null,\"3840\":null,\"3841\":null,\"3842\":null,\"3843\":null,\"3844\":null,\"3845\":null,\"3846\":null,\"3847\":null,\"3848\":null,\"3849\":null,\"3850\":null,\"3851\":null,\"3852\":null,\"3853\":null,\"3854\":null,\"3855\":null,\"3856\":null,\"3857\":null,\"3858\":null,\"3859\":null,\"3860\":null,\"3861\":null,\"3862\":null,\"3863\":null,\"3864\":null,\"3865\":null,\"3866\":null,\"3867\":null,\"3868\":null,\"3869\":null,\"3870\":null,\"3871\":null,\"3872\":null,\"3873\":null,\"3874\":null,\"3875\":null,\"3876\":null,\"3877\":null,\"3878\":null,\"3879\":null,\"3880\":null,\"3881\":{\"created_at\":\"Thu Aug 04 08:13:35 +0000 2022\",\"id\":1555104647567777794,\"id_str\":\"1555104647567777794\",\"full_text\":\"Supporting artists\\nFreelance graphic designer and new follower\\nKING SOLOMON https:\\/\\/t.co\\/7TCDQUr8Hh\",\"truncated\":false,\"display_text_range\":[0,75],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7TCDQUr8Hh\",\"expanded_url\":\"https:\\/\\/twitter.com\\/sojisanni\\/status\\/1551151571911712768\",\"display_url\":\"twitter.com\\/sojisanni\\/stat\\u2026\",\"indices\":[76,99]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1120382208,\"id_str\":\"1120382208\",\"name\":\"Keith Boldy\",\"screen_name\":\"ktboldy\",\"location\":\"Dudley\",\"description\":\"Commission Pencil portraitArtist. specialising in people portraits & Horse portraits please use link to view my work https:\\/\\/t.co\\/F7omQjlMQJ\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/F7omQjlMQJ\",\"expanded_url\":\"https:\\/\\/photos.app.goo.gl\\/NtQbH3jr9R7qnYgP7\",\"display_url\":\"photos.app.goo.gl\\/NtQbH3jr9R7qnY\\u2026\",\"indices\":[117,140]}]}},\"protected\":false,\"followers_count\":33984,\"friends_count\":32398,\"listed_count\":0,\"created_at\":\"Fri Jan 25 22:23:51 +0000 2013\",\"favourites_count\":79072,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":80061,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1181632872916148232\\/7eVNIyib_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1181632872916148232\\/7eVNIyib_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1120382208\\/1650444047\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"477b54bb4fc386a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/477b54bb4fc386a8.json\",\"place_type\":\"city\",\"name\":\"Dudley\",\"full_name\":\"Dudley, England\",\"country_code\":\"GB\",\"country\":\"United Kingdom\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-2.191695,52.429765],[-2.057189,52.429765],[-2.057189,52.557702],[-2.191695,52.557702]]]},\"attributes\":{}},\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1551151571911712768,\"quoted_status_id_str\":\"1551151571911712768\",\"retweet_count\":0,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3882\":null,\"3883\":null,\"3884\":null,\"3885\":null,\"3886\":null,\"3887\":null,\"3888\":null,\"3889\":null,\"3890\":null,\"3891\":null,\"3892\":null,\"3893\":null,\"3894\":null,\"3895\":null,\"3896\":{\"created_at\":\"Thu Aug 04 15:17:00 +0000 2022\",\"id\":1555211204636905474,\"id_str\":\"1555211204636905474\",\"full_text\":\"Ukraine war: Russia will attack more countries - NATO warns https:\\/\\/t.co\\/V3hNVTy2S4\",\"truncated\":false,\"display_text_range\":[0,83],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V3hNVTy2S4\",\"expanded_url\":\"https:\\/\\/dailypost.ng\\/2022\\/08\\/04\\/ukraine-war-russia-will-attack-more-countries-nato-warns\\/?utm_term=Autofeed&utm_medium=Social&utm_source=Twitter#Echobox=1659626145\",\"display_url\":\"dailypost.ng\\/2022\\/08\\/04\\/ukr\\u2026\",\"indices\":[60,83]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Echobox<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":413428207,\"id_str\":\"413428207\",\"name\":\"Daily Post Nigeria\",\"screen_name\":\"DailyPostNGR\",\"location\":\"Nigeria\",\"description\":\"Get the latest Nigerian News and Features at Daily Post Newspaper - National, Politics, Entertainment, Celebrities, Metro, Sports & Opinions.\",\"url\":\"http:\\/\\/t.co\\/UtPmlOlRfa\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UtPmlOlRfa\",\"expanded_url\":\"http:\\/\\/www.dailypost.ng\\/\",\"display_url\":\"dailypost.ng\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1973651,\"friends_count\":15,\"listed_count\":1325,\"created_at\":\"Tue Nov 15 21:42:32 +0000 2011\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":569484,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1320328989441929217\\/Qgpzb-0-_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1320328989441929217\\/Qgpzb-0-_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/413428207\\/1488401285\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":7,\"favorite_count\":29,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3897\":null,\"3898\":null,\"3899\":null,\"3900\":null,\"3901\":null,\"3902\":null,\"3903\":null,\"3904\":null,\"3905\":null,\"3906\":null,\"3907\":null,\"3908\":null,\"3909\":null,\"3910\":null,\"3911\":null,\"3912\":null,\"3913\":null,\"3914\":null,\"3915\":null,\"3916\":null,\"3917\":null,\"3918\":null,\"3919\":null,\"3920\":null,\"3921\":null,\"3922\":null,\"3923\":null,\"3924\":null,\"3925\":null,\"3926\":null,\"3927\":null,\"3928\":null,\"3929\":null,\"3930\":null,\"3931\":null,\"3932\":null,\"3933\":null,\"3934\":null,\"3935\":null,\"3936\":null,\"3937\":null,\"3938\":null,\"3939\":null,\"3940\":null,\"3941\":null,\"3942\":null,\"3943\":null,\"3944\":null,\"3945\":null,\"3946\":null,\"3947\":null,\"3948\":null,\"3949\":null,\"3950\":null,\"3951\":null,\"3952\":null,\"3953\":null,\"3954\":null,\"3955\":null,\"3956\":null,\"3957\":null,\"3958\":{\"created_at\":\"Thu Aug 04 11:42:20 +0000 2022\",\"id\":1555157182743777280,\"id_str\":\"1555157182743777280\",\"full_text\":\"11 days to go \\ud83d\\udc83\\nWe are getting closer and your support is highly needed. Let's support Child Tech Education.\\nFor sponsorship, use\\nAccount Name: Rubies Technologies\\nAccount number: \\nNaira Account- 5400894525\\nDollar Account - 5400899599\\nBank: Providus bank\\nhttps:\\/\\/t.co\\/uiTXrFd4Vw https:\\/\\/t.co\\/rELEOSffxa\",\"truncated\":false,\"display_text_range\":[0,278],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/uiTXrFd4Vw\",\"expanded_url\":\"http:\\/\\/www.rubiestechnologies.org\\/ijoko\",\"display_url\":\"rubiestechnologies.org\\/ijoko\",\"indices\":[255,278]}],\"media\":[{\"id\":1555157158379102209,\"id_str\":\"1555157158379102209\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555157158379102209,\"id_str\":\"1555157158379102209\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHMisXoAEz9IY.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555157167275212803,\"id_str\":\"1555157167275212803\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHND1XgAMeAD_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHND1XgAMeAD_.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555157172253753344,\"id_str\":\"1555157172253753344\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHNWYWAAAJ3Iv.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHNWYWAAAJ3Iv.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}},{\"id\":1555157175558934529,\"id_str\":\"1555157175558934529\",\"indices\":[279,302],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZUHNisXEAEhRUD.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZUHNisXEAEhRUD.jpg\",\"url\":\"https:\\/\\/t.co\\/rELEOSffxa\",\"display_url\":\"pic.twitter.com\\/rELEOSffxa\",\"expanded_url\":\"https:\\/\\/twitter.com\\/rubiestech\\/status\\/1555157182743777280\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":875307882887229440,\"id_str\":\"875307882887229440\",\"name\":\"Rubies Technologies\",\"screen_name\":\"rubiestech\",\"location\":\"Lagos, Nigeria\",\"description\":\"Rubies Technologies is a social enterprise that empowers and inspire kids and teenagers to fall in love with programming and innovation.\",\"url\":\"https:\\/\\/t.co\\/olo8Vnt58d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/olo8Vnt58d\",\"expanded_url\":\"https:\\/\\/rubiestechnologies.org\\/\",\"display_url\":\"rubiestechnologies.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":289,\"friends_count\":54,\"listed_count\":0,\"created_at\":\"Thu Jun 15 11:03:56 +0000 2017\",\"favourites_count\":489,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":668,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1278098274256289793\\/Lh8Gxrvj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1278098274256289793\\/Lh8Gxrvj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/875307882887229440\\/1536021127\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3959\":null,\"3960\":null,\"3961\":null,\"3962\":null,\"3963\":{\"created_at\":\"Wed Aug 03 10:57:10 +0000 2022\",\"id\":1554783427471101956,\"id_str\":\"1554783427471101956\",\"full_text\":\"Congratulations @PiCoreTeam on reaching 1.5 million followers. We, the Pioneers, look forward to the future and have full confidence in @nkokkalis and the entire PCT. https:\\/\\/t.co\\/hBmLrMy9uO\",\"truncated\":false,\"display_text_range\":[0,166],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PiCoreTeam\",\"name\":\"Pi Network\",\"id\":1126232134065147904,\"id_str\":\"1126232134065147904\",\"indices\":[16,27]},{\"screen_name\":\"nkokkalis\",\"name\":\"Nicolas Kokkalis\",\"id\":16536129,\"id_str\":\"16536129\",\"indices\":[136,146]}],\"urls\":[],\"media\":[{\"id\":1554783424564432896,\"id_str\":\"1554783424564432896\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"url\":\"https:\\/\\/t.co\\/hBmLrMy9uO\",\"display_url\":\"pic.twitter.com\\/hBmLrMy9uO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNewsMedia\\/status\\/1554783427471101956\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554783424564432896,\"id_str\":\"1554783424564432896\",\"indices\":[167,190],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOzSXvUEAAD_Fz.jpg\",\"url\":\"https:\\/\\/t.co\\/hBmLrMy9uO\",\"display_url\":\"pic.twitter.com\\/hBmLrMy9uO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/PiNewsMedia\\/status\\/1554783427471101956\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":503,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":974,\"resize\":\"fit\"},\"medium\":{\"w\":720,\"h\":974,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1313548940944396288,\"id_str\":\"1313548940944396288\",\"name\":\"Pi News\",\"screen_name\":\"PiNewsMedia\",\"location\":\"Palo Alto California\",\"description\":\"@PiCoreTeam & Pi News, & Characteristics and Analysis & KYC Progress.\\n Telegram\\uff1ahttps:\\/\\/t.co\\/NdSn4OkFYp\",\"url\":\"https:\\/\\/t.co\\/1XPCaTegdL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1XPCaTegdL\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/PiNewsMedia\\/\",\"display_url\":\"facebook.com\\/PiNewsMedia\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NdSn4OkFYp\",\"expanded_url\":\"http:\\/\\/t.me\\/PiNews314\",\"display_url\":\"t.me\\/PiNews314\",\"indices\":[80,103]}]}},\"protected\":false,\"followers_count\":192493,\"friends_count\":32,\"listed_count\":92,\"created_at\":\"Tue Oct 06 18:37:40 +0000 2020\",\"favourites_count\":2096,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2291,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1546230403920367616\\/W0nfGOAI_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1546230403920367616\\/W0nfGOAI_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1313548940944396288\\/1652966076\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":427,\"favorite_count\":2344,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3964\":null,\"3965\":null,\"3966\":null,\"3967\":null,\"3968\":null,\"3969\":null,\"3970\":null,\"3971\":{\"created_at\":\"Thu Aug 04 10:05:14 +0000 2022\",\"id\":1555132746267246592,\"id_str\":\"1555132746267246592\",\"full_text\":\"While the government assured the displaced persons of its renewed commitment to having peaceful dialogue with terrorists, residents said reconciliation with the armed groups is not assurance of safety.\\nhttps:\\/\\/t.co\\/540V5tPjfr\",\"truncated\":false,\"display_text_range\":[0,225],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/540V5tPjfr\",\"expanded_url\":\"https:\\/\\/humanglemedia.com\\/amid-rising-insecurity-zamfara-govt-asks-idps-to-return-home\\/\",\"display_url\":\"humanglemedia.com\\/amid-rising-in\\u2026\",\"indices\":[202,225]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Hootsuite Inc.<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2931751387,\"id_str\":\"2931751387\",\"name\":\"HumAngle_\",\"screen_name\":\"HumAngle_\",\"location\":\"Africa\",\"description\":\"We are a media platform committed to the insightful and objective coverage of Africa\\u2019s conflict, humanitarian, and development issues.\",\"url\":\"https:\\/\\/t.co\\/DzDqQS8MC9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DzDqQS8MC9\",\"expanded_url\":\"http:\\/\\/www.humanglemedia.com\",\"display_url\":\"humanglemedia.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47207,\"friends_count\":147,\"listed_count\":208,\"created_at\":\"Tue Dec 16 02:09:58 +0000 2014\",\"favourites_count\":1042,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":17373,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1247241739062173701\\/HgkfV1qL_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1247241739062173701\\/HgkfV1qL_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2931751387\\/1647349081\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":10,\"favorite_count\":13,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"3972\":null,\"3973\":null,\"3974\":null,\"3975\":null,\"3976\":null,\"3977\":null,\"3978\":null,\"3979\":null,\"3980\":null,\"3981\":null,\"3982\":null,\"3983\":null,\"3984\":null,\"3985\":null,\"3986\":null,\"3987\":null,\"3988\":null,\"3989\":null,\"3990\":null,\"3991\":null,\"3992\":null,\"3993\":null,\"3994\":null,\"3995\":null,\"3996\":null,\"3997\":null,\"3998\":null,\"3999\":null,\"4000\":null,\"4001\":null,\"4002\":null,\"4003\":null,\"4004\":null,\"4005\":null,\"4006\":null,\"4007\":null,\"4008\":null,\"4009\":null,\"4010\":null,\"4011\":null,\"4012\":null,\"4013\":null,\"4014\":null,\"4015\":null,\"4016\":null,\"4017\":null,\"4018\":null,\"4019\":null,\"4020\":null,\"4021\":null,\"4022\":null,\"4023\":null,\"4024\":null,\"4025\":null,\"4026\":null,\"4027\":null,\"4028\":null,\"4029\":null,\"4030\":null,\"4031\":null,\"4032\":null,\"4033\":null,\"4034\":null,\"4035\":null,\"4036\":null,\"4037\":null,\"4038\":null,\"4039\":null,\"4040\":null,\"4041\":null,\"4042\":null,\"4043\":null,\"4044\":null,\"4045\":null,\"4046\":null,\"4047\":null,\"4048\":null,\"4049\":null,\"4050\":null,\"4051\":null,\"4052\":null,\"4053\":null,\"4054\":null,\"4055\":null,\"4056\":null,\"4057\":null,\"4058\":null,\"4059\":null,\"4060\":null,\"4061\":null,\"4062\":null,\"4063\":null,\"4064\":null,\"4065\":null,\"4066\":null,\"4067\":null,\"4068\":null,\"4069\":null,\"4070\":null,\"4071\":null,\"4072\":null,\"4073\":null,\"4074\":null,\"4075\":null,\"4076\":null,\"4077\":null,\"4078\":null,\"4079\":null,\"4080\":null,\"4081\":null,\"4082\":null,\"4083\":null,\"4084\":null,\"4085\":null,\"4086\":null,\"4087\":null,\"4088\":null,\"4089\":null,\"4090\":null,\"4091\":null,\"4092\":null,\"4093\":null,\"4094\":null,\"4095\":null,\"4096\":null,\"4097\":null,\"4098\":null,\"4099\":null,\"4100\":null,\"4101\":null,\"4102\":null,\"4103\":null,\"4104\":null,\"4105\":null,\"4106\":null,\"4107\":null,\"4108\":null,\"4109\":null,\"4110\":null,\"4111\":null,\"4112\":null,\"4113\":null,\"4114\":null,\"4115\":null,\"4116\":null,\"4117\":null,\"4118\":null,\"4119\":null,\"4120\":null,\"4121\":null,\"4122\":{\"created_at\":\"Thu Aug 04 05:00:48 +0000 2022\",\"id\":1555056133601124352,\"id_str\":\"1555056133601124352\",\"full_text\":\"Taiwan says will strengthen self-defence capabilities https:\\/\\/t.co\\/XMrEjd3qje https:\\/\\/t.co\\/7eMzvl4Esd\",\"truncated\":false,\"display_text_range\":[0,77],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/XMrEjd3qje\",\"expanded_url\":\"http:\\/\\/reut.rs\\/3JtpvFb\",\"display_url\":\"reut.rs\\/3JtpvFb\",\"indices\":[54,77]}],\"media\":[{\"id\":1555056130820374529,\"id_str\":\"1555056130820374529\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"url\":\"https:\\/\\/t.co\\/7eMzvl4Esd\",\"display_url\":\"pic.twitter.com\\/7eMzvl4Esd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Reuters\\/status\\/1555056133601124352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1555056130820374529,\"id_str\":\"1555056130820374529\",\"indices\":[78,101],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZSrT9tXgAEtu_F.jpg\",\"url\":\"https:\\/\\/t.co\\/7eMzvl4Esd\",\"display_url\":\"pic.twitter.com\\/7eMzvl4Esd\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Reuters\\/status\\/1555056133601124352\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"True Anthem<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1652541,\"id_str\":\"1652541\",\"name\":\"Reuters\",\"screen_name\":\"Reuters\",\"location\":\"Around the world\",\"description\":\"Top and breaking news, pictures and videos from Reuters. For more breaking business news, follow @ReutersBiz.\",\"url\":\"http:\\/\\/t.co\\/BmHxhkm3Mh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BmHxhkm3Mh\",\"expanded_url\":\"http:\\/\\/www.reuters.com\",\"display_url\":\"reuters.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25460911,\"friends_count\":1236,\"listed_count\":135289,\"created_at\":\"Tue Mar 20 17:46:05 +0000 2007\",\"favourites_count\":749,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":892864,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"444444\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1194751949821939712\\/3VBu4_Sa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1194751949821939712\\/3VBu4_Sa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1652541\\/1573687397\",\"profile_link_color\":\"006F97\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"F5F5F5\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"regular\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":39,\"favorite_count\":247,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4123\":null,\"4124\":null,\"4125\":null,\"4126\":null,\"4127\":null,\"4128\":null,\"4129\":null,\"4130\":null,\"4131\":null,\"4132\":null,\"4133\":null,\"4134\":null,\"4135\":null,\"4136\":null,\"4137\":null,\"4138\":null,\"4139\":null,\"4140\":null,\"4141\":null,\"4142\":null,\"4143\":null,\"4144\":null,\"4145\":null,\"4146\":null,\"4147\":null,\"4148\":null,\"4149\":null,\"4150\":null,\"4151\":null,\"4152\":null,\"4153\":null,\"4154\":null,\"4155\":null,\"4156\":null,\"4157\":null,\"4158\":null,\"4159\":null,\"4160\":null,\"4161\":null,\"4162\":null,\"4163\":null,\"4164\":null,\"4165\":null,\"4166\":null,\"4167\":null,\"4168\":null,\"4169\":null,\"4170\":null,\"4171\":null,\"4172\":{\"created_at\":\"Wed Aug 03 18:19:03 +0000 2022\",\"id\":1554894630889684999,\"id_str\":\"1554894630889684999\",\"full_text\":\"Marc Cucurella to Chelsea, here we go! Full agreement in place between Chelsea and Brighton for more than \\u00a350m. Levi Colwill on the verge of joining Brighton soon. \\ud83d\\udea8\\ud83d\\udd35 #CFC\\n\\nPersonal terms already agreed, no way for Man City. Cucurella will become Chelsea new signing, done. https:\\/\\/t.co\\/5Rw6CvDT1l\",\"truncated\":false,\"display_text_range\":[0,273],\"entities\":{\"hashtags\":[{\"text\":\"CFC\",\"indices\":[167,171]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554894622521958403,\"id_str\":\"1554894622521958403\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"url\":\"https:\\/\\/t.co\\/5Rw6CvDT1l\",\"display_url\":\"pic.twitter.com\\/5Rw6CvDT1l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FabrizioRomano\\/status\\/1554894630889684999\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554894622521958403,\"id_str\":\"1554894622521958403\",\"indices\":[274,297],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQYa8aWIAM-M_3.jpg\",\"url\":\"https:\\/\\/t.co\\/5Rw6CvDT1l\",\"display_url\":\"pic.twitter.com\\/5Rw6CvDT1l\",\"expanded_url\":\"https:\\/\\/twitter.com\\/FabrizioRomano\\/status\\/1554894630889684999\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":960,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1350,\"resize\":\"fit\"},\"small\":{\"w\":544,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":330262748,\"id_str\":\"330262748\",\"name\":\"Fabrizio Romano\",\"screen_name\":\"FabrizioRomano\",\"location\":\"Milano, Italia\",\"description\":\"Here we go! \\u00a9\",\"url\":\"https:\\/\\/t.co\\/Mdq8Bad5GG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Mdq8Bad5GG\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/c\\/FabrizioRomanoYT\",\"display_url\":\"m.youtube.com\\/c\\/FabrizioRoma\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10743025,\"friends_count\":2118,\"listed_count\":15003,\"created_at\":\"Wed Jul 06 10:58:55 +0000 2011\",\"favourites_count\":8908,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":18733,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1486761402853380113\\/3ifAqala_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1486761402853380113\\/3ifAqala_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/330262748\\/1635957145\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":27489,\"favorite_count\":195278,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4173\":null,\"4174\":{\"created_at\":\"Wed Aug 03 15:10:45 +0000 2022\",\"id\":1554847243164860418,\"id_str\":\"1554847243164860418\",\"full_text\":\"It doesn\\u2019t matter how much you love your car, and how much you love driving it, there are days when you feel tired after a drive. \\n \\nHere are some ways to de-stress after a long and frustrating day behind the wheel.\\n\\nclick here> https:\\/\\/t.co\\/J0S6yj0K6Z https:\\/\\/t.co\\/3IMKvcmHdG\",\"truncated\":false,\"display_text_range\":[0,255],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J0S6yj0K6Z\",\"expanded_url\":\"https:\\/\\/concept-nova.com\",\"display_url\":\"concept-nova.com\",\"indices\":[232,255]}],\"media\":[{\"id\":1554846814272192513,\"id_str\":\"1554846814272192513\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"url\":\"https:\\/\\/t.co\\/3IMKvcmHdG\",\"display_url\":\"pic.twitter.com\\/3IMKvcmHdG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concept_nova\\/status\\/1554847243164860418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554846814272192513,\"id_str\":\"1554846814272192513\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPs8IzXgAEcCrP.jpg\",\"url\":\"https:\\/\\/t.co\\/3IMKvcmHdG\",\"display_url\":\"pic.twitter.com\\/3IMKvcmHdG\",\"expanded_url\":\"https:\\/\\/twitter.com\\/concept_nova\\/status\\/1554847243164860418\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":389545315,\"id_str\":\"389545315\",\"name\":\"Concept Nova\",\"screen_name\":\"concept_nova\",\"location\":\"Nigeria\",\"description\":\"Working to meet Africa's growing tech needs while addressing risks to safety and security. \\ud83d\\udca1 | Powered by Continuous Improvement Enthusiasts\",\"url\":\"https:\\/\\/t.co\\/2B3aEhJsjz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2B3aEhJsjz\",\"expanded_url\":\"http:\\/\\/www.concept-nova.com\",\"display_url\":\"concept-nova.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10031,\"friends_count\":42,\"listed_count\":8,\"created_at\":\"Wed Oct 12 16:11:25 +0000 2011\",\"favourites_count\":216,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3846,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1217092176594817028\\/Ht-rmw2c_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1217092176594817028\\/Ht-rmw2c_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/389545315\\/1649267667\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":2,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4175\":null,\"4176\":null,\"4177\":null,\"4178\":null,\"4179\":null,\"4180\":null,\"4181\":null,\"4182\":null,\"4183\":null,\"4184\":null,\"4185\":null,\"4186\":null,\"4187\":null,\"4188\":null,\"4189\":null,\"4190\":null,\"4191\":null,\"4192\":null,\"4193\":null,\"4194\":null,\"4195\":null,\"4196\":null,\"4197\":null,\"4198\":null,\"4199\":null,\"4200\":null,\"4201\":null,\"4202\":null,\"4203\":null,\"4204\":null,\"4205\":null,\"4206\":null,\"4207\":{\"created_at\":\"Wed Aug 03 17:21:15 +0000 2022\",\"id\":1554880088109453314,\"id_str\":\"1554880088109453314\",\"full_text\":\"Saw this on my CL I felt so sad, knowing fully well that I can\\u2019t do it all alone, I feel I should post it here, if it\\u2019s right to do so, I don\\u2019t know but seeing a young guy go through this is so terrifying https:\\/\\/t.co\\/Tn56lsS8ee\",\"truncated\":false,\"display_text_range\":[0,204],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554880072934428674,\"id_str\":\"1554880072934428674\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"url\":\"https:\\/\\/t.co\\/Tn56lsS8ee\",\"display_url\":\"pic.twitter.com\\/Tn56lsS8ee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Meekzainny\\/status\\/1554880088109453314\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1034,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":606,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":343,\"h\":680,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554880072934428674,\"id_str\":\"1554880072934428674\",\"indices\":[205,228],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQLMC-XEAIqxd4.jpg\",\"url\":\"https:\\/\\/t.co\\/Tn56lsS8ee\",\"display_url\":\"pic.twitter.com\\/Tn56lsS8ee\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Meekzainny\\/status\\/1554880088109453314\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1034,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":606,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":343,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1106139226259771394,\"id_str\":\"1106139226259771394\",\"name\":\"\\ud83d\\ude18 meek_meek\\ud83d\\ude19\",\"screen_name\":\"Meekzainny\",\"location\":\"Lagos, Nigeria\",\"description\":\"(entrepreneur) crypto trader, iPhone seller..dah girl with the baby look\\ud83d\\ude18 Always optimistic Ambitious baby\\ud83d\\udcaa\\ud83d\\udcaa\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1247,\"friends_count\":1321,\"listed_count\":5,\"created_at\":\"Thu Mar 14 10:25:17 +0000 2019\",\"favourites_count\":7617,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1435,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1449445317976416262\\/1lLb8Y3r_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1449445317976416262\\/1lLb8Y3r_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1106139226259771394\\/1587548509\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4208\":null,\"4209\":null,\"4210\":null,\"4211\":null,\"4212\":null,\"4213\":null,\"4214\":null,\"4215\":null,\"4216\":null,\"4217\":null,\"4218\":null,\"4219\":null,\"4220\":null,\"4221\":null,\"4222\":null,\"4223\":null,\"4224\":null,\"4225\":null,\"4226\":null,\"4227\":null,\"4228\":{\"created_at\":\"Wed Aug 03 17:08:00 +0000 2022\",\"id\":1554876749888069632,\"id_str\":\"1554876749888069632\",\"full_text\":\"2022 Toyota Landcruiser V8.\\n\\nThese are the vehicles that Buhari has bought for Niger Republic \\\"to fight insecurity.\\\"\\n\\nWell.. https:\\/\\/t.co\\/5JzA3gRyfz\",\"truncated\":false,\"display_text_range\":[0,124],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554876730929815553,\"id_str\":\"1554876730929815553\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554876730929815553,\"id_str\":\"1554876730929815553\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIJhCXoAEOe8h.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"large\":{\"w\":1000,\"h\":750,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":510,\"resize\":\"fit\"}}},{\"id\":1554876736415956995,\"id_str\":\"1554876736415956995\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIJ1eXgAMI6S8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIJ1eXgAMI6S8.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":711,\"h\":399,\"resize\":\"fit\"},\"medium\":{\"w\":711,\"h\":399,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":382,\"resize\":\"fit\"}}},{\"id\":1554876741243502595,\"id_str\":\"1554876741243502595\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIKHdWAAM4a7p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIKHdWAAM4a7p.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":680,\"h\":486,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"},\"large\":{\"w\":1023,\"h\":731,\"resize\":\"fit\"}}},{\"id\":1554876747031744518,\"id_str\":\"1554876747031744518\",\"indices\":[125,148],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZQIKdBXkAY_W7y.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZQIKdBXkAY_W7y.jpg\",\"url\":\"https:\\/\\/t.co\\/5JzA3gRyfz\",\"display_url\":\"pic.twitter.com\\/5JzA3gRyfz\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554876749888069632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":480,\"h\":294,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":294,\"resize\":\"fit\"},\"small\":{\"w\":480,\"h\":294,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3315017925,\"id_str\":\"3315017925\",\"name\":\"David Hundeyin\",\"screen_name\":\"DavidHundeyin\",\"location\":\"EMEA\",\"description\":\"Founder @WestAfricaWeek. Purveyor of words @BusinessDayNG. Retired hurricane. 2020 People Journalism Prize for Africa winner.\",\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"expanded_url\":\"https:\\/\\/davidhundeyin.com\",\"display_url\":\"davidhundeyin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":430611,\"friends_count\":2289,\"listed_count\":517,\"created_at\":\"Tue Jun 09 14:26:32 +0000 2015\",\"favourites_count\":88533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3315017925\\/1624235090\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":11648,\"favorite_count\":22232,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4229\":{\"created_at\":\"Tue Aug 02 05:49:20 +0000 2022\",\"id\":1554343569783152640,\"id_str\":\"1554343569783152640\",\"full_text\":\"Today\\u2019s Deal \\ud83d\\udcaf \\ud83d\\udd25 \\nAcer Aspire Laptop\\n\\u2022 4GB RAM\\n\\u2022 320GB HDD\\n\\u2022 Intel Core 2 Duo\\n\\u2022 15.6\\u201d HD Display\\n\\u2022 Windows 10 Pro\\n\\u2022 Webcam\\n\\u2022 Bluetooth\\n\\u2022 USB\\n\\u2022 VGA\\n\\u2022 HDMI\\n\\nPrice : #85,000\\n\\nCarter Efe Wizkid | Go and Verify Afghanistan God Abeg Phyna Khalid Igbo Deji #BBNajia #Ukraine https:\\/\\/t.co\\/2T4LWmLPQZ\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[250,258]},{\"text\":\"Ukraine\",\"indices\":[259,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554343508932268032,\"id_str\":\"1554343508932268032\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508928069632,\"id_str\":\"1554343508928069632\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508944850945,\"id_str\":\"1554343508944850945\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":7,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4230\":null,\"4231\":null,\"4232\":null,\"4233\":null,\"4234\":null,\"4235\":null,\"4236\":{\"created_at\":\"Wed Aug 03 09:47:29 +0000 2022\",\"id\":1554765892931801088,\"id_str\":\"1554765892931801088\",\"full_text\":\"#Gbpusd\\n\\nA short sell on our GBPUSD pair,\\n\\nSl: 1.22164\\n\\nTp: 1.21003\\n#China #cryptomarket #NFTs #TradeDeadline #trade #stocks #Signal\\u4ee4\\u548c\\u30c7\\u30d3\\u30e5\\u30fc https:\\/\\/t.co\\/mzgzX2rwx3 https:\\/\\/t.co\\/9AzSoRYkwL\",\"truncated\":false,\"display_text_range\":[0,162],\"entities\":{\"hashtags\":[{\"text\":\"Gbpusd\",\"indices\":[0,7]},{\"text\":\"China\",\"indices\":[68,74]},{\"text\":\"cryptomarket\",\"indices\":[75,88]},{\"text\":\"NFTs\",\"indices\":[89,94]},{\"text\":\"TradeDeadline\",\"indices\":[95,109]},{\"text\":\"trade\",\"indices\":[110,116]},{\"text\":\"stocks\",\"indices\":[117,124]},{\"text\":\"Signal\\u4ee4\\u548c\\u30c7\\u30d3\\u30e5\\u30fc\",\"indices\":[125,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mzgzX2rwx3\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553839847051333638\",\"display_url\":\"twitter.com\\/drickempire\\/st\\u2026\",\"indices\":[139,162]}],\"media\":[{\"id\":1554764837774843905,\"id_str\":\"1554764837774843905\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"url\":\"https:\\/\\/t.co\\/9AzSoRYkwL\",\"display_url\":\"pic.twitter.com\\/9AzSoRYkwL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554765892931801088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":432,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554764837774843905,\"id_str\":\"1554764837774843905\",\"indices\":[163,186],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZOiYejWYAEEGcM.jpg\",\"url\":\"https:\\/\\/t.co\\/9AzSoRYkwL\",\"display_url\":\"pic.twitter.com\\/9AzSoRYkwL\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1554765892931801088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":940,\"h\":597,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":432,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6920,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":true,\"quoted_status_id\":1553839847051333638,\"quoted_status_id_str\":\"1553839847051333638\",\"retweet_count\":1,\"favorite_count\":3,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4237\":null,\"4238\":null,\"4239\":null,\"4240\":null,\"4241\":null,\"4242\":null,\"4243\":null,\"4244\":null,\"4245\":null,\"4246\":null,\"4247\":null,\"4248\":null,\"4249\":null,\"4250\":null,\"4251\":null,\"4252\":null,\"4253\":null,\"4254\":null,\"4255\":null,\"4256\":null,\"4257\":null,\"4258\":null,\"4259\":null,\"4260\":null,\"4261\":null,\"4262\":null,\"4263\":null,\"4264\":null,\"4265\":null,\"4266\":null,\"4267\":{\"created_at\":\"Wed Aug 03 15:39:21 +0000 2022\",\"id\":1554854442897473539,\"id_str\":\"1554854442897473539\",\"full_text\":\"FG Confirms Purchase of N1.4 billion Worth Of Vehicles For Niger Republic\\nhttps:\\/\\/t.co\\/zf4Ym4j2Qi https:\\/\\/t.co\\/bFxbXhrhPn\",\"truncated\":false,\"display_text_range\":[0,97],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zf4Ym4j2Qi\",\"expanded_url\":\"https:\\/\\/www.channelstv.com\\/2022\\/08\\/03\\/fg-confirms-purchase-of-n1-4-billion-worth-of-vehicles-for-niger-republic\\/\",\"display_url\":\"channelstv.com\\/2022\\/08\\/03\\/fg-\\u2026\",\"indices\":[74,97]}],\"media\":[{\"id\":1554854432189341698,\"id_str\":\"1554854432189341698\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"url\":\"https:\\/\\/t.co\\/bFxbXhrhPn\",\"display_url\":\"pic.twitter.com\\/bFxbXhrhPn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554854442897473539\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554854432189341698,\"id_str\":\"1554854432189341698\",\"indices\":[98,121],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZPz3jwWYAI7sy9.png\",\"url\":\"https:\\/\\/t.co\\/bFxbXhrhPn\",\"display_url\":\"pic.twitter.com\\/bFxbXhrhPn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/channelstv\\/status\\/1554854442897473539\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"large\":{\"w\":650,\"h\":350,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":650,\"h\":350,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":125346858,\"id_str\":\"125346858\",\"name\":\"Channels Television\",\"screen_name\":\"channelstv\",\"location\":\"Nigeria\",\"description\":\"Channels Television is the fourteenth-time winner of the 'Best TV station in Nigeria award' and the most awarded television station in Africa.\",\"url\":\"https:\\/\\/t.co\\/8UPmxt8H3Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8UPmxt8H3Y\",\"expanded_url\":\"https:\\/\\/www.channelstv.com\",\"display_url\":\"channelstv.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5732916,\"friends_count\":194,\"listed_count\":3627,\"created_at\":\"Mon Mar 22 14:29:10 +0000 2010\",\"favourites_count\":4780,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":166185,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1215259797014171657\\/m3TD2Je5_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1215259797014171657\\/m3TD2Je5_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/125346858\\/1642423337\",\"profile_link_color\":\"00009C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3318,\"favorite_count\":5584,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4268\":null,\"4269\":null,\"4270\":null,\"4271\":null,\"4272\":null,\"4273\":{\"created_at\":\"Mon Aug 01 15:08:16 +0000 2022\",\"id\":1554121845577752577,\"id_str\":\"1554121845577752577\",\"full_text\":\"I just have three rules for my room:\\n\\n1..... Take your shoes at my door.\\n2.... Dust your foot before getting on my bed.\\n3..... Leave my room the way you met it.\\n\\nRespect these rules and we\\u2019re good\\u270c\\ud83c\\udffd\",\"truncated\":false,\"display_text_range\":[0,199],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1537482624591089665,\"id_str\":\"1537482624591089665\",\"name\":\"Man_SeGii\\ud83d\\udc09\",\"screen_name\":\"VaakaSegii\",\"location\":\"Go ask your daddy!\",\"description\":\"MUFC\\u2764\\ufe0f\\ud83e\\udd0d|| \\ud83c\\uddf3\\ud83c\\uddec\\ud83d\\udc09|| Just your average boy\\ud83e\\udd71|| woo go and ask your daddy\\ud83d\\udeae|| if you want to know me, don\\u2019t bother\\ud83d\\ude44..... Post malone fan since White Iverson\\u2728\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":667,\"friends_count\":1340,\"listed_count\":0,\"created_at\":\"Thu Jun 16 17:10:14 +0000 2022\",\"favourites_count\":5788,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5798,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1552393505439358977\\/0Jr27_uC_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1552393505439358977\\/0Jr27_uC_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1537482624591089665\\/1657478652\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":43,\"favorite_count\":229,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"4274\":{\"created_at\":\"Wed Aug 03 05:45:24 +0000 2022\",\"id\":1554704968506085377,\"id_str\":\"1554704968506085377\",\"full_text\":\"Chelsea make 'formal \\u00a350m transfer offer' for Brighton star Marc Cucurella #ChelseaFC https:\\/\\/t.co\\/yu5NQSIkp8\",\"truncated\":false,\"display_text_range\":[0,109],\"entities\":{\"hashtags\":[{\"text\":\"ChelseaFC\",\"indices\":[75,85]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/yu5NQSIkp8\",\"expanded_url\":\"https:\\/\\/www.thesun.co.uk\\/sport\\/19402375\\/chelsea-transfer-offer-brighton-marc-cucurella\\/?utm_term=Autofeed&utm_campaign=sunsportchelseatwitter&utm_medium=Social&utm_source=Twitter#Echobox=1659505417\",\"display_url\":\"thesun.co.uk\\/sport\\/19402375\\u2026\",\"indices\":[86,109]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Echobox<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":61775718,\"id_str\":\"61775718\",\"name\":\"The Sun - Chelsea\",\"screen_name\":\"SunChelsea\",\"location\":\"\",\"description\":\"Follow all the latest news on Chelsea with The Sun @TheSunFootball @SunSport\\nhttps:\\/\\/t.co\\/wLaPNS5UmA\",\"url\":\"https:\\/\\/t.co\\/wLaPNS5UmA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLaPNS5UmA\",\"expanded_url\":\"https:\\/\\/t.me\\/ChelseaSunSport\",\"display_url\":\"t.me\\/ChelseaSunSport\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wLaPNS5UmA\",\"expanded_url\":\"https:\\/\\/t.me\\/ChelseaSunSport\",\"display_url\":\"t.me\\/ChelseaSunSport\",\"indices\":[77,100]}]}},\"protected\":false,\"followers_count\":77520,\"friends_count\":6,\"listed_count\":410,\"created_at\":\"Fri Jul 31 13:55:46 +0000 2009\",\"favourites_count\":21,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":25811,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/766320068099772416\\/hlPZV2jO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/766320068099772416\\/hlPZV2jO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/61775718\\/1375294484\",\"profile_link_color\":\"00745F\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"CFCFCF\",\"profile_text_color\":\"0A000A\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":53,\"favorite_count\":1072,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4275\":null,\"4276\":null,\"4277\":null,\"4278\":null,\"4279\":null,\"4280\":null,\"4281\":null,\"4282\":null,\"4283\":null,\"4284\":{\"created_at\":\"Wed Aug 03 14:51:10 +0000 2022\",\"id\":1554842317974310914,\"id_str\":\"1554842317974310914\",\"full_text\":\"We know say you wan give malaria better wahala, Lyntemin na the ogbenga solution. Wetin you still dey wait for? Make you Call\\/ WhatsApp 07031710880 if you wan buy am quick quick!\\n\\nLYNTEMIN\\n#malaria #malariagenomics #saynotomalaria #healthy #Health #Nigeria #Africa https:\\/\\/t.co\\/YBMVMG8lWx\",\"truncated\":false,\"display_text_range\":[0,264],\"entities\":{\"hashtags\":[{\"text\":\"malaria\",\"indices\":[189,197]},{\"text\":\"malariagenomics\",\"indices\":[198,214]},{\"text\":\"saynotomalaria\",\"indices\":[215,230]},{\"text\":\"healthy\",\"indices\":[231,239]},{\"text\":\"Health\",\"indices\":[240,247]},{\"text\":\"Nigeria\",\"indices\":[248,256]},{\"text\":\"Africa\",\"indices\":[257,264]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554840299268079616,\"id_str\":\"1554840299268079616\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"url\":\"https:\\/\\/t.co\\/YBMVMG8lWx\",\"display_url\":\"pic.twitter.com\\/YBMVMG8lWx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lynedgepharma\\/status\\/1554842317974310914\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":624,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554840299268079616,\"id_str\":\"1554840299268079616\",\"indices\":[265,288],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554840299268079616\\/pu\\/img\\/RkeIbkoo3q67OZox.jpg\",\"url\":\"https:\\/\\/t.co\\/YBMVMG8lWx\",\"display_url\":\"pic.twitter.com\\/YBMVMG8lWx\",\"expanded_url\":\"https:\\/\\/twitter.com\\/lynedgepharma\\/status\\/1554842317974310914\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"large\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":640,\"h\":624,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":624,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[40,39],\"duration_millis\":32671,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/vid\\/640x624\\/vIPxFv_U81iqKKtq.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/pl\\/LWV6tYABUAEHKDXA.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/vid\\/276x270\\/P-cQ6_sp4ZoX-xOZ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554840299268079616\\/pu\\/vid\\/368x360\\/plnqNuQpbqyUoFss.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1178650260282970112,\"id_str\":\"1178650260282970112\",\"name\":\"Lynedgepharma\",\"screen_name\":\"lynedgepharma\",\"location\":\"Lagos, Nigeria\",\"description\":\"Our objective is to provide quality pharmaceuticals products.\\n\\u25aaAntibiotics\\u25aaAntiMalarial \\u25aaErectile Dysfunction \\u25aaAnti-inflammatory \\u25aaSkin preparation etc\",\"url\":\"https:\\/\\/t.co\\/0paeR0LWlj\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0paeR0LWlj\",\"expanded_url\":\"http:\\/\\/www.lynedge.com\",\"display_url\":\"lynedge.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1026,\"friends_count\":1920,\"listed_count\":0,\"created_at\":\"Mon Sep 30 12:38:33 +0000 2019\",\"favourites_count\":129,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":221,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483405441065488385\\/bbqyOwdV_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483405441065488385\\/bbqyOwdV_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1178650260282970112\\/1591018540\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":5,\"favorite_count\":5,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4285\":null,\"4286\":null,\"4287\":null,\"4288\":null,\"4289\":null,\"4290\":null,\"4291\":null,\"4292\":null,\"4293\":null,\"4294\":null,\"4295\":null,\"4296\":null,\"4297\":null,\"4298\":null,\"4299\":null,\"4300\":null,\"4301\":null,\"4302\":null,\"4303\":null,\"4304\":null,\"4305\":null,\"4306\":null,\"4307\":null,\"4308\":null,\"4309\":null,\"4310\":null,\"4311\":null,\"4312\":null,\"4313\":null,\"4314\":null,\"4315\":null,\"4316\":null,\"4317\":null,\"4318\":null,\"4319\":null,\"4320\":null,\"4321\":null,\"4322\":null,\"4323\":null,\"4324\":null,\"4325\":null,\"4326\":null,\"4327\":null,\"4328\":null,\"4329\":null,\"4330\":null,\"4331\":null,\"4332\":null,\"4333\":null,\"4334\":null,\"4335\":null,\"4336\":null,\"4337\":null,\"4338\":null,\"4339\":null,\"4340\":null,\"4341\":null,\"4342\":null,\"4343\":null,\"4344\":null,\"4345\":null,\"4346\":null,\"4347\":null,\"4348\":null,\"4349\":null,\"4350\":null,\"4351\":null,\"4352\":null,\"4353\":null,\"4354\":null,\"4355\":null,\"4356\":null,\"4357\":null,\"4358\":null,\"4359\":null,\"4360\":null,\"4361\":null,\"4362\":null,\"4363\":null,\"4364\":null,\"4365\":null,\"4366\":null,\"4367\":null,\"4368\":null,\"4369\":null,\"4370\":null,\"4371\":null,\"4372\":null,\"4373\":null,\"4374\":null,\"4375\":null,\"4376\":null,\"4377\":null,\"4378\":null,\"4379\":null,\"4380\":null,\"4381\":null,\"4382\":null,\"4383\":null,\"4384\":null,\"4385\":null,\"4386\":null,\"4387\":null,\"4388\":null,\"4389\":{\"created_at\":\"Wed Aug 03 12:23:29 +0000 2022\",\"id\":1554805150509944835,\"id_str\":\"1554805150509944835\",\"full_text\":\"Iphone 14 unbox \\nWhat do you think? Drop a comment below\\nWe are the best gadget \\ud83d\\udd0c \\n08087254674\\n\\nJackie Chan Mama Dolaz ASUU Nnamdi Kanu Tinubu David Hundeyin Taiwan Sam Omatseye Racism Ronaldo Osimhen Arise TV Jaruma Witcher Ibadan Dubai IPOB Big Ivy Kante #XiJinping https:\\/\\/t.co\\/GMKUgiJkav\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[{\"text\":\"XiJinping\",\"indices\":[257,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554805028849946630,\"id_str\":\"1554805028849946630\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554805028849946630\\/pu\\/img\\/Pl8X_mp3rohm6lX2.jpg\",\"url\":\"https:\\/\\/t.co\\/GMKUgiJkav\",\"display_url\":\"pic.twitter.com\\/GMKUgiJkav\",\"expanded_url\":\"https:\\/\\/twitter.com\\/YOUNGPGTECH\\/status\\/1554805150509944835\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":11580,\"variants\":[{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/320x568\\/ZOQ-_UIIaGkU9o8N.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/720x1280\\/8tBG1Zpu4V46u-8y.mp4?tag=12\"},{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/vid\\/480x852\\/Lk8d_qAHDxCa5cZv.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554805028849946630\\/pu\\/pl\\/vIu2QsjZeRzHb8P0.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1015401853243351041,\"id_str\":\"1015401853243351041\",\"name\":\"Young Premium Gadget Technologies\",\"screen_name\":\"YOUNGPGTECH\",\"location\":\"Nigeria\",\"description\":\"LAPTOPS | PHONES | GADGETS \\ud83d\\udc49IT SOLUTION\\ud83d\\udc49NETWORKING\\ud83d\\udc49payment on DELIVERY 4 oshitelu str, amazing grace plaza comp.village ikeja. BN:2635661 08087254674\",\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZBBceISibo\",\"expanded_url\":\"https:\\/\\/linktr.ee\\/yongpgtech\",\"display_url\":\"linktr.ee\\/yongpgtech\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":676,\"friends_count\":673,\"listed_count\":0,\"created_at\":\"Sat Jul 07 01:07:21 +0000 2018\",\"favourites_count\":363,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":814,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1516093369478438912\\/iNmEiTOk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1015401853243351041\\/1648044960\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":6,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4390\":null,\"4391\":null,\"4392\":null,\"4393\":{\"created_at\":\"Tue Aug 02 11:00:13 +0000 2022\",\"id\":1554421806710358016,\"id_str\":\"1554421806710358016\",\"full_text\":\"\\ud83d\\udce3 #Chevening Scholarship applications are open!\\n\\nStudy in the UK to expand your network and learn vital skills before returning home to achieve your goals and create positive change. Good luck!\\n\\nFind out more at: \\nhttps:\\/\\/t.co\\/S3YXCNR9eK\\n\\n#MyCheveningJourney https:\\/\\/t.co\\/FcoOpGZiW1\",\"truncated\":false,\"display_text_range\":[0,258],\"entities\":{\"hashtags\":[{\"text\":\"Chevening\",\"indices\":[2,12]},{\"text\":\"MyCheveningJourney\",\"indices\":[239,258]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/S3YXCNR9eK\",\"expanded_url\":\"http:\\/\\/chevening.org\\/scholarships\",\"display_url\":\"chevening.org\\/scholarships\",\"indices\":[214,237]}],\"media\":[{\"id\":1554421803396775936,\"id_str\":\"1554421803396775936\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"url\":\"https:\\/\\/t.co\\/FcoOpGZiW1\",\"display_url\":\"pic.twitter.com\\/FcoOpGZiW1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1081,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554421803396775936,\"id_str\":\"1554421803396775936\",\"indices\":[259,282],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJqZP6WQAA-UtZ.jpg\",\"url\":\"https:\\/\\/t.co\\/FcoOpGZiW1\",\"display_url\":\"pic.twitter.com\\/FcoOpGZiW1\",\"expanded_url\":\"https:\\/\\/twitter.com\\/CheveningFCDO\\/status\\/1554421806710358016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":676,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"},\"large\":{\"w\":1920,\"h\":1081,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Sprout Social<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":71529987,\"id_str\":\"71529987\",\"name\":\"Chevening Awards\\ud83c\\uddec\\ud83c\\udde7\",\"screen_name\":\"CheveningFCDO\",\"location\":\"London\",\"description\":\"Twitter account of the @FCDOgovUK's Chevening Awards programme, which develops future leaders by offering scholarships and fellowships to study in the UK.\",\"url\":\"https:\\/\\/t.co\\/PPQaozmccJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PPQaozmccJ\",\"expanded_url\":\"http:\\/\\/www.chevening.org\",\"display_url\":\"chevening.org\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128670,\"friends_count\":5782,\"listed_count\":446,\"created_at\":\"Fri Sep 04 13:08:21 +0000 2009\",\"favourites_count\":7436,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":9244,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"003F72\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1196394046589153280\\/uyAO5wX7_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1196394046589153280\\/uyAO5wX7_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/71529987\\/1654527470\",\"profile_link_color\":\"84A2BD\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EBEBEB\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":901,\"favorite_count\":1394,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4394\":null,\"4395\":null,\"4396\":null,\"4397\":null,\"4398\":null,\"4399\":null,\"4400\":null,\"4401\":null,\"4402\":null,\"4403\":null,\"4404\":null,\"4405\":null,\"4406\":null,\"4407\":null,\"4408\":null,\"4409\":null,\"4410\":null,\"4411\":null,\"4412\":null,\"4413\":null,\"4414\":null,\"4415\":null,\"4416\":null,\"4417\":null,\"4418\":null,\"4419\":null,\"4420\":null,\"4421\":null,\"4422\":null,\"4423\":null,\"4424\":null,\"4425\":null,\"4426\":null,\"4427\":null,\"4428\":null,\"4429\":{\"created_at\":\"Sun Jul 31 09:02:49 +0000 2022\",\"id\":1553667488369500161,\"id_str\":\"1553667488369500161\",\"full_text\":\"#BTC \\n\\nDaily analysis on Bitcoin. \\n* Expecting a retracting bear \\ud83d\\udc3b drop to $22,547 price zone.\\n\\nBefore a huge bull \\ud83d\\udc02 take over is seen as price should hit the $28k price \\u2705\\n\\n#Crypto #NFTs #trading #stocks #forex #sundayvibes https:\\/\\/t.co\\/MouHCoWYgC\",\"truncated\":false,\"display_text_range\":[0,223],\"entities\":{\"hashtags\":[{\"text\":\"BTC\",\"indices\":[0,4]},{\"text\":\"Crypto\",\"indices\":[173,180]},{\"text\":\"NFTs\",\"indices\":[181,186]},{\"text\":\"trading\",\"indices\":[187,195]},{\"text\":\"stocks\",\"indices\":[196,203]},{\"text\":\"forex\",\"indices\":[204,210]},{\"text\":\"sundayvibes\",\"indices\":[211,223]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553667482900119553,\"id_str\":\"1553667482900119553\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"url\":\"https:\\/\\/t.co\\/MouHCoWYgC\",\"display_url\":\"pic.twitter.com\\/MouHCoWYgC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553667488369500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553667482900119553,\"id_str\":\"1553667482900119553\",\"indices\":[224,247],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FY-8WBFWQAEGirO.jpg\",\"url\":\"https:\\/\\/t.co\\/MouHCoWYgC\",\"display_url\":\"pic.twitter.com\\/MouHCoWYgC\",\"expanded_url\":\"https:\\/\\/twitter.com\\/drickempire\\/status\\/1553667488369500161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":940,\"h\":540,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":391,\"resize\":\"fit\"},\"large\":{\"w\":940,\"h\":540,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1239051877414813696,\"id_str\":\"1239051877414813696\",\"name\":\"Mr D\",\"screen_name\":\"drickempire\",\"location\":\"Uyo, Akwa Ibom State.\",\"description\":\"\\ud83d\\udcc8Trade Analyst\\n\\ud83d\\udcca Signal Trader\\nFounder _ Drick fx\\nhttps:\\/\\/t.co\\/5HnC8teVBz\\n\\ud83d\\udcd6\\\\\\\\ Writer\\nFx mentor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/5HnC8teVBz\",\"expanded_url\":\"https:\\/\\/t.me\\/drickfreesignalpp\",\"display_url\":\"t.me\\/drickfreesigna\\u2026\",\"indices\":[50,73]}]}},\"protected\":false,\"followers_count\":130,\"friends_count\":17,\"listed_count\":2,\"created_at\":\"Sun Mar 15 04:53:00 +0000 2020\",\"favourites_count\":6920,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1458,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1483458724761120781\\/1Z2iY8Nf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1239051877414813696\\/1601993441\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":2,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4430\":null,\"4431\":null,\"4432\":null,\"4433\":null,\"4434\":null,\"4435\":null,\"4436\":null,\"4437\":null,\"4438\":null,\"4439\":null,\"4440\":null,\"4441\":null,\"4442\":null,\"4443\":null,\"4444\":null,\"4445\":null,\"4446\":null,\"4447\":null,\"4448\":null,\"4449\":null,\"4450\":{\"created_at\":\"Tue Aug 02 11:59:38 +0000 2022\",\"id\":1554436761706700802,\"id_str\":\"1554436761706700802\",\"full_text\":\"Are you having your wedding on a budget?\\nSo your souvenirs can also be on a budget \\n\\n20k pay 18k\\n50k pay 45k\\n100k pay 90k\\n200k pay 180k\\n#Taiwan #Pelosi #BambamSorry #helicopter #BBNaija #Bitcoin https:\\/\\/t.co\\/lRxScnQBrj\",\"truncated\":false,\"display_text_range\":[0,194],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[136,143]},{\"text\":\"Pelosi\",\"indices\":[144,151]},{\"text\":\"BambamSorry\",\"indices\":[152,164]},{\"text\":\"helicopter\",\"indices\":[165,176]},{\"text\":\"BBNaija\",\"indices\":[177,185]},{\"text\":\"Bitcoin\",\"indices\":[186,194]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554436515639578630,\"id_str\":\"1554436515639578630\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1800,\"h\":1800,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554436515639578630,\"id_str\":\"1554436515639578630\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ3xnSX0AY_1Rh.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1800,\"h\":1800,\"resize\":\"fit\"}}},{\"id\":1554436595184537601,\"id_str\":\"1554436595184537601\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ32PnXkAEOL4q.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ32PnXkAEOL4q.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554436639446933504,\"id_str\":\"1554436639446933504\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ340gWIAAvhmh.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ340gWIAAvhmh.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554436701640183808,\"id_str\":\"1554436701640183808\",\"indices\":[195,218],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZJ38cMX0AA9yDz.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZJ38cMX0AA9yDz.jpg\",\"url\":\"https:\\/\\/t.co\\/lRxScnQBrj\",\"display_url\":\"pic.twitter.com\\/lRxScnQBrj\",\"expanded_url\":\"https:\\/\\/twitter.com\\/loyins_onibag\\/status\\/1554436761706700802\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1490776918626648064,\"id_str\":\"1490776918626648064\",\"name\":\"Adedoyin Adebisi\",\"screen_name\":\"loyins_onibag\",\"location\":\"\",\"description\":\"\\ud83d\\udc49\\ud83c\\udffd100% African\\n\\ud83d\\udc49\\ud83c\\udffdHandmade bags and accessories\\n\\ud83d\\udc49\\ud83c\\udffdRetail | Wholesale | Custom Labels\\nPart of our profits goes to school bags @eranthis_foundation\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":30,\"friends_count\":60,\"listed_count\":0,\"created_at\":\"Mon Feb 07 19:58:21 +0000 2022\",\"favourites_count\":318,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":78,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490777218955587585\\/v4jxOvMk_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490777218955587585\\/v4jxOvMk_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1490776918626648064\\/1654524784\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":4,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4451\":null,\"4452\":null,\"4453\":null,\"4454\":null,\"4455\":null,\"4456\":null,\"4457\":null,\"4458\":null,\"4459\":null,\"4460\":null,\"4461\":null,\"4462\":null,\"4463\":null,\"4464\":null,\"4465\":null,\"4466\":null,\"4467\":null,\"4468\":null,\"4469\":null,\"4470\":null,\"4471\":null,\"4472\":null,\"4473\":null,\"4474\":null,\"4475\":null,\"4476\":null,\"4477\":null,\"4478\":null,\"4479\":null,\"4480\":null,\"4481\":null,\"4482\":null,\"4483\":null,\"4484\":null,\"4485\":null,\"4486\":null,\"4487\":null,\"4488\":null,\"4489\":null,\"4490\":null,\"4491\":null,\"4492\":null,\"4493\":null,\"4494\":null,\"4495\":null,\"4496\":null,\"4497\":null,\"4498\":null,\"4499\":null,\"4500\":null,\"4501\":null,\"4502\":null,\"4503\":null,\"4504\":null,\"4505\":null,\"4506\":null,\"4507\":null,\"4508\":null,\"4509\":{\"created_at\":\"Wed Aug 03 08:10:19 +0000 2022\",\"id\":1554741440797884416,\"id_str\":\"1554741440797884416\",\"full_text\":\"Why Nigeria\\u2019s only surviving barter market may soon go\\u00a0extinct https:\\/\\/t.co\\/cpmUXMDmQw\",\"truncated\":false,\"display_text_range\":[0,86],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cpmUXMDmQw\",\"expanded_url\":\"https:\\/\\/guardpost.ng\\/why-nigerias-only-surviving-barter-market-may-soon-go-extinct\\/\",\"display_url\":\"guardpost.ng\\/why-nigerias-o\\u2026\",\"indices\":[63,86]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"WordPress.com<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1526171772646719489,\"id_str\":\"1526171772646719489\",\"name\":\"Guardpost.ng\",\"screen_name\":\"GuardpostNg\",\"location\":\"Nigeria\",\"description\":\"A first rate investigative and advocacy journalism organisation led by multiple award-wining journalists with a mission to provide journalism at its best.\",\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"expanded_url\":\"http:\\/\\/www.guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Mon May 16 12:05:21 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526171772646719489\\/1655326290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4510\":null,\"4511\":{\"created_at\":\"Tue Aug 02 19:26:23 +0000 2022\",\"id\":1554549189392027648,\"id_str\":\"1554549189392027648\",\"full_text\":\"Unbelievable story of Calabar\\u2019s open\\u00a0defecation https:\\/\\/t.co\\/QOchg44Sc4\",\"truncated\":false,\"display_text_range\":[0,71],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/QOchg44Sc4\",\"expanded_url\":\"https:\\/\\/guardpost.ng\\/unbelievable-story-of-calabars-open-defecation\\/\",\"display_url\":\"guardpost.ng\\/unbelievable-s\\u2026\",\"indices\":[48,71]}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"WordPress.com<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1526171772646719489,\"id_str\":\"1526171772646719489\",\"name\":\"Guardpost.ng\",\"screen_name\":\"GuardpostNg\",\"location\":\"Nigeria\",\"description\":\"A first rate investigative and advocacy journalism organisation led by multiple award-wining journalists with a mission to provide journalism at its best.\",\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9juG8P9qCA\",\"expanded_url\":\"http:\\/\\/www.guardpost.ng\",\"display_url\":\"guardpost.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Mon May 16 12:05:21 +0000 2022\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526172072501727233\\/SyCAvpUe_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526171772646719489\\/1655326290\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":4,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4512\":null,\"4513\":null,\"4514\":null,\"4515\":null,\"4516\":null,\"4517\":null,\"4518\":null,\"4519\":null,\"4520\":null,\"4521\":null,\"4522\":null,\"4523\":null,\"4524\":null,\"4525\":null,\"4526\":null,\"4527\":null,\"4528\":null,\"4529\":null,\"4530\":null,\"4531\":null,\"4532\":null,\"4533\":null,\"4534\":null,\"4535\":null,\"4536\":null,\"4537\":null,\"4538\":null,\"4539\":null,\"4540\":null,\"4541\":null,\"4542\":null,\"4543\":null,\"4544\":null,\"4545\":null,\"4546\":null,\"4547\":null,\"4548\":null,\"4549\":null,\"4550\":null,\"4551\":null,\"4552\":null,\"4553\":null,\"4554\":null,\"4555\":null,\"4556\":null,\"4557\":null,\"4558\":null,\"4559\":null,\"4560\":null,\"4561\":null,\"4562\":null,\"4563\":null,\"4564\":null,\"4565\":null,\"4566\":null,\"4567\":null,\"4568\":null,\"4569\":null,\"4570\":null,\"4571\":null,\"4572\":null,\"4573\":null,\"4574\":null,\"4575\":null,\"4576\":null,\"4577\":null,\"4578\":null,\"4579\":null,\"4580\":null,\"4581\":null,\"4582\":null,\"4583\":null,\"4584\":null,\"4585\":null,\"4586\":null,\"4587\":null,\"4588\":null,\"4589\":null,\"4590\":null,\"4591\":null,\"4592\":null,\"4593\":null,\"4594\":null,\"4595\":null,\"4596\":null,\"4597\":null,\"4598\":null,\"4599\":null,\"4600\":null,\"4601\":null,\"4602\":null,\"4603\":null,\"4604\":null,\"4605\":null,\"4606\":{\"created_at\":\"Wed Aug 03 04:20:53 +0000 2022\",\"id\":1554683698901041153,\"id_str\":\"1554683698901041153\",\"full_text\":\"SUMMER TIME \\u23f0 \\n\\nAt the beach, life is different. Time doesn\\u2019t move hour to hour but mood to moment. Let\\u2019s live by the currents, plan by the tides and follow the sun``` \\ud83e\\udd29 #Taiwan #Pelosi #China #helicopter #HelicopterCrash #BBNaija #BBNaija7 #LALISA https:\\/\\/t.co\\/QP8Bzs3UKv\",\"truncated\":false,\"display_text_range\":[0,248],\"entities\":{\"hashtags\":[{\"text\":\"Taiwan\",\"indices\":[170,177]},{\"text\":\"Pelosi\",\"indices\":[178,185]},{\"text\":\"China\",\"indices\":[186,192]},{\"text\":\"helicopter\",\"indices\":[193,204]},{\"text\":\"HelicopterCrash\",\"indices\":[205,221]},{\"text\":\"BBNaija\",\"indices\":[222,230]},{\"text\":\"BBNaija7\",\"indices\":[231,240]},{\"text\":\"LALISA\",\"indices\":[241,248]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554683618538160128,\"id_str\":\"1554683618538160128\",\"indices\":[249,272],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554683618538160128\\/pu\\/img\\/yUu-0s3VlLKJNA_p.jpg\",\"url\":\"https:\\/\\/t.co\\/QP8Bzs3UKv\",\"display_url\":\"pic.twitter.com\\/QP8Bzs3UKv\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Houseofmolecule\\/status\\/1554683698901041153\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":640,\"h\":640,\"resize\":\"fit\"},\"small\":{\"w\":640,\"h\":640,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":29868,\"variants\":[{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/540x540\\/8PlMTK-z1sGoGzJv.mp4?tag=12\"},{\"bitrate\":432000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/320x320\\/6xOCFrmDl7C66h41.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/pl\\/wMt_AULV3UhA6Wk_.m3u8?tag=12&container=fmp4\"},{\"bitrate\":1280000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554683618538160128\\/pu\\/vid\\/640x640\\/WciwaqGmLy4PVePK.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1206482529181749248,\"id_str\":\"1206482529181749248\",\"name\":\"Houseofmolecules\",\"screen_name\":\"Houseofmolecule\",\"location\":\"Lagos, Nigeria\",\"description\":\"PR| Web Designer| Brand Influencer| Car Dealer\",\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/beFnECKN2G\",\"expanded_url\":\"http:\\/\\/www.houseofmolecules.com.ng\",\"display_url\":\"houseofmolecules.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":533,\"friends_count\":552,\"listed_count\":0,\"created_at\":\"Mon Dec 16 07:53:57 +0000 2019\",\"favourites_count\":688,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":400,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1291266980675309568\\/UPL9zp6X_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":3,\"favorite_count\":4,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4607\":{\"created_at\":\"Tue Aug 02 15:26:26 +0000 2022\",\"id\":1554488804538519555,\"id_str\":\"1554488804538519555\",\"full_text\":\"@TAssorted These Nigerian youths were paid 5 million naira each https:\\/\\/t.co\\/b6j0e2AHzP\",\"truncated\":false,\"display_text_range\":[11,63],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TAssorted\",\"name\":\"Oyetunji SRN~\",\"id\":718716095,\"id_str\":\"718716095\",\"indices\":[0,10]}],\"urls\":[],\"media\":[{\"id\":1554488761937022979,\"id_str\":\"1554488761937022979\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"url\":\"https:\\/\\/t.co\\/b6j0e2AHzP\",\"display_url\":\"pic.twitter.com\\/b6j0e2AHzP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Preciou38243071\\/status\\/1554488804538519555\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554488761937022979,\"id_str\":\"1554488761937022979\",\"indices\":[64,87],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554488761937022979\\/pu\\/img\\/bCrXCLRJzbGvrhAd.jpg\",\"url\":\"https:\\/\\/t.co\\/b6j0e2AHzP\",\"display_url\":\"pic.twitter.com\\/b6j0e2AHzP\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Preciou38243071\\/status\\/1554488804538519555\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":540,\"h\":960,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":540,\"h\":960,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":12956,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/vid\\/480x852\\/SCOWr8WWb2lyxLKh.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/vid\\/320x568\\/qi0JPaBhMdkCif4q.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/pl\\/YhYfC6P4wuo9fPlb.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554488761937022979\\/pu\\/vid\\/540x960\\/JZuRcKxaxPvLXpeD.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":1554404255720771586,\"in_reply_to_status_id_str\":\"1554404255720771586\",\"in_reply_to_user_id\":718716095,\"in_reply_to_user_id_str\":\"718716095\",\"in_reply_to_screen_name\":\"TAssorted\",\"user\":{\"id\":1172216866988789760,\"id_str\":\"1172216866988789760\",\"name\":\"Precious N\",\"screen_name\":\"Preciou38243071\",\"location\":\"Port Harcourt\",\"description\":\"Treat me good and I'll stick around\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1477,\"friends_count\":1161,\"listed_count\":1,\"created_at\":\"Thu Sep 12 18:34:41 +0000 2019\",\"favourites_count\":17221,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":18129,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1556154246667673601\\/UnBaJSQY_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1556154246667673601\\/UnBaJSQY_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":33,\"favorite_count\":153,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4608\":null,\"4609\":null,\"4610\":null,\"4611\":{\"created_at\":\"Tue Aug 02 21:11:51 +0000 2022\",\"id\":1554575730650013697,\"id_str\":\"1554575730650013697\",\"full_text\":\"I'm going to put this on Twitter because @WestAfricaWeek is a long-read platform that doesn't do breaking news, and this needs to be out there.\\n\\nI've got hold of a budget office document showing @MBuhari approving N1.4 billion to buy vehicles for the government of Niger Republic. https:\\/\\/t.co\\/GDVx50cOJ0\",\"truncated\":false,\"display_text_range\":[0,280],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WestAfricaWeek\",\"name\":\"West Africa Weekly\",\"id\":1364956849804611584,\"id_str\":\"1364956849804611584\",\"indices\":[41,56]},{\"screen_name\":\"MBuhari\",\"name\":\"Muhammadu Buhari\",\"id\":2936714848,\"id_str\":\"2936714848\",\"indices\":[195,203]}],\"urls\":[],\"media\":[{\"id\":1554572700668104712,\"id_str\":\"1554572700668104712\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/GDVx50cOJ0\",\"display_url\":\"pic.twitter.com\\/GDVx50cOJ0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":590,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1041,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1776,\"h\":2048,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554572700668104712,\"id_str\":\"1554572700668104712\",\"indices\":[281,304],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZLzooDXkAgmSjQ.jpg\",\"url\":\"https:\\/\\/t.co\\/GDVx50cOJ0\",\"display_url\":\"pic.twitter.com\\/GDVx50cOJ0\",\"expanded_url\":\"https:\\/\\/twitter.com\\/DavidHundeyin\\/status\\/1554575730650013697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":590,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1041,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1776,\"h\":2048,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3315017925,\"id_str\":\"3315017925\",\"name\":\"David Hundeyin\",\"screen_name\":\"DavidHundeyin\",\"location\":\"EMEA\",\"description\":\"Founder @WestAfricaWeek. Purveyor of words @BusinessDayNG. Retired hurricane. 2020 People Journalism Prize for Africa winner.\",\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/w5ZNnRf6Eh\",\"expanded_url\":\"https:\\/\\/davidhundeyin.com\",\"display_url\":\"davidhundeyin.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":430614,\"friends_count\":2289,\"listed_count\":517,\"created_at\":\"Tue Jun 09 14:26:32 +0000 2015\",\"favourites_count\":88533,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":53472,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1432583277655863297\\/rVU65vDj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3315017925\\/1624235090\",\"profile_link_color\":\"981CEB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":22254,\"favorite_count\":28034,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4612\":null,\"4613\":null,\"4614\":null,\"4615\":null,\"4616\":null,\"4617\":null,\"4618\":null,\"4619\":null,\"4620\":null,\"4621\":null,\"4622\":null,\"4623\":null,\"4624\":null,\"4625\":null,\"4626\":{\"created_at\":\"Wed Aug 03 05:16:32 +0000 2022\",\"id\":1554697705267597314,\"id_str\":\"1554697705267597314\",\"full_text\":\"Another day to be intentional about your Life.\\n\\nRemember that life will never wait for you to have sense. Neither will there be a time everything will be perfectly ready\\nJust go ahead and do what needs to be done\\nHave a blessed day \\u270c\\ufe0f\\u2764\\ufe0f\\n#wednesdaythought #peanuts #Pelosi #Taiwan https:\\/\\/t.co\\/AYPa0vrRjy\",\"truncated\":false,\"display_text_range\":[0,279],\"entities\":{\"hashtags\":[{\"text\":\"wednesdaythought\",\"indices\":[237,254]},{\"text\":\"peanuts\",\"indices\":[255,263]},{\"text\":\"Pelosi\",\"indices\":[264,271]},{\"text\":\"Taiwan\",\"indices\":[272,279]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554697441265553408,\"id_str\":\"1554697441265553408\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"url\":\"https:\\/\\/t.co\\/AYPa0vrRjy\",\"display_url\":\"pic.twitter.com\\/AYPa0vrRjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554697441265553408,\"id_str\":\"1554697441265553408\",\"indices\":[280,303],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554697441265553408\\/pu\\/img\\/p6W4H9foz4gjIwkZ.jpg\",\"url\":\"https:\\/\\/t.co\\/AYPa0vrRjy\",\"display_url\":\"pic.twitter.com\\/AYPa0vrRjy\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Greatfoodsng\\/status\\/1554697705267597314\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":21000,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/480x852\\/PzzXeIzsckDPUGpU.mp4?tag=12\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/320x568\\/HI7vYexc_IeIim6Z.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/pl\\/U-1hEgqvR7jHdTwC.m3u8?tag=12&container=fmp4\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554697441265553408\\/pu\\/vid\\/576x1024\\/txGmP5S1RsdDG_UF.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1490273215695966209,\"id_str\":\"1490273215695966209\",\"name\":\"Great Foods Ng\",\"screen_name\":\"Greatfoodsng\",\"location\":\"\",\"description\":\"We make the best peanut Burger.\\n\\nIt's like nothing you've ever tasted.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Sun Feb 06 10:37:00 +0000 2022\",\"favourites_count\":57,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":136,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1490273978509836292\\/cM-sWYGR_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1490273978509836292\\/cM-sWYGR_normal.jpg\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4627\":null,\"4628\":null,\"4629\":null,\"4630\":null,\"4631\":null,\"4632\":null,\"4633\":null,\"4634\":null,\"4635\":null,\"4636\":null,\"4637\":null,\"4638\":null,\"4639\":null,\"4640\":null,\"4641\":null,\"4642\":null,\"4643\":null,\"4644\":null,\"4645\":null,\"4646\":null,\"4647\":null,\"4648\":null,\"4649\":null,\"4650\":null,\"4651\":null,\"4652\":null,\"4653\":null,\"4654\":null,\"4655\":null,\"4656\":null,\"4657\":null,\"4658\":null,\"4659\":null,\"4660\":null,\"4661\":null,\"4662\":null,\"4663\":{\"created_at\":\"Mon Aug 01 06:10:37 +0000 2022\",\"id\":1553986538568093697,\"id_str\":\"1553986538568093697\",\"full_text\":\"A good morning to Celebrate my birthday \\ud83c\\udf82\\ud83c\\udf88\\ud83c\\udf89\\n\\nBig 24\\ud83e\\udd42\\n\\nHappy birthday Caleb\\u2764\\ufe0f\\n\\nKeep dreaming, keep moving.\\n\\nThe world is yours to conquer \\u26a1\\ufe0f https:\\/\\/t.co\\/iuswDAvEoA\",\"truncated\":false,\"display_text_range\":[0,139],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1553986525414756353,\"id_str\":\"1553986525414756353\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1553986525414756353,\"id_str\":\"1553986525414756353\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDegvEXEAE30yk.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1553986529240010755,\"id_str\":\"1553986529240010755\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDeg9UX0AMr0FL.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDeg9UX0AMr0FL.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":960,\"h\":1280,\"resize\":\"fit\"}}},{\"id\":1553986532863840256,\"id_str\":\"1553986532863840256\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDehK0XEAAbYlK.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDehK0XEAAbYlK.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":596,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1232,\"resize\":\"fit\"},\"medium\":{\"w\":1052,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1553986536340963328,\"id_str\":\"1553986536340963328\",\"indices\":[140,163],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZDehXxXwAAQXxd.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZDehXxXwAAQXxd.jpg\",\"url\":\"https:\\/\\/t.co\\/iuswDAvEoA\",\"display_url\":\"pic.twitter.com\\/iuswDAvEoA\",\"expanded_url\":\"https:\\/\\/twitter.com\\/caleb_nwanneka\\/status\\/1553986538568093697\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":675,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":720,\"h\":1280,\"resize\":\"fit\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1205082200158457856,\"id_str\":\"1205082200158457856\",\"name\":\"Nwanneka Caleb\",\"screen_name\":\"caleb_nwanneka\",\"location\":\"Lagos, Nigeria\",\"description\":\"Traveller\\u2022 Hot boy \\u2022 I'll teach you how to set up 7 figures online business from scratch and blow up your sales \\u2022Manchester United fan | Building a company soon\",\"url\":\"https:\\/\\/t.co\\/1xMBtqyLcY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1xMBtqyLcY\",\"expanded_url\":\"https:\\/\\/www.8figuremarketer.com\\/sign-up\\/\",\"display_url\":\"8figuremarketer.com\\/sign-up\\/\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57264,\"friends_count\":250,\"listed_count\":138,\"created_at\":\"Thu Dec 12 11:09:37 +0000 2019\",\"favourites_count\":33329,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":10316,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1554763708320124928\\/wiWDjUrO_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1554763708320124928\\/wiWDjUrO_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1205082200158457856\\/1652951358\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":{\"id\":\"01eddd9d0dbec2c8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/01eddd9d0dbec2c8.json\",\"place_type\":\"city\",\"name\":\"Ikeja\",\"full_name\":\"Ikeja, Nigeria\",\"country_code\":\"NG\",\"country\":\"Nigeria\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},\"attributes\":{}},\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":45,\"favorite_count\":1173,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4664\":null,\"4665\":null,\"4666\":null,\"4667\":null,\"4668\":null,\"4669\":null,\"4670\":null,\"4671\":null,\"4672\":null,\"4673\":null,\"4674\":null,\"4675\":null,\"4676\":null,\"4677\":null,\"4678\":null,\"4679\":null,\"4680\":null,\"4681\":null,\"4682\":null,\"4683\":null,\"4684\":null,\"4685\":null,\"4686\":null,\"4687\":null,\"4688\":null,\"4689\":null,\"4690\":null,\"4691\":null,\"4692\":null,\"4693\":null,\"4694\":null,\"4695\":null,\"4696\":null,\"4697\":null,\"4698\":null,\"4699\":null,\"4700\":null,\"4701\":null,\"4702\":null,\"4703\":null,\"4704\":null,\"4705\":null,\"4706\":null,\"4707\":null,\"4708\":null,\"4709\":null,\"4710\":null,\"4711\":null,\"4712\":null,\"4713\":null,\"4714\":{\"created_at\":\"Tue Aug 02 12:13:16 +0000 2022\",\"id\":1554440191741411328,\"id_str\":\"1554440191741411328\",\"full_text\":\"Hey AVengers \\ud83d\\udef8, let's reach 10k promise I will follow back \\ud83d\\ude4f\",\"truncated\":false,\"display_text_range\":[0,60],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1543185566816247810,\"id_str\":\"1543185566816247810\",\"name\":\"AV \\ud83d\\udef8\",\"screen_name\":\"Babyboyav__\",\"location\":\"\",\"description\":\"No Dey Form (NDF)\\ud83d\\udef8\\nhttps:\\/\\/t.co\\/ETX1GlJSq7\",\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"expanded_url\":\"https:\\/\\/lnk.to\\/NoDeyForm\",\"display_url\":\"lnk.to\\/NoDeyForm\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ETX1GlJSq7\",\"expanded_url\":\"https:\\/\\/lnk.to\\/NoDeyForm\",\"display_url\":\"lnk.to\\/NoDeyForm\",\"indices\":[19,42]}]}},\"protected\":false,\"followers_count\":1623,\"friends_count\":183,\"listed_count\":1,\"created_at\":\"Sat Jul 02 10:51:48 +0000 2022\",\"favourites_count\":581,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":198,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1550170835004129282\\/1U_soEBj_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1550170835004129282\\/1U_soEBj_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1543185566816247810\\/1657342889\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":2,\"favorite_count\":24,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"4715\":null,\"4716\":null,\"4717\":null,\"4718\":null,\"4719\":null,\"4720\":null,\"4721\":null,\"4722\":null,\"4723\":null,\"4724\":null,\"4725\":null,\"4726\":null,\"4727\":null,\"4728\":null,\"4729\":null,\"4730\":null,\"4731\":null,\"4732\":null,\"4733\":null,\"4734\":null,\"4735\":null,\"4736\":null,\"4737\":null,\"4738\":null,\"4739\":null,\"4740\":null,\"4741\":null,\"4742\":null,\"4743\":null,\"4744\":null,\"4745\":null,\"4746\":null,\"4747\":null,\"4748\":null,\"4749\":null,\"4750\":null,\"4751\":null,\"4752\":null,\"4753\":null,\"4754\":null,\"4755\":null,\"4756\":null,\"4757\":null,\"4758\":null,\"4759\":null,\"4760\":null,\"4761\":null,\"4762\":null,\"4763\":null,\"4764\":null,\"4765\":null,\"4766\":null,\"4767\":null,\"4768\":null,\"4769\":null,\"4770\":null,\"4771\":null,\"4772\":null,\"4773\":null,\"4774\":null,\"4775\":{\"created_at\":\"Tue Aug 02 19:57:59 +0000 2022\",\"id\":1554557140702044161,\"id_str\":\"1554557140702044161\",\"full_text\":\"Congratulations to the winners of today's mystery game \\ud83e\\udd73\\ud83d\\udc4f\\n\\n\\ud83c\\udfc6 kyori#7001 -$10\\n\\n\\ud83c\\udfc6Rillz#5028 -$10\\n\\nTo those who participated and didn't win, you did a great job. Stay put there'll be many other chances \\ud83d\\udcaa\\n\\nFollow us for more @3KMOfficial \\n\\n#P2E #NFTs #Crypto https:\\/\\/t.co\\/YppEHjpH1y\",\"truncated\":false,\"display_text_range\":[0,255],\"entities\":{\"hashtags\":[{\"text\":\"P2E\",\"indices\":[237,241]},{\"text\":\"NFTs\",\"indices\":[242,247]},{\"text\":\"Crypto\",\"indices\":[248,255]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"3KMOfficial\",\"name\":\"3KM_Official\",\"id\":1528957203905798144,\"id_str\":\"1528957203905798144\",\"indices\":[222,234]}],\"urls\":[],\"media\":[{\"id\":1554557130065301506,\"id_str\":\"1554557130065301506\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"url\":\"https:\\/\\/t.co\\/YppEHjpH1y\",\"display_url\":\"pic.twitter.com\\/YppEHjpH1y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/3KMOfficial\\/status\\/1554557140702044161\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":454,\"h\":256,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554557130065301506,\"id_str\":\"1554557130065301506\",\"indices\":[256,279],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/tweet_video_thumb\\/FZLleTCX0AIeRrW.jpg\",\"url\":\"https:\\/\\/t.co\\/YppEHjpH1y\",\"display_url\":\"pic.twitter.com\\/YppEHjpH1y\",\"expanded_url\":\"https:\\/\\/twitter.com\\/3KMOfficial\\/status\\/1554557140702044161\\/photo\\/1\",\"type\":\"animated_gif\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"small\":{\"w\":454,\"h\":256,\"resize\":\"fit\"},\"medium\":{\"w\":454,\"h\":256,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[227,128],\"variants\":[{\"bitrate\":0,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/tweet_video\\/FZLleTCX0AIeRrW.mp4\"}]}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1528957203905798144,\"id_str\":\"1528957203905798144\",\"name\":\"3KM_Official\",\"screen_name\":\"3KMOfficial\",\"location\":\"\",\"description\":\"Link tree: \\nhttps:\\/\\/t.co\\/wU7GSc0kv8\\n\\n3 Kingdoms Multiverse Official\\nhttps:\\/\\/t.co\\/a7Ly6jDH01\\nTelegram global official: https:\\/\\/t.co\\/YKmmPTIFFK\\u2026\\u2026\",\"url\":\"https:\\/\\/t.co\\/hYjuoFUv1c\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/hYjuoFUv1c\",\"expanded_url\":\"http:\\/\\/3km.io\",\"display_url\":\"3km.io\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wU7GSc0kv8\",\"expanded_url\":\"http:\\/\\/linktr.ee\\/3km.io\",\"display_url\":\"linktr.ee\\/3km.io\",\"indices\":[12,35]},{\"url\":\"https:\\/\\/t.co\\/a7Ly6jDH01\",\"expanded_url\":\"http:\\/\\/discord.gg\\/kTJpG4BYDR\",\"display_url\":\"discord.gg\\/kTJpG4BYDR\",\"indices\":[68,91]},{\"url\":\"https:\\/\\/t.co\\/YKmmPTIFFK\",\"expanded_url\":\"http:\\/\\/t.me\\/ThreeKingdomsM\",\"display_url\":\"t.me\\/ThreeKingdomsM\",\"indices\":[118,141]}]}},\"protected\":false,\"followers_count\":44942,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Tue May 24 04:33:05 +0000 2022\",\"favourites_count\":120,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":58,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1555328025499156487\\/A24U2JIa_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1555328025499156487\\/A24U2JIa_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1528957203905798144\\/1653367275\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":34,\"favorite_count\":49,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4776\":null,\"4777\":null,\"4778\":null,\"4779\":null,\"4780\":null,\"4781\":null,\"4782\":null,\"4783\":null,\"4784\":null,\"4785\":null,\"4786\":null,\"4787\":null,\"4788\":null,\"4789\":null,\"4790\":null,\"4791\":null,\"4792\":null,\"4793\":null,\"4794\":null,\"4795\":null,\"4796\":null,\"4797\":null,\"4798\":null,\"4799\":null,\"4800\":null,\"4801\":null,\"4802\":null,\"4803\":null,\"4804\":null,\"4805\":null,\"4806\":null,\"4807\":null,\"4808\":null,\"4809\":null,\"4810\":null,\"4811\":null,\"4812\":null,\"4813\":null,\"4814\":null,\"4815\":null,\"4816\":null,\"4817\":null,\"4818\":null,\"4819\":null,\"4820\":null,\"4821\":null,\"4822\":null,\"4823\":null,\"4824\":null,\"4825\":null,\"4826\":null,\"4827\":null,\"4828\":null,\"4829\":{\"created_at\":\"Tue Aug 02 19:14:09 +0000 2022\",\"id\":1554546109523050498,\"id_str\":\"1554546109523050498\",\"full_text\":\"Taiwan may become another Ukraine with this move\\ud83d\\ude44\\ud83d\\ude44\\ud83d\\ude44. Unnecessary move IMO.\",\"truncated\":false,\"display_text_range\":[0,74],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for Android<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":249725098,\"id_str\":\"249725098\",\"name\":\"Olufadeju\",\"screen_name\":\"olulion\",\"location\":\"Abuja\\/Nigeria\",\"description\":\"Father, Farmer, Humanist, Information Security, Good Governance Advocate.\\nRetweet isn't Absolute Endorsement\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":736,\"friends_count\":570,\"listed_count\":3,\"created_at\":\"Wed Feb 09 17:02:42 +0000 2011\",\"favourites_count\":15378,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":33257,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme8\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1534641182688567297\\/5pyVZs_9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1534641182688567297\\/5pyVZs_9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/249725098\\/1651994149\",\"profile_link_color\":\"9D582E\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":1,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"4830\":null,\"4831\":null,\"4832\":null,\"4833\":{\"created_at\":\"Thu Jul 28 13:01:10 +0000 2022\",\"id\":1552640306922852352,\"id_str\":\"1552640306922852352\",\"full_text\":\"Sokoto agog for Obi. The unprecedented movement is on.\\n #ObiDatti2023 @PeterObi https:\\/\\/t.co\\/jZBowzuuIO\",\"truncated\":false,\"display_text_range\":[0,79],\"entities\":{\"hashtags\":[{\"text\":\"ObiDatti2023\",\"indices\":[56,69]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"PeterObi\",\"name\":\"Peter Obi\",\"id\":1050779471731707904,\"id_str\":\"1050779471731707904\",\"indices\":[70,79]}],\"urls\":[],\"media\":[{\"id\":1552640204669853697,\"id_str\":\"1552640204669853697\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"url\":\"https:\\/\\/t.co\\/jZBowzuuIO\",\"display_url\":\"pic.twitter.com\\/jZBowzuuIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1552640204669853697,\"id_str\":\"1552640204669853697\",\"indices\":[80,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1552640204669853697\\/pu\\/img\\/O43qXjbvWM527ror.jpg\",\"url\":\"https:\\/\\/t.co\\/jZBowzuuIO\",\"display_url\":\"pic.twitter.com\\/jZBowzuuIO\",\"expanded_url\":\"https:\\/\\/twitter.com\\/NgLabour\\/status\\/1552640306922852352\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"medium\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":480,\"h\":270,\"resize\":\"fit\"},\"large\":{\"w\":480,\"h\":270,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":39520,\"variants\":[{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1552640204669853697\\/pu\\/pl\\/px4ZpDy0RQZILaJx.m3u8?tag=12&container=fmp4\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1552640204669853697\\/pu\\/vid\\/480x270\\/Lixy5FR38yH3-7FC.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter Web App<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1529562333751689217,\"id_str\":\"1529562333751689217\",\"name\":\"LabourPartyNG\",\"screen_name\":\"NgLabour\",\"location\":\"29 Okeagbe St, Garki, Abuja\",\"description\":\"Official Labour Party Twitter Handle. Labour Party is Nigeria's frontline Political Party for Social Democrats.\\nJoin us @ https:\\/\\/t.co\\/1A4obrISd5\",\"url\":\"https:\\/\\/t.co\\/xp9Inpt56J\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xp9Inpt56J\",\"expanded_url\":\"http:\\/\\/www.labourparty.com.ng\",\"display_url\":\"labourparty.com.ng\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/1A4obrISd5\",\"expanded_url\":\"http:\\/\\/labourparty.com.ng\",\"display_url\":\"labourparty.com.ng\",\"indices\":[122,145]}]}},\"protected\":false,\"followers_count\":254741,\"friends_count\":530,\"listed_count\":49,\"created_at\":\"Wed May 25 20:38:02 +0000 2022\",\"favourites_count\":143,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":169,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1545058267981746177\\/nA0y1wvv_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1545058267981746177\\/nA0y1wvv_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1529562333751689217\\/1657534092\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1373,\"favorite_count\":4127,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4834\":null,\"4835\":null,\"4836\":null,\"4837\":null,\"4838\":null,\"4839\":null,\"4840\":null,\"4841\":{\"created_at\":\"Tue Aug 02 09:46:48 +0000 2022\",\"id\":1554403331027730438,\"id_str\":\"1554403331027730438\",\"full_text\":\"Everything is already very serious, the situation is heated to the limit. We haven't been so close to World War III yet. https:\\/\\/t.co\\/JkfeDdYvQk\",\"truncated\":false,\"display_text_range\":[0,120],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554403296974176257,\"id_str\":\"1554403296974176257\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"url\":\"https:\\/\\/t.co\\/JkfeDdYvQk\",\"display_url\":\"pic.twitter.com\\/JkfeDdYvQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554403296974176257,\"id_str\":\"1554403296974176257\",\"indices\":[121,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554403296974176257\\/pu\\/img\\/ymHN5c0sRvw8Dv6P.jpg\",\"url\":\"https:\\/\\/t.co\\/JkfeDdYvQk\",\"display_url\":\"pic.twitter.com\\/JkfeDdYvQk\",\"expanded_url\":\"https:\\/\\/twitter.com\\/OdNa_TaKa9l\\/status\\/1554403331027730438\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":844,\"h\":480,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":387,\"resize\":\"fit\"},\"large\":{\"w\":844,\"h\":480,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[211,120],\"duration_millis\":30046,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/844x480\\/2l_rRYjV3JtxRLRN.mp4?tag=12\"},{\"bitrate\":256000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/474x270\\/QSIpeLeXuuAlYcdQ.mp4?tag=12\"},{\"bitrate\":832000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/vid\\/632x360\\/D6zHKXscWwAkrQ9p.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554403296974176257\\/pu\\/pl\\/F96-QTcsHSGXnzRn.m3u8?tag=12&container=fmp4\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":3192736504,\"id_str\":\"3192736504\",\"name\":\"\\u0422\\u20dd \\ud83c\\udd70\\ufe0f \\u043d\\u20dd \\u044f\\u20dd\",\"screen_name\":\"OdNa_TaKa9l\",\"location\":\"\",\"description\":\"\\u043c\\u0438\\u0440 \\u0441\\u043e\\u0448\\u0451\\u043b \\u0441\\u0443\\u043c\\u0430 \\ud83d\\ude4a\\ud83d\\ude49\\ud83d\\ude48\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":281,\"friends_count\":17,\"listed_count\":5,\"created_at\":\"Tue Apr 21 22:45:15 +0000 2015\",\"favourites_count\":5038,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3305,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1540430995161243651\\/edzZG1Qf_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1540430995161243651\\/edzZG1Qf_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3192736504\\/1653829999\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":12,\"favorite_count\":69,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4842\":null,\"4843\":null,\"4844\":null,\"4845\":null,\"4846\":null,\"4847\":null,\"4848\":null,\"4849\":null,\"4850\":null,\"4851\":null,\"4852\":null,\"4853\":null,\"4854\":null,\"4855\":null,\"4856\":null,\"4857\":null,\"4858\":null,\"4859\":null,\"4860\":null,\"4861\":null,\"4862\":null,\"4863\":null,\"4864\":null,\"4865\":null,\"4866\":null,\"4867\":null,\"4868\":null,\"4869\":null,\"4870\":null,\"4871\":null,\"4872\":null,\"4873\":null,\"4874\":null,\"4875\":null,\"4876\":null,\"4877\":null,\"4878\":null,\"4879\":null,\"4880\":null,\"4881\":null,\"4882\":null,\"4883\":null,\"4884\":null,\"4885\":null,\"4886\":null,\"4887\":null,\"4888\":null,\"4889\":null,\"4890\":null,\"4891\":null,\"4892\":null,\"4893\":null,\"4894\":null,\"4895\":null,\"4896\":null,\"4897\":null,\"4898\":null,\"4899\":null,\"4900\":null,\"4901\":null,\"4902\":null,\"4903\":null,\"4904\":null,\"4905\":null,\"4906\":null,\"4907\":null,\"4908\":null,\"4909\":null,\"4910\":null,\"4911\":null,\"4912\":null,\"4913\":null,\"4914\":null,\"4915\":null,\"4916\":{\"created_at\":\"Mon Aug 01 07:49:32 +0000 2022\",\"id\":1554011432055865344,\"id_str\":\"1554011432055865344\",\"full_text\":\"She left her for 6 days to party and baby died \\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude46\\ud83c\\udffd\\u200d\\u2642\\ufe0f\\ud83d\\ude31\\ud83d\\ude31\\ud83d\\ude31\\ud83d\\ude31 https:\\/\\/t.co\\/W5b91B1Dmt\",\"truncated\":false,\"display_text_range\":[0,76],\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554011254838140929,\"id_str\":\"1554011254838140929\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"url\":\"https:\\/\\/t.co\\/W5b91B1Dmt\",\"display_url\":\"pic.twitter.com\\/W5b91B1Dmt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Eminitybaba_\\/status\\/1554011432055865344\\/video\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554011254838140929,\"id_str\":\"1554011254838140929\",\"indices\":[77,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/ext_tw_video_thumb\\/1554011254838140929\\/pu\\/img\\/8VegwF7UDu7SK0-K.jpg\",\"url\":\"https:\\/\\/t.co\\/W5b91B1Dmt\",\"display_url\":\"pic.twitter.com\\/W5b91B1Dmt\",\"expanded_url\":\"https:\\/\\/twitter.com\\/Eminitybaba_\\/status\\/1554011432055865344\\/video\\/1\",\"type\":\"video\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":383,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"},\"medium\":{\"w\":576,\"h\":1024,\"resize\":\"fit\"}},\"video_info\":{\"aspect_ratio\":[9,16],\"duration_millis\":81356,\"variants\":[{\"bitrate\":950000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/vid\\/480x852\\/OQUZ87s1J_bNLLc2.mp4?tag=12\"},{\"content_type\":\"application\\/x-mpegURL\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/pl\\/qWV5Wmc2jLVXzS1f.m3u8?tag=12&container=fmp4\"},{\"bitrate\":632000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/vid\\/320x568\\/Yvv1PahgMPGLAxS8.mp4?tag=12\"},{\"bitrate\":2176000,\"content_type\":\"video\\/mp4\",\"url\":\"https:\\/\\/video.twimg.com\\/ext_tw_video\\/1554011254838140929\\/pu\\/vid\\/576x1024\\/XUIaEpyYcaupe3kR.mp4?tag=12\"}]},\"additional_media_info\":{\"monetizable\":false}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":251084543,\"id_str\":\"251084543\",\"name\":\"Commissioner for Coca-Cola ati Dodo #BBNAIJA\",\"screen_name\":\"Eminitybaba_\",\"location\":\"Konoha\",\"description\":\"Father | Husband | Med Doc | Anime | \\u2709\\ufe0f sirtybaba@gmail.com | Check my likes |follow @mythsorfacts @litwallpapers | NFT\",\"url\":\"https:\\/\\/t.co\\/x3aHFVVUJL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x3aHFVVUJL\",\"expanded_url\":\"https:\\/\\/opensea.io\\/collection\\/egged\",\"display_url\":\"opensea.io\\/collection\\/egg\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":70039,\"friends_count\":12479,\"listed_count\":27,\"created_at\":\"Sat Feb 12 12:07:13 +0000 2011\",\"favourites_count\":2644,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":257990,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1549830208253005829\\/ilr5koQ9_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1549830208253005829\\/ilr5koQ9_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/251084543\\/1632240617\",\"profile_link_color\":\"B40B43\",\"profile_sidebar_border_color\":\"CC3366\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"has_extended_profile\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":8995,\"favorite_count\":22406,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4917\":null,\"4918\":null,\"4919\":null,\"4920\":null,\"4921\":null,\"4922\":null,\"4923\":null,\"4924\":null,\"4925\":null,\"4926\":null,\"4927\":null,\"4928\":null,\"4929\":null,\"4930\":null,\"4931\":null,\"4932\":null,\"4933\":null,\"4934\":null,\"4935\":null,\"4936\":null,\"4937\":null,\"4938\":null,\"4939\":null,\"4940\":null,\"4941\":null,\"4942\":null,\"4943\":null,\"4944\":null,\"4945\":null,\"4946\":null,\"4947\":null,\"4948\":null,\"4949\":null,\"4950\":null,\"4951\":null,\"4952\":null,\"4953\":null,\"4954\":null,\"4955\":null,\"4956\":null,\"4957\":null,\"4958\":null,\"4959\":null,\"4960\":null,\"4961\":null,\"4962\":null,\"4963\":null,\"4964\":null,\"4965\":null,\"4966\":null,\"4967\":null,\"4968\":null,\"4969\":null,\"4970\":null,\"4971\":null,\"4972\":null,\"4973\":null,\"4974\":null,\"4975\":null,\"4976\":null,\"4977\":null,\"4978\":null,\"4979\":null,\"4980\":null,\"4981\":null,\"4982\":null,\"4983\":null,\"4984\":null,\"4985\":null,\"4986\":null,\"4987\":null,\"4988\":null,\"4989\":null,\"4990\":null,\"4991\":null,\"4992\":null,\"4993\":null,\"4994\":null,\"4995\":{\"created_at\":\"Tue Aug 02 05:49:20 +0000 2022\",\"id\":1554343569783152640,\"id_str\":\"1554343569783152640\",\"full_text\":\"Today\\u2019s Deal \\ud83d\\udcaf \\ud83d\\udd25 \\nAcer Aspire Laptop\\n\\u2022 4GB RAM\\n\\u2022 320GB HDD\\n\\u2022 Intel Core 2 Duo\\n\\u2022 15.6\\u201d HD Display\\n\\u2022 Windows 10 Pro\\n\\u2022 Webcam\\n\\u2022 Bluetooth\\n\\u2022 USB\\n\\u2022 VGA\\n\\u2022 HDMI\\n\\nPrice : #85,000\\n\\nCarter Efe Wizkid | Go and Verify Afghanistan God Abeg Phyna Khalid Igbo Deji #BBNajia #Ukraine https:\\/\\/t.co\\/2T4LWmLPQZ\",\"truncated\":false,\"display_text_range\":[0,267],\"entities\":{\"hashtags\":[{\"text\":\"BBNajia\",\"indices\":[250,258]},{\"text\":\"Ukraine\",\"indices\":[259,267]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":1554343508957450240,\"id_str\":\"1554343508957450240\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6ZX0AAWsHC.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}},{\"id\":1554343508932268032,\"id_str\":\"1554343508932268032\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6TXkAA8VLt.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508928069632,\"id_str\":\"1554343508928069632\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6SXgAANUy8.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"}}},{\"id\":1554343508944850945,\"id_str\":\"1554343508944850945\",\"indices\":[268,291],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/FZIjL6WXkAEy-n9.jpg\",\"url\":\"https:\\/\\/t.co\\/2T4LWmLPQZ\",\"display_url\":\"pic.twitter.com\\/2T4LWmLPQZ\",\"expanded_url\":\"https:\\/\\/twitter.com\\/skrimgadgets\\/status\\/1554343569783152640\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":510,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1536,\"h\":2048,\"resize\":\"fit\"},\"medium\":{\"w\":900,\"h\":1200,\"resize\":\"fit\"}}}]},\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"source\":\"Twitter for iPhone<\\/a>\",\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1191062780310360070,\"id_str\":\"1191062780310360070\",\"name\":\"SKRIMGADGETS\",\"screen_name\":\"skrimgadgets\",\"location\":\"Ibadan\",\"description\":\"We SELL; We BUY; We SWAP, We FIX LAPTOP Computers | Computer Engineer | Quick Response Squad \\u260e \\/ TEXT 08134455771 | Email - contactskrimgadgets@gmail.com\",\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7FSEk6OpLT\",\"expanded_url\":\"https:\\/\\/wa.me\\/c\\/2348134455771\",\"display_url\":\"wa.me\\/c\\/2348134455771\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2848,\"friends_count\":1962,\"listed_count\":1,\"created_at\":\"Sun Nov 03 18:42:00 +0000 2019\",\"favourites_count\":100303,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3813,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":null,\"profile_background_image_url_https\":null,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1526448258293321728\\/8aCV32l3_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1191062780310360070\\/1657700819\",\"profile_link_color\":\"1DA1F2\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"translator_type\":\"none\",\"withheld_in_countries\":[]},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":1,\"favorite_count\":7,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"4996\":null,\"4997\":null,\"4998\":null,\"4999\":null}}" \ No newline at end of file diff --git a/tests/test_extract_dataframe.py b/tests/test_extract_dataframe.py index 8d5f30d..21a4a12 100644 --- a/tests/test_extract_dataframe.py +++ b/tests/test_extract_dataframe.py @@ -11,7 +11,7 @@ # we will need about 5 tweet samples. # Create a sample not more than 10 tweets and place it in a json file. # Provide the path to the samples tweets file you created below -sampletweetsjsonfile = "" #put here the path to where you placed the file e.g. ./sampletweets.json. +sampletweetsjsonfile = "tests\test_df_twitter.json" #put here the path to where you placed the file e.g. ./sampletweets.json. _, tweet_list = read_json(sampletweetsjsonfile) columns = [ @@ -46,18 +46,22 @@ class TestTweetDfExtractor(unittest.TestCase): unittest.TestCase this allows the new class to inherit from the unittest module """ - def setUp(self) -> pd.DataFrame: self.df = TweetDfExtractor(tweet_list[:5]) # tweet_df = self.df.get_tweet_df() def test_find_statuses_count(self): self.assertEqual( - self.df.find_statuses_count(), + self.df.find_statuses_count(), [888, 1597, 2293, 44, 1313] + ) def test_find_full_text(self): - text = + text = ['#Pelosi airplane landed safely in #Taiwan 🇹🇼 \n1) - Both 🇨🇳 & 🇺🇸 are playing "win win" on financial markets. 2) - Taiwan may be the future Asian Cuba 3) - 🇺🇸 & 🇨🇳 need an Asian #NATO / #5G\nWhat\'s your thoughts?', + 'Watch the video of the beginning of the Chinese bombing of Taiwan during Pelosi visit from here : https://t.co/twah6WU4fZ\nــــــــــــــــــــــــــ\n#Pelosi #マツコの知らない世界 #Yediiklim #BadDecisionsTrailer1 #LawnBowls #祝_CALL119_MV900万回 #มากอดกันนะซีพฤกษ์ https://t.co/m4CXfyZRS7', + '#Pelosi \n#Taipei \n#taiwan\n#XiJinping \n#China \nOn a verge of another war https://t.co/DuqDiSnWcd', + '#HOBIPALOOZA #LaAcademiaExpulsion #WEURO2022 #jhopeAtLollapalooza #SuzukiPakistan #Fantastico #Taiwan #breastfeeding #Kosovo #BORNPINK strong ✍️💜 https://t.co/GtZeNL24rm', + '#Pelosi\n#china\nChina Time ✌️ https://t.co/tEDjzTlszu'] self.assertEqual(self.df.find_full_text(), text) @@ -65,33 +69,24 @@ def test_find_sentiments(self): self.assertEqual( self.df.find_sentiments(self.df.find_full_text()), ( - , - , + [0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0] ), ) - def test_find_screen_name(self): - name = + name = ['DzCritical', 'toopsat', 'NassimaLilEmy', 'd_dhayae', 'Mohamme65404115'] self.assertEqual(self.df.find_screen_name(), name) def test_find_followers_count(self): - f_count = + f_count = [318, 764, 64, 60, 39] self.assertEqual(self.df.find_followers_count(), f_count) def test_find_friends_count(self): - friends_count = + friends_count = [373, 144, 47, 463, 206] self.assertEqual(self.df.find_friends_count(), friends_count) def test_find_is_sensitive(self): - self.assertEqual(self.df.is_sensitive(), ) - - - # def test_find_hashtags(self): - # self.assertEqual(self.df.find_hashtags(), ) - - # def test_find_mentions(self): - # self.assertEqual(self.df.find_mentions(), ) + self.assertEqual(self.df.is_sensitive(), ['nan', 0.0, 0.0, 0.0, 0.0])